diff --git a/src/grammar.json b/src/grammar.json index 53a7c5d..8b33640 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -13,61 +13,56 @@ "type": "CHOICE", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "function_definition" - }, - { - "type": "SYMBOL", - "name": "linkage_specification" - }, - { - "type": "SYMBOL", - "name": "declaration" - }, - { - "type": "SYMBOL", - "name": "_top_level_statement" - }, - { - "type": "SYMBOL", - "name": "attributed_statement" - }, - { - "type": "SYMBOL", - "name": "type_definition" - }, - { - "type": "SYMBOL", - "name": "_empty_declaration" - }, - { - "type": "SYMBOL", - "name": "preproc_if" - }, - { - "type": "SYMBOL", - "name": "preproc_ifdef" - }, - { - "type": "SYMBOL", - "name": "preproc_include" - }, - { - "type": "SYMBOL", - "name": "preproc_def" - }, - { - "type": "SYMBOL", - "name": "preproc_function_def" - }, - { - "type": "SYMBOL", - "name": "preproc_call" - } - ] + "type": "SYMBOL", + "name": "function_definition" + }, + { + "type": "SYMBOL", + "name": "linkage_specification" + }, + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "_top_level_statement" + }, + { + "type": "SYMBOL", + "name": "attributed_statement" + }, + { + "type": "SYMBOL", + "name": "type_definition" + }, + { + "type": "SYMBOL", + "name": "_empty_declaration" + }, + { + "type": "SYMBOL", + "name": "preproc_if" + }, + { + "type": "SYMBOL", + "name": "preproc_ifdef" + }, + { + "type": "SYMBOL", + "name": "preproc_include" + }, + { + "type": "SYMBOL", + "name": "preproc_def" + }, + { + "type": "SYMBOL", + "name": "preproc_function_def" + }, + { + "type": "SYMBOL", + "name": "preproc_call" }, { "type": "SYMBOL", @@ -134,61 +129,56 @@ "type": "CHOICE", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "function_definition" - }, - { - "type": "SYMBOL", - "name": "linkage_specification" - }, - { - "type": "SYMBOL", - "name": "declaration" - }, - { - "type": "SYMBOL", - "name": "_statement" - }, - { - "type": "SYMBOL", - "name": "attributed_statement" - }, - { - "type": "SYMBOL", - "name": "type_definition" - }, - { - "type": "SYMBOL", - "name": "_empty_declaration" - }, - { - "type": "SYMBOL", - "name": "preproc_if" - }, - { - "type": "SYMBOL", - "name": "preproc_ifdef" - }, - { - "type": "SYMBOL", - "name": "preproc_include" - }, - { - "type": "SYMBOL", - "name": "preproc_def" - }, - { - "type": "SYMBOL", - "name": "preproc_function_def" - }, - { - "type": "SYMBOL", - "name": "preproc_call" - } - ] + "type": "SYMBOL", + "name": "function_definition" + }, + { + "type": "SYMBOL", + "name": "linkage_specification" + }, + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "_statement" + }, + { + "type": "SYMBOL", + "name": "attributed_statement" + }, + { + "type": "SYMBOL", + "name": "type_definition" + }, + { + "type": "SYMBOL", + "name": "_empty_declaration" + }, + { + "type": "SYMBOL", + "name": "preproc_if" + }, + { + "type": "SYMBOL", + "name": "preproc_ifdef" + }, + { + "type": "SYMBOL", + "name": "preproc_include" + }, + { + "type": "SYMBOL", + "name": "preproc_def" + }, + { + "type": "SYMBOL", + "name": "preproc_function_def" + }, + { + "type": "SYMBOL", + "name": "preproc_call" }, { "type": "SYMBOL", @@ -2038,6 +2028,55 @@ } ] }, + "_old_style_function_definition": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_old_style_function_declarator" + }, + "named": true, + "value": "function_declarator" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "declaration" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, "declaration": { "type": "SEQ", "members": [ @@ -2046,93 +2085,97 @@ "name": "_declaration_specifiers" }, { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "CHOICE", + "type": "SYMBOL", + "name": "_declaration_declarator" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "_declaration_declarator": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", "members": [ { - "type": "SEQ", + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "_declarator" + "name": "gnu_asm_expression" }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "gnu_asm_expression" - }, - { - "type": "BLANK" - } - ] + "type": "BLANK" } ] - }, - { - "type": "SYMBOL", - "name": "init_declarator" } ] + }, + { + "type": "SYMBOL", + "name": "init_declarator" } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "CHOICE", + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", "members": [ { - "type": "SEQ", + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "_declarator" + "name": "gnu_asm_expression" }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "gnu_asm_expression" - }, - { - "type": "BLANK" - } - ] + "type": "BLANK" } ] - }, - { - "type": "SYMBOL", - "name": "init_declarator" } ] + }, + { + "type": "SYMBOL", + "name": "init_declarator" } - } - ] + ] + } } - } - ] - }, - { - "type": "STRING", - "value": ";" + ] + } } ] }, @@ -2155,6 +2198,30 @@ "type": "STRING", "value": "typedef" }, + { + "type": "SYMBOL", + "name": "_type_definition_type" + }, + { + "type": "SYMBOL", + "name": "_type_definition_declarators" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_specifier" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "_type_definition_type": { + "type": "SEQ", + "members": [ { "type": "REPEAT", "content": { @@ -2176,50 +2243,39 @@ "type": "SYMBOL", "name": "type_qualifier" } - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "_type_declarator" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "_type_declarator" - } - } - ] - } - } - ] - }, + } + ] + }, + "_type_definition_declarators": { + "type": "SEQ", + "members": [ { - "type": "REPEAT", + "type": "FIELD", + "name": "declarator", "content": { "type": "SYMBOL", - "name": "attribute_specifier" + "name": "_type_declarator" } }, { - "type": "STRING", - "value": ";" + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_type_declarator" + } + } + ] + } } ] }, @@ -3245,6 +3301,32 @@ } ] }, + "_old_style_function_declarator": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_old_style_parameter_list" + }, + "named": true, + "value": "parameter_list" + } + } + ] + }, "array_declarator": { "type": "PREC", "value": 1, @@ -3620,66 +3702,62 @@ ] }, "type_qualifier": { - "type": "PREC", - "value": "type_qualifier", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "const" - }, - { - "type": "STRING", - "value": "constexpr" - }, - { - "type": "STRING", - "value": "volatile" - }, - { - "type": "STRING", - "value": "restrict" - }, - { - "type": "STRING", - "value": "__restrict__" - }, - { - "type": "STRING", - "value": "__extension__" - }, - { - "type": "STRING", - "value": "_Atomic" - }, - { - "type": "STRING", - "value": "_Noreturn" - }, - { - "type": "STRING", - "value": "noreturn" - } - ] - }, - { - "type": "STRING", - "value": "mutable" - }, - { - "type": "STRING", - "value": "constinit" - }, - { - "type": "STRING", - "value": "consteval" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "const" + }, + { + "type": "STRING", + "value": "constexpr" + }, + { + "type": "STRING", + "value": "volatile" + }, + { + "type": "STRING", + "value": "restrict" + }, + { + "type": "STRING", + "value": "__restrict__" + }, + { + "type": "STRING", + "value": "__extension__" + }, + { + "type": "STRING", + "value": "_Atomic" + }, + { + "type": "STRING", + "value": "_Noreturn" + }, + { + "type": "STRING", + "value": "noreturn" + } + ] + }, + { + "type": "STRING", + "value": "mutable" + }, + { + "type": "STRING", + "value": "constinit" + }, + { + "type": "STRING", + "value": "consteval" + } + ] }, "_type_specifier": { "type": "CHOICE", @@ -4426,6 +4504,73 @@ } ] }, + "_field_declaration_declarator": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "bitfield_clause" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "bitfield_clause" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + } + ] + }, "bitfield_clause": { "type": "SEQ", "members": [ @@ -4566,6 +4711,70 @@ } ] }, + "_old_style_parameter_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, "parameter_declaration": { "type": "SEQ", "members": [ @@ -5090,119 +5299,132 @@ "value": "(" }, { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "initializer", - "content": { - "type": "SYMBOL", - "name": "declaration" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "initializer", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "comma_expression" - } - ] - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "STRING", - "value": ";" - } - ] - } - ] - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "comma_expression" - } - ] - }, - { - "type": "BLANK" - } - ] - } + "type": "SYMBOL", + "name": "_for_statement_body" }, { "type": "STRING", - "value": ";" + "value": ")" }, { "type": "FIELD", - "name": "update", + "name": "body", "content": { + "type": "SYMBOL", + "name": "_statement" + } + } + ] + }, + "_for_statement_body": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { "type": "CHOICE", "members": [ { - "type": "CHOICE", + "type": "FIELD", + "name": "initializer", + "content": { + "type": "SYMBOL", + "name": "declaration" + } + }, + { + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_expression" + "type": "FIELD", + "name": "initializer", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } }, { - "type": "SYMBOL", - "name": "comma_expression" + "type": "STRING", + "value": ";" } ] - }, - { - "type": "BLANK" } ] + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": ";" + }, + { + "type": "FIELD", + "name": "update", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } } - }, - { - "type": "STRING", - "value": ")" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_statement" - } - } - ] + ] + } }, "return_statement": { "type": "SEQ", @@ -7610,114 +7832,110 @@ ] }, "argument_list": { - "type": "PREC", - "value": "argument_list", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__extension__" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + { + "type": "SYMBOL", + "name": "initializer_list" + }, + { + "type": "SYMBOL", + "name": "compound_statement" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", "members": [ { - "type": "SEQ", + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", "members": [ { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "STRING", - "value": "__extension__" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__extension__" + }, + { + "type": "BLANK" + } + ] }, { - "type": "BLANK" + "type": "SYMBOL", + "name": "_expression" } ] }, { "type": "SYMBOL", - "name": "_expression" + "name": "initializer_list" + }, + { + "type": "SYMBOL", + "name": "compound_statement" } ] - }, - { - "type": "SYMBOL", - "name": "initializer_list" - }, - { - "type": "SYMBOL", - "name": "compound_statement" } ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "__extension__" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - }, - { - "type": "SYMBOL", - "name": "initializer_list" - }, - { - "type": "SYMBOL", - "name": "compound_statement" - } - ] - } - ] - } } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] }, "field_expression": { "type": "SEQ", @@ -8066,12 +8284,12 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "0x" + "type": "PATTERN", + "value": "0[xX]" }, { - "type": "STRING", - "value": "0b" + "type": "PATTERN", + "value": "0[bB]" } ] }, @@ -8124,8 +8342,8 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "0b" + "type": "PATTERN", + "value": "0[bB]" }, { "type": "SEQ", @@ -8164,8 +8382,8 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "0x" + "type": "PATTERN", + "value": "0[xX]" }, { "type": "SEQ", @@ -8376,36 +8594,8 @@ ] }, { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "u" - }, - { - "type": "STRING", - "value": "l" - }, - { - "type": "STRING", - "value": "U" - }, - { - "type": "STRING", - "value": "L" - }, - { - "type": "STRING", - "value": "f" - }, - { - "type": "STRING", - "value": "F" - } - ] - } + "type": "PATTERN", + "value": "[uUlLwWfFbBdD]*" } ] } @@ -8905,46 +9095,55 @@ ] }, "_class_declaration": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute_specifier" - }, - { - "type": "SYMBOL", - "name": "alignas_specifier" - } - ] - } - }, - { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "ms_declspec_modifier" + "name": "attribute_specifier" }, { - "type": "BLANK" + "type": "SYMBOL", + "name": "alignas_specifier" } ] - }, - { - "type": "REPEAT", - "content": { + } + }, + { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", - "name": "attribute_declaration" + "name": "ms_declspec_modifier" + }, + { + "type": "BLANK" } - }, + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_declaration" + } + }, + { + "type": "SYMBOL", + "name": "_class_declaration_item" + } + ] + }, + "_class_declaration_item": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ { "type": "CHOICE", "members": [ @@ -10460,149 +10659,272 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "&" - }, - { - "type": "STRING", - "value": "&&" - } - ] + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "&&" + } + ] + }, + { + "type": "SYMBOL", + "name": "_field_declarator" + } + ] + } + } + }, + "abstract_reference_declarator": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "&&" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_abstract_declarator" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "structured_binding_declarator": { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "ref_qualifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "&&" + } + ] + }, + "_function_declarator_seq": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "parameter_list" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_function_attributes_start" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ref_qualifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_function_exception_specification" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_function_attributes_end" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "trailing_return_type" }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ { "type": "SYMBOL", - "name": "_field_declarator" + "name": "_function_postfix" + }, + { + "type": "BLANK" } ] } - } + ] }, - "abstract_reference_declarator": { - "type": "PREC_RIGHT", - "value": 0, + "_function_attributes_start": { + "type": "PREC", + "value": 1, "content": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "&" - }, - { - "type": "STRING", - "value": "&&" - } - ] - }, - { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_abstract_declarator" + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "attribute_specifier" + } }, { - "type": "BLANK" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } } ] - } - ] - } - }, - "structured_binding_declarator": { - "type": "PREC_DYNAMIC", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" }, { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "identifier" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_specifier" + } }, { - "type": "REPEAT", + "type": "REPEAT1", "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] + "type": "SYMBOL", + "name": "type_qualifier" } } ] - }, - { - "type": "STRING", - "value": "]" } ] } }, - "ref_qualifier": { + "_function_exception_specification": { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "&" + "type": "SYMBOL", + "name": "noexcept" }, { - "type": "STRING", - "value": "&&" + "type": "SYMBOL", + "name": "throw_specifier" } ] }, - "_function_declarator_seq": { + "_function_attributes_end": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "SEQ", "members": [ - { - "type": "FIELD", - "name": "parameters", - "content": { - "type": "SYMBOL", - "name": "parameter_list" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute_specifier" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "type_qualifier" - } - }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "ref_qualifier" + "name": "gnu_asm_expression" }, { "type": "BLANK" @@ -10613,88 +10935,68 @@ "type": "CHOICE", "members": [ { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "noexcept" + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "attribute_specifier" + } }, { - "type": "SYMBOL", - "name": "throw_specifier" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_declaration" + } } ] }, { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "gnu_asm_expression" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute_specifier" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute_declaration" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "trailing_return_type" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", + "type": "SEQ", "members": [ { "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "virtual_specifier" + "name": "attribute_specifier" } }, { - "type": "SYMBOL", - "name": "requires_clause" + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "attribute_declaration" + } } ] - }, - { - "type": "BLANK" } ] } ] } }, + "_function_postfix": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "virtual_specifier" + } + }, + { + "type": "SYMBOL", + "name": "requires_clause" + } + ] + } + }, "trailing_return_type": { "type": "SEQ", "members": [ @@ -11344,6 +11646,27 @@ "type": "STRING", "value": "(" }, + { + "type": "SYMBOL", + "name": "_for_range_loop_body" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + } + ] + }, + "_for_range_loop_body": { + "type": "SEQ", + "members": [ { "type": "FIELD", "name": "initializer", @@ -11392,18 +11715,6 @@ } ] } - }, - { - "type": "STRING", - "value": ")" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_statement" - } } ] }, @@ -14355,14 +14666,6 @@ "_binary_fold_operator", "_fold_operator" ], - [ - "expression_statement", - "for_statement" - ], - [ - "init_statement", - "for_statement" - ], [ "_function_declarator_seq" ] @@ -14370,12 +14673,22 @@ "precedences": [ [ { - "type": "STRING", - "value": "argument_list" + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "SYMBOL", + "name": "type_qualifier" + } + ], + [ + { + "type": "SYMBOL", + "name": "_expression_not_binary" }, { - "type": "STRING", - "value": "type_qualifier" + "type": "SYMBOL", + "name": "_class_name" } ] ], diff --git a/src/node-types.json b/src/node-types.json index 9c225eb..f281f77 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -4348,6 +4348,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "identifier", + "named": true + }, { "type": "optional_parameter_declaration", "named": true @@ -4356,6 +4360,10 @@ "type": "parameter_declaration", "named": true }, + { + "type": "variadic_parameter", + "named": true + }, { "type": "variadic_parameter_declaration", "named": true @@ -6776,6 +6784,11 @@ ] } }, + { + "type": "variadic_parameter", + "named": true, + "fields": {} + }, { "type": "variadic_parameter_declaration", "named": true, diff --git a/src/parser.c b/src/parser.c index 53c4d06..554d608 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 9761 -#define LARGE_STATE_COUNT 2804 -#define SYMBOL_COUNT 488 +#define STATE_COUNT 8043 +#define LARGE_STATE_COUNT 2123 +#define SYMBOL_COUNT 498 #define ALIAS_COUNT 5 #define TOKEN_COUNT 209 #define EXTERNAL_TOKEN_COUNT 2 #define FIELD_COUNT 47 -#define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 222 +#define MAX_ALIAS_SEQUENCE_LENGTH 9 +#define PRODUCTION_ID_COUNT 208 enum { sym_identifier = 1, @@ -257,266 +257,276 @@ enum { sym_preproc_binary_expression = 230, sym_function_definition = 231, sym_declaration = 232, - sym_type_definition = 233, - sym__declaration_modifiers = 234, - sym__declaration_specifiers = 235, - sym_linkage_specification = 236, - sym_attribute_specifier = 237, - sym_attribute = 238, - sym_attribute_declaration = 239, - sym_ms_declspec_modifier = 240, - sym_ms_based_modifier = 241, - sym_ms_call_modifier = 242, - sym_ms_unaligned_ptr_modifier = 243, - sym_ms_pointer_modifier = 244, - sym_declaration_list = 245, - sym__declarator = 246, - sym__field_declarator = 247, - sym__type_declarator = 248, - sym__abstract_declarator = 249, - sym_parenthesized_declarator = 250, - sym_parenthesized_field_declarator = 251, - sym_parenthesized_type_declarator = 252, - sym_abstract_parenthesized_declarator = 253, - sym_attributed_declarator = 254, - sym_attributed_field_declarator = 255, - sym_attributed_type_declarator = 256, - sym_pointer_declarator = 257, - sym_pointer_field_declarator = 258, - sym_pointer_type_declarator = 259, - sym_abstract_pointer_declarator = 260, - sym_function_declarator = 261, - sym_function_field_declarator = 262, - sym_function_type_declarator = 263, - sym_abstract_function_declarator = 264, - sym_array_declarator = 265, - sym_array_field_declarator = 266, - sym_array_type_declarator = 267, - sym_abstract_array_declarator = 268, - sym_init_declarator = 269, - sym_compound_statement = 270, - sym_storage_class_specifier = 271, - sym_type_qualifier = 272, - sym__type_specifier = 273, - sym_sized_type_specifier = 274, - sym_enum_specifier = 275, - sym_enumerator_list = 276, - sym_struct_specifier = 277, - sym_union_specifier = 278, - sym_field_declaration_list = 279, - sym__field_declaration_list_item = 280, - sym_field_declaration = 281, - sym_bitfield_clause = 282, - sym_enumerator = 283, - sym_parameter_list = 284, - sym_parameter_declaration = 285, - sym_attributed_statement = 286, - sym_labeled_statement = 287, - sym__top_level_expression_statement = 288, - sym_expression_statement = 289, - sym_if_statement = 290, - sym_else_clause = 291, - sym_switch_statement = 292, - sym_case_statement = 293, - sym_while_statement = 294, - sym_do_statement = 295, - sym_for_statement = 296, - sym_return_statement = 297, - sym_break_statement = 298, - sym_continue_statement = 299, - sym_goto_statement = 300, - sym__expression = 301, - sym__expression_not_binary = 302, - sym_comma_expression = 303, - sym_conditional_expression = 304, - sym_assignment_expression = 305, - sym_pointer_expression = 306, - sym_unary_expression = 307, - sym_binary_expression = 308, - sym_update_expression = 309, - sym_cast_expression = 310, - sym_type_descriptor = 311, - sym_sizeof_expression = 312, - sym_alignof_expression = 313, - sym_offsetof_expression = 314, - sym_generic_expression = 315, - sym_subscript_expression = 316, - sym_call_expression = 317, - sym_gnu_asm_expression = 318, - sym_gnu_asm_qualifier = 319, - sym_gnu_asm_output_operand_list = 320, - sym_gnu_asm_output_operand = 321, - sym_gnu_asm_input_operand_list = 322, - sym_gnu_asm_input_operand = 323, - sym_gnu_asm_clobber_list = 324, - sym_gnu_asm_goto_list = 325, - sym_argument_list = 326, - sym_field_expression = 327, - sym_compound_literal_expression = 328, - sym_parenthesized_expression = 329, - sym_initializer_list = 330, - sym_initializer_pair = 331, - sym_subscript_designator = 332, - sym_field_designator = 333, - sym_char_literal = 334, - sym_concatenated_string = 335, - sym_string_literal = 336, - sym_null = 337, - sym__empty_declaration = 338, - sym_placeholder_type_specifier = 339, - sym_decltype_auto = 340, - sym_decltype = 341, - sym__class_declaration = 342, - sym_class_specifier = 343, - sym__class_name = 344, - sym_virtual_specifier = 345, - sym_virtual = 346, - sym_alignas_specifier = 347, - sym_explicit_function_specifier = 348, - sym_base_class_clause = 349, - sym__enum_base_clause = 350, - sym_dependent_type = 351, - sym_template_declaration = 352, - sym_template_instantiation = 353, - sym_template_parameter_list = 354, - sym_type_parameter_declaration = 355, - sym_variadic_type_parameter_declaration = 356, - sym_optional_type_parameter_declaration = 357, - sym_template_template_parameter_declaration = 358, - sym_optional_parameter_declaration = 359, - sym_variadic_parameter_declaration = 360, - sym_variadic_declarator = 361, - sym_variadic_reference_declarator = 362, - sym_operator_cast = 363, - sym_field_initializer_list = 364, - sym_field_initializer = 365, - sym_inline_method_definition = 366, - sym__constructor_specifiers = 367, - sym_operator_cast_definition = 368, - sym_operator_cast_declaration = 369, - sym_constructor_try_statement = 370, - sym_constructor_or_destructor_definition = 371, - sym_constructor_or_destructor_declaration = 372, - sym_default_method_clause = 373, - sym_delete_method_clause = 374, - sym_friend_declaration = 375, - sym_access_specifier = 376, - sym_reference_declarator = 377, - sym_reference_field_declarator = 378, - sym_abstract_reference_declarator = 379, - sym_structured_binding_declarator = 380, - sym_ref_qualifier = 381, - sym__function_declarator_seq = 382, - sym_trailing_return_type = 383, - sym_noexcept = 384, - sym_throw_specifier = 385, - sym_template_type = 386, - sym_template_method = 387, - sym_template_function = 388, - sym_template_argument_list = 389, - sym_namespace_definition = 390, - sym_namespace_alias_definition = 391, - sym__namespace_specifier = 392, - sym_nested_namespace_specifier = 393, - sym_using_declaration = 394, - sym_alias_declaration = 395, - sym_static_assert_declaration = 396, - sym_concept_definition = 397, - sym_for_range_loop = 398, - sym_init_statement = 399, - sym_condition_clause = 400, - sym_condition_declaration = 401, - sym_co_return_statement = 402, - sym_co_yield_statement = 403, - sym_throw_statement = 404, - sym_try_statement = 405, - sym_catch_clause = 406, - sym_raw_string_literal = 407, - sym_subscript_argument_list = 408, - sym_co_await_expression = 409, - sym_new_expression = 410, - sym_new_declarator = 411, - sym_delete_expression = 412, - sym_type_requirement = 413, - sym_compound_requirement = 414, - sym__requirement = 415, - sym_requirement_seq = 416, - sym_constraint_conjunction = 417, - sym_constraint_disjunction = 418, - sym__requirement_clause_constraint = 419, - sym_requires_clause = 420, - sym_requires_parameter_list = 421, - sym_requires_expression = 422, - sym_lambda_expression = 423, - sym_lambda_capture_specifier = 424, - sym_lambda_default_capture = 425, - sym__fold_operator = 426, - sym__binary_fold_operator = 427, - sym__unary_left_fold = 428, - sym__unary_right_fold = 429, - sym__binary_fold = 430, - sym_fold_expression = 431, - sym_parameter_pack_expansion = 432, - sym_type_parameter_pack_expansion = 433, - sym_destructor_name = 434, - sym_dependent_identifier = 435, - sym_dependent_field_identifier = 436, - sym_dependent_type_identifier = 437, - sym__scope_resolution = 438, - sym_qualified_field_identifier = 439, - sym_qualified_identifier = 440, - sym_qualified_type_identifier = 441, - sym_qualified_operator_cast_identifier = 442, - sym_operator_name = 443, - sym_user_defined_literal = 444, - aux_sym_translation_unit_repeat1 = 445, - aux_sym_preproc_params_repeat1 = 446, - aux_sym_preproc_if_repeat1 = 447, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 448, - aux_sym_preproc_argument_list_repeat1 = 449, - aux_sym_declaration_repeat1 = 450, - aux_sym_type_definition_repeat1 = 451, - aux_sym_type_definition_repeat2 = 452, - aux_sym_type_definition_repeat3 = 453, - aux_sym__declaration_specifiers_repeat1 = 454, - aux_sym_attribute_declaration_repeat1 = 455, - aux_sym_attributed_declarator_repeat1 = 456, - aux_sym_pointer_declarator_repeat1 = 457, - aux_sym_sized_type_specifier_repeat1 = 458, - aux_sym_enumerator_list_repeat1 = 459, - aux_sym_field_declaration_repeat1 = 460, - aux_sym_parameter_list_repeat1 = 461, - aux_sym_case_statement_repeat1 = 462, - aux_sym_generic_expression_repeat1 = 463, - aux_sym_gnu_asm_expression_repeat1 = 464, - aux_sym_gnu_asm_output_operand_list_repeat1 = 465, - aux_sym_gnu_asm_input_operand_list_repeat1 = 466, - aux_sym_gnu_asm_clobber_list_repeat1 = 467, - aux_sym_gnu_asm_goto_list_repeat1 = 468, - aux_sym_argument_list_repeat1 = 469, - aux_sym_initializer_list_repeat1 = 470, - aux_sym_initializer_pair_repeat1 = 471, - aux_sym_concatenated_string_repeat1 = 472, - aux_sym_string_literal_repeat1 = 473, - aux_sym__class_declaration_repeat1 = 474, - aux_sym_base_class_clause_repeat1 = 475, - aux_sym_template_parameter_list_repeat1 = 476, - aux_sym_field_initializer_list_repeat1 = 477, - aux_sym_operator_cast_definition_repeat1 = 478, - aux_sym_constructor_try_statement_repeat1 = 479, - aux_sym_structured_binding_declarator_repeat1 = 480, - aux_sym__function_declarator_seq_repeat1 = 481, - aux_sym_throw_specifier_repeat1 = 482, - aux_sym_template_argument_list_repeat1 = 483, - aux_sym_subscript_argument_list_repeat1 = 484, - aux_sym_requirement_seq_repeat1 = 485, - aux_sym_requires_parameter_list_repeat1 = 486, - aux_sym_lambda_capture_specifier_repeat1 = 487, - alias_sym_field_identifier = 488, - alias_sym_namespace_identifier = 489, - alias_sym_simple_requirement = 490, - alias_sym_statement_identifier = 491, - alias_sym_type_identifier = 492, + sym__declaration_declarator = 233, + sym_type_definition = 234, + sym__type_definition_type = 235, + sym__type_definition_declarators = 236, + sym__declaration_modifiers = 237, + sym__declaration_specifiers = 238, + sym_linkage_specification = 239, + sym_attribute_specifier = 240, + sym_attribute = 241, + sym_attribute_declaration = 242, + sym_ms_declspec_modifier = 243, + sym_ms_based_modifier = 244, + sym_ms_call_modifier = 245, + sym_ms_unaligned_ptr_modifier = 246, + sym_ms_pointer_modifier = 247, + sym_declaration_list = 248, + sym__declarator = 249, + sym__field_declarator = 250, + sym__type_declarator = 251, + sym__abstract_declarator = 252, + sym_parenthesized_declarator = 253, + sym_parenthesized_field_declarator = 254, + sym_parenthesized_type_declarator = 255, + sym_abstract_parenthesized_declarator = 256, + sym_attributed_declarator = 257, + sym_attributed_field_declarator = 258, + sym_attributed_type_declarator = 259, + sym_pointer_declarator = 260, + sym_pointer_field_declarator = 261, + sym_pointer_type_declarator = 262, + sym_abstract_pointer_declarator = 263, + sym_function_declarator = 264, + sym_function_field_declarator = 265, + sym_function_type_declarator = 266, + sym_abstract_function_declarator = 267, + sym_array_declarator = 268, + sym_array_field_declarator = 269, + sym_array_type_declarator = 270, + sym_abstract_array_declarator = 271, + sym_init_declarator = 272, + sym_compound_statement = 273, + sym_storage_class_specifier = 274, + sym_type_qualifier = 275, + sym__type_specifier = 276, + sym_sized_type_specifier = 277, + sym_enum_specifier = 278, + sym_enumerator_list = 279, + sym_struct_specifier = 280, + sym_union_specifier = 281, + sym_field_declaration_list = 282, + sym__field_declaration_list_item = 283, + sym_field_declaration = 284, + sym_bitfield_clause = 285, + sym_enumerator = 286, + sym_parameter_list = 287, + sym_parameter_declaration = 288, + sym_attributed_statement = 289, + sym_labeled_statement = 290, + sym__top_level_expression_statement = 291, + sym_expression_statement = 292, + sym_if_statement = 293, + sym_else_clause = 294, + sym_switch_statement = 295, + sym_case_statement = 296, + sym_while_statement = 297, + sym_do_statement = 298, + sym_for_statement = 299, + sym__for_statement_body = 300, + sym_return_statement = 301, + sym_break_statement = 302, + sym_continue_statement = 303, + sym_goto_statement = 304, + sym__expression = 305, + sym__expression_not_binary = 306, + sym_comma_expression = 307, + sym_conditional_expression = 308, + sym_assignment_expression = 309, + sym_pointer_expression = 310, + sym_unary_expression = 311, + sym_binary_expression = 312, + sym_update_expression = 313, + sym_cast_expression = 314, + sym_type_descriptor = 315, + sym_sizeof_expression = 316, + sym_alignof_expression = 317, + sym_offsetof_expression = 318, + sym_generic_expression = 319, + sym_subscript_expression = 320, + sym_call_expression = 321, + sym_gnu_asm_expression = 322, + sym_gnu_asm_qualifier = 323, + sym_gnu_asm_output_operand_list = 324, + sym_gnu_asm_output_operand = 325, + sym_gnu_asm_input_operand_list = 326, + sym_gnu_asm_input_operand = 327, + sym_gnu_asm_clobber_list = 328, + sym_gnu_asm_goto_list = 329, + sym_argument_list = 330, + sym_field_expression = 331, + sym_compound_literal_expression = 332, + sym_parenthesized_expression = 333, + sym_initializer_list = 334, + sym_initializer_pair = 335, + sym_subscript_designator = 336, + sym_field_designator = 337, + sym_char_literal = 338, + sym_concatenated_string = 339, + sym_string_literal = 340, + sym_null = 341, + sym__empty_declaration = 342, + sym_placeholder_type_specifier = 343, + sym_decltype_auto = 344, + sym_decltype = 345, + sym__class_declaration = 346, + sym__class_declaration_item = 347, + sym_class_specifier = 348, + sym__class_name = 349, + sym_virtual_specifier = 350, + sym_virtual = 351, + sym_alignas_specifier = 352, + sym_explicit_function_specifier = 353, + sym_base_class_clause = 354, + sym__enum_base_clause = 355, + sym_dependent_type = 356, + sym_template_declaration = 357, + sym_template_instantiation = 358, + sym_template_parameter_list = 359, + sym_type_parameter_declaration = 360, + sym_variadic_type_parameter_declaration = 361, + sym_optional_type_parameter_declaration = 362, + sym_template_template_parameter_declaration = 363, + sym_optional_parameter_declaration = 364, + sym_variadic_parameter_declaration = 365, + sym_variadic_declarator = 366, + sym_variadic_reference_declarator = 367, + sym_operator_cast = 368, + sym_field_initializer_list = 369, + sym_field_initializer = 370, + sym_inline_method_definition = 371, + sym__constructor_specifiers = 372, + sym_operator_cast_definition = 373, + sym_operator_cast_declaration = 374, + sym_constructor_try_statement = 375, + sym_constructor_or_destructor_definition = 376, + sym_constructor_or_destructor_declaration = 377, + sym_default_method_clause = 378, + sym_delete_method_clause = 379, + sym_friend_declaration = 380, + sym_access_specifier = 381, + sym_reference_declarator = 382, + sym_reference_field_declarator = 383, + sym_abstract_reference_declarator = 384, + sym_structured_binding_declarator = 385, + sym_ref_qualifier = 386, + sym__function_declarator_seq = 387, + sym__function_attributes_start = 388, + sym__function_exception_specification = 389, + sym__function_attributes_end = 390, + sym__function_postfix = 391, + sym_trailing_return_type = 392, + sym_noexcept = 393, + sym_throw_specifier = 394, + sym_template_type = 395, + sym_template_method = 396, + sym_template_function = 397, + sym_template_argument_list = 398, + sym_namespace_definition = 399, + sym_namespace_alias_definition = 400, + sym__namespace_specifier = 401, + sym_nested_namespace_specifier = 402, + sym_using_declaration = 403, + sym_alias_declaration = 404, + sym_static_assert_declaration = 405, + sym_concept_definition = 406, + sym_for_range_loop = 407, + sym__for_range_loop_body = 408, + sym_init_statement = 409, + sym_condition_clause = 410, + sym_condition_declaration = 411, + sym_co_return_statement = 412, + sym_co_yield_statement = 413, + sym_throw_statement = 414, + sym_try_statement = 415, + sym_catch_clause = 416, + sym_raw_string_literal = 417, + sym_subscript_argument_list = 418, + sym_co_await_expression = 419, + sym_new_expression = 420, + sym_new_declarator = 421, + sym_delete_expression = 422, + sym_type_requirement = 423, + sym_compound_requirement = 424, + sym__requirement = 425, + sym_requirement_seq = 426, + sym_constraint_conjunction = 427, + sym_constraint_disjunction = 428, + sym__requirement_clause_constraint = 429, + sym_requires_clause = 430, + sym_requires_parameter_list = 431, + sym_requires_expression = 432, + sym_lambda_expression = 433, + sym_lambda_capture_specifier = 434, + sym_lambda_default_capture = 435, + sym__fold_operator = 436, + sym__binary_fold_operator = 437, + sym__unary_left_fold = 438, + sym__unary_right_fold = 439, + sym__binary_fold = 440, + sym_fold_expression = 441, + sym_parameter_pack_expansion = 442, + sym_type_parameter_pack_expansion = 443, + sym_destructor_name = 444, + sym_dependent_identifier = 445, + sym_dependent_field_identifier = 446, + sym_dependent_type_identifier = 447, + sym__scope_resolution = 448, + sym_qualified_field_identifier = 449, + sym_qualified_identifier = 450, + sym_qualified_type_identifier = 451, + sym_qualified_operator_cast_identifier = 452, + sym_operator_name = 453, + sym_user_defined_literal = 454, + aux_sym_translation_unit_repeat1 = 455, + aux_sym_preproc_params_repeat1 = 456, + aux_sym_preproc_if_repeat1 = 457, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 458, + aux_sym_preproc_argument_list_repeat1 = 459, + aux_sym__declaration_declarator_repeat1 = 460, + aux_sym_type_definition_repeat1 = 461, + aux_sym__type_definition_type_repeat1 = 462, + aux_sym__type_definition_declarators_repeat1 = 463, + aux_sym__declaration_specifiers_repeat1 = 464, + aux_sym_attribute_declaration_repeat1 = 465, + aux_sym_attributed_declarator_repeat1 = 466, + aux_sym_pointer_declarator_repeat1 = 467, + aux_sym_sized_type_specifier_repeat1 = 468, + aux_sym_enumerator_list_repeat1 = 469, + aux_sym_field_declaration_repeat1 = 470, + aux_sym_parameter_list_repeat1 = 471, + aux_sym_case_statement_repeat1 = 472, + aux_sym_generic_expression_repeat1 = 473, + aux_sym_gnu_asm_expression_repeat1 = 474, + aux_sym_gnu_asm_output_operand_list_repeat1 = 475, + aux_sym_gnu_asm_input_operand_list_repeat1 = 476, + aux_sym_gnu_asm_clobber_list_repeat1 = 477, + aux_sym_gnu_asm_goto_list_repeat1 = 478, + aux_sym_argument_list_repeat1 = 479, + aux_sym_initializer_list_repeat1 = 480, + aux_sym_initializer_pair_repeat1 = 481, + aux_sym_concatenated_string_repeat1 = 482, + aux_sym_string_literal_repeat1 = 483, + aux_sym__class_declaration_repeat1 = 484, + aux_sym_base_class_clause_repeat1 = 485, + aux_sym_template_parameter_list_repeat1 = 486, + aux_sym_field_initializer_list_repeat1 = 487, + aux_sym_operator_cast_definition_repeat1 = 488, + aux_sym_constructor_try_statement_repeat1 = 489, + aux_sym_structured_binding_declarator_repeat1 = 490, + aux_sym__function_postfix_repeat1 = 491, + aux_sym_throw_specifier_repeat1 = 492, + aux_sym_template_argument_list_repeat1 = 493, + aux_sym_subscript_argument_list_repeat1 = 494, + aux_sym_requirement_seq_repeat1 = 495, + aux_sym_requires_parameter_list_repeat1 = 496, + aux_sym_lambda_capture_specifier_repeat1 = 497, + alias_sym_field_identifier = 498, + alias_sym_namespace_identifier = 499, + alias_sym_simple_requirement = 500, + alias_sym_statement_identifier = 501, + alias_sym_type_identifier = 502, }; static const char * const ts_symbol_names[] = { @@ -753,7 +763,10 @@ static const char * const ts_symbol_names[] = { [sym_preproc_binary_expression] = "binary_expression", [sym_function_definition] = "function_definition", [sym_declaration] = "declaration", + [sym__declaration_declarator] = "_declaration_declarator", [sym_type_definition] = "type_definition", + [sym__type_definition_type] = "_type_definition_type", + [sym__type_definition_declarators] = "_type_definition_declarators", [sym__declaration_modifiers] = "_declaration_modifiers", [sym__declaration_specifiers] = "_declaration_specifiers", [sym_linkage_specification] = "linkage_specification", @@ -817,6 +830,7 @@ static const char * const ts_symbol_names[] = { [sym_while_statement] = "while_statement", [sym_do_statement] = "do_statement", [sym_for_statement] = "for_statement", + [sym__for_statement_body] = "_for_statement_body", [sym_return_statement] = "return_statement", [sym_break_statement] = "break_statement", [sym_continue_statement] = "continue_statement", @@ -863,6 +877,7 @@ static const char * const ts_symbol_names[] = { [sym_decltype_auto] = "decltype", [sym_decltype] = "decltype", [sym__class_declaration] = "_class_declaration", + [sym__class_declaration_item] = "_class_declaration_item", [sym_class_specifier] = "class_specifier", [sym__class_name] = "_class_name", [sym_virtual_specifier] = "virtual_specifier", @@ -903,6 +918,10 @@ static const char * const ts_symbol_names[] = { [sym_structured_binding_declarator] = "structured_binding_declarator", [sym_ref_qualifier] = "ref_qualifier", [sym__function_declarator_seq] = "_function_declarator_seq", + [sym__function_attributes_start] = "_function_attributes_start", + [sym__function_exception_specification] = "_function_exception_specification", + [sym__function_attributes_end] = "_function_attributes_end", + [sym__function_postfix] = "_function_postfix", [sym_trailing_return_type] = "trailing_return_type", [sym_noexcept] = "noexcept", [sym_throw_specifier] = "throw_specifier", @@ -919,6 +938,7 @@ static const char * const ts_symbol_names[] = { [sym_static_assert_declaration] = "static_assert_declaration", [sym_concept_definition] = "concept_definition", [sym_for_range_loop] = "for_range_loop", + [sym__for_range_loop_body] = "_for_range_loop_body", [sym_init_statement] = "init_statement", [sym_condition_clause] = "condition_clause", [sym_condition_declaration] = "declaration", @@ -970,10 +990,10 @@ static const char * const ts_symbol_names[] = { [aux_sym_preproc_if_repeat1] = "preproc_if_repeat1", [aux_sym_preproc_if_in_field_declaration_list_repeat1] = "preproc_if_in_field_declaration_list_repeat1", [aux_sym_preproc_argument_list_repeat1] = "preproc_argument_list_repeat1", - [aux_sym_declaration_repeat1] = "declaration_repeat1", + [aux_sym__declaration_declarator_repeat1] = "_declaration_declarator_repeat1", [aux_sym_type_definition_repeat1] = "type_definition_repeat1", - [aux_sym_type_definition_repeat2] = "type_definition_repeat2", - [aux_sym_type_definition_repeat3] = "type_definition_repeat3", + [aux_sym__type_definition_type_repeat1] = "_type_definition_type_repeat1", + [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_attributed_declarator_repeat1] = "attributed_declarator_repeat1", @@ -1001,7 +1021,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_operator_cast_definition_repeat1] = "operator_cast_definition_repeat1", [aux_sym_constructor_try_statement_repeat1] = "constructor_try_statement_repeat1", [aux_sym_structured_binding_declarator_repeat1] = "structured_binding_declarator_repeat1", - [aux_sym__function_declarator_seq_repeat1] = "_function_declarator_seq_repeat1", + [aux_sym__function_postfix_repeat1] = "_function_postfix_repeat1", [aux_sym_throw_specifier_repeat1] = "throw_specifier_repeat1", [aux_sym_template_argument_list_repeat1] = "template_argument_list_repeat1", [aux_sym_subscript_argument_list_repeat1] = "subscript_argument_list_repeat1", @@ -1249,7 +1269,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_preproc_binary_expression] = sym_binary_expression, [sym_function_definition] = sym_function_definition, [sym_declaration] = sym_declaration, + [sym__declaration_declarator] = sym__declaration_declarator, [sym_type_definition] = sym_type_definition, + [sym__type_definition_type] = sym__type_definition_type, + [sym__type_definition_declarators] = sym__type_definition_declarators, [sym__declaration_modifiers] = sym__declaration_modifiers, [sym__declaration_specifiers] = sym__declaration_specifiers, [sym_linkage_specification] = sym_linkage_specification, @@ -1313,6 +1336,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_while_statement] = sym_while_statement, [sym_do_statement] = sym_do_statement, [sym_for_statement] = sym_for_statement, + [sym__for_statement_body] = sym__for_statement_body, [sym_return_statement] = sym_return_statement, [sym_break_statement] = sym_break_statement, [sym_continue_statement] = sym_continue_statement, @@ -1359,6 +1383,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_decltype_auto] = sym_decltype, [sym_decltype] = sym_decltype, [sym__class_declaration] = sym__class_declaration, + [sym__class_declaration_item] = sym__class_declaration_item, [sym_class_specifier] = sym_class_specifier, [sym__class_name] = sym__class_name, [sym_virtual_specifier] = sym_virtual_specifier, @@ -1399,6 +1424,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_structured_binding_declarator] = sym_structured_binding_declarator, [sym_ref_qualifier] = sym_ref_qualifier, [sym__function_declarator_seq] = sym__function_declarator_seq, + [sym__function_attributes_start] = sym__function_attributes_start, + [sym__function_exception_specification] = sym__function_exception_specification, + [sym__function_attributes_end] = sym__function_attributes_end, + [sym__function_postfix] = sym__function_postfix, [sym_trailing_return_type] = sym_trailing_return_type, [sym_noexcept] = sym_noexcept, [sym_throw_specifier] = sym_throw_specifier, @@ -1415,6 +1444,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_static_assert_declaration] = sym_static_assert_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, [sym_init_statement] = sym_init_statement, [sym_condition_clause] = sym_condition_clause, [sym_condition_declaration] = sym_declaration, @@ -1466,10 +1496,10 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_preproc_if_repeat1] = aux_sym_preproc_if_repeat1, [aux_sym_preproc_if_in_field_declaration_list_repeat1] = aux_sym_preproc_if_in_field_declaration_list_repeat1, [aux_sym_preproc_argument_list_repeat1] = aux_sym_preproc_argument_list_repeat1, - [aux_sym_declaration_repeat1] = aux_sym_declaration_repeat1, + [aux_sym__declaration_declarator_repeat1] = aux_sym__declaration_declarator_repeat1, [aux_sym_type_definition_repeat1] = aux_sym_type_definition_repeat1, - [aux_sym_type_definition_repeat2] = aux_sym_type_definition_repeat2, - [aux_sym_type_definition_repeat3] = aux_sym_type_definition_repeat3, + [aux_sym__type_definition_type_repeat1] = aux_sym__type_definition_type_repeat1, + [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_attributed_declarator_repeat1] = aux_sym_attributed_declarator_repeat1, @@ -1497,7 +1527,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_operator_cast_definition_repeat1] = aux_sym_operator_cast_definition_repeat1, [aux_sym_constructor_try_statement_repeat1] = aux_sym_constructor_try_statement_repeat1, [aux_sym_structured_binding_declarator_repeat1] = aux_sym_structured_binding_declarator_repeat1, - [aux_sym__function_declarator_seq_repeat1] = aux_sym__function_declarator_seq_repeat1, + [aux_sym__function_postfix_repeat1] = aux_sym__function_postfix_repeat1, [aux_sym_throw_specifier_repeat1] = aux_sym_throw_specifier_repeat1, [aux_sym_template_argument_list_repeat1] = aux_sym_template_argument_list_repeat1, [aux_sym_subscript_argument_list_repeat1] = aux_sym_subscript_argument_list_repeat1, @@ -2444,10 +2474,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__declaration_declarator] = { + .visible = false, + .named = true, + }, [sym_type_definition] = { .visible = true, .named = true, }, + [sym__type_definition_type] = { + .visible = false, + .named = true, + }, + [sym__type_definition_declarators] = { + .visible = false, + .named = true, + }, [sym__declaration_modifiers] = { .visible = false, .named = true, @@ -2705,6 +2747,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__for_statement_body] = { + .visible = false, + .named = true, + }, [sym_return_statement] = { .visible = true, .named = true, @@ -2890,6 +2936,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__class_declaration_item] = { + .visible = false, + .named = true, + }, [sym_class_specifier] = { .visible = true, .named = true, @@ -3050,6 +3100,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__function_attributes_start] = { + .visible = false, + .named = true, + }, + [sym__function_exception_specification] = { + .visible = false, + .named = true, + }, + [sym__function_attributes_end] = { + .visible = false, + .named = true, + }, + [sym__function_postfix] = { + .visible = false, + .named = true, + }, [sym_trailing_return_type] = { .visible = true, .named = true, @@ -3114,6 +3180,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__for_range_loop_body] = { + .visible = false, + .named = true, + }, [sym_init_statement] = { .visible = true, .named = true, @@ -3318,7 +3388,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_declaration_repeat1] = { + [aux_sym__declaration_declarator_repeat1] = { .visible = false, .named = false, }, @@ -3326,11 +3396,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_type_definition_repeat2] = { + [aux_sym__type_definition_type_repeat1] = { .visible = false, .named = false, }, - [aux_sym_type_definition_repeat3] = { + [aux_sym__type_definition_declarators_repeat1] = { .visible = false, .named = false, }, @@ -3442,7 +3512,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym__function_declarator_seq_repeat1] = { + [aux_sym__function_postfix_repeat1] = { .visible = false, .named = false, }, @@ -3605,206 +3675,192 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [10] = {.index = 11, .length = 1}, [11] = {.index = 12, .length = 1}, [12] = {.index = 13, .length = 2}, - [13] = {.index = 15, .length = 1}, - [14] = {.index = 16, .length = 1}, - [15] = {.index = 17, .length = 2}, - [16] = {.index = 17, .length = 2}, - [18] = {.index = 19, .length = 1}, - [19] = {.index = 20, .length = 1}, - [20] = {.index = 21, .length = 1}, - [21] = {.index = 22, .length = 1}, - [22] = {.index = 23, .length = 2}, - [23] = {.index = 25, .length = 2}, - [24] = {.index = 27, .length = 1}, - [25] = {.index = 28, .length = 1}, - [26] = {.index = 29, .length = 1}, - [27] = {.index = 30, .length = 2}, + [13] = {.index = 15, .length = 2}, + [14] = {.index = 17, .length = 1}, + [15] = {.index = 18, .length = 1}, + [16] = {.index = 19, .length = 2}, + [17] = {.index = 19, .length = 2}, + [19] = {.index = 21, .length = 1}, + [20] = {.index = 22, .length = 1}, + [21] = {.index = 23, .length = 1}, + [22] = {.index = 24, .length = 1}, + [23] = {.index = 25, .length = 1}, + [24] = {.index = 26, .length = 2}, + [25] = {.index = 28, .length = 2}, + [26] = {.index = 30, .length = 1}, + [27] = {.index = 31, .length = 1}, [28] = {.index = 32, .length = 2}, - [29] = {.index = 16, .length = 1}, - [30] = {.index = 34, .length = 2}, - [31] = {.index = 36, .length = 1}, - [32] = {.index = 37, .length = 2}, - [33] = {.index = 37, .length = 2}, - [34] = {.index = 19, .length = 1}, - [35] = {.index = 39, .length = 1}, - [36] = {.index = 40, .length = 2}, + [29] = {.index = 34, .length = 2}, + [30] = {.index = 18, .length = 1}, + [31] = {.index = 36, .length = 2}, + [32] = {.index = 38, .length = 1}, + [33] = {.index = 39, .length = 2}, + [34] = {.index = 39, .length = 2}, + [35] = {.index = 21, .length = 1}, + [36] = {.index = 41, .length = 1}, [37] = {.index = 42, .length = 2}, - [38] = {.index = 44, .length = 3}, - [39] = {.index = 47, .length = 1}, - [42] = {.index = 48, .length = 2}, - [43] = {.index = 50, .length = 1}, - [44] = {.index = 51, .length = 1}, - [45] = {.index = 52, .length = 1}, - [46] = {.index = 53, .length = 2}, + [38] = {.index = 44, .length = 2}, + [39] = {.index = 46, .length = 3}, + [40] = {.index = 49, .length = 1}, + [43] = {.index = 50, .length = 2}, + [44] = {.index = 52, .length = 1}, + [45] = {.index = 53, .length = 1}, + [46] = {.index = 54, .length = 1}, [47] = {.index = 55, .length = 2}, [48] = {.index = 57, .length = 2}, [49] = {.index = 59, .length = 2}, [50] = {.index = 61, .length = 2}, - [51] = {.index = 63, .length = 1}, - [52] = {.index = 64, .length = 3}, - [53] = {.index = 67, .length = 1}, - [54] = {.index = 68, .length = 1}, - [55] = {.index = 69, .length = 1}, - [56] = {.index = 70, .length = 2}, - [58] = {.index = 53, .length = 2}, - [59] = {.index = 72, .length = 2}, + [51] = {.index = 63, .length = 2}, + [52] = {.index = 65, .length = 1}, + [53] = {.index = 66, .length = 3}, + [54] = {.index = 69, .length = 1}, + [55] = {.index = 70, .length = 1}, + [56] = {.index = 71, .length = 1}, + [57] = {.index = 72, .length = 2}, + [59] = {.index = 55, .length = 2}, [60] = {.index = 74, .length = 2}, [61] = {.index = 76, .length = 2}, - [63] = {.index = 78, .length = 2}, + [62] = {.index = 78, .length = 2}, [64] = {.index = 80, .length = 2}, - [65] = {.index = 82, .length = 3}, - [66] = {.index = 85, .length = 2}, + [65] = {.index = 82, .length = 2}, + [66] = {.index = 84, .length = 3}, [67] = {.index = 87, .length = 2}, - [68] = {.index = 89, .length = 3}, - [69] = {.index = 89, .length = 3}, - [70] = {.index = 92, .length = 3}, + [68] = {.index = 89, .length = 2}, + [69] = {.index = 91, .length = 2}, + [70] = {.index = 93, .length = 2}, [71] = {.index = 95, .length = 3}, - [72] = {.index = 98, .length = 3}, - [73] = {.index = 101, .length = 2}, - [74] = {.index = 103, .length = 2}, - [75] = {.index = 105, .length = 2}, - [76] = {.index = 107, .length = 1}, - [77] = {.index = 108, .length = 2}, - [78] = {.index = 110, .length = 2}, - [79] = {.index = 112, .length = 2}, - [80] = {.index = 114, .length = 3}, - [81] = {.index = 117, .length = 2}, - [82] = {.index = 119, .length = 1}, - [83] = {.index = 120, .length = 2}, - [84] = {.index = 122, .length = 2}, - [85] = {.index = 124, .length = 2}, + [72] = {.index = 95, .length = 3}, + [73] = {.index = 98, .length = 3}, + [74] = {.index = 101, .length = 3}, + [75] = {.index = 104, .length = 3}, + [76] = {.index = 107, .length = 2}, + [77] = {.index = 109, .length = 2}, + [78] = {.index = 111, .length = 2}, + [79] = {.index = 113, .length = 1}, + [80] = {.index = 114, .length = 2}, + [81] = {.index = 116, .length = 2}, + [82] = {.index = 118, .length = 2}, + [83] = {.index = 120, .length = 3}, + [84] = {.index = 123, .length = 2}, + [85] = {.index = 125, .length = 1}, [86] = {.index = 126, .length = 2}, [87] = {.index = 128, .length = 2}, [88] = {.index = 130, .length = 2}, - [89] = {.index = 130, .length = 2}, - [91] = {.index = 132, .length = 2}, - [92] = {.index = 134, .length = 1}, - [93] = {.index = 134, .length = 1}, - [94] = {.index = 135, .length = 3}, - [96] = {.index = 138, .length = 2}, - [97] = {.index = 140, .length = 2}, - [98] = {.index = 142, .length = 3}, - [99] = {.index = 145, .length = 1}, - [101] = {.index = 146, .length = 3}, - [102] = {.index = 149, .length = 3}, + [89] = {.index = 132, .length = 2}, + [90] = {.index = 134, .length = 2}, + [91] = {.index = 136, .length = 2}, + [92] = {.index = 138, .length = 2}, + [93] = {.index = 138, .length = 2}, + [95] = {.index = 140, .length = 2}, + [96] = {.index = 142, .length = 1}, + [97] = {.index = 142, .length = 1}, + [98] = {.index = 143, .length = 3}, + [100] = {.index = 146, .length = 2}, + [101] = {.index = 148, .length = 2}, + [102] = {.index = 150, .length = 2}, [103] = {.index = 152, .length = 3}, - [104] = {.index = 155, .length = 2}, - [105] = {.index = 157, .length = 3}, - [106] = {.index = 160, .length = 3}, - [107] = {.index = 163, .length = 2}, - [108] = {.index = 165, .length = 3}, - [109] = {.index = 168, .length = 2}, - [110] = {.index = 17, .length = 2}, - [111] = {.index = 37, .length = 2}, - [112] = {.index = 170, .length = 2}, - [113] = {.index = 172, .length = 2}, - [114] = {.index = 174, .length = 1}, - [115] = {.index = 175, .length = 4}, - [116] = {.index = 179, .length = 4}, - [117] = {.index = 183, .length = 2}, - [118] = {.index = 185, .length = 3}, - [119] = {.index = 188, .length = 2}, - [120] = {.index = 190, .length = 2}, - [121] = {.index = 192, .length = 1}, - [122] = {.index = 193, .length = 2}, - [123] = {.index = 195, .length = 3}, - [124] = {.index = 198, .length = 3}, - [125] = {.index = 201, .length = 3}, - [126] = {.index = 204, .length = 3}, - [127] = {.index = 207, .length = 2}, - [128] = {.index = 209, .length = 2}, - [129] = {.index = 211, .length = 3}, - [130] = {.index = 214, .length = 2}, - [131] = {.index = 216, .length = 1}, - [132] = {.index = 217, .length = 2}, - [133] = {.index = 219, .length = 1}, - [134] = {.index = 220, .length = 3}, - [135] = {.index = 223, .length = 2}, - [136] = {.index = 225, .length = 3}, - [137] = {.index = 228, .length = 2}, - [138] = {.index = 230, .length = 1}, - [139] = {.index = 231, .length = 1}, - [140] = {.index = 232, .length = 2}, - [141] = {.index = 234, .length = 1}, - [143] = {.index = 235, .length = 1}, - [144] = {.index = 236, .length = 2}, - [145] = {.index = 238, .length = 2}, - [146] = {.index = 11, .length = 1}, - [147] = {.index = 11, .length = 1}, - [148] = {.index = 240, .length = 2}, - [149] = {.index = 242, .length = 1}, - [150] = {.index = 243, .length = 1}, - [151] = {.index = 244, .length = 4}, - [152] = {.index = 248, .length = 2}, - [153] = {.index = 250, .length = 4}, - [154] = {.index = 254, .length = 1}, - [155] = {.index = 255, .length = 2}, - [156] = {.index = 257, .length = 3}, - [157] = {.index = 260, .length = 1}, - [158] = {.index = 261, .length = 5}, - [159] = {.index = 266, .length = 2}, - [160] = {.index = 268, .length = 2}, - [161] = {.index = 270, .length = 3}, - [162] = {.index = 273, .length = 2}, - [163] = {.index = 275, .length = 2}, - [164] = {.index = 277, .length = 3}, - [165] = {.index = 280, .length = 4}, - [166] = {.index = 284, .length = 3}, - [167] = {.index = 287, .length = 4}, - [168] = {.index = 291, .length = 4}, - [169] = {.index = 295, .length = 2}, - [170] = {.index = 297, .length = 2}, - [171] = {.index = 299, .length = 1}, - [172] = {.index = 300, .length = 2}, + [104] = {.index = 155, .length = 1}, + [105] = {.index = 156, .length = 1}, + [107] = {.index = 157, .length = 2}, + [108] = {.index = 159, .length = 3}, + [109] = {.index = 162, .length = 3}, + [110] = {.index = 165, .length = 3}, + [111] = {.index = 168, .length = 2}, + [112] = {.index = 170, .length = 3}, + [113] = {.index = 173, .length = 2}, + [114] = {.index = 175, .length = 3}, + [115] = {.index = 178, .length = 2}, + [116] = {.index = 19, .length = 2}, + [117] = {.index = 39, .length = 2}, + [118] = {.index = 180, .length = 2}, + [119] = {.index = 182, .length = 2}, + [120] = {.index = 184, .length = 1}, + [121] = {.index = 185, .length = 4}, + [122] = {.index = 189, .length = 4}, + [123] = {.index = 193, .length = 2}, + [124] = {.index = 195, .length = 3}, + [125] = {.index = 198, .length = 2}, + [126] = {.index = 200, .length = 2}, + [127] = {.index = 202, .length = 1}, + [128] = {.index = 203, .length = 2}, + [129] = {.index = 205, .length = 2}, + [130] = {.index = 207, .length = 3}, + [131] = {.index = 210, .length = 3}, + [132] = {.index = 213, .length = 3}, + [133] = {.index = 216, .length = 2}, + [134] = {.index = 218, .length = 2}, + [135] = {.index = 220, .length = 3}, + [136] = {.index = 223, .length = 2}, + [137] = {.index = 225, .length = 2}, + [138] = {.index = 227, .length = 3}, + [139] = {.index = 230, .length = 2}, + [140] = {.index = 232, .length = 3}, + [141] = {.index = 235, .length = 2}, + [142] = {.index = 237, .length = 1}, + [143] = {.index = 238, .length = 2}, + [144] = {.index = 240, .length = 2}, + [145] = {.index = 242, .length = 4}, + [146] = {.index = 246, .length = 5}, + [147] = {.index = 251, .length = 1}, + [148] = {.index = 252, .length = 1}, + [149] = {.index = 253, .length = 2}, + [150] = {.index = 255, .length = 1}, + [152] = {.index = 256, .length = 1}, + [153] = {.index = 257, .length = 2}, + [154] = {.index = 259, .length = 2}, + [155] = {.index = 11, .length = 1}, + [156] = {.index = 11, .length = 1}, + [157] = {.index = 261, .length = 2}, + [158] = {.index = 263, .length = 1}, + [159] = {.index = 264, .length = 1}, + [160] = {.index = 265, .length = 4}, + [161] = {.index = 269, .length = 2}, + [162] = {.index = 271, .length = 1}, + [163] = {.index = 272, .length = 2}, + [164] = {.index = 274, .length = 3}, + [165] = {.index = 277, .length = 1}, + [166] = {.index = 278, .length = 5}, + [167] = {.index = 283, .length = 2}, + [168] = {.index = 285, .length = 2}, + [169] = {.index = 287, .length = 4}, + [170] = {.index = 291, .length = 3}, + [171] = {.index = 294, .length = 4}, + [172] = {.index = 298, .length = 4}, [173] = {.index = 302, .length = 3}, - [174] = {.index = 305, .length = 1}, - [175] = {.index = 306, .length = 2}, - [176] = {.index = 308, .length = 2}, - [177] = {.index = 310, .length = 2}, - [178] = {.index = 312, .length = 3}, - [179] = {.index = 315, .length = 2}, - [180] = {.index = 317, .length = 2}, - [181] = {.index = 319, .length = 3}, - [182] = {.index = 322, .length = 2}, - [183] = {.index = 324, .length = 3}, - [184] = {.index = 327, .length = 3}, - [185] = {.index = 330, .length = 2}, - [186] = {.index = 332, .length = 2}, - [187] = {.index = 334, .length = 4}, - [188] = {.index = 338, .length = 5}, - [189] = {.index = 343, .length = 2}, - [190] = {.index = 345, .length = 2}, - [191] = {.index = 347, .length = 2}, - [192] = {.index = 349, .length = 2}, - [193] = {.index = 351, .length = 3}, - [194] = {.index = 354, .length = 3}, - [195] = {.index = 357, .length = 2}, - [196] = {.index = 359, .length = 2}, - [197] = {.index = 361, .length = 1}, - [198] = {.index = 362, .length = 4}, - [199] = {.index = 366, .length = 3}, - [200] = {.index = 369, .length = 2}, - [201] = {.index = 371, .length = 1}, - [202] = {.index = 372, .length = 3}, - [203] = {.index = 375, .length = 5}, - [204] = {.index = 380, .length = 2}, - [205] = {.index = 382, .length = 3}, - [206] = {.index = 385, .length = 4}, - [207] = {.index = 389, .length = 4}, - [208] = {.index = 393, .length = 3}, - [209] = {.index = 396, .length = 3}, - [210] = {.index = 399, .length = 2}, - [211] = {.index = 401, .length = 2}, - [212] = {.index = 63, .length = 1}, - [213] = {.index = 403, .length = 5}, - [214] = {.index = 408, .length = 4}, - [215] = {.index = 412, .length = 4}, - [216] = {.index = 416, .length = 5}, - [217] = {.index = 421, .length = 2}, - [218] = {.index = 423, .length = 2}, - [219] = {.index = 425, .length = 5}, - [220] = {.index = 430, .length = 2}, - [221] = {.index = 432, .length = 3}, + [174] = {.index = 305, .length = 2}, + [175] = {.index = 307, .length = 3}, + [176] = {.index = 310, .length = 3}, + [177] = {.index = 313, .length = 2}, + [178] = {.index = 315, .length = 2}, + [179] = {.index = 317, .length = 2}, + [180] = {.index = 319, .length = 2}, + [181] = {.index = 321, .length = 3}, + [182] = {.index = 324, .length = 2}, + [183] = {.index = 326, .length = 2}, + [184] = {.index = 328, .length = 3}, + [185] = {.index = 331, .length = 2}, + [186] = {.index = 333, .length = 2}, + [187] = {.index = 335, .length = 4}, + [188] = {.index = 339, .length = 5}, + [189] = {.index = 344, .length = 3}, + [190] = {.index = 347, .length = 4}, + [191] = {.index = 351, .length = 2}, + [192] = {.index = 353, .length = 1}, + [193] = {.index = 354, .length = 4}, + [194] = {.index = 358, .length = 3}, + [195] = {.index = 361, .length = 2}, + [196] = {.index = 363, .length = 1}, + [197] = {.index = 364, .length = 5}, + [198] = {.index = 369, .length = 2}, + [199] = {.index = 371, .length = 2}, + [200] = {.index = 65, .length = 1}, + [201] = {.index = 373, .length = 5}, + [202] = {.index = 378, .length = 4}, + [203] = {.index = 382, .length = 2}, + [204] = {.index = 384, .length = 2}, + [205] = {.index = 386, .length = 5}, + [206] = {.index = 391, .length = 2}, + [207] = {.index = 393, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3835,609 +3891,556 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 1, .inherited = true}, {field_name, 1, .inherited = true}, [15] = + {field_body, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + [17] = {field_value, 1}, - [16] = + [18] = {field_scope, 0}, - [17] = + [19] = {field_arguments, 1}, {field_name, 0}, - [19] = + [21] = {field_type, 1}, - [20] = + [22] = {field_requirements, 1}, - [21] = + [23] = {field_constraint, 1}, - [22] = + [24] = + {field_declarator, 0}, + [25] = {field_parameters, 0}, - [23] = + [26] = {field_declarator, 0}, {field_parameters, 1, .inherited = true}, - [25] = + [28] = {field_body, 1}, {field_declarator, 0}, - [27] = - {field_declarator, 0}, - [28] = + [30] = {field_constraint, 0}, - [29] = + [31] = {field_pattern, 0}, - [30] = + [32] = {field_argument, 0}, {field_operator, 1}, - [32] = + [34] = {field_argument, 0}, {field_indices, 1}, - [34] = + [36] = {field_body, 1}, {field_captures, 0}, - [36] = + [38] = {field_parameters, 0, .inherited = true}, - [37] = + [39] = {field_name, 1}, {field_scope, 0, .inherited = true}, - [39] = + [41] = {field_path, 1}, - [40] = + [42] = {field_argument, 1}, {field_directive, 0}, - [42] = + [44] = {field_declarator, 1}, {field_type, 0}, - [44] = + [46] = {field_left, 1, .inherited = true}, {field_operator, 1, .inherited = true}, {field_right, 1, .inherited = true}, - [47] = + [49] = {field_declarator, 2}, - [48] = + [50] = {field_body, 2}, {field_value, 1}, - [50] = + [52] = {field_type, 2}, - [51] = + [53] = {field_body, 2}, - [52] = + [54] = {field_name, 2}, - [53] = + [55] = {field_body, 2}, {field_name, 1}, - [55] = + [57] = {field_base, 2, .inherited = true}, {field_name, 1}, - [57] = + [59] = {field_body, 1}, {field_name, 0}, - [59] = + [61] = {field_condition, 1}, {field_consequence, 2}, - [61] = + [63] = {field_body, 2}, {field_condition, 1}, - [63] = + [65] = {field_label, 1}, - [64] = + [66] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [67] = + [69] = {field_label, 0}, - [68] = + [70] = {field_type, 0, .inherited = true}, - [69] = + [71] = {field_parameters, 1}, - [70] = + [72] = {field_declarator, 2}, {field_type, 1, .inherited = true}, - [72] = + [74] = {field_arguments, 2}, {field_type, 1}, - [74] = + [76] = {field_declarator, 2}, {field_type, 1}, - [76] = + [78] = {field_placement, 1}, {field_type, 2}, - [78] = + [80] = {field_parameters, 1}, {field_requirements, 2}, - [80] = - {field_declarator, 1}, - {field_type, 0, .inherited = true}, [82] = + {field_declarator, 1, .inherited = true}, + {field_type, 0, .inherited = true}, + [84] = {field_body, 2}, {field_declarator, 1}, {field_type, 0, .inherited = true}, - [85] = + [87] = + {field_declarator, 0}, + {field_declarator, 1}, + [89] = {field_declarator, 0}, {field_value, 1}, - [87] = + [91] = + {field_declarator, 0}, + {field_declarator, 1, .inherited = true}, + [93] = {field_body, 2}, {field_declarator, 0}, - [89] = + [95] = {field_argument, 0}, {field_field, 2}, {field_operator, 1}, - [92] = + [98] = {field_body, 2}, {field_captures, 0}, {field_declarator, 1}, - [95] = + [101] = {field_body, 2}, {field_captures, 0}, {field_template_parameters, 1}, - [98] = + [104] = {field_name, 1}, {field_name, 2}, {field_scope, 0, .inherited = true}, - [101] = + [107] = {field_body, 2}, {field_declarator, 1}, - [103] = + [109] = {field_name, 1}, {field_value, 2}, - [105] = + [111] = {field_name, 1}, {field_parameters, 2}, - [107] = + [113] = {field_condition, 1}, - [108] = + [114] = {field_alternative, 2}, {field_name, 1}, - [110] = + [116] = {field_declarator, 2}, {field_type, 0}, - [112] = + [118] = {field_left, 0}, {field_right, 2}, - [114] = + [120] = {field_left, 0}, {field_operator, 1, .inherited = true}, {field_right, 2}, - [117] = + [123] = {field_type, 1}, {field_value, 3}, - [119] = + [125] = {field_declarator, 3}, - [120] = + [126] = + {field_declarator, 2, .inherited = true}, + {field_type, 1, .inherited = true}, + [128] = {field_declarator, 0}, {field_parameters, 1}, - [122] = + [130] = {field_arguments, 3}, {field_type, 2}, - [124] = + [132] = {field_declarator, 3}, {field_type, 2}, - [126] = + [134] = {field_placement, 2}, {field_type, 3}, - [128] = + [136] = {field_name, 2}, {field_prefix, 0}, - [130] = + [138] = {field_body, 3}, {field_name, 2}, - [132] = + [140] = {field_base, 3, .inherited = true}, {field_name, 2}, - [134] = + [142] = {field_base, 1}, - [135] = + [143] = {field_base, 2, .inherited = true}, {field_body, 3}, {field_name, 1}, - [138] = + [146] = + {field_body, 2, .inherited = true}, + {field_name, 2, .inherited = true}, + [148] = {field_body, 2}, {field_name, 0}, - [140] = + [150] = {field_condition, 2}, {field_consequence, 3}, - [142] = + [152] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [145] = + [155] = + {field_initializer, 0}, + [156] = {field_assembly_code, 2}, - [146] = + [157] = + {field_declarator, 1}, + {field_type, 0, .inherited = true}, + [159] = {field_arguments, 3}, {field_declarator, 2}, {field_type, 1}, - [149] = + [162] = {field_arguments, 3}, {field_placement, 1}, {field_type, 2}, - [152] = + [165] = {field_declarator, 3}, {field_placement, 1}, {field_type, 2}, - [155] = + [168] = {field_declarator, 0}, {field_value, 2}, - [157] = - {field_declarator, 1}, - {field_declarator, 2}, - {field_type, 0, .inherited = true}, - [160] = + [170] = + {field_declarator, 0}, {field_declarator, 1}, {field_declarator, 2, .inherited = true}, - {field_type, 0, .inherited = true}, - [163] = + [173] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [165] = + [175] = {field_body, 3}, {field_declarator, 2}, {field_type, 1, .inherited = true}, - [168] = + [178] = {field_declarator, 0}, {field_size, 2}, - [170] = + [180] = {field_alternative, 3}, {field_condition, 0}, - [172] = + [182] = {field_declarator, 0}, {field_default_value, 2}, - [174] = + [184] = {field_size, 1}, - [175] = + [185] = {field_body, 3}, {field_captures, 0}, {field_declarator, 2}, {field_template_parameters, 1}, - [179] = + [189] = {field_body, 3}, {field_captures, 0}, {field_constraint, 2}, {field_template_parameters, 1}, - [183] = + [193] = {field_body, 3}, {field_declarator, 1}, - [185] = + [195] = {field_name, 1}, {field_parameters, 2}, {field_value, 3}, - [188] = + [198] = {field_alternative, 3}, {field_condition, 1}, - [190] = + [200] = {field_alternative, 3}, {field_name, 1}, - [192] = + [202] = {field_operator, 0}, - [193] = + [203] = {field_declarator, 3}, {field_type, 1}, - [195] = - {field_declarator, 2}, + [205] = {field_declarator, 3, .inherited = true}, - {field_type, 1}, - [198] = + {field_type, 2, .inherited = true}, + [207] = {field_arguments, 4}, {field_declarator, 3}, {field_type, 2}, - [201] = + [210] = {field_arguments, 4}, {field_placement, 2}, {field_type, 3}, - [204] = + [213] = {field_declarator, 4}, {field_placement, 2}, {field_type, 3}, - [207] = + [216] = {field_designator, 0}, {field_value, 2}, - [209] = + [218] = {field_name, 0}, {field_value, 2}, - [211] = + [220] = {field_base, 3, .inherited = true}, {field_body, 4}, {field_name, 2}, - [214] = - {field_body, 3}, - {field_name, 1}, - [216] = - {field_body, 3}, - [217] = + [223] = {field_body, 3}, {field_name, 0}, - [219] = - {field_name, 3}, - [220] = + [225] = + {field_body, 3, .inherited = true}, + {field_name, 3, .inherited = true}, + [227] = {field_declarator, 1}, {field_type, 0, .inherited = true}, {field_value, 2}, - [223] = + [230] = {field_initializer, 1}, {field_value, 2}, - [225] = + [232] = {field_alternative, 4}, {field_condition, 2}, {field_consequence, 3}, - [228] = + [235] = {field_body, 1}, {field_condition, 3}, - [230] = + [237] = + {field_update, 2}, + [238] = + {field_initializer, 0}, + {field_update, 2}, + [240] = + {field_condition, 1}, + {field_initializer, 0}, + [242] = + {field_body, 4}, + {field_condition, 2, .inherited = true}, + {field_initializer, 2, .inherited = true}, + {field_update, 2, .inherited = true}, + [246] = + {field_body, 4}, + {field_declarator, 2, .inherited = true}, + {field_initializer, 2, .inherited = true}, + {field_right, 2, .inherited = true}, + {field_type, 2, .inherited = true}, + [251] = {field_value, 3}, - [231] = + [252] = {field_operand, 1}, - [232] = + [253] = {field_assembly_code, 2}, {field_output_operands, 3}, - [234] = + [255] = {field_assembly_code, 3}, - [235] = + [256] = {field_default_type, 2}, - [236] = + [257] = {field_default_value, 2}, {field_type, 0, .inherited = true}, - [238] = + [259] = {field_body, 2}, {field_parameters, 1}, - [240] = + [261] = {field_name, 1}, {field_type, 3}, - [242] = + [263] = {field_condition, 2}, - [243] = + [264] = {field_length, 1}, - [244] = + [265] = {field_arguments, 4}, {field_declarator, 3}, {field_placement, 1}, {field_type, 2}, - [248] = - {field_declarator, 1}, - {field_declarator, 2}, - [250] = + [269] = {field_declarator, 1}, {field_declarator, 2}, - {field_declarator, 3, .inherited = true}, - {field_type, 0, .inherited = true}, - [254] = + [271] = {field_declarator, 4}, - [255] = + [272] = {field_declarator, 0}, {field_size, 3}, - [257] = + [274] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [260] = + [277] = {field_size, 2}, - [261] = + [278] = {field_body, 4}, {field_captures, 0}, {field_constraint, 2}, {field_declarator, 3}, {field_template_parameters, 1}, - [266] = + [283] = {field_declarator, 1}, {field_default_value, 3}, - [268] = + [285] = {field_alternative, 4}, {field_condition, 1}, - [270] = - {field_declarator, 3}, - {field_declarator, 4, .inherited = true}, - {field_type, 2}, - [273] = - {field_declarator, 4}, - {field_type, 2}, - [275] = - {field_declarator, 4}, - {field_type, 3}, - [277] = - {field_declarator, 3}, - {field_declarator, 4, .inherited = true}, - {field_type, 1}, - [280] = + [287] = {field_arguments, 5}, {field_declarator, 4}, {field_placement, 2}, {field_type, 3}, - [284] = + [291] = {field_declarator, 1}, {field_default_value, 2}, {field_type, 0, .inherited = true}, - [287] = + [294] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_default_value, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [291] = + [298] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, {field_default_value, 0, .inherited = true}, {field_default_value, 1, .inherited = true}, - [295] = - {field_body, 4}, - {field_name, 1}, - [297] = - {field_body, 4}, - {field_name, 2}, - [299] = - {field_body, 4}, - [300] = - {field_body, 4}, - {field_name, 3}, [302] = {field_declarator, 1}, {field_type, 0, .inherited = true}, {field_value, 3}, [305] = - {field_body, 5}, - [306] = - {field_body, 5}, - {field_initializer, 2}, - [308] = + {field_condition, 1}, + {field_update, 3}, + [307] = + {field_condition, 1}, + {field_initializer, 0}, + {field_update, 3}, + [310] = + {field_declarator, 1}, + {field_right, 3}, + {field_type, 0, .inherited = true}, + [313] = + {field_initializer, 0}, + {field_update, 3}, + [315] = + {field_condition, 2}, + {field_initializer, 0}, + [317] = {field_member, 4}, {field_type, 2}, - [310] = + [319] = {field_operand, 1}, {field_operand, 2, .inherited = true}, - [312] = + [321] = {field_assembly_code, 2}, {field_input_operands, 4}, {field_output_operands, 3}, - [315] = + [324] = {field_assembly_code, 3}, {field_output_operands, 4}, - [317] = + [326] = {field_default_type, 3}, {field_name, 1}, - [319] = + [328] = {field_declarator, 1}, {field_default_value, 3}, {field_type, 0, .inherited = true}, - [322] = + [331] = {field_name, 1}, {field_type, 4}, - [324] = - {field_declarator, 4}, - {field_declarator, 5, .inherited = true}, - {field_type, 2}, - [327] = - {field_declarator, 4}, - {field_declarator, 5, .inherited = true}, - {field_type, 3}, - [330] = - {field_declarator, 5}, - {field_type, 3}, - [332] = + [333] = {field_declarator, 1}, {field_default_value, 2}, - [334] = + [335] = {field_declarator, 1}, {field_declarator, 3, .inherited = true}, {field_default_value, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [338] = + [339] = {field_declarator, 1}, {field_declarator, 3, .inherited = true}, {field_default_value, 2}, {field_default_value, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [343] = - {field_body, 5}, - {field_name, 2}, - [345] = - {field_body, 5}, - {field_name, 3}, - [347] = - {field_body, 6}, + [344] = + {field_condition, 2}, + {field_initializer, 0}, {field_update, 4}, - [349] = - {field_body, 6}, - {field_condition, 3}, + [347] = + {field_declarator, 2}, + {field_initializer, 0}, + {field_right, 4}, + {field_type, 1, .inherited = true}, [351] = - {field_body, 6}, - {field_initializer, 2}, - {field_update, 4}, - [354] = - {field_body, 6}, - {field_condition, 3}, - {field_initializer, 2}, - [357] = - {field_body, 6}, - {field_initializer, 2}, - [359] = {field_operand, 0, .inherited = true}, {field_operand, 1, .inherited = true}, - [361] = + [353] = {field_register, 1}, - [362] = + [354] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_input_operands, 4}, {field_output_operands, 3}, - [366] = + [358] = {field_assembly_code, 3}, {field_input_operands, 5}, {field_output_operands, 4}, - [369] = + [361] = {field_condition, 2}, {field_message, 4}, - [371] = + [363] = {field_delimiter, 1}, - [372] = - {field_declarator, 5}, - {field_declarator, 6, .inherited = true}, - {field_type, 3}, - [375] = + [364] = {field_declarator, 1}, {field_declarator, 4, .inherited = true}, {field_default_value, 3}, {field_default_value, 4, .inherited = true}, {field_type, 0, .inherited = true}, - [380] = - {field_body, 6}, - {field_name, 3}, - [382] = - {field_body, 7}, - {field_condition, 3}, - {field_update, 5}, - [385] = - {field_body, 7}, - {field_condition, 3}, - {field_initializer, 2}, - {field_update, 5}, - [389] = - {field_body, 7}, - {field_declarator, 3}, - {field_right, 5}, - {field_type, 2, .inherited = true}, - [393] = - {field_body, 7}, - {field_initializer, 2}, - {field_update, 5}, - [396] = - {field_body, 7}, - {field_condition, 4}, - {field_initializer, 2}, - [399] = + [369] = {field_constraint, 0}, {field_value, 2}, - [401] = + [371] = {field_register, 1}, {field_register, 2, .inherited = true}, - [403] = + [373] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_goto_labels, 6}, {field_input_operands, 4}, {field_output_operands, 3}, - [408] = + [378] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_input_operands, 5}, {field_output_operands, 4}, - [412] = - {field_body, 8}, - {field_condition, 4}, - {field_initializer, 2}, - {field_update, 6}, - [416] = - {field_body, 8}, - {field_declarator, 4}, - {field_initializer, 2}, - {field_right, 6}, - {field_type, 3, .inherited = true}, - [421] = + [382] = {field_register, 0, .inherited = true}, {field_register, 1, .inherited = true}, - [423] = + [384] = {field_label, 1}, {field_label, 2, .inherited = true}, - [425] = + [386] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_goto_labels, 7}, {field_input_operands, 5}, {field_output_operands, 4}, - [430] = + [391] = {field_label, 0, .inherited = true}, {field_label, 1, .inherited = true}, - [432] = + [393] = {field_constraint, 3}, {field_symbol, 1}, {field_value, 5}, @@ -4448,86 +4451,86 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = { [0] = alias_sym_type_identifier, }, - [14] = { + [15] = { [0] = alias_sym_namespace_identifier, }, - [15] = { + [16] = { [0] = alias_sym_type_identifier, }, - [17] = { + [18] = { [0] = alias_sym_namespace_identifier, }, - [33] = { + [34] = { [1] = alias_sym_type_identifier, }, - [34] = { + [35] = { [1] = alias_sym_type_identifier, }, - [40] = { + [41] = { [0] = sym_primitive_type, }, - [41] = { + [42] = { [0] = sym_pointer_declarator, }, - [51] = { + [52] = { [1] = alias_sym_statement_identifier, }, - [53] = { + [54] = { [0] = alias_sym_statement_identifier, }, - [57] = { + [58] = { [1] = alias_sym_namespace_identifier, }, - [58] = { + [59] = { [1] = alias_sym_namespace_identifier, }, - [62] = { + [63] = { [0] = alias_sym_simple_requirement, }, - [68] = { + [71] = { [2] = alias_sym_field_identifier, }, - [88] = { + [92] = { [2] = alias_sym_namespace_identifier, }, - [90] = { + [94] = { [1] = alias_sym_field_identifier, }, - [92] = { + [96] = { [1] = alias_sym_type_identifier, }, - [95] = { + [99] = { [0] = alias_sym_field_identifier, }, - [100] = { + [106] = { [1] = alias_sym_type_identifier, }, - [110] = { + [116] = { [0] = alias_sym_field_identifier, }, - [111] = { + [117] = { [1] = alias_sym_field_identifier, }, - [142] = { + [151] = { [2] = alias_sym_type_identifier, }, - [146] = { + [155] = { [1] = alias_sym_namespace_identifier, [3] = alias_sym_namespace_identifier, }, - [147] = { + [156] = { [1] = alias_sym_namespace_identifier, }, - [148] = { + [157] = { [1] = alias_sym_type_identifier, }, - [176] = { + [179] = { [4] = alias_sym_field_identifier, }, - [180] = { + [183] = { [1] = alias_sym_type_identifier, }, - [182] = { + [185] = { [1] = alias_sym_type_identifier, }, }; @@ -4546,97 +4549,97 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 3, + [3] = 2, [4] = 4, - [5] = 4, - [6] = 4, - [7] = 3, - [8] = 4, - [9] = 4, - [10] = 2, - [11] = 4, - [12] = 4, + [5] = 2, + [6] = 6, + [7] = 2, + [8] = 6, + [9] = 2, + [10] = 6, + [11] = 2, + [12] = 2, [13] = 4, [14] = 4, - [15] = 4, - [16] = 3, - [17] = 3, - [18] = 4, + [15] = 6, + [16] = 2, + [17] = 2, + [18] = 6, [19] = 2, - [20] = 2, - [21] = 2, - [22] = 4, - [23] = 4, - [24] = 4, - [25] = 3, + [20] = 4, + [21] = 4, + [22] = 2, + [23] = 2, + [24] = 2, + [25] = 2, [26] = 26, [27] = 27, - [28] = 28, - [29] = 28, - [30] = 28, - [31] = 28, - [32] = 32, - [33] = 28, + [28] = 27, + [29] = 29, + [30] = 26, + [31] = 27, + [32] = 27, + [33] = 27, [34] = 26, - [35] = 26, + [35] = 35, [36] = 36, [37] = 37, - [38] = 26, - [39] = 39, + [38] = 38, + [39] = 26, [40] = 26, - [41] = 32, + [41] = 37, [42] = 42, [43] = 43, - [44] = 42, - [45] = 43, - [46] = 32, - [47] = 42, - [48] = 42, + [44] = 44, + [45] = 45, + [46] = 44, + [47] = 43, + [48] = 45, [49] = 43, [50] = 43, [51] = 43, - [52] = 42, + [52] = 44, [53] = 43, - [54] = 42, - [55] = 55, - [56] = 43, - [57] = 42, - [58] = 43, + [54] = 54, + [55] = 44, + [56] = 42, + [57] = 37, + [58] = 45, [59] = 42, - [60] = 42, - [61] = 61, - [62] = 55, - [63] = 43, - [64] = 42, - [65] = 43, + [60] = 45, + [61] = 43, + [62] = 42, + [63] = 45, + [64] = 43, + [65] = 42, [66] = 43, - [67] = 32, - [68] = 55, - [69] = 61, - [70] = 43, - [71] = 42, + [67] = 43, + [68] = 42, + [69] = 37, + [70] = 42, + [71] = 44, [72] = 42, - [73] = 42, - [74] = 61, + [73] = 43, + [74] = 42, [75] = 43, [76] = 43, [77] = 77, - [78] = 43, + [78] = 42, [79] = 42, - [80] = 42, - [81] = 42, - [82] = 61, - [83] = 61, + [80] = 43, + [81] = 43, + [82] = 43, + [83] = 42, [84] = 43, - [85] = 43, - [86] = 43, + [85] = 42, + [86] = 42, [87] = 42, - [88] = 88, + [88] = 43, [89] = 42, - [90] = 55, - [91] = 43, - [92] = 42, - [93] = 55, + [90] = 42, + [91] = 42, + [92] = 43, + [93] = 42, [94] = 94, [95] = 95, [96] = 96, @@ -4644,46 +4647,46 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [98] = 98, [99] = 99, [100] = 100, - [101] = 97, - [102] = 96, - [103] = 99, - [104] = 98, - [105] = 100, + [101] = 100, + [102] = 97, + [103] = 98, + [104] = 99, + [105] = 96, [106] = 98, - [107] = 98, - [108] = 100, - [109] = 97, + [107] = 99, + [108] = 99, + [109] = 96, [110] = 97, - [111] = 96, - [112] = 99, + [111] = 98, + [112] = 100, [113] = 100, - [114] = 99, - [115] = 97, - [116] = 100, - [117] = 96, - [118] = 99, - [119] = 98, + [114] = 97, + [115] = 98, + [116] = 99, + [117] = 97, + [118] = 96, + [119] = 100, [120] = 96, - [121] = 100, - [122] = 98, + [121] = 96, + [122] = 100, [123] = 97, - [124] = 99, - [125] = 96, + [124] = 98, + [125] = 99, [126] = 126, - [127] = 127, - [128] = 127, - [129] = 127, - [130] = 127, - [131] = 127, - [132] = 127, - [133] = 127, + [127] = 126, + [128] = 126, + [129] = 126, + [130] = 126, + [131] = 126, + [132] = 126, + [133] = 133, [134] = 134, - [135] = 134, + [135] = 135, [136] = 134, [137] = 134, [138] = 134, [139] = 134, - [140] = 140, + [140] = 134, [141] = 141, [142] = 142, [143] = 142, @@ -4692,219 +4695,219 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [146] = 146, [147] = 146, [148] = 146, - [149] = 146, + [149] = 149, [150] = 150, - [151] = 151, + [151] = 146, [152] = 146, [153] = 146, [154] = 154, [155] = 155, [156] = 156, [157] = 157, - [158] = 156, + [158] = 158, [159] = 159, - [160] = 160, + [160] = 157, [161] = 161, - [162] = 162, + [162] = 159, [163] = 163, [164] = 164, [165] = 165, - [166] = 166, + [166] = 161, [167] = 167, - [168] = 168, + [168] = 161, [169] = 169, - [170] = 167, + [170] = 156, [171] = 171, [172] = 172, - [173] = 166, - [174] = 164, - [175] = 166, - [176] = 160, - [177] = 177, - [178] = 178, - [179] = 179, - [180] = 180, - [181] = 181, - [182] = 182, - [183] = 156, - [184] = 169, - [185] = 162, - [186] = 181, - [187] = 159, - [188] = 177, - [189] = 171, - [190] = 190, - [191] = 191, - [192] = 192, - [193] = 161, - [194] = 177, - [195] = 181, - [196] = 192, - [197] = 191, - [198] = 169, - [199] = 190, - [200] = 156, - [201] = 201, - [202] = 182, - [203] = 203, - [204] = 161, - [205] = 159, - [206] = 180, - [207] = 179, - [208] = 162, - [209] = 178, - [210] = 172, - [211] = 171, - [212] = 203, - [213] = 168, - [214] = 201, - [215] = 163, - [216] = 165, - [217] = 165, - [218] = 163, - [219] = 192, - [220] = 167, - [221] = 191, - [222] = 160, - [223] = 163, - [224] = 157, - [225] = 167, - [226] = 160, - [227] = 157, - [228] = 190, - [229] = 167, - [230] = 159, - [231] = 181, - [232] = 160, - [233] = 179, - [234] = 169, - [235] = 164, - [236] = 156, - [237] = 182, - [238] = 203, - [239] = 178, - [240] = 180, - [241] = 192, - [242] = 179, - [243] = 191, - [244] = 190, - [245] = 178, - [246] = 172, - [247] = 160, - [248] = 171, - [249] = 168, - [250] = 201, - [251] = 159, - [252] = 172, - [253] = 165, - [254] = 163, - [255] = 181, - [256] = 171, - [257] = 169, - [258] = 167, - [259] = 172, - [260] = 168, - [261] = 190, - [262] = 161, - [263] = 166, - [264] = 182, - [265] = 180, - [266] = 162, - [267] = 201, - [268] = 191, - [269] = 157, - [270] = 167, - [271] = 157, - [272] = 164, + [173] = 173, + [174] = 172, + [175] = 175, + [176] = 173, + [177] = 165, + [178] = 164, + [179] = 169, + [180] = 169, + [181] = 165, + [182] = 165, + [183] = 164, + [184] = 175, + [185] = 161, + [186] = 158, + [187] = 173, + [188] = 165, + [189] = 175, + [190] = 169, + [191] = 169, + [192] = 156, + [193] = 158, + [194] = 161, + [195] = 173, + [196] = 172, + [197] = 173, + [198] = 172, + [199] = 175, + [200] = 172, + [201] = 173, + [202] = 165, + [203] = 156, + [204] = 169, + [205] = 163, + [206] = 159, + [207] = 164, + [208] = 157, + [209] = 157, + [210] = 157, + [211] = 172, + [212] = 158, + [213] = 169, + [214] = 158, + [215] = 169, + [216] = 175, + [217] = 159, + [218] = 159, + [219] = 158, + [220] = 161, + [221] = 175, + [222] = 169, + [223] = 172, + [224] = 156, + [225] = 173, + [226] = 165, + [227] = 163, + [228] = 164, + [229] = 161, + [230] = 157, + [231] = 159, + [232] = 164, + [233] = 164, + [234] = 161, + [235] = 158, + [236] = 161, + [237] = 161, + [238] = 169, + [239] = 156, + [240] = 163, + [241] = 163, + [242] = 156, + [243] = 175, + [244] = 163, + [245] = 169, + [246] = 161, + [247] = 159, + [248] = 157, + [249] = 249, + [250] = 250, + [251] = 249, + [252] = 249, + [253] = 253, + [254] = 250, + [255] = 155, + [256] = 250, + [257] = 154, + [258] = 250, + [259] = 149, + [260] = 150, + [261] = 261, + [262] = 249, + [263] = 263, + [264] = 264, + [265] = 265, + [266] = 266, + [267] = 267, + [268] = 268, + [269] = 269, + [270] = 270, + [271] = 271, + [272] = 272, [273] = 273, - [274] = 191, - [275] = 177, - [276] = 192, - [277] = 160, - [278] = 192, + [274] = 274, + [275] = 275, + [276] = 167, + [277] = 171, + [278] = 278, [279] = 279, - [280] = 179, - [281] = 203, - [282] = 178, - [283] = 172, - [284] = 171, - [285] = 168, - [286] = 160, - [287] = 203, - [288] = 161, - [289] = 201, - [290] = 203, - [291] = 164, - [292] = 167, - [293] = 162, - [294] = 201, - [295] = 161, - [296] = 177, - [297] = 166, - [298] = 203, - [299] = 164, - [300] = 168, - [301] = 192, - [302] = 167, - [303] = 191, - [304] = 160, - [305] = 165, - [306] = 167, - [307] = 190, - [308] = 162, - [309] = 166, - [310] = 159, - [311] = 181, - [312] = 169, - [313] = 156, - [314] = 182, - [315] = 201, - [316] = 180, - [317] = 179, - [318] = 178, - [319] = 172, - [320] = 171, - [321] = 166, - [322] = 162, - [323] = 168, - [324] = 167, - [325] = 159, - [326] = 177, - [327] = 165, - [328] = 157, - [329] = 182, - [330] = 163, - [331] = 181, - [332] = 190, - [333] = 160, - [334] = 165, - [335] = 161, - [336] = 169, - [337] = 156, - [338] = 182, - [339] = 180, - [340] = 160, - [341] = 180, - [342] = 178, - [343] = 163, - [344] = 177, - [345] = 179, - [346] = 164, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 283, + [284] = 284, + [285] = 285, + [286] = 286, + [287] = 287, + [288] = 288, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 297, + [298] = 298, + [299] = 299, + [300] = 300, + [301] = 301, + [302] = 302, + [303] = 303, + [304] = 304, + [305] = 305, + [306] = 306, + [307] = 307, + [308] = 308, + [309] = 309, + [310] = 310, + [311] = 311, + [312] = 312, + [313] = 313, + [314] = 314, + [315] = 315, + [316] = 316, + [317] = 317, + [318] = 318, + [319] = 319, + [320] = 320, + [321] = 321, + [322] = 322, + [323] = 323, + [324] = 324, + [325] = 325, + [326] = 326, + [327] = 327, + [328] = 328, + [329] = 329, + [330] = 330, + [331] = 331, + [332] = 332, + [333] = 333, + [334] = 334, + [335] = 154, + [336] = 155, + [337] = 337, + [338] = 338, + [339] = 339, + [340] = 340, + [341] = 341, + [342] = 342, + [343] = 343, + [344] = 344, + [345] = 345, + [346] = 346, [347] = 347, - [348] = 150, + [348] = 348, [349] = 349, - [350] = 155, - [351] = 347, - [352] = 349, - [353] = 349, - [354] = 347, - [355] = 151, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 334, + [355] = 355, [356] = 356, - [357] = 154, + [357] = 357, [358] = 358, - [359] = 349, + [359] = 359, [360] = 360, - [361] = 347, + [361] = 361, [362] = 362, [363] = 363, [364] = 364, @@ -4924,1511 +4927,1511 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [378] = 378, [379] = 379, [380] = 380, - [381] = 279, - [382] = 379, + [381] = 381, + [382] = 382, [383] = 383, - [384] = 384, - [385] = 385, - [386] = 385, - [387] = 379, - [388] = 388, - [389] = 385, - [390] = 390, - [391] = 391, - [392] = 392, - [393] = 393, - [394] = 394, - [395] = 395, + [384] = 334, + [385] = 334, + [386] = 334, + [387] = 334, + [388] = 334, + [389] = 334, + [390] = 334, + [391] = 334, + [392] = 334, + [393] = 155, + [394] = 334, + [395] = 334, [396] = 396, [397] = 397, [398] = 398, [399] = 399, - [400] = 397, + [400] = 400, [401] = 401, - [402] = 397, + [402] = 402, [403] = 403, [404] = 404, - [405] = 405, + [405] = 253, [406] = 406, [407] = 407, - [408] = 408, - [409] = 409, + [408] = 263, + [409] = 334, [410] = 410, - [411] = 397, - [412] = 412, + [411] = 411, + [412] = 261, [413] = 413, - [414] = 414, - [415] = 415, - [416] = 379, - [417] = 385, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 421, - [422] = 422, + [414] = 154, + [415] = 155, + [416] = 154, + [417] = 334, + [418] = 150, + [419] = 149, + [420] = 334, + [421] = 316, + [422] = 285, [423] = 423, [424] = 424, [425] = 425, - [426] = 426, - [427] = 427, - [428] = 428, + [426] = 297, + [427] = 268, + [428] = 296, [429] = 429, - [430] = 430, - [431] = 431, - [432] = 432, - [433] = 433, - [434] = 434, - [435] = 435, - [436] = 436, - [437] = 437, - [438] = 438, - [439] = 439, - [440] = 440, - [441] = 441, - [442] = 273, - [443] = 443, + [430] = 295, + [431] = 294, + [432] = 292, + [433] = 291, + [434] = 290, + [435] = 264, + [436] = 282, + [437] = 289, + [438] = 265, + [439] = 267, + [440] = 270, + [441] = 273, + [442] = 266, + [443] = 171, [444] = 444, [445] = 445, - [446] = 446, + [446] = 423, [447] = 447, - [448] = 448, - [449] = 449, - [450] = 450, - [451] = 451, - [452] = 452, + [448] = 423, + [449] = 445, + [450] = 167, + [451] = 445, + [452] = 310, [453] = 453, - [454] = 454, - [455] = 455, - [456] = 456, - [457] = 397, - [458] = 458, - [459] = 459, - [460] = 460, - [461] = 461, - [462] = 379, - [463] = 385, - [464] = 464, - [465] = 465, - [466] = 466, - [467] = 467, - [468] = 468, - [469] = 469, - [470] = 470, - [471] = 471, - [472] = 472, - [473] = 473, - [474] = 474, - [475] = 475, - [476] = 476, - [477] = 477, - [478] = 478, - [479] = 479, - [480] = 480, - [481] = 481, - [482] = 482, - [483] = 483, - [484] = 484, - [485] = 485, - [486] = 486, - [487] = 487, - [488] = 488, - [489] = 489, - [490] = 490, - [491] = 491, - [492] = 492, - [493] = 493, - [494] = 494, - [495] = 397, - [496] = 379, - [497] = 385, - [498] = 498, - [499] = 499, - [500] = 500, - [501] = 501, - [502] = 502, - [503] = 503, - [504] = 504, - [505] = 505, - [506] = 506, - [507] = 507, - [508] = 508, - [509] = 509, - [510] = 510, - [511] = 385, - [512] = 379, - [513] = 513, - [514] = 514, - [515] = 397, - [516] = 516, - [517] = 517, - [518] = 518, - [519] = 519, - [520] = 520, - [521] = 521, - [522] = 522, - [523] = 523, - [524] = 524, - [525] = 525, - [526] = 526, - [527] = 527, - [528] = 528, - [529] = 529, - [530] = 530, - [531] = 531, - [532] = 532, - [533] = 533, - [534] = 151, - [535] = 528, - [536] = 528, - [537] = 528, - [538] = 538, - [539] = 155, - [540] = 150, - [541] = 541, - [542] = 154, - [543] = 543, - [544] = 544, - [545] = 545, - [546] = 154, - [547] = 528, - [548] = 528, - [549] = 155, - [550] = 550, - [551] = 551, - [552] = 552, - [553] = 553, - [554] = 155, - [555] = 555, - [556] = 556, - [557] = 557, - [558] = 558, - [559] = 559, - [560] = 560, - [561] = 561, - [562] = 562, - [563] = 528, - [564] = 564, - [565] = 565, - [566] = 566, - [567] = 528, - [568] = 568, - [569] = 569, - [570] = 570, - [571] = 528, - [572] = 572, - [573] = 573, - [574] = 574, - [575] = 528, - [576] = 576, - [577] = 577, - [578] = 528, - [579] = 579, - [580] = 528, - [581] = 581, - [582] = 360, - [583] = 583, - [584] = 584, - [585] = 585, - [586] = 586, - [587] = 528, - [588] = 588, - [589] = 589, - [590] = 590, - [591] = 591, - [592] = 592, - [593] = 593, - [594] = 528, - [595] = 595, - [596] = 596, - [597] = 597, - [598] = 598, - [599] = 599, - [600] = 358, - [601] = 601, - [602] = 602, - [603] = 603, - [604] = 528, - [605] = 154, - [606] = 356, - [607] = 607, - [608] = 528, - [609] = 609, - [610] = 610, - [611] = 611, - [612] = 471, - [613] = 468, - [614] = 494, - [615] = 503, - [616] = 466, - [617] = 617, - [618] = 405, - [619] = 465, - [620] = 451, - [621] = 505, - [622] = 498, - [623] = 506, - [624] = 499, - [625] = 500, - [626] = 502, - [627] = 517, - [628] = 501, - [629] = 454, - [630] = 488, - [631] = 507, - [632] = 508, - [633] = 444, - [634] = 441, - [635] = 440, - [636] = 437, - [637] = 407, - [638] = 399, - [639] = 489, - [640] = 490, - [641] = 398, - [642] = 642, - [643] = 460, - [644] = 486, - [645] = 456, - [646] = 447, - [647] = 446, - [648] = 445, - [649] = 448, - [650] = 396, - [651] = 455, - [652] = 461, - [653] = 653, - [654] = 464, - [655] = 475, - [656] = 443, - [657] = 513, - [658] = 438, - [659] = 523, - [660] = 522, - [661] = 487, - [662] = 516, - [663] = 433, - [664] = 491, - [665] = 485, - [666] = 406, - [667] = 667, - [668] = 484, - [669] = 483, - [670] = 509, - [671] = 493, - [672] = 510, - [673] = 514, - [674] = 482, - [675] = 481, - [676] = 480, - [677] = 388, - [678] = 431, - [679] = 426, - [680] = 479, - [681] = 478, - [682] = 477, - [683] = 425, - [684] = 473, - [685] = 472, - [686] = 273, - [687] = 408, - [688] = 362, - [689] = 617, - [690] = 469, - [691] = 422, - [692] = 470, - [693] = 467, - [694] = 459, - [695] = 521, - [696] = 439, - [697] = 504, - [698] = 458, - [699] = 410, - [700] = 492, - [701] = 413, - [702] = 453, - [703] = 365, - [704] = 377, - [705] = 279, - [706] = 452, - [707] = 273, - [708] = 476, - [709] = 414, - [710] = 415, - [711] = 409, - [712] = 474, - [713] = 617, - [714] = 450, - [715] = 449, - [716] = 436, - [717] = 435, - [718] = 434, - [719] = 719, - [720] = 432, - [721] = 430, - [722] = 429, - [723] = 427, - [724] = 617, - [725] = 412, - [726] = 667, - [727] = 424, - [728] = 423, - [729] = 729, - [730] = 667, - [731] = 428, - [732] = 395, - [733] = 394, - [734] = 279, - [735] = 393, - [736] = 392, - [737] = 391, - [738] = 390, - [739] = 384, - [740] = 383, - [741] = 380, - [742] = 378, - [743] = 376, - [744] = 375, - [745] = 374, - [746] = 373, - [747] = 747, - [748] = 642, - [749] = 372, - [750] = 371, - [751] = 370, - [752] = 667, - [753] = 369, - [754] = 368, - [755] = 367, - [756] = 366, - [757] = 520, - [758] = 519, - [759] = 518, - [760] = 364, - [761] = 363, - [762] = 401, - [763] = 403, - [764] = 764, - [765] = 404, - [766] = 418, - [767] = 419, - [768] = 420, - [769] = 421, - [770] = 279, - [771] = 579, - [772] = 531, - [773] = 611, - [774] = 533, - [775] = 602, - [776] = 358, - [777] = 527, - [778] = 526, - [779] = 356, - [780] = 598, - [781] = 610, - [782] = 564, - [783] = 597, - [784] = 358, - [785] = 596, - [786] = 584, - [787] = 524, - [788] = 593, - [789] = 592, - [790] = 525, - [791] = 590, - [792] = 581, - [793] = 588, - [794] = 559, - [795] = 356, - [796] = 574, - [797] = 273, - [798] = 585, - [799] = 529, - [800] = 562, - [801] = 561, - [802] = 560, - [803] = 566, - [804] = 557, - [805] = 556, - [806] = 555, - [807] = 599, - [808] = 603, - [809] = 356, - [810] = 601, - [811] = 358, - [812] = 551, - [813] = 532, - [814] = 544, - [815] = 360, - [816] = 545, - [817] = 552, - [818] = 530, - [819] = 151, - [820] = 151, - [821] = 595, - [822] = 591, - [823] = 589, - [824] = 586, - [825] = 543, - [826] = 558, - [827] = 572, - [828] = 150, - [829] = 609, - [830] = 607, - [831] = 553, - [832] = 583, - [833] = 576, - [834] = 541, - [835] = 409, - [836] = 573, - [837] = 360, - [838] = 570, - [839] = 360, - [840] = 568, - [841] = 577, - [842] = 569, - [843] = 538, - [844] = 550, - [845] = 150, - [846] = 565, - [847] = 406, - [848] = 396, - [849] = 469, - [850] = 468, - [851] = 467, - [852] = 459, - [853] = 458, - [854] = 364, - [855] = 450, - [856] = 447, - [857] = 446, + [454] = 278, + [455] = 279, + [456] = 280, + [457] = 445, + [458] = 288, + [459] = 281, + [460] = 283, + [461] = 286, + [462] = 298, + [463] = 423, + [464] = 275, + [465] = 167, + [466] = 331, + [467] = 330, + [468] = 329, + [469] = 328, + [470] = 327, + [471] = 326, + [472] = 325, + [473] = 300, + [474] = 324, + [475] = 429, + [476] = 293, + [477] = 301, + [478] = 302, + [479] = 303, + [480] = 304, + [481] = 305, + [482] = 306, + [483] = 323, + [484] = 307, + [485] = 308, + [486] = 309, + [487] = 311, + [488] = 322, + [489] = 171, + [490] = 312, + [491] = 299, + [492] = 313, + [493] = 321, + [494] = 314, + [495] = 320, + [496] = 274, + [497] = 315, + [498] = 332, + [499] = 287, + [500] = 272, + [501] = 317, + [502] = 318, + [503] = 319, + [504] = 398, + [505] = 404, + [506] = 403, + [507] = 150, + [508] = 149, + [509] = 401, + [510] = 282, + [511] = 399, + [512] = 261, + [513] = 380, + [514] = 333, + [515] = 379, + [516] = 378, + [517] = 377, + [518] = 374, + [519] = 372, + [520] = 263, + [521] = 365, + [522] = 383, + [523] = 413, + [524] = 382, + [525] = 364, + [526] = 363, + [527] = 381, + [528] = 376, + [529] = 375, + [530] = 373, + [531] = 366, + [532] = 371, + [533] = 362, + [534] = 370, + [535] = 369, + [536] = 358, + [537] = 357, + [538] = 361, + [539] = 346, + [540] = 355, + [541] = 353, + [542] = 352, + [543] = 360, + [544] = 350, + [545] = 359, + [546] = 356, + [547] = 351, + [548] = 263, + [549] = 253, + [550] = 367, + [551] = 349, + [552] = 348, + [553] = 263, + [554] = 253, + [555] = 347, + [556] = 261, + [557] = 261, + [558] = 345, + [559] = 171, + [560] = 343, + [561] = 342, + [562] = 411, + [563] = 410, + [564] = 340, + [565] = 339, + [566] = 337, + [567] = 402, + [568] = 400, + [569] = 397, + [570] = 396, + [571] = 253, + [572] = 368, + [573] = 338, + [574] = 149, + [575] = 407, + [576] = 406, + [577] = 167, + [578] = 341, + [579] = 150, + [580] = 344, + [581] = 328, + [582] = 296, + [583] = 290, + [584] = 264, + [585] = 289, + [586] = 297, + [587] = 296, + [588] = 287, + [589] = 279, + [590] = 280, + [591] = 281, + [592] = 266, + [593] = 332, + [594] = 272, + [595] = 274, + [596] = 268, + [597] = 310, + [598] = 295, + [599] = 278, + [600] = 282, + [601] = 453, + [602] = 294, + [603] = 292, + [604] = 298, + [605] = 331, + [606] = 299, + [607] = 300, + [608] = 301, + [609] = 302, + [610] = 303, + [611] = 288, + [612] = 304, + [613] = 305, + [614] = 283, + [615] = 306, + [616] = 307, + [617] = 308, + [618] = 309, + [619] = 311, + [620] = 312, + [621] = 313, + [622] = 314, + [623] = 315, + [624] = 316, + [625] = 322, + [626] = 317, + [627] = 318, + [628] = 319, + [629] = 320, + [630] = 321, + [631] = 323, + [632] = 285, + [633] = 286, + [634] = 324, + [635] = 325, + [636] = 326, + [637] = 327, + [638] = 328, + [639] = 329, + [640] = 272, + [641] = 330, + [642] = 331, + [643] = 332, + [644] = 275, + [645] = 274, + [646] = 272, + [647] = 330, + [648] = 329, + [649] = 282, + [650] = 327, + [651] = 270, + [652] = 288, + [653] = 326, + [654] = 273, + [655] = 325, + [656] = 324, + [657] = 323, + [658] = 322, + [659] = 321, + [660] = 320, + [661] = 319, + [662] = 318, + [663] = 293, + [664] = 317, + [665] = 316, + [666] = 315, + [667] = 314, + [668] = 275, + [669] = 313, + [670] = 274, + [671] = 289, + [672] = 264, + [673] = 290, + [674] = 291, + [675] = 292, + [676] = 294, + [677] = 295, + [678] = 291, + [679] = 297, + [680] = 299, + [681] = 300, + [682] = 301, + [683] = 302, + [684] = 303, + [685] = 304, + [686] = 305, + [687] = 306, + [688] = 307, + [689] = 308, + [690] = 309, + [691] = 311, + [692] = 312, + [693] = 313, + [694] = 332, + [695] = 314, + [696] = 315, + [697] = 316, + [698] = 317, + [699] = 318, + [700] = 319, + [701] = 320, + [702] = 321, + [703] = 322, + [704] = 323, + [705] = 324, + [706] = 325, + [707] = 326, + [708] = 327, + [709] = 328, + [710] = 329, + [711] = 330, + [712] = 331, + [713] = 312, + [714] = 311, + [715] = 287, + [716] = 309, + [717] = 308, + [718] = 307, + [719] = 306, + [720] = 305, + [721] = 304, + [722] = 303, + [723] = 302, + [724] = 301, + [725] = 300, + [726] = 298, + [727] = 299, + [728] = 297, + [729] = 296, + [730] = 295, + [731] = 294, + [732] = 292, + [733] = 291, + [734] = 290, + [735] = 264, + [736] = 286, + [737] = 285, + [738] = 289, + [739] = 283, + [740] = 267, + [741] = 281, + [742] = 280, + [743] = 279, + [744] = 278, + [745] = 310, + [746] = 298, + [747] = 282, + [748] = 293, + [749] = 268, + [750] = 288, + [751] = 286, + [752] = 285, + [753] = 283, + [754] = 265, + [755] = 267, + [756] = 270, + [757] = 273, + [758] = 266, + [759] = 281, + [760] = 280, + [761] = 279, + [762] = 278, + [763] = 265, + [764] = 310, + [765] = 275, + [766] = 268, + [767] = 265, + [768] = 267, + [769] = 270, + [770] = 293, + [771] = 273, + [772] = 266, + [773] = 287, + [774] = 403, + [775] = 367, + [776] = 396, + [777] = 397, + [778] = 350, + [779] = 376, + [780] = 398, + [781] = 370, + [782] = 369, + [783] = 399, + [784] = 400, + [785] = 401, + [786] = 402, + [787] = 349, + [788] = 348, + [789] = 404, + [790] = 399, + [791] = 401, + [792] = 346, + [793] = 404, + [794] = 344, + [795] = 368, + [796] = 367, + [797] = 366, + [798] = 341, + [799] = 383, + [800] = 375, + [801] = 382, + [802] = 338, + [803] = 381, + [804] = 380, + [805] = 373, + [806] = 337, + [807] = 333, + [808] = 379, + [809] = 371, + [810] = 378, + [811] = 377, + [812] = 358, + [813] = 357, + [814] = 406, + [815] = 407, + [816] = 406, + [817] = 407, + [818] = 410, + [819] = 411, + [820] = 413, + [821] = 398, + [822] = 376, + [823] = 355, + [824] = 353, + [825] = 375, + [826] = 352, + [827] = 403, + [828] = 380, + [829] = 333, + [830] = 381, + [831] = 410, + [832] = 382, + [833] = 383, + [834] = 411, + [835] = 374, + [836] = 337, + [837] = 373, + [838] = 372, + [839] = 396, + [840] = 397, + [841] = 371, + [842] = 370, + [843] = 400, + [844] = 338, + [845] = 369, + [846] = 402, + [847] = 368, + [848] = 339, + [849] = 366, + [850] = 379, + [851] = 365, + [852] = 340, + [853] = 364, + [854] = 363, + [855] = 362, + [856] = 361, + [857] = 378, [858] = 413, - [859] = 453, - [860] = 452, - [861] = 414, - [862] = 415, - [863] = 518, - [864] = 519, - [865] = 520, - [866] = 450, - [867] = 449, - [868] = 436, - [869] = 449, - [870] = 435, - [871] = 508, - [872] = 419, - [873] = 362, - [874] = 517, - [875] = 502, - [876] = 500, - [877] = 377, - [878] = 434, - [879] = 476, - [880] = 499, - [881] = 366, + [859] = 360, + [860] = 359, + [861] = 377, + [862] = 341, + [863] = 339, + [864] = 340, + [865] = 342, + [866] = 343, + [867] = 374, + [868] = 342, + [869] = 343, + [870] = 345, + [871] = 347, + [872] = 344, + [873] = 372, + [874] = 358, + [875] = 345, + [876] = 357, + [877] = 346, + [878] = 347, + [879] = 365, + [880] = 364, + [881] = 348, [882] = 363, - [883] = 401, - [884] = 393, - [885] = 367, - [886] = 392, - [887] = 391, - [888] = 368, - [889] = 390, - [890] = 369, - [891] = 452, - [892] = 384, - [893] = 471, - [894] = 451, - [895] = 408, - [896] = 454, - [897] = 370, - [898] = 371, - [899] = 372, - [900] = 383, - [901] = 472, - [902] = 365, - [903] = 380, - [904] = 453, - [905] = 373, - [906] = 405, - [907] = 473, - [908] = 378, - [909] = 376, - [910] = 477, - [911] = 375, - [912] = 478, - [913] = 479, - [914] = 374, - [915] = 480, - [916] = 375, - [917] = 374, - [918] = 481, - [919] = 482, - [920] = 483, - [921] = 403, - [922] = 439, - [923] = 404, - [924] = 484, - [925] = 406, - [926] = 444, - [927] = 373, - [928] = 372, - [929] = 431, - [930] = 426, - [931] = 425, - [932] = 441, - [933] = 440, - [934] = 437, - [935] = 428, - [936] = 407, - [937] = 485, - [938] = 412, - [939] = 460, - [940] = 494, - [941] = 370, - [942] = 369, - [943] = 486, - [944] = 443, - [945] = 433, - [946] = 368, - [947] = 487, - [948] = 488, - [949] = 399, - [950] = 412, - [951] = 456, - [952] = 398, - [953] = 489, - [954] = 435, - [955] = 434, - [956] = 490, - [957] = 367, - [958] = 439, - [959] = 418, - [960] = 376, - [961] = 491, - [962] = 493, - [963] = 494, - [964] = 498, - [965] = 501, - [966] = 378, - [967] = 366, - [968] = 364, - [969] = 432, - [970] = 503, - [971] = 388, - [972] = 505, - [973] = 377, - [974] = 380, - [975] = 430, - [976] = 429, - [977] = 506, - [978] = 427, - [979] = 409, - [980] = 424, - [981] = 365, - [982] = 438, - [983] = 507, - [984] = 423, - [985] = 384, - [986] = 383, - [987] = 436, - [988] = 509, - [989] = 422, - [990] = 510, - [991] = 454, - [992] = 451, - [993] = 394, - [994] = 421, - [995] = 420, - [996] = 395, - [997] = 415, - [998] = 414, - [999] = 413, - [1000] = 410, - [1001] = 419, - [1002] = 408, - [1003] = 514, - [1004] = 418, - [1005] = 445, - [1006] = 371, - [1007] = 448, - [1008] = 404, - [1009] = 390, - [1010] = 403, - [1011] = 401, - [1012] = 363, - [1013] = 396, - [1014] = 455, - [1015] = 461, - [1016] = 388, - [1017] = 364, - [1018] = 425, - [1019] = 445, - [1020] = 426, - [1021] = 366, - [1022] = 431, - [1023] = 464, - [1024] = 367, - [1025] = 368, - [1026] = 430, - [1027] = 369, - [1028] = 448, - [1029] = 438, - [1030] = 370, - [1031] = 409, - [1032] = 371, - [1033] = 443, - [1034] = 446, - [1035] = 447, - [1036] = 456, - [1037] = 372, - [1038] = 396, - [1039] = 422, - [1040] = 460, - [1041] = 373, - [1042] = 374, - [1043] = 398, - [1044] = 433, - [1045] = 516, - [1046] = 522, - [1047] = 375, - [1048] = 399, - [1049] = 523, - [1050] = 513, - [1051] = 407, - [1052] = 475, - [1053] = 464, - [1054] = 461, - [1055] = 455, - [1056] = 410, - [1057] = 448, - [1058] = 445, - [1059] = 376, - [1060] = 455, - [1061] = 516, - [1062] = 465, - [1063] = 398, - [1064] = 399, - [1065] = 407, - [1066] = 466, - [1067] = 437, - [1068] = 440, - [1069] = 441, - [1070] = 378, - [1071] = 444, - [1072] = 475, - [1073] = 380, - [1074] = 383, - [1075] = 391, - [1076] = 492, - [1077] = 476, - [1078] = 384, - [1079] = 390, - [1080] = 391, - [1081] = 437, - [1082] = 474, - [1083] = 504, - [1084] = 517, - [1085] = 502, - [1086] = 500, - [1087] = 392, - [1088] = 499, - [1089] = 392, - [1090] = 521, - [1091] = 470, - [1092] = 458, - [1093] = 393, - [1094] = 466, - [1095] = 393, - [1096] = 465, - [1097] = 440, - [1098] = 441, - [1099] = 394, - [1100] = 474, - [1101] = 444, - [1102] = 420, - [1103] = 395, - [1104] = 492, - [1105] = 363, - [1106] = 499, - [1107] = 460, - [1108] = 421, - [1109] = 401, - [1110] = 403, - [1111] = 404, - [1112] = 406, - [1113] = 412, - [1114] = 418, - [1115] = 456, - [1116] = 419, - [1117] = 420, - [1118] = 500, - [1119] = 451, - [1120] = 421, - [1121] = 502, - [1122] = 447, - [1123] = 517, - [1124] = 446, - [1125] = 443, - [1126] = 432, - [1127] = 422, - [1128] = 438, - [1129] = 467, - [1130] = 747, - [1131] = 461, - [1132] = 439, - [1133] = 423, - [1134] = 424, - [1135] = 428, - [1136] = 464, - [1137] = 394, - [1138] = 395, - [1139] = 427, - [1140] = 513, - [1141] = 523, - [1142] = 522, - [1143] = 429, - [1144] = 504, - [1145] = 516, - [1146] = 405, - [1147] = 510, - [1148] = 509, - [1149] = 430, - [1150] = 432, - [1151] = 434, - [1152] = 508, - [1153] = 475, - [1154] = 507, - [1155] = 506, - [1156] = 505, - [1157] = 503, - [1158] = 501, - [1159] = 498, - [1160] = 435, - [1161] = 436, - [1162] = 449, - [1163] = 493, - [1164] = 450, - [1165] = 459, - [1166] = 431, - [1167] = 426, - [1168] = 491, - [1169] = 514, - [1170] = 452, - [1171] = 453, - [1172] = 458, - [1173] = 490, - [1174] = 489, - [1175] = 459, - [1176] = 520, - [1177] = 519, - [1178] = 476, - [1179] = 488, - [1180] = 425, - [1181] = 522, - [1182] = 487, - [1183] = 474, - [1184] = 467, - [1185] = 486, - [1186] = 485, - [1187] = 523, - [1188] = 484, - [1189] = 483, - [1190] = 482, - [1191] = 481, - [1192] = 518, - [1193] = 480, - [1194] = 468, - [1195] = 469, - [1196] = 479, - [1197] = 362, - [1198] = 478, - [1199] = 405, - [1200] = 477, - [1201] = 473, - [1202] = 471, - [1203] = 472, - [1204] = 473, - [1205] = 477, - [1206] = 478, - [1207] = 472, - [1208] = 466, - [1209] = 465, - [1210] = 471, - [1211] = 362, - [1212] = 479, - [1213] = 423, - [1214] = 388, - [1215] = 454, - [1216] = 520, - [1217] = 519, - [1218] = 377, - [1219] = 518, - [1220] = 429, - [1221] = 365, - [1222] = 480, - [1223] = 481, - [1224] = 521, - [1225] = 482, - [1226] = 483, - [1227] = 484, - [1228] = 492, - [1229] = 504, - [1230] = 521, - [1231] = 470, - [1232] = 408, - [1233] = 485, - [1234] = 410, - [1235] = 514, - [1236] = 486, - [1237] = 469, - [1238] = 427, - [1239] = 510, - [1240] = 509, - [1241] = 508, - [1242] = 507, - [1243] = 413, - [1244] = 487, - [1245] = 428, - [1246] = 414, - [1247] = 415, - [1248] = 433, - [1249] = 488, - [1250] = 468, - [1251] = 470, - [1252] = 409, - [1253] = 424, - [1254] = 513, - [1255] = 506, - [1256] = 505, - [1257] = 503, - [1258] = 501, - [1259] = 498, - [1260] = 494, - [1261] = 493, - [1262] = 491, - [1263] = 490, - [1264] = 489, - [1265] = 586, - [1266] = 609, - [1267] = 579, - [1268] = 584, - [1269] = 562, - [1270] = 561, - [1271] = 560, - [1272] = 566, - [1273] = 557, - [1274] = 556, - [1275] = 601, - [1276] = 555, - [1277] = 585, - [1278] = 599, - [1279] = 597, - [1280] = 596, - [1281] = 595, - [1282] = 593, - [1283] = 592, - [1284] = 610, - [1285] = 529, - [1286] = 591, - [1287] = 574, - [1288] = 532, - [1289] = 588, - [1290] = 524, - [1291] = 584, - [1292] = 590, - [1293] = 590, - [1294] = 592, - [1295] = 559, - [1296] = 581, - [1297] = 525, - [1298] = 579, - [1299] = 530, - [1300] = 589, - [1301] = 588, - [1302] = 573, - [1303] = 598, - [1304] = 602, - [1305] = 611, - [1306] = 543, - [1307] = 558, - [1308] = 586, - [1309] = 526, - [1310] = 527, - [1311] = 583, - [1312] = 531, - [1313] = 533, - [1314] = 593, - [1315] = 550, - [1316] = 572, - [1317] = 609, - [1318] = 544, - [1319] = 607, - [1320] = 596, - [1321] = 545, - [1322] = 551, - [1323] = 576, - [1324] = 552, - [1325] = 603, - [1326] = 574, - [1327] = 597, - [1328] = 553, - [1329] = 573, - [1330] = 570, - [1331] = 610, - [1332] = 569, - [1333] = 585, - [1334] = 568, - [1335] = 538, - [1336] = 541, - [1337] = 550, - [1338] = 565, - [1339] = 529, - [1340] = 577, - [1341] = 564, - [1342] = 564, - [1343] = 565, - [1344] = 559, - [1345] = 541, - [1346] = 569, - [1347] = 568, - [1348] = 577, - [1349] = 570, - [1350] = 562, - [1351] = 581, - [1352] = 576, - [1353] = 525, - [1354] = 601, - [1355] = 583, - [1356] = 598, - [1357] = 602, - [1358] = 589, - [1359] = 591, - [1360] = 561, - [1361] = 560, - [1362] = 566, - [1363] = 538, - [1364] = 557, - [1365] = 595, - [1366] = 556, - [1367] = 555, - [1368] = 553, - [1369] = 599, - [1370] = 552, - [1371] = 551, - [1372] = 524, - [1373] = 607, - [1374] = 603, - [1375] = 572, - [1376] = 545, - [1377] = 558, - [1378] = 544, - [1379] = 543, - [1380] = 611, - [1381] = 526, - [1382] = 527, - [1383] = 533, - [1384] = 532, - [1385] = 531, - [1386] = 530, - [1387] = 1387, + [883] = 349, + [884] = 362, + [885] = 361, + [886] = 356, + [887] = 355, + [888] = 353, + [889] = 360, + [890] = 352, + [891] = 359, + [892] = 351, + [893] = 356, + [894] = 350, + [895] = 351, + [896] = 401, + [897] = 345, + [898] = 453, + [899] = 353, + [900] = 900, + [901] = 901, + [902] = 360, + [903] = 352, + [904] = 362, + [905] = 363, + [906] = 402, + [907] = 403, + [908] = 413, + [909] = 367, + [910] = 349, + [911] = 368, + [912] = 404, + [913] = 341, + [914] = 340, + [915] = 361, + [916] = 356, + [917] = 917, + [918] = 342, + [919] = 351, + [920] = 343, + [921] = 921, + [922] = 400, + [923] = 350, + [924] = 921, + [925] = 399, + [926] = 339, + [927] = 376, + [928] = 453, + [929] = 398, + [930] = 375, + [931] = 901, + [932] = 397, + [933] = 901, + [934] = 396, + [935] = 935, + [936] = 359, + [937] = 921, + [938] = 901, + [939] = 383, + [940] = 921, + [941] = 146, + [942] = 377, + [943] = 382, + [944] = 381, + [945] = 380, + [946] = 348, + [947] = 333, + [948] = 378, + [949] = 355, + [950] = 921, + [951] = 346, + [952] = 370, + [953] = 364, + [954] = 369, + [955] = 337, + [956] = 357, + [957] = 338, + [958] = 358, + [959] = 921, + [960] = 901, + [961] = 379, + [962] = 921, + [963] = 344, + [964] = 365, + [965] = 921, + [966] = 374, + [967] = 901, + [968] = 901, + [969] = 411, + [970] = 410, + [971] = 406, + [972] = 373, + [973] = 901, + [974] = 407, + [975] = 347, + [976] = 372, + [977] = 366, + [978] = 371, + [979] = 901, + [980] = 921, + [981] = 146, + [982] = 146, + [983] = 146, + [984] = 146, + [985] = 985, + [986] = 985, + [987] = 987, + [988] = 987, + [989] = 987, + [990] = 987, + [991] = 987, + [992] = 987, + [993] = 987, + [994] = 987, + [995] = 987, + [996] = 996, + [997] = 996, + [998] = 996, + [999] = 996, + [1000] = 996, + [1001] = 996, + [1002] = 996, + [1003] = 996, + [1004] = 996, + [1005] = 1005, + [1006] = 1006, + [1007] = 1007, + [1008] = 1008, + [1009] = 1008, + [1010] = 1010, + [1011] = 1011, + [1012] = 1012, + [1013] = 1013, + [1014] = 1008, + [1015] = 1015, + [1016] = 1007, + [1017] = 1017, + [1018] = 1010, + [1019] = 1019, + [1020] = 1020, + [1021] = 1017, + [1022] = 1022, + [1023] = 1019, + [1024] = 1008, + [1025] = 1011, + [1026] = 1019, + [1027] = 1027, + [1028] = 1019, + [1029] = 1029, + [1030] = 155, + [1031] = 1029, + [1032] = 154, + [1033] = 149, + [1034] = 150, + [1035] = 261, + [1036] = 253, + [1037] = 263, + [1038] = 307, + [1039] = 279, + [1040] = 308, + [1041] = 331, + [1042] = 309, + [1043] = 311, + [1044] = 312, + [1045] = 274, + [1046] = 330, + [1047] = 313, + [1048] = 314, + [1049] = 1005, + [1050] = 283, + [1051] = 315, + [1052] = 325, + [1053] = 316, + [1054] = 332, + [1055] = 317, + [1056] = 318, + [1057] = 1013, + [1058] = 329, + [1059] = 319, + [1060] = 328, + [1061] = 320, + [1062] = 321, + [1063] = 327, + [1064] = 281, + [1065] = 280, + [1066] = 285, + [1067] = 286, + [1068] = 322, + [1069] = 326, + [1070] = 293, + [1071] = 287, + [1072] = 288, + [1073] = 323, + [1074] = 266, + [1075] = 275, + [1076] = 273, + [1077] = 270, + [1078] = 289, + [1079] = 264, + [1080] = 278, + [1081] = 298, + [1082] = 290, + [1083] = 291, + [1084] = 292, + [1085] = 294, + [1086] = 295, + [1087] = 324, + [1088] = 267, + [1089] = 296, + [1090] = 297, + [1091] = 299, + [1092] = 300, + [1093] = 301, + [1094] = 1006, + [1095] = 272, + [1096] = 302, + [1097] = 306, + [1098] = 310, + [1099] = 303, + [1100] = 304, + [1101] = 265, + [1102] = 305, + [1103] = 268, + [1104] = 1104, + [1105] = 1105, + [1106] = 1104, + [1107] = 1104, + [1108] = 1105, + [1109] = 1104, + [1110] = 1110, + [1111] = 1104, + [1112] = 1105, + [1113] = 1104, + [1114] = 1104, + [1115] = 1104, + [1116] = 1105, + [1117] = 1105, + [1118] = 1105, + [1119] = 1105, + [1120] = 1105, + [1121] = 1104, + [1122] = 1105, + [1123] = 1123, + [1124] = 1124, + [1125] = 1123, + [1126] = 1123, + [1127] = 1123, + [1128] = 1123, + [1129] = 1123, + [1130] = 1130, + [1131] = 1130, + [1132] = 1130, + [1133] = 1133, + [1134] = 1130, + [1135] = 1133, + [1136] = 1130, + [1137] = 1133, + [1138] = 1133, + [1139] = 1133, + [1140] = 1130, + [1141] = 1133, + [1142] = 1142, + [1143] = 1143, + [1144] = 1144, + [1145] = 1145, + [1146] = 1144, + [1147] = 1147, + [1148] = 1147, + [1149] = 1149, + [1150] = 1149, + [1151] = 1149, + [1152] = 1144, + [1153] = 1147, + [1154] = 1145, + [1155] = 1149, + [1156] = 1149, + [1157] = 1147, + [1158] = 1147, + [1159] = 1147, + [1160] = 1147, + [1161] = 1144, + [1162] = 1149, + [1163] = 1163, + [1164] = 1163, + [1165] = 1163, + [1166] = 1144, + [1167] = 1167, + [1168] = 1167, + [1169] = 1163, + [1170] = 1167, + [1171] = 1163, + [1172] = 1163, + [1173] = 1167, + [1174] = 1163, + [1175] = 1175, + [1176] = 1163, + [1177] = 1167, + [1178] = 1145, + [1179] = 1163, + [1180] = 1167, + [1181] = 1181, + [1182] = 1182, + [1183] = 1183, + [1184] = 1184, + [1185] = 1182, + [1186] = 1183, + [1187] = 1187, + [1188] = 1182, + [1189] = 1182, + [1190] = 1190, + [1191] = 1184, + [1192] = 1184, + [1193] = 1184, + [1194] = 1181, + [1195] = 1184, + [1196] = 1183, + [1197] = 1190, + [1198] = 1182, + [1199] = 1184, + [1200] = 1200, + [1201] = 1190, + [1202] = 1202, + [1203] = 1184, + [1204] = 1183, + [1205] = 1187, + [1206] = 1182, + [1207] = 1181, + [1208] = 1182, + [1209] = 1183, + [1210] = 1210, + [1211] = 1184, + [1212] = 1184, + [1213] = 1184, + [1214] = 1183, + [1215] = 1183, + [1216] = 1182, + [1217] = 1183, + [1218] = 1218, + [1219] = 1190, + [1220] = 1181, + [1221] = 1187, + [1222] = 1181, + [1223] = 1183, + [1224] = 1181, + [1225] = 1182, + [1226] = 1182, + [1227] = 1183, + [1228] = 1181, + [1229] = 1183, + [1230] = 1181, + [1231] = 1184, + [1232] = 1181, + [1233] = 1182, + [1234] = 1181, + [1235] = 1181, + [1236] = 1236, + [1237] = 1237, + [1238] = 1238, + [1239] = 1239, + [1240] = 1240, + [1241] = 1237, + [1242] = 1237, + [1243] = 1236, + [1244] = 1244, + [1245] = 1245, + [1246] = 1237, + [1247] = 1237, + [1248] = 1236, + [1249] = 1249, + [1250] = 1250, + [1251] = 1237, + [1252] = 1252, + [1253] = 1253, + [1254] = 1237, + [1255] = 1236, + [1256] = 1256, + [1257] = 1237, + [1258] = 1258, + [1259] = 1259, + [1260] = 1237, + [1261] = 1261, + [1262] = 1236, + [1263] = 1236, + [1264] = 1237, + [1265] = 1265, + [1266] = 1266, + [1267] = 1237, + [1268] = 1268, + [1269] = 1269, + [1270] = 1270, + [1271] = 1271, + [1272] = 1269, + [1273] = 1273, + [1274] = 1274, + [1275] = 1273, + [1276] = 1276, + [1277] = 1269, + [1278] = 1278, + [1279] = 1279, + [1280] = 1273, + [1281] = 1281, + [1282] = 1273, + [1283] = 1281, + [1284] = 1284, + [1285] = 1285, + [1286] = 1286, + [1287] = 1273, + [1288] = 1288, + [1289] = 1289, + [1290] = 1271, + [1291] = 1269, + [1292] = 1292, + [1293] = 1273, + [1294] = 1269, + [1295] = 1284, + [1296] = 1285, + [1297] = 1297, + [1298] = 1298, + [1299] = 1299, + [1300] = 1286, + [1301] = 1289, + [1302] = 1302, + [1303] = 1273, + [1304] = 1281, + [1305] = 1305, + [1306] = 1269, + [1307] = 1307, + [1308] = 1289, + [1309] = 1309, + [1310] = 1286, + [1311] = 1311, + [1312] = 1312, + [1313] = 1313, + [1314] = 1314, + [1315] = 1273, + [1316] = 1316, + [1317] = 1271, + [1318] = 1318, + [1319] = 1273, + [1320] = 1286, + [1321] = 1271, + [1322] = 1322, + [1323] = 1281, + [1324] = 1324, + [1325] = 1325, + [1326] = 1292, + [1327] = 1269, + [1328] = 1289, + [1329] = 1329, + [1330] = 1286, + [1331] = 1331, + [1332] = 1285, + [1333] = 1269, + [1334] = 1334, + [1335] = 1284, + [1336] = 1269, + [1337] = 1337, + [1338] = 1289, + [1339] = 1339, + [1340] = 1340, + [1341] = 1271, + [1342] = 1273, + [1343] = 1343, + [1344] = 1339, + [1345] = 1284, + [1346] = 1346, + [1347] = 1286, + [1348] = 1348, + [1349] = 1270, + [1350] = 1274, + [1351] = 1351, + [1352] = 1271, + [1353] = 1271, + [1354] = 1269, + [1355] = 1271, + [1356] = 1271, + [1357] = 1273, + [1358] = 1285, + [1359] = 1359, + [1360] = 1289, + [1361] = 1269, + [1362] = 1362, + [1363] = 1363, + [1364] = 1364, + [1365] = 1365, + [1366] = 1366, + [1367] = 1367, + [1368] = 1368, + [1369] = 1365, + [1370] = 1370, + [1371] = 1363, + [1372] = 1370, + [1373] = 1373, + [1374] = 1364, + [1375] = 1375, + [1376] = 1376, + [1377] = 1377, + [1378] = 1378, + [1379] = 1377, + [1380] = 1380, + [1381] = 1364, + [1382] = 1370, + [1383] = 1365, + [1384] = 1384, + [1385] = 1385, + [1386] = 1365, + [1387] = 1373, [1388] = 1388, - [1389] = 601, - [1390] = 603, - [1391] = 1387, + [1389] = 1365, + [1390] = 1375, + [1391] = 1376, [1392] = 1392, - [1393] = 576, - [1394] = 574, - [1395] = 533, - [1396] = 747, - [1397] = 532, - [1398] = 531, - [1399] = 1392, - [1400] = 530, + [1393] = 1376, + [1394] = 1394, + [1395] = 1377, + [1396] = 1396, + [1397] = 1397, + [1398] = 1398, + [1399] = 1367, + [1400] = 1362, [1401] = 1401, - [1402] = 527, - [1403] = 526, - [1404] = 586, - [1405] = 573, - [1406] = 524, - [1407] = 584, - [1408] = 1387, - [1409] = 544, - [1410] = 545, - [1411] = 570, - [1412] = 1387, - [1413] = 1387, - [1414] = 543, - [1415] = 550, - [1416] = 558, - [1417] = 572, - [1418] = 1387, - [1419] = 599, - [1420] = 583, - [1421] = 569, - [1422] = 146, - [1423] = 585, - [1424] = 1392, - [1425] = 525, - [1426] = 597, - [1427] = 1392, - [1428] = 596, - [1429] = 1387, - [1430] = 595, - [1431] = 588, - [1432] = 1432, - [1433] = 565, - [1434] = 564, - [1435] = 581, - [1436] = 593, - [1437] = 592, - [1438] = 577, - [1439] = 568, - [1440] = 579, - [1441] = 1392, - [1442] = 559, - [1443] = 1392, - [1444] = 1392, - [1445] = 551, - [1446] = 552, - [1447] = 1392, - [1448] = 1392, - [1449] = 609, - [1450] = 541, - [1451] = 591, - [1452] = 590, - [1453] = 553, - [1454] = 607, - [1455] = 611, - [1456] = 562, - [1457] = 555, - [1458] = 602, - [1459] = 556, - [1460] = 598, - [1461] = 557, - [1462] = 566, - [1463] = 529, - [1464] = 560, - [1465] = 561, - [1466] = 1387, - [1467] = 538, - [1468] = 747, - [1469] = 1387, - [1470] = 610, - [1471] = 589, - [1472] = 146, - [1473] = 146, - [1474] = 146, - [1475] = 146, - [1476] = 1476, - [1477] = 1476, - [1478] = 1478, - [1479] = 1478, - [1480] = 1478, - [1481] = 1478, - [1482] = 1478, - [1483] = 1478, - [1484] = 1478, - [1485] = 1478, - [1486] = 1478, - [1487] = 1487, - [1488] = 1487, - [1489] = 1487, - [1490] = 1487, - [1491] = 1487, - [1492] = 1487, - [1493] = 1487, - [1494] = 1487, - [1495] = 1487, - [1496] = 1496, - [1497] = 1497, - [1498] = 1498, - [1499] = 1499, - [1500] = 1500, - [1501] = 1501, - [1502] = 1502, - [1503] = 1503, - [1504] = 1498, + [1402] = 1375, + [1403] = 1376, + [1404] = 1380, + [1405] = 1385, + [1406] = 1388, + [1407] = 1392, + [1408] = 1394, + [1409] = 1398, + [1410] = 1410, + [1411] = 1411, + [1412] = 1412, + [1413] = 1410, + [1414] = 1414, + [1415] = 1415, + [1416] = 1375, + [1417] = 1417, + [1418] = 1364, + [1419] = 1411, + [1420] = 1412, + [1421] = 1373, + [1422] = 1376, + [1423] = 1373, + [1424] = 1424, + [1425] = 1412, + [1426] = 1411, + [1427] = 1410, + [1428] = 1365, + [1429] = 1362, + [1430] = 1398, + [1431] = 1394, + [1432] = 1392, + [1433] = 1375, + [1434] = 1411, + [1435] = 1388, + [1436] = 1385, + [1437] = 1380, + [1438] = 1377, + [1439] = 1373, + [1440] = 1376, + [1441] = 1397, + [1442] = 1367, + [1443] = 1370, + [1444] = 1444, + [1445] = 1368, + [1446] = 1424, + [1447] = 1368, + [1448] = 1364, + [1449] = 1364, + [1450] = 1450, + [1451] = 1367, + [1452] = 1452, + [1453] = 1453, + [1454] = 1378, + [1455] = 1452, + [1456] = 1396, + [1457] = 1366, + [1458] = 1453, + [1459] = 1366, + [1460] = 1397, + [1461] = 1375, + [1462] = 1376, + [1463] = 1376, + [1464] = 1380, + [1465] = 1375, + [1466] = 1366, + [1467] = 1385, + [1468] = 1368, + [1469] = 1469, + [1470] = 1388, + [1471] = 1444, + [1472] = 1367, + [1473] = 1368, + [1474] = 1444, + [1475] = 1366, + [1476] = 1392, + [1477] = 1394, + [1478] = 1375, + [1479] = 1398, + [1480] = 1362, + [1481] = 1410, + [1482] = 1376, + [1483] = 1411, + [1484] = 1367, + [1485] = 1412, + [1486] = 1486, + [1487] = 1452, + [1488] = 1452, + [1489] = 1370, + [1490] = 1377, + [1491] = 1491, + [1492] = 1370, + [1493] = 1493, + [1494] = 1444, + [1495] = 1367, + [1496] = 1380, + [1497] = 1385, + [1498] = 1414, + [1499] = 1388, + [1500] = 1364, + [1501] = 1453, + [1502] = 1397, + [1503] = 1392, + [1504] = 1394, [1505] = 1505, - [1506] = 1499, - [1507] = 1507, - [1508] = 1499, - [1509] = 1509, - [1510] = 1510, - [1511] = 1511, - [1512] = 1512, - [1513] = 1498, - [1514] = 1498, - [1515] = 1509, - [1516] = 1499, - [1517] = 1511, - [1518] = 1500, - [1519] = 1503, - [1520] = 1520, - [1521] = 154, - [1522] = 1520, - [1523] = 155, - [1524] = 151, - [1525] = 356, - [1526] = 358, - [1527] = 150, - [1528] = 360, - [1529] = 479, - [1530] = 383, - [1531] = 431, - [1532] = 426, - [1533] = 499, - [1534] = 500, - [1535] = 466, - [1536] = 465, - [1537] = 439, - [1538] = 502, - [1539] = 460, - [1540] = 517, - [1541] = 425, - [1542] = 444, - [1543] = 441, - [1544] = 440, - [1545] = 437, - [1546] = 456, - [1547] = 407, - [1548] = 399, - [1549] = 447, - [1550] = 446, - [1551] = 443, - [1552] = 398, - [1553] = 445, - [1554] = 448, - [1555] = 396, - [1556] = 438, - [1557] = 455, - [1558] = 476, - [1559] = 461, - [1560] = 464, - [1561] = 474, - [1562] = 475, - [1563] = 513, - [1564] = 523, - [1565] = 388, - [1566] = 522, - [1567] = 516, - [1568] = 405, - [1569] = 486, - [1570] = 454, - [1571] = 428, - [1572] = 1512, - [1573] = 1496, - [1574] = 433, - [1575] = 520, - [1576] = 408, - [1577] = 395, - [1578] = 451, - [1579] = 410, - [1580] = 413, - [1581] = 394, - [1582] = 414, - [1583] = 415, - [1584] = 519, - [1585] = 518, - [1586] = 393, - [1587] = 392, - [1588] = 391, - [1589] = 390, - [1590] = 384, - [1591] = 380, - [1592] = 1497, - [1593] = 378, - [1594] = 376, - [1595] = 377, - [1596] = 375, - [1597] = 365, - [1598] = 492, - [1599] = 504, - [1600] = 374, - [1601] = 521, - [1602] = 470, - [1603] = 514, - [1604] = 373, - [1605] = 372, - [1606] = 510, - [1607] = 509, - [1608] = 371, - [1609] = 370, - [1610] = 508, - [1611] = 507, - [1612] = 369, - [1613] = 506, - [1614] = 368, - [1615] = 367, - [1616] = 505, - [1617] = 503, - [1618] = 501, - [1619] = 498, - [1620] = 494, - [1621] = 493, - [1622] = 366, - [1623] = 491, - [1624] = 490, - [1625] = 364, - [1626] = 489, - [1627] = 488, - [1628] = 487, - [1629] = 363, - [1630] = 485, - [1631] = 484, - [1632] = 483, - [1633] = 482, - [1634] = 401, - [1635] = 481, - [1636] = 480, - [1637] = 403, - [1638] = 478, - [1639] = 477, - [1640] = 473, - [1641] = 404, - [1642] = 406, - [1643] = 412, - [1644] = 418, - [1645] = 472, - [1646] = 471, - [1647] = 419, - [1648] = 420, - [1649] = 421, - [1650] = 362, - [1651] = 469, - [1652] = 422, - [1653] = 423, - [1654] = 468, - [1655] = 467, - [1656] = 459, - [1657] = 458, - [1658] = 453, - [1659] = 452, - [1660] = 450, - [1661] = 424, - [1662] = 449, - [1663] = 436, - [1664] = 435, - [1665] = 427, - [1666] = 434, - [1667] = 429, - [1668] = 432, - [1669] = 430, + [1506] = 1398, + [1507] = 1414, + [1508] = 1444, + [1509] = 1491, + [1510] = 1362, + [1511] = 1452, + [1512] = 1378, + [1513] = 1453, + [1514] = 1410, + [1515] = 1412, + [1516] = 1397, + [1517] = 1375, + [1518] = 1412, + [1519] = 1364, + [1520] = 1417, + [1521] = 1411, + [1522] = 1367, + [1523] = 1366, + [1524] = 1373, + [1525] = 1410, + [1526] = 1375, + [1527] = 1362, + [1528] = 1398, + [1529] = 1396, + [1530] = 1376, + [1531] = 1367, + [1532] = 1380, + [1533] = 1385, + [1534] = 1388, + [1535] = 1392, + [1536] = 1394, + [1537] = 1398, + [1538] = 1370, + [1539] = 1362, + [1540] = 1410, + [1541] = 1377, + [1542] = 1380, + [1543] = 1411, + [1544] = 1412, + [1545] = 1385, + [1546] = 1388, + [1547] = 1377, + [1548] = 1373, + [1549] = 1366, + [1550] = 1368, + [1551] = 1366, + [1552] = 1380, + [1553] = 1385, + [1554] = 1388, + [1555] = 1394, + [1556] = 1392, + [1557] = 1394, + [1558] = 1388, + [1559] = 1559, + [1560] = 1398, + [1561] = 1561, + [1562] = 1362, + [1563] = 1410, + [1564] = 1385, + [1565] = 1411, + [1566] = 1380, + [1567] = 1412, + [1568] = 1377, + [1569] = 1368, + [1570] = 1392, + [1571] = 1415, + [1572] = 1417, + [1573] = 1394, + [1574] = 1415, + [1575] = 1398, + [1576] = 1366, + [1577] = 1368, + [1578] = 1362, + [1579] = 1410, + [1580] = 1417, + [1581] = 1414, + [1582] = 1411, + [1583] = 1412, + [1584] = 1368, + [1585] = 1444, + [1586] = 1397, + [1587] = 1491, + [1588] = 1452, + [1589] = 1397, + [1590] = 1453, + [1591] = 1378, + [1592] = 1452, + [1593] = 1364, + [1594] = 1491, + [1595] = 1444, + [1596] = 1453, + [1597] = 1392, + [1598] = 1397, + [1599] = 1367, + [1600] = 1444, + [1601] = 1367, + [1602] = 1373, + [1603] = 1373, + [1604] = 1370, + [1605] = 1417, + [1606] = 1606, + [1607] = 1607, + [1608] = 1414, + [1609] = 1452, + [1610] = 1491, + [1611] = 1611, + [1612] = 1377, + [1613] = 1415, + [1614] = 1614, + [1615] = 1373, + [1616] = 1616, + [1617] = 1377, + [1618] = 1618, + [1619] = 1370, + [1620] = 1370, + [1621] = 1414, + [1622] = 1622, + [1623] = 1444, + [1624] = 1491, + [1625] = 1452, + [1626] = 1453, + [1627] = 1373, + [1628] = 1412, + [1629] = 1415, + [1630] = 1378, + [1631] = 1411, + [1632] = 1410, + [1633] = 1417, + [1634] = 1368, + [1635] = 1366, + [1636] = 1368, + [1637] = 1366, + [1638] = 1362, + [1639] = 1377, + [1640] = 1415, + [1641] = 1380, + [1642] = 1375, + [1643] = 1397, + [1644] = 1385, + [1645] = 1396, + [1646] = 1370, + [1647] = 1376, + [1648] = 1384, + [1649] = 1380, + [1650] = 1385, + [1651] = 1388, + [1652] = 1392, + [1653] = 1388, + [1654] = 1394, + [1655] = 1398, + [1656] = 1412, + [1657] = 1411, + [1658] = 1410, + [1659] = 1362, + [1660] = 1398, + [1661] = 1394, + [1662] = 1392, + [1663] = 1663, + [1664] = 1663, + [1665] = 1663, + [1666] = 1663, + [1667] = 1663, + [1668] = 398, + [1669] = 403, [1670] = 1670, [1671] = 1671, - [1672] = 1670, - [1673] = 1670, + [1672] = 1672, + [1673] = 1673, [1674] = 1674, - [1675] = 1674, - [1676] = 1670, - [1677] = 1674, - [1678] = 1674, - [1679] = 1674, - [1680] = 1670, - [1681] = 1670, - [1682] = 1670, - [1683] = 1674, - [1684] = 1670, - [1685] = 1674, - [1686] = 1670, + [1675] = 1675, + [1676] = 1676, + [1677] = 1677, + [1678] = 1676, + [1679] = 1679, + [1680] = 1676, + [1681] = 1671, + [1682] = 1677, + [1683] = 1675, + [1684] = 1672, + [1685] = 1685, + [1686] = 1679, [1687] = 1674, - [1688] = 1674, - [1689] = 1689, - [1690] = 1689, - [1691] = 1689, - [1692] = 1689, - [1693] = 1689, - [1694] = 1694, - [1695] = 1689, - [1696] = 1696, - [1697] = 1696, - [1698] = 1698, - [1699] = 1696, - [1700] = 1698, - [1701] = 1698, - [1702] = 1696, - [1703] = 1698, - [1704] = 1696, - [1705] = 1698, - [1706] = 1698, - [1707] = 1696, - [1708] = 1708, - [1709] = 1709, - [1710] = 1710, - [1711] = 1711, - [1712] = 1709, - [1713] = 1711, - [1714] = 1714, - [1715] = 1711, - [1716] = 1714, - [1717] = 1711, - [1718] = 1714, - [1719] = 1714, - [1720] = 1711, - [1721] = 1721, - [1722] = 1714, - [1723] = 1714, - [1724] = 1714, - [1725] = 1711, - [1726] = 1709, - [1727] = 1709, - [1728] = 1721, + [1688] = 1673, + [1689] = 1676, + [1690] = 1685, + [1691] = 1685, + [1692] = 1685, + [1693] = 1693, + [1694] = 1693, + [1695] = 1673, + [1696] = 1671, + [1697] = 1672, + [1698] = 1685, + [1699] = 1675, + [1700] = 1679, + [1701] = 1677, + [1702] = 1674, + [1703] = 1703, + [1704] = 1145, + [1705] = 1671, + [1706] = 1677, + [1707] = 1145, + [1708] = 1674, + [1709] = 1679, + [1710] = 1672, + [1711] = 1673, + [1712] = 1675, + [1713] = 1713, + [1714] = 1713, + [1715] = 1713, + [1716] = 1713, + [1717] = 1713, + [1718] = 1718, + [1719] = 1718, + [1720] = 1718, + [1721] = 1718, + [1722] = 1718, + [1723] = 1718, + [1724] = 1718, + [1725] = 1718, + [1726] = 1726, + [1727] = 1718, + [1728] = 1728, [1729] = 1729, [1730] = 1730, - [1731] = 1721, - [1732] = 1729, - [1733] = 1729, + [1731] = 1731, + [1732] = 1732, + [1733] = 1733, [1734] = 1734, - [1735] = 1730, - [1736] = 1729, - [1737] = 1729, - [1738] = 1729, - [1739] = 1730, - [1740] = 1729, - [1741] = 1730, - [1742] = 1729, - [1743] = 1730, - [1744] = 1730, - [1745] = 1729, - [1746] = 1709, - [1747] = 1747, - [1748] = 1748, + [1735] = 1735, + [1736] = 1736, + [1737] = 1737, + [1738] = 1738, + [1739] = 1739, + [1740] = 1740, + [1741] = 1741, + [1742] = 1742, + [1743] = 1743, + [1744] = 1728, + [1745] = 1745, + [1746] = 1685, + [1747] = 1685, + [1748] = 1685, [1749] = 1749, - [1750] = 1750, - [1751] = 1751, - [1752] = 1752, - [1753] = 1752, - [1754] = 1754, - [1755] = 1751, - [1756] = 1751, - [1757] = 1757, - [1758] = 1751, - [1759] = 1752, - [1760] = 1748, - [1761] = 1748, - [1762] = 1748, - [1763] = 1751, - [1764] = 1750, - [1765] = 1748, - [1766] = 1752, - [1767] = 1767, - [1768] = 1751, - [1769] = 1750, - [1770] = 1752, - [1771] = 1748, - [1772] = 1748, - [1773] = 1749, - [1774] = 1750, - [1775] = 1751, - [1776] = 1748, - [1777] = 1752, - [1778] = 1748, - [1779] = 1752, - [1780] = 1749, - [1781] = 1767, + [1750] = 1672, + [1751] = 1677, + [1752] = 1749, + [1753] = 1671, + [1754] = 1749, + [1755] = 1749, + [1756] = 1679, + [1757] = 1673, + [1758] = 1675, + [1759] = 1674, + [1760] = 1674, + [1761] = 1673, + [1762] = 1762, + [1763] = 154, + [1764] = 171, + [1765] = 1765, + [1766] = 1679, + [1767] = 167, + [1768] = 1768, + [1769] = 1769, + [1770] = 1671, + [1771] = 1677, + [1772] = 155, + [1773] = 1672, + [1774] = 1675, + [1775] = 1775, + [1776] = 1676, + [1777] = 1777, + [1778] = 1777, + [1779] = 1779, + [1780] = 1780, + [1781] = 1777, [1782] = 1782, - [1783] = 1750, - [1784] = 1752, - [1785] = 1751, - [1786] = 1748, - [1787] = 1750, - [1788] = 1751, - [1789] = 1750, - [1790] = 1752, - [1791] = 1751, - [1792] = 1752, - [1793] = 1751, - [1794] = 1750, - [1795] = 1750, - [1796] = 1767, - [1797] = 1748, - [1798] = 1752, - [1799] = 1750, - [1800] = 1767, - [1801] = 1750, - [1802] = 1802, - [1803] = 1803, - [1804] = 1804, - [1805] = 1805, - [1806] = 1806, - [1807] = 1807, - [1808] = 1802, - [1809] = 1806, - [1810] = 1810, - [1811] = 1811, - [1812] = 1807, + [1783] = 1777, + [1784] = 1779, + [1785] = 1785, + [1786] = 1779, + [1787] = 1779, + [1788] = 1777, + [1789] = 1777, + [1790] = 1777, + [1791] = 282, + [1792] = 1779, + [1793] = 1777, + [1794] = 282, + [1795] = 1777, + [1796] = 1796, + [1797] = 155, + [1798] = 1677, + [1799] = 1679, + [1800] = 150, + [1801] = 1675, + [1802] = 149, + [1803] = 1672, + [1804] = 1685, + [1805] = 1676, + [1806] = 1673, + [1807] = 154, + [1808] = 167, + [1809] = 261, + [1810] = 1674, + [1811] = 1671, + [1812] = 171, [1813] = 1813, - [1814] = 1804, - [1815] = 1805, - [1816] = 1816, - [1817] = 1811, - [1818] = 1813, - [1819] = 1807, - [1820] = 1813, - [1821] = 1805, - [1822] = 1807, - [1823] = 1802, - [1824] = 1805, - [1825] = 1802, - [1826] = 1826, - [1827] = 1802, - [1828] = 1828, - [1829] = 1802, - [1830] = 1804, - [1831] = 1810, - [1832] = 1816, - [1833] = 1811, - [1834] = 1816, - [1835] = 1813, - [1836] = 1807, - [1837] = 1813, - [1838] = 1806, - [1839] = 1803, - [1840] = 1803, - [1841] = 1816, - [1842] = 1806, - [1843] = 1803, - [1844] = 1810, - [1845] = 1806, - [1846] = 1804, - [1847] = 1806, - [1848] = 1848, - [1849] = 1849, - [1850] = 1810, - [1851] = 1803, - [1852] = 1811, - [1853] = 1803, - [1854] = 1813, - [1855] = 1805, - [1856] = 1806, - [1857] = 1857, - [1858] = 1804, - [1859] = 1811, - [1860] = 1803, - [1861] = 1813, - [1862] = 1816, - [1863] = 1805, - [1864] = 1802, - [1865] = 1865, - [1866] = 1810, - [1867] = 1867, - [1868] = 1804, - [1869] = 1805, - [1870] = 1816, - [1871] = 1802, - [1872] = 1802, - [1873] = 1802, - [1874] = 1811, - [1875] = 1810, - [1876] = 1807, - [1877] = 1802, - [1878] = 1807, - [1879] = 1816, - [1880] = 1811, - [1881] = 1810, + [1814] = 274, + [1815] = 1815, + [1816] = 406, + [1817] = 1817, + [1818] = 1818, + [1819] = 1819, + [1820] = 345, + [1821] = 1821, + [1822] = 343, + [1823] = 1785, + [1824] = 351, + [1825] = 1825, + [1826] = 356, + [1827] = 357, + [1828] = 358, + [1829] = 359, + [1830] = 1830, + [1831] = 342, + [1832] = 1674, + [1833] = 341, + [1834] = 1834, + [1835] = 340, + [1836] = 360, + [1837] = 361, + [1838] = 282, + [1839] = 362, + [1840] = 363, + [1841] = 364, + [1842] = 365, + [1843] = 339, + [1844] = 1844, + [1845] = 407, + [1846] = 337, + [1847] = 1847, + [1848] = 372, + [1849] = 374, + [1850] = 375, + [1851] = 376, + [1852] = 1676, + [1853] = 377, + [1854] = 378, + [1855] = 379, + [1856] = 333, + [1857] = 380, + [1858] = 1858, + [1859] = 1817, + [1860] = 399, + [1861] = 1861, + [1862] = 282, + [1863] = 400, + [1864] = 1864, + [1865] = 347, + [1866] = 1866, + [1867] = 401, + [1868] = 1868, + [1869] = 1671, + [1870] = 1677, + [1871] = 403, + [1872] = 1672, + [1873] = 287, + [1874] = 1874, + [1875] = 404, + [1876] = 1876, + [1877] = 1877, + [1878] = 1878, + [1879] = 288, + [1880] = 1679, + [1881] = 1881, [1882] = 1882, [1883] = 1883, [1884] = 1884, - [1885] = 1882, + [1885] = 1885, [1886] = 1886, [1887] = 1887, [1888] = 1888, @@ -6436,7876 +6439,6192 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1890] = 1890, [1891] = 1891, [1892] = 1892, - [1893] = 1893, + [1893] = 1817, [1894] = 1894, - [1895] = 1895, - [1896] = 1894, - [1897] = 1897, - [1898] = 1894, - [1899] = 1899, - [1900] = 1900, - [1901] = 1894, + [1895] = 1818, + [1896] = 1896, + [1897] = 1673, + [1898] = 398, + [1899] = 1675, + [1900] = 410, + [1901] = 411, [1902] = 1902, - [1903] = 1903, + [1903] = 293, [1904] = 1904, [1905] = 1905, - [1906] = 1891, + [1906] = 1906, [1907] = 1907, - [1908] = 1892, + [1908] = 1685, [1909] = 1909, - [1910] = 1910, + [1910] = 1817, [1911] = 1911, - [1912] = 1912, + [1912] = 332, [1913] = 1913, [1914] = 1914, - [1915] = 1915, - [1916] = 1894, + [1915] = 413, + [1916] = 1916, [1917] = 1917, [1918] = 1918, - [1919] = 1919, + [1919] = 1685, [1920] = 1920, - [1921] = 1921, + [1921] = 150, [1922] = 1922, - [1923] = 1923, - [1924] = 1924, - [1925] = 1925, - [1926] = 1889, + [1923] = 149, + [1924] = 171, + [1925] = 167, + [1926] = 1926, [1927] = 1927, - [1928] = 1889, - [1929] = 1889, - [1930] = 1894, - [1931] = 1889, - [1932] = 1890, - [1933] = 1886, - [1934] = 1894, - [1935] = 1894, - [1936] = 1895, - [1937] = 1893, - [1938] = 1884, - [1939] = 1891, - [1940] = 1895, - [1941] = 1886, - [1942] = 1890, - [1943] = 1882, - [1944] = 1890, - [1945] = 1889, - [1946] = 1882, - [1947] = 1889, - [1948] = 1893, - [1949] = 1890, + [1928] = 1927, + [1929] = 1929, + [1930] = 1785, + [1931] = 1931, + [1932] = 1932, + [1933] = 1782, + [1934] = 1934, + [1935] = 1935, + [1936] = 1936, + [1937] = 1927, + [1938] = 261, + [1939] = 1939, + [1940] = 1685, + [1941] = 1941, + [1942] = 154, + [1943] = 1943, + [1944] = 1944, + [1945] = 1945, + [1946] = 1946, + [1947] = 1947, + [1948] = 1948, + [1949] = 1949, [1950] = 1950, - [1951] = 1889, - [1952] = 1890, + [1951] = 155, + [1952] = 1785, [1953] = 1953, - [1954] = 1894, - [1955] = 1890, - [1956] = 1889, - [1957] = 1957, - [1958] = 1895, - [1959] = 1890, - [1960] = 1890, - [1961] = 1894, - [1962] = 1894, - [1963] = 1895, + [1954] = 1954, + [1955] = 1955, + [1956] = 1956, + [1957] = 1796, + [1958] = 1958, + [1959] = 1959, + [1960] = 1960, + [1961] = 1961, + [1962] = 1962, + [1963] = 1963, [1964] = 1964, - [1965] = 1887, - [1966] = 1882, - [1967] = 1889, - [1968] = 1888, - [1969] = 1895, - [1970] = 1882, + [1965] = 1965, + [1966] = 1927, + [1967] = 1967, + [1968] = 167, + [1969] = 1780, + [1970] = 1970, [1971] = 1971, - [1972] = 1889, - [1973] = 1886, - [1974] = 1893, - [1975] = 1891, + [1972] = 1927, + [1973] = 1973, + [1974] = 1922, + [1975] = 154, [1976] = 1976, - [1977] = 1977, + [1977] = 1780, [1978] = 1978, [1979] = 1979, [1980] = 1980, [1981] = 1981, - [1982] = 1982, + [1982] = 155, [1983] = 1983, - [1984] = 1978, + [1984] = 1927, [1985] = 1985, - [1986] = 1986, - [1987] = 1985, - [1988] = 1982, + [1986] = 1785, + [1987] = 1987, + [1988] = 1988, [1989] = 1989, [1990] = 1990, [1991] = 1991, - [1992] = 1992, - [1993] = 1993, - [1994] = 1994, - [1995] = 1979, - [1996] = 1996, - [1997] = 1978, - [1998] = 1991, - [1999] = 1990, - [2000] = 1979, - [2001] = 1983, - [2002] = 1979, - [2003] = 1981, + [1992] = 1922, + [1993] = 1922, + [1994] = 1922, + [1995] = 1922, + [1996] = 1944, + [1997] = 1796, + [1998] = 1782, + [1999] = 1927, + [2000] = 1785, + [2001] = 2001, + [2002] = 1927, + [2003] = 2003, [2004] = 2004, [2005] = 2005, - [2006] = 1980, + [2006] = 1922, [2007] = 2007, - [2008] = 2008, - [2009] = 1996, - [2010] = 1994, - [2011] = 2011, - [2012] = 2012, - [2013] = 2013, - [2014] = 1993, - [2015] = 1979, - [2016] = 1992, - [2017] = 2017, - [2018] = 2018, + [2008] = 1927, + [2009] = 171, + [2010] = 1876, + [2011] = 1834, + [2012] = 282, + [2013] = 1796, + [2014] = 1959, + [2015] = 401, + [2016] = 282, + [2017] = 400, + [2018] = 399, [2019] = 2019, - [2020] = 1977, - [2021] = 2021, - [2022] = 1982, - [2023] = 1982, - [2024] = 2024, - [2025] = 2025, - [2026] = 2005, - [2027] = 1977, - [2028] = 1976, - [2029] = 2021, - [2030] = 2017, - [2031] = 2018, - [2032] = 2019, - [2033] = 2019, - [2034] = 2018, - [2035] = 1976, - [2036] = 2036, - [2037] = 2037, - [2038] = 2025, - [2039] = 2007, - [2040] = 2021, - [2041] = 2007, - [2042] = 1980, - [2043] = 1981, - [2044] = 2004, - [2045] = 1983, - [2046] = 1990, - [2047] = 1991, - [2048] = 1996, - [2049] = 2049, - [2050] = 1980, - [2051] = 2017, - [2052] = 1994, - [2053] = 1993, - [2054] = 1992, - [2055] = 1981, - [2056] = 2004, - [2057] = 2057, - [2058] = 2008, - [2059] = 2005, - [2060] = 1983, - [2061] = 2008, - [2062] = 1990, - [2063] = 1982, - [2064] = 2019, - [2065] = 2004, - [2066] = 2021, - [2067] = 2018, - [2068] = 1986, - [2069] = 1991, - [2070] = 1978, - [2071] = 2011, - [2072] = 1996, - [2073] = 1989, - [2074] = 2074, - [2075] = 1994, - [2076] = 2005, - [2077] = 2008, - [2078] = 2021, - [2079] = 1993, - [2080] = 1992, - [2081] = 2025, - [2082] = 1978, - [2083] = 1992, - [2084] = 1993, - [2085] = 1994, - [2086] = 1977, - [2087] = 2057, - [2088] = 2025, - [2089] = 2008, - [2090] = 1986, - [2091] = 1982, - [2092] = 2007, - [2093] = 1980, - [2094] = 1982, - [2095] = 1981, - [2096] = 1983, - [2097] = 1991, - [2098] = 1990, - [2099] = 1991, - [2100] = 1996, - [2101] = 1994, - [2102] = 1993, - [2103] = 2103, - [2104] = 1992, - [2105] = 2005, - [2106] = 2019, - [2107] = 1990, - [2108] = 1986, - [2109] = 2021, - [2110] = 1982, - [2111] = 1983, - [2112] = 2112, - [2113] = 2025, - [2114] = 2018, - [2115] = 2019, - [2116] = 2021, - [2117] = 1982, - [2118] = 2018, - [2119] = 2021, - [2120] = 2017, - [2121] = 2112, - [2122] = 1977, - [2123] = 2049, - [2124] = 1977, - [2125] = 1980, - [2126] = 1986, - [2127] = 2049, - [2128] = 1976, - [2129] = 2129, - [2130] = 1981, - [2131] = 2021, - [2132] = 2005, - [2133] = 2021, - [2134] = 2019, - [2135] = 2008, - [2136] = 1992, - [2137] = 1993, - [2138] = 1994, - [2139] = 1996, - [2140] = 2017, - [2141] = 1976, - [2142] = 1991, - [2143] = 1990, - [2144] = 2024, - [2145] = 1983, - [2146] = 1981, - [2147] = 1980, - [2148] = 2007, - [2149] = 2018, - [2150] = 1976, - [2151] = 2151, - [2152] = 2004, - [2153] = 2024, - [2154] = 1978, - [2155] = 2012, - [2156] = 2011, - [2157] = 1982, - [2158] = 1985, - [2159] = 2005, - [2160] = 2160, - [2161] = 2007, - [2162] = 1980, - [2163] = 1981, - [2164] = 1983, - [2165] = 1990, - [2166] = 1991, - [2167] = 1996, - [2168] = 1994, - [2169] = 2169, - [2170] = 2007, - [2171] = 1993, - [2172] = 1992, - [2173] = 2008, - [2174] = 2007, - [2175] = 1989, - [2176] = 2024, - [2177] = 2177, - [2178] = 2007, - [2179] = 1980, - [2180] = 2024, - [2181] = 1976, - [2182] = 1978, - [2183] = 2183, - [2184] = 1989, - [2185] = 1981, - [2186] = 1983, - [2187] = 1990, - [2188] = 2025, - [2189] = 2189, - [2190] = 2049, - [2191] = 1991, - [2192] = 2024, - [2193] = 1977, - [2194] = 1996, - [2195] = 2169, - [2196] = 2112, - [2197] = 1986, - [2198] = 2004, - [2199] = 1976, - [2200] = 2011, - [2201] = 2018, - [2202] = 2024, - [2203] = 2019, - [2204] = 2008, - [2205] = 1989, - [2206] = 1994, - [2207] = 2207, - [2208] = 2005, - [2209] = 1978, - [2210] = 1976, - [2211] = 2011, - [2212] = 1986, - [2213] = 1993, - [2214] = 2007, - [2215] = 1980, - [2216] = 1978, - [2217] = 1981, - [2218] = 1978, - [2219] = 1983, - [2220] = 1990, - [2221] = 1991, - [2222] = 2222, - [2223] = 2008, - [2224] = 1976, - [2225] = 2018, - [2226] = 1992, - [2227] = 1979, - [2228] = 1989, - [2229] = 2011, - [2230] = 2019, - [2231] = 1996, - [2232] = 1977, - [2233] = 2024, - [2234] = 2024, - [2235] = 1994, - [2236] = 1992, - [2237] = 2018, - [2238] = 1993, - [2239] = 1994, - [2240] = 2240, - [2241] = 1996, - [2242] = 1996, - [2243] = 2243, - [2244] = 1990, - [2245] = 2019, - [2246] = 1983, - [2247] = 1981, - [2248] = 1993, - [2249] = 1992, - [2250] = 1980, - [2251] = 2008, - [2252] = 2007, - [2253] = 2112, - [2254] = 1986, - [2255] = 1991, - [2256] = 2112, - [2257] = 2017, - [2258] = 1986, - [2259] = 2008, - [2260] = 1977, - [2261] = 2049, - [2262] = 2017, - [2263] = 2017, - [2264] = 1986, - [2265] = 1976, - [2266] = 2017, - [2267] = 1978, - [2268] = 1986, - [2269] = 2021, - [2270] = 2005, - [2271] = 2011, - [2272] = 1985, - [2273] = 2018, - [2274] = 2019, - [2275] = 1982, - [2276] = 2049, - [2277] = 2277, - [2278] = 2277, - [2279] = 2277, - [2280] = 2277, - [2281] = 2277, - [2282] = 577, - [2283] = 2283, - [2284] = 541, - [2285] = 2285, - [2286] = 2286, - [2287] = 2287, - [2288] = 2288, - [2289] = 2289, - [2290] = 2290, - [2291] = 2289, - [2292] = 2292, - [2293] = 2293, - [2294] = 2289, - [2295] = 2285, - [2296] = 2288, - [2297] = 2287, - [2298] = 2292, - [2299] = 2286, + [2020] = 2019, + [2021] = 1780, + [2022] = 1782, + [2023] = 1965, + [2024] = 282, + [2025] = 403, + [2026] = 1914, + [2027] = 1913, + [2028] = 1894, + [2029] = 1911, + [2030] = 287, + [2031] = 398, + [2032] = 1909, + [2033] = 1907, + [2034] = 1896, + [2035] = 411, + [2036] = 410, + [2037] = 1906, + [2038] = 1905, + [2039] = 1904, + [2040] = 332, + [2041] = 1902, + [2042] = 1970, + [2043] = 1785, + [2044] = 274, + [2045] = 380, + [2046] = 333, + [2047] = 379, + [2048] = 293, + [2049] = 1785, + [2050] = 378, + [2051] = 377, + [2052] = 376, + [2053] = 375, + [2054] = 337, + [2055] = 374, + [2056] = 1847, + [2057] = 339, + [2058] = 372, + [2059] = 1891, + [2060] = 1890, + [2061] = 1889, + [2062] = 1888, + [2063] = 1887, + [2064] = 1885, + [2065] = 1884, + [2066] = 1883, + [2067] = 1882, + [2068] = 1881, + [2069] = 1877, + [2070] = 407, + [2071] = 406, + [2072] = 340, + [2073] = 1874, + [2074] = 1868, + [2075] = 341, + [2076] = 1866, + [2077] = 1813, + [2078] = 1864, + [2079] = 1844, + [2080] = 342, + [2081] = 343, + [2082] = 1976, + [2083] = 282, + [2084] = 413, + [2085] = 404, + [2086] = 365, + [2087] = 1830, + [2088] = 1825, + [2089] = 1821, + [2090] = 1978, + [2091] = 1819, + [2092] = 364, + [2093] = 345, + [2094] = 347, + [2095] = 1785, + [2096] = 1934, + [2097] = 2019, + [2098] = 363, + [2099] = 362, + [2100] = 361, + [2101] = 360, + [2102] = 2019, + [2103] = 359, + [2104] = 358, + [2105] = 357, + [2106] = 1929, + [2107] = 356, + [2108] = 351, + [2109] = 288, + [2110] = 149, + [2111] = 1917, + [2112] = 1685, + [2113] = 2113, + [2114] = 261, + [2115] = 149, + [2116] = 261, + [2117] = 150, + [2118] = 1785, + [2119] = 2119, + [2120] = 2120, + [2121] = 1917, + [2122] = 150, + [2123] = 1913, + [2124] = 359, + [2125] = 372, + [2126] = 360, + [2127] = 361, + [2128] = 362, + [2129] = 363, + [2130] = 364, + [2131] = 340, + [2132] = 1959, + [2133] = 406, + [2134] = 407, + [2135] = 1978, + [2136] = 372, + [2137] = 287, + [2138] = 401, + [2139] = 374, + [2140] = 375, + [2141] = 1813, + [2142] = 376, + [2143] = 339, + [2144] = 359, + [2145] = 1866, + [2146] = 377, + [2147] = 399, + [2148] = 378, + [2149] = 379, + [2150] = 1917, + [2151] = 343, + [2152] = 1782, + [2153] = 342, + [2154] = 1780, + [2155] = 398, + [2156] = 413, + [2157] = 1970, + [2158] = 1976, + [2159] = 333, + [2160] = 341, + [2161] = 380, + [2162] = 1890, + [2163] = 341, + [2164] = 410, + [2165] = 340, + [2166] = 1796, + [2167] = 2119, + [2168] = 411, + [2169] = 339, + [2170] = 1887, + [2171] = 1885, + [2172] = 337, + [2173] = 1884, + [2174] = 1888, + [2175] = 1813, + [2176] = 1866, + [2177] = 1819, + [2178] = 365, + [2179] = 337, + [2180] = 1891, + [2181] = 407, + [2182] = 1896, + [2183] = 404, + [2184] = 1868, + [2185] = 1874, + [2186] = 1821, + [2187] = 288, + [2188] = 1902, + [2189] = 360, + [2190] = 361, + [2191] = 362, + [2192] = 342, + [2193] = 343, + [2194] = 357, + [2195] = 358, + [2196] = 363, + [2197] = 364, + [2198] = 365, + [2199] = 1883, + [2200] = 1904, + [2201] = 399, + [2202] = 351, + [2203] = 1907, + [2204] = 400, + [2205] = 1877, + [2206] = 1868, + [2207] = 1882, + [2208] = 1894, + [2209] = 1825, + [2210] = 375, + [2211] = 1830, + [2212] = 1905, + [2213] = 1834, + [2214] = 345, + [2215] = 1844, + [2216] = 1847, + [2217] = 1976, + [2218] = 293, + [2219] = 1914, + [2220] = 347, + [2221] = 332, + [2222] = 376, + [2223] = 411, + [2224] = 1911, + [2225] = 347, + [2226] = 1909, + [2227] = 1906, + [2228] = 1876, + [2229] = 345, + [2230] = 1906, + [2231] = 1905, + [2232] = 1904, + [2233] = 401, + [2234] = 413, + [2235] = 404, + [2236] = 1907, + [2237] = 1970, + [2238] = 274, + [2239] = 1902, + [2240] = 1874, + [2241] = 358, + [2242] = 1864, + [2243] = 380, + [2244] = 357, + [2245] = 1864, + [2246] = 288, + [2247] = 1876, + [2248] = 1847, + [2249] = 400, + [2250] = 1891, + [2251] = 1890, + [2252] = 1889, + [2253] = 1888, + [2254] = 1887, + [2255] = 1877, + [2256] = 1885, + [2257] = 410, + [2258] = 1884, + [2259] = 1844, + [2260] = 1894, + [2261] = 356, + [2262] = 1834, + [2263] = 333, + [2264] = 1889, + [2265] = 403, + [2266] = 1883, + [2267] = 1830, + [2268] = 1909, + [2269] = 1896, + [2270] = 1825, + [2271] = 1978, + [2272] = 351, + [2273] = 1959, + [2274] = 1882, + [2275] = 1881, + [2276] = 379, + [2277] = 293, + [2278] = 1821, + [2279] = 1911, + [2280] = 1819, + [2281] = 406, + [2282] = 274, + [2283] = 332, + [2284] = 377, + [2285] = 1913, + [2286] = 378, + [2287] = 398, + [2288] = 403, + [2289] = 1914, + [2290] = 1881, + [2291] = 287, + [2292] = 356, + [2293] = 374, + [2294] = 1934, + [2295] = 1679, + [2296] = 1892, + [2297] = 1934, + [2298] = 2113, + [2299] = 2120, [2300] = 2300, - [2301] = 2290, - [2302] = 2293, - [2303] = 2300, - [2304] = 2289, - [2305] = 2300, - [2306] = 2300, - [2307] = 2307, - [2308] = 2307, - [2309] = 2286, - [2310] = 2300, - [2311] = 2292, - [2312] = 2288, - [2313] = 2285, - [2314] = 2290, - [2315] = 2293, - [2316] = 2287, - [2317] = 2317, - [2318] = 1721, - [2319] = 2285, - [2320] = 2288, - [2321] = 2292, - [2322] = 2286, - [2323] = 2293, - [2324] = 1721, - [2325] = 2290, - [2326] = 2287, - [2327] = 2327, - [2328] = 2327, - [2329] = 2327, - [2330] = 2327, - [2331] = 2327, - [2332] = 2332, - [2333] = 2332, - [2334] = 2334, - [2335] = 2332, - [2336] = 2332, - [2337] = 2332, - [2338] = 2332, - [2339] = 2332, - [2340] = 2332, - [2341] = 2332, - [2342] = 2342, - [2343] = 2343, - [2344] = 2344, - [2345] = 2345, - [2346] = 2346, - [2347] = 2344, - [2348] = 2348, - [2349] = 2349, - [2350] = 2350, - [2351] = 2351, + [2301] = 1976, + [2302] = 1970, + [2303] = 150, + [2304] = 149, + [2305] = 1673, + [2306] = 1672, + [2307] = 1978, + [2308] = 2308, + [2309] = 2309, + [2310] = 1959, + [2311] = 2311, + [2312] = 1978, + [2313] = 1929, + [2314] = 1675, + [2315] = 1861, + [2316] = 1878, + [2317] = 1929, + [2318] = 1815, + [2319] = 1978, + [2320] = 1959, + [2321] = 1959, + [2322] = 1976, + [2323] = 2323, + [2324] = 2324, + [2325] = 1970, + [2326] = 1674, + [2327] = 1983, + [2328] = 2119, + [2329] = 1671, + [2330] = 1970, + [2331] = 1976, + [2332] = 1677, + [2333] = 1674, + [2334] = 1679, + [2335] = 1726, + [2336] = 1934, + [2337] = 1976, + [2338] = 1815, + [2339] = 2339, + [2340] = 2340, + [2341] = 1861, + [2342] = 1970, + [2343] = 1978, + [2344] = 1673, + [2345] = 1929, + [2346] = 1959, + [2347] = 2347, + [2348] = 1878, + [2349] = 2119, + [2350] = 1671, + [2351] = 1677, [2352] = 2352, - [2353] = 2353, - [2354] = 2354, + [2353] = 2339, + [2354] = 1672, [2355] = 2355, - [2356] = 2356, - [2357] = 2357, - [2358] = 2358, - [2359] = 2359, - [2360] = 2300, - [2361] = 2300, - [2362] = 2300, - [2363] = 2285, - [2364] = 2364, - [2365] = 2364, - [2366] = 2364, - [2367] = 2286, - [2368] = 2364, - [2369] = 2287, - [2370] = 2288, - [2371] = 2292, - [2372] = 2293, - [2373] = 2290, - [2374] = 273, - [2375] = 154, - [2376] = 279, - [2377] = 2285, - [2378] = 2287, - [2379] = 2288, - [2380] = 2292, - [2381] = 2290, - [2382] = 2293, - [2383] = 2286, + [2356] = 1892, + [2357] = 1675, + [2358] = 1917, + [2359] = 1978, + [2360] = 2340, + [2361] = 2119, + [2362] = 2362, + [2363] = 2347, + [2364] = 1959, + [2365] = 2365, + [2366] = 2339, + [2367] = 2367, + [2368] = 2368, + [2369] = 2369, + [2370] = 2113, + [2371] = 2371, + [2372] = 1976, + [2373] = 2373, + [2374] = 2120, + [2375] = 1970, + [2376] = 1983, + [2377] = 2377, + [2378] = 2378, + [2379] = 1726, + [2380] = 2380, + [2381] = 2381, + [2382] = 2382, + [2383] = 2383, [2384] = 2384, [2385] = 2385, [2386] = 2386, - [2387] = 155, - [2388] = 2388, - [2389] = 2389, - [2390] = 409, - [2391] = 2391, - [2392] = 2389, - [2393] = 2393, - [2394] = 2289, - [2395] = 409, - [2396] = 2389, - [2397] = 2397, - [2398] = 2389, - [2399] = 2389, - [2400] = 2393, - [2401] = 2389, - [2402] = 2393, - [2403] = 2389, - [2404] = 2389, - [2405] = 2393, - [2406] = 2406, - [2407] = 2389, - [2408] = 2408, - [2409] = 2393, - [2410] = 2410, - [2411] = 151, - [2412] = 360, - [2413] = 2289, - [2414] = 2286, - [2415] = 273, - [2416] = 150, - [2417] = 2288, - [2418] = 2300, - [2419] = 2285, - [2420] = 155, - [2421] = 2292, - [2422] = 2287, - [2423] = 154, - [2424] = 279, - [2425] = 2293, - [2426] = 2290, - [2427] = 592, - [2428] = 433, - [2429] = 2429, - [2430] = 2430, + [2387] = 2387, + [2388] = 2355, + [2389] = 2383, + [2390] = 1815, + [2391] = 1976, + [2392] = 1861, + [2393] = 1886, + [2394] = 2373, + [2395] = 1878, + [2396] = 2396, + [2397] = 1726, + [2398] = 2371, + [2399] = 1916, + [2400] = 1918, + [2401] = 2352, + [2402] = 2119, + [2403] = 2377, + [2404] = 2404, + [2405] = 1959, + [2406] = 1978, + [2407] = 2113, + [2408] = 2378, + [2409] = 2409, + [2410] = 1970, + [2411] = 2369, + [2412] = 2368, + [2413] = 2387, + [2414] = 2365, + [2415] = 1929, + [2416] = 2367, + [2417] = 2384, + [2418] = 2386, + [2419] = 2120, + [2420] = 2420, + [2421] = 1934, + [2422] = 1892, + [2423] = 1926, + [2424] = 2424, + [2425] = 1929, + [2426] = 2005, + [2427] = 1676, + [2428] = 1981, + [2429] = 2007, + [2430] = 2300, [2431] = 2431, - [2432] = 2432, + [2432] = 1920, [2433] = 2433, - [2434] = 2434, - [2435] = 454, - [2436] = 2290, - [2437] = 2406, - [2438] = 2293, - [2439] = 451, - [2440] = 550, - [2441] = 475, - [2442] = 499, - [2443] = 500, - [2444] = 538, - [2445] = 502, - [2446] = 559, - [2447] = 601, - [2448] = 603, - [2449] = 517, - [2450] = 476, - [2451] = 558, - [2452] = 543, - [2453] = 577, - [2454] = 526, - [2455] = 568, - [2456] = 527, - [2457] = 2457, - [2458] = 2458, - [2459] = 444, - [2460] = 530, - [2461] = 441, - [2462] = 440, - [2463] = 532, - [2464] = 2464, - [2465] = 437, + [2434] = 1954, + [2435] = 2435, + [2436] = 1962, + [2437] = 1961, + [2438] = 1990, + [2439] = 1973, + [2440] = 1960, + [2441] = 1964, + [2442] = 1726, + [2443] = 1941, + [2444] = 2444, + [2445] = 2445, + [2446] = 2324, + [2447] = 1967, + [2448] = 2352, + [2449] = 2449, + [2450] = 2450, + [2451] = 1931, + [2452] = 2309, + [2453] = 2453, + [2454] = 2454, + [2455] = 2455, + [2456] = 1926, + [2457] = 2355, + [2458] = 2120, + [2459] = 1932, + [2460] = 1985, + [2461] = 2461, + [2462] = 1935, + [2463] = 1936, + [2464] = 1979, + [2465] = 1980, [2466] = 2466, - [2467] = 407, - [2468] = 399, - [2469] = 398, + [2467] = 1892, + [2468] = 2396, + [2469] = 2004, [2470] = 2470, - [2471] = 2470, - [2472] = 541, - [2473] = 555, - [2474] = 579, - [2475] = 2285, - [2476] = 445, - [2477] = 2288, - [2478] = 448, - [2479] = 2479, - [2480] = 396, - [2481] = 2481, - [2482] = 556, - [2483] = 557, - [2484] = 566, - [2485] = 455, - [2486] = 461, - [2487] = 2487, - [2488] = 2292, - [2489] = 2489, - [2490] = 610, - [2491] = 2491, - [2492] = 561, - [2493] = 2493, - [2494] = 2494, - [2495] = 2495, - [2496] = 2496, - [2497] = 425, - [2498] = 464, - [2499] = 2499, - [2500] = 2500, - [2501] = 474, - [2502] = 2287, - [2503] = 2503, - [2504] = 2504, - [2505] = 2505, - [2506] = 513, - [2507] = 562, - [2508] = 523, - [2509] = 522, - [2510] = 516, - [2511] = 2511, - [2512] = 564, - [2513] = 2513, - [2514] = 565, - [2515] = 2515, - [2516] = 2516, - [2517] = 2515, - [2518] = 2300, - [2519] = 426, - [2520] = 2520, - [2521] = 2521, - [2522] = 2286, - [2523] = 2523, - [2524] = 597, - [2525] = 572, - [2526] = 596, - [2527] = 524, - [2528] = 595, - [2529] = 2529, - [2530] = 2470, - [2531] = 584, - [2532] = 409, - [2533] = 431, - [2534] = 409, - [2535] = 2470, - [2536] = 593, - [2537] = 2537, - [2538] = 590, - [2539] = 2289, - [2540] = 2540, - [2541] = 2541, - [2542] = 2542, + [2471] = 2003, + [2472] = 2001, + [2473] = 2473, + [2474] = 1991, + [2475] = 2475, + [2476] = 1958, + [2477] = 1989, + [2478] = 1963, + [2479] = 1988, + [2480] = 1983, + [2481] = 2311, + [2482] = 1987, + [2483] = 1956, + [2484] = 1955, + [2485] = 1953, + [2486] = 1950, + [2487] = 1878, + [2488] = 1949, + [2489] = 1861, + [2490] = 1948, + [2491] = 1947, + [2492] = 2113, + [2493] = 1726, + [2494] = 1946, + [2495] = 1945, + [2496] = 1943, + [2497] = 1939, + [2498] = 2498, + [2499] = 1815, + [2500] = 2300, + [2501] = 2340, + [2502] = 1006, + [2503] = 1685, + [2504] = 2113, + [2505] = 2309, + [2506] = 1005, + [2507] = 1679, + [2508] = 1673, + [2509] = 1675, + [2510] = 1672, + [2511] = 1892, + [2512] = 1677, + [2513] = 1671, + [2514] = 1674, + [2515] = 2385, + [2516] = 1726, + [2517] = 1815, + [2518] = 1983, + [2519] = 1861, + [2520] = 2311, + [2521] = 1878, + [2522] = 2347, + [2523] = 2347, + [2524] = 2324, + [2525] = 2120, + [2526] = 2340, + [2527] = 2527, + [2528] = 2387, + [2529] = 2355, + [2530] = 2530, + [2531] = 1679, + [2532] = 1673, + [2533] = 1675, + [2534] = 2534, + [2535] = 2535, + [2536] = 2536, + [2537] = 2347, + [2538] = 2365, + [2539] = 2539, + [2540] = 2383, + [2541] = 2534, + [2542] = 1892, [2543] = 2543, - [2544] = 588, - [2545] = 2545, - [2546] = 607, - [2547] = 2547, - [2548] = 560, - [2549] = 609, - [2550] = 2550, - [2551] = 585, + [2544] = 2534, + [2545] = 1815, + [2546] = 2546, + [2547] = 2367, + [2548] = 2548, + [2549] = 2549, + [2550] = 1878, + [2551] = 1861, [2552] = 2552, - [2553] = 2553, - [2554] = 574, + [2553] = 1878, + [2554] = 2554, [2555] = 2555, - [2556] = 2556, + [2556] = 1861, [2557] = 2557, [2558] = 2558, [2559] = 2559, - [2560] = 2560, + [2560] = 1983, [2561] = 2561, - [2562] = 2562, - [2563] = 2563, + [2562] = 1672, + [2563] = 1677, [2564] = 2564, - [2565] = 155, + [2565] = 1671, [2566] = 2566, [2567] = 2567, - [2568] = 2560, - [2569] = 2569, - [2570] = 2406, - [2571] = 2562, - [2572] = 2572, - [2573] = 2560, - [2574] = 2574, - [2575] = 155, - [2576] = 2563, - [2577] = 2577, - [2578] = 2578, - [2579] = 2406, + [2568] = 2387, + [2569] = 2534, + [2570] = 2570, + [2571] = 2377, + [2572] = 2534, + [2573] = 1815, + [2574] = 2340, + [2575] = 2371, + [2576] = 2385, + [2577] = 1679, + [2578] = 1673, + [2579] = 1675, [2580] = 2580, - [2581] = 2581, - [2582] = 2582, - [2583] = 2391, - [2584] = 2406, - [2585] = 2560, - [2586] = 2563, + [2581] = 2373, + [2582] = 1672, + [2583] = 1677, + [2584] = 1671, + [2585] = 1674, + [2586] = 1892, [2587] = 2587, - [2588] = 154, - [2589] = 273, - [2590] = 154, - [2591] = 2591, - [2592] = 2592, - [2593] = 2593, - [2594] = 2594, + [2588] = 2588, + [2589] = 2373, + [2590] = 1815, + [2591] = 2352, + [2592] = 1861, + [2593] = 2377, + [2594] = 1983, [2595] = 2595, - [2596] = 2596, - [2597] = 2597, + [2596] = 1983, + [2597] = 1878, [2598] = 2598, - [2599] = 2599, - [2600] = 151, - [2601] = 2563, - [2602] = 2300, - [2603] = 2397, - [2604] = 2563, - [2605] = 2605, - [2606] = 2606, - [2607] = 2562, + [2599] = 272, + [2600] = 2600, + [2601] = 2368, + [2602] = 2369, + [2603] = 2603, + [2604] = 2378, + [2605] = 1892, + [2606] = 2362, + [2607] = 2386, [2608] = 2608, - [2609] = 2609, - [2610] = 2563, - [2611] = 2611, - [2612] = 150, - [2613] = 2613, - [2614] = 2614, - [2615] = 2615, - [2616] = 2616, - [2617] = 2617, - [2618] = 2618, - [2619] = 2619, + [2609] = 2384, + [2610] = 2367, + [2611] = 1005, + [2612] = 275, + [2613] = 2365, + [2614] = 2386, + [2615] = 2384, + [2616] = 1685, + [2617] = 1674, + [2618] = 1726, + [2619] = 1006, [2620] = 2620, - [2621] = 2621, - [2622] = 2563, - [2623] = 2300, - [2624] = 2624, - [2625] = 2605, - [2626] = 2562, - [2627] = 2406, + [2621] = 2369, + [2622] = 2371, + [2623] = 2368, + [2624] = 2383, + [2625] = 2625, + [2626] = 2378, + [2627] = 2627, [2628] = 2628, [2629] = 2629, - [2630] = 2410, - [2631] = 279, - [2632] = 2563, - [2633] = 2633, - [2634] = 2562, - [2635] = 360, - [2636] = 2636, - [2637] = 279, + [2630] = 2383, + [2631] = 2631, + [2632] = 2632, + [2633] = 2378, + [2634] = 2634, + [2635] = 2635, + [2636] = 2564, + [2637] = 2637, [2638] = 2638, - [2639] = 2639, - [2640] = 2640, + [2639] = 1980, + [2640] = 1956, [2641] = 2641, - [2642] = 2563, - [2643] = 273, - [2644] = 2560, - [2645] = 2645, - [2646] = 2562, - [2647] = 2391, - [2648] = 2648, + [2642] = 2642, + [2643] = 1780, + [2644] = 2644, + [2645] = 1736, + [2646] = 2646, + [2647] = 2625, + [2648] = 149, [2649] = 2649, - [2650] = 2560, - [2651] = 2651, - [2652] = 2410, - [2653] = 2653, - [2654] = 2397, - [2655] = 2562, + [2650] = 2384, + [2651] = 1980, + [2652] = 2652, + [2653] = 2386, + [2654] = 1743, + [2655] = 1954, [2656] = 2656, [2657] = 2657, [2658] = 2658, [2659] = 2659, - [2660] = 2660, - [2661] = 2560, + [2660] = 1734, + [2661] = 2661, [2662] = 2662, - [2663] = 603, - [2664] = 530, - [2665] = 2410, - [2666] = 2521, - [2667] = 2520, - [2668] = 2505, - [2669] = 2500, - [2670] = 2487, - [2671] = 2481, - [2672] = 2397, - [2673] = 2504, - [2674] = 2503, - [2675] = 2496, - [2676] = 2464, - [2677] = 597, - [2678] = 2619, - [2679] = 2656, + [2663] = 1739, + [2664] = 1954, + [2665] = 1973, + [2666] = 2666, + [2667] = 2667, + [2668] = 2668, + [2669] = 2669, + [2670] = 2670, + [2671] = 2671, + [2672] = 2672, + [2673] = 2007, + [2674] = 2674, + [2675] = 2675, + [2676] = 2676, + [2677] = 2404, + [2678] = 2678, + [2679] = 2679, [2680] = 2680, - [2681] = 2566, - [2682] = 2391, - [2683] = 2653, - [2684] = 584, - [2685] = 2499, - [2686] = 574, - [2687] = 2641, - [2688] = 2680, - [2689] = 568, - [2690] = 2489, - [2691] = 2491, - [2692] = 2493, - [2693] = 610, - [2694] = 2494, - [2695] = 596, - [2696] = 595, - [2697] = 593, - [2698] = 592, - [2699] = 2537, - [2700] = 2556, - [2701] = 2557, - [2702] = 2550, - [2703] = 2547, - [2704] = 2545, - [2705] = 2543, - [2706] = 2542, - [2707] = 2541, - [2708] = 2540, - [2709] = 590, - [2710] = 2523, - [2711] = 588, - [2712] = 2529, - [2713] = 572, - [2714] = 585, - [2715] = 2564, - [2716] = 565, - [2717] = 2495, - [2718] = 2406, - [2719] = 564, - [2720] = 562, - [2721] = 561, - [2722] = 560, - [2723] = 566, - [2724] = 2680, - [2725] = 557, - [2726] = 556, - [2727] = 555, - [2728] = 2680, - [2729] = 409, - [2730] = 2513, - [2731] = 409, - [2732] = 601, - [2733] = 532, - [2734] = 2406, - [2735] = 2429, - [2736] = 2430, - [2737] = 559, - [2738] = 538, - [2739] = 409, - [2740] = 2431, - [2741] = 527, - [2742] = 409, - [2743] = 526, - [2744] = 2432, - [2745] = 2433, - [2746] = 2434, - [2747] = 579, - [2748] = 433, - [2749] = 543, - [2750] = 516, - [2751] = 522, - [2752] = 558, - [2753] = 523, - [2754] = 524, - [2755] = 513, - [2756] = 475, - [2757] = 609, - [2758] = 464, - [2759] = 461, - [2760] = 455, - [2761] = 396, - [2762] = 448, - [2763] = 445, - [2764] = 541, - [2765] = 398, - [2766] = 399, - [2767] = 407, - [2768] = 2639, - [2769] = 437, - [2770] = 440, - [2771] = 441, - [2772] = 444, - [2773] = 577, - [2774] = 550, - [2775] = 517, - [2776] = 502, - [2777] = 500, - [2778] = 499, - [2779] = 607, - [2780] = 451, - [2781] = 474, - [2782] = 476, - [2783] = 2406, - [2784] = 425, - [2785] = 454, - [2786] = 431, - [2787] = 426, - [2788] = 2788, - [2789] = 2789, - [2790] = 150, - [2791] = 151, - [2792] = 360, - [2793] = 2300, - [2794] = 150, - [2795] = 151, - [2796] = 2796, - [2797] = 2797, - [2798] = 360, - [2799] = 2458, - [2800] = 2800, - [2801] = 2801, - [2802] = 2406, - [2803] = 2458, - [2804] = 502, - [2805] = 437, - [2806] = 532, - [2807] = 568, - [2808] = 2434, - [2809] = 584, - [2810] = 2433, - [2811] = 2432, - [2812] = 579, - [2813] = 524, - [2814] = 2529, - [2815] = 2523, - [2816] = 607, - [2817] = 609, - [2818] = 572, - [2819] = 558, - [2820] = 543, - [2821] = 526, - [2822] = 451, - [2823] = 527, - [2824] = 530, - [2825] = 532, - [2826] = 555, - [2827] = 556, - [2828] = 557, - [2829] = 566, - [2830] = 2796, - [2831] = 2431, - [2832] = 560, - [2833] = 561, - [2834] = 2430, - [2835] = 2639, - [2836] = 2391, - [2837] = 2641, - [2838] = 601, - [2839] = 2429, - [2840] = 603, - [2841] = 2513, - [2842] = 555, - [2843] = 556, - [2844] = 557, - [2845] = 566, - [2846] = 560, - [2847] = 561, - [2848] = 2523, - [2849] = 2656, - [2850] = 2653, - [2851] = 562, - [2852] = 564, - [2853] = 2503, - [2854] = 2504, - [2855] = 433, - [2856] = 565, - [2857] = 585, - [2858] = 574, - [2859] = 474, - [2860] = 476, - [2861] = 562, - [2862] = 603, - [2863] = 588, - [2864] = 601, - [2865] = 2639, - [2866] = 2397, - [2867] = 590, - [2868] = 585, - [2869] = 530, - [2870] = 2529, - [2871] = 538, - [2872] = 579, - [2873] = 550, - [2874] = 2788, - [2875] = 574, - [2876] = 2641, - [2877] = 592, - [2878] = 593, - [2879] = 595, - [2880] = 596, - [2881] = 425, - [2882] = 426, - [2883] = 431, - [2884] = 597, - [2885] = 610, - [2886] = 543, - [2887] = 558, - [2888] = 2789, - [2889] = 2801, - [2890] = 572, - [2891] = 609, - [2892] = 607, - [2893] = 474, - [2894] = 476, - [2895] = 499, - [2896] = 500, - [2897] = 454, - [2898] = 584, - [2899] = 2489, - [2900] = 517, - [2901] = 559, - [2902] = 2503, - [2903] = 2504, - [2904] = 588, - [2905] = 590, - [2906] = 425, - [2907] = 2491, - [2908] = 2493, - [2909] = 2494, - [2910] = 2495, - [2911] = 2521, - [2912] = 2499, - [2913] = 2520, - [2914] = 2505, - [2915] = 2496, - [2916] = 2500, - [2917] = 2458, - [2918] = 2540, - [2919] = 2541, - [2920] = 526, - [2921] = 527, - [2922] = 524, - [2923] = 2542, - [2924] = 592, - [2925] = 2487, - [2926] = 2481, - [2927] = 593, - [2928] = 2496, - [2929] = 2464, - [2930] = 516, - [2931] = 522, - [2932] = 2543, - [2933] = 523, - [2934] = 513, - [2935] = 2495, - [2936] = 550, - [2937] = 2545, - [2938] = 2547, - [2939] = 2499, - [2940] = 2521, - [2941] = 2494, - [2942] = 2550, - [2943] = 2557, - [2944] = 2493, - [2945] = 2491, - [2946] = 2489, - [2947] = 2556, - [2948] = 596, - [2949] = 597, - [2950] = 2520, - [2951] = 2505, - [2952] = 2500, - [2953] = 2487, - [2954] = 2537, - [2955] = 2537, - [2956] = 2556, - [2957] = 2557, - [2958] = 2550, - [2959] = 2481, - [2960] = 2547, - [2961] = 2545, - [2962] = 2543, - [2963] = 2542, - [2964] = 2541, - [2965] = 2540, - [2966] = 475, - [2967] = 464, - [2968] = 461, - [2969] = 455, - [2970] = 426, - [2971] = 396, - [2972] = 448, - [2973] = 445, - [2974] = 433, - [2975] = 516, - [2976] = 522, - [2977] = 431, - [2978] = 2410, - [2979] = 523, - [2980] = 454, - [2981] = 513, - [2982] = 541, - [2983] = 2656, - [2984] = 2653, - [2985] = 595, - [2986] = 577, - [2987] = 2464, - [2988] = 475, - [2989] = 464, - [2990] = 610, - [2991] = 568, - [2992] = 461, - [2993] = 451, - [2994] = 455, - [2995] = 499, - [2996] = 500, - [2997] = 564, - [2998] = 565, - [2999] = 502, - [3000] = 517, - [3001] = 577, - [3002] = 444, - [3003] = 441, - [3004] = 440, - [3005] = 559, - [3006] = 407, - [3007] = 2513, - [3008] = 538, - [3009] = 444, - [3010] = 2429, - [3011] = 2430, - [3012] = 441, - [3013] = 2431, - [3014] = 396, - [3015] = 2432, - [3016] = 2433, - [3017] = 2434, - [3018] = 440, - [3019] = 437, - [3020] = 399, - [3021] = 448, - [3022] = 445, - [3023] = 541, - [3024] = 398, - [3025] = 407, - [3026] = 398, - [3027] = 399, - [3028] = 2656, - [3029] = 2285, - [3030] = 2287, - [3031] = 3031, - [3032] = 2564, - [3033] = 2789, - [3034] = 2796, - [3035] = 2479, - [3036] = 2457, - [3037] = 2290, - [3038] = 2293, - [3039] = 2801, - [3040] = 2286, - [3041] = 3041, - [3042] = 2639, - [3043] = 2656, - [3044] = 2788, - [3045] = 2566, - [3046] = 3046, - [3047] = 2653, - [3048] = 2288, - [3049] = 3049, - [3050] = 2292, - [3051] = 2595, - [3052] = 2564, - [3053] = 2797, - [3054] = 2653, - [3055] = 2641, - [3056] = 2800, - [3057] = 2641, - [3058] = 2639, - [3059] = 2516, - [3060] = 2511, - [3061] = 2653, - [3062] = 3062, - [3063] = 2656, - [3064] = 151, - [3065] = 2566, - [3066] = 150, - [3067] = 2641, - [3068] = 2639, - [3069] = 3069, - [3070] = 2788, - [3071] = 2653, - [3072] = 2641, - [3073] = 2796, - [3074] = 2564, - [3075] = 2566, - [3076] = 3076, - [3077] = 2287, - [3078] = 2458, - [3079] = 2656, - [3080] = 2479, - [3081] = 2285, - [3082] = 3082, - [3083] = 2290, - [3084] = 3084, - [3085] = 2789, - [3086] = 3086, - [3087] = 2639, - [3088] = 2288, - [3089] = 2292, - [3090] = 2457, - [3091] = 2293, - [3092] = 2511, - [3093] = 2286, - [3094] = 2334, - [3095] = 2801, - [3096] = 3096, - [3097] = 3086, - [3098] = 2516, - [3099] = 3099, - [3100] = 2801, - [3101] = 3101, - [3102] = 3102, - [3103] = 3103, - [3104] = 3104, - [3105] = 2796, - [3106] = 3086, - [3107] = 3096, - [3108] = 2653, - [3109] = 3109, - [3110] = 2656, - [3111] = 2788, - [3112] = 2789, - [3113] = 3113, - [3114] = 3114, - [3115] = 3115, - [3116] = 3116, - [3117] = 3117, - [3118] = 3118, - [3119] = 2641, - [3120] = 2334, - [3121] = 3121, - [3122] = 3122, - [3123] = 2797, - [3124] = 3124, - [3125] = 3125, - [3126] = 3126, - [3127] = 3127, - [3128] = 3128, - [3129] = 3129, - [3130] = 3130, - [3131] = 3131, - [3132] = 3132, - [3133] = 2639, - [3134] = 3134, - [3135] = 3135, - [3136] = 3136, - [3137] = 2800, - [3138] = 2595, - [3139] = 3139, - [3140] = 3076, - [3141] = 3141, - [3142] = 3142, - [3143] = 2511, - [3144] = 3102, - [3145] = 3103, - [3146] = 2555, - [3147] = 3135, - [3148] = 2641, - [3149] = 3149, - [3150] = 3117, - [3151] = 3139, - [3152] = 2796, - [3153] = 3116, - [3154] = 3115, + [2681] = 2385, + [2682] = 2682, + [2683] = 2362, + [2684] = 2684, + [2685] = 2685, + [2686] = 1740, + [2687] = 1735, + [2688] = 2557, + [2689] = 2007, + [2690] = 1987, + [2691] = 2691, + [2692] = 150, + [2693] = 2693, + [2694] = 1950, + [2695] = 1676, + [2696] = 1990, + [2697] = 2697, + [2698] = 1973, + [2699] = 1796, + [2700] = 1737, + [2701] = 2323, + [2702] = 1732, + [2703] = 2703, + [2704] = 1782, + [2705] = 1916, + [2706] = 2706, + [2707] = 1733, + [2708] = 2308, + [2709] = 1987, + [2710] = 1741, + [2711] = 2420, + [2712] = 1730, + [2713] = 2713, + [2714] = 2714, + [2715] = 2536, + [2716] = 2716, + [2717] = 2717, + [2718] = 2718, + [2719] = 2719, + [2720] = 1916, + [2721] = 2721, + [2722] = 1956, + [2723] = 2311, + [2724] = 1918, + [2725] = 1676, + [2726] = 2726, + [2727] = 1729, + [2728] = 2728, + [2729] = 2549, + [2730] = 2730, + [2731] = 1886, + [2732] = 2732, + [2733] = 2552, + [2734] = 2554, + [2735] = 1742, + [2736] = 2736, + [2737] = 2555, + [2738] = 2738, + [2739] = 2739, + [2740] = 2740, + [2741] = 2424, + [2742] = 2742, + [2743] = 2559, + [2744] = 1983, + [2745] = 2566, + [2746] = 2746, + [2747] = 2365, + [2748] = 1731, + [2749] = 2749, + [2750] = 1738, + [2751] = 2367, + [2752] = 2752, + [2753] = 2309, + [2754] = 2754, + [2755] = 2755, + [2756] = 2756, + [2757] = 1918, + [2758] = 1886, + [2759] = 2759, + [2760] = 1947, + [2761] = 2761, + [2762] = 2762, + [2763] = 2763, + [2764] = 2764, + [2765] = 1947, + [2766] = 2371, + [2767] = 2409, + [2768] = 1950, + [2769] = 2324, + [2770] = 2770, + [2771] = 2387, + [2772] = 2377, + [2773] = 2300, + [2774] = 2369, + [2775] = 2373, + [2776] = 2368, + [2777] = 2777, + [2778] = 2620, + [2779] = 1990, + [2780] = 1920, + [2781] = 1954, + [2782] = 2782, + [2783] = 1947, + [2784] = 2340, + [2785] = 1950, + [2786] = 1949, + [2787] = 1948, + [2788] = 2347, + [2789] = 1946, + [2790] = 1946, + [2791] = 1961, + [2792] = 1956, + [2793] = 1916, + [2794] = 1926, + [2795] = 1945, + [2796] = 1987, + [2797] = 1973, + [2798] = 2409, + [2799] = 1958, + [2800] = 1949, + [2801] = 2782, + [2802] = 1945, + [2803] = 1943, + [2804] = 1963, + [2805] = 1943, + [2806] = 1939, + [2807] = 1953, + [2808] = 1955, + [2809] = 1939, + [2810] = 1958, + [2811] = 1985, + [2812] = 2424, + [2813] = 1920, + [2814] = 2461, + [2815] = 2003, + [2816] = 1980, + [2817] = 2396, + [2818] = 1931, + [2819] = 1963, + [2820] = 1936, + [2821] = 1935, + [2822] = 1985, + [2823] = 1932, + [2824] = 1936, + [2825] = 1962, + [2826] = 1918, + [2827] = 1988, + [2828] = 2470, + [2829] = 2420, + [2830] = 2453, + [2831] = 1988, + [2832] = 1989, + [2833] = 1990, + [2834] = 1886, + [2835] = 2454, + [2836] = 1989, + [2837] = 1941, + [2838] = 2475, + [2839] = 1926, + [2840] = 2005, + [2841] = 2782, + [2842] = 1981, + [2843] = 1991, + [2844] = 2001, + [2845] = 2396, + [2846] = 1967, + [2847] = 2005, + [2848] = 2385, + [2849] = 1981, + [2850] = 1979, + [2851] = 1948, + [2852] = 1685, + [2853] = 1962, + [2854] = 1991, + [2855] = 1961, + [2856] = 2782, + [2857] = 1964, + [2858] = 2404, + [2859] = 1960, + [2860] = 2007, + [2861] = 1935, + [2862] = 1964, + [2863] = 2001, + [2864] = 1676, + [2865] = 2003, + [2866] = 1941, + [2867] = 1967, + [2868] = 1979, + [2869] = 2435, + [2870] = 2004, + [2871] = 1955, + [2872] = 1953, + [2873] = 2782, + [2874] = 1931, + [2875] = 2782, + [2876] = 1932, + [2877] = 2004, + [2878] = 1960, + [2879] = 1946, + [2880] = 2667, + [2881] = 1916, + [2882] = 2435, + [2883] = 2603, + [2884] = 2656, + [2885] = 2652, + [2886] = 2721, + [2887] = 2627, + [2888] = 2475, + [2889] = 2453, + [2890] = 1676, + [2891] = 2546, + [2892] = 2892, + [2893] = 2362, + [2894] = 2588, + [2895] = 2570, + [2896] = 2546, + [2897] = 2454, + [2898] = 2898, + [2899] = 2546, + [2900] = 2732, + [2901] = 2901, + [2902] = 2678, + [2903] = 2387, + [2904] = 2904, + [2905] = 2646, + [2906] = 2629, + [2907] = 2678, + [2908] = 1917, + [2909] = 2721, + [2910] = 2396, + [2911] = 1886, + [2912] = 2892, + [2913] = 1918, + [2914] = 2530, + [2915] = 1926, + [2916] = 2671, + [2917] = 2670, + [2918] = 2669, + [2919] = 2668, + [2920] = 2646, + [2921] = 2377, + [2922] = 2752, + [2923] = 2470, + [2924] = 1963, + [2925] = 2667, + [2926] = 1958, + [2927] = 2662, + [2928] = 2373, + [2929] = 2661, + [2930] = 2461, + [2931] = 2752, + [2932] = 2629, + [2933] = 2368, + [2934] = 2567, + [2935] = 2371, + [2936] = 2383, + [2937] = 1967, + [2938] = 1936, + [2939] = 1979, + [2940] = 1935, + [2941] = 1985, + [2942] = 1932, + [2943] = 2119, + [2944] = 1685, + [2945] = 1931, + [2946] = 2546, + [2947] = 2004, + [2948] = 2003, + [2949] = 2001, + [2950] = 1991, + [2951] = 2652, + [2952] = 2005, + [2953] = 1981, + [2954] = 1962, + [2955] = 1961, + [2956] = 1960, + [2957] = 2656, + [2958] = 1989, + [2959] = 1988, + [2960] = 2369, + [2961] = 1964, + [2962] = 1941, + [2963] = 2680, + [2964] = 2367, + [2965] = 2657, + [2966] = 2657, + [2967] = 2365, + [2968] = 2662, + [2969] = 2384, + [2970] = 1955, + [2971] = 2396, + [2972] = 1953, + [2973] = 2679, + [2974] = 2527, + [2975] = 2570, + [2976] = 1920, + [2977] = 2671, + [2978] = 2386, + [2979] = 1949, + [2980] = 1948, + [2981] = 2539, + [2982] = 2679, + [2983] = 2680, + [2984] = 2378, + [2985] = 1945, + [2986] = 1943, + [2987] = 1939, + [2988] = 2670, + [2989] = 2669, + [2990] = 2668, + [2991] = 2661, + [2992] = 2732, + [2993] = 2993, + [2994] = 1955, + [2995] = 2668, + [2996] = 2996, + [2997] = 2603, + [2998] = 2656, + [2999] = 2746, + [3000] = 2546, + [3001] = 1978, + [3002] = 2652, + [3003] = 2627, + [3004] = 2546, + [3005] = 1954, + [3006] = 1976, + [3007] = 2007, + [3008] = 2546, + [3009] = 3009, + [3010] = 2588, + [3011] = 1005, + [3012] = 1936, + [3013] = 2996, + [3014] = 2007, + [3015] = 1935, + [3016] = 2759, + [3017] = 1987, + [3018] = 2629, + [3019] = 2580, + [3020] = 1006, + [3021] = 1931, + [3022] = 1954, + [3023] = 1990, + [3024] = 1947, + [3025] = 1956, + [3026] = 3026, + [3027] = 1973, + [3028] = 3028, + [3029] = 1990, + [3030] = 1973, + [3031] = 1967, + [3032] = 2587, + [3033] = 1953, + [3034] = 2675, + [3035] = 2570, + [3036] = 1916, + [3037] = 1780, + [3038] = 2996, + [3039] = 2530, + [3040] = 3026, + [3041] = 1950, + [3042] = 3042, + [3043] = 1886, + [3044] = 2761, + [3045] = 1796, + [3046] = 1946, + [3047] = 2498, + [3048] = 1959, + [3049] = 1945, + [3050] = 1970, + [3051] = 2752, + [3052] = 2628, + [3053] = 1956, + [3054] = 1934, + [3055] = 2657, + [3056] = 1943, + [3057] = 2539, + [3058] = 1939, + [3059] = 2661, + [3060] = 2662, + [3061] = 3009, + [3062] = 2473, + [3063] = 2444, + [3064] = 2667, + [3065] = 1920, + [3066] = 1950, + [3067] = 2549, + [3068] = 2595, + [3069] = 2005, + [3070] = 2552, + [3071] = 2721, + [3072] = 2892, + [3073] = 2554, + [3074] = 1782, + [3075] = 2555, + [3076] = 1987, + [3077] = 2559, + [3078] = 2669, + [3079] = 2996, + [3080] = 2670, + [3081] = 2566, + [3082] = 2671, + [3083] = 1988, + [3084] = 1989, + [3085] = 1991, + [3086] = 2679, + [3087] = 3087, + [3088] = 2680, + [3089] = 1985, + [3090] = 1932, + [3091] = 2732, + [3092] = 2527, + [3093] = 2001, + [3094] = 2431, + [3095] = 3026, + [3096] = 2996, + [3097] = 2003, + [3098] = 2433, + [3099] = 2004, + [3100] = 2567, + [3101] = 1981, + [3102] = 2996, + [3103] = 1963, + [3104] = 1980, + [3105] = 2996, + [3106] = 2675, + [3107] = 2996, + [3108] = 3042, + [3109] = 2746, + [3110] = 1962, + [3111] = 3026, + [3112] = 1934, + [3113] = 2996, + [3114] = 1958, + [3115] = 2466, + [3116] = 1949, + [3117] = 2546, + [3118] = 1948, + [3119] = 2761, + [3120] = 1961, + [3121] = 2557, + [3122] = 1960, + [3123] = 1980, + [3124] = 2635, + [3125] = 2628, + [3126] = 2450, + [3127] = 2449, + [3128] = 2445, + [3129] = 1964, + [3130] = 1685, + [3131] = 1941, + [3132] = 1979, + [3133] = 1918, + [3134] = 2646, + [3135] = 2678, + [3136] = 2608, + [3137] = 1983, + [3138] = 3009, + [3139] = 2455, + [3140] = 1947, + [3141] = 1685, + [3142] = 2759, + [3143] = 2755, + [3144] = 2761, + [3145] = 3145, + [3146] = 2566, + [3147] = 3087, + [3148] = 1729, + [3149] = 1782, + [3150] = 2742, + [3151] = 2740, + [3152] = 3152, + [3153] = 3153, + [3154] = 2559, [3155] = 3155, - [3156] = 2566, - [3157] = 3114, - [3158] = 3128, - [3159] = 3113, - [3160] = 3109, - [3161] = 3161, - [3162] = 2639, - [3163] = 2334, - [3164] = 2466, - [3165] = 3084, - [3166] = 2457, - [3167] = 3130, - [3168] = 3121, - [3169] = 2633, - [3170] = 3104, - [3171] = 3136, - [3172] = 3141, - [3173] = 3122, - [3174] = 3129, - [3175] = 2789, - [3176] = 3176, - [3177] = 3132, - [3178] = 3142, - [3179] = 2564, - [3180] = 2479, - [3181] = 3101, - [3182] = 2788, - [3183] = 3082, - [3184] = 2516, - [3185] = 2797, - [3186] = 3124, - [3187] = 3134, - [3188] = 3126, - [3189] = 2801, - [3190] = 2800, - [3191] = 3191, - [3192] = 2653, - [3193] = 2656, - [3194] = 2553, - [3195] = 3195, - [3196] = 2648, - [3197] = 3197, - [3198] = 3161, - [3199] = 2659, - [3200] = 2457, - [3201] = 3201, - [3202] = 2636, - [3203] = 3203, - [3204] = 2289, - [3205] = 2800, - [3206] = 3206, - [3207] = 2613, - [3208] = 3069, - [3209] = 3209, - [3210] = 3210, - [3211] = 2595, - [3212] = 3212, - [3213] = 3082, - [3214] = 2334, - [3215] = 2567, - [3216] = 2633, - [3217] = 2614, - [3218] = 2516, - [3219] = 2651, - [3220] = 2334, - [3221] = 2599, - [3222] = 2621, - [3223] = 3084, - [3224] = 2574, - [3225] = 3225, - [3226] = 2797, - [3227] = 2479, - [3228] = 2638, - [3229] = 2662, - [3230] = 2640, - [3231] = 2645, - [3232] = 3232, - [3233] = 3041, - [3234] = 2624, - [3235] = 2628, - [3236] = 2559, - [3237] = 2615, - [3238] = 3238, - [3239] = 2629, - [3240] = 2616, - [3241] = 2649, - [3242] = 3062, - [3243] = 2657, - [3244] = 2618, - [3245] = 3031, - [3246] = 2617, - [3247] = 3247, - [3248] = 2598, - [3249] = 2597, - [3250] = 2596, - [3251] = 2580, - [3252] = 2587, - [3253] = 2593, - [3254] = 2592, - [3255] = 2591, - [3256] = 2594, - [3257] = 2561, - [3258] = 2660, - [3259] = 2582, - [3260] = 2581, - [3261] = 2578, - [3262] = 2572, - [3263] = 2606, - [3264] = 2608, - [3265] = 2609, - [3266] = 2569, - [3267] = 2566, - [3268] = 2558, - [3269] = 3269, - [3270] = 2620, - [3271] = 2577, - [3272] = 2511, - [3273] = 3273, - [3274] = 2611, - [3275] = 3275, - [3276] = 2658, - [3277] = 3277, - [3278] = 2595, - [3279] = 2516, - [3280] = 2334, - [3281] = 1497, - [3282] = 2285, - [3283] = 2288, - [3284] = 2287, - [3285] = 3096, - [3286] = 3031, - [3287] = 3076, - [3288] = 3069, - [3289] = 3062, - [3290] = 3131, - [3291] = 2797, - [3292] = 2300, - [3293] = 3041, - [3294] = 3076, - [3295] = 3295, - [3296] = 2479, - [3297] = 3096, - [3298] = 2457, - [3299] = 2290, - [3300] = 2293, - [3301] = 1496, - [3302] = 2292, - [3303] = 2286, - [3304] = 2511, - [3305] = 2800, - [3306] = 2285, - [3307] = 3136, - [3308] = 3132, - [3309] = 2511, - [3310] = 3122, - [3311] = 3128, - [3312] = 3104, - [3313] = 2516, - [3314] = 3314, - [3315] = 3315, - [3316] = 3316, - [3317] = 3109, - [3318] = 3318, - [3319] = 2457, - [3320] = 428, - [3321] = 3315, - [3322] = 3076, - [3323] = 3126, - [3324] = 3124, - [3325] = 3325, - [3326] = 3096, - [3327] = 2286, - [3328] = 2457, - [3329] = 3329, - [3330] = 3330, - [3331] = 3315, - [3332] = 2479, - [3333] = 2293, - [3334] = 2595, - [3335] = 3082, - [3336] = 3109, - [3337] = 2292, - [3338] = 2288, - [3339] = 2285, - [3340] = 2290, - [3341] = 3103, - [3342] = 3102, - [3343] = 3101, - [3344] = 3117, - [3345] = 3116, - [3346] = 3115, - [3347] = 2292, - [3348] = 3348, - [3349] = 3134, - [3350] = 2288, - [3351] = 3132, - [3352] = 3122, - [3353] = 3114, - [3354] = 3104, - [3355] = 2287, - [3356] = 3356, - [3357] = 3357, - [3358] = 3129, - [3359] = 3113, + [3156] = 2706, + [3157] = 2770, + [3158] = 2714, + [3159] = 2713, + [3160] = 1959, + [3161] = 1730, + [3162] = 1741, + [3163] = 2308, + [3164] = 1920, + [3165] = 3145, + [3166] = 1733, + [3167] = 2608, + [3168] = 2323, + [3169] = 1737, + [3170] = 2656, + [3171] = 3087, + [3172] = 1976, + [3173] = 1939, + [3174] = 3174, + [3175] = 2570, + [3176] = 3153, + [3177] = 2555, + [3178] = 2554, + [3179] = 2546, + [3180] = 1739, + [3181] = 2552, + [3182] = 1943, + [3183] = 2726, + [3184] = 2470, + [3185] = 1734, + [3186] = 3155, + [3187] = 2777, + [3188] = 2549, + [3189] = 2433, + [3190] = 2431, + [3191] = 1978, + [3192] = 2644, + [3193] = 2641, + [3194] = 3194, + [3195] = 2587, + [3196] = 1945, + [3197] = 1946, + [3198] = 2637, + [3199] = 2721, + [3200] = 2756, + [3201] = 1796, + [3202] = 2678, + [3203] = 2466, + [3204] = 1948, + [3205] = 2738, + [3206] = 1949, + [3207] = 2634, + [3208] = 1953, + [3209] = 2642, + [3210] = 1955, + [3211] = 3194, + [3212] = 3152, + [3213] = 2564, + [3214] = 2567, + [3215] = 1735, + [3216] = 1740, + [3217] = 2680, + [3218] = 2635, + [3219] = 2679, + [3220] = 3152, + [3221] = 2671, + [3222] = 3153, + [3223] = 3145, + [3224] = 2638, + [3225] = 2718, + [3226] = 3194, + [3227] = 2670, + [3228] = 2625, + [3229] = 3194, + [3230] = 2546, + [3231] = 2668, + [3232] = 2588, + [3233] = 1988, + [3234] = 2530, + [3235] = 1989, + [3236] = 1991, + [3237] = 2628, + [3238] = 2667, + [3239] = 2001, + [3240] = 2662, + [3241] = 2557, + [3242] = 2003, + [3243] = 1941, + [3244] = 2004, + [3245] = 2661, + [3246] = 2454, + [3247] = 3174, + [3248] = 1964, + [3249] = 3174, + [3250] = 1780, + [3251] = 2546, + [3252] = 2754, + [3253] = 2659, + [3254] = 1926, + [3255] = 1960, + [3256] = 2682, + [3257] = 1961, + [3258] = 2435, + [3259] = 2627, + [3260] = 2652, + [3261] = 2685, + [3262] = 1962, + [3263] = 2539, + [3264] = 2716, + [3265] = 2697, + [3266] = 3145, + [3267] = 2684, + [3268] = 1981, + [3269] = 2676, + [3270] = 2595, + [3271] = 2005, + [3272] = 3155, + [3273] = 3153, + [3274] = 1742, + [3275] = 2548, + [3276] = 2691, + [3277] = 2669, + [3278] = 1967, + [3279] = 1979, + [3280] = 2603, + [3281] = 2536, + [3282] = 2649, + [3283] = 2558, + [3284] = 3153, + [3285] = 2620, + [3286] = 3155, + [3287] = 3174, + [3288] = 3174, + [3289] = 149, + [3290] = 2444, + [3291] = 2473, + [3292] = 2739, + [3293] = 1970, + [3294] = 2749, + [3295] = 2759, + [3296] = 2675, + [3297] = 2752, + [3298] = 3155, + [3299] = 1731, + [3300] = 2580, + [3301] = 150, + [3302] = 1736, + [3303] = 2764, + [3304] = 2763, + [3305] = 2475, + [3306] = 2762, + [3307] = 1738, + [3308] = 1732, + [3309] = 1743, + [3310] = 3145, + [3311] = 2728, + [3312] = 3155, + [3313] = 3152, + [3314] = 2455, + [3315] = 1931, + [3316] = 2450, + [3317] = 2449, + [3318] = 2445, + [3319] = 3174, + [3320] = 2498, + [3321] = 2746, + [3322] = 1932, + [3323] = 2646, + [3324] = 1985, + [3325] = 1935, + [3326] = 2629, + [3327] = 1936, + [3328] = 2657, + [3329] = 2672, + [3330] = 2674, + [3331] = 2396, + [3332] = 3194, + [3333] = 3152, + [3334] = 2693, + [3335] = 3153, + [3336] = 2730, + [3337] = 1006, + [3338] = 3145, + [3339] = 2717, + [3340] = 2632, + [3341] = 3145, + [3342] = 2631, + [3343] = 3145, + [3344] = 2732, + [3345] = 2703, + [3346] = 1005, + [3347] = 3194, + [3348] = 2666, + [3349] = 1963, + [3350] = 2719, + [3351] = 1958, + [3352] = 3145, + [3353] = 3353, + [3354] = 1736, + [3355] = 3087, + [3356] = 2714, + [3357] = 2713, + [3358] = 2625, + [3359] = 2732, [3360] = 3360, - [3361] = 3361, - [3362] = 405, + [3361] = 3360, + [3362] = 2742, [3363] = 3363, - [3364] = 3135, - [3365] = 3128, - [3366] = 3130, - [3367] = 3134, - [3368] = 3139, - [3369] = 2479, - [3370] = 2479, - [3371] = 3101, - [3372] = 3118, - [3373] = 3373, - [3374] = 3374, - [3375] = 3315, - [3376] = 3121, - [3377] = 3377, - [3378] = 3141, - [3379] = 2595, - [3380] = 3380, - [3381] = 3135, - [3382] = 3117, - [3383] = 2300, - [3384] = 3384, - [3385] = 3385, - [3386] = 3129, - [3387] = 3102, - [3388] = 3139, - [3389] = 3084, - [3390] = 3390, - [3391] = 3126, - [3392] = 3124, - [3393] = 3103, - [3394] = 3116, - [3395] = 3315, - [3396] = 3115, - [3397] = 3142, - [3398] = 3398, - [3399] = 3399, - [3400] = 3400, - [3401] = 2595, - [3402] = 2511, - [3403] = 1497, - [3404] = 2290, - [3405] = 2516, - [3406] = 3114, - [3407] = 2287, - [3408] = 3408, - [3409] = 3409, - [3410] = 3410, - [3411] = 3121, - [3412] = 2293, - [3413] = 3141, - [3414] = 2516, - [3415] = 2286, - [3416] = 3416, - [3417] = 2457, - [3418] = 2511, - [3419] = 3131, - [3420] = 3420, - [3421] = 2334, - [3422] = 3136, - [3423] = 1496, - [3424] = 3424, - [3425] = 3130, - [3426] = 3113, - [3427] = 3427, - [3428] = 3428, - [3429] = 3142, - [3430] = 3430, - [3431] = 3132, - [3432] = 2353, - [3433] = 2354, - [3434] = 2355, - [3435] = 3377, - [3436] = 151, - [3437] = 2598, - [3438] = 2593, - [3439] = 3439, - [3440] = 3440, - [3441] = 2595, - [3442] = 2645, - [3443] = 3410, - [3444] = 3398, - [3445] = 3408, - [3446] = 3446, - [3447] = 2657, - [3448] = 3448, - [3449] = 3449, - [3450] = 3450, - [3451] = 3451, - [3452] = 3452, - [3453] = 3453, - [3454] = 3454, - [3455] = 2343, - [3456] = 2397, - [3457] = 2356, - [3458] = 3458, - [3459] = 3459, + [3364] = 1741, + [3365] = 1739, + [3366] = 1734, + [3367] = 2752, + [3368] = 2644, + [3369] = 2641, + [3370] = 2637, + [3371] = 2620, + [3372] = 2691, + [3373] = 2777, + [3374] = 2659, + [3375] = 2558, + [3376] = 2756, + [3377] = 3087, + [3378] = 2629, + [3379] = 2738, + [3380] = 2628, + [3381] = 2548, + [3382] = 2746, + [3383] = 2716, + [3384] = 2649, + [3385] = 1742, + [3386] = 2557, + [3387] = 3360, + [3388] = 1735, + [3389] = 1740, + [3390] = 2588, + [3391] = 2634, + [3392] = 2678, + [3393] = 2739, + [3394] = 2749, + [3395] = 2764, + [3396] = 2119, + [3397] = 3397, + [3398] = 2323, + [3399] = 1006, + [3400] = 1685, + [3401] = 1730, + [3402] = 1733, + [3403] = 2638, + [3404] = 2527, + [3405] = 2657, + [3406] = 2539, + [3407] = 1738, + [3408] = 2674, + [3409] = 2728, + [3410] = 2697, + [3411] = 2631, + [3412] = 2661, + [3413] = 2703, + [3414] = 2536, + [3415] = 2759, + [3416] = 2632, + [3417] = 2666, + [3418] = 2672, + [3419] = 2717, + [3420] = 2719, + [3421] = 2762, + [3422] = 2763, + [3423] = 1005, + [3424] = 2662, + [3425] = 1917, + [3426] = 2667, + [3427] = 2668, + [3428] = 2730, + [3429] = 2669, + [3430] = 2754, + [3431] = 2670, + [3432] = 2685, + [3433] = 2682, + [3434] = 2113, + [3435] = 2671, + [3436] = 2679, + [3437] = 2646, + [3438] = 149, + [3439] = 2676, + [3440] = 2693, + [3441] = 2680, + [3442] = 3360, + [3443] = 150, + [3444] = 2901, + [3445] = 2684, + [3446] = 2718, + [3447] = 2642, + [3448] = 2627, + [3449] = 2755, + [3450] = 2652, + [3451] = 3360, + [3452] = 1743, + [3453] = 3360, + [3454] = 1732, + [3455] = 1731, + [3456] = 2567, + [3457] = 2566, + [3458] = 2726, + [3459] = 2120, [3460] = 3460, - [3461] = 3461, - [3462] = 2561, - [3463] = 2581, - [3464] = 3416, - [3465] = 3465, - [3466] = 3420, - [3467] = 2582, - [3468] = 3468, - [3469] = 3469, - [3470] = 3470, - [3471] = 3471, - [3472] = 3472, - [3473] = 3473, - [3474] = 3474, - [3475] = 3475, - [3476] = 3476, - [3477] = 3155, - [3478] = 2466, - [3479] = 2342, - [3480] = 2351, - [3481] = 3481, - [3482] = 2391, + [3461] = 2559, + [3462] = 2555, + [3463] = 2554, + [3464] = 2740, + [3465] = 3360, + [3466] = 2552, + [3467] = 2564, + [3468] = 2549, + [3469] = 1729, + [3470] = 2635, + [3471] = 2308, + [3472] = 2721, + [3473] = 2706, + [3474] = 2770, + [3475] = 3360, + [3476] = 2656, + [3477] = 2603, + [3478] = 3478, + [3479] = 1926, + [3480] = 3360, + [3481] = 3397, + [3482] = 1737, [3483] = 3483, - [3484] = 3069, - [3485] = 3409, + [3484] = 1671, + [3485] = 1959, [3486] = 3486, - [3487] = 3374, - [3488] = 3488, - [3489] = 2645, - [3490] = 3490, - [3491] = 3049, - [3492] = 2348, - [3493] = 3493, - [3494] = 3118, - [3495] = 3495, - [3496] = 2657, - [3497] = 3497, - [3498] = 150, - [3499] = 3499, - [3500] = 2289, - [3501] = 3501, - [3502] = 3502, - [3503] = 3503, - [3504] = 3504, - [3505] = 3505, - [3506] = 3109, - [3507] = 3103, - [3508] = 3102, - [3509] = 3101, - [3510] = 3134, - [3511] = 3511, - [3512] = 3122, - [3513] = 3104, - [3514] = 2606, - [3515] = 3135, - [3516] = 3128, - [3517] = 3517, - [3518] = 3130, - [3519] = 2598, - [3520] = 3136, + [3487] = 1978, + [3488] = 2355, + [3489] = 3363, + [3490] = 2587, + [3491] = 1970, + [3492] = 1976, + [3493] = 2113, + [3494] = 3042, + [3495] = 2352, + [3496] = 3087, + [3497] = 3397, + [3498] = 2761, + [3499] = 3397, + [3500] = 1917, + [3501] = 3397, + [3502] = 3460, + [3503] = 3397, + [3504] = 2675, + [3505] = 1677, + [3506] = 3397, + [3507] = 1672, + [3508] = 1675, + [3509] = 1673, + [3510] = 1674, + [3511] = 3397, + [3512] = 1679, + [3513] = 1726, + [3514] = 3397, + [3515] = 3397, + [3516] = 2120, + [3517] = 2659, + [3518] = 1959, + [3519] = 3397, + [3520] = 1733, [3521] = 3521, - [3522] = 3176, - [3523] = 3523, - [3524] = 3524, - [3525] = 3525, - [3526] = 3526, - [3527] = 3139, - [3528] = 3427, - [3529] = 2561, - [3530] = 2581, - [3531] = 3531, - [3532] = 2555, - [3533] = 3117, - [3534] = 3131, - [3535] = 3116, - [3536] = 3115, - [3537] = 3114, - [3538] = 3538, - [3539] = 2658, - [3540] = 3191, - [3541] = 3541, - [3542] = 2593, - [3543] = 2582, - [3544] = 3544, - [3545] = 2349, - [3546] = 2555, - [3547] = 2466, - [3548] = 3548, - [3549] = 3549, - [3550] = 2346, - [3551] = 3551, - [3552] = 3113, - [3553] = 3553, - [3554] = 3554, - [3555] = 3555, - [3556] = 3556, - [3557] = 2410, - [3558] = 3046, - [3559] = 2345, - [3560] = 3142, - [3561] = 3129, - [3562] = 3314, - [3563] = 3141, - [3564] = 3121, - [3565] = 3031, - [3566] = 2352, - [3567] = 2553, - [3568] = 3568, - [3569] = 3569, - [3570] = 3570, - [3571] = 3571, - [3572] = 2658, - [3573] = 2289, - [3574] = 3574, - [3575] = 3575, - [3576] = 3149, - [3577] = 3577, - [3578] = 2357, - [3579] = 2358, - [3580] = 2606, - [3581] = 3581, - [3582] = 3582, - [3583] = 3583, - [3584] = 3584, - [3585] = 3585, - [3586] = 3360, - [3587] = 3041, - [3588] = 3062, - [3589] = 3589, - [3590] = 3124, - [3591] = 2350, - [3592] = 3126, - [3593] = 2553, - [3594] = 2617, - [3595] = 2649, - [3596] = 2466, - [3597] = 2581, - [3598] = 2561, - [3599] = 2657, - [3600] = 2645, - [3601] = 3601, - [3602] = 3247, - [3603] = 2633, - [3604] = 2598, - [3605] = 2593, - [3606] = 2582, - [3607] = 2606, - [3608] = 2658, - [3609] = 2574, - [3610] = 3601, - [3611] = 3096, - [3612] = 2574, - [3613] = 2567, - [3614] = 2567, - [3615] = 2555, - [3616] = 3161, - [3617] = 3601, - [3618] = 2599, - [3619] = 2616, - [3620] = 2617, - [3621] = 2636, - [3622] = 3601, - [3623] = 2649, - [3624] = 3161, - [3625] = 2648, - [3626] = 2640, - [3627] = 2638, - [3628] = 3076, - [3629] = 2597, - [3630] = 2596, - [3631] = 2592, - [3632] = 2591, - [3633] = 2599, - [3634] = 2289, - [3635] = 2616, - [3636] = 2578, - [3637] = 2572, - [3638] = 2569, - [3639] = 2611, - [3640] = 2553, - [3641] = 2608, - [3642] = 2609, - [3643] = 2558, - [3644] = 2613, - [3645] = 2615, - [3646] = 2618, - [3647] = 2620, - [3648] = 2660, - [3649] = 2629, - [3650] = 2628, - [3651] = 2624, - [3652] = 2621, - [3653] = 2614, - [3654] = 2577, - [3655] = 2662, - [3656] = 2651, - [3657] = 2659, - [3658] = 2559, - [3659] = 2594, - [3660] = 2587, - [3661] = 2580, - [3662] = 2636, - [3663] = 2651, - [3664] = 3209, - [3665] = 2300, - [3666] = 3197, - [3667] = 3601, - [3668] = 2580, - [3669] = 2587, - [3670] = 2594, - [3671] = 2559, - [3672] = 2659, - [3673] = 2662, - [3674] = 2577, - [3675] = 2614, - [3676] = 2621, - [3677] = 2624, - [3678] = 2628, - [3679] = 2629, - [3680] = 2660, - [3681] = 3176, - [3682] = 2633, - [3683] = 3601, - [3684] = 3275, - [3685] = 3131, - [3686] = 2620, - [3687] = 2618, - [3688] = 2615, - [3689] = 2613, - [3690] = 2558, - [3691] = 2609, - [3692] = 2608, - [3693] = 3203, - [3694] = 2611, - [3695] = 3191, - [3696] = 2569, - [3697] = 2572, - [3698] = 2578, - [3699] = 2591, - [3700] = 2592, - [3701] = 3238, - [3702] = 2596, - [3703] = 2597, - [3704] = 3155, - [3705] = 3149, - [3706] = 2640, - [3707] = 2648, - [3708] = 2638, - [3709] = 3511, - [3710] = 3538, - [3711] = 3568, - [3712] = 3126, - [3713] = 3139, - [3714] = 3400, - [3715] = 2574, - [3716] = 3136, - [3717] = 3130, - [3718] = 2567, - [3719] = 3128, - [3720] = 3209, - [3721] = 3135, - [3722] = 2599, - [3723] = 3452, - [3724] = 2616, - [3725] = 2617, - [3726] = 3577, - [3727] = 2636, - [3728] = 3581, - [3729] = 3729, - [3730] = 3424, - [3731] = 2289, - [3732] = 2300, - [3733] = 3161, - [3734] = 3124, - [3735] = 3538, - [3736] = 3329, - [3737] = 3380, - [3738] = 2649, - [3739] = 2648, - [3740] = 2640, - [3741] = 2638, - [3742] = 3495, - [3743] = 2789, - [3744] = 2801, - [3745] = 3424, - [3746] = 3499, - [3747] = 3390, - [3748] = 3577, - [3749] = 3749, - [3750] = 3465, - [3751] = 2597, - [3752] = 3399, - [3753] = 2596, - [3754] = 3468, - [3755] = 2592, - [3756] = 2591, - [3757] = 3568, - [3758] = 2578, + [3522] = 2777, + [3523] = 2716, + [3524] = 2347, + [3525] = 3521, + [3526] = 3521, + [3527] = 3521, + [3528] = 1731, + [3529] = 1742, + [3530] = 1732, + [3531] = 1978, + [3532] = 1739, + [3533] = 1734, + [3534] = 1743, + [3535] = 1735, + [3536] = 1740, + [3537] = 3397, + [3538] = 2113, + [3539] = 3521, + [3540] = 2756, + [3541] = 2676, + [3542] = 3397, + [3543] = 3521, + [3544] = 1976, + [3545] = 1970, + [3546] = 2536, + [3547] = 2739, + [3548] = 2120, + [3549] = 2740, + [3550] = 3397, + [3551] = 2726, + [3552] = 2749, + [3553] = 2764, + [3554] = 2644, + [3555] = 2641, + [3556] = 2763, + [3557] = 2755, + [3558] = 2762, + [3559] = 2637, + [3560] = 3521, + [3561] = 3521, + [3562] = 2770, + [3563] = 2730, + [3564] = 149, + [3565] = 1737, + [3566] = 150, + [3567] = 2742, + [3568] = 2625, + [3569] = 3397, + [3570] = 3397, + [3571] = 2682, + [3572] = 2685, + [3573] = 2706, + [3574] = 2323, + [3575] = 2564, + [3576] = 1978, + [3577] = 1741, + [3578] = 1959, + [3579] = 2620, + [3580] = 1730, + [3581] = 2672, + [3582] = 1729, + [3583] = 2308, + [3584] = 1959, + [3585] = 2738, + [3586] = 1976, + [3587] = 1970, + [3588] = 2340, + [3589] = 2684, + [3590] = 3521, + [3591] = 2713, + [3592] = 1736, + [3593] = 1738, + [3594] = 2714, + [3595] = 2719, + [3596] = 2717, + [3597] = 1978, + [3598] = 2632, + [3599] = 2631, + [3600] = 2728, + [3601] = 2674, + [3602] = 2666, + [3603] = 1978, + [3604] = 1959, + [3605] = 3397, + [3606] = 3606, + [3607] = 2355, + [3608] = 2352, + [3609] = 1970, + [3610] = 1976, + [3611] = 3397, + [3612] = 2347, + [3613] = 2340, + [3614] = 2113, + [3615] = 2377, + [3616] = 2384, + [3617] = 2377, + [3618] = 2373, + [3619] = 2378, + [3620] = 2378, + [3621] = 2383, + [3622] = 2383, + [3623] = 2387, + [3624] = 2367, + [3625] = 2368, + [3626] = 2365, + [3627] = 2369, + [3628] = 3628, + [3629] = 2311, + [3630] = 2371, + [3631] = 2362, + [3632] = 2371, + [3633] = 2362, + [3634] = 2385, + [3635] = 2386, + [3636] = 2365, + [3637] = 2373, + [3638] = 2369, + [3639] = 2367, + [3640] = 2386, + [3641] = 2309, + [3642] = 2120, + [3643] = 2387, + [3644] = 3606, + [3645] = 2300, + [3646] = 2324, + [3647] = 2368, + [3648] = 2384, + [3649] = 1741, + [3650] = 3650, + [3651] = 3651, + [3652] = 149, + [3653] = 3653, + [3654] = 3654, + [3655] = 2904, + [3656] = 3656, + [3657] = 1737, + [3658] = 3658, + [3659] = 3653, + [3660] = 1736, + [3661] = 3397, + [3662] = 2352, + [3663] = 3651, + [3664] = 3664, + [3665] = 1730, + [3666] = 1738, + [3667] = 3667, + [3668] = 3651, + [3669] = 3654, + [3670] = 3653, + [3671] = 3654, + [3672] = 3658, + [3673] = 3664, + [3674] = 1734, + [3675] = 3664, + [3676] = 3651, + [3677] = 3658, + [3678] = 1739, + [3679] = 1742, + [3680] = 3680, + [3681] = 3664, + [3682] = 3653, + [3683] = 3667, + [3684] = 3664, + [3685] = 150, + [3686] = 3654, + [3687] = 3654, + [3688] = 3656, + [3689] = 3478, + [3690] = 2355, + [3691] = 1965, + [3692] = 3656, + [3693] = 3664, + [3694] = 1733, + [3695] = 3653, + [3696] = 3664, + [3697] = 3680, + [3698] = 3397, + [3699] = 3658, + [3700] = 3667, + [3701] = 3664, + [3702] = 3702, + [3703] = 3658, + [3704] = 3664, + [3705] = 3397, + [3706] = 3680, + [3707] = 3651, + [3708] = 3651, + [3709] = 3680, + [3710] = 3651, + [3711] = 3656, + [3712] = 2113, + [3713] = 3656, + [3714] = 3664, + [3715] = 3664, + [3716] = 3397, + [3717] = 1676, + [3718] = 3658, + [3719] = 3653, + [3720] = 3656, + [3721] = 3667, + [3722] = 3656, + [3723] = 3723, + [3724] = 3724, + [3725] = 3658, + [3726] = 3656, + [3727] = 3654, + [3728] = 3728, + [3729] = 2396, + [3730] = 3653, + [3731] = 2120, + [3732] = 3653, + [3733] = 3733, + [3734] = 3651, + [3735] = 3653, + [3736] = 1729, + [3737] = 3653, + [3738] = 1731, + [3739] = 1732, + [3740] = 3651, + [3741] = 1740, + [3742] = 1743, + [3743] = 3680, + [3744] = 3658, + [3745] = 3680, + [3746] = 3658, + [3747] = 3664, + [3748] = 3656, + [3749] = 3658, + [3750] = 3667, + [3751] = 3667, + [3752] = 1735, + [3753] = 3658, + [3754] = 3656, + [3755] = 3656, + [3756] = 3651, + [3757] = 3651, + [3758] = 3653, [3759] = 3759, - [3760] = 2572, - [3761] = 2796, - [3762] = 3390, - [3763] = 3104, - [3764] = 2569, - [3765] = 3295, - [3766] = 3469, - [3767] = 3470, - [3768] = 2611, - [3769] = 3749, - [3770] = 3122, - [3771] = 3132, - [3772] = 3471, - [3773] = 2608, - [3774] = 3472, - [3775] = 3373, - [3776] = 3134, - [3777] = 2609, - [3778] = 3473, - [3779] = 3474, - [3780] = 2458, - [3781] = 2558, - [3782] = 2613, - [3783] = 2615, - [3784] = 2553, - [3785] = 2555, - [3786] = 2618, - [3787] = 3475, - [3788] = 2620, - [3789] = 3118, - [3790] = 3476, - [3791] = 3791, - [3792] = 3390, - [3793] = 3385, - [3794] = 3121, - [3795] = 2633, - [3796] = 2660, - [3797] = 3474, - [3798] = 3116, - [3799] = 2629, - [3800] = 3115, - [3801] = 2628, - [3802] = 2624, - [3803] = 3473, - [3804] = 2621, - [3805] = 2614, - [3806] = 3581, - [3807] = 3247, - [3808] = 3114, - [3809] = 3472, - [3810] = 2577, - [3811] = 2662, - [3812] = 2659, - [3813] = 2559, - [3814] = 3113, - [3815] = 2594, - [3816] = 3238, - [3817] = 3471, - [3818] = 2587, - [3819] = 2580, - [3820] = 2651, - [3821] = 3470, - [3822] = 3822, - [3823] = 3101, - [3824] = 3102, - [3825] = 3469, - [3826] = 3103, - [3827] = 3468, - [3828] = 3142, - [3829] = 3203, - [3830] = 3452, - [3831] = 3141, - [3832] = 3117, - [3833] = 3476, - [3834] = 3161, - [3835] = 3475, - [3836] = 3129, - [3837] = 3109, - [3838] = 3197, - [3839] = 3511, - [3840] = 3465, - [3841] = 3495, - [3842] = 3499, - [3843] = 2788, - [3844] = 3275, - [3845] = 3390, - [3846] = 2466, - [3847] = 2559, - [3848] = 3848, - [3849] = 2617, - [3850] = 3390, - [3851] = 3325, - [3852] = 3385, - [3853] = 2577, - [3854] = 2662, - [3855] = 2659, - [3856] = 3195, - [3857] = 2597, - [3858] = 3210, - [3859] = 3206, - [3860] = 3476, - [3861] = 3571, - [3862] = 3201, - [3863] = 3475, - [3864] = 3474, - [3865] = 3473, - [3866] = 3472, - [3867] = 3471, - [3868] = 3470, - [3869] = 3469, - [3870] = 2609, - [3871] = 2599, - [3872] = 3273, - [3873] = 3468, - [3874] = 3399, - [3875] = 3465, - [3876] = 2606, - [3877] = 2608, - [3878] = 2658, - [3879] = 2397, - [3880] = 2645, - [3881] = 3486, - [3882] = 2558, - [3883] = 3452, - [3884] = 3884, - [3885] = 2653, - [3886] = 3390, - [3887] = 3551, - [3888] = 3390, - [3889] = 3889, - [3890] = 3884, - [3891] = 2636, - [3892] = 3538, - [3893] = 2410, - [3894] = 3889, - [3895] = 2598, - [3896] = 3551, - [3897] = 3577, - [3898] = 2572, - [3899] = 3570, - [3900] = 3581, - [3901] = 2593, - [3902] = 2582, - [3903] = 3212, - [3904] = 3295, - [3905] = 3568, - [3906] = 2300, - [3907] = 2606, - [3908] = 2657, - [3909] = 3749, - [3910] = 2638, - [3911] = 3511, - [3912] = 3889, - [3913] = 3884, - [3914] = 2613, - [3915] = 2640, - [3916] = 2615, - [3917] = 3571, - [3918] = 3377, - [3919] = 3398, - [3920] = 3408, - [3921] = 3410, - [3922] = 3416, - [3923] = 2561, - [3924] = 2581, - [3925] = 3570, - [3926] = 2616, - [3927] = 3927, - [3928] = 3420, - [3929] = 2564, - [3930] = 2618, - [3931] = 3409, - [3932] = 2564, - [3933] = 2591, - [3934] = 3927, - [3935] = 2595, - [3936] = 3380, - [3937] = 3884, - [3938] = 2611, - [3939] = 3269, - [3940] = 3390, - [3941] = 3277, - [3942] = 2620, - [3943] = 2639, - [3944] = 2569, - [3945] = 2555, - [3946] = 2658, - [3947] = 1497, - [3948] = 3495, - [3949] = 3318, - [3950] = 3460, - [3951] = 3951, - [3952] = 2592, - [3953] = 2656, - [3954] = 2645, - [3955] = 3499, - [3956] = 3373, - [3957] = 3357, - [3958] = 2567, - [3959] = 3424, - [3960] = 2466, - [3961] = 2391, - [3962] = 2648, - [3963] = 2593, - [3964] = 3884, - [3965] = 2649, - [3966] = 3486, - [3967] = 1496, - [3968] = 2657, - [3969] = 2596, + [3760] = 3759, + [3761] = 3759, + [3762] = 3762, + [3763] = 3759, + [3764] = 3759, + [3765] = 2355, + [3766] = 2362, + [3767] = 3759, + [3768] = 2352, + [3769] = 3759, + [3770] = 3759, + [3771] = 2352, + [3772] = 2355, + [3773] = 2309, + [3774] = 3759, + [3775] = 2300, + [3776] = 3759, + [3777] = 2119, + [3778] = 2311, + [3779] = 2324, + [3780] = 3759, + [3781] = 3759, + [3782] = 3759, + [3783] = 3759, + [3784] = 1685, + [3785] = 2324, + [3786] = 2527, + [3787] = 3787, + [3788] = 3788, + [3789] = 3789, + [3790] = 3787, + [3791] = 1685, + [3792] = 2311, + [3793] = 3788, + [3794] = 3794, + [3795] = 3787, + [3796] = 3787, + [3797] = 3788, + [3798] = 3787, + [3799] = 2300, + [3800] = 3789, + [3801] = 3788, + [3802] = 3789, + [3803] = 2658, + [3804] = 2736, + [3805] = 3788, + [3806] = 3788, + [3807] = 3789, + [3808] = 3789, + [3809] = 2309, + [3810] = 3787, + [3811] = 3794, + [3812] = 3789, + [3813] = 2475, + [3814] = 2587, + [3815] = 2637, + [3816] = 1676, + [3817] = 3817, + [3818] = 2385, + [3819] = 2603, + [3820] = 3145, + [3821] = 3145, + [3822] = 2755, + [3823] = 2385, + [3824] = 2362, + [3825] = 3650, + [3826] = 2777, + [3827] = 2567, + [3828] = 2627, + [3829] = 1676, + [3830] = 3650, + [3831] = 2454, + [3832] = 2435, + [3833] = 2470, + [3834] = 2588, + [3835] = 2539, + [3836] = 2749, + [3837] = 3837, + [3838] = 2717, + [3839] = 2730, + [3840] = 2714, + [3841] = 2770, + [3842] = 3837, + [3843] = 2676, + [3844] = 2763, + [3845] = 2764, + [3846] = 2713, + [3847] = 2632, + [3848] = 293, + [3849] = 2742, + [3850] = 3837, + [3851] = 3851, + [3852] = 2352, + [3853] = 2631, + [3854] = 2355, + [3855] = 2644, + [3856] = 2323, + [3857] = 2675, + [3858] = 2728, + [3859] = 3837, + [3860] = 2716, + [3861] = 3861, + [3862] = 2659, + [3863] = 2362, + [3864] = 2666, + [3865] = 2740, + [3866] = 2738, + [3867] = 2761, + [3868] = 2719, + [3869] = 3861, + [3870] = 2672, + [3871] = 1670, + [3872] = 2706, + [3873] = 2756, + [3874] = 2682, + [3875] = 3851, + [3876] = 2684, + [3877] = 3877, + [3878] = 2739, + [3879] = 2685, + [3880] = 2674, + [3881] = 287, + [3882] = 2726, + [3883] = 332, + [3884] = 274, + [3885] = 398, + [3886] = 2641, + [3887] = 3851, + [3888] = 2308, + [3889] = 2762, + [3890] = 3877, + [3891] = 3861, + [3892] = 3892, + [3893] = 403, + [3894] = 3894, + [3895] = 2678, + [3896] = 2646, + [3897] = 2993, + [3898] = 2656, + [3899] = 2120, + [3900] = 2679, + [3901] = 2898, + [3902] = 2671, + [3903] = 2732, + [3904] = 2435, + [3905] = 2668, + [3906] = 2901, + [3907] = 2670, + [3908] = 2721, + [3909] = 2752, + [3910] = 1676, + [3911] = 2454, + [3912] = 2113, + [3913] = 3724, + [3914] = 3733, + [3915] = 3915, + [3916] = 2470, + [3917] = 2669, + [3918] = 2629, + [3919] = 2680, + [3920] = 1685, + [3921] = 2657, + [3922] = 2661, + [3923] = 3650, + [3924] = 2475, + [3925] = 2652, + [3926] = 2662, + [3927] = 2667, + [3928] = 2656, + [3929] = 3929, + [3930] = 1740, + [3931] = 1735, + [3932] = 3932, + [3933] = 3933, + [3934] = 2721, + [3935] = 3935, + [3936] = 3936, + [3937] = 3935, + [3938] = 3938, + [3939] = 3939, + [3940] = 3929, + [3941] = 3941, + [3942] = 3942, + [3943] = 3935, + [3944] = 3935, + [3945] = 3945, + [3946] = 150, + [3947] = 3939, + [3948] = 2678, + [3949] = 3861, + [3950] = 149, + [3951] = 3935, + [3952] = 3942, + [3953] = 1736, + [3954] = 1738, + [3955] = 2470, + [3956] = 2454, + [3957] = 2646, + [3958] = 3932, + [3959] = 3959, + [3960] = 3935, + [3961] = 3935, + [3962] = 3942, + [3963] = 3939, + [3964] = 3935, + [3965] = 3965, + [3966] = 3929, + [3967] = 3967, + [3968] = 3935, + [3969] = 3935, [3970] = 3970, - [3971] = 2614, - [3972] = 3225, - [3973] = 2594, - [3974] = 3329, - [3975] = 3232, - [3976] = 2578, - [3977] = 2621, - [3978] = 3460, - [3979] = 2581, - [3980] = 2624, - [3981] = 3884, - [3982] = 2628, - [3983] = 3884, - [3984] = 2629, - [3985] = 2553, - [3986] = 3884, - [3987] = 3848, - [3988] = 2651, - [3989] = 2574, - [3990] = 2587, - [3991] = 2300, - [3992] = 3384, - [3993] = 3927, - [3994] = 3481, - [3995] = 2582, - [3996] = 2641, - [3997] = 2660, - [3998] = 2598, - [3999] = 3400, - [4000] = 3884, - [4001] = 2580, - [4002] = 3927, - [4003] = 2561, - [4004] = 3501, - [4005] = 4005, - [4006] = 2608, - [4007] = 2356, - [4008] = 3420, - [4009] = 2343, - [4010] = 3454, - [4011] = 3459, - [4012] = 2609, - [4013] = 3502, - [4014] = 2558, - [4015] = 2574, - [4016] = 2567, - [4017] = 3503, - [4018] = 2617, - [4019] = 2613, - [4020] = 2615, - [4021] = 3483, - [4022] = 4022, - [4023] = 4023, - [4024] = 4022, - [4025] = 4025, - [4026] = 150, - [4027] = 2618, - [4028] = 3161, - [4029] = 4029, - [4030] = 3273, - [4031] = 3951, - [4032] = 4025, - [4033] = 3951, - [4034] = 2620, - [4035] = 3461, - [4036] = 3427, - [4037] = 3430, - [4038] = 4038, - [4039] = 4005, - [4040] = 3544, - [4041] = 4038, - [4042] = 4029, - [4043] = 4038, - [4044] = 4005, - [4045] = 3275, - [4046] = 4023, - [4047] = 4005, - [4048] = 4005, - [4049] = 4023, - [4050] = 4005, - [4051] = 3361, - [4052] = 3195, - [4053] = 4025, - [4054] = 4005, - [4055] = 3210, - [4056] = 3206, - [4057] = 3201, - [4058] = 3446, - [4059] = 3521, - [4060] = 2355, - [4061] = 3523, - [4062] = 2354, - [4063] = 2353, - [4064] = 2599, - [4065] = 3524, - [4066] = 2639, - [4067] = 3374, - [4068] = 3553, - [4069] = 3458, - [4070] = 3556, - [4071] = 3269, - [4072] = 3541, - [4073] = 3570, - [4074] = 3277, - [4075] = 2660, - [4076] = 2352, - [4077] = 3348, - [4078] = 2611, - [4079] = 3203, - [4080] = 2349, - [4081] = 3488, - [4082] = 3325, - [4083] = 2616, - [4084] = 3548, - [4085] = 3384, - [4086] = 2629, - [4087] = 3575, - [4088] = 2628, - [4089] = 2624, - [4090] = 3460, - [4091] = 3568, - [4092] = 3490, - [4093] = 3049, - [4094] = 2348, - [4095] = 151, - [4096] = 3581, - [4097] = 3424, - [4098] = 3453, - [4099] = 3416, - [4100] = 3410, - [4101] = 2397, - [4102] = 3408, - [4103] = 3577, - [4104] = 2621, - [4105] = 2614, - [4106] = 3357, - [4107] = 3440, - [4108] = 3439, - [4109] = 3538, - [4110] = 2636, - [4111] = 3409, - [4112] = 3197, - [4113] = 3554, - [4114] = 4023, - [4115] = 3584, - [4116] = 3398, - [4117] = 3385, - [4118] = 3450, - [4119] = 2633, - [4120] = 3585, - [4121] = 3589, - [4122] = 4022, - [4123] = 3476, - [4124] = 4022, - [4125] = 3377, - [4126] = 4029, - [4127] = 2569, - [4128] = 3504, - [4129] = 3475, - [4130] = 3574, - [4131] = 3531, - [4132] = 2572, - [4133] = 3555, - [4134] = 3569, - [4135] = 3583, - [4136] = 2342, - [4137] = 3449, - [4138] = 3582, - [4139] = 2351, - [4140] = 2578, - [4141] = 3225, - [4142] = 2591, - [4143] = 2592, - [4144] = 3238, - [4145] = 3232, - [4146] = 4029, - [4147] = 4005, - [4148] = 2596, - [4149] = 2597, - [4150] = 3314, - [4151] = 3474, - [4152] = 2577, - [4153] = 3473, - [4154] = 3448, - [4155] = 2358, - [4156] = 3493, - [4157] = 1497, - [4158] = 2357, - [4159] = 3329, - [4160] = 3373, - [4161] = 3212, - [4162] = 2662, - [4163] = 2659, - [4164] = 2559, - [4165] = 3472, - [4166] = 4029, - [4167] = 2649, - [4168] = 3390, - [4169] = 3505, - [4170] = 3499, - [4171] = 2641, - [4172] = 2648, - [4173] = 3495, - [4174] = 3551, - [4175] = 3046, - [4176] = 3360, - [4177] = 4025, - [4178] = 4023, - [4179] = 4038, - [4180] = 4023, - [4181] = 2410, - [4182] = 2391, - [4183] = 4025, - [4184] = 3517, - [4185] = 4029, - [4186] = 3471, - [4187] = 4022, - [4188] = 2651, - [4189] = 4038, - [4190] = 2594, - [4191] = 2587, - [4192] = 2640, - [4193] = 2580, - [4194] = 4025, - [4195] = 2638, - [4196] = 3481, - [4197] = 3571, - [4198] = 3318, - [4199] = 3469, - [4200] = 1496, - [4201] = 3468, - [4202] = 3399, - [4203] = 3525, - [4204] = 3465, - [4205] = 3526, - [4206] = 4005, - [4207] = 3400, - [4208] = 3390, - [4209] = 2653, - [4210] = 3470, - [4211] = 3549, - [4212] = 4022, - [4213] = 3390, - [4214] = 3380, - [4215] = 2346, - [4216] = 3511, - [4217] = 3452, - [4218] = 2350, - [4219] = 3486, - [4220] = 2656, - [4221] = 2345, - [4222] = 3556, - [4223] = 3420, - [4224] = 3499, - [4225] = 3493, - [4226] = 2342, - [4227] = 2351, - [4228] = 3373, - [4229] = 3501, - [4230] = 4230, - [4231] = 3511, - [4232] = 3486, - [4233] = 3329, - [4234] = 2458, - [4235] = 3505, - [4236] = 2801, - [4237] = 4237, - [4238] = 3427, - [4239] = 3476, - [4240] = 4240, - [4241] = 3544, - [4242] = 3450, - [4243] = 4237, - [4244] = 3049, - [4245] = 3483, - [4246] = 2300, - [4247] = 3461, - [4248] = 3452, - [4249] = 4237, - [4250] = 3361, - [4251] = 3541, - [4252] = 2356, - [4253] = 3385, - [4254] = 3475, - [4255] = 2800, - [4256] = 2343, - [4257] = 3474, - [4258] = 3454, - [4259] = 3473, - [4260] = 1496, - [4261] = 3525, - [4262] = 3574, - [4263] = 2789, - [4264] = 3538, - [4265] = 3472, - [4266] = 150, - [4267] = 3471, - [4268] = 3470, - [4269] = 3469, - [4270] = 3453, - [4271] = 3468, - [4272] = 3571, - [4273] = 3548, - [4274] = 3549, - [4275] = 3348, - [4276] = 4276, - [4277] = 2350, - [4278] = 2633, - [4279] = 4237, - [4280] = 4237, - [4281] = 3399, - [4282] = 3465, - [4283] = 4237, - [4284] = 4237, - [4285] = 3951, - [4286] = 1497, - [4287] = 3531, - [4288] = 3295, - [4289] = 2788, - [4290] = 3568, - [4291] = 3458, - [4292] = 2357, - [4293] = 2358, - [4294] = 3046, - [4295] = 3448, - [4296] = 3449, - [4297] = 3951, - [4298] = 3430, - [4299] = 4299, - [4300] = 3577, - [4301] = 3582, - [4302] = 3583, - [4303] = 3569, - [4304] = 2797, - [4305] = 3504, - [4306] = 151, - [4307] = 3502, - [4308] = 3503, - [4309] = 3555, - [4310] = 3791, - [4311] = 2345, - [4312] = 3481, - [4313] = 2346, - [4314] = 3554, - [4315] = 3459, - [4316] = 3495, - [4317] = 3380, - [4318] = 3517, - [4319] = 2355, - [4320] = 2354, - [4321] = 3526, - [4322] = 3521, - [4323] = 3523, - [4324] = 2353, - [4325] = 3589, - [4326] = 3314, - [4327] = 3374, - [4328] = 3460, - [4329] = 3416, - [4330] = 3377, - [4331] = 3581, - [4332] = 2348, - [4333] = 3524, - [4334] = 3398, - [4335] = 2796, - [4336] = 3440, - [4337] = 3575, - [4338] = 3408, - [4339] = 3410, - [4340] = 3360, - [4341] = 2352, - [4342] = 3439, - [4343] = 4237, - [4344] = 3490, - [4345] = 4237, - [4346] = 3409, - [4347] = 4347, - [4348] = 3488, - [4349] = 3584, - [4350] = 3446, - [4351] = 3585, - [4352] = 3553, - [4353] = 2349, - [4354] = 2293, - [4355] = 3551, - [4356] = 4356, - [4357] = 2334, - [4358] = 2287, - [4359] = 2797, - [4360] = 3848, - [4361] = 2800, - [4362] = 3570, - [4363] = 2656, - [4364] = 2288, - [4365] = 4347, - [4366] = 2458, - [4367] = 3357, - [4368] = 2653, - [4369] = 4230, - [4370] = 2639, - [4371] = 2285, - [4372] = 3082, - [4373] = 2641, - [4374] = 3951, - [4375] = 3084, - [4376] = 2286, - [4377] = 2290, - [4378] = 2292, - [4379] = 2351, - [4380] = 2641, - [4381] = 3553, - [4382] = 2349, - [4383] = 3488, - [4384] = 3490, - [4385] = 151, - [4386] = 4386, - [4387] = 3076, - [4388] = 3049, - [4389] = 2352, - [4390] = 2348, - [4391] = 3449, - [4392] = 3524, - [4393] = 3523, - [4394] = 4386, - [4395] = 4386, - [4396] = 3521, - [4397] = 2800, - [4398] = 3448, - [4399] = 2656, - [4400] = 3374, - [4401] = 3584, - [4402] = 2641, - [4403] = 3503, - [4404] = 3446, - [4405] = 4386, - [4406] = 4386, - [4407] = 3450, - [4408] = 3575, - [4409] = 3360, - [4410] = 3504, - [4411] = 4386, - [4412] = 3548, - [4413] = 3458, - [4414] = 3526, - [4415] = 3585, - [4416] = 3589, - [4417] = 2653, - [4418] = 2639, - [4419] = 3096, - [4420] = 3501, - [4421] = 3427, - [4422] = 150, - [4423] = 3505, - [4424] = 3583, - [4425] = 3549, - [4426] = 4386, - [4427] = 4386, - [4428] = 3314, - [4429] = 2656, - [4430] = 3582, - [4431] = 2797, - [4432] = 2357, - [4433] = 2653, - [4434] = 4386, - [4435] = 2356, - [4436] = 3554, - [4437] = 2358, - [4438] = 2346, - [4439] = 2653, - [4440] = 3502, - [4441] = 2350, - [4442] = 3493, - [4443] = 3046, - [4444] = 2343, - [4445] = 2639, - [4446] = 2345, - [4447] = 2342, - [4448] = 3453, - [4449] = 2353, - [4450] = 2354, - [4451] = 2656, - [4452] = 3556, - [4453] = 3569, - [4454] = 3555, - [4455] = 3430, - [4456] = 3525, - [4457] = 3454, - [4458] = 2355, - [4459] = 2641, - [4460] = 4460, - [4461] = 3082, - [4462] = 3084, - [4463] = 2656, - [4464] = 3096, - [4465] = 2639, - [4466] = 2653, - [4467] = 3076, - [4468] = 3136, + [3971] = 3939, + [3972] = 3935, + [3973] = 3973, + [3974] = 3942, + [3975] = 3942, + [3976] = 3939, + [3977] = 1743, + [3978] = 3973, + [3979] = 1732, + [3980] = 3973, + [3981] = 1731, + [3982] = 3982, + [3983] = 2732, + [3984] = 3984, + [3985] = 1729, + [3986] = 3973, + [3987] = 2652, + [3988] = 3973, + [3989] = 3929, + [3990] = 1934, + [3991] = 3991, + [3992] = 2435, + [3993] = 1730, + [3994] = 1741, + [3995] = 1733, + [3996] = 3929, + [3997] = 3851, + [3998] = 3938, + [3999] = 3935, + [4000] = 4000, + [4001] = 3941, + [4002] = 4002, + [4003] = 3939, + [4004] = 1739, + [4005] = 3935, + [4006] = 1734, + [4007] = 3936, + [4008] = 3861, + [4009] = 3929, + [4010] = 2475, + [4011] = 3935, + [4012] = 2680, + [4013] = 1742, + [4014] = 3973, + [4015] = 2679, + [4016] = 4016, + [4017] = 1737, + [4018] = 4018, + [4019] = 3851, + [4020] = 2671, + [4021] = 2670, + [4022] = 3939, + [4023] = 2669, + [4024] = 2668, + [4025] = 2667, + [4026] = 3942, + [4027] = 3935, + [4028] = 3945, + [4029] = 2662, + [4030] = 3929, + [4031] = 2661, + [4032] = 2657, + [4033] = 1929, + [4034] = 4034, + [4035] = 3965, + [4036] = 2629, + [4037] = 3935, + [4038] = 2752, + [4039] = 4039, + [4040] = 3945, + [4041] = 4041, + [4042] = 3851, + [4043] = 4043, + [4044] = 2627, + [4045] = 4045, + [4046] = 4046, + [4047] = 4047, + [4048] = 2670, + [4049] = 3932, + [4050] = 2671, + [4051] = 3861, + [4052] = 2732, + [4053] = 2680, + [4054] = 2646, + [4055] = 2679, + [4056] = 4056, + [4057] = 4057, + [4058] = 4058, + [4059] = 4059, + [4060] = 2652, + [4061] = 4059, + [4062] = 4062, + [4063] = 4043, + [4064] = 2669, + [4065] = 4065, + [4066] = 2668, + [4067] = 2678, + [4068] = 4068, + [4069] = 4043, + [4070] = 3894, + [4071] = 4071, + [4072] = 4072, + [4073] = 2667, + [4074] = 2721, + [4075] = 2662, + [4076] = 4076, + [4077] = 4077, + [4078] = 2656, + [4079] = 4079, + [4080] = 2539, + [4081] = 4081, + [4082] = 4072, + [4083] = 2657, + [4084] = 4058, + [4085] = 4085, + [4086] = 2567, + [4087] = 4059, + [4088] = 4081, + [4089] = 4057, + [4090] = 4062, + [4091] = 1685, + [4092] = 4068, + [4093] = 4093, + [4094] = 2603, + [4095] = 4085, + [4096] = 2661, + [4097] = 4071, + [4098] = 4098, + [4099] = 4099, + [4100] = 4071, + [4101] = 2752, + [4102] = 4058, + [4103] = 2656, + [4104] = 2588, + [4105] = 2652, + [4106] = 4106, + [4107] = 4107, + [4108] = 4106, + [4109] = 4077, + [4110] = 4043, + [4111] = 2527, + [4112] = 4112, + [4113] = 4106, + [4114] = 4057, + [4115] = 4106, + [4116] = 4116, + [4117] = 4071, + [4118] = 4058, + [4119] = 4057, + [4120] = 4059, + [4121] = 2629, + [4122] = 4122, + [4123] = 2761, + [4124] = 4072, + [4125] = 2732, + [4126] = 1685, + [4127] = 3042, + [4128] = 4057, + [4129] = 4129, + [4130] = 4043, + [4131] = 4072, + [4132] = 2675, + [4133] = 4058, + [4134] = 2629, + [4135] = 4057, + [4136] = 4058, + [4137] = 4059, + [4138] = 4071, + [4139] = 2646, + [4140] = 4072, + [4141] = 4141, + [4142] = 4057, + [4143] = 4059, + [4144] = 4144, + [4145] = 4145, + [4146] = 4146, + [4147] = 2680, + [4148] = 4058, + [4149] = 4149, + [4150] = 2752, + [4151] = 4043, + [4152] = 4071, + [4153] = 4046, + [4154] = 4154, + [4155] = 4071, + [4156] = 4106, + [4157] = 4068, + [4158] = 2721, + [4159] = 4057, + [4160] = 4062, + [4161] = 4161, + [4162] = 4106, + [4163] = 2678, + [4164] = 2679, + [4165] = 2671, + [4166] = 2670, + [4167] = 4072, + [4168] = 4085, + [4169] = 2657, + [4170] = 4059, + [4171] = 4057, + [4172] = 4043, + [4173] = 2661, + [4174] = 4072, + [4175] = 2669, + [4176] = 2668, + [4177] = 4081, + [4178] = 2662, + [4179] = 2667, + [4180] = 4180, + [4181] = 2732, + [4182] = 4182, + [4183] = 4183, + [4184] = 4184, + [4185] = 4185, + [4186] = 2670, + [4187] = 4187, + [4188] = 4188, + [4189] = 3851, + [4190] = 4190, + [4191] = 4191, + [4192] = 4184, + [4193] = 4193, + [4194] = 2675, + [4195] = 4187, + [4196] = 2603, + [4197] = 4180, + [4198] = 4198, + [4199] = 4199, + [4200] = 2656, + [4201] = 4180, + [4202] = 4182, + [4203] = 4183, + [4204] = 4190, + [4205] = 2680, + [4206] = 4206, + [4207] = 2587, + [4208] = 4180, + [4209] = 4209, + [4210] = 2567, + [4211] = 4211, + [4212] = 4191, + [4213] = 2536, + [4214] = 4183, + [4215] = 4211, + [4216] = 4193, + [4217] = 4209, + [4218] = 4218, + [4219] = 4199, + [4220] = 4220, + [4221] = 4209, + [4222] = 4222, + [4223] = 2657, + [4224] = 4180, + [4225] = 2362, + [4226] = 4226, + [4227] = 4190, + [4228] = 4193, + [4229] = 4187, + [4230] = 2667, + [4231] = 4184, + [4232] = 4183, + [4233] = 4184, + [4234] = 2627, + [4235] = 2652, + [4236] = 4199, + [4237] = 1858, + [4238] = 2588, + [4239] = 3851, + [4240] = 4187, + [4241] = 4190, + [4242] = 4184, + [4243] = 4243, + [4244] = 4244, + [4245] = 2752, + [4246] = 4187, + [4247] = 4199, + [4248] = 4182, + [4249] = 4199, + [4250] = 4222, + [4251] = 2761, + [4252] = 4252, + [4253] = 4253, + [4254] = 4254, + [4255] = 4255, + [4256] = 4256, + [4257] = 4257, + [4258] = 3861, + [4259] = 4252, + [4260] = 4206, + [4261] = 2564, + [4262] = 2620, + [4263] = 2661, + [4264] = 4264, + [4265] = 4193, + [4266] = 4206, + [4267] = 4187, + [4268] = 2539, + [4269] = 4209, + [4270] = 4183, + [4271] = 2629, + [4272] = 2721, + [4273] = 3861, + [4274] = 2662, + [4275] = 4193, + [4276] = 4182, + [4277] = 4183, + [4278] = 4182, + [4279] = 4182, + [4280] = 4280, + [4281] = 4199, + [4282] = 4209, + [4283] = 4188, + [4284] = 4199, + [4285] = 4190, + [4286] = 4211, + [4287] = 4198, + [4288] = 2625, + [4289] = 4211, + [4290] = 4253, + [4291] = 4184, + [4292] = 4183, + [4293] = 4188, + [4294] = 4199, + [4295] = 4187, + [4296] = 4193, + [4297] = 4190, + [4298] = 4222, + [4299] = 4209, + [4300] = 4188, + [4301] = 4183, + [4302] = 2668, + [4303] = 4211, + [4304] = 4199, + [4305] = 4185, + [4306] = 4211, + [4307] = 4199, + [4308] = 4308, + [4309] = 4180, + [4310] = 4187, + [4311] = 4206, + [4312] = 4190, + [4313] = 4182, + [4314] = 4187, + [4315] = 2669, + [4316] = 4190, + [4317] = 2679, + [4318] = 4206, + [4319] = 4199, + [4320] = 4320, + [4321] = 4183, + [4322] = 4182, + [4323] = 4323, + [4324] = 2352, + [4325] = 2671, + [4326] = 4222, + [4327] = 4327, + [4328] = 2646, + [4329] = 2355, + [4330] = 2678, + [4331] = 4182, + [4332] = 4206, + [4333] = 2755, + [4334] = 2706, + [4335] = 2738, + [4336] = 2728, + [4337] = 2625, + [4338] = 3861, + [4339] = 2777, + [4340] = 2717, + [4341] = 4341, + [4342] = 2730, + [4343] = 4081, + [4344] = 4344, + [4345] = 4062, + [4346] = 2632, + [4347] = 2631, + [4348] = 2666, + [4349] = 2672, + [4350] = 4350, + [4351] = 2674, + [4352] = 2684, + [4353] = 2564, + [4354] = 2716, + [4355] = 3851, + [4356] = 2637, + [4357] = 2641, + [4358] = 2620, + [4359] = 2756, + [4360] = 2742, + [4361] = 2119, + [4362] = 2323, + [4363] = 2719, + [4364] = 2739, + [4365] = 2536, + [4366] = 2749, + [4367] = 4068, + [4368] = 2726, + [4369] = 2714, + [4370] = 2713, + [4371] = 4081, + [4372] = 2762, + [4373] = 2308, + [4374] = 4068, + [4375] = 2763, + [4376] = 2764, + [4377] = 2644, + [4378] = 2676, + [4379] = 4062, + [4380] = 2740, + [4381] = 2659, + [4382] = 4382, + [4383] = 2682, + [4384] = 2685, + [4385] = 2770, + [4386] = 4085, + [4387] = 4085, + [4388] = 3851, + [4389] = 1965, + [4390] = 4390, + [4391] = 3861, + [4392] = 4392, + [4393] = 4390, + [4394] = 1926, + [4395] = 4062, + [4396] = 2595, + [4397] = 4068, + [4398] = 4081, + [4399] = 2608, + [4400] = 4085, + [4401] = 2352, + [4402] = 1858, + [4403] = 2355, + [4404] = 2580, + [4405] = 1934, + [4406] = 4081, + [4407] = 4062, + [4408] = 2113, + [4409] = 4068, + [4410] = 1929, + [4411] = 4062, + [4412] = 4344, + [4413] = 2113, + [4414] = 2340, + [4415] = 4341, + [4416] = 4085, + [4417] = 4390, + [4418] = 2120, + [4419] = 2120, + [4420] = 4390, + [4421] = 4068, + [4422] = 4390, + [4423] = 2120, + [4424] = 4390, + [4425] = 4350, + [4426] = 4390, + [4427] = 4390, + [4428] = 4390, + [4429] = 4081, + [4430] = 3861, + [4431] = 3851, + [4432] = 4085, + [4433] = 4390, + [4434] = 4434, + [4435] = 2113, + [4436] = 2347, + [4437] = 2387, + [4438] = 2386, + [4439] = 2384, + [4440] = 3861, + [4441] = 4390, + [4442] = 4390, + [4443] = 4443, + [4444] = 4390, + [4445] = 2365, + [4446] = 2383, + [4447] = 4390, + [4448] = 2373, + [4449] = 3861, + [4450] = 1916, + [4451] = 4390, + [4452] = 4085, + [4453] = 4062, + [4454] = 1965, + [4455] = 4081, + [4456] = 2367, + [4457] = 3851, + [4458] = 2369, + [4459] = 4068, + [4460] = 2368, + [4461] = 2377, + [4462] = 2371, + [4463] = 3851, + [4464] = 2378, + [4465] = 4390, + [4466] = 1677, + [4467] = 1672, + [4468] = 1861, [4469] = 4469, - [4470] = 3041, - [4471] = 3135, - [4472] = 3117, - [4473] = 3139, - [4474] = 3129, - [4475] = 2800, - [4476] = 3116, - [4477] = 3114, - [4478] = 3141, - [4479] = 3115, - [4480] = 3113, - [4481] = 3121, - [4482] = 3136, - [4483] = 3114, - [4484] = 4460, - [4485] = 3128, - [4486] = 3124, - [4487] = 3113, - [4488] = 3142, - [4489] = 3116, - [4490] = 3130, - [4491] = 3117, - [4492] = 3118, - [4493] = 3062, - [4494] = 3126, - [4495] = 3139, - [4496] = 3031, - [4497] = 4497, - [4498] = 3121, - [4499] = 3141, - [4500] = 3129, - [4501] = 3130, + [4470] = 1989, + [4471] = 1963, + [4472] = 4472, + [4473] = 1948, + [4474] = 1858, + [4475] = 1958, + [4476] = 4472, + [4477] = 4472, + [4478] = 1949, + [4479] = 1950, + [4480] = 1953, + [4481] = 1955, + [4482] = 1892, + [4483] = 1815, + [4484] = 1936, + [4485] = 1935, + [4486] = 1956, + [4487] = 1985, + [4488] = 1932, + [4489] = 4489, + [4490] = 1991, + [4491] = 1726, + [4492] = 2119, + [4493] = 1931, + [4494] = 4489, + [4495] = 1946, + [4496] = 4496, + [4497] = 4472, + [4498] = 4085, + [4499] = 1980, + [4500] = 1979, + [4501] = 1967, [4502] = 4502, - [4503] = 3128, - [4504] = 3135, - [4505] = 4505, - [4506] = 3124, - [4507] = 3101, - [4508] = 3126, - [4509] = 2797, - [4510] = 3102, - [4511] = 4469, - [4512] = 3115, - [4513] = 3103, - [4514] = 3104, - [4515] = 3122, - [4516] = 3132, - [4517] = 3134, - [4518] = 3101, - [4519] = 3102, - [4520] = 3142, - [4521] = 3103, - [4522] = 3109, - [4523] = 4523, - [4524] = 4523, - [4525] = 3131, - [4526] = 3122, - [4527] = 3134, - [4528] = 3109, - [4529] = 3104, - [4530] = 3132, - [4531] = 3069, - [4532] = 3118, - [4533] = 3161, - [4534] = 4469, - [4535] = 4535, - [4536] = 2351, - [4537] = 2342, - [4538] = 4535, - [4539] = 2357, - [4540] = 4535, - [4541] = 4541, - [4542] = 2358, - [4543] = 2356, - [4544] = 4544, - [4545] = 4469, - [4546] = 4505, - [4547] = 4547, - [4548] = 4548, - [4549] = 2800, - [4550] = 2343, - [4551] = 4523, - [4552] = 4535, - [4553] = 4547, - [4554] = 4554, + [4503] = 4081, + [4504] = 4068, + [4505] = 1973, + [4506] = 4496, + [4507] = 1988, + [4508] = 4489, + [4509] = 1990, + [4510] = 2001, + [4511] = 1987, + [4512] = 4512, + [4513] = 2003, + [4514] = 1945, + [4515] = 1941, + [4516] = 2004, + [4517] = 2007, + [4518] = 1964, + [4519] = 1878, + [4520] = 4489, + [4521] = 2005, + [4522] = 4472, + [4523] = 1920, + [4524] = 4489, + [4525] = 1960, + [4526] = 4489, + [4527] = 1981, + [4528] = 1961, + [4529] = 1943, + [4530] = 4390, + [4531] = 4390, + [4532] = 4489, + [4533] = 1674, + [4534] = 1671, + [4535] = 1939, + [4536] = 1947, + [4537] = 1675, + [4538] = 1673, + [4539] = 1679, + [4540] = 2119, + [4541] = 4062, + [4542] = 4472, + [4543] = 1962, + [4544] = 4472, + [4545] = 1954, + [4546] = 4502, + [4547] = 4496, + [4548] = 3851, + [4549] = 2355, + [4550] = 4550, + [4551] = 4496, + [4552] = 4550, + [4553] = 3861, + [4554] = 2352, [4555] = 4555, - [4556] = 4547, - [4557] = 4548, + [4556] = 4085, + [4557] = 4557, [4558] = 4558, - [4559] = 4555, - [4560] = 4548, - [4561] = 4502, - [4562] = 4548, - [4563] = 4563, - [4564] = 4469, - [4565] = 4547, - [4566] = 4240, + [4559] = 2352, + [4560] = 4502, + [4561] = 4550, + [4562] = 4068, + [4563] = 4496, + [4564] = 4550, + [4565] = 4496, + [4566] = 4502, [4567] = 4558, - [4568] = 3729, - [4569] = 4502, - [4570] = 4523, - [4571] = 4548, - [4572] = 4547, - [4573] = 3084, - [4574] = 4574, - [4575] = 2797, - [4576] = 4547, - [4577] = 2289, - [4578] = 4544, - [4579] = 4505, - [4580] = 4558, - [4581] = 4505, - [4582] = 4535, - [4583] = 4535, - [4584] = 4469, - [4585] = 4548, - [4586] = 4544, - [4587] = 4523, + [4568] = 2120, + [4569] = 4496, + [4570] = 4062, + [4571] = 4558, + [4572] = 4081, + [4573] = 4550, + [4574] = 4550, + [4575] = 4575, + [4576] = 2352, + [4577] = 2355, + [4578] = 4550, + [4579] = 1983, + [4580] = 4496, + [4581] = 4502, + [4582] = 4582, + [4583] = 4582, + [4584] = 4502, + [4585] = 4502, + [4586] = 4555, + [4587] = 4496, [4588] = 4502, - [4589] = 2352, - [4590] = 3082, - [4591] = 4548, - [4592] = 4547, - [4593] = 4535, - [4594] = 4547, - [4595] = 4535, - [4596] = 4555, - [4597] = 4548, - [4598] = 4558, - [4599] = 2619, - [4600] = 2355, - [4601] = 2354, - [4602] = 4535, - [4603] = 4547, - [4604] = 2353, + [4589] = 4496, + [4590] = 4550, + [4591] = 2355, + [4592] = 4558, + [4593] = 4575, + [4594] = 2113, + [4595] = 4062, + [4596] = 4502, + [4597] = 4502, + [4598] = 4550, + [4599] = 4085, + [4600] = 4558, + [4601] = 4601, + [4602] = 4558, + [4603] = 4390, + [4604] = 4604, [4605] = 4605, - [4606] = 4555, - [4607] = 150, - [4608] = 4469, - [4609] = 4548, - [4610] = 4555, - [4611] = 4544, - [4612] = 4555, - [4613] = 4502, - [4614] = 4547, - [4615] = 151, - [4616] = 4558, - [4617] = 4544, - [4618] = 4469, - [4619] = 4523, - [4620] = 4523, - [4621] = 4548, - [4622] = 2345, - [4623] = 4523, - [4624] = 4469, - [4625] = 2350, - [4626] = 4626, - [4627] = 4547, - [4628] = 2346, - [4629] = 4505, - [4630] = 4535, - [4631] = 2349, - [4632] = 4544, - [4633] = 4535, - [4634] = 4548, - [4635] = 4547, - [4636] = 4558, - [4637] = 4469, - [4638] = 4523, - [4639] = 2348, - [4640] = 4523, - [4641] = 4641, - [4642] = 4641, - [4643] = 4643, - [4644] = 4644, - [4645] = 4645, - [4646] = 4641, - [4647] = 4647, - [4648] = 2796, - [4649] = 4523, - [4650] = 4644, - [4651] = 4645, - [4652] = 4641, - [4653] = 3118, - [4654] = 2801, - [4655] = 4643, - [4656] = 4647, - [4657] = 4644, - [4658] = 4647, - [4659] = 4502, - [4660] = 4645, - [4661] = 4641, - [4662] = 4647, - [4663] = 4644, - [4664] = 3084, - [4665] = 4641, - [4666] = 3082, - [4667] = 4644, - [4668] = 4645, - [4669] = 4645, - [4670] = 4641, - [4671] = 4647, - [4672] = 4647, - [4673] = 4644, - [4674] = 4643, - [4675] = 4645, - [4676] = 4523, - [4677] = 4645, - [4678] = 4647, - [4679] = 4644, - [4680] = 4505, - [4681] = 4469, - [4682] = 4644, - [4683] = 4469, - [4684] = 2789, - [4685] = 4645, - [4686] = 4641, - [4687] = 4647, - [4688] = 4643, - [4689] = 3062, - [4690] = 4647, - [4691] = 4641, - [4692] = 4643, - [4693] = 4645, - [4694] = 4644, - [4695] = 3084, - [4696] = 3082, - [4697] = 4643, - [4698] = 4643, - [4699] = 3069, - [4700] = 4643, - [4701] = 4469, - [4702] = 4644, - [4703] = 4643, - [4704] = 4523, - [4705] = 4505, - [4706] = 4523, - [4707] = 3031, - [4708] = 4643, - [4709] = 4523, - [4710] = 3041, - [4711] = 4643, - [4712] = 4469, - [4713] = 4505, - [4714] = 4643, - [4715] = 4469, - [4716] = 4523, - [4717] = 4469, - [4718] = 2300, - [4719] = 4645, - [4720] = 4641, - [4721] = 4641, - [4722] = 4502, - [4723] = 2788, - [4724] = 4643, - [4725] = 4647, - [4726] = 4644, - [4727] = 4502, - [4728] = 4643, - [4729] = 4647, - [4730] = 4645, - [4731] = 4731, - [4732] = 4502, - [4733] = 4733, - [4734] = 4469, - [4735] = 3041, - [4736] = 3062, - [4737] = 4523, - [4738] = 4738, - [4739] = 4523, - [4740] = 4740, - [4741] = 3295, - [4742] = 4740, - [4743] = 4731, - [4744] = 4740, - [4745] = 3451, - [4746] = 4505, - [4747] = 4738, - [4748] = 4738, - [4749] = 4738, - [4750] = 4738, - [4751] = 4469, - [4752] = 4731, - [4753] = 4740, - [4754] = 4733, - [4755] = 4740, - [4756] = 3497, - [4757] = 4740, - [4758] = 4738, - [4759] = 4731, - [4760] = 3069, - [4761] = 4731, - [4762] = 2300, - [4763] = 3031, - [4764] = 4731, - [4765] = 3357, - [4766] = 4005, - [4767] = 3131, - [4768] = 2289, - [4769] = 3275, - [4770] = 3504, - [4771] = 3430, - [4772] = 3118, - [4773] = 3505, - [4774] = 3238, - [4775] = 3197, - [4776] = 3553, - [4777] = 3385, - [4778] = 3373, - [4779] = 4605, - [4780] = 2289, - [4781] = 3380, + [4606] = 4606, + [4607] = 4607, + [4608] = 1858, + [4609] = 4609, + [4610] = 4604, + [4611] = 4606, + [4612] = 4609, + [4613] = 4613, + [4614] = 4609, + [4615] = 4615, + [4616] = 4604, + [4617] = 4615, + [4618] = 4609, + [4619] = 4619, + [4620] = 4502, + [4621] = 4606, + [4622] = 4496, + [4623] = 4496, + [4624] = 4606, + [4625] = 4496, + [4626] = 4496, + [4627] = 4613, + [4628] = 4502, + [4629] = 4604, + [4630] = 4609, + [4631] = 4081, + [4632] = 4609, + [4633] = 4085, + [4634] = 4068, + [4635] = 4619, + [4636] = 4613, + [4637] = 4609, + [4638] = 4390, + [4639] = 4390, + [4640] = 4502, + [4641] = 4609, + [4642] = 4502, + [4643] = 4609, + [4644] = 4609, + [4645] = 4068, + [4646] = 4606, + [4647] = 4609, + [4648] = 4496, + [4649] = 4609, + [4650] = 4613, + [4651] = 4609, + [4652] = 4609, + [4653] = 4619, + [4654] = 4496, + [4655] = 4609, + [4656] = 4613, + [4657] = 4615, + [4658] = 4619, + [4659] = 4606, + [4660] = 4660, + [4661] = 4615, + [4662] = 4613, + [4663] = 4604, + [4664] = 4619, + [4665] = 4062, + [4666] = 4502, + [4667] = 4613, + [4668] = 4081, + [4669] = 4502, + [4670] = 4606, + [4671] = 4604, + [4672] = 4609, + [4673] = 4619, + [4674] = 4615, + [4675] = 4085, + [4676] = 4062, + [4677] = 4390, + [4678] = 4619, + [4679] = 4615, + [4680] = 4604, + [4681] = 4609, + [4682] = 2362, + [4683] = 4615, + [4684] = 2352, + [4685] = 4685, + [4686] = 4502, + [4687] = 4496, + [4688] = 4685, + [4689] = 4689, + [4690] = 4690, + [4691] = 4691, + [4692] = 4692, + [4693] = 4690, + [4694] = 4690, + [4695] = 4695, + [4696] = 4695, + [4697] = 4689, + [4698] = 4698, + [4699] = 4692, + [4700] = 4469, + [4701] = 4690, + [4702] = 4690, + [4703] = 4695, + [4704] = 4692, + [4705] = 4690, + [4706] = 1858, + [4707] = 4707, + [4708] = 4689, + [4709] = 4689, + [4710] = 4710, + [4711] = 4691, + [4712] = 2355, + [4713] = 4685, + [4714] = 4691, + [4715] = 4685, + [4716] = 4710, + [4717] = 4698, + [4718] = 4690, + [4719] = 4689, + [4720] = 4698, + [4721] = 4690, + [4722] = 4689, + [4723] = 4685, + [4724] = 4689, + [4725] = 2340, + [4726] = 4689, + [4727] = 4727, + [4728] = 4685, + [4729] = 4689, + [4730] = 4730, + [4731] = 4690, + [4732] = 4496, + [4733] = 4710, + [4734] = 4710, + [4735] = 4690, + [4736] = 4502, + [4737] = 4695, + [4738] = 4685, + [4739] = 4692, + [4740] = 4691, + [4741] = 4695, + [4742] = 4742, + [4743] = 4685, + [4744] = 4710, + [4745] = 4689, + [4746] = 4710, + [4747] = 4690, + [4748] = 4727, + [4749] = 4689, + [4750] = 4690, + [4751] = 4695, + [4752] = 4710, + [4753] = 4692, + [4754] = 4685, + [4755] = 4698, + [4756] = 4692, + [4757] = 2347, + [4758] = 4689, + [4759] = 4698, + [4760] = 4691, + [4761] = 4689, + [4762] = 4691, + [4763] = 4685, + [4764] = 4689, + [4765] = 4691, + [4766] = 4692, + [4767] = 4695, + [4768] = 4768, + [4769] = 4690, + [4770] = 4690, + [4771] = 2352, + [4772] = 4710, + [4773] = 4685, + [4774] = 4685, + [4775] = 4727, + [4776] = 4727, + [4777] = 2362, + [4778] = 4727, + [4779] = 4695, + [4780] = 4698, + [4781] = 4689, [4782] = 4782, - [4783] = 3329, - [4784] = 3203, - [4785] = 3131, - [4786] = 4605, - [4787] = 4005, - [4788] = 3399, - [4789] = 3493, - [4790] = 3582, - [4791] = 3521, - [4792] = 577, - [4793] = 4793, - [4794] = 4523, - [4795] = 4793, - [4796] = 3118, - [4797] = 3555, - [4798] = 444, - [4799] = 4799, - [4800] = 433, - [4801] = 513, - [4802] = 4469, - [4803] = 3575, - [4804] = 3570, - [4805] = 451, - [4806] = 441, - [4807] = 440, - [4808] = 4523, - [4809] = 3554, - [4810] = 4799, - [4811] = 3524, - [4812] = 4523, - [4813] = 437, - [4814] = 407, - [4815] = 3549, - [4816] = 399, - [4817] = 3551, - [4818] = 398, - [4819] = 523, - [4820] = 3548, - [4821] = 3503, - [4822] = 3569, - [4823] = 3046, - [4824] = 3502, - [4825] = 4799, - [4826] = 4826, - [4827] = 3501, - [4828] = 2283, - [4829] = 4829, - [4830] = 541, - [4831] = 4831, - [4832] = 3453, - [4833] = 4502, - [4834] = 3450, - [4835] = 4826, - [4836] = 522, - [4837] = 3523, - [4838] = 4469, - [4839] = 4831, - [4840] = 3556, - [4841] = 3488, - [4842] = 4505, - [4843] = 3490, - [4844] = 4799, - [4845] = 4469, - [4846] = 3449, - [4847] = 445, - [4848] = 3448, - [4849] = 3583, - [4850] = 3526, - [4851] = 3084, - [4852] = 4505, - [4853] = 4793, - [4854] = 4502, - [4855] = 448, - [4856] = 4469, - [4857] = 516, - [4858] = 3589, - [4859] = 3584, - [4860] = 396, - [4861] = 3082, - [4862] = 3454, - [4863] = 4831, - [4864] = 3458, - [4865] = 455, - [4866] = 461, - [4867] = 517, - [4868] = 3049, - [4869] = 499, - [4870] = 500, - [4871] = 3525, - [4872] = 464, - [4873] = 3446, - [4874] = 475, - [4875] = 3585, - [4876] = 502, - [4877] = 4523, - [4878] = 3474, - [4879] = 3568, - [4880] = 4563, - [4881] = 3238, - [4882] = 4574, - [4883] = 2800, - [4884] = 3511, - [4885] = 3581, - [4886] = 3499, - [4887] = 3791, - [4888] = 3476, - [4889] = 2797, - [4890] = 4890, - [4891] = 4891, - [4892] = 3203, - [4893] = 3475, - [4894] = 3538, - [4895] = 3577, - [4896] = 3452, - [4897] = 3470, - [4898] = 3495, - [4899] = 3275, - [4900] = 3473, - [4901] = 3472, - [4902] = 3759, - [4903] = 2289, - [4904] = 3197, - [4905] = 2300, - [4906] = 3822, - [4907] = 3465, - [4908] = 4605, - [4909] = 3468, - [4910] = 3469, - [4911] = 4890, - [4912] = 3471, - [4913] = 4913, - [4914] = 4914, - [4915] = 4915, - [4916] = 4916, - [4917] = 3275, - [4918] = 4918, - [4919] = 2566, - [4920] = 4920, - [4921] = 4921, - [4922] = 4922, - [4923] = 4890, + [4783] = 4690, + [4784] = 4685, + [4785] = 4690, + [4786] = 4689, + [4787] = 4690, + [4788] = 4685, + [4789] = 2355, + [4790] = 4691, + [4791] = 4691, + [4792] = 4685, + [4793] = 4710, + [4794] = 4689, + [4795] = 4695, + [4796] = 4692, + [4797] = 4685, + [4798] = 4692, + [4799] = 4685, + [4800] = 2453, + [4801] = 2367, + [4802] = 2373, + [4803] = 2386, + [4804] = 4804, + [4805] = 2377, + [4806] = 2365, + [4807] = 4081, + [4808] = 2384, + [4809] = 4804, + [4810] = 4085, + [4811] = 4804, + [4812] = 4804, + [4813] = 4804, + [4814] = 2371, + [4815] = 4804, + [4816] = 2362, + [4817] = 4804, + [4818] = 4804, + [4819] = 2369, + [4820] = 4068, + [4821] = 4804, + [4822] = 4804, + [4823] = 2378, + [4824] = 4804, + [4825] = 4062, + [4826] = 4804, + [4827] = 4804, + [4828] = 4804, + [4829] = 4804, + [4830] = 4804, + [4831] = 2368, + [4832] = 2383, + [4833] = 2387, + [4834] = 4804, + [4835] = 1886, + [4836] = 1947, + [4837] = 4502, + [4838] = 4496, + [4839] = 4839, + [4840] = 4496, + [4841] = 1956, + [4842] = 4842, + [4843] = 4496, + [4844] = 2347, + [4845] = 4845, + [4846] = 4496, + [4847] = 4502, + [4848] = 1918, + [4849] = 4845, + [4850] = 1950, + [4851] = 1954, + [4852] = 1980, + [4853] = 4842, + [4854] = 1916, + [4855] = 2007, + [4856] = 1990, + [4857] = 1987, + [4858] = 4502, + [4859] = 4839, + [4860] = 1973, + [4861] = 4502, + [4862] = 2340, + [4863] = 1936, + [4864] = 2004, + [4865] = 1939, + [4866] = 2396, + [4867] = 4839, + [4868] = 1941, + [4869] = 4842, + [4870] = 1943, + [4871] = 4839, + [4872] = 1958, + [4873] = 1931, + [4874] = 1963, + [4875] = 1964, + [4876] = 4845, + [4877] = 4839, + [4878] = 4839, + [4879] = 4842, + [4880] = 2362, + [4881] = 4845, + [4882] = 4842, + [4883] = 4839, + [4884] = 1926, + [4885] = 1962, + [4886] = 4845, + [4887] = 1945, + [4888] = 4842, + [4889] = 4842, + [4890] = 1946, + [4891] = 4839, + [4892] = 1955, + [4893] = 1953, + [4894] = 1960, + [4895] = 1961, + [4896] = 1920, + [4897] = 4845, + [4898] = 1935, + [4899] = 4842, + [4900] = 1988, + [4901] = 4901, + [4902] = 4842, + [4903] = 1989, + [4904] = 1985, + [4905] = 4845, + [4906] = 1967, + [4907] = 1932, + [4908] = 1991, + [4909] = 4742, + [4910] = 4845, + [4911] = 1979, + [4912] = 4842, + [4913] = 4839, + [4914] = 1934, + [4915] = 4845, + [4916] = 1948, + [4917] = 2003, + [4918] = 4839, + [4919] = 2001, + [4920] = 1981, + [4921] = 2005, + [4922] = 4845, + [4923] = 1949, [4924] = 4924, - [4925] = 2351, - [4926] = 2342, - [4927] = 3538, - [4928] = 3203, - [4929] = 4929, - [4930] = 4890, - [4931] = 2346, - [4932] = 4932, - [4933] = 2350, - [4934] = 4934, - [4935] = 3577, - [4936] = 4936, - [4937] = 2345, - [4938] = 4890, - [4939] = 2356, - [4940] = 2343, - [4941] = 3197, - [4942] = 3581, - [4943] = 4943, - [4944] = 4934, - [4945] = 4936, - [4946] = 150, - [4947] = 4947, - [4948] = 4922, - [4949] = 4936, - [4950] = 151, - [4951] = 4951, - [4952] = 4932, - [4953] = 4924, - [4954] = 4890, - [4955] = 2357, - [4956] = 3568, - [4957] = 2355, - [4958] = 3511, - [4959] = 4959, - [4960] = 2358, - [4961] = 4922, - [4962] = 4959, - [4963] = 2354, - [4964] = 2353, - [4965] = 4932, - [4966] = 4831, - [4967] = 4924, - [4968] = 2349, - [4969] = 3238, - [4970] = 4936, - [4971] = 4959, - [4972] = 4932, - [4973] = 2348, - [4974] = 4959, - [4975] = 4890, - [4976] = 4929, + [4925] = 4768, + [4926] = 4842, + [4927] = 4845, + [4928] = 4839, + [4929] = 3733, + [4930] = 4930, + [4931] = 4930, + [4932] = 4839, + [4933] = 4930, + [4934] = 2383, + [4935] = 4842, + [4936] = 4845, + [4937] = 2386, + [4938] = 4839, + [4939] = 2371, + [4940] = 2365, + [4941] = 4842, + [4942] = 2384, + [4943] = 4845, + [4944] = 3606, + [4945] = 2369, + [4946] = 4839, + [4947] = 4845, + [4948] = 4930, + [4949] = 4842, + [4950] = 2387, + [4951] = 4930, + [4952] = 2373, + [4953] = 2378, + [4954] = 2377, + [4955] = 4839, + [4956] = 4839, + [4957] = 4842, + [4958] = 4845, + [4959] = 4842, + [4960] = 4930, + [4961] = 4845, + [4962] = 2368, + [4963] = 2367, + [4964] = 4964, + [4965] = 4964, + [4966] = 4839, + [4967] = 4845, + [4968] = 4842, + [4969] = 4839, + [4970] = 4964, + [4971] = 4845, + [4972] = 4842, + [4973] = 3724, + [4974] = 4974, + [4975] = 1858, + [4976] = 3606, [4977] = 4977, - [4978] = 4932, - [4979] = 4947, + [4978] = 4978, + [4979] = 4979, [4980] = 4980, - [4981] = 4932, - [4982] = 4977, - [4983] = 4951, - [4984] = 4922, - [4985] = 4924, + [4981] = 4978, + [4982] = 4978, + [4983] = 4983, + [4984] = 4983, + [4985] = 4983, [4986] = 4986, [4987] = 4987, - [4988] = 4936, - [4989] = 4890, - [4990] = 4922, - [4991] = 4932, - [4992] = 4959, - [4993] = 2564, - [4994] = 4932, - [4995] = 3476, - [4996] = 2352, - [4997] = 4959, - [4998] = 3475, - [4999] = 4959, - [5000] = 5000, - [5001] = 4932, - [5002] = 3474, - [5003] = 4936, - [5004] = 3499, - [5005] = 3473, - [5006] = 3472, - [5007] = 5007, - [5008] = 3495, - [5009] = 4793, - [5010] = 5010, - [5011] = 4890, - [5012] = 4932, - [5013] = 4918, - [5014] = 3471, - [5015] = 3470, - [5016] = 4929, - [5017] = 3469, - [5018] = 3468, - [5019] = 4793, - [5020] = 4932, - [5021] = 4932, - [5022] = 4936, - [5023] = 4922, - [5024] = 4924, - [5025] = 4932, - [5026] = 4890, - [5027] = 4831, - [5028] = 4932, - [5029] = 3452, - [5030] = 4924, - [5031] = 4932, - [5032] = 4932, - [5033] = 3465, - [5034] = 5034, - [5035] = 3380, - [5036] = 5036, - [5037] = 5037, - [5038] = 5038, - [5039] = 5039, - [5040] = 3848, + [4988] = 4978, + [4989] = 4979, + [4990] = 4842, + [4991] = 4986, + [4992] = 4845, + [4993] = 4993, + [4994] = 4994, + [4995] = 4839, + [4996] = 4987, + [4997] = 4964, + [4998] = 4986, + [4999] = 4983, + [5000] = 4845, + [5001] = 4987, + [5002] = 4983, + [5003] = 4986, + [5004] = 4987, + [5005] = 4983, + [5006] = 4842, + [5007] = 4987, + [5008] = 4986, + [5009] = 4964, + [5010] = 4983, + [5011] = 4986, + [5012] = 4842, + [5013] = 4987, + [5014] = 4987, + [5015] = 4842, + [5016] = 4983, + [5017] = 4987, + [5018] = 4983, + [5019] = 4983, + [5020] = 4839, + [5021] = 4987, + [5022] = 4983, + [5023] = 4845, + [5024] = 4987, + [5025] = 4986, + [5026] = 4986, + [5027] = 4845, + [5028] = 4987, + [5029] = 4987, + [5030] = 4983, + [5031] = 4839, + [5032] = 4839, + [5033] = 4983, + [5034] = 4983, + [5035] = 4987, + [5036] = 4983, + [5037] = 4987, + [5038] = 4979, + [5039] = 4986, + [5040] = 4987, [5041] = 5041, [5042] = 5042, [5043] = 5043, - [5044] = 5044, - [5045] = 5045, - [5046] = 5037, - [5047] = 5036, - [5048] = 5036, - [5049] = 5049, - [5050] = 3551, + [5044] = 5041, + [5045] = 5042, + [5046] = 5046, + [5047] = 5047, + [5048] = 5046, + [5049] = 5043, + [5050] = 5047, [5051] = 5051, - [5052] = 3577, - [5053] = 5053, - [5054] = 5054, - [5055] = 5055, - [5056] = 5044, - [5057] = 5034, - [5058] = 5058, + [5052] = 5043, + [5053] = 5041, + [5054] = 5042, + [5055] = 5046, + [5056] = 5042, + [5057] = 5047, + [5058] = 5047, [5059] = 5059, - [5060] = 5049, - [5061] = 5061, - [5062] = 5062, - [5063] = 5043, - [5064] = 5051, - [5065] = 5038, - [5066] = 5066, - [5067] = 5044, - [5068] = 5068, + [5060] = 5046, + [5061] = 5046, + [5062] = 5043, + [5063] = 5046, + [5064] = 5046, + [5065] = 5047, + [5066] = 5047, + [5067] = 5046, + [5068] = 5041, [5069] = 5042, - [5070] = 5058, - [5071] = 5049, - [5072] = 5039, - [5073] = 3568, - [5074] = 5044, - [5075] = 5038, - [5076] = 5076, - [5077] = 5053, - [5078] = 5039, - [5079] = 5076, - [5080] = 5053, - [5081] = 5038, - [5082] = 5066, - [5083] = 5068, - [5084] = 5034, - [5085] = 3581, - [5086] = 5037, - [5087] = 5037, - [5088] = 5088, - [5089] = 5089, - [5090] = 5034, - [5091] = 5039, - [5092] = 5092, - [5093] = 5092, - [5094] = 5059, - [5095] = 5095, - [5096] = 3568, - [5097] = 3577, - [5098] = 5098, - [5099] = 5059, - [5100] = 5092, - [5101] = 5051, - [5102] = 5089, - [5103] = 3295, - [5104] = 5037, - [5105] = 5076, - [5106] = 3570, - [5107] = 3499, - [5108] = 3538, - [5109] = 4934, - [5110] = 5055, - [5111] = 5068, - [5112] = 5076, - [5113] = 4890, - [5114] = 5059, - [5115] = 5058, - [5116] = 5116, - [5117] = 5043, - [5118] = 5042, - [5119] = 4890, - [5120] = 4793, - [5121] = 2300, - [5122] = 5034, - [5123] = 5066, - [5124] = 5058, - [5125] = 5044, - [5126] = 4890, - [5127] = 5051, - [5128] = 3329, - [5129] = 5076, - [5130] = 3373, - [5131] = 3499, - [5132] = 5049, - [5133] = 3476, - [5134] = 3495, - [5135] = 5039, + [5070] = 5041, + [5071] = 5041, + [5072] = 5046, + [5073] = 5042, + [5074] = 5041, + [5075] = 5047, + [5076] = 5046, + [5077] = 5043, + [5078] = 5043, + [5079] = 5042, + [5080] = 5041, + [5081] = 5042, + [5082] = 5047, + [5083] = 5041, + [5084] = 5046, + [5085] = 5043, + [5086] = 5041, + [5087] = 5042, + [5088] = 5043, + [5089] = 5043, + [5090] = 4980, + [5091] = 5051, + [5092] = 5059, + [5093] = 5047, + [5094] = 5047, + [5095] = 5047, + [5096] = 5046, + [5097] = 5097, + [5098] = 5046, + [5099] = 5043, + [5100] = 5047, + [5101] = 5042, + [5102] = 5042, + [5103] = 5042, + [5104] = 5046, + [5105] = 5041, + [5106] = 5043, + [5107] = 5059, + [5108] = 5042, + [5109] = 5043, + [5110] = 5041, + [5111] = 5041, + [5112] = 5042, + [5113] = 5046, + [5114] = 5047, + [5115] = 5043, + [5116] = 5042, + [5117] = 5047, + [5118] = 5046, + [5119] = 5041, + [5120] = 5047, + [5121] = 5043, + [5122] = 5046, + [5123] = 5042, + [5124] = 5041, + [5125] = 5043, + [5126] = 5047, + [5127] = 5041, + [5128] = 1965, + [5129] = 4964, + [5130] = 5043, + [5131] = 5051, + [5132] = 5047, + [5133] = 5041, + [5134] = 5134, + [5135] = 5043, [5136] = 5042, [5137] = 5137, - [5138] = 3475, - [5139] = 3474, - [5140] = 3473, - [5141] = 5043, - [5142] = 3472, - [5143] = 3471, - [5144] = 3470, - [5145] = 5036, - [5146] = 5034, - [5147] = 3469, - [5148] = 3581, - [5149] = 3468, - [5150] = 5042, - [5151] = 3465, - [5152] = 2300, - [5153] = 5039, - [5154] = 5043, - [5155] = 5092, - [5156] = 5062, - [5157] = 5053, - [5158] = 5068, - [5159] = 5059, - [5160] = 5039, - [5161] = 3511, - [5162] = 4831, - [5163] = 5092, + [5138] = 5138, + [5139] = 5139, + [5140] = 5140, + [5141] = 5137, + [5142] = 5142, + [5143] = 2761, + [5144] = 5144, + [5145] = 5145, + [5146] = 5146, + [5147] = 5147, + [5148] = 5148, + [5149] = 5144, + [5150] = 5150, + [5151] = 5151, + [5152] = 5152, + [5153] = 5140, + [5154] = 5154, + [5155] = 5155, + [5156] = 5156, + [5157] = 5137, + [5158] = 5158, + [5159] = 5159, + [5160] = 5137, + [5161] = 5161, + [5162] = 5137, + [5163] = 5140, [5164] = 5164, - [5165] = 5051, - [5166] = 5043, - [5167] = 5049, - [5168] = 5059, - [5169] = 4890, - [5170] = 5092, - [5171] = 3452, - [5172] = 3452, - [5173] = 5068, - [5174] = 5061, - [5175] = 5042, - [5176] = 5058, - [5177] = 5066, - [5178] = 5038, - [5179] = 3511, - [5180] = 5053, - [5181] = 5036, - [5182] = 5036, - [5183] = 5183, - [5184] = 5184, - [5185] = 5068, - [5186] = 5076, - [5187] = 5068, - [5188] = 5066, - [5189] = 5066, - [5190] = 5044, - [5191] = 5062, - [5192] = 5059, - [5193] = 5038, - [5194] = 5194, - [5195] = 3465, - [5196] = 5092, - [5197] = 5038, - [5198] = 5049, - [5199] = 3399, - [5200] = 5066, - [5201] = 3468, - [5202] = 3469, - [5203] = 3470, - [5204] = 3471, - [5205] = 4890, - [5206] = 5042, - [5207] = 3538, - [5208] = 5043, - [5209] = 3472, - [5210] = 3473, - [5211] = 5058, - [5212] = 3474, - [5213] = 5034, - [5214] = 3475, - [5215] = 5051, - [5216] = 5216, - [5217] = 5076, - [5218] = 5044, - [5219] = 5051, - [5220] = 5049, + [5165] = 5165, + [5166] = 5166, + [5167] = 5167, + [5168] = 5168, + [5169] = 5144, + [5170] = 5140, + [5171] = 5139, + [5172] = 5172, + [5173] = 4964, + [5174] = 4994, + [5175] = 5156, + [5176] = 5159, + [5177] = 5137, + [5178] = 5159, + [5179] = 5137, + [5180] = 5180, + [5181] = 5144, + [5182] = 5139, + [5183] = 5147, + [5184] = 5139, + [5185] = 5137, + [5186] = 5186, + [5187] = 5144, + [5188] = 5188, + [5189] = 5189, + [5190] = 5137, + [5191] = 4993, + [5192] = 5164, + [5193] = 5152, + [5194] = 5186, + [5195] = 5188, + [5196] = 5137, + [5197] = 5197, + [5198] = 5198, + [5199] = 5144, + [5200] = 5180, + [5201] = 5137, + [5202] = 5137, + [5203] = 5144, + [5204] = 5204, + [5205] = 5205, + [5206] = 5144, + [5207] = 5207, + [5208] = 5208, + [5209] = 5159, + [5210] = 5139, + [5211] = 5208, + [5212] = 5212, + [5213] = 5213, + [5214] = 5189, + [5215] = 5207, + [5216] = 5213, + [5217] = 4964, + [5218] = 5144, + [5219] = 5219, + [5220] = 5212, [5221] = 5221, - [5222] = 3495, - [5223] = 5053, - [5224] = 3476, - [5225] = 5092, - [5226] = 5036, - [5227] = 5092, - [5228] = 5061, - [5229] = 5055, - [5230] = 5037, - [5231] = 5058, - [5232] = 5054, - [5233] = 5183, - [5234] = 5037, - [5235] = 4890, - [5236] = 3385, - [5237] = 5054, + [5222] = 5137, + [5223] = 5223, + [5224] = 5224, + [5225] = 5225, + [5226] = 5226, + [5227] = 5138, + [5228] = 5226, + [5229] = 1731, + [5230] = 5230, + [5231] = 5231, + [5232] = 5232, + [5233] = 1732, + [5234] = 5231, + [5235] = 5231, + [5236] = 5236, + [5237] = 1743, [5238] = 5238, - [5239] = 3475, - [5240] = 4890, - [5241] = 5241, - [5242] = 5242, - [5243] = 5243, - [5244] = 4890, + [5239] = 5239, + [5240] = 5240, + [5241] = 5238, + [5242] = 5154, + [5243] = 150, + [5244] = 5221, [5245] = 5245, - [5246] = 5245, - [5247] = 5247, - [5248] = 5248, - [5249] = 3360, - [5250] = 3380, - [5251] = 3373, - [5252] = 5241, + [5246] = 5246, + [5247] = 5142, + [5248] = 5225, + [5249] = 5231, + [5250] = 5250, + [5251] = 5145, + [5252] = 5167, [5253] = 5253, [5254] = 5254, [5255] = 5255, - [5256] = 3329, - [5257] = 5257, - [5258] = 5258, - [5259] = 3314, - [5260] = 5260, + [5256] = 4964, + [5257] = 5253, + [5258] = 5223, + [5259] = 5172, + [5260] = 1742, [5261] = 5261, - [5262] = 5262, - [5263] = 5263, - [5264] = 5248, - [5265] = 5265, - [5266] = 5241, - [5267] = 5267, - [5268] = 5245, - [5269] = 5269, + [5262] = 5238, + [5263] = 5225, + [5264] = 5148, + [5265] = 5225, + [5266] = 5245, + [5267] = 5224, + [5268] = 149, + [5269] = 1737, [5270] = 5270, - [5271] = 5247, - [5272] = 5260, - [5273] = 5248, - [5274] = 5274, - [5275] = 5275, - [5276] = 5241, + [5271] = 5254, + [5272] = 5253, + [5273] = 5273, + [5274] = 5253, + [5275] = 5253, + [5276] = 5238, [5277] = 5277, - [5278] = 5260, - [5279] = 5261, - [5280] = 5262, - [5281] = 5275, - [5282] = 5282, - [5283] = 5262, - [5284] = 3427, - [5285] = 5285, - [5286] = 5241, - [5287] = 5258, - [5288] = 5288, - [5289] = 5253, - [5290] = 5253, - [5291] = 5275, - [5292] = 3374, - [5293] = 5258, - [5294] = 5260, - [5295] = 5275, - [5296] = 5260, - [5297] = 5241, - [5298] = 5282, - [5299] = 5262, - [5300] = 5285, - [5301] = 5245, - [5302] = 5302, - [5303] = 5260, - [5304] = 5261, - [5305] = 5261, - [5306] = 5302, - [5307] = 5261, - [5308] = 5262, - [5309] = 5275, - [5310] = 5253, - [5311] = 5245, - [5312] = 5261, - [5313] = 5302, - [5314] = 5260, - [5315] = 5260, - [5316] = 5261, - [5317] = 5302, - [5318] = 5261, - [5319] = 5258, - [5320] = 5262, - [5321] = 5275, - [5322] = 3385, - [5323] = 3511, + [5278] = 1738, + [5279] = 5245, + [5280] = 5254, + [5281] = 1736, + [5282] = 5198, + [5283] = 5231, + [5284] = 5225, + [5285] = 5240, + [5286] = 5230, + [5287] = 5238, + [5288] = 5166, + [5289] = 5289, + [5290] = 5224, + [5291] = 2308, + [5292] = 1730, + [5293] = 5197, + [5294] = 5155, + [5295] = 2308, + [5296] = 1740, + [5297] = 1735, + [5298] = 5226, + [5299] = 5165, + [5300] = 5225, + [5301] = 5161, + [5302] = 5158, + [5303] = 2323, + [5304] = 5223, + [5305] = 1733, + [5306] = 5168, + [5307] = 5231, + [5308] = 5204, + [5309] = 5224, + [5310] = 5310, + [5311] = 5311, + [5312] = 5238, + [5313] = 5230, + [5314] = 5310, + [5315] = 5253, + [5316] = 5254, + [5317] = 5317, + [5318] = 5245, + [5319] = 1741, + [5320] = 5310, + [5321] = 5245, + [5322] = 5322, + [5323] = 5245, [5324] = 5324, - [5325] = 5275, - [5326] = 3399, - [5327] = 5253, - [5328] = 5288, - [5329] = 5262, - [5330] = 5247, - [5331] = 5247, - [5332] = 5275, - [5333] = 5267, - [5334] = 5265, - [5335] = 5263, - [5336] = 5248, - [5337] = 5245, - [5338] = 5257, - [5339] = 4831, - [5340] = 5340, - [5341] = 5254, - [5342] = 5253, - [5343] = 3452, - [5344] = 3465, - [5345] = 3468, - [5346] = 5247, - [5347] = 3469, - [5348] = 5267, - [5349] = 3470, - [5350] = 5265, - [5351] = 5263, - [5352] = 5245, - [5353] = 2552, - [5354] = 3471, - [5355] = 5275, - [5356] = 5257, - [5357] = 3357, - [5358] = 4793, - [5359] = 5359, - [5360] = 5267, - [5361] = 5265, - [5362] = 4793, - [5363] = 5263, - [5364] = 5364, - [5365] = 3084, - [5366] = 3082, + [5325] = 1729, + [5326] = 2761, + [5327] = 1734, + [5328] = 5310, + [5329] = 5329, + [5330] = 5205, + [5331] = 5324, + [5332] = 5310, + [5333] = 5240, + [5334] = 5230, + [5335] = 5240, + [5336] = 2323, + [5337] = 5226, + [5338] = 5338, + [5339] = 5339, + [5340] = 5223, + [5341] = 1739, + [5342] = 5342, + [5343] = 2453, + [5344] = 5289, + [5345] = 4964, + [5346] = 5250, + [5347] = 5311, + [5348] = 5348, + [5349] = 5253, + [5350] = 5350, + [5351] = 5351, + [5352] = 5352, + [5353] = 5353, + [5354] = 5354, + [5355] = 5354, + [5356] = 5231, + [5357] = 5225, + [5358] = 5351, + [5359] = 5231, + [5360] = 5360, + [5361] = 5354, + [5362] = 5362, + [5363] = 5363, + [5364] = 5225, + [5365] = 5352, + [5366] = 5366, [5367] = 5367, - [5368] = 5262, - [5369] = 5275, - [5370] = 3551, - [5371] = 5257, - [5372] = 5247, - [5373] = 5260, - [5374] = 3577, - [5375] = 4831, - [5376] = 3476, - [5377] = 3581, - [5378] = 5302, - [5379] = 5263, - [5380] = 5265, - [5381] = 5265, - [5382] = 5267, - [5383] = 5277, - [5384] = 5302, - [5385] = 5385, - [5386] = 5275, - [5387] = 3472, - [5388] = 5247, - [5389] = 5262, - [5390] = 3499, - [5391] = 3118, - [5392] = 3495, - [5393] = 5253, - [5394] = 3568, - [5395] = 5257, - [5396] = 3570, - [5397] = 5263, - [5398] = 3473, - [5399] = 5261, - [5400] = 5257, - [5401] = 3474, - [5402] = 5253, - [5403] = 5267, - [5404] = 3538, - [5405] = 3446, - [5406] = 3589, - [5407] = 3525, - [5408] = 3430, - [5409] = 3526, - [5410] = 3523, - [5411] = 3049, - [5412] = 5055, + [5368] = 5368, + [5369] = 5369, + [5370] = 5354, + [5371] = 5371, + [5372] = 5225, + [5373] = 5238, + [5374] = 5348, + [5375] = 5253, + [5376] = 5231, + [5377] = 5351, + [5378] = 5348, + [5379] = 5348, + [5380] = 5351, + [5381] = 5253, + [5382] = 5348, + [5383] = 5238, + [5384] = 5231, + [5385] = 5225, + [5386] = 5352, + [5387] = 5387, + [5388] = 5238, + [5389] = 5352, + [5390] = 5352, + [5391] = 5391, + [5392] = 5392, + [5393] = 5393, + [5394] = 5238, + [5395] = 5354, + [5396] = 5396, + [5397] = 5352, + [5398] = 4964, + [5399] = 5399, + [5400] = 5348, + [5401] = 5348, + [5402] = 5351, + [5403] = 5354, + [5404] = 2120, + [5405] = 5392, + [5406] = 5348, + [5407] = 5351, + [5408] = 5408, + [5409] = 5348, + [5410] = 5410, + [5411] = 5354, + [5412] = 5412, [5413] = 5413, - [5414] = 3521, - [5415] = 3493, - [5416] = 3553, - [5417] = 3554, - [5418] = 5061, - [5419] = 3501, - [5420] = 3555, - [5421] = 5054, - [5422] = 5422, - [5423] = 3569, - [5424] = 3374, - [5425] = 3453, - [5426] = 3314, - [5427] = 3575, - [5428] = 3458, - [5429] = 3360, - [5430] = 3454, - [5431] = 2801, - [5432] = 3450, - [5433] = 2796, - [5434] = 3449, - [5435] = 3448, - [5436] = 2789, - [5437] = 3490, - [5438] = 2788, - [5439] = 3584, - [5440] = 3505, - [5441] = 3046, - [5442] = 5062, - [5443] = 3556, - [5444] = 3427, - [5445] = 5062, - [5446] = 4793, - [5447] = 3585, - [5448] = 3502, - [5449] = 3582, - [5450] = 3583, - [5451] = 3524, - [5452] = 3503, - [5453] = 3548, - [5454] = 3488, - [5455] = 4831, - [5456] = 5054, - [5457] = 5055, - [5458] = 3504, - [5459] = 5061, - [5460] = 3549, - [5461] = 4890, - [5462] = 3084, - [5463] = 2633, - [5464] = 5055, + [5414] = 2113, + [5415] = 5351, + [5416] = 5352, + [5417] = 5352, + [5418] = 5418, + [5419] = 5352, + [5420] = 5348, + [5421] = 5421, + [5422] = 5348, + [5423] = 5351, + [5424] = 5352, + [5425] = 5354, + [5426] = 4964, + [5427] = 5427, + [5428] = 5253, + [5429] = 5351, + [5430] = 5351, + [5431] = 5354, + [5432] = 5354, + [5433] = 5433, + [5434] = 5351, + [5435] = 5435, + [5436] = 5225, + [5437] = 5253, + [5438] = 5329, + [5439] = 4964, + [5440] = 5238, + [5441] = 1796, + [5442] = 5261, + [5443] = 5443, + [5444] = 5444, + [5445] = 5231, + [5446] = 5443, + [5447] = 1005, + [5448] = 5448, + [5449] = 5443, + [5450] = 5450, + [5451] = 1006, + [5452] = 5443, + [5453] = 5238, + [5454] = 5231, + [5455] = 1782, + [5456] = 5225, + [5457] = 1780, + [5458] = 2570, + [5459] = 4964, + [5460] = 5253, + [5461] = 5461, + [5462] = 5462, + [5463] = 5463, + [5464] = 5464, [5465] = 5465, - [5466] = 2552, - [5467] = 3325, - [5468] = 3318, - [5469] = 5062, - [5470] = 4890, - [5471] = 5054, - [5472] = 3082, - [5473] = 2619, - [5474] = 3384, - [5475] = 5061, - [5476] = 4890, - [5477] = 4890, - [5478] = 4793, - [5479] = 4831, - [5480] = 5061, - [5481] = 5055, - [5482] = 5062, - [5483] = 2797, - [5484] = 3076, - [5485] = 2800, - [5486] = 2797, - [5487] = 3096, - [5488] = 5422, - [5489] = 5054, - [5490] = 5062, - [5491] = 5491, - [5492] = 2797, - [5493] = 5054, - [5494] = 2564, - [5495] = 2566, - [5496] = 2800, - [5497] = 5055, - [5498] = 4831, - [5499] = 4793, - [5500] = 2800, - [5501] = 5061, - [5502] = 5502, - [5503] = 5503, - [5504] = 5502, - [5505] = 5502, - [5506] = 3121, - [5507] = 3109, - [5508] = 5502, - [5509] = 3115, - [5510] = 3104, - [5511] = 3116, - [5512] = 5503, - [5513] = 5055, - [5514] = 5503, - [5515] = 5515, - [5516] = 5502, - [5517] = 3122, - [5518] = 5502, - [5519] = 2619, - [5520] = 3117, - [5521] = 3132, - [5522] = 5515, - [5523] = 5515, - [5524] = 5515, - [5525] = 2466, - [5526] = 5515, - [5527] = 5515, - [5528] = 3134, - [5529] = 3113, - [5530] = 5515, - [5531] = 3124, - [5532] = 5503, - [5533] = 3135, - [5534] = 5054, - [5535] = 3142, - [5536] = 5061, - [5537] = 5515, - [5538] = 5503, - [5539] = 3130, - [5540] = 4793, - [5541] = 3126, - [5542] = 5502, - [5543] = 5515, - [5544] = 3136, - [5545] = 5502, - [5546] = 3139, - [5547] = 4831, - [5548] = 5515, - [5549] = 3128, - [5550] = 5515, - [5551] = 5503, - [5552] = 3114, - [5553] = 3101, - [5554] = 5502, - [5555] = 3102, - [5556] = 3129, - [5557] = 5503, - [5558] = 5502, - [5559] = 5502, - [5560] = 3103, - [5561] = 5503, - [5562] = 5503, - [5563] = 5503, - [5564] = 3141, - [5565] = 4831, - [5566] = 5062, - [5567] = 5503, - [5568] = 4793, - [5569] = 5569, - [5570] = 2334, - [5571] = 5571, - [5572] = 2594, - [5573] = 2516, - [5574] = 2582, - [5575] = 2587, - [5576] = 2511, - [5577] = 2645, - [5578] = 2285, - [5579] = 2606, - [5580] = 2288, - [5581] = 2580, - [5582] = 2649, - [5583] = 2287, - [5584] = 2574, - [5585] = 2657, - [5586] = 2559, - [5587] = 5062, - [5588] = 2640, - [5589] = 5589, - [5590] = 2659, - [5591] = 2292, - [5592] = 2789, - [5593] = 2789, - [5594] = 2796, - [5595] = 2788, - [5596] = 2608, - [5597] = 2662, - [5598] = 2567, - [5599] = 2577, - [5600] = 2609, - [5601] = 5061, - [5602] = 2552, - [5603] = 2591, - [5604] = 2558, - [5605] = 2658, - [5606] = 2578, - [5607] = 2801, - [5608] = 5589, - [5609] = 2592, - [5610] = 2638, - [5611] = 5571, - [5612] = 5589, - [5613] = 2660, - [5614] = 5614, - [5615] = 2613, - [5616] = 2593, - [5617] = 5589, - [5618] = 5571, - [5619] = 2615, - [5620] = 2479, - [5621] = 2796, - [5622] = 5571, - [5623] = 2648, - [5624] = 2618, - [5625] = 2457, - [5626] = 2629, - [5627] = 2611, - [5628] = 2620, - [5629] = 2801, - [5630] = 2628, - [5631] = 5589, - [5632] = 2597, - [5633] = 2596, - [5634] = 5589, - [5635] = 2598, - [5636] = 2572, - [5637] = 2599, - [5638] = 5054, - [5639] = 2290, - [5640] = 2616, - [5641] = 2624, - [5642] = 5589, - [5643] = 2617, - [5644] = 5644, - [5645] = 2636, - [5646] = 2614, - [5647] = 5571, - [5648] = 2293, - [5649] = 2286, - [5650] = 2788, - [5651] = 2561, - [5652] = 2621, - [5653] = 5571, - [5654] = 2651, - [5655] = 2581, - [5656] = 2569, - [5657] = 5055, - [5658] = 5571, - [5659] = 3082, - [5660] = 5660, - [5661] = 5061, - [5662] = 3084, - [5663] = 3084, - [5664] = 5054, - [5665] = 5055, - [5666] = 3082, - [5667] = 2800, - [5668] = 5055, - [5669] = 5062, - [5670] = 5670, - [5671] = 2797, - [5672] = 4793, - [5673] = 5673, - [5674] = 5670, - [5675] = 5673, - [5676] = 5062, - [5677] = 4831, - [5678] = 5660, - [5679] = 2595, - [5680] = 3084, - [5681] = 3082, - [5682] = 5682, - [5683] = 5682, - [5684] = 5682, - [5685] = 5685, - [5686] = 5686, - [5687] = 5055, - [5688] = 3118, - [5689] = 5689, - [5690] = 5690, - [5691] = 5691, - [5692] = 5054, - [5693] = 5689, - [5694] = 5694, - [5695] = 5062, - [5696] = 5054, - [5697] = 5697, - [5698] = 5689, - [5699] = 5689, - [5700] = 5700, - [5701] = 5689, - [5702] = 5685, - [5703] = 5703, - [5704] = 5704, - [5705] = 5705, - [5706] = 5062, - [5707] = 5689, - [5708] = 5708, - [5709] = 5705, - [5710] = 5682, - [5711] = 5689, - [5712] = 5703, - [5713] = 5689, - [5714] = 5704, - [5715] = 5691, - [5716] = 5705, - [5717] = 5703, - [5718] = 5704, - [5719] = 5690, - [5720] = 5697, - [5721] = 5708, - [5722] = 5691, - [5723] = 5705, - [5724] = 5685, - [5725] = 5691, - [5726] = 5689, - [5727] = 5697, - [5728] = 5728, - [5729] = 5689, - [5730] = 5691, - [5731] = 5705, - [5732] = 5694, - [5733] = 5708, - [5734] = 5700, - [5735] = 5704, - [5736] = 5703, - [5737] = 5682, - [5738] = 5682, - [5739] = 5697, - [5740] = 5697, - [5741] = 5700, - [5742] = 5682, - [5743] = 5700, - [5744] = 5694, - [5745] = 5697, - [5746] = 5689, - [5747] = 5697, - [5748] = 5691, - [5749] = 5689, - [5750] = 5690, - [5751] = 5682, - [5752] = 5690, - [5753] = 5685, - [5754] = 5061, - [5755] = 5705, - [5756] = 5689, - [5757] = 5691, - [5758] = 5705, - [5759] = 5703, - [5760] = 5708, - [5761] = 5690, - [5762] = 5694, - [5763] = 5691, - [5764] = 5700, - [5765] = 5703, - [5766] = 5682, - [5767] = 5705, - [5768] = 5703, - [5769] = 5708, - [5770] = 5690, - [5771] = 5685, - [5772] = 5694, - [5773] = 5689, - [5774] = 5682, - [5775] = 5697, - [5776] = 2552, - [5777] = 5685, - [5778] = 5694, - [5779] = 5697, - [5780] = 5705, - [5781] = 5691, - [5782] = 5697, - [5783] = 5700, - [5784] = 5689, - [5785] = 5690, - [5786] = 5691, - [5787] = 5700, - [5788] = 5689, - [5789] = 5689, - [5790] = 5790, - [5791] = 5708, - [5792] = 5704, - [5793] = 5694, - [5794] = 5055, - [5795] = 5795, - [5796] = 5682, - [5797] = 5691, - [5798] = 5061, - [5799] = 5704, - [5800] = 5697, - [5801] = 5708, - [5802] = 5704, - [5803] = 3084, - [5804] = 5804, - [5805] = 5805, - [5806] = 5806, - [5807] = 3096, - [5808] = 5808, - [5809] = 5808, - [5810] = 5810, - [5811] = 3076, - [5812] = 5808, - [5813] = 5813, - [5814] = 3118, - [5815] = 5815, - [5816] = 5806, - [5817] = 5817, - [5818] = 5810, - [5819] = 5805, - [5820] = 5820, - [5821] = 5806, - [5822] = 2552, - [5823] = 5810, - [5824] = 5808, - [5825] = 5808, - [5826] = 5805, - [5827] = 5805, - [5828] = 3082, - [5829] = 5806, - [5830] = 5805, - [5831] = 5810, - [5832] = 5832, - [5833] = 3082, - [5834] = 5805, - [5835] = 3084, - [5836] = 5614, - [5837] = 5805, - [5838] = 5808, - [5839] = 5810, - [5840] = 5806, - [5841] = 5805, - [5842] = 5805, - [5843] = 5810, + [5466] = 5466, + [5467] = 5467, + [5468] = 5468, + [5469] = 5225, + [5470] = 5470, + [5471] = 5471, + [5472] = 5225, + [5473] = 5462, + [5474] = 5253, + [5475] = 5463, + [5476] = 5476, + [5477] = 5464, + [5478] = 5463, + [5479] = 5466, + [5480] = 5463, + [5481] = 5467, + [5482] = 5468, + [5483] = 5483, + [5484] = 5470, + [5485] = 5463, + [5486] = 5463, + [5487] = 5465, + [5488] = 5465, + [5489] = 5463, + [5490] = 2424, + [5491] = 2409, + [5492] = 5483, + [5493] = 5476, + [5494] = 5471, + [5495] = 5463, + [5496] = 2546, + [5497] = 5225, + [5498] = 2420, + [5499] = 5231, + [5500] = 2746, + [5501] = 2453, + [5502] = 5238, + [5503] = 5231, + [5504] = 5463, + [5505] = 5463, + [5506] = 5462, + [5507] = 5463, + [5508] = 5238, + [5509] = 5509, + [5510] = 5483, + [5511] = 5231, + [5512] = 5463, + [5513] = 5231, + [5514] = 5462, + [5515] = 5465, + [5516] = 5465, + [5517] = 5483, + [5518] = 5238, + [5519] = 5476, + [5520] = 5471, + [5521] = 5483, + [5522] = 5465, + [5523] = 2404, + [5524] = 5470, + [5525] = 5225, + [5526] = 5462, + [5527] = 5462, + [5528] = 2628, + [5529] = 5253, + [5530] = 5463, + [5531] = 5531, + [5532] = 5468, + [5533] = 5483, + [5534] = 5462, + [5535] = 5462, + [5536] = 5463, + [5537] = 5467, + [5538] = 5463, + [5539] = 5253, + [5540] = 5462, + [5541] = 5463, + [5542] = 5466, + [5543] = 5464, + [5544] = 5238, + [5545] = 5253, + [5546] = 5465, + [5547] = 5483, + [5548] = 5462, + [5549] = 5238, + [5550] = 5550, + [5551] = 5368, + [5552] = 5552, + [5553] = 5226, + [5554] = 5554, + [5555] = 5410, + [5556] = 5556, + [5557] = 5224, + [5558] = 5433, + [5559] = 5559, + [5560] = 5560, + [5561] = 5561, + [5562] = 5240, + [5563] = 5391, + [5564] = 5387, + [5565] = 5413, + [5566] = 5254, + [5567] = 5226, + [5568] = 5556, + [5569] = 5421, + [5570] = 5570, + [5571] = 5418, + [5572] = 5412, + [5573] = 5554, + [5574] = 5574, + [5575] = 5254, + [5576] = 5554, + [5577] = 5230, + [5578] = 5230, + [5579] = 5396, + [5580] = 5554, + [5581] = 5570, + [5582] = 5574, + [5583] = 5561, + [5584] = 5226, + [5585] = 5585, + [5586] = 5556, + [5587] = 4964, + [5588] = 5224, + [5589] = 5556, + [5590] = 5574, + [5591] = 5556, + [5592] = 5554, + [5593] = 5554, + [5594] = 5585, + [5595] = 2308, + [5596] = 2323, + [5597] = 5550, + [5598] = 1685, + [5599] = 5552, + [5600] = 5574, + [5601] = 5554, + [5602] = 5561, + [5603] = 5554, + [5604] = 5399, + [5605] = 5561, + [5606] = 5561, + [5607] = 5554, + [5608] = 5554, + [5609] = 5253, + [5610] = 5371, + [5611] = 5369, + [5612] = 5367, + [5613] = 5554, + [5614] = 5556, + [5615] = 5350, + [5616] = 5225, + [5617] = 5554, + [5618] = 5231, + [5619] = 5574, + [5620] = 5254, + [5621] = 5253, + [5622] = 5353, + [5623] = 5623, + [5624] = 5556, + [5625] = 2323, + [5626] = 2308, + [5627] = 5554, + [5628] = 5556, + [5629] = 5561, + [5630] = 5630, + [5631] = 5631, + [5632] = 5363, + [5633] = 2461, + [5634] = 5240, + [5635] = 5561, + [5636] = 5224, + [5637] = 5427, + [5638] = 5225, + [5639] = 5639, + [5640] = 5230, + [5641] = 5230, + [5642] = 5556, + [5643] = 5554, + [5644] = 5231, + [5645] = 5362, + [5646] = 5240, + [5647] = 5366, + [5648] = 5648, + [5649] = 5238, + [5650] = 5554, + [5651] = 5574, + [5652] = 5240, + [5653] = 5554, + [5654] = 5554, + [5655] = 5574, + [5656] = 5226, + [5657] = 5623, + [5658] = 5224, + [5659] = 5254, + [5660] = 5238, + [5661] = 5468, + [5662] = 1729, + [5663] = 2323, + [5664] = 5664, + [5665] = 1737, + [5666] = 5666, + [5667] = 2420, + [5668] = 5668, + [5669] = 5669, + [5670] = 5240, + [5671] = 5668, + [5672] = 5668, + [5673] = 5669, + [5674] = 1731, + [5675] = 5675, + [5676] = 5230, + [5677] = 5677, + [5678] = 5240, + [5679] = 2409, + [5680] = 5253, + [5681] = 5669, + [5682] = 1743, + [5683] = 5668, + [5684] = 5230, + [5685] = 5664, + [5686] = 5226, + [5687] = 2404, + [5688] = 5471, + [5689] = 149, + [5690] = 5470, + [5691] = 5468, + [5692] = 5692, + [5693] = 5467, + [5694] = 5224, + [5695] = 5695, + [5696] = 150, + [5697] = 2466, + [5698] = 5698, + [5699] = 2557, + [5700] = 2424, + [5701] = 5669, + [5702] = 5254, + [5703] = 5254, + [5704] = 5470, + [5705] = 5664, + [5706] = 1959, + [5707] = 5476, + [5708] = 1978, + [5709] = 5668, + [5710] = 5664, + [5711] = 5225, + [5712] = 5231, + [5713] = 5464, + [5714] = 5466, + [5715] = 2549, + [5716] = 5669, + [5717] = 5466, + [5718] = 2498, + [5719] = 5471, + [5720] = 1739, + [5721] = 2444, + [5722] = 1970, + [5723] = 1976, + [5724] = 2450, + [5725] = 2431, + [5726] = 5253, + [5727] = 5668, + [5728] = 5226, + [5729] = 5225, + [5730] = 5664, + [5731] = 2445, + [5732] = 2449, + [5733] = 5231, + [5734] = 2455, + [5735] = 5669, + [5736] = 5736, + [5737] = 2308, + [5738] = 5467, + [5739] = 2552, + [5740] = 5238, + [5741] = 1742, + [5742] = 5742, + [5743] = 2433, + [5744] = 1734, + [5745] = 5668, + [5746] = 2473, + [5747] = 5669, + [5748] = 1733, + [5749] = 5749, + [5750] = 5664, + [5751] = 5464, + [5752] = 1741, + [5753] = 5476, + [5754] = 5754, + [5755] = 5668, + [5756] = 2759, + [5757] = 1730, + [5758] = 5664, + [5759] = 1732, + [5760] = 5760, + [5761] = 5668, + [5762] = 5224, + [5763] = 1735, + [5764] = 5669, + [5765] = 2566, + [5766] = 2559, + [5767] = 1740, + [5768] = 2555, + [5769] = 5769, + [5770] = 5669, + [5771] = 1736, + [5772] = 5664, + [5773] = 1738, + [5774] = 5774, + [5775] = 5664, + [5776] = 2554, + [5777] = 5225, + [5778] = 5253, + [5779] = 5226, + [5780] = 5780, + [5781] = 5468, + [5782] = 5782, + [5783] = 5780, + [5784] = 5780, + [5785] = 5785, + [5786] = 5230, + [5787] = 5231, + [5788] = 5467, + [5789] = 5466, + [5790] = 5780, + [5791] = 5464, + [5792] = 5560, + [5793] = 5793, + [5794] = 5785, + [5795] = 5240, + [5796] = 5785, + [5797] = 5238, + [5798] = 5780, + [5799] = 5254, + [5800] = 5782, + [5801] = 5780, + [5802] = 5476, + [5803] = 5253, + [5804] = 5780, + [5805] = 2420, + [5806] = 5782, + [5807] = 5780, + [5808] = 5780, + [5809] = 2323, + [5810] = 5224, + [5811] = 5782, + [5812] = 5780, + [5813] = 5785, + [5814] = 5780, + [5815] = 5623, + [5816] = 5782, + [5817] = 5226, + [5818] = 2409, + [5819] = 5819, + [5820] = 5230, + [5821] = 2424, + [5822] = 5785, + [5823] = 2308, + [5824] = 5824, + [5825] = 5780, + [5826] = 5780, + [5827] = 5780, + [5828] = 5828, + [5829] = 5829, + [5830] = 5585, + [5831] = 5570, + [5832] = 5240, + [5833] = 5225, + [5834] = 5224, + [5835] = 5780, + [5836] = 5836, + [5837] = 2404, + [5838] = 5470, + [5839] = 5471, + [5840] = 5254, + [5841] = 5841, + [5842] = 2461, + [5843] = 5238, [5844] = 5844, - [5845] = 5808, - [5846] = 3109, - [5847] = 5813, - [5848] = 5848, - [5849] = 5849, - [5850] = 5061, + [5845] = 5780, + [5846] = 5780, + [5847] = 5231, + [5848] = 5550, + [5849] = 5552, + [5850] = 5550, [5851] = 5851, - [5852] = 5852, - [5853] = 3124, - [5854] = 3139, - [5855] = 3122, - [5856] = 5062, - [5857] = 5849, - [5858] = 3132, - [5859] = 5852, - [5860] = 5848, - [5861] = 3128, - [5862] = 5844, - [5863] = 5848, - [5864] = 5844, - [5865] = 3130, - [5866] = 5866, - [5867] = 5832, - [5868] = 5851, - [5869] = 5866, - [5870] = 3135, - [5871] = 3104, - [5872] = 5851, + [5852] = 5585, + [5853] = 2548, + [5854] = 5851, + [5855] = 5470, + [5856] = 5851, + [5857] = 2649, + [5858] = 5464, + [5859] = 5476, + [5860] = 5851, + [5861] = 5466, + [5862] = 5862, + [5863] = 5466, + [5864] = 5471, + [5865] = 5865, + [5866] = 2461, + [5867] = 2308, + [5868] = 5467, + [5869] = 5468, + [5870] = 5464, + [5871] = 5862, + [5872] = 5862, [5873] = 5873, - [5874] = 5873, - [5875] = 5848, - [5876] = 5852, - [5877] = 5849, - [5878] = 5852, - [5879] = 5844, - [5880] = 5873, - [5881] = 3118, - [5882] = 5848, - [5883] = 5851, - [5884] = 5866, - [5885] = 3134, - [5886] = 5866, - [5887] = 5832, - [5888] = 3113, - [5889] = 5813, - [5890] = 5851, - [5891] = 5852, - [5892] = 3142, - [5893] = 5852, - [5894] = 5852, - [5895] = 5873, - [5896] = 5849, - [5897] = 3129, - [5898] = 3136, - [5899] = 5848, - [5900] = 5813, - [5901] = 3114, - [5902] = 5832, - [5903] = 5849, - [5904] = 5849, - [5905] = 5848, - [5906] = 5848, - [5907] = 5852, - [5908] = 3115, - [5909] = 5849, - [5910] = 3116, - [5911] = 5848, - [5912] = 5852, - [5913] = 3117, - [5914] = 5813, - [5915] = 5852, - [5916] = 5849, - [5917] = 3141, - [5918] = 5848, - [5919] = 3103, - [5920] = 5873, - [5921] = 5844, - [5922] = 3121, - [5923] = 5873, - [5924] = 3126, - [5925] = 5852, - [5926] = 5849, - [5927] = 5848, - [5928] = 5873, - [5929] = 5849, - [5930] = 5848, - [5931] = 5852, - [5932] = 5852, - [5933] = 5849, - [5934] = 5849, - [5935] = 5849, - [5936] = 5852, - [5937] = 5866, - [5938] = 5848, - [5939] = 5851, - [5940] = 5832, - [5941] = 5055, - [5942] = 5851, - [5943] = 5866, - [5944] = 5851, - [5945] = 3209, - [5946] = 5866, - [5947] = 5866, - [5948] = 5848, - [5949] = 5852, - [5950] = 5849, - [5951] = 5849, - [5952] = 5848, - [5953] = 5852, - [5954] = 3102, - [5955] = 5849, - [5956] = 5852, - [5957] = 5873, - [5958] = 5054, - [5959] = 5851, - [5960] = 3101, - [5961] = 5848, - [5962] = 5866, - [5963] = 5873, - [5964] = 5849, - [5965] = 5848, - [5966] = 5966, - [5967] = 5813, - [5968] = 2658, - [5969] = 2581, - [5970] = 5966, - [5971] = 5966, - [5972] = 5966, - [5973] = 5813, - [5974] = 2657, - [5975] = 5813, - [5976] = 5966, - [5977] = 5966, - [5978] = 2582, - [5979] = 5966, - [5980] = 2645, - [5981] = 2593, - [5982] = 5966, - [5983] = 5966, - [5984] = 5832, - [5985] = 5844, - [5986] = 5966, - [5987] = 5844, - [5988] = 5832, - [5989] = 3096, - [5990] = 2598, - [5991] = 5966, - [5992] = 2606, - [5993] = 5844, - [5994] = 5832, - [5995] = 5966, - [5996] = 5966, - [5997] = 2466, - [5998] = 5966, - [5999] = 5966, - [6000] = 5966, - [6001] = 3076, - [6002] = 2555, - [6003] = 2561, - [6004] = 5966, - [6005] = 2553, - [6006] = 2648, - [6007] = 2620, - [6008] = 2640, - [6009] = 5813, - [6010] = 2638, - [6011] = 2649, - [6012] = 2633, - [6013] = 2597, - [6014] = 2596, - [6015] = 2592, - [6016] = 2591, - [6017] = 2578, - [6018] = 3118, - [6019] = 2651, - [6020] = 2572, - [6021] = 2580, - [6022] = 5832, - [6023] = 2569, - [6024] = 2587, - [6025] = 2594, - [6026] = 2611, - [6027] = 2574, - [6028] = 2636, - [6029] = 5817, - [6030] = 5844, - [6031] = 2567, - [6032] = 3161, - [6033] = 2564, - [6034] = 2559, - [6035] = 2659, - [6036] = 2662, - [6037] = 2577, - [6038] = 2614, - [6039] = 2621, - [6040] = 2558, - [6041] = 2618, - [6042] = 2624, - [6043] = 2628, - [6044] = 2629, - [6045] = 2660, - [6046] = 2599, - [6047] = 5820, - [6048] = 2616, - [6049] = 2609, - [6050] = 2615, - [6051] = 2608, - [6052] = 2617, - [6053] = 2613, - [6054] = 6054, - [6055] = 6055, - [6056] = 3142, - [6057] = 3129, - [6058] = 3141, - [6059] = 3102, - [6060] = 6054, - [6061] = 3121, - [6062] = 4460, - [6063] = 6054, - [6064] = 6054, - [6065] = 4574, - [6066] = 6066, - [6067] = 3122, - [6068] = 3132, - [6069] = 6054, - [6070] = 6054, + [5874] = 5468, + [5875] = 5254, + [5876] = 5851, + [5877] = 5877, + [5878] = 5851, + [5879] = 5623, + [5880] = 5880, + [5881] = 5476, + [5882] = 5862, + [5883] = 5883, + [5884] = 5851, + [5885] = 5254, + [5886] = 5230, + [5887] = 5240, + [5888] = 5470, + [5889] = 5230, + [5890] = 5226, + [5891] = 5224, + [5892] = 5892, + [5893] = 5862, + [5894] = 5226, + [5895] = 5570, + [5896] = 5467, + [5897] = 5471, + [5898] = 5862, + [5899] = 5851, + [5900] = 5862, + [5901] = 5552, + [5902] = 5224, + [5903] = 5851, + [5904] = 2323, + [5905] = 5862, + [5906] = 5906, + [5907] = 5862, + [5908] = 5240, + [5909] = 5464, + [5910] = 1671, + [5911] = 5911, + [5912] = 1672, + [5913] = 1677, + [5914] = 5914, + [5915] = 5476, + [5916] = 5916, + [5917] = 1674, + [5918] = 5466, + [5919] = 5467, + [5920] = 5468, + [5921] = 5911, + [5922] = 5470, + [5923] = 5471, + [5924] = 5924, + [5925] = 5911, + [5926] = 5916, + [5927] = 5927, + [5928] = 5911, + [5929] = 5911, + [5930] = 5911, + [5931] = 5931, + [5932] = 5911, + [5933] = 5911, + [5934] = 1675, + [5935] = 5935, + [5936] = 5911, + [5937] = 1679, + [5938] = 5911, + [5939] = 1673, + [5940] = 5940, + [5941] = 5941, + [5942] = 5942, + [5943] = 5911, + [5944] = 5944, + [5945] = 5945, + [5946] = 5946, + [5947] = 5947, + [5948] = 5947, + [5949] = 5949, + [5950] = 5947, + [5951] = 5949, + [5952] = 5946, + [5953] = 5949, + [5954] = 5947, + [5955] = 2323, + [5956] = 5949, + [5957] = 5947, + [5958] = 5946, + [5959] = 5949, + [5960] = 5949, + [5961] = 5947, + [5962] = 5949, + [5963] = 2308, + [5964] = 5949, + [5965] = 5949, + [5966] = 5949, + [5967] = 5967, + [5968] = 5949, + [5969] = 5946, + [5970] = 5471, + [5971] = 5470, + [5972] = 5949, + [5973] = 5461, + [5974] = 5947, + [5975] = 5949, + [5976] = 5464, + [5977] = 5977, + [5978] = 5949, + [5979] = 5947, + [5980] = 5949, + [5981] = 5468, + [5982] = 5949, + [5983] = 5949, + [5984] = 5947, + [5985] = 5946, + [5986] = 5467, + [5987] = 5949, + [5988] = 5949, + [5989] = 5476, + [5990] = 5450, + [5991] = 5466, + [5992] = 5949, + [5993] = 5993, + [5994] = 5570, + [5995] = 5995, + [5996] = 5464, + [5997] = 5997, + [5998] = 5470, + [5999] = 5623, + [6000] = 6000, + [6001] = 5995, + [6002] = 6002, + [6003] = 5995, + [6004] = 6002, + [6005] = 6002, + [6006] = 6006, + [6007] = 6007, + [6008] = 6008, + [6009] = 5995, + [6010] = 5995, + [6011] = 5468, + [6012] = 5467, + [6013] = 6000, + [6014] = 6007, + [6015] = 5466, + [6016] = 5464, + [6017] = 6000, + [6018] = 6000, + [6019] = 6000, + [6020] = 6020, + [6021] = 5470, + [6022] = 5630, + [6023] = 6023, + [6024] = 5450, + [6025] = 6025, + [6026] = 5995, + [6027] = 5639, + [6028] = 5461, + [6029] = 5552, + [6030] = 2546, + [6031] = 5466, + [6032] = 5559, + [6033] = 5648, + [6034] = 6034, + [6035] = 5476, + [6036] = 6007, + [6037] = 6037, + [6038] = 5995, + [6039] = 5631, + [6040] = 5550, + [6041] = 6002, + [6042] = 5471, + [6043] = 5995, + [6044] = 6007, + [6045] = 6007, + [6046] = 5995, + [6047] = 5585, + [6048] = 5476, + [6049] = 6049, + [6050] = 2381, + [6051] = 6051, + [6052] = 5467, + [6053] = 6049, + [6054] = 5466, + [6055] = 6049, + [6056] = 5464, + [6057] = 6057, + [6058] = 6058, + [6059] = 5471, + [6060] = 2420, + [6061] = 2404, + [6062] = 5468, + [6063] = 6063, + [6064] = 6064, + [6065] = 6058, + [6066] = 6063, + [6067] = 6067, + [6068] = 6049, + [6069] = 5467, + [6070] = 6063, [6071] = 6071, - [6072] = 3113, - [6073] = 3124, - [6074] = 3139, - [6075] = 3126, - [6076] = 3117, - [6077] = 3114, - [6078] = 3103, - [6079] = 3104, - [6080] = 3115, - [6081] = 6081, - [6082] = 3116, - [6083] = 3134, - [6084] = 3130, - [6085] = 3101, - [6086] = 3136, - [6087] = 3135, - [6088] = 3128, - [6089] = 3109, - [6090] = 6066, - [6091] = 6081, - [6092] = 6055, - [6093] = 6081, - [6094] = 5844, - [6095] = 6095, - [6096] = 6066, - [6097] = 6055, - [6098] = 4563, - [6099] = 5844, - [6100] = 5832, - [6101] = 6055, - [6102] = 6095, - [6103] = 6071, - [6104] = 6071, - [6105] = 6071, - [6106] = 5813, - [6107] = 6066, - [6108] = 6066, - [6109] = 6095, - [6110] = 6081, - [6111] = 6071, - [6112] = 5832, - [6113] = 6055, - [6114] = 5813, - [6115] = 6081, - [6116] = 6116, - [6117] = 6071, - [6118] = 6066, - [6119] = 6119, - [6120] = 6120, - [6121] = 6121, - [6122] = 6122, - [6123] = 6081, - [6124] = 6066, - [6125] = 6081, - [6126] = 6126, - [6127] = 6127, - [6128] = 6128, - [6129] = 6119, - [6130] = 6120, - [6131] = 6128, - [6132] = 6071, - [6133] = 6127, - [6134] = 4460, - [6135] = 6135, - [6136] = 6055, - [6137] = 6055, - [6138] = 6071, + [6072] = 5476, + [6073] = 2382, + [6074] = 5468, + [6075] = 5464, + [6076] = 6049, + [6077] = 2380, + [6078] = 6078, + [6079] = 6079, + [6080] = 6063, + [6081] = 6058, + [6082] = 2409, + [6083] = 5471, + [6084] = 5466, + [6085] = 5470, + [6086] = 6058, + [6087] = 2546, + [6088] = 6058, + [6089] = 5470, + [6090] = 2424, + [6091] = 6091, + [6092] = 5844, + [6093] = 6093, + [6094] = 6094, + [6095] = 6091, + [6096] = 6096, + [6097] = 6096, + [6098] = 6098, + [6099] = 6091, + [6100] = 2461, + [6101] = 6101, + [6102] = 6096, + [6103] = 6103, + [6104] = 6096, + [6105] = 6101, + [6106] = 6106, + [6107] = 6091, + [6108] = 6098, + [6109] = 6109, + [6110] = 6106, + [6111] = 6101, + [6112] = 6098, + [6113] = 6113, + [6114] = 5819, + [6115] = 5828, + [6116] = 6101, + [6117] = 6091, + [6118] = 6098, + [6119] = 6096, + [6120] = 6091, + [6121] = 6091, + [6122] = 6098, + [6123] = 6101, + [6124] = 6096, + [6125] = 2546, + [6126] = 6101, + [6127] = 6098, + [6128] = 6113, + [6129] = 6129, + [6130] = 6098, + [6131] = 6096, + [6132] = 6098, + [6133] = 6101, + [6134] = 6091, + [6135] = 2546, + [6136] = 6091, + [6137] = 6098, + [6138] = 6138, [6139] = 6139, - [6140] = 6116, - [6141] = 6139, - [6142] = 6055, - [6143] = 6066, - [6144] = 6081, - [6145] = 6122, - [6146] = 6135, - [6147] = 2552, - [6148] = 6126, - [6149] = 6121, + [6140] = 5471, + [6141] = 6141, + [6142] = 6142, + [6143] = 6143, + [6144] = 6144, + [6145] = 6145, + [6146] = 6146, + [6147] = 6147, + [6148] = 6148, + [6149] = 6149, [6150] = 6150, [6151] = 6151, - [6152] = 6151, + [6152] = 6139, [6153] = 6153, - [6154] = 6120, - [6155] = 6153, - [6156] = 6150, - [6157] = 6157, - [6158] = 6150, - [6159] = 6157, - [6160] = 6119, - [6161] = 6151, - [6162] = 6095, - [6163] = 6071, - [6164] = 6128, - [6165] = 6095, - [6166] = 6157, + [6154] = 6146, + [6155] = 6145, + [6156] = 6149, + [6157] = 5468, + [6158] = 5467, + [6159] = 6144, + [6160] = 6160, + [6161] = 6139, + [6162] = 5466, + [6163] = 6150, + [6164] = 6153, + [6165] = 6148, + [6166] = 5464, [6167] = 6153, - [6168] = 6157, - [6169] = 6153, - [6170] = 6153, - [6171] = 6157, - [6172] = 6157, - [6173] = 6153, - [6174] = 6153, - [6175] = 6157, - [6176] = 6066, - [6177] = 6055, - [6178] = 6153, - [6179] = 6157, - [6180] = 6157, - [6181] = 6153, - [6182] = 6151, - [6183] = 6151, - [6184] = 6157, - [6185] = 6153, - [6186] = 6153, - [6187] = 6157, - [6188] = 6157, - [6189] = 6127, - [6190] = 6081, - [6191] = 6126, - [6192] = 6135, - [6193] = 6151, - [6194] = 6153, - [6195] = 6139, - [6196] = 6157, - [6197] = 6153, - [6198] = 6153, + [6168] = 2546, + [6169] = 6148, + [6170] = 6147, + [6171] = 6151, + [6172] = 6150, + [6173] = 6173, + [6174] = 6151, + [6175] = 6149, + [6176] = 6144, + [6177] = 6146, + [6178] = 5470, + [6179] = 6179, + [6180] = 6148, + [6181] = 6150, + [6182] = 6182, + [6183] = 6146, + [6184] = 6184, + [6185] = 6185, + [6186] = 6151, + [6187] = 5476, + [6188] = 6144, + [6189] = 6185, + [6190] = 6139, + [6191] = 6191, + [6192] = 6192, + [6193] = 6145, + [6194] = 2546, + [6195] = 6153, + [6196] = 6148, + [6197] = 6145, + [6198] = 6149, [6199] = 6199, - [6200] = 6116, + [6200] = 6200, [6201] = 6201, - [6202] = 6151, - [6203] = 6157, - [6204] = 6153, - [6205] = 6201, - [6206] = 6201, - [6207] = 6150, - [6208] = 6151, - [6209] = 6151, - [6210] = 6121, - [6211] = 6122, - [6212] = 6157, - [6213] = 6213, - [6214] = 6213, - [6215] = 6121, - [6216] = 6199, - [6217] = 6120, - [6218] = 6119, - [6219] = 6139, - [6220] = 6220, - [6221] = 6122, - [6222] = 6116, - [6223] = 6122, - [6224] = 6116, - [6225] = 6139, - [6226] = 6127, - [6227] = 6135, - [6228] = 2619, - [6229] = 6126, - [6230] = 6128, - [6231] = 6120, - [6232] = 6119, - [6233] = 6121, - [6234] = 6127, - [6235] = 6235, - [6236] = 6095, - [6237] = 6237, - [6238] = 6235, - [6239] = 6128, - [6240] = 6235, - [6241] = 6135, - [6242] = 6213, - [6243] = 6126, + [6202] = 6202, + [6203] = 6203, + [6204] = 6204, + [6205] = 6205, + [6206] = 6206, + [6207] = 6205, + [6208] = 6208, + [6209] = 6209, + [6210] = 6206, + [6211] = 6209, + [6212] = 6199, + [6213] = 6202, + [6214] = 6214, + [6215] = 6201, + [6216] = 6209, + [6217] = 6217, + [6218] = 6218, + [6219] = 6219, + [6220] = 6217, + [6221] = 6221, + [6222] = 6222, + [6223] = 6223, + [6224] = 6224, + [6225] = 6224, + [6226] = 6204, + [6227] = 6219, + [6228] = 6218, + [6229] = 6209, + [6230] = 6222, + [6231] = 6205, + [6232] = 6232, + [6233] = 6205, + [6234] = 6234, + [6235] = 6203, + [6236] = 6221, + [6237] = 6224, + [6238] = 6232, + [6239] = 6239, + [6240] = 6222, + [6241] = 6241, + [6242] = 6224, + [6243] = 6243, [6244] = 6244, - [6245] = 6245, - [6246] = 6246, - [6247] = 6119, - [6248] = 6248, - [6249] = 6249, - [6250] = 6250, - [6251] = 6066, - [6252] = 6252, + [6245] = 6222, + [6246] = 6221, + [6247] = 6224, + [6248] = 6222, + [6249] = 6219, + [6250] = 6218, + [6251] = 6199, + [6252] = 6209, [6253] = 6253, - [6254] = 6254, - [6255] = 6248, - [6256] = 6256, - [6257] = 6244, - [6258] = 6250, - [6259] = 6259, - [6260] = 6260, - [6261] = 6261, - [6262] = 6261, - [6263] = 6263, - [6264] = 6264, - [6265] = 6259, - [6266] = 6244, - [6267] = 6139, - [6268] = 6268, - [6269] = 6244, - [6270] = 6270, - [6271] = 6271, - [6272] = 6252, - [6273] = 6245, - [6274] = 6271, - [6275] = 6275, - [6276] = 6276, - [6277] = 6271, - [6278] = 6116, - [6279] = 6139, - [6280] = 6276, - [6281] = 6281, - [6282] = 6244, - [6283] = 6055, - [6284] = 6275, - [6285] = 6285, - [6286] = 6245, - [6287] = 6271, - [6288] = 6276, - [6289] = 6275, - [6290] = 6245, - [6291] = 6245, - [6292] = 6268, - [6293] = 6128, - [6294] = 6275, - [6295] = 6268, - [6296] = 6263, - [6297] = 6245, - [6298] = 6276, - [6299] = 6271, - [6300] = 6120, - [6301] = 6254, - [6302] = 6246, - [6303] = 6303, + [6254] = 6200, + [6255] = 6201, + [6256] = 6232, + [6257] = 6257, + [6258] = 6257, + [6259] = 6253, + [6260] = 6205, + [6261] = 6217, + [6262] = 6205, + [6263] = 6234, + [6264] = 6209, + [6265] = 6265, + [6266] = 6221, + [6267] = 6206, + [6268] = 6232, + [6269] = 5461, + [6270] = 6265, + [6271] = 6239, + [6272] = 6202, + [6273] = 6234, + [6274] = 6202, + [6275] = 6201, + [6276] = 6221, + [6277] = 6221, + [6278] = 6278, + [6279] = 6279, + [6280] = 6201, + [6281] = 6205, + [6282] = 6221, + [6283] = 6217, + [6284] = 6223, + [6285] = 6234, + [6286] = 6203, + [6287] = 6203, + [6288] = 6288, + [6289] = 6223, + [6290] = 6206, + [6291] = 6241, + [6292] = 6205, + [6293] = 6239, + [6294] = 6209, + [6295] = 6201, + [6296] = 6209, + [6297] = 6224, + [6298] = 6257, + [6299] = 6253, + [6300] = 6253, + [6301] = 6234, + [6302] = 6221, + [6303] = 6234, [6304] = 6304, - [6305] = 6305, - [6306] = 6121, - [6307] = 6245, - [6308] = 6264, - [6309] = 6309, - [6310] = 6245, - [6311] = 6311, - [6312] = 6244, - [6313] = 6313, - [6314] = 6314, - [6315] = 6303, - [6316] = 6245, - [6317] = 6066, - [6318] = 6245, - [6319] = 6319, - [6320] = 6253, - [6321] = 6081, - [6322] = 6246, - [6323] = 6081, - [6324] = 6244, - [6325] = 6127, - [6326] = 6256, - [6327] = 6246, - [6328] = 6254, - [6329] = 6276, - [6330] = 6271, - [6331] = 3551, - [6332] = 6119, - [6333] = 6120, - [6334] = 6334, - [6335] = 6314, - [6336] = 6126, - [6337] = 6337, - [6338] = 6338, - [6339] = 6271, - [6340] = 6276, - [6341] = 6245, - [6342] = 6055, - [6343] = 6139, - [6344] = 6344, - [6345] = 6135, - [6346] = 6268, - [6347] = 6254, - [6348] = 6245, - [6349] = 6268, - [6350] = 6271, + [6305] = 6200, + [6306] = 6306, + [6307] = 6265, + [6308] = 6257, + [6309] = 6219, + [6310] = 6310, + [6311] = 6221, + [6312] = 6209, + [6313] = 6224, + [6314] = 6221, + [6315] = 6315, + [6316] = 6217, + [6317] = 6223, + [6318] = 6232, + [6319] = 6222, + [6320] = 6206, + [6321] = 6203, + [6322] = 6322, + [6323] = 6223, + [6324] = 6221, + [6325] = 6219, + [6326] = 6218, + [6327] = 6221, + [6328] = 6232, + [6329] = 6206, + [6330] = 6217, + [6331] = 6265, + [6332] = 6199, + [6333] = 6223, + [6334] = 6204, + [6335] = 6205, + [6336] = 6202, + [6337] = 6209, + [6338] = 6205, + [6339] = 6204, + [6340] = 6203, + [6341] = 6209, + [6342] = 6204, + [6343] = 6209, + [6344] = 6205, + [6345] = 6205, + [6346] = 6205, + [6347] = 6217, + [6348] = 6348, + [6349] = 6200, + [6350] = 6232, [6351] = 6351, - [6352] = 6276, - [6353] = 6246, - [6354] = 6275, - [6355] = 6128, - [6356] = 6246, - [6357] = 6254, - [6358] = 6116, - [6359] = 6071, - [6360] = 6135, - [6361] = 6361, - [6362] = 6254, - [6363] = 6244, - [6364] = 6271, - [6365] = 6246, - [6366] = 6245, - [6367] = 6246, - [6368] = 6254, - [6369] = 6254, - [6370] = 6246, - [6371] = 6304, - [6372] = 6271, - [6373] = 6126, - [6374] = 6254, - [6375] = 6375, - [6376] = 6344, - [6377] = 6281, - [6378] = 6268, - [6379] = 6344, - [6380] = 6380, - [6381] = 6381, - [6382] = 6270, - [6383] = 6383, - [6384] = 6276, - [6385] = 6276, - [6386] = 6071, - [6387] = 6304, - [6388] = 6244, - [6389] = 6271, - [6390] = 6095, - [6391] = 6391, - [6392] = 6119, - [6393] = 6271, - [6394] = 6246, - [6395] = 6128, - [6396] = 6254, - [6397] = 6397, - [6398] = 6276, - [6399] = 6334, - [6400] = 6271, - [6401] = 6271, - [6402] = 6361, - [6403] = 6122, - [6404] = 6361, - [6405] = 6276, - [6406] = 6406, - [6407] = 6260, - [6408] = 6304, - [6409] = 6271, - [6410] = 6276, - [6411] = 6254, - [6412] = 6244, - [6413] = 6281, + [6352] = 6221, + [6353] = 6224, + [6354] = 6201, + [6355] = 6205, + [6356] = 6199, + [6357] = 6221, + [6358] = 6222, + [6359] = 6359, + [6360] = 6199, + [6361] = 6234, + [6362] = 6202, + [6363] = 6218, + [6364] = 6219, + [6365] = 6365, + [6366] = 6257, + [6367] = 6221, + [6368] = 6253, + [6369] = 6205, + [6370] = 6253, + [6371] = 6265, + [6372] = 6201, + [6373] = 6373, + [6374] = 6218, + [6375] = 6205, + [6376] = 6223, + [6377] = 6265, + [6378] = 6257, + [6379] = 6203, + [6380] = 6200, + [6381] = 6205, + [6382] = 6265, + [6383] = 6209, + [6384] = 6384, + [6385] = 6222, + [6386] = 6217, + [6387] = 6221, + [6388] = 6224, + [6389] = 6265, + [6390] = 6390, + [6391] = 6232, + [6392] = 6392, + [6393] = 6219, + [6394] = 6221, + [6395] = 6218, + [6396] = 6232, + [6397] = 6218, + [6398] = 6200, + [6399] = 6217, + [6400] = 6206, + [6401] = 6401, + [6402] = 6234, + [6403] = 6223, + [6404] = 6217, + [6405] = 6405, + [6406] = 6199, + [6407] = 6219, + [6408] = 6203, + [6409] = 6202, + [6410] = 6209, + [6411] = 6223, + [6412] = 6202, + [6413] = 6199, [6414] = 6414, - [6415] = 6246, - [6416] = 6245, - [6417] = 6276, - [6418] = 6271, - [6419] = 6244, - [6420] = 6121, - [6421] = 6244, - [6422] = 6122, - [6423] = 6245, - [6424] = 6276, - [6425] = 6425, - [6426] = 6246, - [6427] = 6254, - [6428] = 6314, - [6429] = 6121, - [6430] = 6334, - [6431] = 6254, - [6432] = 6432, - [6433] = 6268, - [6434] = 6249, - [6435] = 6380, - [6436] = 6268, - [6437] = 6437, + [6415] = 6415, + [6416] = 6416, + [6417] = 6234, + [6418] = 6257, + [6419] = 6221, + [6420] = 6257, + [6421] = 6205, + [6422] = 6221, + [6423] = 6265, + [6424] = 6234, + [6425] = 6241, + [6426] = 6202, + [6427] = 6204, + [6428] = 6224, + [6429] = 6218, + [6430] = 6202, + [6431] = 6232, + [6432] = 6222, + [6433] = 6219, + [6434] = 6203, + [6435] = 6435, + [6436] = 6201, + [6437] = 6223, [6438] = 6438, - [6439] = 6271, - [6440] = 6276, - [6441] = 6270, - [6442] = 6244, - [6443] = 6245, - [6444] = 6444, - [6445] = 6245, - [6446] = 6127, + [6439] = 6241, + [6440] = 6205, + [6441] = 6204, + [6442] = 6224, + [6443] = 6219, + [6444] = 6239, + [6445] = 6253, + [6446] = 6218, [6447] = 6447, - [6448] = 6268, - [6449] = 6246, - [6450] = 6256, - [6451] = 6276, - [6452] = 6095, - [6453] = 6276, - [6454] = 6437, - [6455] = 6246, - [6456] = 6246, - [6457] = 6246, - [6458] = 6127, - [6459] = 6254, - [6460] = 6437, - [6461] = 6135, - [6462] = 6126, - [6463] = 6254, - [6464] = 6122, - [6465] = 6254, - [6466] = 6120, - [6467] = 6467, - [6468] = 6116, - [6469] = 6254, - [6470] = 6344, - [6471] = 6246, - [6472] = 6121, - [6473] = 3049, - [6474] = 3449, + [6448] = 6253, + [6449] = 6219, + [6450] = 6199, + [6451] = 6204, + [6452] = 6253, + [6453] = 6209, + [6454] = 6257, + [6455] = 6222, + [6456] = 6206, + [6457] = 6239, + [6458] = 6458, + [6459] = 6218, + [6460] = 6234, + [6461] = 6232, + [6462] = 6202, + [6463] = 6206, + [6464] = 6217, + [6465] = 6223, + [6466] = 6209, + [6467] = 6204, + [6468] = 6257, + [6469] = 6469, + [6470] = 6199, + [6471] = 6471, + [6472] = 6472, + [6473] = 6473, + [6474] = 6474, [6475] = 6475, [6476] = 6476, [6477] = 6477, - [6478] = 3526, + [6478] = 6478, [6479] = 6479, [6480] = 6480, - [6481] = 3502, - [6482] = 3503, - [6483] = 151, - [6484] = 3046, - [6485] = 6485, - [6486] = 6477, - [6487] = 2350, - [6488] = 6477, + [6481] = 6481, + [6482] = 6482, + [6483] = 6483, + [6484] = 6483, + [6485] = 6475, + [6486] = 6486, + [6487] = 6487, + [6488] = 6488, [6489] = 6489, - [6490] = 150, - [6491] = 6127, - [6492] = 6311, - [6493] = 6493, - [6494] = 6494, - [6495] = 6305, - [6496] = 2357, - [6497] = 2358, + [6490] = 6477, + [6491] = 6483, + [6492] = 6492, + [6493] = 6481, + [6494] = 6472, + [6495] = 6488, + [6496] = 6496, + [6497] = 6497, [6498] = 6498, - [6499] = 3049, - [6500] = 6337, - [6501] = 6501, - [6502] = 2346, - [6503] = 3046, - [6504] = 2356, - [6505] = 2345, - [6506] = 6506, - [6507] = 3521, - [6508] = 2351, + [6499] = 6499, + [6500] = 6500, + [6501] = 6479, + [6502] = 6498, + [6503] = 6503, + [6504] = 6504, + [6505] = 6505, + [6506] = 6499, + [6507] = 6507, + [6508] = 6471, [6509] = 6509, - [6510] = 6510, - [6511] = 2352, - [6512] = 3523, - [6513] = 3458, - [6514] = 2343, + [6510] = 6503, + [6511] = 6511, + [6512] = 6504, + [6513] = 6474, + [6514] = 6514, [6515] = 6515, - [6516] = 6485, - [6517] = 6510, - [6518] = 6477, - [6519] = 6519, - [6520] = 6313, - [6521] = 2349, - [6522] = 6510, - [6523] = 6122, - [6524] = 6375, - [6525] = 6477, + [6516] = 6478, + [6517] = 6517, + [6518] = 6518, + [6519] = 6505, + [6520] = 6520, + [6521] = 6521, + [6522] = 6522, + [6523] = 6478, + [6524] = 6524, + [6525] = 6511, [6526] = 6526, [6527] = 6527, - [6528] = 2342, - [6529] = 2353, - [6530] = 6095, + [6528] = 6527, + [6529] = 6529, + [6530] = 6530, [6531] = 6531, - [6532] = 6139, - [6533] = 6533, - [6534] = 6467, - [6535] = 2355, + [6532] = 6517, + [6533] = 6514, + [6534] = 6534, + [6535] = 6535, [6536] = 6536, - [6537] = 6119, - [6538] = 6447, - [6539] = 6485, - [6540] = 6485, - [6541] = 6485, - [6542] = 6444, - [6543] = 6285, - [6544] = 6438, - [6545] = 2348, + [6537] = 6515, + [6538] = 6538, + [6539] = 6539, + [6540] = 6540, + [6541] = 6527, + [6542] = 6517, + [6543] = 6543, + [6544] = 6511, + [6545] = 6514, [6546] = 6546, - [6547] = 6477, - [6548] = 2354, - [6549] = 6425, - [6550] = 6550, - [6551] = 6414, - [6552] = 6510, + [6547] = 6547, + [6548] = 6543, + [6549] = 6505, + [6550] = 6515, + [6551] = 6535, + [6552] = 6504, [6553] = 6553, - [6554] = 6120, - [6555] = 6128, - [6556] = 6556, - [6557] = 3551, - [6558] = 6406, - [6559] = 3584, - [6560] = 6116, - [6561] = 6479, - [6562] = 6338, - [6563] = 6309, - [6564] = 3448, - [6565] = 3585, - [6566] = 6126, - [6567] = 6391, - [6568] = 6383, - [6569] = 6381, - [6570] = 6135, + [6554] = 6503, + [6555] = 6479, + [6556] = 6509, + [6557] = 6557, + [6558] = 6536, + [6559] = 6515, + [6560] = 6536, + [6561] = 6535, + [6562] = 6499, + [6563] = 6543, + [6564] = 6498, + [6565] = 6497, + [6566] = 6483, + [6567] = 6522, + [6568] = 6568, + [6569] = 6478, + [6570] = 6514, [6571] = 6571, - [6572] = 6281, - [6573] = 6361, + [6572] = 6572, + [6573] = 6517, [6574] = 6574, - [6575] = 6314, + [6575] = 6477, [6576] = 6576, - [6577] = 6576, - [6578] = 6314, + [6577] = 6488, + [6578] = 6578, [6579] = 6579, - [6580] = 6580, - [6581] = 6581, - [6582] = 6579, + [6580] = 6539, + [6581] = 6531, + [6582] = 6511, [6583] = 6583, - [6584] = 6576, - [6585] = 3209, + [6584] = 6481, + [6585] = 6585, [6586] = 6586, - [6587] = 6574, - [6588] = 6588, - [6589] = 6270, - [6590] = 6270, - [6591] = 6576, - [6592] = 6095, - [6593] = 6583, - [6594] = 6576, - [6595] = 6334, - [6596] = 6361, - [6597] = 6256, - [6598] = 6581, - [6599] = 6586, - [6600] = 6256, - [6601] = 6580, - [6602] = 6437, - [6603] = 6437, - [6604] = 6576, - [6605] = 6605, - [6606] = 6576, - [6607] = 6588, - [6608] = 6605, - [6609] = 6334, - [6610] = 6281, - [6611] = 6126, - [6612] = 6612, - [6613] = 6361, - [6614] = 6614, + [6587] = 6524, + [6588] = 6527, + [6589] = 6522, + [6590] = 6590, + [6591] = 6481, + [6592] = 6592, + [6593] = 6593, + [6594] = 6488, + [6595] = 6595, + [6596] = 6492, + [6597] = 6505, + [6598] = 6504, + [6599] = 6473, + [6600] = 6600, + [6601] = 6503, + [6602] = 6477, + [6603] = 6498, + [6604] = 6499, + [6605] = 6509, + [6606] = 6471, + [6607] = 263, + [6608] = 6503, + [6609] = 6504, + [6610] = 6505, + [6611] = 6474, + [6612] = 6499, + [6613] = 6498, + [6614] = 6486, [6615] = 6615, - [6616] = 6334, - [6617] = 6617, - [6618] = 6270, - [6619] = 6619, - [6620] = 6620, - [6621] = 6619, + [6616] = 6511, + [6617] = 6475, + [6618] = 6592, + [6619] = 6497, + [6620] = 6515, + [6621] = 6479, [6622] = 6622, [6623] = 6623, - [6624] = 6095, - [6625] = 6612, - [6626] = 6334, - [6627] = 6314, - [6628] = 6116, - [6629] = 6437, - [6630] = 2800, - [6631] = 6617, - [6632] = 6617, - [6633] = 6612, - [6634] = 6612, - [6635] = 6619, - [6636] = 6636, - [6637] = 6619, - [6638] = 6135, - [6639] = 6361, - [6640] = 6256, - [6641] = 6619, - [6642] = 6619, + [6624] = 6483, + [6625] = 2546, + [6626] = 6483, + [6627] = 6496, + [6628] = 6628, + [6629] = 6488, + [6630] = 6543, + [6631] = 6479, + [6632] = 6475, + [6633] = 6486, + [6634] = 6487, + [6635] = 6489, + [6636] = 6474, + [6637] = 6637, + [6638] = 6477, + [6639] = 6639, + [6640] = 6640, + [6641] = 6472, + [6642] = 6642, [6643] = 6643, - [6644] = 6314, - [6645] = 6645, - [6646] = 6281, - [6647] = 6619, - [6648] = 6119, - [6649] = 6281, - [6650] = 6650, - [6651] = 6128, - [6652] = 6120, - [6653] = 6128, - [6654] = 6654, - [6655] = 6120, - [6656] = 6126, - [6657] = 6135, - [6658] = 6658, - [6659] = 6659, - [6660] = 6361, - [6661] = 2797, - [6662] = 6612, - [6663] = 6127, - [6664] = 6314, - [6665] = 6139, - [6666] = 6119, - [6667] = 6256, - [6668] = 6668, - [6669] = 6270, - [6670] = 6334, - [6671] = 6617, - [6672] = 6672, - [6673] = 6673, - [6674] = 6116, - [6675] = 6617, - [6676] = 6676, - [6677] = 6437, - [6678] = 6678, - [6679] = 6127, - [6680] = 6619, - [6681] = 6139, - [6682] = 6437, - [6683] = 6121, - [6684] = 6619, - [6685] = 6612, - [6686] = 6122, - [6687] = 6612, - [6688] = 6121, - [6689] = 6689, - [6690] = 6270, - [6691] = 6612, - [6692] = 6095, - [6693] = 6693, - [6694] = 6617, - [6695] = 6650, - [6696] = 6612, - [6697] = 6256, + [6644] = 6644, + [6645] = 6474, + [6646] = 6479, + [6647] = 6481, + [6648] = 6492, + [6649] = 6649, + [6650] = 6483, + [6651] = 6481, + [6652] = 6522, + [6653] = 6535, + [6654] = 6527, + [6655] = 6536, + [6656] = 6656, + [6657] = 6481, + [6658] = 6492, + [6659] = 6517, + [6660] = 6514, + [6661] = 6661, + [6662] = 6503, + [6663] = 6504, + [6664] = 6505, + [6665] = 253, + [6666] = 6666, + [6667] = 6667, + [6668] = 6535, + [6669] = 6536, + [6670] = 6488, + [6671] = 6671, + [6672] = 6477, + [6673] = 6515, + [6674] = 6515, + [6675] = 6497, + [6676] = 6479, + [6677] = 6511, + [6678] = 6592, + [6679] = 6679, + [6680] = 6680, + [6681] = 6498, + [6682] = 6505, + [6683] = 6499, + [6684] = 6483, + [6685] = 6489, + [6686] = 6504, + [6687] = 6687, + [6688] = 6503, + [6689] = 6509, + [6690] = 6481, + [6691] = 6471, + [6692] = 6487, + [6693] = 6503, + [6694] = 6504, + [6695] = 6505, + [6696] = 6543, + [6697] = 6486, [6698] = 6698, - [6699] = 6619, - [6700] = 6700, - [6701] = 6701, - [6702] = 6702, - [6703] = 6281, - [6704] = 6704, - [6705] = 6705, - [6706] = 6122, - [6707] = 6707, - [6708] = 6612, - [6709] = 6709, - [6710] = 6519, - [6711] = 6437, - [6712] = 6493, - [6713] = 6498, - [6714] = 6550, - [6715] = 6527, - [6716] = 6556, - [6717] = 6515, - [6718] = 6501, - [6719] = 6571, - [6720] = 6720, - [6721] = 6531, - [6722] = 1496, - [6723] = 2397, - [6724] = 2410, - [6725] = 2391, - [6726] = 6726, - [6727] = 3424, - [6728] = 1497, - [6729] = 6729, - [6730] = 6720, - [6731] = 6731, - [6732] = 6095, - [6733] = 6720, - [6734] = 6095, - [6735] = 6720, - [6736] = 6281, - [6737] = 6270, - [6738] = 6361, - [6739] = 6334, - [6740] = 6256, - [6741] = 6741, - [6742] = 6314, - [6743] = 3176, - [6744] = 6744, - [6745] = 6745, - [6746] = 6746, - [6747] = 6747, - [6748] = 6748, - [6749] = 6745, - [6750] = 6748, - [6751] = 6747, - [6752] = 6747, - [6753] = 6748, - [6754] = 6745, - [6755] = 6748, - [6756] = 6756, + [6699] = 6699, + [6700] = 6475, + [6701] = 6471, + [6702] = 6509, + [6703] = 6499, + [6704] = 6498, + [6705] = 6592, + [6706] = 6539, + [6707] = 6497, + [6708] = 6503, + [6709] = 6504, + [6710] = 6531, + [6711] = 6488, + [6712] = 6511, + [6713] = 6483, + [6714] = 6505, + [6715] = 6483, + [6716] = 6524, + [6717] = 6511, + [6718] = 6481, + [6719] = 6503, + [6720] = 6504, + [6721] = 6505, + [6722] = 6515, + [6723] = 6723, + [6724] = 6724, + [6725] = 6481, + [6726] = 6492, + [6727] = 6727, + [6728] = 6728, + [6729] = 6479, + [6730] = 6730, + [6731] = 6477, + [6732] = 6732, + [6733] = 6489, + [6734] = 6734, + [6735] = 6473, + [6736] = 6483, + [6737] = 6536, + [6738] = 6509, + [6739] = 6486, + [6740] = 6535, + [6741] = 6481, + [6742] = 6503, + [6743] = 6504, + [6744] = 6505, + [6745] = 6478, + [6746] = 6479, + [6747] = 6475, + [6748] = 6514, + [6749] = 6517, + [6750] = 6474, + [6751] = 6751, + [6752] = 6483, + [6753] = 6473, + [6754] = 6527, + [6755] = 6522, + [6756] = 6478, [6757] = 6757, - [6758] = 6745, - [6759] = 6747, - [6760] = 3486, - [6761] = 6745, - [6762] = 6748, - [6763] = 6745, - [6764] = 6747, - [6765] = 6748, - [6766] = 6756, - [6767] = 3191, - [6768] = 3155, - [6769] = 6747, - [6770] = 3149, - [6771] = 6748, - [6772] = 6772, - [6773] = 6748, - [6774] = 3460, + [6758] = 6483, + [6759] = 6475, + [6760] = 6524, + [6761] = 6486, + [6762] = 6481, + [6763] = 6503, + [6764] = 6504, + [6765] = 6505, + [6766] = 6593, + [6767] = 6767, + [6768] = 6768, + [6769] = 6769, + [6770] = 6592, + [6771] = 6473, + [6772] = 6505, + [6773] = 6474, + [6774] = 6504, [6775] = 6775, - [6776] = 6776, - [6777] = 6777, + [6776] = 6503, + [6777] = 6471, [6778] = 6778, - [6779] = 6748, - [6780] = 6744, - [6781] = 6781, - [6782] = 6756, - [6783] = 6748, - [6784] = 6748, - [6785] = 3209, - [6786] = 6747, - [6787] = 6747, - [6788] = 6781, - [6789] = 6744, - [6790] = 6778, - [6791] = 6777, - [6792] = 6756, - [6793] = 6776, - [6794] = 6775, - [6795] = 6772, - [6796] = 6747, - [6797] = 6748, - [6798] = 3390, - [6799] = 6756, - [6800] = 6756, - [6801] = 6748, - [6802] = 6748, - [6803] = 6747, - [6804] = 6772, - [6805] = 6775, - [6806] = 6776, - [6807] = 6778, - [6808] = 6777, - [6809] = 6745, - [6810] = 6748, - [6811] = 6781, - [6812] = 6748, - [6813] = 6756, - [6814] = 6814, - [6815] = 6658, - [6816] = 6256, - [6817] = 6270, + [6779] = 6483, + [6780] = 6780, + [6781] = 6474, + [6782] = 6481, + [6783] = 6503, + [6784] = 6504, + [6785] = 6505, + [6786] = 6489, + [6787] = 6483, + [6788] = 6543, + [6789] = 6477, + [6790] = 6487, + [6791] = 6492, + [6792] = 6792, + [6793] = 6479, + [6794] = 6483, + [6795] = 6475, + [6796] = 6796, + [6797] = 6522, + [6798] = 6527, + [6799] = 6483, + [6800] = 6498, + [6801] = 6592, + [6802] = 6481, + [6803] = 6503, + [6804] = 6504, + [6805] = 6505, + [6806] = 6806, + [6807] = 6807, + [6808] = 6808, + [6809] = 6517, + [6810] = 6514, + [6811] = 6486, + [6812] = 6497, + [6813] = 6483, + [6814] = 6499, + [6815] = 6487, + [6816] = 6535, + [6817] = 6536, [6818] = 6818, - [6819] = 6819, - [6820] = 6820, - [6821] = 6821, - [6822] = 6822, - [6823] = 6823, - [6824] = 6819, - [6825] = 6623, - [6826] = 6314, - [6827] = 6819, - [6828] = 6819, - [6829] = 6814, - [6830] = 6819, - [6831] = 3046, - [6832] = 6281, - [6833] = 6361, - [6834] = 3046, + [6819] = 6515, + [6820] = 6543, + [6821] = 6483, + [6822] = 6489, + [6823] = 6511, + [6824] = 6477, + [6825] = 6825, + [6826] = 6496, + [6827] = 6483, + [6828] = 6481, + [6829] = 6492, + [6830] = 6488, + [6831] = 6481, + [6832] = 6642, + [6833] = 6505, + [6834] = 6504, [6835] = 6835, - [6836] = 6835, - [6837] = 2300, - [6838] = 6334, + [6836] = 6503, + [6837] = 6509, + [6838] = 6471, [6839] = 6839, - [6840] = 6840, - [6841] = 6095, - [6842] = 3049, - [6843] = 6823, - [6844] = 6702, - [6845] = 6704, - [6846] = 6705, - [6847] = 6709, - [6848] = 6819, - [6849] = 6334, - [6850] = 6835, - [6851] = 6361, - [6852] = 6281, - [6853] = 6823, - [6854] = 6819, - [6855] = 6314, - [6856] = 6819, - [6857] = 6437, - [6858] = 6256, - [6859] = 6270, - [6860] = 6654, - [6861] = 3247, + [6840] = 6472, + [6841] = 6478, + [6842] = 6842, + [6843] = 6488, + [6844] = 6844, + [6845] = 6845, + [6846] = 6846, + [6847] = 6847, + [6848] = 6499, + [6849] = 6498, + [6850] = 6850, + [6851] = 6497, + [6852] = 6852, + [6853] = 6853, + [6854] = 6854, + [6855] = 6855, + [6856] = 6856, + [6857] = 6857, + [6858] = 6858, + [6859] = 6855, + [6860] = 6860, + [6861] = 6861, [6862] = 6862, - [6863] = 6437, - [6864] = 6823, - [6865] = 6840, + [6863] = 6863, + [6864] = 6864, + [6865] = 6865, [6866] = 6866, - [6867] = 6867, - [6868] = 6835, - [6869] = 6676, - [6870] = 6819, - [6871] = 6835, - [6872] = 6835, - [6873] = 6835, - [6874] = 6689, - [6875] = 6835, - [6876] = 6839, - [6877] = 6814, - [6878] = 6707, - [6879] = 6622, - [6880] = 6819, - [6881] = 6643, - [6882] = 6835, - [6883] = 6814, - [6884] = 6818, - [6885] = 6700, - [6886] = 6819, - [6887] = 3049, - [6888] = 6820, - [6889] = 6822, - [6890] = 6819, - [6891] = 6678, - [6892] = 6819, - [6893] = 6819, - [6894] = 6701, - [6895] = 6698, - [6896] = 6672, - [6897] = 6645, - [6898] = 6615, - [6899] = 6819, - [6900] = 6636, - [6901] = 6819, - [6902] = 6620, - [6903] = 6903, - [6904] = 6819, - [6905] = 6614, - [6906] = 6823, - [6907] = 6814, - [6908] = 6908, - [6909] = 6823, - [6910] = 6814, - [6911] = 6814, - [6912] = 6668, - [6913] = 6823, - [6914] = 3277, - [6915] = 3409, - [6916] = 6776, - [6917] = 6917, - [6918] = 6918, - [6919] = 6775, - [6920] = 6920, - [6921] = 6918, - [6922] = 6772, - [6923] = 6923, - [6924] = 6924, - [6925] = 6923, - [6926] = 6778, - [6927] = 6588, - [6928] = 6777, - [6929] = 6605, - [6930] = 6918, - [6931] = 6744, - [6932] = 6920, - [6933] = 6918, - [6934] = 6574, - [6935] = 6781, - [6936] = 6920, - [6937] = 6920, - [6938] = 6918, - [6939] = 6579, - [6940] = 6772, - [6941] = 6923, - [6942] = 6580, - [6943] = 6581, - [6944] = 6944, - [6945] = 6583, - [6946] = 6588, - [6947] = 6923, - [6948] = 6586, - [6949] = 6775, - [6950] = 6776, - [6951] = 6777, - [6952] = 6778, - [6953] = 6923, - [6954] = 6918, - [6955] = 3176, - [6956] = 6605, - [6957] = 6918, + [6867] = 2740, + [6868] = 6868, + [6869] = 6869, + [6870] = 6870, + [6871] = 6871, + [6872] = 6872, + [6873] = 6873, + [6874] = 6874, + [6875] = 6875, + [6876] = 6876, + [6877] = 6852, + [6878] = 6874, + [6879] = 6879, + [6880] = 6875, + [6881] = 6881, + [6882] = 6882, + [6883] = 6883, + [6884] = 2682, + [6885] = 6885, + [6886] = 6885, + [6887] = 6887, + [6888] = 2685, + [6889] = 2763, + [6890] = 6890, + [6891] = 6891, + [6892] = 2762, + [6893] = 2719, + [6894] = 6894, + [6895] = 6895, + [6896] = 2717, + [6897] = 6897, + [6898] = 2672, + [6899] = 6899, + [6900] = 6863, + [6901] = 2666, + [6902] = 2632, + [6903] = 6862, + [6904] = 6885, + [6905] = 6905, + [6906] = 6856, + [6907] = 6875, + [6908] = 6874, + [6909] = 6862, + [6910] = 6865, + [6911] = 6860, + [6912] = 6868, + [6913] = 6854, + [6914] = 6857, + [6915] = 6881, + [6916] = 6858, + [6917] = 6860, + [6918] = 6870, + [6919] = 6919, + [6920] = 6885, + [6921] = 6871, + [6922] = 6905, + [6923] = 6866, + [6924] = 6856, + [6925] = 6872, + [6926] = 6926, + [6927] = 6865, + [6928] = 6928, + [6929] = 6929, + [6930] = 6891, + [6931] = 6865, + [6932] = 6894, + [6933] = 6858, + [6934] = 6897, + [6935] = 6868, + [6936] = 6854, + [6937] = 6857, + [6938] = 6938, + [6939] = 6905, + [6940] = 6895, + [6941] = 6941, + [6942] = 6860, + [6943] = 6871, + [6944] = 6865, + [6945] = 6871, + [6946] = 6890, + [6947] = 6891, + [6948] = 6887, + [6949] = 6949, + [6950] = 6885, + [6951] = 6852, + [6952] = 6856, + [6953] = 6868, + [6954] = 6854, + [6955] = 6857, + [6956] = 6956, + [6957] = 6864, [6958] = 6958, - [6959] = 3191, - [6960] = 6744, - [6961] = 6781, - [6962] = 3155, - [6963] = 6918, - [6964] = 6923, - [6965] = 6574, - [6966] = 3149, - [6967] = 6923, - [6968] = 6579, - [6969] = 6920, - [6970] = 6970, - [6971] = 6580, - [6972] = 6920, - [6973] = 150, - [6974] = 6974, - [6975] = 6581, - [6976] = 6923, - [6977] = 6583, - [6978] = 6978, - [6979] = 3571, + [6959] = 6887, + [6960] = 6875, + [6961] = 6857, + [6962] = 6874, + [6963] = 6963, + [6964] = 6899, + [6965] = 6894, + [6966] = 6897, + [6967] = 6967, + [6968] = 6968, + [6969] = 6871, + [6970] = 6895, + [6971] = 6941, + [6972] = 6865, + [6973] = 6890, + [6974] = 6887, + [6975] = 6870, + [6976] = 6866, + [6977] = 6887, + [6978] = 6855, + [6979] = 6979, [6980] = 6980, - [6981] = 6920, - [6982] = 6586, - [6983] = 151, - [6984] = 2641, - [6985] = 2653, - [6986] = 2656, - [6987] = 3206, - [6988] = 3210, - [6989] = 2352, - [6990] = 3195, - [6991] = 2639, - [6992] = 6923, - [6993] = 6993, - [6994] = 3046, - [6995] = 2348, - [6996] = 3212, - [6997] = 2358, - [6998] = 3201, - [6999] = 6920, - [7000] = 2357, - [7001] = 2345, - [7002] = 2350, - [7003] = 3232, - [7004] = 3225, - [7005] = 2346, - [7006] = 2351, - [7007] = 7007, - [7008] = 3269, - [7009] = 2342, - [7010] = 2356, - [7011] = 6920, - [7012] = 2343, - [7013] = 2355, - [7014] = 2354, - [7015] = 2353, - [7016] = 2349, - [7017] = 3273, - [7018] = 3049, - [7019] = 7019, - [7020] = 7020, - [7021] = 7021, - [7022] = 6918, - [7023] = 3420, - [7024] = 3416, - [7025] = 3410, - [7026] = 3408, - [7027] = 3398, - [7028] = 3377, - [7029] = 7029, - [7030] = 6772, + [6981] = 6862, + [6982] = 6982, + [6983] = 6979, + [6984] = 6891, + [6985] = 6899, + [6986] = 6986, + [6987] = 6987, + [6988] = 6868, + [6989] = 6862, + [6990] = 6881, + [6991] = 6887, + [6992] = 6854, + [6993] = 6905, + [6994] = 6866, + [6995] = 6995, + [6996] = 6857, + [6997] = 6997, + [6998] = 6864, + [6999] = 6860, + [7000] = 6875, + [7001] = 6855, + [7002] = 6874, + [7003] = 7003, + [7004] = 6869, + [7005] = 6866, + [7006] = 6871, + [7007] = 6868, + [7008] = 6865, + [7009] = 7009, + [7010] = 6872, + [7011] = 6887, + [7012] = 6894, + [7013] = 7013, + [7014] = 6860, + [7015] = 6891, + [7016] = 6874, + [7017] = 6875, + [7018] = 7018, + [7019] = 6860, + [7020] = 6869, + [7021] = 6868, + [7022] = 6868, + [7023] = 6881, + [7024] = 7024, + [7025] = 6885, + [7026] = 7026, + [7027] = 6897, + [7028] = 6887, + [7029] = 6895, + [7030] = 6890, [7031] = 7031, - [7032] = 7032, + [7032] = 6854, [7033] = 7033, - [7034] = 7032, - [7035] = 3149, - [7036] = 7036, - [7037] = 7029, - [7038] = 7038, - [7039] = 7039, - [7040] = 7033, - [7041] = 6586, - [7042] = 6583, - [7043] = 7031, - [7044] = 7038, - [7045] = 6574, - [7046] = 7036, - [7047] = 6580, - [7048] = 7048, - [7049] = 7039, - [7050] = 7033, - [7051] = 7036, - [7052] = 7029, - [7053] = 7036, - [7054] = 7036, - [7055] = 6579, - [7056] = 7038, - [7057] = 6605, - [7058] = 7033, - [7059] = 7029, - [7060] = 7033, - [7061] = 7032, - [7062] = 7031, - [7063] = 6588, - [7064] = 7039, - [7065] = 7039, - [7066] = 7031, - [7067] = 7032, - [7068] = 7029, - [7069] = 3046, - [7070] = 7033, - [7071] = 7038, - [7072] = 7072, - [7073] = 7072, - [7074] = 7048, - [7075] = 7036, - [7076] = 7036, - [7077] = 7029, - [7078] = 7078, - [7079] = 7029, - [7080] = 7080, - [7081] = 7036, - [7082] = 7039, - [7083] = 3049, - [7084] = 7033, - [7085] = 7039, - [7086] = 7072, - [7087] = 7031, - [7088] = 7088, - [7089] = 7072, - [7090] = 7032, - [7091] = 7091, - [7092] = 7092, - [7093] = 7038, - [7094] = 6581, - [7095] = 7036, - [7096] = 7036, - [7097] = 7033, - [7098] = 7032, - [7099] = 6821, - [7100] = 7100, - [7101] = 7029, - [7102] = 7031, - [7103] = 7048, - [7104] = 7029, - [7105] = 7033, - [7106] = 7032, - [7107] = 3247, - [7108] = 7039, - [7109] = 7031, - [7110] = 7036, - [7111] = 7111, - [7112] = 7036, - [7113] = 7039, - [7114] = 6781, - [7115] = 6822, - [7116] = 7038, - [7117] = 6820, - [7118] = 7048, - [7119] = 7038, - [7120] = 7039, - [7121] = 6818, - [7122] = 7036, - [7123] = 6744, - [7124] = 7032, - [7125] = 7038, - [7126] = 7033, - [7127] = 3176, - [7128] = 7029, - [7129] = 7036, - [7130] = 7032, - [7131] = 7038, - [7132] = 7031, - [7133] = 7032, - [7134] = 7031, - [7135] = 7048, - [7136] = 7039, - [7137] = 7036, - [7138] = 6839, - [7139] = 7031, - [7140] = 7031, - [7141] = 3191, - [7142] = 7038, - [7143] = 7029, - [7144] = 7033, - [7145] = 7145, - [7146] = 6840, - [7147] = 6775, - [7148] = 6778, - [7149] = 6776, - [7150] = 7032, - [7151] = 7072, - [7152] = 3155, - [7153] = 7038, - [7154] = 7039, - [7155] = 6777, - [7156] = 7036, - [7157] = 7036, - [7158] = 6744, - [7159] = 3049, - [7160] = 7160, - [7161] = 7161, - [7162] = 3247, - [7163] = 7160, - [7164] = 7160, - [7165] = 7165, - [7166] = 7166, - [7167] = 7160, - [7168] = 7161, - [7169] = 7169, - [7170] = 7170, - [7171] = 7160, - [7172] = 6822, - [7173] = 7160, - [7174] = 6820, - [7175] = 7161, - [7176] = 7176, - [7177] = 7161, - [7178] = 7161, - [7179] = 6588, - [7180] = 6840, - [7181] = 6772, - [7182] = 6775, - [7183] = 6776, - [7184] = 6605, - [7185] = 6777, - [7186] = 6778, - [7187] = 6574, - [7188] = 6579, + [7034] = 6897, + [7035] = 6895, + [7036] = 6857, + [7037] = 6897, + [7038] = 6855, + [7039] = 6863, + [7040] = 6899, + [7041] = 7041, + [7042] = 6890, + [7043] = 6864, + [7044] = 6887, + [7045] = 7045, + [7046] = 6871, + [7047] = 6856, + [7048] = 6891, + [7049] = 6885, + [7050] = 7050, + [7051] = 7051, + [7052] = 6866, + [7053] = 6865, + [7054] = 6862, + [7055] = 6872, + [7056] = 6862, + [7057] = 7057, + [7058] = 7058, + [7059] = 6860, + [7060] = 6875, + [7061] = 6855, + [7062] = 6891, + [7063] = 6905, + [7064] = 6874, + [7065] = 6885, + [7066] = 7066, + [7067] = 6894, + [7068] = 7068, + [7069] = 6866, + [7070] = 6875, + [7071] = 6870, + [7072] = 6852, + [7073] = 6874, + [7074] = 6868, + [7075] = 6862, + [7076] = 7076, + [7077] = 6874, + [7078] = 6860, + [7079] = 6979, + [7080] = 6887, + [7081] = 6854, + [7082] = 6875, + [7083] = 6887, + [7084] = 7084, + [7085] = 6869, + [7086] = 6887, + [7087] = 6857, + [7088] = 6858, + [7089] = 6863, + [7090] = 6890, + [7091] = 6895, + [7092] = 6864, + [7093] = 6895, + [7094] = 7094, + [7095] = 6897, + [7096] = 6864, + [7097] = 6862, + [7098] = 7098, + [7099] = 6885, + [7100] = 6866, + [7101] = 7101, + [7102] = 7102, + [7103] = 6860, + [7104] = 6979, + [7105] = 7105, + [7106] = 6871, + [7107] = 6894, + [7108] = 7057, + [7109] = 6894, + [7110] = 7057, + [7111] = 6864, + [7112] = 6865, + [7113] = 6894, + [7114] = 6863, + [7115] = 6890, + [7116] = 6858, + [7117] = 6872, + [7118] = 6857, + [7119] = 6860, + [7120] = 6890, + [7121] = 6854, + [7122] = 6870, + [7123] = 6866, + [7124] = 7057, + [7125] = 7057, + [7126] = 6885, + [7127] = 7057, + [7128] = 6860, + [7129] = 6855, + [7130] = 7130, + [7131] = 6891, + [7132] = 6858, + [7133] = 6862, + [7134] = 7057, + [7135] = 6852, + [7136] = 6868, + [7137] = 6852, + [7138] = 6866, + [7139] = 6862, + [7140] = 7057, + [7141] = 6899, + [7142] = 6891, + [7143] = 6855, + [7144] = 6897, + [7145] = 7057, + [7146] = 6869, + [7147] = 6855, + [7148] = 6872, + [7149] = 6865, + [7150] = 7057, + [7151] = 6895, + [7152] = 6874, + [7153] = 6871, + [7154] = 6875, + [7155] = 7057, + [7156] = 7057, + [7157] = 6881, + [7158] = 7057, + [7159] = 7057, + [7160] = 7057, + [7161] = 6887, + [7162] = 7057, + [7163] = 6890, + [7164] = 7057, + [7165] = 6895, + [7166] = 6897, + [7167] = 6894, + [7168] = 6874, + [7169] = 6860, + [7170] = 6887, + [7171] = 6856, + [7172] = 6854, + [7173] = 6852, + [7174] = 6885, + [7175] = 6864, + [7176] = 6875, + [7177] = 6863, + [7178] = 7178, + [7179] = 6858, + [7180] = 6857, + [7181] = 6854, + [7182] = 6860, + [7183] = 6860, + [7184] = 6887, + [7185] = 6905, + [7186] = 7186, + [7187] = 7187, + [7188] = 7188, [7189] = 7189, [7190] = 7190, - [7191] = 6580, - [7192] = 6581, - [7193] = 6583, - [7194] = 6586, - [7195] = 3046, - [7196] = 6744, - [7197] = 6781, - [7198] = 7161, - [7199] = 3348, - [7200] = 7161, - [7201] = 3531, - [7202] = 7160, - [7203] = 6776, - [7204] = 7160, - [7205] = 6775, - [7206] = 7161, - [7207] = 6781, - [7208] = 6778, - [7209] = 6839, - [7210] = 7160, - [7211] = 7161, - [7212] = 6818, - [7213] = 6772, - [7214] = 6777, + [7191] = 7191, + [7192] = 7192, + [7193] = 7193, + [7194] = 7189, + [7195] = 7195, + [7196] = 7196, + [7197] = 7197, + [7198] = 7198, + [7199] = 7199, + [7200] = 7200, + [7201] = 7201, + [7202] = 7202, + [7203] = 7203, + [7204] = 7204, + [7205] = 7205, + [7206] = 7206, + [7207] = 7207, + [7208] = 7208, + [7209] = 7186, + [7210] = 7210, + [7211] = 7211, + [7212] = 7212, + [7213] = 7213, + [7214] = 7214, [7215] = 7215, [7216] = 7216, - [7217] = 7216, - [7218] = 2286, - [7219] = 7216, - [7220] = 2293, - [7221] = 2290, - [7222] = 2292, - [7223] = 2288, - [7224] = 2285, - [7225] = 2287, - [7226] = 7216, - [7227] = 7216, + [7217] = 7217, + [7218] = 7218, + [7219] = 7219, + [7220] = 7220, + [7221] = 7221, + [7222] = 7222, + [7223] = 7223, + [7224] = 7224, + [7225] = 7225, + [7226] = 7226, + [7227] = 7227, [7228] = 7228, - [7229] = 7216, - [7230] = 6772, - [7231] = 6777, - [7232] = 7228, + [7229] = 7229, + [7230] = 7230, + [7231] = 7231, + [7232] = 7186, [7233] = 7233, - [7234] = 7234, - [7235] = 6778, - [7236] = 6781, - [7237] = 6586, - [7238] = 7216, - [7239] = 7239, - [7240] = 6583, - [7241] = 6744, - [7242] = 6776, - [7243] = 7216, - [7244] = 6775, - [7245] = 7216, - [7246] = 6581, - [7247] = 7247, - [7248] = 6580, - [7249] = 7249, - [7250] = 7216, - [7251] = 6579, - [7252] = 7252, - [7253] = 6588, + [7234] = 7206, + [7235] = 7235, + [7236] = 7236, + [7237] = 7237, + [7238] = 7238, + [7239] = 5166, + [7240] = 7240, + [7241] = 7241, + [7242] = 7242, + [7243] = 7193, + [7244] = 7244, + [7245] = 7245, + [7246] = 7246, + [7247] = 7225, + [7248] = 7248, + [7249] = 7229, + [7250] = 7250, + [7251] = 7251, + [7252] = 7217, + [7253] = 7253, [7254] = 7254, - [7255] = 6574, - [7256] = 6605, - [7257] = 7216, - [7258] = 7258, + [7255] = 7255, + [7256] = 7221, + [7257] = 7206, + [7258] = 7237, [7259] = 7259, - [7260] = 7260, - [7261] = 7259, - [7262] = 6781, - [7263] = 7259, - [7264] = 6744, - [7265] = 6778, - [7266] = 6777, - [7267] = 7259, - [7268] = 7259, - [7269] = 7260, - [7270] = 6776, + [7260] = 7211, + [7261] = 7261, + [7262] = 7262, + [7263] = 7263, + [7264] = 7264, + [7265] = 7201, + [7266] = 7266, + [7267] = 7267, + [7268] = 7268, + [7269] = 7219, + [7270] = 7270, [7271] = 7271, [7272] = 7272, - [7273] = 6775, - [7274] = 7259, - [7275] = 7259, - [7276] = 7259, - [7277] = 7260, - [7278] = 7259, - [7279] = 7259, - [7280] = 7259, - [7281] = 3046, - [7282] = 7259, - [7283] = 7272, - [7284] = 6731, - [7285] = 7260, - [7286] = 7259, - [7287] = 7272, - [7288] = 7259, - [7289] = 7259, - [7290] = 7272, - [7291] = 7260, - [7292] = 7260, - [7293] = 7259, - [7294] = 7272, - [7295] = 7259, - [7296] = 7260, - [7297] = 7259, - [7298] = 7260, - [7299] = 3049, - [7300] = 7259, - [7301] = 6726, - [7302] = 7259, - [7303] = 6772, - [7304] = 7260, - [7305] = 7305, - [7306] = 7306, - [7307] = 7307, - [7308] = 7308, - [7309] = 7309, - [7310] = 7310, - [7311] = 7310, - [7312] = 7312, - [7313] = 7313, - [7314] = 7314, - [7315] = 6775, - [7316] = 7313, - [7317] = 6731, - [7318] = 6781, - [7319] = 6867, - [7320] = 7307, - [7321] = 7307, - [7322] = 7313, - [7323] = 7309, - [7324] = 7313, - [7325] = 6744, - [7326] = 7313, - [7327] = 6908, - [7328] = 6776, - [7329] = 7309, - [7330] = 7330, - [7331] = 7307, - [7332] = 7309, - [7333] = 6778, - [7334] = 6822, - [7335] = 6777, - [7336] = 7309, - [7337] = 7312, - [7338] = 7307, - [7339] = 6820, - [7340] = 6903, - [7341] = 7341, - [7342] = 6776, - [7343] = 7312, - [7344] = 7309, - [7345] = 6866, - [7346] = 7307, - [7347] = 7310, - [7348] = 7307, + [7273] = 7210, + [7274] = 7189, + [7275] = 7231, + [7276] = 7276, + [7277] = 7277, + [7278] = 7278, + [7279] = 7279, + [7280] = 7190, + [7281] = 7281, + [7282] = 7192, + [7283] = 7283, + [7284] = 7284, + [7285] = 7285, + [7286] = 7286, + [7287] = 7287, + [7288] = 7288, + [7289] = 7286, + [7290] = 7288, + [7291] = 7210, + [7292] = 7211, + [7293] = 7287, + [7294] = 7294, + [7295] = 7284, + [7296] = 7188, + [7297] = 7283, + [7298] = 7281, + [7299] = 7285, + [7300] = 7270, + [7301] = 7221, + [7302] = 7277, + [7303] = 7276, + [7304] = 7272, + [7305] = 7271, + [7306] = 7250, + [7307] = 7268, + [7308] = 7229, + [7309] = 7267, + [7310] = 7266, + [7311] = 7262, + [7312] = 7238, + [7313] = 7255, + [7314] = 7264, + [7315] = 7263, + [7316] = 7254, + [7317] = 7261, + [7318] = 7259, + [7319] = 7253, + [7320] = 7246, + [7321] = 7242, + [7322] = 7241, + [7323] = 7235, + [7324] = 7225, + [7325] = 7233, + [7326] = 7228, + [7327] = 7248, + [7328] = 7245, + [7329] = 7227, + [7330] = 7226, + [7331] = 7186, + [7332] = 7206, + [7333] = 7237, + [7334] = 7224, + [7335] = 7225, + [7336] = 7244, + [7337] = 7240, + [7338] = 7338, + [7339] = 7223, + [7340] = 7201, + [7341] = 7216, + [7342] = 7342, + [7343] = 7208, + [7344] = 7344, + [7345] = 7204, + [7346] = 7346, + [7347] = 7231, + [7348] = 7196, [7349] = 7349, - [7350] = 6862, - [7351] = 6775, - [7352] = 3390, + [7350] = 7190, + [7351] = 7212, + [7352] = 7192, [7353] = 7353, - [7354] = 7307, - [7355] = 7309, - [7356] = 6772, - [7357] = 7310, - [7358] = 7312, - [7359] = 6818, - [7360] = 7360, - [7361] = 7307, - [7362] = 6726, - [7363] = 6744, - [7364] = 6839, - [7365] = 6840, - [7366] = 7312, - [7367] = 7367, - [7368] = 6781, - [7369] = 7369, - [7370] = 6744, - [7371] = 6775, - [7372] = 6776, - [7373] = 7373, - [7374] = 7373, - [7375] = 6777, - [7376] = 3099, - [7377] = 7377, + [7354] = 7210, + [7355] = 7222, + [7356] = 7203, + [7357] = 7202, + [7358] = 7199, + [7359] = 7221, + [7360] = 7197, + [7361] = 7197, + [7362] = 7362, + [7363] = 7363, + [7364] = 7364, + [7365] = 7229, + [7366] = 7189, + [7367] = 7198, + [7368] = 7188, + [7369] = 7236, + [7370] = 7220, + [7371] = 7214, + [7372] = 7219, + [7373] = 7218, + [7374] = 7374, + [7375] = 7215, + [7376] = 7376, + [7377] = 7225, [7378] = 7378, - [7379] = 7373, + [7379] = 7379, [7380] = 7380, - [7381] = 6744, - [7382] = 3149, - [7383] = 7377, - [7384] = 6772, - [7385] = 3127, - [7386] = 6772, - [7387] = 7377, - [7388] = 6781, - [7389] = 3176, - [7390] = 7390, - [7391] = 7378, - [7392] = 3390, - [7393] = 6778, - [7394] = 7377, - [7395] = 7395, - [7396] = 7377, - [7397] = 7373, - [7398] = 7378, - [7399] = 6778, - [7400] = 6777, - [7401] = 3191, - [7402] = 7402, - [7403] = 3125, - [7404] = 6776, - [7405] = 3155, - [7406] = 6775, - [7407] = 7407, - [7408] = 7378, - [7409] = 7373, - [7410] = 7410, - [7411] = 7411, - [7412] = 7412, - [7413] = 7411, + [7381] = 7195, + [7382] = 7193, + [7383] = 7200, + [7384] = 7237, + [7385] = 7195, + [7386] = 7386, + [7387] = 7200, + [7388] = 7205, + [7389] = 7206, + [7390] = 7201, + [7391] = 7186, + [7392] = 7376, + [7393] = 7393, + [7394] = 7245, + [7395] = 7214, + [7396] = 7198, + [7397] = 7231, + [7398] = 7199, + [7399] = 7215, + [7400] = 7190, + [7401] = 7222, + [7402] = 7192, + [7403] = 7218, + [7404] = 7210, + [7405] = 7212, + [7406] = 7196, + [7407] = 7199, + [7408] = 7240, + [7409] = 7220, + [7410] = 7244, + [7411] = 7192, + [7412] = 7190, + [7413] = 7413, [7414] = 7414, [7415] = 7415, - [7416] = 7414, + [7416] = 7204, [7417] = 7417, - [7418] = 7415, - [7419] = 7078, - [7420] = 7414, - [7421] = 7417, - [7422] = 7422, - [7423] = 7415, - [7424] = 7417, - [7425] = 3390, - [7426] = 7422, - [7427] = 7411, - [7428] = 7415, - [7429] = 3247, - [7430] = 7417, - [7431] = 7415, - [7432] = 7432, + [7418] = 7225, + [7419] = 7236, + [7420] = 7248, + [7421] = 7188, + [7422] = 7254, + [7423] = 7193, + [7424] = 7189, + [7425] = 7231, + [7426] = 7255, + [7427] = 7238, + [7428] = 7197, + [7429] = 7201, + [7430] = 7262, + [7431] = 7431, + [7432] = 7285, [7433] = 7433, - [7434] = 7410, - [7435] = 7435, - [7436] = 7414, - [7437] = 7411, - [7438] = 7422, - [7439] = 7411, - [7440] = 7417, - [7441] = 7412, - [7442] = 7442, - [7443] = 7433, - [7444] = 7411, - [7445] = 7433, - [7446] = 7442, - [7447] = 7417, - [7448] = 7410, - [7449] = 7433, - [7450] = 7433, - [7451] = 7414, - [7452] = 7442, - [7453] = 7422, - [7454] = 7411, - [7455] = 7414, - [7456] = 7422, - [7457] = 7414, - [7458] = 7414, - [7459] = 7433, - [7460] = 7415, - [7461] = 7432, - [7462] = 7462, - [7463] = 7422, - [7464] = 7411, - [7465] = 7433, - [7466] = 7433, - [7467] = 7422, - [7468] = 7410, - [7469] = 7411, - [7470] = 7432, - [7471] = 7412, - [7472] = 7410, - [7473] = 7422, - [7474] = 7432, - [7475] = 7417, - [7476] = 7442, - [7477] = 7477, - [7478] = 7412, - [7479] = 7479, - [7480] = 7422, - [7481] = 7410, - [7482] = 7414, - [7483] = 7410, - [7484] = 7435, - [7485] = 7417, - [7486] = 7412, - [7487] = 7411, - [7488] = 7417, - [7489] = 7433, - [7490] = 7433, - [7491] = 7491, - [7492] = 7433, - [7493] = 7412, - [7494] = 7410, - [7495] = 7442, - [7496] = 7442, - [7497] = 7414, - [7498] = 7422, - [7499] = 7100, - [7500] = 7111, - [7501] = 7410, - [7502] = 7417, - [7503] = 3390, - [7504] = 7442, - [7505] = 7442, - [7506] = 7422, - [7507] = 7410, - [7508] = 7415, - [7509] = 7432, - [7510] = 7412, - [7511] = 7414, - [7512] = 7415, - [7513] = 7432, - [7514] = 7417, - [7515] = 7442, - [7516] = 7516, - [7517] = 7411, - [7518] = 7415, - [7519] = 7519, - [7520] = 7410, - [7521] = 7432, - [7522] = 7522, - [7523] = 7523, - [7524] = 7524, - [7525] = 7525, - [7526] = 6776, - [7527] = 7525, - [7528] = 7528, - [7529] = 7523, - [7530] = 7530, - [7531] = 6775, - [7532] = 6777, - [7533] = 7525, - [7534] = 6772, + [7434] = 7205, + [7435] = 7286, + [7436] = 7202, + [7437] = 7190, + [7438] = 7288, + [7439] = 7192, + [7440] = 7210, + [7441] = 7287, + [7442] = 7284, + [7443] = 7283, + [7444] = 7203, + [7445] = 7204, + [7446] = 7208, + [7447] = 7281, + [7448] = 7202, + [7449] = 7270, + [7450] = 7277, + [7451] = 7276, + [7452] = 7216, + [7453] = 7225, + [7454] = 7272, + [7455] = 7223, + [7456] = 7224, + [7457] = 7226, + [7458] = 7271, + [7459] = 7227, + [7460] = 7228, + [7461] = 7230, + [7462] = 7201, + [7463] = 7250, + [7464] = 7268, + [7465] = 7233, + [7466] = 7267, + [7467] = 7266, + [7468] = 7468, + [7469] = 7235, + [7470] = 7190, + [7471] = 7264, + [7472] = 7192, + [7473] = 7210, + [7474] = 7263, + [7475] = 7201, + [7476] = 7236, + [7477] = 7241, + [7478] = 7242, + [7479] = 7261, + [7480] = 7480, + [7481] = 7259, + [7482] = 7246, + [7483] = 7253, + [7484] = 7208, + [7485] = 7225, + [7486] = 7486, + [7487] = 7246, + [7488] = 7237, + [7489] = 7206, + [7490] = 7186, + [7491] = 7242, + [7492] = 7201, + [7493] = 7241, + [7494] = 7235, + [7495] = 7495, + [7496] = 7415, + [7497] = 7217, + [7498] = 7233, + [7499] = 7190, + [7500] = 7228, + [7501] = 7192, + [7502] = 7227, + [7503] = 7226, + [7504] = 7220, + [7505] = 7224, + [7506] = 7506, + [7507] = 7223, + [7508] = 7251, + [7509] = 7201, + [7510] = 7218, + [7511] = 7192, + [7512] = 7217, + [7513] = 7216, + [7514] = 7208, + [7515] = 7201, + [7516] = 6160, + [7517] = 7192, + [7518] = 7201, + [7519] = 7192, + [7520] = 7201, + [7521] = 7192, + [7522] = 7201, + [7523] = 7192, + [7524] = 7201, + [7525] = 7192, + [7526] = 7201, + [7527] = 7192, + [7528] = 7201, + [7529] = 7192, + [7530] = 7222, + [7531] = 7203, + [7532] = 7203, + [7533] = 7533, + [7534] = 7202, [7535] = 7535, - [7536] = 7536, - [7537] = 7537, - [7538] = 7535, - [7539] = 7528, - [7540] = 7524, - [7541] = 6778, - [7542] = 7542, - [7543] = 7543, - [7544] = 7522, - [7545] = 7545, - [7546] = 7536, - [7547] = 7547, - [7548] = 7545, + [7536] = 7468, + [7537] = 7199, + [7538] = 7538, + [7539] = 7539, + [7540] = 7197, + [7541] = 7207, + [7542] = 7279, + [7543] = 7225, + [7544] = 7193, + [7545] = 7215, + [7546] = 7188, + [7547] = 7228, + [7548] = 7539, [7549] = 7549, - [7550] = 3390, - [7551] = 7528, - [7552] = 7524, - [7553] = 7553, - [7554] = 7547, - [7555] = 7547, - [7556] = 7547, - [7557] = 7524, - [7558] = 7528, - [7559] = 7522, - [7560] = 7560, - [7561] = 7561, - [7562] = 7535, - [7563] = 7563, - [7564] = 7564, - [7565] = 7565, - [7566] = 7566, - [7567] = 7525, - [7568] = 7523, - [7569] = 7535, - [7570] = 7522, - [7571] = 7536, - [7572] = 7549, - [7573] = 7523, - [7574] = 7549, - [7575] = 7536, - [7576] = 7542, - [7577] = 3390, - [7578] = 7549, - [7579] = 6744, - [7580] = 7535, - [7581] = 6781, - [7582] = 7582, - [7583] = 7583, - [7584] = 7584, + [7550] = 7204, + [7551] = 7220, + [7552] = 7552, + [7553] = 7218, + [7554] = 7554, + [7555] = 7205, + [7556] = 7186, + [7557] = 7557, + [7558] = 7558, + [7559] = 7549, + [7560] = 7206, + [7561] = 7237, + [7562] = 7221, + [7563] = 7205, + [7564] = 7200, + [7565] = 7342, + [7566] = 7380, + [7567] = 7567, + [7568] = 7241, + [7569] = 7201, + [7570] = 7189, + [7571] = 7200, + [7572] = 7242, + [7573] = 7573, + [7574] = 7195, + [7575] = 7195, + [7576] = 7557, + [7577] = 7376, + [7578] = 7219, + [7579] = 7214, + [7580] = 7552, + [7581] = 7205, + [7582] = 7567, + [7583] = 7198, + [7584] = 7376, [7585] = 7585, - [7586] = 7586, + [7586] = 7287, [7587] = 7587, - [7588] = 7588, - [7589] = 7584, - [7590] = 7590, - [7591] = 7591, - [7592] = 7592, - [7593] = 7586, + [7588] = 7212, + [7589] = 7229, + [7590] = 7196, + [7591] = 7236, + [7592] = 7240, + [7593] = 7221, [7594] = 7594, - [7595] = 7595, - [7596] = 7596, + [7595] = 7219, + [7596] = 7214, [7597] = 7597, - [7598] = 7598, - [7599] = 7599, - [7600] = 7600, - [7601] = 7601, - [7602] = 7586, - [7603] = 7585, - [7604] = 7604, + [7598] = 7245, + [7599] = 7248, + [7600] = 7211, + [7601] = 7210, + [7602] = 7602, + [7603] = 7198, + [7604] = 7254, [7605] = 7605, - [7606] = 7586, - [7607] = 7584, - [7608] = 7604, - [7609] = 7609, - [7610] = 7584, - [7611] = 7590, - [7612] = 7604, - [7613] = 7582, + [7606] = 5204, + [7607] = 7255, + [7608] = 7238, + [7609] = 7222, + [7610] = 7353, + [7611] = 7212, + [7612] = 7612, + [7613] = 7262, [7614] = 7614, - [7615] = 7595, + [7615] = 7376, [7616] = 7616, - [7617] = 7616, - [7618] = 7595, - [7619] = 7597, - [7620] = 7584, - [7621] = 7591, + [7617] = 7617, + [7618] = 7618, + [7619] = 7619, + [7620] = 7620, + [7621] = 7621, [7622] = 7622, [7623] = 7623, - [7624] = 7590, + [7624] = 7624, [7625] = 7625, [7626] = 7626, - [7627] = 7586, + [7627] = 7627, [7628] = 7628, - [7629] = 7584, + [7629] = 7629, [7630] = 7630, - [7631] = 7585, + [7631] = 7631, [7632] = 7632, [7633] = 7633, [7634] = 7634, - [7635] = 7584, + [7635] = 7635, [7636] = 7636, - [7637] = 7625, - [7638] = 7622, - [7639] = 6726, + [7637] = 7637, + [7638] = 7638, + [7639] = 7639, [7640] = 7640, [7641] = 7641, [7642] = 7642, - [7643] = 7600, - [7644] = 7633, - [7645] = 7625, - [7646] = 7641, - [7647] = 7642, - [7648] = 7640, - [7649] = 7583, + [7643] = 7643, + [7644] = 7644, + [7645] = 7645, + [7646] = 7196, + [7647] = 7647, + [7648] = 7285, + [7649] = 7649, [7650] = 7650, [7651] = 7651, [7652] = 7652, - [7653] = 7595, - [7654] = 7599, - [7655] = 7604, - [7656] = 7628, - [7657] = 7595, - [7658] = 7658, - [7659] = 7659, - [7660] = 7585, - [7661] = 7586, - [7662] = 7651, - [7663] = 7584, - [7664] = 7604, - [7665] = 7587, - [7666] = 7594, - [7667] = 7590, - [7668] = 7587, - [7669] = 7659, + [7653] = 7218, + [7654] = 7271, + [7655] = 7262, + [7656] = 7284, + [7657] = 7229, + [7658] = 7272, + [7659] = 7271, + [7660] = 7262, + [7661] = 7271, + [7662] = 7263, + [7663] = 7253, + [7664] = 7240, + [7665] = 7244, + [7666] = 7431, + [7667] = 7216, + [7668] = 7231, + [7669] = 7246, [7670] = 7670, - [7671] = 7640, - [7672] = 7597, - [7673] = 7616, - [7674] = 7674, - [7675] = 7675, - [7676] = 7583, + [7671] = 7245, + [7672] = 7242, + [7673] = 7673, + [7674] = 7241, + [7675] = 7233, + [7676] = 7271, [7677] = 7677, - [7678] = 7583, - [7679] = 7590, - [7680] = 7586, - [7681] = 7670, - [7682] = 7584, - [7683] = 7599, - [7684] = 7675, - [7685] = 7628, - [7686] = 7598, - [7687] = 7599, - [7688] = 7659, - [7689] = 7601, - [7690] = 7582, - [7691] = 7585, - [7692] = 7596, - [7693] = 7599, - [7694] = 7659, - [7695] = 7605, - [7696] = 7641, - [7697] = 7625, - [7698] = 7628, - [7699] = 7594, - [7700] = 7622, - [7701] = 7659, - [7702] = 7590, - [7703] = 7651, - [7704] = 7592, - [7705] = 7585, - [7706] = 7641, + [7678] = 7248, + [7679] = 7262, + [7680] = 7205, + [7681] = 7228, + [7682] = 7246, + [7683] = 7683, + [7684] = 7227, + [7685] = 7226, + [7686] = 7224, + [7687] = 7223, + [7688] = 7216, + [7689] = 7208, + [7690] = 7204, + [7691] = 7271, + [7692] = 7262, + [7693] = 7203, + [7694] = 7254, + [7695] = 7202, + [7696] = 7199, + [7697] = 7255, + [7698] = 7238, + [7699] = 7597, + [7700] = 7262, + [7701] = 7701, + [7702] = 7533, + [7703] = 7468, + [7704] = 7539, + [7705] = 7197, + [7706] = 7207, [7707] = 7707, - [7708] = 7585, - [7709] = 7709, - [7710] = 7590, - [7711] = 7622, - [7712] = 7601, - [7713] = 7595, - [7714] = 7642, - [7715] = 7715, - [7716] = 7586, - [7717] = 7604, - [7718] = 7598, - [7719] = 7587, - [7720] = 7584, - [7721] = 7675, - [7722] = 7598, - [7723] = 7633, - [7724] = 7600, - [7725] = 7633, - [7726] = 7592, - [7727] = 7601, - [7728] = 7728, - [7729] = 7707, - [7730] = 7587, - [7731] = 7596, - [7732] = 7605, - [7733] = 7640, - [7734] = 7586, - [7735] = 7707, - [7736] = 7592, - [7737] = 7622, - [7738] = 7583, - [7739] = 7600, - [7740] = 7605, - [7741] = 7641, - [7742] = 7598, - [7743] = 7743, - [7744] = 7633, - [7745] = 7601, - [7746] = 7746, - [7747] = 7600, - [7748] = 7587, - [7749] = 7675, - [7750] = 7636, - [7751] = 7582, - [7752] = 7634, - [7753] = 7632, - [7754] = 7630, - [7755] = 7596, - [7756] = 7756, - [7757] = 7582, - [7758] = 7616, - [7759] = 7628, - [7760] = 7616, - [7761] = 7625, - [7762] = 7597, - [7763] = 7597, - [7764] = 7670, - [7765] = 7591, - [7766] = 7630, - [7767] = 7592, - [7768] = 7651, - [7769] = 7625, - [7770] = 7591, - [7771] = 7605, - [7772] = 7628, - [7773] = 7773, - [7774] = 7630, - [7775] = 7670, - [7776] = 7632, - [7777] = 7591, - [7778] = 7634, - [7779] = 7601, - [7780] = 7636, - [7781] = 7597, - [7782] = 7622, - [7783] = 7783, - [7784] = 7592, - [7785] = 7598, - [7786] = 7601, - [7787] = 7600, - [7788] = 7633, - [7789] = 7616, - [7790] = 7641, - [7791] = 7586, - [7792] = 7640, - [7793] = 7670, - [7794] = 7582, - [7795] = 7605, - [7796] = 7598, - [7797] = 7616, - [7798] = 7622, - [7799] = 7628, - [7800] = 7625, - [7801] = 7583, - [7802] = 7594, - [7803] = 7675, - [7804] = 7651, - [7805] = 7590, - [7806] = 7601, - [7807] = 7598, - [7808] = 7598, - [7809] = 7601, - [7810] = 7810, - [7811] = 7590, - [7812] = 7670, - [7813] = 7598, - [7814] = 7814, - [7815] = 7634, - [7816] = 7599, - [7817] = 7817, - [7818] = 7605, - [7819] = 7585, - [7820] = 7601, - [7821] = 7583, - [7822] = 7636, - [7823] = 7623, - [7824] = 7595, - [7825] = 7592, - [7826] = 7826, - [7827] = 7596, - [7828] = 7605, - [7829] = 7587, - [7830] = 7596, - [7831] = 7597, - [7832] = 7622, - [7833] = 7592, - [7834] = 7625, - [7835] = 7622, - [7836] = 7628, - [7837] = 7636, - [7838] = 7587, - [7839] = 7634, - [7840] = 7599, - [7841] = 7632, - [7842] = 7582, - [7843] = 7843, - [7844] = 7616, - [7845] = 7596, - [7846] = 7592, - [7847] = 7597, - [7848] = 7600, - [7849] = 7591, - [7850] = 7582, - [7851] = 7630, - [7852] = 7623, - [7853] = 7632, - [7854] = 7592, - [7855] = 7634, - [7856] = 7604, - [7857] = 7636, - [7858] = 7583, - [7859] = 7600, - [7860] = 7633, - [7861] = 7595, - [7862] = 7641, - [7863] = 7640, - [7864] = 7864, - [7865] = 7616, - [7866] = 7670, - [7867] = 7597, - [7868] = 7630, - [7869] = 7651, - [7870] = 7591, - [7871] = 7587, - [7872] = 7632, - [7873] = 7591, - [7874] = 7670, - [7875] = 7659, - [7876] = 7634, - [7877] = 7630, - [7878] = 7636, - [7879] = 7594, - [7880] = 7633, - [7881] = 7595, - [7882] = 7596, - [7883] = 7623, - [7884] = 7585, - [7885] = 7592, - [7886] = 7675, - [7887] = 7625, - [7888] = 7599, - [7889] = 7628, - [7890] = 7707, - [7891] = 7891, - [7892] = 7594, - [7893] = 7616, - [7894] = 7587, - [7895] = 7623, - [7896] = 7597, - [7897] = 7630, - [7898] = 7591, - [7899] = 7670, - [7900] = 7630, - [7901] = 7640, - [7902] = 7632, - [7903] = 7632, - [7904] = 7634, - [7905] = 7636, - [7906] = 7636, - [7907] = 7599, - [7908] = 7600, - [7909] = 7633, - [7910] = 7598, - [7911] = 7641, - [7912] = 7640, - [7913] = 7913, - [7914] = 7583, - [7915] = 7659, - [7916] = 7636, - [7917] = 7675, - [7918] = 7651, - [7919] = 7601, - [7920] = 7670, - [7921] = 7651, - [7922] = 7600, - [7923] = 7670, - [7924] = 7633, - [7925] = 7632, - [7926] = 7641, - [7927] = 7583, - [7928] = 7582, - [7929] = 7595, - [7930] = 7675, - [7931] = 7651, - [7932] = 7634, - [7933] = 7659, - [7934] = 7596, - [7935] = 7636, - [7936] = 7675, - [7937] = 7937, - [7938] = 7585, - [7939] = 7622, - [7940] = 7604, - [7941] = 7651, - [7942] = 7591, - [7943] = 7634, - [7944] = 7632, - [7945] = 7594, - [7946] = 7670, - [7947] = 7628, - [7948] = 7625, - [7949] = 7616, - [7950] = 7595, - [7951] = 7623, - [7952] = 7595, - [7953] = 7584, - [7954] = 7590, - [7955] = 7642, - [7956] = 7594, - [7957] = 7583, - [7958] = 7707, - [7959] = 7640, - [7960] = 7634, + [7708] = 7228, + [7709] = 7193, + [7710] = 7236, + [7711] = 7557, + [7712] = 7271, + [7713] = 7549, + [7714] = 7262, + [7715] = 7235, + [7716] = 7220, + [7717] = 7285, + [7718] = 7342, + [7719] = 7380, + [7720] = 7189, + [7721] = 7284, + [7722] = 7205, + [7723] = 7567, + [7724] = 7205, + [7725] = 7200, + [7726] = 7195, + [7727] = 7597, + [7728] = 7602, + [7729] = 7271, + [7730] = 7262, + [7731] = 7533, + [7732] = 7539, + [7733] = 7376, + [7734] = 7207, + [7735] = 7219, + [7736] = 7214, + [7737] = 7557, + [7738] = 7198, + [7739] = 7549, + [7740] = 5138, + [7741] = 7222, + [7742] = 7342, + [7743] = 7380, + [7744] = 7744, + [7745] = 7567, + [7746] = 7240, + [7747] = 7271, + [7748] = 7284, + [7749] = 7597, + [7750] = 7602, + [7751] = 7751, + [7752] = 7245, + [7753] = 7533, + [7754] = 7539, + [7755] = 7262, + [7756] = 7207, + [7757] = 7255, + [7758] = 7248, + [7759] = 7557, + [7760] = 7233, + [7761] = 7549, + [7762] = 7255, + [7763] = 7238, + [7764] = 7342, + [7765] = 7380, + [7766] = 7567, + [7767] = 7262, + [7768] = 7573, + [7769] = 7287, + [7770] = 7597, + [7771] = 7602, + [7772] = 7286, + [7773] = 7533, + [7774] = 7539, + [7775] = 7271, + [7776] = 7207, + [7777] = 7288, + [7778] = 7240, + [7779] = 7557, + [7780] = 7549, + [7781] = 7262, + [7782] = 7255, + [7783] = 7342, + [7784] = 7380, + [7785] = 7567, + [7786] = 7284, + [7787] = 7272, + [7788] = 7788, + [7789] = 7597, + [7790] = 7602, + [7791] = 7791, + [7792] = 7533, + [7793] = 7793, + [7794] = 7207, + [7795] = 7287, + [7796] = 7602, + [7797] = 7797, + [7798] = 7798, + [7799] = 7342, + [7800] = 7380, + [7801] = 7271, + [7802] = 7263, + [7803] = 7236, + [7804] = 7597, + [7805] = 7253, + [7806] = 7533, + [7807] = 7207, + [7808] = 7197, + [7809] = 7233, + [7810] = 7203, + [7811] = 7342, + [7812] = 7380, + [7813] = 7228, + [7814] = 7227, + [7815] = 7226, + [7816] = 7597, + [7817] = 7224, + [7818] = 7533, + [7819] = 7207, + [7820] = 7190, + [7821] = 7192, + [7822] = 7216, + [7823] = 7342, + [7824] = 7380, + [7825] = 7825, + [7826] = 7203, + [7827] = 7197, + [7828] = 7597, + [7829] = 7193, + [7830] = 7533, + [7831] = 1959, + [7832] = 7380, + [7833] = 7271, + [7834] = 7834, + [7835] = 7597, + [7836] = 7272, + [7837] = 7284, + [7838] = 7380, + [7839] = 7236, + [7840] = 7597, + [7841] = 7380, + [7842] = 7597, + [7843] = 7380, + [7844] = 7597, + [7845] = 7380, + [7846] = 7597, + [7847] = 7380, + [7848] = 7597, + [7849] = 7380, + [7850] = 7597, + [7851] = 7380, + [7852] = 7597, + [7853] = 7262, + [7854] = 7238, + [7855] = 7468, + [7856] = 7191, + [7857] = 7213, + [7858] = 7255, + [7859] = 7218, + [7860] = 7284, + [7861] = 7203, + [7862] = 5168, + [7863] = 7222, + [7864] = 7205, + [7865] = 1978, + [7866] = 7198, + [7867] = 7214, + [7868] = 7219, + [7869] = 7230, + [7870] = 7195, + [7871] = 7552, + [7872] = 7585, + [7873] = 7376, + [7874] = 7874, + [7875] = 7875, + [7876] = 7376, + [7877] = 7228, + [7878] = 7195, + [7879] = 7879, + [7880] = 7880, + [7881] = 7219, + [7882] = 7882, + [7883] = 7214, + [7884] = 7227, + [7885] = 7885, + [7886] = 7886, + [7887] = 7198, + [7888] = 7888, + [7889] = 7218, + [7890] = 7890, + [7891] = 7253, + [7892] = 7226, + [7893] = 7236, + [7894] = 7199, + [7895] = 7228, + [7896] = 7896, + [7897] = 7193, + [7898] = 7222, + [7899] = 7535, + [7900] = 7197, + [7901] = 7240, + [7902] = 7199, + [7903] = 7224, + [7904] = 7259, + [7905] = 7261, + [7906] = 7236, + [7907] = 7907, + [7908] = 7255, + [7909] = 7238, + [7910] = 7262, + [7911] = 7224, + [7912] = 7263, + [7913] = 7283, + [7914] = 7533, + [7915] = 7915, + [7916] = 7916, + [7917] = 7226, + [7918] = 7918, + [7919] = 7919, + [7920] = 7227, + [7921] = 7233, + [7922] = 7284, + [7923] = 7272, + [7924] = 7264, + [7925] = 7266, + [7926] = 7267, + [7927] = 7268, + [7928] = 7271, + [7929] = 7263, + [7930] = 7250, + [7931] = 7931, + [7932] = 7468, + [7933] = 7191, + [7934] = 7213, + [7935] = 7253, + [7936] = 7223, + [7937] = 7233, + [7938] = 7552, + [7939] = 7585, + [7940] = 7940, + [7941] = 7228, + [7942] = 7211, + [7943] = 7468, + [7944] = 7191, + [7945] = 7213, + [7946] = 7227, + [7947] = 7271, + [7948] = 7552, + [7949] = 7585, + [7950] = 7272, + [7951] = 7271, + [7952] = 7272, + [7953] = 7468, + [7954] = 7191, + [7955] = 7213, + [7956] = 7284, + [7957] = 7226, + [7958] = 7552, + [7959] = 7585, + [7960] = 7960, [7961] = 7961, - [7962] = 7597, - [7963] = 7625, - [7964] = 7651, - [7965] = 7641, - [7966] = 7590, - [7967] = 7591, - [7968] = 7670, - [7969] = 7651, - [7970] = 7630, - [7971] = 7585, - [7972] = 7670, - [7973] = 7595, - [7974] = 7670, - [7975] = 7622, - [7976] = 7599, - [7977] = 7595, - [7978] = 7604, - [7979] = 7651, - [7980] = 7628, - [7981] = 7605, - [7982] = 7651, - [7983] = 7670, - [7984] = 7640, - [7985] = 7651, - [7986] = 7582, - [7987] = 7595, - [7988] = 7633, - [7989] = 7670, - [7990] = 7640, - [7991] = 7651, + [7962] = 7210, + [7963] = 7191, + [7964] = 7213, + [7965] = 7224, + [7966] = 7966, + [7967] = 7552, + [7968] = 7585, + [7969] = 7969, + [7970] = 7262, + [7971] = 7191, + [7972] = 7213, + [7973] = 7238, + [7974] = 7552, + [7975] = 7585, + [7976] = 7255, + [7977] = 7191, + [7978] = 7213, + [7979] = 7240, + [7980] = 7552, + [7981] = 7585, + [7982] = 7982, + [7983] = 7191, + [7984] = 7213, + [7985] = 7199, + [7986] = 7552, + [7987] = 7585, + [7988] = 7988, + [7989] = 7222, + [7990] = 7552, + [7991] = 7585, [7992] = 7992, - [7993] = 7595, - [7994] = 7632, - [7995] = 7670, - [7996] = 7594, - [7997] = 7651, - [7998] = 7600, - [7999] = 7586, - [8000] = 7630, - [8001] = 7651, - [8002] = 8002, - [8003] = 7659, - [8004] = 7641, - [8005] = 7651, - [8006] = 7670, - [8007] = 8007, - [8008] = 8008, + [7993] = 7197, + [7994] = 7585, + [7995] = 7193, + [7996] = 7585, + [7997] = 7198, + [7998] = 7585, + [7999] = 7214, + [8000] = 7585, + [8001] = 7219, + [8002] = 7585, + [8003] = 7203, + [8004] = 7585, + [8005] = 8005, + [8006] = 7585, + [8007] = 7538, + [8008] = 7386, [8009] = 8009, - [8010] = 8010, - [8011] = 8011, + [8010] = 7538, + [8011] = 7386, [8012] = 8012, - [8013] = 8013, - [8014] = 8014, - [8015] = 8015, - [8016] = 8016, - [8017] = 8017, - [8018] = 8018, - [8019] = 8019, - [8020] = 8020, - [8021] = 8008, - [8022] = 8022, - [8023] = 8010, - [8024] = 8011, - [8025] = 8012, - [8026] = 8013, - [8027] = 8027, - [8028] = 8028, - [8029] = 8029, - [8030] = 8030, - [8031] = 8031, - [8032] = 8010, - [8033] = 8008, - [8034] = 8008, - [8035] = 8010, - [8036] = 8011, - [8037] = 8012, - [8038] = 8013, - [8039] = 8039, - [8040] = 8040, - [8041] = 8008, - [8042] = 8042, - [8043] = 8008, - [8044] = 8008, - [8045] = 8045, - [8046] = 8046, - [8047] = 8047, - [8048] = 8048, - [8049] = 8010, - [8050] = 8050, - [8051] = 8051, - [8052] = 8039, - [8053] = 8053, - [8054] = 8054, - [8055] = 8055, - [8056] = 8013, - [8057] = 8012, - [8058] = 8011, - [8059] = 8010, - [8060] = 8008, - [8061] = 8061, - [8062] = 8010, - [8063] = 8063, - [8064] = 8053, - [8065] = 8065, - [8066] = 8066, - [8067] = 8013, - [8068] = 8012, - [8069] = 8028, - [8070] = 8011, - [8071] = 8029, - [8072] = 8072, - [8073] = 8010, - [8074] = 8074, - [8075] = 8008, - [8076] = 8076, - [8077] = 8077, - [8078] = 8078, - [8079] = 8009, - [8080] = 8050, - [8081] = 8081, - [8082] = 8082, - [8083] = 8083, - [8084] = 8055, - [8085] = 8085, - [8086] = 8086, - [8087] = 8087, - [8088] = 8040, - [8089] = 8015, - [8090] = 8090, - [8091] = 8027, - [8092] = 8092, - [8093] = 8093, - [8094] = 8094, - [8095] = 8095, - [8096] = 8096, - [8097] = 8013, - [8098] = 8042, - [8099] = 8012, - [8100] = 8100, - [8101] = 8101, - [8102] = 8011, - [8103] = 8103, - [8104] = 8074, - [8105] = 8017, - [8106] = 8010, - [8107] = 8008, - [8108] = 8108, - [8109] = 8109, - [8110] = 8014, - [8111] = 8111, - [8112] = 8008, - [8113] = 8113, - [8114] = 8114, - [8115] = 8115, - [8116] = 8081, - [8117] = 8117, - [8118] = 8118, - [8119] = 8029, - [8120] = 8008, - [8121] = 8028, - [8122] = 8122, - [8123] = 8113, - [8124] = 8013, - [8125] = 8012, - [8126] = 8011, - [8127] = 8013, - [8128] = 8012, - [8129] = 8129, - [8130] = 8011, - [8131] = 8131, - [8132] = 8132, - [8133] = 8133, - [8134] = 8019, - [8135] = 8055, - [8136] = 8022, - [8137] = 8050, - [8138] = 8009, - [8139] = 8139, - [8140] = 8140, - [8141] = 8141, - [8142] = 8008, - [8143] = 8040, - [8144] = 8144, - [8145] = 8042, - [8146] = 8146, - [8147] = 8076, - [8148] = 8109, - [8149] = 8027, - [8150] = 8150, - [8151] = 8014, - [8152] = 8152, - [8153] = 8153, - [8154] = 8027, - [8155] = 8155, - [8156] = 8133, - [8157] = 8157, - [8158] = 8146, - [8159] = 8141, - [8160] = 8083, - [8161] = 8113, - [8162] = 8042, - [8163] = 8022, - [8164] = 8066, - [8165] = 8165, - [8166] = 8133, - [8167] = 8167, - [8168] = 8013, - [8169] = 8077, - [8170] = 8083, - [8171] = 8031, - [8172] = 8113, - [8173] = 8019, - [8174] = 8012, - [8175] = 8011, - [8176] = 8176, - [8177] = 8008, - [8178] = 8146, - [8179] = 8082, - [8180] = 8007, - [8181] = 8153, - [8182] = 8146, - [8183] = 8013, - [8184] = 8012, - [8185] = 8011, - [8186] = 8081, - [8187] = 8141, - [8188] = 8140, - [8189] = 8131, - [8190] = 8140, - [8191] = 8131, - [8192] = 8192, - [8193] = 8193, - [8194] = 8132, - [8195] = 358, - [8196] = 8196, - [8197] = 8197, - [8198] = 8011, - [8199] = 8017, - [8200] = 8074, - [8201] = 8012, - [8202] = 8055, - [8203] = 8050, - [8204] = 8009, - [8205] = 8010, - [8206] = 8141, - [8207] = 8153, - [8208] = 8208, - [8209] = 8146, - [8210] = 8141, - [8211] = 8211, - [8212] = 8133, - [8213] = 8153, - [8214] = 8015, - [8215] = 8040, - [8216] = 8015, - [8217] = 8140, - [8218] = 8131, - [8219] = 8011, - [8220] = 8009, - [8221] = 8012, - [8222] = 8013, - [8223] = 8113, - [8224] = 8031, - [8225] = 8225, - [8226] = 8010, - [8227] = 8083, - [8228] = 8228, - [8229] = 8229, - [8230] = 8040, - [8231] = 8076, - [8232] = 8042, - [8233] = 8008, - [8234] = 8234, - [8235] = 8047, - [8236] = 8055, - [8237] = 8051, - [8238] = 8238, - [8239] = 8113, - [8240] = 8083, - [8241] = 8022, - [8242] = 8019, - [8243] = 8051, - [8244] = 8132, - [8245] = 8245, - [8246] = 8246, - [8247] = 8246, - [8248] = 8074, - [8249] = 8074, - [8250] = 8082, - [8251] = 8251, - [8252] = 8008, - [8253] = 8253, - [8254] = 8065, - [8255] = 8255, - [8256] = 8081, - [8257] = 8047, - [8258] = 8258, - [8259] = 8017, - [8260] = 8055, - [8261] = 8050, - [8262] = 8262, - [8263] = 8027, - [8264] = 8264, - [8265] = 8083, - [8266] = 8113, - [8267] = 8015, - [8268] = 8268, - [8269] = 8013, - [8270] = 8012, - [8271] = 8271, - [8272] = 8011, - [8273] = 8065, - [8274] = 8010, - [8275] = 8009, - [8276] = 8146, - [8277] = 8277, - [8278] = 8039, - [8279] = 8039, - [8280] = 8280, - [8281] = 356, - [8282] = 8282, - [8283] = 8141, - [8284] = 8050, - [8285] = 8014, - [8286] = 8074, - [8287] = 8287, - [8288] = 8288, - [8289] = 8013, - [8290] = 8290, - [8291] = 8015, - [8292] = 8055, - [8293] = 8017, - [8294] = 8294, - [8295] = 8050, - [8296] = 8296, - [8297] = 8132, - [8298] = 8019, - [8299] = 8053, - [8300] = 8022, - [8301] = 8009, - [8302] = 8015, - [8303] = 8303, - [8304] = 8304, - [8305] = 8012, - [8306] = 8306, - [8307] = 8010, - [8308] = 8039, - [8309] = 8022, - [8310] = 8040, - [8311] = 8271, - [8312] = 8008, - [8313] = 8010, - [8314] = 8040, - [8315] = 8010, - [8316] = 8042, - [8317] = 8009, - [8318] = 8008, - [8319] = 8009, - [8320] = 8050, - [8321] = 8050, - [8322] = 8055, - [8323] = 8055, - [8324] = 8076, - [8325] = 8040, - [8326] = 8074, - [8327] = 8039, - [8328] = 8065, - [8329] = 8074, - [8330] = 8042, - [8331] = 8246, - [8332] = 8028, - [8333] = 8029, - [8334] = 8132, - [8335] = 8051, - [8336] = 8015, - [8337] = 8337, - [8338] = 8042, - [8339] = 8081, - [8340] = 8082, - [8341] = 8017, - [8342] = 8342, - [8343] = 8343, - [8344] = 8029, - [8345] = 8028, - [8346] = 8019, - [8347] = 8022, - [8348] = 8081, - [8349] = 8153, - [8350] = 8027, - [8351] = 8133, - [8352] = 8141, - [8353] = 8146, - [8354] = 8014, - [8355] = 8027, - [8356] = 8082, - [8357] = 8083, - [8358] = 8113, - [8359] = 8359, - [8360] = 8013, - [8361] = 8028, - [8362] = 8011, - [8363] = 8131, - [8364] = 8140, - [8365] = 8365, - [8366] = 8146, - [8367] = 8076, - [8368] = 8141, - [8369] = 8153, - [8370] = 8140, - [8371] = 8131, - [8372] = 8011, - [8373] = 8008, - [8374] = 8012, - [8375] = 8013, - [8376] = 8053, - [8377] = 8074, - [8378] = 8113, - [8379] = 8053, - [8380] = 8083, - [8381] = 8055, - [8382] = 8050, - [8383] = 8009, - [8384] = 8082, - [8385] = 8010, - [8386] = 8153, - [8387] = 8081, - [8388] = 8039, - [8389] = 8014, - [8390] = 8027, - [8391] = 8040, - [8392] = 8133, - [8393] = 8141, - [8394] = 8015, - [8395] = 8146, - [8396] = 8109, - [8397] = 8028, - [8398] = 8019, - [8399] = 8029, - [8400] = 8022, - [8401] = 8042, - [8402] = 8051, - [8403] = 8027, - [8404] = 8008, - [8405] = 8040, - [8406] = 8042, - [8407] = 8076, - [8408] = 8140, - [8409] = 8014, - [8410] = 8131, - [8411] = 8076, - [8412] = 8011, - [8413] = 8076, - [8414] = 8012, - [8415] = 8047, - [8416] = 8053, - [8417] = 8047, - [8418] = 3390, - [8419] = 8109, - [8420] = 8013, - [8421] = 8082, - [8422] = 8113, - [8423] = 8031, - [8424] = 8083, - [8425] = 8051, - [8426] = 8077, - [8427] = 8109, - [8428] = 8053, - [8429] = 8047, - [8430] = 8051, - [8431] = 8029, - [8432] = 8066, - [8433] = 8433, - [8434] = 8434, - [8435] = 8435, - [8436] = 8435, - [8437] = 8437, - [8438] = 8435, - [8439] = 8439, - [8440] = 8440, - [8441] = 8441, - [8442] = 8442, - [8443] = 8443, - [8444] = 8444, - [8445] = 8435, - [8446] = 8446, - [8447] = 8447, - [8448] = 8448, - [8449] = 8449, - [8450] = 8449, - [8451] = 8451, - [8452] = 8449, - [8453] = 8449, - [8454] = 8449, - [8455] = 8449, - [8456] = 8456, - [8457] = 8449, - [8458] = 8449, - [8459] = 8459, - [8460] = 8449, - [8461] = 8449, - [8462] = 8449, - [8463] = 8449, - [8464] = 8449, - [8465] = 8465, - [8466] = 8447, - [8467] = 8467, - [8468] = 8468, - [8469] = 8444, - [8470] = 8433, - [8471] = 8449, - [8472] = 8451, - [8473] = 8473, - [8474] = 8474, - [8475] = 8451, - [8476] = 8476, - [8477] = 8449, - [8478] = 8456, - [8479] = 8479, - [8480] = 8480, - [8481] = 8481, - [8482] = 8482, - [8483] = 8483, - [8484] = 8447, - [8485] = 8485, - [8486] = 8486, - [8487] = 8479, - [8488] = 8488, - [8489] = 8489, - [8490] = 8480, - [8491] = 8486, - [8492] = 8492, - [8493] = 8473, - [8494] = 8494, - [8495] = 8495, - [8496] = 8496, - [8497] = 8497, - [8498] = 8451, - [8499] = 8451, - [8500] = 8451, - [8501] = 8474, - [8502] = 8449, - [8503] = 8503, - [8504] = 8474, - [8505] = 8505, - [8506] = 8506, - [8507] = 8507, - [8508] = 8488, - [8509] = 8476, - [8510] = 8467, - [8511] = 8459, - [8512] = 8496, - [8513] = 8439, - [8514] = 8448, - [8515] = 8468, - [8516] = 8443, - [8517] = 8480, - [8518] = 8444, - [8519] = 8519, - [8520] = 8448, - [8521] = 8444, - [8522] = 8492, - [8523] = 8459, - [8524] = 8524, - [8525] = 8519, - [8526] = 8489, - [8527] = 8468, - [8528] = 8485, - [8529] = 8481, - [8530] = 8451, - [8531] = 8465, - [8532] = 8503, - [8533] = 8443, - [8534] = 8479, - [8535] = 8486, - [8536] = 8474, - [8537] = 8439, - [8538] = 8435, - [8539] = 8467, - [8540] = 8497, - [8541] = 8495, - [8542] = 8542, - [8543] = 8476, - [8544] = 8544, - [8545] = 8494, - [8546] = 8519, - [8547] = 8481, - [8548] = 8468, - [8549] = 8485, - [8550] = 8489, - [8551] = 8467, - [8552] = 8456, - [8553] = 8553, - [8554] = 8437, - [8555] = 8433, - [8556] = 8456, - [8557] = 8442, - [8558] = 8519, - [8559] = 8524, - [8560] = 8480, - [8561] = 8456, - [8562] = 8435, - [8563] = 8492, - [8564] = 8446, - [8565] = 8467, - [8566] = 8468, - [8567] = 8519, - [8568] = 8486, - [8569] = 8569, - [8570] = 8505, - [8571] = 8451, - [8572] = 8494, - [8573] = 8495, - [8574] = 8497, - [8575] = 8524, - [8576] = 8569, - [8577] = 8507, - [8578] = 8506, - [8579] = 8451, - [8580] = 8580, - [8581] = 8437, - [8582] = 8481, - [8583] = 8485, - [8584] = 8489, - [8585] = 8494, - [8586] = 8495, - [8587] = 8506, - [8588] = 8480, - [8589] = 8488, - [8590] = 8507, - [8591] = 8505, - [8592] = 8488, - [8593] = 8496, - [8594] = 8503, - [8595] = 8496, - [8596] = 8480, - [8597] = 8474, - [8598] = 8497, - [8599] = 8449, - [8600] = 8442, - [8601] = 8601, - [8602] = 8505, - [8603] = 8507, - [8604] = 8507, - [8605] = 8505, - [8606] = 8524, - [8607] = 8488, - [8608] = 8608, - [8609] = 8503, - [8610] = 8489, - [8611] = 8481, - [8612] = 8433, - [8613] = 8497, - [8614] = 8474, - [8615] = 8495, - [8616] = 8439, - [8617] = 8494, - [8618] = 8497, - [8619] = 8443, - [8620] = 8519, - [8621] = 8444, - [8622] = 8468, - [8623] = 8448, - [8624] = 8553, - [8625] = 8459, - [8626] = 8569, - [8627] = 8467, - [8628] = 8628, - [8629] = 8446, - [8630] = 8456, - [8631] = 8447, - [8632] = 8553, - [8633] = 8495, - [8634] = 8505, - [8635] = 8479, - [8636] = 8486, - [8637] = 8507, - [8638] = 8435, - [8639] = 8494, - [8640] = 8474, - [8641] = 8503, - [8642] = 8524, - [8643] = 8451, - [8644] = 8476, - [8645] = 8645, - [8646] = 8481, - [8647] = 8647, - [8648] = 8648, - [8649] = 8480, - [8650] = 8488, - [8651] = 8496, - [8652] = 8485, - [8653] = 8437, - [8654] = 8503, - [8655] = 8456, - [8656] = 8442, - [8657] = 8451, - [8658] = 8465, - [8659] = 8433, - [8660] = 8433, - [8661] = 8496, - [8662] = 8488, - [8663] = 8446, - [8664] = 8505, - [8665] = 8507, - [8666] = 8485, - [8667] = 8435, - [8668] = 8489, - [8669] = 8669, - [8670] = 8506, - [8671] = 8524, - [8672] = 8672, - [8673] = 8673, - [8674] = 8489, - [8675] = 8485, - [8676] = 8481, - [8677] = 8433, - [8678] = 8569, - [8679] = 8481, - [8680] = 8496, - [8681] = 8681, - [8682] = 8497, - [8683] = 8495, - [8684] = 8507, - [8685] = 8494, - [8686] = 8519, - [8687] = 8468, - [8688] = 8467, - [8689] = 8489, - [8690] = 8690, - [8691] = 8485, - [8692] = 8456, - [8693] = 8481, - [8694] = 8447, - [8695] = 8492, - [8696] = 8486, - [8697] = 8456, - [8698] = 8467, - [8699] = 8468, - [8700] = 8480, - [8701] = 8519, - [8702] = 8439, - [8703] = 8443, - [8704] = 8485, - [8705] = 8494, - [8706] = 8448, - [8707] = 8459, - [8708] = 8524, - [8709] = 8495, - [8710] = 8489, - [8711] = 8497, - [8712] = 8479, - [8713] = 8456, - [8714] = 8451, - [8715] = 8481, - [8716] = 8505, - [8717] = 8485, - [8718] = 8489, - [8719] = 8476, - [8720] = 8507, - [8721] = 8474, - [8722] = 8722, - [8723] = 8505, - [8724] = 8451, - [8725] = 8480, - [8726] = 8474, - [8727] = 8433, - [8728] = 8437, - [8729] = 8729, - [8730] = 8553, - [8731] = 8442, - [8732] = 8524, - [8733] = 8495, - [8734] = 8433, - [8735] = 8465, - [8736] = 8503, - [8737] = 8446, - [8738] = 8451, - [8739] = 8739, - [8740] = 8441, - [8741] = 8524, - [8742] = 8742, - [8743] = 8743, - [8744] = 8474, - [8745] = 8447, - [8746] = 8467, - [8747] = 8468, - [8748] = 8748, - [8749] = 8489, - [8750] = 8750, - [8751] = 8751, - [8752] = 8441, - [8753] = 8474, - [8754] = 8439, - [8755] = 8448, - [8756] = 8459, - [8757] = 8444, - [8758] = 8485, - [8759] = 8569, - [8760] = 8479, - [8761] = 8553, - [8762] = 8762, - [8763] = 8481, - [8764] = 8764, - [8765] = 8435, - [8766] = 8476, - [8767] = 8474, - [8768] = 8480, - [8769] = 8497, - [8770] = 8507, - [8771] = 8505, - [8772] = 8494, - [8773] = 8433, - [8774] = 8465, - [8775] = 8474, - [8776] = 8442, - [8777] = 8492, - [8778] = 8778, - [8779] = 8779, - [8780] = 8780, - [8781] = 8446, - [8782] = 8782, - [8783] = 8783, - [8784] = 8474, - [8785] = 8503, - [8786] = 8496, - [8787] = 8488, - [8788] = 8439, - [8789] = 8507, - [8790] = 8443, - [8791] = 8506, - [8792] = 8444, - [8793] = 8497, - [8794] = 8448, - [8795] = 8439, - [8796] = 8448, - [8797] = 8459, - [8798] = 8480, - [8799] = 8467, - [8800] = 8468, - [8801] = 8479, - [8802] = 8441, - [8803] = 8519, - [8804] = 8519, - [8805] = 8476, - [8806] = 8456, - [8807] = 8495, - [8808] = 8446, - [8809] = 8494, - [8810] = 8492, - [8811] = 8459, - [8812] = 8505, - [8813] = 8442, - [8814] = 8451, - [8815] = 8815, - [8816] = 8479, - [8817] = 8817, - [8818] = 8446, - [8819] = 8819, - [8820] = 8442, - [8821] = 8821, - [8822] = 8822, - [8823] = 8488, - [8824] = 8486, - [8825] = 8467, - [8826] = 8826, - [8827] = 8437, - [8828] = 8468, - [8829] = 8474, - [8830] = 8519, - [8831] = 8496, - [8832] = 8448, - [8833] = 8459, - [8834] = 8834, - [8835] = 8835, - [8836] = 8497, - [8837] = 8479, - [8838] = 8503, - [8839] = 8839, - [8840] = 8476, - [8841] = 8476, - [8842] = 8842, - [8843] = 8843, - [8844] = 8844, - [8845] = 8845, - [8846] = 8442, - [8847] = 8442, - [8848] = 8495, - [8849] = 8494, - [8850] = 8850, - [8851] = 8479, - [8852] = 8446, - [8853] = 8853, - [8854] = 8459, - [8855] = 8448, - [8856] = 8856, - [8857] = 6313, - [8858] = 8858, - [8859] = 8859, - [8860] = 8860, - [8861] = 8861, - [8862] = 8862, - [8863] = 8863, - [8864] = 8864, - [8865] = 8865, - [8866] = 8866, - [8867] = 8867, - [8868] = 8868, - [8869] = 8869, - [8870] = 8870, - [8871] = 6337, - [8872] = 8868, - [8873] = 8873, - [8874] = 8874, - [8875] = 8869, - [8876] = 8876, - [8877] = 8863, - [8878] = 8878, - [8879] = 8873, - [8880] = 8876, - [8881] = 8881, - [8882] = 8868, - [8883] = 8869, - [8884] = 8884, - [8885] = 8878, - [8886] = 8862, - [8887] = 8863, - [8888] = 8868, - [8889] = 8863, - [8890] = 8868, - [8891] = 8863, - [8892] = 8868, - [8893] = 8863, - [8894] = 8868, - [8895] = 8863, - [8896] = 8868, - [8897] = 8863, - [8898] = 8868, - [8899] = 8863, - [8900] = 8900, - [8901] = 8901, - [8902] = 8902, - [8903] = 8903, - [8904] = 8904, - [8905] = 8905, - [8906] = 8860, - [8907] = 8907, - [8908] = 8908, - [8909] = 8909, - [8910] = 8910, - [8911] = 8911, - [8912] = 8863, - [8913] = 8913, - [8914] = 8861, - [8915] = 8863, - [8916] = 8916, - [8917] = 8917, - [8918] = 8861, - [8919] = 8919, - [8920] = 8878, - [8921] = 8921, - [8922] = 8922, - [8923] = 8900, - [8924] = 8924, - [8925] = 8925, - [8926] = 8926, - [8927] = 8927, - [8928] = 8928, - [8929] = 8929, - [8930] = 8930, - [8931] = 8925, - [8932] = 8868, - [8933] = 8933, - [8934] = 8934, - [8935] = 8933, - [8936] = 8936, - [8937] = 8937, - [8938] = 8938, - [8939] = 8939, - [8940] = 8940, - [8941] = 8941, - [8942] = 8942, - [8943] = 8943, - [8944] = 8944, - [8945] = 8945, - [8946] = 8946, - [8947] = 8947, - [8948] = 8948, - [8949] = 8865, - [8950] = 8950, - [8951] = 8951, - [8952] = 8866, - [8953] = 8870, - [8954] = 8868, - [8955] = 8934, - [8956] = 8956, - [8957] = 8957, - [8958] = 8900, - [8959] = 8860, - [8960] = 8876, - [8961] = 8961, - [8962] = 8962, - [8963] = 8963, - [8964] = 8964, - [8965] = 8965, - [8966] = 8907, - [8967] = 8950, - [8968] = 8968, - [8969] = 8863, - [8970] = 8970, - [8971] = 8856, - [8972] = 8861, - [8973] = 8973, - [8974] = 8974, - [8975] = 8922, - [8976] = 8962, - [8977] = 8977, - [8978] = 8978, - [8979] = 8979, - [8980] = 8980, - [8981] = 8907, - [8982] = 8982, - [8983] = 8924, - [8984] = 8984, - [8985] = 8985, - [8986] = 8856, - [8987] = 8987, - [8988] = 8938, - [8989] = 8926, - [8990] = 8856, - [8991] = 8991, - [8992] = 8861, - [8993] = 8933, - [8994] = 8856, - [8995] = 8867, - [8996] = 8919, - [8997] = 8884, - [8998] = 8927, - [8999] = 8999, - [9000] = 8934, - [9001] = 9001, - [9002] = 9002, - [9003] = 8951, - [9004] = 8933, - [9005] = 8948, - [9006] = 8904, - [9007] = 8921, - [9008] = 8856, - [9009] = 9009, - [9010] = 9010, - [9011] = 8865, - [9012] = 8866, - [9013] = 8874, - [9014] = 8870, - [9015] = 8868, - [9016] = 8902, - [9017] = 8933, - [9018] = 9018, - [9019] = 9019, - [9020] = 9020, - [9021] = 8856, - [9022] = 9022, - [9023] = 9023, - [9024] = 8985, - [9025] = 9025, - [9026] = 8962, - [9027] = 8873, - [9028] = 9028, - [9029] = 8933, - [9030] = 9030, - [9031] = 8876, - [9032] = 9010, - [9033] = 9033, - [9034] = 8965, - [9035] = 8987, - [9036] = 8864, - [9037] = 9019, - [9038] = 8933, - [9039] = 8926, - [9040] = 9040, - [9041] = 9041, - [9042] = 8933, - [9043] = 6285, - [9044] = 8856, - [9045] = 9045, - [9046] = 8909, - [9047] = 9047, - [9048] = 9048, - [9049] = 9049, - [9050] = 8874, - [9051] = 9030, - [9052] = 8907, - [9053] = 9053, - [9054] = 8938, - [9055] = 8901, - [9056] = 9056, - [9057] = 8863, - [9058] = 8861, - [9059] = 9059, - [9060] = 8933, - [9061] = 8919, - [9062] = 9040, - [9063] = 9045, - [9064] = 8856, - [9065] = 9065, - [9066] = 9002, - [9067] = 9028, - [9068] = 8977, - [9069] = 9069, - [9070] = 9047, - [9071] = 9071, - [9072] = 8939, - [9073] = 9073, - [9074] = 9065, - [9075] = 9075, - [9076] = 8856, - [9077] = 8991, - [9078] = 9001, - [9079] = 9079, - [9080] = 9002, - [9081] = 8902, - [9082] = 8922, - [9083] = 9020, - [9084] = 8870, - [9085] = 8868, - [9086] = 9086, - [9087] = 8917, - [9088] = 9088, - [9089] = 9089, - [9090] = 9089, - [9091] = 8940, - [9092] = 9092, - [9093] = 8933, - [9094] = 8919, - [9095] = 8982, - [9096] = 9096, - [9097] = 9002, - [9098] = 9088, - [9099] = 8916, - [9100] = 9100, - [9101] = 8917, - [9102] = 9092, - [9103] = 9047, - [9104] = 9025, - [9105] = 8984, - [9106] = 9106, - [9107] = 8947, - [9108] = 8987, - [9109] = 8985, - [9110] = 8934, - [9111] = 8956, - [9112] = 8951, - [9113] = 8876, - [9114] = 9002, - [9115] = 9106, - [9116] = 8867, - [9117] = 9096, - [9118] = 8925, - [9119] = 8924, - [9120] = 8909, - [9121] = 8863, - [9122] = 8925, - [9123] = 9123, - [9124] = 8964, - [9125] = 8945, - [9126] = 9092, - [9127] = 8968, - [9128] = 8927, - [9129] = 8907, - [9130] = 8984, - [9131] = 8970, - [9132] = 9132, - [9133] = 8964, - [9134] = 9059, - [9135] = 9100, - [9136] = 9136, - [9137] = 8922, - [9138] = 8921, - [9139] = 8904, - [9140] = 9140, - [9141] = 8867, - [9142] = 8924, - [9143] = 8927, - [9144] = 8962, - [9145] = 8925, - [9146] = 8962, - [9147] = 8933, - [9148] = 8864, - [9149] = 8924, - [9150] = 9150, - [9151] = 8973, - [9152] = 8922, - [9153] = 8919, - [9154] = 8927, - [9155] = 8863, - [9156] = 8861, - [9157] = 9023, - [9158] = 9069, - [9159] = 9159, - [9160] = 9096, - [9161] = 8866, - [9162] = 9028, - [9163] = 8862, - [9164] = 8856, - [9165] = 9001, - [9166] = 8903, - [9167] = 8908, - [9168] = 9002, - [9169] = 8910, - [9170] = 9030, - [9171] = 8917, - [9172] = 8870, - [9173] = 9053, - [9174] = 9049, - [9175] = 9175, - [9176] = 8943, - [9177] = 8928, - [9178] = 9045, - [9179] = 8930, - [9180] = 9025, - [9181] = 9096, - [9182] = 9092, - [9183] = 9040, - [9184] = 8936, - [9185] = 8937, - [9186] = 8943, - [9187] = 9041, - [9188] = 9047, - [9189] = 9096, - [9190] = 9069, - [9191] = 9030, - [9192] = 9045, - [9193] = 8961, - [9194] = 8962, - [9195] = 8963, - [9196] = 9040, - [9197] = 8978, - [9198] = 9019, - [9199] = 8979, - [9200] = 8985, - [9201] = 8950, - [9202] = 8987, - [9203] = 8964, - [9204] = 8970, - [9205] = 9010, - [9206] = 8991, - [9207] = 9079, - [9208] = 9208, - [9209] = 8951, - [9210] = 9079, - [9211] = 8948, - [9212] = 9212, - [9213] = 9213, - [9214] = 9214, - [9215] = 9215, - [9216] = 9216, - [9217] = 9028, - [9218] = 9218, - [9219] = 9219, - [9220] = 9025, - [9221] = 9221, - [9222] = 9089, - [9223] = 8902, - [9224] = 9088, - [9225] = 9225, - [9226] = 8934, - [9227] = 8868, - [9228] = 9228, - [9229] = 9229, - [9230] = 9230, - [9231] = 9231, - [9232] = 9232, - [9233] = 9233, - [9234] = 9234, - [9235] = 8917, - [9236] = 9236, - [9237] = 8867, - [9238] = 9020, - [9239] = 9239, - [9240] = 8864, - [9241] = 9001, - [9242] = 8856, - [9243] = 8884, - [9244] = 9010, - [9245] = 8916, - [9246] = 9065, - [9247] = 8982, - [9248] = 9248, - [9249] = 9249, - [9250] = 9250, - [9251] = 8903, - [9252] = 8908, - [9253] = 9002, - [9254] = 8910, - [9255] = 9255, - [9256] = 9256, - [9257] = 9257, - [9258] = 8928, - [9259] = 8930, - [9260] = 9019, - [9261] = 9261, - [9262] = 8936, - [9263] = 8937, - [9264] = 9264, - [9265] = 9265, - [9266] = 9266, - [9267] = 9267, - [9268] = 8963, - [9269] = 8950, - [9270] = 8943, - [9271] = 9271, - [9272] = 8985, - [9273] = 9273, - [9274] = 8987, - [9275] = 9275, - [9276] = 8867, - [9277] = 8991, - [9278] = 9278, - [9279] = 9279, - [9280] = 8951, - [9281] = 8948, - [9282] = 9282, - [9283] = 9010, - [9284] = 9284, - [9285] = 9285, - [9286] = 8965, - [9287] = 8982, - [9288] = 9288, - [9289] = 9289, - [9290] = 9001, - [9291] = 8856, - [9292] = 8979, - [9293] = 8978, - [9294] = 9100, - [9295] = 8884, - [9296] = 9079, - [9297] = 9106, - [9298] = 9123, - [9299] = 8903, - [9300] = 8908, - [9301] = 9089, - [9302] = 8910, - [9303] = 9092, - [9304] = 8876, - [9305] = 9088, - [9306] = 8928, - [9307] = 8930, - [9308] = 8933, - [9309] = 8919, - [9310] = 8936, - [9311] = 8937, - [9312] = 8970, - [9313] = 8973, - [9314] = 9065, - [9315] = 8963, - [9316] = 8977, - [9317] = 8901, - [9318] = 8977, - [9319] = 8985, - [9320] = 9320, - [9321] = 8987, - [9322] = 9322, - [9323] = 8962, - [9324] = 8991, - [9325] = 8934, - [9326] = 8944, - [9327] = 8951, - [9328] = 8948, - [9329] = 8874, - [9330] = 9330, - [9331] = 8903, - [9332] = 8908, - [9333] = 8933, - [9334] = 8910, - [9335] = 9030, - [9336] = 9336, - [9337] = 8864, - [9338] = 8928, - [9339] = 8930, - [9340] = 8941, - [9341] = 8902, - [9342] = 8936, - [9343] = 8937, - [9344] = 8874, - [9345] = 8963, - [9346] = 8968, - [9347] = 8919, - [9348] = 9348, - [9349] = 8991, - [9350] = 8948, - [9351] = 8934, - [9352] = 8903, - [9353] = 8939, - [9354] = 8910, - [9355] = 9355, - [9356] = 8902, - [9357] = 9045, - [9358] = 8856, - [9359] = 9040, - [9360] = 8936, - [9361] = 8937, - [9362] = 9362, - [9363] = 9001, - [9364] = 9002, - [9365] = 8980, - [9366] = 8991, - [9367] = 8907, - [9368] = 8903, - [9369] = 8910, - [9370] = 9010, - [9371] = 8933, - [9372] = 8921, - [9373] = 9096, - [9374] = 8936, - [9375] = 8937, - [9376] = 8901, - [9377] = 9092, - [9378] = 8884, - [9379] = 8956, - [9380] = 8991, - [9381] = 8881, - [9382] = 8903, - [9383] = 8910, - [9384] = 8947, - [9385] = 9030, - [9386] = 9386, - [9387] = 8868, - [9388] = 8936, - [9389] = 8937, - [9390] = 9390, - [9391] = 9045, - [9392] = 9040, - [9393] = 8944, - [9394] = 8991, - [9395] = 9019, - [9396] = 8903, - [9397] = 9019, - [9398] = 8940, - [9399] = 8937, - [9400] = 8864, - [9401] = 2656, - [9402] = 8962, - [9403] = 8991, - [9404] = 2653, - [9405] = 8866, - [9406] = 8970, - [9407] = 8937, - [9408] = 8962, - [9409] = 8965, - [9410] = 8991, - [9411] = 8937, - [9412] = 8991, - [9413] = 8937, - [9414] = 8991, - [9415] = 8937, - [9416] = 8991, - [9417] = 8937, - [9418] = 8991, - [9419] = 8937, - [9420] = 8991, - [9421] = 8937, - [9422] = 8991, - [9423] = 8977, - [9424] = 8884, - [9425] = 9425, - [9426] = 9426, - [9427] = 9427, - [9428] = 8964, - [9429] = 8902, - [9430] = 8945, - [9431] = 8943, - [9432] = 8934, - [9433] = 8950, - [9434] = 9049, - [9435] = 8927, - [9436] = 8884, - [9437] = 9010, - [9438] = 8925, - [9439] = 9010, - [9440] = 8945, - [9441] = 8924, - [9442] = 8950, - [9443] = 9041, - [9444] = 8957, - [9445] = 9019, - [9446] = 8867, - [9447] = 8961, - [9448] = 9390, - [9449] = 8922, - [9450] = 8940, - [9451] = 8863, - [9452] = 8939, - [9453] = 8963, - [9454] = 8977, - [9455] = 8861, - [9456] = 9040, - [9457] = 9045, - [9458] = 9079, - [9459] = 8866, - [9460] = 8962, - [9461] = 8916, - [9462] = 8961, - [9463] = 8950, - [9464] = 9464, - [9465] = 9030, - [9466] = 8957, - [9467] = 9089, - [9468] = 8870, - [9469] = 9053, - [9470] = 9088, - [9471] = 9047, - [9472] = 9092, - [9473] = 8917, - [9474] = 9106, - [9475] = 9065, - [9476] = 9019, - [9477] = 9040, - [9478] = 9045, - [9479] = 9100, - [9480] = 8862, - [9481] = 9030, - [9482] = 8904, - [9483] = 9059, - [9484] = 8865, - [9485] = 8944, - [9486] = 8916, - [9487] = 7543, - [9488] = 8868, - [9489] = 8956, - [9490] = 9092, - [9491] = 8982, - [9492] = 8973, - [9493] = 8943, - [9494] = 8902, - [9495] = 8933, - [9496] = 9096, - [9497] = 9497, - [9498] = 8874, - [9499] = 8924, - [9500] = 9500, - [9501] = 8909, - [9502] = 8881, - [9503] = 8907, - [9504] = 8919, - [9505] = 9505, - [9506] = 8919, - [9507] = 9348, - [9508] = 8867, - [9509] = 8876, - [9510] = 8980, - [9511] = 9511, - [9512] = 8934, - [9513] = 8864, - [9514] = 8904, - [9515] = 9028, - [9516] = 9100, - [9517] = 8856, - [9518] = 8926, - [9519] = 9001, - [9520] = 8917, - [9521] = 9521, - [9522] = 9522, - [9523] = 8938, - [9524] = 9524, - [9525] = 9525, - [9526] = 9526, - [9527] = 9527, - [9528] = 8941, - [9529] = 9529, - [9530] = 9530, - [9531] = 9531, - [9532] = 9532, - [9533] = 9533, - [9534] = 9534, - [9535] = 9535, - [9536] = 9002, - [9537] = 9025, - [9538] = 8964, - [9539] = 8901, - [9540] = 9089, - [9541] = 9071, - [9542] = 8984, - [9543] = 8884, - [9544] = 8970, - [9545] = 6311, - [9546] = 9020, - [9547] = 9002, - [9548] = 8941, - [9549] = 9096, - [9550] = 8943, - [9551] = 9001, - [9552] = 9092, - [9553] = 8921, - [9554] = 8856, - [9555] = 8968, - [9556] = 8860, - [9557] = 9030, - [9558] = 9045, - [9559] = 8876, - [9560] = 8968, - [9561] = 9040, - [9562] = 9079, - [9563] = 8965, - [9564] = 8900, - [9565] = 9019, - [9566] = 9010, - [9567] = 8980, - [9568] = 8962, - [9569] = 8937, - [9570] = 9570, - [9571] = 8936, - [9572] = 8950, - [9573] = 8907, - [9574] = 8878, - [9575] = 8973, - [9576] = 9576, - [9577] = 9089, - [9578] = 8864, - [9579] = 9579, - [9580] = 8902, - [9581] = 9096, - [9582] = 9069, - [9583] = 8862, - [9584] = 8934, - [9585] = 8869, - [9586] = 8933, - [9587] = 9088, - [9588] = 8941, - [9589] = 8867, - [9590] = 9425, - [9591] = 9426, - [9592] = 9427, - [9593] = 8917, - [9594] = 8884, - [9595] = 9086, - [9596] = 8873, - [9597] = 8957, - [9598] = 8930, - [9599] = 8904, - [9600] = 8961, - [9601] = 9390, - [9602] = 8921, - [9603] = 8928, - [9604] = 9065, - [9605] = 9059, - [9606] = 8970, - [9607] = 8909, - [9608] = 8964, - [9609] = 8865, - [9610] = 8950, - [9611] = 8919, - [9612] = 8927, - [9613] = 8978, - [9614] = 8909, - [9615] = 9615, - [9616] = 8929, - [9617] = 9106, - [9618] = 8867, - [9619] = 8925, - [9620] = 8979, - [9621] = 9025, - [9622] = 8909, - [9623] = 9079, - [9624] = 9624, - [9625] = 8984, - [9626] = 8865, - [9627] = 9627, - [9628] = 8881, - [9629] = 9079, - [9630] = 9089, - [9631] = 9088, - [9632] = 8917, - [9633] = 9086, - [9634] = 9088, - [9635] = 9426, - [9636] = 9427, - [9637] = 9053, - [9638] = 8922, - [9639] = 9065, - [9640] = 8957, - [9641] = 8876, - [9642] = 8961, - [9643] = 9390, - [9644] = 8917, - [9645] = 8863, - [9646] = 9065, - [9647] = 9059, - [9648] = 9648, - [9649] = 9426, - [9650] = 9427, - [9651] = 8862, - [9652] = 8861, - [9653] = 8951, - [9654] = 8957, - [9655] = 9041, - [9656] = 8961, - [9657] = 9390, - [9658] = 9020, - [9659] = 9002, - [9660] = 9001, - [9661] = 8941, - [9662] = 9662, - [9663] = 9426, - [9664] = 9427, - [9665] = 8866, - [9666] = 8984, - [9667] = 8957, - [9668] = 9390, - [9669] = 9427, - [9670] = 9426, - [9671] = 9426, - [9672] = 9427, - [9673] = 9049, - [9674] = 8957, - [9675] = 9390, - [9676] = 8919, - [9677] = 9426, - [9678] = 9427, - [9679] = 8870, - [9680] = 8957, - [9681] = 9390, - [9682] = 8856, - [9683] = 9426, - [9684] = 9427, - [9685] = 9079, - [9686] = 8957, - [9687] = 9390, - [9688] = 8864, - [9689] = 8933, - [9690] = 8957, - [9691] = 9390, - [9692] = 8911, - [9693] = 9047, - [9694] = 9390, - [9695] = 8987, - [9696] = 9390, - [9697] = 9089, - [9698] = 9390, - [9699] = 8985, - [9700] = 9390, - [9701] = 9088, - [9702] = 9390, - [9703] = 8917, - [9704] = 9390, - [9705] = 9065, - [9706] = 9390, - [9707] = 9425, - [9708] = 9708, - [9709] = 9570, - [9710] = 8910, - [9711] = 9028, - [9712] = 8973, - [9713] = 8947, - [9714] = 9425, - [9715] = 9708, - [9716] = 9570, - [9717] = 9717, - [9718] = 9708, - [9719] = 8908, - [9720] = 8968, - [9721] = 9425, - [9722] = 9708, - [9723] = 9570, - [9724] = 9053, - [9725] = 9049, - [9726] = 9425, - [9727] = 9425, - [9728] = 9708, - [9729] = 9570, - [9730] = 8982, - [9731] = 9041, - [9732] = 8868, - [9733] = 9708, - [9734] = 9570, - [9735] = 9053, - [9736] = 9570, - [9737] = 9570, - [9738] = 9570, - [9739] = 9570, - [9740] = 9570, - [9741] = 9570, - [9742] = 9570, - [9743] = 9570, - [9744] = 9570, - [9745] = 9570, - [9746] = 9570, - [9747] = 8982, - [9748] = 9049, - [9749] = 8905, - [9750] = 8916, - [9751] = 8973, - [9752] = 8903, - [9753] = 9041, - [9754] = 8980, - [9755] = 8907, - [9756] = 9717, - [9757] = 9717, - [9758] = 9717, - [9759] = 9717, - [9760] = 9717, + [8013] = 7538, + [8014] = 7386, + [8015] = 7376, + [8016] = 7538, + [8017] = 7386, + [8018] = 7195, + [8019] = 7538, + [8020] = 7386, + [8021] = 7205, + [8022] = 7386, + [8023] = 7386, + [8024] = 7386, + [8025] = 7386, + [8026] = 7386, + [8027] = 7386, + [8028] = 7386, + [8029] = 7386, + [8030] = 7386, + [8031] = 7386, + [8032] = 7386, + [8033] = 7218, + [8034] = 7276, + [8035] = 7277, + [8036] = 7270, + [8037] = 7281, + [8038] = 7480, + [8039] = 7480, + [8040] = 7480, + [8041] = 7480, + [8042] = 7480, }; +static inline bool sym_number_literal_character_set_1(int32_t c) { + return (c < 'b' + ? (c < 'L' + ? (c < 'D' + ? c == 'B' + : c <= 'F') + : (c <= 'L' || (c < 'W' + ? c == 'U' + : c <= 'W'))) + : (c <= 'b' || (c < 'u' + ? (c < 'l' + ? (c >= 'd' && c <= 'f') + : c <= 'l') + : (c <= 'u' || c == 'w')))); +} + +static inline bool sym_number_literal_character_set_2(int32_t c) { + return (c < 'b' + ? (c < 'L' + ? (c < 'D' + ? c == 'B' + : (c <= 'D' || c == 'F')) + : (c <= 'L' || (c < 'W' + ? c == 'U' + : c <= 'W'))) + : (c <= 'b' || (c < 'l' + ? (c < 'f' + ? c == 'd' + : c <= 'f') + : (c <= 'l' || (c < 'w' + ? c == 'u' + : c <= 'w'))))); +} + static inline bool sym_identifier_character_set_1(int32_t c) { return (c < 43471 ? (c < 4096 @@ -28494,57 +26813,57 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); switch (state) { case 0: - if (eof) ADVANCE(317); - if (lookahead == '!') ADVANCE(384); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '#') ADVANCE(277); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '(') ADVANCE(321); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(398); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(387); - if (lookahead == '.') ADVANCE(468); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '0') ADVANCE(477); - if (lookahead == ':') ADVANCE(452); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); - if (lookahead == 'F') ADVANCE(542); - if (lookahead == 'L') ADVANCE(516); - if (lookahead == 'R') ADVANCE(519); - if (lookahead == 'T') ADVANCE(546); - if (lookahead == 'U') ADVANCE(520); - if (lookahead == '[') ADVANCE(444); + if (eof) ADVANCE(316); + if (lookahead == '!') ADVANCE(383); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '#') ADVANCE(276); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '\'') ADVANCE(494); + if (lookahead == '(') ADVANCE(320); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(397); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '.') ADVANCE(467); + if (lookahead == '/') ADVANCE(405); + if (lookahead == '0') ADVANCE(476); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'F') ADVANCE(543); + if (lookahead == 'L') ADVANCE(517); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'T') ADVANCE(547); + if (lookahead == 'U') ADVANCE(521); + if (lookahead == '[') ADVANCE(443); if (lookahead == '\\') ADVANCE(2); - if (lookahead == ']') ADVANCE(446); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(551); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 't') ADVANCE(593); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '}') ADVANCE(441); - if (lookahead == '~') ADVANCE(385); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(552); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 't') ADVANCE(594); + if (lookahead == 'u') ADVANCE(524); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '}') ADVANCE(440); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(315) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); + lookahead == ' ') SKIP(314) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); case 1: if (lookahead == '\n') SKIP(162) @@ -28552,8 +26871,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 2: if (lookahead == '\n') SKIP(162) if (lookahead == '\r') SKIP(1) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 3: if (lookahead == '\n') SKIP(171) @@ -28561,8 +26880,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 4: if (lookahead == '\n') SKIP(171) if (lookahead == '\r') SKIP(3) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 5: if (lookahead == '\n') SKIP(170) @@ -28570,8 +26889,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 6: if (lookahead == '\n') SKIP(170) if (lookahead == '\r') SKIP(5) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 7: if (lookahead == '\n') SKIP(174) @@ -28579,8 +26898,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 8: if (lookahead == '\n') SKIP(174) if (lookahead == '\r') SKIP(7) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 9: if (lookahead == '\n') SKIP(172) @@ -28588,8 +26907,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 10: if (lookahead == '\n') SKIP(172) if (lookahead == '\r') SKIP(9) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 11: if (lookahead == '\n') SKIP(175) @@ -28597,8 +26916,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 12: if (lookahead == '\n') SKIP(175) if (lookahead == '\r') SKIP(11) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 13: if (lookahead == '\n') SKIP(164) @@ -28606,8 +26925,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 14: if (lookahead == '\n') SKIP(164) if (lookahead == '\r') SKIP(13) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 15: if (lookahead == '\n') SKIP(163) @@ -28615,8 +26934,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 16: if (lookahead == '\n') SKIP(163) if (lookahead == '\r') SKIP(15) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 17: if (lookahead == '\n') SKIP(165) @@ -28624,8 +26943,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 18: if (lookahead == '\n') SKIP(165) if (lookahead == '\r') SKIP(17) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 19: if (lookahead == '\n') SKIP(176) @@ -28633,8 +26952,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 20: if (lookahead == '\n') SKIP(176) if (lookahead == '\r') SKIP(19) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 21: if (lookahead == '\n') SKIP(238) @@ -28642,8 +26961,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 22: if (lookahead == '\n') SKIP(238) if (lookahead == '\r') SKIP(21) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 23: if (lookahead == '\n') SKIP(193) @@ -28651,8 +26970,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 24: if (lookahead == '\n') SKIP(193) if (lookahead == '\r') SKIP(23) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 25: if (lookahead == '\n') SKIP(237) @@ -28660,8 +26979,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 26: if (lookahead == '\n') SKIP(237) if (lookahead == '\r') SKIP(25) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 27: if (lookahead == '\n') SKIP(239) @@ -28669,8 +26988,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 28: if (lookahead == '\n') SKIP(239) if (lookahead == '\r') SKIP(27) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 29: if (lookahead == '\n') SKIP(168) @@ -28678,8 +26997,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 30: if (lookahead == '\n') SKIP(168) if (lookahead == '\r') SKIP(29) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 31: if (lookahead == '\n') SKIP(182) @@ -28687,8 +27006,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 32: if (lookahead == '\n') SKIP(182) if (lookahead == '\r') SKIP(31) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 33: if (lookahead == '\n') SKIP(178) @@ -28696,17 +27015,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 34: if (lookahead == '\n') SKIP(178) if (lookahead == '\r') SKIP(33) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 35: - if (lookahead == '\n') SKIP(202) + if (lookahead == '\n') SKIP(203) END_STATE(); case 36: - if (lookahead == '\n') SKIP(202) + if (lookahead == '\n') SKIP(203) if (lookahead == '\r') SKIP(35) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 37: if (lookahead == '\n') SKIP(195) @@ -28714,8 +27033,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 38: if (lookahead == '\n') SKIP(195) if (lookahead == '\r') SKIP(37) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 39: if (lookahead == '\n') SKIP(179) @@ -28723,8 +27042,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 40: if (lookahead == '\n') SKIP(179) if (lookahead == '\r') SKIP(39) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 41: if (lookahead == '\n') SKIP(186) @@ -28732,8 +27051,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 42: if (lookahead == '\n') SKIP(186) if (lookahead == '\r') SKIP(41) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 43: if (lookahead == '\n') SKIP(194) @@ -28741,62 +27060,62 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 44: if (lookahead == '\n') SKIP(194) if (lookahead == '\r') SKIP(43) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 45: - if (lookahead == '\n') SKIP(204) + if (lookahead == '\n') SKIP(184) END_STATE(); case 46: - if (lookahead == '\n') SKIP(204) + if (lookahead == '\n') SKIP(184) if (lookahead == '\r') SKIP(45) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 47: - if (lookahead == '\n') SKIP(184) + if (lookahead == '\n') SKIP(220) END_STATE(); case 48: - if (lookahead == '\n') SKIP(184) + if (lookahead == '\n') SKIP(220) if (lookahead == '\r') SKIP(47) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 49: - if (lookahead == '\n') SKIP(220) + if (lookahead == '\n') SKIP(180) END_STATE(); case 50: - if (lookahead == '\n') SKIP(220) + if (lookahead == '\n') SKIP(180) if (lookahead == '\r') SKIP(49) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 51: - if (lookahead == '\n') SKIP(180) + if (lookahead == '\n') SKIP(187) END_STATE(); case 52: - if (lookahead == '\n') SKIP(180) + if (lookahead == '\n') SKIP(187) if (lookahead == '\r') SKIP(51) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 53: - if (lookahead == '\n') SKIP(187) + if (lookahead == '\n') SKIP(207) END_STATE(); case 54: - if (lookahead == '\n') SKIP(187) + if (lookahead == '\n') SKIP(207) if (lookahead == '\r') SKIP(53) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 55: - if (lookahead == '\n') SKIP(207) + if (lookahead == '\n') SKIP(198) END_STATE(); case 56: - if (lookahead == '\n') SKIP(207) + if (lookahead == '\n') SKIP(198) if (lookahead == '\r') SKIP(55) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 57: if (lookahead == '\n') SKIP(229) @@ -28804,35 +27123,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 58: if (lookahead == '\n') SKIP(229) if (lookahead == '\r') SKIP(57) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 59: - if (lookahead == '\n') SKIP(198) + if (lookahead == '\n') SKIP(196) END_STATE(); case 60: - if (lookahead == '\n') SKIP(198) + if (lookahead == '\n') SKIP(196) if (lookahead == '\r') SKIP(59) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 61: - if (lookahead == '\n') SKIP(211) + if (lookahead == '\n') SKIP(222) END_STATE(); case 62: - if (lookahead == '\n') SKIP(211) + if (lookahead == '\n') SKIP(222) if (lookahead == '\r') SKIP(61) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 63: - if (lookahead == '\n') SKIP(222) + if (lookahead == '\n') SKIP(211) END_STATE(); case 64: - if (lookahead == '\n') SKIP(222) + if (lookahead == '\n') SKIP(211) if (lookahead == '\r') SKIP(63) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 65: if (lookahead == '\n') SKIP(240) @@ -28840,8 +27159,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 66: if (lookahead == '\n') SKIP(240) if (lookahead == '\r') SKIP(65) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 67: if (lookahead == '\n') SKIP(232) @@ -28849,8 +27168,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 68: if (lookahead == '\n') SKIP(232) if (lookahead == '\r') SKIP(67) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 69: if (lookahead == '\n') SKIP(210) @@ -28858,8 +27177,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 70: if (lookahead == '\n') SKIP(210) if (lookahead == '\r') SKIP(69) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 71: if (lookahead == '\n') SKIP(189) @@ -28867,8 +27186,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 72: if (lookahead == '\n') SKIP(189) if (lookahead == '\r') SKIP(71) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 73: if (lookahead == '\n') SKIP(169) @@ -28876,8 +27195,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 74: if (lookahead == '\n') SKIP(169) if (lookahead == '\r') SKIP(73) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 75: if (lookahead == '\n') SKIP(213) @@ -28885,8 +27204,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 76: if (lookahead == '\n') SKIP(213) if (lookahead == '\r') SKIP(75) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 77: if (lookahead == '\n') SKIP(212) @@ -28894,80 +27213,80 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 78: if (lookahead == '\n') SKIP(212) if (lookahead == '\r') SKIP(77) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 79: - if (lookahead == '\n') SKIP(197) + if (lookahead == '\n') SKIP(245) END_STATE(); case 80: - if (lookahead == '\n') SKIP(197) + if (lookahead == '\n') SKIP(245) if (lookahead == '\r') SKIP(79) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 81: - if (lookahead == '\n') SKIP(245) + if (lookahead == '\n') SKIP(197) END_STATE(); case 82: - if (lookahead == '\n') SKIP(245) + if (lookahead == '\n') SKIP(197) if (lookahead == '\r') SKIP(81) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 83: - if (lookahead == '\n') SKIP(241) + if (lookahead == '\n') SKIP(242) END_STATE(); case 84: - if (lookahead == '\n') SKIP(241) + if (lookahead == '\n') SKIP(242) if (lookahead == '\r') SKIP(83) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 85: - if (lookahead == '\n') SKIP(242) + if (lookahead == '\n') SKIP(243) END_STATE(); case 86: - if (lookahead == '\n') SKIP(242) + if (lookahead == '\n') SKIP(243) if (lookahead == '\r') SKIP(85) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 87: - if (lookahead == '\n') SKIP(243) + if (lookahead == '\n') SKIP(218) END_STATE(); case 88: - if (lookahead == '\n') SKIP(243) + if (lookahead == '\n') SKIP(218) if (lookahead == '\r') SKIP(87) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 89: - if (lookahead == '\n') SKIP(218) + if (lookahead == '\n') SKIP(244) END_STATE(); case 90: - if (lookahead == '\n') SKIP(218) + if (lookahead == '\n') SKIP(244) if (lookahead == '\r') SKIP(89) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 91: - if (lookahead == '\n') SKIP(244) + if (lookahead == '\n') SKIP(247) END_STATE(); case 92: - if (lookahead == '\n') SKIP(244) + if (lookahead == '\n') SKIP(247) if (lookahead == '\r') SKIP(91) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 93: - if (lookahead == '\n') SKIP(247) + if (lookahead == '\n') SKIP(177) END_STATE(); case 94: - if (lookahead == '\n') SKIP(247) + if (lookahead == '\n') SKIP(177) if (lookahead == '\r') SKIP(93) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 95: if (lookahead == '\n') SKIP(97) @@ -28977,236 +27296,236 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(95) END_STATE(); case 97: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(407); - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(396); - if (lookahead == '-') ADVANCE(386); - if (lookahead == '/') ADVANCE(405); - if (lookahead == '<') ADVANCE(431); - if (lookahead == '=') ADVANCE(266); - if (lookahead == '>') ADVANCE(422); + if (lookahead == '\n') ADVANCE(325); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(395); + if (lookahead == '-') ADVANCE(385); + if (lookahead == '/') ADVANCE(404); + if (lookahead == '<') ADVANCE(430); + if (lookahead == '=') ADVANCE(265); + if (lookahead == '>') ADVANCE(421); if (lookahead == '\\') SKIP(96) - if (lookahead == '^') ADVANCE(414); - if (lookahead == '|') ADVANCE(413); + if (lookahead == '^') ADVANCE(413); + if (lookahead == '|') ADVANCE(412); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(97) END_STATE(); case 98: - if (lookahead == '\n') SKIP(177) + if (lookahead == '\n') SKIP(233) END_STATE(); case 99: - if (lookahead == '\n') SKIP(177) + if (lookahead == '\n') SKIP(233) if (lookahead == '\r') SKIP(98) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 100: - if (lookahead == '\n') SKIP(233) + if (lookahead == '\n') SKIP(246) END_STATE(); case 101: - if (lookahead == '\n') SKIP(233) + if (lookahead == '\n') SKIP(246) if (lookahead == '\r') SKIP(100) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 102: - if (lookahead == '\n') SKIP(246) + if (lookahead == '\n') SKIP(234) END_STATE(); case 103: - if (lookahead == '\n') SKIP(246) + if (lookahead == '\n') SKIP(234) if (lookahead == '\r') SKIP(102) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 104: - if (lookahead == '\n') SKIP(234) + if (lookahead == '\n') SKIP(235) + if (lookahead == '"') ADVANCE(503); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '\\') ADVANCE(105); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(507); + if (lookahead != 0) ADVANCE(508); END_STATE(); case 105: - if (lookahead == '\n') SKIP(234) - if (lookahead == '\r') SKIP(104) + if (lookahead == '\n') ADVANCE(510); + if (lookahead == '\r') ADVANCE(509); if (lookahead == 'U') ADVANCE(311); if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'x') ADVANCE(299); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(512); + if (lookahead != 0) ADVANCE(509); END_STATE(); case 106: - if (lookahead == '\n') ADVANCE(319); + if (lookahead == '\n') ADVANCE(318); if (lookahead == '\r') ADVANCE(110); - if (lookahead == '(') ADVANCE(321); - if (lookahead == '/') ADVANCE(341); - if (lookahead == '\\') ADVANCE(339); + if (lookahead == '(') ADVANCE(320); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '\\') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(262) - if (lookahead != 0) ADVANCE(342); + lookahead == ' ') SKIP(261) + if (lookahead != 0) ADVANCE(341); END_STATE(); case 107: - if (lookahead == '\n') ADVANCE(319); + if (lookahead == '\n') ADVANCE(318); if (lookahead == '\r') ADVANCE(110); - if (lookahead == '/') ADVANCE(341); - if (lookahead == '\\') ADVANCE(339); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '\\') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(262) - if (lookahead != 0) ADVANCE(342); + lookahead == ' ') SKIP(261) + if (lookahead != 0) ADVANCE(341); END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(319); + if (lookahead == '\n') ADVANCE(318); if (lookahead == '\r') ADVANCE(109); - if (lookahead == '(') ADVANCE(382); + if (lookahead == '(') ADVANCE(381); if (lookahead == '/') ADVANCE(251); - if (lookahead == '\\') SKIP(114) + if (lookahead == '\\') SKIP(112) if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(248) END_STATE(); case 109: - if (lookahead == '\n') ADVANCE(319); - if (lookahead == '(') ADVANCE(382); + if (lookahead == '\n') ADVANCE(318); + if (lookahead == '(') ADVANCE(381); if (lookahead == '/') ADVANCE(251); - if (lookahead == '\\') SKIP(114) + if (lookahead == '\\') SKIP(112) if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(248) END_STATE(); case 110: - if (lookahead == '\n') ADVANCE(319); - if (lookahead == '/') ADVANCE(341); - if (lookahead == '\\') ADVANCE(339); + if (lookahead == '\n') ADVANCE(318); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '\\') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(262) - if (lookahead != 0) ADVANCE(342); + lookahead == ' ') SKIP(261) + if (lookahead != 0) ADVANCE(341); END_STATE(); case 111: - if (lookahead == '\n') SKIP(235) - if (lookahead == '"') ADVANCE(502); - if (lookahead == '/') ADVANCE(503); - if (lookahead == '\\') ADVANCE(112); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(506); - if (lookahead != 0) ADVANCE(507); + if (lookahead == '\n') SKIP(248) END_STATE(); case 112: - if (lookahead == '\n') ADVANCE(509); - if (lookahead == '\r') ADVANCE(508); - if (lookahead == 'U') ADVANCE(312); - if (lookahead == 'u') ADVANCE(304); - if (lookahead == 'x') ADVANCE(300); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(511); - if (lookahead != 0) ADVANCE(508); + if (lookahead == '\n') SKIP(248) + if (lookahead == '\r') SKIP(111) END_STATE(); case 113: - if (lookahead == '\n') SKIP(248) + if (lookahead == '\n') SKIP(260) + if (lookahead == '/') ADVANCE(497); + if (lookahead == '\\') ADVANCE(496); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(498); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(495); END_STATE(); case 114: - if (lookahead == '\n') SKIP(248) - if (lookahead == '\r') SKIP(113) + if (lookahead == '\n') SKIP(173) END_STATE(); case 115: - if (lookahead == '\n') SKIP(261) - if (lookahead == '/') ADVANCE(496); - if (lookahead == '\\') ADVANCE(495); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(497); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(494); + if (lookahead == '\n') SKIP(173) + if (lookahead == '\r') SKIP(114) + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 116: - if (lookahead == '\n') SKIP(173) + if (lookahead == '\n') SKIP(166) END_STATE(); case 117: - if (lookahead == '\n') SKIP(173) + if (lookahead == '\n') SKIP(166) if (lookahead == '\r') SKIP(116) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 118: - if (lookahead == '\n') SKIP(166) + if (lookahead == '\n') SKIP(167) END_STATE(); case 119: - if (lookahead == '\n') SKIP(166) + if (lookahead == '\n') SKIP(167) if (lookahead == '\r') SKIP(118) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 120: - if (lookahead == '\n') SKIP(167) + if (lookahead == '\n') SKIP(219) END_STATE(); case 121: - if (lookahead == '\n') SKIP(167) + if (lookahead == '\n') SKIP(219) if (lookahead == '\r') SKIP(120) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 122: - if (lookahead == '\n') SKIP(219) + if (lookahead == '\n') SKIP(202) END_STATE(); case 123: - if (lookahead == '\n') SKIP(219) + if (lookahead == '\n') SKIP(202) if (lookahead == '\r') SKIP(122) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 124: - if (lookahead == '\n') SKIP(196) + if (lookahead == '\n') SKIP(183) END_STATE(); case 125: - if (lookahead == '\n') SKIP(196) + if (lookahead == '\n') SKIP(183) if (lookahead == '\r') SKIP(124) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 126: - if (lookahead == '\n') SKIP(183) + if (lookahead == '\n') SKIP(224) END_STATE(); case 127: - if (lookahead == '\n') SKIP(183) + if (lookahead == '\n') SKIP(224) if (lookahead == '\r') SKIP(126) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 128: - if (lookahead == '\n') SKIP(224) + if (lookahead == '\n') SKIP(191) END_STATE(); case 129: - if (lookahead == '\n') SKIP(224) + if (lookahead == '\n') SKIP(191) if (lookahead == '\r') SKIP(128) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 130: - if (lookahead == '\n') SKIP(191) + if (lookahead == '\n') SKIP(225) END_STATE(); case 131: - if (lookahead == '\n') SKIP(191) + if (lookahead == '\n') SKIP(225) if (lookahead == '\r') SKIP(130) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 132: - if (lookahead == '\n') SKIP(225) + if (lookahead == '\n') SKIP(214) END_STATE(); case 133: - if (lookahead == '\n') SKIP(225) + if (lookahead == '\n') SKIP(214) if (lookahead == '\r') SKIP(132) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 134: - if (lookahead == '\n') SKIP(214) + if (lookahead == '\n') SKIP(228) END_STATE(); case 135: - if (lookahead == '\n') SKIP(214) + if (lookahead == '\n') SKIP(228) if (lookahead == '\r') SKIP(134) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 136: - if (lookahead == '\n') SKIP(228) + if (lookahead == '\n') SKIP(241) END_STATE(); case 137: - if (lookahead == '\n') SKIP(228) + if (lookahead == '\n') SKIP(241) if (lookahead == '\r') SKIP(136) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 138: if (lookahead == '\n') SKIP(209) @@ -29214,8 +27533,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 139: if (lookahead == '\n') SKIP(209) if (lookahead == '\r') SKIP(138) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 140: if (lookahead == '\n') SKIP(216) @@ -29223,17 +27542,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 141: if (lookahead == '\n') SKIP(216) if (lookahead == '\r') SKIP(140) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 142: - if (lookahead == '\n') SKIP(200) + if (lookahead == '\n') SKIP(201) END_STATE(); case 143: - if (lookahead == '\n') SKIP(200) + if (lookahead == '\n') SKIP(201) if (lookahead == '\r') SKIP(142) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 144: if (lookahead == '\n') SKIP(206) @@ -29241,17 +27560,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 145: if (lookahead == '\n') SKIP(206) if (lookahead == '\r') SKIP(144) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 146: - if (lookahead == '\n') SKIP(203) + if (lookahead == '\n') SKIP(204) END_STATE(); case 147: - if (lookahead == '\n') SKIP(203) + if (lookahead == '\n') SKIP(204) if (lookahead == '\r') SKIP(146) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 148: if (lookahead == '\n') SKIP(227) @@ -29259,8 +27578,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 149: if (lookahead == '\n') SKIP(227) if (lookahead == '\r') SKIP(148) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 150: if (lookahead == '\n') SKIP(217) @@ -29268,17 +27587,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 151: if (lookahead == '\n') SKIP(217) if (lookahead == '\r') SKIP(150) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 152: - if (lookahead == '\n') SKIP(201) + if (lookahead == '\n') SKIP(200) END_STATE(); case 153: - if (lookahead == '\n') SKIP(201) + if (lookahead == '\n') SKIP(200) if (lookahead == '\r') SKIP(152) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 154: if (lookahead == '\n') SKIP(223) @@ -29286,8 +27605,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 155: if (lookahead == '\n') SKIP(223) if (lookahead == '\r') SKIP(154) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 156: if (lookahead == '\n') SKIP(221) @@ -29295,8 +27614,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 157: if (lookahead == '\n') SKIP(221) if (lookahead == '\r') SKIP(156) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 158: if (lookahead == '\n') SKIP(231) @@ -29304,8 +27623,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 159: if (lookahead == '\n') SKIP(231) if (lookahead == '\r') SKIP(158) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 160: if (lookahead == '\n') SKIP(205) @@ -29313,2661 +27632,2663 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 161: if (lookahead == '\n') SKIP(205) if (lookahead == '\r') SKIP(160) - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 162: - if (lookahead == '!') ADVANCE(384); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '#') ADVANCE(277); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(398); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(387); - if (lookahead == '.') ADVANCE(468); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '0') ADVANCE(477); - if (lookahead == ':') ADVANCE(452); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); - if (lookahead == 'F') ADVANCE(542); - if (lookahead == 'L') ADVANCE(516); - if (lookahead == 'R') ADVANCE(519); - if (lookahead == 'T') ADVANCE(546); - if (lookahead == 'U') ADVANCE(520); - if (lookahead == '[') ADVANCE(444); + if (lookahead == '!') ADVANCE(383); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '#') ADVANCE(276); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '\'') ADVANCE(494); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(397); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '.') ADVANCE(467); + if (lookahead == '/') ADVANCE(405); + if (lookahead == '0') ADVANCE(476); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'F') ADVANCE(543); + if (lookahead == 'L') ADVANCE(517); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'T') ADVANCE(547); + if (lookahead == 'U') ADVANCE(521); + if (lookahead == '[') ADVANCE(443); if (lookahead == '\\') ADVANCE(2); - if (lookahead == ']') ADVANCE(446); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(551); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 't') ADVANCE(593); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '}') ADVANCE(441); - if (lookahead == '~') ADVANCE(385); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(552); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 't') ADVANCE(594); + if (lookahead == 'u') ADVANCE(524); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '}') ADVANCE(440); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(162) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); case 163: - if (lookahead == '!') ADVANCE(384); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(398); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(387); - if (lookahead == '.') ADVANCE(468); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '0') ADVANCE(477); - if (lookahead == ':') ADVANCE(263); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == 'F') ADVANCE(542); - if (lookahead == 'L') ADVANCE(516); - if (lookahead == 'R') ADVANCE(519); - if (lookahead == 'T') ADVANCE(546); - if (lookahead == 'U') ADVANCE(520); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(16); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(551); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 't') ADVANCE(593); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '~') ADVANCE(385); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(163) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); - END_STATE(); - case 164: - if (lookahead == '!') ADVANCE(384); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(398); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(388); - if (lookahead == '.') ADVANCE(468); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '0') ADVANCE(477); - if (lookahead == ':') ADVANCE(452); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == 'F') ADVANCE(542); - if (lookahead == 'L') ADVANCE(516); - if (lookahead == 'R') ADVANCE(519); - if (lookahead == 'T') ADVANCE(546); - if (lookahead == 'U') ADVANCE(520); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(14); - if (lookahead == ']') ADVANCE(446); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(551); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 't') ADVANCE(593); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '}') ADVANCE(441); - if (lookahead == '~') ADVANCE(385); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(164) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); - END_STATE(); - case 165: - if (lookahead == '!') ADVANCE(384); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(398); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(388); - if (lookahead == '.') ADVANCE(468); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '0') ADVANCE(477); - if (lookahead == ':') ADVANCE(263); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); - if (lookahead == 'F') ADVANCE(542); - if (lookahead == 'L') ADVANCE(516); - if (lookahead == 'R') ADVANCE(519); - if (lookahead == 'T') ADVANCE(546); - if (lookahead == 'U') ADVANCE(520); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(18); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(551); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 't') ADVANCE(593); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '~') ADVANCE(385); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(165) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); - END_STATE(); - case 166: - if (lookahead == '!') ADVANCE(384); - if (lookahead == '"') ADVANCE(502); + if (lookahead == '!') ADVANCE(383); + if (lookahead == '"') ADVANCE(503); if (lookahead == '%') ADVANCE(407); if (lookahead == '&') ADVANCE(417); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); + if (lookahead == '\'') ADVANCE(494); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(399); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(389); - if (lookahead == '.') ADVANCE(468); + if (lookahead == '+') ADVANCE(397); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '.') ADVANCE(467); if (lookahead == '/') ADVANCE(405); - if (lookahead == '0') ADVANCE(477); - if (lookahead == ':') ADVANCE(452); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(430); - if (lookahead == '=') ADVANCE(266); + if (lookahead == '0') ADVANCE(476); + if (lookahead == ':') ADVANCE(262); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); if (lookahead == '>') ADVANCE(422); - if (lookahead == '?') ADVANCE(453); - if (lookahead == 'F') ADVANCE(542); - if (lookahead == 'L') ADVANCE(516); - if (lookahead == 'R') ADVANCE(519); - if (lookahead == 'T') ADVANCE(546); - if (lookahead == 'U') ADVANCE(520); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(119); - if (lookahead == ']') ADVANCE(446); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'F') ADVANCE(543); + if (lookahead == 'L') ADVANCE(517); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'T') ADVANCE(547); + if (lookahead == 'U') ADVANCE(521); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(16); if (lookahead == '^') ADVANCE(414); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(551); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 't') ADVANCE(593); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(413); - if (lookahead == '}') ADVANCE(441); - if (lookahead == '~') ADVANCE(385); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(552); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 't') ADVANCE(594); + if (lookahead == 'u') ADVANCE(524); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(166) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); + lookahead == ' ') SKIP(163) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); - case 167: - if (lookahead == '!') ADVANCE(384); - if (lookahead == '"') ADVANCE(502); + case 164: + if (lookahead == '!') ADVANCE(383); + if (lookahead == '"') ADVANCE(503); if (lookahead == '%') ADVANCE(407); if (lookahead == '&') ADVANCE(417); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '(') ADVANCE(382); + if (lookahead == '\'') ADVANCE(494); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(399); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(389); - if (lookahead == '.') ADVANCE(468); + if (lookahead == '+') ADVANCE(397); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(387); + if (lookahead == '.') ADVANCE(467); if (lookahead == '/') ADVANCE(405); - if (lookahead == '0') ADVANCE(477); - if (lookahead == ':') ADVANCE(263); - if (lookahead == '<') ADVANCE(430); - if (lookahead == '=') ADVANCE(266); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); - if (lookahead == 'F') ADVANCE(542); - if (lookahead == 'L') ADVANCE(516); - if (lookahead == 'R') ADVANCE(519); - if (lookahead == 'T') ADVANCE(546); - if (lookahead == 'U') ADVANCE(520); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(121); + if (lookahead == '0') ADVANCE(476); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'F') ADVANCE(543); + if (lookahead == 'L') ADVANCE(517); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'T') ADVANCE(547); + if (lookahead == 'U') ADVANCE(521); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(14); + if (lookahead == ']') ADVANCE(445); if (lookahead == '^') ADVANCE(414); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(551); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 't') ADVANCE(593); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(413); - if (lookahead == '~') ADVANCE(385); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(167) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); - END_STATE(); - case 168: - if (lookahead == '!') ADVANCE(384); - if (lookahead == '"') ADVANCE(236); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(249); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(263); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '[') ADVANCE(274); - if (lookahead == '\\') ADVANCE(30); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(580); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 'u') ADVANCE(573); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '~') ADVANCE(385); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(168) - END_STATE(); - case 169: - if (lookahead == '!') ADVANCE(384); - if (lookahead == '"') ADVANCE(236); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(249); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '[') ADVANCE(275); - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '~') ADVANCE(385); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(169) - END_STATE(); - case 170: - if (lookahead == '!') ADVANCE(383); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '#') ADVANCE(277); - if (lookahead == '&') ADVANCE(417); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(399); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(390); - if (lookahead == '.') ADVANCE(292); - if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(477); - if (lookahead == ':') ADVANCE(263); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(264); - if (lookahead == '>') ADVANCE(267); - if (lookahead == 'F') ADVANCE(542); - if (lookahead == 'L') ADVANCE(516); - if (lookahead == 'R') ADVANCE(519); - if (lookahead == 'T') ADVANCE(546); - if (lookahead == 'U') ADVANCE(520); - if (lookahead == '[') ADVANCE(443); - if (lookahead == '\\') ADVANCE(6); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(551); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 't') ADVANCE(593); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(552); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 't') ADVANCE(594); + if (lookahead == 'u') ADVANCE(524); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); if (lookahead == '|') ADVANCE(411); - if (lookahead == '~') ADVANCE(385); + if (lookahead == '}') ADVANCE(440); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(170) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); + lookahead == ' ') SKIP(164) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); - case 171: + case 165: if (lookahead == '!') ADVANCE(383); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '#') ADVANCE(283); + if (lookahead == '"') ADVANCE(503); if (lookahead == '%') ADVANCE(407); if (lookahead == '&') ADVANCE(417); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); + if (lookahead == '\'') ADVANCE(494); + if (lookahead == '(') ADVANCE(381); if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(399); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(390); - if (lookahead == '.') ADVANCE(470); + if (lookahead == '+') ADVANCE(397); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(387); + if (lookahead == '.') ADVANCE(467); if (lookahead == '/') ADVANCE(405); - if (lookahead == '0') ADVANCE(477); - if (lookahead == ':') ADVANCE(452); - if (lookahead == ';') ADVANCE(436); + if (lookahead == '0') ADVANCE(476); + if (lookahead == ':') ADVANCE(262); if (lookahead == '<') ADVANCE(427); if (lookahead == '=') ADVANCE(447); - if (lookahead == '>') ADVANCE(615); - if (lookahead == 'F') ADVANCE(542); - if (lookahead == 'L') ADVANCE(516); - if (lookahead == 'R') ADVANCE(519); - if (lookahead == 'T') ADVANCE(546); - if (lookahead == 'U') ADVANCE(520); - if (lookahead == '[') ADVANCE(443); - if (lookahead == '\\') ADVANCE(4); - if (lookahead == ']') ADVANCE(276); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'F') ADVANCE(543); + if (lookahead == 'L') ADVANCE(517); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'T') ADVANCE(547); + if (lookahead == 'U') ADVANCE(521); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(18); if (lookahead == '^') ADVANCE(414); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(551); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 't') ADVANCE(593); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(290); - if (lookahead == '}') ADVANCE(441); - if (lookahead == '~') ADVANCE(385); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(552); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 't') ADVANCE(594); + if (lookahead == 'u') ADVANCE(524); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(171) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); + lookahead == ' ') SKIP(165) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); - case 172: + case 166: if (lookahead == '!') ADVANCE(383); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '#') ADVANCE(286); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '%') ADVANCE(406); if (lookahead == '&') ADVANCE(416); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(399); - if (lookahead == '-') ADVANCE(390); - if (lookahead == '.') ADVANCE(259); - if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(477); - if (lookahead == ':') ADVANCE(263); - if (lookahead == ';') ADVANCE(436); - if (lookahead == 'F') ADVANCE(542); - if (lookahead == 'L') ADVANCE(516); - if (lookahead == 'R') ADVANCE(519); - if (lookahead == 'T') ADVANCE(546); - if (lookahead == 'U') ADVANCE(520); - if (lookahead == '[') ADVANCE(443); - if (lookahead == '\\') ADVANCE(10); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(551); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 't') ADVANCE(593); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '~') ADVANCE(385); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(172) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); - END_STATE(); - case 173: - if (lookahead == '!') ADVANCE(383); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '#') ADVANCE(279); - if (lookahead == '&') ADVANCE(417); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(399); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(390); - if (lookahead == '.') ADVANCE(292); - if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(477); - if (lookahead == ':') ADVANCE(263); - if (lookahead == ';') ADVANCE(436); + if (lookahead == '\'') ADVANCE(494); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(398); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(388); + if (lookahead == '.') ADVANCE(467); + if (lookahead == '/') ADVANCE(404); + if (lookahead == '0') ADVANCE(476); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(429); + if (lookahead == '=') ADVANCE(265); if (lookahead == '>') ADVANCE(421); - if (lookahead == 'F') ADVANCE(542); - if (lookahead == 'L') ADVANCE(516); - if (lookahead == 'R') ADVANCE(519); - if (lookahead == 'T') ADVANCE(546); - if (lookahead == 'U') ADVANCE(520); - if (lookahead == '[') ADVANCE(443); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'F') ADVANCE(543); + if (lookahead == 'L') ADVANCE(517); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'T') ADVANCE(547); + if (lookahead == 'U') ADVANCE(521); + if (lookahead == '[') ADVANCE(441); if (lookahead == '\\') ADVANCE(117); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(551); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 't') ADVANCE(593); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '~') ADVANCE(385); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(413); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(552); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 't') ADVANCE(594); + if (lookahead == 'u') ADVANCE(524); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(412); + if (lookahead == '}') ADVANCE(440); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(173) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); + lookahead == ' ') SKIP(166) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); - case 174: + case 167: if (lookahead == '!') ADVANCE(383); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '#') ADVANCE(281); - if (lookahead == '&') ADVANCE(417); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(399); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(390); - if (lookahead == '.') ADVANCE(292); - if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(477); - if (lookahead == ':') ADVANCE(263); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '>') ADVANCE(269); - if (lookahead == 'F') ADVANCE(542); - if (lookahead == 'L') ADVANCE(516); - if (lookahead == 'R') ADVANCE(519); - if (lookahead == 'T') ADVANCE(546); - if (lookahead == 'U') ADVANCE(520); - if (lookahead == '[') ADVANCE(443); - if (lookahead == '\\') ADVANCE(8); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(551); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 't') ADVANCE(593); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '~') ADVANCE(385); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '\'') ADVANCE(494); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(398); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(388); + if (lookahead == '.') ADVANCE(467); + if (lookahead == '/') ADVANCE(404); + if (lookahead == '0') ADVANCE(476); + if (lookahead == ':') ADVANCE(262); + if (lookahead == '<') ADVANCE(429); + if (lookahead == '=') ADVANCE(265); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'F') ADVANCE(543); + if (lookahead == 'L') ADVANCE(517); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'T') ADVANCE(547); + if (lookahead == 'U') ADVANCE(521); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(119); + if (lookahead == '^') ADVANCE(413); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(552); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 't') ADVANCE(594); + if (lookahead == 'u') ADVANCE(524); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(412); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(174) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); + lookahead == ' ') SKIP(167) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); - case 175: + case 168: if (lookahead == '!') ADVANCE(383); - if (lookahead == '"') ADVANCE(502); + if (lookahead == '"') ADVANCE(236); + if (lookahead == '%') ADVANCE(407); if (lookahead == '&') ADVANCE(417); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); + if (lookahead == '(') ADVANCE(249); if (lookahead == '*') ADVANCE(403); if (lookahead == '+') ADVANCE(399); - if (lookahead == ',') ADVANCE(323); + if (lookahead == ',') ADVANCE(322); if (lookahead == '-') ADVANCE(390); - if (lookahead == '.') ADVANCE(469); - if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(477); - if (lookahead == ':') ADVANCE(263); - if (lookahead == ';') ADVANCE(436); + if (lookahead == '/') ADVANCE(405); + if (lookahead == ':') ADVANCE(262); if (lookahead == '<') ADVANCE(427); if (lookahead == '=') ADVANCE(447); - if (lookahead == '>') ADVANCE(615); - if (lookahead == 'F') ADVANCE(542); - if (lookahead == 'L') ADVANCE(516); - if (lookahead == 'R') ADVANCE(519); - if (lookahead == 'T') ADVANCE(546); - if (lookahead == 'U') ADVANCE(520); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(12); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(551); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 't') ADVANCE(593); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '~') ADVANCE(385); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '[') ADVANCE(273); + if (lookahead == '\\') ADVANCE(30); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(581); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 'u') ADVANCE(574); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(175) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); + lookahead == ' ') SKIP(168) END_STATE(); - case 176: + case 169: if (lookahead == '!') ADVANCE(383); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '&') ADVANCE(416); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); + if (lookahead == '"') ADVANCE(236); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(249); if (lookahead == '*') ADVANCE(403); if (lookahead == '+') ADVANCE(399); - if (lookahead == ',') ADVANCE(323); + if (lookahead == ',') ADVANCE(322); if (lookahead == '-') ADVANCE(390); - if (lookahead == '.') ADVANCE(469); - if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(477); - if (lookahead == ':') ADVANCE(452); - if (lookahead == ';') ADVANCE(436); + if (lookahead == '/') ADVANCE(405); if (lookahead == '<') ADVANCE(427); if (lookahead == '=') ADVANCE(447); - if (lookahead == '>') ADVANCE(615); - if (lookahead == 'F') ADVANCE(542); - if (lookahead == 'L') ADVANCE(516); - if (lookahead == 'R') ADVANCE(519); - if (lookahead == 'T') ADVANCE(546); - if (lookahead == 'U') ADVANCE(520); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(20); - if (lookahead == ']') ADVANCE(446); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(551); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 't') ADVANCE(593); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '}') ADVANCE(441); - if (lookahead == '~') ADVANCE(385); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '[') ADVANCE(274); + if (lookahead == '\\') ADVANCE(74); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(176) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); + lookahead == ' ') SKIP(169) END_STATE(); - case 177: - if (lookahead == '!') ADVANCE(383); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '+') ADVANCE(401); - if (lookahead == '-') ADVANCE(394); - if (lookahead == '.') ADVANCE(292); + case 170: + if (lookahead == '!') ADVANCE(382); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '#') ADVANCE(276); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '\'') ADVANCE(494); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(398); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(389); + if (lookahead == '.') ADVANCE(291); if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(477); - if (lookahead == 'L') ADVANCE(534); - if (lookahead == 'U') ADVANCE(535); - if (lookahead == '\\') ADVANCE(99); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(605); - if (lookahead == 'u') ADVANCE(536); - if (lookahead == '~') ADVANCE(385); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(177) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); - END_STATE(); - case 178: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(263); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == 'L') ADVANCE(517); - if (lookahead == 'R') ADVANCE(519); - if (lookahead == 'U') ADVANCE(521); - if (lookahead == '[') ADVANCE(443); - if (lookahead == '\\') ADVANCE(34); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(605); - if (lookahead == 'u') ADVANCE(524); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '~') ADVANCE(385); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(178) - END_STATE(); - case 179: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(263); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); + if (lookahead == '0') ADVANCE(476); + if (lookahead == ':') ADVANCE(262); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(263); + if (lookahead == '>') ADVANCE(266); + if (lookahead == 'F') ADVANCE(543); if (lookahead == 'L') ADVANCE(517); - if (lookahead == 'R') ADVANCE(519); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'T') ADVANCE(547); if (lookahead == 'U') ADVANCE(521); if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(40); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(6); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(552); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 't') ADVANCE(594); if (lookahead == 'u') ADVANCE(524); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(410); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(179) + lookahead == ' ') SKIP(170) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); - case 180: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); + case 171: + if (lookahead == '!') ADVANCE(382); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '#') ADVANCE(282); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '\'') ADVANCE(494); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(398); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(389); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '/') ADVANCE(404); + if (lookahead == '0') ADVANCE(476); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(426); + if (lookahead == '=') ADVANCE(446); + if (lookahead == '>') ADVANCE(616); + if (lookahead == 'F') ADVANCE(543); if (lookahead == 'L') ADVANCE(517); - if (lookahead == 'R') ADVANCE(519); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'T') ADVANCE(547); if (lookahead == 'U') ADVANCE(521); if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(52); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(4); + if (lookahead == ']') ADVANCE(275); + if (lookahead == '^') ADVANCE(413); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(552); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 't') ADVANCE(594); if (lookahead == 'u') ADVANCE(524); - if (lookahead == '|') ADVANCE(412); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(289); + if (lookahead == '}') ADVANCE(440); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(180) - END_STATE(); - case 181: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == 'L') ADVANCE(625); - if (lookahead == 'R') ADVANCE(626); - if (lookahead == 'U') ADVANCE(627); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(52); - if (lookahead == '^') ADVANCE(415); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 't') || - ('v' <= lookahead && lookahead <= 'z')) ADVANCE(634); - if (lookahead == 'u') ADVANCE(628); - if (lookahead == '|') ADVANCE(412); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(180) - if (sym_identifier_character_set_6(lookahead)) ADVANCE(605); + lookahead == ' ') SKIP(171) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); - case 182: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(452); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); + case 172: + if (lookahead == '!') ADVANCE(382); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '&') ADVANCE(415); + if (lookahead == '\'') ADVANCE(494); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(398); + if (lookahead == '-') ADVANCE(389); + if (lookahead == '.') ADVANCE(258); + if (lookahead == '/') ADVANCE(251); + if (lookahead == '0') ADVANCE(476); + if (lookahead == ':') ADVANCE(262); + if (lookahead == ';') ADVANCE(435); + if (lookahead == 'F') ADVANCE(543); if (lookahead == 'L') ADVANCE(517); - if (lookahead == 'R') ADVANCE(519); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'T') ADVANCE(547); if (lookahead == 'U') ADVANCE(521); - if (lookahead == '[') ADVANCE(443); - if (lookahead == '\\') ADVANCE(32); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(605); + if (lookahead == '[') ADVANCE(442); + if (lookahead == '\\') ADVANCE(10); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(552); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 't') ADVANCE(594); if (lookahead == 'u') ADVANCE(524); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '}') ADVANCE(441); - if (lookahead == '~') ADVANCE(385); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(182) + lookahead == ' ') SKIP(172) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); - case 183: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(452); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); + case 173: + if (lookahead == '!') ADVANCE(382); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '#') ADVANCE(278); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '\'') ADVANCE(494); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(398); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(389); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '/') ADVANCE(251); + if (lookahead == '0') ADVANCE(476); + if (lookahead == ':') ADVANCE(262); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '>') ADVANCE(268); + if (lookahead == 'F') ADVANCE(543); if (lookahead == 'L') ADVANCE(517); - if (lookahead == 'R') ADVANCE(519); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'T') ADVANCE(547); if (lookahead == 'U') ADVANCE(521); if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(127); - if (lookahead == ']') ADVANCE(446); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_7(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(115); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(552); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 't') ADVANCE(594); if (lookahead == 'u') ADVANCE(524); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '}') ADVANCE(441); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(183) + lookahead == ' ') SKIP(173) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); - case 184: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(451); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); + case 174: + if (lookahead == '!') ADVANCE(382); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '#') ADVANCE(280); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '\'') ADVANCE(494); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(398); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(389); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '/') ADVANCE(251); + if (lookahead == '0') ADVANCE(476); + if (lookahead == ':') ADVANCE(262); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '>') ADVANCE(420); + if (lookahead == 'F') ADVANCE(543); if (lookahead == 'L') ADVANCE(517); - if (lookahead == 'R') ADVANCE(519); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'T') ADVANCE(547); if (lookahead == 'U') ADVANCE(521); if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(48); - if (lookahead == ']') ADVANCE(446); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_7(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(8); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(552); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 't') ADVANCE(594); if (lookahead == 'u') ADVANCE(524); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '}') ADVANCE(441); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(184) - END_STATE(); - case 185: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(451); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == 'L') ADVANCE(625); - if (lookahead == 'R') ADVANCE(626); - if (lookahead == 'U') ADVANCE(627); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(48); - if (lookahead == ']') ADVANCE(446); - if (lookahead == '^') ADVANCE(415); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 't') || - ('v' <= lookahead && lookahead <= 'z')) ADVANCE(634); - if (lookahead == 'u') ADVANCE(628); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '}') ADVANCE(441); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(184) - if (sym_identifier_character_set_6(lookahead)) ADVANCE(605); + lookahead == ' ') SKIP(174) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); - case 186: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(263); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); + case 175: + if (lookahead == '!') ADVANCE(382); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '\'') ADVANCE(494); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(398); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(389); + if (lookahead == '.') ADVANCE(468); + if (lookahead == '/') ADVANCE(251); + if (lookahead == '0') ADVANCE(476); + if (lookahead == ':') ADVANCE(262); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(426); + if (lookahead == '=') ADVANCE(446); + if (lookahead == '>') ADVANCE(616); + if (lookahead == 'F') ADVANCE(543); if (lookahead == 'L') ADVANCE(517); - if (lookahead == 'R') ADVANCE(519); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'T') ADVANCE(547); if (lookahead == 'U') ADVANCE(521); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(42); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(605); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(12); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(552); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 't') ADVANCE(594); if (lookahead == 'u') ADVANCE(524); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(186) + lookahead == ' ') SKIP(175) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); - case 187: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); + case 176: + if (lookahead == '!') ADVANCE(382); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '&') ADVANCE(415); + if (lookahead == '\'') ADVANCE(494); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(398); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(389); + if (lookahead == '.') ADVANCE(468); + if (lookahead == '/') ADVANCE(251); + if (lookahead == '0') ADVANCE(476); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(426); + if (lookahead == '=') ADVANCE(446); + if (lookahead == '>') ADVANCE(616); + if (lookahead == 'F') ADVANCE(543); if (lookahead == 'L') ADVANCE(517); - if (lookahead == 'R') ADVANCE(519); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'T') ADVANCE(547); if (lookahead == 'U') ADVANCE(521); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(54); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(605); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(20); + if (lookahead == ']') ADVANCE(445); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(552); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 't') ADVANCE(594); if (lookahead == 'u') ADVANCE(524); - if (lookahead == '|') ADVANCE(412); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '}') ADVANCE(440); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(187) + lookahead == ' ') SKIP(176) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); - case 188: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(404); + case 177: + if (lookahead == '!') ADVANCE(382); + if (lookahead == '\'') ADVANCE(494); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); - if (lookahead == 'L') ADVANCE(625); - if (lookahead == 'R') ADVANCE(626); - if (lookahead == 'U') ADVANCE(627); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(54); - if (lookahead == '^') ADVANCE(415); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 't') || - ('v' <= lookahead && lookahead <= 'z')) ADVANCE(634); - if (lookahead == 'u') ADVANCE(628); - if (lookahead == '|') ADVANCE(412); + if (lookahead == '-') ADVANCE(393); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '/') ADVANCE(251); + if (lookahead == '0') ADVANCE(476); + if (lookahead == 'L') ADVANCE(535); + if (lookahead == 'U') ADVANCE(536); + if (lookahead == '\\') ADVANCE(94); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(606); + if (lookahead == 'u') ADVANCE(537); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(187) - if (sym_identifier_character_set_6(lookahead)) ADVANCE(605); + lookahead == ' ') SKIP(177) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); - case 189: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(502); + case 178: + if (lookahead == '!') ADVANCE(264); + if (lookahead == '"') ADVANCE(503); if (lookahead == '%') ADVANCE(407); if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(397); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(393); - if (lookahead == '.') ADVANCE(467); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(390); + if (lookahead == '.') ADVANCE(466); if (lookahead == '/') ADVANCE(405); - if (lookahead == ':') ADVANCE(451); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(430); - if (lookahead == '=') ADVANCE(266); + if (lookahead == ':') ADVANCE(262); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); if (lookahead == '>') ADVANCE(422); - if (lookahead == '?') ADVANCE(453); - if (lookahead == 'L') ADVANCE(517); - if (lookahead == 'R') ADVANCE(519); - if (lookahead == 'U') ADVANCE(521); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'L') ADVANCE(518); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'U') ADVANCE(522); if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(72); - if (lookahead == ']') ADVANCE(446); + if (lookahead == '\\') ADVANCE(34); if (lookahead == '^') ADVANCE(414); - if (sym_identifier_character_set_7(lookahead)) ADVANCE(605); - if (lookahead == 'u') ADVANCE(524); - if (lookahead == '|') ADVANCE(413); - if (lookahead == '}') ADVANCE(441); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(606); + if (lookahead == 'u') ADVANCE(525); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(189) + lookahead == ' ') SKIP(178) END_STATE(); - case 190: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(502); + case 179: + if (lookahead == '!') ADVANCE(264); + if (lookahead == '"') ADVANCE(503); if (lookahead == '%') ADVANCE(407); if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(397); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(393); - if (lookahead == '.') ADVANCE(467); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(390); + if (lookahead == '.') ADVANCE(466); if (lookahead == '/') ADVANCE(405); - if (lookahead == ':') ADVANCE(451); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(430); - if (lookahead == '=') ADVANCE(266); + if (lookahead == ':') ADVANCE(262); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); if (lookahead == '>') ADVANCE(422); - if (lookahead == '?') ADVANCE(453); - if (lookahead == 'L') ADVANCE(625); - if (lookahead == 'R') ADVANCE(626); - if (lookahead == 'U') ADVANCE(627); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(72); - if (lookahead == ']') ADVANCE(446); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'L') ADVANCE(518); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'U') ADVANCE(522); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(40); if (lookahead == '^') ADVANCE(414); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 't') || - ('v' <= lookahead && lookahead <= 'z')) ADVANCE(634); - if (lookahead == 'u') ADVANCE(628); - if (lookahead == '|') ADVANCE(413); - if (lookahead == '}') ADVANCE(441); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(606); + if (lookahead == 'u') ADVANCE(525); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(189) - if (sym_identifier_character_set_6(lookahead)) ADVANCE(605); + lookahead == ' ') SKIP(179) END_STATE(); - case 191: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(502); + case 180: + if (lookahead == '!') ADVANCE(264); + if (lookahead == '"') ADVANCE(503); if (lookahead == '%') ADVANCE(407); if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(397); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(393); - if (lookahead == '.') ADVANCE(467); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(390); + if (lookahead == '.') ADVANCE(466); if (lookahead == '/') ADVANCE(405); - if (lookahead == '<') ADVANCE(430); - if (lookahead == '=') ADVANCE(266); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); - if (lookahead == 'L') ADVANCE(517); - if (lookahead == 'R') ADVANCE(519); - if (lookahead == 'U') ADVANCE(521); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(131); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'L') ADVANCE(518); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'U') ADVANCE(522); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(50); if (lookahead == '^') ADVANCE(414); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(605); - if (lookahead == 'u') ADVANCE(524); - if (lookahead == '|') ADVANCE(413); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(606); + if (lookahead == 'u') ADVANCE(525); + if (lookahead == '|') ADVANCE(411); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(191) + lookahead == ' ') SKIP(180) END_STATE(); - case 192: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(502); + case 181: + if (lookahead == '!') ADVANCE(264); + if (lookahead == '"') ADVANCE(503); if (lookahead == '%') ADVANCE(407); if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(397); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(393); - if (lookahead == '.') ADVANCE(467); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(390); + if (lookahead == '.') ADVANCE(466); if (lookahead == '/') ADVANCE(405); - if (lookahead == '<') ADVANCE(430); - if (lookahead == '=') ADVANCE(266); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); - if (lookahead == 'L') ADVANCE(625); - if (lookahead == 'R') ADVANCE(626); - if (lookahead == 'U') ADVANCE(627); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(131); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'L') ADVANCE(626); + if (lookahead == 'R') ADVANCE(627); + if (lookahead == 'U') ADVANCE(628); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(50); if (lookahead == '^') ADVANCE(414); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 't') || - ('v' <= lookahead && lookahead <= 'z')) ADVANCE(634); - if (lookahead == 'u') ADVANCE(628); - if (lookahead == '|') ADVANCE(413); + ('v' <= lookahead && lookahead <= 'z')) ADVANCE(635); + if (lookahead == 'u') ADVANCE(629); + if (lookahead == '|') ADVANCE(411); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(191) - if (sym_identifier_character_set_6(lookahead)) ADVANCE(605); + lookahead == ' ') SKIP(180) + if (sym_identifier_character_set_6(lookahead)) ADVANCE(606); END_STATE(); - case 193: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '#') ADVANCE(282); + case 182: + if (lookahead == '!') ADVANCE(264); + if (lookahead == '"') ADVANCE(503); if (lookahead == '%') ADVANCE(407); if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(396); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(386); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); if (lookahead == '/') ADVANCE(405); - if (lookahead == ':') ADVANCE(263); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(431); - if (lookahead == '=') ADVANCE(266); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); if (lookahead == '>') ADVANCE(422); - if (lookahead == '[') ADVANCE(443); - if (lookahead == '\\') ADVANCE(24); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'L') ADVANCE(518); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'U') ADVANCE(522); + if (lookahead == '[') ADVANCE(442); + if (lookahead == '\\') ADVANCE(32); if (lookahead == '^') ADVANCE(414); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(580); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 'u') ADVANCE(573); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '|') ADVANCE(413); - if (lookahead == '~') ADVANCE(385); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(606); + if (lookahead == 'u') ADVANCE(525); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '}') ADVANCE(440); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(193) + lookahead == ' ') SKIP(182) END_STATE(); - case 194: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); + case 183: + if (lookahead == '!') ADVANCE(264); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(452); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(44); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '{') ADVANCE(440); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'L') ADVANCE(518); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'U') ADVANCE(522); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(125); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_7(lookahead)) ADVANCE(606); + if (lookahead == 'u') ADVANCE(525); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '}') ADVANCE(440); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(183) + END_STATE(); + case 184: + if (lookahead == '!') ADVANCE(264); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == ':') ADVANCE(450); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'L') ADVANCE(518); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'U') ADVANCE(522); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(46); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_7(lookahead)) ADVANCE(606); + if (lookahead == 'u') ADVANCE(525); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '}') ADVANCE(440); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(184) + END_STATE(); + case 185: + if (lookahead == '!') ADVANCE(264); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == ':') ADVANCE(450); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'L') ADVANCE(626); + if (lookahead == 'R') ADVANCE(627); + if (lookahead == 'U') ADVANCE(628); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(46); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(414); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 't') || + ('v' <= lookahead && lookahead <= 'z')) ADVANCE(635); + if (lookahead == 'u') ADVANCE(629); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '}') ADVANCE(440); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(184) + if (sym_identifier_character_set_6(lookahead)) ADVANCE(606); + END_STATE(); + case 186: + if (lookahead == '!') ADVANCE(264); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == ':') ADVANCE(262); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'L') ADVANCE(518); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'U') ADVANCE(522); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(42); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(606); + if (lookahead == 'u') ADVANCE(525); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(186) + END_STATE(); + case 187: + if (lookahead == '!') ADVANCE(264); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'L') ADVANCE(518); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'U') ADVANCE(522); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(52); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(606); + if (lookahead == 'u') ADVANCE(525); + if (lookahead == '|') ADVANCE(411); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(187) + END_STATE(); + case 188: + if (lookahead == '!') ADVANCE(264); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'L') ADVANCE(626); + if (lookahead == 'R') ADVANCE(627); + if (lookahead == 'U') ADVANCE(628); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(52); + if (lookahead == '^') ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 't') || + ('v' <= lookahead && lookahead <= 'z')) ADVANCE(635); + if (lookahead == 'u') ADVANCE(629); + if (lookahead == '|') ADVANCE(411); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(187) + if (sym_identifier_character_set_6(lookahead)) ADVANCE(606); + END_STATE(); + case 189: + if (lookahead == '!') ADVANCE(264); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(396); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(392); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(404); + if (lookahead == ':') ADVANCE(450); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(429); + if (lookahead == '=') ADVANCE(265); + if (lookahead == '>') ADVANCE(421); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'L') ADVANCE(518); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'U') ADVANCE(522); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(72); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(413); + if (sym_identifier_character_set_7(lookahead)) ADVANCE(606); + if (lookahead == 'u') ADVANCE(525); + if (lookahead == '|') ADVANCE(412); + if (lookahead == '}') ADVANCE(440); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(189) + END_STATE(); + case 190: + if (lookahead == '!') ADVANCE(264); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(396); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(392); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(404); + if (lookahead == ':') ADVANCE(450); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(429); + if (lookahead == '=') ADVANCE(265); + if (lookahead == '>') ADVANCE(421); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'L') ADVANCE(626); + if (lookahead == 'R') ADVANCE(627); + if (lookahead == 'U') ADVANCE(628); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(72); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(413); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 't') || + ('v' <= lookahead && lookahead <= 'z')) ADVANCE(635); + if (lookahead == 'u') ADVANCE(629); + if (lookahead == '|') ADVANCE(412); + if (lookahead == '}') ADVANCE(440); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(189) + if (sym_identifier_character_set_6(lookahead)) ADVANCE(606); + END_STATE(); + case 191: + if (lookahead == '!') ADVANCE(264); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(396); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(392); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(404); + if (lookahead == '<') ADVANCE(429); + if (lookahead == '=') ADVANCE(265); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'L') ADVANCE(518); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'U') ADVANCE(522); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(129); + if (lookahead == '^') ADVANCE(413); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(606); + if (lookahead == 'u') ADVANCE(525); + if (lookahead == '|') ADVANCE(412); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(191) + END_STATE(); + case 192: + if (lookahead == '!') ADVANCE(264); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(396); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(392); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(404); + if (lookahead == '<') ADVANCE(429); + if (lookahead == '=') ADVANCE(265); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'L') ADVANCE(626); + if (lookahead == 'R') ADVANCE(627); + if (lookahead == 'U') ADVANCE(628); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(129); + if (lookahead == '^') ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 't') || + ('v' <= lookahead && lookahead <= 'z')) ADVANCE(635); + if (lookahead == 'u') ADVANCE(629); + if (lookahead == '|') ADVANCE(412); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(191) + if (sym_identifier_character_set_6(lookahead)) ADVANCE(606); + END_STATE(); + case 193: + if (lookahead == '!') ADVANCE(264); + if (lookahead == '#') ADVANCE(281); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(395); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(385); + if (lookahead == '/') ADVANCE(404); + if (lookahead == ':') ADVANCE(262); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(430); + if (lookahead == '=') ADVANCE(265); + if (lookahead == '>') ADVANCE(421); + if (lookahead == '[') ADVANCE(442); + if (lookahead == '\\') ADVANCE(24); + if (lookahead == '^') ADVANCE(413); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(581); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 'u') ADVANCE(574); + if (lookahead == 'v') ADVANCE(586); if (lookahead == '|') ADVANCE(412); + if (lookahead == '~') ADVANCE(384); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(193) + END_STATE(); + case 194: + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(390); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(44); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(194) END_STATE(); case 195: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(263); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(443); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(390); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == ':') ADVANCE(262); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(442); if (lookahead == '\\') ADVANCE(38); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '~') ADVANCE(385); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(195) END_STATE(); case 196: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(451); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(125); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(390); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == ':') ADVANCE(450); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(60); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(196) END_STATE(); case 197: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(444); - if (lookahead == '\\') ADVANCE(80); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '|') ADVANCE(412); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(390); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(443); + if (lookahead == '\\') ADVANCE(82); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '|') ADVANCE(411); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(197) END_STATE(); case 198: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(580); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 'u') ADVANCE(573); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(390); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(56); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(581); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 'u') ADVANCE(574); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(198) END_STATE(); case 199: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(143); - if (lookahead == '^') ADVANCE(415); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(390); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(153); + if (lookahead == '^') ADVANCE(414); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); - if (lookahead == '|') ADVANCE(412); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + if (lookahead == '|') ADVANCE(411); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(200) - if (sym_identifier_character_set_6(lookahead)) ADVANCE(605); + if (sym_identifier_character_set_6(lookahead)) ADVANCE(606); END_STATE(); case 200: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(143); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '|') ADVANCE(412); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(390); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(153); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '|') ADVANCE(411); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(200) END_STATE(); case 201: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(445); - if (lookahead == '\\') ADVANCE(153); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '|') ADVANCE(412); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(390); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(444); + if (lookahead == '\\') ADVANCE(143); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '|') ADVANCE(411); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(201) END_STATE(); case 202: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(452); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(443); - if (lookahead == '\\') ADVANCE(36); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '}') ADVANCE(441); - if (lookahead == '~') ADVANCE(385); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(123); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(202) END_STATE(); case 203: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(452); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(147); - if (lookahead == ']') ADVANCE(446); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_8(lookahead)) ADVANCE(605); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '}') ADVANCE(441); + if (lookahead == '\\') ADVANCE(36); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '}') ADVANCE(440); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(203) END_STATE(); case 204: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(452); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(46); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(147); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_8(lookahead)) ADVANCE(606); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '}') ADVANCE(440); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(204) END_STATE(); case 205: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(451); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(443); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == ':') ADVANCE(450); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(442); if (lookahead == '\\') ADVANCE(161); - if (lookahead == ']') ADVANCE(446); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_8(lookahead)) ADVANCE(605); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '}') ADVANCE(441); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_8(lookahead)) ADVANCE(606); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '}') ADVANCE(440); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(205) END_STATE(); case 206: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(451); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == ':') ADVANCE(450); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); if (lookahead == '\\') ADVANCE(145); - if (lookahead == ']') ADVANCE(446); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_9(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(580); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 'u') ADVANCE(573); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '}') ADVANCE(441); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_9(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(581); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 'u') ADVANCE(574); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '}') ADVANCE(440); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(206) END_STATE(); case 207: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(451); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(56); - if (lookahead == ']') ADVANCE(446); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_8(lookahead)) ADVANCE(605); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '}') ADVANCE(441); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == ':') ADVANCE(450); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(54); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_8(lookahead)) ADVANCE(606); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '}') ADVANCE(440); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(207) END_STATE(); case 208: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(451); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == ':') ADVANCE(450); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); if (lookahead == '\\') ADVANCE(139); - if (lookahead == ']') ADVANCE(446); - if (lookahead == '^') ADVANCE(415); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(414); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '}') ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '}') ADVANCE(440); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(209) - if (sym_identifier_character_set_6(lookahead)) ADVANCE(605); + if (sym_identifier_character_set_6(lookahead)) ADVANCE(606); END_STATE(); case 209: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(451); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == ':') ADVANCE(450); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); if (lookahead == '\\') ADVANCE(139); - if (lookahead == ']') ADVANCE(446); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_8(lookahead)) ADVANCE(605); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '}') ADVANCE(441); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_8(lookahead)) ADVANCE(606); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '}') ADVANCE(440); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(209) END_STATE(); case 210: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(451); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(445); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == ':') ADVANCE(450); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(444); if (lookahead == '\\') ADVANCE(70); - if (lookahead == ']') ADVANCE(446); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_8(lookahead)) ADVANCE(605); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '}') ADVANCE(441); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_8(lookahead)) ADVANCE(606); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '}') ADVANCE(440); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(210) END_STATE(); case 211: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ':') ADVANCE(451); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(62); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == ':') ADVANCE(450); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(211) END_STATE(); case 212: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(444); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(422); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(443); if (lookahead == '\\') ADVANCE(78); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '}') ADVANCE(441); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '}') ADVANCE(440); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(212) END_STATE(); case 213: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(443); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(442); if (lookahead == '\\') ADVANCE(76); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '|') ADVANCE(412); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '|') ADVANCE(411); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(213) END_STATE(); case 214: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(135); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(580); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 'u') ADVANCE(573); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(133); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(581); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 'u') ADVANCE(574); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(214) END_STATE(); case 215: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); if (lookahead == '\\') ADVANCE(141); - if (lookahead == '^') ADVANCE(415); + if (lookahead == '^') ADVANCE(414); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); - if (lookahead == '|') ADVANCE(412); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + if (lookahead == '|') ADVANCE(411); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(216) - if (sym_identifier_character_set_6(lookahead)) ADVANCE(605); + if (sym_identifier_character_set_6(lookahead)) ADVANCE(606); END_STATE(); case 216: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); if (lookahead == '\\') ADVANCE(141); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '|') ADVANCE(412); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '|') ADVANCE(411); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(216) END_STATE(); case 217: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(400); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(445); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(407); + if (lookahead == '&') ADVANCE(417); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '+') ADVANCE(399); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(405); + if (lookahead == '<') ADVANCE(427); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(444); if (lookahead == '\\') ADVANCE(151); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '|') ADVANCE(412); + if (lookahead == '^') ADVANCE(414); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '|') ADVANCE(411); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(217) END_STATE(); case 218: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(402); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(395); - if (lookahead == '.') ADVANCE(250); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '<') ADVANCE(429); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(423); - if (lookahead == '\\') ADVANCE(90); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '|') ADVANCE(412); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(218) - END_STATE(); - case 219: - if (lookahead == '!') ADVANCE(265); + if (lookahead == '!') ADVANCE(264); if (lookahead == '%') ADVANCE(407); if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(397); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(393); - if (lookahead == '.') ADVANCE(467); + if (lookahead == '+') ADVANCE(401); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(394); + if (lookahead == '.') ADVANCE(250); if (lookahead == '/') ADVANCE(405); - if (lookahead == ':') ADVANCE(452); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(430); - if (lookahead == '=') ADVANCE(448); + if (lookahead == '<') ADVANCE(428); + if (lookahead == '=') ADVANCE(447); if (lookahead == '>') ADVANCE(422); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(443); - if (lookahead == '\\') ADVANCE(123); + if (lookahead == '\\') ADVANCE(88); if (lookahead == '^') ADVANCE(414); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(413); - if (lookahead == '}') ADVANCE(441); - if (lookahead == '~') ADVANCE(385); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '|') ADVANCE(411); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(218) + END_STATE(); + case 219: + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(396); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(392); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(404); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(429); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(421); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(442); + if (lookahead == '\\') ADVANCE(121); + if (lookahead == '^') ADVANCE(413); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(412); + if (lookahead == '}') ADVANCE(440); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(219) END_STATE(); case 220: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(407); - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(397); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(393); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(405); - if (lookahead == ':') ADVANCE(452); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(430); - if (lookahead == '=') ADVANCE(266); - if (lookahead == '>') ADVANCE(422); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(50); - if (lookahead == ']') ADVANCE(446); - if (lookahead == '^') ADVANCE(414); - if (sym_identifier_character_set_9(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(580); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 'u') ADVANCE(573); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(413); - if (lookahead == '}') ADVANCE(441); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(396); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(392); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(404); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(429); + if (lookahead == '=') ADVANCE(265); + if (lookahead == '>') ADVANCE(421); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(48); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(413); + if (sym_identifier_character_set_9(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(581); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 'u') ADVANCE(574); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(412); + if (lookahead == '}') ADVANCE(440); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(220) END_STATE(); case 221: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(407); - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(397); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(393); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(405); - if (lookahead == ':') ADVANCE(452); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(430); - if (lookahead == '=') ADVANCE(266); - if (lookahead == '>') ADVANCE(422); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(396); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(392); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(404); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(429); + if (lookahead == '=') ADVANCE(265); + if (lookahead == '>') ADVANCE(421); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); if (lookahead == '\\') ADVANCE(157); - if (lookahead == ']') ADVANCE(446); - if (lookahead == '^') ADVANCE(414); - if (sym_identifier_character_set_8(lookahead)) ADVANCE(605); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(413); - if (lookahead == '}') ADVANCE(441); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(413); + if (sym_identifier_character_set_8(lookahead)) ADVANCE(606); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(412); + if (lookahead == '}') ADVANCE(440); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(221) END_STATE(); case 222: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(407); - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(397); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(393); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(405); - if (lookahead == ':') ADVANCE(452); - if (lookahead == '<') ADVANCE(430); - if (lookahead == '=') ADVANCE(266); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == '^') ADVANCE(414); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(413); - if (lookahead == '~') ADVANCE(385); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(396); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(392); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(404); + if (lookahead == ':') ADVANCE(451); + if (lookahead == '<') ADVANCE(429); + if (lookahead == '=') ADVANCE(265); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(62); + if (lookahead == '^') ADVANCE(413); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(412); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(222) END_STATE(); case 223: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(407); - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(397); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(393); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(405); - if (lookahead == ':') ADVANCE(263); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(430); - if (lookahead == '=') ADVANCE(266); - if (lookahead == '>') ADVANCE(422); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(396); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(392); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(404); + if (lookahead == ':') ADVANCE(262); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(429); + if (lookahead == '=') ADVANCE(265); + if (lookahead == '>') ADVANCE(421); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); if (lookahead == '\\') ADVANCE(155); - if (lookahead == ']') ADVANCE(276); - if (lookahead == '^') ADVANCE(414); - if (sym_identifier_character_set_9(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(580); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 'u') ADVANCE(573); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(413); - if (lookahead == '}') ADVANCE(441); + if (lookahead == ']') ADVANCE(275); + if (lookahead == '^') ADVANCE(413); + if (sym_identifier_character_set_9(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(581); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 'u') ADVANCE(574); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(412); + if (lookahead == '}') ADVANCE(440); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(223) END_STATE(); case 224: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(407); - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(397); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(393); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(405); - if (lookahead == ':') ADVANCE(451); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(430); - if (lookahead == '=') ADVANCE(266); - if (lookahead == '>') ADVANCE(422); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(129); - if (lookahead == ']') ADVANCE(446); - if (lookahead == '^') ADVANCE(414); - if (sym_identifier_character_set_9(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(580); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 'u') ADVANCE(573); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(413); - if (lookahead == '}') ADVANCE(441); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(396); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(392); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(404); + if (lookahead == ':') ADVANCE(450); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(429); + if (lookahead == '=') ADVANCE(265); + if (lookahead == '>') ADVANCE(421); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(127); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(413); + if (sym_identifier_character_set_9(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(581); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 'u') ADVANCE(574); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(412); + if (lookahead == '}') ADVANCE(440); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(224) END_STATE(); case 225: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(407); - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(397); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(393); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(405); - if (lookahead == ':') ADVANCE(451); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(430); - if (lookahead == '=') ADVANCE(266); - if (lookahead == '>') ADVANCE(422); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(133); - if (lookahead == ']') ADVANCE(446); - if (lookahead == '^') ADVANCE(414); - if (sym_identifier_character_set_8(lookahead)) ADVANCE(605); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(413); - if (lookahead == '}') ADVANCE(441); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(396); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(392); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(404); + if (lookahead == ':') ADVANCE(450); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(429); + if (lookahead == '=') ADVANCE(265); + if (lookahead == '>') ADVANCE(421); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(131); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(413); + if (sym_identifier_character_set_8(lookahead)) ADVANCE(606); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(412); + if (lookahead == '}') ADVANCE(440); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(225) END_STATE(); case 226: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(407); - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(397); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(393); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(405); - if (lookahead == ':') ADVANCE(451); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(430); - if (lookahead == '=') ADVANCE(266); - if (lookahead == '>') ADVANCE(422); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(396); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(392); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(404); + if (lookahead == ':') ADVANCE(450); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(429); + if (lookahead == '=') ADVANCE(265); + if (lookahead == '>') ADVANCE(421); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); if (lookahead == '\\') ADVANCE(149); - if (lookahead == ']') ADVANCE(446); - if (lookahead == '^') ADVANCE(414); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(413); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); - if (lookahead == '|') ADVANCE(413); - if (lookahead == '}') ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + if (lookahead == '|') ADVANCE(412); + if (lookahead == '}') ADVANCE(440); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(227) - if (sym_identifier_character_set_6(lookahead)) ADVANCE(605); + if (sym_identifier_character_set_6(lookahead)) ADVANCE(606); END_STATE(); case 227: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(407); - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(397); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(393); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(405); - if (lookahead == ':') ADVANCE(451); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(430); - if (lookahead == '=') ADVANCE(266); - if (lookahead == '>') ADVANCE(422); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(396); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(392); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(404); + if (lookahead == ':') ADVANCE(450); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(429); + if (lookahead == '=') ADVANCE(265); + if (lookahead == '>') ADVANCE(421); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); if (lookahead == '\\') ADVANCE(149); - if (lookahead == ']') ADVANCE(446); - if (lookahead == '^') ADVANCE(414); - if (sym_identifier_character_set_8(lookahead)) ADVANCE(605); - if (lookahead == '|') ADVANCE(413); - if (lookahead == '}') ADVANCE(441); + if (lookahead == ']') ADVANCE(445); + if (lookahead == '^') ADVANCE(413); + if (sym_identifier_character_set_8(lookahead)) ADVANCE(606); + if (lookahead == '|') ADVANCE(412); + if (lookahead == '}') ADVANCE(440); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(227) END_STATE(); case 228: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(407); - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(397); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(393); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(405); - if (lookahead == ':') ADVANCE(451); - if (lookahead == '<') ADVANCE(430); - if (lookahead == '=') ADVANCE(266); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(137); - if (lookahead == '^') ADVANCE(414); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(413); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(396); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(392); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(404); + if (lookahead == ':') ADVANCE(450); + if (lookahead == '<') ADVANCE(429); + if (lookahead == '=') ADVANCE(265); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(135); + if (lookahead == '^') ADVANCE(413); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(412); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(228) END_STATE(); case 229: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(407); - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(397); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(393); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(405); - if (lookahead == '<') ADVANCE(430); - if (lookahead == '=') ADVANCE(266); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(396); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(392); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(404); + if (lookahead == '<') ADVANCE(429); + if (lookahead == '=') ADVANCE(265); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); if (lookahead == '\\') ADVANCE(58); - if (lookahead == '^') ADVANCE(414); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(580); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 'u') ADVANCE(573); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(413); + if (lookahead == '^') ADVANCE(413); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(581); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 'u') ADVANCE(574); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(412); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(229) END_STATE(); case 230: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(407); - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(397); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(393); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(405); - if (lookahead == '<') ADVANCE(430); - if (lookahead == '=') ADVANCE(266); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(396); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(392); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(404); + if (lookahead == '<') ADVANCE(429); + if (lookahead == '=') ADVANCE(265); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); if (lookahead == '\\') ADVANCE(159); - if (lookahead == '^') ADVANCE(414); + if (lookahead == '^') ADVANCE(413); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); - if (lookahead == '|') ADVANCE(413); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + if (lookahead == '|') ADVANCE(412); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(231) - if (sym_identifier_character_set_6(lookahead)) ADVANCE(605); + if (sym_identifier_character_set_6(lookahead)) ADVANCE(606); END_STATE(); case 231: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '%') ADVANCE(407); - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(397); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(393); - if (lookahead == '.') ADVANCE(467); - if (lookahead == '/') ADVANCE(405); - if (lookahead == '<') ADVANCE(430); - if (lookahead == '=') ADVANCE(266); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); - if (lookahead == '[') ADVANCE(442); + if (lookahead == '!') ADVANCE(264); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(396); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(392); + if (lookahead == '.') ADVANCE(466); + if (lookahead == '/') ADVANCE(404); + if (lookahead == '<') ADVANCE(429); + if (lookahead == '=') ADVANCE(265); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == '[') ADVANCE(441); if (lookahead == '\\') ADVANCE(159); - if (lookahead == '^') ADVANCE(414); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '|') ADVANCE(413); + if (lookahead == '^') ADVANCE(413); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '|') ADVANCE(412); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(231) END_STATE(); case 232: - if (lookahead == '"') ADVANCE(502); - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(403); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(402); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(263); - if (lookahead == 'L') ADVANCE(518); - if (lookahead == 'U') ADVANCE(522); - if (lookahead == '[') ADVANCE(443); + if (lookahead == ':') ADVANCE(262); + if (lookahead == 'L') ADVANCE(519); + if (lookahead == 'U') ADVANCE(523); + if (lookahead == '[') ADVANCE(442); if (lookahead == '\\') ADVANCE(68); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(580); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 'u') ADVANCE(525); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '~') ADVANCE(385); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(581); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 'u') ADVANCE(526); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(232) END_STATE(); case 233: - if (lookahead == '"') ADVANCE(502); - if (lookahead == ')') ADVANCE(324); + if (lookahead == '"') ADVANCE(503); + if (lookahead == ')') ADVANCE(323); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(451); - if (lookahead == 'L') ADVANCE(517); - if (lookahead == 'R') ADVANCE(519); - if (lookahead == 'U') ADVANCE(521); - if (lookahead == '\\') ADVANCE(101); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(605); - if (lookahead == 'u') ADVANCE(524); + if (lookahead == ':') ADVANCE(450); + if (lookahead == 'L') ADVANCE(518); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'U') ADVANCE(522); + if (lookahead == '\\') ADVANCE(99); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(606); + if (lookahead == 'u') ADVANCE(525); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(233) END_STATE(); case 234: - if (lookahead == '"') ADVANCE(502); + if (lookahead == '"') ADVANCE(503); if (lookahead == '/') ADVANCE(251); - if (lookahead == '<') ADVANCE(271); - if (lookahead == 'L') ADVANCE(518); - if (lookahead == 'U') ADVANCE(522); - if (lookahead == '\\') ADVANCE(105); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(605); - if (lookahead == 'u') ADVANCE(526); + if (lookahead == '<') ADVANCE(270); + if (lookahead == 'L') ADVANCE(519); + if (lookahead == 'U') ADVANCE(523); + if (lookahead == '\\') ADVANCE(103); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(606); + if (lookahead == 'u') ADVANCE(527); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(234) END_STATE(); case 235: - if (lookahead == '"') ADVANCE(502); + if (lookahead == '"') ADVANCE(503); if (lookahead == '/') ADVANCE(251); - if (lookahead == '\\') ADVANCE(112); + if (lookahead == '\\') ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(235) END_STATE(); case 236: - if (lookahead == '"') ADVANCE(624); + if (lookahead == '"') ADVANCE(625); END_STATE(); case 237: - if (lookahead == '#') ADVANCE(284); - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(403); - if (lookahead == ',') ADVANCE(323); + if (lookahead == '#') ADVANCE(283); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(402); + if (lookahead == ',') ADVANCE(322); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(263); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '[') ADVANCE(443); + if (lookahead == ':') ADVANCE(262); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '[') ADVANCE(442); if (lookahead == '\\') ADVANCE(26); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(580); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 'u') ADVANCE(573); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '}') ADVANCE(441); - if (lookahead == '~') ADVANCE(385); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(581); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 'u') ADVANCE(574); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '}') ADVANCE(440); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(237) END_STATE(); case 238: - if (lookahead == '#') ADVANCE(278); - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(396); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(270); - if (lookahead == '.') ADVANCE(258); + if (lookahead == '#') ADVANCE(277); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(395); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(269); + if (lookahead == '.') ADVANCE(257); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(452); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(427); - if (lookahead == '=') ADVANCE(447); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '[') ADVANCE(443); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(426); + if (lookahead == '=') ADVANCE(446); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '[') ADVANCE(442); if (lookahead == '\\') ADVANCE(22); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(580); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 'u') ADVANCE(573); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(290); - if (lookahead == '~') ADVANCE(385); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(581); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 'u') ADVANCE(574); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(289); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(238) END_STATE(); case 239: - if (lookahead == '#') ADVANCE(280); - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == '*') ADVANCE(403); - if (lookahead == ',') ADVANCE(323); + if (lookahead == '#') ADVANCE(279); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(402); + if (lookahead == ',') ADVANCE(322); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(263); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '[') ADVANCE(443); + if (lookahead == ':') ADVANCE(262); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '[') ADVANCE(442); if (lookahead == '\\') ADVANCE(28); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(580); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 'u') ADVANCE(573); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '~') ADVANCE(385); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(581); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 'u') ADVANCE(574); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(239) END_STATE(); case 240: - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(403); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(270); - if (lookahead == '.') ADVANCE(258); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(269); + if (lookahead == '.') ADVANCE(257); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(452); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(427); - if (lookahead == '=') ADVANCE(447); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '[') ADVANCE(443); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(426); + if (lookahead == '=') ADVANCE(446); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '[') ADVANCE(442); if (lookahead == '\\') ADVANCE(66); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(290); - if (lookahead == '~') ADVANCE(385); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(289); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(240) END_STATE(); case 241: - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(403); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(270); - if (lookahead == '.') ADVANCE(258); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(269); + if (lookahead == '.') ADVANCE(257); if (lookahead == '/') ADVANCE(251); if (lookahead == ':') ADVANCE(451); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(427); - if (lookahead == '=') ADVANCE(447); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '[') ADVANCE(443); - if (lookahead == '\\') ADVANCE(84); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(290); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(426); + if (lookahead == '=') ADVANCE(446); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(137); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(289); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(241) END_STATE(); case 242: - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(403); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '.') ADVANCE(258); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(269); + if (lookahead == '.') ADVANCE(257); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(452); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(427); - if (lookahead == '=') ADVANCE(447); - if (lookahead == '>') ADVANCE(615); + if (lookahead == ':') ADVANCE(450); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(426); + if (lookahead == '=') ADVANCE(446); + if (lookahead == '>') ADVANCE(616); if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(86); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(290); - if (lookahead == '~') ADVANCE(385); + if (lookahead == '\\') ADVANCE(84); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(289); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(242) END_STATE(); case 243: - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(403); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '.') ADVANCE(258); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '.') ADVANCE(257); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(452); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(427); - if (lookahead == '=') ADVANCE(447); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(88); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(580); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 'u') ADVANCE(573); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(426); + if (lookahead == '=') ADVANCE(446); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(86); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(581); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 'u') ADVANCE(574); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(243) END_STATE(); case 244: - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(403); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '.') ADVANCE(258); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '.') ADVANCE(257); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(451); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '=') ADVANCE(447); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(92); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(290); + if (lookahead == ':') ADVANCE(450); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '=') ADVANCE(446); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(90); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(289); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(244) END_STATE(); case 245: - if (lookahead == '&') ADVANCE(417); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(403); - if (lookahead == ',') ADVANCE(323); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == ',') ADVANCE(322); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(451); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(427); - if (lookahead == '=') ADVANCE(447); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '[') ADVANCE(443); - if (lookahead == '\\') ADVANCE(82); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(580); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 'u') ADVANCE(573); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); + if (lookahead == ':') ADVANCE(450); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(426); + if (lookahead == '=') ADVANCE(446); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '[') ADVANCE(442); + if (lookahead == '\\') ADVANCE(80); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(581); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 'u') ADVANCE(574); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(245) END_STATE(); case 246: - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == ',') ADVANCE(323); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == ',') ADVANCE(322); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(451); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(427); - if (lookahead == '=') ADVANCE(447); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '[') ADVANCE(444); - if (lookahead == '\\') ADVANCE(103); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(605); - if (lookahead == '{') ADVANCE(440); + if (lookahead == ':') ADVANCE(450); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(426); + if (lookahead == '=') ADVANCE(446); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '[') ADVANCE(443); + if (lookahead == '\\') ADVANCE(101); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(606); + if (lookahead == '{') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(246) END_STATE(); case 247: - if (lookahead == '(') ADVANCE(382); + if (lookahead == '(') ADVANCE(381); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(263); - if (lookahead == 'F') ADVANCE(542); - if (lookahead == 'T') ADVANCE(546); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '\\') ADVANCE(94); - if (sym_identifier_character_set_10(lookahead)) ADVANCE(605); - if (lookahead == 'f') ADVANCE(552); - if (lookahead == 't') ADVANCE(593); - if (lookahead == '{') ADVANCE(440); + if (lookahead == ':') ADVANCE(262); + if (lookahead == 'F') ADVANCE(543); + if (lookahead == 'T') ADVANCE(547); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '\\') ADVANCE(92); + if (sym_identifier_character_set_10(lookahead)) ADVANCE(606); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 't') ADVANCE(594); + if (lookahead == '{') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(247) END_STATE(); case 248: - if (lookahead == '(') ADVANCE(382); + if (lookahead == '(') ADVANCE(381); if (lookahead == '/') ADVANCE(251); - if (lookahead == '\\') SKIP(114) + if (lookahead == '\\') SKIP(112) if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(248) END_STATE(); case 249: - if (lookahead == ')') ADVANCE(622); + if (lookahead == ')') ADVANCE(623); END_STATE(); case 250: - if (lookahead == '*') ADVANCE(471); + if (lookahead == '*') ADVANCE(470); END_STATE(); case 251: if (lookahead == '*') ADVANCE(254); - if (lookahead == '/') ADVANCE(610); + if (lookahead == '/') ADVANCE(611); END_STATE(); case 252: - if (lookahead == '*') ADVANCE(621); + if (lookahead == '*') ADVANCE(622); END_STATE(); case 253: if (lookahead == '*') ADVANCE(253); - if (lookahead == '/') ADVANCE(606); + if (lookahead == '/') ADVANCE(607); if (lookahead != 0) ADVANCE(254); END_STATE(); case 254: @@ -31976,233 +30297,233 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 255: if (lookahead == '*') ADVANCE(253); - if (lookahead != 0) ADVANCE(337); + if (lookahead != 0) ADVANCE(336); END_STATE(); case 256: - if (lookahead == '.') ADVANCE(292); - if (lookahead == '0') ADVANCE(475); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(476); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '0') ADVANCE(474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(475); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(485); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(484); END_STATE(); case 257: - if (lookahead == '.') ADVANCE(292); - if (lookahead == '0') ADVANCE(478); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); + if (lookahead == '.') ADVANCE(259); END_STATE(); case 258: - if (lookahead == '.') ADVANCE(260); + if (lookahead == '.') ADVANCE(259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(473); END_STATE(); case 259: - if (lookahead == '.') ADVANCE(260); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(474); + if (lookahead == '.') ADVANCE(321); END_STATE(); case 260: - if (lookahead == '.') ADVANCE(322); + if (lookahead == '/') ADVANCE(251); + if (lookahead == '\\') ADVANCE(105); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(260) END_STATE(); case 261: - if (lookahead == '/') ADVANCE(251); - if (lookahead == '\\') ADVANCE(112); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '\\') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(261) + if (lookahead != 0) ADVANCE(341); END_STATE(); case 262: - if (lookahead == '/') ADVANCE(341); - if (lookahead == '\\') ADVANCE(339); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(262) - if (lookahead != 0) ADVANCE(342); + if (lookahead == ':') ADVANCE(436); END_STATE(); case 263: - if (lookahead == ':') ADVANCE(437); + if (lookahead == '<') ADVANCE(431); + if (lookahead == '=') ADVANCE(424); END_STATE(); case 264: - if (lookahead == '<') ADVANCE(432); - if (lookahead == '=') ADVANCE(425); + if (lookahead == '=') ADVANCE(419); END_STATE(); case 265: - if (lookahead == '=') ADVANCE(420); + if (lookahead == '=') ADVANCE(418); END_STATE(); case 266: - if (lookahead == '=') ADVANCE(419); + if (lookahead == '=') ADVANCE(423); + if (lookahead == '>') ADVANCE(433); END_STATE(); case 267: - if (lookahead == '=') ADVANCE(424); - if (lookahead == '>') ADVANCE(268); + if (lookahead == '=') ADVANCE(459); END_STATE(); case 268: - if (lookahead == '=') ADVANCE(460); + if (lookahead == '>') ADVANCE(267); END_STATE(); case 269: - if (lookahead == '>') ADVANCE(434); + if (lookahead == '>') ADVANCE(471); END_STATE(); case 270: - if (lookahead == '>') ADVANCE(472); + if (lookahead == '>') ADVANCE(513); + if (lookahead == '\\') ADVANCE(271); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(270); END_STATE(); case 271: - if (lookahead == '>') ADVANCE(512); - if (lookahead == '\\') ADVANCE(272); + if (lookahead == '>') ADVANCE(514); + if (lookahead == '\\') ADVANCE(271); if (lookahead != 0 && - lookahead != '\n') ADVANCE(271); + lookahead != '\n') ADVANCE(270); END_STATE(); case 272: - if (lookahead == '>') ADVANCE(513); - if (lookahead == '\\') ADVANCE(272); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(271); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 273: - if (lookahead == 'U') ADVANCE(311); - if (lookahead == 'u') ADVANCE(303); + if (lookahead == '[') ADVANCE(437); + if (lookahead == ']') ADVANCE(624); END_STATE(); case 274: - if (lookahead == '[') ADVANCE(438); - if (lookahead == ']') ADVANCE(623); + if (lookahead == ']') ADVANCE(624); END_STATE(); case 275: - if (lookahead == ']') ADVANCE(623); + if (lookahead == ']') ADVANCE(438); END_STATE(); case 276: - if (lookahead == ']') ADVANCE(439); + if (lookahead == 'd') ADVANCE(352); + if (lookahead == 'e') ADVANCE(374); + if (lookahead == 'i') ADVANCE(360); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(276); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 277: - if (lookahead == 'd') ADVANCE(353); - if (lookahead == 'e') ADVANCE(375); + if (lookahead == 'd') ADVANCE(352); + if (lookahead == 'e') ADVANCE(374); if (lookahead == 'i') ADVANCE(361); if (lookahead == '\t' || lookahead == ' ') ADVANCE(277); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 278: - if (lookahead == 'd') ADVANCE(353); - if (lookahead == 'e') ADVANCE(375); - if (lookahead == 'i') ADVANCE(362); + if (lookahead == 'd') ADVANCE(352); + if (lookahead == 'e') ADVANCE(377); + if (lookahead == 'i') ADVANCE(360); if (lookahead == '\t' || lookahead == ' ') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 279: - if (lookahead == 'd') ADVANCE(353); - if (lookahead == 'e') ADVANCE(378); + if (lookahead == 'd') ADVANCE(352); + if (lookahead == 'e') ADVANCE(377); if (lookahead == 'i') ADVANCE(361); if (lookahead == '\t' || lookahead == ' ') ADVANCE(279); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 280: - if (lookahead == 'd') ADVANCE(353); - if (lookahead == 'e') ADVANCE(378); - if (lookahead == 'i') ADVANCE(362); + if (lookahead == 'd') ADVANCE(352); + if (lookahead == 'e') ADVANCE(376); + if (lookahead == 'i') ADVANCE(360); if (lookahead == '\t' || lookahead == ' ') ADVANCE(280); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 281: - if (lookahead == 'd') ADVANCE(353); - if (lookahead == 'e') ADVANCE(377); + if (lookahead == 'd') ADVANCE(352); + if (lookahead == 'e') ADVANCE(376); if (lookahead == 'i') ADVANCE(361); if (lookahead == '\t' || lookahead == ' ') ADVANCE(281); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 282: - if (lookahead == 'd') ADVANCE(353); - if (lookahead == 'e') ADVANCE(377); - if (lookahead == 'i') ADVANCE(362); + if (lookahead == 'd') ADVANCE(352); + if (lookahead == 'i') ADVANCE(360); if (lookahead == '\t' || lookahead == ' ') ADVANCE(282); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 283: - if (lookahead == 'd') ADVANCE(353); + if (lookahead == 'd') ADVANCE(352); if (lookahead == 'i') ADVANCE(361); if (lookahead == '\t' || lookahead == ' ') ADVANCE(283); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 284: - if (lookahead == 'd') ADVANCE(353); - if (lookahead == 'i') ADVANCE(362); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(284); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + if (lookahead == 'd') ADVANCE(287); END_STATE(); case 285: - if (lookahead == 'd') ADVANCE(288); + if (lookahead == 'e') ADVANCE(288); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(285); END_STATE(); case 286: - if (lookahead == 'e') ADVANCE(289); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(286); + if (lookahead == 'f') ADVANCE(326); END_STATE(); case 287: - if (lookahead == 'f') ADVANCE(327); + if (lookahead == 'i') ADVANCE(286); END_STATE(); case 288: - if (lookahead == 'i') ADVANCE(287); + if (lookahead == 'n') ADVANCE(284); END_STATE(); case 289: - if (lookahead == 'n') ADVANCE(285); + if (lookahead == '|') ADVANCE(408); END_STATE(); case 290: - if (lookahead == '|') ADVANCE(409); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); case 291: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(479); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(473); END_STATE(); case 292: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(474); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(475); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(484); END_STATE(); case 293: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(476); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(485); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(606); END_STATE(); case 294: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(605); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(481); END_STATE(); case 295: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(482); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(484); END_STATE(); case 296: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(485); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(479); END_STATE(); case 297: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(480); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(509); END_STATE(); case 298: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(508); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(293); END_STATE(); case 299: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(294); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(297); END_STATE(); case 300: if (('0' <= lookahead && lookahead <= '9') || @@ -32265,296 +30586,301 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(309); END_STATE(); case 312: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(310); - END_STATE(); - case 313: if (lookahead != 0 && lookahead != '\r' && - lookahead != '\\') ADVANCE(610); - if (lookahead == '\r') ADVANCE(614); - if (lookahead == '\\') ADVANCE(612); + lookahead != '\\') ADVANCE(611); + if (lookahead == '\r') ADVANCE(615); + if (lookahead == '\\') ADVANCE(613); END_STATE(); - case 314: + case 313: if (lookahead != 0 && - lookahead != '*') ADVANCE(342); + lookahead != '*') ADVANCE(341); END_STATE(); - case 315: - if (eof) ADVANCE(317); - if (lookahead == '!') ADVANCE(384); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '#') ADVANCE(277); - if (lookahead == '%') ADVANCE(408); - if (lookahead == '&') ADVANCE(418); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); - if (lookahead == '*') ADVANCE(404); - if (lookahead == '+') ADVANCE(398); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(387); - if (lookahead == '.') ADVANCE(468); - if (lookahead == '/') ADVANCE(406); - if (lookahead == '0') ADVANCE(477); - if (lookahead == ':') ADVANCE(452); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(428); - if (lookahead == '=') ADVANCE(448); - if (lookahead == '>') ADVANCE(615); - if (lookahead == '?') ADVANCE(453); - if (lookahead == 'F') ADVANCE(542); - if (lookahead == 'L') ADVANCE(516); - if (lookahead == 'R') ADVANCE(519); - if (lookahead == 'T') ADVANCE(546); - if (lookahead == 'U') ADVANCE(520); - if (lookahead == '[') ADVANCE(444); - if (lookahead == '\\') ADVANCE(2); - if (lookahead == ']') ADVANCE(446); - if (lookahead == '^') ADVANCE(415); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(551); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 't') ADVANCE(593); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(412); - if (lookahead == '}') ADVANCE(441); - if (lookahead == '~') ADVANCE(385); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(315) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); - END_STATE(); - case 316: - if (eof) ADVANCE(317); + case 314: + if (eof) ADVANCE(316); if (lookahead == '!') ADVANCE(383); - if (lookahead == '"') ADVANCE(502); - if (lookahead == '#') ADVANCE(283); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '#') ADVANCE(276); if (lookahead == '%') ADVANCE(407); if (lookahead == '&') ADVANCE(417); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '(') ADVANCE(382); - if (lookahead == ')') ADVANCE(324); + if (lookahead == '\'') ADVANCE(494); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); if (lookahead == '*') ADVANCE(403); - if (lookahead == '+') ADVANCE(399); - if (lookahead == ',') ADVANCE(323); - if (lookahead == '-') ADVANCE(390); - if (lookahead == '.') ADVANCE(470); + if (lookahead == '+') ADVANCE(397); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '.') ADVANCE(467); if (lookahead == '/') ADVANCE(405); - if (lookahead == '0') ADVANCE(477); - if (lookahead == ':') ADVANCE(452); - if (lookahead == ';') ADVANCE(436); + if (lookahead == '0') ADVANCE(476); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(435); if (lookahead == '<') ADVANCE(427); if (lookahead == '=') ADVANCE(447); - if (lookahead == '>') ADVANCE(615); - if (lookahead == 'F') ADVANCE(542); - if (lookahead == 'L') ADVANCE(516); - if (lookahead == 'R') ADVANCE(519); - if (lookahead == 'T') ADVANCE(546); - if (lookahead == 'U') ADVANCE(520); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '?') ADVANCE(452); + if (lookahead == 'F') ADVANCE(543); + if (lookahead == 'L') ADVANCE(517); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'T') ADVANCE(547); + if (lookahead == 'U') ADVANCE(521); if (lookahead == '[') ADVANCE(443); - if (lookahead == '\\') ADVANCE(4); - if (lookahead == ']') ADVANCE(276); + if (lookahead == '\\') ADVANCE(2); + if (lookahead == ']') ADVANCE(445); if (lookahead == '^') ADVANCE(414); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(605); - if (lookahead == 'b') ADVANCE(588); - if (lookahead == 'c') ADVANCE(567); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(551); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'm') ADVANCE(553); - if (lookahead == 'n') ADVANCE(601); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 's') ADVANCE(568); - if (lookahead == 't') ADVANCE(593); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(585); - if (lookahead == '{') ADVANCE(440); - if (lookahead == '|') ADVANCE(290); - if (lookahead == '}') ADVANCE(441); - if (lookahead == '~') ADVANCE(385); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(552); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 't') ADVANCE(594); + if (lookahead == 'u') ADVANCE(524); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(411); + if (lookahead == '}') ADVANCE(440); + if (lookahead == '~') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(316) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); + lookahead == ' ') SKIP(314) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); - case 317: + case 315: + if (eof) ADVANCE(316); + if (lookahead == '!') ADVANCE(382); + if (lookahead == '"') ADVANCE(503); + if (lookahead == '#') ADVANCE(282); + if (lookahead == '%') ADVANCE(406); + if (lookahead == '&') ADVANCE(416); + if (lookahead == '\'') ADVANCE(494); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(323); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '+') ADVANCE(398); + if (lookahead == ',') ADVANCE(322); + if (lookahead == '-') ADVANCE(389); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '/') ADVANCE(404); + if (lookahead == '0') ADVANCE(476); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(435); + if (lookahead == '<') ADVANCE(426); + if (lookahead == '=') ADVANCE(446); + if (lookahead == '>') ADVANCE(616); + if (lookahead == 'F') ADVANCE(543); + if (lookahead == 'L') ADVANCE(517); + if (lookahead == 'R') ADVANCE(520); + if (lookahead == 'T') ADVANCE(547); + if (lookahead == 'U') ADVANCE(521); + if (lookahead == '[') ADVANCE(442); + if (lookahead == '\\') ADVANCE(4); + if (lookahead == ']') ADVANCE(275); + if (lookahead == '^') ADVANCE(413); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(606); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(552); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'p') ADVANCE(599); + if (lookahead == 's') ADVANCE(569); + if (lookahead == 't') ADVANCE(594); + if (lookahead == 'u') ADVANCE(524); + if (lookahead == 'v') ADVANCE(586); + if (lookahead == '{') ADVANCE(439); + if (lookahead == '|') ADVANCE(289); + if (lookahead == '}') ADVANCE(440); + if (lookahead == '~') ADVANCE(384); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(315) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); + END_STATE(); + case 316: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 318: + case 317: ACCEPT_TOKEN(aux_sym_preproc_include_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); - case 319: + case 318: ACCEPT_TOKEN(aux_sym_preproc_include_token2); END_STATE(); - case 320: + case 319: ACCEPT_TOKEN(aux_sym_preproc_def_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); - case 321: + case 320: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 322: + case 321: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 323: + case 322: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 324: + case 323: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 325: + case 324: ACCEPT_TOKEN(aux_sym_preproc_if_token1); - if (lookahead == 'd') ADVANCE(357); - if (lookahead == 'n') ADVANCE(351); + if (lookahead == 'd') ADVANCE(356); + if (lookahead == 'n') ADVANCE(350); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); - case 326: + case 325: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(325); END_STATE(); - case 327: + case 326: ACCEPT_TOKEN(aux_sym_preproc_if_token2); END_STATE(); - case 328: + case 327: ACCEPT_TOKEN(aux_sym_preproc_if_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); - case 329: + case 328: ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); - case 330: + case 329: ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); - case 331: + case 330: ACCEPT_TOKEN(aux_sym_preproc_else_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); - case 332: + case 331: ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (lookahead == 'd') ADVANCE(359); - if (lookahead == 'n') ADVANCE(352); + if (lookahead == 'd') ADVANCE(358); + if (lookahead == 'n') ADVANCE(351); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); - case 333: + case 332: ACCEPT_TOKEN(aux_sym_preproc_elif_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); - case 334: + case 333: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); - case 335: + case 334: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); - case 336: + case 335: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(254); - if (lookahead == '*') ADVANCE(336); - if (lookahead == '/') ADVANCE(606); - if (lookahead == '\\') ADVANCE(343); - if (lookahead != 0) ADVANCE(337); + if (lookahead == '*') ADVANCE(335); + if (lookahead == '/') ADVANCE(607); + if (lookahead == '\\') ADVANCE(342); + if (lookahead != 0) ADVANCE(336); END_STATE(); - case 337: + case 336: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(254); - if (lookahead == '*') ADVANCE(336); + if (lookahead == '*') ADVANCE(335); if (lookahead == '/') ADVANCE(255); - if (lookahead == '\\') ADVANCE(343); - if (lookahead != 0) ADVANCE(337); + if (lookahead == '\\') ADVANCE(342); + if (lookahead != 0) ADVANCE(336); + END_STATE(); + case 337: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(611); + if (lookahead == '\r') ADVANCE(608); + if (lookahead == '/') ADVANCE(609); + if (lookahead == '\\') ADVANCE(612); + if (lookahead != 0) ADVANCE(610); END_STATE(); case 338: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(610); - if (lookahead == '\r') ADVANCE(607); - if (lookahead == '/') ADVANCE(608); - if (lookahead == '\\') ADVANCE(611); - if (lookahead != 0) ADVANCE(609); + if (lookahead == '\n') SKIP(261) + if (lookahead == '\r') ADVANCE(339); + if (lookahead == '/') ADVANCE(313); + if (lookahead == '\\') ADVANCE(343); + if (lookahead != 0) ADVANCE(341); END_STATE(); case 339: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(262) - if (lookahead == '\r') ADVANCE(340); - if (lookahead == '/') ADVANCE(314); - if (lookahead == '\\') ADVANCE(344); - if (lookahead != 0) ADVANCE(342); + if (lookahead == '\n') SKIP(261) + if (lookahead == '/') ADVANCE(313); + if (lookahead == '\\') ADVANCE(343); + if (lookahead != 0) ADVANCE(341); END_STATE(); case 340: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(262) - if (lookahead == '/') ADVANCE(314); - if (lookahead == '\\') ADVANCE(344); - if (lookahead != 0) ADVANCE(342); + if (lookahead == '*') ADVANCE(336); + if (lookahead == '/') ADVANCE(609); + if (lookahead == '\\') ADVANCE(343); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(341); END_STATE(); case 341: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(337); - if (lookahead == '/') ADVANCE(608); - if (lookahead == '\\') ADVANCE(344); + if (lookahead == '/') ADVANCE(313); + if (lookahead == '\\') ADVANCE(343); if (lookahead != 0 && - lookahead != '\n') ADVANCE(342); + lookahead != '\n') ADVANCE(341); END_STATE(); case 342: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(314); - if (lookahead == '\\') ADVANCE(344); if (lookahead != 0 && - lookahead != '\n') ADVANCE(342); + lookahead != '\r' && + lookahead != '*' && + lookahead != '/' && + lookahead != '\\') ADVANCE(336); + if (lookahead == '\r') ADVANCE(345); + if (lookahead == '*') ADVANCE(335); + if (lookahead == '/') ADVANCE(255); + if (lookahead == '\\') ADVANCE(342); END_STATE(); case 343: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '\r' && - lookahead != '*' && lookahead != '/' && - lookahead != '\\') ADVANCE(337); + lookahead != '\\') ADVANCE(341); if (lookahead == '\r') ADVANCE(346); - if (lookahead == '*') ADVANCE(336); - if (lookahead == '/') ADVANCE(255); + if (lookahead == '/') ADVANCE(313); if (lookahead == '\\') ADVANCE(343); END_STATE(); case 344: @@ -32562,110 +30888,108 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '\r' && lookahead != '/' && - lookahead != '\\') ADVANCE(342); - if (lookahead == '\r') ADVANCE(347); - if (lookahead == '/') ADVANCE(314); - if (lookahead == '\\') ADVANCE(344); + lookahead != '\\') ADVANCE(610); + if (lookahead == '\r') ADVANCE(614); + if (lookahead == '/') ADVANCE(609); + if (lookahead == '\\') ADVANCE(612); END_STATE(); case 345: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && - lookahead != '\r' && + lookahead != '*' && lookahead != '/' && - lookahead != '\\') ADVANCE(609); - if (lookahead == '\r') ADVANCE(613); - if (lookahead == '/') ADVANCE(608); - if (lookahead == '\\') ADVANCE(611); + lookahead != '\\') ADVANCE(336); + if (lookahead == '*') ADVANCE(335); + if (lookahead == '/') ADVANCE(255); + if (lookahead == '\\') ADVANCE(342); END_STATE(); case 346: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && - lookahead != '*' && lookahead != '/' && - lookahead != '\\') ADVANCE(337); - if (lookahead == '*') ADVANCE(336); - if (lookahead == '/') ADVANCE(255); + lookahead != '\\') ADVANCE(341); + if (lookahead == '/') ADVANCE(313); if (lookahead == '\\') ADVANCE(343); END_STATE(); case 347: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '/' && - lookahead != '\\') ADVANCE(342); - if (lookahead == '/') ADVANCE(314); - if (lookahead == '\\') ADVANCE(344); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'c') ADVANCE(375); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 348: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'd') ADVANCE(372); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 349: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(373); + if (lookahead == 'd') ADVANCE(355); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 350: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(356); + if (lookahead == 'd') ADVANCE(357); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 351: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(358); + if (lookahead == 'd') ADVANCE(359); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 352: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(360); + if (lookahead == 'e') ADVANCE(362); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 353: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(363); + if (lookahead == 'e') ADVANCE(330); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 354: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(331); + if (lookahead == 'e') ADVANCE(319); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 355: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(320); + if (lookahead == 'e') ADVANCE(317); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 356: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(318); + if (lookahead == 'e') ADVANCE(365); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 357: ACCEPT_TOKEN(sym_preproc_directive); @@ -32673,7 +30997,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 358: ACCEPT_TOKEN(sym_preproc_directive); @@ -32681,7 +31005,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 359: ACCEPT_TOKEN(sym_preproc_directive); @@ -32689,48 +31013,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 360: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(369); + if (lookahead == 'f') ADVANCE(324); + if (lookahead == 'n') ADVANCE(347); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 361: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(325); - if (lookahead == 'n') ADVANCE(348); + if (lookahead == 'f') ADVANCE(324); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 362: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(325); + if (lookahead == 'f') ADVANCE(370); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 363: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(371); + if (lookahead == 'f') ADVANCE(331); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 364: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(332); + if (lookahead == 'f') ADVANCE(327); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 365: ACCEPT_TOKEN(sym_preproc_directive); @@ -32738,7 +31062,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 366: ACCEPT_TOKEN(sym_preproc_directive); @@ -32746,15 +31070,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 367: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(330); + if (lookahead == 'f') ADVANCE(333); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 368: ACCEPT_TOKEN(sym_preproc_directive); @@ -32762,1634 +31086,1675 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 369: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(335); + if (lookahead == 'f') ADVANCE(332); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 370: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(333); + if (lookahead == 'i') ADVANCE(378); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 371: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(379); + if (lookahead == 'i') ADVANCE(363); + if (lookahead == 's') ADVANCE(353); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 372: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'i') ADVANCE(364); - if (lookahead == 's') ADVANCE(354); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 373: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(365); + if (lookahead == 'i') ADVANCE(369); + if (lookahead == 's') ADVANCE(353); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 374: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 's') ADVANCE(354); + if (lookahead == 'l') ADVANCE(371); + if (lookahead == 'n') ADVANCE(348); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 375: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(372); - if (lookahead == 'n') ADVANCE(349); + if (lookahead == 'l') ADVANCE(379); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 376: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(380); + if (lookahead == 'l') ADVANCE(373); + if (lookahead == 'n') ADVANCE(348); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 377: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(374); - if (lookahead == 'n') ADVANCE(349); + if (lookahead == 'n') ADVANCE(348); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 378: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(349); + if (lookahead == 'n') ADVANCE(354); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 379: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(355); + if (lookahead == 'u') ADVANCE(349); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 380: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'u') ADVANCE(350); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 381: - ACCEPT_TOKEN(sym_preproc_directive); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 382: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 383: ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(419); END_STATE(); case 384: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(420); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 385: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 386: ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(464); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '0') ADVANCE(476); + if (lookahead == '=') ADVANCE(457); + if (lookahead == '>') ADVANCE(472); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); case 387: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(292); - if (lookahead == '0') ADVANCE(477); - if (lookahead == '=') ADVANCE(458); - if (lookahead == '>') ADVANCE(473); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); + if (lookahead == '-') ADVANCE(464); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '0') ADVANCE(476); + if (lookahead == '=') ADVANCE(457); + if (lookahead == '>') ADVANCE(471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); case 388: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(292); - if (lookahead == '0') ADVANCE(477); - if (lookahead == '=') ADVANCE(458); - if (lookahead == '>') ADVANCE(472); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); + if (lookahead == '-') ADVANCE(464); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '0') ADVANCE(476); + if (lookahead == '>') ADVANCE(471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); case 389: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(292); - if (lookahead == '0') ADVANCE(477); - if (lookahead == '>') ADVANCE(472); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); + if (lookahead == '-') ADVANCE(464); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '0') ADVANCE(476); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); case 390: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(292); - if (lookahead == '0') ADVANCE(477); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); + if (lookahead == '-') ADVANCE(464); + if (lookahead == '=') ADVANCE(457); + if (lookahead == '>') ADVANCE(472); END_STATE(); case 391: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '=') ADVANCE(458); - if (lookahead == '>') ADVANCE(473); + if (lookahead == '-') ADVANCE(464); + if (lookahead == '=') ADVANCE(457); + if (lookahead == '>') ADVANCE(471); END_STATE(); case 392: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '=') ADVANCE(458); - if (lookahead == '>') ADVANCE(472); + if (lookahead == '-') ADVANCE(464); + if (lookahead == '>') ADVANCE(471); END_STATE(); case 393: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '>') ADVANCE(472); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '0') ADVANCE(476); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); case 394: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(292); - if (lookahead == '0') ADVANCE(477); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); + if (lookahead == '=') ADVANCE(457); + if (lookahead == '>') ADVANCE(252); END_STATE(); case 395: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(458); - if (lookahead == '>') ADVANCE(252); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 396: ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(465); END_STATE(); case 397: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(466); + if (lookahead == '+') ADVANCE(465); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '0') ADVANCE(476); + if (lookahead == '=') ADVANCE(456); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); case 398: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(466); - if (lookahead == '.') ADVANCE(292); - if (lookahead == '0') ADVANCE(477); - if (lookahead == '=') ADVANCE(457); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); + if (lookahead == '+') ADVANCE(465); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '0') ADVANCE(476); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); case 399: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(466); - if (lookahead == '.') ADVANCE(292); - if (lookahead == '0') ADVANCE(477); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); + if (lookahead == '+') ADVANCE(465); + if (lookahead == '=') ADVANCE(456); END_STATE(); case 400: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(466); - if (lookahead == '=') ADVANCE(457); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '0') ADVANCE(476); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); case 401: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(292); - if (lookahead == '0') ADVANCE(477); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(479); + if (lookahead == '=') ADVANCE(456); END_STATE(); case 402: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(457); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 403: ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(453); END_STATE(); case 404: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(454); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(254); + if (lookahead == '/') ADVANCE(611); END_STATE(); case 405: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(254); - if (lookahead == '/') ADVANCE(610); + if (lookahead == '/') ADVANCE(611); + if (lookahead == '=') ADVANCE(454); END_STATE(); case 406: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(254); - if (lookahead == '/') ADVANCE(610); - if (lookahead == '=') ADVANCE(455); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 407: ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(455); END_STATE(); case 408: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(456); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 409: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 410: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 411: ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(462); + if (lookahead == '|') ADVANCE(408); END_STATE(); case 412: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(463); - if (lookahead == '|') ADVANCE(409); + if (lookahead == '|') ADVANCE(408); END_STATE(); case 413: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(409); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 414: ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(461); END_STATE(); case 415: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(462); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 416: ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(409); END_STATE(); case 417: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(410); + if (lookahead == '&') ADVANCE(409); + if (lookahead == '=') ADVANCE(460); END_STATE(); case 418: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(410); - if (lookahead == '=') ADVANCE(461); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 419: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 420: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 421: ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(423); + if (lookahead == '>') ADVANCE(433); END_STATE(); case 422: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(424); + if (lookahead == '=') ADVANCE(423); if (lookahead == '>') ADVANCE(434); END_STATE(); case 423: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(424); - if (lookahead == '>') ADVANCE(435); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 424: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 425: ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '>') ADVANCE(463); END_STATE(); case 426: - ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(464); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 427: ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(425); END_STATE(); case 428: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(433); - if (lookahead == '=') ADVANCE(426); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(424); END_STATE(); case 429: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(433); + if (lookahead == '<') ADVANCE(431); if (lookahead == '=') ADVANCE(425); END_STATE(); case 430: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(432); - if (lookahead == '=') ADVANCE(426); + if (lookahead == '<') ADVANCE(431); + if (lookahead == '=') ADVANCE(424); END_STATE(); case 431: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(432); - if (lookahead == '=') ADVANCE(425); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 432: ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(458); END_STATE(); case 433: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(459); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 434: ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(459); END_STATE(); case 435: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(460); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 436: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 437: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); case 438: - ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); case 439: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 440: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 441: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 442: ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(437); END_STATE(); case 443: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(438); + if (lookahead == '[') ADVANCE(437); + if (lookahead == ']') ADVANCE(624); END_STATE(); case 444: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(438); - if (lookahead == ']') ADVANCE(623); + if (lookahead == ']') ADVANCE(624); END_STATE(); case 445: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(623); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 446: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 447: ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(418); END_STATE(); case 448: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(419); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(542); + if (lookahead == '3') ADVANCE(540); + if (lookahead == '6') ADVANCE(541); + if (lookahead == '8') ADVANCE(551); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'p') ADVANCE(600); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 449: ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(541); - if (lookahead == '3') ADVANCE(539); - if (lookahead == '6') ADVANCE(540); - if (lookahead == '8') ADVANCE(550); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'p') ADVANCE(599); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 450: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 451: ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(436); END_STATE(); case 452: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(437); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 453: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 454: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 455: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 456: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 457: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 458: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 459: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 460: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 461: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 462: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 463: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); case 464: - ACCEPT_TOKEN(anon_sym_LT_EQ_GT); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 465: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 466: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '*') ADVANCE(470); + if (lookahead == '.') ADVANCE(259); END_STATE(); case 467: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '.') ADVANCE(260); + if (lookahead == '*') ADVANCE(470); + if (lookahead == '.') ADVANCE(259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(473); END_STATE(); case 468: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '.') ADVANCE(260); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(474); + if (lookahead == '.') ADVANCE(259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(473); END_STATE(); case 469: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(260); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(474); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(473); END_STATE(); case 470: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(474); + ACCEPT_TOKEN(anon_sym_DOT_STAR); END_STATE(); case 471: - ACCEPT_TOKEN(anon_sym_DOT_STAR); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 472: ACCEPT_TOKEN(anon_sym_DASH_GT); + if (lookahead == '*') ADVANCE(622); END_STATE(); case 473: - ACCEPT_TOKEN(anon_sym_DASH_GT); - if (lookahead == '*') ADVANCE(621); + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(291); + if (lookahead == 'E' || + lookahead == 'P' || + lookahead == 'e' || + lookahead == 'p') ADVANCE(486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(473); + if (sym_number_literal_character_set_1(lookahead)) ADVANCE(489); END_STATE(); case 474: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(292); - if (lookahead == 'F' || - lookahead == 'L' || + if (lookahead == '.') ADVANCE(487); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(483); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(482); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(486); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(295); + if (('A' <= lookahead && lookahead <= 'C') || + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(484); + if (('D' <= lookahead && lookahead <= 'F') || + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(484); + if (lookahead == 'L' || lookahead == 'U' || - lookahead == 'f' || + lookahead == 'W' || lookahead == 'l' || - lookahead == 'u') ADVANCE(488); - if (lookahead == 'E' || - lookahead == 'P' || - lookahead == 'e' || - lookahead == 'p') ADVANCE(487); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(474); + lookahead == 'u' || + lookahead == 'w') ADVANCE(489); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(475); END_STATE(); case 475: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(293); - if (lookahead == '.') ADVANCE(486); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(485); + if (lookahead == '\'') ADVANCE(292); + if (lookahead == '.') ADVANCE(487); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(482); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(486); + if (lookahead == 'A' || + lookahead == 'C' || + lookahead == 'a' || + lookahead == 'c') ADVANCE(484); + if (('B' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(484); if (lookahead == 'L' || lookahead == 'U' || + lookahead == 'W' || lookahead == 'l' || - lookahead == 'u') ADVANCE(488); - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'x') ADVANCE(296); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(483); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(487); - if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(485); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(476); + lookahead == 'u' || + lookahead == 'w') ADVANCE(489); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(475); END_STATE(); case 476: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(293); - if (lookahead == '.') ADVANCE(486); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(485); - if (lookahead == 'L' || + if (lookahead == '\'') ADVANCE(290); + if (lookahead == '.') ADVANCE(487); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(485); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(256); + if (lookahead == 'E' || + lookahead == 'P' || + lookahead == 'e' || + lookahead == 'p') ADVANCE(486); + if (('D' <= lookahead && lookahead <= 'F') || + lookahead == 'L' || lookahead == 'U' || + lookahead == 'W' || + ('d' <= lookahead && lookahead <= 'f') || lookahead == 'l' || - lookahead == 'u') ADVANCE(488); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(483); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(487); - if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(485); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(476); + lookahead == 'u' || + lookahead == 'w') ADVANCE(489); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); case 477: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(291); - if (lookahead == '.') ADVANCE(486); - if (lookahead == 'F' || - lookahead == 'L' || - lookahead == 'U' || - lookahead == 'f' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(488); - if (lookahead == 'b') ADVANCE(257); - if (lookahead == 'x') ADVANCE(256); + if (lookahead == '\'') ADVANCE(290); + if (lookahead == '.') ADVANCE(487); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(488); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(295); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(487); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(479); - END_STATE(); - case 478: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(291); - if (lookahead == '.') ADVANCE(486); - if (lookahead == 'F' || + lookahead == 'p') ADVANCE(486); + if (('D' <= lookahead && lookahead <= 'F') || lookahead == 'L' || lookahead == 'U' || - lookahead == 'f' || + lookahead == 'W' || + ('d' <= lookahead && lookahead <= 'f') || lookahead == 'l' || - lookahead == 'u') ADVANCE(488); - if (lookahead == 'b') ADVANCE(291); - if (lookahead == 'x') ADVANCE(296); + lookahead == 'u' || + lookahead == 'w') ADVANCE(489); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(478); + END_STATE(); + case 478: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(290); + if (lookahead == '.') ADVANCE(487); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(487); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(479); + lookahead == 'p') ADVANCE(486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(478); + if (sym_number_literal_character_set_1(lookahead)) ADVANCE(489); END_STATE(); case 479: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(291); - if (lookahead == '.') ADVANCE(486); - if (lookahead == 'F' || - lookahead == 'L' || + if (lookahead == '\'') ADVANCE(296); + if (lookahead == 'B' || + lookahead == 'D' || + lookahead == 'F' || + lookahead == 'b' || + lookahead == 'd' || + lookahead == 'f') ADVANCE(479); + if (lookahead == 'L' || lookahead == 'U' || - lookahead == 'f' || + lookahead == 'W' || lookahead == 'l' || - lookahead == 'u') ADVANCE(488); - if (lookahead == 'E' || - lookahead == 'P' || - lookahead == 'e' || - lookahead == 'p') ADVANCE(487); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(479); + lookahead == 'u' || + lookahead == 'w') ADVANCE(489); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'E') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(479); END_STATE(); case 480: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(297); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(480); + if (lookahead == '\'') ADVANCE(294); + if (lookahead == '+' || + lookahead == '-') ADVANCE(296); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(480); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(486); + if (lookahead == 'B' || + ('D' <= lookahead && lookahead <= 'F') || + lookahead == 'b' || + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(481); if (lookahead == 'L' || lookahead == 'U' || + lookahead == 'W' || lookahead == 'l' || - lookahead == 'u') ADVANCE(488); + lookahead == 'u' || + lookahead == 'w') ADVANCE(489); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(480); + ('A' <= lookahead && lookahead <= 'C') || + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(481); END_STATE(); case 481: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(295); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(482); + if (lookahead == '\'') ADVANCE(294); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(480); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(486); + if (lookahead == 'B' || + ('D' <= lookahead && lookahead <= 'F') || + lookahead == 'b' || + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(481); if (lookahead == 'L' || lookahead == 'U' || + lookahead == 'W' || lookahead == 'l' || - lookahead == 'u') ADVANCE(488); - if (lookahead == '+' || - lookahead == '-') ADVANCE(297); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(481); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(487); + lookahead == 'u' || + lookahead == 'w') ADVANCE(489); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(482); + ('A' <= lookahead && lookahead <= 'C') || + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(481); END_STATE(); case 482: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(295); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(482); + if (lookahead == '.') ADVANCE(487); + if (lookahead == '+' || + lookahead == '-') ADVANCE(296); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(482); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(486); + if (lookahead == 'B' || + ('D' <= lookahead && lookahead <= 'F') || + lookahead == 'b' || + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(484); if (lookahead == 'L' || lookahead == 'U' || + lookahead == 'W' || lookahead == 'l' || - lookahead == 'u') ADVANCE(488); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(481); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(487); + lookahead == 'u' || + lookahead == 'w') ADVANCE(489); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(482); + ('A' <= lookahead && lookahead <= 'C') || + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(484); END_STATE(); case 483: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(296); - if (lookahead == '.') ADVANCE(486); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(485); + if (lookahead == '\'') ADVANCE(295); + if (lookahead == '.') ADVANCE(487); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(482); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(486); + if (lookahead == 'A' || + lookahead == 'C' || + lookahead == 'a' || + lookahead == 'c') ADVANCE(484); + if (('B' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(484); if (lookahead == 'L' || lookahead == 'U' || + lookahead == 'W' || lookahead == 'l' || - lookahead == 'u') ADVANCE(488); - if (lookahead == '+' || - lookahead == '-') ADVANCE(297); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(483); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(487); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(485); + lookahead == 'u' || + lookahead == 'w') ADVANCE(489); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(475); END_STATE(); case 484: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(296); - if (lookahead == '.') ADVANCE(486); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(485); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(488); + if (lookahead == '\'') ADVANCE(295); + if (lookahead == '.') ADVANCE(487); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(483); + lookahead == 'e') ADVANCE(482); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(487); - if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(485); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(476); - END_STATE(); - case 485: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(296); - if (lookahead == '.') ADVANCE(486); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(485); + lookahead == 'p') ADVANCE(486); + if (lookahead == 'B' || + ('D' <= lookahead && lookahead <= 'F') || + lookahead == 'b' || + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(484); if (lookahead == 'L' || lookahead == 'U' || + lookahead == 'W' || lookahead == 'l' || - lookahead == 'u') ADVANCE(488); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(483); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(487); + lookahead == 'u' || + lookahead == 'w') ADVANCE(489); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(485); + ('A' <= lookahead && lookahead <= 'C') || + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(484); + END_STATE(); + case 485: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '0') ADVANCE(477); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); + if (sym_number_literal_character_set_2(lookahead)) ADVANCE(489); END_STATE(); case 486: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(482); + if (lookahead == '+' || + lookahead == '-') ADVANCE(296); + if (lookahead == 'B' || + lookahead == 'D' || + lookahead == 'F' || + lookahead == 'b' || + lookahead == 'd' || + lookahead == 'f') ADVANCE(479); if (lookahead == 'L' || lookahead == 'U' || + lookahead == 'W' || lookahead == 'l' || - lookahead == 'u') ADVANCE(488); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(481); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(487); + lookahead == 'u' || + lookahead == 'w') ADVANCE(489); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(482); + ('A' <= lookahead && lookahead <= 'E') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(479); END_STATE(); case 487: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(480); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(480); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(486); + if (lookahead == 'B' || + ('D' <= lookahead && lookahead <= 'F') || + lookahead == 'b' || + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(481); if (lookahead == 'L' || lookahead == 'U' || + lookahead == 'W' || lookahead == 'l' || - lookahead == 'u') ADVANCE(488); - if (lookahead == '+' || - lookahead == '-') ADVANCE(297); + lookahead == 'u' || + lookahead == 'w') ADVANCE(489); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(480); + ('A' <= lookahead && lookahead <= 'C') || + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(481); END_STATE(); case 488: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'F' || - lookahead == 'L' || - lookahead == 'U' || - lookahead == 'f' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(488); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(478); + if (sym_number_literal_character_set_2(lookahead)) ADVANCE(489); END_STATE(); case 489: - ACCEPT_TOKEN(anon_sym_L_SQUOTE); + ACCEPT_TOKEN(sym_number_literal); + if (sym_number_literal_character_set_2(lookahead)) ADVANCE(489); END_STATE(); case 490: - ACCEPT_TOKEN(anon_sym_u_SQUOTE); + ACCEPT_TOKEN(anon_sym_L_SQUOTE); END_STATE(); case 491: - ACCEPT_TOKEN(anon_sym_U_SQUOTE); + ACCEPT_TOKEN(anon_sym_u_SQUOTE); END_STATE(); case 492: - ACCEPT_TOKEN(anon_sym_u8_SQUOTE); + ACCEPT_TOKEN(anon_sym_U_SQUOTE); END_STATE(); case 493: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(anon_sym_u8_SQUOTE); END_STATE(); case 494: - ACCEPT_TOKEN(aux_sym_char_literal_token1); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 495: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\n') ADVANCE(509); - if (lookahead == '\r') ADVANCE(508); - if (lookahead == 'U') ADVANCE(312); - if (lookahead == 'u') ADVANCE(304); - if (lookahead == 'x') ADVANCE(300); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(511); - if (lookahead != 0) ADVANCE(508); END_STATE(); case 496: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(254); - if (lookahead == '/') ADVANCE(610); + if (lookahead == '\n') ADVANCE(510); + if (lookahead == '\r') ADVANCE(509); + if (lookahead == 'U') ADVANCE(311); + if (lookahead == 'u') ADVANCE(303); + if (lookahead == 'x') ADVANCE(299); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(512); + if (lookahead != 0) ADVANCE(509); END_STATE(); case 497: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(112); + if (lookahead == '*') ADVANCE(254); + if (lookahead == '/') ADVANCE(611); END_STATE(); case 498: - ACCEPT_TOKEN(anon_sym_L_DQUOTE); + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '\\') ADVANCE(105); END_STATE(); case 499: - ACCEPT_TOKEN(anon_sym_u_DQUOTE); + ACCEPT_TOKEN(anon_sym_L_DQUOTE); END_STATE(); case 500: - ACCEPT_TOKEN(anon_sym_U_DQUOTE); + ACCEPT_TOKEN(anon_sym_u_DQUOTE); END_STATE(); case 501: - ACCEPT_TOKEN(anon_sym_u8_DQUOTE); + ACCEPT_TOKEN(anon_sym_U_DQUOTE); END_STATE(); case 502: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_u8_DQUOTE); END_STATE(); case 503: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '/') ADVANCE(507); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(507); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 504: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '/') ADVANCE(507); + if (lookahead == '*') ADVANCE(506); + if (lookahead == '/') ADVANCE(508); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(505); + lookahead != '\\') ADVANCE(508); END_STATE(); case 505: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(504); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '/') ADVANCE(508); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(505); + lookahead != '\\') ADVANCE(506); END_STATE(); case 506: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(503); - if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(506); + if (lookahead == '*') ADVANCE(505); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(507); + lookahead != '\\') ADVANCE(506); END_STATE(); case 507: ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '\t' || + (11 <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(507); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(507); + lookahead != '\\') ADVANCE(508); END_STATE(); case 508: - ACCEPT_TOKEN(sym_escape_sequence); + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(508); END_STATE(); case 509: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(112); END_STATE(); case 510: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(508); + if (lookahead == '\\') ADVANCE(105); END_STATE(); case 511: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(509); END_STATE(); case 512: - ACCEPT_TOKEN(sym_system_lib_string); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(511); END_STATE(); case 513: ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(512); - if (lookahead == '\\') ADVANCE(272); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(271); END_STATE(); case 514: - ACCEPT_TOKEN(sym_true); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + ACCEPT_TOKEN(sym_system_lib_string); + if (lookahead == '>') ADVANCE(513); + if (lookahead == '\\') ADVANCE(271); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(270); END_STATE(); case 515: - ACCEPT_TOKEN(sym_false); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + ACCEPT_TOKEN(sym_true); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 516: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(498); - if (lookahead == '\'') ADVANCE(489); - if (lookahead == 'R') ADVANCE(527); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + ACCEPT_TOKEN(sym_false); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 517: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(498); - if (lookahead == 'R') ADVANCE(527); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '"') ADVANCE(499); + if (lookahead == '\'') ADVANCE(490); + if (lookahead == 'R') ADVANCE(528); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 518: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(498); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '"') ADVANCE(499); + if (lookahead == 'R') ADVANCE(528); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 519: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(616); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '"') ADVANCE(499); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 520: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(500); - if (lookahead == '\'') ADVANCE(491); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '"') ADVANCE(617); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 521: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(500); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '"') ADVANCE(501); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == 'R') ADVANCE(529); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 522: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(500); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '"') ADVANCE(501); + if (lookahead == 'R') ADVANCE(529); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 523: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(499); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '8') ADVANCE(529); - if (lookahead == 'R') ADVANCE(532); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'i') ADVANCE(583); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '"') ADVANCE(501); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 524: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(499); + if (lookahead == '"') ADVANCE(500); + if (lookahead == '\'') ADVANCE(491); if (lookahead == '8') ADVANCE(530); - if (lookahead == 'R') ADVANCE(532); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == 'R') ADVANCE(533); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'i') ADVANCE(584); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 525: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(499); + if (lookahead == '"') ADVANCE(500); if (lookahead == '8') ADVANCE(531); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'i') ADVANCE(583); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == 'R') ADVANCE(533); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 526: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(499); - if (lookahead == '8') ADVANCE(531); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '"') ADVANCE(500); + if (lookahead == '8') ADVANCE(532); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'i') ADVANCE(584); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 527: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(617); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '"') ADVANCE(500); + if (lookahead == '8') ADVANCE(532); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 528: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(619); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '"') ADVANCE(618); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 529: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(501); - if (lookahead == '\'') ADVANCE(492); - if (lookahead == 'R') ADVANCE(533); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '"') ADVANCE(620); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 530: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(501); - if (lookahead == 'R') ADVANCE(533); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '"') ADVANCE(502); + if (lookahead == '\'') ADVANCE(493); + if (lookahead == 'R') ADVANCE(534); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 531: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(501); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '"') ADVANCE(502); + if (lookahead == 'R') ADVANCE(534); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 532: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(618); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '"') ADVANCE(502); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 533: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(620); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '"') ADVANCE(619); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 534: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(489); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '"') ADVANCE(621); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 535: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(491); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\'') ADVANCE(490); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 536: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '8') ADVANCE(537); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 537: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(492); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\'') ADVANCE(491); + if (lookahead == '8') ADVANCE(538); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 538: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(541); - if (lookahead == '3') ADVANCE(539); - if (lookahead == '6') ADVANCE(540); - if (lookahead == '8') ADVANCE(550); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'p') ADVANCE(599); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\'') ADVANCE(493); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 539: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(550); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '1') ADVANCE(542); + if (lookahead == '3') ADVANCE(540); + if (lookahead == '6') ADVANCE(541); + if (lookahead == '8') ADVANCE(551); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'p') ADVANCE(600); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 540: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '4') ADVANCE(550); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '2') ADVANCE(551); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 541: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '6') ADVANCE(550); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '4') ADVANCE(551); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 542: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(545); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_12(lookahead)) ADVANCE(605); + if (lookahead == '6') ADVANCE(551); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 543: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(514); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == 'A') ADVANCE(546); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_12(lookahead)) ADVANCE(606); END_STATE(); case 544: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E') ADVANCE(515); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 545: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(547); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == 'E') ADVANCE(516); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 546: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(548); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == 'L') ADVANCE(548); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 547: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(544); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == 'R') ADVANCE(549); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 548: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U') ADVANCE(543); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == 'S') ADVANCE(545); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 549: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == '_') ADVANCE(556); - if (sym_identifier_character_set_13(lookahead)) ADVANCE(605); + if (lookahead == 'U') ADVANCE(544); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 550: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == '_') ADVANCE(596); - if (sym_identifier_character_set_13(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == '_') ADVANCE(557); + if (sym_identifier_character_set_13(lookahead)) ADVANCE(606); END_STATE(); case 551: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'a') ADVANCE(574); - if (lookahead == 'l') ADVANCE(586); - if (sym_identifier_character_set_14(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == '_') ADVANCE(597); + if (sym_identifier_character_set_13(lookahead)) ADVANCE(606); END_STATE(); case 552: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'a') ADVANCE(574); - if (sym_identifier_character_set_14(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'a') ADVANCE(575); + if (lookahead == 'l') ADVANCE(587); + if (sym_identifier_character_set_14(lookahead)) ADVANCE(606); END_STATE(); case 553: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'a') ADVANCE(603); - if (sym_identifier_character_set_14(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'a') ADVANCE(575); + if (sym_identifier_character_set_14(lookahead)) ADVANCE(606); END_STATE(); case 554: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'a') ADVANCE(590); - if (sym_identifier_character_set_14(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'a') ADVANCE(604); + if (sym_identifier_character_set_14(lookahead)) ADVANCE(606); END_STATE(); case 555: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'a') ADVANCE(596); - if (sym_identifier_character_set_14(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'a') ADVANCE(591); + if (sym_identifier_character_set_14(lookahead)) ADVANCE(606); END_STATE(); case 556: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'a') ADVANCE(578); - if (sym_identifier_character_set_14(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'a') ADVANCE(597); + if (sym_identifier_character_set_14(lookahead)) ADVANCE(606); END_STATE(); case 557: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'b') ADVANCE(579); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'a') ADVANCE(579); + if (sym_identifier_character_set_14(lookahead)) ADVANCE(606); END_STATE(); case 558: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'd') ADVANCE(450); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'b') ADVANCE(580); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 559: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'd') ADVANCE(570); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'd') ADVANCE(449); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 560: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'e') ADVANCE(514); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'd') ADVANCE(571); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 561: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'e') ADVANCE(450); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'e') ADVANCE(515); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 562: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'e') ADVANCE(515); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'e') ADVANCE(449); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 563: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'e') ADVANCE(550); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'e') ADVANCE(516); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 564: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'f') ADVANCE(550); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'e') ADVANCE(551); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 565: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'f') ADVANCE(564); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'f') ADVANCE(551); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 566: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'g') ADVANCE(582); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'f') ADVANCE(565); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 567: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'h') ADVANCE(554); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'g') ADVANCE(583); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 568: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'i') ADVANCE(604); - if (lookahead == 's') ADVANCE(569); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'h') ADVANCE(555); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 569: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'i') ADVANCE(604); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'i') ADVANCE(605); + if (lookahead == 's') ADVANCE(570); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 570: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'i') ADVANCE(565); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'i') ADVANCE(605); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 571: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); + if (lookahead == '\\') ADVANCE(272); if (lookahead == 'i') ADVANCE(566); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 572: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'i') ADVANCE(558); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'i') ADVANCE(567); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 573: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'i') ADVANCE(583); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'i') ADVANCE(559); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 574: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'l') ADVANCE(594); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'i') ADVANCE(584); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 575: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'l') ADVANCE(450); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'l') ADVANCE(595); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 576: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'l') ADVANCE(589); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'l') ADVANCE(449); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 577: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'l') ADVANCE(576); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'l') ADVANCE(590); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 578: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'l') ADVANCE(571); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'l') ADVANCE(577); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 579: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'l') ADVANCE(561); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'l') ADVANCE(572); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 580: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'l') ADVANCE(586); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'l') ADVANCE(562); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 581: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'n') ADVANCE(595); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'l') ADVANCE(587); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 582: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'n') ADVANCE(550); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'n') ADVANCE(596); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 583: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'n') ADVANCE(597); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'n') ADVANCE(551); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 584: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'o') ADVANCE(600); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'n') ADVANCE(598); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 585: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'o') ADVANCE(572); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'o') ADVANCE(601); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 586: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'o') ADVANCE(555); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'o') ADVANCE(573); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 587: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'o') ADVANCE(575); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'o') ADVANCE(556); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 588: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'o') ADVANCE(587); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'o') ADVANCE(576); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 589: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'p') ADVANCE(599); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'o') ADVANCE(588); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 590: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'r') ADVANCE(449); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'p') ADVANCE(600); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 591: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'r') ADVANCE(559); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'r') ADVANCE(448); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 592: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'r') ADVANCE(550); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'r') ADVANCE(560); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 593: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'r') ADVANCE(602); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'r') ADVANCE(551); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 594: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 's') ADVANCE(562); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'r') ADVANCE(603); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 595: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 't') ADVANCE(449); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 's') ADVANCE(563); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 596: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 't') ADVANCE(450); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 't') ADVANCE(448); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 597: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 't') ADVANCE(538); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 't') ADVANCE(449); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 598: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 't') ADVANCE(591); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 't') ADVANCE(539); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 599: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); + if (lookahead == '\\') ADVANCE(272); if (lookahead == 't') ADVANCE(592); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 600: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'u') ADVANCE(557); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 't') ADVANCE(593); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 601: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'u') ADVANCE(577); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'u') ADVANCE(558); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 602: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'u') ADVANCE(560); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'u') ADVANCE(578); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 603: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'x') ADVANCE(549); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'u') ADVANCE(561); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 604: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == 'z') ADVANCE(563); - if (sym_identifier_character_set_15(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'x') ADVANCE(550); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 605: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(273); - if (sym_identifier_character_set_11(lookahead)) ADVANCE(605); + if (lookahead == '\\') ADVANCE(272); + if (lookahead == 'z') ADVANCE(564); + if (sym_identifier_character_set_15(lookahead)) ADVANCE(606); END_STATE(); case 606: - ACCEPT_TOKEN(sym_comment); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(272); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(606); END_STATE(); case 607: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(610); - if (lookahead == '/') ADVANCE(608); - if (lookahead == '\\') ADVANCE(345); - if (lookahead != 0) ADVANCE(609); END_STATE(); case 608: ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(610); - if (lookahead == '\\') ADVANCE(338); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(609); + if (lookahead == '\n') ADVANCE(611); + if (lookahead == '/') ADVANCE(609); + if (lookahead == '\\') ADVANCE(344); + if (lookahead != 0) ADVANCE(610); END_STATE(); case 609: ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(608); - if (lookahead == '\\') ADVANCE(345); + if (lookahead == '*') ADVANCE(611); + if (lookahead == '\\') ADVANCE(337); if (lookahead != 0 && - lookahead != '\n') ADVANCE(609); + lookahead != '\n') ADVANCE(610); END_STATE(); case 610: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '/') ADVANCE(609); + if (lookahead == '\\') ADVANCE(344); if (lookahead != 0 && lookahead != '\n') ADVANCE(610); END_STATE(); case 611: ACCEPT_TOKEN(sym_comment); + if (lookahead == '\\') ADVANCE(312); if (lookahead != 0 && - lookahead != '\r' && - lookahead != '/' && - lookahead != '\\') ADVANCE(609); - if (lookahead == '\r') ADVANCE(613); - if (lookahead == '/') ADVANCE(608); - if (lookahead == '\\') ADVANCE(611); + lookahead != '\n') ADVANCE(611); END_STATE(); case 612: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\r' && + lookahead != '/' && lookahead != '\\') ADVANCE(610); if (lookahead == '\r') ADVANCE(614); + if (lookahead == '/') ADVANCE(609); if (lookahead == '\\') ADVANCE(612); END_STATE(); case 613: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '/' && - lookahead != '\\') ADVANCE(609); - if (lookahead == '/') ADVANCE(608); - if (lookahead == '\\') ADVANCE(345); + lookahead != '\r' && + lookahead != '\\') ADVANCE(611); + if (lookahead == '\r') ADVANCE(615); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 614: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && + lookahead != '/' && lookahead != '\\') ADVANCE(610); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '/') ADVANCE(609); + if (lookahead == '\\') ADVANCE(344); END_STATE(); case 615: - ACCEPT_TOKEN(anon_sym_GT2); + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(611); + if (lookahead == '\\') ADVANCE(312); END_STATE(); case 616: - ACCEPT_TOKEN(anon_sym_R_DQUOTE); + ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); case 617: - ACCEPT_TOKEN(anon_sym_LR_DQUOTE); + ACCEPT_TOKEN(anon_sym_R_DQUOTE); END_STATE(); case 618: - ACCEPT_TOKEN(anon_sym_uR_DQUOTE); + ACCEPT_TOKEN(anon_sym_LR_DQUOTE); END_STATE(); case 619: - ACCEPT_TOKEN(anon_sym_UR_DQUOTE); + ACCEPT_TOKEN(anon_sym_uR_DQUOTE); END_STATE(); case 620: - ACCEPT_TOKEN(anon_sym_u8R_DQUOTE); + ACCEPT_TOKEN(anon_sym_UR_DQUOTE); END_STATE(); case 621: - ACCEPT_TOKEN(anon_sym_DASH_GT_STAR); + ACCEPT_TOKEN(anon_sym_u8R_DQUOTE); END_STATE(); case 622: - ACCEPT_TOKEN(anon_sym_LPAREN_RPAREN); + ACCEPT_TOKEN(anon_sym_DASH_GT_STAR); END_STATE(); case 623: - ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); + ACCEPT_TOKEN(anon_sym_LPAREN_RPAREN); END_STATE(); case 624: - ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE); + ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); END_STATE(); case 625: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(498); - if (lookahead == 'R') ADVANCE(629); - if (lookahead == '\\') ADVANCE(273); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); - if (sym_identifier_character_set_16(lookahead)) ADVANCE(605); + ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE); END_STATE(); case 626: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(616); - if (lookahead == '\\') ADVANCE(273); + if (lookahead == '"') ADVANCE(499); + if (lookahead == 'R') ADVANCE(630); + if (lookahead == '\\') ADVANCE(272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); - if (sym_identifier_character_set_16(lookahead)) ADVANCE(605); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + if (sym_identifier_character_set_16(lookahead)) ADVANCE(606); END_STATE(); case 627: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(500); - if (lookahead == 'R') ADVANCE(630); - if (lookahead == '\\') ADVANCE(273); + if (lookahead == '"') ADVANCE(617); + if (lookahead == '\\') ADVANCE(272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); - if (sym_identifier_character_set_16(lookahead)) ADVANCE(605); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + if (sym_identifier_character_set_16(lookahead)) ADVANCE(606); END_STATE(); case 628: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(499); - if (lookahead == '8') ADVANCE(631); - if (lookahead == 'R') ADVANCE(632); - if (lookahead == '\\') ADVANCE(273); + if (lookahead == '"') ADVANCE(501); + if (lookahead == 'R') ADVANCE(631); + if (lookahead == '\\') ADVANCE(272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); - if (sym_identifier_character_set_16(lookahead)) ADVANCE(605); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + if (sym_identifier_character_set_16(lookahead)) ADVANCE(606); END_STATE(); case 629: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(617); - if (lookahead == '\\') ADVANCE(273); + if (lookahead == '"') ADVANCE(500); + if (lookahead == '8') ADVANCE(632); + if (lookahead == 'R') ADVANCE(633); + if (lookahead == '\\') ADVANCE(272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); - if (sym_identifier_character_set_16(lookahead)) ADVANCE(605); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + if (sym_identifier_character_set_16(lookahead)) ADVANCE(606); END_STATE(); case 630: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(619); - if (lookahead == '\\') ADVANCE(273); + if (lookahead == '"') ADVANCE(618); + if (lookahead == '\\') ADVANCE(272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); - if (sym_identifier_character_set_16(lookahead)) ADVANCE(605); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + if (sym_identifier_character_set_16(lookahead)) ADVANCE(606); END_STATE(); case 631: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(501); - if (lookahead == 'R') ADVANCE(633); - if (lookahead == '\\') ADVANCE(273); + if (lookahead == '"') ADVANCE(620); + if (lookahead == '\\') ADVANCE(272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); - if (sym_identifier_character_set_16(lookahead)) ADVANCE(605); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + if (sym_identifier_character_set_16(lookahead)) ADVANCE(606); END_STATE(); case 632: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(618); - if (lookahead == '\\') ADVANCE(273); + if (lookahead == '"') ADVANCE(502); + if (lookahead == 'R') ADVANCE(634); + if (lookahead == '\\') ADVANCE(272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); - if (sym_identifier_character_set_16(lookahead)) ADVANCE(605); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + if (sym_identifier_character_set_16(lookahead)) ADVANCE(606); END_STATE(); case 633: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(620); - if (lookahead == '\\') ADVANCE(273); + if (lookahead == '"') ADVANCE(619); + if (lookahead == '\\') ADVANCE(272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); - if (sym_identifier_character_set_16(lookahead)) ADVANCE(605); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + if (sym_identifier_character_set_16(lookahead)) ADVANCE(606); END_STATE(); case 634: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(273); + if (lookahead == '"') ADVANCE(621); + if (lookahead == '\\') ADVANCE(272); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + if (sym_identifier_character_set_16(lookahead)) ADVANCE(606); + END_STATE(); + case 635: + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '\\') ADVANCE(272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); - if (sym_identifier_character_set_16(lookahead)) ADVANCE(605); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + if (sym_identifier_character_set_16(lookahead)) ADVANCE(606); END_STATE(); default: return false; @@ -36207,101 +34572,101 @@ 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 = 316}, - [2] = {.lex_state = 170}, - [3] = {.lex_state = 170}, - [4] = {.lex_state = 316}, - [5] = {.lex_state = 316}, - [6] = {.lex_state = 316}, - [7] = {.lex_state = 170}, - [8] = {.lex_state = 316}, - [9] = {.lex_state = 316}, + [1] = {.lex_state = 315}, + [2] = {.lex_state = 315}, + [3] = {.lex_state = 315}, + [4] = {.lex_state = 170}, + [5] = {.lex_state = 315}, + [6] = {.lex_state = 170}, + [7] = {.lex_state = 315}, + [8] = {.lex_state = 170}, + [9] = {.lex_state = 315}, [10] = {.lex_state = 170}, - [11] = {.lex_state = 316}, - [12] = {.lex_state = 316}, - [13] = {.lex_state = 316}, - [14] = {.lex_state = 316}, - [15] = {.lex_state = 316}, - [16] = {.lex_state = 170}, - [17] = {.lex_state = 170}, - [18] = {.lex_state = 316}, - [19] = {.lex_state = 170}, + [11] = {.lex_state = 315}, + [12] = {.lex_state = 315}, + [13] = {.lex_state = 170}, + [14] = {.lex_state = 170}, + [15] = {.lex_state = 170}, + [16] = {.lex_state = 315}, + [17] = {.lex_state = 315}, + [18] = {.lex_state = 170}, + [19] = {.lex_state = 315}, [20] = {.lex_state = 170}, [21] = {.lex_state = 170}, - [22] = {.lex_state = 316}, - [23] = {.lex_state = 316}, - [24] = {.lex_state = 316}, - [25] = {.lex_state = 170}, + [22] = {.lex_state = 315}, + [23] = {.lex_state = 315}, + [24] = {.lex_state = 315}, + [25] = {.lex_state = 315}, [26] = {.lex_state = 174}, [27] = {.lex_state = 174}, [28] = {.lex_state = 174}, [29] = {.lex_state = 174}, [30] = {.lex_state = 174}, [31] = {.lex_state = 174}, - [32] = {.lex_state = 170}, + [32] = {.lex_state = 174}, [33] = {.lex_state = 174}, [34] = {.lex_state = 174}, [35] = {.lex_state = 174}, [36] = {.lex_state = 174}, - [37] = {.lex_state = 174}, + [37] = {.lex_state = 170}, [38] = {.lex_state = 174}, [39] = {.lex_state = 174}, [40] = {.lex_state = 174}, [41] = {.lex_state = 174}, - [42] = {.lex_state = 316}, - [43] = {.lex_state = 316}, - [44] = {.lex_state = 316}, - [45] = {.lex_state = 316}, - [46] = {.lex_state = 316}, - [47] = {.lex_state = 316}, - [48] = {.lex_state = 316}, - [49] = {.lex_state = 316}, - [50] = {.lex_state = 316}, - [51] = {.lex_state = 316}, - [52] = {.lex_state = 316}, - [53] = {.lex_state = 316}, - [54] = {.lex_state = 316}, - [55] = {.lex_state = 316}, - [56] = {.lex_state = 316}, - [57] = {.lex_state = 316}, - [58] = {.lex_state = 316}, - [59] = {.lex_state = 316}, - [60] = {.lex_state = 316}, - [61] = {.lex_state = 316}, - [62] = {.lex_state = 316}, - [63] = {.lex_state = 316}, - [64] = {.lex_state = 316}, - [65] = {.lex_state = 316}, - [66] = {.lex_state = 316}, - [67] = {.lex_state = 173}, - [68] = {.lex_state = 316}, - [69] = {.lex_state = 316}, - [70] = {.lex_state = 316}, - [71] = {.lex_state = 316}, - [72] = {.lex_state = 316}, - [73] = {.lex_state = 316}, - [74] = {.lex_state = 316}, - [75] = {.lex_state = 316}, - [76] = {.lex_state = 316}, + [42] = {.lex_state = 315}, + [43] = {.lex_state = 315}, + [44] = {.lex_state = 315}, + [45] = {.lex_state = 315}, + [46] = {.lex_state = 315}, + [47] = {.lex_state = 315}, + [48] = {.lex_state = 315}, + [49] = {.lex_state = 315}, + [50] = {.lex_state = 315}, + [51] = {.lex_state = 315}, + [52] = {.lex_state = 315}, + [53] = {.lex_state = 315}, + [54] = {.lex_state = 173}, + [55] = {.lex_state = 315}, + [56] = {.lex_state = 315}, + [57] = {.lex_state = 173}, + [58] = {.lex_state = 315}, + [59] = {.lex_state = 315}, + [60] = {.lex_state = 315}, + [61] = {.lex_state = 315}, + [62] = {.lex_state = 315}, + [63] = {.lex_state = 315}, + [64] = {.lex_state = 315}, + [65] = {.lex_state = 315}, + [66] = {.lex_state = 315}, + [67] = {.lex_state = 315}, + [68] = {.lex_state = 315}, + [69] = {.lex_state = 315}, + [70] = {.lex_state = 315}, + [71] = {.lex_state = 315}, + [72] = {.lex_state = 315}, + [73] = {.lex_state = 315}, + [74] = {.lex_state = 315}, + [75] = {.lex_state = 315}, + [76] = {.lex_state = 315}, [77] = {.lex_state = 173}, - [78] = {.lex_state = 316}, - [79] = {.lex_state = 316}, - [80] = {.lex_state = 316}, - [81] = {.lex_state = 316}, - [82] = {.lex_state = 316}, - [83] = {.lex_state = 316}, - [84] = {.lex_state = 316}, - [85] = {.lex_state = 316}, - [86] = {.lex_state = 316}, - [87] = {.lex_state = 316}, - [88] = {.lex_state = 173}, - [89] = {.lex_state = 316}, - [90] = {.lex_state = 316}, - [91] = {.lex_state = 316}, - [92] = {.lex_state = 316}, - [93] = {.lex_state = 316}, - [94] = {.lex_state = 316}, - [95] = {.lex_state = 316}, + [78] = {.lex_state = 315}, + [79] = {.lex_state = 315}, + [80] = {.lex_state = 315}, + [81] = {.lex_state = 315}, + [82] = {.lex_state = 315}, + [83] = {.lex_state = 315}, + [84] = {.lex_state = 315}, + [85] = {.lex_state = 315}, + [86] = {.lex_state = 315}, + [87] = {.lex_state = 315}, + [88] = {.lex_state = 315}, + [89] = {.lex_state = 315}, + [90] = {.lex_state = 315}, + [91] = {.lex_state = 315}, + [92] = {.lex_state = 315}, + [93] = {.lex_state = 315}, + [94] = {.lex_state = 315}, + [95] = {.lex_state = 315}, [96] = {.lex_state = 170}, [97] = {.lex_state = 170}, [98] = {.lex_state = 170}, @@ -36312,21 +34677,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [103] = {.lex_state = 174}, [104] = {.lex_state = 174}, [105] = {.lex_state = 174}, - [106] = {.lex_state = 316}, - [107] = {.lex_state = 173}, - [108] = {.lex_state = 316}, - [109] = {.lex_state = 173}, - [110] = {.lex_state = 316}, - [111] = {.lex_state = 173}, - [112] = {.lex_state = 173}, - [113] = {.lex_state = 316}, - [114] = {.lex_state = 316}, - [115] = {.lex_state = 316}, + [106] = {.lex_state = 315}, + [107] = {.lex_state = 315}, + [108] = {.lex_state = 315}, + [109] = {.lex_state = 315}, + [110] = {.lex_state = 315}, + [111] = {.lex_state = 315}, + [112] = {.lex_state = 315}, + [113] = {.lex_state = 173}, + [114] = {.lex_state = 173}, + [115] = {.lex_state = 173}, [116] = {.lex_state = 173}, - [117] = {.lex_state = 316}, - [118] = {.lex_state = 316}, - [119] = {.lex_state = 316}, - [120] = {.lex_state = 316}, + [117] = {.lex_state = 315}, + [118] = {.lex_state = 173}, + [119] = {.lex_state = 315}, + [120] = {.lex_state = 315}, [121] = {.lex_state = 172}, [122] = {.lex_state = 172}, [123] = {.lex_state = 172}, @@ -36353,11 +34718,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [144] = {.lex_state = 175}, [145] = {.lex_state = 175}, [146] = {.lex_state = 164}, - [147] = {.lex_state = 164}, - [148] = {.lex_state = 163}, - [149] = {.lex_state = 165}, - [150] = {.lex_state = 316}, - [151] = {.lex_state = 316}, + [147] = {.lex_state = 163}, + [148] = {.lex_state = 164}, + [149] = {.lex_state = 315}, + [150] = {.lex_state = 315}, + [151] = {.lex_state = 165}, [152] = {.lex_state = 164}, [153] = {.lex_state = 163}, [154] = {.lex_state = 170}, @@ -36366,41 +34731,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [157] = {.lex_state = 172}, [158] = {.lex_state = 172}, [159] = {.lex_state = 172}, - [160] = {.lex_state = 176}, - [161] = {.lex_state = 172}, + [160] = {.lex_state = 172}, + [161] = {.lex_state = 176}, [162] = {.lex_state = 172}, [163] = {.lex_state = 172}, [164] = {.lex_state = 172}, [165] = {.lex_state = 172}, - [166] = {.lex_state = 172}, - [167] = {.lex_state = 176}, - [168] = {.lex_state = 172}, - [169] = {.lex_state = 172}, - [170] = {.lex_state = 176}, - [171] = {.lex_state = 172}, + [166] = {.lex_state = 176}, + [167] = {.lex_state = 170}, + [168] = {.lex_state = 176}, + [169] = {.lex_state = 176}, + [170] = {.lex_state = 172}, + [171] = {.lex_state = 170}, [172] = {.lex_state = 172}, [173] = {.lex_state = 172}, [174] = {.lex_state = 172}, [175] = {.lex_state = 172}, - [176] = {.lex_state = 176}, + [176] = {.lex_state = 172}, [177] = {.lex_state = 172}, [178] = {.lex_state = 172}, - [179] = {.lex_state = 172}, - [180] = {.lex_state = 172}, + [179] = {.lex_state = 176}, + [180] = {.lex_state = 176}, [181] = {.lex_state = 172}, [182] = {.lex_state = 172}, [183] = {.lex_state = 172}, [184] = {.lex_state = 172}, - [185] = {.lex_state = 172}, + [185] = {.lex_state = 176}, [186] = {.lex_state = 172}, [187] = {.lex_state = 172}, [188] = {.lex_state = 172}, [189] = {.lex_state = 172}, - [190] = {.lex_state = 172}, - [191] = {.lex_state = 172}, + [190] = {.lex_state = 176}, + [191] = {.lex_state = 176}, [192] = {.lex_state = 172}, [193] = {.lex_state = 172}, - [194] = {.lex_state = 172}, + [194] = {.lex_state = 176}, [195] = {.lex_state = 172}, [196] = {.lex_state = 172}, [197] = {.lex_state = 172}, @@ -36410,7 +34775,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [201] = {.lex_state = 172}, [202] = {.lex_state = 172}, [203] = {.lex_state = 172}, - [204] = {.lex_state = 172}, + [204] = {.lex_state = 176}, [205] = {.lex_state = 172}, [206] = {.lex_state = 172}, [207] = {.lex_state = 172}, @@ -36419,9 +34784,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [210] = {.lex_state = 172}, [211] = {.lex_state = 172}, [212] = {.lex_state = 172}, - [213] = {.lex_state = 172}, + [213] = {.lex_state = 176}, [214] = {.lex_state = 172}, - [215] = {.lex_state = 172}, + [215] = {.lex_state = 176}, [216] = {.lex_state = 172}, [217] = {.lex_state = 172}, [218] = {.lex_state = 172}, @@ -36431,143 +34796,143 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [222] = {.lex_state = 176}, [223] = {.lex_state = 172}, [224] = {.lex_state = 172}, - [225] = {.lex_state = 176}, - [226] = {.lex_state = 176}, + [225] = {.lex_state = 172}, + [226] = {.lex_state = 172}, [227] = {.lex_state = 172}, [228] = {.lex_state = 172}, [229] = {.lex_state = 176}, [230] = {.lex_state = 172}, [231] = {.lex_state = 172}, - [232] = {.lex_state = 176}, + [232] = {.lex_state = 172}, [233] = {.lex_state = 172}, - [234] = {.lex_state = 172}, + [234] = {.lex_state = 176}, [235] = {.lex_state = 172}, - [236] = {.lex_state = 172}, - [237] = {.lex_state = 172}, - [238] = {.lex_state = 172}, + [236] = {.lex_state = 176}, + [237] = {.lex_state = 176}, + [238] = {.lex_state = 176}, [239] = {.lex_state = 172}, [240] = {.lex_state = 172}, [241] = {.lex_state = 172}, [242] = {.lex_state = 172}, [243] = {.lex_state = 172}, [244] = {.lex_state = 172}, - [245] = {.lex_state = 172}, - [246] = {.lex_state = 172}, - [247] = {.lex_state = 176}, + [245] = {.lex_state = 176}, + [246] = {.lex_state = 176}, + [247] = {.lex_state = 172}, [248] = {.lex_state = 172}, - [249] = {.lex_state = 172}, - [250] = {.lex_state = 172}, - [251] = {.lex_state = 172}, - [252] = {.lex_state = 172}, - [253] = {.lex_state = 172}, - [254] = {.lex_state = 172}, - [255] = {.lex_state = 172}, - [256] = {.lex_state = 172}, - [257] = {.lex_state = 172}, - [258] = {.lex_state = 176}, - [259] = {.lex_state = 172}, - [260] = {.lex_state = 172}, - [261] = {.lex_state = 172}, - [262] = {.lex_state = 172}, - [263] = {.lex_state = 172}, - [264] = {.lex_state = 172}, - [265] = {.lex_state = 172}, - [266] = {.lex_state = 172}, - [267] = {.lex_state = 172}, - [268] = {.lex_state = 172}, + [249] = {.lex_state = 238}, + [250] = {.lex_state = 238}, + [251] = {.lex_state = 238}, + [252] = {.lex_state = 238}, + [253] = {.lex_state = 170}, + [254] = {.lex_state = 238}, + [255] = {.lex_state = 174}, + [256] = {.lex_state = 238}, + [257] = {.lex_state = 174}, + [258] = {.lex_state = 238}, + [259] = {.lex_state = 170}, + [260] = {.lex_state = 170}, + [261] = {.lex_state = 170}, + [262] = {.lex_state = 238}, + [263] = {.lex_state = 170}, + [264] = {.lex_state = 170}, + [265] = {.lex_state = 170}, + [266] = {.lex_state = 170}, + [267] = {.lex_state = 170}, + [268] = {.lex_state = 170}, [269] = {.lex_state = 172}, - [270] = {.lex_state = 176}, + [270] = {.lex_state = 170}, [271] = {.lex_state = 172}, - [272] = {.lex_state = 172}, + [272] = {.lex_state = 170}, [273] = {.lex_state = 170}, - [274] = {.lex_state = 172}, - [275] = {.lex_state = 172}, - [276] = {.lex_state = 172}, - [277] = {.lex_state = 176}, - [278] = {.lex_state = 172}, + [274] = {.lex_state = 170}, + [275] = {.lex_state = 170}, + [276] = {.lex_state = 174}, + [277] = {.lex_state = 174}, + [278] = {.lex_state = 170}, [279] = {.lex_state = 170}, - [280] = {.lex_state = 172}, - [281] = {.lex_state = 172}, - [282] = {.lex_state = 172}, - [283] = {.lex_state = 172}, + [280] = {.lex_state = 170}, + [281] = {.lex_state = 170}, + [282] = {.lex_state = 170}, + [283] = {.lex_state = 170}, [284] = {.lex_state = 172}, - [285] = {.lex_state = 172}, - [286] = {.lex_state = 176}, - [287] = {.lex_state = 172}, - [288] = {.lex_state = 172}, - [289] = {.lex_state = 172}, - [290] = {.lex_state = 172}, - [291] = {.lex_state = 172}, - [292] = {.lex_state = 176}, - [293] = {.lex_state = 172}, - [294] = {.lex_state = 172}, - [295] = {.lex_state = 172}, - [296] = {.lex_state = 172}, - [297] = {.lex_state = 172}, - [298] = {.lex_state = 172}, - [299] = {.lex_state = 172}, - [300] = {.lex_state = 172}, - [301] = {.lex_state = 172}, - [302] = {.lex_state = 176}, - [303] = {.lex_state = 172}, - [304] = {.lex_state = 176}, - [305] = {.lex_state = 172}, - [306] = {.lex_state = 176}, - [307] = {.lex_state = 172}, - [308] = {.lex_state = 172}, - [309] = {.lex_state = 172}, - [310] = {.lex_state = 172}, - [311] = {.lex_state = 172}, - [312] = {.lex_state = 172}, - [313] = {.lex_state = 172}, - [314] = {.lex_state = 172}, - [315] = {.lex_state = 172}, - [316] = {.lex_state = 172}, - [317] = {.lex_state = 172}, - [318] = {.lex_state = 172}, - [319] = {.lex_state = 172}, - [320] = {.lex_state = 172}, - [321] = {.lex_state = 172}, - [322] = {.lex_state = 172}, - [323] = {.lex_state = 172}, - [324] = {.lex_state = 176}, - [325] = {.lex_state = 172}, - [326] = {.lex_state = 172}, - [327] = {.lex_state = 172}, - [328] = {.lex_state = 172}, - [329] = {.lex_state = 172}, - [330] = {.lex_state = 172}, - [331] = {.lex_state = 172}, - [332] = {.lex_state = 172}, - [333] = {.lex_state = 176}, - [334] = {.lex_state = 172}, - [335] = {.lex_state = 172}, - [336] = {.lex_state = 172}, - [337] = {.lex_state = 172}, - [338] = {.lex_state = 172}, - [339] = {.lex_state = 172}, - [340] = {.lex_state = 176}, - [341] = {.lex_state = 172}, - [342] = {.lex_state = 172}, - [343] = {.lex_state = 172}, - [344] = {.lex_state = 172}, - [345] = {.lex_state = 172}, - [346] = {.lex_state = 172}, - [347] = {.lex_state = 238}, + [285] = {.lex_state = 170}, + [286] = {.lex_state = 170}, + [287] = {.lex_state = 170}, + [288] = {.lex_state = 170}, + [289] = {.lex_state = 170}, + [290] = {.lex_state = 170}, + [291] = {.lex_state = 170}, + [292] = {.lex_state = 170}, + [293] = {.lex_state = 170}, + [294] = {.lex_state = 170}, + [295] = {.lex_state = 170}, + [296] = {.lex_state = 170}, + [297] = {.lex_state = 170}, + [298] = {.lex_state = 170}, + [299] = {.lex_state = 170}, + [300] = {.lex_state = 170}, + [301] = {.lex_state = 170}, + [302] = {.lex_state = 170}, + [303] = {.lex_state = 170}, + [304] = {.lex_state = 170}, + [305] = {.lex_state = 170}, + [306] = {.lex_state = 170}, + [307] = {.lex_state = 170}, + [308] = {.lex_state = 170}, + [309] = {.lex_state = 170}, + [310] = {.lex_state = 170}, + [311] = {.lex_state = 170}, + [312] = {.lex_state = 170}, + [313] = {.lex_state = 170}, + [314] = {.lex_state = 170}, + [315] = {.lex_state = 170}, + [316] = {.lex_state = 170}, + [317] = {.lex_state = 170}, + [318] = {.lex_state = 170}, + [319] = {.lex_state = 170}, + [320] = {.lex_state = 170}, + [321] = {.lex_state = 170}, + [322] = {.lex_state = 170}, + [323] = {.lex_state = 170}, + [324] = {.lex_state = 170}, + [325] = {.lex_state = 170}, + [326] = {.lex_state = 170}, + [327] = {.lex_state = 170}, + [328] = {.lex_state = 170}, + [329] = {.lex_state = 170}, + [330] = {.lex_state = 170}, + [331] = {.lex_state = 170}, + [332] = {.lex_state = 170}, + [333] = {.lex_state = 170}, + [334] = {.lex_state = 176}, + [335] = {.lex_state = 315}, + [336] = {.lex_state = 315}, + [337] = {.lex_state = 170}, + [338] = {.lex_state = 170}, + [339] = {.lex_state = 170}, + [340] = {.lex_state = 170}, + [341] = {.lex_state = 170}, + [342] = {.lex_state = 170}, + [343] = {.lex_state = 170}, + [344] = {.lex_state = 170}, + [345] = {.lex_state = 170}, + [346] = {.lex_state = 170}, + [347] = {.lex_state = 170}, [348] = {.lex_state = 170}, - [349] = {.lex_state = 238}, - [350] = {.lex_state = 174}, - [351] = {.lex_state = 238}, - [352] = {.lex_state = 238}, - [353] = {.lex_state = 238}, - [354] = {.lex_state = 238}, + [349] = {.lex_state = 170}, + [350] = {.lex_state = 170}, + [351] = {.lex_state = 170}, + [352] = {.lex_state = 170}, + [353] = {.lex_state = 170}, + [354] = {.lex_state = 176}, [355] = {.lex_state = 170}, [356] = {.lex_state = 170}, - [357] = {.lex_state = 174}, + [357] = {.lex_state = 170}, [358] = {.lex_state = 170}, - [359] = {.lex_state = 238}, + [359] = {.lex_state = 170}, [360] = {.lex_state = 170}, - [361] = {.lex_state = 238}, + [361] = {.lex_state = 170}, [362] = {.lex_state = 170}, [363] = {.lex_state = 170}, [364] = {.lex_state = 170}, @@ -36585,1125 +34950,1125 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [376] = {.lex_state = 170}, [377] = {.lex_state = 170}, [378] = {.lex_state = 170}, - [379] = {.lex_state = 172}, + [379] = {.lex_state = 170}, [380] = {.lex_state = 170}, - [381] = {.lex_state = 174}, - [382] = {.lex_state = 172}, + [381] = {.lex_state = 170}, + [382] = {.lex_state = 170}, [383] = {.lex_state = 170}, - [384] = {.lex_state = 170}, - [385] = {.lex_state = 172}, - [386] = {.lex_state = 172}, - [387] = {.lex_state = 172}, - [388] = {.lex_state = 170}, - [389] = {.lex_state = 172}, - [390] = {.lex_state = 170}, - [391] = {.lex_state = 170}, - [392] = {.lex_state = 170}, - [393] = {.lex_state = 170}, - [394] = {.lex_state = 170}, - [395] = {.lex_state = 170}, + [384] = {.lex_state = 176}, + [385] = {.lex_state = 176}, + [386] = {.lex_state = 176}, + [387] = {.lex_state = 176}, + [388] = {.lex_state = 176}, + [389] = {.lex_state = 176}, + [390] = {.lex_state = 176}, + [391] = {.lex_state = 176}, + [392] = {.lex_state = 176}, + [393] = {.lex_state = 315}, + [394] = {.lex_state = 176}, + [395] = {.lex_state = 176}, [396] = {.lex_state = 170}, - [397] = {.lex_state = 172}, + [397] = {.lex_state = 170}, [398] = {.lex_state = 170}, [399] = {.lex_state = 170}, - [400] = {.lex_state = 172}, + [400] = {.lex_state = 170}, [401] = {.lex_state = 170}, - [402] = {.lex_state = 172}, + [402] = {.lex_state = 170}, [403] = {.lex_state = 170}, [404] = {.lex_state = 170}, - [405] = {.lex_state = 170}, + [405] = {.lex_state = 174}, [406] = {.lex_state = 170}, [407] = {.lex_state = 170}, - [408] = {.lex_state = 170}, - [409] = {.lex_state = 170}, + [408] = {.lex_state = 174}, + [409] = {.lex_state = 176}, [410] = {.lex_state = 170}, - [411] = {.lex_state = 172}, - [412] = {.lex_state = 170}, + [411] = {.lex_state = 170}, + [412] = {.lex_state = 174}, [413] = {.lex_state = 170}, - [414] = {.lex_state = 170}, - [415] = {.lex_state = 170}, - [416] = {.lex_state = 172}, - [417] = {.lex_state = 172}, - [418] = {.lex_state = 170}, - [419] = {.lex_state = 170}, - [420] = {.lex_state = 170}, - [421] = {.lex_state = 170}, - [422] = {.lex_state = 170}, - [423] = {.lex_state = 170}, - [424] = {.lex_state = 170}, - [425] = {.lex_state = 170}, - [426] = {.lex_state = 170}, - [427] = {.lex_state = 170}, - [428] = {.lex_state = 170}, - [429] = {.lex_state = 170}, - [430] = {.lex_state = 170}, - [431] = {.lex_state = 170}, - [432] = {.lex_state = 170}, - [433] = {.lex_state = 170}, - [434] = {.lex_state = 170}, - [435] = {.lex_state = 170}, - [436] = {.lex_state = 170}, - [437] = {.lex_state = 170}, - [438] = {.lex_state = 170}, - [439] = {.lex_state = 170}, - [440] = {.lex_state = 170}, - [441] = {.lex_state = 170}, + [414] = {.lex_state = 173}, + [415] = {.lex_state = 173}, + [416] = {.lex_state = 315}, + [417] = {.lex_state = 176}, + [418] = {.lex_state = 174}, + [419] = {.lex_state = 174}, + [420] = {.lex_state = 176}, + [421] = {.lex_state = 174}, + [422] = {.lex_state = 174}, + [423] = {.lex_state = 193}, + [424] = {.lex_state = 193}, + [425] = {.lex_state = 193}, + [426] = {.lex_state = 174}, + [427] = {.lex_state = 174}, + [428] = {.lex_state = 174}, + [429] = {.lex_state = 175}, + [430] = {.lex_state = 174}, + [431] = {.lex_state = 174}, + [432] = {.lex_state = 174}, + [433] = {.lex_state = 174}, + [434] = {.lex_state = 174}, + [435] = {.lex_state = 174}, + [436] = {.lex_state = 174}, + [437] = {.lex_state = 174}, + [438] = {.lex_state = 174}, + [439] = {.lex_state = 174}, + [440] = {.lex_state = 174}, + [441] = {.lex_state = 174}, [442] = {.lex_state = 174}, - [443] = {.lex_state = 170}, - [444] = {.lex_state = 170}, - [445] = {.lex_state = 170}, - [446] = {.lex_state = 170}, - [447] = {.lex_state = 170}, - [448] = {.lex_state = 170}, - [449] = {.lex_state = 170}, - [450] = {.lex_state = 170}, - [451] = {.lex_state = 170}, - [452] = {.lex_state = 170}, - [453] = {.lex_state = 170}, - [454] = {.lex_state = 170}, - [455] = {.lex_state = 170}, - [456] = {.lex_state = 170}, - [457] = {.lex_state = 172}, - [458] = {.lex_state = 170}, - [459] = {.lex_state = 170}, - [460] = {.lex_state = 170}, - [461] = {.lex_state = 170}, - [462] = {.lex_state = 172}, - [463] = {.lex_state = 172}, - [464] = {.lex_state = 170}, - [465] = {.lex_state = 170}, - [466] = {.lex_state = 170}, - [467] = {.lex_state = 170}, - [468] = {.lex_state = 170}, - [469] = {.lex_state = 170}, - [470] = {.lex_state = 170}, - [471] = {.lex_state = 170}, - [472] = {.lex_state = 170}, - [473] = {.lex_state = 170}, - [474] = {.lex_state = 170}, - [475] = {.lex_state = 170}, - [476] = {.lex_state = 170}, - [477] = {.lex_state = 170}, - [478] = {.lex_state = 170}, - [479] = {.lex_state = 170}, - [480] = {.lex_state = 170}, - [481] = {.lex_state = 170}, - [482] = {.lex_state = 170}, - [483] = {.lex_state = 170}, - [484] = {.lex_state = 170}, - [485] = {.lex_state = 170}, - [486] = {.lex_state = 170}, - [487] = {.lex_state = 170}, - [488] = {.lex_state = 170}, - [489] = {.lex_state = 170}, - [490] = {.lex_state = 170}, - [491] = {.lex_state = 170}, - [492] = {.lex_state = 170}, - [493] = {.lex_state = 170}, - [494] = {.lex_state = 170}, - [495] = {.lex_state = 172}, - [496] = {.lex_state = 172}, - [497] = {.lex_state = 172}, - [498] = {.lex_state = 170}, - [499] = {.lex_state = 170}, - [500] = {.lex_state = 170}, - [501] = {.lex_state = 170}, - [502] = {.lex_state = 170}, - [503] = {.lex_state = 170}, - [504] = {.lex_state = 170}, - [505] = {.lex_state = 170}, - [506] = {.lex_state = 170}, - [507] = {.lex_state = 170}, - [508] = {.lex_state = 170}, - [509] = {.lex_state = 170}, - [510] = {.lex_state = 170}, - [511] = {.lex_state = 172}, - [512] = {.lex_state = 172}, - [513] = {.lex_state = 170}, - [514] = {.lex_state = 170}, - [515] = {.lex_state = 172}, - [516] = {.lex_state = 170}, - [517] = {.lex_state = 170}, - [518] = {.lex_state = 170}, - [519] = {.lex_state = 170}, - [520] = {.lex_state = 170}, - [521] = {.lex_state = 170}, - [522] = {.lex_state = 170}, - [523] = {.lex_state = 170}, - [524] = {.lex_state = 170}, - [525] = {.lex_state = 170}, - [526] = {.lex_state = 170}, - [527] = {.lex_state = 170}, - [528] = {.lex_state = 176}, - [529] = {.lex_state = 170}, - [530] = {.lex_state = 170}, - [531] = {.lex_state = 170}, - [532] = {.lex_state = 170}, - [533] = {.lex_state = 170}, + [443] = {.lex_state = 173}, + [444] = {.lex_state = 176}, + [445] = {.lex_state = 193}, + [446] = {.lex_state = 193}, + [447] = {.lex_state = 172}, + [448] = {.lex_state = 193}, + [449] = {.lex_state = 193}, + [450] = {.lex_state = 315}, + [451] = {.lex_state = 193}, + [452] = {.lex_state = 174}, + [453] = {.lex_state = 238}, + [454] = {.lex_state = 174}, + [455] = {.lex_state = 174}, + [456] = {.lex_state = 174}, + [457] = {.lex_state = 193}, + [458] = {.lex_state = 174}, + [459] = {.lex_state = 174}, + [460] = {.lex_state = 174}, + [461] = {.lex_state = 174}, + [462] = {.lex_state = 174}, + [463] = {.lex_state = 193}, + [464] = {.lex_state = 174}, + [465] = {.lex_state = 173}, + [466] = {.lex_state = 174}, + [467] = {.lex_state = 174}, + [468] = {.lex_state = 174}, + [469] = {.lex_state = 174}, + [470] = {.lex_state = 174}, + [471] = {.lex_state = 174}, + [472] = {.lex_state = 174}, + [473] = {.lex_state = 174}, + [474] = {.lex_state = 174}, + [475] = {.lex_state = 175}, + [476] = {.lex_state = 174}, + [477] = {.lex_state = 174}, + [478] = {.lex_state = 174}, + [479] = {.lex_state = 174}, + [480] = {.lex_state = 174}, + [481] = {.lex_state = 174}, + [482] = {.lex_state = 174}, + [483] = {.lex_state = 174}, + [484] = {.lex_state = 174}, + [485] = {.lex_state = 174}, + [486] = {.lex_state = 174}, + [487] = {.lex_state = 174}, + [488] = {.lex_state = 174}, + [489] = {.lex_state = 315}, + [490] = {.lex_state = 174}, + [491] = {.lex_state = 174}, + [492] = {.lex_state = 174}, + [493] = {.lex_state = 174}, + [494] = {.lex_state = 174}, + [495] = {.lex_state = 174}, + [496] = {.lex_state = 174}, + [497] = {.lex_state = 174}, + [498] = {.lex_state = 174}, + [499] = {.lex_state = 174}, + [500] = {.lex_state = 174}, + [501] = {.lex_state = 174}, + [502] = {.lex_state = 174}, + [503] = {.lex_state = 174}, + [504] = {.lex_state = 174}, + [505] = {.lex_state = 174}, + [506] = {.lex_state = 174}, + [507] = {.lex_state = 173}, + [508] = {.lex_state = 173}, + [509] = {.lex_state = 174}, + [510] = {.lex_state = 315}, + [511] = {.lex_state = 174}, + [512] = {.lex_state = 173}, + [513] = {.lex_state = 174}, + [514] = {.lex_state = 174}, + [515] = {.lex_state = 174}, + [516] = {.lex_state = 174}, + [517] = {.lex_state = 174}, + [518] = {.lex_state = 174}, + [519] = {.lex_state = 174}, + [520] = {.lex_state = 173}, + [521] = {.lex_state = 174}, + [522] = {.lex_state = 174}, + [523] = {.lex_state = 174}, + [524] = {.lex_state = 174}, + [525] = {.lex_state = 174}, + [526] = {.lex_state = 174}, + [527] = {.lex_state = 174}, + [528] = {.lex_state = 174}, + [529] = {.lex_state = 174}, + [530] = {.lex_state = 174}, + [531] = {.lex_state = 174}, + [532] = {.lex_state = 174}, + [533] = {.lex_state = 174}, [534] = {.lex_state = 174}, - [535] = {.lex_state = 176}, - [536] = {.lex_state = 176}, - [537] = {.lex_state = 176}, - [538] = {.lex_state = 170}, - [539] = {.lex_state = 173}, + [535] = {.lex_state = 174}, + [536] = {.lex_state = 174}, + [537] = {.lex_state = 174}, + [538] = {.lex_state = 174}, + [539] = {.lex_state = 174}, [540] = {.lex_state = 174}, - [541] = {.lex_state = 170}, - [542] = {.lex_state = 316}, - [543] = {.lex_state = 170}, - [544] = {.lex_state = 170}, - [545] = {.lex_state = 170}, - [546] = {.lex_state = 173}, - [547] = {.lex_state = 176}, - [548] = {.lex_state = 176}, - [549] = {.lex_state = 316}, - [550] = {.lex_state = 170}, - [551] = {.lex_state = 170}, - [552] = {.lex_state = 170}, - [553] = {.lex_state = 170}, - [554] = {.lex_state = 316}, - [555] = {.lex_state = 170}, - [556] = {.lex_state = 170}, - [557] = {.lex_state = 170}, - [558] = {.lex_state = 170}, - [559] = {.lex_state = 170}, - [560] = {.lex_state = 170}, - [561] = {.lex_state = 170}, - [562] = {.lex_state = 170}, - [563] = {.lex_state = 176}, - [564] = {.lex_state = 170}, - [565] = {.lex_state = 170}, - [566] = {.lex_state = 170}, - [567] = {.lex_state = 176}, - [568] = {.lex_state = 170}, - [569] = {.lex_state = 170}, - [570] = {.lex_state = 170}, - [571] = {.lex_state = 176}, - [572] = {.lex_state = 170}, - [573] = {.lex_state = 170}, - [574] = {.lex_state = 170}, - [575] = {.lex_state = 176}, - [576] = {.lex_state = 170}, - [577] = {.lex_state = 170}, - [578] = {.lex_state = 176}, - [579] = {.lex_state = 170}, - [580] = {.lex_state = 176}, - [581] = {.lex_state = 170}, - [582] = {.lex_state = 174}, - [583] = {.lex_state = 170}, - [584] = {.lex_state = 170}, - [585] = {.lex_state = 170}, - [586] = {.lex_state = 170}, - [587] = {.lex_state = 176}, - [588] = {.lex_state = 170}, - [589] = {.lex_state = 170}, - [590] = {.lex_state = 170}, - [591] = {.lex_state = 170}, - [592] = {.lex_state = 170}, - [593] = {.lex_state = 170}, - [594] = {.lex_state = 176}, - [595] = {.lex_state = 170}, - [596] = {.lex_state = 170}, - [597] = {.lex_state = 170}, - [598] = {.lex_state = 170}, - [599] = {.lex_state = 170}, - [600] = {.lex_state = 174}, - [601] = {.lex_state = 170}, - [602] = {.lex_state = 170}, - [603] = {.lex_state = 170}, - [604] = {.lex_state = 176}, - [605] = {.lex_state = 316}, - [606] = {.lex_state = 174}, - [607] = {.lex_state = 170}, - [608] = {.lex_state = 176}, - [609] = {.lex_state = 170}, - [610] = {.lex_state = 170}, - [611] = {.lex_state = 170}, - [612] = {.lex_state = 174}, - [613] = {.lex_state = 174}, - [614] = {.lex_state = 174}, - [615] = {.lex_state = 174}, - [616] = {.lex_state = 174}, - [617] = {.lex_state = 193}, - [618] = {.lex_state = 174}, - [619] = {.lex_state = 174}, - [620] = {.lex_state = 174}, - [621] = {.lex_state = 174}, - [622] = {.lex_state = 174}, - [623] = {.lex_state = 174}, - [624] = {.lex_state = 174}, - [625] = {.lex_state = 174}, - [626] = {.lex_state = 174}, - [627] = {.lex_state = 174}, - [628] = {.lex_state = 174}, - [629] = {.lex_state = 174}, - [630] = {.lex_state = 174}, - [631] = {.lex_state = 174}, - [632] = {.lex_state = 174}, - [633] = {.lex_state = 174}, - [634] = {.lex_state = 174}, - [635] = {.lex_state = 174}, - [636] = {.lex_state = 174}, - [637] = {.lex_state = 174}, - [638] = {.lex_state = 174}, - [639] = {.lex_state = 174}, - [640] = {.lex_state = 174}, - [641] = {.lex_state = 174}, - [642] = {.lex_state = 175}, - [643] = {.lex_state = 174}, - [644] = {.lex_state = 174}, - [645] = {.lex_state = 174}, - [646] = {.lex_state = 174}, - [647] = {.lex_state = 174}, - [648] = {.lex_state = 174}, - [649] = {.lex_state = 174}, - [650] = {.lex_state = 174}, - [651] = {.lex_state = 174}, - [652] = {.lex_state = 174}, - [653] = {.lex_state = 193}, - [654] = {.lex_state = 174}, - [655] = {.lex_state = 174}, - [656] = {.lex_state = 174}, - [657] = {.lex_state = 174}, - [658] = {.lex_state = 174}, - [659] = {.lex_state = 174}, - [660] = {.lex_state = 174}, - [661] = {.lex_state = 174}, - [662] = {.lex_state = 174}, - [663] = {.lex_state = 174}, - [664] = {.lex_state = 174}, - [665] = {.lex_state = 174}, - [666] = {.lex_state = 174}, - [667] = {.lex_state = 193}, - [668] = {.lex_state = 174}, - [669] = {.lex_state = 174}, - [670] = {.lex_state = 174}, - [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}, + [541] = {.lex_state = 174}, + [542] = {.lex_state = 174}, + [543] = {.lex_state = 174}, + [544] = {.lex_state = 174}, + [545] = {.lex_state = 174}, + [546] = {.lex_state = 174}, + [547] = {.lex_state = 174}, + [548] = {.lex_state = 315}, + [549] = {.lex_state = 173}, + [550] = {.lex_state = 174}, + [551] = {.lex_state = 174}, + [552] = {.lex_state = 174}, + [553] = {.lex_state = 315}, + [554] = {.lex_state = 315}, + [555] = {.lex_state = 174}, + [556] = {.lex_state = 315}, + [557] = {.lex_state = 315}, + [558] = {.lex_state = 174}, + [559] = {.lex_state = 315}, + [560] = {.lex_state = 174}, + [561] = {.lex_state = 174}, + [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 = 174}, + [571] = {.lex_state = 315}, + [572] = {.lex_state = 174}, + [573] = {.lex_state = 174}, + [574] = {.lex_state = 315}, + [575] = {.lex_state = 174}, + [576] = {.lex_state = 174}, + [577] = {.lex_state = 315}, + [578] = {.lex_state = 174}, + [579] = {.lex_state = 315}, + [580] = {.lex_state = 174}, + [581] = {.lex_state = 315}, + [582] = {.lex_state = 173}, + [583] = {.lex_state = 315}, + [584] = {.lex_state = 315}, + [585] = {.lex_state = 315}, + [586] = {.lex_state = 315}, + [587] = {.lex_state = 315}, + [588] = {.lex_state = 315}, + [589] = {.lex_state = 315}, + [590] = {.lex_state = 315}, + [591] = {.lex_state = 315}, + [592] = {.lex_state = 315}, + [593] = {.lex_state = 315}, + [594] = {.lex_state = 315}, + [595] = {.lex_state = 315}, + [596] = {.lex_state = 315}, + [597] = {.lex_state = 315}, + [598] = {.lex_state = 315}, + [599] = {.lex_state = 315}, + [600] = {.lex_state = 315}, + [601] = {.lex_state = 193}, + [602] = {.lex_state = 315}, + [603] = {.lex_state = 315}, + [604] = {.lex_state = 315}, + [605] = {.lex_state = 315}, + [606] = {.lex_state = 315}, + [607] = {.lex_state = 315}, + [608] = {.lex_state = 315}, + [609] = {.lex_state = 315}, + [610] = {.lex_state = 315}, + [611] = {.lex_state = 173}, + [612] = {.lex_state = 315}, + [613] = {.lex_state = 315}, + [614] = {.lex_state = 315}, + [615] = {.lex_state = 315}, + [616] = {.lex_state = 315}, + [617] = {.lex_state = 315}, + [618] = {.lex_state = 315}, + [619] = {.lex_state = 315}, + [620] = {.lex_state = 315}, + [621] = {.lex_state = 315}, + [622] = {.lex_state = 315}, + [623] = {.lex_state = 315}, + [624] = {.lex_state = 315}, + [625] = {.lex_state = 315}, + [626] = {.lex_state = 315}, + [627] = {.lex_state = 315}, + [628] = {.lex_state = 315}, + [629] = {.lex_state = 315}, + [630] = {.lex_state = 315}, + [631] = {.lex_state = 315}, + [632] = {.lex_state = 315}, + [633] = {.lex_state = 315}, + [634] = {.lex_state = 315}, + [635] = {.lex_state = 315}, + [636] = {.lex_state = 315}, + [637] = {.lex_state = 315}, + [638] = {.lex_state = 315}, + [639] = {.lex_state = 315}, + [640] = {.lex_state = 173}, + [641] = {.lex_state = 315}, + [642] = {.lex_state = 315}, + [643] = {.lex_state = 315}, + [644] = {.lex_state = 173}, + [645] = {.lex_state = 315}, + [646] = {.lex_state = 315}, + [647] = {.lex_state = 315}, + [648] = {.lex_state = 315}, + [649] = {.lex_state = 173}, + [650] = {.lex_state = 315}, + [651] = {.lex_state = 315}, + [652] = {.lex_state = 315}, + [653] = {.lex_state = 315}, + [654] = {.lex_state = 315}, + [655] = {.lex_state = 315}, + [656] = {.lex_state = 315}, + [657] = {.lex_state = 315}, + [658] = {.lex_state = 315}, + [659] = {.lex_state = 315}, + [660] = {.lex_state = 315}, + [661] = {.lex_state = 315}, + [662] = {.lex_state = 315}, + [663] = {.lex_state = 173}, + [664] = {.lex_state = 315}, + [665] = {.lex_state = 315}, + [666] = {.lex_state = 315}, + [667] = {.lex_state = 315}, + [668] = {.lex_state = 315}, + [669] = {.lex_state = 315}, + [670] = {.lex_state = 173}, + [671] = {.lex_state = 173}, + [672] = {.lex_state = 173}, + [673] = {.lex_state = 173}, + [674] = {.lex_state = 173}, + [675] = {.lex_state = 173}, + [676] = {.lex_state = 173}, + [677] = {.lex_state = 173}, + [678] = {.lex_state = 315}, + [679] = {.lex_state = 173}, + [680] = {.lex_state = 173}, + [681] = {.lex_state = 173}, + [682] = {.lex_state = 173}, + [683] = {.lex_state = 173}, + [684] = {.lex_state = 173}, + [685] = {.lex_state = 173}, [686] = {.lex_state = 173}, - [687] = {.lex_state = 174}, - [688] = {.lex_state = 174}, - [689] = {.lex_state = 193}, - [690] = {.lex_state = 174}, - [691] = {.lex_state = 174}, - [692] = {.lex_state = 174}, - [693] = {.lex_state = 174}, - [694] = {.lex_state = 174}, - [695] = {.lex_state = 174}, - [696] = {.lex_state = 174}, - [697] = {.lex_state = 174}, - [698] = {.lex_state = 174}, - [699] = {.lex_state = 174}, - [700] = {.lex_state = 174}, - [701] = {.lex_state = 174}, - [702] = {.lex_state = 174}, - [703] = {.lex_state = 174}, - [704] = {.lex_state = 174}, - [705] = {.lex_state = 316}, - [706] = {.lex_state = 174}, - [707] = {.lex_state = 316}, - [708] = {.lex_state = 174}, - [709] = {.lex_state = 174}, - [710] = {.lex_state = 174}, - [711] = {.lex_state = 174}, - [712] = {.lex_state = 174}, - [713] = {.lex_state = 193}, - [714] = {.lex_state = 174}, - [715] = {.lex_state = 174}, - [716] = {.lex_state = 174}, - [717] = {.lex_state = 174}, - [718] = {.lex_state = 174}, - [719] = {.lex_state = 172}, - [720] = {.lex_state = 174}, - [721] = {.lex_state = 174}, - [722] = {.lex_state = 174}, - [723] = {.lex_state = 174}, - [724] = {.lex_state = 193}, - [725] = {.lex_state = 174}, - [726] = {.lex_state = 193}, - [727] = {.lex_state = 174}, - [728] = {.lex_state = 174}, - [729] = {.lex_state = 193}, - [730] = {.lex_state = 193}, - [731] = {.lex_state = 174}, - [732] = {.lex_state = 174}, - [733] = {.lex_state = 174}, - [734] = {.lex_state = 173}, - [735] = {.lex_state = 174}, - [736] = {.lex_state = 174}, - [737] = {.lex_state = 174}, - [738] = {.lex_state = 174}, - [739] = {.lex_state = 174}, - [740] = {.lex_state = 174}, - [741] = {.lex_state = 174}, - [742] = {.lex_state = 174}, - [743] = {.lex_state = 174}, - [744] = {.lex_state = 174}, - [745] = {.lex_state = 174}, - [746] = {.lex_state = 174}, - [747] = {.lex_state = 238}, - [748] = {.lex_state = 175}, - [749] = {.lex_state = 174}, - [750] = {.lex_state = 174}, - [751] = {.lex_state = 174}, - [752] = {.lex_state = 193}, - [753] = {.lex_state = 174}, - [754] = {.lex_state = 174}, - [755] = {.lex_state = 174}, - [756] = {.lex_state = 174}, - [757] = {.lex_state = 174}, - [758] = {.lex_state = 174}, - [759] = {.lex_state = 174}, - [760] = {.lex_state = 174}, - [761] = {.lex_state = 174}, - [762] = {.lex_state = 174}, - [763] = {.lex_state = 174}, - [764] = {.lex_state = 176}, - [765] = {.lex_state = 174}, - [766] = {.lex_state = 174}, - [767] = {.lex_state = 174}, - [768] = {.lex_state = 174}, - [769] = {.lex_state = 174}, - [770] = {.lex_state = 316}, - [771] = {.lex_state = 174}, - [772] = {.lex_state = 174}, - [773] = {.lex_state = 174}, - [774] = {.lex_state = 174}, - [775] = {.lex_state = 174}, - [776] = {.lex_state = 316}, - [777] = {.lex_state = 174}, - [778] = {.lex_state = 174}, - [779] = {.lex_state = 316}, - [780] = {.lex_state = 174}, - [781] = {.lex_state = 174}, - [782] = {.lex_state = 174}, - [783] = {.lex_state = 174}, - [784] = {.lex_state = 316}, - [785] = {.lex_state = 174}, - [786] = {.lex_state = 174}, - [787] = {.lex_state = 174}, - [788] = {.lex_state = 174}, - [789] = {.lex_state = 174}, - [790] = {.lex_state = 174}, - [791] = {.lex_state = 174}, - [792] = {.lex_state = 174}, - [793] = {.lex_state = 174}, - [794] = {.lex_state = 174}, + [687] = {.lex_state = 173}, + [688] = {.lex_state = 173}, + [689] = {.lex_state = 173}, + [690] = {.lex_state = 173}, + [691] = {.lex_state = 173}, + [692] = {.lex_state = 173}, + [693] = {.lex_state = 173}, + [694] = {.lex_state = 173}, + [695] = {.lex_state = 173}, + [696] = {.lex_state = 173}, + [697] = {.lex_state = 173}, + [698] = {.lex_state = 173}, + [699] = {.lex_state = 173}, + [700] = {.lex_state = 173}, + [701] = {.lex_state = 173}, + [702] = {.lex_state = 173}, + [703] = {.lex_state = 173}, + [704] = {.lex_state = 173}, + [705] = {.lex_state = 173}, + [706] = {.lex_state = 173}, + [707] = {.lex_state = 173}, + [708] = {.lex_state = 173}, + [709] = {.lex_state = 173}, + [710] = {.lex_state = 173}, + [711] = {.lex_state = 173}, + [712] = {.lex_state = 173}, + [713] = {.lex_state = 315}, + [714] = {.lex_state = 315}, + [715] = {.lex_state = 173}, + [716] = {.lex_state = 315}, + [717] = {.lex_state = 315}, + [718] = {.lex_state = 315}, + [719] = {.lex_state = 315}, + [720] = {.lex_state = 315}, + [721] = {.lex_state = 315}, + [722] = {.lex_state = 315}, + [723] = {.lex_state = 315}, + [724] = {.lex_state = 315}, + [725] = {.lex_state = 315}, + [726] = {.lex_state = 173}, + [727] = {.lex_state = 315}, + [728] = {.lex_state = 315}, + [729] = {.lex_state = 315}, + [730] = {.lex_state = 315}, + [731] = {.lex_state = 315}, + [732] = {.lex_state = 315}, + [733] = {.lex_state = 315}, + [734] = {.lex_state = 315}, + [735] = {.lex_state = 315}, + [736] = {.lex_state = 173}, + [737] = {.lex_state = 173}, + [738] = {.lex_state = 315}, + [739] = {.lex_state = 173}, + [740] = {.lex_state = 315}, + [741] = {.lex_state = 173}, + [742] = {.lex_state = 173}, + [743] = {.lex_state = 173}, + [744] = {.lex_state = 173}, + [745] = {.lex_state = 173}, + [746] = {.lex_state = 315}, + [747] = {.lex_state = 315}, + [748] = {.lex_state = 315}, + [749] = {.lex_state = 173}, + [750] = {.lex_state = 315}, + [751] = {.lex_state = 315}, + [752] = {.lex_state = 315}, + [753] = {.lex_state = 315}, + [754] = {.lex_state = 173}, + [755] = {.lex_state = 173}, + [756] = {.lex_state = 173}, + [757] = {.lex_state = 173}, + [758] = {.lex_state = 173}, + [759] = {.lex_state = 315}, + [760] = {.lex_state = 315}, + [761] = {.lex_state = 315}, + [762] = {.lex_state = 315}, + [763] = {.lex_state = 315}, + [764] = {.lex_state = 315}, + [765] = {.lex_state = 315}, + [766] = {.lex_state = 315}, + [767] = {.lex_state = 315}, + [768] = {.lex_state = 315}, + [769] = {.lex_state = 315}, + [770] = {.lex_state = 315}, + [771] = {.lex_state = 315}, + [772] = {.lex_state = 315}, + [773] = {.lex_state = 315}, + [774] = {.lex_state = 315}, + [775] = {.lex_state = 315}, + [776] = {.lex_state = 315}, + [777] = {.lex_state = 315}, + [778] = {.lex_state = 173}, + [779] = {.lex_state = 173}, + [780] = {.lex_state = 315}, + [781] = {.lex_state = 173}, + [782] = {.lex_state = 173}, + [783] = {.lex_state = 315}, + [784] = {.lex_state = 315}, + [785] = {.lex_state = 315}, + [786] = {.lex_state = 315}, + [787] = {.lex_state = 173}, + [788] = {.lex_state = 173}, + [789] = {.lex_state = 315}, + [790] = {.lex_state = 173}, + [791] = {.lex_state = 173}, + [792] = {.lex_state = 173}, + [793] = {.lex_state = 173}, + [794] = {.lex_state = 173}, [795] = {.lex_state = 173}, - [796] = {.lex_state = 174}, - [797] = {.lex_state = 316}, - [798] = {.lex_state = 174}, - [799] = {.lex_state = 174}, - [800] = {.lex_state = 174}, - [801] = {.lex_state = 174}, - [802] = {.lex_state = 174}, - [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 = 316}, - [810] = {.lex_state = 174}, - [811] = {.lex_state = 173}, - [812] = {.lex_state = 174}, - [813] = {.lex_state = 174}, - [814] = {.lex_state = 174}, - [815] = {.lex_state = 316}, - [816] = {.lex_state = 174}, - [817] = {.lex_state = 174}, - [818] = {.lex_state = 174}, + [796] = {.lex_state = 173}, + [797] = {.lex_state = 173}, + [798] = {.lex_state = 173}, + [799] = {.lex_state = 315}, + [800] = {.lex_state = 173}, + [801] = {.lex_state = 315}, + [802] = {.lex_state = 173}, + [803] = {.lex_state = 315}, + [804] = {.lex_state = 315}, + [805] = {.lex_state = 173}, + [806] = {.lex_state = 315}, + [807] = {.lex_state = 315}, + [808] = {.lex_state = 315}, + [809] = {.lex_state = 173}, + [810] = {.lex_state = 315}, + [811] = {.lex_state = 315}, + [812] = {.lex_state = 173}, + [813] = {.lex_state = 173}, + [814] = {.lex_state = 173}, + [815] = {.lex_state = 173}, + [816] = {.lex_state = 315}, + [817] = {.lex_state = 315}, + [818] = {.lex_state = 173}, [819] = {.lex_state = 173}, - [820] = {.lex_state = 316}, - [821] = {.lex_state = 174}, - [822] = {.lex_state = 174}, - [823] = {.lex_state = 174}, - [824] = {.lex_state = 174}, - [825] = {.lex_state = 174}, - [826] = {.lex_state = 174}, - [827] = {.lex_state = 174}, + [820] = {.lex_state = 173}, + [821] = {.lex_state = 173}, + [822] = {.lex_state = 315}, + [823] = {.lex_state = 173}, + [824] = {.lex_state = 173}, + [825] = {.lex_state = 315}, + [826] = {.lex_state = 173}, + [827] = {.lex_state = 173}, [828] = {.lex_state = 173}, - [829] = {.lex_state = 174}, - [830] = {.lex_state = 174}, - [831] = {.lex_state = 174}, - [832] = {.lex_state = 174}, - [833] = {.lex_state = 174}, - [834] = {.lex_state = 174}, - [835] = {.lex_state = 316}, - [836] = {.lex_state = 174}, - [837] = {.lex_state = 316}, - [838] = {.lex_state = 174}, + [829] = {.lex_state = 173}, + [830] = {.lex_state = 173}, + [831] = {.lex_state = 315}, + [832] = {.lex_state = 173}, + [833] = {.lex_state = 173}, + [834] = {.lex_state = 315}, + [835] = {.lex_state = 315}, + [836] = {.lex_state = 173}, + [837] = {.lex_state = 315}, + [838] = {.lex_state = 315}, [839] = {.lex_state = 173}, - [840] = {.lex_state = 174}, - [841] = {.lex_state = 174}, - [842] = {.lex_state = 174}, - [843] = {.lex_state = 174}, - [844] = {.lex_state = 174}, - [845] = {.lex_state = 316}, - [846] = {.lex_state = 174}, - [847] = {.lex_state = 316}, - [848] = {.lex_state = 173}, - [849] = {.lex_state = 316}, - [850] = {.lex_state = 316}, - [851] = {.lex_state = 316}, - [852] = {.lex_state = 316}, - [853] = {.lex_state = 316}, - [854] = {.lex_state = 316}, - [855] = {.lex_state = 316}, - [856] = {.lex_state = 316}, - [857] = {.lex_state = 316}, - [858] = {.lex_state = 316}, - [859] = {.lex_state = 316}, - [860] = {.lex_state = 316}, - [861] = {.lex_state = 316}, - [862] = {.lex_state = 316}, - [863] = {.lex_state = 316}, - [864] = {.lex_state = 316}, - [865] = {.lex_state = 316}, - [866] = {.lex_state = 316}, - [867] = {.lex_state = 316}, - [868] = {.lex_state = 316}, - [869] = {.lex_state = 316}, - [870] = {.lex_state = 316}, - [871] = {.lex_state = 316}, - [872] = {.lex_state = 316}, - [873] = {.lex_state = 316}, - [874] = {.lex_state = 316}, - [875] = {.lex_state = 316}, - [876] = {.lex_state = 316}, - [877] = {.lex_state = 316}, - [878] = {.lex_state = 316}, + [840] = {.lex_state = 173}, + [841] = {.lex_state = 315}, + [842] = {.lex_state = 315}, + [843] = {.lex_state = 173}, + [844] = {.lex_state = 315}, + [845] = {.lex_state = 315}, + [846] = {.lex_state = 173}, + [847] = {.lex_state = 315}, + [848] = {.lex_state = 315}, + [849] = {.lex_state = 315}, + [850] = {.lex_state = 173}, + [851] = {.lex_state = 315}, + [852] = {.lex_state = 315}, + [853] = {.lex_state = 315}, + [854] = {.lex_state = 315}, + [855] = {.lex_state = 315}, + [856] = {.lex_state = 315}, + [857] = {.lex_state = 173}, + [858] = {.lex_state = 315}, + [859] = {.lex_state = 315}, + [860] = {.lex_state = 315}, + [861] = {.lex_state = 173}, + [862] = {.lex_state = 315}, + [863] = {.lex_state = 173}, + [864] = {.lex_state = 173}, + [865] = {.lex_state = 173}, + [866] = {.lex_state = 173}, + [867] = {.lex_state = 173}, + [868] = {.lex_state = 315}, + [869] = {.lex_state = 315}, + [870] = {.lex_state = 173}, + [871] = {.lex_state = 173}, + [872] = {.lex_state = 315}, + [873] = {.lex_state = 173}, + [874] = {.lex_state = 315}, + [875] = {.lex_state = 315}, + [876] = {.lex_state = 315}, + [877] = {.lex_state = 315}, + [878] = {.lex_state = 315}, [879] = {.lex_state = 173}, - [880] = {.lex_state = 316}, - [881] = {.lex_state = 316}, - [882] = {.lex_state = 316}, - [883] = {.lex_state = 316}, + [880] = {.lex_state = 173}, + [881] = {.lex_state = 315}, + [882] = {.lex_state = 173}, + [883] = {.lex_state = 315}, [884] = {.lex_state = 173}, - [885] = {.lex_state = 316}, - [886] = {.lex_state = 173}, - [887] = {.lex_state = 173}, - [888] = {.lex_state = 316}, + [885] = {.lex_state = 173}, + [886] = {.lex_state = 315}, + [887] = {.lex_state = 315}, + [888] = {.lex_state = 315}, [889] = {.lex_state = 173}, - [890] = {.lex_state = 316}, - [891] = {.lex_state = 316}, - [892] = {.lex_state = 173}, - [893] = {.lex_state = 316}, - [894] = {.lex_state = 316}, - [895] = {.lex_state = 316}, - [896] = {.lex_state = 316}, - [897] = {.lex_state = 316}, - [898] = {.lex_state = 316}, - [899] = {.lex_state = 316}, - [900] = {.lex_state = 173}, - [901] = {.lex_state = 316}, - [902] = {.lex_state = 316}, - [903] = {.lex_state = 173}, - [904] = {.lex_state = 316}, - [905] = {.lex_state = 316}, - [906] = {.lex_state = 316}, - [907] = {.lex_state = 316}, - [908] = {.lex_state = 173}, - [909] = {.lex_state = 173}, - [910] = {.lex_state = 316}, - [911] = {.lex_state = 173}, - [912] = {.lex_state = 316}, - [913] = {.lex_state = 316}, - [914] = {.lex_state = 316}, - [915] = {.lex_state = 316}, - [916] = {.lex_state = 316}, - [917] = {.lex_state = 173}, - [918] = {.lex_state = 316}, - [919] = {.lex_state = 316}, - [920] = {.lex_state = 316}, - [921] = {.lex_state = 316}, - [922] = {.lex_state = 316}, - [923] = {.lex_state = 316}, - [924] = {.lex_state = 316}, - [925] = {.lex_state = 316}, - [926] = {.lex_state = 316}, - [927] = {.lex_state = 173}, - [928] = {.lex_state = 173}, - [929] = {.lex_state = 316}, - [930] = {.lex_state = 316}, - [931] = {.lex_state = 316}, - [932] = {.lex_state = 316}, - [933] = {.lex_state = 316}, - [934] = {.lex_state = 316}, - [935] = {.lex_state = 316}, - [936] = {.lex_state = 316}, - [937] = {.lex_state = 316}, - [938] = {.lex_state = 316}, - [939] = {.lex_state = 316}, - [940] = {.lex_state = 316}, - [941] = {.lex_state = 173}, - [942] = {.lex_state = 173}, - [943] = {.lex_state = 316}, - [944] = {.lex_state = 316}, - [945] = {.lex_state = 316}, - [946] = {.lex_state = 173}, - [947] = {.lex_state = 316}, - [948] = {.lex_state = 316}, - [949] = {.lex_state = 316}, - [950] = {.lex_state = 316}, - [951] = {.lex_state = 316}, - [952] = {.lex_state = 316}, - [953] = {.lex_state = 316}, - [954] = {.lex_state = 316}, - [955] = {.lex_state = 316}, - [956] = {.lex_state = 316}, - [957] = {.lex_state = 173}, - [958] = {.lex_state = 316}, - [959] = {.lex_state = 316}, - [960] = {.lex_state = 316}, - [961] = {.lex_state = 316}, - [962] = {.lex_state = 316}, - [963] = {.lex_state = 316}, - [964] = {.lex_state = 316}, - [965] = {.lex_state = 316}, - [966] = {.lex_state = 316}, - [967] = {.lex_state = 173}, - [968] = {.lex_state = 173}, - [969] = {.lex_state = 316}, - [970] = {.lex_state = 316}, - [971] = {.lex_state = 316}, - [972] = {.lex_state = 316}, - [973] = {.lex_state = 316}, - [974] = {.lex_state = 316}, - [975] = {.lex_state = 316}, - [976] = {.lex_state = 316}, - [977] = {.lex_state = 316}, - [978] = {.lex_state = 316}, - [979] = {.lex_state = 316}, - [980] = {.lex_state = 316}, - [981] = {.lex_state = 316}, - [982] = {.lex_state = 316}, - [983] = {.lex_state = 316}, - [984] = {.lex_state = 316}, - [985] = {.lex_state = 316}, - [986] = {.lex_state = 316}, - [987] = {.lex_state = 316}, - [988] = {.lex_state = 316}, - [989] = {.lex_state = 316}, - [990] = {.lex_state = 316}, - [991] = {.lex_state = 173}, - [992] = {.lex_state = 316}, - [993] = {.lex_state = 173}, - [994] = {.lex_state = 316}, - [995] = {.lex_state = 316}, - [996] = {.lex_state = 173}, - [997] = {.lex_state = 173}, - [998] = {.lex_state = 173}, - [999] = {.lex_state = 173}, - [1000] = {.lex_state = 173}, - [1001] = {.lex_state = 316}, - [1002] = {.lex_state = 173}, - [1003] = {.lex_state = 316}, - [1004] = {.lex_state = 316}, - [1005] = {.lex_state = 316}, - [1006] = {.lex_state = 173}, - [1007] = {.lex_state = 316}, - [1008] = {.lex_state = 316}, - [1009] = {.lex_state = 316}, - [1010] = {.lex_state = 316}, - [1011] = {.lex_state = 316}, - [1012] = {.lex_state = 316}, - [1013] = {.lex_state = 316}, - [1014] = {.lex_state = 316}, - [1015] = {.lex_state = 316}, - [1016] = {.lex_state = 173}, - [1017] = {.lex_state = 316}, - [1018] = {.lex_state = 316}, - [1019] = {.lex_state = 316}, - [1020] = {.lex_state = 316}, - [1021] = {.lex_state = 316}, - [1022] = {.lex_state = 316}, - [1023] = {.lex_state = 316}, - [1024] = {.lex_state = 316}, - [1025] = {.lex_state = 316}, - [1026] = {.lex_state = 316}, - [1027] = {.lex_state = 316}, - [1028] = {.lex_state = 316}, - [1029] = {.lex_state = 173}, - [1030] = {.lex_state = 316}, - [1031] = {.lex_state = 316}, - [1032] = {.lex_state = 316}, - [1033] = {.lex_state = 173}, - [1034] = {.lex_state = 173}, - [1035] = {.lex_state = 173}, - [1036] = {.lex_state = 173}, - [1037] = {.lex_state = 316}, - [1038] = {.lex_state = 316}, - [1039] = {.lex_state = 316}, - [1040] = {.lex_state = 173}, - [1041] = {.lex_state = 316}, - [1042] = {.lex_state = 316}, - [1043] = {.lex_state = 316}, - [1044] = {.lex_state = 173}, - [1045] = {.lex_state = 173}, - [1046] = {.lex_state = 173}, - [1047] = {.lex_state = 316}, - [1048] = {.lex_state = 316}, - [1049] = {.lex_state = 173}, - [1050] = {.lex_state = 173}, - [1051] = {.lex_state = 316}, - [1052] = {.lex_state = 173}, - [1053] = {.lex_state = 173}, - [1054] = {.lex_state = 173}, - [1055] = {.lex_state = 173}, - [1056] = {.lex_state = 316}, - [1057] = {.lex_state = 173}, - [1058] = {.lex_state = 173}, - [1059] = {.lex_state = 316}, - [1060] = {.lex_state = 316}, - [1061] = {.lex_state = 316}, - [1062] = {.lex_state = 173}, - [1063] = {.lex_state = 173}, - [1064] = {.lex_state = 173}, - [1065] = {.lex_state = 173}, - [1066] = {.lex_state = 173}, - [1067] = {.lex_state = 173}, - [1068] = {.lex_state = 173}, - [1069] = {.lex_state = 173}, - [1070] = {.lex_state = 316}, - [1071] = {.lex_state = 173}, - [1072] = {.lex_state = 316}, - [1073] = {.lex_state = 316}, - [1074] = {.lex_state = 316}, - [1075] = {.lex_state = 316}, - [1076] = {.lex_state = 316}, - [1077] = {.lex_state = 316}, - [1078] = {.lex_state = 316}, - [1079] = {.lex_state = 316}, - [1080] = {.lex_state = 316}, - [1081] = {.lex_state = 316}, - [1082] = {.lex_state = 316}, - [1083] = {.lex_state = 316}, - [1084] = {.lex_state = 173}, - [1085] = {.lex_state = 173}, - [1086] = {.lex_state = 173}, - [1087] = {.lex_state = 316}, - [1088] = {.lex_state = 173}, - [1089] = {.lex_state = 316}, - [1090] = {.lex_state = 316}, - [1091] = {.lex_state = 316}, - [1092] = {.lex_state = 316}, - [1093] = {.lex_state = 316}, - [1094] = {.lex_state = 316}, - [1095] = {.lex_state = 316}, - [1096] = {.lex_state = 316}, - [1097] = {.lex_state = 316}, - [1098] = {.lex_state = 316}, - [1099] = {.lex_state = 316}, - [1100] = {.lex_state = 173}, - [1101] = {.lex_state = 316}, - [1102] = {.lex_state = 316}, - [1103] = {.lex_state = 316}, - [1104] = {.lex_state = 316}, - [1105] = {.lex_state = 173}, - [1106] = {.lex_state = 316}, - [1107] = {.lex_state = 316}, - [1108] = {.lex_state = 316}, - [1109] = {.lex_state = 173}, - [1110] = {.lex_state = 173}, - [1111] = {.lex_state = 173}, - [1112] = {.lex_state = 173}, - [1113] = {.lex_state = 173}, - [1114] = {.lex_state = 173}, - [1115] = {.lex_state = 316}, - [1116] = {.lex_state = 173}, - [1117] = {.lex_state = 173}, - [1118] = {.lex_state = 316}, - [1119] = {.lex_state = 173}, - [1120] = {.lex_state = 173}, - [1121] = {.lex_state = 316}, - [1122] = {.lex_state = 316}, - [1123] = {.lex_state = 316}, - [1124] = {.lex_state = 316}, - [1125] = {.lex_state = 316}, - [1126] = {.lex_state = 316}, - [1127] = {.lex_state = 173}, - [1128] = {.lex_state = 316}, - [1129] = {.lex_state = 316}, - [1130] = {.lex_state = 193}, - [1131] = {.lex_state = 316}, - [1132] = {.lex_state = 173}, - [1133] = {.lex_state = 173}, - [1134] = {.lex_state = 173}, - [1135] = {.lex_state = 173}, - [1136] = {.lex_state = 316}, - [1137] = {.lex_state = 316}, - [1138] = {.lex_state = 316}, - [1139] = {.lex_state = 173}, - [1140] = {.lex_state = 316}, - [1141] = {.lex_state = 316}, - [1142] = {.lex_state = 316}, - [1143] = {.lex_state = 173}, - [1144] = {.lex_state = 316}, - [1145] = {.lex_state = 316}, - [1146] = {.lex_state = 316}, - [1147] = {.lex_state = 316}, - [1148] = {.lex_state = 316}, - [1149] = {.lex_state = 173}, - [1150] = {.lex_state = 173}, - [1151] = {.lex_state = 173}, - [1152] = {.lex_state = 316}, - [1153] = {.lex_state = 316}, - [1154] = {.lex_state = 316}, - [1155] = {.lex_state = 316}, - [1156] = {.lex_state = 316}, - [1157] = {.lex_state = 316}, - [1158] = {.lex_state = 316}, - [1159] = {.lex_state = 316}, - [1160] = {.lex_state = 173}, - [1161] = {.lex_state = 173}, - [1162] = {.lex_state = 173}, - [1163] = {.lex_state = 316}, - [1164] = {.lex_state = 173}, - [1165] = {.lex_state = 316}, - [1166] = {.lex_state = 173}, - [1167] = {.lex_state = 173}, - [1168] = {.lex_state = 316}, - [1169] = {.lex_state = 316}, - [1170] = {.lex_state = 173}, - [1171] = {.lex_state = 173}, - [1172] = {.lex_state = 173}, - [1173] = {.lex_state = 316}, - [1174] = {.lex_state = 316}, - [1175] = {.lex_state = 173}, - [1176] = {.lex_state = 173}, - [1177] = {.lex_state = 173}, - [1178] = {.lex_state = 316}, - [1179] = {.lex_state = 316}, - [1180] = {.lex_state = 173}, - [1181] = {.lex_state = 316}, - [1182] = {.lex_state = 316}, - [1183] = {.lex_state = 316}, - [1184] = {.lex_state = 173}, - [1185] = {.lex_state = 316}, - [1186] = {.lex_state = 316}, - [1187] = {.lex_state = 316}, - [1188] = {.lex_state = 316}, - [1189] = {.lex_state = 316}, - [1190] = {.lex_state = 316}, - [1191] = {.lex_state = 316}, - [1192] = {.lex_state = 173}, - [1193] = {.lex_state = 316}, - [1194] = {.lex_state = 173}, - [1195] = {.lex_state = 173}, - [1196] = {.lex_state = 316}, - [1197] = {.lex_state = 173}, - [1198] = {.lex_state = 316}, - [1199] = {.lex_state = 173}, - [1200] = {.lex_state = 316}, - [1201] = {.lex_state = 316}, - [1202] = {.lex_state = 173}, - [1203] = {.lex_state = 173}, - [1204] = {.lex_state = 173}, - [1205] = {.lex_state = 173}, - [1206] = {.lex_state = 173}, - [1207] = {.lex_state = 316}, - [1208] = {.lex_state = 316}, - [1209] = {.lex_state = 316}, - [1210] = {.lex_state = 316}, - [1211] = {.lex_state = 316}, - [1212] = {.lex_state = 173}, - [1213] = {.lex_state = 316}, - [1214] = {.lex_state = 316}, - [1215] = {.lex_state = 316}, - [1216] = {.lex_state = 316}, - [1217] = {.lex_state = 316}, - [1218] = {.lex_state = 173}, - [1219] = {.lex_state = 316}, - [1220] = {.lex_state = 316}, - [1221] = {.lex_state = 173}, - [1222] = {.lex_state = 173}, - [1223] = {.lex_state = 173}, - [1224] = {.lex_state = 316}, - [1225] = {.lex_state = 173}, - [1226] = {.lex_state = 173}, - [1227] = {.lex_state = 173}, - [1228] = {.lex_state = 173}, - [1229] = {.lex_state = 173}, - [1230] = {.lex_state = 173}, - [1231] = {.lex_state = 173}, - [1232] = {.lex_state = 316}, - [1233] = {.lex_state = 173}, - [1234] = {.lex_state = 316}, - [1235] = {.lex_state = 173}, - [1236] = {.lex_state = 173}, - [1237] = {.lex_state = 316}, - [1238] = {.lex_state = 316}, - [1239] = {.lex_state = 173}, - [1240] = {.lex_state = 173}, - [1241] = {.lex_state = 173}, - [1242] = {.lex_state = 173}, - [1243] = {.lex_state = 316}, - [1244] = {.lex_state = 173}, - [1245] = {.lex_state = 316}, - [1246] = {.lex_state = 316}, - [1247] = {.lex_state = 316}, - [1248] = {.lex_state = 316}, - [1249] = {.lex_state = 173}, - [1250] = {.lex_state = 316}, - [1251] = {.lex_state = 316}, - [1252] = {.lex_state = 173}, - [1253] = {.lex_state = 316}, - [1254] = {.lex_state = 316}, - [1255] = {.lex_state = 173}, - [1256] = {.lex_state = 173}, - [1257] = {.lex_state = 173}, - [1258] = {.lex_state = 173}, - [1259] = {.lex_state = 173}, - [1260] = {.lex_state = 173}, - [1261] = {.lex_state = 173}, - [1262] = {.lex_state = 173}, - [1263] = {.lex_state = 173}, - [1264] = {.lex_state = 173}, - [1265] = {.lex_state = 173}, - [1266] = {.lex_state = 316}, - [1267] = {.lex_state = 316}, - [1268] = {.lex_state = 316}, - [1269] = {.lex_state = 173}, - [1270] = {.lex_state = 173}, - [1271] = {.lex_state = 173}, - [1272] = {.lex_state = 173}, - [1273] = {.lex_state = 173}, - [1274] = {.lex_state = 173}, - [1275] = {.lex_state = 173}, - [1276] = {.lex_state = 173}, - [1277] = {.lex_state = 173}, - [1278] = {.lex_state = 316}, - [1279] = {.lex_state = 316}, - [1280] = {.lex_state = 316}, - [1281] = {.lex_state = 316}, - [1282] = {.lex_state = 316}, - [1283] = {.lex_state = 316}, - [1284] = {.lex_state = 316}, - [1285] = {.lex_state = 173}, - [1286] = {.lex_state = 316}, - [1287] = {.lex_state = 173}, - [1288] = {.lex_state = 173}, - [1289] = {.lex_state = 173}, - [1290] = {.lex_state = 173}, - [1291] = {.lex_state = 173}, - [1292] = {.lex_state = 316}, - [1293] = {.lex_state = 173}, - [1294] = {.lex_state = 173}, - [1295] = {.lex_state = 173}, - [1296] = {.lex_state = 173}, - [1297] = {.lex_state = 173}, - [1298] = {.lex_state = 173}, - [1299] = {.lex_state = 173}, - [1300] = {.lex_state = 316}, - [1301] = {.lex_state = 316}, - [1302] = {.lex_state = 173}, - [1303] = {.lex_state = 173}, - [1304] = {.lex_state = 173}, - [1305] = {.lex_state = 173}, - [1306] = {.lex_state = 173}, - [1307] = {.lex_state = 173}, - [1308] = {.lex_state = 316}, - [1309] = {.lex_state = 173}, - [1310] = {.lex_state = 173}, - [1311] = {.lex_state = 316}, - [1312] = {.lex_state = 173}, - [1313] = {.lex_state = 173}, - [1314] = {.lex_state = 173}, - [1315] = {.lex_state = 316}, - [1316] = {.lex_state = 173}, - [1317] = {.lex_state = 173}, - [1318] = {.lex_state = 173}, - [1319] = {.lex_state = 173}, - [1320] = {.lex_state = 173}, - [1321] = {.lex_state = 173}, - [1322] = {.lex_state = 173}, - [1323] = {.lex_state = 316}, - [1324] = {.lex_state = 173}, - [1325] = {.lex_state = 316}, - [1326] = {.lex_state = 316}, - [1327] = {.lex_state = 173}, - [1328] = {.lex_state = 173}, - [1329] = {.lex_state = 316}, - [1330] = {.lex_state = 316}, - [1331] = {.lex_state = 173}, - [1332] = {.lex_state = 316}, - [1333] = {.lex_state = 316}, - [1334] = {.lex_state = 173}, - [1335] = {.lex_state = 173}, - [1336] = {.lex_state = 316}, - [1337] = {.lex_state = 173}, - [1338] = {.lex_state = 316}, - [1339] = {.lex_state = 316}, - [1340] = {.lex_state = 173}, - [1341] = {.lex_state = 316}, - [1342] = {.lex_state = 173}, - [1343] = {.lex_state = 173}, - [1344] = {.lex_state = 316}, - [1345] = {.lex_state = 173}, - [1346] = {.lex_state = 173}, - [1347] = {.lex_state = 316}, - [1348] = {.lex_state = 316}, - [1349] = {.lex_state = 173}, - [1350] = {.lex_state = 316}, - [1351] = {.lex_state = 316}, - [1352] = {.lex_state = 173}, - [1353] = {.lex_state = 316}, - [1354] = {.lex_state = 316}, - [1355] = {.lex_state = 173}, - [1356] = {.lex_state = 316}, - [1357] = {.lex_state = 316}, - [1358] = {.lex_state = 173}, - [1359] = {.lex_state = 173}, - [1360] = {.lex_state = 316}, - [1361] = {.lex_state = 316}, - [1362] = {.lex_state = 316}, - [1363] = {.lex_state = 316}, - [1364] = {.lex_state = 316}, - [1365] = {.lex_state = 173}, - [1366] = {.lex_state = 316}, - [1367] = {.lex_state = 316}, - [1368] = {.lex_state = 316}, - [1369] = {.lex_state = 173}, - [1370] = {.lex_state = 316}, - [1371] = {.lex_state = 316}, - [1372] = {.lex_state = 316}, - [1373] = {.lex_state = 316}, - [1374] = {.lex_state = 173}, - [1375] = {.lex_state = 316}, - [1376] = {.lex_state = 316}, - [1377] = {.lex_state = 316}, - [1378] = {.lex_state = 316}, - [1379] = {.lex_state = 316}, - [1380] = {.lex_state = 316}, - [1381] = {.lex_state = 316}, - [1382] = {.lex_state = 316}, - [1383] = {.lex_state = 316}, - [1384] = {.lex_state = 316}, - [1385] = {.lex_state = 316}, - [1386] = {.lex_state = 316}, - [1387] = {.lex_state = 237}, - [1388] = {.lex_state = 239}, - [1389] = {.lex_state = 316}, - [1390] = {.lex_state = 316}, - [1391] = {.lex_state = 237}, - [1392] = {.lex_state = 237}, - [1393] = {.lex_state = 316}, - [1394] = {.lex_state = 316}, - [1395] = {.lex_state = 316}, - [1396] = {.lex_state = 237}, - [1397] = {.lex_state = 316}, - [1398] = {.lex_state = 316}, - [1399] = {.lex_state = 237}, - [1400] = {.lex_state = 316}, - [1401] = {.lex_state = 239}, - [1402] = {.lex_state = 316}, - [1403] = {.lex_state = 316}, - [1404] = {.lex_state = 316}, - [1405] = {.lex_state = 316}, - [1406] = {.lex_state = 316}, - [1407] = {.lex_state = 316}, - [1408] = {.lex_state = 237}, - [1409] = {.lex_state = 316}, - [1410] = {.lex_state = 316}, - [1411] = {.lex_state = 316}, - [1412] = {.lex_state = 237}, - [1413] = {.lex_state = 237}, - [1414] = {.lex_state = 316}, - [1415] = {.lex_state = 316}, - [1416] = {.lex_state = 316}, - [1417] = {.lex_state = 316}, - [1418] = {.lex_state = 237}, - [1419] = {.lex_state = 316}, - [1420] = {.lex_state = 316}, - [1421] = {.lex_state = 316}, - [1422] = {.lex_state = 166}, - [1423] = {.lex_state = 316}, - [1424] = {.lex_state = 237}, - [1425] = {.lex_state = 316}, - [1426] = {.lex_state = 316}, - [1427] = {.lex_state = 237}, - [1428] = {.lex_state = 316}, - [1429] = {.lex_state = 237}, - [1430] = {.lex_state = 316}, - [1431] = {.lex_state = 316}, - [1432] = {.lex_state = 316}, - [1433] = {.lex_state = 316}, - [1434] = {.lex_state = 316}, - [1435] = {.lex_state = 316}, - [1436] = {.lex_state = 316}, - [1437] = {.lex_state = 316}, - [1438] = {.lex_state = 316}, - [1439] = {.lex_state = 316}, - [1440] = {.lex_state = 316}, - [1441] = {.lex_state = 237}, - [1442] = {.lex_state = 316}, - [1443] = {.lex_state = 237}, - [1444] = {.lex_state = 237}, - [1445] = {.lex_state = 316}, - [1446] = {.lex_state = 316}, - [1447] = {.lex_state = 237}, - [1448] = {.lex_state = 237}, - [1449] = {.lex_state = 316}, - [1450] = {.lex_state = 316}, - [1451] = {.lex_state = 316}, - [1452] = {.lex_state = 316}, - [1453] = {.lex_state = 316}, - [1454] = {.lex_state = 316}, - [1455] = {.lex_state = 316}, - [1456] = {.lex_state = 316}, - [1457] = {.lex_state = 316}, - [1458] = {.lex_state = 316}, - [1459] = {.lex_state = 316}, - [1460] = {.lex_state = 316}, - [1461] = {.lex_state = 316}, - [1462] = {.lex_state = 316}, - [1463] = {.lex_state = 316}, - [1464] = {.lex_state = 316}, - [1465] = {.lex_state = 316}, - [1466] = {.lex_state = 237}, - [1467] = {.lex_state = 316}, - [1468] = {.lex_state = 239}, - [1469] = {.lex_state = 237}, - [1470] = {.lex_state = 316}, - [1471] = {.lex_state = 316}, - [1472] = {.lex_state = 166}, - [1473] = {.lex_state = 166}, - [1474] = {.lex_state = 167}, - [1475] = {.lex_state = 166}, - [1476] = {.lex_state = 168}, - [1477] = {.lex_state = 168}, - [1478] = {.lex_state = 238}, - [1479] = {.lex_state = 238}, - [1480] = {.lex_state = 238}, - [1481] = {.lex_state = 238}, - [1482] = {.lex_state = 238}, - [1483] = {.lex_state = 238}, - [1484] = {.lex_state = 238}, - [1485] = {.lex_state = 238}, - [1486] = {.lex_state = 238}, - [1487] = {.lex_state = 238}, - [1488] = {.lex_state = 238}, - [1489] = {.lex_state = 238}, - [1490] = {.lex_state = 238}, - [1491] = {.lex_state = 238}, - [1492] = {.lex_state = 238}, - [1493] = {.lex_state = 238}, - [1494] = {.lex_state = 238}, - [1495] = {.lex_state = 238}, - [1496] = {.lex_state = 316}, - [1497] = {.lex_state = 316}, + [890] = {.lex_state = 315}, + [891] = {.lex_state = 173}, + [892] = {.lex_state = 315}, + [893] = {.lex_state = 173}, + [894] = {.lex_state = 315}, + [895] = {.lex_state = 173}, + [896] = {.lex_state = 315}, + [897] = {.lex_state = 315}, + [898] = {.lex_state = 237}, + [899] = {.lex_state = 315}, + [900] = {.lex_state = 239}, + [901] = {.lex_state = 237}, + [902] = {.lex_state = 315}, + [903] = {.lex_state = 315}, + [904] = {.lex_state = 315}, + [905] = {.lex_state = 315}, + [906] = {.lex_state = 315}, + [907] = {.lex_state = 315}, + [908] = {.lex_state = 315}, + [909] = {.lex_state = 315}, + [910] = {.lex_state = 315}, + [911] = {.lex_state = 315}, + [912] = {.lex_state = 315}, + [913] = {.lex_state = 315}, + [914] = {.lex_state = 315}, + [915] = {.lex_state = 315}, + [916] = {.lex_state = 315}, + [917] = {.lex_state = 315}, + [918] = {.lex_state = 315}, + [919] = {.lex_state = 315}, + [920] = {.lex_state = 315}, + [921] = {.lex_state = 237}, + [922] = {.lex_state = 315}, + [923] = {.lex_state = 315}, + [924] = {.lex_state = 237}, + [925] = {.lex_state = 315}, + [926] = {.lex_state = 315}, + [927] = {.lex_state = 315}, + [928] = {.lex_state = 239}, + [929] = {.lex_state = 315}, + [930] = {.lex_state = 315}, + [931] = {.lex_state = 237}, + [932] = {.lex_state = 315}, + [933] = {.lex_state = 237}, + [934] = {.lex_state = 315}, + [935] = {.lex_state = 239}, + [936] = {.lex_state = 315}, + [937] = {.lex_state = 237}, + [938] = {.lex_state = 237}, + [939] = {.lex_state = 315}, + [940] = {.lex_state = 237}, + [941] = {.lex_state = 166}, + [942] = {.lex_state = 315}, + [943] = {.lex_state = 315}, + [944] = {.lex_state = 315}, + [945] = {.lex_state = 315}, + [946] = {.lex_state = 315}, + [947] = {.lex_state = 315}, + [948] = {.lex_state = 315}, + [949] = {.lex_state = 315}, + [950] = {.lex_state = 237}, + [951] = {.lex_state = 315}, + [952] = {.lex_state = 315}, + [953] = {.lex_state = 315}, + [954] = {.lex_state = 315}, + [955] = {.lex_state = 315}, + [956] = {.lex_state = 315}, + [957] = {.lex_state = 315}, + [958] = {.lex_state = 315}, + [959] = {.lex_state = 237}, + [960] = {.lex_state = 237}, + [961] = {.lex_state = 315}, + [962] = {.lex_state = 237}, + [963] = {.lex_state = 315}, + [964] = {.lex_state = 315}, + [965] = {.lex_state = 237}, + [966] = {.lex_state = 315}, + [967] = {.lex_state = 237}, + [968] = {.lex_state = 237}, + [969] = {.lex_state = 315}, + [970] = {.lex_state = 315}, + [971] = {.lex_state = 315}, + [972] = {.lex_state = 315}, + [973] = {.lex_state = 237}, + [974] = {.lex_state = 315}, + [975] = {.lex_state = 315}, + [976] = {.lex_state = 315}, + [977] = {.lex_state = 315}, + [978] = {.lex_state = 315}, + [979] = {.lex_state = 237}, + [980] = {.lex_state = 237}, + [981] = {.lex_state = 166}, + [982] = {.lex_state = 167}, + [983] = {.lex_state = 166}, + [984] = {.lex_state = 166}, + [985] = {.lex_state = 168}, + [986] = {.lex_state = 168}, + [987] = {.lex_state = 238}, + [988] = {.lex_state = 238}, + [989] = {.lex_state = 238}, + [990] = {.lex_state = 238}, + [991] = {.lex_state = 238}, + [992] = {.lex_state = 238}, + [993] = {.lex_state = 238}, + [994] = {.lex_state = 238}, + [995] = {.lex_state = 238}, + [996] = {.lex_state = 238}, + [997] = {.lex_state = 238}, + [998] = {.lex_state = 238}, + [999] = {.lex_state = 238}, + [1000] = {.lex_state = 238}, + [1001] = {.lex_state = 238}, + [1002] = {.lex_state = 238}, + [1003] = {.lex_state = 238}, + [1004] = {.lex_state = 238}, + [1005] = {.lex_state = 315}, + [1006] = {.lex_state = 315}, + [1007] = {.lex_state = 176}, + [1008] = {.lex_state = 176}, + [1009] = {.lex_state = 176}, + [1010] = {.lex_state = 176}, + [1011] = {.lex_state = 176}, + [1012] = {.lex_state = 176}, + [1013] = {.lex_state = 315}, + [1014] = {.lex_state = 176}, + [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 = 175}, + [1030] = {.lex_state = 172}, + [1031] = {.lex_state = 175}, + [1032] = {.lex_state = 172}, + [1033] = {.lex_state = 172}, + [1034] = {.lex_state = 172}, + [1035] = {.lex_state = 172}, + [1036] = {.lex_state = 172}, + [1037] = {.lex_state = 172}, + [1038] = {.lex_state = 172}, + [1039] = {.lex_state = 172}, + [1040] = {.lex_state = 172}, + [1041] = {.lex_state = 172}, + [1042] = {.lex_state = 172}, + [1043] = {.lex_state = 172}, + [1044] = {.lex_state = 172}, + [1045] = {.lex_state = 172}, + [1046] = {.lex_state = 172}, + [1047] = {.lex_state = 172}, + [1048] = {.lex_state = 172}, + [1049] = {.lex_state = 172}, + [1050] = {.lex_state = 172}, + [1051] = {.lex_state = 172}, + [1052] = {.lex_state = 172}, + [1053] = {.lex_state = 172}, + [1054] = {.lex_state = 172}, + [1055] = {.lex_state = 172}, + [1056] = {.lex_state = 172}, + [1057] = {.lex_state = 172}, + [1058] = {.lex_state = 172}, + [1059] = {.lex_state = 172}, + [1060] = {.lex_state = 172}, + [1061] = {.lex_state = 172}, + [1062] = {.lex_state = 172}, + [1063] = {.lex_state = 172}, + [1064] = {.lex_state = 172}, + [1065] = {.lex_state = 172}, + [1066] = {.lex_state = 172}, + [1067] = {.lex_state = 172}, + [1068] = {.lex_state = 172}, + [1069] = {.lex_state = 172}, + [1070] = {.lex_state = 172}, + [1071] = {.lex_state = 172}, + [1072] = {.lex_state = 172}, + [1073] = {.lex_state = 172}, + [1074] = {.lex_state = 172}, + [1075] = {.lex_state = 172}, + [1076] = {.lex_state = 172}, + [1077] = {.lex_state = 172}, + [1078] = {.lex_state = 172}, + [1079] = {.lex_state = 172}, + [1080] = {.lex_state = 172}, + [1081] = {.lex_state = 172}, + [1082] = {.lex_state = 172}, + [1083] = {.lex_state = 172}, + [1084] = {.lex_state = 172}, + [1085] = {.lex_state = 172}, + [1086] = {.lex_state = 172}, + [1087] = {.lex_state = 172}, + [1088] = {.lex_state = 172}, + [1089] = {.lex_state = 172}, + [1090] = {.lex_state = 172}, + [1091] = {.lex_state = 172}, + [1092] = {.lex_state = 172}, + [1093] = {.lex_state = 172}, + [1094] = {.lex_state = 172}, + [1095] = {.lex_state = 172}, + [1096] = {.lex_state = 172}, + [1097] = {.lex_state = 172}, + [1098] = {.lex_state = 172}, + [1099] = {.lex_state = 172}, + [1100] = {.lex_state = 172}, + [1101] = {.lex_state = 172}, + [1102] = {.lex_state = 172}, + [1103] = {.lex_state = 172}, + [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 = 238}, + [1144] = {.lex_state = 182}, + [1145] = {.lex_state = 178}, + [1146] = {.lex_state = 182}, + [1147] = {.lex_state = 176}, + [1148] = {.lex_state = 176}, + [1149] = {.lex_state = 182}, + [1150] = {.lex_state = 182}, + [1151] = {.lex_state = 182}, + [1152] = {.lex_state = 182}, + [1153] = {.lex_state = 176}, + [1154] = {.lex_state = 182}, + [1155] = {.lex_state = 182}, + [1156] = {.lex_state = 182}, + [1157] = {.lex_state = 176}, + [1158] = {.lex_state = 176}, + [1159] = {.lex_state = 176}, + [1160] = {.lex_state = 176}, + [1161] = {.lex_state = 182}, + [1162] = {.lex_state = 182}, + [1163] = {.lex_state = 176}, + [1164] = {.lex_state = 176}, + [1165] = {.lex_state = 176}, + [1166] = {.lex_state = 182}, + [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 = 182}, + [1179] = {.lex_state = 176}, + [1180] = {.lex_state = 176}, + [1181] = {.lex_state = 175}, + [1182] = {.lex_state = 176}, + [1183] = {.lex_state = 175}, + [1184] = {.lex_state = 176}, + [1185] = {.lex_state = 176}, + [1186] = {.lex_state = 175}, + [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 = 175}, + [1195] = {.lex_state = 176}, + [1196] = {.lex_state = 175}, + [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 = 175}, + [1205] = {.lex_state = 176}, + [1206] = {.lex_state = 176}, + [1207] = {.lex_state = 175}, + [1208] = {.lex_state = 176}, + [1209] = {.lex_state = 175}, + [1210] = {.lex_state = 176}, + [1211] = {.lex_state = 176}, + [1212] = {.lex_state = 176}, + [1213] = {.lex_state = 176}, + [1214] = {.lex_state = 175}, + [1215] = {.lex_state = 175}, + [1216] = {.lex_state = 176}, + [1217] = {.lex_state = 175}, + [1218] = {.lex_state = 176}, + [1219] = {.lex_state = 176}, + [1220] = {.lex_state = 175}, + [1221] = {.lex_state = 176}, + [1222] = {.lex_state = 175}, + [1223] = {.lex_state = 175}, + [1224] = {.lex_state = 175}, + [1225] = {.lex_state = 176}, + [1226] = {.lex_state = 176}, + [1227] = {.lex_state = 175}, + [1228] = {.lex_state = 175}, + [1229] = {.lex_state = 175}, + [1230] = {.lex_state = 175}, + [1231] = {.lex_state = 176}, + [1232] = {.lex_state = 175}, + [1233] = {.lex_state = 176}, + [1234] = {.lex_state = 175}, + [1235] = {.lex_state = 175}, + [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 = 176}, + [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}, @@ -37718,7 +36083,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1509] = {.lex_state = 176}, [1510] = {.lex_state = 176}, [1511] = {.lex_state = 176}, - [1512] = {.lex_state = 316}, + [1512] = {.lex_state = 176}, [1513] = {.lex_state = 176}, [1514] = {.lex_state = 176}, [1515] = {.lex_state = 176}, @@ -37726,8247 +36091,6529 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1517] = {.lex_state = 176}, [1518] = {.lex_state = 176}, [1519] = {.lex_state = 176}, - [1520] = {.lex_state = 175}, - [1521] = {.lex_state = 172}, - [1522] = {.lex_state = 175}, - [1523] = {.lex_state = 172}, - [1524] = {.lex_state = 172}, - [1525] = {.lex_state = 172}, - [1526] = {.lex_state = 172}, - [1527] = {.lex_state = 172}, - [1528] = {.lex_state = 172}, - [1529] = {.lex_state = 172}, - [1530] = {.lex_state = 172}, - [1531] = {.lex_state = 172}, - [1532] = {.lex_state = 172}, - [1533] = {.lex_state = 172}, - [1534] = {.lex_state = 172}, - [1535] = {.lex_state = 172}, - [1536] = {.lex_state = 172}, - [1537] = {.lex_state = 172}, - [1538] = {.lex_state = 172}, - [1539] = {.lex_state = 172}, - [1540] = {.lex_state = 172}, - [1541] = {.lex_state = 172}, - [1542] = {.lex_state = 172}, - [1543] = {.lex_state = 172}, - [1544] = {.lex_state = 172}, - [1545] = {.lex_state = 172}, - [1546] = {.lex_state = 172}, - [1547] = {.lex_state = 172}, - [1548] = {.lex_state = 172}, - [1549] = {.lex_state = 172}, - [1550] = {.lex_state = 172}, - [1551] = {.lex_state = 172}, - [1552] = {.lex_state = 172}, - [1553] = {.lex_state = 172}, - [1554] = {.lex_state = 172}, - [1555] = {.lex_state = 172}, - [1556] = {.lex_state = 172}, - [1557] = {.lex_state = 172}, - [1558] = {.lex_state = 172}, - [1559] = {.lex_state = 172}, - [1560] = {.lex_state = 172}, - [1561] = {.lex_state = 172}, - [1562] = {.lex_state = 172}, - [1563] = {.lex_state = 172}, - [1564] = {.lex_state = 172}, - [1565] = {.lex_state = 172}, - [1566] = {.lex_state = 172}, - [1567] = {.lex_state = 172}, - [1568] = {.lex_state = 172}, - [1569] = {.lex_state = 172}, - [1570] = {.lex_state = 172}, - [1571] = {.lex_state = 172}, - [1572] = {.lex_state = 172}, - [1573] = {.lex_state = 172}, - [1574] = {.lex_state = 172}, - [1575] = {.lex_state = 172}, - [1576] = {.lex_state = 172}, - [1577] = {.lex_state = 172}, - [1578] = {.lex_state = 172}, - [1579] = {.lex_state = 172}, - [1580] = {.lex_state = 172}, - [1581] = {.lex_state = 172}, - [1582] = {.lex_state = 172}, - [1583] = {.lex_state = 172}, - [1584] = {.lex_state = 172}, - [1585] = {.lex_state = 172}, - [1586] = {.lex_state = 172}, - [1587] = {.lex_state = 172}, - [1588] = {.lex_state = 172}, - [1589] = {.lex_state = 172}, - [1590] = {.lex_state = 172}, - [1591] = {.lex_state = 172}, - [1592] = {.lex_state = 172}, - [1593] = {.lex_state = 172}, - [1594] = {.lex_state = 172}, - [1595] = {.lex_state = 172}, - [1596] = {.lex_state = 172}, - [1597] = {.lex_state = 172}, - [1598] = {.lex_state = 172}, - [1599] = {.lex_state = 172}, - [1600] = {.lex_state = 172}, - [1601] = {.lex_state = 172}, - [1602] = {.lex_state = 172}, - [1603] = {.lex_state = 172}, - [1604] = {.lex_state = 172}, - [1605] = {.lex_state = 172}, - [1606] = {.lex_state = 172}, - [1607] = {.lex_state = 172}, - [1608] = {.lex_state = 172}, - [1609] = {.lex_state = 172}, - [1610] = {.lex_state = 172}, - [1611] = {.lex_state = 172}, - [1612] = {.lex_state = 172}, - [1613] = {.lex_state = 172}, - [1614] = {.lex_state = 172}, - [1615] = {.lex_state = 172}, - [1616] = {.lex_state = 172}, - [1617] = {.lex_state = 172}, - [1618] = {.lex_state = 172}, - [1619] = {.lex_state = 172}, - [1620] = {.lex_state = 172}, - [1621] = {.lex_state = 172}, - [1622] = {.lex_state = 172}, - [1623] = {.lex_state = 172}, - [1624] = {.lex_state = 172}, - [1625] = {.lex_state = 172}, - [1626] = {.lex_state = 172}, - [1627] = {.lex_state = 172}, - [1628] = {.lex_state = 172}, - [1629] = {.lex_state = 172}, - [1630] = {.lex_state = 172}, - [1631] = {.lex_state = 172}, - [1632] = {.lex_state = 172}, - [1633] = {.lex_state = 172}, - [1634] = {.lex_state = 172}, - [1635] = {.lex_state = 172}, - [1636] = {.lex_state = 172}, - [1637] = {.lex_state = 172}, - [1638] = {.lex_state = 172}, - [1639] = {.lex_state = 172}, - [1640] = {.lex_state = 172}, - [1641] = {.lex_state = 172}, - [1642] = {.lex_state = 172}, - [1643] = {.lex_state = 172}, - [1644] = {.lex_state = 172}, - [1645] = {.lex_state = 172}, - [1646] = {.lex_state = 172}, - [1647] = {.lex_state = 172}, - [1648] = {.lex_state = 172}, - [1649] = {.lex_state = 172}, - [1650] = {.lex_state = 172}, - [1651] = {.lex_state = 172}, - [1652] = {.lex_state = 172}, - [1653] = {.lex_state = 172}, - [1654] = {.lex_state = 172}, - [1655] = {.lex_state = 172}, - [1656] = {.lex_state = 172}, - [1657] = {.lex_state = 172}, - [1658] = {.lex_state = 172}, - [1659] = {.lex_state = 172}, - [1660] = {.lex_state = 172}, - [1661] = {.lex_state = 172}, - [1662] = {.lex_state = 172}, - [1663] = {.lex_state = 172}, - [1664] = {.lex_state = 172}, - [1665] = {.lex_state = 172}, - [1666] = {.lex_state = 172}, - [1667] = {.lex_state = 172}, + [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 = 176}, + [1569] = {.lex_state = 176}, + [1570] = {.lex_state = 176}, + [1571] = {.lex_state = 176}, + [1572] = {.lex_state = 176}, + [1573] = {.lex_state = 176}, + [1574] = {.lex_state = 176}, + [1575] = {.lex_state = 176}, + [1576] = {.lex_state = 176}, + [1577] = {.lex_state = 176}, + [1578] = {.lex_state = 176}, + [1579] = {.lex_state = 176}, + [1580] = {.lex_state = 176}, + [1581] = {.lex_state = 176}, + [1582] = {.lex_state = 176}, + [1583] = {.lex_state = 176}, + [1584] = {.lex_state = 176}, + [1585] = {.lex_state = 176}, + [1586] = {.lex_state = 176}, + [1587] = {.lex_state = 176}, + [1588] = {.lex_state = 176}, + [1589] = {.lex_state = 176}, + [1590] = {.lex_state = 176}, + [1591] = {.lex_state = 176}, + [1592] = {.lex_state = 176}, + [1593] = {.lex_state = 176}, + [1594] = {.lex_state = 176}, + [1595] = {.lex_state = 176}, + [1596] = {.lex_state = 176}, + [1597] = {.lex_state = 176}, + [1598] = {.lex_state = 176}, + [1599] = {.lex_state = 176}, + [1600] = {.lex_state = 176}, + [1601] = {.lex_state = 176}, + [1602] = {.lex_state = 176}, + [1603] = {.lex_state = 176}, + [1604] = {.lex_state = 176}, + [1605] = {.lex_state = 176}, + [1606] = {.lex_state = 176}, + [1607] = {.lex_state = 176}, + [1608] = {.lex_state = 176}, + [1609] = {.lex_state = 176}, + [1610] = {.lex_state = 176}, + [1611] = {.lex_state = 176}, + [1612] = {.lex_state = 176}, + [1613] = {.lex_state = 176}, + [1614] = {.lex_state = 176}, + [1615] = {.lex_state = 176}, + [1616] = {.lex_state = 176}, + [1617] = {.lex_state = 176}, + [1618] = {.lex_state = 176}, + [1619] = {.lex_state = 176}, + [1620] = {.lex_state = 176}, + [1621] = {.lex_state = 176}, + [1622] = {.lex_state = 176}, + [1623] = {.lex_state = 176}, + [1624] = {.lex_state = 176}, + [1625] = {.lex_state = 176}, + [1626] = {.lex_state = 176}, + [1627] = {.lex_state = 176}, + [1628] = {.lex_state = 176}, + [1629] = {.lex_state = 176}, + [1630] = {.lex_state = 176}, + [1631] = {.lex_state = 176}, + [1632] = {.lex_state = 176}, + [1633] = {.lex_state = 176}, + [1634] = {.lex_state = 176}, + [1635] = {.lex_state = 176}, + [1636] = {.lex_state = 176}, + [1637] = {.lex_state = 176}, + [1638] = {.lex_state = 176}, + [1639] = {.lex_state = 176}, + [1640] = {.lex_state = 176}, + [1641] = {.lex_state = 176}, + [1642] = {.lex_state = 176}, + [1643] = {.lex_state = 176}, + [1644] = {.lex_state = 176}, + [1645] = {.lex_state = 176}, + [1646] = {.lex_state = 176}, + [1647] = {.lex_state = 176}, + [1648] = {.lex_state = 176}, + [1649] = {.lex_state = 176}, + [1650] = {.lex_state = 176}, + [1651] = {.lex_state = 176}, + [1652] = {.lex_state = 176}, + [1653] = {.lex_state = 176}, + [1654] = {.lex_state = 176}, + [1655] = {.lex_state = 176}, + [1656] = {.lex_state = 176}, + [1657] = {.lex_state = 176}, + [1658] = {.lex_state = 176}, + [1659] = {.lex_state = 176}, + [1660] = {.lex_state = 176}, + [1661] = {.lex_state = 176}, + [1662] = {.lex_state = 176}, + [1663] = {.lex_state = 238}, + [1664] = {.lex_state = 238}, + [1665] = {.lex_state = 238}, + [1666] = {.lex_state = 238}, + [1667] = {.lex_state = 238}, [1668] = {.lex_state = 172}, [1669] = {.lex_state = 172}, - [1670] = {.lex_state = 176}, - [1671] = {.lex_state = 176}, - [1672] = {.lex_state = 176}, - [1673] = {.lex_state = 176}, - [1674] = {.lex_state = 176}, - [1675] = {.lex_state = 176}, - [1676] = {.lex_state = 176}, - [1677] = {.lex_state = 176}, - [1678] = {.lex_state = 176}, - [1679] = {.lex_state = 176}, - [1680] = {.lex_state = 176}, - [1681] = {.lex_state = 176}, - [1682] = {.lex_state = 176}, - [1683] = {.lex_state = 176}, - [1684] = {.lex_state = 176}, - [1685] = {.lex_state = 176}, - [1686] = {.lex_state = 176}, - [1687] = {.lex_state = 176}, - [1688] = {.lex_state = 176}, - [1689] = {.lex_state = 176}, - [1690] = {.lex_state = 176}, - [1691] = {.lex_state = 176}, - [1692] = {.lex_state = 176}, - [1693] = {.lex_state = 176}, - [1694] = {.lex_state = 176}, - [1695] = {.lex_state = 176}, - [1696] = {.lex_state = 176}, - [1697] = {.lex_state = 176}, - [1698] = {.lex_state = 176}, - [1699] = {.lex_state = 176}, - [1700] = {.lex_state = 176}, - [1701] = {.lex_state = 176}, - [1702] = {.lex_state = 176}, - [1703] = {.lex_state = 176}, - [1704] = {.lex_state = 176}, - [1705] = {.lex_state = 176}, - [1706] = {.lex_state = 176}, - [1707] = {.lex_state = 176}, - [1708] = {.lex_state = 176}, - [1709] = {.lex_state = 182}, - [1710] = {.lex_state = 238}, - [1711] = {.lex_state = 182}, - [1712] = {.lex_state = 182}, - [1713] = {.lex_state = 182}, - [1714] = {.lex_state = 176}, - [1715] = {.lex_state = 182}, - [1716] = {.lex_state = 176}, - [1717] = {.lex_state = 182}, - [1718] = {.lex_state = 176}, - [1719] = {.lex_state = 176}, - [1720] = {.lex_state = 182}, - [1721] = {.lex_state = 178}, - [1722] = {.lex_state = 176}, - [1723] = {.lex_state = 176}, - [1724] = {.lex_state = 176}, - [1725] = {.lex_state = 182}, - [1726] = {.lex_state = 182}, - [1727] = {.lex_state = 182}, - [1728] = {.lex_state = 182}, - [1729] = {.lex_state = 176}, - [1730] = {.lex_state = 176}, - [1731] = {.lex_state = 182}, - [1732] = {.lex_state = 176}, - [1733] = {.lex_state = 176}, - [1734] = {.lex_state = 176}, - [1735] = {.lex_state = 176}, - [1736] = {.lex_state = 176}, - [1737] = {.lex_state = 176}, - [1738] = {.lex_state = 176}, - [1739] = {.lex_state = 176}, - [1740] = {.lex_state = 176}, - [1741] = {.lex_state = 176}, - [1742] = {.lex_state = 176}, - [1743] = {.lex_state = 176}, - [1744] = {.lex_state = 176}, - [1745] = {.lex_state = 176}, - [1746] = {.lex_state = 182}, - [1747] = {.lex_state = 176}, - [1748] = {.lex_state = 175}, - [1749] = {.lex_state = 176}, - [1750] = {.lex_state = 176}, - [1751] = {.lex_state = 175}, - [1752] = {.lex_state = 176}, - [1753] = {.lex_state = 176}, - [1754] = {.lex_state = 176}, - [1755] = {.lex_state = 175}, - [1756] = {.lex_state = 175}, - [1757] = {.lex_state = 176}, - [1758] = {.lex_state = 175}, - [1759] = {.lex_state = 176}, - [1760] = {.lex_state = 175}, - [1761] = {.lex_state = 175}, - [1762] = {.lex_state = 175}, - [1763] = {.lex_state = 175}, - [1764] = {.lex_state = 176}, - [1765] = {.lex_state = 175}, - [1766] = {.lex_state = 176}, - [1767] = {.lex_state = 176}, - [1768] = {.lex_state = 175}, - [1769] = {.lex_state = 176}, - [1770] = {.lex_state = 176}, - [1771] = {.lex_state = 175}, - [1772] = {.lex_state = 175}, - [1773] = {.lex_state = 176}, - [1774] = {.lex_state = 176}, - [1775] = {.lex_state = 175}, - [1776] = {.lex_state = 175}, - [1777] = {.lex_state = 176}, - [1778] = {.lex_state = 175}, - [1779] = {.lex_state = 176}, - [1780] = {.lex_state = 176}, - [1781] = {.lex_state = 176}, - [1782] = {.lex_state = 176}, - [1783] = {.lex_state = 176}, - [1784] = {.lex_state = 176}, - [1785] = {.lex_state = 175}, - [1786] = {.lex_state = 175}, - [1787] = {.lex_state = 176}, - [1788] = {.lex_state = 175}, - [1789] = {.lex_state = 176}, - [1790] = {.lex_state = 176}, - [1791] = {.lex_state = 175}, - [1792] = {.lex_state = 176}, - [1793] = {.lex_state = 175}, - [1794] = {.lex_state = 176}, - [1795] = {.lex_state = 176}, - [1796] = {.lex_state = 176}, - [1797] = {.lex_state = 175}, - [1798] = {.lex_state = 176}, - [1799] = {.lex_state = 176}, - [1800] = {.lex_state = 176}, - [1801] = {.lex_state = 176}, - [1802] = {.lex_state = 176}, - [1803] = {.lex_state = 176}, - [1804] = {.lex_state = 176}, - [1805] = {.lex_state = 176}, - [1806] = {.lex_state = 176}, - [1807] = {.lex_state = 176}, - [1808] = {.lex_state = 176}, - [1809] = {.lex_state = 176}, - [1810] = {.lex_state = 176}, - [1811] = {.lex_state = 176}, - [1812] = {.lex_state = 176}, - [1813] = {.lex_state = 176}, - [1814] = {.lex_state = 176}, - [1815] = {.lex_state = 176}, - [1816] = {.lex_state = 176}, - [1817] = {.lex_state = 176}, - [1818] = {.lex_state = 176}, - [1819] = {.lex_state = 176}, - [1820] = {.lex_state = 176}, - [1821] = {.lex_state = 176}, - [1822] = {.lex_state = 176}, - [1823] = {.lex_state = 176}, - [1824] = {.lex_state = 176}, - [1825] = {.lex_state = 176}, - [1826] = {.lex_state = 176}, - [1827] = {.lex_state = 176}, - [1828] = {.lex_state = 176}, - [1829] = {.lex_state = 176}, - [1830] = {.lex_state = 176}, - [1831] = {.lex_state = 176}, - [1832] = {.lex_state = 176}, - [1833] = {.lex_state = 176}, - [1834] = {.lex_state = 176}, - [1835] = {.lex_state = 176}, - [1836] = {.lex_state = 176}, - [1837] = {.lex_state = 176}, - [1838] = {.lex_state = 176}, - [1839] = {.lex_state = 176}, - [1840] = {.lex_state = 176}, - [1841] = {.lex_state = 176}, - [1842] = {.lex_state = 176}, - [1843] = {.lex_state = 176}, - [1844] = {.lex_state = 176}, - [1845] = {.lex_state = 176}, - [1846] = {.lex_state = 176}, - [1847] = {.lex_state = 176}, - [1848] = {.lex_state = 176}, - [1849] = {.lex_state = 176}, - [1850] = {.lex_state = 176}, - [1851] = {.lex_state = 176}, - [1852] = {.lex_state = 176}, - [1853] = {.lex_state = 176}, - [1854] = {.lex_state = 176}, - [1855] = {.lex_state = 176}, - [1856] = {.lex_state = 176}, - [1857] = {.lex_state = 176}, + [1670] = {.lex_state = 172}, + [1671] = {.lex_state = 203}, + [1672] = {.lex_state = 203}, + [1673] = {.lex_state = 203}, + [1674] = {.lex_state = 203}, + [1675] = {.lex_state = 203}, + [1676] = {.lex_state = 195}, + [1677] = {.lex_state = 203}, + [1678] = {.lex_state = 203}, + [1679] = {.lex_state = 203}, + [1680] = {.lex_state = 203}, + [1681] = {.lex_state = 195}, + [1682] = {.lex_state = 195}, + [1683] = {.lex_state = 195}, + [1684] = {.lex_state = 195}, + [1685] = {.lex_state = 203}, + [1686] = {.lex_state = 195}, + [1687] = {.lex_state = 195}, + [1688] = {.lex_state = 195}, + [1689] = {.lex_state = 203}, + [1690] = {.lex_state = 203}, + [1691] = {.lex_state = 195}, + [1692] = {.lex_state = 203}, + [1693] = {.lex_state = 238}, + [1694] = {.lex_state = 238}, + [1695] = {.lex_state = 195}, + [1696] = {.lex_state = 195}, + [1697] = {.lex_state = 195}, + [1698] = {.lex_state = 195}, + [1699] = {.lex_state = 195}, + [1700] = {.lex_state = 195}, + [1701] = {.lex_state = 195}, + [1702] = {.lex_state = 195}, + [1703] = {.lex_state = 178}, + [1704] = {.lex_state = 179}, + [1705] = {.lex_state = 219}, + [1706] = {.lex_state = 219}, + [1707] = {.lex_state = 186}, + [1708] = {.lex_state = 219}, + [1709] = {.lex_state = 219}, + [1710] = {.lex_state = 219}, + [1711] = {.lex_state = 219}, + [1712] = {.lex_state = 219}, + [1713] = {.lex_state = 238}, + [1714] = {.lex_state = 238}, + [1715] = {.lex_state = 238}, + [1716] = {.lex_state = 238}, + [1717] = {.lex_state = 238}, + [1718] = {.lex_state = 238}, + [1719] = {.lex_state = 238}, + [1720] = {.lex_state = 238}, + [1721] = {.lex_state = 238}, + [1722] = {.lex_state = 238}, + [1723] = {.lex_state = 238}, + [1724] = {.lex_state = 238}, + [1725] = {.lex_state = 238}, + [1726] = {.lex_state = 238}, + [1727] = {.lex_state = 238}, + [1728] = {.lex_state = 238}, + [1729] = {.lex_state = 238}, + [1730] = {.lex_state = 238}, + [1731] = {.lex_state = 238}, + [1732] = {.lex_state = 238}, + [1733] = {.lex_state = 238}, + [1734] = {.lex_state = 238}, + [1735] = {.lex_state = 238}, + [1736] = {.lex_state = 238}, + [1737] = {.lex_state = 238}, + [1738] = {.lex_state = 238}, + [1739] = {.lex_state = 238}, + [1740] = {.lex_state = 238}, + [1741] = {.lex_state = 238}, + [1742] = {.lex_state = 238}, + [1743] = {.lex_state = 238}, + [1744] = {.lex_state = 238}, + [1745] = {.lex_state = 238}, + [1746] = {.lex_state = 219}, + [1747] = {.lex_state = 219}, + [1748] = {.lex_state = 219}, + [1749] = {.lex_state = 238}, + [1750] = {.lex_state = 194}, + [1751] = {.lex_state = 194}, + [1752] = {.lex_state = 238}, + [1753] = {.lex_state = 194}, + [1754] = {.lex_state = 238}, + [1755] = {.lex_state = 238}, + [1756] = {.lex_state = 194}, + [1757] = {.lex_state = 194}, + [1758] = {.lex_state = 194}, + [1759] = {.lex_state = 194}, + [1760] = {.lex_state = 202}, + [1761] = {.lex_state = 202}, + [1762] = {.lex_state = 238}, + [1763] = {.lex_state = 238}, + [1764] = {.lex_state = 238}, + [1765] = {.lex_state = 172}, + [1766] = {.lex_state = 202}, + [1767] = {.lex_state = 238}, + [1768] = {.lex_state = 238}, + [1769] = {.lex_state = 172}, + [1770] = {.lex_state = 202}, + [1771] = {.lex_state = 202}, + [1772] = {.lex_state = 238}, + [1773] = {.lex_state = 202}, + [1774] = {.lex_state = 202}, + [1775] = {.lex_state = 238}, + [1776] = {.lex_state = 195}, + [1777] = {.lex_state = 219}, + [1778] = {.lex_state = 219}, + [1779] = {.lex_state = 219}, + [1780] = {.lex_state = 185}, + [1781] = {.lex_state = 219}, + [1782] = {.lex_state = 185}, + [1783] = {.lex_state = 219}, + [1784] = {.lex_state = 219}, + [1785] = {.lex_state = 183}, + [1786] = {.lex_state = 219}, + [1787] = {.lex_state = 219}, + [1788] = {.lex_state = 219}, + [1789] = {.lex_state = 219}, + [1790] = {.lex_state = 219}, + [1791] = {.lex_state = 238}, + [1792] = {.lex_state = 219}, + [1793] = {.lex_state = 219}, + [1794] = {.lex_state = 238}, + [1795] = {.lex_state = 219}, + [1796] = {.lex_state = 185}, + [1797] = {.lex_state = 193}, + [1798] = {.lex_state = 194}, + [1799] = {.lex_state = 194}, + [1800] = {.lex_state = 238}, + [1801] = {.lex_state = 194}, + [1802] = {.lex_state = 238}, + [1803] = {.lex_state = 194}, + [1804] = {.lex_state = 195}, + [1805] = {.lex_state = 194}, + [1806] = {.lex_state = 194}, + [1807] = {.lex_state = 193}, + [1808] = {.lex_state = 193}, + [1809] = {.lex_state = 238}, + [1810] = {.lex_state = 194}, + [1811] = {.lex_state = 194}, + [1812] = {.lex_state = 193}, + [1813] = {.lex_state = 238}, + [1814] = {.lex_state = 238}, + [1815] = {.lex_state = 220}, + [1816] = {.lex_state = 238}, + [1817] = {.lex_state = 182}, + [1818] = {.lex_state = 182}, + [1819] = {.lex_state = 238}, + [1820] = {.lex_state = 238}, + [1821] = {.lex_state = 238}, + [1822] = {.lex_state = 238}, + [1823] = {.lex_state = 183}, + [1824] = {.lex_state = 238}, + [1825] = {.lex_state = 238}, + [1826] = {.lex_state = 238}, + [1827] = {.lex_state = 238}, + [1828] = {.lex_state = 238}, + [1829] = {.lex_state = 238}, + [1830] = {.lex_state = 238}, + [1831] = {.lex_state = 238}, + [1832] = {.lex_state = 220}, + [1833] = {.lex_state = 238}, + [1834] = {.lex_state = 238}, + [1835] = {.lex_state = 238}, + [1836] = {.lex_state = 238}, + [1837] = {.lex_state = 238}, + [1838] = {.lex_state = 193}, + [1839] = {.lex_state = 238}, + [1840] = {.lex_state = 238}, + [1841] = {.lex_state = 238}, + [1842] = {.lex_state = 238}, + [1843] = {.lex_state = 238}, + [1844] = {.lex_state = 238}, + [1845] = {.lex_state = 238}, + [1846] = {.lex_state = 238}, + [1847] = {.lex_state = 238}, + [1848] = {.lex_state = 238}, + [1849] = {.lex_state = 238}, + [1850] = {.lex_state = 238}, + [1851] = {.lex_state = 238}, + [1852] = {.lex_state = 202}, + [1853] = {.lex_state = 238}, + [1854] = {.lex_state = 238}, + [1855] = {.lex_state = 238}, + [1856] = {.lex_state = 238}, + [1857] = {.lex_state = 238}, [1858] = {.lex_state = 176}, - [1859] = {.lex_state = 176}, - [1860] = {.lex_state = 176}, - [1861] = {.lex_state = 176}, - [1862] = {.lex_state = 176}, - [1863] = {.lex_state = 176}, - [1864] = {.lex_state = 176}, - [1865] = {.lex_state = 176}, - [1866] = {.lex_state = 176}, - [1867] = {.lex_state = 176}, - [1868] = {.lex_state = 176}, - [1869] = {.lex_state = 176}, - [1870] = {.lex_state = 176}, - [1871] = {.lex_state = 176}, - [1872] = {.lex_state = 176}, - [1873] = {.lex_state = 176}, - [1874] = {.lex_state = 176}, - [1875] = {.lex_state = 176}, - [1876] = {.lex_state = 176}, - [1877] = {.lex_state = 176}, - [1878] = {.lex_state = 176}, - [1879] = {.lex_state = 176}, - [1880] = {.lex_state = 176}, - [1881] = {.lex_state = 176}, - [1882] = {.lex_state = 176}, - [1883] = {.lex_state = 176}, - [1884] = {.lex_state = 176}, - [1885] = {.lex_state = 176}, - [1886] = {.lex_state = 176}, - [1887] = {.lex_state = 176}, - [1888] = {.lex_state = 176}, - [1889] = {.lex_state = 176}, - [1890] = {.lex_state = 176}, - [1891] = {.lex_state = 176}, - [1892] = {.lex_state = 176}, - [1893] = {.lex_state = 176}, - [1894] = {.lex_state = 176}, - [1895] = {.lex_state = 176}, - [1896] = {.lex_state = 176}, - [1897] = {.lex_state = 176}, - [1898] = {.lex_state = 176}, - [1899] = {.lex_state = 176}, - [1900] = {.lex_state = 176}, - [1901] = {.lex_state = 176}, - [1902] = {.lex_state = 176}, - [1903] = {.lex_state = 176}, - [1904] = {.lex_state = 176}, - [1905] = {.lex_state = 176}, - [1906] = {.lex_state = 176}, - [1907] = {.lex_state = 176}, - [1908] = {.lex_state = 176}, - [1909] = {.lex_state = 176}, - [1910] = {.lex_state = 176}, - [1911] = {.lex_state = 176}, - [1912] = {.lex_state = 176}, - [1913] = {.lex_state = 176}, - [1914] = {.lex_state = 176}, - [1915] = {.lex_state = 176}, - [1916] = {.lex_state = 176}, - [1917] = {.lex_state = 176}, - [1918] = {.lex_state = 176}, - [1919] = {.lex_state = 176}, - [1920] = {.lex_state = 176}, - [1921] = {.lex_state = 176}, - [1922] = {.lex_state = 176}, - [1923] = {.lex_state = 176}, - [1924] = {.lex_state = 176}, - [1925] = {.lex_state = 176}, - [1926] = {.lex_state = 176}, - [1927] = {.lex_state = 176}, - [1928] = {.lex_state = 176}, - [1929] = {.lex_state = 176}, - [1930] = {.lex_state = 176}, - [1931] = {.lex_state = 176}, - [1932] = {.lex_state = 176}, - [1933] = {.lex_state = 176}, - [1934] = {.lex_state = 176}, - [1935] = {.lex_state = 176}, - [1936] = {.lex_state = 176}, - [1937] = {.lex_state = 176}, - [1938] = {.lex_state = 176}, - [1939] = {.lex_state = 176}, - [1940] = {.lex_state = 176}, - [1941] = {.lex_state = 176}, - [1942] = {.lex_state = 176}, - [1943] = {.lex_state = 176}, - [1944] = {.lex_state = 176}, - [1945] = {.lex_state = 176}, - [1946] = {.lex_state = 176}, - [1947] = {.lex_state = 176}, - [1948] = {.lex_state = 176}, - [1949] = {.lex_state = 176}, - [1950] = {.lex_state = 176}, - [1951] = {.lex_state = 176}, - [1952] = {.lex_state = 176}, - [1953] = {.lex_state = 176}, - [1954] = {.lex_state = 176}, - [1955] = {.lex_state = 176}, - [1956] = {.lex_state = 176}, - [1957] = {.lex_state = 176}, - [1958] = {.lex_state = 176}, - [1959] = {.lex_state = 176}, - [1960] = {.lex_state = 176}, - [1961] = {.lex_state = 176}, - [1962] = {.lex_state = 176}, - [1963] = {.lex_state = 176}, - [1964] = {.lex_state = 176}, - [1965] = {.lex_state = 176}, - [1966] = {.lex_state = 176}, - [1967] = {.lex_state = 176}, - [1968] = {.lex_state = 176}, - [1969] = {.lex_state = 176}, - [1970] = {.lex_state = 176}, - [1971] = {.lex_state = 176}, - [1972] = {.lex_state = 176}, - [1973] = {.lex_state = 176}, - [1974] = {.lex_state = 176}, - [1975] = {.lex_state = 176}, - [1976] = {.lex_state = 176}, - [1977] = {.lex_state = 176}, - [1978] = {.lex_state = 176}, - [1979] = {.lex_state = 176}, - [1980] = {.lex_state = 176}, - [1981] = {.lex_state = 176}, - [1982] = {.lex_state = 176}, - [1983] = {.lex_state = 176}, - [1984] = {.lex_state = 176}, - [1985] = {.lex_state = 176}, - [1986] = {.lex_state = 176}, - [1987] = {.lex_state = 176}, - [1988] = {.lex_state = 176}, - [1989] = {.lex_state = 176}, - [1990] = {.lex_state = 176}, - [1991] = {.lex_state = 176}, - [1992] = {.lex_state = 176}, - [1993] = {.lex_state = 176}, - [1994] = {.lex_state = 176}, - [1995] = {.lex_state = 176}, - [1996] = {.lex_state = 176}, - [1997] = {.lex_state = 176}, - [1998] = {.lex_state = 176}, - [1999] = {.lex_state = 176}, - [2000] = {.lex_state = 176}, - [2001] = {.lex_state = 176}, - [2002] = {.lex_state = 176}, - [2003] = {.lex_state = 176}, - [2004] = {.lex_state = 176}, - [2005] = {.lex_state = 176}, - [2006] = {.lex_state = 176}, - [2007] = {.lex_state = 176}, - [2008] = {.lex_state = 176}, - [2009] = {.lex_state = 176}, - [2010] = {.lex_state = 176}, - [2011] = {.lex_state = 176}, - [2012] = {.lex_state = 176}, - [2013] = {.lex_state = 176}, - [2014] = {.lex_state = 176}, - [2015] = {.lex_state = 176}, - [2016] = {.lex_state = 176}, - [2017] = {.lex_state = 176}, - [2018] = {.lex_state = 176}, - [2019] = {.lex_state = 176}, - [2020] = {.lex_state = 176}, - [2021] = {.lex_state = 176}, - [2022] = {.lex_state = 176}, + [1859] = {.lex_state = 178}, + [1860] = {.lex_state = 238}, + [1861] = {.lex_state = 220}, + [1862] = {.lex_state = 193}, + [1863] = {.lex_state = 238}, + [1864] = {.lex_state = 238}, + [1865] = {.lex_state = 238}, + [1866] = {.lex_state = 238}, + [1867] = {.lex_state = 238}, + [1868] = {.lex_state = 238}, + [1869] = {.lex_state = 220}, + [1870] = {.lex_state = 220}, + [1871] = {.lex_state = 238}, + [1872] = {.lex_state = 220}, + [1873] = {.lex_state = 238}, + [1874] = {.lex_state = 238}, + [1875] = {.lex_state = 238}, + [1876] = {.lex_state = 238}, + [1877] = {.lex_state = 238}, + [1878] = {.lex_state = 220}, + [1879] = {.lex_state = 238}, + [1880] = {.lex_state = 220}, + [1881] = {.lex_state = 238}, + [1882] = {.lex_state = 238}, + [1883] = {.lex_state = 238}, + [1884] = {.lex_state = 238}, + [1885] = {.lex_state = 238}, + [1886] = {.lex_state = 220}, + [1887] = {.lex_state = 238}, + [1888] = {.lex_state = 238}, + [1889] = {.lex_state = 238}, + [1890] = {.lex_state = 238}, + [1891] = {.lex_state = 238}, + [1892] = {.lex_state = 220}, + [1893] = {.lex_state = 178}, + [1894] = {.lex_state = 238}, + [1895] = {.lex_state = 178}, + [1896] = {.lex_state = 238}, + [1897] = {.lex_state = 220}, + [1898] = {.lex_state = 238}, + [1899] = {.lex_state = 220}, + [1900] = {.lex_state = 238}, + [1901] = {.lex_state = 238}, + [1902] = {.lex_state = 238}, + [1903] = {.lex_state = 238}, + [1904] = {.lex_state = 238}, + [1905] = {.lex_state = 238}, + [1906] = {.lex_state = 238}, + [1907] = {.lex_state = 238}, + [1908] = {.lex_state = 194}, + [1909] = {.lex_state = 238}, + [1910] = {.lex_state = 182}, + [1911] = {.lex_state = 238}, + [1912] = {.lex_state = 238}, + [1913] = {.lex_state = 238}, + [1914] = {.lex_state = 238}, + [1915] = {.lex_state = 238}, + [1916] = {.lex_state = 224}, + [1917] = {.lex_state = 185}, + [1918] = {.lex_state = 220}, + [1919] = {.lex_state = 195}, + [1920] = {.lex_state = 224}, + [1921] = {.lex_state = 193}, + [1922] = {.lex_state = 183}, + [1923] = {.lex_state = 193}, + [1924] = {.lex_state = 239}, + [1925] = {.lex_state = 237}, + [1926] = {.lex_state = 238}, + [1927] = {.lex_state = 238}, + [1928] = {.lex_state = 238}, + [1929] = {.lex_state = 224}, + [1930] = {.lex_state = 183}, + [1931] = {.lex_state = 224}, + [1932] = {.lex_state = 224}, + [1933] = {.lex_state = 185}, + [1934] = {.lex_state = 224}, + [1935] = {.lex_state = 224}, + [1936] = {.lex_state = 224}, + [1937] = {.lex_state = 238}, + [1938] = {.lex_state = 193}, + [1939] = {.lex_state = 224}, + [1940] = {.lex_state = 202}, + [1941] = {.lex_state = 224}, + [1942] = {.lex_state = 237}, + [1943] = {.lex_state = 224}, + [1944] = {.lex_state = 183}, + [1945] = {.lex_state = 224}, + [1946] = {.lex_state = 224}, + [1947] = {.lex_state = 224}, + [1948] = {.lex_state = 224}, + [1949] = {.lex_state = 224}, + [1950] = {.lex_state = 224}, + [1951] = {.lex_state = 237}, + [1952] = {.lex_state = 179}, + [1953] = {.lex_state = 224}, + [1954] = {.lex_state = 224}, + [1955] = {.lex_state = 224}, + [1956] = {.lex_state = 224}, + [1957] = {.lex_state = 185}, + [1958] = {.lex_state = 224}, + [1959] = {.lex_state = 185}, + [1960] = {.lex_state = 224}, + [1961] = {.lex_state = 224}, + [1962] = {.lex_state = 224}, + [1963] = {.lex_state = 224}, + [1964] = {.lex_state = 224}, + [1965] = {.lex_state = 238}, + [1966] = {.lex_state = 238}, + [1967] = {.lex_state = 224}, + [1968] = {.lex_state = 239}, + [1969] = {.lex_state = 181}, + [1970] = {.lex_state = 185}, + [1971] = {.lex_state = 238}, + [1972] = {.lex_state = 238}, + [1973] = {.lex_state = 224}, + [1974] = {.lex_state = 183}, + [1975] = {.lex_state = 239}, + [1976] = {.lex_state = 185}, + [1977] = {.lex_state = 185}, + [1978] = {.lex_state = 185}, + [1979] = {.lex_state = 224}, + [1980] = {.lex_state = 224}, + [1981] = {.lex_state = 224}, + [1982] = {.lex_state = 239}, + [1983] = {.lex_state = 224}, + [1984] = {.lex_state = 238}, + [1985] = {.lex_state = 224}, + [1986] = {.lex_state = 179}, + [1987] = {.lex_state = 224}, + [1988] = {.lex_state = 224}, + [1989] = {.lex_state = 224}, + [1990] = {.lex_state = 224}, + [1991] = {.lex_state = 224}, + [1992] = {.lex_state = 183}, + [1993] = {.lex_state = 183}, + [1994] = {.lex_state = 183}, + [1995] = {.lex_state = 183}, + [1996] = {.lex_state = 183}, + [1997] = {.lex_state = 181}, + [1998] = {.lex_state = 181}, + [1999] = {.lex_state = 238}, + [2000] = {.lex_state = 183}, + [2001] = {.lex_state = 224}, + [2002] = {.lex_state = 238}, + [2003] = {.lex_state = 224}, + [2004] = {.lex_state = 224}, + [2005] = {.lex_state = 224}, + [2006] = {.lex_state = 183}, + [2007] = {.lex_state = 224}, + [2008] = {.lex_state = 238}, + [2009] = {.lex_state = 237}, + [2010] = {.lex_state = 193}, + [2011] = {.lex_state = 193}, + [2012] = {.lex_state = 237}, + [2013] = {.lex_state = 188}, + [2014] = {.lex_state = 185}, + [2015] = {.lex_state = 193}, + [2016] = {.lex_state = 239}, + [2017] = {.lex_state = 193}, + [2018] = {.lex_state = 193}, + [2019] = {.lex_state = 238}, + [2020] = {.lex_state = 238}, + [2021] = {.lex_state = 188}, + [2022] = {.lex_state = 188}, [2023] = {.lex_state = 176}, - [2024] = {.lex_state = 176}, - [2025] = {.lex_state = 176}, - [2026] = {.lex_state = 176}, - [2027] = {.lex_state = 176}, - [2028] = {.lex_state = 176}, - [2029] = {.lex_state = 176}, - [2030] = {.lex_state = 176}, - [2031] = {.lex_state = 176}, - [2032] = {.lex_state = 176}, - [2033] = {.lex_state = 176}, - [2034] = {.lex_state = 176}, - [2035] = {.lex_state = 176}, - [2036] = {.lex_state = 176}, - [2037] = {.lex_state = 176}, - [2038] = {.lex_state = 176}, - [2039] = {.lex_state = 176}, - [2040] = {.lex_state = 176}, - [2041] = {.lex_state = 176}, - [2042] = {.lex_state = 176}, - [2043] = {.lex_state = 176}, - [2044] = {.lex_state = 176}, - [2045] = {.lex_state = 176}, - [2046] = {.lex_state = 176}, - [2047] = {.lex_state = 176}, - [2048] = {.lex_state = 176}, - [2049] = {.lex_state = 176}, - [2050] = {.lex_state = 176}, - [2051] = {.lex_state = 176}, - [2052] = {.lex_state = 176}, - [2053] = {.lex_state = 176}, - [2054] = {.lex_state = 176}, - [2055] = {.lex_state = 176}, - [2056] = {.lex_state = 176}, - [2057] = {.lex_state = 176}, - [2058] = {.lex_state = 176}, - [2059] = {.lex_state = 176}, - [2060] = {.lex_state = 176}, - [2061] = {.lex_state = 176}, - [2062] = {.lex_state = 176}, - [2063] = {.lex_state = 176}, - [2064] = {.lex_state = 176}, - [2065] = {.lex_state = 176}, - [2066] = {.lex_state = 176}, - [2067] = {.lex_state = 176}, - [2068] = {.lex_state = 176}, - [2069] = {.lex_state = 176}, - [2070] = {.lex_state = 176}, - [2071] = {.lex_state = 176}, - [2072] = {.lex_state = 176}, - [2073] = {.lex_state = 176}, - [2074] = {.lex_state = 176}, - [2075] = {.lex_state = 176}, - [2076] = {.lex_state = 176}, - [2077] = {.lex_state = 176}, - [2078] = {.lex_state = 176}, - [2079] = {.lex_state = 176}, - [2080] = {.lex_state = 176}, - [2081] = {.lex_state = 176}, - [2082] = {.lex_state = 176}, - [2083] = {.lex_state = 176}, - [2084] = {.lex_state = 176}, - [2085] = {.lex_state = 176}, - [2086] = {.lex_state = 176}, - [2087] = {.lex_state = 176}, - [2088] = {.lex_state = 176}, - [2089] = {.lex_state = 176}, - [2090] = {.lex_state = 176}, - [2091] = {.lex_state = 176}, - [2092] = {.lex_state = 176}, - [2093] = {.lex_state = 176}, - [2094] = {.lex_state = 176}, - [2095] = {.lex_state = 176}, - [2096] = {.lex_state = 176}, - [2097] = {.lex_state = 176}, - [2098] = {.lex_state = 176}, - [2099] = {.lex_state = 176}, - [2100] = {.lex_state = 176}, - [2101] = {.lex_state = 176}, - [2102] = {.lex_state = 176}, - [2103] = {.lex_state = 176}, - [2104] = {.lex_state = 176}, - [2105] = {.lex_state = 176}, - [2106] = {.lex_state = 176}, - [2107] = {.lex_state = 176}, - [2108] = {.lex_state = 176}, - [2109] = {.lex_state = 176}, - [2110] = {.lex_state = 176}, - [2111] = {.lex_state = 176}, - [2112] = {.lex_state = 176}, - [2113] = {.lex_state = 176}, - [2114] = {.lex_state = 176}, - [2115] = {.lex_state = 176}, - [2116] = {.lex_state = 176}, - [2117] = {.lex_state = 176}, - [2118] = {.lex_state = 176}, - [2119] = {.lex_state = 176}, - [2120] = {.lex_state = 176}, - [2121] = {.lex_state = 176}, - [2122] = {.lex_state = 176}, - [2123] = {.lex_state = 176}, - [2124] = {.lex_state = 176}, - [2125] = {.lex_state = 176}, - [2126] = {.lex_state = 176}, - [2127] = {.lex_state = 176}, - [2128] = {.lex_state = 176}, - [2129] = {.lex_state = 176}, - [2130] = {.lex_state = 176}, - [2131] = {.lex_state = 176}, - [2132] = {.lex_state = 176}, - [2133] = {.lex_state = 176}, - [2134] = {.lex_state = 176}, - [2135] = {.lex_state = 176}, - [2136] = {.lex_state = 176}, - [2137] = {.lex_state = 176}, - [2138] = {.lex_state = 176}, - [2139] = {.lex_state = 176}, - [2140] = {.lex_state = 176}, - [2141] = {.lex_state = 176}, - [2142] = {.lex_state = 176}, - [2143] = {.lex_state = 176}, - [2144] = {.lex_state = 176}, - [2145] = {.lex_state = 176}, - [2146] = {.lex_state = 176}, - [2147] = {.lex_state = 176}, - [2148] = {.lex_state = 176}, - [2149] = {.lex_state = 176}, - [2150] = {.lex_state = 176}, - [2151] = {.lex_state = 176}, - [2152] = {.lex_state = 176}, - [2153] = {.lex_state = 176}, - [2154] = {.lex_state = 176}, - [2155] = {.lex_state = 176}, - [2156] = {.lex_state = 176}, - [2157] = {.lex_state = 176}, - [2158] = {.lex_state = 176}, - [2159] = {.lex_state = 176}, - [2160] = {.lex_state = 176}, - [2161] = {.lex_state = 176}, - [2162] = {.lex_state = 176}, - [2163] = {.lex_state = 176}, - [2164] = {.lex_state = 176}, - [2165] = {.lex_state = 176}, - [2166] = {.lex_state = 176}, - [2167] = {.lex_state = 176}, - [2168] = {.lex_state = 176}, - [2169] = {.lex_state = 176}, - [2170] = {.lex_state = 176}, - [2171] = {.lex_state = 176}, - [2172] = {.lex_state = 176}, - [2173] = {.lex_state = 176}, - [2174] = {.lex_state = 176}, - [2175] = {.lex_state = 176}, - [2176] = {.lex_state = 176}, - [2177] = {.lex_state = 176}, - [2178] = {.lex_state = 176}, - [2179] = {.lex_state = 176}, - [2180] = {.lex_state = 176}, - [2181] = {.lex_state = 176}, - [2182] = {.lex_state = 176}, - [2183] = {.lex_state = 176}, - [2184] = {.lex_state = 176}, - [2185] = {.lex_state = 176}, - [2186] = {.lex_state = 176}, - [2187] = {.lex_state = 176}, - [2188] = {.lex_state = 176}, - [2189] = {.lex_state = 176}, - [2190] = {.lex_state = 176}, - [2191] = {.lex_state = 176}, - [2192] = {.lex_state = 176}, - [2193] = {.lex_state = 176}, - [2194] = {.lex_state = 176}, - [2195] = {.lex_state = 176}, - [2196] = {.lex_state = 176}, - [2197] = {.lex_state = 176}, - [2198] = {.lex_state = 176}, - [2199] = {.lex_state = 176}, - [2200] = {.lex_state = 176}, - [2201] = {.lex_state = 176}, - [2202] = {.lex_state = 176}, - [2203] = {.lex_state = 176}, - [2204] = {.lex_state = 176}, - [2205] = {.lex_state = 176}, - [2206] = {.lex_state = 176}, - [2207] = {.lex_state = 176}, - [2208] = {.lex_state = 176}, - [2209] = {.lex_state = 176}, - [2210] = {.lex_state = 176}, - [2211] = {.lex_state = 176}, - [2212] = {.lex_state = 176}, - [2213] = {.lex_state = 176}, - [2214] = {.lex_state = 176}, - [2215] = {.lex_state = 176}, - [2216] = {.lex_state = 176}, - [2217] = {.lex_state = 176}, - [2218] = {.lex_state = 176}, - [2219] = {.lex_state = 176}, - [2220] = {.lex_state = 176}, - [2221] = {.lex_state = 176}, - [2222] = {.lex_state = 176}, - [2223] = {.lex_state = 176}, - [2224] = {.lex_state = 176}, - [2225] = {.lex_state = 176}, - [2226] = {.lex_state = 176}, - [2227] = {.lex_state = 176}, - [2228] = {.lex_state = 176}, - [2229] = {.lex_state = 176}, - [2230] = {.lex_state = 176}, - [2231] = {.lex_state = 176}, - [2232] = {.lex_state = 176}, - [2233] = {.lex_state = 176}, - [2234] = {.lex_state = 176}, - [2235] = {.lex_state = 176}, - [2236] = {.lex_state = 176}, - [2237] = {.lex_state = 176}, - [2238] = {.lex_state = 176}, - [2239] = {.lex_state = 176}, - [2240] = {.lex_state = 176}, - [2241] = {.lex_state = 176}, - [2242] = {.lex_state = 176}, - [2243] = {.lex_state = 176}, - [2244] = {.lex_state = 176}, - [2245] = {.lex_state = 176}, - [2246] = {.lex_state = 176}, - [2247] = {.lex_state = 176}, - [2248] = {.lex_state = 176}, - [2249] = {.lex_state = 176}, - [2250] = {.lex_state = 176}, - [2251] = {.lex_state = 176}, - [2252] = {.lex_state = 176}, - [2253] = {.lex_state = 176}, - [2254] = {.lex_state = 176}, - [2255] = {.lex_state = 176}, - [2256] = {.lex_state = 176}, - [2257] = {.lex_state = 176}, - [2258] = {.lex_state = 176}, - [2259] = {.lex_state = 176}, - [2260] = {.lex_state = 176}, - [2261] = {.lex_state = 176}, - [2262] = {.lex_state = 176}, - [2263] = {.lex_state = 176}, - [2264] = {.lex_state = 176}, - [2265] = {.lex_state = 176}, - [2266] = {.lex_state = 176}, - [2267] = {.lex_state = 176}, - [2268] = {.lex_state = 176}, - [2269] = {.lex_state = 176}, - [2270] = {.lex_state = 176}, - [2271] = {.lex_state = 176}, - [2272] = {.lex_state = 176}, - [2273] = {.lex_state = 176}, - [2274] = {.lex_state = 176}, - [2275] = {.lex_state = 176}, - [2276] = {.lex_state = 176}, - [2277] = {.lex_state = 238}, - [2278] = {.lex_state = 238}, - [2279] = {.lex_state = 238}, - [2280] = {.lex_state = 238}, - [2281] = {.lex_state = 238}, - [2282] = {.lex_state = 172}, - [2283] = {.lex_state = 172}, - [2284] = {.lex_state = 172}, - [2285] = {.lex_state = 202}, - [2286] = {.lex_state = 202}, - [2287] = {.lex_state = 202}, - [2288] = {.lex_state = 202}, - [2289] = {.lex_state = 195}, - [2290] = {.lex_state = 202}, - [2291] = {.lex_state = 202}, - [2292] = {.lex_state = 202}, - [2293] = {.lex_state = 202}, - [2294] = {.lex_state = 202}, - [2295] = {.lex_state = 195}, - [2296] = {.lex_state = 195}, - [2297] = {.lex_state = 195}, - [2298] = {.lex_state = 195}, - [2299] = {.lex_state = 195}, - [2300] = {.lex_state = 195}, - [2301] = {.lex_state = 195}, - [2302] = {.lex_state = 195}, - [2303] = {.lex_state = 202}, - [2304] = {.lex_state = 202}, - [2305] = {.lex_state = 202}, - [2306] = {.lex_state = 202}, - [2307] = {.lex_state = 238}, + [2024] = {.lex_state = 239}, + [2025] = {.lex_state = 193}, + [2026] = {.lex_state = 193}, + [2027] = {.lex_state = 193}, + [2028] = {.lex_state = 193}, + [2029] = {.lex_state = 193}, + [2030] = {.lex_state = 193}, + [2031] = {.lex_state = 193}, + [2032] = {.lex_state = 193}, + [2033] = {.lex_state = 193}, + [2034] = {.lex_state = 193}, + [2035] = {.lex_state = 193}, + [2036] = {.lex_state = 193}, + [2037] = {.lex_state = 193}, + [2038] = {.lex_state = 193}, + [2039] = {.lex_state = 193}, + [2040] = {.lex_state = 193}, + [2041] = {.lex_state = 193}, + [2042] = {.lex_state = 185}, + [2043] = {.lex_state = 183}, + [2044] = {.lex_state = 193}, + [2045] = {.lex_state = 193}, + [2046] = {.lex_state = 193}, + [2047] = {.lex_state = 193}, + [2048] = {.lex_state = 193}, + [2049] = {.lex_state = 186}, + [2050] = {.lex_state = 193}, + [2051] = {.lex_state = 193}, + [2052] = {.lex_state = 193}, + [2053] = {.lex_state = 193}, + [2054] = {.lex_state = 193}, + [2055] = {.lex_state = 193}, + [2056] = {.lex_state = 193}, + [2057] = {.lex_state = 193}, + [2058] = {.lex_state = 193}, + [2059] = {.lex_state = 193}, + [2060] = {.lex_state = 193}, + [2061] = {.lex_state = 193}, + [2062] = {.lex_state = 193}, + [2063] = {.lex_state = 193}, + [2064] = {.lex_state = 193}, + [2065] = {.lex_state = 193}, + [2066] = {.lex_state = 193}, + [2067] = {.lex_state = 193}, + [2068] = {.lex_state = 193}, + [2069] = {.lex_state = 193}, + [2070] = {.lex_state = 193}, + [2071] = {.lex_state = 193}, + [2072] = {.lex_state = 193}, + [2073] = {.lex_state = 193}, + [2074] = {.lex_state = 193}, + [2075] = {.lex_state = 193}, + [2076] = {.lex_state = 193}, + [2077] = {.lex_state = 193}, + [2078] = {.lex_state = 193}, + [2079] = {.lex_state = 193}, + [2080] = {.lex_state = 193}, + [2081] = {.lex_state = 193}, + [2082] = {.lex_state = 185}, + [2083] = {.lex_state = 237}, + [2084] = {.lex_state = 193}, + [2085] = {.lex_state = 193}, + [2086] = {.lex_state = 193}, + [2087] = {.lex_state = 193}, + [2088] = {.lex_state = 193}, + [2089] = {.lex_state = 193}, + [2090] = {.lex_state = 185}, + [2091] = {.lex_state = 193}, + [2092] = {.lex_state = 193}, + [2093] = {.lex_state = 193}, + [2094] = {.lex_state = 193}, + [2095] = {.lex_state = 186}, + [2096] = {.lex_state = 206}, + [2097] = {.lex_state = 238}, + [2098] = {.lex_state = 193}, + [2099] = {.lex_state = 193}, + [2100] = {.lex_state = 193}, + [2101] = {.lex_state = 193}, + [2102] = {.lex_state = 238}, + [2103] = {.lex_state = 193}, + [2104] = {.lex_state = 193}, + [2105] = {.lex_state = 193}, + [2106] = {.lex_state = 206}, + [2107] = {.lex_state = 193}, + [2108] = {.lex_state = 193}, + [2109] = {.lex_state = 193}, + [2110] = {.lex_state = 239}, + [2111] = {.lex_state = 181}, + [2112] = {.lex_state = 194}, + [2113] = {.lex_state = 238}, + [2114] = {.lex_state = 239}, + [2115] = {.lex_state = 237}, + [2116] = {.lex_state = 237}, + [2117] = {.lex_state = 237}, + [2118] = {.lex_state = 183}, + [2119] = {.lex_state = 207}, + [2120] = {.lex_state = 238}, + [2121] = {.lex_state = 185}, + [2122] = {.lex_state = 239}, + [2123] = {.lex_state = 237}, + [2124] = {.lex_state = 239}, + [2125] = {.lex_state = 237}, + [2126] = {.lex_state = 239}, + [2127] = {.lex_state = 239}, + [2128] = {.lex_state = 239}, + [2129] = {.lex_state = 239}, + [2130] = {.lex_state = 239}, + [2131] = {.lex_state = 237}, + [2132] = {.lex_state = 185}, + [2133] = {.lex_state = 239}, + [2134] = {.lex_state = 239}, + [2135] = {.lex_state = 185}, + [2136] = {.lex_state = 239}, + [2137] = {.lex_state = 237}, + [2138] = {.lex_state = 237}, + [2139] = {.lex_state = 239}, + [2140] = {.lex_state = 239}, + [2141] = {.lex_state = 237}, + [2142] = {.lex_state = 239}, + [2143] = {.lex_state = 237}, + [2144] = {.lex_state = 237}, + [2145] = {.lex_state = 237}, + [2146] = {.lex_state = 239}, + [2147] = {.lex_state = 237}, + [2148] = {.lex_state = 239}, + [2149] = {.lex_state = 239}, + [2150] = {.lex_state = 188}, + [2151] = {.lex_state = 239}, + [2152] = {.lex_state = 181}, + [2153] = {.lex_state = 239}, + [2154] = {.lex_state = 181}, + [2155] = {.lex_state = 237}, + [2156] = {.lex_state = 237}, + [2157] = {.lex_state = 185}, + [2158] = {.lex_state = 185}, + [2159] = {.lex_state = 239}, + [2160] = {.lex_state = 239}, + [2161] = {.lex_state = 239}, + [2162] = {.lex_state = 239}, + [2163] = {.lex_state = 237}, + [2164] = {.lex_state = 239}, + [2165] = {.lex_state = 239}, + [2166] = {.lex_state = 181}, + [2167] = {.lex_state = 225}, + [2168] = {.lex_state = 239}, + [2169] = {.lex_state = 239}, + [2170] = {.lex_state = 239}, + [2171] = {.lex_state = 239}, + [2172] = {.lex_state = 239}, + [2173] = {.lex_state = 239}, + [2174] = {.lex_state = 239}, + [2175] = {.lex_state = 239}, + [2176] = {.lex_state = 239}, + [2177] = {.lex_state = 239}, + [2178] = {.lex_state = 239}, + [2179] = {.lex_state = 237}, + [2180] = {.lex_state = 239}, + [2181] = {.lex_state = 237}, + [2182] = {.lex_state = 237}, + [2183] = {.lex_state = 237}, + [2184] = {.lex_state = 237}, + [2185] = {.lex_state = 237}, + [2186] = {.lex_state = 239}, + [2187] = {.lex_state = 237}, + [2188] = {.lex_state = 239}, + [2189] = {.lex_state = 237}, + [2190] = {.lex_state = 237}, + [2191] = {.lex_state = 237}, + [2192] = {.lex_state = 237}, + [2193] = {.lex_state = 237}, + [2194] = {.lex_state = 237}, + [2195] = {.lex_state = 237}, + [2196] = {.lex_state = 237}, + [2197] = {.lex_state = 237}, + [2198] = {.lex_state = 237}, + [2199] = {.lex_state = 239}, + [2200] = {.lex_state = 239}, + [2201] = {.lex_state = 239}, + [2202] = {.lex_state = 237}, + [2203] = {.lex_state = 237}, + [2204] = {.lex_state = 239}, + [2205] = {.lex_state = 237}, + [2206] = {.lex_state = 239}, + [2207] = {.lex_state = 239}, + [2208] = {.lex_state = 237}, + [2209] = {.lex_state = 239}, + [2210] = {.lex_state = 237}, + [2211] = {.lex_state = 239}, + [2212] = {.lex_state = 239}, + [2213] = {.lex_state = 239}, + [2214] = {.lex_state = 237}, + [2215] = {.lex_state = 239}, + [2216] = {.lex_state = 239}, + [2217] = {.lex_state = 181}, + [2218] = {.lex_state = 237}, + [2219] = {.lex_state = 237}, + [2220] = {.lex_state = 239}, + [2221] = {.lex_state = 237}, + [2222] = {.lex_state = 237}, + [2223] = {.lex_state = 237}, + [2224] = {.lex_state = 237}, + [2225] = {.lex_state = 237}, + [2226] = {.lex_state = 237}, + [2227] = {.lex_state = 239}, + [2228] = {.lex_state = 237}, + [2229] = {.lex_state = 239}, + [2230] = {.lex_state = 237}, + [2231] = {.lex_state = 237}, + [2232] = {.lex_state = 237}, + [2233] = {.lex_state = 239}, + [2234] = {.lex_state = 239}, + [2235] = {.lex_state = 239}, + [2236] = {.lex_state = 239}, + [2237] = {.lex_state = 181}, + [2238] = {.lex_state = 237}, + [2239] = {.lex_state = 237}, + [2240] = {.lex_state = 239}, + [2241] = {.lex_state = 239}, + [2242] = {.lex_state = 237}, + [2243] = {.lex_state = 237}, + [2244] = {.lex_state = 239}, + [2245] = {.lex_state = 239}, + [2246] = {.lex_state = 239}, + [2247] = {.lex_state = 239}, + [2248] = {.lex_state = 237}, + [2249] = {.lex_state = 237}, + [2250] = {.lex_state = 237}, + [2251] = {.lex_state = 237}, + [2252] = {.lex_state = 237}, + [2253] = {.lex_state = 237}, + [2254] = {.lex_state = 237}, + [2255] = {.lex_state = 239}, + [2256] = {.lex_state = 237}, + [2257] = {.lex_state = 237}, + [2258] = {.lex_state = 237}, + [2259] = {.lex_state = 237}, + [2260] = {.lex_state = 239}, + [2261] = {.lex_state = 239}, + [2262] = {.lex_state = 237}, + [2263] = {.lex_state = 237}, + [2264] = {.lex_state = 239}, + [2265] = {.lex_state = 237}, + [2266] = {.lex_state = 237}, + [2267] = {.lex_state = 237}, + [2268] = {.lex_state = 239}, + [2269] = {.lex_state = 239}, + [2270] = {.lex_state = 237}, + [2271] = {.lex_state = 181}, + [2272] = {.lex_state = 239}, + [2273] = {.lex_state = 181}, + [2274] = {.lex_state = 237}, + [2275] = {.lex_state = 237}, + [2276] = {.lex_state = 237}, + [2277] = {.lex_state = 239}, + [2278] = {.lex_state = 237}, + [2279] = {.lex_state = 239}, + [2280] = {.lex_state = 237}, + [2281] = {.lex_state = 237}, + [2282] = {.lex_state = 239}, + [2283] = {.lex_state = 239}, + [2284] = {.lex_state = 237}, + [2285] = {.lex_state = 239}, + [2286] = {.lex_state = 237}, + [2287] = {.lex_state = 239}, + [2288] = {.lex_state = 239}, + [2289] = {.lex_state = 239}, + [2290] = {.lex_state = 239}, + [2291] = {.lex_state = 239}, + [2292] = {.lex_state = 237}, + [2293] = {.lex_state = 237}, + [2294] = {.lex_state = 198}, + [2295] = {.lex_state = 238}, + [2296] = {.lex_state = 238}, + [2297] = {.lex_state = 229}, + [2298] = {.lex_state = 204}, + [2299] = {.lex_state = 204}, + [2300] = {.lex_state = 207}, + [2301] = {.lex_state = 188}, + [2302] = {.lex_state = 188}, + [2303] = {.lex_state = 238}, + [2304] = {.lex_state = 238}, + [2305] = {.lex_state = 238}, + [2306] = {.lex_state = 238}, + [2307] = {.lex_state = 185}, [2308] = {.lex_state = 238}, - [2309] = {.lex_state = 195}, - [2310] = {.lex_state = 195}, - [2311] = {.lex_state = 195}, - [2312] = {.lex_state = 195}, - [2313] = {.lex_state = 195}, - [2314] = {.lex_state = 195}, - [2315] = {.lex_state = 195}, - [2316] = {.lex_state = 195}, - [2317] = {.lex_state = 178}, - [2318] = {.lex_state = 179}, - [2319] = {.lex_state = 219}, - [2320] = {.lex_state = 219}, - [2321] = {.lex_state = 219}, - [2322] = {.lex_state = 219}, - [2323] = {.lex_state = 219}, - [2324] = {.lex_state = 186}, - [2325] = {.lex_state = 219}, - [2326] = {.lex_state = 219}, + [2309] = {.lex_state = 207}, + [2310] = {.lex_state = 185}, + [2311] = {.lex_state = 207}, + [2312] = {.lex_state = 181}, + [2313] = {.lex_state = 229}, + [2314] = {.lex_state = 238}, + [2315] = {.lex_state = 238}, + [2316] = {.lex_state = 238}, + [2317] = {.lex_state = 198}, + [2318] = {.lex_state = 238}, + [2319] = {.lex_state = 188}, + [2320] = {.lex_state = 188}, + [2321] = {.lex_state = 181}, + [2322] = {.lex_state = 185}, + [2323] = {.lex_state = 238}, + [2324] = {.lex_state = 207}, + [2325] = {.lex_state = 185}, + [2326] = {.lex_state = 238}, [2327] = {.lex_state = 238}, - [2328] = {.lex_state = 238}, + [2328] = {.lex_state = 196}, [2329] = {.lex_state = 238}, - [2330] = {.lex_state = 238}, - [2331] = {.lex_state = 238}, + [2330] = {.lex_state = 181}, + [2331] = {.lex_state = 181}, [2332] = {.lex_state = 238}, - [2333] = {.lex_state = 238}, - [2334] = {.lex_state = 238}, - [2335] = {.lex_state = 238}, - [2336] = {.lex_state = 238}, - [2337] = {.lex_state = 238}, - [2338] = {.lex_state = 238}, - [2339] = {.lex_state = 238}, - [2340] = {.lex_state = 238}, - [2341] = {.lex_state = 238}, - [2342] = {.lex_state = 238}, - [2343] = {.lex_state = 238}, - [2344] = {.lex_state = 238}, - [2345] = {.lex_state = 238}, - [2346] = {.lex_state = 238}, - [2347] = {.lex_state = 238}, - [2348] = {.lex_state = 238}, - [2349] = {.lex_state = 238}, - [2350] = {.lex_state = 238}, - [2351] = {.lex_state = 238}, - [2352] = {.lex_state = 238}, - [2353] = {.lex_state = 238}, - [2354] = {.lex_state = 238}, - [2355] = {.lex_state = 238}, - [2356] = {.lex_state = 238}, - [2357] = {.lex_state = 238}, - [2358] = {.lex_state = 238}, - [2359] = {.lex_state = 238}, - [2360] = {.lex_state = 219}, - [2361] = {.lex_state = 219}, - [2362] = {.lex_state = 219}, - [2363] = {.lex_state = 194}, - [2364] = {.lex_state = 238}, - [2365] = {.lex_state = 238}, - [2366] = {.lex_state = 238}, - [2367] = {.lex_state = 194}, - [2368] = {.lex_state = 238}, - [2369] = {.lex_state = 194}, + [2333] = {.lex_state = 204}, + [2334] = {.lex_state = 204}, + [2335] = {.lex_state = 204}, + [2336] = {.lex_state = 214}, + [2337] = {.lex_state = 188}, + [2338] = {.lex_state = 204}, + [2339] = {.lex_state = 222}, + [2340] = {.lex_state = 225}, + [2341] = {.lex_state = 204}, + [2342] = {.lex_state = 188}, + [2343] = {.lex_state = 188}, + [2344] = {.lex_state = 204}, + [2345] = {.lex_state = 214}, + [2346] = {.lex_state = 188}, + [2347] = {.lex_state = 225}, + [2348] = {.lex_state = 204}, + [2349] = {.lex_state = 211}, + [2350] = {.lex_state = 204}, + [2351] = {.lex_state = 204}, + [2352] = {.lex_state = 207}, + [2353] = {.lex_state = 222}, + [2354] = {.lex_state = 204}, + [2355] = {.lex_state = 207}, + [2356] = {.lex_state = 204}, + [2357] = {.lex_state = 204}, + [2358] = {.lex_state = 181}, + [2359] = {.lex_state = 181}, + [2360] = {.lex_state = 207}, + [2361] = {.lex_state = 228}, + [2362] = {.lex_state = 204}, + [2363] = {.lex_state = 207}, + [2364] = {.lex_state = 181}, + [2365] = {.lex_state = 225}, + [2366] = {.lex_state = 222}, + [2367] = {.lex_state = 225}, + [2368] = {.lex_state = 225}, + [2369] = {.lex_state = 225}, [2370] = {.lex_state = 194}, - [2371] = {.lex_state = 194}, - [2372] = {.lex_state = 194}, - [2373] = {.lex_state = 194}, - [2374] = {.lex_state = 238}, - [2375] = {.lex_state = 238}, - [2376] = {.lex_state = 238}, - [2377] = {.lex_state = 204}, - [2378] = {.lex_state = 204}, - [2379] = {.lex_state = 204}, - [2380] = {.lex_state = 204}, - [2381] = {.lex_state = 204}, - [2382] = {.lex_state = 204}, - [2383] = {.lex_state = 204}, - [2384] = {.lex_state = 238}, - [2385] = {.lex_state = 172}, - [2386] = {.lex_state = 172}, - [2387] = {.lex_state = 238}, - [2388] = {.lex_state = 238}, - [2389] = {.lex_state = 219}, - [2390] = {.lex_state = 238}, - [2391] = {.lex_state = 185}, - [2392] = {.lex_state = 219}, - [2393] = {.lex_state = 219}, - [2394] = {.lex_state = 195}, - [2395] = {.lex_state = 238}, - [2396] = {.lex_state = 219}, - [2397] = {.lex_state = 185}, - [2398] = {.lex_state = 219}, - [2399] = {.lex_state = 219}, - [2400] = {.lex_state = 219}, - [2401] = {.lex_state = 219}, - [2402] = {.lex_state = 219}, - [2403] = {.lex_state = 219}, - [2404] = {.lex_state = 219}, - [2405] = {.lex_state = 219}, - [2406] = {.lex_state = 183}, - [2407] = {.lex_state = 219}, - [2408] = {.lex_state = 238}, - [2409] = {.lex_state = 219}, - [2410] = {.lex_state = 185}, - [2411] = {.lex_state = 238}, - [2412] = {.lex_state = 238}, - [2413] = {.lex_state = 194}, - [2414] = {.lex_state = 194}, - [2415] = {.lex_state = 193}, - [2416] = {.lex_state = 238}, - [2417] = {.lex_state = 194}, - [2418] = {.lex_state = 195}, - [2419] = {.lex_state = 194}, - [2420] = {.lex_state = 193}, - [2421] = {.lex_state = 194}, + [2371] = {.lex_state = 225}, + [2372] = {.lex_state = 181}, + [2373] = {.lex_state = 225}, + [2374] = {.lex_state = 194}, + [2375] = {.lex_state = 181}, + [2376] = {.lex_state = 207}, + [2377] = {.lex_state = 225}, + [2378] = {.lex_state = 225}, + [2379] = {.lex_state = 221}, + [2380] = {.lex_state = 238}, + [2381] = {.lex_state = 238}, + [2382] = {.lex_state = 238}, + [2383] = {.lex_state = 225}, + [2384] = {.lex_state = 225}, + [2385] = {.lex_state = 204}, + [2386] = {.lex_state = 225}, + [2387] = {.lex_state = 225}, + [2388] = {.lex_state = 196}, + [2389] = {.lex_state = 207}, + [2390] = {.lex_state = 194}, + [2391] = {.lex_state = 181}, + [2392] = {.lex_state = 194}, + [2393] = {.lex_state = 204}, + [2394] = {.lex_state = 207}, + [2395] = {.lex_state = 194}, + [2396] = {.lex_state = 225}, + [2397] = {.lex_state = 194}, + [2398] = {.lex_state = 207}, + [2399] = {.lex_state = 207}, + [2400] = {.lex_state = 204}, + [2401] = {.lex_state = 196}, + [2402] = {.lex_state = 196}, + [2403] = {.lex_state = 207}, + [2404] = {.lex_state = 205}, + [2405] = {.lex_state = 181}, + [2406] = {.lex_state = 181}, + [2407] = {.lex_state = 202}, + [2408] = {.lex_state = 207}, + [2409] = {.lex_state = 205}, + [2410] = {.lex_state = 181}, + [2411] = {.lex_state = 207}, + [2412] = {.lex_state = 207}, + [2413] = {.lex_state = 207}, + [2414] = {.lex_state = 207}, + [2415] = {.lex_state = 198}, + [2416] = {.lex_state = 207}, + [2417] = {.lex_state = 207}, + [2418] = {.lex_state = 207}, + [2419] = {.lex_state = 202}, + [2420] = {.lex_state = 205}, + [2421] = {.lex_state = 198}, [2422] = {.lex_state = 194}, - [2423] = {.lex_state = 193}, - [2424] = {.lex_state = 193}, - [2425] = {.lex_state = 194}, - [2426] = {.lex_state = 194}, - [2427] = {.lex_state = 238}, - [2428] = {.lex_state = 238}, - [2429] = {.lex_state = 238}, - [2430] = {.lex_state = 238}, - [2431] = {.lex_state = 238}, - [2432] = {.lex_state = 238}, - [2433] = {.lex_state = 238}, - [2434] = {.lex_state = 238}, - [2435] = {.lex_state = 238}, - [2436] = {.lex_state = 220}, - [2437] = {.lex_state = 183}, - [2438] = {.lex_state = 220}, - [2439] = {.lex_state = 238}, - [2440] = {.lex_state = 238}, - [2441] = {.lex_state = 238}, - [2442] = {.lex_state = 238}, - [2443] = {.lex_state = 238}, - [2444] = {.lex_state = 238}, - [2445] = {.lex_state = 238}, - [2446] = {.lex_state = 238}, - [2447] = {.lex_state = 238}, - [2448] = {.lex_state = 238}, - [2449] = {.lex_state = 238}, - [2450] = {.lex_state = 238}, - [2451] = {.lex_state = 238}, - [2452] = {.lex_state = 238}, - [2453] = {.lex_state = 238}, - [2454] = {.lex_state = 238}, - [2455] = {.lex_state = 238}, - [2456] = {.lex_state = 238}, - [2457] = {.lex_state = 220}, - [2458] = {.lex_state = 185}, - [2459] = {.lex_state = 238}, - [2460] = {.lex_state = 238}, - [2461] = {.lex_state = 238}, - [2462] = {.lex_state = 238}, - [2463] = {.lex_state = 238}, - [2464] = {.lex_state = 238}, - [2465] = {.lex_state = 238}, - [2466] = {.lex_state = 224}, - [2467] = {.lex_state = 238}, - [2468] = {.lex_state = 238}, - [2469] = {.lex_state = 238}, - [2470] = {.lex_state = 182}, - [2471] = {.lex_state = 182}, - [2472] = {.lex_state = 238}, - [2473] = {.lex_state = 238}, - [2474] = {.lex_state = 238}, - [2475] = {.lex_state = 220}, - [2476] = {.lex_state = 238}, - [2477] = {.lex_state = 220}, - [2478] = {.lex_state = 238}, - [2479] = {.lex_state = 220}, - [2480] = {.lex_state = 238}, - [2481] = {.lex_state = 238}, - [2482] = {.lex_state = 238}, - [2483] = {.lex_state = 238}, - [2484] = {.lex_state = 238}, - [2485] = {.lex_state = 238}, - [2486] = {.lex_state = 238}, - [2487] = {.lex_state = 238}, - [2488] = {.lex_state = 220}, - [2489] = {.lex_state = 238}, - [2490] = {.lex_state = 238}, - [2491] = {.lex_state = 238}, - [2492] = {.lex_state = 238}, - [2493] = {.lex_state = 238}, - [2494] = {.lex_state = 238}, - [2495] = {.lex_state = 238}, - [2496] = {.lex_state = 238}, - [2497] = {.lex_state = 238}, - [2498] = {.lex_state = 238}, - [2499] = {.lex_state = 238}, - [2500] = {.lex_state = 238}, - [2501] = {.lex_state = 238}, - [2502] = {.lex_state = 220}, - [2503] = {.lex_state = 238}, - [2504] = {.lex_state = 238}, - [2505] = {.lex_state = 238}, - [2506] = {.lex_state = 238}, - [2507] = {.lex_state = 238}, - [2508] = {.lex_state = 238}, - [2509] = {.lex_state = 238}, - [2510] = {.lex_state = 238}, - [2511] = {.lex_state = 220}, - [2512] = {.lex_state = 238}, - [2513] = {.lex_state = 238}, - [2514] = {.lex_state = 238}, - [2515] = {.lex_state = 182}, - [2516] = {.lex_state = 220}, - [2517] = {.lex_state = 178}, - [2518] = {.lex_state = 194}, - [2519] = {.lex_state = 238}, - [2520] = {.lex_state = 238}, - [2521] = {.lex_state = 238}, - [2522] = {.lex_state = 220}, - [2523] = {.lex_state = 238}, - [2524] = {.lex_state = 238}, - [2525] = {.lex_state = 238}, - [2526] = {.lex_state = 238}, - [2527] = {.lex_state = 238}, - [2528] = {.lex_state = 238}, - [2529] = {.lex_state = 238}, - [2530] = {.lex_state = 178}, - [2531] = {.lex_state = 238}, - [2532] = {.lex_state = 193}, - [2533] = {.lex_state = 238}, - [2534] = {.lex_state = 193}, - [2535] = {.lex_state = 178}, - [2536] = {.lex_state = 238}, - [2537] = {.lex_state = 238}, - [2538] = {.lex_state = 238}, - [2539] = {.lex_state = 204}, - [2540] = {.lex_state = 238}, - [2541] = {.lex_state = 238}, - [2542] = {.lex_state = 238}, - [2543] = {.lex_state = 238}, - [2544] = {.lex_state = 238}, - [2545] = {.lex_state = 238}, - [2546] = {.lex_state = 238}, - [2547] = {.lex_state = 238}, - [2548] = {.lex_state = 238}, - [2549] = {.lex_state = 238}, - [2550] = {.lex_state = 238}, - [2551] = {.lex_state = 238}, - [2552] = {.lex_state = 176}, - [2553] = {.lex_state = 220}, - [2554] = {.lex_state = 238}, - [2555] = {.lex_state = 220}, - [2556] = {.lex_state = 238}, - [2557] = {.lex_state = 238}, - [2558] = {.lex_state = 224}, - [2559] = {.lex_state = 224}, - [2560] = {.lex_state = 238}, - [2561] = {.lex_state = 224}, - [2562] = {.lex_state = 183}, - [2563] = {.lex_state = 238}, - [2564] = {.lex_state = 224}, - [2565] = {.lex_state = 239}, - [2566] = {.lex_state = 224}, - [2567] = {.lex_state = 224}, - [2568] = {.lex_state = 238}, - [2569] = {.lex_state = 224}, - [2570] = {.lex_state = 179}, - [2571] = {.lex_state = 183}, - [2572] = {.lex_state = 224}, - [2573] = {.lex_state = 238}, - [2574] = {.lex_state = 224}, - [2575] = {.lex_state = 237}, - [2576] = {.lex_state = 238}, - [2577] = {.lex_state = 224}, - [2578] = {.lex_state = 224}, - [2579] = {.lex_state = 179}, - [2580] = {.lex_state = 224}, - [2581] = {.lex_state = 224}, - [2582] = {.lex_state = 224}, - [2583] = {.lex_state = 181}, - [2584] = {.lex_state = 183}, - [2585] = {.lex_state = 238}, - [2586] = {.lex_state = 238}, - [2587] = {.lex_state = 224}, - [2588] = {.lex_state = 237}, - [2589] = {.lex_state = 237}, - [2590] = {.lex_state = 239}, - [2591] = {.lex_state = 224}, - [2592] = {.lex_state = 224}, - [2593] = {.lex_state = 224}, - [2594] = {.lex_state = 224}, - [2595] = {.lex_state = 224}, - [2596] = {.lex_state = 224}, - [2597] = {.lex_state = 224}, - [2598] = {.lex_state = 224}, - [2599] = {.lex_state = 224}, - [2600] = {.lex_state = 193}, - [2601] = {.lex_state = 238}, - [2602] = {.lex_state = 204}, - [2603] = {.lex_state = 181}, - [2604] = {.lex_state = 238}, - [2605] = {.lex_state = 183}, - [2606] = {.lex_state = 224}, - [2607] = {.lex_state = 183}, - [2608] = {.lex_state = 224}, - [2609] = {.lex_state = 224}, - [2610] = {.lex_state = 238}, - [2611] = {.lex_state = 224}, - [2612] = {.lex_state = 193}, - [2613] = {.lex_state = 224}, - [2614] = {.lex_state = 224}, - [2615] = {.lex_state = 224}, - [2616] = {.lex_state = 224}, - [2617] = {.lex_state = 224}, - [2618] = {.lex_state = 224}, - [2619] = {.lex_state = 238}, - [2620] = {.lex_state = 224}, - [2621] = {.lex_state = 224}, - [2622] = {.lex_state = 238}, - [2623] = {.lex_state = 195}, - [2624] = {.lex_state = 224}, - [2625] = {.lex_state = 183}, - [2626] = {.lex_state = 183}, - [2627] = {.lex_state = 183}, - [2628] = {.lex_state = 224}, - [2629] = {.lex_state = 224}, - [2630] = {.lex_state = 181}, - [2631] = {.lex_state = 239}, - [2632] = {.lex_state = 238}, - [2633] = {.lex_state = 238}, - [2634] = {.lex_state = 183}, - [2635] = {.lex_state = 193}, - [2636] = {.lex_state = 224}, - [2637] = {.lex_state = 237}, - [2638] = {.lex_state = 224}, - [2639] = {.lex_state = 185}, - [2640] = {.lex_state = 224}, - [2641] = {.lex_state = 185}, - [2642] = {.lex_state = 238}, - [2643] = {.lex_state = 239}, - [2644] = {.lex_state = 238}, - [2645] = {.lex_state = 224}, - [2646] = {.lex_state = 183}, - [2647] = {.lex_state = 185}, - [2648] = {.lex_state = 224}, - [2649] = {.lex_state = 224}, - [2650] = {.lex_state = 238}, - [2651] = {.lex_state = 224}, - [2652] = {.lex_state = 185}, - [2653] = {.lex_state = 185}, - [2654] = {.lex_state = 185}, - [2655] = {.lex_state = 183}, - [2656] = {.lex_state = 185}, - [2657] = {.lex_state = 224}, - [2658] = {.lex_state = 224}, - [2659] = {.lex_state = 224}, - [2660] = {.lex_state = 224}, - [2661] = {.lex_state = 238}, - [2662] = {.lex_state = 224}, - [2663] = {.lex_state = 193}, - [2664] = {.lex_state = 193}, - [2665] = {.lex_state = 188}, - [2666] = {.lex_state = 193}, - [2667] = {.lex_state = 193}, - [2668] = {.lex_state = 193}, - [2669] = {.lex_state = 193}, - [2670] = {.lex_state = 193}, - [2671] = {.lex_state = 193}, - [2672] = {.lex_state = 188}, - [2673] = {.lex_state = 193}, - [2674] = {.lex_state = 193}, - [2675] = {.lex_state = 193}, - [2676] = {.lex_state = 193}, - [2677] = {.lex_state = 193}, - [2678] = {.lex_state = 176}, - [2679] = {.lex_state = 185}, - [2680] = {.lex_state = 238}, - [2681] = {.lex_state = 206}, - [2682] = {.lex_state = 188}, - [2683] = {.lex_state = 185}, - [2684] = {.lex_state = 193}, - [2685] = {.lex_state = 193}, - [2686] = {.lex_state = 193}, - [2687] = {.lex_state = 185}, - [2688] = {.lex_state = 238}, - [2689] = {.lex_state = 193}, - [2690] = {.lex_state = 193}, - [2691] = {.lex_state = 193}, - [2692] = {.lex_state = 193}, - [2693] = {.lex_state = 193}, - [2694] = {.lex_state = 193}, - [2695] = {.lex_state = 193}, - [2696] = {.lex_state = 193}, - [2697] = {.lex_state = 193}, - [2698] = {.lex_state = 193}, - [2699] = {.lex_state = 193}, - [2700] = {.lex_state = 193}, - [2701] = {.lex_state = 193}, - [2702] = {.lex_state = 193}, - [2703] = {.lex_state = 193}, - [2704] = {.lex_state = 193}, - [2705] = {.lex_state = 193}, - [2706] = {.lex_state = 193}, - [2707] = {.lex_state = 193}, - [2708] = {.lex_state = 193}, - [2709] = {.lex_state = 193}, - [2710] = {.lex_state = 193}, - [2711] = {.lex_state = 193}, - [2712] = {.lex_state = 193}, - [2713] = {.lex_state = 193}, - [2714] = {.lex_state = 193}, - [2715] = {.lex_state = 206}, - [2716] = {.lex_state = 193}, - [2717] = {.lex_state = 193}, - [2718] = {.lex_state = 186}, - [2719] = {.lex_state = 193}, - [2720] = {.lex_state = 193}, - [2721] = {.lex_state = 193}, - [2722] = {.lex_state = 193}, - [2723] = {.lex_state = 193}, - [2724] = {.lex_state = 238}, - [2725] = {.lex_state = 193}, - [2726] = {.lex_state = 193}, - [2727] = {.lex_state = 193}, - [2728] = {.lex_state = 238}, - [2729] = {.lex_state = 237}, - [2730] = {.lex_state = 193}, - [2731] = {.lex_state = 237}, - [2732] = {.lex_state = 193}, - [2733] = {.lex_state = 193}, - [2734] = {.lex_state = 183}, - [2735] = {.lex_state = 193}, - [2736] = {.lex_state = 193}, - [2737] = {.lex_state = 193}, - [2738] = {.lex_state = 193}, - [2739] = {.lex_state = 239}, - [2740] = {.lex_state = 193}, - [2741] = {.lex_state = 193}, - [2742] = {.lex_state = 239}, - [2743] = {.lex_state = 193}, - [2744] = {.lex_state = 193}, - [2745] = {.lex_state = 193}, - [2746] = {.lex_state = 193}, - [2747] = {.lex_state = 193}, - [2748] = {.lex_state = 193}, - [2749] = {.lex_state = 193}, - [2750] = {.lex_state = 193}, - [2751] = {.lex_state = 193}, - [2752] = {.lex_state = 193}, - [2753] = {.lex_state = 193}, - [2754] = {.lex_state = 193}, - [2755] = {.lex_state = 193}, - [2756] = {.lex_state = 193}, - [2757] = {.lex_state = 193}, - [2758] = {.lex_state = 193}, - [2759] = {.lex_state = 193}, - [2760] = {.lex_state = 193}, - [2761] = {.lex_state = 193}, - [2762] = {.lex_state = 193}, - [2763] = {.lex_state = 193}, - [2764] = {.lex_state = 193}, - [2765] = {.lex_state = 193}, - [2766] = {.lex_state = 193}, - [2767] = {.lex_state = 193}, - [2768] = {.lex_state = 185}, - [2769] = {.lex_state = 193}, - [2770] = {.lex_state = 193}, - [2771] = {.lex_state = 193}, - [2772] = {.lex_state = 193}, - [2773] = {.lex_state = 193}, - [2774] = {.lex_state = 193}, - [2775] = {.lex_state = 193}, - [2776] = {.lex_state = 193}, - [2777] = {.lex_state = 193}, - [2778] = {.lex_state = 193}, - [2779] = {.lex_state = 193}, - [2780] = {.lex_state = 193}, - [2781] = {.lex_state = 193}, - [2782] = {.lex_state = 193}, - [2783] = {.lex_state = 186}, - [2784] = {.lex_state = 193}, - [2785] = {.lex_state = 193}, - [2786] = {.lex_state = 193}, - [2787] = {.lex_state = 193}, - [2788] = {.lex_state = 207}, - [2789] = {.lex_state = 207}, - [2790] = {.lex_state = 237}, - [2791] = {.lex_state = 237}, - [2792] = {.lex_state = 239}, - [2793] = {.lex_state = 194}, - [2794] = {.lex_state = 239}, - [2795] = {.lex_state = 239}, - [2796] = {.lex_state = 207}, - [2797] = {.lex_state = 238}, - [2798] = {.lex_state = 237}, - [2799] = {.lex_state = 185}, - [2800] = {.lex_state = 238}, - [2801] = {.lex_state = 207}, - [2802] = {.lex_state = 183}, - [2803] = {.lex_state = 181}, - [2804] = {.lex_state = 237}, - [2805] = {.lex_state = 239}, - [2806] = {.lex_state = 237}, - [2807] = {.lex_state = 239}, - [2808] = {.lex_state = 237}, - [2809] = {.lex_state = 239}, - [2810] = {.lex_state = 237}, - [2811] = {.lex_state = 237}, - [2812] = {.lex_state = 237}, - [2813] = {.lex_state = 239}, - [2814] = {.lex_state = 239}, - [2815] = {.lex_state = 239}, - [2816] = {.lex_state = 239}, - [2817] = {.lex_state = 239}, - [2818] = {.lex_state = 239}, - [2819] = {.lex_state = 239}, - [2820] = {.lex_state = 239}, - [2821] = {.lex_state = 239}, - [2822] = {.lex_state = 237}, - [2823] = {.lex_state = 239}, - [2824] = {.lex_state = 239}, - [2825] = {.lex_state = 239}, - [2826] = {.lex_state = 237}, - [2827] = {.lex_state = 237}, - [2828] = {.lex_state = 237}, - [2829] = {.lex_state = 237}, - [2830] = {.lex_state = 225}, - [2831] = {.lex_state = 237}, - [2832] = {.lex_state = 237}, - [2833] = {.lex_state = 237}, - [2834] = {.lex_state = 237}, - [2835] = {.lex_state = 185}, - [2836] = {.lex_state = 181}, - [2837] = {.lex_state = 185}, - [2838] = {.lex_state = 239}, - [2839] = {.lex_state = 237}, - [2840] = {.lex_state = 239}, - [2841] = {.lex_state = 237}, - [2842] = {.lex_state = 239}, - [2843] = {.lex_state = 239}, - [2844] = {.lex_state = 239}, - [2845] = {.lex_state = 239}, - [2846] = {.lex_state = 239}, - [2847] = {.lex_state = 239}, - [2848] = {.lex_state = 237}, - [2849] = {.lex_state = 185}, - [2850] = {.lex_state = 185}, - [2851] = {.lex_state = 239}, - [2852] = {.lex_state = 239}, - [2853] = {.lex_state = 239}, - [2854] = {.lex_state = 239}, - [2855] = {.lex_state = 237}, - [2856] = {.lex_state = 239}, - [2857] = {.lex_state = 239}, - [2858] = {.lex_state = 239}, - [2859] = {.lex_state = 237}, - [2860] = {.lex_state = 237}, - [2861] = {.lex_state = 237}, - [2862] = {.lex_state = 237}, - [2863] = {.lex_state = 239}, - [2864] = {.lex_state = 237}, - [2865] = {.lex_state = 181}, - [2866] = {.lex_state = 181}, - [2867] = {.lex_state = 239}, - [2868] = {.lex_state = 237}, - [2869] = {.lex_state = 237}, - [2870] = {.lex_state = 237}, - [2871] = {.lex_state = 239}, - [2872] = {.lex_state = 239}, - [2873] = {.lex_state = 239}, - [2874] = {.lex_state = 225}, - [2875] = {.lex_state = 237}, - [2876] = {.lex_state = 181}, - [2877] = {.lex_state = 239}, - [2878] = {.lex_state = 239}, - [2879] = {.lex_state = 239}, - [2880] = {.lex_state = 239}, - [2881] = {.lex_state = 237}, - [2882] = {.lex_state = 237}, - [2883] = {.lex_state = 237}, - [2884] = {.lex_state = 239}, - [2885] = {.lex_state = 239}, - [2886] = {.lex_state = 237}, - [2887] = {.lex_state = 237}, - [2888] = {.lex_state = 225}, - [2889] = {.lex_state = 225}, - [2890] = {.lex_state = 237}, - [2891] = {.lex_state = 237}, - [2892] = {.lex_state = 237}, - [2893] = {.lex_state = 239}, - [2894] = {.lex_state = 239}, - [2895] = {.lex_state = 237}, - [2896] = {.lex_state = 237}, - [2897] = {.lex_state = 237}, - [2898] = {.lex_state = 237}, - [2899] = {.lex_state = 237}, - [2900] = {.lex_state = 237}, - [2901] = {.lex_state = 237}, - [2902] = {.lex_state = 237}, - [2903] = {.lex_state = 237}, - [2904] = {.lex_state = 237}, - [2905] = {.lex_state = 237}, - [2906] = {.lex_state = 239}, - [2907] = {.lex_state = 237}, - [2908] = {.lex_state = 237}, - [2909] = {.lex_state = 237}, - [2910] = {.lex_state = 237}, - [2911] = {.lex_state = 239}, - [2912] = {.lex_state = 239}, - [2913] = {.lex_state = 239}, - [2914] = {.lex_state = 239}, - [2915] = {.lex_state = 237}, - [2916] = {.lex_state = 239}, - [2917] = {.lex_state = 188}, - [2918] = {.lex_state = 237}, - [2919] = {.lex_state = 237}, - [2920] = {.lex_state = 237}, - [2921] = {.lex_state = 237}, - [2922] = {.lex_state = 237}, - [2923] = {.lex_state = 237}, - [2924] = {.lex_state = 237}, - [2925] = {.lex_state = 239}, - [2926] = {.lex_state = 239}, - [2927] = {.lex_state = 237}, - [2928] = {.lex_state = 239}, - [2929] = {.lex_state = 239}, - [2930] = {.lex_state = 237}, - [2931] = {.lex_state = 237}, - [2932] = {.lex_state = 237}, - [2933] = {.lex_state = 237}, - [2934] = {.lex_state = 237}, - [2935] = {.lex_state = 239}, - [2936] = {.lex_state = 237}, - [2937] = {.lex_state = 237}, - [2938] = {.lex_state = 237}, - [2939] = {.lex_state = 237}, - [2940] = {.lex_state = 237}, - [2941] = {.lex_state = 239}, - [2942] = {.lex_state = 237}, - [2943] = {.lex_state = 237}, - [2944] = {.lex_state = 239}, - [2945] = {.lex_state = 239}, - [2946] = {.lex_state = 239}, - [2947] = {.lex_state = 237}, - [2948] = {.lex_state = 237}, - [2949] = {.lex_state = 237}, - [2950] = {.lex_state = 237}, - [2951] = {.lex_state = 237}, - [2952] = {.lex_state = 237}, - [2953] = {.lex_state = 237}, - [2954] = {.lex_state = 239}, - [2955] = {.lex_state = 237}, - [2956] = {.lex_state = 239}, - [2957] = {.lex_state = 239}, - [2958] = {.lex_state = 239}, - [2959] = {.lex_state = 237}, - [2960] = {.lex_state = 239}, - [2961] = {.lex_state = 239}, - [2962] = {.lex_state = 239}, - [2963] = {.lex_state = 239}, - [2964] = {.lex_state = 239}, - [2965] = {.lex_state = 239}, - [2966] = {.lex_state = 237}, - [2967] = {.lex_state = 237}, - [2968] = {.lex_state = 237}, - [2969] = {.lex_state = 237}, - [2970] = {.lex_state = 239}, - [2971] = {.lex_state = 237}, - [2972] = {.lex_state = 237}, - [2973] = {.lex_state = 237}, - [2974] = {.lex_state = 239}, - [2975] = {.lex_state = 239}, - [2976] = {.lex_state = 239}, - [2977] = {.lex_state = 239}, - [2978] = {.lex_state = 181}, - [2979] = {.lex_state = 239}, - [2980] = {.lex_state = 239}, - [2981] = {.lex_state = 239}, - [2982] = {.lex_state = 237}, - [2983] = {.lex_state = 181}, - [2984] = {.lex_state = 181}, - [2985] = {.lex_state = 237}, - [2986] = {.lex_state = 237}, - [2987] = {.lex_state = 237}, - [2988] = {.lex_state = 239}, - [2989] = {.lex_state = 239}, - [2990] = {.lex_state = 237}, - [2991] = {.lex_state = 237}, - [2992] = {.lex_state = 239}, - [2993] = {.lex_state = 239}, - [2994] = {.lex_state = 239}, - [2995] = {.lex_state = 239}, - [2996] = {.lex_state = 239}, - [2997] = {.lex_state = 237}, - [2998] = {.lex_state = 237}, - [2999] = {.lex_state = 239}, - [3000] = {.lex_state = 239}, - [3001] = {.lex_state = 239}, - [3002] = {.lex_state = 239}, - [3003] = {.lex_state = 239}, - [3004] = {.lex_state = 239}, - [3005] = {.lex_state = 239}, - [3006] = {.lex_state = 239}, - [3007] = {.lex_state = 239}, - [3008] = {.lex_state = 237}, - [3009] = {.lex_state = 237}, - [3010] = {.lex_state = 239}, - [3011] = {.lex_state = 239}, - [3012] = {.lex_state = 237}, - [3013] = {.lex_state = 239}, - [3014] = {.lex_state = 239}, - [3015] = {.lex_state = 239}, - [3016] = {.lex_state = 239}, - [3017] = {.lex_state = 239}, - [3018] = {.lex_state = 237}, - [3019] = {.lex_state = 237}, - [3020] = {.lex_state = 239}, - [3021] = {.lex_state = 239}, - [3022] = {.lex_state = 239}, - [3023] = {.lex_state = 239}, - [3024] = {.lex_state = 239}, - [3025] = {.lex_state = 237}, - [3026] = {.lex_state = 237}, - [3027] = {.lex_state = 237}, - [3028] = {.lex_state = 181}, - [3029] = {.lex_state = 238}, - [3030] = {.lex_state = 238}, - [3031] = {.lex_state = 207}, - [3032] = {.lex_state = 229}, - [3033] = {.lex_state = 196}, - [3034] = {.lex_state = 196}, - [3035] = {.lex_state = 238}, - [3036] = {.lex_state = 238}, - [3037] = {.lex_state = 238}, - [3038] = {.lex_state = 238}, - [3039] = {.lex_state = 196}, - [3040] = {.lex_state = 238}, - [3041] = {.lex_state = 207}, - [3042] = {.lex_state = 181}, - [3043] = {.lex_state = 185}, - [3044] = {.lex_state = 196}, - [3045] = {.lex_state = 198}, - [3046] = {.lex_state = 238}, - [3047] = {.lex_state = 185}, - [3048] = {.lex_state = 238}, - [3049] = {.lex_state = 238}, - [3050] = {.lex_state = 238}, - [3051] = {.lex_state = 238}, - [3052] = {.lex_state = 198}, - [3053] = {.lex_state = 203}, - [3054] = {.lex_state = 181}, - [3055] = {.lex_state = 181}, - [3056] = {.lex_state = 203}, - [3057] = {.lex_state = 185}, - [3058] = {.lex_state = 185}, - [3059] = {.lex_state = 238}, - [3060] = {.lex_state = 238}, - [3061] = {.lex_state = 188}, - [3062] = {.lex_state = 207}, - [3063] = {.lex_state = 188}, - [3064] = {.lex_state = 238}, - [3065] = {.lex_state = 229}, - [3066] = {.lex_state = 238}, - [3067] = {.lex_state = 188}, - [3068] = {.lex_state = 188}, - [3069] = {.lex_state = 207}, - [3070] = {.lex_state = 211}, - [3071] = {.lex_state = 188}, - [3072] = {.lex_state = 188}, - [3073] = {.lex_state = 211}, - [3074] = {.lex_state = 214}, - [3075] = {.lex_state = 214}, - [3076] = {.lex_state = 225}, - [3077] = {.lex_state = 203}, - [3078] = {.lex_state = 181}, - [3079] = {.lex_state = 188}, - [3080] = {.lex_state = 203}, - [3081] = {.lex_state = 203}, - [3082] = {.lex_state = 207}, - [3083] = {.lex_state = 203}, - [3084] = {.lex_state = 207}, - [3085] = {.lex_state = 211}, - [3086] = {.lex_state = 222}, - [3087] = {.lex_state = 188}, - [3088] = {.lex_state = 203}, - [3089] = {.lex_state = 203}, - [3090] = {.lex_state = 203}, - [3091] = {.lex_state = 203}, - [3092] = {.lex_state = 203}, - [3093] = {.lex_state = 203}, - [3094] = {.lex_state = 203}, - [3095] = {.lex_state = 211}, - [3096] = {.lex_state = 225}, - [3097] = {.lex_state = 222}, - [3098] = {.lex_state = 203}, - [3099] = {.lex_state = 238}, - [3100] = {.lex_state = 228}, - [3101] = {.lex_state = 225}, - [3102] = {.lex_state = 225}, - [3103] = {.lex_state = 225}, - [3104] = {.lex_state = 225}, - [3105] = {.lex_state = 228}, - [3106] = {.lex_state = 222}, - [3107] = {.lex_state = 207}, - [3108] = {.lex_state = 181}, - [3109] = {.lex_state = 225}, - [3110] = {.lex_state = 181}, - [3111] = {.lex_state = 228}, - [3112] = {.lex_state = 228}, - [3113] = {.lex_state = 225}, - [3114] = {.lex_state = 225}, - [3115] = {.lex_state = 225}, - [3116] = {.lex_state = 225}, - [3117] = {.lex_state = 225}, - [3118] = {.lex_state = 203}, - [3119] = {.lex_state = 181}, - [3120] = {.lex_state = 221}, - [3121] = {.lex_state = 225}, - [3122] = {.lex_state = 225}, - [3123] = {.lex_state = 194}, - [3124] = {.lex_state = 225}, - [3125] = {.lex_state = 238}, - [3126] = {.lex_state = 225}, - [3127] = {.lex_state = 238}, - [3128] = {.lex_state = 225}, - [3129] = {.lex_state = 225}, - [3130] = {.lex_state = 225}, - [3131] = {.lex_state = 203}, - [3132] = {.lex_state = 225}, - [3133] = {.lex_state = 181}, - [3134] = {.lex_state = 225}, - [3135] = {.lex_state = 225}, - [3136] = {.lex_state = 225}, - [3137] = {.lex_state = 194}, - [3138] = {.lex_state = 207}, - [3139] = {.lex_state = 225}, - [3140] = {.lex_state = 207}, - [3141] = {.lex_state = 225}, - [3142] = {.lex_state = 225}, + [2423] = {.lex_state = 225}, + [2424] = {.lex_state = 205}, + [2425] = {.lex_state = 238}, + [2426] = {.lex_state = 207}, + [2427] = {.lex_state = 204}, + [2428] = {.lex_state = 207}, + [2429] = {.lex_state = 207}, + [2430] = {.lex_state = 194}, + [2431] = {.lex_state = 205}, + [2432] = {.lex_state = 207}, + [2433] = {.lex_state = 205}, + [2434] = {.lex_state = 207}, + [2435] = {.lex_state = 207}, + [2436] = {.lex_state = 207}, + [2437] = {.lex_state = 207}, + [2438] = {.lex_state = 207}, + [2439] = {.lex_state = 207}, + [2440] = {.lex_state = 207}, + [2441] = {.lex_state = 207}, + [2442] = {.lex_state = 194}, + [2443] = {.lex_state = 207}, + [2444] = {.lex_state = 205}, + [2445] = {.lex_state = 205}, + [2446] = {.lex_state = 194}, + [2447] = {.lex_state = 207}, + [2448] = {.lex_state = 211}, + [2449] = {.lex_state = 205}, + [2450] = {.lex_state = 205}, + [2451] = {.lex_state = 207}, + [2452] = {.lex_state = 194}, + [2453] = {.lex_state = 205}, + [2454] = {.lex_state = 207}, + [2455] = {.lex_state = 205}, + [2456] = {.lex_state = 207}, + [2457] = {.lex_state = 211}, + [2458] = {.lex_state = 176}, + [2459] = {.lex_state = 207}, + [2460] = {.lex_state = 207}, + [2461] = {.lex_state = 205}, + [2462] = {.lex_state = 207}, + [2463] = {.lex_state = 207}, + [2464] = {.lex_state = 207}, + [2465] = {.lex_state = 207}, + [2466] = {.lex_state = 205}, + [2467] = {.lex_state = 202}, + [2468] = {.lex_state = 207}, + [2469] = {.lex_state = 207}, + [2470] = {.lex_state = 207}, + [2471] = {.lex_state = 207}, + [2472] = {.lex_state = 207}, + [2473] = {.lex_state = 205}, + [2474] = {.lex_state = 207}, + [2475] = {.lex_state = 207}, + [2476] = {.lex_state = 207}, + [2477] = {.lex_state = 207}, + [2478] = {.lex_state = 207}, + [2479] = {.lex_state = 207}, + [2480] = {.lex_state = 196}, + [2481] = {.lex_state = 194}, + [2482] = {.lex_state = 207}, + [2483] = {.lex_state = 207}, + [2484] = {.lex_state = 207}, + [2485] = {.lex_state = 207}, + [2486] = {.lex_state = 207}, + [2487] = {.lex_state = 202}, + [2488] = {.lex_state = 207}, + [2489] = {.lex_state = 202}, + [2490] = {.lex_state = 207}, + [2491] = {.lex_state = 207}, + [2492] = {.lex_state = 176}, + [2493] = {.lex_state = 202}, + [2494] = {.lex_state = 207}, + [2495] = {.lex_state = 207}, + [2496] = {.lex_state = 207}, + [2497] = {.lex_state = 207}, + [2498] = {.lex_state = 205}, + [2499] = {.lex_state = 202}, + [2500] = {.lex_state = 202}, + [2501] = {.lex_state = 222}, + [2502] = {.lex_state = 240}, + [2503] = {.lex_state = 204}, + [2504] = {.lex_state = 194}, + [2505] = {.lex_state = 202}, + [2506] = {.lex_state = 240}, + [2507] = {.lex_state = 222}, + [2508] = {.lex_state = 222}, + [2509] = {.lex_state = 222}, + [2510] = {.lex_state = 222}, + [2511] = {.lex_state = 222}, + [2512] = {.lex_state = 222}, + [2513] = {.lex_state = 222}, + [2514] = {.lex_state = 222}, + [2515] = {.lex_state = 194}, + [2516] = {.lex_state = 222}, + [2517] = {.lex_state = 222}, + [2518] = {.lex_state = 211}, + [2519] = {.lex_state = 222}, + [2520] = {.lex_state = 202}, + [2521] = {.lex_state = 222}, + [2522] = {.lex_state = 222}, + [2523] = {.lex_state = 194}, + [2524] = {.lex_state = 202}, + [2525] = {.lex_state = 194}, + [2526] = {.lex_state = 194}, + [2527] = {.lex_state = 207}, + [2528] = {.lex_state = 222}, + [2529] = {.lex_state = 196}, + [2530] = {.lex_state = 207}, + [2531] = {.lex_state = 240}, + [2532] = {.lex_state = 240}, + [2533] = {.lex_state = 240}, + [2534] = {.lex_state = 232}, + [2535] = {.lex_state = 176}, + [2536] = {.lex_state = 223}, + [2537] = {.lex_state = 202}, + [2538] = {.lex_state = 194}, + [2539] = {.lex_state = 207}, + [2540] = {.lex_state = 222}, + [2541] = {.lex_state = 232}, + [2542] = {.lex_state = 240}, + [2543] = {.lex_state = 176}, + [2544] = {.lex_state = 232}, + [2545] = {.lex_state = 176}, + [2546] = {.lex_state = 207}, + [2547] = {.lex_state = 194}, + [2548] = {.lex_state = 207}, + [2549] = {.lex_state = 205}, + [2550] = {.lex_state = 240}, + [2551] = {.lex_state = 176}, + [2552] = {.lex_state = 205}, + [2553] = {.lex_state = 176}, + [2554] = {.lex_state = 205}, + [2555] = {.lex_state = 205}, + [2556] = {.lex_state = 240}, + [2557] = {.lex_state = 205}, + [2558] = {.lex_state = 207}, + [2559] = {.lex_state = 205}, + [2560] = {.lex_state = 240}, + [2561] = {.lex_state = 176}, + [2562] = {.lex_state = 240}, + [2563] = {.lex_state = 240}, + [2564] = {.lex_state = 223}, + [2565] = {.lex_state = 240}, + [2566] = {.lex_state = 205}, + [2567] = {.lex_state = 207}, + [2568] = {.lex_state = 194}, + [2569] = {.lex_state = 232}, + [2570] = {.lex_state = 210}, + [2571] = {.lex_state = 194}, + [2572] = {.lex_state = 232}, + [2573] = {.lex_state = 240}, + [2574] = {.lex_state = 202}, + [2575] = {.lex_state = 222}, + [2576] = {.lex_state = 202}, + [2577] = {.lex_state = 176}, + [2578] = {.lex_state = 176}, + [2579] = {.lex_state = 176}, + [2580] = {.lex_state = 205}, + [2581] = {.lex_state = 222}, + [2582] = {.lex_state = 176}, + [2583] = {.lex_state = 176}, + [2584] = {.lex_state = 176}, + [2585] = {.lex_state = 176}, + [2586] = {.lex_state = 194}, + [2587] = {.lex_state = 207}, + [2588] = {.lex_state = 207}, + [2589] = {.lex_state = 194}, + [2590] = {.lex_state = 194}, + [2591] = {.lex_state = 196}, + [2592] = {.lex_state = 194}, + [2593] = {.lex_state = 222}, + [2594] = {.lex_state = 228}, + [2595] = {.lex_state = 205}, + [2596] = {.lex_state = 176}, + [2597] = {.lex_state = 194}, + [2598] = {.lex_state = 176}, + [2599] = {.lex_state = 176}, + [2600] = {.lex_state = 176}, + [2601] = {.lex_state = 194}, + [2602] = {.lex_state = 194}, + [2603] = {.lex_state = 207}, + [2604] = {.lex_state = 222}, + [2605] = {.lex_state = 176}, + [2606] = {.lex_state = 194}, + [2607] = {.lex_state = 222}, + [2608] = {.lex_state = 205}, + [2609] = {.lex_state = 222}, + [2610] = {.lex_state = 222}, + [2611] = {.lex_state = 205}, + [2612] = {.lex_state = 176}, + [2613] = {.lex_state = 222}, + [2614] = {.lex_state = 194}, + [2615] = {.lex_state = 194}, + [2616] = {.lex_state = 203}, + [2617] = {.lex_state = 240}, + [2618] = {.lex_state = 176}, + [2619] = {.lex_state = 205}, + [2620] = {.lex_state = 223}, + [2621] = {.lex_state = 222}, + [2622] = {.lex_state = 194}, + [2623] = {.lex_state = 222}, + [2624] = {.lex_state = 194}, + [2625] = {.lex_state = 223}, + [2626] = {.lex_state = 194}, + [2627] = {.lex_state = 207}, + [2628] = {.lex_state = 207}, + [2629] = {.lex_state = 207}, + [2630] = {.lex_state = 202}, + [2631] = {.lex_state = 207}, + [2632] = {.lex_state = 207}, + [2633] = {.lex_state = 202}, + [2634] = {.lex_state = 207}, + [2635] = {.lex_state = 207}, + [2636] = {.lex_state = 207}, + [2637] = {.lex_state = 207}, + [2638] = {.lex_state = 207}, + [2639] = {.lex_state = 222}, + [2640] = {.lex_state = 194}, + [2641] = {.lex_state = 207}, + [2642] = {.lex_state = 207}, + [2643] = {.lex_state = 190}, + [2644] = {.lex_state = 207}, + [2645] = {.lex_state = 207}, + [2646] = {.lex_state = 207}, + [2647] = {.lex_state = 207}, + [2648] = {.lex_state = 207}, + [2649] = {.lex_state = 207}, + [2650] = {.lex_state = 202}, + [2651] = {.lex_state = 194}, + [2652] = {.lex_state = 207}, + [2653] = {.lex_state = 202}, + [2654] = {.lex_state = 207}, + [2655] = {.lex_state = 222}, + [2656] = {.lex_state = 207}, + [2657] = {.lex_state = 207}, + [2658] = {.lex_state = 240}, + [2659] = {.lex_state = 207}, + [2660] = {.lex_state = 207}, + [2661] = {.lex_state = 207}, + [2662] = {.lex_state = 207}, + [2663] = {.lex_state = 207}, + [2664] = {.lex_state = 194}, + [2665] = {.lex_state = 222}, + [2666] = {.lex_state = 207}, + [2667] = {.lex_state = 207}, + [2668] = {.lex_state = 207}, + [2669] = {.lex_state = 207}, + [2670] = {.lex_state = 207}, + [2671] = {.lex_state = 207}, + [2672] = {.lex_state = 207}, + [2673] = {.lex_state = 194}, + [2674] = {.lex_state = 207}, + [2675] = {.lex_state = 208}, + [2676] = {.lex_state = 207}, + [2677] = {.lex_state = 195}, + [2678] = {.lex_state = 207}, + [2679] = {.lex_state = 207}, + [2680] = {.lex_state = 207}, + [2681] = {.lex_state = 240}, + [2682] = {.lex_state = 207}, + [2683] = {.lex_state = 202}, + [2684] = {.lex_state = 207}, + [2685] = {.lex_state = 207}, + [2686] = {.lex_state = 207}, + [2687] = {.lex_state = 207}, + [2688] = {.lex_state = 207}, + [2689] = {.lex_state = 222}, + [2690] = {.lex_state = 222}, + [2691] = {.lex_state = 207}, + [2692] = {.lex_state = 207}, + [2693] = {.lex_state = 207}, + [2694] = {.lex_state = 194}, + [2695] = {.lex_state = 203}, + [2696] = {.lex_state = 194}, + [2697] = {.lex_state = 207}, + [2698] = {.lex_state = 194}, + [2699] = {.lex_state = 190}, + [2700] = {.lex_state = 207}, + [2701] = {.lex_state = 207}, + [2702] = {.lex_state = 207}, + [2703] = {.lex_state = 207}, + [2704] = {.lex_state = 190}, + [2705] = {.lex_state = 194}, + [2706] = {.lex_state = 207}, + [2707] = {.lex_state = 207}, + [2708] = {.lex_state = 207}, + [2709] = {.lex_state = 194}, + [2710] = {.lex_state = 207}, + [2711] = {.lex_state = 195}, + [2712] = {.lex_state = 207}, + [2713] = {.lex_state = 207}, + [2714] = {.lex_state = 207}, + [2715] = {.lex_state = 207}, + [2716] = {.lex_state = 207}, + [2717] = {.lex_state = 207}, + [2718] = {.lex_state = 207}, + [2719] = {.lex_state = 207}, + [2720] = {.lex_state = 222}, + [2721] = {.lex_state = 207}, + [2722] = {.lex_state = 222}, + [2723] = {.lex_state = 194}, + [2724] = {.lex_state = 194}, + [2725] = {.lex_state = 195}, + [2726] = {.lex_state = 207}, + [2727] = {.lex_state = 207}, + [2728] = {.lex_state = 207}, + [2729] = {.lex_state = 207}, + [2730] = {.lex_state = 207}, + [2731] = {.lex_state = 194}, + [2732] = {.lex_state = 207}, + [2733] = {.lex_state = 207}, + [2734] = {.lex_state = 207}, + [2735] = {.lex_state = 207}, + [2736] = {.lex_state = 240}, + [2737] = {.lex_state = 207}, + [2738] = {.lex_state = 207}, + [2739] = {.lex_state = 207}, + [2740] = {.lex_state = 207}, + [2741] = {.lex_state = 195}, + [2742] = {.lex_state = 207}, + [2743] = {.lex_state = 207}, + [2744] = {.lex_state = 196}, + [2745] = {.lex_state = 207}, + [2746] = {.lex_state = 207}, + [2747] = {.lex_state = 202}, + [2748] = {.lex_state = 207}, + [2749] = {.lex_state = 207}, + [2750] = {.lex_state = 207}, + [2751] = {.lex_state = 202}, + [2752] = {.lex_state = 207}, + [2753] = {.lex_state = 194}, + [2754] = {.lex_state = 207}, + [2755] = {.lex_state = 207}, + [2756] = {.lex_state = 207}, + [2757] = {.lex_state = 222}, + [2758] = {.lex_state = 222}, + [2759] = {.lex_state = 207}, + [2760] = {.lex_state = 222}, + [2761] = {.lex_state = 208}, + [2762] = {.lex_state = 207}, + [2763] = {.lex_state = 207}, + [2764] = {.lex_state = 207}, + [2765] = {.lex_state = 194}, + [2766] = {.lex_state = 202}, + [2767] = {.lex_state = 195}, + [2768] = {.lex_state = 222}, + [2769] = {.lex_state = 194}, + [2770] = {.lex_state = 207}, + [2771] = {.lex_state = 202}, + [2772] = {.lex_state = 202}, + [2773] = {.lex_state = 194}, + [2774] = {.lex_state = 202}, + [2775] = {.lex_state = 202}, + [2776] = {.lex_state = 202}, + [2777] = {.lex_state = 207}, + [2778] = {.lex_state = 207}, + [2779] = {.lex_state = 222}, + [2780] = {.lex_state = 222}, + [2781] = {.lex_state = 202}, + [2782] = {.lex_state = 169}, + [2783] = {.lex_state = 202}, + [2784] = {.lex_state = 194}, + [2785] = {.lex_state = 202}, + [2786] = {.lex_state = 222}, + [2787] = {.lex_state = 222}, + [2788] = {.lex_state = 194}, + [2789] = {.lex_state = 194}, + [2790] = {.lex_state = 222}, + [2791] = {.lex_state = 222}, + [2792] = {.lex_state = 202}, + [2793] = {.lex_state = 202}, + [2794] = {.lex_state = 194}, + [2795] = {.lex_state = 194}, + [2796] = {.lex_state = 202}, + [2797] = {.lex_state = 202}, + [2798] = {.lex_state = 213}, + [2799] = {.lex_state = 222}, + [2800] = {.lex_state = 194}, + [2801] = {.lex_state = 169}, + [2802] = {.lex_state = 222}, + [2803] = {.lex_state = 222}, + [2804] = {.lex_state = 194}, + [2805] = {.lex_state = 194}, + [2806] = {.lex_state = 194}, + [2807] = {.lex_state = 222}, + [2808] = {.lex_state = 222}, + [2809] = {.lex_state = 222}, + [2810] = {.lex_state = 194}, + [2811] = {.lex_state = 222}, + [2812] = {.lex_state = 213}, + [2813] = {.lex_state = 194}, + [2814] = {.lex_state = 195}, + [2815] = {.lex_state = 222}, + [2816] = {.lex_state = 202}, + [2817] = {.lex_state = 194}, + [2818] = {.lex_state = 222}, + [2819] = {.lex_state = 222}, + [2820] = {.lex_state = 194}, + [2821] = {.lex_state = 194}, + [2822] = {.lex_state = 194}, + [2823] = {.lex_state = 194}, + [2824] = {.lex_state = 222}, + [2825] = {.lex_state = 222}, + [2826] = {.lex_state = 202}, + [2827] = {.lex_state = 194}, + [2828] = {.lex_state = 194}, + [2829] = {.lex_state = 213}, + [2830] = {.lex_state = 195}, + [2831] = {.lex_state = 222}, + [2832] = {.lex_state = 194}, + [2833] = {.lex_state = 202}, + [2834] = {.lex_state = 202}, + [2835] = {.lex_state = 194}, + [2836] = {.lex_state = 222}, + [2837] = {.lex_state = 222}, + [2838] = {.lex_state = 194}, + [2839] = {.lex_state = 222}, + [2840] = {.lex_state = 222}, + [2841] = {.lex_state = 169}, + [2842] = {.lex_state = 222}, + [2843] = {.lex_state = 222}, + [2844] = {.lex_state = 222}, + [2845] = {.lex_state = 222}, + [2846] = {.lex_state = 194}, + [2847] = {.lex_state = 194}, + [2848] = {.lex_state = 194}, + [2849] = {.lex_state = 194}, + [2850] = {.lex_state = 194}, + [2851] = {.lex_state = 194}, + [2852] = {.lex_state = 195}, + [2853] = {.lex_state = 194}, + [2854] = {.lex_state = 194}, + [2855] = {.lex_state = 194}, + [2856] = {.lex_state = 169}, + [2857] = {.lex_state = 222}, + [2858] = {.lex_state = 213}, + [2859] = {.lex_state = 194}, + [2860] = {.lex_state = 202}, + [2861] = {.lex_state = 222}, + [2862] = {.lex_state = 194}, + [2863] = {.lex_state = 194}, + [2864] = {.lex_state = 194}, + [2865] = {.lex_state = 194}, + [2866] = {.lex_state = 194}, + [2867] = {.lex_state = 222}, + [2868] = {.lex_state = 222}, + [2869] = {.lex_state = 194}, + [2870] = {.lex_state = 194}, + [2871] = {.lex_state = 194}, + [2872] = {.lex_state = 194}, + [2873] = {.lex_state = 169}, + [2874] = {.lex_state = 194}, + [2875] = {.lex_state = 169}, + [2876] = {.lex_state = 222}, + [2877] = {.lex_state = 222}, + [2878] = {.lex_state = 222}, + [2879] = {.lex_state = 202}, + [2880] = {.lex_state = 194}, + [2881] = {.lex_state = 240}, + [2882] = {.lex_state = 202}, + [2883] = {.lex_state = 194}, + [2884] = {.lex_state = 194}, + [2885] = {.lex_state = 194}, + [2886] = {.lex_state = 194}, + [2887] = {.lex_state = 194}, + [2888] = {.lex_state = 202}, + [2889] = {.lex_state = 213}, + [2890] = {.lex_state = 202}, + [2891] = {.lex_state = 195}, + [2892] = {.lex_state = 222}, + [2893] = {.lex_state = 194}, + [2894] = {.lex_state = 194}, + [2895] = {.lex_state = 212}, + [2896] = {.lex_state = 203}, + [2897] = {.lex_state = 202}, + [2898] = {.lex_state = 240}, + [2899] = {.lex_state = 203}, + [2900] = {.lex_state = 207}, + [2901] = {.lex_state = 240}, + [2902] = {.lex_state = 194}, + [2903] = {.lex_state = 194}, + [2904] = {.lex_state = 238}, + [2905] = {.lex_state = 207}, + [2906] = {.lex_state = 194}, + [2907] = {.lex_state = 207}, + [2908] = {.lex_state = 190}, + [2909] = {.lex_state = 207}, + [2910] = {.lex_state = 245}, + [2911] = {.lex_state = 240}, + [2912] = {.lex_state = 222}, + [2913] = {.lex_state = 240}, + [2914] = {.lex_state = 194}, + [2915] = {.lex_state = 202}, + [2916] = {.lex_state = 207}, + [2917] = {.lex_state = 207}, + [2918] = {.lex_state = 207}, + [2919] = {.lex_state = 207}, + [2920] = {.lex_state = 194}, + [2921] = {.lex_state = 194}, + [2922] = {.lex_state = 194}, + [2923] = {.lex_state = 202}, + [2924] = {.lex_state = 202}, + [2925] = {.lex_state = 207}, + [2926] = {.lex_state = 202}, + [2927] = {.lex_state = 207}, + [2928] = {.lex_state = 194}, + [2929] = {.lex_state = 207}, + [2930] = {.lex_state = 213}, + [2931] = {.lex_state = 207}, + [2932] = {.lex_state = 207}, + [2933] = {.lex_state = 194}, + [2934] = {.lex_state = 194}, + [2935] = {.lex_state = 194}, + [2936] = {.lex_state = 194}, + [2937] = {.lex_state = 202}, + [2938] = {.lex_state = 202}, + [2939] = {.lex_state = 202}, + [2940] = {.lex_state = 202}, + [2941] = {.lex_state = 202}, + [2942] = {.lex_state = 202}, + [2943] = {.lex_state = 240}, + [2944] = {.lex_state = 194}, + [2945] = {.lex_state = 202}, + [2946] = {.lex_state = 195}, + [2947] = {.lex_state = 202}, + [2948] = {.lex_state = 202}, + [2949] = {.lex_state = 202}, + [2950] = {.lex_state = 202}, + [2951] = {.lex_state = 207}, + [2952] = {.lex_state = 202}, + [2953] = {.lex_state = 202}, + [2954] = {.lex_state = 202}, + [2955] = {.lex_state = 202}, + [2956] = {.lex_state = 202}, + [2957] = {.lex_state = 207}, + [2958] = {.lex_state = 202}, + [2959] = {.lex_state = 202}, + [2960] = {.lex_state = 194}, + [2961] = {.lex_state = 202}, + [2962] = {.lex_state = 202}, + [2963] = {.lex_state = 194}, + [2964] = {.lex_state = 194}, + [2965] = {.lex_state = 207}, + [2966] = {.lex_state = 194}, + [2967] = {.lex_state = 194}, + [2968] = {.lex_state = 194}, + [2969] = {.lex_state = 194}, + [2970] = {.lex_state = 202}, + [2971] = {.lex_state = 202}, + [2972] = {.lex_state = 202}, + [2973] = {.lex_state = 194}, + [2974] = {.lex_state = 194}, + [2975] = {.lex_state = 197}, + [2976] = {.lex_state = 202}, + [2977] = {.lex_state = 194}, + [2978] = {.lex_state = 194}, + [2979] = {.lex_state = 202}, + [2980] = {.lex_state = 202}, + [2981] = {.lex_state = 194}, + [2982] = {.lex_state = 207}, + [2983] = {.lex_state = 207}, + [2984] = {.lex_state = 194}, + [2985] = {.lex_state = 202}, + [2986] = {.lex_state = 202}, + [2987] = {.lex_state = 202}, + [2988] = {.lex_state = 194}, + [2989] = {.lex_state = 194}, + [2990] = {.lex_state = 194}, + [2991] = {.lex_state = 194}, + [2992] = {.lex_state = 194}, + [2993] = {.lex_state = 240}, + [2994] = {.lex_state = 240}, + [2995] = {.lex_state = 202}, + [2996] = {.lex_state = 194}, + [2997] = {.lex_state = 202}, + [2998] = {.lex_state = 202}, + [2999] = {.lex_state = 195}, + [3000] = {.lex_state = 194}, + [3001] = {.lex_state = 190}, + [3002] = {.lex_state = 202}, + [3003] = {.lex_state = 202}, + [3004] = {.lex_state = 194}, + [3005] = {.lex_state = 194}, + [3006] = {.lex_state = 190}, + [3007] = {.lex_state = 194}, + [3008] = {.lex_state = 207}, + [3009] = {.lex_state = 194}, + [3010] = {.lex_state = 202}, + [3011] = {.lex_state = 195}, + [3012] = {.lex_state = 240}, + [3013] = {.lex_state = 194}, + [3014] = {.lex_state = 240}, + [3015] = {.lex_state = 240}, + [3016] = {.lex_state = 195}, + [3017] = {.lex_state = 194}, + [3018] = {.lex_state = 202}, + [3019] = {.lex_state = 195}, + [3020] = {.lex_state = 195}, + [3021] = {.lex_state = 240}, + [3022] = {.lex_state = 240}, + [3023] = {.lex_state = 240}, + [3024] = {.lex_state = 240}, + [3025] = {.lex_state = 240}, + [3026] = {.lex_state = 203}, + [3027] = {.lex_state = 240}, + [3028] = {.lex_state = 176}, + [3029] = {.lex_state = 194}, + [3030] = {.lex_state = 194}, + [3031] = {.lex_state = 240}, + [3032] = {.lex_state = 194}, + [3033] = {.lex_state = 240}, + [3034] = {.lex_state = 208}, + [3035] = {.lex_state = 201}, + [3036] = {.lex_state = 194}, + [3037] = {.lex_state = 190}, + [3038] = {.lex_state = 194}, + [3039] = {.lex_state = 202}, + [3040] = {.lex_state = 203}, + [3041] = {.lex_state = 194}, + [3042] = {.lex_state = 203}, + [3043] = {.lex_state = 194}, + [3044] = {.lex_state = 199}, + [3045] = {.lex_state = 190}, + [3046] = {.lex_state = 240}, + [3047] = {.lex_state = 195}, + [3048] = {.lex_state = 190}, + [3049] = {.lex_state = 240}, + [3050] = {.lex_state = 190}, + [3051] = {.lex_state = 202}, + [3052] = {.lex_state = 195}, + [3053] = {.lex_state = 194}, + [3054] = {.lex_state = 238}, + [3055] = {.lex_state = 202}, + [3056] = {.lex_state = 240}, + [3057] = {.lex_state = 202}, + [3058] = {.lex_state = 240}, + [3059] = {.lex_state = 202}, + [3060] = {.lex_state = 202}, + [3061] = {.lex_state = 194}, + [3062] = {.lex_state = 195}, + [3063] = {.lex_state = 195}, + [3064] = {.lex_state = 202}, + [3065] = {.lex_state = 240}, + [3066] = {.lex_state = 240}, + [3067] = {.lex_state = 195}, + [3068] = {.lex_state = 195}, + [3069] = {.lex_state = 240}, + [3070] = {.lex_state = 195}, + [3071] = {.lex_state = 202}, + [3072] = {.lex_state = 222}, + [3073] = {.lex_state = 195}, + [3074] = {.lex_state = 190}, + [3075] = {.lex_state = 195}, + [3076] = {.lex_state = 240}, + [3077] = {.lex_state = 195}, + [3078] = {.lex_state = 202}, + [3079] = {.lex_state = 194}, + [3080] = {.lex_state = 202}, + [3081] = {.lex_state = 195}, + [3082] = {.lex_state = 202}, + [3083] = {.lex_state = 240}, + [3084] = {.lex_state = 240}, + [3085] = {.lex_state = 240}, + [3086] = {.lex_state = 202}, + [3087] = {.lex_state = 207}, + [3088] = {.lex_state = 202}, + [3089] = {.lex_state = 240}, + [3090] = {.lex_state = 240}, + [3091] = {.lex_state = 202}, + [3092] = {.lex_state = 202}, + [3093] = {.lex_state = 240}, + [3094] = {.lex_state = 195}, + [3095] = {.lex_state = 195}, + [3096] = {.lex_state = 194}, + [3097] = {.lex_state = 240}, + [3098] = {.lex_state = 195}, + [3099] = {.lex_state = 240}, + [3100] = {.lex_state = 202}, + [3101] = {.lex_state = 240}, + [3102] = {.lex_state = 194}, + [3103] = {.lex_state = 240}, + [3104] = {.lex_state = 194}, + [3105] = {.lex_state = 194}, + [3106] = {.lex_state = 199}, + [3107] = {.lex_state = 194}, + [3108] = {.lex_state = 195}, + [3109] = {.lex_state = 203}, + [3110] = {.lex_state = 240}, + [3111] = {.lex_state = 195}, + [3112] = {.lex_state = 238}, + [3113] = {.lex_state = 194}, + [3114] = {.lex_state = 240}, + [3115] = {.lex_state = 195}, + [3116] = {.lex_state = 240}, + [3117] = {.lex_state = 194}, + [3118] = {.lex_state = 240}, + [3119] = {.lex_state = 208}, + [3120] = {.lex_state = 240}, + [3121] = {.lex_state = 195}, + [3122] = {.lex_state = 240}, + [3123] = {.lex_state = 240}, + [3124] = {.lex_state = 194}, + [3125] = {.lex_state = 203}, + [3126] = {.lex_state = 195}, + [3127] = {.lex_state = 195}, + [3128] = {.lex_state = 195}, + [3129] = {.lex_state = 240}, + [3130] = {.lex_state = 222}, + [3131] = {.lex_state = 240}, + [3132] = {.lex_state = 240}, + [3133] = {.lex_state = 194}, + [3134] = {.lex_state = 202}, + [3135] = {.lex_state = 202}, + [3136] = {.lex_state = 195}, + [3137] = {.lex_state = 242}, + [3138] = {.lex_state = 194}, + [3139] = {.lex_state = 195}, + [3140] = {.lex_state = 194}, + [3141] = {.lex_state = 202}, + [3142] = {.lex_state = 203}, [3143] = {.lex_state = 194}, - [3144] = {.lex_state = 207}, - [3145] = {.lex_state = 207}, - [3146] = {.lex_state = 203}, + [3144] = {.lex_state = 215}, + [3145] = {.lex_state = 238}, + [3146] = {.lex_state = 194}, [3147] = {.lex_state = 207}, - [3148] = {.lex_state = 181}, - [3149] = {.lex_state = 205}, - [3150] = {.lex_state = 207}, - [3151] = {.lex_state = 207}, - [3152] = {.lex_state = 196}, - [3153] = {.lex_state = 207}, - [3154] = {.lex_state = 207}, - [3155] = {.lex_state = 205}, - [3156] = {.lex_state = 198}, - [3157] = {.lex_state = 207}, - [3158] = {.lex_state = 207}, - [3159] = {.lex_state = 207}, - [3160] = {.lex_state = 207}, - [3161] = {.lex_state = 225}, - [3162] = {.lex_state = 181}, + [3148] = {.lex_state = 194}, + [3149] = {.lex_state = 192}, + [3150] = {.lex_state = 194}, + [3151] = {.lex_state = 194}, + [3152] = {.lex_state = 238}, + [3153] = {.lex_state = 222}, + [3154] = {.lex_state = 194}, + [3155] = {.lex_state = 222}, + [3156] = {.lex_state = 194}, + [3157] = {.lex_state = 194}, + [3158] = {.lex_state = 194}, + [3159] = {.lex_state = 194}, + [3160] = {.lex_state = 190}, + [3161] = {.lex_state = 194}, + [3162] = {.lex_state = 194}, [3163] = {.lex_state = 194}, - [3164] = {.lex_state = 207}, - [3165] = {.lex_state = 196}, + [3164] = {.lex_state = 194}, + [3165] = {.lex_state = 238}, [3166] = {.lex_state = 194}, - [3167] = {.lex_state = 207}, - [3168] = {.lex_state = 207}, - [3169] = {.lex_state = 225}, + [3167] = {.lex_state = 213}, + [3168] = {.lex_state = 194}, + [3169] = {.lex_state = 194}, [3170] = {.lex_state = 207}, - [3171] = {.lex_state = 207}, - [3172] = {.lex_state = 207}, - [3173] = {.lex_state = 207}, - [3174] = {.lex_state = 207}, - [3175] = {.lex_state = 196}, - [3176] = {.lex_state = 205}, - [3177] = {.lex_state = 207}, - [3178] = {.lex_state = 207}, - [3179] = {.lex_state = 198}, + [3171] = {.lex_state = 194}, + [3172] = {.lex_state = 190}, + [3173] = {.lex_state = 194}, + [3174] = {.lex_state = 222}, + [3175] = {.lex_state = 217}, + [3176] = {.lex_state = 222}, + [3177] = {.lex_state = 194}, + [3178] = {.lex_state = 194}, + [3179] = {.lex_state = 202}, [3180] = {.lex_state = 194}, - [3181] = {.lex_state = 207}, - [3182] = {.lex_state = 196}, - [3183] = {.lex_state = 196}, + [3181] = {.lex_state = 194}, + [3182] = {.lex_state = 194}, + [3183] = {.lex_state = 194}, [3184] = {.lex_state = 194}, - [3185] = {.lex_state = 204}, - [3186] = {.lex_state = 207}, - [3187] = {.lex_state = 207}, - [3188] = {.lex_state = 207}, - [3189] = {.lex_state = 196}, - [3190] = {.lex_state = 204}, - [3191] = {.lex_state = 205}, - [3192] = {.lex_state = 181}, - [3193] = {.lex_state = 181}, - [3194] = {.lex_state = 203}, - [3195] = {.lex_state = 205}, - [3196] = {.lex_state = 207}, - [3197] = {.lex_state = 207}, - [3198] = {.lex_state = 207}, + [3185] = {.lex_state = 194}, + [3186] = {.lex_state = 222}, + [3187] = {.lex_state = 194}, + [3188] = {.lex_state = 194}, + [3189] = {.lex_state = 213}, + [3190] = {.lex_state = 213}, + [3191] = {.lex_state = 190}, + [3192] = {.lex_state = 194}, + [3193] = {.lex_state = 194}, + [3194] = {.lex_state = 222}, + [3195] = {.lex_state = 202}, + [3196] = {.lex_state = 194}, + [3197] = {.lex_state = 194}, + [3198] = {.lex_state = 194}, [3199] = {.lex_state = 207}, - [3200] = {.lex_state = 204}, - [3201] = {.lex_state = 205}, + [3200] = {.lex_state = 194}, + [3201] = {.lex_state = 192}, [3202] = {.lex_state = 207}, - [3203] = {.lex_state = 207}, - [3204] = {.lex_state = 203}, - [3205] = {.lex_state = 176}, - [3206] = {.lex_state = 205}, - [3207] = {.lex_state = 207}, + [3203] = {.lex_state = 213}, + [3204] = {.lex_state = 194}, + [3205] = {.lex_state = 194}, + [3206] = {.lex_state = 194}, + [3207] = {.lex_state = 194}, [3208] = {.lex_state = 194}, - [3209] = {.lex_state = 205}, - [3210] = {.lex_state = 205}, - [3211] = {.lex_state = 196}, - [3212] = {.lex_state = 205}, - [3213] = {.lex_state = 211}, - [3214] = {.lex_state = 194}, - [3215] = {.lex_state = 207}, - [3216] = {.lex_state = 207}, + [3209] = {.lex_state = 194}, + [3210] = {.lex_state = 194}, + [3211] = {.lex_state = 222}, + [3212] = {.lex_state = 238}, + [3213] = {.lex_state = 194}, + [3214] = {.lex_state = 207}, + [3215] = {.lex_state = 194}, + [3216] = {.lex_state = 194}, [3217] = {.lex_state = 207}, - [3218] = {.lex_state = 204}, + [3218] = {.lex_state = 202}, [3219] = {.lex_state = 207}, - [3220] = {.lex_state = 204}, + [3220] = {.lex_state = 238}, [3221] = {.lex_state = 207}, - [3222] = {.lex_state = 207}, - [3223] = {.lex_state = 211}, - [3224] = {.lex_state = 207}, - [3225] = {.lex_state = 205}, - [3226] = {.lex_state = 176}, - [3227] = {.lex_state = 204}, - [3228] = {.lex_state = 207}, - [3229] = {.lex_state = 207}, + [3222] = {.lex_state = 222}, + [3223] = {.lex_state = 238}, + [3224] = {.lex_state = 194}, + [3225] = {.lex_state = 194}, + [3226] = {.lex_state = 222}, + [3227] = {.lex_state = 207}, + [3228] = {.lex_state = 194}, + [3229] = {.lex_state = 222}, [3230] = {.lex_state = 207}, [3231] = {.lex_state = 207}, - [3232] = {.lex_state = 205}, + [3232] = {.lex_state = 207}, [3233] = {.lex_state = 194}, [3234] = {.lex_state = 207}, - [3235] = {.lex_state = 207}, - [3236] = {.lex_state = 207}, - [3237] = {.lex_state = 207}, + [3235] = {.lex_state = 194}, + [3236] = {.lex_state = 194}, + [3237] = {.lex_state = 194}, [3238] = {.lex_state = 207}, - [3239] = {.lex_state = 207}, + [3239] = {.lex_state = 194}, [3240] = {.lex_state = 207}, - [3241] = {.lex_state = 207}, + [3241] = {.lex_state = 194}, [3242] = {.lex_state = 194}, - [3243] = {.lex_state = 207}, - [3244] = {.lex_state = 207}, - [3245] = {.lex_state = 194}, - [3246] = {.lex_state = 207}, - [3247] = {.lex_state = 205}, - [3248] = {.lex_state = 207}, - [3249] = {.lex_state = 207}, - [3250] = {.lex_state = 207}, - [3251] = {.lex_state = 207}, - [3252] = {.lex_state = 207}, - [3253] = {.lex_state = 207}, - [3254] = {.lex_state = 207}, - [3255] = {.lex_state = 207}, - [3256] = {.lex_state = 207}, - [3257] = {.lex_state = 207}, - [3258] = {.lex_state = 207}, + [3243] = {.lex_state = 194}, + [3244] = {.lex_state = 194}, + [3245] = {.lex_state = 207}, + [3246] = {.lex_state = 194}, + [3247] = {.lex_state = 222}, + [3248] = {.lex_state = 194}, + [3249] = {.lex_state = 222}, + [3250] = {.lex_state = 192}, + [3251] = {.lex_state = 202}, + [3252] = {.lex_state = 194}, + [3253] = {.lex_state = 194}, + [3254] = {.lex_state = 194}, + [3255] = {.lex_state = 194}, + [3256] = {.lex_state = 194}, + [3257] = {.lex_state = 194}, + [3258] = {.lex_state = 194}, [3259] = {.lex_state = 207}, [3260] = {.lex_state = 207}, - [3261] = {.lex_state = 207}, - [3262] = {.lex_state = 207}, + [3261] = {.lex_state = 194}, + [3262] = {.lex_state = 194}, [3263] = {.lex_state = 207}, - [3264] = {.lex_state = 207}, - [3265] = {.lex_state = 207}, - [3266] = {.lex_state = 207}, - [3267] = {.lex_state = 238}, - [3268] = {.lex_state = 207}, - [3269] = {.lex_state = 205}, - [3270] = {.lex_state = 207}, - [3271] = {.lex_state = 207}, - [3272] = {.lex_state = 204}, - [3273] = {.lex_state = 205}, - [3274] = {.lex_state = 207}, - [3275] = {.lex_state = 207}, - [3276] = {.lex_state = 207}, - [3277] = {.lex_state = 205}, - [3278] = {.lex_state = 211}, - [3279] = {.lex_state = 222}, - [3280] = {.lex_state = 222}, - [3281] = {.lex_state = 240}, - [3282] = {.lex_state = 222}, - [3283] = {.lex_state = 222}, + [3264] = {.lex_state = 194}, + [3265] = {.lex_state = 194}, + [3266] = {.lex_state = 238}, + [3267] = {.lex_state = 194}, + [3268] = {.lex_state = 194}, + [3269] = {.lex_state = 194}, + [3270] = {.lex_state = 213}, + [3271] = {.lex_state = 194}, + [3272] = {.lex_state = 222}, + [3273] = {.lex_state = 222}, + [3274] = {.lex_state = 194}, + [3275] = {.lex_state = 194}, + [3276] = {.lex_state = 194}, + [3277] = {.lex_state = 207}, + [3278] = {.lex_state = 194}, + [3279] = {.lex_state = 194}, + [3280] = {.lex_state = 207}, + [3281] = {.lex_state = 194}, + [3282] = {.lex_state = 194}, + [3283] = {.lex_state = 194}, [3284] = {.lex_state = 222}, - [3285] = {.lex_state = 222}, - [3286] = {.lex_state = 204}, + [3285] = {.lex_state = 194}, + [3286] = {.lex_state = 222}, [3287] = {.lex_state = 222}, - [3288] = {.lex_state = 204}, - [3289] = {.lex_state = 204}, - [3290] = {.lex_state = 194}, - [3291] = {.lex_state = 194}, - [3292] = {.lex_state = 203}, - [3293] = {.lex_state = 204}, + [3288] = {.lex_state = 222}, + [3289] = {.lex_state = 194}, + [3290] = {.lex_state = 213}, + [3291] = {.lex_state = 213}, + [3292] = {.lex_state = 194}, + [3293] = {.lex_state = 190}, [3294] = {.lex_state = 194}, - [3295] = {.lex_state = 207}, - [3296] = {.lex_state = 222}, - [3297] = {.lex_state = 194}, + [3295] = {.lex_state = 194}, + [3296] = {.lex_state = 215}, + [3297] = {.lex_state = 207}, [3298] = {.lex_state = 222}, - [3299] = {.lex_state = 222}, - [3300] = {.lex_state = 222}, - [3301] = {.lex_state = 240}, - [3302] = {.lex_state = 222}, - [3303] = {.lex_state = 222}, - [3304] = {.lex_state = 222}, + [3299] = {.lex_state = 194}, + [3300] = {.lex_state = 213}, + [3301] = {.lex_state = 194}, + [3302] = {.lex_state = 194}, + [3303] = {.lex_state = 194}, + [3304] = {.lex_state = 194}, [3305] = {.lex_state = 194}, - [3306] = {.lex_state = 176}, - [3307] = {.lex_state = 222}, + [3306] = {.lex_state = 194}, + [3307] = {.lex_state = 194}, [3308] = {.lex_state = 194}, - [3309] = {.lex_state = 176}, - [3310] = {.lex_state = 194}, + [3309] = {.lex_state = 194}, + [3310] = {.lex_state = 238}, [3311] = {.lex_state = 194}, - [3312] = {.lex_state = 194}, - [3313] = {.lex_state = 176}, - [3314] = {.lex_state = 223}, - [3315] = {.lex_state = 232}, - [3316] = {.lex_state = 176}, - [3317] = {.lex_state = 194}, - [3318] = {.lex_state = 205}, - [3319] = {.lex_state = 176}, - [3320] = {.lex_state = 176}, - [3321] = {.lex_state = 232}, - [3322] = {.lex_state = 204}, - [3323] = {.lex_state = 194}, + [3312] = {.lex_state = 222}, + [3313] = {.lex_state = 238}, + [3314] = {.lex_state = 213}, + [3315] = {.lex_state = 194}, + [3316] = {.lex_state = 213}, + [3317] = {.lex_state = 213}, + [3318] = {.lex_state = 213}, + [3319] = {.lex_state = 222}, + [3320] = {.lex_state = 213}, + [3321] = {.lex_state = 194}, + [3322] = {.lex_state = 194}, + [3323] = {.lex_state = 207}, [3324] = {.lex_state = 194}, - [3325] = {.lex_state = 205}, - [3326] = {.lex_state = 204}, - [3327] = {.lex_state = 176}, - [3328] = {.lex_state = 240}, - [3329] = {.lex_state = 207}, - [3330] = {.lex_state = 176}, - [3331] = {.lex_state = 232}, - [3332] = {.lex_state = 194}, - [3333] = {.lex_state = 176}, - [3334] = {.lex_state = 228}, - [3335] = {.lex_state = 196}, - [3336] = {.lex_state = 222}, - [3337] = {.lex_state = 240}, - [3338] = {.lex_state = 240}, - [3339] = {.lex_state = 240}, - [3340] = {.lex_state = 176}, - [3341] = {.lex_state = 222}, - [3342] = {.lex_state = 222}, - [3343] = {.lex_state = 222}, - [3344] = {.lex_state = 194}, + [3325] = {.lex_state = 194}, + [3326] = {.lex_state = 207}, + [3327] = {.lex_state = 194}, + [3328] = {.lex_state = 207}, + [3329] = {.lex_state = 194}, + [3330] = {.lex_state = 194}, + [3331] = {.lex_state = 194}, + [3332] = {.lex_state = 222}, + [3333] = {.lex_state = 238}, + [3334] = {.lex_state = 194}, + [3335] = {.lex_state = 222}, + [3336] = {.lex_state = 194}, + [3337] = {.lex_state = 213}, + [3338] = {.lex_state = 238}, + [3339] = {.lex_state = 194}, + [3340] = {.lex_state = 194}, + [3341] = {.lex_state = 238}, + [3342] = {.lex_state = 194}, + [3343] = {.lex_state = 238}, + [3344] = {.lex_state = 207}, [3345] = {.lex_state = 194}, - [3346] = {.lex_state = 194}, - [3347] = {.lex_state = 176}, - [3348] = {.lex_state = 207}, - [3349] = {.lex_state = 222}, - [3350] = {.lex_state = 176}, - [3351] = {.lex_state = 222}, - [3352] = {.lex_state = 222}, - [3353] = {.lex_state = 194}, - [3354] = {.lex_state = 222}, - [3355] = {.lex_state = 176}, - [3356] = {.lex_state = 176}, - [3357] = {.lex_state = 207}, - [3358] = {.lex_state = 222}, + [3346] = {.lex_state = 213}, + [3347] = {.lex_state = 222}, + [3348] = {.lex_state = 194}, + [3349] = {.lex_state = 194}, + [3350] = {.lex_state = 194}, + [3351] = {.lex_state = 194}, + [3352] = {.lex_state = 238}, + [3353] = {.lex_state = 238}, + [3354] = {.lex_state = 202}, + [3355] = {.lex_state = 202}, + [3356] = {.lex_state = 202}, + [3357] = {.lex_state = 202}, + [3358] = {.lex_state = 202}, [3359] = {.lex_state = 194}, - [3360] = {.lex_state = 223}, - [3361] = {.lex_state = 207}, - [3362] = {.lex_state = 176}, - [3363] = {.lex_state = 176}, - [3364] = {.lex_state = 222}, - [3365] = {.lex_state = 222}, - [3366] = {.lex_state = 222}, + [3360] = {.lex_state = 219}, + [3361] = {.lex_state = 219}, + [3362] = {.lex_state = 202}, + [3363] = {.lex_state = 238}, + [3364] = {.lex_state = 202}, + [3365] = {.lex_state = 202}, + [3366] = {.lex_state = 202}, [3367] = {.lex_state = 194}, - [3368] = {.lex_state = 222}, - [3369] = {.lex_state = 240}, - [3370] = {.lex_state = 176}, - [3371] = {.lex_state = 194}, - [3372] = {.lex_state = 194}, - [3373] = {.lex_state = 207}, - [3374] = {.lex_state = 223}, - [3375] = {.lex_state = 232}, - [3376] = {.lex_state = 194}, - [3377] = {.lex_state = 205}, + [3368] = {.lex_state = 202}, + [3369] = {.lex_state = 202}, + [3370] = {.lex_state = 202}, + [3371] = {.lex_state = 202}, + [3372] = {.lex_state = 202}, + [3373] = {.lex_state = 202}, + [3374] = {.lex_state = 202}, + [3375] = {.lex_state = 202}, + [3376] = {.lex_state = 202}, + [3377] = {.lex_state = 207}, [3378] = {.lex_state = 194}, - [3379] = {.lex_state = 240}, - [3380] = {.lex_state = 207}, - [3381] = {.lex_state = 194}, - [3382] = {.lex_state = 222}, + [3379] = {.lex_state = 202}, + [3380] = {.lex_state = 202}, + [3381] = {.lex_state = 202}, + [3382] = {.lex_state = 202}, [3383] = {.lex_state = 202}, - [3384] = {.lex_state = 205}, - [3385] = {.lex_state = 207}, - [3386] = {.lex_state = 194}, - [3387] = {.lex_state = 194}, - [3388] = {.lex_state = 194}, - [3389] = {.lex_state = 196}, - [3390] = {.lex_state = 207}, - [3391] = {.lex_state = 222}, - [3392] = {.lex_state = 222}, - [3393] = {.lex_state = 194}, - [3394] = {.lex_state = 222}, - [3395] = {.lex_state = 232}, - [3396] = {.lex_state = 222}, - [3397] = {.lex_state = 194}, - [3398] = {.lex_state = 205}, - [3399] = {.lex_state = 207}, - [3400] = {.lex_state = 207}, - [3401] = {.lex_state = 176}, - [3402] = {.lex_state = 194}, - [3403] = {.lex_state = 205}, - [3404] = {.lex_state = 240}, - [3405] = {.lex_state = 240}, - [3406] = {.lex_state = 222}, - [3407] = {.lex_state = 240}, - [3408] = {.lex_state = 205}, - [3409] = {.lex_state = 205}, - [3410] = {.lex_state = 205}, - [3411] = {.lex_state = 222}, - [3412] = {.lex_state = 240}, - [3413] = {.lex_state = 222}, - [3414] = {.lex_state = 194}, - [3415] = {.lex_state = 240}, - [3416] = {.lex_state = 205}, - [3417] = {.lex_state = 194}, - [3418] = {.lex_state = 240}, - [3419] = {.lex_state = 204}, - [3420] = {.lex_state = 205}, - [3421] = {.lex_state = 176}, - [3422] = {.lex_state = 194}, - [3423] = {.lex_state = 205}, - [3424] = {.lex_state = 210}, - [3425] = {.lex_state = 194}, - [3426] = {.lex_state = 222}, - [3427] = {.lex_state = 223}, - [3428] = {.lex_state = 176}, - [3429] = {.lex_state = 222}, - [3430] = {.lex_state = 207}, - [3431] = {.lex_state = 204}, - [3432] = {.lex_state = 207}, - [3433] = {.lex_state = 207}, - [3434] = {.lex_state = 207}, - [3435] = {.lex_state = 207}, - [3436] = {.lex_state = 207}, - [3437] = {.lex_state = 222}, - [3438] = {.lex_state = 222}, - [3439] = {.lex_state = 207}, - [3440] = {.lex_state = 207}, - [3441] = {.lex_state = 196}, - [3442] = {.lex_state = 222}, - [3443] = {.lex_state = 207}, - [3444] = {.lex_state = 207}, - [3445] = {.lex_state = 207}, - [3446] = {.lex_state = 207}, - [3447] = {.lex_state = 222}, - [3448] = {.lex_state = 207}, - [3449] = {.lex_state = 207}, - [3450] = {.lex_state = 207}, - [3451] = {.lex_state = 240}, - [3452] = {.lex_state = 207}, - [3453] = {.lex_state = 207}, - [3454] = {.lex_state = 207}, - [3455] = {.lex_state = 207}, - [3456] = {.lex_state = 190}, - [3457] = {.lex_state = 207}, - [3458] = {.lex_state = 207}, - [3459] = {.lex_state = 207}, - [3460] = {.lex_state = 207}, - [3461] = {.lex_state = 207}, - [3462] = {.lex_state = 222}, - [3463] = {.lex_state = 222}, - [3464] = {.lex_state = 207}, - [3465] = {.lex_state = 207}, - [3466] = {.lex_state = 207}, - [3467] = {.lex_state = 222}, - [3468] = {.lex_state = 207}, - [3469] = {.lex_state = 207}, + [3384] = {.lex_state = 202}, + [3385] = {.lex_state = 202}, + [3386] = {.lex_state = 202}, + [3387] = {.lex_state = 219}, + [3388] = {.lex_state = 202}, + [3389] = {.lex_state = 202}, + [3390] = {.lex_state = 194}, + [3391] = {.lex_state = 202}, + [3392] = {.lex_state = 194}, + [3393] = {.lex_state = 202}, + [3394] = {.lex_state = 202}, + [3395] = {.lex_state = 202}, + [3396] = {.lex_state = 242}, + [3397] = {.lex_state = 242}, + [3398] = {.lex_state = 202}, + [3399] = {.lex_state = 238}, + [3400] = {.lex_state = 194}, + [3401] = {.lex_state = 202}, + [3402] = {.lex_state = 202}, + [3403] = {.lex_state = 202}, + [3404] = {.lex_state = 194}, + [3405] = {.lex_state = 194}, + [3406] = {.lex_state = 194}, + [3407] = {.lex_state = 202}, + [3408] = {.lex_state = 202}, + [3409] = {.lex_state = 202}, + [3410] = {.lex_state = 202}, + [3411] = {.lex_state = 202}, + [3412] = {.lex_state = 194}, + [3413] = {.lex_state = 202}, + [3414] = {.lex_state = 202}, + [3415] = {.lex_state = 202}, + [3416] = {.lex_state = 202}, + [3417] = {.lex_state = 202}, + [3418] = {.lex_state = 202}, + [3419] = {.lex_state = 202}, + [3420] = {.lex_state = 202}, + [3421] = {.lex_state = 202}, + [3422] = {.lex_state = 202}, + [3423] = {.lex_state = 238}, + [3424] = {.lex_state = 194}, + [3425] = {.lex_state = 190}, + [3426] = {.lex_state = 194}, + [3427] = {.lex_state = 194}, + [3428] = {.lex_state = 202}, + [3429] = {.lex_state = 194}, + [3430] = {.lex_state = 202}, + [3431] = {.lex_state = 194}, + [3432] = {.lex_state = 202}, + [3433] = {.lex_state = 202}, + [3434] = {.lex_state = 240}, + [3435] = {.lex_state = 194}, + [3436] = {.lex_state = 194}, + [3437] = {.lex_state = 194}, + [3438] = {.lex_state = 202}, + [3439] = {.lex_state = 202}, + [3440] = {.lex_state = 202}, + [3441] = {.lex_state = 194}, + [3442] = {.lex_state = 219}, + [3443] = {.lex_state = 202}, + [3444] = {.lex_state = 238}, + [3445] = {.lex_state = 202}, + [3446] = {.lex_state = 202}, + [3447] = {.lex_state = 202}, + [3448] = {.lex_state = 194}, + [3449] = {.lex_state = 202}, + [3450] = {.lex_state = 194}, + [3451] = {.lex_state = 219}, + [3452] = {.lex_state = 202}, + [3453] = {.lex_state = 219}, + [3454] = {.lex_state = 202}, + [3455] = {.lex_state = 202}, + [3456] = {.lex_state = 194}, + [3457] = {.lex_state = 202}, + [3458] = {.lex_state = 202}, + [3459] = {.lex_state = 240}, + [3460] = {.lex_state = 238}, + [3461] = {.lex_state = 202}, + [3462] = {.lex_state = 202}, + [3463] = {.lex_state = 202}, + [3464] = {.lex_state = 202}, + [3465] = {.lex_state = 219}, + [3466] = {.lex_state = 202}, + [3467] = {.lex_state = 202}, + [3468] = {.lex_state = 202}, + [3469] = {.lex_state = 202}, [3470] = {.lex_state = 207}, - [3471] = {.lex_state = 207}, - [3472] = {.lex_state = 207}, - [3473] = {.lex_state = 207}, - [3474] = {.lex_state = 207}, - [3475] = {.lex_state = 207}, - [3476] = {.lex_state = 207}, - [3477] = {.lex_state = 195}, - [3478] = {.lex_state = 222}, - [3479] = {.lex_state = 207}, - [3480] = {.lex_state = 207}, - [3481] = {.lex_state = 207}, - [3482] = {.lex_state = 190}, - [3483] = {.lex_state = 207}, - [3484] = {.lex_state = 194}, - [3485] = {.lex_state = 207}, - [3486] = {.lex_state = 207}, - [3487] = {.lex_state = 207}, - [3488] = {.lex_state = 207}, - [3489] = {.lex_state = 194}, - [3490] = {.lex_state = 207}, - [3491] = {.lex_state = 207}, - [3492] = {.lex_state = 207}, - [3493] = {.lex_state = 207}, - [3494] = {.lex_state = 204}, - [3495] = {.lex_state = 207}, - [3496] = {.lex_state = 194}, - [3497] = {.lex_state = 240}, - [3498] = {.lex_state = 207}, - [3499] = {.lex_state = 207}, - [3500] = {.lex_state = 202}, - [3501] = {.lex_state = 207}, - [3502] = {.lex_state = 207}, - [3503] = {.lex_state = 207}, - [3504] = {.lex_state = 207}, + [3471] = {.lex_state = 202}, + [3472] = {.lex_state = 194}, + [3473] = {.lex_state = 202}, + [3474] = {.lex_state = 202}, + [3475] = {.lex_state = 219}, + [3476] = {.lex_state = 194}, + [3477] = {.lex_state = 194}, + [3478] = {.lex_state = 238}, + [3479] = {.lex_state = 240}, + [3480] = {.lex_state = 219}, + [3481] = {.lex_state = 242}, + [3482] = {.lex_state = 202}, + [3483] = {.lex_state = 219}, + [3484] = {.lex_state = 207}, + [3485] = {.lex_state = 190}, + [3486] = {.lex_state = 240}, + [3487] = {.lex_state = 190}, + [3488] = {.lex_state = 240}, + [3489] = {.lex_state = 240}, + [3490] = {.lex_state = 194}, + [3491] = {.lex_state = 190}, + [3492] = {.lex_state = 190}, + [3493] = {.lex_state = 240}, + [3494] = {.lex_state = 195}, + [3495] = {.lex_state = 240}, + [3496] = {.lex_state = 207}, + [3497] = {.lex_state = 242}, + [3498] = {.lex_state = 199}, + [3499] = {.lex_state = 240}, + [3500] = {.lex_state = 192}, + [3501] = {.lex_state = 242}, + [3502] = {.lex_state = 240}, + [3503] = {.lex_state = 242}, + [3504] = {.lex_state = 199}, [3505] = {.lex_state = 207}, - [3506] = {.lex_state = 204}, - [3507] = {.lex_state = 204}, - [3508] = {.lex_state = 204}, - [3509] = {.lex_state = 204}, - [3510] = {.lex_state = 204}, - [3511] = {.lex_state = 207}, - [3512] = {.lex_state = 204}, - [3513] = {.lex_state = 204}, - [3514] = {.lex_state = 222}, - [3515] = {.lex_state = 204}, - [3516] = {.lex_state = 204}, - [3517] = {.lex_state = 207}, - [3518] = {.lex_state = 204}, - [3519] = {.lex_state = 194}, - [3520] = {.lex_state = 204}, - [3521] = {.lex_state = 207}, - [3522] = {.lex_state = 195}, - [3523] = {.lex_state = 207}, - [3524] = {.lex_state = 207}, - [3525] = {.lex_state = 207}, - [3526] = {.lex_state = 207}, - [3527] = {.lex_state = 204}, - [3528] = {.lex_state = 207}, + [3506] = {.lex_state = 240}, + [3507] = {.lex_state = 207}, + [3508] = {.lex_state = 207}, + [3509] = {.lex_state = 207}, + [3510] = {.lex_state = 207}, + [3511] = {.lex_state = 240}, + [3512] = {.lex_state = 207}, + [3513] = {.lex_state = 240}, + [3514] = {.lex_state = 242}, + [3515] = {.lex_state = 240}, + [3516] = {.lex_state = 240}, + [3517] = {.lex_state = 194}, + [3518] = {.lex_state = 192}, + [3519] = {.lex_state = 219}, + [3520] = {.lex_state = 194}, + [3521] = {.lex_state = 219}, + [3522] = {.lex_state = 194}, + [3523] = {.lex_state = 194}, + [3524] = {.lex_state = 240}, + [3525] = {.lex_state = 219}, + [3526] = {.lex_state = 219}, + [3527] = {.lex_state = 219}, + [3528] = {.lex_state = 194}, [3529] = {.lex_state = 194}, [3530] = {.lex_state = 194}, - [3531] = {.lex_state = 207}, - [3532] = {.lex_state = 222}, - [3533] = {.lex_state = 204}, - [3534] = {.lex_state = 240}, - [3535] = {.lex_state = 204}, - [3536] = {.lex_state = 204}, - [3537] = {.lex_state = 204}, - [3538] = {.lex_state = 207}, - [3539] = {.lex_state = 222}, - [3540] = {.lex_state = 195}, - [3541] = {.lex_state = 207}, - [3542] = {.lex_state = 194}, - [3543] = {.lex_state = 194}, - [3544] = {.lex_state = 207}, - [3545] = {.lex_state = 207}, + [3531] = {.lex_state = 238}, + [3532] = {.lex_state = 194}, + [3533] = {.lex_state = 194}, + [3534] = {.lex_state = 194}, + [3535] = {.lex_state = 194}, + [3536] = {.lex_state = 194}, + [3537] = {.lex_state = 240}, + [3538] = {.lex_state = 221}, + [3539] = {.lex_state = 219}, + [3540] = {.lex_state = 194}, + [3541] = {.lex_state = 194}, + [3542] = {.lex_state = 219}, + [3543] = {.lex_state = 219}, + [3544] = {.lex_state = 192}, + [3545] = {.lex_state = 192}, [3546] = {.lex_state = 194}, [3547] = {.lex_state = 194}, - [3548] = {.lex_state = 207}, - [3549] = {.lex_state = 207}, - [3550] = {.lex_state = 207}, - [3551] = {.lex_state = 208}, - [3552] = {.lex_state = 204}, - [3553] = {.lex_state = 207}, - [3554] = {.lex_state = 207}, - [3555] = {.lex_state = 207}, - [3556] = {.lex_state = 207}, - [3557] = {.lex_state = 190}, - [3558] = {.lex_state = 207}, - [3559] = {.lex_state = 207}, - [3560] = {.lex_state = 204}, - [3561] = {.lex_state = 204}, - [3562] = {.lex_state = 207}, - [3563] = {.lex_state = 204}, - [3564] = {.lex_state = 204}, + [3548] = {.lex_state = 221}, + [3549] = {.lex_state = 194}, + [3550] = {.lex_state = 219}, + [3551] = {.lex_state = 194}, + [3552] = {.lex_state = 194}, + [3553] = {.lex_state = 194}, + [3554] = {.lex_state = 194}, + [3555] = {.lex_state = 194}, + [3556] = {.lex_state = 194}, + [3557] = {.lex_state = 194}, + [3558] = {.lex_state = 194}, + [3559] = {.lex_state = 194}, + [3560] = {.lex_state = 219}, + [3561] = {.lex_state = 219}, + [3562] = {.lex_state = 194}, + [3563] = {.lex_state = 194}, + [3564] = {.lex_state = 194}, [3565] = {.lex_state = 194}, - [3566] = {.lex_state = 207}, + [3566] = {.lex_state = 194}, [3567] = {.lex_state = 194}, - [3568] = {.lex_state = 207}, - [3569] = {.lex_state = 207}, - [3570] = {.lex_state = 208}, - [3571] = {.lex_state = 207}, + [3568] = {.lex_state = 194}, + [3569] = {.lex_state = 219}, + [3570] = {.lex_state = 240}, + [3571] = {.lex_state = 194}, [3572] = {.lex_state = 194}, - [3573] = {.lex_state = 195}, - [3574] = {.lex_state = 207}, - [3575] = {.lex_state = 207}, - [3576] = {.lex_state = 195}, - [3577] = {.lex_state = 207}, - [3578] = {.lex_state = 207}, - [3579] = {.lex_state = 207}, + [3573] = {.lex_state = 194}, + [3574] = {.lex_state = 194}, + [3575] = {.lex_state = 194}, + [3576] = {.lex_state = 192}, + [3577] = {.lex_state = 194}, + [3578] = {.lex_state = 190}, + [3579] = {.lex_state = 194}, [3580] = {.lex_state = 194}, - [3581] = {.lex_state = 207}, - [3582] = {.lex_state = 207}, - [3583] = {.lex_state = 207}, - [3584] = {.lex_state = 207}, - [3585] = {.lex_state = 207}, - [3586] = {.lex_state = 207}, - [3587] = {.lex_state = 194}, - [3588] = {.lex_state = 194}, - [3589] = {.lex_state = 207}, - [3590] = {.lex_state = 204}, - [3591] = {.lex_state = 207}, - [3592] = {.lex_state = 204}, - [3593] = {.lex_state = 222}, + [3581] = {.lex_state = 194}, + [3582] = {.lex_state = 194}, + [3583] = {.lex_state = 194}, + [3584] = {.lex_state = 238}, + [3585] = {.lex_state = 194}, + [3586] = {.lex_state = 190}, + [3587] = {.lex_state = 190}, + [3588] = {.lex_state = 240}, + [3589] = {.lex_state = 194}, + [3590] = {.lex_state = 219}, + [3591] = {.lex_state = 194}, + [3592] = {.lex_state = 194}, + [3593] = {.lex_state = 194}, [3594] = {.lex_state = 194}, [3595] = {.lex_state = 194}, - [3596] = {.lex_state = 204}, - [3597] = {.lex_state = 204}, - [3598] = {.lex_state = 204}, - [3599] = {.lex_state = 204}, - [3600] = {.lex_state = 204}, - [3601] = {.lex_state = 169}, - [3602] = {.lex_state = 195}, - [3603] = {.lex_state = 194}, - [3604] = {.lex_state = 204}, - [3605] = {.lex_state = 204}, - [3606] = {.lex_state = 204}, - [3607] = {.lex_state = 204}, - [3608] = {.lex_state = 204}, - [3609] = {.lex_state = 194}, - [3610] = {.lex_state = 169}, - [3611] = {.lex_state = 194}, - [3612] = {.lex_state = 222}, - [3613] = {.lex_state = 194}, - [3614] = {.lex_state = 222}, - [3615] = {.lex_state = 204}, - [3616] = {.lex_state = 222}, - [3617] = {.lex_state = 169}, - [3618] = {.lex_state = 222}, - [3619] = {.lex_state = 222}, - [3620] = {.lex_state = 222}, - [3621] = {.lex_state = 222}, - [3622] = {.lex_state = 169}, - [3623] = {.lex_state = 222}, - [3624] = {.lex_state = 194}, - [3625] = {.lex_state = 222}, - [3626] = {.lex_state = 222}, - [3627] = {.lex_state = 222}, - [3628] = {.lex_state = 194}, - [3629] = {.lex_state = 222}, - [3630] = {.lex_state = 222}, - [3631] = {.lex_state = 222}, - [3632] = {.lex_state = 222}, - [3633] = {.lex_state = 194}, - [3634] = {.lex_state = 194}, - [3635] = {.lex_state = 194}, - [3636] = {.lex_state = 222}, - [3637] = {.lex_state = 222}, - [3638] = {.lex_state = 222}, - [3639] = {.lex_state = 222}, - [3640] = {.lex_state = 204}, - [3641] = {.lex_state = 222}, - [3642] = {.lex_state = 222}, - [3643] = {.lex_state = 222}, - [3644] = {.lex_state = 222}, - [3645] = {.lex_state = 222}, - [3646] = {.lex_state = 222}, - [3647] = {.lex_state = 222}, - [3648] = {.lex_state = 222}, - [3649] = {.lex_state = 222}, - [3650] = {.lex_state = 222}, - [3651] = {.lex_state = 222}, - [3652] = {.lex_state = 222}, - [3653] = {.lex_state = 222}, - [3654] = {.lex_state = 222}, - [3655] = {.lex_state = 222}, - [3656] = {.lex_state = 194}, - [3657] = {.lex_state = 222}, - [3658] = {.lex_state = 222}, - [3659] = {.lex_state = 222}, - [3660] = {.lex_state = 222}, - [3661] = {.lex_state = 222}, - [3662] = {.lex_state = 194}, - [3663] = {.lex_state = 222}, - [3664] = {.lex_state = 195}, - [3665] = {.lex_state = 195}, - [3666] = {.lex_state = 194}, - [3667] = {.lex_state = 169}, - [3668] = {.lex_state = 194}, - [3669] = {.lex_state = 194}, - [3670] = {.lex_state = 194}, - [3671] = {.lex_state = 194}, - [3672] = {.lex_state = 194}, - [3673] = {.lex_state = 194}, - [3674] = {.lex_state = 194}, - [3675] = {.lex_state = 194}, - [3676] = {.lex_state = 194}, - [3677] = {.lex_state = 194}, - [3678] = {.lex_state = 194}, - [3679] = {.lex_state = 194}, - [3680] = {.lex_state = 194}, - [3681] = {.lex_state = 213}, - [3682] = {.lex_state = 222}, - [3683] = {.lex_state = 169}, - [3684] = {.lex_state = 194}, - [3685] = {.lex_state = 194}, - [3686] = {.lex_state = 194}, - [3687] = {.lex_state = 194}, - [3688] = {.lex_state = 194}, - [3689] = {.lex_state = 194}, - [3690] = {.lex_state = 194}, - [3691] = {.lex_state = 194}, - [3692] = {.lex_state = 194}, - [3693] = {.lex_state = 194}, - [3694] = {.lex_state = 194}, - [3695] = {.lex_state = 213}, - [3696] = {.lex_state = 194}, - [3697] = {.lex_state = 194}, - [3698] = {.lex_state = 194}, - [3699] = {.lex_state = 194}, - [3700] = {.lex_state = 194}, - [3701] = {.lex_state = 194}, - [3702] = {.lex_state = 194}, - [3703] = {.lex_state = 194}, - [3704] = {.lex_state = 213}, - [3705] = {.lex_state = 213}, - [3706] = {.lex_state = 194}, - [3707] = {.lex_state = 194}, - [3708] = {.lex_state = 194}, - [3709] = {.lex_state = 194}, - [3710] = {.lex_state = 194}, - [3711] = {.lex_state = 207}, - [3712] = {.lex_state = 194}, - [3713] = {.lex_state = 194}, - [3714] = {.lex_state = 194}, - [3715] = {.lex_state = 204}, - [3716] = {.lex_state = 194}, - [3717] = {.lex_state = 194}, - [3718] = {.lex_state = 204}, - [3719] = {.lex_state = 194}, - [3720] = {.lex_state = 213}, - [3721] = {.lex_state = 194}, - [3722] = {.lex_state = 204}, - [3723] = {.lex_state = 194}, - [3724] = {.lex_state = 204}, - [3725] = {.lex_state = 204}, - [3726] = {.lex_state = 207}, - [3727] = {.lex_state = 204}, - [3728] = {.lex_state = 207}, - [3729] = {.lex_state = 238}, - [3730] = {.lex_state = 212}, - [3731] = {.lex_state = 204}, - [3732] = {.lex_state = 194}, - [3733] = {.lex_state = 204}, - [3734] = {.lex_state = 194}, - [3735] = {.lex_state = 207}, - [3736] = {.lex_state = 194}, - [3737] = {.lex_state = 194}, - [3738] = {.lex_state = 204}, - [3739] = {.lex_state = 204}, - [3740] = {.lex_state = 204}, - [3741] = {.lex_state = 204}, - [3742] = {.lex_state = 194}, - [3743] = {.lex_state = 240}, - [3744] = {.lex_state = 240}, - [3745] = {.lex_state = 197}, - [3746] = {.lex_state = 194}, - [3747] = {.lex_state = 202}, - [3748] = {.lex_state = 194}, - [3749] = {.lex_state = 222}, - [3750] = {.lex_state = 194}, - [3751] = {.lex_state = 204}, - [3752] = {.lex_state = 194}, - [3753] = {.lex_state = 204}, - [3754] = {.lex_state = 194}, - [3755] = {.lex_state = 204}, - [3756] = {.lex_state = 204}, - [3757] = {.lex_state = 194}, - [3758] = {.lex_state = 204}, - [3759] = {.lex_state = 240}, - [3760] = {.lex_state = 204}, - [3761] = {.lex_state = 240}, - [3762] = {.lex_state = 202}, - [3763] = {.lex_state = 194}, - [3764] = {.lex_state = 204}, - [3765] = {.lex_state = 194}, - [3766] = {.lex_state = 194}, - [3767] = {.lex_state = 194}, - [3768] = {.lex_state = 204}, - [3769] = {.lex_state = 222}, - [3770] = {.lex_state = 194}, - [3771] = {.lex_state = 194}, - [3772] = {.lex_state = 194}, - [3773] = {.lex_state = 204}, - [3774] = {.lex_state = 194}, - [3775] = {.lex_state = 194}, - [3776] = {.lex_state = 194}, - [3777] = {.lex_state = 204}, - [3778] = {.lex_state = 194}, - [3779] = {.lex_state = 194}, - [3780] = {.lex_state = 190}, - [3781] = {.lex_state = 204}, - [3782] = {.lex_state = 204}, - [3783] = {.lex_state = 204}, + [3596] = {.lex_state = 194}, + [3597] = {.lex_state = 190}, + [3598] = {.lex_state = 194}, + [3599] = {.lex_state = 194}, + [3600] = {.lex_state = 194}, + [3601] = {.lex_state = 194}, + [3602] = {.lex_state = 194}, + [3603] = {.lex_state = 192}, + [3604] = {.lex_state = 192}, + [3605] = {.lex_state = 240}, + [3606] = {.lex_state = 240}, + [3607] = {.lex_state = 225}, + [3608] = {.lex_state = 225}, + [3609] = {.lex_state = 192}, + [3610] = {.lex_state = 192}, + [3611] = {.lex_state = 240}, + [3612] = {.lex_state = 240}, + [3613] = {.lex_state = 240}, + [3614] = {.lex_state = 240}, + [3615] = {.lex_state = 240}, + [3616] = {.lex_state = 240}, + [3617] = {.lex_state = 240}, + [3618] = {.lex_state = 240}, + [3619] = {.lex_state = 240}, + [3620] = {.lex_state = 240}, + [3621] = {.lex_state = 240}, + [3622] = {.lex_state = 240}, + [3623] = {.lex_state = 240}, + [3624] = {.lex_state = 240}, + [3625] = {.lex_state = 240}, + [3626] = {.lex_state = 240}, + [3627] = {.lex_state = 240}, + [3628] = {.lex_state = 238}, + [3629] = {.lex_state = 225}, + [3630] = {.lex_state = 240}, + [3631] = {.lex_state = 221}, + [3632] = {.lex_state = 240}, + [3633] = {.lex_state = 240}, + [3634] = {.lex_state = 221}, + [3635] = {.lex_state = 240}, + [3636] = {.lex_state = 240}, + [3637] = {.lex_state = 240}, + [3638] = {.lex_state = 240}, + [3639] = {.lex_state = 240}, + [3640] = {.lex_state = 240}, + [3641] = {.lex_state = 225}, + [3642] = {.lex_state = 240}, + [3643] = {.lex_state = 240}, + [3644] = {.lex_state = 240}, + [3645] = {.lex_state = 225}, + [3646] = {.lex_state = 225}, + [3647] = {.lex_state = 240}, + [3648] = {.lex_state = 240}, + [3649] = {.lex_state = 225}, + [3650] = {.lex_state = 240}, + [3651] = {.lex_state = 238}, + [3652] = {.lex_state = 225}, + [3653] = {.lex_state = 238}, + [3654] = {.lex_state = 238}, + [3655] = {.lex_state = 240}, + [3656] = {.lex_state = 238}, + [3657] = {.lex_state = 225}, + [3658] = {.lex_state = 238}, + [3659] = {.lex_state = 238}, + [3660] = {.lex_state = 225}, + [3661] = {.lex_state = 242}, + [3662] = {.lex_state = 219}, + [3663] = {.lex_state = 238}, + [3664] = {.lex_state = 238}, + [3665] = {.lex_state = 225}, + [3666] = {.lex_state = 225}, + [3667] = {.lex_state = 238}, + [3668] = {.lex_state = 238}, + [3669] = {.lex_state = 238}, + [3670] = {.lex_state = 238}, + [3671] = {.lex_state = 238}, + [3672] = {.lex_state = 238}, + [3673] = {.lex_state = 238}, + [3674] = {.lex_state = 225}, + [3675] = {.lex_state = 238}, + [3676] = {.lex_state = 238}, + [3677] = {.lex_state = 238}, + [3678] = {.lex_state = 225}, + [3679] = {.lex_state = 225}, + [3680] = {.lex_state = 238}, + [3681] = {.lex_state = 238}, + [3682] = {.lex_state = 238}, + [3683] = {.lex_state = 238}, + [3684] = {.lex_state = 238}, + [3685] = {.lex_state = 225}, + [3686] = {.lex_state = 238}, + [3687] = {.lex_state = 238}, + [3688] = {.lex_state = 238}, + [3689] = {.lex_state = 240}, + [3690] = {.lex_state = 219}, + [3691] = {.lex_state = 240}, + [3692] = {.lex_state = 238}, + [3693] = {.lex_state = 238}, + [3694] = {.lex_state = 225}, + [3695] = {.lex_state = 238}, + [3696] = {.lex_state = 238}, + [3697] = {.lex_state = 238}, + [3698] = {.lex_state = 242}, + [3699] = {.lex_state = 238}, + [3700] = {.lex_state = 238}, + [3701] = {.lex_state = 238}, + [3702] = {.lex_state = 238}, + [3703] = {.lex_state = 238}, + [3704] = {.lex_state = 238}, + [3705] = {.lex_state = 242}, + [3706] = {.lex_state = 238}, + [3707] = {.lex_state = 238}, + [3708] = {.lex_state = 238}, + [3709] = {.lex_state = 238}, + [3710] = {.lex_state = 238}, + [3711] = {.lex_state = 238}, + [3712] = {.lex_state = 222}, + [3713] = {.lex_state = 238}, + [3714] = {.lex_state = 238}, + [3715] = {.lex_state = 238}, + [3716] = {.lex_state = 242}, + [3717] = {.lex_state = 240}, + [3718] = {.lex_state = 238}, + [3719] = {.lex_state = 238}, + [3720] = {.lex_state = 238}, + [3721] = {.lex_state = 238}, + [3722] = {.lex_state = 238}, + [3723] = {.lex_state = 238}, + [3724] = {.lex_state = 240}, + [3725] = {.lex_state = 238}, + [3726] = {.lex_state = 238}, + [3727] = {.lex_state = 238}, + [3728] = {.lex_state = 240}, + [3729] = {.lex_state = 240}, + [3730] = {.lex_state = 238}, + [3731] = {.lex_state = 222}, + [3732] = {.lex_state = 238}, + [3733] = {.lex_state = 240}, + [3734] = {.lex_state = 238}, + [3735] = {.lex_state = 238}, + [3736] = {.lex_state = 225}, + [3737] = {.lex_state = 238}, + [3738] = {.lex_state = 225}, + [3739] = {.lex_state = 225}, + [3740] = {.lex_state = 238}, + [3741] = {.lex_state = 225}, + [3742] = {.lex_state = 225}, + [3743] = {.lex_state = 238}, + [3744] = {.lex_state = 238}, + [3745] = {.lex_state = 238}, + [3746] = {.lex_state = 238}, + [3747] = {.lex_state = 238}, + [3748] = {.lex_state = 238}, + [3749] = {.lex_state = 238}, + [3750] = {.lex_state = 238}, + [3751] = {.lex_state = 238}, + [3752] = {.lex_state = 225}, + [3753] = {.lex_state = 238}, + [3754] = {.lex_state = 238}, + [3755] = {.lex_state = 238}, + [3756] = {.lex_state = 238}, + [3757] = {.lex_state = 238}, + [3758] = {.lex_state = 238}, + [3759] = {.lex_state = 238}, + [3760] = {.lex_state = 238}, + [3761] = {.lex_state = 238}, + [3762] = {.lex_state = 238}, + [3763] = {.lex_state = 238}, + [3764] = {.lex_state = 238}, + [3765] = {.lex_state = 228}, + [3766] = {.lex_state = 240}, + [3767] = {.lex_state = 238}, + [3768] = {.lex_state = 228}, + [3769] = {.lex_state = 238}, + [3770] = {.lex_state = 238}, + [3771] = {.lex_state = 242}, + [3772] = {.lex_state = 242}, + [3773] = {.lex_state = 225}, + [3774] = {.lex_state = 238}, + [3775] = {.lex_state = 225}, + [3776] = {.lex_state = 238}, + [3777] = {.lex_state = 242}, + [3778] = {.lex_state = 225}, + [3779] = {.lex_state = 225}, + [3780] = {.lex_state = 238}, + [3781] = {.lex_state = 238}, + [3782] = {.lex_state = 238}, + [3783] = {.lex_state = 238}, [3784] = {.lex_state = 240}, - [3785] = {.lex_state = 240}, - [3786] = {.lex_state = 204}, - [3787] = {.lex_state = 194}, - [3788] = {.lex_state = 204}, - [3789] = {.lex_state = 194}, - [3790] = {.lex_state = 194}, - [3791] = {.lex_state = 240}, - [3792] = {.lex_state = 195}, - [3793] = {.lex_state = 194}, - [3794] = {.lex_state = 194}, - [3795] = {.lex_state = 204}, - [3796] = {.lex_state = 204}, - [3797] = {.lex_state = 207}, - [3798] = {.lex_state = 194}, - [3799] = {.lex_state = 204}, - [3800] = {.lex_state = 194}, - [3801] = {.lex_state = 204}, - [3802] = {.lex_state = 204}, - [3803] = {.lex_state = 207}, - [3804] = {.lex_state = 204}, - [3805] = {.lex_state = 204}, - [3806] = {.lex_state = 194}, - [3807] = {.lex_state = 213}, - [3808] = {.lex_state = 194}, - [3809] = {.lex_state = 207}, - [3810] = {.lex_state = 204}, - [3811] = {.lex_state = 204}, - [3812] = {.lex_state = 204}, - [3813] = {.lex_state = 204}, - [3814] = {.lex_state = 194}, - [3815] = {.lex_state = 204}, - [3816] = {.lex_state = 204}, - [3817] = {.lex_state = 207}, - [3818] = {.lex_state = 204}, - [3819] = {.lex_state = 204}, - [3820] = {.lex_state = 204}, - [3821] = {.lex_state = 207}, - [3822] = {.lex_state = 240}, - [3823] = {.lex_state = 194}, - [3824] = {.lex_state = 194}, - [3825] = {.lex_state = 207}, - [3826] = {.lex_state = 194}, - [3827] = {.lex_state = 207}, - [3828] = {.lex_state = 194}, - [3829] = {.lex_state = 204}, - [3830] = {.lex_state = 207}, - [3831] = {.lex_state = 194}, - [3832] = {.lex_state = 194}, - [3833] = {.lex_state = 207}, - [3834] = {.lex_state = 245}, - [3835] = {.lex_state = 207}, - [3836] = {.lex_state = 194}, - [3837] = {.lex_state = 194}, - [3838] = {.lex_state = 204}, - [3839] = {.lex_state = 207}, - [3840] = {.lex_state = 207}, - [3841] = {.lex_state = 207}, - [3842] = {.lex_state = 207}, - [3843] = {.lex_state = 240}, - [3844] = {.lex_state = 204}, - [3845] = {.lex_state = 195}, - [3846] = {.lex_state = 240}, - [3847] = {.lex_state = 240}, - [3848] = {.lex_state = 195}, - [3849] = {.lex_state = 240}, - [3850] = {.lex_state = 194}, - [3851] = {.lex_state = 195}, - [3852] = {.lex_state = 204}, - [3853] = {.lex_state = 240}, - [3854] = {.lex_state = 240}, - [3855] = {.lex_state = 240}, - [3856] = {.lex_state = 195}, - [3857] = {.lex_state = 240}, - [3858] = {.lex_state = 195}, - [3859] = {.lex_state = 195}, - [3860] = {.lex_state = 204}, - [3861] = {.lex_state = 202}, - [3862] = {.lex_state = 195}, - [3863] = {.lex_state = 204}, - [3864] = {.lex_state = 204}, - [3865] = {.lex_state = 204}, - [3866] = {.lex_state = 204}, - [3867] = {.lex_state = 204}, - [3868] = {.lex_state = 204}, - [3869] = {.lex_state = 204}, - [3870] = {.lex_state = 240}, - [3871] = {.lex_state = 240}, - [3872] = {.lex_state = 195}, - [3873] = {.lex_state = 204}, - [3874] = {.lex_state = 204}, - [3875] = {.lex_state = 204}, - [3876] = {.lex_state = 240}, - [3877] = {.lex_state = 240}, - [3878] = {.lex_state = 240}, - [3879] = {.lex_state = 190}, - [3880] = {.lex_state = 194}, - [3881] = {.lex_state = 195}, - [3882] = {.lex_state = 240}, - [3883] = {.lex_state = 204}, - [3884] = {.lex_state = 194}, - [3885] = {.lex_state = 190}, - [3886] = {.lex_state = 207}, - [3887] = {.lex_state = 199}, - [3888] = {.lex_state = 194}, - [3889] = {.lex_state = 194}, - [3890] = {.lex_state = 194}, - [3891] = {.lex_state = 240}, - [3892] = {.lex_state = 204}, - [3893] = {.lex_state = 190}, - [3894] = {.lex_state = 194}, - [3895] = {.lex_state = 194}, - [3896] = {.lex_state = 208}, - [3897] = {.lex_state = 204}, - [3898] = {.lex_state = 240}, - [3899] = {.lex_state = 208}, - [3900] = {.lex_state = 204}, - [3901] = {.lex_state = 194}, - [3902] = {.lex_state = 194}, - [3903] = {.lex_state = 195}, - [3904] = {.lex_state = 204}, - [3905] = {.lex_state = 204}, - [3906] = {.lex_state = 204}, - [3907] = {.lex_state = 194}, - [3908] = {.lex_state = 194}, - [3909] = {.lex_state = 222}, + [3785] = {.lex_state = 222}, + [3786] = {.lex_state = 225}, + [3787] = {.lex_state = 222}, + [3788] = {.lex_state = 222}, + [3789] = {.lex_state = 222}, + [3790] = {.lex_state = 222}, + [3791] = {.lex_state = 221}, + [3792] = {.lex_state = 222}, + [3793] = {.lex_state = 222}, + [3794] = {.lex_state = 241}, + [3795] = {.lex_state = 222}, + [3796] = {.lex_state = 222}, + [3797] = {.lex_state = 222}, + [3798] = {.lex_state = 222}, + [3799] = {.lex_state = 222}, + [3800] = {.lex_state = 222}, + [3801] = {.lex_state = 222}, + [3802] = {.lex_state = 222}, + [3803] = {.lex_state = 219}, + [3804] = {.lex_state = 219}, + [3805] = {.lex_state = 222}, + [3806] = {.lex_state = 222}, + [3807] = {.lex_state = 222}, + [3808] = {.lex_state = 222}, + [3809] = {.lex_state = 222}, + [3810] = {.lex_state = 222}, + [3811] = {.lex_state = 241}, + [3812] = {.lex_state = 222}, + [3813] = {.lex_state = 225}, + [3814] = {.lex_state = 225}, + [3815] = {.lex_state = 225}, + [3816] = {.lex_state = 240}, + [3817] = {.lex_state = 240}, + [3818] = {.lex_state = 222}, + [3819] = {.lex_state = 225}, + [3820] = {.lex_state = 238}, + [3821] = {.lex_state = 238}, + [3822] = {.lex_state = 225}, + [3823] = {.lex_state = 243}, + [3824] = {.lex_state = 240}, + [3825] = {.lex_state = 240}, + [3826] = {.lex_state = 225}, + [3827] = {.lex_state = 225}, + [3828] = {.lex_state = 225}, + [3829] = {.lex_state = 240}, + [3830] = {.lex_state = 240}, + [3831] = {.lex_state = 225}, + [3832] = {.lex_state = 225}, + [3833] = {.lex_state = 225}, + [3834] = {.lex_state = 225}, + [3835] = {.lex_state = 225}, + [3836] = {.lex_state = 225}, + [3837] = {.lex_state = 225}, + [3838] = {.lex_state = 225}, + [3839] = {.lex_state = 225}, + [3840] = {.lex_state = 225}, + [3841] = {.lex_state = 225}, + [3842] = {.lex_state = 225}, + [3843] = {.lex_state = 225}, + [3844] = {.lex_state = 225}, + [3845] = {.lex_state = 225}, + [3846] = {.lex_state = 225}, + [3847] = {.lex_state = 225}, + [3848] = {.lex_state = 238}, + [3849] = {.lex_state = 225}, + [3850] = {.lex_state = 225}, + [3851] = {.lex_state = 240}, + [3852] = {.lex_state = 242}, + [3853] = {.lex_state = 225}, + [3854] = {.lex_state = 242}, + [3855] = {.lex_state = 225}, + [3856] = {.lex_state = 225}, + [3857] = {.lex_state = 226}, + [3858] = {.lex_state = 225}, + [3859] = {.lex_state = 225}, + [3860] = {.lex_state = 225}, + [3861] = {.lex_state = 240}, + [3862] = {.lex_state = 225}, + [3863] = {.lex_state = 222}, + [3864] = {.lex_state = 225}, + [3865] = {.lex_state = 225}, + [3866] = {.lex_state = 225}, + [3867] = {.lex_state = 226}, + [3868] = {.lex_state = 225}, + [3869] = {.lex_state = 242}, + [3870] = {.lex_state = 225}, + [3871] = {.lex_state = 238}, + [3872] = {.lex_state = 225}, + [3873] = {.lex_state = 225}, + [3874] = {.lex_state = 225}, + [3875] = {.lex_state = 242}, + [3876] = {.lex_state = 225}, + [3877] = {.lex_state = 222}, + [3878] = {.lex_state = 225}, + [3879] = {.lex_state = 225}, + [3880] = {.lex_state = 225}, + [3881] = {.lex_state = 238}, + [3882] = {.lex_state = 225}, + [3883] = {.lex_state = 238}, + [3884] = {.lex_state = 238}, + [3885] = {.lex_state = 238}, + [3886] = {.lex_state = 225}, + [3887] = {.lex_state = 242}, + [3888] = {.lex_state = 225}, + [3889] = {.lex_state = 225}, + [3890] = {.lex_state = 222}, + [3891] = {.lex_state = 242}, + [3892] = {.lex_state = 238}, + [3893] = {.lex_state = 238}, + [3894] = {.lex_state = 240}, + [3895] = {.lex_state = 225}, + [3896] = {.lex_state = 225}, + [3897] = {.lex_state = 219}, + [3898] = {.lex_state = 225}, + [3899] = {.lex_state = 240}, + [3900] = {.lex_state = 225}, + [3901] = {.lex_state = 219}, + [3902] = {.lex_state = 225}, + [3903] = {.lex_state = 225}, + [3904] = {.lex_state = 225}, + [3905] = {.lex_state = 225}, + [3906] = {.lex_state = 219}, + [3907] = {.lex_state = 225}, + [3908] = {.lex_state = 225}, + [3909] = {.lex_state = 225}, [3910] = {.lex_state = 240}, - [3911] = {.lex_state = 204}, - [3912] = {.lex_state = 194}, - [3913] = {.lex_state = 194}, - [3914] = {.lex_state = 240}, - [3915] = {.lex_state = 240}, - [3916] = {.lex_state = 240}, - [3917] = {.lex_state = 195}, - [3918] = {.lex_state = 195}, - [3919] = {.lex_state = 195}, - [3920] = {.lex_state = 195}, - [3921] = {.lex_state = 195}, - [3922] = {.lex_state = 195}, - [3923] = {.lex_state = 194}, - [3924] = {.lex_state = 194}, - [3925] = {.lex_state = 199}, - [3926] = {.lex_state = 240}, - [3927] = {.lex_state = 195}, - [3928] = {.lex_state = 195}, - [3929] = {.lex_state = 238}, - [3930] = {.lex_state = 240}, - [3931] = {.lex_state = 195}, - [3932] = {.lex_state = 238}, - [3933] = {.lex_state = 240}, - [3934] = {.lex_state = 202}, - [3935] = {.lex_state = 241}, - [3936] = {.lex_state = 204}, - [3937] = {.lex_state = 194}, - [3938] = {.lex_state = 240}, - [3939] = {.lex_state = 195}, - [3940] = {.lex_state = 194}, - [3941] = {.lex_state = 195}, - [3942] = {.lex_state = 240}, - [3943] = {.lex_state = 190}, - [3944] = {.lex_state = 240}, - [3945] = {.lex_state = 194}, - [3946] = {.lex_state = 194}, - [3947] = {.lex_state = 195}, - [3948] = {.lex_state = 204}, - [3949] = {.lex_state = 195}, - [3950] = {.lex_state = 195}, - [3951] = {.lex_state = 207}, - [3952] = {.lex_state = 240}, - [3953] = {.lex_state = 190}, - [3954] = {.lex_state = 240}, - [3955] = {.lex_state = 204}, - [3956] = {.lex_state = 204}, - [3957] = {.lex_state = 194}, - [3958] = {.lex_state = 240}, - [3959] = {.lex_state = 201}, - [3960] = {.lex_state = 194}, - [3961] = {.lex_state = 190}, - [3962] = {.lex_state = 240}, - [3963] = {.lex_state = 240}, - [3964] = {.lex_state = 194}, - [3965] = {.lex_state = 240}, - [3966] = {.lex_state = 202}, - [3967] = {.lex_state = 195}, - [3968] = {.lex_state = 240}, - [3969] = {.lex_state = 240}, - [3970] = {.lex_state = 176}, - [3971] = {.lex_state = 240}, - [3972] = {.lex_state = 195}, - [3973] = {.lex_state = 240}, - [3974] = {.lex_state = 204}, - [3975] = {.lex_state = 195}, - [3976] = {.lex_state = 240}, - [3977] = {.lex_state = 240}, - [3978] = {.lex_state = 202}, - [3979] = {.lex_state = 240}, - [3980] = {.lex_state = 240}, - [3981] = {.lex_state = 194}, - [3982] = {.lex_state = 240}, - [3983] = {.lex_state = 194}, - [3984] = {.lex_state = 240}, - [3985] = {.lex_state = 194}, - [3986] = {.lex_state = 194}, - [3987] = {.lex_state = 202}, - [3988] = {.lex_state = 240}, - [3989] = {.lex_state = 240}, - [3990] = {.lex_state = 240}, - [3991] = {.lex_state = 222}, - [3992] = {.lex_state = 195}, - [3993] = {.lex_state = 202}, - [3994] = {.lex_state = 194}, - [3995] = {.lex_state = 240}, - [3996] = {.lex_state = 190}, - [3997] = {.lex_state = 240}, - [3998] = {.lex_state = 240}, - [3999] = {.lex_state = 204}, - [4000] = {.lex_state = 194}, - [4001] = {.lex_state = 240}, - [4002] = {.lex_state = 195}, - [4003] = {.lex_state = 240}, - [4004] = {.lex_state = 194}, - [4005] = {.lex_state = 238}, - [4006] = {.lex_state = 194}, - [4007] = {.lex_state = 194}, - [4008] = {.lex_state = 194}, - [4009] = {.lex_state = 194}, - [4010] = {.lex_state = 194}, - [4011] = {.lex_state = 194}, - [4012] = {.lex_state = 194}, - [4013] = {.lex_state = 194}, - [4014] = {.lex_state = 194}, - [4015] = {.lex_state = 194}, - [4016] = {.lex_state = 194}, - [4017] = {.lex_state = 194}, - [4018] = {.lex_state = 194}, - [4019] = {.lex_state = 194}, - [4020] = {.lex_state = 194}, - [4021] = {.lex_state = 194}, - [4022] = {.lex_state = 222}, - [4023] = {.lex_state = 222}, - [4024] = {.lex_state = 222}, - [4025] = {.lex_state = 222}, - [4026] = {.lex_state = 194}, - [4027] = {.lex_state = 194}, - [4028] = {.lex_state = 194}, - [4029] = {.lex_state = 222}, - [4030] = {.lex_state = 213}, - [4031] = {.lex_state = 194}, - [4032] = {.lex_state = 222}, - [4033] = {.lex_state = 207}, - [4034] = {.lex_state = 194}, - [4035] = {.lex_state = 194}, - [4036] = {.lex_state = 194}, - [4037] = {.lex_state = 194}, - [4038] = {.lex_state = 238}, - [4039] = {.lex_state = 238}, - [4040] = {.lex_state = 194}, - [4041] = {.lex_state = 238}, - [4042] = {.lex_state = 222}, - [4043] = {.lex_state = 238}, - [4044] = {.lex_state = 238}, - [4045] = {.lex_state = 194}, + [3911] = {.lex_state = 225}, + [3912] = {.lex_state = 240}, + [3913] = {.lex_state = 219}, + [3914] = {.lex_state = 219}, + [3915] = {.lex_state = 225}, + [3916] = {.lex_state = 225}, + [3917] = {.lex_state = 225}, + [3918] = {.lex_state = 225}, + [3919] = {.lex_state = 225}, + [3920] = {.lex_state = 219}, + [3921] = {.lex_state = 225}, + [3922] = {.lex_state = 225}, + [3923] = {.lex_state = 240}, + [3924] = {.lex_state = 225}, + [3925] = {.lex_state = 225}, + [3926] = {.lex_state = 225}, + [3927] = {.lex_state = 225}, + [3928] = {.lex_state = 225}, + [3929] = {.lex_state = 225}, + [3930] = {.lex_state = 222}, + [3931] = {.lex_state = 222}, + [3932] = {.lex_state = 222}, + [3933] = {.lex_state = 219}, + [3934] = {.lex_state = 225}, + [3935] = {.lex_state = 222}, + [3936] = {.lex_state = 219}, + [3937] = {.lex_state = 222}, + [3938] = {.lex_state = 219}, + [3939] = {.lex_state = 225}, + [3940] = {.lex_state = 225}, + [3941] = {.lex_state = 219}, + [3942] = {.lex_state = 225}, + [3943] = {.lex_state = 222}, + [3944] = {.lex_state = 222}, + [3945] = {.lex_state = 225}, + [3946] = {.lex_state = 222}, + [3947] = {.lex_state = 225}, + [3948] = {.lex_state = 225}, + [3949] = {.lex_state = 242}, + [3950] = {.lex_state = 222}, + [3951] = {.lex_state = 222}, + [3952] = {.lex_state = 225}, + [3953] = {.lex_state = 222}, + [3954] = {.lex_state = 222}, + [3955] = {.lex_state = 222}, + [3956] = {.lex_state = 222}, + [3957] = {.lex_state = 225}, + [3958] = {.lex_state = 222}, + [3959] = {.lex_state = 225}, + [3960] = {.lex_state = 222}, + [3961] = {.lex_state = 222}, + [3962] = {.lex_state = 225}, + [3963] = {.lex_state = 225}, + [3964] = {.lex_state = 222}, + [3965] = {.lex_state = 219}, + [3966] = {.lex_state = 225}, + [3967] = {.lex_state = 218}, + [3968] = {.lex_state = 222}, + [3969] = {.lex_state = 222}, + [3970] = {.lex_state = 225}, + [3971] = {.lex_state = 225}, + [3972] = {.lex_state = 222}, + [3973] = {.lex_state = 225}, + [3974] = {.lex_state = 225}, + [3975] = {.lex_state = 225}, + [3976] = {.lex_state = 225}, + [3977] = {.lex_state = 222}, + [3978] = {.lex_state = 225}, + [3979] = {.lex_state = 222}, + [3980] = {.lex_state = 225}, + [3981] = {.lex_state = 222}, + [3982] = {.lex_state = 219}, + [3983] = {.lex_state = 225}, + [3984] = {.lex_state = 225}, + [3985] = {.lex_state = 222}, + [3986] = {.lex_state = 225}, + [3987] = {.lex_state = 225}, + [3988] = {.lex_state = 225}, + [3989] = {.lex_state = 225}, + [3990] = {.lex_state = 245}, + [3991] = {.lex_state = 225}, + [3992] = {.lex_state = 222}, + [3993] = {.lex_state = 222}, + [3994] = {.lex_state = 222}, + [3995] = {.lex_state = 222}, + [3996] = {.lex_state = 225}, + [3997] = {.lex_state = 242}, + [3998] = {.lex_state = 219}, + [3999] = {.lex_state = 222}, + [4000] = {.lex_state = 225}, + [4001] = {.lex_state = 219}, + [4002] = {.lex_state = 225}, + [4003] = {.lex_state = 225}, + [4004] = {.lex_state = 222}, + [4005] = {.lex_state = 222}, + [4006] = {.lex_state = 222}, + [4007] = {.lex_state = 219}, + [4008] = {.lex_state = 240}, + [4009] = {.lex_state = 225}, + [4010] = {.lex_state = 222}, + [4011] = {.lex_state = 222}, + [4012] = {.lex_state = 225}, + [4013] = {.lex_state = 222}, + [4014] = {.lex_state = 225}, + [4015] = {.lex_state = 225}, + [4016] = {.lex_state = 219}, + [4017] = {.lex_state = 222}, + [4018] = {.lex_state = 225}, + [4019] = {.lex_state = 240}, + [4020] = {.lex_state = 225}, + [4021] = {.lex_state = 225}, + [4022] = {.lex_state = 225}, + [4023] = {.lex_state = 225}, + [4024] = {.lex_state = 225}, + [4025] = {.lex_state = 225}, + [4026] = {.lex_state = 225}, + [4027] = {.lex_state = 222}, + [4028] = {.lex_state = 225}, + [4029] = {.lex_state = 225}, + [4030] = {.lex_state = 225}, + [4031] = {.lex_state = 225}, + [4032] = {.lex_state = 225}, + [4033] = {.lex_state = 245}, + [4034] = {.lex_state = 225}, + [4035] = {.lex_state = 219}, + [4036] = {.lex_state = 225}, + [4037] = {.lex_state = 222}, + [4038] = {.lex_state = 225}, + [4039] = {.lex_state = 225}, + [4040] = {.lex_state = 225}, + [4041] = {.lex_state = 225}, + [4042] = {.lex_state = 219}, + [4043] = {.lex_state = 225}, + [4044] = {.lex_state = 222}, + [4045] = {.lex_state = 225}, [4046] = {.lex_state = 222}, - [4047] = {.lex_state = 238}, - [4048] = {.lex_state = 238}, + [4047] = {.lex_state = 225}, + [4048] = {.lex_state = 222}, [4049] = {.lex_state = 222}, - [4050] = {.lex_state = 238}, - [4051] = {.lex_state = 194}, - [4052] = {.lex_state = 213}, + [4050] = {.lex_state = 222}, + [4051] = {.lex_state = 219}, + [4052] = {.lex_state = 225}, [4053] = {.lex_state = 222}, - [4054] = {.lex_state = 238}, - [4055] = {.lex_state = 213}, - [4056] = {.lex_state = 213}, - [4057] = {.lex_state = 213}, - [4058] = {.lex_state = 194}, - [4059] = {.lex_state = 194}, - [4060] = {.lex_state = 194}, - [4061] = {.lex_state = 194}, - [4062] = {.lex_state = 194}, - [4063] = {.lex_state = 194}, - [4064] = {.lex_state = 194}, - [4065] = {.lex_state = 194}, - [4066] = {.lex_state = 190}, - [4067] = {.lex_state = 194}, - [4068] = {.lex_state = 194}, - [4069] = {.lex_state = 194}, - [4070] = {.lex_state = 194}, - [4071] = {.lex_state = 213}, - [4072] = {.lex_state = 194}, - [4073] = {.lex_state = 215}, - [4074] = {.lex_state = 213}, - [4075] = {.lex_state = 194}, - [4076] = {.lex_state = 194}, - [4077] = {.lex_state = 194}, - [4078] = {.lex_state = 194}, - [4079] = {.lex_state = 194}, - [4080] = {.lex_state = 194}, - [4081] = {.lex_state = 194}, - [4082] = {.lex_state = 213}, - [4083] = {.lex_state = 194}, - [4084] = {.lex_state = 194}, - [4085] = {.lex_state = 213}, - [4086] = {.lex_state = 194}, - [4087] = {.lex_state = 194}, - [4088] = {.lex_state = 194}, - [4089] = {.lex_state = 194}, - [4090] = {.lex_state = 194}, - [4091] = {.lex_state = 207}, - [4092] = {.lex_state = 194}, - [4093] = {.lex_state = 194}, - [4094] = {.lex_state = 194}, - [4095] = {.lex_state = 194}, - [4096] = {.lex_state = 207}, - [4097] = {.lex_state = 217}, - [4098] = {.lex_state = 194}, - [4099] = {.lex_state = 194}, - [4100] = {.lex_state = 194}, - [4101] = {.lex_state = 192}, - [4102] = {.lex_state = 194}, - [4103] = {.lex_state = 207}, - [4104] = {.lex_state = 194}, - [4105] = {.lex_state = 194}, - [4106] = {.lex_state = 204}, - [4107] = {.lex_state = 194}, - [4108] = {.lex_state = 194}, - [4109] = {.lex_state = 207}, - [4110] = {.lex_state = 194}, - [4111] = {.lex_state = 194}, - [4112] = {.lex_state = 194}, - [4113] = {.lex_state = 194}, - [4114] = {.lex_state = 222}, - [4115] = {.lex_state = 194}, - [4116] = {.lex_state = 194}, - [4117] = {.lex_state = 207}, - [4118] = {.lex_state = 194}, - [4119] = {.lex_state = 194}, - [4120] = {.lex_state = 194}, - [4121] = {.lex_state = 194}, - [4122] = {.lex_state = 222}, - [4123] = {.lex_state = 207}, - [4124] = {.lex_state = 222}, - [4125] = {.lex_state = 194}, + [4054] = {.lex_state = 225}, + [4055] = {.lex_state = 222}, + [4056] = {.lex_state = 225}, + [4057] = {.lex_state = 225}, + [4058] = {.lex_state = 238}, + [4059] = {.lex_state = 238}, + [4060] = {.lex_state = 222}, + [4061] = {.lex_state = 238}, + [4062] = {.lex_state = 242}, + [4063] = {.lex_state = 225}, + [4064] = {.lex_state = 222}, + [4065] = {.lex_state = 225}, + [4066] = {.lex_state = 222}, + [4067] = {.lex_state = 225}, + [4068] = {.lex_state = 242}, + [4069] = {.lex_state = 225}, + [4070] = {.lex_state = 242}, + [4071] = {.lex_state = 238}, + [4072] = {.lex_state = 238}, + [4073] = {.lex_state = 222}, + [4074] = {.lex_state = 225}, + [4075] = {.lex_state = 222}, + [4076] = {.lex_state = 222}, + [4077] = {.lex_state = 222}, + [4078] = {.lex_state = 222}, + [4079] = {.lex_state = 225}, + [4080] = {.lex_state = 222}, + [4081] = {.lex_state = 242}, + [4082] = {.lex_state = 238}, + [4083] = {.lex_state = 222}, + [4084] = {.lex_state = 238}, + [4085] = {.lex_state = 240}, + [4086] = {.lex_state = 222}, + [4087] = {.lex_state = 238}, + [4088] = {.lex_state = 240}, + [4089] = {.lex_state = 225}, + [4090] = {.lex_state = 240}, + [4091] = {.lex_state = 219}, + [4092] = {.lex_state = 240}, + [4093] = {.lex_state = 225}, + [4094] = {.lex_state = 222}, + [4095] = {.lex_state = 242}, + [4096] = {.lex_state = 222}, + [4097] = {.lex_state = 238}, + [4098] = {.lex_state = 225}, + [4099] = {.lex_state = 225}, + [4100] = {.lex_state = 238}, + [4101] = {.lex_state = 222}, + [4102] = {.lex_state = 238}, + [4103] = {.lex_state = 225}, + [4104] = {.lex_state = 222}, + [4105] = {.lex_state = 225}, + [4106] = {.lex_state = 225}, + [4107] = {.lex_state = 225}, + [4108] = {.lex_state = 225}, + [4109] = {.lex_state = 225}, + [4110] = {.lex_state = 225}, + [4111] = {.lex_state = 222}, + [4112] = {.lex_state = 225}, + [4113] = {.lex_state = 225}, + [4114] = {.lex_state = 225}, + [4115] = {.lex_state = 225}, + [4116] = {.lex_state = 225}, + [4117] = {.lex_state = 238}, + [4118] = {.lex_state = 238}, + [4119] = {.lex_state = 225}, + [4120] = {.lex_state = 238}, + [4121] = {.lex_state = 222}, + [4122] = {.lex_state = 225}, + [4123] = {.lex_state = 226}, + [4124] = {.lex_state = 238}, + [4125] = {.lex_state = 222}, [4126] = {.lex_state = 222}, - [4127] = {.lex_state = 194}, - [4128] = {.lex_state = 194}, - [4129] = {.lex_state = 207}, - [4130] = {.lex_state = 194}, - [4131] = {.lex_state = 194}, - [4132] = {.lex_state = 194}, - [4133] = {.lex_state = 194}, - [4134] = {.lex_state = 194}, - [4135] = {.lex_state = 194}, - [4136] = {.lex_state = 194}, - [4137] = {.lex_state = 194}, - [4138] = {.lex_state = 194}, - [4139] = {.lex_state = 194}, - [4140] = {.lex_state = 194}, - [4141] = {.lex_state = 213}, - [4142] = {.lex_state = 194}, - [4143] = {.lex_state = 194}, - [4144] = {.lex_state = 194}, - [4145] = {.lex_state = 213}, - [4146] = {.lex_state = 222}, - [4147] = {.lex_state = 238}, - [4148] = {.lex_state = 194}, - [4149] = {.lex_state = 194}, - [4150] = {.lex_state = 194}, - [4151] = {.lex_state = 207}, - [4152] = {.lex_state = 194}, - [4153] = {.lex_state = 207}, - [4154] = {.lex_state = 194}, - [4155] = {.lex_state = 194}, - [4156] = {.lex_state = 194}, - [4157] = {.lex_state = 213}, - [4158] = {.lex_state = 194}, - [4159] = {.lex_state = 207}, - [4160] = {.lex_state = 207}, - [4161] = {.lex_state = 213}, - [4162] = {.lex_state = 194}, - [4163] = {.lex_state = 194}, - [4164] = {.lex_state = 194}, - [4165] = {.lex_state = 207}, - [4166] = {.lex_state = 222}, - [4167] = {.lex_state = 194}, - [4168] = {.lex_state = 204}, - [4169] = {.lex_state = 194}, - [4170] = {.lex_state = 207}, - [4171] = {.lex_state = 190}, - [4172] = {.lex_state = 194}, - [4173] = {.lex_state = 207}, - [4174] = {.lex_state = 215}, - [4175] = {.lex_state = 194}, - [4176] = {.lex_state = 194}, - [4177] = {.lex_state = 222}, - [4178] = {.lex_state = 222}, - [4179] = {.lex_state = 238}, - [4180] = {.lex_state = 222}, - [4181] = {.lex_state = 192}, - [4182] = {.lex_state = 192}, - [4183] = {.lex_state = 222}, - [4184] = {.lex_state = 194}, - [4185] = {.lex_state = 222}, - [4186] = {.lex_state = 207}, - [4187] = {.lex_state = 222}, - [4188] = {.lex_state = 194}, - [4189] = {.lex_state = 238}, - [4190] = {.lex_state = 194}, - [4191] = {.lex_state = 194}, - [4192] = {.lex_state = 194}, - [4193] = {.lex_state = 194}, - [4194] = {.lex_state = 222}, - [4195] = {.lex_state = 194}, - [4196] = {.lex_state = 204}, - [4197] = {.lex_state = 194}, - [4198] = {.lex_state = 213}, - [4199] = {.lex_state = 207}, - [4200] = {.lex_state = 213}, - [4201] = {.lex_state = 207}, - [4202] = {.lex_state = 207}, - [4203] = {.lex_state = 194}, - [4204] = {.lex_state = 207}, - [4205] = {.lex_state = 194}, - [4206] = {.lex_state = 238}, - [4207] = {.lex_state = 207}, - [4208] = {.lex_state = 207}, - [4209] = {.lex_state = 190}, - [4210] = {.lex_state = 207}, - [4211] = {.lex_state = 194}, - [4212] = {.lex_state = 222}, - [4213] = {.lex_state = 204}, - [4214] = {.lex_state = 207}, - [4215] = {.lex_state = 194}, - [4216] = {.lex_state = 207}, - [4217] = {.lex_state = 207}, - [4218] = {.lex_state = 194}, - [4219] = {.lex_state = 194}, - [4220] = {.lex_state = 190}, - [4221] = {.lex_state = 194}, - [4222] = {.lex_state = 204}, - [4223] = {.lex_state = 204}, - [4224] = {.lex_state = 194}, - [4225] = {.lex_state = 204}, - [4226] = {.lex_state = 204}, - [4227] = {.lex_state = 204}, - [4228] = {.lex_state = 194}, - [4229] = {.lex_state = 204}, - [4230] = {.lex_state = 238}, - [4231] = {.lex_state = 194}, - [4232] = {.lex_state = 204}, - [4233] = {.lex_state = 194}, - [4234] = {.lex_state = 190}, - [4235] = {.lex_state = 204}, - [4236] = {.lex_state = 241}, - [4237] = {.lex_state = 219}, - [4238] = {.lex_state = 204}, - [4239] = {.lex_state = 194}, - [4240] = {.lex_state = 238}, - [4241] = {.lex_state = 204}, - [4242] = {.lex_state = 204}, - [4243] = {.lex_state = 219}, - [4244] = {.lex_state = 204}, - [4245] = {.lex_state = 204}, - [4246] = {.lex_state = 194}, - [4247] = {.lex_state = 204}, - [4248] = {.lex_state = 194}, - [4249] = {.lex_state = 219}, - [4250] = {.lex_state = 204}, - [4251] = {.lex_state = 204}, - [4252] = {.lex_state = 204}, - [4253] = {.lex_state = 194}, - [4254] = {.lex_state = 194}, - [4255] = {.lex_state = 240}, - [4256] = {.lex_state = 204}, - [4257] = {.lex_state = 194}, - [4258] = {.lex_state = 204}, - [4259] = {.lex_state = 194}, - [4260] = {.lex_state = 238}, - [4261] = {.lex_state = 204}, - [4262] = {.lex_state = 204}, - [4263] = {.lex_state = 241}, - [4264] = {.lex_state = 194}, - [4265] = {.lex_state = 194}, - [4266] = {.lex_state = 204}, - [4267] = {.lex_state = 194}, - [4268] = {.lex_state = 194}, - [4269] = {.lex_state = 194}, - [4270] = {.lex_state = 204}, - [4271] = {.lex_state = 194}, - [4272] = {.lex_state = 204}, - [4273] = {.lex_state = 204}, - [4274] = {.lex_state = 204}, - [4275] = {.lex_state = 204}, - [4276] = {.lex_state = 238}, - [4277] = {.lex_state = 204}, - [4278] = {.lex_state = 240}, - [4279] = {.lex_state = 219}, - [4280] = {.lex_state = 219}, - [4281] = {.lex_state = 194}, - [4282] = {.lex_state = 194}, - [4283] = {.lex_state = 219}, - [4284] = {.lex_state = 219}, - [4285] = {.lex_state = 204}, - [4286] = {.lex_state = 238}, - [4287] = {.lex_state = 204}, - [4288] = {.lex_state = 194}, - [4289] = {.lex_state = 241}, - [4290] = {.lex_state = 194}, - [4291] = {.lex_state = 204}, - [4292] = {.lex_state = 204}, - [4293] = {.lex_state = 204}, - [4294] = {.lex_state = 204}, - [4295] = {.lex_state = 204}, - [4296] = {.lex_state = 204}, - [4297] = {.lex_state = 207}, - [4298] = {.lex_state = 204}, - [4299] = {.lex_state = 219}, - [4300] = {.lex_state = 194}, - [4301] = {.lex_state = 204}, - [4302] = {.lex_state = 204}, - [4303] = {.lex_state = 204}, - [4304] = {.lex_state = 240}, - [4305] = {.lex_state = 204}, - [4306] = {.lex_state = 204}, - [4307] = {.lex_state = 204}, - [4308] = {.lex_state = 204}, - [4309] = {.lex_state = 204}, - [4310] = {.lex_state = 238}, - [4311] = {.lex_state = 204}, - [4312] = {.lex_state = 207}, - [4313] = {.lex_state = 204}, - [4314] = {.lex_state = 204}, - [4315] = {.lex_state = 204}, - [4316] = {.lex_state = 194}, - [4317] = {.lex_state = 194}, - [4318] = {.lex_state = 204}, - [4319] = {.lex_state = 204}, - [4320] = {.lex_state = 204}, - [4321] = {.lex_state = 204}, - [4322] = {.lex_state = 204}, - [4323] = {.lex_state = 204}, - [4324] = {.lex_state = 204}, - [4325] = {.lex_state = 204}, - [4326] = {.lex_state = 204}, - [4327] = {.lex_state = 204}, - [4328] = {.lex_state = 204}, - [4329] = {.lex_state = 204}, - [4330] = {.lex_state = 204}, - [4331] = {.lex_state = 194}, - [4332] = {.lex_state = 204}, - [4333] = {.lex_state = 204}, - [4334] = {.lex_state = 204}, - [4335] = {.lex_state = 241}, - [4336] = {.lex_state = 204}, - [4337] = {.lex_state = 204}, - [4338] = {.lex_state = 204}, - [4339] = {.lex_state = 204}, - [4340] = {.lex_state = 204}, - [4341] = {.lex_state = 204}, - [4342] = {.lex_state = 204}, - [4343] = {.lex_state = 219}, - [4344] = {.lex_state = 204}, - [4345] = {.lex_state = 219}, - [4346] = {.lex_state = 204}, - [4347] = {.lex_state = 238}, - [4348] = {.lex_state = 204}, - [4349] = {.lex_state = 204}, - [4350] = {.lex_state = 204}, - [4351] = {.lex_state = 204}, - [4352] = {.lex_state = 204}, - [4353] = {.lex_state = 204}, - [4354] = {.lex_state = 207}, - [4355] = {.lex_state = 199}, - [4356] = {.lex_state = 240}, - [4357] = {.lex_state = 240}, - [4358] = {.lex_state = 207}, - [4359] = {.lex_state = 240}, - [4360] = {.lex_state = 195}, - [4361] = {.lex_state = 240}, - [4362] = {.lex_state = 199}, - [4363] = {.lex_state = 190}, - [4364] = {.lex_state = 207}, - [4365] = {.lex_state = 240}, - [4366] = {.lex_state = 192}, - [4367] = {.lex_state = 194}, - [4368] = {.lex_state = 190}, - [4369] = {.lex_state = 240}, - [4370] = {.lex_state = 190}, - [4371] = {.lex_state = 207}, - [4372] = {.lex_state = 240}, - [4373] = {.lex_state = 190}, - [4374] = {.lex_state = 207}, - [4375] = {.lex_state = 240}, - [4376] = {.lex_state = 207}, - [4377] = {.lex_state = 207}, - [4378] = {.lex_state = 207}, - [4379] = {.lex_state = 194}, - [4380] = {.lex_state = 192}, - [4381] = {.lex_state = 194}, - [4382] = {.lex_state = 194}, - [4383] = {.lex_state = 194}, - [4384] = {.lex_state = 194}, - [4385] = {.lex_state = 194}, - [4386] = {.lex_state = 219}, - [4387] = {.lex_state = 240}, - [4388] = {.lex_state = 194}, - [4389] = {.lex_state = 194}, - [4390] = {.lex_state = 194}, - [4391] = {.lex_state = 194}, - [4392] = {.lex_state = 194}, - [4393] = {.lex_state = 194}, - [4394] = {.lex_state = 219}, + [4127] = {.lex_state = 219}, + [4128] = {.lex_state = 225}, + [4129] = {.lex_state = 225}, + [4130] = {.lex_state = 225}, + [4131] = {.lex_state = 238}, + [4132] = {.lex_state = 226}, + [4133] = {.lex_state = 238}, + [4134] = {.lex_state = 225}, + [4135] = {.lex_state = 225}, + [4136] = {.lex_state = 238}, + [4137] = {.lex_state = 238}, + [4138] = {.lex_state = 238}, + [4139] = {.lex_state = 222}, + [4140] = {.lex_state = 238}, + [4141] = {.lex_state = 225}, + [4142] = {.lex_state = 225}, + [4143] = {.lex_state = 238}, + [4144] = {.lex_state = 225}, + [4145] = {.lex_state = 225}, + [4146] = {.lex_state = 225}, + [4147] = {.lex_state = 225}, + [4148] = {.lex_state = 238}, + [4149] = {.lex_state = 225}, + [4150] = {.lex_state = 225}, + [4151] = {.lex_state = 225}, + [4152] = {.lex_state = 238}, + [4153] = {.lex_state = 225}, + [4154] = {.lex_state = 225}, + [4155] = {.lex_state = 238}, + [4156] = {.lex_state = 225}, + [4157] = {.lex_state = 242}, + [4158] = {.lex_state = 222}, + [4159] = {.lex_state = 225}, + [4160] = {.lex_state = 242}, + [4161] = {.lex_state = 225}, + [4162] = {.lex_state = 225}, + [4163] = {.lex_state = 222}, + [4164] = {.lex_state = 225}, + [4165] = {.lex_state = 225}, + [4166] = {.lex_state = 225}, + [4167] = {.lex_state = 238}, + [4168] = {.lex_state = 242}, + [4169] = {.lex_state = 225}, + [4170] = {.lex_state = 238}, + [4171] = {.lex_state = 225}, + [4172] = {.lex_state = 225}, + [4173] = {.lex_state = 225}, + [4174] = {.lex_state = 238}, + [4175] = {.lex_state = 225}, + [4176] = {.lex_state = 225}, + [4177] = {.lex_state = 242}, + [4178] = {.lex_state = 225}, + [4179] = {.lex_state = 225}, + [4180] = {.lex_state = 225}, + [4181] = {.lex_state = 225}, + [4182] = {.lex_state = 225}, + [4183] = {.lex_state = 225}, + [4184] = {.lex_state = 225}, + [4185] = {.lex_state = 225}, + [4186] = {.lex_state = 225}, + [4187] = {.lex_state = 225}, + [4188] = {.lex_state = 225}, + [4189] = {.lex_state = 225}, + [4190] = {.lex_state = 225}, + [4191] = {.lex_state = 225}, + [4192] = {.lex_state = 225}, + [4193] = {.lex_state = 225}, + [4194] = {.lex_state = 230}, + [4195] = {.lex_state = 225}, + [4196] = {.lex_state = 225}, + [4197] = {.lex_state = 225}, + [4198] = {.lex_state = 225}, + [4199] = {.lex_state = 225}, + [4200] = {.lex_state = 225}, + [4201] = {.lex_state = 225}, + [4202] = {.lex_state = 225}, + [4203] = {.lex_state = 225}, + [4204] = {.lex_state = 225}, + [4205] = {.lex_state = 225}, + [4206] = {.lex_state = 225}, + [4207] = {.lex_state = 222}, + [4208] = {.lex_state = 225}, + [4209] = {.lex_state = 225}, + [4210] = {.lex_state = 225}, + [4211] = {.lex_state = 225}, + [4212] = {.lex_state = 225}, + [4213] = {.lex_state = 225}, + [4214] = {.lex_state = 225}, + [4215] = {.lex_state = 225}, + [4216] = {.lex_state = 225}, + [4217] = {.lex_state = 225}, + [4218] = {.lex_state = 225}, + [4219] = {.lex_state = 225}, + [4220] = {.lex_state = 225}, + [4221] = {.lex_state = 225}, + [4222] = {.lex_state = 225}, + [4223] = {.lex_state = 225}, + [4224] = {.lex_state = 225}, + [4225] = {.lex_state = 240}, + [4226] = {.lex_state = 225}, + [4227] = {.lex_state = 225}, + [4228] = {.lex_state = 225}, + [4229] = {.lex_state = 225}, + [4230] = {.lex_state = 225}, + [4231] = {.lex_state = 225}, + [4232] = {.lex_state = 225}, + [4233] = {.lex_state = 225}, + [4234] = {.lex_state = 225}, + [4235] = {.lex_state = 225}, + [4236] = {.lex_state = 225}, + [4237] = {.lex_state = 240}, + [4238] = {.lex_state = 225}, + [4239] = {.lex_state = 241}, + [4240] = {.lex_state = 225}, + [4241] = {.lex_state = 225}, + [4242] = {.lex_state = 225}, + [4243] = {.lex_state = 225}, + [4244] = {.lex_state = 225}, + [4245] = {.lex_state = 225}, + [4246] = {.lex_state = 225}, + [4247] = {.lex_state = 225}, + [4248] = {.lex_state = 225}, + [4249] = {.lex_state = 225}, + [4250] = {.lex_state = 225}, + [4251] = {.lex_state = 230}, + [4252] = {.lex_state = 225}, + [4253] = {.lex_state = 225}, + [4254] = {.lex_state = 225}, + [4255] = {.lex_state = 225}, + [4256] = {.lex_state = 225}, + [4257] = {.lex_state = 225}, + [4258] = {.lex_state = 241}, + [4259] = {.lex_state = 225}, + [4260] = {.lex_state = 225}, + [4261] = {.lex_state = 225}, + [4262] = {.lex_state = 225}, + [4263] = {.lex_state = 225}, + [4264] = {.lex_state = 225}, + [4265] = {.lex_state = 225}, + [4266] = {.lex_state = 225}, + [4267] = {.lex_state = 225}, + [4268] = {.lex_state = 225}, + [4269] = {.lex_state = 225}, + [4270] = {.lex_state = 225}, + [4271] = {.lex_state = 225}, + [4272] = {.lex_state = 225}, + [4273] = {.lex_state = 225}, + [4274] = {.lex_state = 225}, + [4275] = {.lex_state = 225}, + [4276] = {.lex_state = 225}, + [4277] = {.lex_state = 225}, + [4278] = {.lex_state = 225}, + [4279] = {.lex_state = 225}, + [4280] = {.lex_state = 225}, + [4281] = {.lex_state = 225}, + [4282] = {.lex_state = 225}, + [4283] = {.lex_state = 225}, + [4284] = {.lex_state = 225}, + [4285] = {.lex_state = 225}, + [4286] = {.lex_state = 225}, + [4287] = {.lex_state = 225}, + [4288] = {.lex_state = 225}, + [4289] = {.lex_state = 225}, + [4290] = {.lex_state = 225}, + [4291] = {.lex_state = 225}, + [4292] = {.lex_state = 225}, + [4293] = {.lex_state = 225}, + [4294] = {.lex_state = 225}, + [4295] = {.lex_state = 225}, + [4296] = {.lex_state = 225}, + [4297] = {.lex_state = 225}, + [4298] = {.lex_state = 225}, + [4299] = {.lex_state = 225}, + [4300] = {.lex_state = 225}, + [4301] = {.lex_state = 225}, + [4302] = {.lex_state = 225}, + [4303] = {.lex_state = 225}, + [4304] = {.lex_state = 225}, + [4305] = {.lex_state = 225}, + [4306] = {.lex_state = 225}, + [4307] = {.lex_state = 225}, + [4308] = {.lex_state = 225}, + [4309] = {.lex_state = 225}, + [4310] = {.lex_state = 225}, + [4311] = {.lex_state = 225}, + [4312] = {.lex_state = 225}, + [4313] = {.lex_state = 225}, + [4314] = {.lex_state = 225}, + [4315] = {.lex_state = 225}, + [4316] = {.lex_state = 225}, + [4317] = {.lex_state = 225}, + [4318] = {.lex_state = 225}, + [4319] = {.lex_state = 225}, + [4320] = {.lex_state = 225}, + [4321] = {.lex_state = 225}, + [4322] = {.lex_state = 225}, + [4323] = {.lex_state = 225}, + [4324] = {.lex_state = 242}, + [4325] = {.lex_state = 225}, + [4326] = {.lex_state = 225}, + [4327] = {.lex_state = 225}, + [4328] = {.lex_state = 225}, + [4329] = {.lex_state = 242}, + [4330] = {.lex_state = 225}, + [4331] = {.lex_state = 225}, + [4332] = {.lex_state = 225}, + [4333] = {.lex_state = 222}, + [4334] = {.lex_state = 222}, + [4335] = {.lex_state = 222}, + [4336] = {.lex_state = 222}, + [4337] = {.lex_state = 222}, + [4338] = {.lex_state = 222}, + [4339] = {.lex_state = 222}, + [4340] = {.lex_state = 222}, + [4341] = {.lex_state = 240}, + [4342] = {.lex_state = 222}, + [4343] = {.lex_state = 242}, + [4344] = {.lex_state = 240}, + [4345] = {.lex_state = 242}, + [4346] = {.lex_state = 222}, + [4347] = {.lex_state = 222}, + [4348] = {.lex_state = 222}, + [4349] = {.lex_state = 222}, + [4350] = {.lex_state = 240}, + [4351] = {.lex_state = 222}, + [4352] = {.lex_state = 222}, + [4353] = {.lex_state = 222}, + [4354] = {.lex_state = 222}, + [4355] = {.lex_state = 222}, + [4356] = {.lex_state = 222}, + [4357] = {.lex_state = 222}, + [4358] = {.lex_state = 222}, + [4359] = {.lex_state = 222}, + [4360] = {.lex_state = 222}, + [4361] = {.lex_state = 242}, + [4362] = {.lex_state = 222}, + [4363] = {.lex_state = 222}, + [4364] = {.lex_state = 222}, + [4365] = {.lex_state = 222}, + [4366] = {.lex_state = 222}, + [4367] = {.lex_state = 240}, + [4368] = {.lex_state = 222}, + [4369] = {.lex_state = 222}, + [4370] = {.lex_state = 222}, + [4371] = {.lex_state = 240}, + [4372] = {.lex_state = 222}, + [4373] = {.lex_state = 222}, + [4374] = {.lex_state = 242}, + [4375] = {.lex_state = 222}, + [4376] = {.lex_state = 222}, + [4377] = {.lex_state = 222}, + [4378] = {.lex_state = 222}, + [4379] = {.lex_state = 240}, + [4380] = {.lex_state = 222}, + [4381] = {.lex_state = 222}, + [4382] = {.lex_state = 225}, + [4383] = {.lex_state = 222}, + [4384] = {.lex_state = 222}, + [4385] = {.lex_state = 222}, + [4386] = {.lex_state = 240}, + [4387] = {.lex_state = 242}, + [4388] = {.lex_state = 242}, + [4389] = {.lex_state = 241}, + [4390] = {.lex_state = 242}, + [4391] = {.lex_state = 242}, + [4392] = {.lex_state = 225}, + [4393] = {.lex_state = 242}, + [4394] = {.lex_state = 242}, [4395] = {.lex_state = 219}, - [4396] = {.lex_state = 194}, - [4397] = {.lex_state = 221}, - [4398] = {.lex_state = 194}, - [4399] = {.lex_state = 238}, - [4400] = {.lex_state = 194}, - [4401] = {.lex_state = 194}, - [4402] = {.lex_state = 190}, - [4403] = {.lex_state = 194}, - [4404] = {.lex_state = 194}, - [4405] = {.lex_state = 219}, - [4406] = {.lex_state = 219}, - [4407] = {.lex_state = 194}, - [4408] = {.lex_state = 194}, - [4409] = {.lex_state = 194}, - [4410] = {.lex_state = 194}, - [4411] = {.lex_state = 219}, - [4412] = {.lex_state = 194}, - [4413] = {.lex_state = 194}, - [4414] = {.lex_state = 194}, - [4415] = {.lex_state = 194}, - [4416] = {.lex_state = 194}, - [4417] = {.lex_state = 190}, - [4418] = {.lex_state = 190}, - [4419] = {.lex_state = 240}, - [4420] = {.lex_state = 194}, - [4421] = {.lex_state = 194}, - [4422] = {.lex_state = 194}, - [4423] = {.lex_state = 194}, - [4424] = {.lex_state = 194}, - [4425] = {.lex_state = 194}, - [4426] = {.lex_state = 219}, - [4427] = {.lex_state = 219}, - [4428] = {.lex_state = 194}, - [4429] = {.lex_state = 190}, - [4430] = {.lex_state = 194}, - [4431] = {.lex_state = 221}, - [4432] = {.lex_state = 194}, - [4433] = {.lex_state = 238}, - [4434] = {.lex_state = 219}, - [4435] = {.lex_state = 194}, - [4436] = {.lex_state = 194}, - [4437] = {.lex_state = 194}, - [4438] = {.lex_state = 194}, - [4439] = {.lex_state = 192}, - [4440] = {.lex_state = 194}, - [4441] = {.lex_state = 194}, - [4442] = {.lex_state = 194}, - [4443] = {.lex_state = 194}, - [4444] = {.lex_state = 194}, - [4445] = {.lex_state = 192}, - [4446] = {.lex_state = 194}, - [4447] = {.lex_state = 194}, - [4448] = {.lex_state = 194}, - [4449] = {.lex_state = 194}, - [4450] = {.lex_state = 194}, - [4451] = {.lex_state = 192}, - [4452] = {.lex_state = 194}, - [4453] = {.lex_state = 194}, - [4454] = {.lex_state = 194}, - [4455] = {.lex_state = 194}, - [4456] = {.lex_state = 194}, - [4457] = {.lex_state = 194}, - [4458] = {.lex_state = 194}, - [4459] = {.lex_state = 192}, - [4460] = {.lex_state = 240}, - [4461] = {.lex_state = 225}, - [4462] = {.lex_state = 225}, - [4463] = {.lex_state = 192}, - [4464] = {.lex_state = 240}, - [4465] = {.lex_state = 192}, - [4466] = {.lex_state = 192}, - [4467] = {.lex_state = 240}, - [4468] = {.lex_state = 240}, - [4469] = {.lex_state = 241}, - [4470] = {.lex_state = 225}, - [4471] = {.lex_state = 240}, - [4472] = {.lex_state = 240}, - [4473] = {.lex_state = 240}, - [4474] = {.lex_state = 240}, - [4475] = {.lex_state = 240}, - [4476] = {.lex_state = 240}, - [4477] = {.lex_state = 240}, - [4478] = {.lex_state = 240}, - [4479] = {.lex_state = 240}, - [4480] = {.lex_state = 240}, - [4481] = {.lex_state = 240}, - [4482] = {.lex_state = 240}, - [4483] = {.lex_state = 240}, - [4484] = {.lex_state = 240}, - [4485] = {.lex_state = 240}, - [4486] = {.lex_state = 240}, - [4487] = {.lex_state = 240}, - [4488] = {.lex_state = 240}, - [4489] = {.lex_state = 240}, - [4490] = {.lex_state = 240}, - [4491] = {.lex_state = 240}, - [4492] = {.lex_state = 221}, - [4493] = {.lex_state = 225}, - [4494] = {.lex_state = 240}, - [4495] = {.lex_state = 240}, - [4496] = {.lex_state = 225}, + [4396] = {.lex_state = 242}, + [4397] = {.lex_state = 219}, + [4398] = {.lex_state = 219}, + [4399] = {.lex_state = 242}, + [4400] = {.lex_state = 219}, + [4401] = {.lex_state = 242}, + [4402] = {.lex_state = 242}, + [4403] = {.lex_state = 242}, + [4404] = {.lex_state = 242}, + [4405] = {.lex_state = 243}, + [4406] = {.lex_state = 225}, + [4407] = {.lex_state = 241}, + [4408] = {.lex_state = 241}, + [4409] = {.lex_state = 225}, + [4410] = {.lex_state = 243}, + [4411] = {.lex_state = 225}, + [4412] = {.lex_state = 242}, + [4413] = {.lex_state = 241}, + [4414] = {.lex_state = 242}, + [4415] = {.lex_state = 242}, + [4416] = {.lex_state = 225}, + [4417] = {.lex_state = 240}, + [4418] = {.lex_state = 241}, + [4419] = {.lex_state = 241}, + [4420] = {.lex_state = 242}, + [4421] = {.lex_state = 241}, + [4422] = {.lex_state = 240}, + [4423] = {.lex_state = 241}, + [4424] = {.lex_state = 240}, + [4425] = {.lex_state = 242}, + [4426] = {.lex_state = 242}, + [4427] = {.lex_state = 240}, + [4428] = {.lex_state = 242}, + [4429] = {.lex_state = 241}, + [4430] = {.lex_state = 225}, + [4431] = {.lex_state = 225}, + [4432] = {.lex_state = 241}, + [4433] = {.lex_state = 242}, + [4434] = {.lex_state = 238}, + [4435] = {.lex_state = 241}, + [4436] = {.lex_state = 242}, + [4437] = {.lex_state = 242}, + [4438] = {.lex_state = 242}, + [4439] = {.lex_state = 242}, + [4440] = {.lex_state = 222}, + [4441] = {.lex_state = 219}, + [4442] = {.lex_state = 240}, + [4443] = {.lex_state = 240}, + [4444] = {.lex_state = 219}, + [4445] = {.lex_state = 242}, + [4446] = {.lex_state = 242}, + [4447] = {.lex_state = 240}, + [4448] = {.lex_state = 242}, + [4449] = {.lex_state = 225}, + [4450] = {.lex_state = 242}, + [4451] = {.lex_state = 219}, + [4452] = {.lex_state = 222}, + [4453] = {.lex_state = 222}, + [4454] = {.lex_state = 242}, + [4455] = {.lex_state = 222}, + [4456] = {.lex_state = 242}, + [4457] = {.lex_state = 222}, + [4458] = {.lex_state = 242}, + [4459] = {.lex_state = 222}, + [4460] = {.lex_state = 242}, + [4461] = {.lex_state = 242}, + [4462] = {.lex_state = 242}, + [4463] = {.lex_state = 225}, + [4464] = {.lex_state = 242}, + [4465] = {.lex_state = 219}, + [4466] = {.lex_state = 241}, + [4467] = {.lex_state = 241}, + [4468] = {.lex_state = 241}, + [4469] = {.lex_state = 222}, + [4470] = {.lex_state = 242}, + [4471] = {.lex_state = 242}, + [4472] = {.lex_state = 238}, + [4473] = {.lex_state = 242}, + [4474] = {.lex_state = 238}, + [4475] = {.lex_state = 242}, + [4476] = {.lex_state = 238}, + [4477] = {.lex_state = 238}, + [4478] = {.lex_state = 242}, + [4479] = {.lex_state = 242}, + [4480] = {.lex_state = 242}, + [4481] = {.lex_state = 242}, + [4482] = {.lex_state = 241}, + [4483] = {.lex_state = 241}, + [4484] = {.lex_state = 242}, + [4485] = {.lex_state = 242}, + [4486] = {.lex_state = 242}, + [4487] = {.lex_state = 242}, + [4488] = {.lex_state = 242}, + [4489] = {.lex_state = 238}, + [4490] = {.lex_state = 242}, + [4491] = {.lex_state = 241}, + [4492] = {.lex_state = 244}, + [4493] = {.lex_state = 242}, + [4494] = {.lex_state = 238}, + [4495] = {.lex_state = 242}, + [4496] = {.lex_state = 242}, [4497] = {.lex_state = 238}, - [4498] = {.lex_state = 240}, - [4499] = {.lex_state = 240}, - [4500] = {.lex_state = 240}, - [4501] = {.lex_state = 240}, - [4502] = {.lex_state = 241}, - [4503] = {.lex_state = 240}, - [4504] = {.lex_state = 240}, - [4505] = {.lex_state = 241}, - [4506] = {.lex_state = 240}, - [4507] = {.lex_state = 240}, - [4508] = {.lex_state = 240}, - [4509] = {.lex_state = 240}, - [4510] = {.lex_state = 240}, - [4511] = {.lex_state = 241}, - [4512] = {.lex_state = 240}, - [4513] = {.lex_state = 240}, - [4514] = {.lex_state = 240}, - [4515] = {.lex_state = 240}, - [4516] = {.lex_state = 240}, - [4517] = {.lex_state = 240}, - [4518] = {.lex_state = 240}, - [4519] = {.lex_state = 240}, - [4520] = {.lex_state = 240}, - [4521] = {.lex_state = 240}, - [4522] = {.lex_state = 240}, - [4523] = {.lex_state = 241}, - [4524] = {.lex_state = 241}, - [4525] = {.lex_state = 221}, - [4526] = {.lex_state = 240}, - [4527] = {.lex_state = 240}, - [4528] = {.lex_state = 240}, - [4529] = {.lex_state = 240}, + [4498] = {.lex_state = 242}, + [4499] = {.lex_state = 242}, + [4500] = {.lex_state = 242}, + [4501] = {.lex_state = 242}, + [4502] = {.lex_state = 242}, + [4503] = {.lex_state = 242}, + [4504] = {.lex_state = 242}, + [4505] = {.lex_state = 242}, + [4506] = {.lex_state = 242}, + [4507] = {.lex_state = 242}, + [4508] = {.lex_state = 238}, + [4509] = {.lex_state = 242}, + [4510] = {.lex_state = 242}, + [4511] = {.lex_state = 242}, + [4512] = {.lex_state = 242}, + [4513] = {.lex_state = 242}, + [4514] = {.lex_state = 242}, + [4515] = {.lex_state = 242}, + [4516] = {.lex_state = 242}, + [4517] = {.lex_state = 242}, + [4518] = {.lex_state = 242}, + [4519] = {.lex_state = 241}, + [4520] = {.lex_state = 238}, + [4521] = {.lex_state = 242}, + [4522] = {.lex_state = 238}, + [4523] = {.lex_state = 242}, + [4524] = {.lex_state = 238}, + [4525] = {.lex_state = 242}, + [4526] = {.lex_state = 238}, + [4527] = {.lex_state = 242}, + [4528] = {.lex_state = 242}, + [4529] = {.lex_state = 242}, [4530] = {.lex_state = 240}, - [4531] = {.lex_state = 225}, - [4532] = {.lex_state = 240}, - [4533] = {.lex_state = 240}, - [4534] = {.lex_state = 240}, - [4535] = {.lex_state = 238}, - [4536] = {.lex_state = 225}, - [4537] = {.lex_state = 225}, - [4538] = {.lex_state = 238}, - [4539] = {.lex_state = 225}, - [4540] = {.lex_state = 238}, - [4541] = {.lex_state = 238}, - [4542] = {.lex_state = 225}, - [4543] = {.lex_state = 225}, + [4531] = {.lex_state = 240}, + [4532] = {.lex_state = 238}, + [4533] = {.lex_state = 241}, + [4534] = {.lex_state = 241}, + [4535] = {.lex_state = 242}, + [4536] = {.lex_state = 242}, + [4537] = {.lex_state = 241}, + [4538] = {.lex_state = 241}, + [4539] = {.lex_state = 241}, + [4540] = {.lex_state = 224}, + [4541] = {.lex_state = 242}, + [4542] = {.lex_state = 238}, + [4543] = {.lex_state = 242}, [4544] = {.lex_state = 238}, - [4545] = {.lex_state = 241}, - [4546] = {.lex_state = 241}, - [4547] = {.lex_state = 238}, - [4548] = {.lex_state = 238}, - [4549] = {.lex_state = 222}, - [4550] = {.lex_state = 225}, - [4551] = {.lex_state = 240}, - [4552] = {.lex_state = 238}, - [4553] = {.lex_state = 238}, - [4554] = {.lex_state = 240}, - [4555] = {.lex_state = 238}, - [4556] = {.lex_state = 238}, - [4557] = {.lex_state = 238}, - [4558] = {.lex_state = 238}, - [4559] = {.lex_state = 238}, - [4560] = {.lex_state = 238}, - [4561] = {.lex_state = 241}, - [4562] = {.lex_state = 238}, - [4563] = {.lex_state = 240}, - [4564] = {.lex_state = 240}, - [4565] = {.lex_state = 238}, - [4566] = {.lex_state = 240}, - [4567] = {.lex_state = 238}, - [4568] = {.lex_state = 240}, - [4569] = {.lex_state = 241}, - [4570] = {.lex_state = 240}, - [4571] = {.lex_state = 238}, - [4572] = {.lex_state = 238}, - [4573] = {.lex_state = 219}, - [4574] = {.lex_state = 240}, - [4575] = {.lex_state = 222}, - [4576] = {.lex_state = 238}, - [4577] = {.lex_state = 240}, - [4578] = {.lex_state = 238}, - [4579] = {.lex_state = 240}, - [4580] = {.lex_state = 238}, - [4581] = {.lex_state = 241}, - [4582] = {.lex_state = 238}, - [4583] = {.lex_state = 238}, - [4584] = {.lex_state = 241}, - [4585] = {.lex_state = 238}, - [4586] = {.lex_state = 238}, - [4587] = {.lex_state = 241}, + [4545] = {.lex_state = 242}, + [4546] = {.lex_state = 242}, + [4547] = {.lex_state = 242}, + [4548] = {.lex_state = 225}, + [4549] = {.lex_state = 244}, + [4550] = {.lex_state = 222}, + [4551] = {.lex_state = 242}, + [4552] = {.lex_state = 222}, + [4553] = {.lex_state = 225}, + [4554] = {.lex_state = 244}, + [4555] = {.lex_state = 219}, + [4556] = {.lex_state = 225}, + [4557] = {.lex_state = 222}, + [4558] = {.lex_state = 222}, + [4559] = {.lex_state = 225}, + [4560] = {.lex_state = 242}, + [4561] = {.lex_state = 222}, + [4562] = {.lex_state = 225}, + [4563] = {.lex_state = 242}, + [4564] = {.lex_state = 222}, + [4565] = {.lex_state = 240}, + [4566] = {.lex_state = 242}, + [4567] = {.lex_state = 222}, + [4568] = {.lex_state = 238}, + [4569] = {.lex_state = 242}, + [4570] = {.lex_state = 225}, + [4571] = {.lex_state = 222}, + [4572] = {.lex_state = 225}, + [4573] = {.lex_state = 222}, + [4574] = {.lex_state = 222}, + [4575] = {.lex_state = 219}, + [4576] = {.lex_state = 228}, + [4577] = {.lex_state = 225}, + [4578] = {.lex_state = 222}, + [4579] = {.lex_state = 244}, + [4580] = {.lex_state = 240}, + [4581] = {.lex_state = 242}, + [4582] = {.lex_state = 219}, + [4583] = {.lex_state = 219}, + [4584] = {.lex_state = 240}, + [4585] = {.lex_state = 240}, + [4586] = {.lex_state = 219}, + [4587] = {.lex_state = 240}, [4588] = {.lex_state = 240}, - [4589] = {.lex_state = 225}, - [4590] = {.lex_state = 219}, - [4591] = {.lex_state = 238}, - [4592] = {.lex_state = 238}, - [4593] = {.lex_state = 238}, + [4589] = {.lex_state = 240}, + [4590] = {.lex_state = 222}, + [4591] = {.lex_state = 228}, + [4592] = {.lex_state = 222}, + [4593] = {.lex_state = 219}, [4594] = {.lex_state = 238}, - [4595] = {.lex_state = 238}, - [4596] = {.lex_state = 238}, - [4597] = {.lex_state = 238}, - [4598] = {.lex_state = 238}, - [4599] = {.lex_state = 240}, - [4600] = {.lex_state = 225}, - [4601] = {.lex_state = 225}, - [4602] = {.lex_state = 238}, - [4603] = {.lex_state = 238}, - [4604] = {.lex_state = 225}, - [4605] = {.lex_state = 240}, + [4595] = {.lex_state = 241}, + [4596] = {.lex_state = 240}, + [4597] = {.lex_state = 242}, + [4598] = {.lex_state = 222}, + [4599] = {.lex_state = 241}, + [4600] = {.lex_state = 222}, + [4601] = {.lex_state = 222}, + [4602] = {.lex_state = 222}, + [4603] = {.lex_state = 242}, + [4604] = {.lex_state = 238}, + [4605] = {.lex_state = 238}, [4606] = {.lex_state = 238}, - [4607] = {.lex_state = 225}, + [4607] = {.lex_state = 222}, [4608] = {.lex_state = 241}, [4609] = {.lex_state = 238}, [4610] = {.lex_state = 238}, [4611] = {.lex_state = 238}, [4612] = {.lex_state = 238}, - [4613] = {.lex_state = 240}, + [4613] = {.lex_state = 238}, [4614] = {.lex_state = 238}, - [4615] = {.lex_state = 225}, + [4615] = {.lex_state = 238}, [4616] = {.lex_state = 238}, [4617] = {.lex_state = 238}, - [4618] = {.lex_state = 240}, - [4619] = {.lex_state = 241}, - [4620] = {.lex_state = 240}, + [4618] = {.lex_state = 238}, + [4619] = {.lex_state = 238}, + [4620] = {.lex_state = 203}, [4621] = {.lex_state = 238}, - [4622] = {.lex_state = 225}, - [4623] = {.lex_state = 241}, - [4624] = {.lex_state = 240}, - [4625] = {.lex_state = 225}, - [4626] = {.lex_state = 238}, + [4622] = {.lex_state = 203}, + [4623] = {.lex_state = 240}, + [4624] = {.lex_state = 238}, + [4625] = {.lex_state = 240}, + [4626] = {.lex_state = 203}, [4627] = {.lex_state = 238}, - [4628] = {.lex_state = 225}, - [4629] = {.lex_state = 240}, + [4628] = {.lex_state = 203}, + [4629] = {.lex_state = 238}, [4630] = {.lex_state = 238}, [4631] = {.lex_state = 225}, [4632] = {.lex_state = 238}, - [4633] = {.lex_state = 238}, - [4634] = {.lex_state = 238}, + [4633] = {.lex_state = 225}, + [4634] = {.lex_state = 222}, [4635] = {.lex_state = 238}, [4636] = {.lex_state = 238}, - [4637] = {.lex_state = 241}, - [4638] = {.lex_state = 240}, - [4639] = {.lex_state = 225}, - [4640] = {.lex_state = 241}, + [4637] = {.lex_state = 238}, + [4638] = {.lex_state = 242}, + [4639] = {.lex_state = 242}, + [4640] = {.lex_state = 240}, [4641] = {.lex_state = 238}, - [4642] = {.lex_state = 238}, + [4642] = {.lex_state = 240}, [4643] = {.lex_state = 238}, [4644] = {.lex_state = 238}, - [4645] = {.lex_state = 238}, + [4645] = {.lex_state = 225}, [4646] = {.lex_state = 238}, [4647] = {.lex_state = 238}, - [4648] = {.lex_state = 241}, - [4649] = {.lex_state = 240}, + [4648] = {.lex_state = 203}, + [4649] = {.lex_state = 238}, [4650] = {.lex_state = 238}, [4651] = {.lex_state = 238}, [4652] = {.lex_state = 238}, - [4653] = {.lex_state = 240}, - [4654] = {.lex_state = 241}, + [4653] = {.lex_state = 238}, + [4654] = {.lex_state = 203}, [4655] = {.lex_state = 238}, [4656] = {.lex_state = 238}, [4657] = {.lex_state = 238}, [4658] = {.lex_state = 238}, - [4659] = {.lex_state = 240}, + [4659] = {.lex_state = 238}, [4660] = {.lex_state = 238}, [4661] = {.lex_state = 238}, [4662] = {.lex_state = 238}, [4663] = {.lex_state = 238}, - [4664] = {.lex_state = 228}, - [4665] = {.lex_state = 238}, - [4666] = {.lex_state = 228}, + [4664] = {.lex_state = 238}, + [4665] = {.lex_state = 225}, + [4666] = {.lex_state = 203}, [4667] = {.lex_state = 238}, - [4668] = {.lex_state = 238}, - [4669] = {.lex_state = 238}, + [4668] = {.lex_state = 222}, + [4669] = {.lex_state = 203}, [4670] = {.lex_state = 238}, [4671] = {.lex_state = 238}, [4672] = {.lex_state = 238}, [4673] = {.lex_state = 238}, [4674] = {.lex_state = 238}, - [4675] = {.lex_state = 238}, - [4676] = {.lex_state = 219}, - [4677] = {.lex_state = 238}, + [4675] = {.lex_state = 222}, + [4676] = {.lex_state = 222}, + [4677] = {.lex_state = 242}, [4678] = {.lex_state = 238}, [4679] = {.lex_state = 238}, - [4680] = {.lex_state = 219}, - [4681] = {.lex_state = 219}, - [4682] = {.lex_state = 238}, - [4683] = {.lex_state = 219}, - [4684] = {.lex_state = 241}, - [4685] = {.lex_state = 238}, - [4686] = {.lex_state = 238}, - [4687] = {.lex_state = 238}, - [4688] = {.lex_state = 238}, - [4689] = {.lex_state = 225}, - [4690] = {.lex_state = 238}, - [4691] = {.lex_state = 238}, - [4692] = {.lex_state = 238}, - [4693] = {.lex_state = 238}, - [4694] = {.lex_state = 238}, - [4695] = {.lex_state = 241}, - [4696] = {.lex_state = 241}, - [4697] = {.lex_state = 238}, - [4698] = {.lex_state = 238}, - [4699] = {.lex_state = 225}, + [4680] = {.lex_state = 238}, + [4681] = {.lex_state = 238}, + [4682] = {.lex_state = 241}, + [4683] = {.lex_state = 238}, + [4684] = {.lex_state = 242}, + [4685] = {.lex_state = 203}, + [4686] = {.lex_state = 240}, + [4687] = {.lex_state = 240}, + [4688] = {.lex_state = 203}, + [4689] = {.lex_state = 203}, + [4690] = {.lex_state = 203}, + [4691] = {.lex_state = 203}, + [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 = 222}, + [4699] = {.lex_state = 203}, [4700] = {.lex_state = 238}, - [4701] = {.lex_state = 219}, - [4702] = {.lex_state = 238}, - [4703] = {.lex_state = 238}, - [4704] = {.lex_state = 219}, - [4705] = {.lex_state = 219}, - [4706] = {.lex_state = 219}, - [4707] = {.lex_state = 225}, - [4708] = {.lex_state = 238}, - [4709] = {.lex_state = 240}, - [4710] = {.lex_state = 225}, - [4711] = {.lex_state = 238}, - [4712] = {.lex_state = 240}, - [4713] = {.lex_state = 240}, - [4714] = {.lex_state = 238}, - [4715] = {.lex_state = 240}, - [4716] = {.lex_state = 219}, - [4717] = {.lex_state = 219}, - [4718] = {.lex_state = 240}, - [4719] = {.lex_state = 238}, - [4720] = {.lex_state = 238}, - [4721] = {.lex_state = 238}, - [4722] = {.lex_state = 219}, - [4723] = {.lex_state = 241}, - [4724] = {.lex_state = 238}, - [4725] = {.lex_state = 238}, - [4726] = {.lex_state = 238}, - [4727] = {.lex_state = 219}, - [4728] = {.lex_state = 238}, - [4729] = {.lex_state = 238}, - [4730] = {.lex_state = 238}, - [4731] = {.lex_state = 222}, + [4701] = {.lex_state = 203}, + [4702] = {.lex_state = 203}, + [4703] = {.lex_state = 203}, + [4704] = {.lex_state = 203}, + [4705] = {.lex_state = 203}, + [4706] = {.lex_state = 222}, + [4707] = {.lex_state = 222}, + [4708] = {.lex_state = 203}, + [4709] = {.lex_state = 203}, + [4710] = {.lex_state = 222}, + [4711] = {.lex_state = 203}, + [4712] = {.lex_state = 224}, + [4713] = {.lex_state = 203}, + [4714] = {.lex_state = 203}, + [4715] = {.lex_state = 203}, + [4716] = {.lex_state = 222}, + [4717] = {.lex_state = 222}, + [4718] = {.lex_state = 203}, + [4719] = {.lex_state = 203}, + [4720] = {.lex_state = 222}, + [4721] = {.lex_state = 203}, + [4722] = {.lex_state = 203}, + [4723] = {.lex_state = 203}, + [4724] = {.lex_state = 203}, + [4725] = {.lex_state = 241}, + [4726] = {.lex_state = 203}, + [4727] = {.lex_state = 222}, + [4728] = {.lex_state = 203}, + [4729] = {.lex_state = 203}, + [4730] = {.lex_state = 222}, + [4731] = {.lex_state = 203}, [4732] = {.lex_state = 240}, - [4733] = {.lex_state = 242}, - [4734] = {.lex_state = 240}, - [4735] = {.lex_state = 222}, - [4736] = {.lex_state = 222}, - [4737] = {.lex_state = 240}, - [4738] = {.lex_state = 222}, - [4739] = {.lex_state = 240}, - [4740] = {.lex_state = 222}, - [4741] = {.lex_state = 225}, + [4733] = {.lex_state = 222}, + [4734] = {.lex_state = 222}, + [4735] = {.lex_state = 203}, + [4736] = {.lex_state = 240}, + [4737] = {.lex_state = 203}, + [4738] = {.lex_state = 203}, + [4739] = {.lex_state = 203}, + [4740] = {.lex_state = 203}, + [4741] = {.lex_state = 203}, [4742] = {.lex_state = 222}, - [4743] = {.lex_state = 222}, + [4743] = {.lex_state = 203}, [4744] = {.lex_state = 222}, - [4745] = {.lex_state = 219}, - [4746] = {.lex_state = 240}, - [4747] = {.lex_state = 222}, + [4745] = {.lex_state = 203}, + [4746] = {.lex_state = 222}, + [4747] = {.lex_state = 203}, [4748] = {.lex_state = 222}, - [4749] = {.lex_state = 222}, - [4750] = {.lex_state = 222}, - [4751] = {.lex_state = 240}, + [4749] = {.lex_state = 203}, + [4750] = {.lex_state = 203}, + [4751] = {.lex_state = 203}, [4752] = {.lex_state = 222}, - [4753] = {.lex_state = 222}, - [4754] = {.lex_state = 242}, + [4753] = {.lex_state = 203}, + [4754] = {.lex_state = 203}, [4755] = {.lex_state = 222}, - [4756] = {.lex_state = 219}, - [4757] = {.lex_state = 222}, - [4758] = {.lex_state = 222}, + [4756] = {.lex_state = 203}, + [4757] = {.lex_state = 241}, + [4758] = {.lex_state = 203}, [4759] = {.lex_state = 222}, - [4760] = {.lex_state = 222}, - [4761] = {.lex_state = 222}, - [4762] = {.lex_state = 221}, - [4763] = {.lex_state = 222}, - [4764] = {.lex_state = 222}, - [4765] = {.lex_state = 225}, - [4766] = {.lex_state = 238}, - [4767] = {.lex_state = 243}, - [4768] = {.lex_state = 240}, - [4769] = {.lex_state = 225}, - [4770] = {.lex_state = 225}, - [4771] = {.lex_state = 225}, - [4772] = {.lex_state = 240}, - [4773] = {.lex_state = 225}, - [4774] = {.lex_state = 225}, - [4775] = {.lex_state = 225}, - [4776] = {.lex_state = 225}, - [4777] = {.lex_state = 225}, - [4778] = {.lex_state = 225}, - [4779] = {.lex_state = 240}, - [4780] = {.lex_state = 240}, - [4781] = {.lex_state = 225}, - [4782] = {.lex_state = 240}, - [4783] = {.lex_state = 225}, - [4784] = {.lex_state = 225}, - [4785] = {.lex_state = 222}, - [4786] = {.lex_state = 240}, - [4787] = {.lex_state = 238}, - [4788] = {.lex_state = 225}, - [4789] = {.lex_state = 225}, - [4790] = {.lex_state = 225}, - [4791] = {.lex_state = 225}, - [4792] = {.lex_state = 238}, - [4793] = {.lex_state = 241}, - [4794] = {.lex_state = 241}, - [4795] = {.lex_state = 240}, - [4796] = {.lex_state = 222}, - [4797] = {.lex_state = 225}, - [4798] = {.lex_state = 238}, - [4799] = {.lex_state = 225}, - [4800] = {.lex_state = 238}, - [4801] = {.lex_state = 238}, + [4760] = {.lex_state = 203}, + [4761] = {.lex_state = 203}, + [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 = 222}, + [4769] = {.lex_state = 203}, + [4770] = {.lex_state = 203}, + [4771] = {.lex_state = 224}, + [4772] = {.lex_state = 222}, + [4773] = {.lex_state = 203}, + [4774] = {.lex_state = 203}, + [4775] = {.lex_state = 222}, + [4776] = {.lex_state = 222}, + [4777] = {.lex_state = 241}, + [4778] = {.lex_state = 222}, + [4779] = {.lex_state = 203}, + [4780] = {.lex_state = 222}, + [4781] = {.lex_state = 203}, + [4782] = {.lex_state = 222}, + [4783] = {.lex_state = 203}, + [4784] = {.lex_state = 203}, + [4785] = {.lex_state = 203}, + [4786] = {.lex_state = 203}, + [4787] = {.lex_state = 203}, + [4788] = {.lex_state = 203}, + [4789] = {.lex_state = 242}, + [4790] = {.lex_state = 203}, + [4791] = {.lex_state = 203}, + [4792] = {.lex_state = 203}, + [4793] = {.lex_state = 222}, + [4794] = {.lex_state = 203}, + [4795] = {.lex_state = 203}, + [4796] = {.lex_state = 203}, + [4797] = {.lex_state = 203}, + [4798] = {.lex_state = 203}, + [4799] = {.lex_state = 203}, + [4800] = {.lex_state = 240}, + [4801] = {.lex_state = 241}, [4802] = {.lex_state = 241}, - [4803] = {.lex_state = 225}, - [4804] = {.lex_state = 226}, - [4805] = {.lex_state = 238}, - [4806] = {.lex_state = 238}, - [4807] = {.lex_state = 238}, + [4803] = {.lex_state = 241}, + [4804] = {.lex_state = 203}, + [4805] = {.lex_state = 241}, + [4806] = {.lex_state = 241}, + [4807] = {.lex_state = 225}, [4808] = {.lex_state = 241}, - [4809] = {.lex_state = 225}, + [4809] = {.lex_state = 203}, [4810] = {.lex_state = 225}, - [4811] = {.lex_state = 225}, - [4812] = {.lex_state = 241}, - [4813] = {.lex_state = 238}, - [4814] = {.lex_state = 238}, - [4815] = {.lex_state = 225}, - [4816] = {.lex_state = 238}, - [4817] = {.lex_state = 226}, - [4818] = {.lex_state = 238}, - [4819] = {.lex_state = 238}, + [4811] = {.lex_state = 203}, + [4812] = {.lex_state = 203}, + [4813] = {.lex_state = 203}, + [4814] = {.lex_state = 241}, + [4815] = {.lex_state = 203}, + [4816] = {.lex_state = 241}, + [4817] = {.lex_state = 203}, + [4818] = {.lex_state = 203}, + [4819] = {.lex_state = 241}, [4820] = {.lex_state = 225}, - [4821] = {.lex_state = 225}, - [4822] = {.lex_state = 225}, - [4823] = {.lex_state = 225}, - [4824] = {.lex_state = 225}, + [4821] = {.lex_state = 203}, + [4822] = {.lex_state = 203}, + [4823] = {.lex_state = 241}, + [4824] = {.lex_state = 203}, [4825] = {.lex_state = 225}, - [4826] = {.lex_state = 222}, - [4827] = {.lex_state = 225}, - [4828] = {.lex_state = 238}, - [4829] = {.lex_state = 238}, - [4830] = {.lex_state = 238}, + [4826] = {.lex_state = 203}, + [4827] = {.lex_state = 203}, + [4828] = {.lex_state = 203}, + [4829] = {.lex_state = 203}, + [4830] = {.lex_state = 203}, [4831] = {.lex_state = 241}, - [4832] = {.lex_state = 225}, + [4832] = {.lex_state = 241}, [4833] = {.lex_state = 241}, - [4834] = {.lex_state = 225}, - [4835] = {.lex_state = 222}, - [4836] = {.lex_state = 238}, - [4837] = {.lex_state = 225}, - [4838] = {.lex_state = 241}, - [4839] = {.lex_state = 240}, - [4840] = {.lex_state = 225}, - [4841] = {.lex_state = 225}, - [4842] = {.lex_state = 241}, - [4843] = {.lex_state = 225}, - [4844] = {.lex_state = 225}, - [4845] = {.lex_state = 241}, - [4846] = {.lex_state = 225}, - [4847] = {.lex_state = 238}, - [4848] = {.lex_state = 225}, - [4849] = {.lex_state = 225}, - [4850] = {.lex_state = 225}, + [4834] = {.lex_state = 203}, + [4835] = {.lex_state = 241}, + [4836] = {.lex_state = 241}, + [4837] = {.lex_state = 205}, + [4838] = {.lex_state = 205}, + [4839] = {.lex_state = 242}, + [4840] = {.lex_state = 205}, + [4841] = {.lex_state = 241}, + [4842] = {.lex_state = 242}, + [4843] = {.lex_state = 205}, + [4844] = {.lex_state = 238}, + [4845] = {.lex_state = 242}, + [4846] = {.lex_state = 205}, + [4847] = {.lex_state = 205}, + [4848] = {.lex_state = 241}, + [4849] = {.lex_state = 242}, + [4850] = {.lex_state = 241}, [4851] = {.lex_state = 241}, [4852] = {.lex_state = 241}, - [4853] = {.lex_state = 241}, + [4853] = {.lex_state = 242}, [4854] = {.lex_state = 241}, - [4855] = {.lex_state = 238}, + [4855] = {.lex_state = 241}, [4856] = {.lex_state = 241}, - [4857] = {.lex_state = 238}, - [4858] = {.lex_state = 225}, - [4859] = {.lex_state = 225}, - [4860] = {.lex_state = 238}, - [4861] = {.lex_state = 241}, - [4862] = {.lex_state = 225}, + [4857] = {.lex_state = 241}, + [4858] = {.lex_state = 205}, + [4859] = {.lex_state = 242}, + [4860] = {.lex_state = 241}, + [4861] = {.lex_state = 205}, + [4862] = {.lex_state = 238}, [4863] = {.lex_state = 241}, - [4864] = {.lex_state = 225}, - [4865] = {.lex_state = 238}, - [4866] = {.lex_state = 238}, - [4867] = {.lex_state = 238}, - [4868] = {.lex_state = 225}, - [4869] = {.lex_state = 238}, - [4870] = {.lex_state = 238}, - [4871] = {.lex_state = 225}, - [4872] = {.lex_state = 238}, - [4873] = {.lex_state = 225}, - [4874] = {.lex_state = 238}, - [4875] = {.lex_state = 225}, - [4876] = {.lex_state = 238}, - [4877] = {.lex_state = 241}, - [4878] = {.lex_state = 225}, - [4879] = {.lex_state = 225}, - [4880] = {.lex_state = 219}, - [4881] = {.lex_state = 225}, - [4882] = {.lex_state = 219}, + [4864] = {.lex_state = 241}, + [4865] = {.lex_state = 241}, + [4866] = {.lex_state = 241}, + [4867] = {.lex_state = 240}, + [4868] = {.lex_state = 241}, + [4869] = {.lex_state = 240}, + [4870] = {.lex_state = 241}, + [4871] = {.lex_state = 240}, + [4872] = {.lex_state = 241}, + [4873] = {.lex_state = 241}, + [4874] = {.lex_state = 241}, + [4875] = {.lex_state = 241}, + [4876] = {.lex_state = 240}, + [4877] = {.lex_state = 242}, + [4878] = {.lex_state = 242}, + [4879] = {.lex_state = 242}, + [4880] = {.lex_state = 238}, + [4881] = {.lex_state = 240}, + [4882] = {.lex_state = 240}, [4883] = {.lex_state = 240}, - [4884] = {.lex_state = 225}, - [4885] = {.lex_state = 225}, - [4886] = {.lex_state = 225}, - [4887] = {.lex_state = 219}, - [4888] = {.lex_state = 225}, + [4884] = {.lex_state = 241}, + [4885] = {.lex_state = 241}, + [4886] = {.lex_state = 240}, + [4887] = {.lex_state = 241}, + [4888] = {.lex_state = 240}, [4889] = {.lex_state = 240}, [4890] = {.lex_state = 241}, - [4891] = {.lex_state = 225}, - [4892] = {.lex_state = 225}, - [4893] = {.lex_state = 225}, - [4894] = {.lex_state = 225}, - [4895] = {.lex_state = 225}, - [4896] = {.lex_state = 225}, - [4897] = {.lex_state = 225}, - [4898] = {.lex_state = 225}, - [4899] = {.lex_state = 225}, - [4900] = {.lex_state = 225}, - [4901] = {.lex_state = 225}, - [4902] = {.lex_state = 219}, - [4903] = {.lex_state = 240}, - [4904] = {.lex_state = 225}, - [4905] = {.lex_state = 219}, - [4906] = {.lex_state = 219}, - [4907] = {.lex_state = 225}, - [4908] = {.lex_state = 240}, - [4909] = {.lex_state = 225}, - [4910] = {.lex_state = 225}, + [4891] = {.lex_state = 242}, + [4892] = {.lex_state = 241}, + [4893] = {.lex_state = 241}, + [4894] = {.lex_state = 241}, + [4895] = {.lex_state = 241}, + [4896] = {.lex_state = 241}, + [4897] = {.lex_state = 242}, + [4898] = {.lex_state = 241}, + [4899] = {.lex_state = 242}, + [4900] = {.lex_state = 241}, + [4901] = {.lex_state = 238}, + [4902] = {.lex_state = 242}, + [4903] = {.lex_state = 241}, + [4904] = {.lex_state = 241}, + [4905] = {.lex_state = 242}, + [4906] = {.lex_state = 241}, + [4907] = {.lex_state = 241}, + [4908] = {.lex_state = 241}, + [4909] = {.lex_state = 238}, + [4910] = {.lex_state = 242}, [4911] = {.lex_state = 241}, - [4912] = {.lex_state = 225}, - [4913] = {.lex_state = 225}, - [4914] = {.lex_state = 225}, - [4915] = {.lex_state = 218}, - [4916] = {.lex_state = 219}, - [4917] = {.lex_state = 222}, - [4918] = {.lex_state = 219}, - [4919] = {.lex_state = 245}, - [4920] = {.lex_state = 219}, - [4921] = {.lex_state = 225}, - [4922] = {.lex_state = 225}, + [4912] = {.lex_state = 242}, + [4913] = {.lex_state = 240}, + [4914] = {.lex_state = 238}, + [4915] = {.lex_state = 240}, + [4916] = {.lex_state = 241}, + [4917] = {.lex_state = 241}, + [4918] = {.lex_state = 242}, + [4919] = {.lex_state = 241}, + [4920] = {.lex_state = 241}, + [4921] = {.lex_state = 241}, + [4922] = {.lex_state = 242}, [4923] = {.lex_state = 241}, - [4924] = {.lex_state = 225}, - [4925] = {.lex_state = 222}, - [4926] = {.lex_state = 222}, - [4927] = {.lex_state = 225}, - [4928] = {.lex_state = 222}, - [4929] = {.lex_state = 225}, - [4930] = {.lex_state = 241}, - [4931] = {.lex_state = 222}, - [4932] = {.lex_state = 222}, - [4933] = {.lex_state = 222}, - [4934] = {.lex_state = 222}, - [4935] = {.lex_state = 225}, - [4936] = {.lex_state = 225}, - [4937] = {.lex_state = 222}, + [4924] = {.lex_state = 238}, + [4925] = {.lex_state = 238}, + [4926] = {.lex_state = 240}, + [4927] = {.lex_state = 203}, + [4928] = {.lex_state = 240}, + [4929] = {.lex_state = 222}, + [4930] = {.lex_state = 247}, + [4931] = {.lex_state = 247}, + [4932] = {.lex_state = 203}, + [4933] = {.lex_state = 247}, + [4934] = {.lex_state = 238}, + [4935] = {.lex_state = 203}, + [4936] = {.lex_state = 240}, + [4937] = {.lex_state = 238}, [4938] = {.lex_state = 240}, - [4939] = {.lex_state = 222}, - [4940] = {.lex_state = 222}, - [4941] = {.lex_state = 222}, - [4942] = {.lex_state = 225}, - [4943] = {.lex_state = 225}, + [4939] = {.lex_state = 238}, + [4940] = {.lex_state = 238}, + [4941] = {.lex_state = 240}, + [4942] = {.lex_state = 238}, + [4943] = {.lex_state = 203}, [4944] = {.lex_state = 222}, - [4945] = {.lex_state = 225}, - [4946] = {.lex_state = 222}, - [4947] = {.lex_state = 219}, - [4948] = {.lex_state = 225}, - [4949] = {.lex_state = 225}, - [4950] = {.lex_state = 222}, - [4951] = {.lex_state = 219}, - [4952] = {.lex_state = 222}, - [4953] = {.lex_state = 225}, - [4954] = {.lex_state = 240}, - [4955] = {.lex_state = 222}, - [4956] = {.lex_state = 225}, - [4957] = {.lex_state = 222}, - [4958] = {.lex_state = 225}, - [4959] = {.lex_state = 225}, - [4960] = {.lex_state = 222}, - [4961] = {.lex_state = 225}, - [4962] = {.lex_state = 225}, - [4963] = {.lex_state = 222}, - [4964] = {.lex_state = 222}, - [4965] = {.lex_state = 222}, - [4966] = {.lex_state = 241}, - [4967] = {.lex_state = 225}, - [4968] = {.lex_state = 222}, - [4969] = {.lex_state = 222}, - [4970] = {.lex_state = 225}, - [4971] = {.lex_state = 225}, - [4972] = {.lex_state = 222}, + [4945] = {.lex_state = 238}, + [4946] = {.lex_state = 203}, + [4947] = {.lex_state = 203}, + [4948] = {.lex_state = 247}, + [4949] = {.lex_state = 203}, + [4950] = {.lex_state = 238}, + [4951] = {.lex_state = 247}, + [4952] = {.lex_state = 238}, + [4953] = {.lex_state = 238}, + [4954] = {.lex_state = 238}, + [4955] = {.lex_state = 203}, + [4956] = {.lex_state = 203}, + [4957] = {.lex_state = 203}, + [4958] = {.lex_state = 203}, + [4959] = {.lex_state = 203}, + [4960] = {.lex_state = 247}, + [4961] = {.lex_state = 240}, + [4962] = {.lex_state = 238}, + [4963] = {.lex_state = 238}, + [4964] = {.lex_state = 242}, + [4965] = {.lex_state = 242}, + [4966] = {.lex_state = 240}, + [4967] = {.lex_state = 240}, + [4968] = {.lex_state = 240}, + [4969] = {.lex_state = 240}, + [4970] = {.lex_state = 240}, + [4971] = {.lex_state = 240}, + [4972] = {.lex_state = 240}, [4973] = {.lex_state = 222}, - [4974] = {.lex_state = 225}, - [4975] = {.lex_state = 241}, + [4974] = {.lex_state = 238}, + [4975] = {.lex_state = 225}, [4976] = {.lex_state = 225}, - [4977] = {.lex_state = 219}, - [4978] = {.lex_state = 222}, + [4977] = {.lex_state = 238}, + [4978] = {.lex_state = 242}, [4979] = {.lex_state = 219}, - [4980] = {.lex_state = 219}, - [4981] = {.lex_state = 222}, - [4982] = {.lex_state = 219}, - [4983] = {.lex_state = 219}, - [4984] = {.lex_state = 225}, - [4985] = {.lex_state = 225}, - [4986] = {.lex_state = 225}, - [4987] = {.lex_state = 225}, - [4988] = {.lex_state = 225}, - [4989] = {.lex_state = 241}, - [4990] = {.lex_state = 225}, - [4991] = {.lex_state = 222}, - [4992] = {.lex_state = 225}, - [4993] = {.lex_state = 245}, - [4994] = {.lex_state = 222}, - [4995] = {.lex_state = 225}, - [4996] = {.lex_state = 222}, - [4997] = {.lex_state = 225}, - [4998] = {.lex_state = 225}, - [4999] = {.lex_state = 225}, - [5000] = {.lex_state = 225}, - [5001] = {.lex_state = 222}, - [5002] = {.lex_state = 225}, - [5003] = {.lex_state = 225}, - [5004] = {.lex_state = 225}, - [5005] = {.lex_state = 225}, - [5006] = {.lex_state = 225}, - [5007] = {.lex_state = 225}, - [5008] = {.lex_state = 225}, - [5009] = {.lex_state = 241}, - [5010] = {.lex_state = 225}, - [5011] = {.lex_state = 240}, - [5012] = {.lex_state = 222}, - [5013] = {.lex_state = 219}, - [5014] = {.lex_state = 225}, - [5015] = {.lex_state = 225}, - [5016] = {.lex_state = 225}, - [5017] = {.lex_state = 225}, - [5018] = {.lex_state = 225}, - [5019] = {.lex_state = 240}, - [5020] = {.lex_state = 222}, - [5021] = {.lex_state = 222}, - [5022] = {.lex_state = 225}, - [5023] = {.lex_state = 225}, - [5024] = {.lex_state = 225}, - [5025] = {.lex_state = 222}, - [5026] = {.lex_state = 240}, - [5027] = {.lex_state = 240}, - [5028] = {.lex_state = 222}, - [5029] = {.lex_state = 225}, - [5030] = {.lex_state = 225}, - [5031] = {.lex_state = 222}, - [5032] = {.lex_state = 222}, - [5033] = {.lex_state = 225}, - [5034] = {.lex_state = 225}, - [5035] = {.lex_state = 222}, - [5036] = {.lex_state = 225}, - [5037] = {.lex_state = 238}, - [5038] = {.lex_state = 225}, - [5039] = {.lex_state = 225}, - [5040] = {.lex_state = 219}, - [5041] = {.lex_state = 225}, - [5042] = {.lex_state = 238}, - [5043] = {.lex_state = 238}, - [5044] = {.lex_state = 225}, - [5045] = {.lex_state = 225}, - [5046] = {.lex_state = 238}, - [5047] = {.lex_state = 225}, - [5048] = {.lex_state = 225}, - [5049] = {.lex_state = 225}, - [5050] = {.lex_state = 226}, - [5051] = {.lex_state = 225}, - [5052] = {.lex_state = 222}, - [5053] = {.lex_state = 225}, - [5054] = {.lex_state = 241}, - [5055] = {.lex_state = 241}, - [5056] = {.lex_state = 225}, - [5057] = {.lex_state = 225}, - [5058] = {.lex_state = 225}, - [5059] = {.lex_state = 238}, - [5060] = {.lex_state = 225}, - [5061] = {.lex_state = 241}, - [5062] = {.lex_state = 241}, - [5063] = {.lex_state = 238}, - [5064] = {.lex_state = 225}, - [5065] = {.lex_state = 225}, - [5066] = {.lex_state = 225}, - [5067] = {.lex_state = 225}, - [5068] = {.lex_state = 225}, - [5069] = {.lex_state = 238}, - [5070] = {.lex_state = 225}, - [5071] = {.lex_state = 225}, - [5072] = {.lex_state = 225}, - [5073] = {.lex_state = 225}, - [5074] = {.lex_state = 225}, - [5075] = {.lex_state = 225}, - [5076] = {.lex_state = 225}, - [5077] = {.lex_state = 225}, - [5078] = {.lex_state = 225}, - [5079] = {.lex_state = 225}, - [5080] = {.lex_state = 225}, - [5081] = {.lex_state = 225}, - [5082] = {.lex_state = 225}, - [5083] = {.lex_state = 225}, - [5084] = {.lex_state = 225}, - [5085] = {.lex_state = 225}, - [5086] = {.lex_state = 238}, - [5087] = {.lex_state = 238}, - [5088] = {.lex_state = 225}, - [5089] = {.lex_state = 225}, - [5090] = {.lex_state = 225}, - [5091] = {.lex_state = 225}, - [5092] = {.lex_state = 225}, - [5093] = {.lex_state = 225}, - [5094] = {.lex_state = 238}, - [5095] = {.lex_state = 225}, - [5096] = {.lex_state = 222}, - [5097] = {.lex_state = 225}, - [5098] = {.lex_state = 225}, - [5099] = {.lex_state = 238}, - [5100] = {.lex_state = 225}, - [5101] = {.lex_state = 225}, - [5102] = {.lex_state = 222}, - [5103] = {.lex_state = 222}, - [5104] = {.lex_state = 238}, - [5105] = {.lex_state = 225}, - [5106] = {.lex_state = 226}, - [5107] = {.lex_state = 225}, - [5108] = {.lex_state = 225}, - [5109] = {.lex_state = 222}, - [5110] = {.lex_state = 241}, - [5111] = {.lex_state = 225}, - [5112] = {.lex_state = 225}, - [5113] = {.lex_state = 219}, - [5114] = {.lex_state = 238}, - [5115] = {.lex_state = 225}, - [5116] = {.lex_state = 225}, - [5117] = {.lex_state = 238}, - [5118] = {.lex_state = 238}, - [5119] = {.lex_state = 219}, - [5120] = {.lex_state = 219}, - [5121] = {.lex_state = 222}, - [5122] = {.lex_state = 225}, - [5123] = {.lex_state = 225}, - [5124] = {.lex_state = 225}, - [5125] = {.lex_state = 225}, - [5126] = {.lex_state = 219}, - [5127] = {.lex_state = 225}, - [5128] = {.lex_state = 222}, - [5129] = {.lex_state = 225}, - [5130] = {.lex_state = 222}, - [5131] = {.lex_state = 222}, - [5132] = {.lex_state = 225}, - [5133] = {.lex_state = 225}, - [5134] = {.lex_state = 222}, - [5135] = {.lex_state = 225}, - [5136] = {.lex_state = 238}, - [5137] = {.lex_state = 225}, - [5138] = {.lex_state = 225}, - [5139] = {.lex_state = 225}, - [5140] = {.lex_state = 225}, - [5141] = {.lex_state = 238}, - [5142] = {.lex_state = 225}, - [5143] = {.lex_state = 225}, - [5144] = {.lex_state = 225}, - [5145] = {.lex_state = 225}, - [5146] = {.lex_state = 225}, - [5147] = {.lex_state = 225}, - [5148] = {.lex_state = 222}, - [5149] = {.lex_state = 225}, - [5150] = {.lex_state = 238}, - [5151] = {.lex_state = 225}, - [5152] = {.lex_state = 219}, - [5153] = {.lex_state = 225}, - [5154] = {.lex_state = 238}, - [5155] = {.lex_state = 225}, - [5156] = {.lex_state = 240}, - [5157] = {.lex_state = 225}, - [5158] = {.lex_state = 225}, - [5159] = {.lex_state = 238}, - [5160] = {.lex_state = 225}, - [5161] = {.lex_state = 222}, + [4980] = {.lex_state = 193}, + [4981] = {.lex_state = 242}, + [4982] = {.lex_state = 242}, + [4983] = {.lex_state = 247}, + [4984] = {.lex_state = 247}, + [4985] = {.lex_state = 247}, + [4986] = {.lex_state = 247}, + [4987] = {.lex_state = 247}, + [4988] = {.lex_state = 242}, + [4989] = {.lex_state = 219}, + [4990] = {.lex_state = 205}, + [4991] = {.lex_state = 247}, + [4992] = {.lex_state = 205}, + [4993] = {.lex_state = 240}, + [4994] = {.lex_state = 240}, + [4995] = {.lex_state = 205}, + [4996] = {.lex_state = 247}, + [4997] = {.lex_state = 240}, + [4998] = {.lex_state = 247}, + [4999] = {.lex_state = 247}, + [5000] = {.lex_state = 205}, + [5001] = {.lex_state = 247}, + [5002] = {.lex_state = 247}, + [5003] = {.lex_state = 247}, + [5004] = {.lex_state = 247}, + [5005] = {.lex_state = 247}, + [5006] = {.lex_state = 205}, + [5007] = {.lex_state = 247}, + [5008] = {.lex_state = 247}, + [5009] = {.lex_state = 242}, + [5010] = {.lex_state = 247}, + [5011] = {.lex_state = 247}, + [5012] = {.lex_state = 205}, + [5013] = {.lex_state = 247}, + [5014] = {.lex_state = 247}, + [5015] = {.lex_state = 205}, + [5016] = {.lex_state = 247}, + [5017] = {.lex_state = 247}, + [5018] = {.lex_state = 247}, + [5019] = {.lex_state = 247}, + [5020] = {.lex_state = 205}, + [5021] = {.lex_state = 247}, + [5022] = {.lex_state = 247}, + [5023] = {.lex_state = 205}, + [5024] = {.lex_state = 247}, + [5025] = {.lex_state = 247}, + [5026] = {.lex_state = 247}, + [5027] = {.lex_state = 205}, + [5028] = {.lex_state = 247}, + [5029] = {.lex_state = 247}, + [5030] = {.lex_state = 247}, + [5031] = {.lex_state = 205}, + [5032] = {.lex_state = 205}, + [5033] = {.lex_state = 247}, + [5034] = {.lex_state = 247}, + [5035] = {.lex_state = 247}, + [5036] = {.lex_state = 247}, + [5037] = {.lex_state = 247}, + [5038] = {.lex_state = 219}, + [5039] = {.lex_state = 247}, + [5040] = {.lex_state = 247}, + [5041] = {.lex_state = 203}, + [5042] = {.lex_state = 203}, + [5043] = {.lex_state = 203}, + [5044] = {.lex_state = 203}, + [5045] = {.lex_state = 203}, + [5046] = {.lex_state = 203}, + [5047] = {.lex_state = 203}, + [5048] = {.lex_state = 203}, + [5049] = {.lex_state = 203}, + [5050] = {.lex_state = 203}, + [5051] = {.lex_state = 177}, + [5052] = {.lex_state = 203}, + [5053] = {.lex_state = 203}, + [5054] = {.lex_state = 203}, + [5055] = {.lex_state = 203}, + [5056] = {.lex_state = 203}, + [5057] = {.lex_state = 203}, + [5058] = {.lex_state = 203}, + [5059] = {.lex_state = 193}, + [5060] = {.lex_state = 203}, + [5061] = {.lex_state = 203}, + [5062] = {.lex_state = 203}, + [5063] = {.lex_state = 203}, + [5064] = {.lex_state = 203}, + [5065] = {.lex_state = 203}, + [5066] = {.lex_state = 203}, + [5067] = {.lex_state = 203}, + [5068] = {.lex_state = 203}, + [5069] = {.lex_state = 203}, + [5070] = {.lex_state = 203}, + [5071] = {.lex_state = 203}, + [5072] = {.lex_state = 203}, + [5073] = {.lex_state = 203}, + [5074] = {.lex_state = 203}, + [5075] = {.lex_state = 203}, + [5076] = {.lex_state = 203}, + [5077] = {.lex_state = 203}, + [5078] = {.lex_state = 203}, + [5079] = {.lex_state = 203}, + [5080] = {.lex_state = 203}, + [5081] = {.lex_state = 203}, + [5082] = {.lex_state = 203}, + [5083] = {.lex_state = 203}, + [5084] = {.lex_state = 203}, + [5085] = {.lex_state = 203}, + [5086] = {.lex_state = 203}, + [5087] = {.lex_state = 203}, + [5088] = {.lex_state = 203}, + [5089] = {.lex_state = 203}, + [5090] = {.lex_state = 97}, + [5091] = {.lex_state = 177}, + [5092] = {.lex_state = 193}, + [5093] = {.lex_state = 203}, + [5094] = {.lex_state = 203}, + [5095] = {.lex_state = 203}, + [5096] = {.lex_state = 203}, + [5097] = {.lex_state = 242}, + [5098] = {.lex_state = 203}, + [5099] = {.lex_state = 203}, + [5100] = {.lex_state = 203}, + [5101] = {.lex_state = 203}, + [5102] = {.lex_state = 203}, + [5103] = {.lex_state = 203}, + [5104] = {.lex_state = 203}, + [5105] = {.lex_state = 203}, + [5106] = {.lex_state = 203}, + [5107] = {.lex_state = 193}, + [5108] = {.lex_state = 203}, + [5109] = {.lex_state = 203}, + [5110] = {.lex_state = 203}, + [5111] = {.lex_state = 203}, + [5112] = {.lex_state = 203}, + [5113] = {.lex_state = 203}, + [5114] = {.lex_state = 203}, + [5115] = {.lex_state = 203}, + [5116] = {.lex_state = 203}, + [5117] = {.lex_state = 203}, + [5118] = {.lex_state = 203}, + [5119] = {.lex_state = 203}, + [5120] = {.lex_state = 203}, + [5121] = {.lex_state = 203}, + [5122] = {.lex_state = 203}, + [5123] = {.lex_state = 203}, + [5124] = {.lex_state = 203}, + [5125] = {.lex_state = 203}, + [5126] = {.lex_state = 203}, + [5127] = {.lex_state = 203}, + [5128] = {.lex_state = 225}, + [5129] = {.lex_state = 219}, + [5130] = {.lex_state = 203}, + [5131] = {.lex_state = 177}, + [5132] = {.lex_state = 203}, + [5133] = {.lex_state = 203}, + [5134] = {.lex_state = 219}, + [5135] = {.lex_state = 203}, + [5136] = {.lex_state = 203}, + [5137] = {.lex_state = 219}, + [5138] = {.lex_state = 193}, + [5139] = {.lex_state = 177}, + [5140] = {.lex_state = 177}, + [5141] = {.lex_state = 219}, + [5142] = {.lex_state = 193}, + [5143] = {.lex_state = 193}, + [5144] = {.lex_state = 240}, + [5145] = {.lex_state = 193}, + [5146] = {.lex_state = 177}, + [5147] = {.lex_state = 177}, + [5148] = {.lex_state = 193}, + [5149] = {.lex_state = 240}, + [5150] = {.lex_state = 177}, + [5151] = {.lex_state = 193}, + [5152] = {.lex_state = 177}, + [5153] = {.lex_state = 177}, + [5154] = {.lex_state = 193}, + [5155] = {.lex_state = 193}, + [5156] = {.lex_state = 177}, + [5157] = {.lex_state = 219}, + [5158] = {.lex_state = 193}, + [5159] = {.lex_state = 219}, + [5160] = {.lex_state = 219}, + [5161] = {.lex_state = 193}, [5162] = {.lex_state = 219}, - [5163] = {.lex_state = 225}, - [5164] = {.lex_state = 225}, - [5165] = {.lex_state = 225}, - [5166] = {.lex_state = 238}, - [5167] = {.lex_state = 225}, - [5168] = {.lex_state = 238}, + [5163] = {.lex_state = 177}, + [5164] = {.lex_state = 177}, + [5165] = {.lex_state = 193}, + [5166] = {.lex_state = 193}, + [5167] = {.lex_state = 193}, + [5168] = {.lex_state = 193}, [5169] = {.lex_state = 240}, - [5170] = {.lex_state = 225}, - [5171] = {.lex_state = 225}, - [5172] = {.lex_state = 222}, - [5173] = {.lex_state = 225}, - [5174] = {.lex_state = 240}, - [5175] = {.lex_state = 238}, - [5176] = {.lex_state = 225}, - [5177] = {.lex_state = 225}, - [5178] = {.lex_state = 225}, - [5179] = {.lex_state = 225}, - [5180] = {.lex_state = 225}, - [5181] = {.lex_state = 225}, - [5182] = {.lex_state = 225}, - [5183] = {.lex_state = 225}, - [5184] = {.lex_state = 225}, - [5185] = {.lex_state = 225}, - [5186] = {.lex_state = 225}, - [5187] = {.lex_state = 225}, - [5188] = {.lex_state = 225}, - [5189] = {.lex_state = 225}, - [5190] = {.lex_state = 225}, - [5191] = {.lex_state = 241}, - [5192] = {.lex_state = 238}, - [5193] = {.lex_state = 225}, - [5194] = {.lex_state = 225}, - [5195] = {.lex_state = 222}, - [5196] = {.lex_state = 225}, - [5197] = {.lex_state = 225}, - [5198] = {.lex_state = 225}, - [5199] = {.lex_state = 222}, - [5200] = {.lex_state = 225}, - [5201] = {.lex_state = 222}, - [5202] = {.lex_state = 222}, - [5203] = {.lex_state = 222}, - [5204] = {.lex_state = 222}, - [5205] = {.lex_state = 240}, - [5206] = {.lex_state = 238}, - [5207] = {.lex_state = 222}, - [5208] = {.lex_state = 238}, - [5209] = {.lex_state = 222}, - [5210] = {.lex_state = 222}, - [5211] = {.lex_state = 225}, - [5212] = {.lex_state = 222}, - [5213] = {.lex_state = 225}, - [5214] = {.lex_state = 222}, - [5215] = {.lex_state = 225}, - [5216] = {.lex_state = 225}, + [5170] = {.lex_state = 177}, + [5171] = {.lex_state = 177}, + [5172] = {.lex_state = 193}, + [5173] = {.lex_state = 241}, + [5174] = {.lex_state = 242}, + [5175] = {.lex_state = 177}, + [5176] = {.lex_state = 219}, + [5177] = {.lex_state = 219}, + [5178] = {.lex_state = 219}, + [5179] = {.lex_state = 219}, + [5180] = {.lex_state = 177}, + [5181] = {.lex_state = 240}, + [5182] = {.lex_state = 177}, + [5183] = {.lex_state = 177}, + [5184] = {.lex_state = 177}, + [5185] = {.lex_state = 219}, + [5186] = {.lex_state = 177}, + [5187] = {.lex_state = 240}, + [5188] = {.lex_state = 177}, + [5189] = {.lex_state = 177}, + [5190] = {.lex_state = 219}, + [5191] = {.lex_state = 242}, + [5192] = {.lex_state = 177}, + [5193] = {.lex_state = 177}, + [5194] = {.lex_state = 177}, + [5195] = {.lex_state = 177}, + [5196] = {.lex_state = 219}, + [5197] = {.lex_state = 193}, + [5198] = {.lex_state = 193}, + [5199] = {.lex_state = 240}, + [5200] = {.lex_state = 177}, + [5201] = {.lex_state = 219}, + [5202] = {.lex_state = 219}, + [5203] = {.lex_state = 240}, + [5204] = {.lex_state = 193}, + [5205] = {.lex_state = 193}, + [5206] = {.lex_state = 240}, + [5207] = {.lex_state = 177}, + [5208] = {.lex_state = 177}, + [5209] = {.lex_state = 219}, + [5210] = {.lex_state = 177}, + [5211] = {.lex_state = 177}, + [5212] = {.lex_state = 177}, + [5213] = {.lex_state = 177}, + [5214] = {.lex_state = 177}, + [5215] = {.lex_state = 177}, + [5216] = {.lex_state = 177}, [5217] = {.lex_state = 225}, - [5218] = {.lex_state = 225}, - [5219] = {.lex_state = 225}, - [5220] = {.lex_state = 225}, - [5221] = {.lex_state = 222}, - [5222] = {.lex_state = 225}, - [5223] = {.lex_state = 225}, - [5224] = {.lex_state = 222}, - [5225] = {.lex_state = 225}, - [5226] = {.lex_state = 225}, - [5227] = {.lex_state = 225}, - [5228] = {.lex_state = 241}, - [5229] = {.lex_state = 240}, - [5230] = {.lex_state = 238}, - [5231] = {.lex_state = 225}, - [5232] = {.lex_state = 240}, - [5233] = {.lex_state = 222}, - [5234] = {.lex_state = 238}, - [5235] = {.lex_state = 219}, - [5236] = {.lex_state = 222}, - [5237] = {.lex_state = 241}, - [5238] = {.lex_state = 225}, - [5239] = {.lex_state = 225}, + [5218] = {.lex_state = 240}, + [5219] = {.lex_state = 177}, + [5220] = {.lex_state = 177}, + [5221] = {.lex_state = 193}, + [5222] = {.lex_state = 219}, + [5223] = {.lex_state = 97}, + [5224] = {.lex_state = 242}, + [5225] = {.lex_state = 242}, + [5226] = {.lex_state = 242}, + [5227] = {.lex_state = 97}, + [5228] = {.lex_state = 240}, + [5229] = {.lex_state = 242}, + [5230] = {.lex_state = 240}, + [5231] = {.lex_state = 242}, + [5232] = {.lex_state = 203}, + [5233] = {.lex_state = 242}, + [5234] = {.lex_state = 242}, + [5235] = {.lex_state = 242}, + [5236] = {.lex_state = 97}, + [5237] = {.lex_state = 242}, + [5238] = {.lex_state = 242}, + [5239] = {.lex_state = 242}, [5240] = {.lex_state = 240}, - [5241] = {.lex_state = 225}, - [5242] = {.lex_state = 225}, - [5243] = {.lex_state = 225}, - [5244] = {.lex_state = 240}, - [5245] = {.lex_state = 225}, - [5246] = {.lex_state = 225}, - [5247] = {.lex_state = 225}, - [5248] = {.lex_state = 225}, - [5249] = {.lex_state = 225}, - [5250] = {.lex_state = 225}, - [5251] = {.lex_state = 225}, - [5252] = {.lex_state = 225}, - [5253] = {.lex_state = 225}, - [5254] = {.lex_state = 225}, - [5255] = {.lex_state = 225}, - [5256] = {.lex_state = 225}, - [5257] = {.lex_state = 225}, - [5258] = {.lex_state = 225}, - [5259] = {.lex_state = 225}, - [5260] = {.lex_state = 225}, - [5261] = {.lex_state = 225}, - [5262] = {.lex_state = 225}, - [5263] = {.lex_state = 225}, - [5264] = {.lex_state = 225}, - [5265] = {.lex_state = 225}, - [5266] = {.lex_state = 225}, - [5267] = {.lex_state = 225}, - [5268] = {.lex_state = 225}, - [5269] = {.lex_state = 225}, - [5270] = {.lex_state = 225}, - [5271] = {.lex_state = 225}, - [5272] = {.lex_state = 225}, - [5273] = {.lex_state = 225}, - [5274] = {.lex_state = 225}, - [5275] = {.lex_state = 225}, - [5276] = {.lex_state = 225}, - [5277] = {.lex_state = 225}, - [5278] = {.lex_state = 225}, - [5279] = {.lex_state = 225}, - [5280] = {.lex_state = 225}, - [5281] = {.lex_state = 225}, - [5282] = {.lex_state = 225}, - [5283] = {.lex_state = 225}, - [5284] = {.lex_state = 225}, - [5285] = {.lex_state = 225}, - [5286] = {.lex_state = 225}, - [5287] = {.lex_state = 225}, - [5288] = {.lex_state = 225}, - [5289] = {.lex_state = 225}, - [5290] = {.lex_state = 225}, - [5291] = {.lex_state = 225}, - [5292] = {.lex_state = 225}, - [5293] = {.lex_state = 225}, - [5294] = {.lex_state = 225}, - [5295] = {.lex_state = 225}, - [5296] = {.lex_state = 225}, - [5297] = {.lex_state = 225}, - [5298] = {.lex_state = 225}, - [5299] = {.lex_state = 225}, - [5300] = {.lex_state = 225}, - [5301] = {.lex_state = 225}, - [5302] = {.lex_state = 225}, - [5303] = {.lex_state = 225}, - [5304] = {.lex_state = 225}, - [5305] = {.lex_state = 225}, - [5306] = {.lex_state = 225}, - [5307] = {.lex_state = 225}, - [5308] = {.lex_state = 225}, - [5309] = {.lex_state = 225}, - [5310] = {.lex_state = 225}, - [5311] = {.lex_state = 225}, - [5312] = {.lex_state = 225}, - [5313] = {.lex_state = 225}, - [5314] = {.lex_state = 225}, - [5315] = {.lex_state = 225}, - [5316] = {.lex_state = 225}, - [5317] = {.lex_state = 225}, - [5318] = {.lex_state = 225}, - [5319] = {.lex_state = 225}, - [5320] = {.lex_state = 225}, - [5321] = {.lex_state = 225}, - [5322] = {.lex_state = 225}, - [5323] = {.lex_state = 225}, - [5324] = {.lex_state = 225}, - [5325] = {.lex_state = 225}, - [5326] = {.lex_state = 225}, - [5327] = {.lex_state = 225}, - [5328] = {.lex_state = 225}, - [5329] = {.lex_state = 225}, - [5330] = {.lex_state = 225}, - [5331] = {.lex_state = 225}, - [5332] = {.lex_state = 225}, - [5333] = {.lex_state = 225}, - [5334] = {.lex_state = 225}, - [5335] = {.lex_state = 225}, - [5336] = {.lex_state = 225}, - [5337] = {.lex_state = 225}, - [5338] = {.lex_state = 225}, - [5339] = {.lex_state = 225}, - [5340] = {.lex_state = 225}, - [5341] = {.lex_state = 225}, - [5342] = {.lex_state = 225}, - [5343] = {.lex_state = 225}, - [5344] = {.lex_state = 225}, - [5345] = {.lex_state = 225}, - [5346] = {.lex_state = 225}, - [5347] = {.lex_state = 225}, - [5348] = {.lex_state = 225}, - [5349] = {.lex_state = 225}, - [5350] = {.lex_state = 225}, - [5351] = {.lex_state = 225}, - [5352] = {.lex_state = 225}, - [5353] = {.lex_state = 240}, + [5241] = {.lex_state = 242}, + [5242] = {.lex_state = 97}, + [5243] = {.lex_state = 242}, + [5244] = {.lex_state = 97}, + [5245] = {.lex_state = 219}, + [5246] = {.lex_state = 203}, + [5247] = {.lex_state = 97}, + [5248] = {.lex_state = 240}, + [5249] = {.lex_state = 240}, + [5250] = {.lex_state = 240}, + [5251] = {.lex_state = 97}, + [5252] = {.lex_state = 97}, + [5253] = {.lex_state = 240}, + [5254] = {.lex_state = 242}, + [5255] = {.lex_state = 97}, + [5256] = {.lex_state = 222}, + [5257] = {.lex_state = 242}, + [5258] = {.lex_state = 97}, + [5259] = {.lex_state = 97}, + [5260] = {.lex_state = 242}, + [5261] = {.lex_state = 242}, + [5262] = {.lex_state = 242}, + [5263] = {.lex_state = 242}, + [5264] = {.lex_state = 97}, + [5265] = {.lex_state = 242}, + [5266] = {.lex_state = 219}, + [5267] = {.lex_state = 240}, + [5268] = {.lex_state = 242}, + [5269] = {.lex_state = 242}, + [5270] = {.lex_state = 242}, + [5271] = {.lex_state = 240}, + [5272] = {.lex_state = 242}, + [5273] = {.lex_state = 203}, + [5274] = {.lex_state = 242}, + [5275] = {.lex_state = 242}, + [5276] = {.lex_state = 242}, + [5277] = {.lex_state = 242}, + [5278] = {.lex_state = 242}, + [5279] = {.lex_state = 219}, + [5280] = {.lex_state = 242}, + [5281] = {.lex_state = 242}, + [5282] = {.lex_state = 97}, + [5283] = {.lex_state = 242}, + [5284] = {.lex_state = 242}, + [5285] = {.lex_state = 242}, + [5286] = {.lex_state = 242}, + [5287] = {.lex_state = 240}, + [5288] = {.lex_state = 97}, + [5289] = {.lex_state = 240}, + [5290] = {.lex_state = 240}, + [5291] = {.lex_state = 240}, + [5292] = {.lex_state = 242}, + [5293] = {.lex_state = 97}, + [5294] = {.lex_state = 97}, + [5295] = {.lex_state = 242}, + [5296] = {.lex_state = 242}, + [5297] = {.lex_state = 242}, + [5298] = {.lex_state = 242}, + [5299] = {.lex_state = 97}, + [5300] = {.lex_state = 240}, + [5301] = {.lex_state = 97}, + [5302] = {.lex_state = 97}, + [5303] = {.lex_state = 240}, + [5304] = {.lex_state = 97}, + [5305] = {.lex_state = 242}, + [5306] = {.lex_state = 97}, + [5307] = {.lex_state = 240}, + [5308] = {.lex_state = 97}, + [5309] = {.lex_state = 242}, + [5310] = {.lex_state = 97}, + [5311] = {.lex_state = 240}, + [5312] = {.lex_state = 240}, + [5313] = {.lex_state = 242}, + [5314] = {.lex_state = 97}, + [5315] = {.lex_state = 240}, + [5316] = {.lex_state = 240}, + [5317] = {.lex_state = 242}, + [5318] = {.lex_state = 219}, + [5319] = {.lex_state = 242}, + [5320] = {.lex_state = 97}, + [5321] = {.lex_state = 219}, + [5322] = {.lex_state = 242}, + [5323] = {.lex_state = 219}, + [5324] = {.lex_state = 193}, + [5325] = {.lex_state = 242}, + [5326] = {.lex_state = 97}, + [5327] = {.lex_state = 242}, + [5328] = {.lex_state = 97}, + [5329] = {.lex_state = 242}, + [5330] = {.lex_state = 97}, + [5331] = {.lex_state = 193}, + [5332] = {.lex_state = 97}, + [5333] = {.lex_state = 240}, + [5334] = {.lex_state = 240}, + [5335] = {.lex_state = 242}, + [5336] = {.lex_state = 242}, + [5337] = {.lex_state = 240}, + [5338] = {.lex_state = 242}, + [5339] = {.lex_state = 203}, + [5340] = {.lex_state = 97}, + [5341] = {.lex_state = 242}, + [5342] = {.lex_state = 242}, + [5343] = {.lex_state = 242}, + [5344] = {.lex_state = 242}, + [5345] = {.lex_state = 242}, + [5346] = {.lex_state = 242}, + [5347] = {.lex_state = 242}, + [5348] = {.lex_state = 238}, + [5349] = {.lex_state = 242}, + [5350] = {.lex_state = 242}, + [5351] = {.lex_state = 238}, + [5352] = {.lex_state = 175}, + [5353] = {.lex_state = 242}, [5354] = {.lex_state = 225}, [5355] = {.lex_state = 225}, - [5356] = {.lex_state = 225}, - [5357] = {.lex_state = 222}, - [5358] = {.lex_state = 225}, - [5359] = {.lex_state = 225}, - [5360] = {.lex_state = 225}, + [5356] = {.lex_state = 240}, + [5357] = {.lex_state = 242}, + [5358] = {.lex_state = 238}, + [5359] = {.lex_state = 242}, + [5360] = {.lex_state = 219}, [5361] = {.lex_state = 225}, [5362] = {.lex_state = 242}, - [5363] = {.lex_state = 225}, - [5364] = {.lex_state = 225}, - [5365] = {.lex_state = 241}, - [5366] = {.lex_state = 241}, - [5367] = {.lex_state = 225}, - [5368] = {.lex_state = 225}, - [5369] = {.lex_state = 225}, - [5370] = {.lex_state = 230}, - [5371] = {.lex_state = 225}, - [5372] = {.lex_state = 225}, - [5373] = {.lex_state = 225}, - [5374] = {.lex_state = 225}, - [5375] = {.lex_state = 242}, - [5376] = {.lex_state = 225}, - [5377] = {.lex_state = 225}, - [5378] = {.lex_state = 225}, - [5379] = {.lex_state = 225}, - [5380] = {.lex_state = 225}, - [5381] = {.lex_state = 225}, - [5382] = {.lex_state = 225}, - [5383] = {.lex_state = 225}, - [5384] = {.lex_state = 225}, - [5385] = {.lex_state = 225}, - [5386] = {.lex_state = 225}, - [5387] = {.lex_state = 225}, - [5388] = {.lex_state = 225}, - [5389] = {.lex_state = 225}, - [5390] = {.lex_state = 225}, - [5391] = {.lex_state = 240}, - [5392] = {.lex_state = 225}, - [5393] = {.lex_state = 225}, - [5394] = {.lex_state = 225}, + [5363] = {.lex_state = 242}, + [5364] = {.lex_state = 240}, + [5365] = {.lex_state = 175}, + [5366] = {.lex_state = 242}, + [5367] = {.lex_state = 242}, + [5368] = {.lex_state = 242}, + [5369] = {.lex_state = 242}, + [5370] = {.lex_state = 225}, + [5371] = {.lex_state = 242}, + [5372] = {.lex_state = 242}, + [5373] = {.lex_state = 240}, + [5374] = {.lex_state = 238}, + [5375] = {.lex_state = 240}, + [5376] = {.lex_state = 242}, + [5377] = {.lex_state = 238}, + [5378] = {.lex_state = 238}, + [5379] = {.lex_state = 238}, + [5380] = {.lex_state = 238}, + [5381] = {.lex_state = 240}, + [5382] = {.lex_state = 238}, + [5383] = {.lex_state = 240}, + [5384] = {.lex_state = 240}, + [5385] = {.lex_state = 240}, + [5386] = {.lex_state = 175}, + [5387] = {.lex_state = 242}, + [5388] = {.lex_state = 242}, + [5389] = {.lex_state = 175}, + [5390] = {.lex_state = 175}, + [5391] = {.lex_state = 242}, + [5392] = {.lex_state = 219}, + [5393] = {.lex_state = 219}, + [5394] = {.lex_state = 242}, [5395] = {.lex_state = 225}, - [5396] = {.lex_state = 230}, - [5397] = {.lex_state = 225}, + [5396] = {.lex_state = 242}, + [5397] = {.lex_state = 175}, [5398] = {.lex_state = 225}, - [5399] = {.lex_state = 225}, - [5400] = {.lex_state = 225}, - [5401] = {.lex_state = 225}, - [5402] = {.lex_state = 225}, + [5399] = {.lex_state = 242}, + [5400] = {.lex_state = 238}, + [5401] = {.lex_state = 238}, + [5402] = {.lex_state = 238}, [5403] = {.lex_state = 225}, - [5404] = {.lex_state = 225}, - [5405] = {.lex_state = 222}, - [5406] = {.lex_state = 222}, - [5407] = {.lex_state = 222}, - [5408] = {.lex_state = 222}, - [5409] = {.lex_state = 222}, - [5410] = {.lex_state = 222}, - [5411] = {.lex_state = 222}, - [5412] = {.lex_state = 241}, - [5413] = {.lex_state = 225}, - [5414] = {.lex_state = 222}, - [5415] = {.lex_state = 222}, - [5416] = {.lex_state = 222}, - [5417] = {.lex_state = 222}, - [5418] = {.lex_state = 241}, - [5419] = {.lex_state = 222}, - [5420] = {.lex_state = 222}, - [5421] = {.lex_state = 241}, - [5422] = {.lex_state = 240}, - [5423] = {.lex_state = 222}, - [5424] = {.lex_state = 222}, - [5425] = {.lex_state = 222}, - [5426] = {.lex_state = 222}, - [5427] = {.lex_state = 222}, - [5428] = {.lex_state = 222}, - [5429] = {.lex_state = 222}, - [5430] = {.lex_state = 222}, - [5431] = {.lex_state = 241}, - [5432] = {.lex_state = 222}, - [5433] = {.lex_state = 241}, - [5434] = {.lex_state = 222}, - [5435] = {.lex_state = 222}, - [5436] = {.lex_state = 241}, - [5437] = {.lex_state = 222}, - [5438] = {.lex_state = 241}, - [5439] = {.lex_state = 222}, - [5440] = {.lex_state = 222}, - [5441] = {.lex_state = 222}, - [5442] = {.lex_state = 241}, - [5443] = {.lex_state = 222}, - [5444] = {.lex_state = 222}, - [5445] = {.lex_state = 240}, - [5446] = {.lex_state = 222}, - [5447] = {.lex_state = 222}, - [5448] = {.lex_state = 222}, - [5449] = {.lex_state = 222}, - [5450] = {.lex_state = 222}, - [5451] = {.lex_state = 222}, - [5452] = {.lex_state = 222}, - [5453] = {.lex_state = 222}, - [5454] = {.lex_state = 222}, - [5455] = {.lex_state = 222}, - [5456] = {.lex_state = 240}, - [5457] = {.lex_state = 240}, - [5458] = {.lex_state = 222}, - [5459] = {.lex_state = 240}, - [5460] = {.lex_state = 222}, - [5461] = {.lex_state = 241}, - [5462] = {.lex_state = 241}, - [5463] = {.lex_state = 241}, - [5464] = {.lex_state = 219}, - [5465] = {.lex_state = 225}, - [5466] = {.lex_state = 241}, - [5467] = {.lex_state = 241}, - [5468] = {.lex_state = 241}, - [5469] = {.lex_state = 219}, - [5470] = {.lex_state = 241}, - [5471] = {.lex_state = 219}, + [5404] = {.lex_state = 241}, + [5405] = {.lex_state = 219}, + [5406] = {.lex_state = 238}, + [5407] = {.lex_state = 238}, + [5408] = {.lex_state = 240}, + [5409] = {.lex_state = 238}, + [5410] = {.lex_state = 242}, + [5411] = {.lex_state = 225}, + [5412] = {.lex_state = 242}, + [5413] = {.lex_state = 242}, + [5414] = {.lex_state = 241}, + [5415] = {.lex_state = 238}, + [5416] = {.lex_state = 175}, + [5417] = {.lex_state = 175}, + [5418] = {.lex_state = 242}, + [5419] = {.lex_state = 175}, + [5420] = {.lex_state = 238}, + [5421] = {.lex_state = 242}, + [5422] = {.lex_state = 238}, + [5423] = {.lex_state = 238}, + [5424] = {.lex_state = 175}, + [5425] = {.lex_state = 225}, + [5426] = {.lex_state = 241}, + [5427] = {.lex_state = 242}, + [5428] = {.lex_state = 242}, + [5429] = {.lex_state = 238}, + [5430] = {.lex_state = 238}, + [5431] = {.lex_state = 225}, + [5432] = {.lex_state = 225}, + [5433] = {.lex_state = 242}, + [5434] = {.lex_state = 238}, + [5435] = {.lex_state = 240}, + [5436] = {.lex_state = 203}, + [5437] = {.lex_state = 203}, + [5438] = {.lex_state = 244}, + [5439] = {.lex_state = 175}, + [5440] = {.lex_state = 203}, + [5441] = {.lex_state = 233}, + [5442] = {.lex_state = 244}, + [5443] = {.lex_state = 238}, + [5444] = {.lex_state = 240}, + [5445] = {.lex_state = 203}, + [5446] = {.lex_state = 238}, + [5447] = {.lex_state = 242}, + [5448] = {.lex_state = 238}, + [5449] = {.lex_state = 238}, + [5450] = {.lex_state = 240}, + [5451] = {.lex_state = 242}, + [5452] = {.lex_state = 238}, + [5453] = {.lex_state = 203}, + [5454] = {.lex_state = 203}, + [5455] = {.lex_state = 233}, + [5456] = {.lex_state = 203}, + [5457] = {.lex_state = 233}, + [5458] = {.lex_state = 246}, + [5459] = {.lex_state = 175}, + [5460] = {.lex_state = 203}, + [5461] = {.lex_state = 240}, + [5462] = {.lex_state = 175}, + [5463] = {.lex_state = 203}, + [5464] = {.lex_state = 240}, + [5465] = {.lex_state = 185}, + [5466] = {.lex_state = 240}, + [5467] = {.lex_state = 240}, + [5468] = {.lex_state = 240}, + [5469] = {.lex_state = 202}, + [5470] = {.lex_state = 240}, + [5471] = {.lex_state = 240}, [5472] = {.lex_state = 241}, - [5473] = {.lex_state = 242}, + [5473] = {.lex_state = 175}, [5474] = {.lex_state = 241}, - [5475] = {.lex_state = 219}, - [5476] = {.lex_state = 241}, - [5477] = {.lex_state = 241}, - [5478] = {.lex_state = 241}, - [5479] = {.lex_state = 241}, - [5480] = {.lex_state = 225}, - [5481] = {.lex_state = 225}, - [5482] = {.lex_state = 225}, - [5483] = {.lex_state = 242}, - [5484] = {.lex_state = 241}, - [5485] = {.lex_state = 242}, - [5486] = {.lex_state = 242}, - [5487] = {.lex_state = 241}, - [5488] = {.lex_state = 241}, - [5489] = {.lex_state = 225}, - [5490] = {.lex_state = 242}, - [5491] = {.lex_state = 238}, - [5492] = {.lex_state = 242}, + [5475] = {.lex_state = 203}, + [5476] = {.lex_state = 242}, + [5477] = {.lex_state = 242}, + [5478] = {.lex_state = 203}, + [5479] = {.lex_state = 242}, + [5480] = {.lex_state = 203}, + [5481] = {.lex_state = 242}, + [5482] = {.lex_state = 242}, + [5483] = {.lex_state = 185}, + [5484] = {.lex_state = 242}, + [5485] = {.lex_state = 203}, + [5486] = {.lex_state = 203}, + [5487] = {.lex_state = 185}, + [5488] = {.lex_state = 185}, + [5489] = {.lex_state = 203}, + [5490] = {.lex_state = 240}, + [5491] = {.lex_state = 240}, + [5492] = {.lex_state = 185}, [5493] = {.lex_state = 242}, - [5494] = {.lex_state = 243}, - [5495] = {.lex_state = 243}, + [5494] = {.lex_state = 242}, + [5495] = {.lex_state = 203}, [5496] = {.lex_state = 242}, - [5497] = {.lex_state = 242}, - [5498] = {.lex_state = 225}, - [5499] = {.lex_state = 225}, + [5497] = {.lex_state = 202}, + [5498] = {.lex_state = 240}, + [5499] = {.lex_state = 202}, [5500] = {.lex_state = 242}, - [5501] = {.lex_state = 242}, - [5502] = {.lex_state = 238}, - [5503] = {.lex_state = 238}, - [5504] = {.lex_state = 238}, - [5505] = {.lex_state = 238}, - [5506] = {.lex_state = 241}, - [5507] = {.lex_state = 241}, - [5508] = {.lex_state = 238}, - [5509] = {.lex_state = 241}, - [5510] = {.lex_state = 241}, + [5501] = {.lex_state = 240}, + [5502] = {.lex_state = 241}, + [5503] = {.lex_state = 202}, + [5504] = {.lex_state = 203}, + [5505] = {.lex_state = 203}, + [5506] = {.lex_state = 175}, + [5507] = {.lex_state = 203}, + [5508] = {.lex_state = 241}, + [5509] = {.lex_state = 203}, + [5510] = {.lex_state = 185}, [5511] = {.lex_state = 241}, - [5512] = {.lex_state = 238}, - [5513] = {.lex_state = 222}, - [5514] = {.lex_state = 238}, - [5515] = {.lex_state = 238}, - [5516] = {.lex_state = 238}, - [5517] = {.lex_state = 241}, - [5518] = {.lex_state = 238}, - [5519] = {.lex_state = 241}, - [5520] = {.lex_state = 241}, - [5521] = {.lex_state = 241}, - [5522] = {.lex_state = 238}, - [5523] = {.lex_state = 238}, - [5524] = {.lex_state = 238}, + [5512] = {.lex_state = 203}, + [5513] = {.lex_state = 241}, + [5514] = {.lex_state = 175}, + [5515] = {.lex_state = 185}, + [5516] = {.lex_state = 185}, + [5517] = {.lex_state = 185}, + [5518] = {.lex_state = 202}, + [5519] = {.lex_state = 240}, + [5520] = {.lex_state = 242}, + [5521] = {.lex_state = 185}, + [5522] = {.lex_state = 185}, + [5523] = {.lex_state = 240}, + [5524] = {.lex_state = 242}, [5525] = {.lex_state = 241}, - [5526] = {.lex_state = 238}, - [5527] = {.lex_state = 238}, - [5528] = {.lex_state = 241}, - [5529] = {.lex_state = 241}, - [5530] = {.lex_state = 238}, - [5531] = {.lex_state = 241}, - [5532] = {.lex_state = 238}, - [5533] = {.lex_state = 241}, - [5534] = {.lex_state = 222}, - [5535] = {.lex_state = 241}, - [5536] = {.lex_state = 222}, - [5537] = {.lex_state = 238}, - [5538] = {.lex_state = 238}, - [5539] = {.lex_state = 241}, - [5540] = {.lex_state = 225}, - [5541] = {.lex_state = 241}, - [5542] = {.lex_state = 238}, - [5543] = {.lex_state = 238}, - [5544] = {.lex_state = 241}, - [5545] = {.lex_state = 238}, - [5546] = {.lex_state = 241}, - [5547] = {.lex_state = 225}, - [5548] = {.lex_state = 238}, - [5549] = {.lex_state = 241}, - [5550] = {.lex_state = 238}, - [5551] = {.lex_state = 238}, - [5552] = {.lex_state = 241}, - [5553] = {.lex_state = 241}, - [5554] = {.lex_state = 238}, - [5555] = {.lex_state = 241}, - [5556] = {.lex_state = 241}, - [5557] = {.lex_state = 238}, - [5558] = {.lex_state = 238}, - [5559] = {.lex_state = 238}, - [5560] = {.lex_state = 241}, - [5561] = {.lex_state = 238}, - [5562] = {.lex_state = 238}, - [5563] = {.lex_state = 238}, - [5564] = {.lex_state = 241}, - [5565] = {.lex_state = 222}, - [5566] = {.lex_state = 222}, - [5567] = {.lex_state = 238}, - [5568] = {.lex_state = 222}, - [5569] = {.lex_state = 240}, - [5570] = {.lex_state = 242}, - [5571] = {.lex_state = 238}, - [5572] = {.lex_state = 241}, - [5573] = {.lex_state = 242}, - [5574] = {.lex_state = 241}, - [5575] = {.lex_state = 241}, - [5576] = {.lex_state = 242}, - [5577] = {.lex_state = 241}, - [5578] = {.lex_state = 242}, - [5579] = {.lex_state = 241}, - [5580] = {.lex_state = 242}, - [5581] = {.lex_state = 241}, - [5582] = {.lex_state = 241}, - [5583] = {.lex_state = 242}, - [5584] = {.lex_state = 241}, - [5585] = {.lex_state = 241}, - [5586] = {.lex_state = 241}, - [5587] = {.lex_state = 241}, - [5588] = {.lex_state = 241}, - [5589] = {.lex_state = 238}, - [5590] = {.lex_state = 241}, - [5591] = {.lex_state = 242}, - [5592] = {.lex_state = 224}, - [5593] = {.lex_state = 244}, - [5594] = {.lex_state = 224}, - [5595] = {.lex_state = 244}, - [5596] = {.lex_state = 241}, - [5597] = {.lex_state = 241}, - [5598] = {.lex_state = 241}, - [5599] = {.lex_state = 241}, - [5600] = {.lex_state = 241}, - [5601] = {.lex_state = 241}, - [5602] = {.lex_state = 238}, - [5603] = {.lex_state = 241}, - [5604] = {.lex_state = 241}, - [5605] = {.lex_state = 241}, - [5606] = {.lex_state = 241}, - [5607] = {.lex_state = 244}, - [5608] = {.lex_state = 238}, - [5609] = {.lex_state = 241}, - [5610] = {.lex_state = 241}, - [5611] = {.lex_state = 238}, - [5612] = {.lex_state = 238}, - [5613] = {.lex_state = 241}, - [5614] = {.lex_state = 222}, - [5615] = {.lex_state = 241}, - [5616] = {.lex_state = 241}, - [5617] = {.lex_state = 238}, - [5618] = {.lex_state = 238}, - [5619] = {.lex_state = 241}, - [5620] = {.lex_state = 242}, - [5621] = {.lex_state = 244}, - [5622] = {.lex_state = 238}, - [5623] = {.lex_state = 241}, - [5624] = {.lex_state = 241}, - [5625] = {.lex_state = 242}, - [5626] = {.lex_state = 241}, - [5627] = {.lex_state = 241}, - [5628] = {.lex_state = 241}, - [5629] = {.lex_state = 224}, - [5630] = {.lex_state = 241}, - [5631] = {.lex_state = 238}, - [5632] = {.lex_state = 241}, - [5633] = {.lex_state = 241}, - [5634] = {.lex_state = 238}, - [5635] = {.lex_state = 241}, - [5636] = {.lex_state = 241}, - [5637] = {.lex_state = 241}, - [5638] = {.lex_state = 241}, + [5526] = {.lex_state = 175}, + [5527] = {.lex_state = 175}, + [5528] = {.lex_state = 242}, + [5529] = {.lex_state = 202}, + [5530] = {.lex_state = 203}, + [5531] = {.lex_state = 242}, + [5532] = {.lex_state = 242}, + [5533] = {.lex_state = 185}, + [5534] = {.lex_state = 175}, + [5535] = {.lex_state = 175}, + [5536] = {.lex_state = 203}, + [5537] = {.lex_state = 242}, + [5538] = {.lex_state = 203}, + [5539] = {.lex_state = 202}, + [5540] = {.lex_state = 175}, + [5541] = {.lex_state = 203}, + [5542] = {.lex_state = 242}, + [5543] = {.lex_state = 242}, + [5544] = {.lex_state = 202}, + [5545] = {.lex_state = 241}, + [5546] = {.lex_state = 185}, + [5547] = {.lex_state = 185}, + [5548] = {.lex_state = 175}, + [5549] = {.lex_state = 202}, + [5550] = {.lex_state = 242}, + [5551] = {.lex_state = 244}, + [5552] = {.lex_state = 242}, + [5553] = {.lex_state = 207}, + [5554] = {.lex_state = 203}, + [5555] = {.lex_state = 244}, + [5556] = {.lex_state = 182}, + [5557] = {.lex_state = 207}, + [5558] = {.lex_state = 244}, + [5559] = {.lex_state = 242}, + [5560] = {.lex_state = 240}, + [5561] = {.lex_state = 182}, + [5562] = {.lex_state = 207}, + [5563] = {.lex_state = 244}, + [5564] = {.lex_state = 244}, + [5565] = {.lex_state = 244}, + [5566] = {.lex_state = 207}, + [5567] = {.lex_state = 203}, + [5568] = {.lex_state = 182}, + [5569] = {.lex_state = 244}, + [5570] = {.lex_state = 240}, + [5571] = {.lex_state = 244}, + [5572] = {.lex_state = 244}, + [5573] = {.lex_state = 203}, + [5574] = {.lex_state = 182}, + [5575] = {.lex_state = 203}, + [5576] = {.lex_state = 203}, + [5577] = {.lex_state = 207}, + [5578] = {.lex_state = 207}, + [5579] = {.lex_state = 244}, + [5580] = {.lex_state = 203}, + [5581] = {.lex_state = 242}, + [5582] = {.lex_state = 182}, + [5583] = {.lex_state = 182}, + [5584] = {.lex_state = 207}, + [5585] = {.lex_state = 242}, + [5586] = {.lex_state = 182}, + [5587] = {.lex_state = 224}, + [5588] = {.lex_state = 207}, + [5589] = {.lex_state = 182}, + [5590] = {.lex_state = 182}, + [5591] = {.lex_state = 182}, + [5592] = {.lex_state = 203}, + [5593] = {.lex_state = 203}, + [5594] = {.lex_state = 240}, + [5595] = {.lex_state = 203}, + [5596] = {.lex_state = 207}, + [5597] = {.lex_state = 240}, + [5598] = {.lex_state = 240}, + [5599] = {.lex_state = 240}, + [5600] = {.lex_state = 182}, + [5601] = {.lex_state = 203}, + [5602] = {.lex_state = 182}, + [5603] = {.lex_state = 203}, + [5604] = {.lex_state = 244}, + [5605] = {.lex_state = 182}, + [5606] = {.lex_state = 182}, + [5607] = {.lex_state = 203}, + [5608] = {.lex_state = 203}, + [5609] = {.lex_state = 202}, + [5610] = {.lex_state = 244}, + [5611] = {.lex_state = 244}, + [5612] = {.lex_state = 244}, + [5613] = {.lex_state = 203}, + [5614] = {.lex_state = 182}, + [5615] = {.lex_state = 244}, + [5616] = {.lex_state = 202}, + [5617] = {.lex_state = 203}, + [5618] = {.lex_state = 202}, + [5619] = {.lex_state = 182}, + [5620] = {.lex_state = 207}, + [5621] = {.lex_state = 202}, + [5622] = {.lex_state = 244}, + [5623] = {.lex_state = 242}, + [5624] = {.lex_state = 182}, + [5625] = {.lex_state = 203}, + [5626] = {.lex_state = 207}, + [5627] = {.lex_state = 203}, + [5628] = {.lex_state = 182}, + [5629] = {.lex_state = 182}, + [5630] = {.lex_state = 242}, + [5631] = {.lex_state = 242}, + [5632] = {.lex_state = 244}, + [5633] = {.lex_state = 240}, + [5634] = {.lex_state = 203}, + [5635] = {.lex_state = 182}, + [5636] = {.lex_state = 203}, + [5637] = {.lex_state = 244}, + [5638] = {.lex_state = 202}, [5639] = {.lex_state = 242}, - [5640] = {.lex_state = 241}, - [5641] = {.lex_state = 241}, - [5642] = {.lex_state = 238}, - [5643] = {.lex_state = 241}, - [5644] = {.lex_state = 241}, - [5645] = {.lex_state = 241}, - [5646] = {.lex_state = 241}, - [5647] = {.lex_state = 238}, + [5640] = {.lex_state = 203}, + [5641] = {.lex_state = 203}, + [5642] = {.lex_state = 182}, + [5643] = {.lex_state = 203}, + [5644] = {.lex_state = 202}, + [5645] = {.lex_state = 244}, + [5646] = {.lex_state = 203}, + [5647] = {.lex_state = 244}, [5648] = {.lex_state = 242}, - [5649] = {.lex_state = 242}, - [5650] = {.lex_state = 224}, - [5651] = {.lex_state = 241}, - [5652] = {.lex_state = 241}, - [5653] = {.lex_state = 238}, - [5654] = {.lex_state = 241}, - [5655] = {.lex_state = 241}, - [5656] = {.lex_state = 241}, - [5657] = {.lex_state = 241}, - [5658] = {.lex_state = 238}, - [5659] = {.lex_state = 244}, - [5660] = {.lex_state = 219}, - [5661] = {.lex_state = 225}, - [5662] = {.lex_state = 225}, - [5663] = {.lex_state = 244}, - [5664] = {.lex_state = 225}, - [5665] = {.lex_state = 225}, - [5666] = {.lex_state = 228}, - [5667] = {.lex_state = 238}, + [5649] = {.lex_state = 202}, + [5650] = {.lex_state = 203}, + [5651] = {.lex_state = 182}, + [5652] = {.lex_state = 207}, + [5653] = {.lex_state = 203}, + [5654] = {.lex_state = 203}, + [5655] = {.lex_state = 182}, + [5656] = {.lex_state = 203}, + [5657] = {.lex_state = 240}, + [5658] = {.lex_state = 203}, + [5659] = {.lex_state = 203}, + [5660] = {.lex_state = 205}, + [5661] = {.lex_state = 242}, + [5662] = {.lex_state = 241}, + [5663] = {.lex_state = 241}, + [5664] = {.lex_state = 242}, + [5665] = {.lex_state = 241}, + [5666] = {.lex_state = 242}, + [5667] = {.lex_state = 242}, [5668] = {.lex_state = 242}, - [5669] = {.lex_state = 225}, - [5670] = {.lex_state = 219}, - [5671] = {.lex_state = 238}, - [5672] = {.lex_state = 225}, - [5673] = {.lex_state = 219}, - [5674] = {.lex_state = 219}, - [5675] = {.lex_state = 219}, - [5676] = {.lex_state = 242}, - [5677] = {.lex_state = 225}, - [5678] = {.lex_state = 219}, - [5679] = {.lex_state = 244}, - [5680] = {.lex_state = 228}, - [5681] = {.lex_state = 225}, - [5682] = {.lex_state = 238}, - [5683] = {.lex_state = 238}, - [5684] = {.lex_state = 238}, - [5685] = {.lex_state = 222}, - [5686] = {.lex_state = 238}, - [5687] = {.lex_state = 222}, - [5688] = {.lex_state = 242}, - [5689] = {.lex_state = 238}, - [5690] = {.lex_state = 238}, - [5691] = {.lex_state = 238}, - [5692] = {.lex_state = 222}, - [5693] = {.lex_state = 238}, - [5694] = {.lex_state = 238}, - [5695] = {.lex_state = 225}, - [5696] = {.lex_state = 225}, - [5697] = {.lex_state = 238}, - [5698] = {.lex_state = 238}, - [5699] = {.lex_state = 238}, - [5700] = {.lex_state = 238}, - [5701] = {.lex_state = 238}, - [5702] = {.lex_state = 222}, - [5703] = {.lex_state = 238}, - [5704] = {.lex_state = 238}, - [5705] = {.lex_state = 222}, - [5706] = {.lex_state = 222}, - [5707] = {.lex_state = 238}, - [5708] = {.lex_state = 222}, - [5709] = {.lex_state = 222}, - [5710] = {.lex_state = 238}, - [5711] = {.lex_state = 238}, - [5712] = {.lex_state = 238}, - [5713] = {.lex_state = 238}, - [5714] = {.lex_state = 238}, - [5715] = {.lex_state = 238}, - [5716] = {.lex_state = 222}, - [5717] = {.lex_state = 238}, - [5718] = {.lex_state = 238}, - [5719] = {.lex_state = 238}, - [5720] = {.lex_state = 238}, - [5721] = {.lex_state = 222}, - [5722] = {.lex_state = 238}, - [5723] = {.lex_state = 222}, - [5724] = {.lex_state = 222}, - [5725] = {.lex_state = 238}, - [5726] = {.lex_state = 238}, - [5727] = {.lex_state = 238}, - [5728] = {.lex_state = 222}, - [5729] = {.lex_state = 238}, - [5730] = {.lex_state = 238}, - [5731] = {.lex_state = 222}, - [5732] = {.lex_state = 238}, - [5733] = {.lex_state = 222}, - [5734] = {.lex_state = 238}, - [5735] = {.lex_state = 238}, - [5736] = {.lex_state = 238}, - [5737] = {.lex_state = 238}, - [5738] = {.lex_state = 238}, - [5739] = {.lex_state = 238}, - [5740] = {.lex_state = 238}, - [5741] = {.lex_state = 238}, - [5742] = {.lex_state = 238}, - [5743] = {.lex_state = 238}, - [5744] = {.lex_state = 238}, - [5745] = {.lex_state = 238}, - [5746] = {.lex_state = 238}, - [5747] = {.lex_state = 238}, - [5748] = {.lex_state = 238}, - [5749] = {.lex_state = 238}, - [5750] = {.lex_state = 238}, - [5751] = {.lex_state = 238}, - [5752] = {.lex_state = 238}, - [5753] = {.lex_state = 222}, - [5754] = {.lex_state = 225}, - [5755] = {.lex_state = 222}, - [5756] = {.lex_state = 238}, - [5757] = {.lex_state = 238}, - [5758] = {.lex_state = 222}, - [5759] = {.lex_state = 238}, - [5760] = {.lex_state = 222}, - [5761] = {.lex_state = 238}, - [5762] = {.lex_state = 238}, - [5763] = {.lex_state = 238}, - [5764] = {.lex_state = 238}, - [5765] = {.lex_state = 238}, - [5766] = {.lex_state = 238}, - [5767] = {.lex_state = 222}, - [5768] = {.lex_state = 238}, - [5769] = {.lex_state = 222}, - [5770] = {.lex_state = 238}, - [5771] = {.lex_state = 222}, - [5772] = {.lex_state = 238}, - [5773] = {.lex_state = 238}, - [5774] = {.lex_state = 238}, - [5775] = {.lex_state = 238}, + [5669] = {.lex_state = 0}, + [5670] = {.lex_state = 241}, + [5671] = {.lex_state = 242}, + [5672] = {.lex_state = 242}, + [5673] = {.lex_state = 0}, + [5674] = {.lex_state = 241}, + [5675] = {.lex_state = 242}, + [5676] = {.lex_state = 241}, + [5677] = {.lex_state = 242}, + [5678] = {.lex_state = 241}, + [5679] = {.lex_state = 242}, + [5680] = {.lex_state = 205}, + [5681] = {.lex_state = 0}, + [5682] = {.lex_state = 241}, + [5683] = {.lex_state = 242}, + [5684] = {.lex_state = 241}, + [5685] = {.lex_state = 242}, + [5686] = {.lex_state = 241}, + [5687] = {.lex_state = 242}, + [5688] = {.lex_state = 240}, + [5689] = {.lex_state = 241}, + [5690] = {.lex_state = 240}, + [5691] = {.lex_state = 240}, + [5692] = {.lex_state = 242}, + [5693] = {.lex_state = 240}, + [5694] = {.lex_state = 241}, + [5695] = {.lex_state = 203}, + [5696] = {.lex_state = 241}, + [5697] = {.lex_state = 242}, + [5698] = {.lex_state = 242}, + [5699] = {.lex_state = 242}, + [5700] = {.lex_state = 242}, + [5701] = {.lex_state = 0}, + [5702] = {.lex_state = 241}, + [5703] = {.lex_state = 241}, + [5704] = {.lex_state = 242}, + [5705] = {.lex_state = 242}, + [5706] = {.lex_state = 233}, + [5707] = {.lex_state = 242}, + [5708] = {.lex_state = 233}, + [5709] = {.lex_state = 242}, + [5710] = {.lex_state = 242}, + [5711] = {.lex_state = 205}, + [5712] = {.lex_state = 205}, + [5713] = {.lex_state = 242}, + [5714] = {.lex_state = 242}, + [5715] = {.lex_state = 242}, + [5716] = {.lex_state = 0}, + [5717] = {.lex_state = 240}, + [5718] = {.lex_state = 242}, + [5719] = {.lex_state = 242}, + [5720] = {.lex_state = 241}, + [5721] = {.lex_state = 242}, + [5722] = {.lex_state = 233}, + [5723] = {.lex_state = 233}, + [5724] = {.lex_state = 242}, + [5725] = {.lex_state = 242}, + [5726] = {.lex_state = 205}, + [5727] = {.lex_state = 242}, + [5728] = {.lex_state = 241}, + [5729] = {.lex_state = 205}, + [5730] = {.lex_state = 242}, + [5731] = {.lex_state = 242}, + [5732] = {.lex_state = 242}, + [5733] = {.lex_state = 205}, + [5734] = {.lex_state = 242}, + [5735] = {.lex_state = 0}, + [5736] = {.lex_state = 175}, + [5737] = {.lex_state = 241}, + [5738] = {.lex_state = 242}, + [5739] = {.lex_state = 242}, + [5740] = {.lex_state = 205}, + [5741] = {.lex_state = 241}, + [5742] = {.lex_state = 242}, + [5743] = {.lex_state = 242}, + [5744] = {.lex_state = 241}, + [5745] = {.lex_state = 242}, + [5746] = {.lex_state = 242}, + [5747] = {.lex_state = 0}, + [5748] = {.lex_state = 241}, + [5749] = {.lex_state = 242}, + [5750] = {.lex_state = 242}, + [5751] = {.lex_state = 240}, + [5752] = {.lex_state = 241}, + [5753] = {.lex_state = 240}, + [5754] = {.lex_state = 242}, + [5755] = {.lex_state = 242}, + [5756] = {.lex_state = 242}, + [5757] = {.lex_state = 241}, + [5758] = {.lex_state = 242}, + [5759] = {.lex_state = 241}, + [5760] = {.lex_state = 242}, + [5761] = {.lex_state = 242}, + [5762] = {.lex_state = 241}, + [5763] = {.lex_state = 241}, + [5764] = {.lex_state = 0}, + [5765] = {.lex_state = 242}, + [5766] = {.lex_state = 242}, + [5767] = {.lex_state = 241}, + [5768] = {.lex_state = 242}, + [5769] = {.lex_state = 203}, + [5770] = {.lex_state = 0}, + [5771] = {.lex_state = 241}, + [5772] = {.lex_state = 242}, + [5773] = {.lex_state = 241}, + [5774] = {.lex_state = 203}, + [5775] = {.lex_state = 242}, [5776] = {.lex_state = 242}, - [5777] = {.lex_state = 222}, - [5778] = {.lex_state = 238}, - [5779] = {.lex_state = 238}, - [5780] = {.lex_state = 222}, - [5781] = {.lex_state = 238}, - [5782] = {.lex_state = 238}, - [5783] = {.lex_state = 238}, - [5784] = {.lex_state = 238}, - [5785] = {.lex_state = 238}, - [5786] = {.lex_state = 238}, - [5787] = {.lex_state = 238}, - [5788] = {.lex_state = 238}, - [5789] = {.lex_state = 238}, - [5790] = {.lex_state = 222}, - [5791] = {.lex_state = 222}, - [5792] = {.lex_state = 238}, - [5793] = {.lex_state = 238}, - [5794] = {.lex_state = 225}, - [5795] = {.lex_state = 238}, - [5796] = {.lex_state = 238}, - [5797] = {.lex_state = 238}, - [5798] = {.lex_state = 222}, - [5799] = {.lex_state = 238}, - [5800] = {.lex_state = 238}, - [5801] = {.lex_state = 222}, - [5802] = {.lex_state = 238}, - [5803] = {.lex_state = 224}, - [5804] = {.lex_state = 222}, - [5805] = {.lex_state = 222}, - [5806] = {.lex_state = 222}, - [5807] = {.lex_state = 242}, - [5808] = {.lex_state = 222}, - [5809] = {.lex_state = 222}, - [5810] = {.lex_state = 222}, + [5777] = {.lex_state = 207}, + [5778] = {.lex_state = 207}, + [5779] = {.lex_state = 202}, + [5780] = {.lex_state = 203}, + [5781] = {.lex_state = 203}, + [5782] = {.lex_state = 242}, + [5783] = {.lex_state = 203}, + [5784] = {.lex_state = 203}, + [5785] = {.lex_state = 242}, + [5786] = {.lex_state = 202}, + [5787] = {.lex_state = 207}, + [5788] = {.lex_state = 203}, + [5789] = {.lex_state = 203}, + [5790] = {.lex_state = 203}, + [5791] = {.lex_state = 203}, + [5792] = {.lex_state = 242}, + [5793] = {.lex_state = 203}, + [5794] = {.lex_state = 242}, + [5795] = {.lex_state = 202}, + [5796] = {.lex_state = 242}, + [5797] = {.lex_state = 207}, + [5798] = {.lex_state = 203}, + [5799] = {.lex_state = 202}, + [5800] = {.lex_state = 242}, + [5801] = {.lex_state = 203}, + [5802] = {.lex_state = 203}, + [5803] = {.lex_state = 207}, + [5804] = {.lex_state = 203}, + [5805] = {.lex_state = 203}, + [5806] = {.lex_state = 242}, + [5807] = {.lex_state = 203}, + [5808] = {.lex_state = 203}, + [5809] = {.lex_state = 202}, + [5810] = {.lex_state = 202}, [5811] = {.lex_state = 242}, - [5812] = {.lex_state = 222}, - [5813] = {.lex_state = 241}, - [5814] = {.lex_state = 242}, - [5815] = {.lex_state = 222}, - [5816] = {.lex_state = 222}, - [5817] = {.lex_state = 222}, - [5818] = {.lex_state = 222}, - [5819] = {.lex_state = 222}, - [5820] = {.lex_state = 222}, - [5821] = {.lex_state = 222}, - [5822] = {.lex_state = 222}, - [5823] = {.lex_state = 222}, - [5824] = {.lex_state = 222}, - [5825] = {.lex_state = 222}, - [5826] = {.lex_state = 222}, - [5827] = {.lex_state = 222}, - [5828] = {.lex_state = 241}, - [5829] = {.lex_state = 222}, - [5830] = {.lex_state = 222}, - [5831] = {.lex_state = 222}, - [5832] = {.lex_state = 241}, - [5833] = {.lex_state = 224}, - [5834] = {.lex_state = 222}, - [5835] = {.lex_state = 241}, - [5836] = {.lex_state = 238}, - [5837] = {.lex_state = 222}, - [5838] = {.lex_state = 222}, - [5839] = {.lex_state = 222}, - [5840] = {.lex_state = 222}, - [5841] = {.lex_state = 222}, - [5842] = {.lex_state = 222}, - [5843] = {.lex_state = 222}, - [5844] = {.lex_state = 241}, - [5845] = {.lex_state = 222}, - [5846] = {.lex_state = 242}, - [5847] = {.lex_state = 240}, - [5848] = {.lex_state = 202}, - [5849] = {.lex_state = 202}, - [5850] = {.lex_state = 225}, - [5851] = {.lex_state = 202}, - [5852] = {.lex_state = 202}, + [5812] = {.lex_state = 203}, + [5813] = {.lex_state = 242}, + [5814] = {.lex_state = 203}, + [5815] = {.lex_state = 315}, + [5816] = {.lex_state = 242}, + [5817] = {.lex_state = 202}, + [5818] = {.lex_state = 203}, + [5819] = {.lex_state = 242}, + [5820] = {.lex_state = 202}, + [5821] = {.lex_state = 203}, + [5822] = {.lex_state = 242}, + [5823] = {.lex_state = 202}, + [5824] = {.lex_state = 203}, + [5825] = {.lex_state = 203}, + [5826] = {.lex_state = 203}, + [5827] = {.lex_state = 203}, + [5828] = {.lex_state = 242}, + [5829] = {.lex_state = 203}, + [5830] = {.lex_state = 315}, + [5831] = {.lex_state = 315}, + [5832] = {.lex_state = 202}, + [5833] = {.lex_state = 207}, + [5834] = {.lex_state = 202}, + [5835] = {.lex_state = 203}, + [5836] = {.lex_state = 0}, + [5837] = {.lex_state = 203}, + [5838] = {.lex_state = 203}, + [5839] = {.lex_state = 203}, + [5840] = {.lex_state = 202}, + [5841] = {.lex_state = 203}, + [5842] = {.lex_state = 242}, + [5843] = {.lex_state = 207}, + [5844] = {.lex_state = 242}, + [5845] = {.lex_state = 203}, + [5846] = {.lex_state = 203}, + [5847] = {.lex_state = 207}, + [5848] = {.lex_state = 315}, + [5849] = {.lex_state = 315}, + [5850] = {.lex_state = 203}, + [5851] = {.lex_state = 203}, + [5852] = {.lex_state = 203}, [5853] = {.lex_state = 242}, - [5854] = {.lex_state = 242}, - [5855] = {.lex_state = 242}, - [5856] = {.lex_state = 225}, - [5857] = {.lex_state = 202}, - [5858] = {.lex_state = 242}, - [5859] = {.lex_state = 202}, - [5860] = {.lex_state = 202}, - [5861] = {.lex_state = 242}, - [5862] = {.lex_state = 241}, - [5863] = {.lex_state = 202}, - [5864] = {.lex_state = 241}, + [5854] = {.lex_state = 203}, + [5855] = {.lex_state = 194}, + [5856] = {.lex_state = 203}, + [5857] = {.lex_state = 242}, + [5858] = {.lex_state = 241}, + [5859] = {.lex_state = 194}, + [5860] = {.lex_state = 203}, + [5861] = {.lex_state = 241}, + [5862] = {.lex_state = 203}, + [5863] = {.lex_state = 194}, + [5864] = {.lex_state = 194}, [5865] = {.lex_state = 242}, - [5866] = {.lex_state = 202}, - [5867] = {.lex_state = 241}, - [5868] = {.lex_state = 202}, - [5869] = {.lex_state = 202}, - [5870] = {.lex_state = 242}, - [5871] = {.lex_state = 242}, - [5872] = {.lex_state = 202}, - [5873] = {.lex_state = 202}, - [5874] = {.lex_state = 202}, - [5875] = {.lex_state = 202}, - [5876] = {.lex_state = 202}, - [5877] = {.lex_state = 202}, - [5878] = {.lex_state = 202}, - [5879] = {.lex_state = 240}, - [5880] = {.lex_state = 202}, - [5881] = {.lex_state = 242}, - [5882] = {.lex_state = 202}, - [5883] = {.lex_state = 202}, - [5884] = {.lex_state = 202}, - [5885] = {.lex_state = 242}, - [5886] = {.lex_state = 202}, - [5887] = {.lex_state = 241}, - [5888] = {.lex_state = 242}, - [5889] = {.lex_state = 240}, - [5890] = {.lex_state = 202}, - [5891] = {.lex_state = 202}, + [5866] = {.lex_state = 203}, + [5867] = {.lex_state = 205}, + [5868] = {.lex_state = 241}, + [5869] = {.lex_state = 241}, + [5870] = {.lex_state = 194}, + [5871] = {.lex_state = 203}, + [5872] = {.lex_state = 203}, + [5873] = {.lex_state = 242}, + [5874] = {.lex_state = 194}, + [5875] = {.lex_state = 205}, + [5876] = {.lex_state = 203}, + [5877] = {.lex_state = 242}, + [5878] = {.lex_state = 203}, + [5879] = {.lex_state = 203}, + [5880] = {.lex_state = 242}, + [5881] = {.lex_state = 241}, + [5882] = {.lex_state = 203}, + [5883] = {.lex_state = 242}, + [5884] = {.lex_state = 203}, + [5885] = {.lex_state = 205}, + [5886] = {.lex_state = 205}, + [5887] = {.lex_state = 205}, + [5888] = {.lex_state = 241}, + [5889] = {.lex_state = 205}, + [5890] = {.lex_state = 205}, + [5891] = {.lex_state = 205}, [5892] = {.lex_state = 242}, - [5893] = {.lex_state = 202}, - [5894] = {.lex_state = 202}, - [5895] = {.lex_state = 202}, - [5896] = {.lex_state = 202}, - [5897] = {.lex_state = 242}, - [5898] = {.lex_state = 242}, - [5899] = {.lex_state = 202}, - [5900] = {.lex_state = 241}, - [5901] = {.lex_state = 242}, - [5902] = {.lex_state = 240}, - [5903] = {.lex_state = 202}, - [5904] = {.lex_state = 202}, - [5905] = {.lex_state = 202}, - [5906] = {.lex_state = 202}, - [5907] = {.lex_state = 202}, - [5908] = {.lex_state = 242}, + [5893] = {.lex_state = 203}, + [5894] = {.lex_state = 205}, + [5895] = {.lex_state = 203}, + [5896] = {.lex_state = 194}, + [5897] = {.lex_state = 241}, + [5898] = {.lex_state = 203}, + [5899] = {.lex_state = 203}, + [5900] = {.lex_state = 203}, + [5901] = {.lex_state = 203}, + [5902] = {.lex_state = 205}, + [5903] = {.lex_state = 203}, + [5904] = {.lex_state = 205}, + [5905] = {.lex_state = 203}, + [5906] = {.lex_state = 242}, + [5907] = {.lex_state = 203}, + [5908] = {.lex_state = 205}, [5909] = {.lex_state = 202}, [5910] = {.lex_state = 242}, - [5911] = {.lex_state = 202}, - [5912] = {.lex_state = 202}, + [5911] = {.lex_state = 219}, + [5912] = {.lex_state = 242}, [5913] = {.lex_state = 242}, - [5914] = {.lex_state = 241}, + [5914] = {.lex_state = 185}, [5915] = {.lex_state = 202}, - [5916] = {.lex_state = 202}, + [5916] = {.lex_state = 315}, [5917] = {.lex_state = 242}, [5918] = {.lex_state = 202}, - [5919] = {.lex_state = 242}, + [5919] = {.lex_state = 202}, [5920] = {.lex_state = 202}, - [5921] = {.lex_state = 240}, - [5922] = {.lex_state = 242}, + [5921] = {.lex_state = 219}, + [5922] = {.lex_state = 202}, [5923] = {.lex_state = 202}, - [5924] = {.lex_state = 242}, - [5925] = {.lex_state = 202}, - [5926] = {.lex_state = 202}, - [5927] = {.lex_state = 202}, - [5928] = {.lex_state = 202}, - [5929] = {.lex_state = 202}, - [5930] = {.lex_state = 202}, - [5931] = {.lex_state = 202}, - [5932] = {.lex_state = 202}, - [5933] = {.lex_state = 202}, - [5934] = {.lex_state = 202}, - [5935] = {.lex_state = 202}, - [5936] = {.lex_state = 202}, - [5937] = {.lex_state = 202}, - [5938] = {.lex_state = 202}, - [5939] = {.lex_state = 202}, - [5940] = {.lex_state = 240}, - [5941] = {.lex_state = 225}, - [5942] = {.lex_state = 202}, - [5943] = {.lex_state = 202}, - [5944] = {.lex_state = 202}, - [5945] = {.lex_state = 240}, - [5946] = {.lex_state = 202}, - [5947] = {.lex_state = 202}, - [5948] = {.lex_state = 202}, - [5949] = {.lex_state = 202}, - [5950] = {.lex_state = 202}, - [5951] = {.lex_state = 202}, - [5952] = {.lex_state = 202}, - [5953] = {.lex_state = 202}, - [5954] = {.lex_state = 242}, - [5955] = {.lex_state = 202}, - [5956] = {.lex_state = 202}, - [5957] = {.lex_state = 202}, - [5958] = {.lex_state = 225}, - [5959] = {.lex_state = 202}, - [5960] = {.lex_state = 242}, - [5961] = {.lex_state = 202}, - [5962] = {.lex_state = 202}, - [5963] = {.lex_state = 202}, - [5964] = {.lex_state = 202}, - [5965] = {.lex_state = 202}, - [5966] = {.lex_state = 202}, - [5967] = {.lex_state = 202}, - [5968] = {.lex_state = 242}, - [5969] = {.lex_state = 242}, - [5970] = {.lex_state = 202}, - [5971] = {.lex_state = 202}, - [5972] = {.lex_state = 202}, - [5973] = {.lex_state = 202}, - [5974] = {.lex_state = 242}, - [5975] = {.lex_state = 240}, - [5976] = {.lex_state = 202}, - [5977] = {.lex_state = 202}, - [5978] = {.lex_state = 242}, - [5979] = {.lex_state = 202}, - [5980] = {.lex_state = 242}, - [5981] = {.lex_state = 242}, - [5982] = {.lex_state = 202}, - [5983] = {.lex_state = 202}, - [5984] = {.lex_state = 202}, - [5985] = {.lex_state = 202}, - [5986] = {.lex_state = 202}, - [5987] = {.lex_state = 240}, - [5988] = {.lex_state = 202}, - [5989] = {.lex_state = 238}, - [5990] = {.lex_state = 242}, - [5991] = {.lex_state = 202}, - [5992] = {.lex_state = 242}, - [5993] = {.lex_state = 202}, - [5994] = {.lex_state = 240}, - [5995] = {.lex_state = 202}, - [5996] = {.lex_state = 202}, - [5997] = {.lex_state = 242}, - [5998] = {.lex_state = 202}, - [5999] = {.lex_state = 202}, - [6000] = {.lex_state = 202}, - [6001] = {.lex_state = 238}, - [6002] = {.lex_state = 242}, - [6003] = {.lex_state = 242}, - [6004] = {.lex_state = 202}, - [6005] = {.lex_state = 242}, - [6006] = {.lex_state = 242}, - [6007] = {.lex_state = 242}, - [6008] = {.lex_state = 242}, - [6009] = {.lex_state = 240}, - [6010] = {.lex_state = 242}, - [6011] = {.lex_state = 242}, - [6012] = {.lex_state = 242}, - [6013] = {.lex_state = 242}, - [6014] = {.lex_state = 242}, - [6015] = {.lex_state = 242}, - [6016] = {.lex_state = 242}, - [6017] = {.lex_state = 242}, - [6018] = {.lex_state = 238}, - [6019] = {.lex_state = 242}, - [6020] = {.lex_state = 242}, - [6021] = {.lex_state = 242}, - [6022] = {.lex_state = 240}, - [6023] = {.lex_state = 242}, - [6024] = {.lex_state = 242}, - [6025] = {.lex_state = 242}, - [6026] = {.lex_state = 242}, - [6027] = {.lex_state = 242}, - [6028] = {.lex_state = 242}, - [6029] = {.lex_state = 238}, - [6030] = {.lex_state = 240}, - [6031] = {.lex_state = 242}, - [6032] = {.lex_state = 242}, - [6033] = {.lex_state = 238}, - [6034] = {.lex_state = 242}, - [6035] = {.lex_state = 242}, - [6036] = {.lex_state = 242}, - [6037] = {.lex_state = 242}, - [6038] = {.lex_state = 242}, - [6039] = {.lex_state = 242}, - [6040] = {.lex_state = 242}, - [6041] = {.lex_state = 242}, - [6042] = {.lex_state = 242}, - [6043] = {.lex_state = 242}, - [6044] = {.lex_state = 242}, - [6045] = {.lex_state = 242}, - [6046] = {.lex_state = 242}, - [6047] = {.lex_state = 238}, - [6048] = {.lex_state = 242}, - [6049] = {.lex_state = 242}, - [6050] = {.lex_state = 242}, - [6051] = {.lex_state = 242}, - [6052] = {.lex_state = 242}, - [6053] = {.lex_state = 242}, - [6054] = {.lex_state = 247}, - [6055] = {.lex_state = 241}, - [6056] = {.lex_state = 238}, - [6057] = {.lex_state = 238}, - [6058] = {.lex_state = 238}, - [6059] = {.lex_state = 238}, - [6060] = {.lex_state = 247}, - [6061] = {.lex_state = 238}, - [6062] = {.lex_state = 222}, - [6063] = {.lex_state = 247}, - [6064] = {.lex_state = 247}, - [6065] = {.lex_state = 222}, - [6066] = {.lex_state = 241}, - [6067] = {.lex_state = 238}, - [6068] = {.lex_state = 238}, - [6069] = {.lex_state = 247}, - [6070] = {.lex_state = 247}, - [6071] = {.lex_state = 241}, - [6072] = {.lex_state = 238}, - [6073] = {.lex_state = 238}, - [6074] = {.lex_state = 238}, - [6075] = {.lex_state = 238}, - [6076] = {.lex_state = 238}, - [6077] = {.lex_state = 238}, - [6078] = {.lex_state = 238}, - [6079] = {.lex_state = 238}, - [6080] = {.lex_state = 238}, - [6081] = {.lex_state = 241}, - [6082] = {.lex_state = 238}, - [6083] = {.lex_state = 238}, - [6084] = {.lex_state = 238}, - [6085] = {.lex_state = 238}, - [6086] = {.lex_state = 238}, - [6087] = {.lex_state = 238}, - [6088] = {.lex_state = 238}, - [6089] = {.lex_state = 238}, - [6090] = {.lex_state = 240}, - [6091] = {.lex_state = 241}, - [6092] = {.lex_state = 241}, - [6093] = {.lex_state = 240}, - [6094] = {.lex_state = 205}, + [5924] = {.lex_state = 203}, + [5925] = {.lex_state = 219}, + [5926] = {.lex_state = 315}, + [5927] = {.lex_state = 203}, + [5928] = {.lex_state = 219}, + [5929] = {.lex_state = 219}, + [5930] = {.lex_state = 219}, + [5931] = {.lex_state = 203}, + [5932] = {.lex_state = 219}, + [5933] = {.lex_state = 219}, + [5934] = {.lex_state = 242}, + [5935] = {.lex_state = 203}, + [5936] = {.lex_state = 219}, + [5937] = {.lex_state = 242}, + [5938] = {.lex_state = 219}, + [5939] = {.lex_state = 242}, + [5940] = {.lex_state = 185}, + [5941] = {.lex_state = 203}, + [5942] = {.lex_state = 203}, + [5943] = {.lex_state = 219}, + [5944] = {.lex_state = 315}, + [5945] = {.lex_state = 175}, + [5946] = {.lex_state = 234}, + [5947] = {.lex_state = 203}, + [5948] = {.lex_state = 203}, + [5949] = {.lex_state = 203}, + [5950] = {.lex_state = 203}, + [5951] = {.lex_state = 203}, + [5952] = {.lex_state = 234}, + [5953] = {.lex_state = 203}, + [5954] = {.lex_state = 203}, + [5955] = {.lex_state = 225}, + [5956] = {.lex_state = 203}, + [5957] = {.lex_state = 203}, + [5958] = {.lex_state = 234}, + [5959] = {.lex_state = 203}, + [5960] = {.lex_state = 203}, + [5961] = {.lex_state = 203}, + [5962] = {.lex_state = 203}, + [5963] = {.lex_state = 225}, + [5964] = {.lex_state = 203}, + [5965] = {.lex_state = 203}, + [5966] = {.lex_state = 203}, + [5967] = {.lex_state = 203}, + [5968] = {.lex_state = 203}, + [5969] = {.lex_state = 234}, + [5970] = {.lex_state = 205}, + [5971] = {.lex_state = 205}, + [5972] = {.lex_state = 203}, + [5973] = {.lex_state = 315}, + [5974] = {.lex_state = 203}, + [5975] = {.lex_state = 203}, + [5976] = {.lex_state = 205}, + [5977] = {.lex_state = 203}, + [5978] = {.lex_state = 203}, + [5979] = {.lex_state = 203}, + [5980] = {.lex_state = 203}, + [5981] = {.lex_state = 205}, + [5982] = {.lex_state = 203}, + [5983] = {.lex_state = 203}, + [5984] = {.lex_state = 203}, + [5985] = {.lex_state = 234}, + [5986] = {.lex_state = 205}, + [5987] = {.lex_state = 203}, + [5988] = {.lex_state = 203}, + [5989] = {.lex_state = 205}, + [5990] = {.lex_state = 315}, + [5991] = {.lex_state = 205}, + [5992] = {.lex_state = 203}, + [5993] = {.lex_state = 175}, + [5994] = {.lex_state = 205}, + [5995] = {.lex_state = 315}, + [5996] = {.lex_state = 241}, + [5997] = {.lex_state = 175}, + [5998] = {.lex_state = 207}, + [5999] = {.lex_state = 205}, + [6000] = {.lex_state = 315}, + [6001] = {.lex_state = 315}, + [6002] = {.lex_state = 203}, + [6003] = {.lex_state = 315}, + [6004] = {.lex_state = 203}, + [6005] = {.lex_state = 203}, + [6006] = {.lex_state = 205}, + [6007] = {.lex_state = 315}, + [6008] = {.lex_state = 315}, + [6009] = {.lex_state = 315}, + [6010] = {.lex_state = 315}, + [6011] = {.lex_state = 207}, + [6012] = {.lex_state = 207}, + [6013] = {.lex_state = 315}, + [6014] = {.lex_state = 315}, + [6015] = {.lex_state = 207}, + [6016] = {.lex_state = 207}, + [6017] = {.lex_state = 315}, + [6018] = {.lex_state = 315}, + [6019] = {.lex_state = 315}, + [6020] = {.lex_state = 241}, + [6021] = {.lex_state = 241}, + [6022] = {.lex_state = 315}, + [6023] = {.lex_state = 219}, + [6024] = {.lex_state = 240}, + [6025] = {.lex_state = 185}, + [6026] = {.lex_state = 315}, + [6027] = {.lex_state = 315}, + [6028] = {.lex_state = 240}, + [6029] = {.lex_state = 205}, + [6030] = {.lex_state = 245}, + [6031] = {.lex_state = 241}, + [6032] = {.lex_state = 315}, + [6033] = {.lex_state = 315}, + [6034] = {.lex_state = 315}, + [6035] = {.lex_state = 207}, + [6036] = {.lex_state = 315}, + [6037] = {.lex_state = 219}, + [6038] = {.lex_state = 315}, + [6039] = {.lex_state = 315}, + [6040] = {.lex_state = 205}, + [6041] = {.lex_state = 203}, + [6042] = {.lex_state = 207}, + [6043] = {.lex_state = 315}, + [6044] = {.lex_state = 315}, + [6045] = {.lex_state = 315}, + [6046] = {.lex_state = 315}, + [6047] = {.lex_state = 205}, + [6048] = {.lex_state = 175}, + [6049] = {.lex_state = 203}, + [6050] = {.lex_state = 225}, + [6051] = {.lex_state = 175}, + [6052] = {.lex_state = 175}, + [6053] = {.lex_state = 203}, + [6054] = {.lex_state = 175}, + [6055] = {.lex_state = 203}, + [6056] = {.lex_state = 175}, + [6057] = {.lex_state = 315}, + [6058] = {.lex_state = 203}, + [6059] = {.lex_state = 175}, + [6060] = {.lex_state = 205}, + [6061] = {.lex_state = 205}, + [6062] = {.lex_state = 175}, + [6063] = {.lex_state = 315}, + [6064] = {.lex_state = 175}, + [6065] = {.lex_state = 203}, + [6066] = {.lex_state = 315}, + [6067] = {.lex_state = 315}, + [6068] = {.lex_state = 203}, + [6069] = {.lex_state = 175}, + [6070] = {.lex_state = 315}, + [6071] = {.lex_state = 175}, + [6072] = {.lex_state = 175}, + [6073] = {.lex_state = 225}, + [6074] = {.lex_state = 175}, + [6075] = {.lex_state = 175}, + [6076] = {.lex_state = 203}, + [6077] = {.lex_state = 225}, + [6078] = {.lex_state = 175}, + [6079] = {.lex_state = 175}, + [6080] = {.lex_state = 315}, + [6081] = {.lex_state = 203}, + [6082] = {.lex_state = 205}, + [6083] = {.lex_state = 175}, + [6084] = {.lex_state = 175}, + [6085] = {.lex_state = 175}, + [6086] = {.lex_state = 203}, + [6087] = {.lex_state = 240}, + [6088] = {.lex_state = 203}, + [6089] = {.lex_state = 175}, + [6090] = {.lex_state = 205}, + [6091] = {.lex_state = 240}, + [6092] = {.lex_state = 315}, + [6093] = {.lex_state = 175}, + [6094] = {.lex_state = 0}, [6095] = {.lex_state = 240}, - [6096] = {.lex_state = 240}, - [6097] = {.lex_state = 241}, - [6098] = {.lex_state = 222}, - [6099] = {.lex_state = 205}, + [6096] = {.lex_state = 203}, + [6097] = {.lex_state = 203}, + [6098] = {.lex_state = 240}, + [6099] = {.lex_state = 240}, [6100] = {.lex_state = 205}, - [6101] = {.lex_state = 240}, - [6102] = {.lex_state = 241}, - [6103] = {.lex_state = 241}, - [6104] = {.lex_state = 240}, - [6105] = {.lex_state = 241}, - [6106] = {.lex_state = 205}, - [6107] = {.lex_state = 241}, - [6108] = {.lex_state = 241}, - [6109] = {.lex_state = 241}, - [6110] = {.lex_state = 241}, - [6111] = {.lex_state = 240}, - [6112] = {.lex_state = 205}, - [6113] = {.lex_state = 240}, - [6114] = {.lex_state = 205}, - [6115] = {.lex_state = 240}, - [6116] = {.lex_state = 241}, - [6117] = {.lex_state = 202}, - [6118] = {.lex_state = 202}, - [6119] = {.lex_state = 241}, - [6120] = {.lex_state = 241}, - [6121] = {.lex_state = 241}, - [6122] = {.lex_state = 241}, - [6123] = {.lex_state = 202}, - [6124] = {.lex_state = 240}, - [6125] = {.lex_state = 240}, - [6126] = {.lex_state = 240}, - [6127] = {.lex_state = 241}, - [6128] = {.lex_state = 241}, - [6129] = {.lex_state = 240}, + [6101] = {.lex_state = 203}, + [6102] = {.lex_state = 203}, + [6103] = {.lex_state = 0}, + [6104] = {.lex_state = 203}, + [6105] = {.lex_state = 203}, + [6106] = {.lex_state = 175}, + [6107] = {.lex_state = 240}, + [6108] = {.lex_state = 240}, + [6109] = {.lex_state = 0}, + [6110] = {.lex_state = 175}, + [6111] = {.lex_state = 203}, + [6112] = {.lex_state = 240}, + [6113] = {.lex_state = 203}, + [6114] = {.lex_state = 315}, + [6115] = {.lex_state = 315}, + [6116] = {.lex_state = 203}, + [6117] = {.lex_state = 240}, + [6118] = {.lex_state = 240}, + [6119] = {.lex_state = 203}, + [6120] = {.lex_state = 240}, + [6121] = {.lex_state = 240}, + [6122] = {.lex_state = 240}, + [6123] = {.lex_state = 203}, + [6124] = {.lex_state = 203}, + [6125] = {.lex_state = 315}, + [6126] = {.lex_state = 203}, + [6127] = {.lex_state = 240}, + [6128] = {.lex_state = 203}, + [6129] = {.lex_state = 175}, [6130] = {.lex_state = 240}, - [6131] = {.lex_state = 240}, - [6132] = {.lex_state = 202}, - [6133] = {.lex_state = 240}, - [6134] = {.lex_state = 225}, - [6135] = {.lex_state = 240}, - [6136] = {.lex_state = 202}, - [6137] = {.lex_state = 202}, - [6138] = {.lex_state = 240}, - [6139] = {.lex_state = 240}, - [6140] = {.lex_state = 240}, - [6141] = {.lex_state = 241}, - [6142] = {.lex_state = 240}, + [6131] = {.lex_state = 203}, + [6132] = {.lex_state = 240}, + [6133] = {.lex_state = 203}, + [6134] = {.lex_state = 240}, + [6135] = {.lex_state = 315}, + [6136] = {.lex_state = 240}, + [6137] = {.lex_state = 240}, + [6138] = {.lex_state = 203}, + [6139] = {.lex_state = 203}, + [6140] = {.lex_state = 185}, + [6141] = {.lex_state = 240}, + [6142] = {.lex_state = 202}, [6143] = {.lex_state = 202}, - [6144] = {.lex_state = 202}, - [6145] = {.lex_state = 240}, - [6146] = {.lex_state = 241}, - [6147] = {.lex_state = 225}, - [6148] = {.lex_state = 241}, - [6149] = {.lex_state = 240}, - [6150] = {.lex_state = 241}, - [6151] = {.lex_state = 247}, - [6152] = {.lex_state = 247}, - [6153] = {.lex_state = 247}, - [6154] = {.lex_state = 241}, - [6155] = {.lex_state = 247}, - [6156] = {.lex_state = 241}, - [6157] = {.lex_state = 247}, - [6158] = {.lex_state = 241}, - [6159] = {.lex_state = 247}, - [6160] = {.lex_state = 241}, - [6161] = {.lex_state = 247}, - [6162] = {.lex_state = 241}, - [6163] = {.lex_state = 240}, - [6164] = {.lex_state = 241}, - [6165] = {.lex_state = 240}, - [6166] = {.lex_state = 247}, - [6167] = {.lex_state = 247}, - [6168] = {.lex_state = 247}, - [6169] = {.lex_state = 247}, - [6170] = {.lex_state = 247}, - [6171] = {.lex_state = 247}, - [6172] = {.lex_state = 247}, - [6173] = {.lex_state = 247}, - [6174] = {.lex_state = 247}, - [6175] = {.lex_state = 247}, - [6176] = {.lex_state = 240}, - [6177] = {.lex_state = 240}, - [6178] = {.lex_state = 247}, - [6179] = {.lex_state = 247}, - [6180] = {.lex_state = 247}, - [6181] = {.lex_state = 247}, - [6182] = {.lex_state = 247}, - [6183] = {.lex_state = 247}, - [6184] = {.lex_state = 247}, - [6185] = {.lex_state = 247}, - [6186] = {.lex_state = 247}, - [6187] = {.lex_state = 247}, - [6188] = {.lex_state = 247}, - [6189] = {.lex_state = 241}, - [6190] = {.lex_state = 240}, - [6191] = {.lex_state = 241}, - [6192] = {.lex_state = 241}, - [6193] = {.lex_state = 247}, - [6194] = {.lex_state = 247}, - [6195] = {.lex_state = 241}, - [6196] = {.lex_state = 247}, - [6197] = {.lex_state = 247}, - [6198] = {.lex_state = 247}, - [6199] = {.lex_state = 193}, - [6200] = {.lex_state = 241}, - [6201] = {.lex_state = 219}, - [6202] = {.lex_state = 247}, - [6203] = {.lex_state = 247}, - [6204] = {.lex_state = 247}, - [6205] = {.lex_state = 219}, - [6206] = {.lex_state = 219}, - [6207] = {.lex_state = 241}, - [6208] = {.lex_state = 247}, - [6209] = {.lex_state = 247}, - [6210] = {.lex_state = 241}, - [6211] = {.lex_state = 241}, - [6212] = {.lex_state = 247}, - [6213] = {.lex_state = 193}, - [6214] = {.lex_state = 193}, + [6144] = {.lex_state = 203}, + [6145] = {.lex_state = 203}, + [6146] = {.lex_state = 203}, + [6147] = {.lex_state = 175}, + [6148] = {.lex_state = 203}, + [6149] = {.lex_state = 203}, + [6150] = {.lex_state = 203}, + [6151] = {.lex_state = 203}, + [6152] = {.lex_state = 203}, + [6153] = {.lex_state = 203}, + [6154] = {.lex_state = 203}, + [6155] = {.lex_state = 203}, + [6156] = {.lex_state = 203}, + [6157] = {.lex_state = 185}, + [6158] = {.lex_state = 185}, + [6159] = {.lex_state = 203}, + [6160] = {.lex_state = 203}, + [6161] = {.lex_state = 203}, + [6162] = {.lex_state = 185}, + [6163] = {.lex_state = 203}, + [6164] = {.lex_state = 203}, + [6165] = {.lex_state = 203}, + [6166] = {.lex_state = 185}, + [6167] = {.lex_state = 203}, + [6168] = {.lex_state = 315}, + [6169] = {.lex_state = 203}, + [6170] = {.lex_state = 175}, + [6171] = {.lex_state = 203}, + [6172] = {.lex_state = 203}, + [6173] = {.lex_state = 203}, + [6174] = {.lex_state = 203}, + [6175] = {.lex_state = 203}, + [6176] = {.lex_state = 203}, + [6177] = {.lex_state = 203}, + [6178] = {.lex_state = 185}, + [6179] = {.lex_state = 315}, + [6180] = {.lex_state = 203}, + [6181] = {.lex_state = 203}, + [6182] = {.lex_state = 203}, + [6183] = {.lex_state = 203}, + [6184] = {.lex_state = 315}, + [6185] = {.lex_state = 315}, + [6186] = {.lex_state = 203}, + [6187] = {.lex_state = 185}, + [6188] = {.lex_state = 203}, + [6189] = {.lex_state = 315}, + [6190] = {.lex_state = 203}, + [6191] = {.lex_state = 203}, + [6192] = {.lex_state = 203}, + [6193] = {.lex_state = 203}, + [6194] = {.lex_state = 315}, + [6195] = {.lex_state = 203}, + [6196] = {.lex_state = 203}, + [6197] = {.lex_state = 203}, + [6198] = {.lex_state = 203}, + [6199] = {.lex_state = 175}, + [6200] = {.lex_state = 315}, + [6201] = {.lex_state = 240}, + [6202] = {.lex_state = 315}, + [6203] = {.lex_state = 203}, + [6204] = {.lex_state = 315}, + [6205] = {.lex_state = 104}, + [6206] = {.lex_state = 185}, + [6207] = {.lex_state = 104}, + [6208] = {.lex_state = 0}, + [6209] = {.lex_state = 0}, + [6210] = {.lex_state = 185}, + [6211] = {.lex_state = 0}, + [6212] = {.lex_state = 175}, + [6213] = {.lex_state = 315}, + [6214] = {.lex_state = 203}, [6215] = {.lex_state = 240}, - [6216] = {.lex_state = 97}, - [6217] = {.lex_state = 241}, - [6218] = {.lex_state = 241}, - [6219] = {.lex_state = 241}, - [6220] = {.lex_state = 241}, - [6221] = {.lex_state = 240}, - [6222] = {.lex_state = 241}, - [6223] = {.lex_state = 241}, - [6224] = {.lex_state = 240}, - [6225] = {.lex_state = 240}, - [6226] = {.lex_state = 240}, - [6227] = {.lex_state = 240}, - [6228] = {.lex_state = 225}, - [6229] = {.lex_state = 240}, - [6230] = {.lex_state = 240}, - [6231] = {.lex_state = 240}, - [6232] = {.lex_state = 240}, - [6233] = {.lex_state = 241}, - [6234] = {.lex_state = 241}, - [6235] = {.lex_state = 177}, - [6236] = {.lex_state = 219}, - [6237] = {.lex_state = 219}, - [6238] = {.lex_state = 177}, - [6239] = {.lex_state = 241}, - [6240] = {.lex_state = 177}, - [6241] = {.lex_state = 241}, - [6242] = {.lex_state = 193}, - [6243] = {.lex_state = 241}, - [6244] = {.lex_state = 219}, - [6245] = {.lex_state = 202}, - [6246] = {.lex_state = 202}, - [6247] = {.lex_state = 202}, - [6248] = {.lex_state = 177}, - [6249] = {.lex_state = 177}, - [6250] = {.lex_state = 177}, - [6251] = {.lex_state = 205}, - [6252] = {.lex_state = 177}, - [6253] = {.lex_state = 177}, - [6254] = {.lex_state = 202}, - [6255] = {.lex_state = 177}, - [6256] = {.lex_state = 241}, - [6257] = {.lex_state = 219}, - [6258] = {.lex_state = 177}, - [6259] = {.lex_state = 177}, - [6260] = {.lex_state = 177}, - [6261] = {.lex_state = 177}, - [6262] = {.lex_state = 177}, - [6263] = {.lex_state = 177}, - [6264] = {.lex_state = 177}, - [6265] = {.lex_state = 177}, - [6266] = {.lex_state = 219}, - [6267] = {.lex_state = 202}, - [6268] = {.lex_state = 240}, - [6269] = {.lex_state = 219}, - [6270] = {.lex_state = 241}, - [6271] = {.lex_state = 202}, - [6272] = {.lex_state = 177}, - [6273] = {.lex_state = 202}, - [6274] = {.lex_state = 202}, - [6275] = {.lex_state = 177}, - [6276] = {.lex_state = 202}, - [6277] = {.lex_state = 202}, - [6278] = {.lex_state = 202}, - [6279] = {.lex_state = 202}, - [6280] = {.lex_state = 202}, - [6281] = {.lex_state = 241}, - [6282] = {.lex_state = 219}, - [6283] = {.lex_state = 205}, - [6284] = {.lex_state = 177}, - [6285] = {.lex_state = 193}, - [6286] = {.lex_state = 202}, - [6287] = {.lex_state = 202}, + [6216] = {.lex_state = 0}, + [6217] = {.lex_state = 185}, + [6218] = {.lex_state = 203}, + [6219] = {.lex_state = 203}, + [6220] = {.lex_state = 185}, + [6221] = {.lex_state = 104}, + [6222] = {.lex_state = 175}, + [6223] = {.lex_state = 185}, + [6224] = {.lex_state = 203}, + [6225] = {.lex_state = 203}, + [6226] = {.lex_state = 315}, + [6227] = {.lex_state = 203}, + [6228] = {.lex_state = 203}, + [6229] = {.lex_state = 0}, + [6230] = {.lex_state = 175}, + [6231] = {.lex_state = 104}, + [6232] = {.lex_state = 203}, + [6233] = {.lex_state = 104}, + [6234] = {.lex_state = 315}, + [6235] = {.lex_state = 203}, + [6236] = {.lex_state = 104}, + [6237] = {.lex_state = 203}, + [6238] = {.lex_state = 203}, + [6239] = {.lex_state = 315}, + [6240] = {.lex_state = 175}, + [6241] = {.lex_state = 203}, + [6242] = {.lex_state = 203}, + [6243] = {.lex_state = 240}, + [6244] = {.lex_state = 185}, + [6245] = {.lex_state = 175}, + [6246] = {.lex_state = 104}, + [6247] = {.lex_state = 203}, + [6248] = {.lex_state = 175}, + [6249] = {.lex_state = 203}, + [6250] = {.lex_state = 203}, + [6251] = {.lex_state = 175}, + [6252] = {.lex_state = 0}, + [6253] = {.lex_state = 315}, + [6254] = {.lex_state = 315}, + [6255] = {.lex_state = 240}, + [6256] = {.lex_state = 203}, + [6257] = {.lex_state = 175}, + [6258] = {.lex_state = 175}, + [6259] = {.lex_state = 315}, + [6260] = {.lex_state = 104}, + [6261] = {.lex_state = 185}, + [6262] = {.lex_state = 104}, + [6263] = {.lex_state = 315}, + [6264] = {.lex_state = 0}, + [6265] = {.lex_state = 106}, + [6266] = {.lex_state = 104}, + [6267] = {.lex_state = 185}, + [6268] = {.lex_state = 203}, + [6269] = {.lex_state = 315}, + [6270] = {.lex_state = 106}, + [6271] = {.lex_state = 315}, + [6272] = {.lex_state = 315}, + [6273] = {.lex_state = 315}, + [6274] = {.lex_state = 315}, + [6275] = {.lex_state = 240}, + [6276] = {.lex_state = 104}, + [6277] = {.lex_state = 104}, + [6278] = {.lex_state = 315}, + [6279] = {.lex_state = 203}, + [6280] = {.lex_state = 240}, + [6281] = {.lex_state = 104}, + [6282] = {.lex_state = 104}, + [6283] = {.lex_state = 185}, + [6284] = {.lex_state = 185}, + [6285] = {.lex_state = 315}, + [6286] = {.lex_state = 203}, + [6287] = {.lex_state = 203}, [6288] = {.lex_state = 202}, - [6289] = {.lex_state = 177}, - [6290] = {.lex_state = 202}, - [6291] = {.lex_state = 202}, - [6292] = {.lex_state = 240}, - [6293] = {.lex_state = 202}, - [6294] = {.lex_state = 177}, + [6289] = {.lex_state = 185}, + [6290] = {.lex_state = 185}, + [6291] = {.lex_state = 203}, + [6292] = {.lex_state = 104}, + [6293] = {.lex_state = 315}, + [6294] = {.lex_state = 0}, [6295] = {.lex_state = 240}, - [6296] = {.lex_state = 177}, - [6297] = {.lex_state = 202}, - [6298] = {.lex_state = 202}, - [6299] = {.lex_state = 202}, - [6300] = {.lex_state = 202}, - [6301] = {.lex_state = 202}, - [6302] = {.lex_state = 202}, - [6303] = {.lex_state = 177}, - [6304] = {.lex_state = 219}, - [6305] = {.lex_state = 193}, - [6306] = {.lex_state = 240}, - [6307] = {.lex_state = 202}, - [6308] = {.lex_state = 177}, - [6309] = {.lex_state = 193}, - [6310] = {.lex_state = 202}, - [6311] = {.lex_state = 193}, - [6312] = {.lex_state = 219}, - [6313] = {.lex_state = 193}, - [6314] = {.lex_state = 241}, - [6315] = {.lex_state = 177}, - [6316] = {.lex_state = 202}, - [6317] = {.lex_state = 205}, - [6318] = {.lex_state = 202}, - [6319] = {.lex_state = 177}, - [6320] = {.lex_state = 177}, - [6321] = {.lex_state = 205}, - [6322] = {.lex_state = 202}, - [6323] = {.lex_state = 205}, - [6324] = {.lex_state = 219}, - [6325] = {.lex_state = 202}, - [6326] = {.lex_state = 241}, - [6327] = {.lex_state = 202}, - [6328] = {.lex_state = 202}, - [6329] = {.lex_state = 202}, - [6330] = {.lex_state = 202}, - [6331] = {.lex_state = 193}, - [6332] = {.lex_state = 240}, - [6333] = {.lex_state = 240}, - [6334] = {.lex_state = 241}, - [6335] = {.lex_state = 241}, - [6336] = {.lex_state = 202}, - [6337] = {.lex_state = 193}, - [6338] = {.lex_state = 193}, - [6339] = {.lex_state = 202}, - [6340] = {.lex_state = 202}, - [6341] = {.lex_state = 202}, - [6342] = {.lex_state = 205}, - [6343] = {.lex_state = 240}, - [6344] = {.lex_state = 177}, - [6345] = {.lex_state = 202}, - [6346] = {.lex_state = 240}, - [6347] = {.lex_state = 202}, - [6348] = {.lex_state = 202}, - [6349] = {.lex_state = 240}, - [6350] = {.lex_state = 202}, - [6351] = {.lex_state = 193}, - [6352] = {.lex_state = 202}, - [6353] = {.lex_state = 202}, - [6354] = {.lex_state = 177}, - [6355] = {.lex_state = 240}, - [6356] = {.lex_state = 202}, - [6357] = {.lex_state = 202}, - [6358] = {.lex_state = 240}, - [6359] = {.lex_state = 205}, - [6360] = {.lex_state = 240}, - [6361] = {.lex_state = 241}, - [6362] = {.lex_state = 202}, - [6363] = {.lex_state = 219}, - [6364] = {.lex_state = 202}, - [6365] = {.lex_state = 202}, - [6366] = {.lex_state = 202}, - [6367] = {.lex_state = 202}, - [6368] = {.lex_state = 202}, - [6369] = {.lex_state = 202}, - [6370] = {.lex_state = 202}, - [6371] = {.lex_state = 219}, - [6372] = {.lex_state = 202}, + [6296] = {.lex_state = 0}, + [6297] = {.lex_state = 203}, + [6298] = {.lex_state = 175}, + [6299] = {.lex_state = 315}, + [6300] = {.lex_state = 315}, + [6301] = {.lex_state = 315}, + [6302] = {.lex_state = 104}, + [6303] = {.lex_state = 315}, + [6304] = {.lex_state = 0}, + [6305] = {.lex_state = 315}, + [6306] = {.lex_state = 203}, + [6307] = {.lex_state = 106}, + [6308] = {.lex_state = 175}, + [6309] = {.lex_state = 203}, + [6310] = {.lex_state = 185}, + [6311] = {.lex_state = 104}, + [6312] = {.lex_state = 0}, + [6313] = {.lex_state = 203}, + [6314] = {.lex_state = 104}, + [6315] = {.lex_state = 185}, + [6316] = {.lex_state = 185}, + [6317] = {.lex_state = 185}, + [6318] = {.lex_state = 203}, + [6319] = {.lex_state = 175}, + [6320] = {.lex_state = 185}, + [6321] = {.lex_state = 203}, + [6322] = {.lex_state = 104}, + [6323] = {.lex_state = 185}, + [6324] = {.lex_state = 104}, + [6325] = {.lex_state = 203}, + [6326] = {.lex_state = 203}, + [6327] = {.lex_state = 104}, + [6328] = {.lex_state = 203}, + [6329] = {.lex_state = 185}, + [6330] = {.lex_state = 185}, + [6331] = {.lex_state = 106}, + [6332] = {.lex_state = 175}, + [6333] = {.lex_state = 185}, + [6334] = {.lex_state = 315}, + [6335] = {.lex_state = 104}, + [6336] = {.lex_state = 315}, + [6337] = {.lex_state = 0}, + [6338] = {.lex_state = 104}, + [6339] = {.lex_state = 315}, + [6340] = {.lex_state = 203}, + [6341] = {.lex_state = 0}, + [6342] = {.lex_state = 315}, + [6343] = {.lex_state = 0}, + [6344] = {.lex_state = 104}, + [6345] = {.lex_state = 104}, + [6346] = {.lex_state = 104}, + [6347] = {.lex_state = 185}, + [6348] = {.lex_state = 185}, + [6349] = {.lex_state = 315}, + [6350] = {.lex_state = 203}, + [6351] = {.lex_state = 185}, + [6352] = {.lex_state = 104}, + [6353] = {.lex_state = 203}, + [6354] = {.lex_state = 240}, + [6355] = {.lex_state = 104}, + [6356] = {.lex_state = 175}, + [6357] = {.lex_state = 104}, + [6358] = {.lex_state = 175}, + [6359] = {.lex_state = 240}, + [6360] = {.lex_state = 175}, + [6361] = {.lex_state = 315}, + [6362] = {.lex_state = 315}, + [6363] = {.lex_state = 203}, + [6364] = {.lex_state = 203}, + [6365] = {.lex_state = 0}, + [6366] = {.lex_state = 175}, + [6367] = {.lex_state = 104}, + [6368] = {.lex_state = 315}, + [6369] = {.lex_state = 104}, + [6370] = {.lex_state = 315}, + [6371] = {.lex_state = 106}, + [6372] = {.lex_state = 240}, [6373] = {.lex_state = 240}, - [6374] = {.lex_state = 202}, - [6375] = {.lex_state = 193}, - [6376] = {.lex_state = 177}, - [6377] = {.lex_state = 241}, - [6378] = {.lex_state = 240}, - [6379] = {.lex_state = 177}, - [6380] = {.lex_state = 177}, - [6381] = {.lex_state = 193}, - [6382] = {.lex_state = 240}, - [6383] = {.lex_state = 193}, - [6384] = {.lex_state = 202}, - [6385] = {.lex_state = 202}, - [6386] = {.lex_state = 205}, - [6387] = {.lex_state = 219}, - [6388] = {.lex_state = 219}, - [6389] = {.lex_state = 202}, - [6390] = {.lex_state = 225}, - [6391] = {.lex_state = 193}, - [6392] = {.lex_state = 202}, - [6393] = {.lex_state = 202}, - [6394] = {.lex_state = 202}, - [6395] = {.lex_state = 202}, - [6396] = {.lex_state = 202}, - [6397] = {.lex_state = 177}, - [6398] = {.lex_state = 202}, - [6399] = {.lex_state = 240}, - [6400] = {.lex_state = 202}, - [6401] = {.lex_state = 202}, - [6402] = {.lex_state = 240}, - [6403] = {.lex_state = 202}, - [6404] = {.lex_state = 241}, - [6405] = {.lex_state = 202}, - [6406] = {.lex_state = 193}, - [6407] = {.lex_state = 177}, - [6408] = {.lex_state = 219}, - [6409] = {.lex_state = 202}, - [6410] = {.lex_state = 202}, - [6411] = {.lex_state = 202}, - [6412] = {.lex_state = 219}, - [6413] = {.lex_state = 240}, - [6414] = {.lex_state = 193}, - [6415] = {.lex_state = 202}, - [6416] = {.lex_state = 202}, - [6417] = {.lex_state = 202}, - [6418] = {.lex_state = 202}, - [6419] = {.lex_state = 219}, - [6420] = {.lex_state = 202}, - [6421] = {.lex_state = 219}, - [6422] = {.lex_state = 202}, - [6423] = {.lex_state = 202}, - [6424] = {.lex_state = 202}, - [6425] = {.lex_state = 193}, - [6426] = {.lex_state = 202}, - [6427] = {.lex_state = 202}, - [6428] = {.lex_state = 240}, - [6429] = {.lex_state = 202}, - [6430] = {.lex_state = 241}, - [6431] = {.lex_state = 202}, - [6432] = {.lex_state = 177}, - [6433] = {.lex_state = 240}, - [6434] = {.lex_state = 177}, - [6435] = {.lex_state = 177}, + [6374] = {.lex_state = 203}, + [6375] = {.lex_state = 104}, + [6376] = {.lex_state = 185}, + [6377] = {.lex_state = 106}, + [6378] = {.lex_state = 175}, + [6379] = {.lex_state = 203}, + [6380] = {.lex_state = 315}, + [6381] = {.lex_state = 104}, + [6382] = {.lex_state = 106}, + [6383] = {.lex_state = 0}, + [6384] = {.lex_state = 203}, + [6385] = {.lex_state = 175}, + [6386] = {.lex_state = 185}, + [6387] = {.lex_state = 104}, + [6388] = {.lex_state = 203}, + [6389] = {.lex_state = 106}, + [6390] = {.lex_state = 185}, + [6391] = {.lex_state = 203}, + [6392] = {.lex_state = 185}, + [6393] = {.lex_state = 203}, + [6394] = {.lex_state = 104}, + [6395] = {.lex_state = 203}, + [6396] = {.lex_state = 203}, + [6397] = {.lex_state = 203}, + [6398] = {.lex_state = 315}, + [6399] = {.lex_state = 185}, + [6400] = {.lex_state = 185}, + [6401] = {.lex_state = 185}, + [6402] = {.lex_state = 315}, + [6403] = {.lex_state = 185}, + [6404] = {.lex_state = 185}, + [6405] = {.lex_state = 203}, + [6406] = {.lex_state = 175}, + [6407] = {.lex_state = 203}, + [6408] = {.lex_state = 203}, + [6409] = {.lex_state = 315}, + [6410] = {.lex_state = 0}, + [6411] = {.lex_state = 185}, + [6412] = {.lex_state = 315}, + [6413] = {.lex_state = 175}, + [6414] = {.lex_state = 203}, + [6415] = {.lex_state = 0}, + [6416] = {.lex_state = 203}, + [6417] = {.lex_state = 315}, + [6418] = {.lex_state = 175}, + [6419] = {.lex_state = 104}, + [6420] = {.lex_state = 175}, + [6421] = {.lex_state = 104}, + [6422] = {.lex_state = 104}, + [6423] = {.lex_state = 106}, + [6424] = {.lex_state = 315}, + [6425] = {.lex_state = 203}, + [6426] = {.lex_state = 315}, + [6427] = {.lex_state = 315}, + [6428] = {.lex_state = 203}, + [6429] = {.lex_state = 203}, + [6430] = {.lex_state = 315}, + [6431] = {.lex_state = 203}, + [6432] = {.lex_state = 175}, + [6433] = {.lex_state = 203}, + [6434] = {.lex_state = 203}, + [6435] = {.lex_state = 175}, [6436] = {.lex_state = 240}, - [6437] = {.lex_state = 240}, - [6438] = {.lex_state = 193}, - [6439] = {.lex_state = 202}, - [6440] = {.lex_state = 202}, - [6441] = {.lex_state = 241}, - [6442] = {.lex_state = 219}, - [6443] = {.lex_state = 202}, - [6444] = {.lex_state = 193}, - [6445] = {.lex_state = 202}, - [6446] = {.lex_state = 202}, - [6447] = {.lex_state = 193}, - [6448] = {.lex_state = 240}, - [6449] = {.lex_state = 202}, - [6450] = {.lex_state = 240}, - [6451] = {.lex_state = 202}, - [6452] = {.lex_state = 242}, - [6453] = {.lex_state = 202}, - [6454] = {.lex_state = 241}, - [6455] = {.lex_state = 202}, - [6456] = {.lex_state = 202}, - [6457] = {.lex_state = 202}, - [6458] = {.lex_state = 240}, - [6459] = {.lex_state = 202}, - [6460] = {.lex_state = 241}, - [6461] = {.lex_state = 202}, - [6462] = {.lex_state = 202}, - [6463] = {.lex_state = 202}, - [6464] = {.lex_state = 240}, - [6465] = {.lex_state = 202}, - [6466] = {.lex_state = 202}, - [6467] = {.lex_state = 193}, - [6468] = {.lex_state = 202}, - [6469] = {.lex_state = 202}, - [6470] = {.lex_state = 177}, - [6471] = {.lex_state = 202}, - [6472] = {.lex_state = 240}, - [6473] = {.lex_state = 241}, - [6474] = {.lex_state = 241}, - [6475] = {.lex_state = 241}, - [6476] = {.lex_state = 241}, - [6477] = {.lex_state = 219}, - [6478] = {.lex_state = 241}, - [6479] = {.lex_state = 193}, - [6480] = {.lex_state = 202}, - [6481] = {.lex_state = 241}, - [6482] = {.lex_state = 241}, - [6483] = {.lex_state = 241}, - [6484] = {.lex_state = 240}, - [6485] = {.lex_state = 97}, - [6486] = {.lex_state = 219}, - [6487] = {.lex_state = 241}, - [6488] = {.lex_state = 219}, - [6489] = {.lex_state = 241}, - [6490] = {.lex_state = 241}, - [6491] = {.lex_state = 240}, - [6492] = {.lex_state = 97}, - [6493] = {.lex_state = 241}, - [6494] = {.lex_state = 241}, - [6495] = {.lex_state = 97}, - [6496] = {.lex_state = 241}, - [6497] = {.lex_state = 241}, - [6498] = {.lex_state = 241}, - [6499] = {.lex_state = 240}, - [6500] = {.lex_state = 97}, - [6501] = {.lex_state = 241}, - [6502] = {.lex_state = 241}, - [6503] = {.lex_state = 241}, - [6504] = {.lex_state = 241}, - [6505] = {.lex_state = 241}, - [6506] = {.lex_state = 97}, - [6507] = {.lex_state = 241}, - [6508] = {.lex_state = 241}, - [6509] = {.lex_state = 202}, - [6510] = {.lex_state = 97}, - [6511] = {.lex_state = 241}, - [6512] = {.lex_state = 241}, - [6513] = {.lex_state = 241}, - [6514] = {.lex_state = 241}, - [6515] = {.lex_state = 241}, - [6516] = {.lex_state = 97}, - [6517] = {.lex_state = 97}, - [6518] = {.lex_state = 219}, - [6519] = {.lex_state = 241}, - [6520] = {.lex_state = 97}, - [6521] = {.lex_state = 241}, - [6522] = {.lex_state = 97}, - [6523] = {.lex_state = 240}, - [6524] = {.lex_state = 97}, - [6525] = {.lex_state = 219}, - [6526] = {.lex_state = 202}, - [6527] = {.lex_state = 241}, - [6528] = {.lex_state = 241}, - [6529] = {.lex_state = 241}, - [6530] = {.lex_state = 222}, - [6531] = {.lex_state = 241}, - [6532] = {.lex_state = 240}, - [6533] = {.lex_state = 97}, - [6534] = {.lex_state = 97}, - [6535] = {.lex_state = 241}, - [6536] = {.lex_state = 202}, - [6537] = {.lex_state = 240}, - [6538] = {.lex_state = 97}, - [6539] = {.lex_state = 97}, - [6540] = {.lex_state = 97}, - [6541] = {.lex_state = 97}, - [6542] = {.lex_state = 97}, - [6543] = {.lex_state = 97}, - [6544] = {.lex_state = 97}, - [6545] = {.lex_state = 241}, - [6546] = {.lex_state = 241}, - [6547] = {.lex_state = 219}, - [6548] = {.lex_state = 241}, - [6549] = {.lex_state = 97}, - [6550] = {.lex_state = 241}, - [6551] = {.lex_state = 97}, - [6552] = {.lex_state = 97}, - [6553] = {.lex_state = 241}, - [6554] = {.lex_state = 240}, - [6555] = {.lex_state = 240}, - [6556] = {.lex_state = 241}, - [6557] = {.lex_state = 97}, - [6558] = {.lex_state = 97}, - [6559] = {.lex_state = 241}, - [6560] = {.lex_state = 240}, - [6561] = {.lex_state = 193}, - [6562] = {.lex_state = 97}, - [6563] = {.lex_state = 97}, - [6564] = {.lex_state = 241}, - [6565] = {.lex_state = 241}, - [6566] = {.lex_state = 240}, - [6567] = {.lex_state = 97}, - [6568] = {.lex_state = 97}, - [6569] = {.lex_state = 97}, - [6570] = {.lex_state = 240}, - [6571] = {.lex_state = 241}, - [6572] = {.lex_state = 240}, - [6573] = {.lex_state = 241}, - [6574] = {.lex_state = 241}, - [6575] = {.lex_state = 240}, - [6576] = {.lex_state = 241}, - [6577] = {.lex_state = 241}, - [6578] = {.lex_state = 241}, - [6579] = {.lex_state = 240}, - [6580] = {.lex_state = 240}, - [6581] = {.lex_state = 240}, - [6582] = {.lex_state = 241}, - [6583] = {.lex_state = 240}, - [6584] = {.lex_state = 241}, - [6585] = {.lex_state = 241}, - [6586] = {.lex_state = 240}, - [6587] = {.lex_state = 240}, - [6588] = {.lex_state = 240}, - [6589] = {.lex_state = 241}, - [6590] = {.lex_state = 240}, - [6591] = {.lex_state = 241}, - [6592] = {.lex_state = 241}, - [6593] = {.lex_state = 241}, - [6594] = {.lex_state = 241}, - [6595] = {.lex_state = 240}, - [6596] = {.lex_state = 240}, - [6597] = {.lex_state = 241}, - [6598] = {.lex_state = 241}, - [6599] = {.lex_state = 241}, - [6600] = {.lex_state = 240}, - [6601] = {.lex_state = 241}, - [6602] = {.lex_state = 241}, - [6603] = {.lex_state = 240}, - [6604] = {.lex_state = 241}, - [6605] = {.lex_state = 241}, - [6606] = {.lex_state = 241}, - [6607] = {.lex_state = 241}, - [6608] = {.lex_state = 240}, - [6609] = {.lex_state = 241}, - [6610] = {.lex_state = 241}, - [6611] = {.lex_state = 205}, - [6612] = {.lex_state = 225}, - [6613] = {.lex_state = 202}, - [6614] = {.lex_state = 241}, - [6615] = {.lex_state = 241}, - [6616] = {.lex_state = 240}, - [6617] = {.lex_state = 240}, - [6618] = {.lex_state = 202}, - [6619] = {.lex_state = 175}, - [6620] = {.lex_state = 241}, - [6621] = {.lex_state = 175}, - [6622] = {.lex_state = 241}, - [6623] = {.lex_state = 241}, - [6624] = {.lex_state = 242}, - [6625] = {.lex_state = 225}, - [6626] = {.lex_state = 202}, - [6627] = {.lex_state = 202}, - [6628] = {.lex_state = 205}, - [6629] = {.lex_state = 240}, - [6630] = {.lex_state = 242}, - [6631] = {.lex_state = 240}, - [6632] = {.lex_state = 240}, - [6633] = {.lex_state = 225}, - [6634] = {.lex_state = 225}, - [6635] = {.lex_state = 175}, - [6636] = {.lex_state = 241}, - [6637] = {.lex_state = 175}, - [6638] = {.lex_state = 205}, - [6639] = {.lex_state = 202}, - [6640] = {.lex_state = 202}, - [6641] = {.lex_state = 175}, - [6642] = {.lex_state = 175}, - [6643] = {.lex_state = 241}, - [6644] = {.lex_state = 202}, - [6645] = {.lex_state = 241}, - [6646] = {.lex_state = 240}, - [6647] = {.lex_state = 175}, - [6648] = {.lex_state = 205}, - [6649] = {.lex_state = 202}, - [6650] = {.lex_state = 219}, - [6651] = {.lex_state = 205}, - [6652] = {.lex_state = 205}, - [6653] = {.lex_state = 205}, - [6654] = {.lex_state = 241}, - [6655] = {.lex_state = 205}, - [6656] = {.lex_state = 205}, - [6657] = {.lex_state = 205}, - [6658] = {.lex_state = 241}, - [6659] = {.lex_state = 219}, - [6660] = {.lex_state = 240}, - [6661] = {.lex_state = 242}, - [6662] = {.lex_state = 225}, - [6663] = {.lex_state = 205}, - [6664] = {.lex_state = 240}, - [6665] = {.lex_state = 205}, - [6666] = {.lex_state = 205}, - [6667] = {.lex_state = 202}, - [6668] = {.lex_state = 241}, - [6669] = {.lex_state = 240}, - [6670] = {.lex_state = 202}, - [6671] = {.lex_state = 240}, - [6672] = {.lex_state = 241}, - [6673] = {.lex_state = 219}, - [6674] = {.lex_state = 205}, - [6675] = {.lex_state = 240}, - [6676] = {.lex_state = 241}, - [6677] = {.lex_state = 202}, - [6678] = {.lex_state = 241}, - [6679] = {.lex_state = 205}, - [6680] = {.lex_state = 175}, - [6681] = {.lex_state = 205}, - [6682] = {.lex_state = 202}, - [6683] = {.lex_state = 205}, - [6684] = {.lex_state = 175}, - [6685] = {.lex_state = 225}, - [6686] = {.lex_state = 205}, - [6687] = {.lex_state = 225}, - [6688] = {.lex_state = 205}, - [6689] = {.lex_state = 241}, - [6690] = {.lex_state = 202}, - [6691] = {.lex_state = 225}, - [6692] = {.lex_state = 225}, - [6693] = {.lex_state = 240}, - [6694] = {.lex_state = 240}, - [6695] = {.lex_state = 219}, - [6696] = {.lex_state = 225}, - [6697] = {.lex_state = 240}, - [6698] = {.lex_state = 241}, - [6699] = {.lex_state = 175}, - [6700] = {.lex_state = 241}, - [6701] = {.lex_state = 241}, - [6702] = {.lex_state = 241}, - [6703] = {.lex_state = 202}, - [6704] = {.lex_state = 241}, - [6705] = {.lex_state = 241}, - [6706] = {.lex_state = 205}, - [6707] = {.lex_state = 241}, - [6708] = {.lex_state = 225}, - [6709] = {.lex_state = 241}, - [6710] = {.lex_state = 244}, - [6711] = {.lex_state = 240}, - [6712] = {.lex_state = 244}, - [6713] = {.lex_state = 244}, - [6714] = {.lex_state = 244}, - [6715] = {.lex_state = 244}, - [6716] = {.lex_state = 244}, - [6717] = {.lex_state = 244}, - [6718] = {.lex_state = 244}, - [6719] = {.lex_state = 244}, - [6720] = {.lex_state = 238}, - [6721] = {.lex_state = 244}, - [6722] = {.lex_state = 241}, - [6723] = {.lex_state = 233}, - [6724] = {.lex_state = 233}, - [6725] = {.lex_state = 233}, - [6726] = {.lex_state = 240}, - [6727] = {.lex_state = 246}, - [6728] = {.lex_state = 241}, - [6729] = {.lex_state = 240}, - [6730] = {.lex_state = 238}, - [6731] = {.lex_state = 240}, - [6732] = {.lex_state = 175}, - [6733] = {.lex_state = 238}, - [6734] = {.lex_state = 175}, - [6735] = {.lex_state = 238}, - [6736] = {.lex_state = 240}, - [6737] = {.lex_state = 240}, - [6738] = {.lex_state = 240}, - [6739] = {.lex_state = 240}, - [6740] = {.lex_state = 240}, - [6741] = {.lex_state = 238}, - [6742] = {.lex_state = 240}, - [6743] = {.lex_state = 240}, - [6744] = {.lex_state = 240}, - [6745] = {.lex_state = 185}, - [6746] = {.lex_state = 241}, - [6747] = {.lex_state = 175}, - [6748] = {.lex_state = 202}, + [6437] = {.lex_state = 185}, + [6438] = {.lex_state = 203}, + [6439] = {.lex_state = 203}, + [6440] = {.lex_state = 104}, + [6441] = {.lex_state = 315}, + [6442] = {.lex_state = 203}, + [6443] = {.lex_state = 203}, + [6444] = {.lex_state = 315}, + [6445] = {.lex_state = 315}, + [6446] = {.lex_state = 203}, + [6447] = {.lex_state = 315}, + [6448] = {.lex_state = 315}, + [6449] = {.lex_state = 203}, + [6450] = {.lex_state = 175}, + [6451] = {.lex_state = 315}, + [6452] = {.lex_state = 315}, + [6453] = {.lex_state = 0}, + [6454] = {.lex_state = 175}, + [6455] = {.lex_state = 175}, + [6456] = {.lex_state = 185}, + [6457] = {.lex_state = 315}, + [6458] = {.lex_state = 203}, + [6459] = {.lex_state = 203}, + [6460] = {.lex_state = 315}, + [6461] = {.lex_state = 203}, + [6462] = {.lex_state = 315}, + [6463] = {.lex_state = 185}, + [6464] = {.lex_state = 185}, + [6465] = {.lex_state = 185}, + [6466] = {.lex_state = 0}, + [6467] = {.lex_state = 315}, + [6468] = {.lex_state = 175}, + [6469] = {.lex_state = 185}, + [6470] = {.lex_state = 175}, + [6471] = {.lex_state = 185}, + [6472] = {.lex_state = 0}, + [6473] = {.lex_state = 108}, + [6474] = {.lex_state = 315}, + [6475] = {.lex_state = 315}, + [6476] = {.lex_state = 0}, + [6477] = {.lex_state = 0}, + [6478] = {.lex_state = 203}, + [6479] = {.lex_state = 203}, + [6480] = {.lex_state = 0}, + [6481] = {.lex_state = 0}, + [6482] = {.lex_state = 0}, + [6483] = {.lex_state = 203}, + [6484] = {.lex_state = 203}, + [6485] = {.lex_state = 315}, + [6486] = {.lex_state = 0}, + [6487] = {.lex_state = 0}, + [6488] = {.lex_state = 203}, + [6489] = {.lex_state = 0}, + [6490] = {.lex_state = 0}, + [6491] = {.lex_state = 203}, + [6492] = {.lex_state = 185}, + [6493] = {.lex_state = 0}, + [6494] = {.lex_state = 0}, + [6495] = {.lex_state = 203}, + [6496] = {.lex_state = 0}, + [6497] = {.lex_state = 0}, + [6498] = {.lex_state = 203}, + [6499] = {.lex_state = 0}, + [6500] = {.lex_state = 175}, + [6501] = {.lex_state = 203}, + [6502] = {.lex_state = 203}, + [6503] = {.lex_state = 0}, + [6504] = {.lex_state = 0}, + [6505] = {.lex_state = 0}, + [6506] = {.lex_state = 0}, + [6507] = {.lex_state = 203}, + [6508] = {.lex_state = 185}, + [6509] = {.lex_state = 185}, + [6510] = {.lex_state = 0}, + [6511] = {.lex_state = 203}, + [6512] = {.lex_state = 0}, + [6513] = {.lex_state = 315}, + [6514] = {.lex_state = 185}, + [6515] = {.lex_state = 203}, + [6516] = {.lex_state = 203}, + [6517] = {.lex_state = 185}, + [6518] = {.lex_state = 315}, + [6519] = {.lex_state = 0}, + [6520] = {.lex_state = 164}, + [6521] = {.lex_state = 0}, + [6522] = {.lex_state = 0}, + [6523] = {.lex_state = 203}, + [6524] = {.lex_state = 0}, + [6525] = {.lex_state = 203}, + [6526] = {.lex_state = 203}, + [6527] = {.lex_state = 185}, + [6528] = {.lex_state = 185}, + [6529] = {.lex_state = 203}, + [6530] = {.lex_state = 0}, + [6531] = {.lex_state = 0}, + [6532] = {.lex_state = 185}, + [6533] = {.lex_state = 185}, + [6534] = {.lex_state = 0}, + [6535] = {.lex_state = 185}, + [6536] = {.lex_state = 185}, + [6537] = {.lex_state = 203}, + [6538] = {.lex_state = 0}, + [6539] = {.lex_state = 0}, + [6540] = {.lex_state = 185}, + [6541] = {.lex_state = 185}, + [6542] = {.lex_state = 185}, + [6543] = {.lex_state = 0}, + [6544] = {.lex_state = 203}, + [6545] = {.lex_state = 185}, + [6546] = {.lex_state = 0}, + [6547] = {.lex_state = 203}, + [6548] = {.lex_state = 0}, + [6549] = {.lex_state = 0}, + [6550] = {.lex_state = 203}, + [6551] = {.lex_state = 185}, + [6552] = {.lex_state = 0}, + [6553] = {.lex_state = 0}, + [6554] = {.lex_state = 0}, + [6555] = {.lex_state = 203}, + [6556] = {.lex_state = 185}, + [6557] = {.lex_state = 0}, + [6558] = {.lex_state = 185}, + [6559] = {.lex_state = 203}, + [6560] = {.lex_state = 185}, + [6561] = {.lex_state = 185}, + [6562] = {.lex_state = 0}, + [6563] = {.lex_state = 0}, + [6564] = {.lex_state = 203}, + [6565] = {.lex_state = 0}, + [6566] = {.lex_state = 203}, + [6567] = {.lex_state = 0}, + [6568] = {.lex_state = 185}, + [6569] = {.lex_state = 203}, + [6570] = {.lex_state = 185}, + [6571] = {.lex_state = 185}, + [6572] = {.lex_state = 0}, + [6573] = {.lex_state = 185}, + [6574] = {.lex_state = 0}, + [6575] = {.lex_state = 0}, + [6576] = {.lex_state = 185}, + [6577] = {.lex_state = 203}, + [6578] = {.lex_state = 185}, + [6579] = {.lex_state = 0}, + [6580] = {.lex_state = 0}, + [6581] = {.lex_state = 0}, + [6582] = {.lex_state = 203}, + [6583] = {.lex_state = 0}, + [6584] = {.lex_state = 0}, + [6585] = {.lex_state = 185}, + [6586] = {.lex_state = 185}, + [6587] = {.lex_state = 0}, + [6588] = {.lex_state = 185}, + [6589] = {.lex_state = 0}, + [6590] = {.lex_state = 0}, + [6591] = {.lex_state = 0}, + [6592] = {.lex_state = 0}, + [6593] = {.lex_state = 0}, + [6594] = {.lex_state = 203}, + [6595] = {.lex_state = 0}, + [6596] = {.lex_state = 185}, + [6597] = {.lex_state = 0}, + [6598] = {.lex_state = 0}, + [6599] = {.lex_state = 108}, + [6600] = {.lex_state = 0}, + [6601] = {.lex_state = 0}, + [6602] = {.lex_state = 0}, + [6603] = {.lex_state = 203}, + [6604] = {.lex_state = 0}, + [6605] = {.lex_state = 185}, + [6606] = {.lex_state = 185}, + [6607] = {.lex_state = 203}, + [6608] = {.lex_state = 0}, + [6609] = {.lex_state = 0}, + [6610] = {.lex_state = 0}, + [6611] = {.lex_state = 315}, + [6612] = {.lex_state = 0}, + [6613] = {.lex_state = 203}, + [6614] = {.lex_state = 0}, + [6615] = {.lex_state = 0}, + [6616] = {.lex_state = 203}, + [6617] = {.lex_state = 315}, + [6618] = {.lex_state = 0}, + [6619] = {.lex_state = 0}, + [6620] = {.lex_state = 203}, + [6621] = {.lex_state = 203}, + [6622] = {.lex_state = 0}, + [6623] = {.lex_state = 0}, + [6624] = {.lex_state = 203}, + [6625] = {.lex_state = 315}, + [6626] = {.lex_state = 203}, + [6627] = {.lex_state = 0}, + [6628] = {.lex_state = 0}, + [6629] = {.lex_state = 203}, + [6630] = {.lex_state = 0}, + [6631] = {.lex_state = 203}, + [6632] = {.lex_state = 315}, + [6633] = {.lex_state = 0}, + [6634] = {.lex_state = 0}, + [6635] = {.lex_state = 0}, + [6636] = {.lex_state = 315}, + [6637] = {.lex_state = 0}, + [6638] = {.lex_state = 0}, + [6639] = {.lex_state = 0}, + [6640] = {.lex_state = 0}, + [6641] = {.lex_state = 0}, + [6642] = {.lex_state = 0}, + [6643] = {.lex_state = 0}, + [6644] = {.lex_state = 0}, + [6645] = {.lex_state = 315}, + [6646] = {.lex_state = 203}, + [6647] = {.lex_state = 0}, + [6648] = {.lex_state = 185}, + [6649] = {.lex_state = 0}, + [6650] = {.lex_state = 203}, + [6651] = {.lex_state = 0}, + [6652] = {.lex_state = 0}, + [6653] = {.lex_state = 185}, + [6654] = {.lex_state = 185}, + [6655] = {.lex_state = 185}, + [6656] = {.lex_state = 0}, + [6657] = {.lex_state = 0}, + [6658] = {.lex_state = 185}, + [6659] = {.lex_state = 185}, + [6660] = {.lex_state = 185}, + [6661] = {.lex_state = 0}, + [6662] = {.lex_state = 0}, + [6663] = {.lex_state = 0}, + [6664] = {.lex_state = 0}, + [6665] = {.lex_state = 203}, + [6666] = {.lex_state = 0}, + [6667] = {.lex_state = 0}, + [6668] = {.lex_state = 185}, + [6669] = {.lex_state = 185}, + [6670] = {.lex_state = 203}, + [6671] = {.lex_state = 0}, + [6672] = {.lex_state = 0}, + [6673] = {.lex_state = 203}, + [6674] = {.lex_state = 203}, + [6675] = {.lex_state = 0}, + [6676] = {.lex_state = 203}, + [6677] = {.lex_state = 203}, + [6678] = {.lex_state = 0}, + [6679] = {.lex_state = 0}, + [6680] = {.lex_state = 0}, + [6681] = {.lex_state = 203}, + [6682] = {.lex_state = 0}, + [6683] = {.lex_state = 0}, + [6684] = {.lex_state = 203}, + [6685] = {.lex_state = 0}, + [6686] = {.lex_state = 0}, + [6687] = {.lex_state = 0}, + [6688] = {.lex_state = 0}, + [6689] = {.lex_state = 185}, + [6690] = {.lex_state = 0}, + [6691] = {.lex_state = 185}, + [6692] = {.lex_state = 0}, + [6693] = {.lex_state = 0}, + [6694] = {.lex_state = 0}, + [6695] = {.lex_state = 0}, + [6696] = {.lex_state = 0}, + [6697] = {.lex_state = 0}, + [6698] = {.lex_state = 0}, + [6699] = {.lex_state = 0}, + [6700] = {.lex_state = 315}, + [6701] = {.lex_state = 185}, + [6702] = {.lex_state = 185}, + [6703] = {.lex_state = 0}, + [6704] = {.lex_state = 203}, + [6705] = {.lex_state = 0}, + [6706] = {.lex_state = 0}, + [6707] = {.lex_state = 0}, + [6708] = {.lex_state = 0}, + [6709] = {.lex_state = 0}, + [6710] = {.lex_state = 0}, + [6711] = {.lex_state = 203}, + [6712] = {.lex_state = 203}, + [6713] = {.lex_state = 203}, + [6714] = {.lex_state = 0}, + [6715] = {.lex_state = 203}, + [6716] = {.lex_state = 0}, + [6717] = {.lex_state = 203}, + [6718] = {.lex_state = 0}, + [6719] = {.lex_state = 0}, + [6720] = {.lex_state = 0}, + [6721] = {.lex_state = 0}, + [6722] = {.lex_state = 203}, + [6723] = {.lex_state = 0}, + [6724] = {.lex_state = 0}, + [6725] = {.lex_state = 0}, + [6726] = {.lex_state = 185}, + [6727] = {.lex_state = 315}, + [6728] = {.lex_state = 0}, + [6729] = {.lex_state = 203}, + [6730] = {.lex_state = 0}, + [6731] = {.lex_state = 0}, + [6732] = {.lex_state = 0}, + [6733] = {.lex_state = 0}, + [6734] = {.lex_state = 0}, + [6735] = {.lex_state = 108}, + [6736] = {.lex_state = 203}, + [6737] = {.lex_state = 185}, + [6738] = {.lex_state = 185}, + [6739] = {.lex_state = 0}, + [6740] = {.lex_state = 185}, + [6741] = {.lex_state = 0}, + [6742] = {.lex_state = 0}, + [6743] = {.lex_state = 0}, + [6744] = {.lex_state = 0}, + [6745] = {.lex_state = 203}, + [6746] = {.lex_state = 203}, + [6747] = {.lex_state = 315}, + [6748] = {.lex_state = 185}, [6749] = {.lex_state = 185}, - [6750] = {.lex_state = 202}, - [6751] = {.lex_state = 175}, - [6752] = {.lex_state = 175}, - [6753] = {.lex_state = 202}, + [6750] = {.lex_state = 315}, + [6751] = {.lex_state = 0}, + [6752] = {.lex_state = 203}, + [6753] = {.lex_state = 108}, [6754] = {.lex_state = 185}, - [6755] = {.lex_state = 202}, - [6756] = {.lex_state = 185}, - [6757] = {.lex_state = 202}, - [6758] = {.lex_state = 185}, - [6759] = {.lex_state = 175}, - [6760] = {.lex_state = 241}, - [6761] = {.lex_state = 185}, - [6762] = {.lex_state = 202}, - [6763] = {.lex_state = 185}, - [6764] = {.lex_state = 175}, - [6765] = {.lex_state = 202}, - [6766] = {.lex_state = 185}, - [6767] = {.lex_state = 240}, - [6768] = {.lex_state = 240}, - [6769] = {.lex_state = 175}, - [6770] = {.lex_state = 240}, - [6771] = {.lex_state = 202}, - [6772] = {.lex_state = 241}, - [6773] = {.lex_state = 202}, - [6774] = {.lex_state = 241}, - [6775] = {.lex_state = 241}, - [6776] = {.lex_state = 241}, - [6777] = {.lex_state = 241}, - [6778] = {.lex_state = 241}, - [6779] = {.lex_state = 202}, - [6780] = {.lex_state = 241}, - [6781] = {.lex_state = 241}, - [6782] = {.lex_state = 185}, - [6783] = {.lex_state = 202}, - [6784] = {.lex_state = 202}, - [6785] = {.lex_state = 240}, - [6786] = {.lex_state = 175}, - [6787] = {.lex_state = 175}, - [6788] = {.lex_state = 241}, - [6789] = {.lex_state = 241}, - [6790] = {.lex_state = 241}, - [6791] = {.lex_state = 241}, - [6792] = {.lex_state = 185}, - [6793] = {.lex_state = 241}, - [6794] = {.lex_state = 241}, - [6795] = {.lex_state = 241}, - [6796] = {.lex_state = 175}, - [6797] = {.lex_state = 202}, - [6798] = {.lex_state = 241}, - [6799] = {.lex_state = 185}, - [6800] = {.lex_state = 185}, - [6801] = {.lex_state = 202}, - [6802] = {.lex_state = 202}, - [6803] = {.lex_state = 175}, - [6804] = {.lex_state = 240}, - [6805] = {.lex_state = 240}, - [6806] = {.lex_state = 240}, - [6807] = {.lex_state = 240}, - [6808] = {.lex_state = 240}, + [6755] = {.lex_state = 0}, + [6756] = {.lex_state = 203}, + [6757] = {.lex_state = 0}, + [6758] = {.lex_state = 203}, + [6759] = {.lex_state = 315}, + [6760] = {.lex_state = 0}, + [6761] = {.lex_state = 0}, + [6762] = {.lex_state = 0}, + [6763] = {.lex_state = 0}, + [6764] = {.lex_state = 0}, + [6765] = {.lex_state = 0}, + [6766] = {.lex_state = 0}, + [6767] = {.lex_state = 0}, + [6768] = {.lex_state = 0}, + [6769] = {.lex_state = 202}, + [6770] = {.lex_state = 0}, + [6771] = {.lex_state = 108}, + [6772] = {.lex_state = 0}, + [6773] = {.lex_state = 315}, + [6774] = {.lex_state = 0}, + [6775] = {.lex_state = 0}, + [6776] = {.lex_state = 0}, + [6777] = {.lex_state = 185}, + [6778] = {.lex_state = 0}, + [6779] = {.lex_state = 203}, + [6780] = {.lex_state = 315}, + [6781] = {.lex_state = 315}, + [6782] = {.lex_state = 0}, + [6783] = {.lex_state = 0}, + [6784] = {.lex_state = 0}, + [6785] = {.lex_state = 0}, + [6786] = {.lex_state = 0}, + [6787] = {.lex_state = 203}, + [6788] = {.lex_state = 0}, + [6789] = {.lex_state = 0}, + [6790] = {.lex_state = 0}, + [6791] = {.lex_state = 185}, + [6792] = {.lex_state = 0}, + [6793] = {.lex_state = 203}, + [6794] = {.lex_state = 203}, + [6795] = {.lex_state = 315}, + [6796] = {.lex_state = 0}, + [6797] = {.lex_state = 0}, + [6798] = {.lex_state = 185}, + [6799] = {.lex_state = 203}, + [6800] = {.lex_state = 203}, + [6801] = {.lex_state = 0}, + [6802] = {.lex_state = 0}, + [6803] = {.lex_state = 0}, + [6804] = {.lex_state = 0}, + [6805] = {.lex_state = 0}, + [6806] = {.lex_state = 175}, + [6807] = {.lex_state = 0}, + [6808] = {.lex_state = 0}, [6809] = {.lex_state = 185}, - [6810] = {.lex_state = 202}, - [6811] = {.lex_state = 240}, - [6812] = {.lex_state = 202}, - [6813] = {.lex_state = 185}, - [6814] = {.lex_state = 182}, - [6815] = {.lex_state = 244}, - [6816] = {.lex_state = 205}, - [6817] = {.lex_state = 205}, - [6818] = {.lex_state = 241}, - [6819] = {.lex_state = 202}, - [6820] = {.lex_state = 241}, - [6821] = {.lex_state = 240}, - [6822] = {.lex_state = 241}, - [6823] = {.lex_state = 182}, - [6824] = {.lex_state = 202}, - [6825] = {.lex_state = 244}, - [6826] = {.lex_state = 205}, - [6827] = {.lex_state = 202}, - [6828] = {.lex_state = 202}, - [6829] = {.lex_state = 182}, - [6830] = {.lex_state = 202}, - [6831] = {.lex_state = 202}, - [6832] = {.lex_state = 205}, - [6833] = {.lex_state = 205}, - [6834] = {.lex_state = 207}, - [6835] = {.lex_state = 182}, - [6836] = {.lex_state = 182}, - [6837] = {.lex_state = 240}, - [6838] = {.lex_state = 205}, - [6839] = {.lex_state = 241}, - [6840] = {.lex_state = 241}, - [6841] = {.lex_state = 224}, - [6842] = {.lex_state = 207}, - [6843] = {.lex_state = 182}, - [6844] = {.lex_state = 244}, - [6845] = {.lex_state = 244}, - [6846] = {.lex_state = 244}, - [6847] = {.lex_state = 244}, - [6848] = {.lex_state = 202}, - [6849] = {.lex_state = 205}, - [6850] = {.lex_state = 182}, - [6851] = {.lex_state = 205}, - [6852] = {.lex_state = 205}, - [6853] = {.lex_state = 182}, - [6854] = {.lex_state = 202}, - [6855] = {.lex_state = 205}, - [6856] = {.lex_state = 202}, - [6857] = {.lex_state = 205}, - [6858] = {.lex_state = 205}, - [6859] = {.lex_state = 205}, - [6860] = {.lex_state = 244}, - [6861] = {.lex_state = 240}, - [6862] = {.lex_state = 241}, - [6863] = {.lex_state = 205}, - [6864] = {.lex_state = 182}, - [6865] = {.lex_state = 240}, - [6866] = {.lex_state = 241}, - [6867] = {.lex_state = 241}, - [6868] = {.lex_state = 182}, - [6869] = {.lex_state = 244}, - [6870] = {.lex_state = 202}, - [6871] = {.lex_state = 182}, - [6872] = {.lex_state = 182}, - [6873] = {.lex_state = 182}, - [6874] = {.lex_state = 244}, - [6875] = {.lex_state = 182}, - [6876] = {.lex_state = 240}, - [6877] = {.lex_state = 182}, - [6878] = {.lex_state = 244}, - [6879] = {.lex_state = 244}, - [6880] = {.lex_state = 202}, - [6881] = {.lex_state = 244}, - [6882] = {.lex_state = 182}, - [6883] = {.lex_state = 182}, - [6884] = {.lex_state = 240}, - [6885] = {.lex_state = 244}, - [6886] = {.lex_state = 202}, - [6887] = {.lex_state = 202}, - [6888] = {.lex_state = 240}, - [6889] = {.lex_state = 240}, - [6890] = {.lex_state = 202}, - [6891] = {.lex_state = 244}, - [6892] = {.lex_state = 202}, - [6893] = {.lex_state = 202}, - [6894] = {.lex_state = 244}, - [6895] = {.lex_state = 244}, - [6896] = {.lex_state = 244}, - [6897] = {.lex_state = 244}, - [6898] = {.lex_state = 244}, - [6899] = {.lex_state = 202}, - [6900] = {.lex_state = 244}, - [6901] = {.lex_state = 202}, - [6902] = {.lex_state = 244}, - [6903] = {.lex_state = 241}, - [6904] = {.lex_state = 202}, - [6905] = {.lex_state = 244}, - [6906] = {.lex_state = 182}, - [6907] = {.lex_state = 182}, - [6908] = {.lex_state = 241}, - [6909] = {.lex_state = 182}, - [6910] = {.lex_state = 182}, - [6911] = {.lex_state = 182}, - [6912] = {.lex_state = 244}, - [6913] = {.lex_state = 182}, - [6914] = {.lex_state = 241}, - [6915] = {.lex_state = 241}, - [6916] = {.lex_state = 240}, - [6917] = {.lex_state = 241}, + [6810] = {.lex_state = 185}, + [6811] = {.lex_state = 0}, + [6812] = {.lex_state = 0}, + [6813] = {.lex_state = 203}, + [6814] = {.lex_state = 0}, + [6815] = {.lex_state = 0}, + [6816] = {.lex_state = 185}, + [6817] = {.lex_state = 185}, + [6818] = {.lex_state = 315}, + [6819] = {.lex_state = 203}, + [6820] = {.lex_state = 0}, + [6821] = {.lex_state = 203}, + [6822] = {.lex_state = 0}, + [6823] = {.lex_state = 203}, + [6824] = {.lex_state = 0}, + [6825] = {.lex_state = 0}, + [6826] = {.lex_state = 0}, + [6827] = {.lex_state = 203}, + [6828] = {.lex_state = 0}, + [6829] = {.lex_state = 185}, + [6830] = {.lex_state = 203}, + [6831] = {.lex_state = 0}, + [6832] = {.lex_state = 0}, + [6833] = {.lex_state = 0}, + [6834] = {.lex_state = 0}, + [6835] = {.lex_state = 0}, + [6836] = {.lex_state = 0}, + [6837] = {.lex_state = 185}, + [6838] = {.lex_state = 185}, + [6839] = {.lex_state = 0}, + [6840] = {.lex_state = 0}, + [6841] = {.lex_state = 203}, + [6842] = {.lex_state = 0}, + [6843] = {.lex_state = 203}, + [6844] = {.lex_state = 0}, + [6845] = {.lex_state = 0}, + [6846] = {.lex_state = 0}, + [6847] = {.lex_state = 0}, + [6848] = {.lex_state = 0}, + [6849] = {.lex_state = 203}, + [6850] = {.lex_state = 0}, + [6851] = {.lex_state = 0}, + [6852] = {.lex_state = 315}, + [6853] = {.lex_state = 0}, + [6854] = {.lex_state = 0}, + [6855] = {.lex_state = 0}, + [6856] = {.lex_state = 0}, + [6857] = {.lex_state = 113}, + [6858] = {.lex_state = 315}, + [6859] = {.lex_state = 0}, + [6860] = {.lex_state = 203}, + [6861] = {.lex_state = 0}, + [6862] = {.lex_state = 0}, + [6863] = {.lex_state = 315}, + [6864] = {.lex_state = 203}, + [6865] = {.lex_state = 315}, + [6866] = {.lex_state = 0}, + [6867] = {.lex_state = 203}, + [6868] = {.lex_state = 315}, + [6869] = {.lex_state = 315}, + [6870] = {.lex_state = 0}, + [6871] = {.lex_state = 0}, + [6872] = {.lex_state = 315}, + [6873] = {.lex_state = 0}, + [6874] = {.lex_state = 0}, + [6875] = {.lex_state = 0}, + [6876] = {.lex_state = 107}, + [6877] = {.lex_state = 315}, + [6878] = {.lex_state = 0}, + [6879] = {.lex_state = 0}, + [6880] = {.lex_state = 0}, + [6881] = {.lex_state = 0}, + [6882] = {.lex_state = 315}, + [6883] = {.lex_state = 0}, + [6884] = {.lex_state = 203}, + [6885] = {.lex_state = 0}, + [6886] = {.lex_state = 0}, + [6887] = {.lex_state = 315}, + [6888] = {.lex_state = 203}, + [6889] = {.lex_state = 203}, + [6890] = {.lex_state = 107}, + [6891] = {.lex_state = 203}, + [6892] = {.lex_state = 203}, + [6893] = {.lex_state = 203}, + [6894] = {.lex_state = 107}, + [6895] = {.lex_state = 0}, + [6896] = {.lex_state = 203}, + [6897] = {.lex_state = 0}, + [6898] = {.lex_state = 203}, + [6899] = {.lex_state = 0}, + [6900] = {.lex_state = 315}, + [6901] = {.lex_state = 203}, + [6902] = {.lex_state = 203}, + [6903] = {.lex_state = 0}, + [6904] = {.lex_state = 0}, + [6905] = {.lex_state = 0}, + [6906] = {.lex_state = 0}, + [6907] = {.lex_state = 0}, + [6908] = {.lex_state = 0}, + [6909] = {.lex_state = 0}, + [6910] = {.lex_state = 315}, + [6911] = {.lex_state = 203}, + [6912] = {.lex_state = 315}, + [6913] = {.lex_state = 0}, + [6914] = {.lex_state = 113}, + [6915] = {.lex_state = 0}, + [6916] = {.lex_state = 315}, + [6917] = {.lex_state = 203}, [6918] = {.lex_state = 0}, - [6919] = {.lex_state = 240}, - [6920] = {.lex_state = 241}, + [6919] = {.lex_state = 0}, + [6920] = {.lex_state = 0}, [6921] = {.lex_state = 0}, - [6922] = {.lex_state = 240}, - [6923] = {.lex_state = 241}, - [6924] = {.lex_state = 202}, - [6925] = {.lex_state = 241}, - [6926] = {.lex_state = 240}, - [6927] = {.lex_state = 202}, - [6928] = {.lex_state = 240}, - [6929] = {.lex_state = 202}, - [6930] = {.lex_state = 0}, - [6931] = {.lex_state = 240}, - [6932] = {.lex_state = 241}, - [6933] = {.lex_state = 0}, - [6934] = {.lex_state = 202}, - [6935] = {.lex_state = 240}, - [6936] = {.lex_state = 241}, - [6937] = {.lex_state = 241}, + [6922] = {.lex_state = 0}, + [6923] = {.lex_state = 0}, + [6924] = {.lex_state = 0}, + [6925] = {.lex_state = 315}, + [6926] = {.lex_state = 203}, + [6927] = {.lex_state = 315}, + [6928] = {.lex_state = 315}, + [6929] = {.lex_state = 0}, + [6930] = {.lex_state = 203}, + [6931] = {.lex_state = 315}, + [6932] = {.lex_state = 107}, + [6933] = {.lex_state = 315}, + [6934] = {.lex_state = 0}, + [6935] = {.lex_state = 315}, + [6936] = {.lex_state = 0}, + [6937] = {.lex_state = 113}, [6938] = {.lex_state = 0}, - [6939] = {.lex_state = 202}, - [6940] = {.lex_state = 241}, - [6941] = {.lex_state = 241}, - [6942] = {.lex_state = 202}, - [6943] = {.lex_state = 202}, - [6944] = {.lex_state = 241}, - [6945] = {.lex_state = 202}, - [6946] = {.lex_state = 207}, - [6947] = {.lex_state = 241}, - [6948] = {.lex_state = 202}, - [6949] = {.lex_state = 241}, - [6950] = {.lex_state = 241}, - [6951] = {.lex_state = 241}, - [6952] = {.lex_state = 241}, - [6953] = {.lex_state = 241}, + [6939] = {.lex_state = 0}, + [6940] = {.lex_state = 0}, + [6941] = {.lex_state = 203}, + [6942] = {.lex_state = 203}, + [6943] = {.lex_state = 0}, + [6944] = {.lex_state = 315}, + [6945] = {.lex_state = 0}, + [6946] = {.lex_state = 107}, + [6947] = {.lex_state = 203}, + [6948] = {.lex_state = 315}, + [6949] = {.lex_state = 0}, + [6950] = {.lex_state = 0}, + [6951] = {.lex_state = 315}, + [6952] = {.lex_state = 0}, + [6953] = {.lex_state = 315}, [6954] = {.lex_state = 0}, - [6955] = {.lex_state = 241}, - [6956] = {.lex_state = 207}, - [6957] = {.lex_state = 0}, - [6958] = {.lex_state = 241}, - [6959] = {.lex_state = 241}, - [6960] = {.lex_state = 241}, - [6961] = {.lex_state = 241}, - [6962] = {.lex_state = 241}, - [6963] = {.lex_state = 0}, - [6964] = {.lex_state = 241}, - [6965] = {.lex_state = 207}, - [6966] = {.lex_state = 241}, - [6967] = {.lex_state = 241}, - [6968] = {.lex_state = 207}, - [6969] = {.lex_state = 241}, - [6970] = {.lex_state = 202}, - [6971] = {.lex_state = 207}, - [6972] = {.lex_state = 241}, - [6973] = {.lex_state = 242}, - [6974] = {.lex_state = 241}, - [6975] = {.lex_state = 207}, - [6976] = {.lex_state = 241}, - [6977] = {.lex_state = 207}, - [6978] = {.lex_state = 241}, - [6979] = {.lex_state = 241}, - [6980] = {.lex_state = 175}, - [6981] = {.lex_state = 241}, - [6982] = {.lex_state = 207}, - [6983] = {.lex_state = 242}, - [6984] = {.lex_state = 233}, - [6985] = {.lex_state = 233}, - [6986] = {.lex_state = 233}, - [6987] = {.lex_state = 241}, - [6988] = {.lex_state = 241}, - [6989] = {.lex_state = 242}, - [6990] = {.lex_state = 241}, - [6991] = {.lex_state = 233}, - [6992] = {.lex_state = 241}, - [6993] = {.lex_state = 241}, - [6994] = {.lex_state = 242}, - [6995] = {.lex_state = 242}, - [6996] = {.lex_state = 241}, - [6997] = {.lex_state = 242}, - [6998] = {.lex_state = 241}, - [6999] = {.lex_state = 241}, - [7000] = {.lex_state = 242}, - [7001] = {.lex_state = 242}, - [7002] = {.lex_state = 242}, - [7003] = {.lex_state = 241}, - [7004] = {.lex_state = 241}, - [7005] = {.lex_state = 242}, - [7006] = {.lex_state = 242}, - [7007] = {.lex_state = 202}, - [7008] = {.lex_state = 241}, - [7009] = {.lex_state = 242}, - [7010] = {.lex_state = 242}, - [7011] = {.lex_state = 241}, - [7012] = {.lex_state = 242}, - [7013] = {.lex_state = 242}, - [7014] = {.lex_state = 242}, - [7015] = {.lex_state = 242}, - [7016] = {.lex_state = 242}, - [7017] = {.lex_state = 241}, - [7018] = {.lex_state = 242}, - [7019] = {.lex_state = 241}, - [7020] = {.lex_state = 241}, - [7021] = {.lex_state = 241}, - [7022] = {.lex_state = 0}, - [7023] = {.lex_state = 241}, - [7024] = {.lex_state = 241}, - [7025] = {.lex_state = 241}, - [7026] = {.lex_state = 241}, - [7027] = {.lex_state = 241}, - [7028] = {.lex_state = 241}, - [7029] = {.lex_state = 202}, - [7030] = {.lex_state = 202}, - [7031] = {.lex_state = 202}, - [7032] = {.lex_state = 202}, - [7033] = {.lex_state = 202}, - [7034] = {.lex_state = 202}, - [7035] = {.lex_state = 202}, - [7036] = {.lex_state = 202}, - [7037] = {.lex_state = 202}, - [7038] = {.lex_state = 202}, - [7039] = {.lex_state = 202}, - [7040] = {.lex_state = 202}, - [7041] = {.lex_state = 242}, - [7042] = {.lex_state = 242}, - [7043] = {.lex_state = 202}, - [7044] = {.lex_state = 202}, - [7045] = {.lex_state = 242}, - [7046] = {.lex_state = 202}, - [7047] = {.lex_state = 242}, - [7048] = {.lex_state = 241}, - [7049] = {.lex_state = 202}, - [7050] = {.lex_state = 202}, - [7051] = {.lex_state = 202}, - [7052] = {.lex_state = 202}, - [7053] = {.lex_state = 202}, - [7054] = {.lex_state = 202}, - [7055] = {.lex_state = 242}, - [7056] = {.lex_state = 202}, - [7057] = {.lex_state = 242}, - [7058] = {.lex_state = 202}, - [7059] = {.lex_state = 202}, - [7060] = {.lex_state = 202}, - [7061] = {.lex_state = 202}, - [7062] = {.lex_state = 202}, - [7063] = {.lex_state = 242}, - [7064] = {.lex_state = 202}, - [7065] = {.lex_state = 202}, - [7066] = {.lex_state = 202}, - [7067] = {.lex_state = 202}, - [7068] = {.lex_state = 202}, - [7069] = {.lex_state = 204}, - [7070] = {.lex_state = 202}, - [7071] = {.lex_state = 202}, - [7072] = {.lex_state = 241}, - [7073] = {.lex_state = 241}, - [7074] = {.lex_state = 241}, - [7075] = {.lex_state = 202}, - [7076] = {.lex_state = 202}, - [7077] = {.lex_state = 202}, - [7078] = {.lex_state = 241}, - [7079] = {.lex_state = 202}, - [7080] = {.lex_state = 202}, - [7081] = {.lex_state = 202}, - [7082] = {.lex_state = 202}, - [7083] = {.lex_state = 204}, - [7084] = {.lex_state = 202}, - [7085] = {.lex_state = 202}, - [7086] = {.lex_state = 241}, - [7087] = {.lex_state = 202}, - [7088] = {.lex_state = 202}, - [7089] = {.lex_state = 241}, - [7090] = {.lex_state = 202}, - [7091] = {.lex_state = 202}, - [7092] = {.lex_state = 0}, - [7093] = {.lex_state = 202}, - [7094] = {.lex_state = 242}, - [7095] = {.lex_state = 202}, - [7096] = {.lex_state = 202}, - [7097] = {.lex_state = 202}, - [7098] = {.lex_state = 202}, - [7099] = {.lex_state = 241}, - [7100] = {.lex_state = 241}, - [7101] = {.lex_state = 202}, - [7102] = {.lex_state = 202}, - [7103] = {.lex_state = 241}, - [7104] = {.lex_state = 202}, - [7105] = {.lex_state = 202}, - [7106] = {.lex_state = 202}, - [7107] = {.lex_state = 241}, - [7108] = {.lex_state = 202}, - [7109] = {.lex_state = 202}, - [7110] = {.lex_state = 202}, - [7111] = {.lex_state = 241}, - [7112] = {.lex_state = 202}, - [7113] = {.lex_state = 202}, - [7114] = {.lex_state = 202}, - [7115] = {.lex_state = 316}, - [7116] = {.lex_state = 202}, - [7117] = {.lex_state = 316}, - [7118] = {.lex_state = 241}, - [7119] = {.lex_state = 202}, - [7120] = {.lex_state = 202}, - [7121] = {.lex_state = 316}, - [7122] = {.lex_state = 202}, - [7123] = {.lex_state = 202}, - [7124] = {.lex_state = 202}, - [7125] = {.lex_state = 202}, - [7126] = {.lex_state = 202}, - [7127] = {.lex_state = 202}, - [7128] = {.lex_state = 202}, - [7129] = {.lex_state = 202}, - [7130] = {.lex_state = 202}, - [7131] = {.lex_state = 202}, - [7132] = {.lex_state = 202}, - [7133] = {.lex_state = 202}, - [7134] = {.lex_state = 202}, - [7135] = {.lex_state = 241}, - [7136] = {.lex_state = 202}, - [7137] = {.lex_state = 202}, - [7138] = {.lex_state = 316}, - [7139] = {.lex_state = 202}, - [7140] = {.lex_state = 202}, - [7141] = {.lex_state = 202}, - [7142] = {.lex_state = 202}, - [7143] = {.lex_state = 202}, - [7144] = {.lex_state = 202}, - [7145] = {.lex_state = 202}, - [7146] = {.lex_state = 316}, - [7147] = {.lex_state = 202}, - [7148] = {.lex_state = 202}, - [7149] = {.lex_state = 202}, - [7150] = {.lex_state = 202}, - [7151] = {.lex_state = 241}, - [7152] = {.lex_state = 202}, - [7153] = {.lex_state = 202}, - [7154] = {.lex_state = 202}, - [7155] = {.lex_state = 202}, - [7156] = {.lex_state = 202}, - [7157] = {.lex_state = 202}, - [7158] = {.lex_state = 242}, - [7159] = {.lex_state = 205}, - [7160] = {.lex_state = 202}, - [7161] = {.lex_state = 202}, - [7162] = {.lex_state = 202}, - [7163] = {.lex_state = 202}, - [7164] = {.lex_state = 202}, - [7165] = {.lex_state = 241}, - [7166] = {.lex_state = 241}, - [7167] = {.lex_state = 202}, - [7168] = {.lex_state = 202}, - [7169] = {.lex_state = 241}, - [7170] = {.lex_state = 241}, - [7171] = {.lex_state = 202}, - [7172] = {.lex_state = 202}, - [7173] = {.lex_state = 202}, - [7174] = {.lex_state = 202}, - [7175] = {.lex_state = 202}, - [7176] = {.lex_state = 241}, - [7177] = {.lex_state = 202}, - [7178] = {.lex_state = 202}, - [7179] = {.lex_state = 204}, - [7180] = {.lex_state = 202}, - [7181] = {.lex_state = 194}, - [7182] = {.lex_state = 194}, - [7183] = {.lex_state = 194}, - [7184] = {.lex_state = 204}, - [7185] = {.lex_state = 194}, - [7186] = {.lex_state = 194}, - [7187] = {.lex_state = 204}, - [7188] = {.lex_state = 204}, - [7189] = {.lex_state = 241}, - [7190] = {.lex_state = 241}, - [7191] = {.lex_state = 204}, - [7192] = {.lex_state = 204}, - [7193] = {.lex_state = 204}, - [7194] = {.lex_state = 204}, - [7195] = {.lex_state = 205}, - [7196] = {.lex_state = 194}, - [7197] = {.lex_state = 194}, - [7198] = {.lex_state = 202}, - [7199] = {.lex_state = 241}, - [7200] = {.lex_state = 202}, - [7201] = {.lex_state = 241}, - [7202] = {.lex_state = 202}, - [7203] = {.lex_state = 242}, - [7204] = {.lex_state = 202}, - [7205] = {.lex_state = 242}, - [7206] = {.lex_state = 202}, - [7207] = {.lex_state = 242}, - [7208] = {.lex_state = 242}, - [7209] = {.lex_state = 202}, - [7210] = {.lex_state = 202}, - [7211] = {.lex_state = 202}, - [7212] = {.lex_state = 202}, - [7213] = {.lex_state = 242}, - [7214] = {.lex_state = 242}, - [7215] = {.lex_state = 202}, - [7216] = {.lex_state = 219}, - [7217] = {.lex_state = 219}, - [7218] = {.lex_state = 241}, - [7219] = {.lex_state = 219}, - [7220] = {.lex_state = 241}, - [7221] = {.lex_state = 241}, - [7222] = {.lex_state = 241}, - [7223] = {.lex_state = 241}, - [7224] = {.lex_state = 241}, - [7225] = {.lex_state = 241}, - [7226] = {.lex_state = 219}, - [7227] = {.lex_state = 219}, - [7228] = {.lex_state = 316}, - [7229] = {.lex_state = 219}, - [7230] = {.lex_state = 204}, - [7231] = {.lex_state = 204}, - [7232] = {.lex_state = 316}, - [7233] = {.lex_state = 185}, - [7234] = {.lex_state = 202}, - [7235] = {.lex_state = 204}, - [7236] = {.lex_state = 204}, - [7237] = {.lex_state = 205}, - [7238] = {.lex_state = 219}, - [7239] = {.lex_state = 202}, - [7240] = {.lex_state = 205}, - [7241] = {.lex_state = 204}, - [7242] = {.lex_state = 204}, - [7243] = {.lex_state = 219}, - [7244] = {.lex_state = 204}, - [7245] = {.lex_state = 219}, - [7246] = {.lex_state = 205}, - [7247] = {.lex_state = 185}, - [7248] = {.lex_state = 205}, - [7249] = {.lex_state = 202}, - [7250] = {.lex_state = 219}, - [7251] = {.lex_state = 205}, - [7252] = {.lex_state = 316}, - [7253] = {.lex_state = 205}, - [7254] = {.lex_state = 202}, - [7255] = {.lex_state = 205}, - [7256] = {.lex_state = 205}, - [7257] = {.lex_state = 219}, - [7258] = {.lex_state = 202}, - [7259] = {.lex_state = 202}, - [7260] = {.lex_state = 202}, - [7261] = {.lex_state = 202}, - [7262] = {.lex_state = 205}, - [7263] = {.lex_state = 202}, - [7264] = {.lex_state = 205}, - [7265] = {.lex_state = 205}, - [7266] = {.lex_state = 205}, - [7267] = {.lex_state = 202}, - [7268] = {.lex_state = 202}, - [7269] = {.lex_state = 202}, - [7270] = {.lex_state = 205}, - [7271] = {.lex_state = 175}, - [7272] = {.lex_state = 234}, - [7273] = {.lex_state = 205}, - [7274] = {.lex_state = 202}, - [7275] = {.lex_state = 202}, - [7276] = {.lex_state = 202}, - [7277] = {.lex_state = 202}, - [7278] = {.lex_state = 202}, - [7279] = {.lex_state = 202}, - [7280] = {.lex_state = 202}, - [7281] = {.lex_state = 225}, - [7282] = {.lex_state = 202}, - [7283] = {.lex_state = 234}, - [7284] = {.lex_state = 316}, - [7285] = {.lex_state = 202}, - [7286] = {.lex_state = 202}, - [7287] = {.lex_state = 234}, - [7288] = {.lex_state = 202}, - [7289] = {.lex_state = 202}, - [7290] = {.lex_state = 234}, - [7291] = {.lex_state = 202}, - [7292] = {.lex_state = 202}, - [7293] = {.lex_state = 202}, - [7294] = {.lex_state = 234}, - [7295] = {.lex_state = 202}, - [7296] = {.lex_state = 202}, - [7297] = {.lex_state = 202}, - [7298] = {.lex_state = 202}, - [7299] = {.lex_state = 225}, - [7300] = {.lex_state = 202}, - [7301] = {.lex_state = 316}, - [7302] = {.lex_state = 202}, - [7303] = {.lex_state = 205}, - [7304] = {.lex_state = 202}, - [7305] = {.lex_state = 202}, - [7306] = {.lex_state = 316}, - [7307] = {.lex_state = 316}, - [7308] = {.lex_state = 175}, - [7309] = {.lex_state = 205}, - [7310] = {.lex_state = 202}, - [7311] = {.lex_state = 202}, - [7312] = {.lex_state = 316}, - [7313] = {.lex_state = 316}, - [7314] = {.lex_state = 219}, - [7315] = {.lex_state = 242}, - [7316] = {.lex_state = 316}, - [7317] = {.lex_state = 240}, - [7318] = {.lex_state = 207}, - [7319] = {.lex_state = 316}, - [7320] = {.lex_state = 316}, - [7321] = {.lex_state = 316}, - [7322] = {.lex_state = 316}, - [7323] = {.lex_state = 205}, - [7324] = {.lex_state = 316}, - [7325] = {.lex_state = 207}, - [7326] = {.lex_state = 316}, - [7327] = {.lex_state = 316}, - [7328] = {.lex_state = 242}, - [7329] = {.lex_state = 205}, - [7330] = {.lex_state = 242}, - [7331] = {.lex_state = 316}, - [7332] = {.lex_state = 205}, - [7333] = {.lex_state = 207}, - [7334] = {.lex_state = 205}, - [7335] = {.lex_state = 207}, - [7336] = {.lex_state = 205}, - [7337] = {.lex_state = 316}, - [7338] = {.lex_state = 316}, - [7339] = {.lex_state = 205}, - [7340] = {.lex_state = 316}, - [7341] = {.lex_state = 316}, - [7342] = {.lex_state = 207}, - [7343] = {.lex_state = 316}, - [7344] = {.lex_state = 205}, - [7345] = {.lex_state = 316}, - [7346] = {.lex_state = 316}, - [7347] = {.lex_state = 202}, - [7348] = {.lex_state = 316}, - [7349] = {.lex_state = 185}, - [7350] = {.lex_state = 316}, - [7351] = {.lex_state = 207}, - [7352] = {.lex_state = 245}, - [7353] = {.lex_state = 175}, - [7354] = {.lex_state = 316}, - [7355] = {.lex_state = 205}, - [7356] = {.lex_state = 207}, - [7357] = {.lex_state = 202}, - [7358] = {.lex_state = 316}, - [7359] = {.lex_state = 205}, - [7360] = {.lex_state = 219}, - [7361] = {.lex_state = 316}, - [7362] = {.lex_state = 240}, - [7363] = {.lex_state = 242}, - [7364] = {.lex_state = 205}, - [7365] = {.lex_state = 205}, - [7366] = {.lex_state = 316}, - [7367] = {.lex_state = 175}, - [7368] = {.lex_state = 175}, - [7369] = {.lex_state = 175}, - [7370] = {.lex_state = 175}, - [7371] = {.lex_state = 175}, - [7372] = {.lex_state = 175}, - [7373] = {.lex_state = 202}, - [7374] = {.lex_state = 202}, - [7375] = {.lex_state = 175}, - [7376] = {.lex_state = 225}, - [7377] = {.lex_state = 202}, - [7378] = {.lex_state = 316}, - [7379] = {.lex_state = 202}, - [7380] = {.lex_state = 175}, - [7381] = {.lex_state = 175}, - [7382] = {.lex_state = 205}, - [7383] = {.lex_state = 202}, - [7384] = {.lex_state = 175}, - [7385] = {.lex_state = 225}, - [7386] = {.lex_state = 175}, - [7387] = {.lex_state = 202}, - [7388] = {.lex_state = 175}, - [7389] = {.lex_state = 205}, - [7390] = {.lex_state = 316}, - [7391] = {.lex_state = 316}, - [7392] = {.lex_state = 240}, - [7393] = {.lex_state = 175}, - [7394] = {.lex_state = 202}, - [7395] = {.lex_state = 316}, - [7396] = {.lex_state = 202}, - [7397] = {.lex_state = 202}, - [7398] = {.lex_state = 316}, - [7399] = {.lex_state = 175}, - [7400] = {.lex_state = 175}, - [7401] = {.lex_state = 205}, - [7402] = {.lex_state = 175}, - [7403] = {.lex_state = 225}, - [7404] = {.lex_state = 175}, - [7405] = {.lex_state = 205}, - [7406] = {.lex_state = 175}, - [7407] = {.lex_state = 175}, - [7408] = {.lex_state = 316}, - [7409] = {.lex_state = 202}, - [7410] = {.lex_state = 202}, - [7411] = {.lex_state = 202}, - [7412] = {.lex_state = 202}, - [7413] = {.lex_state = 202}, - [7414] = {.lex_state = 202}, - [7415] = {.lex_state = 240}, - [7416] = {.lex_state = 202}, - [7417] = {.lex_state = 202}, - [7418] = {.lex_state = 240}, - [7419] = {.lex_state = 316}, - [7420] = {.lex_state = 202}, - [7421] = {.lex_state = 202}, - [7422] = {.lex_state = 202}, - [7423] = {.lex_state = 240}, - [7424] = {.lex_state = 202}, - [7425] = {.lex_state = 316}, - [7426] = {.lex_state = 202}, - [7427] = {.lex_state = 202}, - [7428] = {.lex_state = 240}, - [7429] = {.lex_state = 205}, - [7430] = {.lex_state = 202}, - [7431] = {.lex_state = 240}, - [7432] = {.lex_state = 202}, - [7433] = {.lex_state = 202}, - [7434] = {.lex_state = 202}, - [7435] = {.lex_state = 175}, - [7436] = {.lex_state = 202}, - [7437] = {.lex_state = 202}, - [7438] = {.lex_state = 202}, - [7439] = {.lex_state = 202}, - [7440] = {.lex_state = 202}, - [7441] = {.lex_state = 202}, - [7442] = {.lex_state = 240}, - [7443] = {.lex_state = 202}, - [7444] = {.lex_state = 202}, - [7445] = {.lex_state = 202}, - [7446] = {.lex_state = 240}, - [7447] = {.lex_state = 202}, - [7448] = {.lex_state = 202}, - [7449] = {.lex_state = 202}, - [7450] = {.lex_state = 202}, - [7451] = {.lex_state = 202}, - [7452] = {.lex_state = 240}, - [7453] = {.lex_state = 202}, - [7454] = {.lex_state = 202}, - [7455] = {.lex_state = 202}, - [7456] = {.lex_state = 202}, - [7457] = {.lex_state = 202}, - [7458] = {.lex_state = 202}, - [7459] = {.lex_state = 202}, - [7460] = {.lex_state = 240}, - [7461] = {.lex_state = 202}, - [7462] = {.lex_state = 175}, - [7463] = {.lex_state = 202}, - [7464] = {.lex_state = 202}, - [7465] = {.lex_state = 202}, - [7466] = {.lex_state = 202}, - [7467] = {.lex_state = 202}, - [7468] = {.lex_state = 202}, - [7469] = {.lex_state = 202}, - [7470] = {.lex_state = 202}, - [7471] = {.lex_state = 202}, - [7472] = {.lex_state = 202}, - [7473] = {.lex_state = 202}, - [7474] = {.lex_state = 202}, - [7475] = {.lex_state = 202}, - [7476] = {.lex_state = 240}, + [6955] = {.lex_state = 113}, + [6956] = {.lex_state = 0}, + [6957] = {.lex_state = 203}, + [6958] = {.lex_state = 0}, + [6959] = {.lex_state = 315}, + [6960] = {.lex_state = 0}, + [6961] = {.lex_state = 113}, + [6962] = {.lex_state = 0}, + [6963] = {.lex_state = 315}, + [6964] = {.lex_state = 0}, + [6965] = {.lex_state = 107}, + [6966] = {.lex_state = 0}, + [6967] = {.lex_state = 315}, + [6968] = {.lex_state = 315}, + [6969] = {.lex_state = 0}, + [6970] = {.lex_state = 0}, + [6971] = {.lex_state = 203}, + [6972] = {.lex_state = 315}, + [6973] = {.lex_state = 107}, + [6974] = {.lex_state = 315}, + [6975] = {.lex_state = 0}, + [6976] = {.lex_state = 0}, + [6977] = {.lex_state = 315}, + [6978] = {.lex_state = 0}, + [6979] = {.lex_state = 315}, + [6980] = {.lex_state = 203}, + [6981] = {.lex_state = 0}, + [6982] = {.lex_state = 107}, + [6983] = {.lex_state = 315}, + [6984] = {.lex_state = 203}, + [6985] = {.lex_state = 0}, + [6986] = {.lex_state = 315}, + [6987] = {.lex_state = 0}, + [6988] = {.lex_state = 315}, + [6989] = {.lex_state = 0}, + [6990] = {.lex_state = 0}, + [6991] = {.lex_state = 315}, + [6992] = {.lex_state = 0}, + [6993] = {.lex_state = 0}, + [6994] = {.lex_state = 0}, + [6995] = {.lex_state = 0}, + [6996] = {.lex_state = 113}, + [6997] = {.lex_state = 0}, + [6998] = {.lex_state = 203}, + [6999] = {.lex_state = 203}, + [7000] = {.lex_state = 0}, + [7001] = {.lex_state = 0}, + [7002] = {.lex_state = 0}, + [7003] = {.lex_state = 0}, + [7004] = {.lex_state = 315}, + [7005] = {.lex_state = 0}, + [7006] = {.lex_state = 0}, + [7007] = {.lex_state = 315}, + [7008] = {.lex_state = 315}, + [7009] = {.lex_state = 0}, + [7010] = {.lex_state = 315}, + [7011] = {.lex_state = 315}, + [7012] = {.lex_state = 107}, + [7013] = {.lex_state = 0}, + [7014] = {.lex_state = 203}, + [7015] = {.lex_state = 203}, + [7016] = {.lex_state = 0}, + [7017] = {.lex_state = 0}, + [7018] = {.lex_state = 0}, + [7019] = {.lex_state = 203}, + [7020] = {.lex_state = 315}, + [7021] = {.lex_state = 315}, + [7022] = {.lex_state = 315}, + [7023] = {.lex_state = 0}, + [7024] = {.lex_state = 0}, + [7025] = {.lex_state = 0}, + [7026] = {.lex_state = 0}, + [7027] = {.lex_state = 0}, + [7028] = {.lex_state = 315}, + [7029] = {.lex_state = 0}, + [7030] = {.lex_state = 107}, + [7031] = {.lex_state = 0}, + [7032] = {.lex_state = 0}, + [7033] = {.lex_state = 0}, + [7034] = {.lex_state = 0}, + [7035] = {.lex_state = 0}, + [7036] = {.lex_state = 113}, + [7037] = {.lex_state = 0}, + [7038] = {.lex_state = 0}, + [7039] = {.lex_state = 315}, + [7040] = {.lex_state = 0}, + [7041] = {.lex_state = 0}, + [7042] = {.lex_state = 107}, + [7043] = {.lex_state = 203}, + [7044] = {.lex_state = 315}, + [7045] = {.lex_state = 0}, + [7046] = {.lex_state = 0}, + [7047] = {.lex_state = 0}, + [7048] = {.lex_state = 203}, + [7049] = {.lex_state = 0}, + [7050] = {.lex_state = 0}, + [7051] = {.lex_state = 315}, + [7052] = {.lex_state = 0}, + [7053] = {.lex_state = 315}, + [7054] = {.lex_state = 0}, + [7055] = {.lex_state = 315}, + [7056] = {.lex_state = 0}, + [7057] = {.lex_state = 315, .external_lex_state = 2}, + [7058] = {.lex_state = 0}, + [7059] = {.lex_state = 203}, + [7060] = {.lex_state = 0}, + [7061] = {.lex_state = 0}, + [7062] = {.lex_state = 203}, + [7063] = {.lex_state = 0}, + [7064] = {.lex_state = 0}, + [7065] = {.lex_state = 0}, + [7066] = {.lex_state = 0}, + [7067] = {.lex_state = 107}, + [7068] = {.lex_state = 107}, + [7069] = {.lex_state = 0}, + [7070] = {.lex_state = 0}, + [7071] = {.lex_state = 0}, + [7072] = {.lex_state = 315}, + [7073] = {.lex_state = 0}, + [7074] = {.lex_state = 315}, + [7075] = {.lex_state = 0}, + [7076] = {.lex_state = 0}, + [7077] = {.lex_state = 0}, + [7078] = {.lex_state = 203}, + [7079] = {.lex_state = 315}, + [7080] = {.lex_state = 315}, + [7081] = {.lex_state = 0}, + [7082] = {.lex_state = 0}, + [7083] = {.lex_state = 315}, + [7084] = {.lex_state = 0}, + [7085] = {.lex_state = 315}, + [7086] = {.lex_state = 315}, + [7087] = {.lex_state = 113}, + [7088] = {.lex_state = 315}, + [7089] = {.lex_state = 315}, + [7090] = {.lex_state = 107}, + [7091] = {.lex_state = 0}, + [7092] = {.lex_state = 203}, + [7093] = {.lex_state = 0}, + [7094] = {.lex_state = 315}, + [7095] = {.lex_state = 0}, + [7096] = {.lex_state = 203}, + [7097] = {.lex_state = 0}, + [7098] = {.lex_state = 0}, + [7099] = {.lex_state = 0}, + [7100] = {.lex_state = 0}, + [7101] = {.lex_state = 0}, + [7102] = {.lex_state = 203}, + [7103] = {.lex_state = 203}, + [7104] = {.lex_state = 315}, + [7105] = {.lex_state = 0}, + [7106] = {.lex_state = 0}, + [7107] = {.lex_state = 107}, + [7108] = {.lex_state = 315, .external_lex_state = 2}, + [7109] = {.lex_state = 107}, + [7110] = {.lex_state = 315, .external_lex_state = 2}, + [7111] = {.lex_state = 203}, + [7112] = {.lex_state = 315}, + [7113] = {.lex_state = 107}, + [7114] = {.lex_state = 315}, + [7115] = {.lex_state = 107}, + [7116] = {.lex_state = 315}, + [7117] = {.lex_state = 315}, + [7118] = {.lex_state = 113}, + [7119] = {.lex_state = 203}, + [7120] = {.lex_state = 107}, + [7121] = {.lex_state = 0}, + [7122] = {.lex_state = 0}, + [7123] = {.lex_state = 0}, + [7124] = {.lex_state = 315, .external_lex_state = 2}, + [7125] = {.lex_state = 315, .external_lex_state = 2}, + [7126] = {.lex_state = 0}, + [7127] = {.lex_state = 315, .external_lex_state = 2}, + [7128] = {.lex_state = 203}, + [7129] = {.lex_state = 0}, + [7130] = {.lex_state = 203}, + [7131] = {.lex_state = 203}, + [7132] = {.lex_state = 315}, + [7133] = {.lex_state = 0}, + [7134] = {.lex_state = 315, .external_lex_state = 2}, + [7135] = {.lex_state = 315}, + [7136] = {.lex_state = 315}, + [7137] = {.lex_state = 315}, + [7138] = {.lex_state = 0}, + [7139] = {.lex_state = 0}, + [7140] = {.lex_state = 315, .external_lex_state = 2}, + [7141] = {.lex_state = 0}, + [7142] = {.lex_state = 203}, + [7143] = {.lex_state = 0}, + [7144] = {.lex_state = 0}, + [7145] = {.lex_state = 315, .external_lex_state = 2}, + [7146] = {.lex_state = 315}, + [7147] = {.lex_state = 0}, + [7148] = {.lex_state = 315}, + [7149] = {.lex_state = 315}, + [7150] = {.lex_state = 315, .external_lex_state = 2}, + [7151] = {.lex_state = 0}, + [7152] = {.lex_state = 0}, + [7153] = {.lex_state = 0}, + [7154] = {.lex_state = 0}, + [7155] = {.lex_state = 315, .external_lex_state = 2}, + [7156] = {.lex_state = 315, .external_lex_state = 2}, + [7157] = {.lex_state = 0}, + [7158] = {.lex_state = 315, .external_lex_state = 2}, + [7159] = {.lex_state = 315, .external_lex_state = 2}, + [7160] = {.lex_state = 315, .external_lex_state = 2}, + [7161] = {.lex_state = 315}, + [7162] = {.lex_state = 315, .external_lex_state = 2}, + [7163] = {.lex_state = 107}, + [7164] = {.lex_state = 315, .external_lex_state = 2}, + [7165] = {.lex_state = 0}, + [7166] = {.lex_state = 0}, + [7167] = {.lex_state = 107}, + [7168] = {.lex_state = 0}, + [7169] = {.lex_state = 203}, + [7170] = {.lex_state = 315}, + [7171] = {.lex_state = 0}, + [7172] = {.lex_state = 0}, + [7173] = {.lex_state = 315}, + [7174] = {.lex_state = 0}, + [7175] = {.lex_state = 203}, + [7176] = {.lex_state = 0}, + [7177] = {.lex_state = 315}, + [7178] = {.lex_state = 0}, + [7179] = {.lex_state = 315}, + [7180] = {.lex_state = 113}, + [7181] = {.lex_state = 0}, + [7182] = {.lex_state = 203}, + [7183] = {.lex_state = 203}, + [7184] = {.lex_state = 315}, + [7185] = {.lex_state = 0}, + [7186] = {.lex_state = 0}, + [7187] = {.lex_state = 238}, + [7188] = {.lex_state = 172}, + [7189] = {.lex_state = 315}, + [7190] = {.lex_state = 0}, + [7191] = {.lex_state = 315}, + [7192] = {.lex_state = 0, .external_lex_state = 2}, + [7193] = {.lex_state = 108}, + [7194] = {.lex_state = 315}, + [7195] = {.lex_state = 0}, + [7196] = {.lex_state = 172}, + [7197] = {.lex_state = 0}, + [7198] = {.lex_state = 203}, + [7199] = {.lex_state = 0}, + [7200] = {.lex_state = 0}, + [7201] = {.lex_state = 0}, + [7202] = {.lex_state = 203}, + [7203] = {.lex_state = 0}, + [7204] = {.lex_state = 0}, + [7205] = {.lex_state = 0}, + [7206] = {.lex_state = 0}, + [7207] = {.lex_state = 315}, + [7208] = {.lex_state = 0}, + [7209] = {.lex_state = 0}, + [7210] = {.lex_state = 203}, + [7211] = {.lex_state = 203}, + [7212] = {.lex_state = 172}, + [7213] = {.lex_state = 203}, + [7214] = {.lex_state = 0}, + [7215] = {.lex_state = 185}, + [7216] = {.lex_state = 0}, + [7217] = {.lex_state = 203}, + [7218] = {.lex_state = 0}, + [7219] = {.lex_state = 0}, + [7220] = {.lex_state = 0}, + [7221] = {.lex_state = 203}, + [7222] = {.lex_state = 108}, + [7223] = {.lex_state = 203}, + [7224] = {.lex_state = 0}, + [7225] = {.lex_state = 315}, + [7226] = {.lex_state = 0}, + [7227] = {.lex_state = 0}, + [7228] = {.lex_state = 0}, + [7229] = {.lex_state = 315}, + [7230] = {.lex_state = 0}, + [7231] = {.lex_state = 203}, + [7232] = {.lex_state = 0}, + [7233] = {.lex_state = 108}, + [7234] = {.lex_state = 0}, + [7235] = {.lex_state = 108}, + [7236] = {.lex_state = 0}, + [7237] = {.lex_state = 203}, + [7238] = {.lex_state = 0}, + [7239] = {.lex_state = 108}, + [7240] = {.lex_state = 0}, + [7241] = {.lex_state = 0}, + [7242] = {.lex_state = 0}, + [7243] = {.lex_state = 108}, + [7244] = {.lex_state = 0}, + [7245] = {.lex_state = 0}, + [7246] = {.lex_state = 185}, + [7247] = {.lex_state = 315}, + [7248] = {.lex_state = 0}, + [7249] = {.lex_state = 315}, + [7250] = {.lex_state = 172}, + [7251] = {.lex_state = 203}, + [7252] = {.lex_state = 203}, + [7253] = {.lex_state = 0}, + [7254] = {.lex_state = 0}, + [7255] = {.lex_state = 0}, + [7256] = {.lex_state = 203}, + [7257] = {.lex_state = 0}, + [7258] = {.lex_state = 203}, + [7259] = {.lex_state = 0}, + [7260] = {.lex_state = 203}, + [7261] = {.lex_state = 0}, + [7262] = {.lex_state = 0}, + [7263] = {.lex_state = 0}, + [7264] = {.lex_state = 0}, + [7265] = {.lex_state = 0}, + [7266] = {.lex_state = 0}, + [7267] = {.lex_state = 0}, + [7268] = {.lex_state = 0}, + [7269] = {.lex_state = 0}, + [7270] = {.lex_state = 0}, + [7271] = {.lex_state = 0}, + [7272] = {.lex_state = 0}, + [7273] = {.lex_state = 203}, + [7274] = {.lex_state = 315}, + [7275] = {.lex_state = 203}, + [7276] = {.lex_state = 0}, + [7277] = {.lex_state = 0}, + [7278] = {.lex_state = 0}, + [7279] = {.lex_state = 315}, + [7280] = {.lex_state = 0}, + [7281] = {.lex_state = 172}, + [7282] = {.lex_state = 0, .external_lex_state = 2}, + [7283] = {.lex_state = 172}, + [7284] = {.lex_state = 0}, + [7285] = {.lex_state = 172}, + [7286] = {.lex_state = 172}, + [7287] = {.lex_state = 0}, + [7288] = {.lex_state = 0}, + [7289] = {.lex_state = 172}, + [7290] = {.lex_state = 0}, + [7291] = {.lex_state = 203}, + [7292] = {.lex_state = 203}, + [7293] = {.lex_state = 0}, + [7294] = {.lex_state = 203}, + [7295] = {.lex_state = 0}, + [7296] = {.lex_state = 172}, + [7297] = {.lex_state = 172}, + [7298] = {.lex_state = 172}, + [7299] = {.lex_state = 172}, + [7300] = {.lex_state = 0}, + [7301] = {.lex_state = 203}, + [7302] = {.lex_state = 0}, + [7303] = {.lex_state = 0}, + [7304] = {.lex_state = 0}, + [7305] = {.lex_state = 0}, + [7306] = {.lex_state = 172}, + [7307] = {.lex_state = 0}, + [7308] = {.lex_state = 315}, + [7309] = {.lex_state = 0}, + [7310] = {.lex_state = 0}, + [7311] = {.lex_state = 0}, + [7312] = {.lex_state = 0}, + [7313] = {.lex_state = 0}, + [7314] = {.lex_state = 0}, + [7315] = {.lex_state = 0}, + [7316] = {.lex_state = 0}, + [7317] = {.lex_state = 0}, + [7318] = {.lex_state = 0}, + [7319] = {.lex_state = 0}, + [7320] = {.lex_state = 185}, + [7321] = {.lex_state = 0}, + [7322] = {.lex_state = 0}, + [7323] = {.lex_state = 108}, + [7324] = {.lex_state = 315}, + [7325] = {.lex_state = 108}, + [7326] = {.lex_state = 0}, + [7327] = {.lex_state = 0}, + [7328] = {.lex_state = 0}, + [7329] = {.lex_state = 0}, + [7330] = {.lex_state = 0}, + [7331] = {.lex_state = 0}, + [7332] = {.lex_state = 0}, + [7333] = {.lex_state = 203}, + [7334] = {.lex_state = 0}, + [7335] = {.lex_state = 315}, + [7336] = {.lex_state = 0}, + [7337] = {.lex_state = 0}, + [7338] = {.lex_state = 0}, + [7339] = {.lex_state = 203}, + [7340] = {.lex_state = 0}, + [7341] = {.lex_state = 0}, + [7342] = {.lex_state = 315}, + [7343] = {.lex_state = 0}, + [7344] = {.lex_state = 0}, + [7345] = {.lex_state = 0}, + [7346] = {.lex_state = 0}, + [7347] = {.lex_state = 203}, + [7348] = {.lex_state = 172}, + [7349] = {.lex_state = 0}, + [7350] = {.lex_state = 0}, + [7351] = {.lex_state = 172}, + [7352] = {.lex_state = 0, .external_lex_state = 2}, + [7353] = {.lex_state = 0}, + [7354] = {.lex_state = 203}, + [7355] = {.lex_state = 108}, + [7356] = {.lex_state = 0}, + [7357] = {.lex_state = 203}, + [7358] = {.lex_state = 0}, + [7359] = {.lex_state = 203}, + [7360] = {.lex_state = 0}, + [7361] = {.lex_state = 0}, + [7362] = {.lex_state = 0}, + [7363] = {.lex_state = 0}, + [7364] = {.lex_state = 0}, + [7365] = {.lex_state = 315}, + [7366] = {.lex_state = 315}, + [7367] = {.lex_state = 203}, + [7368] = {.lex_state = 172}, + [7369] = {.lex_state = 0}, + [7370] = {.lex_state = 0}, + [7371] = {.lex_state = 0}, + [7372] = {.lex_state = 0}, + [7373] = {.lex_state = 0}, + [7374] = {.lex_state = 0}, + [7375] = {.lex_state = 185}, + [7376] = {.lex_state = 0}, + [7377] = {.lex_state = 315}, + [7378] = {.lex_state = 0}, + [7379] = {.lex_state = 0}, + [7380] = {.lex_state = 0, .external_lex_state = 3}, + [7381] = {.lex_state = 0}, + [7382] = {.lex_state = 108}, + [7383] = {.lex_state = 0}, + [7384] = {.lex_state = 203}, + [7385] = {.lex_state = 0}, + [7386] = {.lex_state = 315}, + [7387] = {.lex_state = 0}, + [7388] = {.lex_state = 0}, + [7389] = {.lex_state = 0}, + [7390] = {.lex_state = 0}, + [7391] = {.lex_state = 0}, + [7392] = {.lex_state = 0}, + [7393] = {.lex_state = 0}, + [7394] = {.lex_state = 0}, + [7395] = {.lex_state = 0}, + [7396] = {.lex_state = 203}, + [7397] = {.lex_state = 203}, + [7398] = {.lex_state = 0}, + [7399] = {.lex_state = 185}, + [7400] = {.lex_state = 0}, + [7401] = {.lex_state = 108}, + [7402] = {.lex_state = 0, .external_lex_state = 2}, + [7403] = {.lex_state = 0}, + [7404] = {.lex_state = 203}, + [7405] = {.lex_state = 172}, + [7406] = {.lex_state = 172}, + [7407] = {.lex_state = 0}, + [7408] = {.lex_state = 0}, + [7409] = {.lex_state = 0}, + [7410] = {.lex_state = 0}, + [7411] = {.lex_state = 0, .external_lex_state = 2}, + [7412] = {.lex_state = 0}, + [7413] = {.lex_state = 0}, + [7414] = {.lex_state = 0}, + [7415] = {.lex_state = 0}, + [7416] = {.lex_state = 0}, + [7417] = {.lex_state = 0}, + [7418] = {.lex_state = 315}, + [7419] = {.lex_state = 0}, + [7420] = {.lex_state = 0}, + [7421] = {.lex_state = 172}, + [7422] = {.lex_state = 0}, + [7423] = {.lex_state = 108}, + [7424] = {.lex_state = 315}, + [7425] = {.lex_state = 203}, + [7426] = {.lex_state = 0}, + [7427] = {.lex_state = 0}, + [7428] = {.lex_state = 0}, + [7429] = {.lex_state = 0}, + [7430] = {.lex_state = 0}, + [7431] = {.lex_state = 315}, + [7432] = {.lex_state = 172}, + [7433] = {.lex_state = 203}, + [7434] = {.lex_state = 0}, + [7435] = {.lex_state = 172}, + [7436] = {.lex_state = 203}, + [7437] = {.lex_state = 0}, + [7438] = {.lex_state = 0}, + [7439] = {.lex_state = 0, .external_lex_state = 2}, + [7440] = {.lex_state = 203}, + [7441] = {.lex_state = 0}, + [7442] = {.lex_state = 0}, + [7443] = {.lex_state = 172}, + [7444] = {.lex_state = 0}, + [7445] = {.lex_state = 0}, + [7446] = {.lex_state = 0}, + [7447] = {.lex_state = 172}, + [7448] = {.lex_state = 203}, + [7449] = {.lex_state = 0}, + [7450] = {.lex_state = 0}, + [7451] = {.lex_state = 0}, + [7452] = {.lex_state = 0}, + [7453] = {.lex_state = 315}, + [7454] = {.lex_state = 0}, + [7455] = {.lex_state = 203}, + [7456] = {.lex_state = 0}, + [7457] = {.lex_state = 0}, + [7458] = {.lex_state = 0}, + [7459] = {.lex_state = 0}, + [7460] = {.lex_state = 0}, + [7461] = {.lex_state = 0}, + [7462] = {.lex_state = 0}, + [7463] = {.lex_state = 172}, + [7464] = {.lex_state = 0}, + [7465] = {.lex_state = 108}, + [7466] = {.lex_state = 0}, + [7467] = {.lex_state = 0}, + [7468] = {.lex_state = 315}, + [7469] = {.lex_state = 108}, + [7470] = {.lex_state = 0}, + [7471] = {.lex_state = 0}, + [7472] = {.lex_state = 0, .external_lex_state = 2}, + [7473] = {.lex_state = 203}, + [7474] = {.lex_state = 0}, + [7475] = {.lex_state = 0}, + [7476] = {.lex_state = 0}, [7477] = {.lex_state = 0}, - [7478] = {.lex_state = 202}, - [7479] = {.lex_state = 175}, - [7480] = {.lex_state = 202}, - [7481] = {.lex_state = 202}, - [7482] = {.lex_state = 202}, - [7483] = {.lex_state = 202}, - [7484] = {.lex_state = 175}, - [7485] = {.lex_state = 202}, - [7486] = {.lex_state = 202}, - [7487] = {.lex_state = 202}, - [7488] = {.lex_state = 202}, - [7489] = {.lex_state = 202}, - [7490] = {.lex_state = 202}, + [7478] = {.lex_state = 0}, + [7479] = {.lex_state = 0}, + [7480] = {.lex_state = 315}, + [7481] = {.lex_state = 0}, + [7482] = {.lex_state = 185}, + [7483] = {.lex_state = 0}, + [7484] = {.lex_state = 0}, + [7485] = {.lex_state = 315}, + [7486] = {.lex_state = 203}, + [7487] = {.lex_state = 185}, + [7488] = {.lex_state = 203}, + [7489] = {.lex_state = 0}, + [7490] = {.lex_state = 0}, [7491] = {.lex_state = 0}, - [7492] = {.lex_state = 202}, - [7493] = {.lex_state = 202}, - [7494] = {.lex_state = 202}, - [7495] = {.lex_state = 240}, - [7496] = {.lex_state = 240}, - [7497] = {.lex_state = 202}, - [7498] = {.lex_state = 202}, - [7499] = {.lex_state = 316}, - [7500] = {.lex_state = 316}, - [7501] = {.lex_state = 202}, - [7502] = {.lex_state = 202}, - [7503] = {.lex_state = 316}, - [7504] = {.lex_state = 240}, - [7505] = {.lex_state = 240}, - [7506] = {.lex_state = 202}, - [7507] = {.lex_state = 202}, - [7508] = {.lex_state = 240}, - [7509] = {.lex_state = 202}, - [7510] = {.lex_state = 202}, - [7511] = {.lex_state = 202}, - [7512] = {.lex_state = 240}, - [7513] = {.lex_state = 202}, - [7514] = {.lex_state = 202}, - [7515] = {.lex_state = 240}, - [7516] = {.lex_state = 0}, - [7517] = {.lex_state = 202}, - [7518] = {.lex_state = 240}, - [7519] = {.lex_state = 202}, - [7520] = {.lex_state = 202}, - [7521] = {.lex_state = 202}, - [7522] = {.lex_state = 202}, - [7523] = {.lex_state = 202}, - [7524] = {.lex_state = 202}, - [7525] = {.lex_state = 202}, - [7526] = {.lex_state = 185}, - [7527] = {.lex_state = 202}, - [7528] = {.lex_state = 202}, - [7529] = {.lex_state = 202}, - [7530] = {.lex_state = 204}, - [7531] = {.lex_state = 185}, - [7532] = {.lex_state = 185}, - [7533] = {.lex_state = 202}, - [7534] = {.lex_state = 185}, - [7535] = {.lex_state = 202}, - [7536] = {.lex_state = 202}, - [7537] = {.lex_state = 202}, - [7538] = {.lex_state = 202}, - [7539] = {.lex_state = 202}, - [7540] = {.lex_state = 202}, - [7541] = {.lex_state = 185}, - [7542] = {.lex_state = 316}, - [7543] = {.lex_state = 202}, - [7544] = {.lex_state = 202}, - [7545] = {.lex_state = 175}, - [7546] = {.lex_state = 202}, - [7547] = {.lex_state = 202}, - [7548] = {.lex_state = 175}, - [7549] = {.lex_state = 202}, - [7550] = {.lex_state = 316}, - [7551] = {.lex_state = 202}, - [7552] = {.lex_state = 202}, - [7553] = {.lex_state = 202}, - [7554] = {.lex_state = 202}, - [7555] = {.lex_state = 202}, - [7556] = {.lex_state = 202}, - [7557] = {.lex_state = 202}, - [7558] = {.lex_state = 202}, - [7559] = {.lex_state = 202}, - [7560] = {.lex_state = 316}, - [7561] = {.lex_state = 202}, - [7562] = {.lex_state = 202}, - [7563] = {.lex_state = 240}, - [7564] = {.lex_state = 204}, - [7565] = {.lex_state = 316}, - [7566] = {.lex_state = 202}, - [7567] = {.lex_state = 202}, - [7568] = {.lex_state = 202}, - [7569] = {.lex_state = 202}, - [7570] = {.lex_state = 202}, - [7571] = {.lex_state = 202}, - [7572] = {.lex_state = 202}, - [7573] = {.lex_state = 202}, - [7574] = {.lex_state = 202}, - [7575] = {.lex_state = 202}, - [7576] = {.lex_state = 316}, - [7577] = {.lex_state = 316}, - [7578] = {.lex_state = 202}, - [7579] = {.lex_state = 185}, - [7580] = {.lex_state = 202}, - [7581] = {.lex_state = 185}, - [7582] = {.lex_state = 175}, - [7583] = {.lex_state = 185}, - [7584] = {.lex_state = 316}, - [7585] = {.lex_state = 185}, - [7586] = {.lex_state = 316}, - [7587] = {.lex_state = 175}, - [7588] = {.lex_state = 185}, - [7589] = {.lex_state = 316}, - [7590] = {.lex_state = 185}, - [7591] = {.lex_state = 202}, - [7592] = {.lex_state = 202}, - [7593] = {.lex_state = 316}, - [7594] = {.lex_state = 106}, + [7492] = {.lex_state = 0}, + [7493] = {.lex_state = 0}, + [7494] = {.lex_state = 108}, + [7495] = {.lex_state = 203}, + [7496] = {.lex_state = 0}, + [7497] = {.lex_state = 203}, + [7498] = {.lex_state = 108}, + [7499] = {.lex_state = 0}, + [7500] = {.lex_state = 0}, + [7501] = {.lex_state = 0, .external_lex_state = 2}, + [7502] = {.lex_state = 0}, + [7503] = {.lex_state = 0}, + [7504] = {.lex_state = 0}, + [7505] = {.lex_state = 0}, + [7506] = {.lex_state = 203}, + [7507] = {.lex_state = 203}, + [7508] = {.lex_state = 203}, + [7509] = {.lex_state = 0}, + [7510] = {.lex_state = 0}, + [7511] = {.lex_state = 0, .external_lex_state = 2}, + [7512] = {.lex_state = 203}, + [7513] = {.lex_state = 0}, + [7514] = {.lex_state = 0}, + [7515] = {.lex_state = 0}, + [7516] = {.lex_state = 185}, + [7517] = {.lex_state = 0, .external_lex_state = 2}, + [7518] = {.lex_state = 0}, + [7519] = {.lex_state = 0, .external_lex_state = 2}, + [7520] = {.lex_state = 0}, + [7521] = {.lex_state = 0, .external_lex_state = 2}, + [7522] = {.lex_state = 0}, + [7523] = {.lex_state = 0, .external_lex_state = 2}, + [7524] = {.lex_state = 0}, + [7525] = {.lex_state = 0, .external_lex_state = 2}, + [7526] = {.lex_state = 0}, + [7527] = {.lex_state = 0, .external_lex_state = 2}, + [7528] = {.lex_state = 0}, + [7529] = {.lex_state = 0, .external_lex_state = 2}, + [7530] = {.lex_state = 108}, + [7531] = {.lex_state = 0}, + [7532] = {.lex_state = 0}, + [7533] = {.lex_state = 315}, + [7534] = {.lex_state = 203}, + [7535] = {.lex_state = 315}, + [7536] = {.lex_state = 315}, + [7537] = {.lex_state = 0}, + [7538] = {.lex_state = 315}, + [7539] = {.lex_state = 315}, + [7540] = {.lex_state = 0}, + [7541] = {.lex_state = 315}, + [7542] = {.lex_state = 315}, + [7543] = {.lex_state = 315}, + [7544] = {.lex_state = 108}, + [7545] = {.lex_state = 185}, + [7546] = {.lex_state = 172}, + [7547] = {.lex_state = 0}, + [7548] = {.lex_state = 315}, + [7549] = {.lex_state = 315}, + [7550] = {.lex_state = 0}, + [7551] = {.lex_state = 0}, + [7552] = {.lex_state = 203}, + [7553] = {.lex_state = 0}, + [7554] = {.lex_state = 0}, + [7555] = {.lex_state = 0}, + [7556] = {.lex_state = 0}, + [7557] = {.lex_state = 203}, + [7558] = {.lex_state = 0}, + [7559] = {.lex_state = 315}, + [7560] = {.lex_state = 0}, + [7561] = {.lex_state = 203}, + [7562] = {.lex_state = 203}, + [7563] = {.lex_state = 0}, + [7564] = {.lex_state = 0}, + [7565] = {.lex_state = 315}, + [7566] = {.lex_state = 0, .external_lex_state = 3}, + [7567] = {.lex_state = 0}, + [7568] = {.lex_state = 0}, + [7569] = {.lex_state = 0}, + [7570] = {.lex_state = 315}, + [7571] = {.lex_state = 0}, + [7572] = {.lex_state = 0}, + [7573] = {.lex_state = 203}, + [7574] = {.lex_state = 0}, + [7575] = {.lex_state = 0}, + [7576] = {.lex_state = 203}, + [7577] = {.lex_state = 0}, + [7578] = {.lex_state = 0}, + [7579] = {.lex_state = 0}, + [7580] = {.lex_state = 203}, + [7581] = {.lex_state = 0}, + [7582] = {.lex_state = 0}, + [7583] = {.lex_state = 203}, + [7584] = {.lex_state = 0}, + [7585] = {.lex_state = 0, .external_lex_state = 3}, + [7586] = {.lex_state = 0}, + [7587] = {.lex_state = 0}, + [7588] = {.lex_state = 172}, + [7589] = {.lex_state = 315}, + [7590] = {.lex_state = 172}, + [7591] = {.lex_state = 0}, + [7592] = {.lex_state = 0}, + [7593] = {.lex_state = 203}, + [7594] = {.lex_state = 315}, [7595] = {.lex_state = 0}, - [7596] = {.lex_state = 185}, - [7597] = {.lex_state = 202}, - [7598] = {.lex_state = 185}, - [7599] = {.lex_state = 175}, - [7600] = {.lex_state = 202}, - [7601] = {.lex_state = 185}, - [7602] = {.lex_state = 316}, - [7603] = {.lex_state = 185}, - [7604] = {.lex_state = 316}, - [7605] = {.lex_state = 240}, - [7606] = {.lex_state = 316}, - [7607] = {.lex_state = 316}, - [7608] = {.lex_state = 316}, - [7609] = {.lex_state = 185}, - [7610] = {.lex_state = 316}, - [7611] = {.lex_state = 185}, - [7612] = {.lex_state = 316}, - [7613] = {.lex_state = 175}, - [7614] = {.lex_state = 185}, + [7596] = {.lex_state = 0}, + [7597] = {.lex_state = 0}, + [7598] = {.lex_state = 0}, + [7599] = {.lex_state = 0}, + [7600] = {.lex_state = 203}, + [7601] = {.lex_state = 203}, + [7602] = {.lex_state = 185}, + [7603] = {.lex_state = 203}, + [7604] = {.lex_state = 0}, + [7605] = {.lex_state = 170}, + [7606] = {.lex_state = 108}, + [7607] = {.lex_state = 0}, + [7608] = {.lex_state = 0}, + [7609] = {.lex_state = 108}, + [7610] = {.lex_state = 0}, + [7611] = {.lex_state = 172}, + [7612] = {.lex_state = 0}, + [7613] = {.lex_state = 0}, + [7614] = {.lex_state = 193}, [7615] = {.lex_state = 0}, - [7616] = {.lex_state = 202}, - [7617] = {.lex_state = 202}, - [7618] = {.lex_state = 0}, - [7619] = {.lex_state = 202}, - [7620] = {.lex_state = 316}, - [7621] = {.lex_state = 202}, - [7622] = {.lex_state = 185}, - [7623] = {.lex_state = 316}, - [7624] = {.lex_state = 185}, - [7625] = {.lex_state = 185}, - [7626] = {.lex_state = 316}, - [7627] = {.lex_state = 316}, - [7628] = {.lex_state = 185}, - [7629] = {.lex_state = 316}, - [7630] = {.lex_state = 202}, - [7631] = {.lex_state = 185}, - [7632] = {.lex_state = 202}, - [7633] = {.lex_state = 202}, - [7634] = {.lex_state = 202}, - [7635] = {.lex_state = 316}, - [7636] = {.lex_state = 202}, - [7637] = {.lex_state = 185}, - [7638] = {.lex_state = 185}, - [7639] = {.lex_state = 316}, - [7640] = {.lex_state = 202}, - [7641] = {.lex_state = 202}, - [7642] = {.lex_state = 202}, - [7643] = {.lex_state = 202}, - [7644] = {.lex_state = 202}, - [7645] = {.lex_state = 185}, - [7646] = {.lex_state = 202}, - [7647] = {.lex_state = 202}, - [7648] = {.lex_state = 202}, - [7649] = {.lex_state = 185}, - [7650] = {.lex_state = 240}, - [7651] = {.lex_state = 111}, - [7652] = {.lex_state = 185}, + [7616] = {.lex_state = 315}, + [7617] = {.lex_state = 315}, + [7618] = {.lex_state = 315}, + [7619] = {.lex_state = 0}, + [7620] = {.lex_state = 0}, + [7621] = {.lex_state = 170}, + [7622] = {.lex_state = 315}, + [7623] = {.lex_state = 172}, + [7624] = {.lex_state = 0}, + [7625] = {.lex_state = 0}, + [7626] = {.lex_state = 174}, + [7627] = {.lex_state = 203}, + [7628] = {.lex_state = 170}, + [7629] = {.lex_state = 315}, + [7630] = {.lex_state = 170}, + [7631] = {.lex_state = 170}, + [7632] = {.lex_state = 315}, + [7633] = {.lex_state = 0}, + [7634] = {.lex_state = 0}, + [7635] = {.lex_state = 0}, + [7636] = {.lex_state = 0}, + [7637] = {.lex_state = 0}, + [7638] = {.lex_state = 0}, + [7639] = {.lex_state = 173}, + [7640] = {.lex_state = 0}, + [7641] = {.lex_state = 0}, + [7642] = {.lex_state = 0}, + [7643] = {.lex_state = 203}, + [7644] = {.lex_state = 203}, + [7645] = {.lex_state = 203}, + [7646] = {.lex_state = 172}, + [7647] = {.lex_state = 203}, + [7648] = {.lex_state = 172}, + [7649] = {.lex_state = 0}, + [7650] = {.lex_state = 0}, + [7651] = {.lex_state = 0}, + [7652] = {.lex_state = 203}, [7653] = {.lex_state = 0}, - [7654] = {.lex_state = 175}, - [7655] = {.lex_state = 316}, - [7656] = {.lex_state = 185}, - [7657] = {.lex_state = 0}, - [7658] = {.lex_state = 185}, - [7659] = {.lex_state = 316}, - [7660] = {.lex_state = 185}, - [7661] = {.lex_state = 316}, - [7662] = {.lex_state = 111}, - [7663] = {.lex_state = 316}, - [7664] = {.lex_state = 316}, - [7665] = {.lex_state = 175}, - [7666] = {.lex_state = 106}, - [7667] = {.lex_state = 185}, - [7668] = {.lex_state = 175}, - [7669] = {.lex_state = 316}, - [7670] = {.lex_state = 111}, - [7671] = {.lex_state = 202}, - [7672] = {.lex_state = 202}, - [7673] = {.lex_state = 202}, - [7674] = {.lex_state = 111}, - [7675] = {.lex_state = 202}, - [7676] = {.lex_state = 185}, - [7677] = {.lex_state = 185}, - [7678] = {.lex_state = 185}, - [7679] = {.lex_state = 185}, - [7680] = {.lex_state = 316}, - [7681] = {.lex_state = 111}, - [7682] = {.lex_state = 316}, - [7683] = {.lex_state = 175}, - [7684] = {.lex_state = 202}, - [7685] = {.lex_state = 185}, - [7686] = {.lex_state = 185}, - [7687] = {.lex_state = 175}, - [7688] = {.lex_state = 316}, - [7689] = {.lex_state = 185}, - [7690] = {.lex_state = 175}, - [7691] = {.lex_state = 185}, - [7692] = {.lex_state = 185}, - [7693] = {.lex_state = 175}, - [7694] = {.lex_state = 316}, - [7695] = {.lex_state = 240}, - [7696] = {.lex_state = 202}, - [7697] = {.lex_state = 185}, - [7698] = {.lex_state = 185}, - [7699] = {.lex_state = 106}, - [7700] = {.lex_state = 185}, - [7701] = {.lex_state = 316}, - [7702] = {.lex_state = 185}, - [7703] = {.lex_state = 111}, - [7704] = {.lex_state = 202}, - [7705] = {.lex_state = 185}, - [7706] = {.lex_state = 202}, - [7707] = {.lex_state = 316}, - [7708] = {.lex_state = 185}, - [7709] = {.lex_state = 202}, - [7710] = {.lex_state = 185}, - [7711] = {.lex_state = 185}, - [7712] = {.lex_state = 185}, - [7713] = {.lex_state = 0}, - [7714] = {.lex_state = 202}, - [7715] = {.lex_state = 0}, - [7716] = {.lex_state = 316}, - [7717] = {.lex_state = 316}, - [7718] = {.lex_state = 185}, - [7719] = {.lex_state = 175}, - [7720] = {.lex_state = 316}, - [7721] = {.lex_state = 202}, - [7722] = {.lex_state = 185}, - [7723] = {.lex_state = 202}, - [7724] = {.lex_state = 202}, - [7725] = {.lex_state = 202}, - [7726] = {.lex_state = 202}, - [7727] = {.lex_state = 185}, - [7728] = {.lex_state = 316}, - [7729] = {.lex_state = 316}, - [7730] = {.lex_state = 175}, - [7731] = {.lex_state = 185}, - [7732] = {.lex_state = 240}, - [7733] = {.lex_state = 202}, - [7734] = {.lex_state = 316}, - [7735] = {.lex_state = 316}, - [7736] = {.lex_state = 202}, - [7737] = {.lex_state = 185}, - [7738] = {.lex_state = 185}, - [7739] = {.lex_state = 202}, - [7740] = {.lex_state = 240}, - [7741] = {.lex_state = 202}, - [7742] = {.lex_state = 185}, - [7743] = {.lex_state = 185}, - [7744] = {.lex_state = 202}, - [7745] = {.lex_state = 185}, - [7746] = {.lex_state = 185}, - [7747] = {.lex_state = 202}, - [7748] = {.lex_state = 175}, - [7749] = {.lex_state = 202}, - [7750] = {.lex_state = 202}, - [7751] = {.lex_state = 175}, - [7752] = {.lex_state = 202}, - [7753] = {.lex_state = 202}, - [7754] = {.lex_state = 202}, - [7755] = {.lex_state = 185}, - [7756] = {.lex_state = 0}, - [7757] = {.lex_state = 175}, - [7758] = {.lex_state = 202}, - [7759] = {.lex_state = 185}, - [7760] = {.lex_state = 202}, - [7761] = {.lex_state = 185}, - [7762] = {.lex_state = 202}, - [7763] = {.lex_state = 202}, - [7764] = {.lex_state = 111}, - [7765] = {.lex_state = 202}, - [7766] = {.lex_state = 202}, - [7767] = {.lex_state = 202}, - [7768] = {.lex_state = 111}, - [7769] = {.lex_state = 185}, - [7770] = {.lex_state = 202}, - [7771] = {.lex_state = 240}, - [7772] = {.lex_state = 185}, - [7773] = {.lex_state = 202}, - [7774] = {.lex_state = 202}, - [7775] = {.lex_state = 111}, - [7776] = {.lex_state = 202}, - [7777] = {.lex_state = 202}, - [7778] = {.lex_state = 202}, - [7779] = {.lex_state = 185}, - [7780] = {.lex_state = 202}, - [7781] = {.lex_state = 202}, - [7782] = {.lex_state = 185}, - [7783] = {.lex_state = 202}, - [7784] = {.lex_state = 202}, - [7785] = {.lex_state = 185}, - [7786] = {.lex_state = 185}, - [7787] = {.lex_state = 202}, - [7788] = {.lex_state = 202}, - [7789] = {.lex_state = 202}, - [7790] = {.lex_state = 202}, - [7791] = {.lex_state = 316}, - [7792] = {.lex_state = 202}, - [7793] = {.lex_state = 111}, - [7794] = {.lex_state = 175}, - [7795] = {.lex_state = 240}, + [7654] = {.lex_state = 0}, + [7655] = {.lex_state = 0}, + [7656] = {.lex_state = 0}, + [7657] = {.lex_state = 315}, + [7658] = {.lex_state = 0}, + [7659] = {.lex_state = 0}, + [7660] = {.lex_state = 0}, + [7661] = {.lex_state = 0}, + [7662] = {.lex_state = 0}, + [7663] = {.lex_state = 0}, + [7664] = {.lex_state = 0}, + [7665] = {.lex_state = 0}, + [7666] = {.lex_state = 315}, + [7667] = {.lex_state = 0}, + [7668] = {.lex_state = 203}, + [7669] = {.lex_state = 185}, + [7670] = {.lex_state = 0}, + [7671] = {.lex_state = 0}, + [7672] = {.lex_state = 0}, + [7673] = {.lex_state = 0}, + [7674] = {.lex_state = 0}, + [7675] = {.lex_state = 108}, + [7676] = {.lex_state = 0}, + [7677] = {.lex_state = 0}, + [7678] = {.lex_state = 0}, + [7679] = {.lex_state = 0}, + [7680] = {.lex_state = 0}, + [7681] = {.lex_state = 0}, + [7682] = {.lex_state = 185}, + [7683] = {.lex_state = 0}, + [7684] = {.lex_state = 0}, + [7685] = {.lex_state = 0}, + [7686] = {.lex_state = 0}, + [7687] = {.lex_state = 203}, + [7688] = {.lex_state = 0}, + [7689] = {.lex_state = 0}, + [7690] = {.lex_state = 0}, + [7691] = {.lex_state = 0}, + [7692] = {.lex_state = 0}, + [7693] = {.lex_state = 0}, + [7694] = {.lex_state = 0}, + [7695] = {.lex_state = 203}, + [7696] = {.lex_state = 0}, + [7697] = {.lex_state = 0}, + [7698] = {.lex_state = 0}, + [7699] = {.lex_state = 0}, + [7700] = {.lex_state = 0}, + [7701] = {.lex_state = 0}, + [7702] = {.lex_state = 315}, + [7703] = {.lex_state = 315}, + [7704] = {.lex_state = 315}, + [7705] = {.lex_state = 0}, + [7706] = {.lex_state = 315}, + [7707] = {.lex_state = 0}, + [7708] = {.lex_state = 0}, + [7709] = {.lex_state = 108}, + [7710] = {.lex_state = 0}, + [7711] = {.lex_state = 203}, + [7712] = {.lex_state = 0}, + [7713] = {.lex_state = 315}, + [7714] = {.lex_state = 0}, + [7715] = {.lex_state = 108}, + [7716] = {.lex_state = 0}, + [7717] = {.lex_state = 172}, + [7718] = {.lex_state = 315}, + [7719] = {.lex_state = 0, .external_lex_state = 3}, + [7720] = {.lex_state = 315}, + [7721] = {.lex_state = 0}, + [7722] = {.lex_state = 0}, + [7723] = {.lex_state = 0}, + [7724] = {.lex_state = 0}, + [7725] = {.lex_state = 0}, + [7726] = {.lex_state = 0}, + [7727] = {.lex_state = 0}, + [7728] = {.lex_state = 185}, + [7729] = {.lex_state = 0}, + [7730] = {.lex_state = 0}, + [7731] = {.lex_state = 315}, + [7732] = {.lex_state = 315}, + [7733] = {.lex_state = 0}, + [7734] = {.lex_state = 315}, + [7735] = {.lex_state = 0}, + [7736] = {.lex_state = 0}, + [7737] = {.lex_state = 203}, + [7738] = {.lex_state = 203}, + [7739] = {.lex_state = 315}, + [7740] = {.lex_state = 108}, + [7741] = {.lex_state = 108}, + [7742] = {.lex_state = 315}, + [7743] = {.lex_state = 0, .external_lex_state = 3}, + [7744] = {.lex_state = 315}, + [7745] = {.lex_state = 0}, + [7746] = {.lex_state = 0}, + [7747] = {.lex_state = 0}, + [7748] = {.lex_state = 0}, + [7749] = {.lex_state = 0}, + [7750] = {.lex_state = 185}, + [7751] = {.lex_state = 172}, + [7752] = {.lex_state = 0}, + [7753] = {.lex_state = 315}, + [7754] = {.lex_state = 315}, + [7755] = {.lex_state = 0}, + [7756] = {.lex_state = 315}, + [7757] = {.lex_state = 0}, + [7758] = {.lex_state = 0}, + [7759] = {.lex_state = 203}, + [7760] = {.lex_state = 108}, + [7761] = {.lex_state = 315}, + [7762] = {.lex_state = 0}, + [7763] = {.lex_state = 0}, + [7764] = {.lex_state = 315}, + [7765] = {.lex_state = 0, .external_lex_state = 3}, + [7766] = {.lex_state = 0}, + [7767] = {.lex_state = 0}, + [7768] = {.lex_state = 203}, + [7769] = {.lex_state = 0}, + [7770] = {.lex_state = 0}, + [7771] = {.lex_state = 185}, + [7772] = {.lex_state = 172}, + [7773] = {.lex_state = 315}, + [7774] = {.lex_state = 315}, + [7775] = {.lex_state = 0}, + [7776] = {.lex_state = 315}, + [7777] = {.lex_state = 0}, + [7778] = {.lex_state = 0}, + [7779] = {.lex_state = 203}, + [7780] = {.lex_state = 315}, + [7781] = {.lex_state = 0}, + [7782] = {.lex_state = 0}, + [7783] = {.lex_state = 315}, + [7784] = {.lex_state = 0, .external_lex_state = 3}, + [7785] = {.lex_state = 0}, + [7786] = {.lex_state = 0}, + [7787] = {.lex_state = 0}, + [7788] = {.lex_state = 0}, + [7789] = {.lex_state = 0}, + [7790] = {.lex_state = 185}, + [7791] = {.lex_state = 0}, + [7792] = {.lex_state = 315}, + [7793] = {.lex_state = 0}, + [7794] = {.lex_state = 315}, + [7795] = {.lex_state = 0}, [7796] = {.lex_state = 185}, - [7797] = {.lex_state = 202}, - [7798] = {.lex_state = 185}, - [7799] = {.lex_state = 185}, - [7800] = {.lex_state = 185}, - [7801] = {.lex_state = 185}, - [7802] = {.lex_state = 106}, - [7803] = {.lex_state = 202}, - [7804] = {.lex_state = 111}, - [7805] = {.lex_state = 185}, - [7806] = {.lex_state = 185}, - [7807] = {.lex_state = 185}, - [7808] = {.lex_state = 185}, - [7809] = {.lex_state = 185}, + [7797] = {.lex_state = 203}, + [7798] = {.lex_state = 315}, + [7799] = {.lex_state = 315}, + [7800] = {.lex_state = 0, .external_lex_state = 3}, + [7801] = {.lex_state = 0}, + [7802] = {.lex_state = 0}, + [7803] = {.lex_state = 0}, + [7804] = {.lex_state = 0}, + [7805] = {.lex_state = 0}, + [7806] = {.lex_state = 315}, + [7807] = {.lex_state = 315}, + [7808] = {.lex_state = 0}, + [7809] = {.lex_state = 108}, [7810] = {.lex_state = 0}, - [7811] = {.lex_state = 185}, - [7812] = {.lex_state = 111}, - [7813] = {.lex_state = 185}, - [7814] = {.lex_state = 202}, - [7815] = {.lex_state = 202}, - [7816] = {.lex_state = 175}, - [7817] = {.lex_state = 240}, - [7818] = {.lex_state = 240}, - [7819] = {.lex_state = 185}, - [7820] = {.lex_state = 185}, - [7821] = {.lex_state = 185}, - [7822] = {.lex_state = 202}, - [7823] = {.lex_state = 316}, - [7824] = {.lex_state = 0}, - [7825] = {.lex_state = 202}, - [7826] = {.lex_state = 240}, - [7827] = {.lex_state = 185}, - [7828] = {.lex_state = 240}, - [7829] = {.lex_state = 175}, - [7830] = {.lex_state = 185}, - [7831] = {.lex_state = 202}, - [7832] = {.lex_state = 185}, - [7833] = {.lex_state = 202}, - [7834] = {.lex_state = 185}, - [7835] = {.lex_state = 185}, - [7836] = {.lex_state = 185}, - [7837] = {.lex_state = 202}, - [7838] = {.lex_state = 175}, - [7839] = {.lex_state = 202}, - [7840] = {.lex_state = 175}, - [7841] = {.lex_state = 202}, - [7842] = {.lex_state = 175}, - [7843] = {.lex_state = 175}, - [7844] = {.lex_state = 202}, - [7845] = {.lex_state = 185}, - [7846] = {.lex_state = 202}, - [7847] = {.lex_state = 202}, - [7848] = {.lex_state = 202}, - [7849] = {.lex_state = 202}, - [7850] = {.lex_state = 175}, - [7851] = {.lex_state = 202}, - [7852] = {.lex_state = 316}, - [7853] = {.lex_state = 202}, - [7854] = {.lex_state = 202}, - [7855] = {.lex_state = 202}, - [7856] = {.lex_state = 316}, - [7857] = {.lex_state = 202}, - [7858] = {.lex_state = 185}, - [7859] = {.lex_state = 202}, - [7860] = {.lex_state = 202}, + [7811] = {.lex_state = 315}, + [7812] = {.lex_state = 0, .external_lex_state = 3}, + [7813] = {.lex_state = 0}, + [7814] = {.lex_state = 0}, + [7815] = {.lex_state = 0}, + [7816] = {.lex_state = 0}, + [7817] = {.lex_state = 0}, + [7818] = {.lex_state = 315}, + [7819] = {.lex_state = 315}, + [7820] = {.lex_state = 0}, + [7821] = {.lex_state = 0, .external_lex_state = 2}, + [7822] = {.lex_state = 0}, + [7823] = {.lex_state = 315}, + [7824] = {.lex_state = 0, .external_lex_state = 3}, + [7825] = {.lex_state = 0}, + [7826] = {.lex_state = 0}, + [7827] = {.lex_state = 0}, + [7828] = {.lex_state = 0}, + [7829] = {.lex_state = 108}, + [7830] = {.lex_state = 315}, + [7831] = {.lex_state = 108}, + [7832] = {.lex_state = 0, .external_lex_state = 3}, + [7833] = {.lex_state = 0}, + [7834] = {.lex_state = 172}, + [7835] = {.lex_state = 0}, + [7836] = {.lex_state = 0}, + [7837] = {.lex_state = 0}, + [7838] = {.lex_state = 0, .external_lex_state = 3}, + [7839] = {.lex_state = 0}, + [7840] = {.lex_state = 0}, + [7841] = {.lex_state = 0, .external_lex_state = 3}, + [7842] = {.lex_state = 0}, + [7843] = {.lex_state = 0, .external_lex_state = 3}, + [7844] = {.lex_state = 0}, + [7845] = {.lex_state = 0, .external_lex_state = 3}, + [7846] = {.lex_state = 0}, + [7847] = {.lex_state = 0, .external_lex_state = 3}, + [7848] = {.lex_state = 0}, + [7849] = {.lex_state = 0, .external_lex_state = 3}, + [7850] = {.lex_state = 0}, + [7851] = {.lex_state = 0, .external_lex_state = 3}, + [7852] = {.lex_state = 0}, + [7853] = {.lex_state = 0}, + [7854] = {.lex_state = 0}, + [7855] = {.lex_state = 315}, + [7856] = {.lex_state = 315}, + [7857] = {.lex_state = 203}, + [7858] = {.lex_state = 0}, + [7859] = {.lex_state = 0}, + [7860] = {.lex_state = 0}, [7861] = {.lex_state = 0}, - [7862] = {.lex_state = 202}, - [7863] = {.lex_state = 202}, - [7864] = {.lex_state = 204}, - [7865] = {.lex_state = 202}, - [7866] = {.lex_state = 111}, - [7867] = {.lex_state = 202}, - [7868] = {.lex_state = 202}, - [7869] = {.lex_state = 111}, - [7870] = {.lex_state = 202}, - [7871] = {.lex_state = 175}, - [7872] = {.lex_state = 202}, - [7873] = {.lex_state = 202}, - [7874] = {.lex_state = 111}, - [7875] = {.lex_state = 316}, - [7876] = {.lex_state = 202}, - [7877] = {.lex_state = 202}, - [7878] = {.lex_state = 202}, - [7879] = {.lex_state = 106}, - [7880] = {.lex_state = 202}, + [7862] = {.lex_state = 108}, + [7863] = {.lex_state = 108}, + [7864] = {.lex_state = 0}, + [7865] = {.lex_state = 108}, + [7866] = {.lex_state = 203}, + [7867] = {.lex_state = 0}, + [7868] = {.lex_state = 0}, + [7869] = {.lex_state = 0}, + [7870] = {.lex_state = 0}, + [7871] = {.lex_state = 203}, + [7872] = {.lex_state = 0, .external_lex_state = 3}, + [7873] = {.lex_state = 0}, + [7874] = {.lex_state = 172}, + [7875] = {.lex_state = 0}, + [7876] = {.lex_state = 0}, + [7877] = {.lex_state = 0}, + [7878] = {.lex_state = 0}, + [7879] = {.lex_state = 203}, + [7880] = {.lex_state = 0}, [7881] = {.lex_state = 0}, - [7882] = {.lex_state = 185}, - [7883] = {.lex_state = 316}, - [7884] = {.lex_state = 185}, - [7885] = {.lex_state = 202}, - [7886] = {.lex_state = 202}, - [7887] = {.lex_state = 185}, - [7888] = {.lex_state = 175}, - [7889] = {.lex_state = 185}, - [7890] = {.lex_state = 316}, - [7891] = {.lex_state = 202}, - [7892] = {.lex_state = 106}, - [7893] = {.lex_state = 202}, - [7894] = {.lex_state = 175}, - [7895] = {.lex_state = 316}, - [7896] = {.lex_state = 202}, - [7897] = {.lex_state = 202}, - [7898] = {.lex_state = 202}, - [7899] = {.lex_state = 111}, - [7900] = {.lex_state = 202}, - [7901] = {.lex_state = 202}, - [7902] = {.lex_state = 202}, - [7903] = {.lex_state = 202}, - [7904] = {.lex_state = 202}, - [7905] = {.lex_state = 202}, - [7906] = {.lex_state = 202}, - [7907] = {.lex_state = 175}, - [7908] = {.lex_state = 202}, - [7909] = {.lex_state = 202}, - [7910] = {.lex_state = 185}, - [7911] = {.lex_state = 202}, - [7912] = {.lex_state = 202}, - [7913] = {.lex_state = 202}, - [7914] = {.lex_state = 185}, - [7915] = {.lex_state = 316}, - [7916] = {.lex_state = 202}, - [7917] = {.lex_state = 202}, - [7918] = {.lex_state = 111}, - [7919] = {.lex_state = 185}, - [7920] = {.lex_state = 111}, - [7921] = {.lex_state = 111}, - [7922] = {.lex_state = 202}, - [7923] = {.lex_state = 111}, - [7924] = {.lex_state = 202}, - [7925] = {.lex_state = 202}, - [7926] = {.lex_state = 202}, - [7927] = {.lex_state = 185}, - [7928] = {.lex_state = 175}, + [7882] = {.lex_state = 203}, + [7883] = {.lex_state = 0}, + [7884] = {.lex_state = 0}, + [7885] = {.lex_state = 315}, + [7886] = {.lex_state = 203}, + [7887] = {.lex_state = 203}, + [7888] = {.lex_state = 185}, + [7889] = {.lex_state = 0}, + [7890] = {.lex_state = 172}, + [7891] = {.lex_state = 0}, + [7892] = {.lex_state = 0}, + [7893] = {.lex_state = 0}, + [7894] = {.lex_state = 0}, + [7895] = {.lex_state = 0}, + [7896] = {.lex_state = 315}, + [7897] = {.lex_state = 108}, + [7898] = {.lex_state = 108}, + [7899] = {.lex_state = 315}, + [7900] = {.lex_state = 0}, + [7901] = {.lex_state = 0}, + [7902] = {.lex_state = 0}, + [7903] = {.lex_state = 0}, + [7904] = {.lex_state = 0}, + [7905] = {.lex_state = 0}, + [7906] = {.lex_state = 0}, + [7907] = {.lex_state = 172}, + [7908] = {.lex_state = 0}, + [7909] = {.lex_state = 0}, + [7910] = {.lex_state = 0}, + [7911] = {.lex_state = 0}, + [7912] = {.lex_state = 0}, + [7913] = {.lex_state = 172}, + [7914] = {.lex_state = 315}, + [7915] = {.lex_state = 0}, + [7916] = {.lex_state = 0}, + [7917] = {.lex_state = 0}, + [7918] = {.lex_state = 0}, + [7919] = {.lex_state = 0}, + [7920] = {.lex_state = 0}, + [7921] = {.lex_state = 108}, + [7922] = {.lex_state = 0}, + [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 = 202}, - [7931] = {.lex_state = 111}, - [7932] = {.lex_state = 202}, - [7933] = {.lex_state = 316}, - [7934] = {.lex_state = 185}, - [7935] = {.lex_state = 202}, - [7936] = {.lex_state = 202}, - [7937] = {.lex_state = 185}, - [7938] = {.lex_state = 185}, - [7939] = {.lex_state = 185}, - [7940] = {.lex_state = 316}, - [7941] = {.lex_state = 111}, - [7942] = {.lex_state = 202}, - [7943] = {.lex_state = 202}, - [7944] = {.lex_state = 202}, - [7945] = {.lex_state = 106}, - [7946] = {.lex_state = 111}, - [7947] = {.lex_state = 185}, - [7948] = {.lex_state = 185}, - [7949] = {.lex_state = 202}, + [7930] = {.lex_state = 172}, + [7931] = {.lex_state = 172}, + [7932] = {.lex_state = 315}, + [7933] = {.lex_state = 315}, + [7934] = {.lex_state = 203}, + [7935] = {.lex_state = 0}, + [7936] = {.lex_state = 203}, + [7937] = {.lex_state = 108}, + [7938] = {.lex_state = 203}, + [7939] = {.lex_state = 0, .external_lex_state = 3}, + [7940] = {.lex_state = 0}, + [7941] = {.lex_state = 0}, + [7942] = {.lex_state = 203}, + [7943] = {.lex_state = 315}, + [7944] = {.lex_state = 315}, + [7945] = {.lex_state = 203}, + [7946] = {.lex_state = 0}, + [7947] = {.lex_state = 0}, + [7948] = {.lex_state = 203}, + [7949] = {.lex_state = 0, .external_lex_state = 3}, [7950] = {.lex_state = 0}, - [7951] = {.lex_state = 316}, + [7951] = {.lex_state = 0}, [7952] = {.lex_state = 0}, - [7953] = {.lex_state = 316}, - [7954] = {.lex_state = 185}, - [7955] = {.lex_state = 202}, - [7956] = {.lex_state = 106}, - [7957] = {.lex_state = 185}, - [7958] = {.lex_state = 316}, - [7959] = {.lex_state = 202}, - [7960] = {.lex_state = 202}, - [7961] = {.lex_state = 202}, - [7962] = {.lex_state = 202}, - [7963] = {.lex_state = 185}, - [7964] = {.lex_state = 111}, - [7965] = {.lex_state = 202}, - [7966] = {.lex_state = 185}, - [7967] = {.lex_state = 202}, - [7968] = {.lex_state = 111}, - [7969] = {.lex_state = 111}, - [7970] = {.lex_state = 202}, - [7971] = {.lex_state = 185}, - [7972] = {.lex_state = 111}, + [7953] = {.lex_state = 315}, + [7954] = {.lex_state = 315}, + [7955] = {.lex_state = 203}, + [7956] = {.lex_state = 0}, + [7957] = {.lex_state = 0}, + [7958] = {.lex_state = 203}, + [7959] = {.lex_state = 0, .external_lex_state = 3}, + [7960] = {.lex_state = 315}, + [7961] = {.lex_state = 203}, + [7962] = {.lex_state = 203}, + [7963] = {.lex_state = 315}, + [7964] = {.lex_state = 203}, + [7965] = {.lex_state = 0}, + [7966] = {.lex_state = 203}, + [7967] = {.lex_state = 203}, + [7968] = {.lex_state = 0, .external_lex_state = 3}, + [7969] = {.lex_state = 0}, + [7970] = {.lex_state = 0}, + [7971] = {.lex_state = 315}, + [7972] = {.lex_state = 203}, [7973] = {.lex_state = 0}, - [7974] = {.lex_state = 111}, - [7975] = {.lex_state = 185}, - [7976] = {.lex_state = 175}, - [7977] = {.lex_state = 0}, - [7978] = {.lex_state = 316}, - [7979] = {.lex_state = 111}, - [7980] = {.lex_state = 185}, - [7981] = {.lex_state = 240}, - [7982] = {.lex_state = 111}, - [7983] = {.lex_state = 111}, - [7984] = {.lex_state = 202}, - [7985] = {.lex_state = 111}, - [7986] = {.lex_state = 175}, - [7987] = {.lex_state = 0}, - [7988] = {.lex_state = 202}, - [7989] = {.lex_state = 111}, - [7990] = {.lex_state = 202}, - [7991] = {.lex_state = 111}, + [7974] = {.lex_state = 203}, + [7975] = {.lex_state = 0, .external_lex_state = 3}, + [7976] = {.lex_state = 0}, + [7977] = {.lex_state = 315}, + [7978] = {.lex_state = 203}, + [7979] = {.lex_state = 0}, + [7980] = {.lex_state = 203}, + [7981] = {.lex_state = 0, .external_lex_state = 3}, + [7982] = {.lex_state = 0}, + [7983] = {.lex_state = 315}, + [7984] = {.lex_state = 203}, + [7985] = {.lex_state = 0}, + [7986] = {.lex_state = 203}, + [7987] = {.lex_state = 0, .external_lex_state = 3}, + [7988] = {.lex_state = 0}, + [7989] = {.lex_state = 108}, + [7990] = {.lex_state = 203}, + [7991] = {.lex_state = 0, .external_lex_state = 3}, [7992] = {.lex_state = 0}, [7993] = {.lex_state = 0}, - [7994] = {.lex_state = 202}, - [7995] = {.lex_state = 111}, - [7996] = {.lex_state = 106}, - [7997] = {.lex_state = 111}, - [7998] = {.lex_state = 202}, - [7999] = {.lex_state = 316}, - [8000] = {.lex_state = 202}, - [8001] = {.lex_state = 111}, - [8002] = {.lex_state = 202}, - [8003] = {.lex_state = 316}, - [8004] = {.lex_state = 202}, - [8005] = {.lex_state = 111}, - [8006] = {.lex_state = 111}, - [8007] = {.lex_state = 0}, - [8008] = {.lex_state = 202}, + [7994] = {.lex_state = 0, .external_lex_state = 3}, + [7995] = {.lex_state = 108}, + [7996] = {.lex_state = 0, .external_lex_state = 3}, + [7997] = {.lex_state = 203}, + [7998] = {.lex_state = 0, .external_lex_state = 3}, + [7999] = {.lex_state = 0}, + [8000] = {.lex_state = 0, .external_lex_state = 3}, + [8001] = {.lex_state = 0}, + [8002] = {.lex_state = 0, .external_lex_state = 3}, + [8003] = {.lex_state = 0}, + [8004] = {.lex_state = 0, .external_lex_state = 3}, + [8005] = {.lex_state = 315}, + [8006] = {.lex_state = 0, .external_lex_state = 3}, + [8007] = {.lex_state = 315}, + [8008] = {.lex_state = 315}, [8009] = {.lex_state = 0}, - [8010] = {.lex_state = 0}, - [8011] = {.lex_state = 0}, + [8010] = {.lex_state = 315}, + [8011] = {.lex_state = 315}, [8012] = {.lex_state = 0}, - [8013] = {.lex_state = 0}, - [8014] = {.lex_state = 0}, + [8013] = {.lex_state = 315}, + [8014] = {.lex_state = 315}, [8015] = {.lex_state = 0}, - [8016] = {.lex_state = 0}, - [8017] = {.lex_state = 0}, + [8016] = {.lex_state = 315}, + [8017] = {.lex_state = 315}, [8018] = {.lex_state = 0}, - [8019] = {.lex_state = 0}, - [8020] = {.lex_state = 0}, - [8021] = {.lex_state = 202}, - [8022] = {.lex_state = 316}, - [8023] = {.lex_state = 0}, - [8024] = {.lex_state = 0}, - [8025] = {.lex_state = 0}, - [8026] = {.lex_state = 0}, - [8027] = {.lex_state = 202}, - [8028] = {.lex_state = 185}, - [8029] = {.lex_state = 185}, - [8030] = {.lex_state = 0}, - [8031] = {.lex_state = 0}, - [8032] = {.lex_state = 0}, - [8033] = {.lex_state = 202}, - [8034] = {.lex_state = 202}, + [8019] = {.lex_state = 315}, + [8020] = {.lex_state = 315}, + [8021] = {.lex_state = 0}, + [8022] = {.lex_state = 315}, + [8023] = {.lex_state = 315}, + [8024] = {.lex_state = 315}, + [8025] = {.lex_state = 315}, + [8026] = {.lex_state = 315}, + [8027] = {.lex_state = 315}, + [8028] = {.lex_state = 315}, + [8029] = {.lex_state = 315}, + [8030] = {.lex_state = 315}, + [8031] = {.lex_state = 315}, + [8032] = {.lex_state = 315}, + [8033] = {.lex_state = 0}, + [8034] = {.lex_state = 0}, [8035] = {.lex_state = 0}, [8036] = {.lex_state = 0}, - [8037] = {.lex_state = 0}, - [8038] = {.lex_state = 0}, - [8039] = {.lex_state = 185}, - [8040] = {.lex_state = 0}, - [8041] = {.lex_state = 202}, - [8042] = {.lex_state = 202}, - [8043] = {.lex_state = 202}, - [8044] = {.lex_state = 202}, - [8045] = {.lex_state = 0}, - [8046] = {.lex_state = 0}, - [8047] = {.lex_state = 0}, - [8048] = {.lex_state = 0}, - [8049] = {.lex_state = 0}, - [8050] = {.lex_state = 0}, - [8051] = {.lex_state = 185}, - [8052] = {.lex_state = 185}, - [8053] = {.lex_state = 202}, - [8054] = {.lex_state = 0}, - [8055] = {.lex_state = 0}, - [8056] = {.lex_state = 0}, - [8057] = {.lex_state = 0}, - [8058] = {.lex_state = 0}, - [8059] = {.lex_state = 0}, - [8060] = {.lex_state = 202}, - [8061] = {.lex_state = 0}, - [8062] = {.lex_state = 0}, - [8063] = {.lex_state = 0}, - [8064] = {.lex_state = 202}, - [8065] = {.lex_state = 0}, - [8066] = {.lex_state = 0}, - [8067] = {.lex_state = 0}, - [8068] = {.lex_state = 0}, - [8069] = {.lex_state = 185}, - [8070] = {.lex_state = 0}, - [8071] = {.lex_state = 185}, - [8072] = {.lex_state = 0}, - [8073] = {.lex_state = 0}, - [8074] = {.lex_state = 202}, - [8075] = {.lex_state = 202}, - [8076] = {.lex_state = 316}, - [8077] = {.lex_state = 0}, - [8078] = {.lex_state = 0}, - [8079] = {.lex_state = 0}, - [8080] = {.lex_state = 0}, - [8081] = {.lex_state = 185}, - [8082] = {.lex_state = 185}, - [8083] = {.lex_state = 202}, - [8084] = {.lex_state = 0}, - [8085] = {.lex_state = 0}, - [8086] = {.lex_state = 0}, - [8087] = {.lex_state = 0}, - [8088] = {.lex_state = 0}, - [8089] = {.lex_state = 0}, - [8090] = {.lex_state = 0}, - [8091] = {.lex_state = 202}, - [8092] = {.lex_state = 0}, - [8093] = {.lex_state = 0}, - [8094] = {.lex_state = 316}, - [8095] = {.lex_state = 0}, - [8096] = {.lex_state = 0}, - [8097] = {.lex_state = 0}, - [8098] = {.lex_state = 202}, - [8099] = {.lex_state = 0}, - [8100] = {.lex_state = 0}, - [8101] = {.lex_state = 0}, - [8102] = {.lex_state = 0}, - [8103] = {.lex_state = 0}, - [8104] = {.lex_state = 202}, - [8105] = {.lex_state = 0}, - [8106] = {.lex_state = 0}, - [8107] = {.lex_state = 202}, - [8108] = {.lex_state = 0}, - [8109] = {.lex_state = 108}, - [8110] = {.lex_state = 0}, - [8111] = {.lex_state = 0}, - [8112] = {.lex_state = 202}, - [8113] = {.lex_state = 0}, - [8114] = {.lex_state = 0}, - [8115] = {.lex_state = 0}, - [8116] = {.lex_state = 185}, - [8117] = {.lex_state = 0}, - [8118] = {.lex_state = 0}, - [8119] = {.lex_state = 185}, - [8120] = {.lex_state = 202}, - [8121] = {.lex_state = 185}, - [8122] = {.lex_state = 204}, - [8123] = {.lex_state = 0}, - [8124] = {.lex_state = 0}, - [8125] = {.lex_state = 0}, - [8126] = {.lex_state = 0}, - [8127] = {.lex_state = 0}, - [8128] = {.lex_state = 0}, - [8129] = {.lex_state = 175}, - [8130] = {.lex_state = 0}, - [8131] = {.lex_state = 185}, - [8132] = {.lex_state = 0}, - [8133] = {.lex_state = 0}, - [8134] = {.lex_state = 0}, - [8135] = {.lex_state = 0}, - [8136] = {.lex_state = 316}, - [8137] = {.lex_state = 0}, - [8138] = {.lex_state = 0}, - [8139] = {.lex_state = 0}, - [8140] = {.lex_state = 185}, - [8141] = {.lex_state = 202}, - [8142] = {.lex_state = 202}, - [8143] = {.lex_state = 0}, - [8144] = {.lex_state = 0}, - [8145] = {.lex_state = 202}, - [8146] = {.lex_state = 0}, - [8147] = {.lex_state = 316}, - [8148] = {.lex_state = 108}, - [8149] = {.lex_state = 202}, - [8150] = {.lex_state = 0}, - [8151] = {.lex_state = 0}, - [8152] = {.lex_state = 0}, - [8153] = {.lex_state = 0}, - [8154] = {.lex_state = 202}, - [8155] = {.lex_state = 0}, - [8156] = {.lex_state = 0}, - [8157] = {.lex_state = 0}, - [8158] = {.lex_state = 0}, - [8159] = {.lex_state = 202}, - [8160] = {.lex_state = 202}, - [8161] = {.lex_state = 0}, - [8162] = {.lex_state = 202}, - [8163] = {.lex_state = 316}, - [8164] = {.lex_state = 0}, - [8165] = {.lex_state = 0}, - [8166] = {.lex_state = 0}, - [8167] = {.lex_state = 175}, - [8168] = {.lex_state = 0}, - [8169] = {.lex_state = 0}, - [8170] = {.lex_state = 202}, - [8171] = {.lex_state = 0}, - [8172] = {.lex_state = 0}, - [8173] = {.lex_state = 0}, - [8174] = {.lex_state = 0}, - [8175] = {.lex_state = 0}, - [8176] = {.lex_state = 0}, - [8177] = {.lex_state = 202}, - [8178] = {.lex_state = 0}, - [8179] = {.lex_state = 185}, - [8180] = {.lex_state = 0}, - [8181] = {.lex_state = 0}, - [8182] = {.lex_state = 0}, - [8183] = {.lex_state = 0}, - [8184] = {.lex_state = 0}, - [8185] = {.lex_state = 0}, - [8186] = {.lex_state = 185}, - [8187] = {.lex_state = 202}, - [8188] = {.lex_state = 185}, - [8189] = {.lex_state = 185}, - [8190] = {.lex_state = 185}, - [8191] = {.lex_state = 185}, - [8192] = {.lex_state = 316}, - [8193] = {.lex_state = 316}, - [8194] = {.lex_state = 0}, - [8195] = {.lex_state = 202}, - [8196] = {.lex_state = 164}, - [8197] = {.lex_state = 0}, - [8198] = {.lex_state = 0}, - [8199] = {.lex_state = 0}, - [8200] = {.lex_state = 202}, - [8201] = {.lex_state = 0}, - [8202] = {.lex_state = 0}, - [8203] = {.lex_state = 0}, - [8204] = {.lex_state = 0}, - [8205] = {.lex_state = 0}, - [8206] = {.lex_state = 202}, - [8207] = {.lex_state = 0}, - [8208] = {.lex_state = 202}, - [8209] = {.lex_state = 0}, - [8210] = {.lex_state = 202}, - [8211] = {.lex_state = 202}, - [8212] = {.lex_state = 0}, - [8213] = {.lex_state = 0}, - [8214] = {.lex_state = 0}, - [8215] = {.lex_state = 0}, - [8216] = {.lex_state = 0}, - [8217] = {.lex_state = 185}, - [8218] = {.lex_state = 185}, - [8219] = {.lex_state = 0}, - [8220] = {.lex_state = 0}, - [8221] = {.lex_state = 0}, - [8222] = {.lex_state = 0}, - [8223] = {.lex_state = 0}, - [8224] = {.lex_state = 0}, - [8225] = {.lex_state = 0}, - [8226] = {.lex_state = 0}, - [8227] = {.lex_state = 202}, - [8228] = {.lex_state = 0}, - [8229] = {.lex_state = 0}, - [8230] = {.lex_state = 0}, - [8231] = {.lex_state = 316}, - [8232] = {.lex_state = 202}, - [8233] = {.lex_state = 202}, - [8234] = {.lex_state = 185}, - [8235] = {.lex_state = 0}, - [8236] = {.lex_state = 0}, - [8237] = {.lex_state = 185}, - [8238] = {.lex_state = 0}, - [8239] = {.lex_state = 0}, - [8240] = {.lex_state = 202}, - [8241] = {.lex_state = 316}, - [8242] = {.lex_state = 0}, - [8243] = {.lex_state = 185}, - [8244] = {.lex_state = 0}, - [8245] = {.lex_state = 0}, - [8246] = {.lex_state = 0}, - [8247] = {.lex_state = 0}, - [8248] = {.lex_state = 202}, - [8249] = {.lex_state = 202}, - [8250] = {.lex_state = 185}, - [8251] = {.lex_state = 202}, - [8252] = {.lex_state = 202}, - [8253] = {.lex_state = 0}, - [8254] = {.lex_state = 0}, - [8255] = {.lex_state = 0}, - [8256] = {.lex_state = 185}, - [8257] = {.lex_state = 0}, - [8258] = {.lex_state = 185}, - [8259] = {.lex_state = 0}, - [8260] = {.lex_state = 0}, - [8261] = {.lex_state = 0}, - [8262] = {.lex_state = 185}, - [8263] = {.lex_state = 202}, - [8264] = {.lex_state = 0}, - [8265] = {.lex_state = 202}, - [8266] = {.lex_state = 0}, - [8267] = {.lex_state = 0}, - [8268] = {.lex_state = 0}, - [8269] = {.lex_state = 0}, - [8270] = {.lex_state = 0}, - [8271] = {.lex_state = 0}, - [8272] = {.lex_state = 0}, - [8273] = {.lex_state = 0}, - [8274] = {.lex_state = 0}, - [8275] = {.lex_state = 0}, - [8276] = {.lex_state = 0}, - [8277] = {.lex_state = 0}, - [8278] = {.lex_state = 185}, - [8279] = {.lex_state = 185}, - [8280] = {.lex_state = 185}, - [8281] = {.lex_state = 202}, - [8282] = {.lex_state = 185}, - [8283] = {.lex_state = 202}, - [8284] = {.lex_state = 0}, - [8285] = {.lex_state = 0}, - [8286] = {.lex_state = 202}, - [8287] = {.lex_state = 0}, - [8288] = {.lex_state = 0}, - [8289] = {.lex_state = 0}, - [8290] = {.lex_state = 0}, - [8291] = {.lex_state = 0}, - [8292] = {.lex_state = 0}, - [8293] = {.lex_state = 0}, - [8294] = {.lex_state = 185}, - [8295] = {.lex_state = 0}, - [8296] = {.lex_state = 185}, - [8297] = {.lex_state = 0}, - [8298] = {.lex_state = 0}, - [8299] = {.lex_state = 202}, - [8300] = {.lex_state = 316}, - [8301] = {.lex_state = 0}, - [8302] = {.lex_state = 0}, - [8303] = {.lex_state = 0}, - [8304] = {.lex_state = 0}, - [8305] = {.lex_state = 0}, - [8306] = {.lex_state = 0}, - [8307] = {.lex_state = 0}, - [8308] = {.lex_state = 185}, - [8309] = {.lex_state = 316}, - [8310] = {.lex_state = 0}, - [8311] = {.lex_state = 0}, - [8312] = {.lex_state = 202}, - [8313] = {.lex_state = 0}, - [8314] = {.lex_state = 0}, - [8315] = {.lex_state = 0}, - [8316] = {.lex_state = 202}, - [8317] = {.lex_state = 0}, - [8318] = {.lex_state = 202}, - [8319] = {.lex_state = 0}, - [8320] = {.lex_state = 0}, - [8321] = {.lex_state = 0}, - [8322] = {.lex_state = 0}, - [8323] = {.lex_state = 0}, - [8324] = {.lex_state = 316}, - [8325] = {.lex_state = 0}, - [8326] = {.lex_state = 202}, - [8327] = {.lex_state = 185}, - [8328] = {.lex_state = 0}, - [8329] = {.lex_state = 202}, - [8330] = {.lex_state = 202}, - [8331] = {.lex_state = 0}, - [8332] = {.lex_state = 185}, - [8333] = {.lex_state = 185}, - [8334] = {.lex_state = 0}, - [8335] = {.lex_state = 185}, - [8336] = {.lex_state = 0}, - [8337] = {.lex_state = 316}, - [8338] = {.lex_state = 202}, - [8339] = {.lex_state = 185}, - [8340] = {.lex_state = 185}, - [8341] = {.lex_state = 0}, - [8342] = {.lex_state = 0}, - [8343] = {.lex_state = 0}, - [8344] = {.lex_state = 185}, - [8345] = {.lex_state = 185}, - [8346] = {.lex_state = 0}, - [8347] = {.lex_state = 316}, - [8348] = {.lex_state = 185}, - [8349] = {.lex_state = 0}, - [8350] = {.lex_state = 202}, - [8351] = {.lex_state = 0}, - [8352] = {.lex_state = 202}, - [8353] = {.lex_state = 0}, - [8354] = {.lex_state = 0}, - [8355] = {.lex_state = 202}, - [8356] = {.lex_state = 185}, - [8357] = {.lex_state = 202}, - [8358] = {.lex_state = 0}, - [8359] = {.lex_state = 0}, - [8360] = {.lex_state = 0}, - [8361] = {.lex_state = 185}, - [8362] = {.lex_state = 0}, - [8363] = {.lex_state = 185}, - [8364] = {.lex_state = 185}, - [8365] = {.lex_state = 202}, - [8366] = {.lex_state = 0}, - [8367] = {.lex_state = 316}, - [8368] = {.lex_state = 202}, - [8369] = {.lex_state = 0}, - [8370] = {.lex_state = 185}, - [8371] = {.lex_state = 185}, - [8372] = {.lex_state = 0}, - [8373] = {.lex_state = 202}, - [8374] = {.lex_state = 0}, - [8375] = {.lex_state = 0}, - [8376] = {.lex_state = 202}, - [8377] = {.lex_state = 202}, - [8378] = {.lex_state = 0}, - [8379] = {.lex_state = 202}, - [8380] = {.lex_state = 202}, - [8381] = {.lex_state = 0}, - [8382] = {.lex_state = 0}, - [8383] = {.lex_state = 0}, - [8384] = {.lex_state = 185}, - [8385] = {.lex_state = 0}, - [8386] = {.lex_state = 0}, - [8387] = {.lex_state = 185}, - [8388] = {.lex_state = 185}, - [8389] = {.lex_state = 0}, - [8390] = {.lex_state = 202}, - [8391] = {.lex_state = 0}, - [8392] = {.lex_state = 0}, - [8393] = {.lex_state = 202}, - [8394] = {.lex_state = 0}, - [8395] = {.lex_state = 0}, - [8396] = {.lex_state = 108}, - [8397] = {.lex_state = 185}, - [8398] = {.lex_state = 0}, - [8399] = {.lex_state = 185}, - [8400] = {.lex_state = 316}, - [8401] = {.lex_state = 202}, - [8402] = {.lex_state = 185}, - [8403] = {.lex_state = 202}, - [8404] = {.lex_state = 202}, - [8405] = {.lex_state = 0}, - [8406] = {.lex_state = 202}, - [8407] = {.lex_state = 316}, - [8408] = {.lex_state = 185}, - [8409] = {.lex_state = 0}, - [8410] = {.lex_state = 185}, - [8411] = {.lex_state = 316}, - [8412] = {.lex_state = 0}, - [8413] = {.lex_state = 316}, - [8414] = {.lex_state = 0}, - [8415] = {.lex_state = 0}, - [8416] = {.lex_state = 202}, - [8417] = {.lex_state = 0}, - [8418] = {.lex_state = 316}, - [8419] = {.lex_state = 108}, - [8420] = {.lex_state = 0}, - [8421] = {.lex_state = 185}, - [8422] = {.lex_state = 0}, - [8423] = {.lex_state = 0}, - [8424] = {.lex_state = 202}, - [8425] = {.lex_state = 185}, - [8426] = {.lex_state = 0}, - [8427] = {.lex_state = 108}, - [8428] = {.lex_state = 202}, - [8429] = {.lex_state = 0}, - [8430] = {.lex_state = 185}, - [8431] = {.lex_state = 185}, - [8432] = {.lex_state = 0}, - [8433] = {.lex_state = 0}, - [8434] = {.lex_state = 0}, - [8435] = {.lex_state = 107}, - [8436] = {.lex_state = 107}, - [8437] = {.lex_state = 316}, - [8438] = {.lex_state = 107}, - [8439] = {.lex_state = 202}, - [8440] = {.lex_state = 316}, - [8441] = {.lex_state = 316}, - [8442] = {.lex_state = 316}, - [8443] = {.lex_state = 316}, - [8444] = {.lex_state = 316}, - [8445] = {.lex_state = 107}, - [8446] = {.lex_state = 0}, - [8447] = {.lex_state = 0}, - [8448] = {.lex_state = 115}, - [8449] = {.lex_state = 316, .external_lex_state = 2}, - [8450] = {.lex_state = 316, .external_lex_state = 2}, - [8451] = {.lex_state = 202}, - [8452] = {.lex_state = 316, .external_lex_state = 2}, - [8453] = {.lex_state = 316, .external_lex_state = 2}, - [8454] = {.lex_state = 316, .external_lex_state = 2}, - [8455] = {.lex_state = 316, .external_lex_state = 2}, - [8456] = {.lex_state = 0}, - [8457] = {.lex_state = 316, .external_lex_state = 2}, - [8458] = {.lex_state = 316, .external_lex_state = 2}, - [8459] = {.lex_state = 0}, - [8460] = {.lex_state = 316, .external_lex_state = 2}, - [8461] = {.lex_state = 316, .external_lex_state = 2}, - [8462] = {.lex_state = 316, .external_lex_state = 2}, - [8463] = {.lex_state = 316, .external_lex_state = 2}, - [8464] = {.lex_state = 316, .external_lex_state = 2}, - [8465] = {.lex_state = 0}, - [8466] = {.lex_state = 0}, - [8467] = {.lex_state = 0}, - [8468] = {.lex_state = 0}, - [8469] = {.lex_state = 316}, - [8470] = {.lex_state = 0}, - [8471] = {.lex_state = 316, .external_lex_state = 2}, - [8472] = {.lex_state = 202}, - [8473] = {.lex_state = 202}, - [8474] = {.lex_state = 316}, - [8475] = {.lex_state = 202}, - [8476] = {.lex_state = 202}, - [8477] = {.lex_state = 316, .external_lex_state = 2}, - [8478] = {.lex_state = 0}, - [8479] = {.lex_state = 316}, - [8480] = {.lex_state = 0}, - [8481] = {.lex_state = 0}, - [8482] = {.lex_state = 0}, - [8483] = {.lex_state = 0}, - [8484] = {.lex_state = 0}, - [8485] = {.lex_state = 0}, - [8486] = {.lex_state = 316}, - [8487] = {.lex_state = 316}, - [8488] = {.lex_state = 0}, - [8489] = {.lex_state = 0}, - [8490] = {.lex_state = 0}, - [8491] = {.lex_state = 316}, - [8492] = {.lex_state = 0}, - [8493] = {.lex_state = 202}, - [8494] = {.lex_state = 0}, - [8495] = {.lex_state = 0}, - [8496] = {.lex_state = 0}, - [8497] = {.lex_state = 0}, - [8498] = {.lex_state = 202}, - [8499] = {.lex_state = 202}, - [8500] = {.lex_state = 202}, - [8501] = {.lex_state = 316}, - [8502] = {.lex_state = 316, .external_lex_state = 2}, - [8503] = {.lex_state = 107}, - [8504] = {.lex_state = 316}, - [8505] = {.lex_state = 0}, - [8506] = {.lex_state = 0}, - [8507] = {.lex_state = 0}, - [8508] = {.lex_state = 0}, - [8509] = {.lex_state = 202}, - [8510] = {.lex_state = 0}, - [8511] = {.lex_state = 0}, - [8512] = {.lex_state = 0}, - [8513] = {.lex_state = 202}, - [8514] = {.lex_state = 115}, - [8515] = {.lex_state = 0}, - [8516] = {.lex_state = 316}, - [8517] = {.lex_state = 0}, - [8518] = {.lex_state = 316}, - [8519] = {.lex_state = 0}, - [8520] = {.lex_state = 115}, - [8521] = {.lex_state = 316}, - [8522] = {.lex_state = 0}, - [8523] = {.lex_state = 0}, - [8524] = {.lex_state = 0}, - [8525] = {.lex_state = 0}, - [8526] = {.lex_state = 0}, - [8527] = {.lex_state = 0}, - [8528] = {.lex_state = 0}, - [8529] = {.lex_state = 0}, - [8530] = {.lex_state = 202}, - [8531] = {.lex_state = 0}, - [8532] = {.lex_state = 107}, - [8533] = {.lex_state = 316}, - [8534] = {.lex_state = 316}, - [8535] = {.lex_state = 316}, - [8536] = {.lex_state = 316}, - [8537] = {.lex_state = 202}, - [8538] = {.lex_state = 107}, - [8539] = {.lex_state = 0}, - [8540] = {.lex_state = 0}, - [8541] = {.lex_state = 0}, - [8542] = {.lex_state = 316}, - [8543] = {.lex_state = 202}, - [8544] = {.lex_state = 202}, - [8545] = {.lex_state = 0}, - [8546] = {.lex_state = 0}, - [8547] = {.lex_state = 0}, - [8548] = {.lex_state = 0}, - [8549] = {.lex_state = 0}, - [8550] = {.lex_state = 0}, - [8551] = {.lex_state = 0}, - [8552] = {.lex_state = 0}, - [8553] = {.lex_state = 0}, - [8554] = {.lex_state = 316}, - [8555] = {.lex_state = 0}, - [8556] = {.lex_state = 0}, - [8557] = {.lex_state = 316}, - [8558] = {.lex_state = 0}, - [8559] = {.lex_state = 0}, - [8560] = {.lex_state = 0}, - [8561] = {.lex_state = 0}, - [8562] = {.lex_state = 107}, - [8563] = {.lex_state = 0}, - [8564] = {.lex_state = 0}, - [8565] = {.lex_state = 0}, - [8566] = {.lex_state = 0}, - [8567] = {.lex_state = 0}, - [8568] = {.lex_state = 316}, - [8569] = {.lex_state = 316}, - [8570] = {.lex_state = 0}, - [8571] = {.lex_state = 202}, - [8572] = {.lex_state = 0}, - [8573] = {.lex_state = 0}, - [8574] = {.lex_state = 0}, - [8575] = {.lex_state = 0}, - [8576] = {.lex_state = 316}, - [8577] = {.lex_state = 0}, - [8578] = {.lex_state = 0}, - [8579] = {.lex_state = 202}, - [8580] = {.lex_state = 0}, - [8581] = {.lex_state = 316}, - [8582] = {.lex_state = 0}, - [8583] = {.lex_state = 0}, - [8584] = {.lex_state = 0}, - [8585] = {.lex_state = 0}, - [8586] = {.lex_state = 0}, - [8587] = {.lex_state = 0}, - [8588] = {.lex_state = 0}, - [8589] = {.lex_state = 0}, - [8590] = {.lex_state = 0}, - [8591] = {.lex_state = 0}, - [8592] = {.lex_state = 0}, - [8593] = {.lex_state = 0}, - [8594] = {.lex_state = 107}, - [8595] = {.lex_state = 0}, - [8596] = {.lex_state = 0}, - [8597] = {.lex_state = 316}, - [8598] = {.lex_state = 0}, - [8599] = {.lex_state = 316, .external_lex_state = 2}, - [8600] = {.lex_state = 316}, - [8601] = {.lex_state = 0}, - [8602] = {.lex_state = 0}, - [8603] = {.lex_state = 0}, - [8604] = {.lex_state = 0}, - [8605] = {.lex_state = 0}, - [8606] = {.lex_state = 0}, - [8607] = {.lex_state = 0}, - [8608] = {.lex_state = 0}, - [8609] = {.lex_state = 107}, - [8610] = {.lex_state = 0}, - [8611] = {.lex_state = 0}, - [8612] = {.lex_state = 0}, - [8613] = {.lex_state = 0}, - [8614] = {.lex_state = 316}, - [8615] = {.lex_state = 0}, - [8616] = {.lex_state = 202}, - [8617] = {.lex_state = 0}, - [8618] = {.lex_state = 0}, - [8619] = {.lex_state = 316}, - [8620] = {.lex_state = 0}, - [8621] = {.lex_state = 316}, - [8622] = {.lex_state = 0}, - [8623] = {.lex_state = 115}, - [8624] = {.lex_state = 0}, - [8625] = {.lex_state = 0}, - [8626] = {.lex_state = 316}, - [8627] = {.lex_state = 0}, - [8628] = {.lex_state = 0}, - [8629] = {.lex_state = 0}, - [8630] = {.lex_state = 0}, - [8631] = {.lex_state = 0}, - [8632] = {.lex_state = 0}, - [8633] = {.lex_state = 0}, - [8634] = {.lex_state = 0}, - [8635] = {.lex_state = 316}, - [8636] = {.lex_state = 316}, - [8637] = {.lex_state = 0}, - [8638] = {.lex_state = 107}, - [8639] = {.lex_state = 0}, - [8640] = {.lex_state = 316}, - [8641] = {.lex_state = 107}, - [8642] = {.lex_state = 0}, - [8643] = {.lex_state = 202}, - [8644] = {.lex_state = 202}, - [8645] = {.lex_state = 107}, - [8646] = {.lex_state = 0}, - [8647] = {.lex_state = 0}, - [8648] = {.lex_state = 0}, - [8649] = {.lex_state = 0}, - [8650] = {.lex_state = 0}, - [8651] = {.lex_state = 0}, - [8652] = {.lex_state = 0}, - [8653] = {.lex_state = 316}, - [8654] = {.lex_state = 107}, - [8655] = {.lex_state = 0}, - [8656] = {.lex_state = 316}, - [8657] = {.lex_state = 202}, - [8658] = {.lex_state = 0}, - [8659] = {.lex_state = 0}, - [8660] = {.lex_state = 0}, - [8661] = {.lex_state = 0}, - [8662] = {.lex_state = 0}, - [8663] = {.lex_state = 0}, - [8664] = {.lex_state = 0}, - [8665] = {.lex_state = 0}, - [8666] = {.lex_state = 0}, - [8667] = {.lex_state = 107}, - [8668] = {.lex_state = 0}, - [8669] = {.lex_state = 0}, - [8670] = {.lex_state = 0}, - [8671] = {.lex_state = 0}, - [8672] = {.lex_state = 316}, - [8673] = {.lex_state = 0}, - [8674] = {.lex_state = 0}, - [8675] = {.lex_state = 0}, - [8676] = {.lex_state = 0}, - [8677] = {.lex_state = 0}, - [8678] = {.lex_state = 316}, - [8679] = {.lex_state = 0}, - [8680] = {.lex_state = 0}, - [8681] = {.lex_state = 0}, - [8682] = {.lex_state = 0}, - [8683] = {.lex_state = 0}, - [8684] = {.lex_state = 0}, - [8685] = {.lex_state = 0}, - [8686] = {.lex_state = 0}, - [8687] = {.lex_state = 0}, - [8688] = {.lex_state = 0}, - [8689] = {.lex_state = 0}, - [8690] = {.lex_state = 202}, - [8691] = {.lex_state = 0}, - [8692] = {.lex_state = 0}, - [8693] = {.lex_state = 0}, - [8694] = {.lex_state = 0}, - [8695] = {.lex_state = 0}, - [8696] = {.lex_state = 316}, - [8697] = {.lex_state = 0}, - [8698] = {.lex_state = 0}, - [8699] = {.lex_state = 0}, - [8700] = {.lex_state = 0}, - [8701] = {.lex_state = 0}, - [8702] = {.lex_state = 202}, - [8703] = {.lex_state = 316}, - [8704] = {.lex_state = 0}, - [8705] = {.lex_state = 0}, - [8706] = {.lex_state = 115}, - [8707] = {.lex_state = 0}, - [8708] = {.lex_state = 0}, - [8709] = {.lex_state = 0}, - [8710] = {.lex_state = 0}, - [8711] = {.lex_state = 0}, - [8712] = {.lex_state = 316}, - [8713] = {.lex_state = 0}, - [8714] = {.lex_state = 202}, - [8715] = {.lex_state = 0}, - [8716] = {.lex_state = 0}, - [8717] = {.lex_state = 0}, - [8718] = {.lex_state = 0}, - [8719] = {.lex_state = 202}, - [8720] = {.lex_state = 0}, - [8721] = {.lex_state = 316}, - [8722] = {.lex_state = 0}, - [8723] = {.lex_state = 0}, - [8724] = {.lex_state = 202}, - [8725] = {.lex_state = 0}, - [8726] = {.lex_state = 316}, - [8727] = {.lex_state = 0}, - [8728] = {.lex_state = 316}, - [8729] = {.lex_state = 0}, - [8730] = {.lex_state = 0}, - [8731] = {.lex_state = 316}, - [8732] = {.lex_state = 0}, - [8733] = {.lex_state = 0}, - [8734] = {.lex_state = 0}, - [8735] = {.lex_state = 0}, - [8736] = {.lex_state = 107}, - [8737] = {.lex_state = 0}, - [8738] = {.lex_state = 202}, - [8739] = {.lex_state = 0}, - [8740] = {.lex_state = 316}, - [8741] = {.lex_state = 0}, - [8742] = {.lex_state = 0}, - [8743] = {.lex_state = 0}, - [8744] = {.lex_state = 316}, - [8745] = {.lex_state = 0}, - [8746] = {.lex_state = 0}, - [8747] = {.lex_state = 0}, - [8748] = {.lex_state = 316}, - [8749] = {.lex_state = 0}, - [8750] = {.lex_state = 316}, - [8751] = {.lex_state = 316}, - [8752] = {.lex_state = 316}, - [8753] = {.lex_state = 316}, - [8754] = {.lex_state = 202}, - [8755] = {.lex_state = 115}, - [8756] = {.lex_state = 0}, - [8757] = {.lex_state = 316}, - [8758] = {.lex_state = 0}, - [8759] = {.lex_state = 316}, - [8760] = {.lex_state = 316}, - [8761] = {.lex_state = 0}, - [8762] = {.lex_state = 202}, - [8763] = {.lex_state = 0}, - [8764] = {.lex_state = 107}, - [8765] = {.lex_state = 107}, - [8766] = {.lex_state = 202}, - [8767] = {.lex_state = 316}, - [8768] = {.lex_state = 0}, - [8769] = {.lex_state = 0}, - [8770] = {.lex_state = 0}, - [8771] = {.lex_state = 0}, - [8772] = {.lex_state = 0}, - [8773] = {.lex_state = 0}, - [8774] = {.lex_state = 0}, - [8775] = {.lex_state = 316}, - [8776] = {.lex_state = 316}, - [8777] = {.lex_state = 0}, - [8778] = {.lex_state = 316}, - [8779] = {.lex_state = 0}, - [8780] = {.lex_state = 0}, - [8781] = {.lex_state = 0}, - [8782] = {.lex_state = 0}, - [8783] = {.lex_state = 0}, - [8784] = {.lex_state = 316}, - [8785] = {.lex_state = 107}, - [8786] = {.lex_state = 0}, - [8787] = {.lex_state = 0}, - [8788] = {.lex_state = 202}, - [8789] = {.lex_state = 0}, - [8790] = {.lex_state = 316}, - [8791] = {.lex_state = 0}, - [8792] = {.lex_state = 316}, - [8793] = {.lex_state = 0}, - [8794] = {.lex_state = 115}, - [8795] = {.lex_state = 202}, - [8796] = {.lex_state = 115}, - [8797] = {.lex_state = 0}, - [8798] = {.lex_state = 0}, - [8799] = {.lex_state = 0}, - [8800] = {.lex_state = 0}, - [8801] = {.lex_state = 316}, - [8802] = {.lex_state = 316}, - [8803] = {.lex_state = 0}, - [8804] = {.lex_state = 0}, - [8805] = {.lex_state = 202}, - [8806] = {.lex_state = 0}, - [8807] = {.lex_state = 0}, - [8808] = {.lex_state = 0}, - [8809] = {.lex_state = 0}, - [8810] = {.lex_state = 0}, - [8811] = {.lex_state = 0}, - [8812] = {.lex_state = 0}, - [8813] = {.lex_state = 316}, - [8814] = {.lex_state = 202}, - [8815] = {.lex_state = 0}, - [8816] = {.lex_state = 316}, - [8817] = {.lex_state = 0}, - [8818] = {.lex_state = 0}, - [8819] = {.lex_state = 0}, - [8820] = {.lex_state = 316}, - [8821] = {.lex_state = 0}, - [8822] = {.lex_state = 0}, - [8823] = {.lex_state = 0}, - [8824] = {.lex_state = 316}, - [8825] = {.lex_state = 0}, - [8826] = {.lex_state = 0}, - [8827] = {.lex_state = 316}, - [8828] = {.lex_state = 0}, - [8829] = {.lex_state = 316}, - [8830] = {.lex_state = 0}, - [8831] = {.lex_state = 0}, - [8832] = {.lex_state = 115}, - [8833] = {.lex_state = 0}, - [8834] = {.lex_state = 0}, - [8835] = {.lex_state = 0}, - [8836] = {.lex_state = 0}, - [8837] = {.lex_state = 316}, - [8838] = {.lex_state = 107}, - [8839] = {.lex_state = 0}, - [8840] = {.lex_state = 202}, - [8841] = {.lex_state = 202}, - [8842] = {.lex_state = 0}, - [8843] = {.lex_state = 316}, - [8844] = {.lex_state = 0}, - [8845] = {.lex_state = 202}, - [8846] = {.lex_state = 316}, - [8847] = {.lex_state = 316}, - [8848] = {.lex_state = 0}, - [8849] = {.lex_state = 0}, - [8850] = {.lex_state = 0}, - [8851] = {.lex_state = 316}, - [8852] = {.lex_state = 0}, - [8853] = {.lex_state = 107}, - [8854] = {.lex_state = 0}, - [8855] = {.lex_state = 115}, - [8856] = {.lex_state = 0}, - [8857] = {.lex_state = 108}, - [8858] = {.lex_state = 172}, - [8859] = {.lex_state = 172}, - [8860] = {.lex_state = 0}, - [8861] = {.lex_state = 0}, - [8862] = {.lex_state = 202}, - [8863] = {.lex_state = 0, .external_lex_state = 2}, - [8864] = {.lex_state = 0}, - [8865] = {.lex_state = 0}, - [8866] = {.lex_state = 0}, - [8867] = {.lex_state = 0}, - [8868] = {.lex_state = 0}, - [8869] = {.lex_state = 172}, - [8870] = {.lex_state = 0}, - [8871] = {.lex_state = 108}, - [8872] = {.lex_state = 0}, - [8873] = {.lex_state = 172}, - [8874] = {.lex_state = 0}, - [8875] = {.lex_state = 172}, - [8876] = {.lex_state = 316}, - [8877] = {.lex_state = 0, .external_lex_state = 2}, - [8878] = {.lex_state = 0}, - [8879] = {.lex_state = 172}, - [8880] = {.lex_state = 316}, - [8881] = {.lex_state = 202}, - [8882] = {.lex_state = 0}, - [8883] = {.lex_state = 172}, - [8884] = {.lex_state = 108}, - [8885] = {.lex_state = 0}, - [8886] = {.lex_state = 202}, - [8887] = {.lex_state = 0, .external_lex_state = 2}, - [8888] = {.lex_state = 0}, - [8889] = {.lex_state = 0, .external_lex_state = 2}, - [8890] = {.lex_state = 0}, - [8891] = {.lex_state = 0, .external_lex_state = 2}, - [8892] = {.lex_state = 0}, - [8893] = {.lex_state = 0, .external_lex_state = 2}, - [8894] = {.lex_state = 0}, - [8895] = {.lex_state = 0, .external_lex_state = 2}, - [8896] = {.lex_state = 0}, - [8897] = {.lex_state = 0, .external_lex_state = 2}, - [8898] = {.lex_state = 0}, - [8899] = {.lex_state = 0, .external_lex_state = 2}, - [8900] = {.lex_state = 0}, - [8901] = {.lex_state = 172}, - [8902] = {.lex_state = 0}, - [8903] = {.lex_state = 316}, - [8904] = {.lex_state = 0}, - [8905] = {.lex_state = 316}, - [8906] = {.lex_state = 0}, - [8907] = {.lex_state = 202}, - [8908] = {.lex_state = 316}, - [8909] = {.lex_state = 0}, - [8910] = {.lex_state = 316}, - [8911] = {.lex_state = 316}, - [8912] = {.lex_state = 0, .external_lex_state = 2}, - [8913] = {.lex_state = 0}, - [8914] = {.lex_state = 0}, - [8915] = {.lex_state = 0, .external_lex_state = 2}, - [8916] = {.lex_state = 202}, - [8917] = {.lex_state = 0}, - [8918] = {.lex_state = 0}, - [8919] = {.lex_state = 0}, - [8920] = {.lex_state = 0}, - [8921] = {.lex_state = 0}, - [8922] = {.lex_state = 0}, - [8923] = {.lex_state = 0}, - [8924] = {.lex_state = 0}, - [8925] = {.lex_state = 0}, - [8926] = {.lex_state = 0}, - [8927] = {.lex_state = 0}, - [8928] = {.lex_state = 202}, - [8929] = {.lex_state = 202}, - [8930] = {.lex_state = 316}, - [8931] = {.lex_state = 0}, - [8932] = {.lex_state = 0}, - [8933] = {.lex_state = 0}, - [8934] = {.lex_state = 0}, - [8935] = {.lex_state = 0}, - [8936] = {.lex_state = 316}, - [8937] = {.lex_state = 0, .external_lex_state = 3}, - [8938] = {.lex_state = 172}, - [8939] = {.lex_state = 172}, - [8940] = {.lex_state = 0}, - [8941] = {.lex_state = 316}, - [8942] = {.lex_state = 316}, - [8943] = {.lex_state = 316}, - [8944] = {.lex_state = 185}, - [8945] = {.lex_state = 0}, - [8946] = {.lex_state = 202}, - [8947] = {.lex_state = 0}, - [8948] = {.lex_state = 185}, - [8949] = {.lex_state = 0}, - [8950] = {.lex_state = 0}, - [8951] = {.lex_state = 0}, - [8952] = {.lex_state = 0}, - [8953] = {.lex_state = 0}, - [8954] = {.lex_state = 0}, - [8955] = {.lex_state = 0}, - [8956] = {.lex_state = 0}, - [8957] = {.lex_state = 202}, - [8958] = {.lex_state = 0}, - [8959] = {.lex_state = 0}, - [8960] = {.lex_state = 316}, - [8961] = {.lex_state = 0}, - [8962] = {.lex_state = 0}, - [8963] = {.lex_state = 0}, - [8964] = {.lex_state = 0}, - [8965] = {.lex_state = 172}, - [8966] = {.lex_state = 202}, - [8967] = {.lex_state = 0}, - [8968] = {.lex_state = 202}, - [8969] = {.lex_state = 0, .external_lex_state = 2}, - [8970] = {.lex_state = 0}, - [8971] = {.lex_state = 0}, - [8972] = {.lex_state = 0}, - [8973] = {.lex_state = 0}, - [8974] = {.lex_state = 0}, - [8975] = {.lex_state = 0}, - [8976] = {.lex_state = 0}, - [8977] = {.lex_state = 0}, - [8978] = {.lex_state = 0}, - [8979] = {.lex_state = 0}, - [8980] = {.lex_state = 202}, - [8981] = {.lex_state = 202}, - [8982] = {.lex_state = 0}, - [8983] = {.lex_state = 0}, - [8984] = {.lex_state = 202}, - [8985] = {.lex_state = 0}, - [8986] = {.lex_state = 0}, - [8987] = {.lex_state = 0}, - [8988] = {.lex_state = 172}, - [8989] = {.lex_state = 0}, - [8990] = {.lex_state = 0}, - [8991] = {.lex_state = 0}, - [8992] = {.lex_state = 0}, - [8993] = {.lex_state = 0}, - [8994] = {.lex_state = 0}, - [8995] = {.lex_state = 0}, - [8996] = {.lex_state = 0}, - [8997] = {.lex_state = 108}, - [8998] = {.lex_state = 0}, - [8999] = {.lex_state = 0}, - [9000] = {.lex_state = 0}, - [9001] = {.lex_state = 0}, - [9002] = {.lex_state = 0}, - [9003] = {.lex_state = 0}, - [9004] = {.lex_state = 0}, - [9005] = {.lex_state = 185}, - [9006] = {.lex_state = 0}, - [9007] = {.lex_state = 0}, - [9008] = {.lex_state = 0}, - [9009] = {.lex_state = 202}, - [9010] = {.lex_state = 0}, - [9011] = {.lex_state = 0}, - [9012] = {.lex_state = 0}, - [9013] = {.lex_state = 0}, - [9014] = {.lex_state = 0}, - [9015] = {.lex_state = 0}, - [9016] = {.lex_state = 0}, - [9017] = {.lex_state = 0}, - [9018] = {.lex_state = 202}, - [9019] = {.lex_state = 0}, - [9020] = {.lex_state = 0}, - [9021] = {.lex_state = 0}, - [9022] = {.lex_state = 316}, - [9023] = {.lex_state = 316}, - [9024] = {.lex_state = 0}, - [9025] = {.lex_state = 0}, - [9026] = {.lex_state = 0}, - [9027] = {.lex_state = 172}, - [9028] = {.lex_state = 0}, - [9029] = {.lex_state = 0}, - [9030] = {.lex_state = 202}, - [9031] = {.lex_state = 316}, - [9032] = {.lex_state = 0}, - [9033] = {.lex_state = 172}, - [9034] = {.lex_state = 172}, - [9035] = {.lex_state = 0}, - [9036] = {.lex_state = 0}, - [9037] = {.lex_state = 0}, - [9038] = {.lex_state = 0}, - [9039] = {.lex_state = 0}, - [9040] = {.lex_state = 0}, - [9041] = {.lex_state = 185}, - [9042] = {.lex_state = 0}, - [9043] = {.lex_state = 108}, - [9044] = {.lex_state = 0}, - [9045] = {.lex_state = 0}, - [9046] = {.lex_state = 0}, - [9047] = {.lex_state = 202}, - [9048] = {.lex_state = 0}, - [9049] = {.lex_state = 0}, - [9050] = {.lex_state = 0}, - [9051] = {.lex_state = 202}, - [9052] = {.lex_state = 202}, - [9053] = {.lex_state = 0}, - [9054] = {.lex_state = 172}, - [9055] = {.lex_state = 172}, - [9056] = {.lex_state = 172}, - [9057] = {.lex_state = 0, .external_lex_state = 2}, - [9058] = {.lex_state = 0}, - [9059] = {.lex_state = 108}, - [9060] = {.lex_state = 0}, - [9061] = {.lex_state = 0}, - [9062] = {.lex_state = 0}, - [9063] = {.lex_state = 0}, - [9064] = {.lex_state = 0}, - [9065] = {.lex_state = 108}, - [9066] = {.lex_state = 0}, - [9067] = {.lex_state = 0}, - [9068] = {.lex_state = 0}, - [9069] = {.lex_state = 0}, - [9070] = {.lex_state = 202}, - [9071] = {.lex_state = 202}, - [9072] = {.lex_state = 172}, - [9073] = {.lex_state = 0}, - [9074] = {.lex_state = 108}, - [9075] = {.lex_state = 0}, - [9076] = {.lex_state = 0}, - [9077] = {.lex_state = 0}, - [9078] = {.lex_state = 0}, - [9079] = {.lex_state = 0}, - [9080] = {.lex_state = 0}, - [9081] = {.lex_state = 0}, - [9082] = {.lex_state = 0}, - [9083] = {.lex_state = 0}, - [9084] = {.lex_state = 0}, - [9085] = {.lex_state = 0}, - [9086] = {.lex_state = 0}, - [9087] = {.lex_state = 0}, - [9088] = {.lex_state = 0}, - [9089] = {.lex_state = 0}, - [9090] = {.lex_state = 0}, - [9091] = {.lex_state = 0}, - [9092] = {.lex_state = 108}, - [9093] = {.lex_state = 0}, - [9094] = {.lex_state = 0}, - [9095] = {.lex_state = 0}, - [9096] = {.lex_state = 0}, - [9097] = {.lex_state = 0}, - [9098] = {.lex_state = 0}, - [9099] = {.lex_state = 202}, - [9100] = {.lex_state = 172}, - [9101] = {.lex_state = 0}, - [9102] = {.lex_state = 108}, - [9103] = {.lex_state = 202}, - [9104] = {.lex_state = 0}, - [9105] = {.lex_state = 202}, - [9106] = {.lex_state = 172}, - [9107] = {.lex_state = 0}, - [9108] = {.lex_state = 0}, - [9109] = {.lex_state = 0}, - [9110] = {.lex_state = 0}, - [9111] = {.lex_state = 0}, - [9112] = {.lex_state = 0}, - [9113] = {.lex_state = 316}, - [9114] = {.lex_state = 0}, - [9115] = {.lex_state = 172}, - [9116] = {.lex_state = 0}, - [9117] = {.lex_state = 0}, - [9118] = {.lex_state = 0}, - [9119] = {.lex_state = 0}, - [9120] = {.lex_state = 0}, - [9121] = {.lex_state = 0, .external_lex_state = 2}, - [9122] = {.lex_state = 0}, - [9123] = {.lex_state = 0}, - [9124] = {.lex_state = 0}, - [9125] = {.lex_state = 0}, - [9126] = {.lex_state = 108}, - [9127] = {.lex_state = 202}, - [9128] = {.lex_state = 0}, - [9129] = {.lex_state = 202}, - [9130] = {.lex_state = 202}, - [9131] = {.lex_state = 0}, - [9132] = {.lex_state = 0}, - [9133] = {.lex_state = 0}, - [9134] = {.lex_state = 108}, - [9135] = {.lex_state = 172}, - [9136] = {.lex_state = 0}, - [9137] = {.lex_state = 0}, - [9138] = {.lex_state = 0}, - [9139] = {.lex_state = 0}, - [9140] = {.lex_state = 0}, - [9141] = {.lex_state = 0}, - [9142] = {.lex_state = 0}, - [9143] = {.lex_state = 0}, - [9144] = {.lex_state = 0}, - [9145] = {.lex_state = 0}, - [9146] = {.lex_state = 0}, - [9147] = {.lex_state = 0}, - [9148] = {.lex_state = 0}, - [9149] = {.lex_state = 0}, - [9150] = {.lex_state = 0}, - [9151] = {.lex_state = 0}, - [9152] = {.lex_state = 0}, - [9153] = {.lex_state = 0}, - [9154] = {.lex_state = 0}, - [9155] = {.lex_state = 0, .external_lex_state = 2}, - [9156] = {.lex_state = 0}, - [9157] = {.lex_state = 316}, - [9158] = {.lex_state = 0}, - [9159] = {.lex_state = 0}, - [9160] = {.lex_state = 0}, - [9161] = {.lex_state = 0}, - [9162] = {.lex_state = 0}, - [9163] = {.lex_state = 202}, - [9164] = {.lex_state = 0}, - [9165] = {.lex_state = 0}, - [9166] = {.lex_state = 316}, - [9167] = {.lex_state = 316}, - [9168] = {.lex_state = 0}, - [9169] = {.lex_state = 316}, - [9170] = {.lex_state = 202}, - [9171] = {.lex_state = 0}, - [9172] = {.lex_state = 0}, - [9173] = {.lex_state = 0}, - [9174] = {.lex_state = 0}, - [9175] = {.lex_state = 172}, - [9176] = {.lex_state = 316}, - [9177] = {.lex_state = 202}, - [9178] = {.lex_state = 0}, - [9179] = {.lex_state = 316}, - [9180] = {.lex_state = 0}, - [9181] = {.lex_state = 0}, - [9182] = {.lex_state = 108}, - [9183] = {.lex_state = 0}, - [9184] = {.lex_state = 316}, - [9185] = {.lex_state = 0, .external_lex_state = 3}, - [9186] = {.lex_state = 316}, - [9187] = {.lex_state = 185}, - [9188] = {.lex_state = 202}, - [9189] = {.lex_state = 0}, - [9190] = {.lex_state = 0}, - [9191] = {.lex_state = 202}, - [9192] = {.lex_state = 0}, - [9193] = {.lex_state = 0}, - [9194] = {.lex_state = 0}, - [9195] = {.lex_state = 0}, - [9196] = {.lex_state = 0}, - [9197] = {.lex_state = 0}, - [9198] = {.lex_state = 0}, - [9199] = {.lex_state = 0}, - [9200] = {.lex_state = 0}, - [9201] = {.lex_state = 0}, - [9202] = {.lex_state = 0}, - [9203] = {.lex_state = 0}, - [9204] = {.lex_state = 0}, - [9205] = {.lex_state = 0}, - [9206] = {.lex_state = 0}, - [9207] = {.lex_state = 0}, - [9208] = {.lex_state = 0}, - [9209] = {.lex_state = 0}, - [9210] = {.lex_state = 0}, - [9211] = {.lex_state = 185}, - [9212] = {.lex_state = 316}, - [9213] = {.lex_state = 0}, - [9214] = {.lex_state = 0}, - [9215] = {.lex_state = 202}, - [9216] = {.lex_state = 202}, - [9217] = {.lex_state = 0}, - [9218] = {.lex_state = 202}, - [9219] = {.lex_state = 202}, - [9220] = {.lex_state = 0}, - [9221] = {.lex_state = 202}, - [9222] = {.lex_state = 0}, - [9223] = {.lex_state = 0}, - [9224] = {.lex_state = 0}, - [9225] = {.lex_state = 202}, - [9226] = {.lex_state = 0}, - [9227] = {.lex_state = 0}, - [9228] = {.lex_state = 0}, - [9229] = {.lex_state = 0}, - [9230] = {.lex_state = 0}, - [9231] = {.lex_state = 170}, - [9232] = {.lex_state = 0}, - [9233] = {.lex_state = 0}, - [9234] = {.lex_state = 0}, - [9235] = {.lex_state = 0}, - [9236] = {.lex_state = 0}, - [9237] = {.lex_state = 0}, - [9238] = {.lex_state = 0}, - [9239] = {.lex_state = 0}, - [9240] = {.lex_state = 0}, - [9241] = {.lex_state = 0}, - [9242] = {.lex_state = 0}, - [9243] = {.lex_state = 108}, - [9244] = {.lex_state = 0}, - [9245] = {.lex_state = 202}, - [9246] = {.lex_state = 108}, - [9247] = {.lex_state = 0}, - [9248] = {.lex_state = 316}, - [9249] = {.lex_state = 316}, - [9250] = {.lex_state = 174}, - [9251] = {.lex_state = 316}, - [9252] = {.lex_state = 316}, - [9253] = {.lex_state = 0}, - [9254] = {.lex_state = 316}, - [9255] = {.lex_state = 170}, - [9256] = {.lex_state = 316}, - [9257] = {.lex_state = 170}, - [9258] = {.lex_state = 202}, - [9259] = {.lex_state = 316}, - [9260] = {.lex_state = 0}, - [9261] = {.lex_state = 170}, - [9262] = {.lex_state = 316}, - [9263] = {.lex_state = 0, .external_lex_state = 3}, - [9264] = {.lex_state = 173}, - [9265] = {.lex_state = 0}, - [9266] = {.lex_state = 0}, - [9267] = {.lex_state = 172}, - [9268] = {.lex_state = 0}, - [9269] = {.lex_state = 0}, - [9270] = {.lex_state = 316}, - [9271] = {.lex_state = 316}, - [9272] = {.lex_state = 0}, - [9273] = {.lex_state = 170}, - [9274] = {.lex_state = 0}, - [9275] = {.lex_state = 0}, - [9276] = {.lex_state = 0}, - [9277] = {.lex_state = 0}, - [9278] = {.lex_state = 0}, - [9279] = {.lex_state = 316}, - [9280] = {.lex_state = 0}, - [9281] = {.lex_state = 185}, - [9282] = {.lex_state = 316}, - [9283] = {.lex_state = 0}, - [9284] = {.lex_state = 238}, - [9285] = {.lex_state = 193}, - [9286] = {.lex_state = 172}, - [9287] = {.lex_state = 0}, - [9288] = {.lex_state = 0}, - [9289] = {.lex_state = 172}, - [9290] = {.lex_state = 0}, - [9291] = {.lex_state = 0}, - [9292] = {.lex_state = 0}, - [9293] = {.lex_state = 0}, - [9294] = {.lex_state = 172}, - [9295] = {.lex_state = 108}, - [9296] = {.lex_state = 0}, - [9297] = {.lex_state = 172}, - [9298] = {.lex_state = 0}, - [9299] = {.lex_state = 316}, - [9300] = {.lex_state = 316}, - [9301] = {.lex_state = 0}, - [9302] = {.lex_state = 316}, - [9303] = {.lex_state = 108}, - [9304] = {.lex_state = 316}, - [9305] = {.lex_state = 0}, - [9306] = {.lex_state = 202}, - [9307] = {.lex_state = 316}, - [9308] = {.lex_state = 0}, - [9309] = {.lex_state = 0}, - [9310] = {.lex_state = 316}, - [9311] = {.lex_state = 0, .external_lex_state = 3}, - [9312] = {.lex_state = 0}, - [9313] = {.lex_state = 0}, - [9314] = {.lex_state = 108}, - [9315] = {.lex_state = 0}, - [9316] = {.lex_state = 0}, - [9317] = {.lex_state = 172}, - [9318] = {.lex_state = 0}, - [9319] = {.lex_state = 0}, - [9320] = {.lex_state = 202}, - [9321] = {.lex_state = 0}, - [9322] = {.lex_state = 316}, - [9323] = {.lex_state = 0}, - [9324] = {.lex_state = 0}, - [9325] = {.lex_state = 0}, - [9326] = {.lex_state = 185}, - [9327] = {.lex_state = 0}, - [9328] = {.lex_state = 185}, - [9329] = {.lex_state = 0}, - [9330] = {.lex_state = 202}, - [9331] = {.lex_state = 316}, - [9332] = {.lex_state = 316}, - [9333] = {.lex_state = 0}, - [9334] = {.lex_state = 316}, - [9335] = {.lex_state = 202}, - [9336] = {.lex_state = 0}, - [9337] = {.lex_state = 0}, - [9338] = {.lex_state = 202}, - [9339] = {.lex_state = 316}, - [9340] = {.lex_state = 316}, - [9341] = {.lex_state = 0}, - [9342] = {.lex_state = 316}, - [9343] = {.lex_state = 0, .external_lex_state = 3}, - [9344] = {.lex_state = 0}, - [9345] = {.lex_state = 0}, - [9346] = {.lex_state = 202}, - [9347] = {.lex_state = 0}, - [9348] = {.lex_state = 0}, - [9349] = {.lex_state = 0}, - [9350] = {.lex_state = 185}, - [9351] = {.lex_state = 0}, - [9352] = {.lex_state = 316}, - [9353] = {.lex_state = 172}, - [9354] = {.lex_state = 316}, - [9355] = {.lex_state = 185}, - [9356] = {.lex_state = 0}, - [9357] = {.lex_state = 0}, - [9358] = {.lex_state = 0}, - [9359] = {.lex_state = 0}, - [9360] = {.lex_state = 316}, - [9361] = {.lex_state = 0, .external_lex_state = 3}, - [9362] = {.lex_state = 316}, - [9363] = {.lex_state = 0}, - [9364] = {.lex_state = 0}, - [9365] = {.lex_state = 202}, - [9366] = {.lex_state = 0}, - [9367] = {.lex_state = 202}, - [9368] = {.lex_state = 316}, - [9369] = {.lex_state = 316}, - [9370] = {.lex_state = 0}, - [9371] = {.lex_state = 0}, - [9372] = {.lex_state = 0}, - [9373] = {.lex_state = 0}, - [9374] = {.lex_state = 316}, - [9375] = {.lex_state = 0, .external_lex_state = 3}, - [9376] = {.lex_state = 172}, - [9377] = {.lex_state = 108}, - [9378] = {.lex_state = 108}, - [9379] = {.lex_state = 0}, - [9380] = {.lex_state = 0}, - [9381] = {.lex_state = 202}, - [9382] = {.lex_state = 316}, - [9383] = {.lex_state = 316}, - [9384] = {.lex_state = 0}, - [9385] = {.lex_state = 202}, - [9386] = {.lex_state = 0}, - [9387] = {.lex_state = 0}, - [9388] = {.lex_state = 316}, - [9389] = {.lex_state = 0, .external_lex_state = 3}, - [9390] = {.lex_state = 0, .external_lex_state = 3}, - [9391] = {.lex_state = 0}, - [9392] = {.lex_state = 0}, - [9393] = {.lex_state = 185}, - [9394] = {.lex_state = 0}, - [9395] = {.lex_state = 0}, - [9396] = {.lex_state = 316}, - [9397] = {.lex_state = 0}, - [9398] = {.lex_state = 0}, - [9399] = {.lex_state = 0, .external_lex_state = 3}, - [9400] = {.lex_state = 0}, - [9401] = {.lex_state = 108}, - [9402] = {.lex_state = 0}, - [9403] = {.lex_state = 0}, - [9404] = {.lex_state = 108}, - [9405] = {.lex_state = 0}, - [9406] = {.lex_state = 0}, - [9407] = {.lex_state = 0, .external_lex_state = 3}, - [9408] = {.lex_state = 0}, - [9409] = {.lex_state = 172}, - [9410] = {.lex_state = 0}, - [9411] = {.lex_state = 0, .external_lex_state = 3}, - [9412] = {.lex_state = 0}, - [9413] = {.lex_state = 0, .external_lex_state = 3}, - [9414] = {.lex_state = 0}, - [9415] = {.lex_state = 0, .external_lex_state = 3}, - [9416] = {.lex_state = 0}, - [9417] = {.lex_state = 0, .external_lex_state = 3}, - [9418] = {.lex_state = 0}, - [9419] = {.lex_state = 0, .external_lex_state = 3}, - [9420] = {.lex_state = 0}, - [9421] = {.lex_state = 0, .external_lex_state = 3}, - [9422] = {.lex_state = 0}, - [9423] = {.lex_state = 0}, - [9424] = {.lex_state = 108}, - [9425] = {.lex_state = 316}, - [9426] = {.lex_state = 316}, - [9427] = {.lex_state = 202}, - [9428] = {.lex_state = 0}, - [9429] = {.lex_state = 0}, - [9430] = {.lex_state = 0}, - [9431] = {.lex_state = 316}, - [9432] = {.lex_state = 0}, - [9433] = {.lex_state = 0}, - [9434] = {.lex_state = 0}, - [9435] = {.lex_state = 0}, - [9436] = {.lex_state = 108}, - [9437] = {.lex_state = 0}, - [9438] = {.lex_state = 0}, - [9439] = {.lex_state = 0}, - [9440] = {.lex_state = 0}, - [9441] = {.lex_state = 0}, - [9442] = {.lex_state = 0}, - [9443] = {.lex_state = 185}, - [9444] = {.lex_state = 202}, - [9445] = {.lex_state = 0}, - [9446] = {.lex_state = 0}, - [9447] = {.lex_state = 0}, - [9448] = {.lex_state = 0, .external_lex_state = 3}, - [9449] = {.lex_state = 0}, - [9450] = {.lex_state = 0}, - [9451] = {.lex_state = 0, .external_lex_state = 2}, - [9452] = {.lex_state = 172}, - [9453] = {.lex_state = 0}, - [9454] = {.lex_state = 0}, - [9455] = {.lex_state = 0}, - [9456] = {.lex_state = 0}, - [9457] = {.lex_state = 0}, - [9458] = {.lex_state = 0}, - [9459] = {.lex_state = 0}, - [9460] = {.lex_state = 0}, - [9461] = {.lex_state = 202}, - [9462] = {.lex_state = 0}, - [9463] = {.lex_state = 0}, - [9464] = {.lex_state = 0}, - [9465] = {.lex_state = 202}, - [9466] = {.lex_state = 202}, - [9467] = {.lex_state = 0}, - [9468] = {.lex_state = 0}, - [9469] = {.lex_state = 0}, - [9470] = {.lex_state = 0}, - [9471] = {.lex_state = 202}, - [9472] = {.lex_state = 108}, - [9473] = {.lex_state = 0}, - [9474] = {.lex_state = 172}, - [9475] = {.lex_state = 108}, - [9476] = {.lex_state = 0}, - [9477] = {.lex_state = 0}, - [9478] = {.lex_state = 0}, - [9479] = {.lex_state = 172}, - [9480] = {.lex_state = 202}, - [9481] = {.lex_state = 202}, - [9482] = {.lex_state = 0}, - [9483] = {.lex_state = 108}, - [9484] = {.lex_state = 0}, - [9485] = {.lex_state = 185}, - [9486] = {.lex_state = 202}, - [9487] = {.lex_state = 185}, - [9488] = {.lex_state = 0}, - [9489] = {.lex_state = 0}, - [9490] = {.lex_state = 108}, - [9491] = {.lex_state = 0}, - [9492] = {.lex_state = 0}, - [9493] = {.lex_state = 316}, - [9494] = {.lex_state = 0}, - [9495] = {.lex_state = 0}, - [9496] = {.lex_state = 0}, - [9497] = {.lex_state = 202}, - [9498] = {.lex_state = 0}, - [9499] = {.lex_state = 0}, - [9500] = {.lex_state = 202}, - [9501] = {.lex_state = 0}, - [9502] = {.lex_state = 202}, - [9503] = {.lex_state = 202}, - [9504] = {.lex_state = 0}, - [9505] = {.lex_state = 202}, - [9506] = {.lex_state = 0}, - [9507] = {.lex_state = 0}, - [9508] = {.lex_state = 0}, - [9509] = {.lex_state = 316}, - [9510] = {.lex_state = 202}, - [9511] = {.lex_state = 202}, - [9512] = {.lex_state = 0}, - [9513] = {.lex_state = 0}, - [9514] = {.lex_state = 0}, - [9515] = {.lex_state = 0}, - [9516] = {.lex_state = 172}, - [9517] = {.lex_state = 0}, - [9518] = {.lex_state = 0}, - [9519] = {.lex_state = 0}, - [9520] = {.lex_state = 0}, - [9521] = {.lex_state = 0}, - [9522] = {.lex_state = 0}, - [9523] = {.lex_state = 172}, - [9524] = {.lex_state = 0}, - [9525] = {.lex_state = 0}, - [9526] = {.lex_state = 0}, - [9527] = {.lex_state = 0}, - [9528] = {.lex_state = 316}, - [9529] = {.lex_state = 0}, - [9530] = {.lex_state = 0}, - [9531] = {.lex_state = 0}, - [9532] = {.lex_state = 0}, - [9533] = {.lex_state = 0}, - [9534] = {.lex_state = 0}, - [9535] = {.lex_state = 0}, - [9536] = {.lex_state = 0}, - [9537] = {.lex_state = 0}, - [9538] = {.lex_state = 0}, - [9539] = {.lex_state = 172}, - [9540] = {.lex_state = 0}, - [9541] = {.lex_state = 202}, - [9542] = {.lex_state = 202}, - [9543] = {.lex_state = 108}, - [9544] = {.lex_state = 0}, - [9545] = {.lex_state = 108}, - [9546] = {.lex_state = 0}, - [9547] = {.lex_state = 0}, - [9548] = {.lex_state = 316}, - [9549] = {.lex_state = 0}, - [9550] = {.lex_state = 316}, - [9551] = {.lex_state = 0}, - [9552] = {.lex_state = 108}, - [9553] = {.lex_state = 0}, - [9554] = {.lex_state = 0}, - [9555] = {.lex_state = 202}, - [9556] = {.lex_state = 0}, - [9557] = {.lex_state = 202}, - [9558] = {.lex_state = 0}, - [9559] = {.lex_state = 316}, - [9560] = {.lex_state = 202}, - [9561] = {.lex_state = 0}, - [9562] = {.lex_state = 0}, - [9563] = {.lex_state = 172}, - [9564] = {.lex_state = 0}, - [9565] = {.lex_state = 0}, - [9566] = {.lex_state = 0}, - [9567] = {.lex_state = 202}, - [9568] = {.lex_state = 0}, - [9569] = {.lex_state = 0, .external_lex_state = 3}, - [9570] = {.lex_state = 316}, - [9571] = {.lex_state = 316}, - [9572] = {.lex_state = 0}, - [9573] = {.lex_state = 202}, - [9574] = {.lex_state = 0}, - [9575] = {.lex_state = 0}, - [9576] = {.lex_state = 0}, - [9577] = {.lex_state = 0}, - [9578] = {.lex_state = 0}, - [9579] = {.lex_state = 202}, - [9580] = {.lex_state = 0}, - [9581] = {.lex_state = 0}, - [9582] = {.lex_state = 0}, - [9583] = {.lex_state = 202}, - [9584] = {.lex_state = 0}, - [9585] = {.lex_state = 172}, - [9586] = {.lex_state = 0}, - [9587] = {.lex_state = 0}, - [9588] = {.lex_state = 316}, - [9589] = {.lex_state = 0}, - [9590] = {.lex_state = 316}, - [9591] = {.lex_state = 316}, - [9592] = {.lex_state = 202}, - [9593] = {.lex_state = 0}, - [9594] = {.lex_state = 108}, - [9595] = {.lex_state = 0}, - [9596] = {.lex_state = 172}, - [9597] = {.lex_state = 202}, - [9598] = {.lex_state = 316}, - [9599] = {.lex_state = 0}, - [9600] = {.lex_state = 0}, - [9601] = {.lex_state = 0, .external_lex_state = 3}, - [9602] = {.lex_state = 0}, - [9603] = {.lex_state = 202}, - [9604] = {.lex_state = 108}, - [9605] = {.lex_state = 108}, - [9606] = {.lex_state = 0}, - [9607] = {.lex_state = 0}, - [9608] = {.lex_state = 0}, - [9609] = {.lex_state = 0}, - [9610] = {.lex_state = 0}, - [9611] = {.lex_state = 0}, - [9612] = {.lex_state = 0}, - [9613] = {.lex_state = 0}, - [9614] = {.lex_state = 0}, - [9615] = {.lex_state = 316}, - [9616] = {.lex_state = 202}, - [9617] = {.lex_state = 172}, - [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 = 202}, - [9625] = {.lex_state = 202}, - [9626] = {.lex_state = 0}, - [9627] = {.lex_state = 316}, - [9628] = {.lex_state = 202}, - [9629] = {.lex_state = 0}, - [9630] = {.lex_state = 0}, - [9631] = {.lex_state = 0}, - [9632] = {.lex_state = 0}, - [9633] = {.lex_state = 0}, - [9634] = {.lex_state = 0}, - [9635] = {.lex_state = 316}, - [9636] = {.lex_state = 202}, - [9637] = {.lex_state = 0}, - [9638] = {.lex_state = 0}, - [9639] = {.lex_state = 108}, - [9640] = {.lex_state = 202}, - [9641] = {.lex_state = 316}, - [9642] = {.lex_state = 0}, - [9643] = {.lex_state = 0, .external_lex_state = 3}, - [9644] = {.lex_state = 0}, - [9645] = {.lex_state = 0, .external_lex_state = 2}, - [9646] = {.lex_state = 108}, - [9647] = {.lex_state = 108}, - [9648] = {.lex_state = 0}, - [9649] = {.lex_state = 316}, - [9650] = {.lex_state = 202}, - [9651] = {.lex_state = 202}, - [9652] = {.lex_state = 0}, - [9653] = {.lex_state = 0}, - [9654] = {.lex_state = 202}, - [9655] = {.lex_state = 185}, - [9656] = {.lex_state = 0}, - [9657] = {.lex_state = 0, .external_lex_state = 3}, - [9658] = {.lex_state = 0}, - [9659] = {.lex_state = 0}, - [9660] = {.lex_state = 0}, - [9661] = {.lex_state = 316}, - [9662] = {.lex_state = 0}, - [9663] = {.lex_state = 316}, - [9664] = {.lex_state = 202}, - [9665] = {.lex_state = 0}, - [9666] = {.lex_state = 202}, - [9667] = {.lex_state = 202}, - [9668] = {.lex_state = 0, .external_lex_state = 3}, - [9669] = {.lex_state = 202}, - [9670] = {.lex_state = 316}, - [9671] = {.lex_state = 316}, - [9672] = {.lex_state = 202}, - [9673] = {.lex_state = 0}, - [9674] = {.lex_state = 202}, - [9675] = {.lex_state = 0, .external_lex_state = 3}, - [9676] = {.lex_state = 0}, - [9677] = {.lex_state = 316}, - [9678] = {.lex_state = 202}, - [9679] = {.lex_state = 0}, - [9680] = {.lex_state = 202}, - [9681] = {.lex_state = 0, .external_lex_state = 3}, - [9682] = {.lex_state = 0}, - [9683] = {.lex_state = 316}, - [9684] = {.lex_state = 202}, - [9685] = {.lex_state = 0}, - [9686] = {.lex_state = 202}, - [9687] = {.lex_state = 0, .external_lex_state = 3}, - [9688] = {.lex_state = 0}, - [9689] = {.lex_state = 0}, - [9690] = {.lex_state = 202}, - [9691] = {.lex_state = 0, .external_lex_state = 3}, - [9692] = {.lex_state = 316}, - [9693] = {.lex_state = 202}, - [9694] = {.lex_state = 0, .external_lex_state = 3}, - [9695] = {.lex_state = 0}, - [9696] = {.lex_state = 0, .external_lex_state = 3}, - [9697] = {.lex_state = 0}, - [9698] = {.lex_state = 0, .external_lex_state = 3}, - [9699] = {.lex_state = 0}, - [9700] = {.lex_state = 0, .external_lex_state = 3}, - [9701] = {.lex_state = 0}, - [9702] = {.lex_state = 0, .external_lex_state = 3}, - [9703] = {.lex_state = 0}, - [9704] = {.lex_state = 0, .external_lex_state = 3}, - [9705] = {.lex_state = 108}, - [9706] = {.lex_state = 0, .external_lex_state = 3}, - [9707] = {.lex_state = 316}, - [9708] = {.lex_state = 316}, - [9709] = {.lex_state = 316}, - [9710] = {.lex_state = 316}, - [9711] = {.lex_state = 0}, - [9712] = {.lex_state = 0}, - [9713] = {.lex_state = 0}, - [9714] = {.lex_state = 316}, - [9715] = {.lex_state = 316}, - [9716] = {.lex_state = 316}, - [9717] = {.lex_state = 316}, - [9718] = {.lex_state = 316}, - [9719] = {.lex_state = 316}, - [9720] = {.lex_state = 202}, - [9721] = {.lex_state = 316}, - [9722] = {.lex_state = 316}, - [9723] = {.lex_state = 316}, - [9724] = {.lex_state = 0}, - [9725] = {.lex_state = 0}, - [9726] = {.lex_state = 316}, - [9727] = {.lex_state = 316}, - [9728] = {.lex_state = 316}, - [9729] = {.lex_state = 316}, - [9730] = {.lex_state = 0}, - [9731] = {.lex_state = 185}, - [9732] = {.lex_state = 0}, - [9733] = {.lex_state = 316}, - [9734] = {.lex_state = 316}, - [9735] = {.lex_state = 0}, - [9736] = {.lex_state = 316}, - [9737] = {.lex_state = 316}, - [9738] = {.lex_state = 316}, - [9739] = {.lex_state = 316}, - [9740] = {.lex_state = 316}, - [9741] = {.lex_state = 316}, - [9742] = {.lex_state = 316}, - [9743] = {.lex_state = 316}, - [9744] = {.lex_state = 316}, - [9745] = {.lex_state = 316}, - [9746] = {.lex_state = 316}, - [9747] = {.lex_state = 0}, - [9748] = {.lex_state = 0}, - [9749] = {.lex_state = 316}, - [9750] = {.lex_state = 202}, - [9751] = {.lex_state = 0}, - [9752] = {.lex_state = 316}, - [9753] = {.lex_state = 185}, - [9754] = {.lex_state = 202}, - [9755] = {.lex_state = 202}, - [9756] = {.lex_state = 316}, - [9757] = {.lex_state = 316}, - [9758] = {.lex_state = 316}, - [9759] = {.lex_state = 316}, - [9760] = {.lex_state = 316}, + [8037] = {.lex_state = 172}, + [8038] = {.lex_state = 315}, + [8039] = {.lex_state = 315}, + [8040] = {.lex_state = 315}, + [8041] = {.lex_state = 315}, + [8042] = {.lex_state = 315}, }; enum { @@ -46194,7 +42841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_content] = ACTIONS(1), }, [1] = { - [sym_translation_unit] = STATE(9662), + [sym_translation_unit] = STATE(7413), [sym_preproc_include] = STATE(95), [sym_preproc_def] = STATE(95), [sym_preproc_function_def] = STATE(95), @@ -46204,28 +42851,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(95), [sym_declaration] = STATE(95), [sym_type_definition] = STATE(95), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5758), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4561), [sym_linkage_specification] = STATE(95), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2601), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7151), - [sym_array_declarator] = STATE(6917), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5806), + [sym_array_declarator] = STATE(5742), [sym_compound_statement] = STATE(95), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4280), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3475), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(95), [sym_labeled_statement] = STATE(95), [sym__top_level_expression_statement] = STATE(95), @@ -46239,50 +42886,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(95), [sym_continue_statement] = STATE(95), [sym_goto_statement] = STATE(95), - [sym__expression] = STATE(5413), - [sym__expression_not_binary] = STATE(5465), - [sym_conditional_expression] = STATE(5465), - [sym_assignment_expression] = STATE(5465), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(5465), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(5465), - [sym_cast_expression] = STATE(5465), - [sym_sizeof_expression] = STATE(5465), - [sym_alignof_expression] = STATE(5465), - [sym_offsetof_expression] = STATE(5465), - [sym_generic_expression] = STATE(5465), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(5465), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(5465), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(5465), + [sym__expression] = STATE(4382), + [sym__expression_not_binary] = STATE(4392), + [sym_conditional_expression] = STATE(4392), + [sym_assignment_expression] = STATE(4392), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(4392), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(4392), + [sym_cast_expression] = STATE(4392), + [sym_sizeof_expression] = STATE(4392), + [sym_alignof_expression] = STATE(4392), + [sym_offsetof_expression] = STATE(4392), + [sym_generic_expression] = STATE(4392), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(4392), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(4392), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(4392), [sym__empty_declaration] = STATE(95), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2402), - [sym_dependent_type] = STATE(3958), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1786), + [sym_dependent_type] = STATE(3114), [sym_template_declaration] = STATE(95), [sym_template_instantiation] = STATE(95), - [sym_operator_cast] = STATE(7496), - [sym__constructor_specifiers] = STATE(2402), + [sym_operator_cast] = STATE(6099), + [sym__constructor_specifiers] = STATE(1786), [sym_operator_cast_definition] = STATE(95), [sym_operator_cast_declaration] = STATE(95), [sym_constructor_or_destructor_definition] = STATE(95), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), [sym_namespace_definition] = STATE(95), [sym_namespace_alias_definition] = STATE(95), [sym_using_declaration] = STATE(95), @@ -46294,29 +42941,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(95), [sym_throw_statement] = STATE(95), [sym_try_statement] = STATE(95), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(5465), - [sym_new_expression] = STATE(5465), - [sym_delete_expression] = STATE(5465), - [sym_requires_clause] = STATE(5465), - [sym_requires_expression] = STATE(5465), - [sym_lambda_expression] = STATE(5465), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(5465), - [sym_parameter_pack_expansion] = STATE(5465), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7496), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(4392), + [sym_new_expression] = STATE(4392), + [sym_delete_expression] = STATE(4392), + [sym_requires_clause] = STATE(4392), + [sym_requires_expression] = STATE(4392), + [sym_lambda_expression] = STATE(4392), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(4392), + [sym_parameter_pack_expansion] = STATE(4392), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6099), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), [aux_sym_translation_unit_repeat1] = STATE(95), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2402), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1786), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -46446,144 +43093,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(113), }, [2] = { - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_preproc_else] = STATE(9479), - [sym_preproc_elif] = STATE(9479), - [sym_preproc_elifdef] = STATE(9479), - [sym_function_definition] = STATE(32), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5767), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2622), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7072), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4283), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_case_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_goto_statement] = STATE(32), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(32), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2405), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(32), - [sym_template_instantiation] = STATE(32), - [sym_operator_cast] = STATE(7476), - [sym__constructor_specifiers] = STATE(2405), - [sym_operator_cast_definition] = STATE(32), - [sym_operator_cast_declaration] = STATE(32), - [sym_constructor_or_destructor_definition] = STATE(32), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(32), - [sym_namespace_alias_definition] = STATE(32), - [sym_using_declaration] = STATE(32), - [sym_alias_declaration] = STATE(32), - [sym_static_assert_declaration] = STATE(32), - [sym_concept_definition] = STATE(32), - [sym_for_range_loop] = STATE(32), - [sym_co_return_statement] = STATE(32), - [sym_co_yield_statement] = STATE(32), - [sym_throw_statement] = STATE(32), - [sym_try_statement] = STATE(32), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7476), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2405), + [sym_preproc_include] = STATE(89), + [sym_preproc_def] = STATE(89), + [sym_preproc_function_def] = STATE(89), + [sym_preproc_call] = STATE(89), + [sym_preproc_if] = STATE(89), + [sym_preproc_ifdef] = STATE(89), + [sym_function_definition] = STATE(89), + [sym_declaration] = STATE(89), + [sym_type_definition] = STATE(89), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(89), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(89), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym__expression] = STATE(3915), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6786), + [sym_initializer_pair] = STATE(6786), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(89), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(89), + [sym_template_instantiation] = STATE(89), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(89), + [sym_operator_cast_declaration] = STATE(89), + [sym_constructor_or_destructor_definition] = STATE(89), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(89), + [sym_namespace_alias_definition] = STATE(89), + [sym_using_declaration] = STATE(89), + [sym_alias_declaration] = STATE(89), + [sym_static_assert_declaration] = STATE(89), + [sym_concept_definition] = STATE(89), + [sym_for_range_loop] = STATE(89), + [sym_co_return_statement] = STATE(89), + [sym_co_yield_statement] = STATE(89), + [sym_throw_statement] = STATE(89), + [sym_try_statement] = STATE(89), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(89), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), [sym_identifier] = ACTIONS(159), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), - [aux_sym_preproc_if_token1] = ACTIONS(165), - [aux_sym_preproc_if_token2] = ACTIONS(167), + [anon_sym_COMMA] = ACTIONS(165), + [aux_sym_preproc_if_token1] = ACTIONS(167), [aux_sym_preproc_ifdef_token1] = ACTIONS(169), [aux_sym_preproc_ifdef_token2] = ACTIONS(169), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), - [aux_sym_preproc_elifdef_token1] = ACTIONS(175), - [aux_sym_preproc_elifdef_token2] = ACTIONS(175), - [sym_preproc_directive] = ACTIONS(177), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -46592,10 +43237,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym___extension__] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(183), - [anon_sym_extern] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -46607,15 +43252,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(183), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(185), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(189), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -46637,17 +43283,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -46662,6 +43308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -46706,144 +43353,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [3] = { - [sym_preproc_include] = STATE(10), - [sym_preproc_def] = STATE(10), - [sym_preproc_function_def] = STATE(10), - [sym_preproc_call] = STATE(10), - [sym_preproc_if] = STATE(10), - [sym_preproc_ifdef] = STATE(10), - [sym_preproc_else] = STATE(9055), - [sym_preproc_elif] = STATE(9055), - [sym_preproc_elifdef] = STATE(9055), - [sym_function_definition] = STATE(10), - [sym_declaration] = STATE(10), - [sym_type_definition] = STATE(10), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5767), - [sym_linkage_specification] = STATE(10), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2622), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7072), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(10), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4283), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(10), - [sym_labeled_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_if_statement] = STATE(10), - [sym_switch_statement] = STATE(10), - [sym_case_statement] = STATE(10), - [sym_while_statement] = STATE(10), - [sym_do_statement] = STATE(10), - [sym_for_statement] = STATE(10), - [sym_return_statement] = STATE(10), - [sym_break_statement] = STATE(10), - [sym_continue_statement] = STATE(10), - [sym_goto_statement] = STATE(10), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(10), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2405), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(10), - [sym_template_instantiation] = STATE(10), - [sym_operator_cast] = STATE(7476), - [sym__constructor_specifiers] = STATE(2405), - [sym_operator_cast_definition] = STATE(10), - [sym_operator_cast_declaration] = STATE(10), - [sym_constructor_or_destructor_definition] = STATE(10), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(10), - [sym_namespace_alias_definition] = STATE(10), - [sym_using_declaration] = STATE(10), - [sym_alias_declaration] = STATE(10), - [sym_static_assert_declaration] = STATE(10), - [sym_concept_definition] = STATE(10), - [sym_for_range_loop] = STATE(10), - [sym_co_return_statement] = STATE(10), - [sym_co_yield_statement] = STATE(10), - [sym_throw_statement] = STATE(10), - [sym_try_statement] = STATE(10), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7476), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(10), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2405), + [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(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(86), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(86), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(86), + [sym_labeled_statement] = STATE(86), + [sym_expression_statement] = STATE(86), + [sym_if_statement] = STATE(86), + [sym_switch_statement] = STATE(86), + [sym_case_statement] = STATE(86), + [sym_while_statement] = STATE(86), + [sym_do_statement] = STATE(86), + [sym_for_statement] = STATE(86), + [sym_return_statement] = STATE(86), + [sym_break_statement] = STATE(86), + [sym_continue_statement] = STATE(86), + [sym_goto_statement] = STATE(86), + [sym__expression] = STATE(3915), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6786), + [sym_initializer_pair] = STATE(6786), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(86), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(86), + [sym_template_instantiation] = STATE(86), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(86), + [sym_operator_cast_declaration] = STATE(86), + [sym_constructor_or_destructor_definition] = STATE(86), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(86), + [sym_namespace_alias_definition] = STATE(86), + [sym_using_declaration] = STATE(86), + [sym_alias_declaration] = STATE(86), + [sym_static_assert_declaration] = STATE(86), + [sym_concept_definition] = STATE(86), + [sym_for_range_loop] = STATE(86), + [sym_co_return_statement] = STATE(86), + [sym_co_yield_statement] = STATE(86), + [sym_throw_statement] = STATE(86), + [sym_try_statement] = STATE(86), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(86), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), [sym_identifier] = ACTIONS(159), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), - [aux_sym_preproc_if_token1] = ACTIONS(165), - [aux_sym_preproc_if_token2] = ACTIONS(233), + [anon_sym_COMMA] = ACTIONS(165), + [aux_sym_preproc_if_token1] = ACTIONS(167), [aux_sym_preproc_ifdef_token1] = ACTIONS(169), [aux_sym_preproc_ifdef_token2] = ACTIONS(169), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), - [aux_sym_preproc_elifdef_token1] = ACTIONS(175), - [aux_sym_preproc_elifdef_token2] = ACTIONS(175), - [sym_preproc_directive] = ACTIONS(177), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -46852,10 +43497,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym___extension__] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(183), - [anon_sym_extern] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -46867,15 +43512,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(233), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(185), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(189), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -46897,17 +43543,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -46922,6 +43568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -46966,142 +43613,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [4] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(57), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(57), - [sym_labeled_statement] = STATE(57), - [sym_expression_statement] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_switch_statement] = STATE(57), - [sym_case_statement] = STATE(57), - [sym_while_statement] = STATE(57), - [sym_do_statement] = STATE(57), - [sym_for_statement] = STATE(57), - [sym_return_statement] = STATE(57), - [sym_break_statement] = STATE(57), - [sym_continue_statement] = STATE(57), - [sym_goto_statement] = STATE(57), - [sym__expression] = STATE(4891), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8341), - [sym_initializer_pair] = STATE(8341), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(57), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(57), - [sym_template_instantiation] = STATE(57), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(57), - [sym_operator_cast_declaration] = STATE(57), - [sym_constructor_or_destructor_definition] = STATE(57), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(57), - [sym_namespace_alias_definition] = STATE(57), - [sym_using_declaration] = STATE(57), - [sym_alias_declaration] = STATE(57), - [sym_static_assert_declaration] = STATE(57), - [sym_concept_definition] = STATE(57), - [sym_for_range_loop] = STATE(57), - [sym_co_return_statement] = STATE(57), - [sym_co_yield_statement] = STATE(57), - [sym_throw_statement] = STATE(57), - [sym_try_statement] = STATE(57), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(57), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_preproc_else] = STATE(7196), + [sym_preproc_elif] = STATE(7196), + [sym_preproc_elifdef] = STATE(7196), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4552), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1937), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5800), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3480), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1784), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(6095), + [sym__constructor_specifiers] = STATE(1784), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(37), + [sym_namespace_alias_definition] = STATE(37), + [sym_using_declaration] = STATE(37), + [sym_alias_declaration] = STATE(37), + [sym_static_assert_declaration] = STATE(37), + [sym_concept_definition] = STATE(37), + [sym_for_range_loop] = STATE(37), + [sym_co_return_statement] = STATE(37), + [sym_co_yield_statement] = STATE(37), + [sym_throw_statement] = STATE(37), + [sym_try_statement] = STATE(37), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6095), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1784), [sym_identifier] = ACTIONS(235), [aux_sym_preproc_include_token1] = ACTIONS(237), [aux_sym_preproc_def_token1] = ACTIONS(239), - [anon_sym_COMMA] = ACTIONS(241), - [aux_sym_preproc_if_token1] = ACTIONS(243), + [aux_sym_preproc_if_token1] = ACTIONS(241), + [aux_sym_preproc_if_token2] = ACTIONS(243), [aux_sym_preproc_ifdef_token1] = ACTIONS(245), [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), + [aux_sym_preproc_elifdef_token1] = ACTIONS(251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(251), + [sym_preproc_directive] = ACTIONS(253), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -47110,10 +43759,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym___extension__] = ACTIONS(257), + [anon_sym_typedef] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -47125,16 +43774,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(257), - [anon_sym_RBRACE] = ACTIONS(259), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(265), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -47156,17 +43804,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(273), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -47181,7 +43829,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -47226,142 +43873,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [5] = { - [sym_preproc_include] = STATE(47), - [sym_preproc_def] = STATE(47), - [sym_preproc_function_def] = STATE(47), - [sym_preproc_call] = STATE(47), - [sym_preproc_if] = STATE(47), - [sym_preproc_ifdef] = STATE(47), - [sym_function_definition] = STATE(47), - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(47), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_case_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym__expression] = STATE(4891), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8341), - [sym_initializer_pair] = STATE(8341), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(47), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(47), - [sym_template_instantiation] = STATE(47), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(47), - [sym_operator_cast_declaration] = STATE(47), - [sym_constructor_or_destructor_definition] = STATE(47), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(47), - [sym_namespace_alias_definition] = STATE(47), - [sym_using_declaration] = STATE(47), - [sym_alias_declaration] = STATE(47), - [sym_static_assert_declaration] = STATE(47), - [sym_concept_definition] = STATE(47), - [sym_for_range_loop] = STATE(47), - [sym_co_return_statement] = STATE(47), - [sym_co_yield_statement] = STATE(47), - [sym_throw_statement] = STATE(47), - [sym_try_statement] = STATE(47), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [anon_sym_COMMA] = ACTIONS(241), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_preproc_include] = STATE(70), + [sym_preproc_def] = STATE(70), + [sym_preproc_function_def] = STATE(70), + [sym_preproc_call] = STATE(70), + [sym_preproc_if] = STATE(70), + [sym_preproc_ifdef] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_declaration] = STATE(70), + [sym_type_definition] = STATE(70), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(70), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(70), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(70), + [sym_labeled_statement] = STATE(70), + [sym_expression_statement] = STATE(70), + [sym_if_statement] = STATE(70), + [sym_switch_statement] = STATE(70), + [sym_case_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_do_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_return_statement] = STATE(70), + [sym_break_statement] = STATE(70), + [sym_continue_statement] = STATE(70), + [sym_goto_statement] = STATE(70), + [sym__expression] = STATE(3915), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6786), + [sym_initializer_pair] = STATE(6786), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(70), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(70), + [sym_template_instantiation] = STATE(70), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(70), + [sym_operator_cast_declaration] = STATE(70), + [sym_constructor_or_destructor_definition] = STATE(70), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(70), + [sym_namespace_alias_definition] = STATE(70), + [sym_using_declaration] = STATE(70), + [sym_alias_declaration] = STATE(70), + [sym_static_assert_declaration] = STATE(70), + [sym_concept_definition] = STATE(70), + [sym_for_range_loop] = STATE(70), + [sym_co_return_statement] = STATE(70), + [sym_co_yield_statement] = STATE(70), + [sym_throw_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(70), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [anon_sym_COMMA] = ACTIONS(165), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -47370,10 +44017,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -47385,16 +44032,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(257), + [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_RBRACE] = ACTIONS(307), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_LBRACK] = ACTIONS(185), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -47416,17 +44063,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -47441,7 +44088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), + [anon_sym_DOT] = ACTIONS(211), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -47464,17 +44111,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -47486,142 +44133,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [6] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(60), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(60), - [sym_labeled_statement] = STATE(60), - [sym_expression_statement] = STATE(60), - [sym_if_statement] = STATE(60), - [sym_switch_statement] = STATE(60), - [sym_case_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_do_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_return_statement] = STATE(60), - [sym_break_statement] = STATE(60), - [sym_continue_statement] = STATE(60), - [sym_goto_statement] = STATE(60), - [sym__expression] = STATE(4891), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8341), - [sym_initializer_pair] = STATE(8341), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(60), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(60), - [sym_template_instantiation] = STATE(60), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(60), - [sym_operator_cast_declaration] = STATE(60), - [sym_constructor_or_destructor_definition] = STATE(60), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(60), - [sym_namespace_alias_definition] = STATE(60), - [sym_using_declaration] = STATE(60), - [sym_alias_declaration] = STATE(60), - [sym_static_assert_declaration] = STATE(60), - [sym_concept_definition] = STATE(60), - [sym_for_range_loop] = STATE(60), - [sym_co_return_statement] = STATE(60), - [sym_co_yield_statement] = STATE(60), - [sym_throw_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(60), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_preproc_else] = STATE(7296), + [sym_preproc_elif] = STATE(7296), + [sym_preproc_elifdef] = STATE(7296), + [sym_function_definition] = STATE(14), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4552), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1937), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5800), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3480), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_case_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(14), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1784), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(14), + [sym_template_instantiation] = STATE(14), + [sym_operator_cast] = STATE(6095), + [sym__constructor_specifiers] = STATE(1784), + [sym_operator_cast_definition] = STATE(14), + [sym_operator_cast_declaration] = STATE(14), + [sym_constructor_or_destructor_definition] = STATE(14), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(14), + [sym_namespace_alias_definition] = STATE(14), + [sym_using_declaration] = STATE(14), + [sym_alias_declaration] = STATE(14), + [sym_static_assert_declaration] = STATE(14), + [sym_concept_definition] = STATE(14), + [sym_for_range_loop] = STATE(14), + [sym_co_return_statement] = STATE(14), + [sym_co_yield_statement] = STATE(14), + [sym_throw_statement] = STATE(14), + [sym_try_statement] = STATE(14), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6095), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1784), [sym_identifier] = ACTIONS(235), [aux_sym_preproc_include_token1] = ACTIONS(237), [aux_sym_preproc_def_token1] = ACTIONS(239), - [anon_sym_COMMA] = ACTIONS(241), - [aux_sym_preproc_if_token1] = ACTIONS(243), + [aux_sym_preproc_if_token1] = ACTIONS(241), + [aux_sym_preproc_if_token2] = ACTIONS(309), [aux_sym_preproc_ifdef_token1] = ACTIONS(245), [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), + [aux_sym_preproc_elifdef_token1] = ACTIONS(251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(251), + [sym_preproc_directive] = ACTIONS(253), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -47630,10 +44279,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym___extension__] = ACTIONS(257), + [anon_sym_typedef] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -47645,16 +44294,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(257), - [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(265), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -47676,17 +44324,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(273), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -47701,7 +44349,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -47746,144 +44393,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [7] = { - [sym_preproc_include] = STATE(21), - [sym_preproc_def] = STATE(21), - [sym_preproc_function_def] = STATE(21), - [sym_preproc_call] = STATE(21), - [sym_preproc_if] = STATE(21), - [sym_preproc_ifdef] = STATE(21), - [sym_preproc_else] = STATE(9376), - [sym_preproc_elif] = STATE(9376), - [sym_preproc_elifdef] = STATE(9376), - [sym_function_definition] = STATE(21), - [sym_declaration] = STATE(21), - [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5767), - [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2622), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7072), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(21), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4283), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_case_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_goto_statement] = STATE(21), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(21), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2405), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(21), - [sym_template_instantiation] = STATE(21), - [sym_operator_cast] = STATE(7476), - [sym__constructor_specifiers] = STATE(2405), - [sym_operator_cast_definition] = STATE(21), - [sym_operator_cast_declaration] = STATE(21), - [sym_constructor_or_destructor_definition] = STATE(21), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(21), - [sym_namespace_alias_definition] = STATE(21), - [sym_using_declaration] = STATE(21), - [sym_alias_declaration] = STATE(21), - [sym_static_assert_declaration] = STATE(21), - [sym_concept_definition] = STATE(21), - [sym_for_range_loop] = STATE(21), - [sym_co_return_statement] = STATE(21), - [sym_co_yield_statement] = STATE(21), - [sym_throw_statement] = STATE(21), - [sym_try_statement] = STATE(21), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7476), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2405), + [sym_preproc_include] = STATE(87), + [sym_preproc_def] = STATE(87), + [sym_preproc_function_def] = STATE(87), + [sym_preproc_call] = STATE(87), + [sym_preproc_if] = STATE(87), + [sym_preproc_ifdef] = STATE(87), + [sym_function_definition] = STATE(87), + [sym_declaration] = STATE(87), + [sym_type_definition] = STATE(87), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(87), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(87), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [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_case_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__expression] = STATE(3915), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6786), + [sym_initializer_pair] = STATE(6786), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(87), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(87), + [sym_template_instantiation] = STATE(87), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(87), + [sym_operator_cast_declaration] = STATE(87), + [sym_constructor_or_destructor_definition] = STATE(87), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(87), + [sym_namespace_alias_definition] = STATE(87), + [sym_using_declaration] = STATE(87), + [sym_alias_declaration] = STATE(87), + [sym_static_assert_declaration] = STATE(87), + [sym_concept_definition] = STATE(87), + [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(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(87), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), [sym_identifier] = ACTIONS(159), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), - [aux_sym_preproc_if_token1] = ACTIONS(165), - [aux_sym_preproc_if_token2] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(165), + [aux_sym_preproc_if_token1] = ACTIONS(167), [aux_sym_preproc_ifdef_token1] = ACTIONS(169), [aux_sym_preproc_ifdef_token2] = ACTIONS(169), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), - [aux_sym_preproc_elifdef_token1] = ACTIONS(175), - [aux_sym_preproc_elifdef_token2] = ACTIONS(175), - [sym_preproc_directive] = ACTIONS(177), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -47892,10 +44537,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym___extension__] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(183), - [anon_sym_extern] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -47907,15 +44552,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(311), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(185), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(189), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -47937,17 +44583,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -47962,6 +44608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -48006,142 +44653,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [8] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_case_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym__expression] = STATE(4891), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8341), - [sym_initializer_pair] = STATE(8341), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(48), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(48), - [sym_template_instantiation] = STATE(48), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(48), - [sym_operator_cast_declaration] = STATE(48), - [sym_constructor_or_destructor_definition] = STATE(48), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(48), - [sym_namespace_alias_definition] = STATE(48), - [sym_using_declaration] = STATE(48), - [sym_alias_declaration] = STATE(48), - [sym_static_assert_declaration] = STATE(48), - [sym_concept_definition] = STATE(48), - [sym_for_range_loop] = STATE(48), - [sym_co_return_statement] = STATE(48), - [sym_co_yield_statement] = STATE(48), - [sym_throw_statement] = STATE(48), - [sym_try_statement] = STATE(48), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_preproc_else] = STATE(7368), + [sym_preproc_elif] = STATE(7368), + [sym_preproc_elifdef] = STATE(7368), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4552), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1937), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5800), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3480), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(21), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_case_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(21), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1784), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(21), + [sym_template_instantiation] = STATE(21), + [sym_operator_cast] = STATE(6095), + [sym__constructor_specifiers] = STATE(1784), + [sym_operator_cast_definition] = STATE(21), + [sym_operator_cast_declaration] = STATE(21), + [sym_constructor_or_destructor_definition] = STATE(21), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(21), + [sym_namespace_alias_definition] = STATE(21), + [sym_using_declaration] = STATE(21), + [sym_alias_declaration] = STATE(21), + [sym_static_assert_declaration] = STATE(21), + [sym_concept_definition] = STATE(21), + [sym_for_range_loop] = STATE(21), + [sym_co_return_statement] = STATE(21), + [sym_co_yield_statement] = STATE(21), + [sym_throw_statement] = STATE(21), + [sym_try_statement] = STATE(21), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6095), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1784), [sym_identifier] = ACTIONS(235), [aux_sym_preproc_include_token1] = ACTIONS(237), [aux_sym_preproc_def_token1] = ACTIONS(239), - [anon_sym_COMMA] = ACTIONS(241), - [aux_sym_preproc_if_token1] = ACTIONS(243), + [aux_sym_preproc_if_token1] = ACTIONS(241), + [aux_sym_preproc_if_token2] = ACTIONS(313), [aux_sym_preproc_ifdef_token1] = ACTIONS(245), [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), + [aux_sym_preproc_elifdef_token1] = ACTIONS(251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(251), + [sym_preproc_directive] = ACTIONS(253), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -48150,10 +44799,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym___extension__] = ACTIONS(257), + [anon_sym_typedef] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -48165,16 +44814,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(257), - [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(265), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -48196,17 +44844,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(273), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -48221,7 +44869,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -48275,28 +44922,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(59), [sym_declaration] = STATE(59), [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), [sym_linkage_specification] = STATE(59), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(59), [sym_labeled_statement] = STATE(59), [sym_expression_statement] = STATE(59), @@ -48310,55 +44957,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(59), [sym_continue_statement] = STATE(59), [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(4891), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8341), - [sym_initializer_pair] = STATE(8341), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), + [sym__expression] = STATE(3915), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6786), + [sym_initializer_pair] = STATE(6786), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), [sym__empty_declaration] = STATE(59), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), [sym_template_declaration] = STATE(59), [sym_template_instantiation] = STATE(59), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), [sym_operator_cast_definition] = STATE(59), [sym_operator_cast_declaration] = STATE(59), [sym_constructor_or_destructor_definition] = STATE(59), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), [sym_namespace_definition] = STATE(59), [sym_namespace_alias_definition] = STATE(59), [sym_using_declaration] = STATE(59), @@ -48370,38 +45017,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(59), [sym_throw_statement] = STATE(59), [sym_try_statement] = STATE(59), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), [aux_sym_preproc_if_repeat1] = STATE(59), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [anon_sym_COMMA] = ACTIONS(241), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [anon_sym_COMMA] = ACTIONS(165), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -48410,10 +45057,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -48425,16 +45072,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(257), + [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_RBRACE] = ACTIONS(315), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_LBRACK] = ACTIONS(185), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -48456,17 +45103,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -48481,7 +45128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), + [anon_sym_DOT] = ACTIONS(211), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -48504,17 +45151,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -48526,144 +45173,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [10] = { - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_preproc_else] = STATE(9135), - [sym_preproc_elif] = STATE(9135), - [sym_preproc_elifdef] = STATE(9135), - [sym_function_definition] = STATE(32), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5767), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2622), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7072), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4283), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_case_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_goto_statement] = STATE(32), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(32), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2405), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(32), - [sym_template_instantiation] = STATE(32), - [sym_operator_cast] = STATE(7476), - [sym__constructor_specifiers] = STATE(2405), - [sym_operator_cast_definition] = STATE(32), - [sym_operator_cast_declaration] = STATE(32), - [sym_constructor_or_destructor_definition] = STATE(32), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(32), - [sym_namespace_alias_definition] = STATE(32), - [sym_using_declaration] = STATE(32), - [sym_alias_declaration] = STATE(32), - [sym_static_assert_declaration] = STATE(32), - [sym_concept_definition] = STATE(32), - [sym_for_range_loop] = STATE(32), - [sym_co_return_statement] = STATE(32), - [sym_co_yield_statement] = STATE(32), - [sym_throw_statement] = STATE(32), - [sym_try_statement] = STATE(32), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7476), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2405), - [sym_identifier] = ACTIONS(159), - [aux_sym_preproc_include_token1] = ACTIONS(161), - [aux_sym_preproc_def_token1] = ACTIONS(163), - [aux_sym_preproc_if_token1] = ACTIONS(165), + [sym_preproc_include] = STATE(4), + [sym_preproc_def] = STATE(4), + [sym_preproc_function_def] = STATE(4), + [sym_preproc_call] = STATE(4), + [sym_preproc_if] = STATE(4), + [sym_preproc_ifdef] = STATE(4), + [sym_preproc_else] = STATE(7188), + [sym_preproc_elif] = STATE(7188), + [sym_preproc_elifdef] = STATE(7188), + [sym_function_definition] = STATE(4), + [sym_declaration] = STATE(4), + [sym_type_definition] = STATE(4), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4552), + [sym_linkage_specification] = STATE(4), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1937), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5800), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(4), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3480), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(4), + [sym_labeled_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_switch_statement] = STATE(4), + [sym_case_statement] = STATE(4), + [sym_while_statement] = STATE(4), + [sym_do_statement] = STATE(4), + [sym_for_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_break_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_goto_statement] = STATE(4), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(4), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1784), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(4), + [sym_template_instantiation] = STATE(4), + [sym_operator_cast] = STATE(6095), + [sym__constructor_specifiers] = STATE(1784), + [sym_operator_cast_definition] = STATE(4), + [sym_operator_cast_declaration] = STATE(4), + [sym_constructor_or_destructor_definition] = STATE(4), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(4), + [sym_namespace_alias_definition] = STATE(4), + [sym_using_declaration] = STATE(4), + [sym_alias_declaration] = STATE(4), + [sym_static_assert_declaration] = STATE(4), + [sym_concept_definition] = STATE(4), + [sym_for_range_loop] = STATE(4), + [sym_co_return_statement] = STATE(4), + [sym_co_yield_statement] = STATE(4), + [sym_throw_statement] = STATE(4), + [sym_try_statement] = STATE(4), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6095), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(4), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1784), + [sym_identifier] = ACTIONS(235), + [aux_sym_preproc_include_token1] = ACTIONS(237), + [aux_sym_preproc_def_token1] = ACTIONS(239), + [aux_sym_preproc_if_token1] = ACTIONS(241), [aux_sym_preproc_if_token2] = ACTIONS(317), - [aux_sym_preproc_ifdef_token1] = ACTIONS(169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(169), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), - [aux_sym_preproc_elifdef_token1] = ACTIONS(175), - [aux_sym_preproc_elifdef_token2] = ACTIONS(175), - [sym_preproc_directive] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(245), + [aux_sym_preproc_ifdef_token2] = ACTIONS(245), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), + [aux_sym_preproc_elifdef_token1] = ACTIONS(251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(251), + [sym_preproc_directive] = ACTIONS(253), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -48672,10 +45319,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym___extension__] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(183), - [anon_sym_extern] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym___extension__] = ACTIONS(257), + [anon_sym_typedef] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -48687,7 +45334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -48695,7 +45342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(189), + [anon_sym_inline] = ACTIONS(265), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -48717,17 +45364,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_if] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(273), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -48764,17 +45411,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(215), + [anon_sym_template] = ACTIONS(289), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(217), + [anon_sym_try] = ACTIONS(291), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_namespace] = ACTIONS(221), - [anon_sym_using] = ACTIONS(223), - [anon_sym_static_assert] = ACTIONS(225), - [anon_sym_concept] = ACTIONS(227), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), + [anon_sym_throw] = ACTIONS(293), + [anon_sym_namespace] = ACTIONS(295), + [anon_sym_using] = ACTIONS(297), + [anon_sym_static_assert] = ACTIONS(299), + [anon_sym_concept] = ACTIONS(301), + [anon_sym_co_return] = ACTIONS(303), + [anon_sym_co_yield] = ACTIONS(305), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -48786,142 +45433,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [11] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(60), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(60), - [sym_labeled_statement] = STATE(60), - [sym_expression_statement] = STATE(60), - [sym_if_statement] = STATE(60), - [sym_switch_statement] = STATE(60), - [sym_case_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_do_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_return_statement] = STATE(60), - [sym_break_statement] = STATE(60), - [sym_continue_statement] = STATE(60), - [sym_goto_statement] = STATE(60), - [sym__expression] = STATE(4891), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8341), - [sym_initializer_pair] = STATE(8341), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(60), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(60), - [sym_template_instantiation] = STATE(60), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(60), - [sym_operator_cast_declaration] = STATE(60), - [sym_constructor_or_destructor_definition] = STATE(60), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(60), - [sym_namespace_alias_definition] = STATE(60), - [sym_using_declaration] = STATE(60), - [sym_alias_declaration] = STATE(60), - [sym_static_assert_declaration] = STATE(60), - [sym_concept_definition] = STATE(60), - [sym_for_range_loop] = STATE(60), - [sym_co_return_statement] = STATE(60), - [sym_co_yield_statement] = STATE(60), - [sym_throw_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(60), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [anon_sym_COMMA] = ACTIONS(241), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [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(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(86), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(86), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(86), + [sym_labeled_statement] = STATE(86), + [sym_expression_statement] = STATE(86), + [sym_if_statement] = STATE(86), + [sym_switch_statement] = STATE(86), + [sym_case_statement] = STATE(86), + [sym_while_statement] = STATE(86), + [sym_do_statement] = STATE(86), + [sym_for_statement] = STATE(86), + [sym_return_statement] = STATE(86), + [sym_break_statement] = STATE(86), + [sym_continue_statement] = STATE(86), + [sym_goto_statement] = STATE(86), + [sym__expression] = STATE(3915), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6786), + [sym_initializer_pair] = STATE(6786), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(86), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(86), + [sym_template_instantiation] = STATE(86), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(86), + [sym_operator_cast_declaration] = STATE(86), + [sym_constructor_or_destructor_definition] = STATE(86), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(86), + [sym_namespace_alias_definition] = STATE(86), + [sym_using_declaration] = STATE(86), + [sym_alias_declaration] = STATE(86), + [sym_static_assert_declaration] = STATE(86), + [sym_concept_definition] = STATE(86), + [sym_for_range_loop] = STATE(86), + [sym_co_return_statement] = STATE(86), + [sym_co_yield_statement] = STATE(86), + [sym_throw_statement] = STATE(86), + [sym_try_statement] = STATE(86), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(86), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [anon_sym_COMMA] = ACTIONS(165), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -48930,10 +45577,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -48945,16 +45592,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(257), + [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_RBRACE] = ACTIONS(319), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_LBRACK] = ACTIONS(185), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -48976,17 +45623,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -49001,7 +45648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), + [anon_sym_DOT] = ACTIONS(211), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -49024,17 +45671,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -49046,142 +45693,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [12] = { - [sym_preproc_include] = STATE(72), - [sym_preproc_def] = STATE(72), - [sym_preproc_function_def] = STATE(72), - [sym_preproc_call] = STATE(72), - [sym_preproc_if] = STATE(72), - [sym_preproc_ifdef] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(72), - [sym_labeled_statement] = STATE(72), - [sym_expression_statement] = STATE(72), - [sym_if_statement] = STATE(72), - [sym_switch_statement] = STATE(72), - [sym_case_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_do_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_return_statement] = STATE(72), - [sym_break_statement] = STATE(72), - [sym_continue_statement] = STATE(72), - [sym_goto_statement] = STATE(72), - [sym__expression] = STATE(4891), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8341), - [sym_initializer_pair] = STATE(8341), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(72), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(72), - [sym_namespace_alias_definition] = STATE(72), - [sym_using_declaration] = STATE(72), - [sym_alias_declaration] = STATE(72), - [sym_static_assert_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(72), - [sym_co_return_statement] = STATE(72), - [sym_co_yield_statement] = STATE(72), - [sym_throw_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(72), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [anon_sym_COMMA] = ACTIONS(241), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_preproc_include] = STATE(93), + [sym_preproc_def] = STATE(93), + [sym_preproc_function_def] = STATE(93), + [sym_preproc_call] = STATE(93), + [sym_preproc_if] = STATE(93), + [sym_preproc_ifdef] = STATE(93), + [sym_function_definition] = STATE(93), + [sym_declaration] = STATE(93), + [sym_type_definition] = STATE(93), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(93), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(93), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(93), + [sym_labeled_statement] = STATE(93), + [sym_expression_statement] = STATE(93), + [sym_if_statement] = STATE(93), + [sym_switch_statement] = STATE(93), + [sym_case_statement] = STATE(93), + [sym_while_statement] = STATE(93), + [sym_do_statement] = STATE(93), + [sym_for_statement] = STATE(93), + [sym_return_statement] = STATE(93), + [sym_break_statement] = STATE(93), + [sym_continue_statement] = STATE(93), + [sym_goto_statement] = STATE(93), + [sym__expression] = STATE(3915), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6786), + [sym_initializer_pair] = STATE(6786), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(93), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(93), + [sym_template_instantiation] = STATE(93), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(93), + [sym_operator_cast_declaration] = STATE(93), + [sym_constructor_or_destructor_definition] = STATE(93), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(93), + [sym_namespace_alias_definition] = STATE(93), + [sym_using_declaration] = STATE(93), + [sym_alias_declaration] = STATE(93), + [sym_static_assert_declaration] = STATE(93), + [sym_concept_definition] = STATE(93), + [sym_for_range_loop] = STATE(93), + [sym_co_return_statement] = STATE(93), + [sym_co_yield_statement] = STATE(93), + [sym_throw_statement] = STATE(93), + [sym_try_statement] = STATE(93), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(93), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [anon_sym_COMMA] = ACTIONS(165), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -49190,10 +45837,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -49205,16 +45852,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(257), + [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_RBRACE] = ACTIONS(321), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_LBRACK] = ACTIONS(185), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -49236,17 +45883,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -49261,7 +45908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), + [anon_sym_DOT] = ACTIONS(211), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -49284,17 +45931,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -49306,142 +45953,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [13] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(59), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_case_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(4891), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8341), - [sym_initializer_pair] = STATE(8341), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(59), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(59), - [sym_template_instantiation] = STATE(59), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(59), - [sym_operator_cast_declaration] = STATE(59), - [sym_constructor_or_destructor_definition] = STATE(59), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(59), - [sym_namespace_alias_definition] = STATE(59), - [sym_using_declaration] = STATE(59), - [sym_alias_declaration] = STATE(59), - [sym_static_assert_declaration] = STATE(59), - [sym_concept_definition] = STATE(59), - [sym_for_range_loop] = STATE(59), - [sym_co_return_statement] = STATE(59), - [sym_co_yield_statement] = STATE(59), - [sym_throw_statement] = STATE(59), - [sym_try_statement] = STATE(59), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(59), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_preproc_else] = STATE(7348), + [sym_preproc_elif] = STATE(7348), + [sym_preproc_elifdef] = STATE(7348), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4552), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1937), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5800), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3480), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1784), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(6095), + [sym__constructor_specifiers] = STATE(1784), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(37), + [sym_namespace_alias_definition] = STATE(37), + [sym_using_declaration] = STATE(37), + [sym_alias_declaration] = STATE(37), + [sym_static_assert_declaration] = STATE(37), + [sym_concept_definition] = STATE(37), + [sym_for_range_loop] = STATE(37), + [sym_co_return_statement] = STATE(37), + [sym_co_yield_statement] = STATE(37), + [sym_throw_statement] = STATE(37), + [sym_try_statement] = STATE(37), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6095), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1784), [sym_identifier] = ACTIONS(235), [aux_sym_preproc_include_token1] = ACTIONS(237), [aux_sym_preproc_def_token1] = ACTIONS(239), - [anon_sym_COMMA] = ACTIONS(241), - [aux_sym_preproc_if_token1] = ACTIONS(243), + [aux_sym_preproc_if_token1] = ACTIONS(241), + [aux_sym_preproc_if_token2] = ACTIONS(323), [aux_sym_preproc_ifdef_token1] = ACTIONS(245), [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), + [aux_sym_preproc_elifdef_token1] = ACTIONS(251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(251), + [sym_preproc_directive] = ACTIONS(253), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -49450,10 +46099,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym___extension__] = ACTIONS(257), + [anon_sym_typedef] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -49465,16 +46114,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(257), - [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(265), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -49496,17 +46144,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(273), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -49521,7 +46169,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -49566,142 +46213,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [14] = { - [sym_preproc_include] = STATE(52), - [sym_preproc_def] = STATE(52), - [sym_preproc_function_def] = STATE(52), - [sym_preproc_call] = STATE(52), - [sym_preproc_if] = STATE(52), - [sym_preproc_ifdef] = STATE(52), - [sym_function_definition] = STATE(52), - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(52), - [sym_labeled_statement] = STATE(52), - [sym_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_case_statement] = STATE(52), - [sym_while_statement] = STATE(52), - [sym_do_statement] = STATE(52), - [sym_for_statement] = STATE(52), - [sym_return_statement] = STATE(52), - [sym_break_statement] = STATE(52), - [sym_continue_statement] = STATE(52), - [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(4891), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8341), - [sym_initializer_pair] = STATE(8341), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(52), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(52), - [sym_template_instantiation] = STATE(52), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(52), - [sym_operator_cast_declaration] = STATE(52), - [sym_constructor_or_destructor_definition] = STATE(52), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(52), - [sym_namespace_alias_definition] = STATE(52), - [sym_using_declaration] = STATE(52), - [sym_alias_declaration] = STATE(52), - [sym_static_assert_declaration] = STATE(52), - [sym_concept_definition] = STATE(52), - [sym_for_range_loop] = STATE(52), - [sym_co_return_statement] = STATE(52), - [sym_co_yield_statement] = STATE(52), - [sym_throw_statement] = STATE(52), - [sym_try_statement] = STATE(52), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_preproc_else] = STATE(7646), + [sym_preproc_elif] = STATE(7646), + [sym_preproc_elifdef] = STATE(7646), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4552), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1937), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5800), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3480), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1784), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(6095), + [sym__constructor_specifiers] = STATE(1784), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(37), + [sym_namespace_alias_definition] = STATE(37), + [sym_using_declaration] = STATE(37), + [sym_alias_declaration] = STATE(37), + [sym_static_assert_declaration] = STATE(37), + [sym_concept_definition] = STATE(37), + [sym_for_range_loop] = STATE(37), + [sym_co_return_statement] = STATE(37), + [sym_co_yield_statement] = STATE(37), + [sym_throw_statement] = STATE(37), + [sym_try_statement] = STATE(37), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6095), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1784), [sym_identifier] = ACTIONS(235), [aux_sym_preproc_include_token1] = ACTIONS(237), [aux_sym_preproc_def_token1] = ACTIONS(239), - [anon_sym_COMMA] = ACTIONS(241), - [aux_sym_preproc_if_token1] = ACTIONS(243), + [aux_sym_preproc_if_token1] = ACTIONS(241), + [aux_sym_preproc_if_token2] = ACTIONS(325), [aux_sym_preproc_ifdef_token1] = ACTIONS(245), [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), + [aux_sym_preproc_elifdef_token1] = ACTIONS(251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(251), + [sym_preproc_directive] = ACTIONS(253), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -49710,10 +46359,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym___extension__] = ACTIONS(257), + [anon_sym_typedef] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -49725,16 +46374,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(257), - [anon_sym_RBRACE] = ACTIONS(325), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(265), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -49756,17 +46404,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(273), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -49781,7 +46429,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -49826,300 +46473,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [15] = { - [sym_preproc_include] = STATE(52), - [sym_preproc_def] = STATE(52), - [sym_preproc_function_def] = STATE(52), - [sym_preproc_call] = STATE(52), - [sym_preproc_if] = STATE(52), - [sym_preproc_ifdef] = STATE(52), - [sym_function_definition] = STATE(52), - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(52), - [sym_labeled_statement] = STATE(52), - [sym_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_case_statement] = STATE(52), - [sym_while_statement] = STATE(52), - [sym_do_statement] = STATE(52), - [sym_for_statement] = STATE(52), - [sym_return_statement] = STATE(52), - [sym_break_statement] = STATE(52), - [sym_continue_statement] = STATE(52), - [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(4891), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8341), - [sym_initializer_pair] = STATE(8341), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(52), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(52), - [sym_template_instantiation] = STATE(52), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(52), - [sym_operator_cast_declaration] = STATE(52), - [sym_constructor_or_destructor_definition] = STATE(52), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(52), - [sym_namespace_alias_definition] = STATE(52), - [sym_using_declaration] = STATE(52), - [sym_alias_declaration] = STATE(52), - [sym_static_assert_declaration] = STATE(52), - [sym_concept_definition] = STATE(52), - [sym_for_range_loop] = STATE(52), - [sym_co_return_statement] = STATE(52), - [sym_co_yield_statement] = STATE(52), - [sym_throw_statement] = STATE(52), - [sym_try_statement] = STATE(52), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [anon_sym_COMMA] = ACTIONS(241), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(257), - [anon_sym_RBRACE] = ACTIONS(327), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(261), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [16] = { [sym_preproc_include] = STATE(20), [sym_preproc_def] = STATE(20), [sym_preproc_function_def] = STATE(20), [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(9317), - [sym_preproc_elif] = STATE(9317), - [sym_preproc_elifdef] = STATE(9317), + [sym_preproc_else] = STATE(7546), + [sym_preproc_elif] = STATE(7546), + [sym_preproc_elifdef] = STATE(7546), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5767), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4552), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2622), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7072), - [sym_array_declarator] = STATE(6917), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1937), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5800), + [sym_array_declarator] = STATE(5742), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4283), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3480), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -50133,51 +46520,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), [sym__empty_declaration] = STATE(20), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2405), - [sym_dependent_type] = STATE(3958), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1784), + [sym_dependent_type] = STATE(3114), [sym_template_declaration] = STATE(20), [sym_template_instantiation] = STATE(20), - [sym_operator_cast] = STATE(7476), - [sym__constructor_specifiers] = STATE(2405), + [sym_operator_cast] = STATE(6095), + [sym__constructor_specifiers] = STATE(1784), [sym_operator_cast_definition] = STATE(20), [sym_operator_cast_declaration] = STATE(20), [sym_constructor_or_destructor_definition] = STATE(20), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), [sym_namespace_definition] = STATE(20), [sym_namespace_alias_definition] = STATE(20), [sym_using_declaration] = STATE(20), @@ -50189,41 +46576,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(20), [sym_throw_statement] = STATE(20), [sym_try_statement] = STATE(20), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7476), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6095), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), [aux_sym_preproc_if_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2405), - [sym_identifier] = ACTIONS(159), - [aux_sym_preproc_include_token1] = ACTIONS(161), - [aux_sym_preproc_def_token1] = ACTIONS(163), - [aux_sym_preproc_if_token1] = ACTIONS(165), - [aux_sym_preproc_if_token2] = ACTIONS(329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(169), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), - [aux_sym_preproc_elifdef_token1] = ACTIONS(175), - [aux_sym_preproc_elifdef_token2] = ACTIONS(175), - [sym_preproc_directive] = ACTIONS(177), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1784), + [sym_identifier] = ACTIONS(235), + [aux_sym_preproc_include_token1] = ACTIONS(237), + [aux_sym_preproc_def_token1] = ACTIONS(239), + [aux_sym_preproc_if_token1] = ACTIONS(241), + [aux_sym_preproc_if_token2] = ACTIONS(327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(245), + [aux_sym_preproc_ifdef_token2] = ACTIONS(245), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), + [aux_sym_preproc_elifdef_token1] = ACTIONS(251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(251), + [sym_preproc_directive] = ACTIONS(253), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -50232,10 +46619,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym___extension__] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(183), - [anon_sym_extern] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym___extension__] = ACTIONS(257), + [anon_sym_typedef] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -50247,7 +46634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -50255,7 +46642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(189), + [anon_sym_inline] = ACTIONS(265), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -50277,17 +46664,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_if] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(273), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -50324,17 +46711,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(215), + [anon_sym_template] = ACTIONS(289), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(217), + [anon_sym_try] = ACTIONS(291), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_namespace] = ACTIONS(221), - [anon_sym_using] = ACTIONS(223), - [anon_sym_static_assert] = ACTIONS(225), - [anon_sym_concept] = ACTIONS(227), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), + [anon_sym_throw] = ACTIONS(293), + [anon_sym_namespace] = ACTIONS(295), + [anon_sym_using] = ACTIONS(297), + [anon_sym_static_assert] = ACTIONS(299), + [anon_sym_concept] = ACTIONS(301), + [anon_sym_co_return] = ACTIONS(303), + [anon_sym_co_yield] = ACTIONS(305), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -50345,145 +46732,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [17] = { - [sym_preproc_include] = STATE(19), - [sym_preproc_def] = STATE(19), - [sym_preproc_function_def] = STATE(19), - [sym_preproc_call] = STATE(19), - [sym_preproc_if] = STATE(19), - [sym_preproc_ifdef] = STATE(19), - [sym_preproc_else] = STATE(9539), - [sym_preproc_elif] = STATE(9539), - [sym_preproc_elifdef] = STATE(9539), - [sym_function_definition] = STATE(19), - [sym_declaration] = STATE(19), - [sym_type_definition] = STATE(19), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5767), - [sym_linkage_specification] = STATE(19), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2622), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7072), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(19), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4283), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(19), - [sym_labeled_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_if_statement] = STATE(19), - [sym_switch_statement] = STATE(19), - [sym_case_statement] = STATE(19), - [sym_while_statement] = STATE(19), - [sym_do_statement] = STATE(19), - [sym_for_statement] = STATE(19), - [sym_return_statement] = STATE(19), - [sym_break_statement] = STATE(19), - [sym_continue_statement] = STATE(19), - [sym_goto_statement] = STATE(19), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(19), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2405), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(19), - [sym_template_instantiation] = STATE(19), - [sym_operator_cast] = STATE(7476), - [sym__constructor_specifiers] = STATE(2405), - [sym_operator_cast_definition] = STATE(19), - [sym_operator_cast_declaration] = STATE(19), - [sym_constructor_or_destructor_definition] = STATE(19), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(19), - [sym_namespace_alias_definition] = STATE(19), - [sym_using_declaration] = STATE(19), - [sym_alias_declaration] = STATE(19), - [sym_static_assert_declaration] = STATE(19), - [sym_concept_definition] = STATE(19), - [sym_for_range_loop] = STATE(19), - [sym_co_return_statement] = STATE(19), - [sym_co_yield_statement] = STATE(19), - [sym_throw_statement] = STATE(19), - [sym_try_statement] = STATE(19), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7476), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(19), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2405), + [16] = { + [sym_preproc_include] = STATE(89), + [sym_preproc_def] = STATE(89), + [sym_preproc_function_def] = STATE(89), + [sym_preproc_call] = STATE(89), + [sym_preproc_if] = STATE(89), + [sym_preproc_ifdef] = STATE(89), + [sym_function_definition] = STATE(89), + [sym_declaration] = STATE(89), + [sym_type_definition] = STATE(89), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(89), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(89), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym__expression] = STATE(3915), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6786), + [sym_initializer_pair] = STATE(6786), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(89), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(89), + [sym_template_instantiation] = STATE(89), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(89), + [sym_operator_cast_declaration] = STATE(89), + [sym_constructor_or_destructor_definition] = STATE(89), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(89), + [sym_namespace_alias_definition] = STATE(89), + [sym_using_declaration] = STATE(89), + [sym_alias_declaration] = STATE(89), + [sym_static_assert_declaration] = STATE(89), + [sym_concept_definition] = STATE(89), + [sym_for_range_loop] = STATE(89), + [sym_co_return_statement] = STATE(89), + [sym_co_yield_statement] = STATE(89), + [sym_throw_statement] = STATE(89), + [sym_try_statement] = STATE(89), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(89), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), [sym_identifier] = ACTIONS(159), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), - [aux_sym_preproc_if_token1] = ACTIONS(165), - [aux_sym_preproc_if_token2] = ACTIONS(331), + [anon_sym_COMMA] = ACTIONS(165), + [aux_sym_preproc_if_token1] = ACTIONS(167), [aux_sym_preproc_ifdef_token1] = ACTIONS(169), [aux_sym_preproc_ifdef_token2] = ACTIONS(169), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), - [aux_sym_preproc_elifdef_token1] = ACTIONS(175), - [aux_sym_preproc_elifdef_token2] = ACTIONS(175), - [sym_preproc_directive] = ACTIONS(177), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -50492,10 +46877,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym___extension__] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(183), - [anon_sym_extern] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -50507,15 +46892,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(329), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(185), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(189), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -50537,17 +46923,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -50562,6 +46948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -50605,143 +46992,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [18] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(73), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(73), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(73), - [sym_labeled_statement] = STATE(73), - [sym_expression_statement] = STATE(73), - [sym_if_statement] = STATE(73), - [sym_switch_statement] = STATE(73), - [sym_case_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_do_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_return_statement] = STATE(73), - [sym_break_statement] = STATE(73), - [sym_continue_statement] = STATE(73), - [sym_goto_statement] = STATE(73), - [sym__expression] = STATE(4891), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8341), - [sym_initializer_pair] = STATE(8341), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(73), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(73), - [sym_template_instantiation] = STATE(73), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(73), - [sym_operator_cast_declaration] = STATE(73), - [sym_constructor_or_destructor_definition] = STATE(73), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [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(73), - [sym_co_return_statement] = STATE(73), - [sym_co_yield_statement] = STATE(73), - [sym_throw_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(73), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [anon_sym_COMMA] = ACTIONS(241), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [17] = { + [sym_preproc_include] = STATE(87), + [sym_preproc_def] = STATE(87), + [sym_preproc_function_def] = STATE(87), + [sym_preproc_call] = STATE(87), + [sym_preproc_if] = STATE(87), + [sym_preproc_ifdef] = STATE(87), + [sym_function_definition] = STATE(87), + [sym_declaration] = STATE(87), + [sym_type_definition] = STATE(87), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(87), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(87), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [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_case_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__expression] = STATE(3915), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6786), + [sym_initializer_pair] = STATE(6786), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(87), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(87), + [sym_template_instantiation] = STATE(87), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(87), + [sym_operator_cast_declaration] = STATE(87), + [sym_constructor_or_destructor_definition] = STATE(87), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(87), + [sym_namespace_alias_definition] = STATE(87), + [sym_using_declaration] = STATE(87), + [sym_alias_declaration] = STATE(87), + [sym_static_assert_declaration] = STATE(87), + [sym_concept_definition] = STATE(87), + [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(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(87), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [anon_sym_COMMA] = ACTIONS(165), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -50750,10 +47137,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -50765,16 +47152,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(257), - [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(331), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_LBRACK] = ACTIONS(185), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -50796,17 +47183,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -50821,7 +47208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), + [anon_sym_DOT] = ACTIONS(211), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -50844,17 +47231,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -50865,145 +47252,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [19] = { - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_preproc_else] = STATE(9294), - [sym_preproc_elif] = STATE(9294), - [sym_preproc_elifdef] = STATE(9294), - [sym_function_definition] = STATE(32), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5767), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2622), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7072), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4283), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_case_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_goto_statement] = STATE(32), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(32), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2405), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(32), - [sym_template_instantiation] = STATE(32), - [sym_operator_cast] = STATE(7476), - [sym__constructor_specifiers] = STATE(2405), - [sym_operator_cast_definition] = STATE(32), - [sym_operator_cast_declaration] = STATE(32), - [sym_constructor_or_destructor_definition] = STATE(32), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(32), - [sym_namespace_alias_definition] = STATE(32), - [sym_using_declaration] = STATE(32), - [sym_alias_declaration] = STATE(32), - [sym_static_assert_declaration] = STATE(32), - [sym_concept_definition] = STATE(32), - [sym_for_range_loop] = STATE(32), - [sym_co_return_statement] = STATE(32), - [sym_co_yield_statement] = STATE(32), - [sym_throw_statement] = STATE(32), - [sym_try_statement] = STATE(32), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7476), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2405), - [sym_identifier] = ACTIONS(159), - [aux_sym_preproc_include_token1] = ACTIONS(161), - [aux_sym_preproc_def_token1] = ACTIONS(163), - [aux_sym_preproc_if_token1] = ACTIONS(165), - [aux_sym_preproc_if_token2] = ACTIONS(335), - [aux_sym_preproc_ifdef_token1] = ACTIONS(169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(169), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), - [aux_sym_preproc_elifdef_token1] = ACTIONS(175), - [aux_sym_preproc_elifdef_token2] = ACTIONS(175), - [sym_preproc_directive] = ACTIONS(177), + [18] = { + [sym_preproc_include] = STATE(13), + [sym_preproc_def] = STATE(13), + [sym_preproc_function_def] = STATE(13), + [sym_preproc_call] = STATE(13), + [sym_preproc_if] = STATE(13), + [sym_preproc_ifdef] = STATE(13), + [sym_preproc_else] = STATE(7421), + [sym_preproc_elif] = STATE(7421), + [sym_preproc_elifdef] = STATE(7421), + [sym_function_definition] = STATE(13), + [sym_declaration] = STATE(13), + [sym_type_definition] = STATE(13), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4552), + [sym_linkage_specification] = STATE(13), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1937), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5800), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(13), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3480), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(13), + [sym_labeled_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_if_statement] = STATE(13), + [sym_switch_statement] = STATE(13), + [sym_case_statement] = STATE(13), + [sym_while_statement] = STATE(13), + [sym_do_statement] = STATE(13), + [sym_for_statement] = STATE(13), + [sym_return_statement] = STATE(13), + [sym_break_statement] = STATE(13), + [sym_continue_statement] = STATE(13), + [sym_goto_statement] = STATE(13), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(13), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1784), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(13), + [sym_template_instantiation] = STATE(13), + [sym_operator_cast] = STATE(6095), + [sym__constructor_specifiers] = STATE(1784), + [sym_operator_cast_definition] = STATE(13), + [sym_operator_cast_declaration] = STATE(13), + [sym_constructor_or_destructor_definition] = STATE(13), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(13), + [sym_namespace_alias_definition] = STATE(13), + [sym_using_declaration] = STATE(13), + [sym_alias_declaration] = STATE(13), + [sym_static_assert_declaration] = STATE(13), + [sym_concept_definition] = STATE(13), + [sym_for_range_loop] = STATE(13), + [sym_co_return_statement] = STATE(13), + [sym_co_yield_statement] = STATE(13), + [sym_throw_statement] = STATE(13), + [sym_try_statement] = STATE(13), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6095), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(13), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1784), + [sym_identifier] = ACTIONS(235), + [aux_sym_preproc_include_token1] = ACTIONS(237), + [aux_sym_preproc_def_token1] = ACTIONS(239), + [aux_sym_preproc_if_token1] = ACTIONS(241), + [aux_sym_preproc_if_token2] = ACTIONS(333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(245), + [aux_sym_preproc_ifdef_token2] = ACTIONS(245), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), + [aux_sym_preproc_elifdef_token1] = ACTIONS(251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(251), + [sym_preproc_directive] = ACTIONS(253), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -51012,10 +47399,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym___extension__] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(183), - [anon_sym_extern] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym___extension__] = ACTIONS(257), + [anon_sym_typedef] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -51027,7 +47414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -51035,7 +47422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(189), + [anon_sym_inline] = ACTIONS(265), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -51057,17 +47444,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_if] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(273), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -51104,17 +47491,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(215), + [anon_sym_template] = ACTIONS(289), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(217), + [anon_sym_try] = ACTIONS(291), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_namespace] = ACTIONS(221), - [anon_sym_using] = ACTIONS(223), - [anon_sym_static_assert] = ACTIONS(225), - [anon_sym_concept] = ACTIONS(227), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), + [anon_sym_throw] = ACTIONS(293), + [anon_sym_namespace] = ACTIONS(295), + [anon_sym_using] = ACTIONS(297), + [anon_sym_static_assert] = ACTIONS(299), + [anon_sym_concept] = ACTIONS(301), + [anon_sym_co_return] = ACTIONS(303), + [anon_sym_co_yield] = ACTIONS(305), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -51125,145 +47512,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [20] = { - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_preproc_else] = STATE(9516), - [sym_preproc_elif] = STATE(9516), - [sym_preproc_elifdef] = STATE(9516), - [sym_function_definition] = STATE(32), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5767), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2622), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7072), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4283), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_case_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_goto_statement] = STATE(32), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(32), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2405), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(32), - [sym_template_instantiation] = STATE(32), - [sym_operator_cast] = STATE(7476), - [sym__constructor_specifiers] = STATE(2405), - [sym_operator_cast_definition] = STATE(32), - [sym_operator_cast_declaration] = STATE(32), - [sym_constructor_or_destructor_definition] = STATE(32), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(32), - [sym_namespace_alias_definition] = STATE(32), - [sym_using_declaration] = STATE(32), - [sym_alias_declaration] = STATE(32), - [sym_static_assert_declaration] = STATE(32), - [sym_concept_definition] = STATE(32), - [sym_for_range_loop] = STATE(32), - [sym_co_return_statement] = STATE(32), - [sym_co_yield_statement] = STATE(32), - [sym_throw_statement] = STATE(32), - [sym_try_statement] = STATE(32), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7476), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2405), + [19] = { + [sym_preproc_include] = STATE(93), + [sym_preproc_def] = STATE(93), + [sym_preproc_function_def] = STATE(93), + [sym_preproc_call] = STATE(93), + [sym_preproc_if] = STATE(93), + [sym_preproc_ifdef] = STATE(93), + [sym_function_definition] = STATE(93), + [sym_declaration] = STATE(93), + [sym_type_definition] = STATE(93), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(93), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(93), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(93), + [sym_labeled_statement] = STATE(93), + [sym_expression_statement] = STATE(93), + [sym_if_statement] = STATE(93), + [sym_switch_statement] = STATE(93), + [sym_case_statement] = STATE(93), + [sym_while_statement] = STATE(93), + [sym_do_statement] = STATE(93), + [sym_for_statement] = STATE(93), + [sym_return_statement] = STATE(93), + [sym_break_statement] = STATE(93), + [sym_continue_statement] = STATE(93), + [sym_goto_statement] = STATE(93), + [sym__expression] = STATE(3915), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6786), + [sym_initializer_pair] = STATE(6786), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(93), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(93), + [sym_template_instantiation] = STATE(93), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(93), + [sym_operator_cast_declaration] = STATE(93), + [sym_constructor_or_destructor_definition] = STATE(93), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(93), + [sym_namespace_alias_definition] = STATE(93), + [sym_using_declaration] = STATE(93), + [sym_alias_declaration] = STATE(93), + [sym_static_assert_declaration] = STATE(93), + [sym_concept_definition] = STATE(93), + [sym_for_range_loop] = STATE(93), + [sym_co_return_statement] = STATE(93), + [sym_co_yield_statement] = STATE(93), + [sym_throw_statement] = STATE(93), + [sym_try_statement] = STATE(93), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(93), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), [sym_identifier] = ACTIONS(159), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), - [aux_sym_preproc_if_token1] = ACTIONS(165), - [aux_sym_preproc_if_token2] = ACTIONS(337), + [anon_sym_COMMA] = ACTIONS(165), + [aux_sym_preproc_if_token1] = ACTIONS(167), [aux_sym_preproc_ifdef_token1] = ACTIONS(169), [aux_sym_preproc_ifdef_token2] = ACTIONS(169), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), - [aux_sym_preproc_elifdef_token1] = ACTIONS(175), - [aux_sym_preproc_elifdef_token2] = ACTIONS(175), - [sym_preproc_directive] = ACTIONS(177), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -51272,10 +47657,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym___extension__] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(183), - [anon_sym_extern] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -51287,15 +47672,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(335), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(185), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(189), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -51317,17 +47703,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -51342,6 +47728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -51385,145 +47772,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [21] = { - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_preproc_else] = STATE(9100), - [sym_preproc_elif] = STATE(9100), - [sym_preproc_elifdef] = STATE(9100), - [sym_function_definition] = STATE(32), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5767), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2622), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7072), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4283), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_case_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_goto_statement] = STATE(32), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(32), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2405), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(32), - [sym_template_instantiation] = STATE(32), - [sym_operator_cast] = STATE(7476), - [sym__constructor_specifiers] = STATE(2405), - [sym_operator_cast_definition] = STATE(32), - [sym_operator_cast_declaration] = STATE(32), - [sym_constructor_or_destructor_definition] = STATE(32), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(32), - [sym_namespace_alias_definition] = STATE(32), - [sym_using_declaration] = STATE(32), - [sym_alias_declaration] = STATE(32), - [sym_static_assert_declaration] = STATE(32), - [sym_concept_definition] = STATE(32), - [sym_for_range_loop] = STATE(32), - [sym_co_return_statement] = STATE(32), - [sym_co_yield_statement] = STATE(32), - [sym_throw_statement] = STATE(32), - [sym_try_statement] = STATE(32), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7476), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2405), - [sym_identifier] = ACTIONS(159), - [aux_sym_preproc_include_token1] = ACTIONS(161), - [aux_sym_preproc_def_token1] = ACTIONS(163), - [aux_sym_preproc_if_token1] = ACTIONS(165), - [aux_sym_preproc_if_token2] = ACTIONS(339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(169), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), - [aux_sym_preproc_elifdef_token1] = ACTIONS(175), - [aux_sym_preproc_elifdef_token2] = ACTIONS(175), - [sym_preproc_directive] = ACTIONS(177), + [20] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_preproc_else] = STATE(7590), + [sym_preproc_elif] = STATE(7590), + [sym_preproc_elifdef] = STATE(7590), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4552), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1937), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5800), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3480), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1784), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(6095), + [sym__constructor_specifiers] = STATE(1784), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(37), + [sym_namespace_alias_definition] = STATE(37), + [sym_using_declaration] = STATE(37), + [sym_alias_declaration] = STATE(37), + [sym_static_assert_declaration] = STATE(37), + [sym_concept_definition] = STATE(37), + [sym_for_range_loop] = STATE(37), + [sym_co_return_statement] = STATE(37), + [sym_co_yield_statement] = STATE(37), + [sym_throw_statement] = STATE(37), + [sym_try_statement] = STATE(37), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6095), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1784), + [sym_identifier] = ACTIONS(235), + [aux_sym_preproc_include_token1] = ACTIONS(237), + [aux_sym_preproc_def_token1] = ACTIONS(239), + [aux_sym_preproc_if_token1] = ACTIONS(241), + [aux_sym_preproc_if_token2] = ACTIONS(337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(245), + [aux_sym_preproc_ifdef_token2] = ACTIONS(245), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), + [aux_sym_preproc_elifdef_token1] = ACTIONS(251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(251), + [sym_preproc_directive] = ACTIONS(253), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -51532,10 +47919,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym___extension__] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(183), - [anon_sym_extern] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym___extension__] = ACTIONS(257), + [anon_sym_typedef] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -51547,7 +47934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -51555,7 +47942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(189), + [anon_sym_inline] = ACTIONS(265), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -51577,17 +47964,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_if] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(273), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -51624,17 +48011,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(215), + [anon_sym_template] = ACTIONS(289), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(217), + [anon_sym_try] = ACTIONS(291), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_namespace] = ACTIONS(221), - [anon_sym_using] = ACTIONS(223), - [anon_sym_static_assert] = ACTIONS(225), - [anon_sym_concept] = ACTIONS(227), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), + [anon_sym_throw] = ACTIONS(293), + [anon_sym_namespace] = ACTIONS(295), + [anon_sym_using] = ACTIONS(297), + [anon_sym_static_assert] = ACTIONS(299), + [anon_sym_concept] = ACTIONS(301), + [anon_sym_co_return] = ACTIONS(303), + [anon_sym_co_yield] = ACTIONS(305), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -51645,143 +48032,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [22] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(73), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(73), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(73), - [sym_labeled_statement] = STATE(73), - [sym_expression_statement] = STATE(73), - [sym_if_statement] = STATE(73), - [sym_switch_statement] = STATE(73), - [sym_case_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_do_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_return_statement] = STATE(73), - [sym_break_statement] = STATE(73), - [sym_continue_statement] = STATE(73), - [sym_goto_statement] = STATE(73), - [sym__expression] = STATE(4891), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8341), - [sym_initializer_pair] = STATE(8341), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(73), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(73), - [sym_template_instantiation] = STATE(73), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(73), - [sym_operator_cast_declaration] = STATE(73), - [sym_constructor_or_destructor_definition] = STATE(73), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [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(73), - [sym_co_return_statement] = STATE(73), - [sym_co_yield_statement] = STATE(73), - [sym_throw_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(73), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), + [21] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_preproc_else] = STATE(7406), + [sym_preproc_elif] = STATE(7406), + [sym_preproc_elifdef] = STATE(7406), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4552), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1937), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5800), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3480), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1784), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(6095), + [sym__constructor_specifiers] = STATE(1784), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(37), + [sym_namespace_alias_definition] = STATE(37), + [sym_using_declaration] = STATE(37), + [sym_alias_declaration] = STATE(37), + [sym_static_assert_declaration] = STATE(37), + [sym_concept_definition] = STATE(37), + [sym_for_range_loop] = STATE(37), + [sym_co_return_statement] = STATE(37), + [sym_co_yield_statement] = STATE(37), + [sym_throw_statement] = STATE(37), + [sym_try_statement] = STATE(37), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6095), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1784), [sym_identifier] = ACTIONS(235), [aux_sym_preproc_include_token1] = ACTIONS(237), [aux_sym_preproc_def_token1] = ACTIONS(239), - [anon_sym_COMMA] = ACTIONS(241), - [aux_sym_preproc_if_token1] = ACTIONS(243), + [aux_sym_preproc_if_token1] = ACTIONS(241), + [aux_sym_preproc_if_token2] = ACTIONS(339), [aux_sym_preproc_ifdef_token1] = ACTIONS(245), [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), + [aux_sym_preproc_elifdef_token1] = ACTIONS(251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(251), + [sym_preproc_directive] = ACTIONS(253), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -51790,10 +48179,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym___extension__] = ACTIONS(257), + [anon_sym_typedef] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -51805,16 +48194,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(257), - [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(265), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -51836,17 +48224,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(273), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -51861,7 +48249,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -51905,143 +48292,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [23] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(80), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(80), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(80), - [sym_labeled_statement] = STATE(80), - [sym_expression_statement] = STATE(80), - [sym_if_statement] = STATE(80), - [sym_switch_statement] = STATE(80), - [sym_case_statement] = STATE(80), - [sym_while_statement] = STATE(80), - [sym_do_statement] = STATE(80), - [sym_for_statement] = STATE(80), - [sym_return_statement] = STATE(80), - [sym_break_statement] = STATE(80), - [sym_continue_statement] = STATE(80), - [sym_goto_statement] = STATE(80), - [sym__expression] = STATE(4891), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8341), - [sym_initializer_pair] = STATE(8341), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(80), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(80), - [sym_template_instantiation] = STATE(80), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(80), - [sym_operator_cast_declaration] = STATE(80), - [sym_constructor_or_destructor_definition] = STATE(80), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [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(80), - [sym_co_return_statement] = STATE(80), - [sym_co_yield_statement] = STATE(80), - [sym_throw_statement] = STATE(80), - [sym_try_statement] = STATE(80), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(80), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [anon_sym_COMMA] = ACTIONS(241), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [22] = { + [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(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(65), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(65), + [sym_labeled_statement] = STATE(65), + [sym_expression_statement] = STATE(65), + [sym_if_statement] = STATE(65), + [sym_switch_statement] = STATE(65), + [sym_case_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_do_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_return_statement] = STATE(65), + [sym_break_statement] = STATE(65), + [sym_continue_statement] = STATE(65), + [sym_goto_statement] = STATE(65), + [sym__expression] = STATE(3915), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6786), + [sym_initializer_pair] = STATE(6786), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(65), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(65), + [sym_template_instantiation] = STATE(65), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(65), + [sym_operator_cast_declaration] = STATE(65), + [sym_constructor_or_destructor_definition] = STATE(65), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(65), + [sym_namespace_alias_definition] = STATE(65), + [sym_using_declaration] = STATE(65), + [sym_alias_declaration] = STATE(65), + [sym_static_assert_declaration] = STATE(65), + [sym_concept_definition] = STATE(65), + [sym_for_range_loop] = STATE(65), + [sym_co_return_statement] = STATE(65), + [sym_co_yield_statement] = STATE(65), + [sym_throw_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(65), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [anon_sym_COMMA] = ACTIONS(165), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -52050,10 +48437,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -52065,16 +48452,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(257), - [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(341), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_LBRACK] = ACTIONS(185), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -52096,17 +48483,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -52121,7 +48508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), + [anon_sym_DOT] = ACTIONS(211), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -52144,17 +48531,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -52165,143 +48552,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [24] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(57), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(57), - [sym_labeled_statement] = STATE(57), - [sym_expression_statement] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_switch_statement] = STATE(57), - [sym_case_statement] = STATE(57), - [sym_while_statement] = STATE(57), - [sym_do_statement] = STATE(57), - [sym_for_statement] = STATE(57), - [sym_return_statement] = STATE(57), - [sym_break_statement] = STATE(57), - [sym_continue_statement] = STATE(57), - [sym_goto_statement] = STATE(57), - [sym__expression] = STATE(4891), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8341), - [sym_initializer_pair] = STATE(8341), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(57), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(57), - [sym_template_instantiation] = STATE(57), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(57), - [sym_operator_cast_declaration] = STATE(57), - [sym_constructor_or_destructor_definition] = STATE(57), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(57), - [sym_namespace_alias_definition] = STATE(57), - [sym_using_declaration] = STATE(57), - [sym_alias_declaration] = STATE(57), - [sym_static_assert_declaration] = STATE(57), - [sym_concept_definition] = STATE(57), - [sym_for_range_loop] = STATE(57), - [sym_co_return_statement] = STATE(57), - [sym_co_yield_statement] = STATE(57), - [sym_throw_statement] = STATE(57), - [sym_try_statement] = STATE(57), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(57), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [anon_sym_COMMA] = ACTIONS(241), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [23] = { + [sym_preproc_include] = STATE(78), + [sym_preproc_def] = STATE(78), + [sym_preproc_function_def] = STATE(78), + [sym_preproc_call] = STATE(78), + [sym_preproc_if] = STATE(78), + [sym_preproc_ifdef] = STATE(78), + [sym_function_definition] = STATE(78), + [sym_declaration] = STATE(78), + [sym_type_definition] = STATE(78), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(78), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(78), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(78), + [sym_labeled_statement] = STATE(78), + [sym_expression_statement] = STATE(78), + [sym_if_statement] = STATE(78), + [sym_switch_statement] = STATE(78), + [sym_case_statement] = STATE(78), + [sym_while_statement] = STATE(78), + [sym_do_statement] = STATE(78), + [sym_for_statement] = STATE(78), + [sym_return_statement] = STATE(78), + [sym_break_statement] = STATE(78), + [sym_continue_statement] = STATE(78), + [sym_goto_statement] = STATE(78), + [sym__expression] = STATE(3915), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6786), + [sym_initializer_pair] = STATE(6786), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(78), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(78), + [sym_template_instantiation] = STATE(78), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(78), + [sym_operator_cast_declaration] = STATE(78), + [sym_constructor_or_destructor_definition] = STATE(78), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(78), + [sym_namespace_alias_definition] = STATE(78), + [sym_using_declaration] = STATE(78), + [sym_alias_declaration] = STATE(78), + [sym_static_assert_declaration] = STATE(78), + [sym_concept_definition] = STATE(78), + [sym_for_range_loop] = STATE(78), + [sym_co_return_statement] = STATE(78), + [sym_co_yield_statement] = STATE(78), + [sym_throw_statement] = STATE(78), + [sym_try_statement] = STATE(78), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(78), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [anon_sym_COMMA] = ACTIONS(165), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -52310,10 +48697,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -52325,16 +48712,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(257), - [anon_sym_RBRACE] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(343), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_LBRACK] = ACTIONS(185), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -52356,17 +48743,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -52381,7 +48768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), + [anon_sym_DOT] = ACTIONS(211), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -52404,17 +48791,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -52425,145 +48812,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [25] = { - [sym_preproc_include] = STATE(2), - [sym_preproc_def] = STATE(2), - [sym_preproc_function_def] = STATE(2), - [sym_preproc_call] = STATE(2), - [sym_preproc_if] = STATE(2), - [sym_preproc_ifdef] = STATE(2), - [sym_preproc_else] = STATE(8901), - [sym_preproc_elif] = STATE(8901), - [sym_preproc_elifdef] = STATE(8901), - [sym_function_definition] = STATE(2), - [sym_declaration] = STATE(2), - [sym_type_definition] = STATE(2), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5767), - [sym_linkage_specification] = STATE(2), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2622), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7072), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(2), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4283), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(2), - [sym_labeled_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_if_statement] = STATE(2), - [sym_switch_statement] = STATE(2), - [sym_case_statement] = STATE(2), - [sym_while_statement] = STATE(2), - [sym_do_statement] = STATE(2), - [sym_for_statement] = STATE(2), - [sym_return_statement] = STATE(2), - [sym_break_statement] = STATE(2), - [sym_continue_statement] = STATE(2), - [sym_goto_statement] = STATE(2), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(2), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2405), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(2), - [sym_template_instantiation] = STATE(2), - [sym_operator_cast] = STATE(7476), - [sym__constructor_specifiers] = STATE(2405), - [sym_operator_cast_definition] = STATE(2), - [sym_operator_cast_declaration] = STATE(2), - [sym_constructor_or_destructor_definition] = STATE(2), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(2), - [sym_namespace_alias_definition] = STATE(2), - [sym_using_declaration] = STATE(2), - [sym_alias_declaration] = STATE(2), - [sym_static_assert_declaration] = STATE(2), - [sym_concept_definition] = STATE(2), - [sym_for_range_loop] = STATE(2), - [sym_co_return_statement] = STATE(2), - [sym_co_yield_statement] = STATE(2), - [sym_throw_statement] = STATE(2), - [sym_try_statement] = STATE(2), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7476), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(2), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2405), + [24] = { + [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(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(62), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(62), + [sym_labeled_statement] = STATE(62), + [sym_expression_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_switch_statement] = STATE(62), + [sym_case_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_do_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_return_statement] = STATE(62), + [sym_break_statement] = STATE(62), + [sym_continue_statement] = STATE(62), + [sym_goto_statement] = STATE(62), + [sym__expression] = STATE(3915), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6786), + [sym_initializer_pair] = STATE(6786), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(62), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(62), + [sym_template_instantiation] = STATE(62), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(62), + [sym_operator_cast_declaration] = STATE(62), + [sym_constructor_or_destructor_definition] = STATE(62), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(62), + [sym_namespace_alias_definition] = STATE(62), + [sym_using_declaration] = STATE(62), + [sym_alias_declaration] = STATE(62), + [sym_static_assert_declaration] = STATE(62), + [sym_concept_definition] = STATE(62), + [sym_for_range_loop] = STATE(62), + [sym_co_return_statement] = STATE(62), + [sym_co_yield_statement] = STATE(62), + [sym_throw_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(62), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), [sym_identifier] = ACTIONS(159), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), - [aux_sym_preproc_if_token1] = ACTIONS(165), - [aux_sym_preproc_if_token2] = ACTIONS(347), + [anon_sym_COMMA] = ACTIONS(165), + [aux_sym_preproc_if_token1] = ACTIONS(167), [aux_sym_preproc_ifdef_token1] = ACTIONS(169), [aux_sym_preproc_ifdef_token2] = ACTIONS(169), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), - [aux_sym_preproc_elifdef_token1] = ACTIONS(175), - [aux_sym_preproc_elifdef_token2] = ACTIONS(175), - [sym_preproc_directive] = ACTIONS(177), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -52572,10 +48957,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym___extension__] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(183), - [anon_sym_extern] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -52587,15 +48972,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(185), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(189), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -52617,17 +49003,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -52642,6 +49028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -52685,142 +49072,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [26] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(9106), - [sym_preproc_elif] = STATE(9106), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5723), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2642), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7073), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4249), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(7442), - [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(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(28), - [sym_namespace_alias_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_concept_definition] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7442), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(349), - [aux_sym_preproc_include_token1] = ACTIONS(351), - [aux_sym_preproc_def_token1] = ACTIONS(353), - [aux_sym_preproc_if_token1] = ACTIONS(355), - [aux_sym_preproc_if_token2] = ACTIONS(357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), - [sym_preproc_directive] = ACTIONS(361), + [25] = { + [sym_preproc_include] = STATE(70), + [sym_preproc_def] = STATE(70), + [sym_preproc_function_def] = STATE(70), + [sym_preproc_call] = STATE(70), + [sym_preproc_if] = STATE(70), + [sym_preproc_ifdef] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_declaration] = STATE(70), + [sym_type_definition] = STATE(70), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(70), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(70), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(70), + [sym_labeled_statement] = STATE(70), + [sym_expression_statement] = STATE(70), + [sym_if_statement] = STATE(70), + [sym_switch_statement] = STATE(70), + [sym_case_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_do_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_return_statement] = STATE(70), + [sym_break_statement] = STATE(70), + [sym_continue_statement] = STATE(70), + [sym_goto_statement] = STATE(70), + [sym__expression] = STATE(3915), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6786), + [sym_initializer_pair] = STATE(6786), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(70), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(70), + [sym_template_instantiation] = STATE(70), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(70), + [sym_operator_cast_declaration] = STATE(70), + [sym_constructor_or_destructor_definition] = STATE(70), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(70), + [sym_namespace_alias_definition] = STATE(70), + [sym_using_declaration] = STATE(70), + [sym_alias_declaration] = STATE(70), + [sym_static_assert_declaration] = STATE(70), + [sym_concept_definition] = STATE(70), + [sym_for_range_loop] = STATE(70), + [sym_co_return_statement] = STATE(70), + [sym_co_yield_statement] = STATE(70), + [sym_throw_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(70), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [anon_sym_COMMA] = ACTIONS(165), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -52829,10 +49217,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -52844,15 +49232,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(347), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(185), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(373), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -52874,17 +49263,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -52899,6 +49288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -52921,17 +49311,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(397), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(399), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_namespace] = ACTIONS(403), - [anon_sym_using] = ACTIONS(405), - [anon_sym_static_assert] = ACTIONS(407), - [anon_sym_concept] = ACTIONS(409), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -52942,141 +49332,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [27] = { - [sym_preproc_include] = STATE(36), - [sym_preproc_def] = STATE(36), - [sym_preproc_function_def] = STATE(36), - [sym_preproc_call] = STATE(36), - [sym_preproc_if] = STATE(36), - [sym_preproc_ifdef] = STATE(36), - [sym_preproc_else] = STATE(9033), - [sym_preproc_elif] = STATE(9033), - [sym_function_definition] = STATE(36), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5723), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2642), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7073), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4249), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(36), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(36), - [sym_template_instantiation] = STATE(36), - [sym_operator_cast] = STATE(7442), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(36), - [sym_operator_cast_declaration] = STATE(36), - [sym_constructor_or_destructor_definition] = STATE(36), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(36), - [sym_namespace_alias_definition] = STATE(36), - [sym_using_declaration] = STATE(36), - [sym_alias_declaration] = STATE(36), - [sym_static_assert_declaration] = STATE(36), - [sym_concept_definition] = STATE(36), - [sym_for_range_loop] = STATE(36), - [sym_co_return_statement] = STATE(36), - [sym_co_yield_statement] = STATE(36), - [sym_throw_statement] = STATE(36), - [sym_try_statement] = STATE(36), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7442), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [26] = { + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_preproc_else] = STATE(7405), + [sym_preproc_elif] = STATE(7405), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4564), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(2008), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5782), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3465), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1787), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), + [sym_operator_cast] = STATE(6121), + [sym__constructor_specifiers] = STATE(1787), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(28), + [sym_namespace_alias_definition] = STATE(28), + [sym_using_declaration] = STATE(28), + [sym_alias_declaration] = STATE(28), + [sym_static_assert_declaration] = STATE(28), + [sym_concept_definition] = STATE(28), + [sym_for_range_loop] = STATE(28), + [sym_co_return_statement] = STATE(28), + [sym_co_yield_statement] = STATE(28), + [sym_throw_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6121), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1787), [sym_identifier] = ACTIONS(349), [aux_sym_preproc_include_token1] = ACTIONS(351), [aux_sym_preproc_def_token1] = ACTIONS(353), [aux_sym_preproc_if_token1] = ACTIONS(355), - [aux_sym_preproc_if_token2] = ACTIONS(415), + [aux_sym_preproc_if_token2] = ACTIONS(357), [aux_sym_preproc_ifdef_token1] = ACTIONS(359), [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), [sym_preproc_directive] = ACTIONS(361), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -53199,40 +49589,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [28] = { + [27] = { [sym_preproc_include] = STATE(41), [sym_preproc_def] = STATE(41), [sym_preproc_function_def] = STATE(41), [sym_preproc_call] = STATE(41), [sym_preproc_if] = STATE(41), [sym_preproc_ifdef] = STATE(41), - [sym_preproc_else] = STATE(8965), - [sym_preproc_elif] = STATE(8965), + [sym_preproc_else] = STATE(7299), + [sym_preproc_elif] = STATE(7299), [sym_function_definition] = STATE(41), [sym_declaration] = STATE(41), [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5723), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4564), [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2642), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7073), - [sym_array_declarator] = STATE(6917), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(2008), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5782), + [sym_array_declarator] = STATE(5742), [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4249), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3465), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(41), [sym_labeled_statement] = STATE(41), [sym_expression_statement] = STATE(41), @@ -53246,51 +49636,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(41), [sym_continue_statement] = STATE(41), [sym_goto_statement] = STATE(41), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(3958), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1787), + [sym_dependent_type] = STATE(3114), [sym_template_declaration] = STATE(41), [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(7442), - [sym__constructor_specifiers] = STATE(2409), + [sym_operator_cast] = STATE(6121), + [sym__constructor_specifiers] = STATE(1787), [sym_operator_cast_definition] = STATE(41), [sym_operator_cast_declaration] = STATE(41), [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), [sym_namespace_definition] = STATE(41), [sym_namespace_alias_definition] = STATE(41), [sym_using_declaration] = STATE(41), @@ -53302,38 +49692,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(41), [sym_throw_statement] = STATE(41), [sym_try_statement] = STATE(41), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7442), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6121), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1787), [sym_identifier] = ACTIONS(349), [aux_sym_preproc_include_token1] = ACTIONS(351), [aux_sym_preproc_def_token1] = ACTIONS(353), [aux_sym_preproc_if_token1] = ACTIONS(355), - [aux_sym_preproc_if_token2] = ACTIONS(417), + [aux_sym_preproc_if_token2] = ACTIONS(415), [aux_sym_preproc_ifdef_token1] = ACTIONS(359), [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), [sym_preproc_directive] = ACTIONS(361), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -53456,40 +49846,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [29] = { + [28] = { [sym_preproc_include] = STATE(41), [sym_preproc_def] = STATE(41), [sym_preproc_function_def] = STATE(41), [sym_preproc_call] = STATE(41), [sym_preproc_if] = STATE(41), [sym_preproc_ifdef] = STATE(41), - [sym_preproc_else] = STATE(9286), - [sym_preproc_elif] = STATE(9286), + [sym_preproc_else] = STATE(7432), + [sym_preproc_elif] = STATE(7432), [sym_function_definition] = STATE(41), [sym_declaration] = STATE(41), [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5723), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4564), [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2642), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7073), - [sym_array_declarator] = STATE(6917), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(2008), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5782), + [sym_array_declarator] = STATE(5742), [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4249), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3465), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(41), [sym_labeled_statement] = STATE(41), [sym_expression_statement] = STATE(41), @@ -53503,51 +49893,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(41), [sym_continue_statement] = STATE(41), [sym_goto_statement] = STATE(41), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(3958), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1787), + [sym_dependent_type] = STATE(3114), [sym_template_declaration] = STATE(41), [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(7442), - [sym__constructor_specifiers] = STATE(2409), + [sym_operator_cast] = STATE(6121), + [sym__constructor_specifiers] = STATE(1787), [sym_operator_cast_definition] = STATE(41), [sym_operator_cast_declaration] = STATE(41), [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), [sym_namespace_definition] = STATE(41), [sym_namespace_alias_definition] = STATE(41), [sym_using_declaration] = STATE(41), @@ -53559,29 +49949,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(41), [sym_throw_statement] = STATE(41), [sym_try_statement] = STATE(41), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7442), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6121), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1787), + [sym_identifier] = ACTIONS(349), + [aux_sym_preproc_include_token1] = ACTIONS(351), + [aux_sym_preproc_def_token1] = ACTIONS(353), + [aux_sym_preproc_if_token1] = ACTIONS(355), + [aux_sym_preproc_if_token2] = ACTIONS(417), + [aux_sym_preproc_ifdef_token1] = ACTIONS(359), + [aux_sym_preproc_ifdef_token2] = ACTIONS(359), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), + [sym_preproc_directive] = ACTIONS(361), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(363), + [anon_sym___extension__] = ACTIONS(365), + [anon_sym_typedef] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(373), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(63), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(397), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_try] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(401), + [anon_sym_namespace] = ACTIONS(403), + [anon_sym_using] = ACTIONS(405), + [anon_sym_static_assert] = ACTIONS(407), + [anon_sym_concept] = ACTIONS(409), + [anon_sym_co_return] = ACTIONS(411), + [anon_sym_co_yield] = ACTIONS(413), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), + }, + [29] = { + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_preproc_else] = STATE(7751), + [sym_preproc_elif] = STATE(7751), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4564), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(2008), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5782), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3465), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(36), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1787), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(36), + [sym_template_instantiation] = STATE(36), + [sym_operator_cast] = STATE(6121), + [sym__constructor_specifiers] = STATE(1787), + [sym_operator_cast_definition] = STATE(36), + [sym_operator_cast_declaration] = STATE(36), + [sym_constructor_or_destructor_definition] = STATE(36), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(36), + [sym_namespace_alias_definition] = STATE(36), + [sym_using_declaration] = STATE(36), + [sym_alias_declaration] = STATE(36), + [sym_static_assert_declaration] = STATE(36), + [sym_concept_definition] = STATE(36), + [sym_for_range_loop] = STATE(36), + [sym_co_return_statement] = STATE(36), + [sym_co_yield_statement] = STATE(36), + [sym_throw_statement] = STATE(36), + [sym_try_statement] = STATE(36), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6121), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1787), [sym_identifier] = ACTIONS(349), [aux_sym_preproc_include_token1] = ACTIONS(351), [aux_sym_preproc_def_token1] = ACTIONS(353), @@ -53589,8 +50236,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(419), [aux_sym_preproc_ifdef_token1] = ACTIONS(359), [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), [sym_preproc_directive] = ACTIONS(361), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -53714,131 +50361,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [30] = { - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_preproc_else] = STATE(9034), - [sym_preproc_elif] = STATE(9034), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5723), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2642), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7073), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4249), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(41), - [sym_labeled_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_case_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_goto_statement] = STATE(41), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(7442), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(41), - [sym_namespace_alias_definition] = STATE(41), - [sym_using_declaration] = STATE(41), - [sym_alias_declaration] = STATE(41), - [sym_static_assert_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(41), - [sym_co_return_statement] = STATE(41), - [sym_co_yield_statement] = STATE(41), - [sym_throw_statement] = STATE(41), - [sym_try_statement] = STATE(41), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7442), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(7351), + [sym_preproc_elif] = STATE(7351), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4564), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(2008), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5782), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3465), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(27), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1787), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(27), + [sym_template_instantiation] = STATE(27), + [sym_operator_cast] = STATE(6121), + [sym__constructor_specifiers] = STATE(1787), + [sym_operator_cast_definition] = STATE(27), + [sym_operator_cast_declaration] = STATE(27), + [sym_constructor_or_destructor_definition] = STATE(27), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(27), + [sym_namespace_alias_definition] = STATE(27), + [sym_using_declaration] = STATE(27), + [sym_alias_declaration] = STATE(27), + [sym_static_assert_declaration] = STATE(27), + [sym_concept_definition] = STATE(27), + [sym_for_range_loop] = STATE(27), + [sym_co_return_statement] = STATE(27), + [sym_co_yield_statement] = STATE(27), + [sym_throw_statement] = STATE(27), + [sym_try_statement] = STATE(27), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6121), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1787), [sym_identifier] = ACTIONS(349), [aux_sym_preproc_include_token1] = ACTIONS(351), [aux_sym_preproc_def_token1] = ACTIONS(353), @@ -53846,8 +50493,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(421), [aux_sym_preproc_ifdef_token1] = ACTIONS(359), [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), [sym_preproc_directive] = ACTIONS(361), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -53977,33 +50624,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(41), [sym_preproc_if] = STATE(41), [sym_preproc_ifdef] = STATE(41), - [sym_preproc_else] = STATE(9563), - [sym_preproc_elif] = STATE(9563), + [sym_preproc_else] = STATE(7285), + [sym_preproc_elif] = STATE(7285), [sym_function_definition] = STATE(41), [sym_declaration] = STATE(41), [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5723), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4564), [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2642), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7073), - [sym_array_declarator] = STATE(6917), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(2008), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5782), + [sym_array_declarator] = STATE(5742), [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4249), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3465), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(41), [sym_labeled_statement] = STATE(41), [sym_expression_statement] = STATE(41), @@ -54017,51 +50664,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(41), [sym_continue_statement] = STATE(41), [sym_goto_statement] = STATE(41), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(3958), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1787), + [sym_dependent_type] = STATE(3114), [sym_template_declaration] = STATE(41), [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(7442), - [sym__constructor_specifiers] = STATE(2409), + [sym_operator_cast] = STATE(6121), + [sym__constructor_specifiers] = STATE(1787), [sym_operator_cast_definition] = STATE(41), [sym_operator_cast_declaration] = STATE(41), [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), [sym_namespace_definition] = STATE(41), [sym_namespace_alias_definition] = STATE(41), [sym_using_declaration] = STATE(41), @@ -54073,29 +50720,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(41), [sym_throw_statement] = STATE(41), [sym_try_statement] = STATE(41), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7442), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6121), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1787), [sym_identifier] = ACTIONS(349), [aux_sym_preproc_include_token1] = ACTIONS(351), [aux_sym_preproc_def_token1] = ACTIONS(353), @@ -54103,8 +50750,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(423), [aux_sym_preproc_ifdef_token1] = ACTIONS(359), [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), [sym_preproc_directive] = ACTIONS(361), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -54228,296 +50875,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [32] = { - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_function_definition] = STATE(32), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5767), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2622), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7072), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4283), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_case_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_goto_statement] = STATE(32), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(32), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2405), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(32), - [sym_template_instantiation] = STATE(32), - [sym_operator_cast] = STATE(7476), - [sym__constructor_specifiers] = STATE(2405), - [sym_operator_cast_definition] = STATE(32), - [sym_operator_cast_declaration] = STATE(32), - [sym_constructor_or_destructor_definition] = STATE(32), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(32), - [sym_namespace_alias_definition] = STATE(32), - [sym_using_declaration] = STATE(32), - [sym_alias_declaration] = STATE(32), - [sym_static_assert_declaration] = STATE(32), - [sym_concept_definition] = STATE(32), - [sym_for_range_loop] = STATE(32), - [sym_co_return_statement] = STATE(32), - [sym_co_yield_statement] = STATE(32), - [sym_throw_statement] = STATE(32), - [sym_try_statement] = STATE(32), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7476), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2405), - [sym_identifier] = ACTIONS(425), - [aux_sym_preproc_include_token1] = ACTIONS(428), - [aux_sym_preproc_def_token1] = ACTIONS(431), - [aux_sym_preproc_if_token1] = ACTIONS(434), - [aux_sym_preproc_if_token2] = ACTIONS(437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(439), - [aux_sym_preproc_ifdef_token2] = ACTIONS(439), - [aux_sym_preproc_else_token1] = ACTIONS(437), - [aux_sym_preproc_elif_token1] = ACTIONS(437), - [aux_sym_preproc_elifdef_token1] = ACTIONS(437), - [aux_sym_preproc_elifdef_token2] = ACTIONS(437), - [sym_preproc_directive] = ACTIONS(442), - [anon_sym_LPAREN2] = ACTIONS(445), - [anon_sym_BANG] = ACTIONS(448), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_AMP_AMP] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(463), - [anon_sym_SEMI] = ACTIONS(466), - [anon_sym___extension__] = ACTIONS(469), - [anon_sym_typedef] = ACTIONS(472), - [anon_sym_extern] = ACTIONS(475), - [anon_sym___attribute__] = ACTIONS(478), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(484), - [anon_sym___declspec] = ACTIONS(487), - [anon_sym___based] = ACTIONS(490), - [anon_sym___cdecl] = ACTIONS(493), - [anon_sym___clrcall] = ACTIONS(493), - [anon_sym___stdcall] = ACTIONS(493), - [anon_sym___fastcall] = ACTIONS(493), - [anon_sym___thiscall] = ACTIONS(493), - [anon_sym___vectorcall] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_signed] = ACTIONS(499), - [anon_sym_unsigned] = ACTIONS(499), - [anon_sym_long] = ACTIONS(499), - [anon_sym_short] = ACTIONS(499), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_static] = ACTIONS(505), - [anon_sym_register] = ACTIONS(505), - [anon_sym_inline] = ACTIONS(508), - [anon_sym___inline] = ACTIONS(505), - [anon_sym___inline__] = ACTIONS(505), - [anon_sym___forceinline] = ACTIONS(505), - [anon_sym_thread_local] = ACTIONS(505), - [anon_sym___thread] = ACTIONS(505), - [anon_sym_const] = ACTIONS(511), - [anon_sym_constexpr] = ACTIONS(511), - [anon_sym_volatile] = ACTIONS(511), - [anon_sym_restrict] = ACTIONS(511), - [anon_sym___restrict__] = ACTIONS(511), - [anon_sym__Atomic] = ACTIONS(511), - [anon_sym__Noreturn] = ACTIONS(511), - [anon_sym_noreturn] = ACTIONS(511), - [anon_sym_mutable] = ACTIONS(511), - [anon_sym_constinit] = ACTIONS(511), - [anon_sym_consteval] = ACTIONS(511), - [sym_primitive_type] = ACTIONS(514), - [anon_sym_enum] = ACTIONS(517), - [anon_sym_class] = ACTIONS(520), - [anon_sym_struct] = ACTIONS(523), - [anon_sym_union] = ACTIONS(526), - [anon_sym_if] = ACTIONS(529), - [anon_sym_switch] = ACTIONS(532), - [anon_sym_case] = ACTIONS(535), - [anon_sym_default] = ACTIONS(538), - [anon_sym_while] = ACTIONS(541), - [anon_sym_do] = ACTIONS(544), - [anon_sym_for] = ACTIONS(547), - [anon_sym_return] = ACTIONS(550), - [anon_sym_break] = ACTIONS(553), - [anon_sym_continue] = ACTIONS(556), - [anon_sym_goto] = ACTIONS(559), - [anon_sym_not] = ACTIONS(454), - [anon_sym_compl] = ACTIONS(454), - [anon_sym_DASH_DASH] = ACTIONS(562), - [anon_sym_PLUS_PLUS] = ACTIONS(562), - [anon_sym_sizeof] = ACTIONS(565), - [anon_sym___alignof__] = ACTIONS(568), - [anon_sym___alignof] = ACTIONS(568), - [anon_sym__alignof] = ACTIONS(568), - [anon_sym_alignof] = ACTIONS(568), - [anon_sym__Alignof] = ACTIONS(568), - [anon_sym_offsetof] = ACTIONS(571), - [anon_sym__Generic] = ACTIONS(574), - [anon_sym_asm] = ACTIONS(577), - [anon_sym___asm__] = ACTIONS(577), - [sym_number_literal] = ACTIONS(580), - [anon_sym_L_SQUOTE] = ACTIONS(583), - [anon_sym_u_SQUOTE] = ACTIONS(583), - [anon_sym_U_SQUOTE] = ACTIONS(583), - [anon_sym_u8_SQUOTE] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(583), - [anon_sym_L_DQUOTE] = ACTIONS(586), - [anon_sym_u_DQUOTE] = ACTIONS(586), - [anon_sym_U_DQUOTE] = ACTIONS(586), - [anon_sym_u8_DQUOTE] = ACTIONS(586), - [anon_sym_DQUOTE] = ACTIONS(586), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [anon_sym_NULL] = ACTIONS(592), - [anon_sym_nullptr] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(595), - [anon_sym_decltype] = ACTIONS(598), - [anon_sym_virtual] = ACTIONS(601), - [anon_sym_alignas] = ACTIONS(604), - [anon_sym_explicit] = ACTIONS(607), - [anon_sym_typename] = ACTIONS(610), - [anon_sym_template] = ACTIONS(613), - [anon_sym_operator] = ACTIONS(616), - [anon_sym_try] = ACTIONS(619), - [anon_sym_delete] = ACTIONS(622), - [anon_sym_throw] = ACTIONS(625), - [anon_sym_namespace] = ACTIONS(628), - [anon_sym_using] = ACTIONS(631), - [anon_sym_static_assert] = ACTIONS(634), - [anon_sym_concept] = ACTIONS(637), - [anon_sym_co_return] = ACTIONS(640), - [anon_sym_co_yield] = ACTIONS(643), - [anon_sym_R_DQUOTE] = ACTIONS(646), - [anon_sym_LR_DQUOTE] = ACTIONS(646), - [anon_sym_uR_DQUOTE] = ACTIONS(646), - [anon_sym_UR_DQUOTE] = ACTIONS(646), - [anon_sym_u8R_DQUOTE] = ACTIONS(646), - [anon_sym_co_await] = ACTIONS(649), - [anon_sym_new] = ACTIONS(652), - [anon_sym_requires] = ACTIONS(655), - [sym_this] = ACTIONS(589), - }, - [33] = { [sym_preproc_include] = STATE(41), [sym_preproc_def] = STATE(41), [sym_preproc_function_def] = STATE(41), [sym_preproc_call] = STATE(41), [sym_preproc_if] = STATE(41), [sym_preproc_ifdef] = STATE(41), - [sym_preproc_else] = STATE(9409), - [sym_preproc_elif] = STATE(9409), + [sym_preproc_else] = STATE(7717), + [sym_preproc_elif] = STATE(7717), [sym_function_definition] = STATE(41), [sym_declaration] = STATE(41), [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5723), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4564), [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2642), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7073), - [sym_array_declarator] = STATE(6917), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(2008), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5782), + [sym_array_declarator] = STATE(5742), [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4249), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3465), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(41), [sym_labeled_statement] = STATE(41), [sym_expression_statement] = STATE(41), @@ -54531,51 +50921,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(41), [sym_continue_statement] = STATE(41), [sym_goto_statement] = STATE(41), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(3958), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1787), + [sym_dependent_type] = STATE(3114), [sym_template_declaration] = STATE(41), [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(7442), - [sym__constructor_specifiers] = STATE(2409), + [sym_operator_cast] = STATE(6121), + [sym__constructor_specifiers] = STATE(1787), [sym_operator_cast_definition] = STATE(41), [sym_operator_cast_declaration] = STATE(41), [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), [sym_namespace_definition] = STATE(41), [sym_namespace_alias_definition] = STATE(41), [sym_using_declaration] = STATE(41), @@ -54587,38 +50977,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(41), [sym_throw_statement] = STATE(41), [sym_try_statement] = STATE(41), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7442), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6121), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1787), [sym_identifier] = ACTIONS(349), [aux_sym_preproc_include_token1] = ACTIONS(351), [aux_sym_preproc_def_token1] = ACTIONS(353), [aux_sym_preproc_if_token1] = ACTIONS(355), - [aux_sym_preproc_if_token2] = ACTIONS(658), + [aux_sym_preproc_if_token2] = ACTIONS(425), [aux_sym_preproc_ifdef_token1] = ACTIONS(359), [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), [sym_preproc_directive] = ACTIONS(361), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -54741,141 +51131,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [34] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_preproc_else] = STATE(9474), - [sym_preproc_elif] = STATE(9474), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5723), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2642), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7073), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4249), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(31), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(31), - [sym_template_instantiation] = STATE(31), - [sym_operator_cast] = STATE(7442), - [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(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(31), - [sym_namespace_alias_definition] = STATE(31), - [sym_using_declaration] = STATE(31), - [sym_alias_declaration] = STATE(31), - [sym_static_assert_declaration] = STATE(31), - [sym_concept_definition] = STATE(31), - [sym_for_range_loop] = STATE(31), - [sym_co_return_statement] = STATE(31), - [sym_co_yield_statement] = STATE(31), - [sym_throw_statement] = STATE(31), - [sym_try_statement] = STATE(31), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7442), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [33] = { + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_preproc_else] = STATE(7648), + [sym_preproc_elif] = STATE(7648), + [sym_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4564), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(2008), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5782), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3465), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1787), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(6121), + [sym__constructor_specifiers] = STATE(1787), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(41), + [sym_namespace_alias_definition] = STATE(41), + [sym_using_declaration] = STATE(41), + [sym_alias_declaration] = STATE(41), + [sym_static_assert_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(41), + [sym_co_return_statement] = STATE(41), + [sym_co_yield_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6121), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1787), [sym_identifier] = ACTIONS(349), [aux_sym_preproc_include_token1] = ACTIONS(351), [aux_sym_preproc_def_token1] = ACTIONS(353), [aux_sym_preproc_if_token1] = ACTIONS(355), - [aux_sym_preproc_if_token2] = ACTIONS(660), + [aux_sym_preproc_if_token2] = ACTIONS(427), [aux_sym_preproc_ifdef_token1] = ACTIONS(359), [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), [sym_preproc_directive] = ACTIONS(361), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -54998,141 +51388,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [35] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_preproc_else] = STATE(9115), - [sym_preproc_elif] = STATE(9115), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5723), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2642), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7073), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4249), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(7442), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7442), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [34] = { + [sym_preproc_include] = STATE(32), + [sym_preproc_def] = STATE(32), + [sym_preproc_function_def] = STATE(32), + [sym_preproc_call] = STATE(32), + [sym_preproc_if] = STATE(32), + [sym_preproc_ifdef] = STATE(32), + [sym_preproc_else] = STATE(7611), + [sym_preproc_elif] = STATE(7611), + [sym_function_definition] = STATE(32), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4564), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(2008), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5782), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(32), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3465), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(32), + [sym_labeled_statement] = STATE(32), + [sym_expression_statement] = STATE(32), + [sym_if_statement] = STATE(32), + [sym_switch_statement] = STATE(32), + [sym_case_statement] = STATE(32), + [sym_while_statement] = STATE(32), + [sym_do_statement] = STATE(32), + [sym_for_statement] = STATE(32), + [sym_return_statement] = STATE(32), + [sym_break_statement] = STATE(32), + [sym_continue_statement] = STATE(32), + [sym_goto_statement] = STATE(32), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(32), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1787), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(32), + [sym_template_instantiation] = STATE(32), + [sym_operator_cast] = STATE(6121), + [sym__constructor_specifiers] = STATE(1787), + [sym_operator_cast_definition] = STATE(32), + [sym_operator_cast_declaration] = STATE(32), + [sym_constructor_or_destructor_definition] = STATE(32), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(32), + [sym_namespace_alias_definition] = STATE(32), + [sym_using_declaration] = STATE(32), + [sym_alias_declaration] = STATE(32), + [sym_static_assert_declaration] = STATE(32), + [sym_concept_definition] = STATE(32), + [sym_for_range_loop] = STATE(32), + [sym_co_return_statement] = STATE(32), + [sym_co_yield_statement] = STATE(32), + [sym_throw_statement] = STATE(32), + [sym_try_statement] = STATE(32), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6121), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1787), [sym_identifier] = ACTIONS(349), [aux_sym_preproc_include_token1] = ACTIONS(351), [aux_sym_preproc_def_token1] = ACTIONS(353), [aux_sym_preproc_if_token1] = ACTIONS(355), - [aux_sym_preproc_if_token2] = ACTIONS(662), + [aux_sym_preproc_if_token2] = ACTIONS(429), [aux_sym_preproc_ifdef_token1] = ACTIONS(359), [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), [sym_preproc_directive] = ACTIONS(361), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -55255,141 +51645,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [36] = { - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_preproc_else] = STATE(8858), - [sym_preproc_elif] = STATE(8858), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5723), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2642), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7073), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4249), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(41), - [sym_labeled_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_case_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_goto_statement] = STATE(41), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(7442), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(41), - [sym_namespace_alias_definition] = STATE(41), - [sym_using_declaration] = STATE(41), - [sym_alias_declaration] = STATE(41), - [sym_static_assert_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(41), - [sym_co_return_statement] = STATE(41), - [sym_co_yield_statement] = STATE(41), - [sym_throw_statement] = STATE(41), - [sym_try_statement] = STATE(41), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7442), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [35] = { + [sym_preproc_include] = STATE(38), + [sym_preproc_def] = STATE(38), + [sym_preproc_function_def] = STATE(38), + [sym_preproc_call] = STATE(38), + [sym_preproc_if] = STATE(38), + [sym_preproc_ifdef] = STATE(38), + [sym_preproc_else] = STATE(7874), + [sym_preproc_elif] = STATE(7874), + [sym_function_definition] = STATE(38), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4564), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(2008), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5782), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(38), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3465), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(38), + [sym_labeled_statement] = STATE(38), + [sym_expression_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_switch_statement] = STATE(38), + [sym_case_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_do_statement] = STATE(38), + [sym_for_statement] = STATE(38), + [sym_return_statement] = STATE(38), + [sym_break_statement] = STATE(38), + [sym_continue_statement] = STATE(38), + [sym_goto_statement] = STATE(38), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(38), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1787), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(38), + [sym_template_instantiation] = STATE(38), + [sym_operator_cast] = STATE(6121), + [sym__constructor_specifiers] = STATE(1787), + [sym_operator_cast_definition] = STATE(38), + [sym_operator_cast_declaration] = STATE(38), + [sym_constructor_or_destructor_definition] = STATE(38), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(38), + [sym_namespace_alias_definition] = STATE(38), + [sym_using_declaration] = STATE(38), + [sym_alias_declaration] = STATE(38), + [sym_static_assert_declaration] = STATE(38), + [sym_concept_definition] = STATE(38), + [sym_for_range_loop] = STATE(38), + [sym_co_return_statement] = STATE(38), + [sym_co_yield_statement] = STATE(38), + [sym_throw_statement] = STATE(38), + [sym_try_statement] = STATE(38), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6121), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1787), [sym_identifier] = ACTIONS(349), [aux_sym_preproc_include_token1] = ACTIONS(351), [aux_sym_preproc_def_token1] = ACTIONS(353), [aux_sym_preproc_if_token1] = ACTIONS(355), - [aux_sym_preproc_if_token2] = ACTIONS(664), + [aux_sym_preproc_if_token2] = ACTIONS(431), [aux_sym_preproc_ifdef_token1] = ACTIONS(359), [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), [sym_preproc_directive] = ACTIONS(361), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -55512,141 +51902,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [37] = { - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_preproc_else] = STATE(8859), - [sym_preproc_elif] = STATE(8859), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5723), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2642), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7073), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4249), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(39), - [sym_labeled_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_goto_statement] = STATE(39), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(39), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(39), - [sym_template_instantiation] = STATE(39), - [sym_operator_cast] = STATE(7442), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(39), - [sym_operator_cast_declaration] = STATE(39), - [sym_constructor_or_destructor_definition] = STATE(39), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [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(39), - [sym_co_return_statement] = STATE(39), - [sym_co_yield_statement] = STATE(39), - [sym_throw_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7442), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [36] = { + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_preproc_else] = STATE(7834), + [sym_preproc_elif] = STATE(7834), + [sym_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4564), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(2008), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5782), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3465), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1787), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(6121), + [sym__constructor_specifiers] = STATE(1787), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(41), + [sym_namespace_alias_definition] = STATE(41), + [sym_using_declaration] = STATE(41), + [sym_alias_declaration] = STATE(41), + [sym_static_assert_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(41), + [sym_co_return_statement] = STATE(41), + [sym_co_yield_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6121), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1787), [sym_identifier] = ACTIONS(349), [aux_sym_preproc_include_token1] = ACTIONS(351), [aux_sym_preproc_def_token1] = ACTIONS(353), [aux_sym_preproc_if_token1] = ACTIONS(355), - [aux_sym_preproc_if_token2] = ACTIONS(666), + [aux_sym_preproc_if_token2] = ACTIONS(433), [aux_sym_preproc_ifdef_token1] = ACTIONS(359), [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), [sym_preproc_directive] = ACTIONS(361), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -55769,132 +52159,389 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, + [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(3353), + [sym__declaration_specifiers] = STATE(4552), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1937), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5800), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3480), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1784), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(6095), + [sym__constructor_specifiers] = STATE(1784), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(37), + [sym_namespace_alias_definition] = STATE(37), + [sym_using_declaration] = STATE(37), + [sym_alias_declaration] = STATE(37), + [sym_static_assert_declaration] = STATE(37), + [sym_concept_definition] = STATE(37), + [sym_for_range_loop] = STATE(37), + [sym_co_return_statement] = STATE(37), + [sym_co_yield_statement] = STATE(37), + [sym_throw_statement] = STATE(37), + [sym_try_statement] = STATE(37), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6095), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1784), + [sym_identifier] = ACTIONS(435), + [aux_sym_preproc_include_token1] = ACTIONS(438), + [aux_sym_preproc_def_token1] = ACTIONS(441), + [aux_sym_preproc_if_token1] = ACTIONS(444), + [aux_sym_preproc_if_token2] = ACTIONS(447), + [aux_sym_preproc_ifdef_token1] = ACTIONS(449), + [aux_sym_preproc_ifdef_token2] = ACTIONS(449), + [aux_sym_preproc_else_token1] = ACTIONS(447), + [aux_sym_preproc_elif_token1] = ACTIONS(447), + [aux_sym_preproc_elifdef_token1] = ACTIONS(447), + [aux_sym_preproc_elifdef_token2] = ACTIONS(447), + [sym_preproc_directive] = ACTIONS(452), + [anon_sym_LPAREN2] = ACTIONS(455), + [anon_sym_BANG] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(467), + [anon_sym_AMP_AMP] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(476), + [anon_sym___extension__] = ACTIONS(479), + [anon_sym_typedef] = ACTIONS(482), + [anon_sym_extern] = ACTIONS(485), + [anon_sym___attribute__] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(494), + [anon_sym___declspec] = ACTIONS(497), + [anon_sym___based] = ACTIONS(500), + [anon_sym___cdecl] = ACTIONS(503), + [anon_sym___clrcall] = ACTIONS(503), + [anon_sym___stdcall] = ACTIONS(503), + [anon_sym___fastcall] = ACTIONS(503), + [anon_sym___thiscall] = ACTIONS(503), + [anon_sym___vectorcall] = ACTIONS(503), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_signed] = ACTIONS(509), + [anon_sym_unsigned] = ACTIONS(509), + [anon_sym_long] = ACTIONS(509), + [anon_sym_short] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_static] = ACTIONS(515), + [anon_sym_register] = ACTIONS(515), + [anon_sym_inline] = ACTIONS(518), + [anon_sym___inline] = ACTIONS(515), + [anon_sym___inline__] = ACTIONS(515), + [anon_sym___forceinline] = ACTIONS(515), + [anon_sym_thread_local] = ACTIONS(515), + [anon_sym___thread] = ACTIONS(515), + [anon_sym_const] = ACTIONS(521), + [anon_sym_constexpr] = ACTIONS(521), + [anon_sym_volatile] = ACTIONS(521), + [anon_sym_restrict] = ACTIONS(521), + [anon_sym___restrict__] = ACTIONS(521), + [anon_sym__Atomic] = ACTIONS(521), + [anon_sym__Noreturn] = ACTIONS(521), + [anon_sym_noreturn] = ACTIONS(521), + [anon_sym_mutable] = ACTIONS(521), + [anon_sym_constinit] = ACTIONS(521), + [anon_sym_consteval] = ACTIONS(521), + [sym_primitive_type] = ACTIONS(524), + [anon_sym_enum] = ACTIONS(527), + [anon_sym_class] = ACTIONS(530), + [anon_sym_struct] = ACTIONS(533), + [anon_sym_union] = ACTIONS(536), + [anon_sym_if] = ACTIONS(539), + [anon_sym_switch] = ACTIONS(542), + [anon_sym_case] = ACTIONS(545), + [anon_sym_default] = ACTIONS(548), + [anon_sym_while] = ACTIONS(551), + [anon_sym_do] = ACTIONS(554), + [anon_sym_for] = ACTIONS(557), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(563), + [anon_sym_continue] = ACTIONS(566), + [anon_sym_goto] = ACTIONS(569), + [anon_sym_not] = ACTIONS(464), + [anon_sym_compl] = ACTIONS(464), + [anon_sym_DASH_DASH] = ACTIONS(572), + [anon_sym_PLUS_PLUS] = ACTIONS(572), + [anon_sym_sizeof] = ACTIONS(575), + [anon_sym___alignof__] = ACTIONS(578), + [anon_sym___alignof] = ACTIONS(578), + [anon_sym__alignof] = ACTIONS(578), + [anon_sym_alignof] = ACTIONS(578), + [anon_sym__Alignof] = ACTIONS(578), + [anon_sym_offsetof] = ACTIONS(581), + [anon_sym__Generic] = ACTIONS(584), + [anon_sym_asm] = ACTIONS(587), + [anon_sym___asm__] = ACTIONS(587), + [sym_number_literal] = ACTIONS(590), + [anon_sym_L_SQUOTE] = ACTIONS(593), + [anon_sym_u_SQUOTE] = ACTIONS(593), + [anon_sym_U_SQUOTE] = ACTIONS(593), + [anon_sym_u8_SQUOTE] = ACTIONS(593), + [anon_sym_SQUOTE] = ACTIONS(593), + [anon_sym_L_DQUOTE] = ACTIONS(596), + [anon_sym_u_DQUOTE] = ACTIONS(596), + [anon_sym_U_DQUOTE] = ACTIONS(596), + [anon_sym_u8_DQUOTE] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_true] = ACTIONS(599), + [sym_false] = ACTIONS(599), + [anon_sym_NULL] = ACTIONS(602), + [anon_sym_nullptr] = ACTIONS(602), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(605), + [anon_sym_decltype] = ACTIONS(608), + [anon_sym_virtual] = ACTIONS(611), + [anon_sym_alignas] = ACTIONS(614), + [anon_sym_explicit] = ACTIONS(617), + [anon_sym_typename] = ACTIONS(620), + [anon_sym_template] = ACTIONS(623), + [anon_sym_operator] = ACTIONS(626), + [anon_sym_try] = ACTIONS(629), + [anon_sym_delete] = ACTIONS(632), + [anon_sym_throw] = ACTIONS(635), + [anon_sym_namespace] = ACTIONS(638), + [anon_sym_using] = ACTIONS(641), + [anon_sym_static_assert] = ACTIONS(644), + [anon_sym_concept] = ACTIONS(647), + [anon_sym_co_return] = ACTIONS(650), + [anon_sym_co_yield] = ACTIONS(653), + [anon_sym_R_DQUOTE] = ACTIONS(656), + [anon_sym_LR_DQUOTE] = ACTIONS(656), + [anon_sym_uR_DQUOTE] = ACTIONS(656), + [anon_sym_UR_DQUOTE] = ACTIONS(656), + [anon_sym_u8R_DQUOTE] = ACTIONS(656), + [anon_sym_co_await] = ACTIONS(659), + [anon_sym_new] = ACTIONS(662), + [anon_sym_requires] = ACTIONS(665), + [sym_this] = ACTIONS(599), + }, [38] = { - [sym_preproc_include] = STATE(30), - [sym_preproc_def] = STATE(30), - [sym_preproc_function_def] = STATE(30), - [sym_preproc_call] = STATE(30), - [sym_preproc_if] = STATE(30), - [sym_preproc_ifdef] = STATE(30), - [sym_preproc_else] = STATE(9297), - [sym_preproc_elif] = STATE(9297), - [sym_function_definition] = STATE(30), - [sym_declaration] = STATE(30), - [sym_type_definition] = STATE(30), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5723), - [sym_linkage_specification] = STATE(30), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2642), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7073), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(30), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4249), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(30), - [sym_labeled_statement] = STATE(30), - [sym_expression_statement] = STATE(30), - [sym_if_statement] = STATE(30), - [sym_switch_statement] = STATE(30), - [sym_case_statement] = STATE(30), - [sym_while_statement] = STATE(30), - [sym_do_statement] = STATE(30), - [sym_for_statement] = STATE(30), - [sym_return_statement] = STATE(30), - [sym_break_statement] = STATE(30), - [sym_continue_statement] = STATE(30), - [sym_goto_statement] = STATE(30), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(30), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(30), - [sym_template_instantiation] = STATE(30), - [sym_operator_cast] = STATE(7442), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(30), - [sym_operator_cast_declaration] = STATE(30), - [sym_constructor_or_destructor_definition] = STATE(30), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(30), - [sym_namespace_alias_definition] = STATE(30), - [sym_using_declaration] = STATE(30), - [sym_alias_declaration] = STATE(30), - [sym_static_assert_declaration] = STATE(30), - [sym_concept_definition] = STATE(30), - [sym_for_range_loop] = STATE(30), - [sym_co_return_statement] = STATE(30), - [sym_co_yield_statement] = STATE(30), - [sym_throw_statement] = STATE(30), - [sym_try_statement] = STATE(30), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7442), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(30), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_preproc_else] = STATE(7931), + [sym_preproc_elif] = STATE(7931), + [sym_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4564), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(2008), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5782), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3465), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1787), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(6121), + [sym__constructor_specifiers] = STATE(1787), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(41), + [sym_namespace_alias_definition] = STATE(41), + [sym_using_declaration] = STATE(41), + [sym_alias_declaration] = STATE(41), + [sym_static_assert_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(41), + [sym_co_return_statement] = STATE(41), + [sym_co_yield_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6121), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1787), [sym_identifier] = ACTIONS(349), [aux_sym_preproc_include_token1] = ACTIONS(351), [aux_sym_preproc_def_token1] = ACTIONS(353), @@ -55902,8 +52549,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(668), [aux_sym_preproc_ifdef_token1] = ACTIONS(359), [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), [sym_preproc_directive] = ACTIONS(361), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -56027,131 +52674,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [39] = { - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_preproc_else] = STATE(9056), - [sym_preproc_elif] = STATE(9056), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5723), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2642), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7073), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4249), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(41), - [sym_labeled_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_case_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_goto_statement] = STATE(41), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(7442), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(41), - [sym_namespace_alias_definition] = STATE(41), - [sym_using_declaration] = STATE(41), - [sym_alias_declaration] = STATE(41), - [sym_static_assert_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(41), - [sym_co_return_statement] = STATE(41), - [sym_co_yield_statement] = STATE(41), - [sym_throw_statement] = STATE(41), - [sym_try_statement] = STATE(41), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7442), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_preproc_else] = STATE(7212), + [sym_preproc_elif] = STATE(7212), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4564), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(2008), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5782), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3465), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(31), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1787), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(31), + [sym_template_instantiation] = STATE(31), + [sym_operator_cast] = STATE(6121), + [sym__constructor_specifiers] = STATE(1787), + [sym_operator_cast_definition] = STATE(31), + [sym_operator_cast_declaration] = STATE(31), + [sym_constructor_or_destructor_definition] = STATE(31), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(31), + [sym_namespace_alias_definition] = STATE(31), + [sym_using_declaration] = STATE(31), + [sym_alias_declaration] = STATE(31), + [sym_static_assert_declaration] = STATE(31), + [sym_concept_definition] = STATE(31), + [sym_for_range_loop] = STATE(31), + [sym_co_return_statement] = STATE(31), + [sym_co_yield_statement] = STATE(31), + [sym_throw_statement] = STATE(31), + [sym_try_statement] = STATE(31), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6121), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1787), [sym_identifier] = ACTIONS(349), [aux_sym_preproc_include_token1] = ACTIONS(351), [aux_sym_preproc_def_token1] = ACTIONS(353), @@ -56159,8 +52806,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(670), [aux_sym_preproc_ifdef_token1] = ACTIONS(359), [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), [sym_preproc_directive] = ACTIONS(361), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -56290,33 +52937,33 @@ 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(9617), - [sym_preproc_elif] = STATE(9617), + [sym_preproc_else] = STATE(7588), + [sym_preproc_elif] = STATE(7588), [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5723), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4564), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2642), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7073), - [sym_array_declarator] = STATE(6917), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(2008), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5782), + [sym_array_declarator] = STATE(5742), [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4249), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3465), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(33), [sym_labeled_statement] = STATE(33), [sym_expression_statement] = STATE(33), @@ -56330,51 +52977,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(33), [sym_continue_statement] = STATE(33), [sym_goto_statement] = STATE(33), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(3958), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1787), + [sym_dependent_type] = STATE(3114), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(7442), - [sym__constructor_specifiers] = STATE(2409), + [sym_operator_cast] = STATE(6121), + [sym__constructor_specifiers] = STATE(1787), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), [sym_namespace_definition] = STATE(33), [sym_namespace_alias_definition] = STATE(33), [sym_using_declaration] = STATE(33), @@ -56386,29 +53033,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(33), [sym_throw_statement] = STATE(33), [sym_try_statement] = STATE(33), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7442), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6121), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1787), [sym_identifier] = ACTIONS(349), [aux_sym_preproc_include_token1] = ACTIONS(351), [aux_sym_preproc_def_token1] = ACTIONS(353), @@ -56416,8 +53063,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(672), [aux_sym_preproc_ifdef_token1] = ACTIONS(359), [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [aux_sym_preproc_else_token1] = ACTIONS(171), - [aux_sym_preproc_elif_token1] = ACTIONS(173), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(249), [sym_preproc_directive] = ACTIONS(361), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -56550,28 +53197,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(41), [sym_declaration] = STATE(41), [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5723), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4564), [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2642), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7073), - [sym_array_declarator] = STATE(6917), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(2008), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5782), + [sym_array_declarator] = STATE(5742), [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4249), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3465), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(41), [sym_labeled_statement] = STATE(41), [sym_expression_statement] = STATE(41), @@ -56585,51 +53232,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(41), [sym_continue_statement] = STATE(41), [sym_goto_statement] = STATE(41), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(3958), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1787), + [sym_dependent_type] = STATE(3114), [sym_template_declaration] = STATE(41), [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(7442), - [sym__constructor_specifiers] = STATE(2409), + [sym_operator_cast] = STATE(6121), + [sym__constructor_specifiers] = STATE(1787), [sym_operator_cast_definition] = STATE(41), [sym_operator_cast_declaration] = STATE(41), [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), [sym_namespace_definition] = STATE(41), [sym_namespace_alias_definition] = STATE(41), [sym_using_declaration] = STATE(41), @@ -56641,92 +53288,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(41), [sym_throw_statement] = STATE(41), [sym_try_statement] = STATE(41), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7442), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6121), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1787), [sym_identifier] = ACTIONS(674), [aux_sym_preproc_include_token1] = ACTIONS(677), [aux_sym_preproc_def_token1] = ACTIONS(680), [aux_sym_preproc_if_token1] = ACTIONS(683), - [aux_sym_preproc_if_token2] = ACTIONS(437), + [aux_sym_preproc_if_token2] = ACTIONS(447), [aux_sym_preproc_ifdef_token1] = ACTIONS(686), [aux_sym_preproc_ifdef_token2] = ACTIONS(686), - [aux_sym_preproc_else_token1] = ACTIONS(437), - [aux_sym_preproc_elif_token1] = ACTIONS(437), + [aux_sym_preproc_else_token1] = ACTIONS(447), + [aux_sym_preproc_elif_token1] = ACTIONS(447), [sym_preproc_directive] = ACTIONS(689), - [anon_sym_LPAREN2] = ACTIONS(445), - [anon_sym_BANG] = ACTIONS(448), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_AMP_AMP] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(455), + [anon_sym_BANG] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(467), + [anon_sym_AMP_AMP] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(473), [anon_sym_SEMI] = ACTIONS(692), [anon_sym___extension__] = ACTIONS(695), [anon_sym_typedef] = ACTIONS(698), [anon_sym_extern] = ACTIONS(701), - [anon_sym___attribute__] = ACTIONS(478), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(484), - [anon_sym___declspec] = ACTIONS(487), - [anon_sym___based] = ACTIONS(490), - [anon_sym___cdecl] = ACTIONS(493), - [anon_sym___clrcall] = ACTIONS(493), - [anon_sym___stdcall] = ACTIONS(493), - [anon_sym___fastcall] = ACTIONS(493), - [anon_sym___thiscall] = ACTIONS(493), - [anon_sym___vectorcall] = ACTIONS(493), + [anon_sym___attribute__] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(494), + [anon_sym___declspec] = ACTIONS(497), + [anon_sym___based] = ACTIONS(500), + [anon_sym___cdecl] = ACTIONS(503), + [anon_sym___clrcall] = ACTIONS(503), + [anon_sym___stdcall] = ACTIONS(503), + [anon_sym___fastcall] = ACTIONS(503), + [anon_sym___thiscall] = ACTIONS(503), + [anon_sym___vectorcall] = ACTIONS(503), [anon_sym_LBRACE] = ACTIONS(704), - [anon_sym_signed] = ACTIONS(499), - [anon_sym_unsigned] = ACTIONS(499), - [anon_sym_long] = ACTIONS(499), - [anon_sym_short] = ACTIONS(499), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_static] = ACTIONS(505), - [anon_sym_register] = ACTIONS(505), + [anon_sym_signed] = ACTIONS(509), + [anon_sym_unsigned] = ACTIONS(509), + [anon_sym_long] = ACTIONS(509), + [anon_sym_short] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_static] = ACTIONS(515), + [anon_sym_register] = ACTIONS(515), [anon_sym_inline] = ACTIONS(707), - [anon_sym___inline] = ACTIONS(505), - [anon_sym___inline__] = ACTIONS(505), - [anon_sym___forceinline] = ACTIONS(505), - [anon_sym_thread_local] = ACTIONS(505), - [anon_sym___thread] = ACTIONS(505), - [anon_sym_const] = ACTIONS(511), - [anon_sym_constexpr] = ACTIONS(511), - [anon_sym_volatile] = ACTIONS(511), - [anon_sym_restrict] = ACTIONS(511), - [anon_sym___restrict__] = ACTIONS(511), - [anon_sym__Atomic] = ACTIONS(511), - [anon_sym__Noreturn] = ACTIONS(511), - [anon_sym_noreturn] = ACTIONS(511), - [anon_sym_mutable] = ACTIONS(511), - [anon_sym_constinit] = ACTIONS(511), - [anon_sym_consteval] = ACTIONS(511), - [sym_primitive_type] = ACTIONS(514), - [anon_sym_enum] = ACTIONS(517), - [anon_sym_class] = ACTIONS(520), - [anon_sym_struct] = ACTIONS(523), - [anon_sym_union] = ACTIONS(526), + [anon_sym___inline] = ACTIONS(515), + [anon_sym___inline__] = ACTIONS(515), + [anon_sym___forceinline] = ACTIONS(515), + [anon_sym_thread_local] = ACTIONS(515), + [anon_sym___thread] = ACTIONS(515), + [anon_sym_const] = ACTIONS(521), + [anon_sym_constexpr] = ACTIONS(521), + [anon_sym_volatile] = ACTIONS(521), + [anon_sym_restrict] = ACTIONS(521), + [anon_sym___restrict__] = ACTIONS(521), + [anon_sym__Atomic] = ACTIONS(521), + [anon_sym__Noreturn] = ACTIONS(521), + [anon_sym_noreturn] = ACTIONS(521), + [anon_sym_mutable] = ACTIONS(521), + [anon_sym_constinit] = ACTIONS(521), + [anon_sym_consteval] = ACTIONS(521), + [sym_primitive_type] = ACTIONS(524), + [anon_sym_enum] = ACTIONS(527), + [anon_sym_class] = ACTIONS(530), + [anon_sym_struct] = ACTIONS(533), + [anon_sym_union] = ACTIONS(536), [anon_sym_if] = ACTIONS(710), [anon_sym_switch] = ACTIONS(713), [anon_sym_case] = ACTIONS(716), @@ -56738,46 +53385,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(734), [anon_sym_continue] = ACTIONS(737), [anon_sym_goto] = ACTIONS(740), - [anon_sym_not] = ACTIONS(454), - [anon_sym_compl] = ACTIONS(454), - [anon_sym_DASH_DASH] = ACTIONS(562), - [anon_sym_PLUS_PLUS] = ACTIONS(562), - [anon_sym_sizeof] = ACTIONS(565), - [anon_sym___alignof__] = ACTIONS(568), - [anon_sym___alignof] = ACTIONS(568), - [anon_sym__alignof] = ACTIONS(568), - [anon_sym_alignof] = ACTIONS(568), - [anon_sym__Alignof] = ACTIONS(568), - [anon_sym_offsetof] = ACTIONS(571), - [anon_sym__Generic] = ACTIONS(574), - [anon_sym_asm] = ACTIONS(577), - [anon_sym___asm__] = ACTIONS(577), - [sym_number_literal] = ACTIONS(580), - [anon_sym_L_SQUOTE] = ACTIONS(583), - [anon_sym_u_SQUOTE] = ACTIONS(583), - [anon_sym_U_SQUOTE] = ACTIONS(583), - [anon_sym_u8_SQUOTE] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(583), - [anon_sym_L_DQUOTE] = ACTIONS(586), - [anon_sym_u_DQUOTE] = ACTIONS(586), - [anon_sym_U_DQUOTE] = ACTIONS(586), - [anon_sym_u8_DQUOTE] = ACTIONS(586), - [anon_sym_DQUOTE] = ACTIONS(586), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [anon_sym_NULL] = ACTIONS(592), - [anon_sym_nullptr] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(595), - [anon_sym_decltype] = ACTIONS(598), - [anon_sym_virtual] = ACTIONS(601), - [anon_sym_alignas] = ACTIONS(604), - [anon_sym_explicit] = ACTIONS(607), - [anon_sym_typename] = ACTIONS(610), + [anon_sym_not] = ACTIONS(464), + [anon_sym_compl] = ACTIONS(464), + [anon_sym_DASH_DASH] = ACTIONS(572), + [anon_sym_PLUS_PLUS] = ACTIONS(572), + [anon_sym_sizeof] = ACTIONS(575), + [anon_sym___alignof__] = ACTIONS(578), + [anon_sym___alignof] = ACTIONS(578), + [anon_sym__alignof] = ACTIONS(578), + [anon_sym_alignof] = ACTIONS(578), + [anon_sym__Alignof] = ACTIONS(578), + [anon_sym_offsetof] = ACTIONS(581), + [anon_sym__Generic] = ACTIONS(584), + [anon_sym_asm] = ACTIONS(587), + [anon_sym___asm__] = ACTIONS(587), + [sym_number_literal] = ACTIONS(590), + [anon_sym_L_SQUOTE] = ACTIONS(593), + [anon_sym_u_SQUOTE] = ACTIONS(593), + [anon_sym_U_SQUOTE] = ACTIONS(593), + [anon_sym_u8_SQUOTE] = ACTIONS(593), + [anon_sym_SQUOTE] = ACTIONS(593), + [anon_sym_L_DQUOTE] = ACTIONS(596), + [anon_sym_u_DQUOTE] = ACTIONS(596), + [anon_sym_U_DQUOTE] = ACTIONS(596), + [anon_sym_u8_DQUOTE] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_true] = ACTIONS(599), + [sym_false] = ACTIONS(599), + [anon_sym_NULL] = ACTIONS(602), + [anon_sym_nullptr] = ACTIONS(602), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(605), + [anon_sym_decltype] = ACTIONS(608), + [anon_sym_virtual] = ACTIONS(611), + [anon_sym_alignas] = ACTIONS(614), + [anon_sym_explicit] = ACTIONS(617), + [anon_sym_typename] = ACTIONS(620), [anon_sym_template] = ACTIONS(743), - [anon_sym_operator] = ACTIONS(616), + [anon_sym_operator] = ACTIONS(626), [anon_sym_try] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(622), + [anon_sym_delete] = ACTIONS(632), [anon_sym_throw] = ACTIONS(749), [anon_sym_namespace] = ACTIONS(752), [anon_sym_using] = ACTIONS(755), @@ -56785,147 +53432,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(761), [anon_sym_co_return] = ACTIONS(764), [anon_sym_co_yield] = ACTIONS(767), - [anon_sym_R_DQUOTE] = ACTIONS(646), - [anon_sym_LR_DQUOTE] = ACTIONS(646), - [anon_sym_uR_DQUOTE] = ACTIONS(646), - [anon_sym_UR_DQUOTE] = ACTIONS(646), - [anon_sym_u8R_DQUOTE] = ACTIONS(646), - [anon_sym_co_await] = ACTIONS(649), - [anon_sym_new] = ACTIONS(652), - [anon_sym_requires] = ACTIONS(655), - [sym_this] = ACTIONS(589), + [anon_sym_R_DQUOTE] = ACTIONS(656), + [anon_sym_LR_DQUOTE] = ACTIONS(656), + [anon_sym_uR_DQUOTE] = ACTIONS(656), + [anon_sym_UR_DQUOTE] = ACTIONS(656), + [anon_sym_u8R_DQUOTE] = ACTIONS(656), + [anon_sym_co_await] = ACTIONS(659), + [anon_sym_new] = ACTIONS(662), + [anon_sym_requires] = ACTIONS(665), + [sym_this] = ACTIONS(599), }, [42] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -56934,10 +53581,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -56958,7 +53605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -56980,17 +53627,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -57027,17 +53674,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -57049,136 +53696,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [43] = { - [sym_preproc_include] = STATE(71), - [sym_preproc_def] = STATE(71), - [sym_preproc_function_def] = STATE(71), - [sym_preproc_call] = STATE(71), - [sym_preproc_if] = STATE(71), - [sym_preproc_ifdef] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_declaration] = STATE(71), - [sym_type_definition] = STATE(71), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(71), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(71), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(71), - [sym_labeled_statement] = STATE(71), - [sym_expression_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_case_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_return_statement] = STATE(71), - [sym_break_statement] = STATE(71), - [sym_continue_statement] = STATE(71), - [sym_goto_statement] = STATE(71), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(71), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(71), - [sym_template_instantiation] = STATE(71), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(71), - [sym_operator_cast_declaration] = STATE(71), - [sym_constructor_or_destructor_definition] = STATE(71), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(71), - [sym_namespace_alias_definition] = STATE(71), - [sym_using_declaration] = STATE(71), - [sym_alias_declaration] = STATE(71), - [sym_static_assert_declaration] = STATE(71), - [sym_concept_definition] = STATE(71), - [sym_for_range_loop] = STATE(71), - [sym_co_return_statement] = STATE(71), - [sym_co_yield_statement] = STATE(71), - [sym_throw_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(71), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_preproc_include] = STATE(89), + [sym_preproc_def] = STATE(89), + [sym_preproc_function_def] = STATE(89), + [sym_preproc_call] = STATE(89), + [sym_preproc_if] = STATE(89), + [sym_preproc_ifdef] = STATE(89), + [sym_function_definition] = STATE(89), + [sym_declaration] = STATE(89), + [sym_type_definition] = STATE(89), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(89), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(89), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(89), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(89), + [sym_template_instantiation] = STATE(89), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(89), + [sym_operator_cast_declaration] = STATE(89), + [sym_constructor_or_destructor_definition] = STATE(89), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(89), + [sym_namespace_alias_definition] = STATE(89), + [sym_using_declaration] = STATE(89), + [sym_alias_declaration] = STATE(89), + [sym_static_assert_declaration] = STATE(89), + [sym_concept_definition] = STATE(89), + [sym_for_range_loop] = STATE(89), + [sym_co_return_statement] = STATE(89), + [sym_co_yield_statement] = STATE(89), + [sym_throw_statement] = STATE(89), + [sym_try_statement] = STATE(89), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(89), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -57187,10 +53834,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -57211,7 +53858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -57233,17 +53880,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -57280,17 +53927,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -57302,136 +53949,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [44] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [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(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_case_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(48), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(48), + [sym_template_instantiation] = STATE(48), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(48), + [sym_operator_cast_declaration] = STATE(48), + [sym_constructor_or_destructor_definition] = STATE(48), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(48), + [sym_namespace_alias_definition] = STATE(48), + [sym_using_declaration] = STATE(48), + [sym_alias_declaration] = STATE(48), + [sym_static_assert_declaration] = STATE(48), + [sym_concept_definition] = STATE(48), + [sym_for_range_loop] = STATE(48), + [sym_co_return_statement] = STATE(48), + [sym_co_yield_statement] = STATE(48), + [sym_throw_statement] = STATE(48), + [sym_try_statement] = STATE(48), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -57440,10 +54087,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -57464,7 +54111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -57486,17 +54133,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -57533,17 +54180,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -57555,136 +54202,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [45] = { - [sym_preproc_include] = STATE(79), - [sym_preproc_def] = STATE(79), - [sym_preproc_function_def] = STATE(79), - [sym_preproc_call] = STATE(79), - [sym_preproc_if] = STATE(79), - [sym_preproc_ifdef] = STATE(79), - [sym_function_definition] = STATE(79), - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(79), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(79), - [sym_labeled_statement] = STATE(79), - [sym_expression_statement] = STATE(79), - [sym_if_statement] = STATE(79), - [sym_switch_statement] = STATE(79), - [sym_case_statement] = STATE(79), - [sym_while_statement] = STATE(79), - [sym_do_statement] = STATE(79), - [sym_for_statement] = STATE(79), - [sym_return_statement] = STATE(79), - [sym_break_statement] = STATE(79), - [sym_continue_statement] = STATE(79), - [sym_goto_statement] = STATE(79), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(79), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(79), - [sym_template_instantiation] = STATE(79), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(79), - [sym_operator_cast_declaration] = STATE(79), - [sym_constructor_or_destructor_definition] = STATE(79), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(79), - [sym_namespace_alias_definition] = STATE(79), - [sym_using_declaration] = STATE(79), - [sym_alias_declaration] = STATE(79), - [sym_static_assert_declaration] = STATE(79), - [sym_concept_definition] = STATE(79), - [sym_for_range_loop] = STATE(79), - [sym_co_return_statement] = STATE(79), - [sym_co_yield_statement] = STATE(79), - [sym_throw_statement] = STATE(79), - [sym_try_statement] = STATE(79), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(79), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -57693,10 +54340,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -57717,7 +54364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -57739,17 +54386,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -57786,17 +54433,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -57808,389 +54455,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [46] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(780), - [aux_sym_preproc_include_token1] = ACTIONS(783), - [aux_sym_preproc_def_token1] = ACTIONS(786), - [aux_sym_preproc_if_token1] = ACTIONS(789), - [aux_sym_preproc_ifdef_token1] = ACTIONS(792), - [aux_sym_preproc_ifdef_token2] = ACTIONS(792), - [sym_preproc_directive] = ACTIONS(795), - [anon_sym_LPAREN2] = ACTIONS(445), - [anon_sym_BANG] = ACTIONS(448), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_AMP_AMP] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(463), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym___extension__] = ACTIONS(801), - [anon_sym_typedef] = ACTIONS(804), - [anon_sym_extern] = ACTIONS(807), - [anon_sym___attribute__] = ACTIONS(478), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(484), - [anon_sym___declspec] = ACTIONS(487), - [anon_sym___based] = ACTIONS(490), - [anon_sym___cdecl] = ACTIONS(493), - [anon_sym___clrcall] = ACTIONS(493), - [anon_sym___stdcall] = ACTIONS(493), - [anon_sym___fastcall] = ACTIONS(493), - [anon_sym___thiscall] = ACTIONS(493), - [anon_sym___vectorcall] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(810), - [anon_sym_RBRACE] = ACTIONS(813), - [anon_sym_signed] = ACTIONS(499), - [anon_sym_unsigned] = ACTIONS(499), - [anon_sym_long] = ACTIONS(499), - [anon_sym_short] = ACTIONS(499), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_static] = ACTIONS(505), - [anon_sym_register] = ACTIONS(505), - [anon_sym_inline] = ACTIONS(815), - [anon_sym___inline] = ACTIONS(505), - [anon_sym___inline__] = ACTIONS(505), - [anon_sym___forceinline] = ACTIONS(505), - [anon_sym_thread_local] = ACTIONS(505), - [anon_sym___thread] = ACTIONS(505), - [anon_sym_const] = ACTIONS(511), - [anon_sym_constexpr] = ACTIONS(511), - [anon_sym_volatile] = ACTIONS(511), - [anon_sym_restrict] = ACTIONS(511), - [anon_sym___restrict__] = ACTIONS(511), - [anon_sym__Atomic] = ACTIONS(511), - [anon_sym__Noreturn] = ACTIONS(511), - [anon_sym_noreturn] = ACTIONS(511), - [anon_sym_mutable] = ACTIONS(511), - [anon_sym_constinit] = ACTIONS(511), - [anon_sym_consteval] = ACTIONS(511), - [sym_primitive_type] = ACTIONS(514), - [anon_sym_enum] = ACTIONS(517), - [anon_sym_class] = ACTIONS(520), - [anon_sym_struct] = ACTIONS(523), - [anon_sym_union] = ACTIONS(526), - [anon_sym_if] = ACTIONS(818), - [anon_sym_switch] = ACTIONS(821), - [anon_sym_case] = ACTIONS(824), - [anon_sym_default] = ACTIONS(827), - [anon_sym_while] = ACTIONS(830), - [anon_sym_do] = ACTIONS(833), - [anon_sym_for] = ACTIONS(836), - [anon_sym_return] = ACTIONS(839), - [anon_sym_break] = ACTIONS(842), - [anon_sym_continue] = ACTIONS(845), - [anon_sym_goto] = ACTIONS(848), - [anon_sym_not] = ACTIONS(454), - [anon_sym_compl] = ACTIONS(454), - [anon_sym_DASH_DASH] = ACTIONS(562), - [anon_sym_PLUS_PLUS] = ACTIONS(562), - [anon_sym_sizeof] = ACTIONS(565), - [anon_sym___alignof__] = ACTIONS(568), - [anon_sym___alignof] = ACTIONS(568), - [anon_sym__alignof] = ACTIONS(568), - [anon_sym_alignof] = ACTIONS(568), - [anon_sym__Alignof] = ACTIONS(568), - [anon_sym_offsetof] = ACTIONS(571), - [anon_sym__Generic] = ACTIONS(574), - [anon_sym_asm] = ACTIONS(577), - [anon_sym___asm__] = ACTIONS(577), - [sym_number_literal] = ACTIONS(580), - [anon_sym_L_SQUOTE] = ACTIONS(583), - [anon_sym_u_SQUOTE] = ACTIONS(583), - [anon_sym_U_SQUOTE] = ACTIONS(583), - [anon_sym_u8_SQUOTE] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(583), - [anon_sym_L_DQUOTE] = ACTIONS(586), - [anon_sym_u_DQUOTE] = ACTIONS(586), - [anon_sym_U_DQUOTE] = ACTIONS(586), - [anon_sym_u8_DQUOTE] = ACTIONS(586), - [anon_sym_DQUOTE] = ACTIONS(586), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [anon_sym_NULL] = ACTIONS(592), - [anon_sym_nullptr] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(595), - [anon_sym_decltype] = ACTIONS(598), - [anon_sym_virtual] = ACTIONS(601), - [anon_sym_alignas] = ACTIONS(604), - [anon_sym_explicit] = ACTIONS(607), - [anon_sym_typename] = ACTIONS(610), - [anon_sym_template] = ACTIONS(851), - [anon_sym_operator] = ACTIONS(616), - [anon_sym_try] = ACTIONS(854), - [anon_sym_delete] = ACTIONS(622), - [anon_sym_throw] = ACTIONS(857), - [anon_sym_namespace] = ACTIONS(860), - [anon_sym_using] = ACTIONS(863), - [anon_sym_static_assert] = ACTIONS(866), - [anon_sym_concept] = ACTIONS(869), - [anon_sym_co_return] = ACTIONS(872), - [anon_sym_co_yield] = ACTIONS(875), - [anon_sym_R_DQUOTE] = ACTIONS(646), - [anon_sym_LR_DQUOTE] = ACTIONS(646), - [anon_sym_uR_DQUOTE] = ACTIONS(646), - [anon_sym_UR_DQUOTE] = ACTIONS(646), - [anon_sym_u8R_DQUOTE] = ACTIONS(646), - [anon_sym_co_await] = ACTIONS(649), - [anon_sym_new] = ACTIONS(652), - [anon_sym_requires] = ACTIONS(655), - [sym_this] = ACTIONS(589), - }, - [47] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [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(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(60), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(60), + [sym_labeled_statement] = STATE(60), + [sym_expression_statement] = STATE(60), + [sym_if_statement] = STATE(60), + [sym_switch_statement] = STATE(60), + [sym_case_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_do_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_return_statement] = STATE(60), + [sym_break_statement] = STATE(60), + [sym_continue_statement] = STATE(60), + [sym_goto_statement] = STATE(60), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(60), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(60), + [sym_template_instantiation] = STATE(60), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(60), + [sym_operator_cast_declaration] = STATE(60), + [sym_constructor_or_destructor_definition] = STATE(60), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(60), + [sym_namespace_alias_definition] = STATE(60), + [sym_using_declaration] = STATE(60), + [sym_alias_declaration] = STATE(60), + [sym_static_assert_declaration] = STATE(60), + [sym_concept_definition] = STATE(60), + [sym_for_range_loop] = STATE(60), + [sym_co_return_statement] = STATE(60), + [sym_co_yield_statement] = STATE(60), + [sym_throw_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(60), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -58199,10 +54593,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -58215,7 +54609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(780), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -58223,7 +54617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -58245,17 +54639,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -58292,17 +54686,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -58313,137 +54707,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [48] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [47] = { + [sym_preproc_include] = STATE(70), + [sym_preproc_def] = STATE(70), + [sym_preproc_function_def] = STATE(70), + [sym_preproc_call] = STATE(70), + [sym_preproc_if] = STATE(70), + [sym_preproc_ifdef] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_declaration] = STATE(70), + [sym_type_definition] = STATE(70), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(70), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(70), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(70), + [sym_labeled_statement] = STATE(70), + [sym_expression_statement] = STATE(70), + [sym_if_statement] = STATE(70), + [sym_switch_statement] = STATE(70), + [sym_case_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_do_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_return_statement] = STATE(70), + [sym_break_statement] = STATE(70), + [sym_continue_statement] = STATE(70), + [sym_goto_statement] = STATE(70), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(70), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(70), + [sym_template_instantiation] = STATE(70), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(70), + [sym_operator_cast_declaration] = STATE(70), + [sym_constructor_or_destructor_definition] = STATE(70), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(70), + [sym_namespace_alias_definition] = STATE(70), + [sym_using_declaration] = STATE(70), + [sym_alias_declaration] = STATE(70), + [sym_static_assert_declaration] = STATE(70), + [sym_concept_definition] = STATE(70), + [sym_for_range_loop] = STATE(70), + [sym_co_return_statement] = STATE(70), + [sym_co_yield_statement] = STATE(70), + [sym_throw_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(70), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -58452,10 +54846,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -58468,7 +54862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(880), + [anon_sym_RBRACE] = ACTIONS(782), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -58476,7 +54870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -58498,17 +54892,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -58545,17 +54939,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -58566,137 +54960,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [49] = { - [sym_preproc_include] = STATE(52), - [sym_preproc_def] = STATE(52), - [sym_preproc_function_def] = STATE(52), - [sym_preproc_call] = STATE(52), - [sym_preproc_if] = STATE(52), - [sym_preproc_ifdef] = STATE(52), - [sym_function_definition] = STATE(52), - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(52), - [sym_labeled_statement] = STATE(52), - [sym_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_case_statement] = STATE(52), - [sym_while_statement] = STATE(52), - [sym_do_statement] = STATE(52), - [sym_for_statement] = STATE(52), - [sym_return_statement] = STATE(52), - [sym_break_statement] = STATE(52), - [sym_continue_statement] = STATE(52), - [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(52), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(52), - [sym_template_instantiation] = STATE(52), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(52), - [sym_operator_cast_declaration] = STATE(52), - [sym_constructor_or_destructor_definition] = STATE(52), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(52), - [sym_namespace_alias_definition] = STATE(52), - [sym_using_declaration] = STATE(52), - [sym_alias_declaration] = STATE(52), - [sym_static_assert_declaration] = STATE(52), - [sym_concept_definition] = STATE(52), - [sym_for_range_loop] = STATE(52), - [sym_co_return_statement] = STATE(52), - [sym_co_yield_statement] = STATE(52), - [sym_throw_statement] = STATE(52), - [sym_try_statement] = STATE(52), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [48] = { + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -58705,10 +55099,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -58721,7 +55115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(882), + [anon_sym_RBRACE] = ACTIONS(784), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -58729,7 +55123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -58751,17 +55145,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -58798,17 +55192,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -58819,137 +55213,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [50] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(73), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(73), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(73), - [sym_labeled_statement] = STATE(73), - [sym_expression_statement] = STATE(73), - [sym_if_statement] = STATE(73), - [sym_switch_statement] = STATE(73), - [sym_case_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_do_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_return_statement] = STATE(73), - [sym_break_statement] = STATE(73), - [sym_continue_statement] = STATE(73), - [sym_goto_statement] = STATE(73), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(73), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(73), - [sym_template_instantiation] = STATE(73), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(73), - [sym_operator_cast_declaration] = STATE(73), - [sym_constructor_or_destructor_definition] = STATE(73), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [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(73), - [sym_co_return_statement] = STATE(73), - [sym_co_yield_statement] = STATE(73), - [sym_throw_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(73), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [49] = { + [sym_preproc_include] = STATE(93), + [sym_preproc_def] = STATE(93), + [sym_preproc_function_def] = STATE(93), + [sym_preproc_call] = STATE(93), + [sym_preproc_if] = STATE(93), + [sym_preproc_ifdef] = STATE(93), + [sym_function_definition] = STATE(93), + [sym_declaration] = STATE(93), + [sym_type_definition] = STATE(93), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(93), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(93), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(93), + [sym_labeled_statement] = STATE(93), + [sym_expression_statement] = STATE(93), + [sym_if_statement] = STATE(93), + [sym_switch_statement] = STATE(93), + [sym_case_statement] = STATE(93), + [sym_while_statement] = STATE(93), + [sym_do_statement] = STATE(93), + [sym_for_statement] = STATE(93), + [sym_return_statement] = STATE(93), + [sym_break_statement] = STATE(93), + [sym_continue_statement] = STATE(93), + [sym_goto_statement] = STATE(93), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(93), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(93), + [sym_template_instantiation] = STATE(93), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(93), + [sym_operator_cast_declaration] = STATE(93), + [sym_constructor_or_destructor_definition] = STATE(93), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(93), + [sym_namespace_alias_definition] = STATE(93), + [sym_using_declaration] = STATE(93), + [sym_alias_declaration] = STATE(93), + [sym_static_assert_declaration] = STATE(93), + [sym_concept_definition] = STATE(93), + [sym_for_range_loop] = STATE(93), + [sym_co_return_statement] = STATE(93), + [sym_co_yield_statement] = STATE(93), + [sym_throw_statement] = STATE(93), + [sym_try_statement] = STATE(93), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(93), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -58958,10 +55352,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -58974,7 +55368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(884), + [anon_sym_RBRACE] = ACTIONS(786), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -58982,7 +55376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -59004,17 +55398,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -59051,17 +55445,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -59072,137 +55466,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [51] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(42), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(42), - [sym_labeled_statement] = STATE(42), - [sym_expression_statement] = STATE(42), - [sym_if_statement] = STATE(42), - [sym_switch_statement] = STATE(42), - [sym_case_statement] = STATE(42), - [sym_while_statement] = STATE(42), - [sym_do_statement] = STATE(42), - [sym_for_statement] = STATE(42), - [sym_return_statement] = STATE(42), - [sym_break_statement] = STATE(42), - [sym_continue_statement] = STATE(42), - [sym_goto_statement] = STATE(42), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(42), - [sym_co_return_statement] = STATE(42), - [sym_co_yield_statement] = STATE(42), - [sym_throw_statement] = STATE(42), - [sym_try_statement] = STATE(42), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [50] = { + [sym_preproc_include] = STATE(68), + [sym_preproc_def] = STATE(68), + [sym_preproc_function_def] = STATE(68), + [sym_preproc_call] = STATE(68), + [sym_preproc_if] = STATE(68), + [sym_preproc_ifdef] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_declaration] = STATE(68), + [sym_type_definition] = STATE(68), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(68), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(68), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(68), + [sym_labeled_statement] = STATE(68), + [sym_expression_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_case_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_return_statement] = STATE(68), + [sym_break_statement] = STATE(68), + [sym_continue_statement] = STATE(68), + [sym_goto_statement] = STATE(68), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(68), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(68), + [sym_template_instantiation] = STATE(68), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(68), + [sym_operator_cast_declaration] = STATE(68), + [sym_constructor_or_destructor_definition] = STATE(68), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(68), + [sym_namespace_alias_definition] = STATE(68), + [sym_using_declaration] = STATE(68), + [sym_alias_declaration] = STATE(68), + [sym_static_assert_declaration] = STATE(68), + [sym_concept_definition] = STATE(68), + [sym_for_range_loop] = STATE(68), + [sym_co_return_statement] = STATE(68), + [sym_co_yield_statement] = STATE(68), + [sym_throw_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(68), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -59211,10 +55605,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -59227,7 +55621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(886), + [anon_sym_RBRACE] = ACTIONS(788), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -59235,7 +55629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -59257,17 +55651,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -59304,17 +55698,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -59325,137 +55719,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [52] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [51] = { + [sym_preproc_include] = STATE(90), + [sym_preproc_def] = STATE(90), + [sym_preproc_function_def] = STATE(90), + [sym_preproc_call] = STATE(90), + [sym_preproc_if] = STATE(90), + [sym_preproc_ifdef] = STATE(90), + [sym_function_definition] = STATE(90), + [sym_declaration] = STATE(90), + [sym_type_definition] = STATE(90), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(90), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(90), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(90), + [sym_labeled_statement] = STATE(90), + [sym_expression_statement] = STATE(90), + [sym_if_statement] = STATE(90), + [sym_switch_statement] = STATE(90), + [sym_case_statement] = STATE(90), + [sym_while_statement] = STATE(90), + [sym_do_statement] = STATE(90), + [sym_for_statement] = STATE(90), + [sym_return_statement] = STATE(90), + [sym_break_statement] = STATE(90), + [sym_continue_statement] = STATE(90), + [sym_goto_statement] = STATE(90), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(90), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(90), + [sym_template_instantiation] = STATE(90), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(90), + [sym_operator_cast_declaration] = STATE(90), + [sym_constructor_or_destructor_definition] = STATE(90), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(90), + [sym_namespace_alias_definition] = STATE(90), + [sym_using_declaration] = STATE(90), + [sym_alias_declaration] = STATE(90), + [sym_static_assert_declaration] = STATE(90), + [sym_concept_definition] = STATE(90), + [sym_for_range_loop] = STATE(90), + [sym_co_return_statement] = STATE(90), + [sym_co_yield_statement] = STATE(90), + [sym_throw_statement] = STATE(90), + [sym_try_statement] = STATE(90), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(90), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -59464,10 +55858,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -59480,7 +55874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_RBRACE] = ACTIONS(790), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -59488,7 +55882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -59510,17 +55904,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -59557,17 +55951,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -59578,137 +55972,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [53] = { - [sym_preproc_include] = STATE(54), - [sym_preproc_def] = STATE(54), - [sym_preproc_function_def] = STATE(54), - [sym_preproc_call] = STATE(54), - [sym_preproc_if] = STATE(54), - [sym_preproc_ifdef] = STATE(54), - [sym_function_definition] = STATE(54), - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(54), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(54), - [sym_labeled_statement] = STATE(54), - [sym_expression_statement] = STATE(54), - [sym_if_statement] = STATE(54), - [sym_switch_statement] = STATE(54), - [sym_case_statement] = STATE(54), - [sym_while_statement] = STATE(54), - [sym_do_statement] = STATE(54), - [sym_for_statement] = STATE(54), - [sym_return_statement] = STATE(54), - [sym_break_statement] = STATE(54), - [sym_continue_statement] = STATE(54), - [sym_goto_statement] = STATE(54), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(54), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(54), - [sym_template_instantiation] = STATE(54), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(54), - [sym_operator_cast_declaration] = STATE(54), - [sym_constructor_or_destructor_definition] = STATE(54), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(54), - [sym_namespace_alias_definition] = STATE(54), - [sym_using_declaration] = STATE(54), - [sym_alias_declaration] = STATE(54), - [sym_static_assert_declaration] = STATE(54), - [sym_concept_definition] = STATE(54), - [sym_for_range_loop] = STATE(54), - [sym_co_return_statement] = STATE(54), - [sym_co_yield_statement] = STATE(54), - [sym_throw_statement] = STATE(54), - [sym_try_statement] = STATE(54), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(54), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [52] = { + [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(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(63), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(63), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_case_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(63), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(63), + [sym_template_instantiation] = STATE(63), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(63), + [sym_operator_cast_declaration] = STATE(63), + [sym_constructor_or_destructor_definition] = STATE(63), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(63), + [sym_namespace_alias_definition] = STATE(63), + [sym_using_declaration] = STATE(63), + [sym_alias_declaration] = STATE(63), + [sym_static_assert_declaration] = STATE(63), + [sym_concept_definition] = STATE(63), + [sym_for_range_loop] = STATE(63), + [sym_co_return_statement] = STATE(63), + [sym_co_yield_statement] = STATE(63), + [sym_throw_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(63), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -59717,10 +56111,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -59733,7 +56127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(890), + [anon_sym_RBRACE] = ACTIONS(792), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -59741,7 +56135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -59763,17 +56157,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -59810,17 +56204,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -59831,137 +56225,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [54] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [53] = { + [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(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(56), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(56), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_case_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(56), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(56), + [sym_template_instantiation] = STATE(56), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(56), + [sym_operator_cast_declaration] = STATE(56), + [sym_constructor_or_destructor_definition] = STATE(56), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(56), + [sym_namespace_alias_definition] = STATE(56), + [sym_using_declaration] = STATE(56), + [sym_alias_declaration] = STATE(56), + [sym_static_assert_declaration] = STATE(56), + [sym_concept_definition] = STATE(56), + [sym_for_range_loop] = STATE(56), + [sym_co_return_statement] = STATE(56), + [sym_co_yield_statement] = STATE(56), + [sym_throw_statement] = STATE(56), + [sym_try_statement] = STATE(56), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(56), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -59970,10 +56364,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -59986,7 +56380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(794), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -59994,7 +56388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -60016,17 +56410,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -60063,17 +56457,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -60084,137 +56478,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [55] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [54] = { + [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(3353), + [sym__declaration_specifiers] = STATE(4550), + [sym_linkage_specification] = STATE(57), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1928), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5811), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3360), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(57), + [sym_labeled_statement] = STATE(57), + [sym_expression_statement] = STATE(57), + [sym_if_statement] = STATE(57), + [sym_switch_statement] = STATE(57), + [sym_case_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_do_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_return_statement] = STATE(57), + [sym_break_statement] = STATE(57), + [sym_continue_statement] = STATE(57), + [sym_goto_statement] = STATE(57), + [sym__expression] = STATE(4063), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7688), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(57), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1779), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(57), + [sym_template_instantiation] = STATE(57), + [sym_operator_cast] = STATE(6117), + [sym__constructor_specifiers] = STATE(1779), + [sym_operator_cast_definition] = STATE(57), + [sym_operator_cast_declaration] = STATE(57), + [sym_constructor_or_destructor_definition] = STATE(57), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(57), + [sym_namespace_alias_definition] = STATE(57), + [sym_using_declaration] = STATE(57), + [sym_alias_declaration] = STATE(57), + [sym_static_assert_declaration] = STATE(57), + [sym_concept_definition] = STATE(57), + [sym_for_range_loop] = STATE(57), + [sym_co_return_statement] = STATE(57), + [sym_co_yield_statement] = STATE(57), + [sym_throw_statement] = STATE(57), + [sym_try_statement] = STATE(57), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6117), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(57), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1779), + [sym_identifier] = ACTIONS(796), + [aux_sym_preproc_include_token1] = ACTIONS(798), + [aux_sym_preproc_def_token1] = ACTIONS(800), + [aux_sym_preproc_if_token1] = ACTIONS(802), + [aux_sym_preproc_if_token2] = ACTIONS(804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(806), + [aux_sym_preproc_ifdef_token2] = ACTIONS(806), + [sym_preproc_directive] = ACTIONS(808), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -60223,10 +56618,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym___extension__] = ACTIONS(812), + [anon_sym_typedef] = ACTIONS(814), + [anon_sym_extern] = ACTIONS(816), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -60238,8 +56633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(818), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -60247,7 +56641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(820), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -60269,17 +56663,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(822), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_case] = ACTIONS(826), + [anon_sym_default] = ACTIONS(828), + [anon_sym_while] = ACTIONS(830), + [anon_sym_do] = ACTIONS(832), + [anon_sym_for] = ACTIONS(834), + [anon_sym_return] = ACTIONS(836), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(842), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -60316,17 +56710,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(844), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(846), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_namespace] = ACTIONS(850), + [anon_sym_using] = ACTIONS(852), + [anon_sym_static_assert] = ACTIONS(854), + [anon_sym_concept] = ACTIONS(856), + [anon_sym_co_return] = ACTIONS(858), + [anon_sym_co_yield] = ACTIONS(860), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -60337,137 +56731,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [56] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(57), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(57), - [sym_labeled_statement] = STATE(57), - [sym_expression_statement] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_switch_statement] = STATE(57), - [sym_case_statement] = STATE(57), - [sym_while_statement] = STATE(57), - [sym_do_statement] = STATE(57), - [sym_for_statement] = STATE(57), - [sym_return_statement] = STATE(57), - [sym_break_statement] = STATE(57), - [sym_continue_statement] = STATE(57), - [sym_goto_statement] = STATE(57), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(57), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(57), - [sym_template_instantiation] = STATE(57), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(57), - [sym_operator_cast_declaration] = STATE(57), - [sym_constructor_or_destructor_definition] = STATE(57), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(57), - [sym_namespace_alias_definition] = STATE(57), - [sym_using_declaration] = STATE(57), - [sym_alias_declaration] = STATE(57), - [sym_static_assert_declaration] = STATE(57), - [sym_concept_definition] = STATE(57), - [sym_for_range_loop] = STATE(57), - [sym_co_return_statement] = STATE(57), - [sym_co_yield_statement] = STATE(57), - [sym_throw_statement] = STATE(57), - [sym_try_statement] = STATE(57), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(57), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [55] = { + [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(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_case_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(45), + [sym_co_return_statement] = STATE(45), + [sym_co_yield_statement] = STATE(45), + [sym_throw_statement] = STATE(45), + [sym_try_statement] = STATE(45), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -60476,10 +56870,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -60492,7 +56886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(896), + [anon_sym_RBRACE] = ACTIONS(862), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -60500,7 +56894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -60522,17 +56916,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -60569,17 +56963,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -60590,137 +56984,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [57] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [56] = { + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -60729,10 +57123,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -60745,7 +57139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(864), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -60753,7 +57147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -60775,17 +57169,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -60822,17 +57216,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -60843,137 +57237,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, + [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(3353), + [sym__declaration_specifiers] = STATE(4550), + [sym_linkage_specification] = STATE(57), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1928), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5811), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3360), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(57), + [sym_labeled_statement] = STATE(57), + [sym_expression_statement] = STATE(57), + [sym_if_statement] = STATE(57), + [sym_switch_statement] = STATE(57), + [sym_case_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_do_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_return_statement] = STATE(57), + [sym_break_statement] = STATE(57), + [sym_continue_statement] = STATE(57), + [sym_goto_statement] = STATE(57), + [sym__expression] = STATE(4063), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7688), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(57), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1779), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(57), + [sym_template_instantiation] = STATE(57), + [sym_operator_cast] = STATE(6117), + [sym__constructor_specifiers] = STATE(1779), + [sym_operator_cast_definition] = STATE(57), + [sym_operator_cast_declaration] = STATE(57), + [sym_constructor_or_destructor_definition] = STATE(57), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(57), + [sym_namespace_alias_definition] = STATE(57), + [sym_using_declaration] = STATE(57), + [sym_alias_declaration] = STATE(57), + [sym_static_assert_declaration] = STATE(57), + [sym_concept_definition] = STATE(57), + [sym_for_range_loop] = STATE(57), + [sym_co_return_statement] = STATE(57), + [sym_co_yield_statement] = STATE(57), + [sym_throw_statement] = STATE(57), + [sym_try_statement] = STATE(57), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6117), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(57), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1779), + [sym_identifier] = ACTIONS(866), + [aux_sym_preproc_include_token1] = ACTIONS(869), + [aux_sym_preproc_def_token1] = ACTIONS(872), + [aux_sym_preproc_if_token1] = ACTIONS(875), + [aux_sym_preproc_if_token2] = ACTIONS(447), + [aux_sym_preproc_ifdef_token1] = ACTIONS(878), + [aux_sym_preproc_ifdef_token2] = ACTIONS(878), + [sym_preproc_directive] = ACTIONS(881), + [anon_sym_LPAREN2] = ACTIONS(455), + [anon_sym_BANG] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(467), + [anon_sym_AMP_AMP] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym___extension__] = ACTIONS(887), + [anon_sym_typedef] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(893), + [anon_sym___attribute__] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(494), + [anon_sym___declspec] = ACTIONS(497), + [anon_sym___based] = ACTIONS(500), + [anon_sym___cdecl] = ACTIONS(503), + [anon_sym___clrcall] = ACTIONS(503), + [anon_sym___stdcall] = ACTIONS(503), + [anon_sym___fastcall] = ACTIONS(503), + [anon_sym___thiscall] = ACTIONS(503), + [anon_sym___vectorcall] = ACTIONS(503), + [anon_sym_LBRACE] = ACTIONS(896), + [anon_sym_signed] = ACTIONS(509), + [anon_sym_unsigned] = ACTIONS(509), + [anon_sym_long] = ACTIONS(509), + [anon_sym_short] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_static] = ACTIONS(515), + [anon_sym_register] = ACTIONS(515), + [anon_sym_inline] = ACTIONS(899), + [anon_sym___inline] = ACTIONS(515), + [anon_sym___inline__] = ACTIONS(515), + [anon_sym___forceinline] = ACTIONS(515), + [anon_sym_thread_local] = ACTIONS(515), + [anon_sym___thread] = ACTIONS(515), + [anon_sym_const] = ACTIONS(521), + [anon_sym_constexpr] = ACTIONS(521), + [anon_sym_volatile] = ACTIONS(521), + [anon_sym_restrict] = ACTIONS(521), + [anon_sym___restrict__] = ACTIONS(521), + [anon_sym__Atomic] = ACTIONS(521), + [anon_sym__Noreturn] = ACTIONS(521), + [anon_sym_noreturn] = ACTIONS(521), + [anon_sym_mutable] = ACTIONS(521), + [anon_sym_constinit] = ACTIONS(521), + [anon_sym_consteval] = ACTIONS(521), + [sym_primitive_type] = ACTIONS(524), + [anon_sym_enum] = ACTIONS(527), + [anon_sym_class] = ACTIONS(530), + [anon_sym_struct] = ACTIONS(533), + [anon_sym_union] = ACTIONS(536), + [anon_sym_if] = ACTIONS(902), + [anon_sym_switch] = ACTIONS(905), + [anon_sym_case] = ACTIONS(908), + [anon_sym_default] = ACTIONS(911), + [anon_sym_while] = ACTIONS(914), + [anon_sym_do] = ACTIONS(917), + [anon_sym_for] = ACTIONS(920), + [anon_sym_return] = ACTIONS(923), + [anon_sym_break] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_goto] = ACTIONS(932), + [anon_sym_not] = ACTIONS(464), + [anon_sym_compl] = ACTIONS(464), + [anon_sym_DASH_DASH] = ACTIONS(572), + [anon_sym_PLUS_PLUS] = ACTIONS(572), + [anon_sym_sizeof] = ACTIONS(575), + [anon_sym___alignof__] = ACTIONS(578), + [anon_sym___alignof] = ACTIONS(578), + [anon_sym__alignof] = ACTIONS(578), + [anon_sym_alignof] = ACTIONS(578), + [anon_sym__Alignof] = ACTIONS(578), + [anon_sym_offsetof] = ACTIONS(581), + [anon_sym__Generic] = ACTIONS(584), + [anon_sym_asm] = ACTIONS(587), + [anon_sym___asm__] = ACTIONS(587), + [sym_number_literal] = ACTIONS(590), + [anon_sym_L_SQUOTE] = ACTIONS(593), + [anon_sym_u_SQUOTE] = ACTIONS(593), + [anon_sym_U_SQUOTE] = ACTIONS(593), + [anon_sym_u8_SQUOTE] = ACTIONS(593), + [anon_sym_SQUOTE] = ACTIONS(593), + [anon_sym_L_DQUOTE] = ACTIONS(596), + [anon_sym_u_DQUOTE] = ACTIONS(596), + [anon_sym_U_DQUOTE] = ACTIONS(596), + [anon_sym_u8_DQUOTE] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_true] = ACTIONS(599), + [sym_false] = ACTIONS(599), + [anon_sym_NULL] = ACTIONS(602), + [anon_sym_nullptr] = ACTIONS(602), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(605), + [anon_sym_decltype] = ACTIONS(608), + [anon_sym_virtual] = ACTIONS(611), + [anon_sym_alignas] = ACTIONS(614), + [anon_sym_explicit] = ACTIONS(617), + [anon_sym_typename] = ACTIONS(620), + [anon_sym_template] = ACTIONS(935), + [anon_sym_operator] = ACTIONS(626), + [anon_sym_try] = ACTIONS(938), + [anon_sym_delete] = ACTIONS(632), + [anon_sym_throw] = ACTIONS(941), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_using] = ACTIONS(947), + [anon_sym_static_assert] = ACTIONS(950), + [anon_sym_concept] = ACTIONS(953), + [anon_sym_co_return] = ACTIONS(956), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(656), + [anon_sym_LR_DQUOTE] = ACTIONS(656), + [anon_sym_uR_DQUOTE] = ACTIONS(656), + [anon_sym_UR_DQUOTE] = ACTIONS(656), + [anon_sym_u8R_DQUOTE] = ACTIONS(656), + [anon_sym_co_await] = ACTIONS(659), + [anon_sym_new] = ACTIONS(662), + [anon_sym_requires] = ACTIONS(665), + [sym_this] = ACTIONS(599), + }, [58] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(59), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_case_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(59), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(59), - [sym_template_instantiation] = STATE(59), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(59), - [sym_operator_cast_declaration] = STATE(59), - [sym_constructor_or_destructor_definition] = STATE(59), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(59), - [sym_namespace_alias_definition] = STATE(59), - [sym_using_declaration] = STATE(59), - [sym_alias_declaration] = STATE(59), - [sym_static_assert_declaration] = STATE(59), - [sym_concept_definition] = STATE(59), - [sym_for_range_loop] = STATE(59), - [sym_co_return_statement] = STATE(59), - [sym_co_yield_statement] = STATE(59), - [sym_throw_statement] = STATE(59), - [sym_try_statement] = STATE(59), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(59), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -60982,10 +57629,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -60998,7 +57645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(900), + [anon_sym_RBRACE] = ACTIONS(962), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -61006,7 +57653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -61028,17 +57675,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -61075,17 +57722,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -61097,136 +57744,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [59] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -61235,10 +57882,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -61251,7 +57898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_RBRACE] = ACTIONS(964), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -61259,7 +57906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -61281,17 +57928,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -61328,17 +57975,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -61350,136 +57997,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [60] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -61488,10 +58135,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -61504,7 +58151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_RBRACE] = ACTIONS(966), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -61512,7 +58159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -61534,17 +58181,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -61581,17 +58228,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -61603,136 +58250,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [61] = { - [sym_preproc_include] = STATE(93), - [sym_preproc_def] = STATE(93), - [sym_preproc_function_def] = STATE(93), - [sym_preproc_call] = STATE(93), - [sym_preproc_if] = STATE(93), - [sym_preproc_ifdef] = STATE(93), - [sym_function_definition] = STATE(93), - [sym_declaration] = STATE(93), - [sym_type_definition] = STATE(93), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(93), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(93), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(93), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(93), - [sym_template_instantiation] = STATE(93), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(93), - [sym_operator_cast_declaration] = STATE(93), - [sym_constructor_or_destructor_definition] = STATE(93), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(93), - [sym_namespace_alias_definition] = STATE(93), - [sym_using_declaration] = STATE(93), - [sym_alias_declaration] = STATE(93), - [sym_static_assert_declaration] = STATE(93), - [sym_concept_definition] = STATE(93), - [sym_for_range_loop] = STATE(93), - [sym_co_return_statement] = STATE(93), - [sym_co_yield_statement] = STATE(93), - [sym_throw_statement] = STATE(93), - [sym_try_statement] = STATE(93), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(93), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [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(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(62), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(62), + [sym_labeled_statement] = STATE(62), + [sym_expression_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_switch_statement] = STATE(62), + [sym_case_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_do_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_return_statement] = STATE(62), + [sym_break_statement] = STATE(62), + [sym_continue_statement] = STATE(62), + [sym_goto_statement] = STATE(62), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(62), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(62), + [sym_template_instantiation] = STATE(62), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(62), + [sym_operator_cast_declaration] = STATE(62), + [sym_constructor_or_destructor_definition] = STATE(62), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(62), + [sym_namespace_alias_definition] = STATE(62), + [sym_using_declaration] = STATE(62), + [sym_alias_declaration] = STATE(62), + [sym_static_assert_declaration] = STATE(62), + [sym_concept_definition] = STATE(62), + [sym_for_range_loop] = STATE(62), + [sym_co_return_statement] = STATE(62), + [sym_co_yield_statement] = STATE(62), + [sym_throw_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(62), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -61741,10 +58388,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -61757,7 +58404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(906), + [anon_sym_RBRACE] = ACTIONS(968), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -61765,7 +58412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -61787,17 +58434,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -61834,17 +58481,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -61856,136 +58503,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [62] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -61994,10 +58641,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -62010,7 +58657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(970), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -62018,7 +58665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -62040,17 +58687,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -62087,17 +58734,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -62109,136 +58756,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [63] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_case_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(48), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(48), - [sym_template_instantiation] = STATE(48), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(48), - [sym_operator_cast_declaration] = STATE(48), - [sym_constructor_or_destructor_definition] = STATE(48), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(48), - [sym_namespace_alias_definition] = STATE(48), - [sym_using_declaration] = STATE(48), - [sym_alias_declaration] = STATE(48), - [sym_static_assert_declaration] = STATE(48), - [sym_concept_definition] = STATE(48), - [sym_for_range_loop] = STATE(48), - [sym_co_return_statement] = STATE(48), - [sym_co_yield_statement] = STATE(48), - [sym_throw_statement] = STATE(48), - [sym_try_statement] = STATE(48), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -62247,10 +58894,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -62263,7 +58910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(972), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -62271,7 +58918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -62293,17 +58940,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -62340,17 +58987,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -62362,136 +59009,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [64] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [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(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(65), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(65), + [sym_labeled_statement] = STATE(65), + [sym_expression_statement] = STATE(65), + [sym_if_statement] = STATE(65), + [sym_switch_statement] = STATE(65), + [sym_case_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_do_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_return_statement] = STATE(65), + [sym_break_statement] = STATE(65), + [sym_continue_statement] = STATE(65), + [sym_goto_statement] = STATE(65), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(65), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(65), + [sym_template_instantiation] = STATE(65), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(65), + [sym_operator_cast_declaration] = STATE(65), + [sym_constructor_or_destructor_definition] = STATE(65), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(65), + [sym_namespace_alias_definition] = STATE(65), + [sym_using_declaration] = STATE(65), + [sym_alias_declaration] = STATE(65), + [sym_static_assert_declaration] = STATE(65), + [sym_concept_definition] = STATE(65), + [sym_for_range_loop] = STATE(65), + [sym_co_return_statement] = STATE(65), + [sym_co_yield_statement] = STATE(65), + [sym_throw_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(65), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -62500,10 +59147,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -62516,7 +59163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(912), + [anon_sym_RBRACE] = ACTIONS(974), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -62524,7 +59171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -62546,17 +59193,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -62593,17 +59240,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -62615,136 +59262,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [65] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(60), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(60), - [sym_labeled_statement] = STATE(60), - [sym_expression_statement] = STATE(60), - [sym_if_statement] = STATE(60), - [sym_switch_statement] = STATE(60), - [sym_case_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_do_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_return_statement] = STATE(60), - [sym_break_statement] = STATE(60), - [sym_continue_statement] = STATE(60), - [sym_goto_statement] = STATE(60), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(60), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(60), - [sym_template_instantiation] = STATE(60), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(60), - [sym_operator_cast_declaration] = STATE(60), - [sym_constructor_or_destructor_definition] = STATE(60), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(60), - [sym_namespace_alias_definition] = STATE(60), - [sym_using_declaration] = STATE(60), - [sym_alias_declaration] = STATE(60), - [sym_static_assert_declaration] = STATE(60), - [sym_concept_definition] = STATE(60), - [sym_for_range_loop] = STATE(60), - [sym_co_return_statement] = STATE(60), - [sym_co_yield_statement] = STATE(60), - [sym_throw_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(60), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -62753,10 +59400,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -62769,7 +59416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(914), + [anon_sym_RBRACE] = ACTIONS(976), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -62777,7 +59424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -62799,17 +59446,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -62846,17 +59493,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -62868,136 +59515,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [66] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(44), - [sym_labeled_statement] = STATE(44), - [sym_expression_statement] = STATE(44), - [sym_if_statement] = STATE(44), - [sym_switch_statement] = STATE(44), - [sym_case_statement] = STATE(44), - [sym_while_statement] = STATE(44), - [sym_do_statement] = STATE(44), - [sym_for_statement] = STATE(44), - [sym_return_statement] = STATE(44), - [sym_break_statement] = STATE(44), - [sym_continue_statement] = STATE(44), - [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(44), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(44), - [sym_template_instantiation] = STATE(44), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(44), - [sym_operator_cast_declaration] = STATE(44), - [sym_constructor_or_destructor_definition] = STATE(44), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(44), - [sym_namespace_alias_definition] = STATE(44), - [sym_using_declaration] = STATE(44), - [sym_alias_declaration] = STATE(44), - [sym_static_assert_declaration] = STATE(44), - [sym_concept_definition] = STATE(44), - [sym_for_range_loop] = STATE(44), - [sym_co_return_statement] = STATE(44), - [sym_co_yield_statement] = STATE(44), - [sym_throw_statement] = STATE(44), - [sym_try_statement] = STATE(44), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [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(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(59), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(59), + [sym_labeled_statement] = STATE(59), + [sym_expression_statement] = STATE(59), + [sym_if_statement] = STATE(59), + [sym_switch_statement] = STATE(59), + [sym_case_statement] = STATE(59), + [sym_while_statement] = STATE(59), + [sym_do_statement] = STATE(59), + [sym_for_statement] = STATE(59), + [sym_return_statement] = STATE(59), + [sym_break_statement] = STATE(59), + [sym_continue_statement] = STATE(59), + [sym_goto_statement] = STATE(59), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(59), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(59), + [sym_template_instantiation] = STATE(59), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(59), + [sym_operator_cast_declaration] = STATE(59), + [sym_constructor_or_destructor_definition] = STATE(59), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(59), + [sym_namespace_alias_definition] = STATE(59), + [sym_using_declaration] = STATE(59), + [sym_alias_declaration] = STATE(59), + [sym_static_assert_declaration] = STATE(59), + [sym_concept_definition] = STATE(59), + [sym_for_range_loop] = STATE(59), + [sym_co_return_statement] = STATE(59), + [sym_co_yield_statement] = STATE(59), + [sym_throw_statement] = STATE(59), + [sym_try_statement] = STATE(59), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(59), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -63006,10 +59653,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -63022,7 +59669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(916), + [anon_sym_RBRACE] = ACTIONS(978), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -63030,7 +59677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -63052,17 +59699,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -63099,17 +59746,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -63121,389 +59768,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [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(4276), - [sym__declaration_specifiers] = STATE(5755), - [sym_linkage_specification] = STATE(67), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2586), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7089), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4279), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(67), - [sym_labeled_statement] = STATE(67), - [sym_expression_statement] = STATE(67), - [sym_if_statement] = STATE(67), - [sym_switch_statement] = STATE(67), - [sym_case_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_do_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_return_statement] = STATE(67), - [sym_break_statement] = STATE(67), - [sym_continue_statement] = STATE(67), - [sym_goto_statement] = STATE(67), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(67), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2400), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(67), - [sym_template_instantiation] = STATE(67), - [sym_operator_cast] = STATE(7515), - [sym__constructor_specifiers] = STATE(2400), - [sym_operator_cast_definition] = STATE(67), - [sym_operator_cast_declaration] = STATE(67), - [sym_constructor_or_destructor_definition] = STATE(67), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(67), - [sym_namespace_alias_definition] = STATE(67), - [sym_using_declaration] = STATE(67), - [sym_alias_declaration] = STATE(67), - [sym_static_assert_declaration] = STATE(67), - [sym_concept_definition] = STATE(67), - [sym_for_range_loop] = STATE(67), - [sym_co_return_statement] = STATE(67), - [sym_co_yield_statement] = STATE(67), - [sym_throw_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7515), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(67), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2400), - [sym_identifier] = ACTIONS(918), - [aux_sym_preproc_include_token1] = ACTIONS(921), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(927), - [aux_sym_preproc_if_token2] = ACTIONS(437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(930), - [aux_sym_preproc_ifdef_token2] = ACTIONS(930), - [sym_preproc_directive] = ACTIONS(933), - [anon_sym_LPAREN2] = ACTIONS(445), - [anon_sym_BANG] = ACTIONS(448), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_AMP_AMP] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(463), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym___extension__] = ACTIONS(939), - [anon_sym_typedef] = ACTIONS(942), - [anon_sym_extern] = ACTIONS(945), - [anon_sym___attribute__] = ACTIONS(478), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(484), - [anon_sym___declspec] = ACTIONS(487), - [anon_sym___based] = ACTIONS(490), - [anon_sym___cdecl] = ACTIONS(493), - [anon_sym___clrcall] = ACTIONS(493), - [anon_sym___stdcall] = ACTIONS(493), - [anon_sym___fastcall] = ACTIONS(493), - [anon_sym___thiscall] = ACTIONS(493), - [anon_sym___vectorcall] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(499), - [anon_sym_unsigned] = ACTIONS(499), - [anon_sym_long] = ACTIONS(499), - [anon_sym_short] = ACTIONS(499), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_static] = ACTIONS(505), - [anon_sym_register] = ACTIONS(505), - [anon_sym_inline] = ACTIONS(951), - [anon_sym___inline] = ACTIONS(505), - [anon_sym___inline__] = ACTIONS(505), - [anon_sym___forceinline] = ACTIONS(505), - [anon_sym_thread_local] = ACTIONS(505), - [anon_sym___thread] = ACTIONS(505), - [anon_sym_const] = ACTIONS(511), - [anon_sym_constexpr] = ACTIONS(511), - [anon_sym_volatile] = ACTIONS(511), - [anon_sym_restrict] = ACTIONS(511), - [anon_sym___restrict__] = ACTIONS(511), - [anon_sym__Atomic] = ACTIONS(511), - [anon_sym__Noreturn] = ACTIONS(511), - [anon_sym_noreturn] = ACTIONS(511), - [anon_sym_mutable] = ACTIONS(511), - [anon_sym_constinit] = ACTIONS(511), - [anon_sym_consteval] = ACTIONS(511), - [sym_primitive_type] = ACTIONS(514), - [anon_sym_enum] = ACTIONS(517), - [anon_sym_class] = ACTIONS(520), - [anon_sym_struct] = ACTIONS(523), - [anon_sym_union] = ACTIONS(526), - [anon_sym_if] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(957), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(963), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(969), - [anon_sym_for] = ACTIONS(972), - [anon_sym_return] = ACTIONS(975), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(981), - [anon_sym_goto] = ACTIONS(984), - [anon_sym_not] = ACTIONS(454), - [anon_sym_compl] = ACTIONS(454), - [anon_sym_DASH_DASH] = ACTIONS(562), - [anon_sym_PLUS_PLUS] = ACTIONS(562), - [anon_sym_sizeof] = ACTIONS(565), - [anon_sym___alignof__] = ACTIONS(568), - [anon_sym___alignof] = ACTIONS(568), - [anon_sym__alignof] = ACTIONS(568), - [anon_sym_alignof] = ACTIONS(568), - [anon_sym__Alignof] = ACTIONS(568), - [anon_sym_offsetof] = ACTIONS(571), - [anon_sym__Generic] = ACTIONS(574), - [anon_sym_asm] = ACTIONS(577), - [anon_sym___asm__] = ACTIONS(577), - [sym_number_literal] = ACTIONS(580), - [anon_sym_L_SQUOTE] = ACTIONS(583), - [anon_sym_u_SQUOTE] = ACTIONS(583), - [anon_sym_U_SQUOTE] = ACTIONS(583), - [anon_sym_u8_SQUOTE] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(583), - [anon_sym_L_DQUOTE] = ACTIONS(586), - [anon_sym_u_DQUOTE] = ACTIONS(586), - [anon_sym_U_DQUOTE] = ACTIONS(586), - [anon_sym_u8_DQUOTE] = ACTIONS(586), - [anon_sym_DQUOTE] = ACTIONS(586), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [anon_sym_NULL] = ACTIONS(592), - [anon_sym_nullptr] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(595), - [anon_sym_decltype] = ACTIONS(598), - [anon_sym_virtual] = ACTIONS(601), - [anon_sym_alignas] = ACTIONS(604), - [anon_sym_explicit] = ACTIONS(607), - [anon_sym_typename] = ACTIONS(610), - [anon_sym_template] = ACTIONS(987), - [anon_sym_operator] = ACTIONS(616), - [anon_sym_try] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(622), - [anon_sym_throw] = ACTIONS(993), - [anon_sym_namespace] = ACTIONS(996), - [anon_sym_using] = ACTIONS(999), - [anon_sym_static_assert] = ACTIONS(1002), - [anon_sym_concept] = ACTIONS(1005), - [anon_sym_co_return] = ACTIONS(1008), - [anon_sym_co_yield] = ACTIONS(1011), - [anon_sym_R_DQUOTE] = ACTIONS(646), - [anon_sym_LR_DQUOTE] = ACTIONS(646), - [anon_sym_uR_DQUOTE] = ACTIONS(646), - [anon_sym_UR_DQUOTE] = ACTIONS(646), - [anon_sym_u8R_DQUOTE] = ACTIONS(646), - [anon_sym_co_await] = ACTIONS(649), - [anon_sym_new] = ACTIONS(652), - [anon_sym_requires] = ACTIONS(655), - [sym_this] = ACTIONS(589), - }, - [68] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [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(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(42), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(42), + [sym_labeled_statement] = STATE(42), + [sym_expression_statement] = STATE(42), + [sym_if_statement] = STATE(42), + [sym_switch_statement] = STATE(42), + [sym_case_statement] = STATE(42), + [sym_while_statement] = STATE(42), + [sym_do_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym_return_statement] = STATE(42), + [sym_break_statement] = STATE(42), + [sym_continue_statement] = STATE(42), + [sym_goto_statement] = STATE(42), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(42), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(42), + [sym_template_instantiation] = STATE(42), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(42), + [sym_operator_cast_declaration] = STATE(42), + [sym_constructor_or_destructor_definition] = STATE(42), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(42), + [sym_namespace_alias_definition] = STATE(42), + [sym_using_declaration] = STATE(42), + [sym_alias_declaration] = STATE(42), + [sym_static_assert_declaration] = STATE(42), + [sym_concept_definition] = STATE(42), + [sym_for_range_loop] = STATE(42), + [sym_co_return_statement] = STATE(42), + [sym_co_yield_statement] = STATE(42), + [sym_throw_statement] = STATE(42), + [sym_try_statement] = STATE(42), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -63512,10 +59906,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -63528,7 +59922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(980), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -63536,7 +59930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -63558,17 +59952,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -63605,17 +59999,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -63626,137 +60020,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [69] = { - [sym_preproc_include] = STATE(68), - [sym_preproc_def] = STATE(68), - [sym_preproc_function_def] = STATE(68), - [sym_preproc_call] = STATE(68), - [sym_preproc_if] = STATE(68), - [sym_preproc_ifdef] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(68), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(68), - [sym_labeled_statement] = STATE(68), - [sym_expression_statement] = STATE(68), - [sym_if_statement] = STATE(68), - [sym_switch_statement] = STATE(68), - [sym_case_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_do_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_return_statement] = STATE(68), - [sym_break_statement] = STATE(68), - [sym_continue_statement] = STATE(68), - [sym_goto_statement] = STATE(68), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(68), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(68), - [sym_template_instantiation] = STATE(68), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(68), - [sym_operator_cast_declaration] = STATE(68), - [sym_constructor_or_destructor_definition] = STATE(68), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(68), - [sym_namespace_alias_definition] = STATE(68), - [sym_using_declaration] = STATE(68), - [sym_alias_declaration] = STATE(68), - [sym_static_assert_declaration] = STATE(68), - [sym_concept_definition] = STATE(68), - [sym_for_range_loop] = STATE(68), - [sym_co_return_statement] = STATE(68), - [sym_co_yield_statement] = STATE(68), - [sym_throw_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(68), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [68] = { + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -63765,10 +60159,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -63781,7 +60175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1016), + [anon_sym_RBRACE] = ACTIONS(982), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -63789,7 +60183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -63811,17 +60205,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -63858,17 +60252,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -63879,137 +60273,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, + [69] = { + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(987), + [aux_sym_preproc_def_token1] = ACTIONS(990), + [aux_sym_preproc_if_token1] = ACTIONS(993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(999), + [anon_sym_LPAREN2] = ACTIONS(455), + [anon_sym_BANG] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(467), + [anon_sym_AMP_AMP] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym___extension__] = ACTIONS(1005), + [anon_sym_typedef] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1011), + [anon_sym___attribute__] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(494), + [anon_sym___declspec] = ACTIONS(497), + [anon_sym___based] = ACTIONS(500), + [anon_sym___cdecl] = ACTIONS(503), + [anon_sym___clrcall] = ACTIONS(503), + [anon_sym___stdcall] = ACTIONS(503), + [anon_sym___fastcall] = ACTIONS(503), + [anon_sym___thiscall] = ACTIONS(503), + [anon_sym___vectorcall] = ACTIONS(503), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1017), + [anon_sym_signed] = ACTIONS(509), + [anon_sym_unsigned] = ACTIONS(509), + [anon_sym_long] = ACTIONS(509), + [anon_sym_short] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_static] = ACTIONS(515), + [anon_sym_register] = ACTIONS(515), + [anon_sym_inline] = ACTIONS(1019), + [anon_sym___inline] = ACTIONS(515), + [anon_sym___inline__] = ACTIONS(515), + [anon_sym___forceinline] = ACTIONS(515), + [anon_sym_thread_local] = ACTIONS(515), + [anon_sym___thread] = ACTIONS(515), + [anon_sym_const] = ACTIONS(521), + [anon_sym_constexpr] = ACTIONS(521), + [anon_sym_volatile] = ACTIONS(521), + [anon_sym_restrict] = ACTIONS(521), + [anon_sym___restrict__] = ACTIONS(521), + [anon_sym__Atomic] = ACTIONS(521), + [anon_sym__Noreturn] = ACTIONS(521), + [anon_sym_noreturn] = ACTIONS(521), + [anon_sym_mutable] = ACTIONS(521), + [anon_sym_constinit] = ACTIONS(521), + [anon_sym_consteval] = ACTIONS(521), + [sym_primitive_type] = ACTIONS(524), + [anon_sym_enum] = ACTIONS(527), + [anon_sym_class] = ACTIONS(530), + [anon_sym_struct] = ACTIONS(533), + [anon_sym_union] = ACTIONS(536), + [anon_sym_if] = ACTIONS(1022), + [anon_sym_switch] = ACTIONS(1025), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1043), + [anon_sym_break] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(1049), + [anon_sym_goto] = ACTIONS(1052), + [anon_sym_not] = ACTIONS(464), + [anon_sym_compl] = ACTIONS(464), + [anon_sym_DASH_DASH] = ACTIONS(572), + [anon_sym_PLUS_PLUS] = ACTIONS(572), + [anon_sym_sizeof] = ACTIONS(575), + [anon_sym___alignof__] = ACTIONS(578), + [anon_sym___alignof] = ACTIONS(578), + [anon_sym__alignof] = ACTIONS(578), + [anon_sym_alignof] = ACTIONS(578), + [anon_sym__Alignof] = ACTIONS(578), + [anon_sym_offsetof] = ACTIONS(581), + [anon_sym__Generic] = ACTIONS(584), + [anon_sym_asm] = ACTIONS(587), + [anon_sym___asm__] = ACTIONS(587), + [sym_number_literal] = ACTIONS(590), + [anon_sym_L_SQUOTE] = ACTIONS(593), + [anon_sym_u_SQUOTE] = ACTIONS(593), + [anon_sym_U_SQUOTE] = ACTIONS(593), + [anon_sym_u8_SQUOTE] = ACTIONS(593), + [anon_sym_SQUOTE] = ACTIONS(593), + [anon_sym_L_DQUOTE] = ACTIONS(596), + [anon_sym_u_DQUOTE] = ACTIONS(596), + [anon_sym_U_DQUOTE] = ACTIONS(596), + [anon_sym_u8_DQUOTE] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_true] = ACTIONS(599), + [sym_false] = ACTIONS(599), + [anon_sym_NULL] = ACTIONS(602), + [anon_sym_nullptr] = ACTIONS(602), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(605), + [anon_sym_decltype] = ACTIONS(608), + [anon_sym_virtual] = ACTIONS(611), + [anon_sym_alignas] = ACTIONS(614), + [anon_sym_explicit] = ACTIONS(617), + [anon_sym_typename] = ACTIONS(620), + [anon_sym_template] = ACTIONS(1055), + [anon_sym_operator] = ACTIONS(626), + [anon_sym_try] = ACTIONS(1058), + [anon_sym_delete] = ACTIONS(632), + [anon_sym_throw] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1064), + [anon_sym_using] = ACTIONS(1067), + [anon_sym_static_assert] = ACTIONS(1070), + [anon_sym_concept] = ACTIONS(1073), + [anon_sym_co_return] = ACTIONS(1076), + [anon_sym_co_yield] = ACTIONS(1079), + [anon_sym_R_DQUOTE] = ACTIONS(656), + [anon_sym_LR_DQUOTE] = ACTIONS(656), + [anon_sym_uR_DQUOTE] = ACTIONS(656), + [anon_sym_UR_DQUOTE] = ACTIONS(656), + [anon_sym_u8R_DQUOTE] = ACTIONS(656), + [anon_sym_co_await] = ACTIONS(659), + [anon_sym_new] = ACTIONS(662), + [anon_sym_requires] = ACTIONS(665), + [sym_this] = ACTIONS(599), + }, [70] = { - [sym_preproc_include] = STATE(87), - [sym_preproc_def] = STATE(87), - [sym_preproc_function_def] = STATE(87), - [sym_preproc_call] = STATE(87), - [sym_preproc_if] = STATE(87), - [sym_preproc_ifdef] = STATE(87), - [sym_function_definition] = STATE(87), - [sym_declaration] = STATE(87), - [sym_type_definition] = STATE(87), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(87), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(87), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [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_case_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__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(87), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(87), - [sym_template_instantiation] = STATE(87), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(87), - [sym_operator_cast_declaration] = STATE(87), - [sym_constructor_or_destructor_definition] = STATE(87), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(87), - [sym_namespace_alias_definition] = STATE(87), - [sym_using_declaration] = STATE(87), - [sym_alias_declaration] = STATE(87), - [sym_static_assert_declaration] = STATE(87), - [sym_concept_definition] = STATE(87), - [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(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(87), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -64018,10 +60665,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -64034,7 +60681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1082), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -64042,7 +60689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -64064,17 +60711,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -64111,17 +60758,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -64133,136 +60780,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [71] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [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(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -64271,10 +60918,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -64287,7 +60934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1084), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -64295,7 +60942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -64317,17 +60964,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -64364,17 +61011,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -64386,136 +61033,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [72] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -64524,10 +61171,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -64540,7 +61187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1086), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -64548,7 +61195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -64570,17 +61217,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -64617,17 +61264,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -64639,136 +61286,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [73] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [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(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(86), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(86), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(86), + [sym_labeled_statement] = STATE(86), + [sym_expression_statement] = STATE(86), + [sym_if_statement] = STATE(86), + [sym_switch_statement] = STATE(86), + [sym_case_statement] = STATE(86), + [sym_while_statement] = STATE(86), + [sym_do_statement] = STATE(86), + [sym_for_statement] = STATE(86), + [sym_return_statement] = STATE(86), + [sym_break_statement] = STATE(86), + [sym_continue_statement] = STATE(86), + [sym_goto_statement] = STATE(86), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(86), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(86), + [sym_template_instantiation] = STATE(86), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(86), + [sym_operator_cast_declaration] = STATE(86), + [sym_constructor_or_destructor_definition] = STATE(86), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(86), + [sym_namespace_alias_definition] = STATE(86), + [sym_using_declaration] = STATE(86), + [sym_alias_declaration] = STATE(86), + [sym_static_assert_declaration] = STATE(86), + [sym_concept_definition] = STATE(86), + [sym_for_range_loop] = STATE(86), + [sym_co_return_statement] = STATE(86), + [sym_co_yield_statement] = STATE(86), + [sym_throw_statement] = STATE(86), + [sym_try_statement] = STATE(86), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(86), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -64777,10 +61424,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -64793,7 +61440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1088), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -64801,7 +61448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -64823,17 +61470,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -64870,17 +61517,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -64892,136 +61539,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [74] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(55), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(55), - [sym_labeled_statement] = STATE(55), - [sym_expression_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_switch_statement] = STATE(55), - [sym_case_statement] = STATE(55), - [sym_while_statement] = STATE(55), - [sym_do_statement] = STATE(55), - [sym_for_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_break_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_goto_statement] = STATE(55), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(55), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(55), - [sym_template_instantiation] = STATE(55), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(55), - [sym_operator_cast_declaration] = STATE(55), - [sym_constructor_or_destructor_definition] = STATE(55), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [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(55), - [sym_co_return_statement] = STATE(55), - [sym_co_yield_statement] = STATE(55), - [sym_throw_statement] = STATE(55), - [sym_try_statement] = STATE(55), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(55), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -65030,10 +61677,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -65046,7 +61693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1090), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -65054,7 +61701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -65076,17 +61723,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -65123,17 +61770,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -65145,259 +61792,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [75] = { - [sym_preproc_include] = STATE(81), - [sym_preproc_def] = STATE(81), - [sym_preproc_function_def] = STATE(81), - [sym_preproc_call] = STATE(81), - [sym_preproc_if] = STATE(81), - [sym_preproc_ifdef] = STATE(81), - [sym_function_definition] = STATE(81), - [sym_declaration] = STATE(81), - [sym_type_definition] = STATE(81), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(81), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(81), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(81), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(81), - [sym_template_instantiation] = STATE(81), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(81), - [sym_operator_cast_declaration] = STATE(81), - [sym_constructor_or_destructor_definition] = STATE(81), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(81), - [sym_namespace_alias_definition] = STATE(81), - [sym_using_declaration] = STATE(81), - [sym_alias_declaration] = STATE(81), - [sym_static_assert_declaration] = STATE(81), - [sym_concept_definition] = STATE(81), - [sym_for_range_loop] = STATE(81), - [sym_co_return_statement] = STATE(81), - [sym_co_yield_statement] = STATE(81), - [sym_throw_statement] = STATE(81), - [sym_try_statement] = STATE(81), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(81), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [76] = { [sym_preproc_include] = STATE(72), [sym_preproc_def] = STATE(72), [sym_preproc_function_def] = STATE(72), @@ -65407,28 +61801,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(72), [sym_declaration] = STATE(72), [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(72), [sym_labeled_statement] = STATE(72), [sym_expression_statement] = STATE(72), @@ -65442,51 +61836,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(72), [sym_continue_statement] = STATE(72), [sym_goto_statement] = STATE(72), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), [sym__empty_declaration] = STATE(72), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), [sym_template_declaration] = STATE(72), [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), [sym_operator_cast_definition] = STATE(72), [sym_operator_cast_declaration] = STATE(72), [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -65498,36 +61892,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(72), [sym_throw_statement] = STATE(72), [sym_try_statement] = STATE(72), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), [aux_sym_preproc_if_repeat1] = STATE(72), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -65536,10 +61930,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -65552,7 +61946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1092), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -65560,7 +61954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -65582,17 +61976,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -65629,17 +62023,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -65650,138 +62044,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [77] = { - [sym_preproc_include] = STATE(88), - [sym_preproc_def] = STATE(88), - [sym_preproc_function_def] = STATE(88), - [sym_preproc_call] = STATE(88), - [sym_preproc_if] = STATE(88), - [sym_preproc_ifdef] = STATE(88), - [sym_function_definition] = STATE(88), - [sym_declaration] = STATE(88), - [sym_type_definition] = STATE(88), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5755), - [sym_linkage_specification] = STATE(88), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2586), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7089), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(88), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4279), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(88), - [sym_labeled_statement] = STATE(88), - [sym_expression_statement] = STATE(88), - [sym_if_statement] = STATE(88), - [sym_switch_statement] = STATE(88), - [sym_case_statement] = STATE(88), - [sym_while_statement] = STATE(88), - [sym_do_statement] = STATE(88), - [sym_for_statement] = STATE(88), - [sym_return_statement] = STATE(88), - [sym_break_statement] = STATE(88), - [sym_continue_statement] = STATE(88), - [sym_goto_statement] = STATE(88), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(88), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2400), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(88), - [sym_template_instantiation] = STATE(88), - [sym_operator_cast] = STATE(7515), - [sym__constructor_specifiers] = STATE(2400), - [sym_operator_cast_definition] = STATE(88), - [sym_operator_cast_declaration] = STATE(88), - [sym_constructor_or_destructor_definition] = STATE(88), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(88), - [sym_namespace_alias_definition] = STATE(88), - [sym_using_declaration] = STATE(88), - [sym_alias_declaration] = STATE(88), - [sym_static_assert_declaration] = STATE(88), - [sym_concept_definition] = STATE(88), - [sym_for_range_loop] = STATE(88), - [sym_co_return_statement] = STATE(88), - [sym_co_yield_statement] = STATE(88), - [sym_throw_statement] = STATE(88), - [sym_try_statement] = STATE(88), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7515), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(88), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2400), - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_if_token2] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1042), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1042), - [sym_preproc_directive] = ACTIONS(1044), + [76] = { + [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(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(74), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(74), + [sym_labeled_statement] = STATE(74), + [sym_expression_statement] = STATE(74), + [sym_if_statement] = STATE(74), + [sym_switch_statement] = STATE(74), + [sym_case_statement] = STATE(74), + [sym_while_statement] = STATE(74), + [sym_do_statement] = STATE(74), + [sym_for_statement] = STATE(74), + [sym_return_statement] = STATE(74), + [sym_break_statement] = STATE(74), + [sym_continue_statement] = STATE(74), + [sym_goto_statement] = STATE(74), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(74), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(74), + [sym_template_instantiation] = STATE(74), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(74), + [sym_operator_cast_declaration] = STATE(74), + [sym_constructor_or_destructor_definition] = STATE(74), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(74), + [sym_namespace_alias_definition] = STATE(74), + [sym_using_declaration] = STATE(74), + [sym_alias_declaration] = STATE(74), + [sym_static_assert_declaration] = STATE(74), + [sym_concept_definition] = STATE(74), + [sym_for_range_loop] = STATE(74), + [sym_co_return_statement] = STATE(74), + [sym_co_yield_statement] = STATE(74), + [sym_throw_statement] = STATE(74), + [sym_try_statement] = STATE(74), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(74), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -65790,10 +62183,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym___extension__] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1050), - [anon_sym_extern] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -65805,7 +62198,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_RBRACE] = ACTIONS(1094), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -65813,7 +62207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -65835,17 +62229,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -65882,17 +62276,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1080), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_using] = ACTIONS(1088), - [anon_sym_static_assert] = ACTIONS(1090), - [anon_sym_concept] = ACTIONS(1092), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -65903,137 +62297,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [78] = { - [sym_preproc_include] = STATE(92), - [sym_preproc_def] = STATE(92), - [sym_preproc_function_def] = STATE(92), - [sym_preproc_call] = STATE(92), - [sym_preproc_if] = STATE(92), - [sym_preproc_ifdef] = STATE(92), - [sym_function_definition] = STATE(92), - [sym_declaration] = STATE(92), - [sym_type_definition] = STATE(92), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(92), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(92), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(92), - [sym_labeled_statement] = STATE(92), - [sym_expression_statement] = STATE(92), - [sym_if_statement] = STATE(92), - [sym_switch_statement] = STATE(92), - [sym_case_statement] = STATE(92), - [sym_while_statement] = STATE(92), - [sym_do_statement] = STATE(92), - [sym_for_statement] = STATE(92), - [sym_return_statement] = STATE(92), - [sym_break_statement] = STATE(92), - [sym_continue_statement] = STATE(92), - [sym_goto_statement] = STATE(92), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(92), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(92), - [sym_template_instantiation] = STATE(92), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(92), - [sym_operator_cast_declaration] = STATE(92), - [sym_constructor_or_destructor_definition] = STATE(92), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(92), - [sym_namespace_alias_definition] = STATE(92), - [sym_using_declaration] = STATE(92), - [sym_alias_declaration] = STATE(92), - [sym_static_assert_declaration] = STATE(92), - [sym_concept_definition] = STATE(92), - [sym_for_range_loop] = STATE(92), - [sym_co_return_statement] = STATE(92), - [sym_co_yield_statement] = STATE(92), - [sym_throw_statement] = STATE(92), - [sym_try_statement] = STATE(92), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(92), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [77] = { + [sym_preproc_include] = STATE(54), + [sym_preproc_def] = STATE(54), + [sym_preproc_function_def] = STATE(54), + [sym_preproc_call] = STATE(54), + [sym_preproc_if] = STATE(54), + [sym_preproc_ifdef] = STATE(54), + [sym_function_definition] = STATE(54), + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4550), + [sym_linkage_specification] = STATE(54), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1928), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5811), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3360), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_case_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym__expression] = STATE(4063), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7688), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(54), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1779), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(54), + [sym_template_instantiation] = STATE(54), + [sym_operator_cast] = STATE(6117), + [sym__constructor_specifiers] = STATE(1779), + [sym_operator_cast_definition] = STATE(54), + [sym_operator_cast_declaration] = STATE(54), + [sym_constructor_or_destructor_definition] = STATE(54), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(54), + [sym_namespace_alias_definition] = STATE(54), + [sym_using_declaration] = STATE(54), + [sym_alias_declaration] = STATE(54), + [sym_static_assert_declaration] = STATE(54), + [sym_concept_definition] = STATE(54), + [sym_for_range_loop] = STATE(54), + [sym_co_return_statement] = STATE(54), + [sym_co_yield_statement] = STATE(54), + [sym_throw_statement] = STATE(54), + [sym_try_statement] = STATE(54), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6117), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(54), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1779), + [sym_identifier] = ACTIONS(796), + [aux_sym_preproc_include_token1] = ACTIONS(798), + [aux_sym_preproc_def_token1] = ACTIONS(800), + [aux_sym_preproc_if_token1] = ACTIONS(802), + [aux_sym_preproc_if_token2] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(806), + [aux_sym_preproc_ifdef_token2] = ACTIONS(806), + [sym_preproc_directive] = ACTIONS(808), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -66042,10 +62437,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym___extension__] = ACTIONS(812), + [anon_sym_typedef] = ACTIONS(814), + [anon_sym_extern] = ACTIONS(816), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -66057,8 +62452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1098), + [anon_sym_LBRACE] = ACTIONS(818), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -66066,7 +62460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(820), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -66088,17 +62482,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(822), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_case] = ACTIONS(826), + [anon_sym_default] = ACTIONS(828), + [anon_sym_while] = ACTIONS(830), + [anon_sym_do] = ACTIONS(832), + [anon_sym_for] = ACTIONS(834), + [anon_sym_return] = ACTIONS(836), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(842), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -66135,17 +62529,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(844), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(846), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_namespace] = ACTIONS(850), + [anon_sym_using] = ACTIONS(852), + [anon_sym_static_assert] = ACTIONS(854), + [anon_sym_concept] = ACTIONS(856), + [anon_sym_co_return] = ACTIONS(858), + [anon_sym_co_yield] = ACTIONS(860), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -66156,137 +62550,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [79] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [78] = { + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -66295,10 +62689,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -66311,7 +62705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1100), + [anon_sym_RBRACE] = ACTIONS(1098), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -66319,7 +62713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -66341,17 +62735,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -66388,17 +62782,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -66409,137 +62803,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [80] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [79] = { + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -66548,10 +62942,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -66564,7 +62958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_RBRACE] = ACTIONS(1100), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -66572,7 +62966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -66594,17 +62988,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -66641,17 +63035,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -66662,137 +63056,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [81] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [80] = { + [sym_preproc_include] = STATE(79), + [sym_preproc_def] = STATE(79), + [sym_preproc_function_def] = STATE(79), + [sym_preproc_call] = STATE(79), + [sym_preproc_if] = STATE(79), + [sym_preproc_ifdef] = STATE(79), + [sym_function_definition] = STATE(79), + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(79), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(79), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(79), + [sym_template_instantiation] = STATE(79), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(79), + [sym_operator_cast_declaration] = STATE(79), + [sym_constructor_or_destructor_definition] = STATE(79), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(79), + [sym_namespace_alias_definition] = STATE(79), + [sym_using_declaration] = STATE(79), + [sym_alias_declaration] = STATE(79), + [sym_static_assert_declaration] = STATE(79), + [sym_concept_definition] = STATE(79), + [sym_for_range_loop] = STATE(79), + [sym_co_return_statement] = STATE(79), + [sym_co_yield_statement] = STATE(79), + [sym_throw_statement] = STATE(79), + [sym_try_statement] = STATE(79), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(79), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -66801,10 +63195,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -66817,7 +63211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1104), + [anon_sym_RBRACE] = ACTIONS(1102), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -66825,7 +63219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -66847,17 +63241,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -66894,17 +63288,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -66915,137 +63309,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [82] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(62), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(62), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_case_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(62), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(62), - [sym_template_instantiation] = STATE(62), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(62), - [sym_operator_cast_declaration] = STATE(62), - [sym_constructor_or_destructor_definition] = STATE(62), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(62), - [sym_namespace_alias_definition] = STATE(62), - [sym_using_declaration] = STATE(62), - [sym_alias_declaration] = STATE(62), - [sym_static_assert_declaration] = STATE(62), - [sym_concept_definition] = STATE(62), - [sym_for_range_loop] = STATE(62), - [sym_co_return_statement] = STATE(62), - [sym_co_yield_statement] = STATE(62), - [sym_throw_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(62), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [81] = { + [sym_preproc_include] = STATE(85), + [sym_preproc_def] = STATE(85), + [sym_preproc_function_def] = STATE(85), + [sym_preproc_call] = STATE(85), + [sym_preproc_if] = STATE(85), + [sym_preproc_ifdef] = STATE(85), + [sym_function_definition] = STATE(85), + [sym_declaration] = STATE(85), + [sym_type_definition] = STATE(85), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(85), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(85), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(85), + [sym_labeled_statement] = STATE(85), + [sym_expression_statement] = STATE(85), + [sym_if_statement] = STATE(85), + [sym_switch_statement] = STATE(85), + [sym_case_statement] = STATE(85), + [sym_while_statement] = STATE(85), + [sym_do_statement] = STATE(85), + [sym_for_statement] = STATE(85), + [sym_return_statement] = STATE(85), + [sym_break_statement] = STATE(85), + [sym_continue_statement] = STATE(85), + [sym_goto_statement] = STATE(85), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(85), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(85), + [sym_template_instantiation] = STATE(85), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(85), + [sym_operator_cast_declaration] = STATE(85), + [sym_constructor_or_destructor_definition] = STATE(85), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(85), + [sym_namespace_alias_definition] = STATE(85), + [sym_using_declaration] = STATE(85), + [sym_alias_declaration] = STATE(85), + [sym_static_assert_declaration] = STATE(85), + [sym_concept_definition] = STATE(85), + [sym_for_range_loop] = STATE(85), + [sym_co_return_statement] = STATE(85), + [sym_co_yield_statement] = STATE(85), + [sym_throw_statement] = STATE(85), + [sym_try_statement] = STATE(85), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(85), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -67054,10 +63448,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -67070,7 +63464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1104), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -67078,7 +63472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -67100,17 +63494,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -67147,17 +63541,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -67168,137 +63562,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [83] = { - [sym_preproc_include] = STATE(90), - [sym_preproc_def] = STATE(90), - [sym_preproc_function_def] = STATE(90), - [sym_preproc_call] = STATE(90), - [sym_preproc_if] = STATE(90), - [sym_preproc_ifdef] = STATE(90), - [sym_function_definition] = STATE(90), - [sym_declaration] = STATE(90), - [sym_type_definition] = STATE(90), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(90), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(90), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(90), - [sym_labeled_statement] = STATE(90), - [sym_expression_statement] = STATE(90), - [sym_if_statement] = STATE(90), - [sym_switch_statement] = STATE(90), - [sym_case_statement] = STATE(90), - [sym_while_statement] = STATE(90), - [sym_do_statement] = STATE(90), - [sym_for_statement] = STATE(90), - [sym_return_statement] = STATE(90), - [sym_break_statement] = STATE(90), - [sym_continue_statement] = STATE(90), - [sym_goto_statement] = STATE(90), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(90), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(90), - [sym_template_instantiation] = STATE(90), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(90), - [sym_operator_cast_declaration] = STATE(90), - [sym_constructor_or_destructor_definition] = STATE(90), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(90), - [sym_namespace_alias_definition] = STATE(90), - [sym_using_declaration] = STATE(90), - [sym_alias_declaration] = STATE(90), - [sym_static_assert_declaration] = STATE(90), - [sym_concept_definition] = STATE(90), - [sym_for_range_loop] = STATE(90), - [sym_co_return_statement] = STATE(90), - [sym_co_yield_statement] = STATE(90), - [sym_throw_statement] = STATE(90), - [sym_try_statement] = STATE(90), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(90), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [82] = { + [sym_preproc_include] = STATE(78), + [sym_preproc_def] = STATE(78), + [sym_preproc_function_def] = STATE(78), + [sym_preproc_call] = STATE(78), + [sym_preproc_if] = STATE(78), + [sym_preproc_ifdef] = STATE(78), + [sym_function_definition] = STATE(78), + [sym_declaration] = STATE(78), + [sym_type_definition] = STATE(78), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(78), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(78), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(78), + [sym_labeled_statement] = STATE(78), + [sym_expression_statement] = STATE(78), + [sym_if_statement] = STATE(78), + [sym_switch_statement] = STATE(78), + [sym_case_statement] = STATE(78), + [sym_while_statement] = STATE(78), + [sym_do_statement] = STATE(78), + [sym_for_statement] = STATE(78), + [sym_return_statement] = STATE(78), + [sym_break_statement] = STATE(78), + [sym_continue_statement] = STATE(78), + [sym_goto_statement] = STATE(78), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(78), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(78), + [sym_template_instantiation] = STATE(78), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(78), + [sym_operator_cast_declaration] = STATE(78), + [sym_constructor_or_destructor_definition] = STATE(78), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(78), + [sym_namespace_alias_definition] = STATE(78), + [sym_using_declaration] = STATE(78), + [sym_alias_declaration] = STATE(78), + [sym_static_assert_declaration] = STATE(78), + [sym_concept_definition] = STATE(78), + [sym_for_range_loop] = STATE(78), + [sym_co_return_statement] = STATE(78), + [sym_co_yield_statement] = STATE(78), + [sym_throw_statement] = STATE(78), + [sym_try_statement] = STATE(78), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(78), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -67307,10 +63701,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -67323,7 +63717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1108), + [anon_sym_RBRACE] = ACTIONS(1106), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -67331,7 +63725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -67353,17 +63747,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -67400,17 +63794,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -67421,137 +63815,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [84] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(80), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(80), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(80), - [sym_labeled_statement] = STATE(80), - [sym_expression_statement] = STATE(80), - [sym_if_statement] = STATE(80), - [sym_switch_statement] = STATE(80), - [sym_case_statement] = STATE(80), - [sym_while_statement] = STATE(80), - [sym_do_statement] = STATE(80), - [sym_for_statement] = STATE(80), - [sym_return_statement] = STATE(80), - [sym_break_statement] = STATE(80), - [sym_continue_statement] = STATE(80), - [sym_goto_statement] = STATE(80), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(80), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(80), - [sym_template_instantiation] = STATE(80), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(80), - [sym_operator_cast_declaration] = STATE(80), - [sym_constructor_or_destructor_definition] = STATE(80), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [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(80), - [sym_co_return_statement] = STATE(80), - [sym_co_yield_statement] = STATE(80), - [sym_throw_statement] = STATE(80), - [sym_try_statement] = STATE(80), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(80), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [83] = { + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -67560,10 +63954,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -67576,7 +63970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1108), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -67584,7 +63978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -67606,17 +64000,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -67653,17 +64047,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -67674,137 +64068,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [85] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(64), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(64), - [sym_labeled_statement] = STATE(64), - [sym_expression_statement] = STATE(64), - [sym_if_statement] = STATE(64), - [sym_switch_statement] = STATE(64), - [sym_case_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_do_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_return_statement] = STATE(64), - [sym_break_statement] = STATE(64), - [sym_continue_statement] = STATE(64), - [sym_goto_statement] = STATE(64), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(64), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(64), - [sym_template_instantiation] = STATE(64), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(64), - [sym_operator_cast_declaration] = STATE(64), - [sym_constructor_or_destructor_definition] = STATE(64), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [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(64), - [sym_co_return_statement] = STATE(64), - [sym_co_yield_statement] = STATE(64), - [sym_throw_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(64), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [84] = { + [sym_preproc_include] = STATE(83), + [sym_preproc_def] = STATE(83), + [sym_preproc_function_def] = STATE(83), + [sym_preproc_call] = STATE(83), + [sym_preproc_if] = STATE(83), + [sym_preproc_ifdef] = STATE(83), + [sym_function_definition] = STATE(83), + [sym_declaration] = STATE(83), + [sym_type_definition] = STATE(83), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(83), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(83), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(83), + [sym_labeled_statement] = STATE(83), + [sym_expression_statement] = STATE(83), + [sym_if_statement] = STATE(83), + [sym_switch_statement] = STATE(83), + [sym_case_statement] = STATE(83), + [sym_while_statement] = STATE(83), + [sym_do_statement] = STATE(83), + [sym_for_statement] = STATE(83), + [sym_return_statement] = STATE(83), + [sym_break_statement] = STATE(83), + [sym_continue_statement] = STATE(83), + [sym_goto_statement] = STATE(83), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(83), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(83), + [sym_template_instantiation] = STATE(83), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(83), + [sym_operator_cast_declaration] = STATE(83), + [sym_constructor_or_destructor_definition] = STATE(83), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(83), + [sym_namespace_alias_definition] = STATE(83), + [sym_using_declaration] = STATE(83), + [sym_alias_declaration] = STATE(83), + [sym_static_assert_declaration] = STATE(83), + [sym_concept_definition] = STATE(83), + [sym_for_range_loop] = STATE(83), + [sym_co_return_statement] = STATE(83), + [sym_co_yield_statement] = STATE(83), + [sym_throw_statement] = STATE(83), + [sym_try_statement] = STATE(83), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(83), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -67813,10 +64207,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -67829,7 +64223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1110), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -67837,7 +64231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -67859,17 +64253,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -67906,17 +64300,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -67927,137 +64321,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [86] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(47), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_case_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(47), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(47), - [sym_template_instantiation] = STATE(47), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(47), - [sym_operator_cast_declaration] = STATE(47), - [sym_constructor_or_destructor_definition] = STATE(47), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(47), - [sym_namespace_alias_definition] = STATE(47), - [sym_using_declaration] = STATE(47), - [sym_alias_declaration] = STATE(47), - [sym_static_assert_declaration] = STATE(47), - [sym_concept_definition] = STATE(47), - [sym_for_range_loop] = STATE(47), - [sym_co_return_statement] = STATE(47), - [sym_co_yield_statement] = STATE(47), - [sym_throw_statement] = STATE(47), - [sym_try_statement] = STATE(47), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [85] = { + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -68066,10 +64460,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -68082,7 +64476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1114), + [anon_sym_RBRACE] = ACTIONS(1112), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -68090,7 +64484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -68112,17 +64506,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -68159,17 +64553,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -68180,137 +64574,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [87] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [86] = { + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -68319,10 +64713,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -68335,7 +64729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1116), + [anon_sym_RBRACE] = ACTIONS(1114), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -68343,7 +64737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -68365,17 +64759,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -68412,17 +64806,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -68433,138 +64827,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [88] = { - [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(4276), - [sym__declaration_specifiers] = STATE(5755), - [sym_linkage_specification] = STATE(67), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2586), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7089), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4279), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(67), - [sym_labeled_statement] = STATE(67), - [sym_expression_statement] = STATE(67), - [sym_if_statement] = STATE(67), - [sym_switch_statement] = STATE(67), - [sym_case_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_do_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_return_statement] = STATE(67), - [sym_break_statement] = STATE(67), - [sym_continue_statement] = STATE(67), - [sym_goto_statement] = STATE(67), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(67), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2400), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(67), - [sym_template_instantiation] = STATE(67), - [sym_operator_cast] = STATE(7515), - [sym__constructor_specifiers] = STATE(2400), - [sym_operator_cast_definition] = STATE(67), - [sym_operator_cast_declaration] = STATE(67), - [sym_constructor_or_destructor_definition] = STATE(67), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(67), - [sym_namespace_alias_definition] = STATE(67), - [sym_using_declaration] = STATE(67), - [sym_alias_declaration] = STATE(67), - [sym_static_assert_declaration] = STATE(67), - [sym_concept_definition] = STATE(67), - [sym_for_range_loop] = STATE(67), - [sym_co_return_statement] = STATE(67), - [sym_co_yield_statement] = STATE(67), - [sym_throw_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7515), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(67), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2400), - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_if_token2] = ACTIONS(1118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1042), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1042), - [sym_preproc_directive] = ACTIONS(1044), + [87] = { + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -68573,10 +64966,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym___extension__] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1050), - [anon_sym_extern] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -68588,7 +64981,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_RBRACE] = ACTIONS(1116), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -68596,7 +64990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -68618,17 +65012,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -68665,17 +65059,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1080), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_using] = ACTIONS(1088), - [anon_sym_static_assert] = ACTIONS(1090), - [anon_sym_concept] = ACTIONS(1092), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -68686,137 +65080,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [89] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [88] = { + [sym_preproc_include] = STATE(87), + [sym_preproc_def] = STATE(87), + [sym_preproc_function_def] = STATE(87), + [sym_preproc_call] = STATE(87), + [sym_preproc_if] = STATE(87), + [sym_preproc_ifdef] = STATE(87), + [sym_function_definition] = STATE(87), + [sym_declaration] = STATE(87), + [sym_type_definition] = STATE(87), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(87), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(87), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [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_case_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__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(87), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(87), + [sym_template_instantiation] = STATE(87), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(87), + [sym_operator_cast_declaration] = STATE(87), + [sym_constructor_or_destructor_definition] = STATE(87), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(87), + [sym_namespace_alias_definition] = STATE(87), + [sym_using_declaration] = STATE(87), + [sym_alias_declaration] = STATE(87), + [sym_static_assert_declaration] = STATE(87), + [sym_concept_definition] = STATE(87), + [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(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(87), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -68825,10 +65219,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -68841,7 +65235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1118), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -68849,7 +65243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -68871,17 +65265,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -68918,17 +65312,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -68939,137 +65333,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [90] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [89] = { + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -69078,10 +65472,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -69094,7 +65488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1122), + [anon_sym_RBRACE] = ACTIONS(1120), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -69102,7 +65496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -69124,17 +65518,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -69171,17 +65565,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -69192,137 +65586,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [91] = { - [sym_preproc_include] = STATE(89), - [sym_preproc_def] = STATE(89), - [sym_preproc_function_def] = STATE(89), - [sym_preproc_call] = STATE(89), - [sym_preproc_if] = STATE(89), - [sym_preproc_ifdef] = STATE(89), - [sym_function_definition] = STATE(89), - [sym_declaration] = STATE(89), - [sym_type_definition] = STATE(89), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(89), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(89), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(89), - [sym_labeled_statement] = STATE(89), - [sym_expression_statement] = STATE(89), - [sym_if_statement] = STATE(89), - [sym_switch_statement] = STATE(89), - [sym_case_statement] = STATE(89), - [sym_while_statement] = STATE(89), - [sym_do_statement] = STATE(89), - [sym_for_statement] = STATE(89), - [sym_return_statement] = STATE(89), - [sym_break_statement] = STATE(89), - [sym_continue_statement] = STATE(89), - [sym_goto_statement] = STATE(89), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(89), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(89), - [sym_template_instantiation] = STATE(89), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(89), - [sym_operator_cast_declaration] = STATE(89), - [sym_constructor_or_destructor_definition] = STATE(89), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(89), - [sym_namespace_alias_definition] = STATE(89), - [sym_using_declaration] = STATE(89), - [sym_alias_declaration] = STATE(89), - [sym_static_assert_declaration] = STATE(89), - [sym_concept_definition] = STATE(89), - [sym_for_range_loop] = STATE(89), - [sym_co_return_statement] = STATE(89), - [sym_co_yield_statement] = STATE(89), - [sym_throw_statement] = STATE(89), - [sym_try_statement] = STATE(89), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(89), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [90] = { + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -69331,10 +65725,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -69347,7 +65741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(1122), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -69355,7 +65749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -69377,17 +65771,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -69424,17 +65818,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), + }, + [91] = { + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_RBRACE] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(187), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(63), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(215), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_try] = ACTIONS(217), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -69446,136 +66093,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [92] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_preproc_include] = STATE(91), + [sym_preproc_def] = STATE(91), + [sym_preproc_function_def] = STATE(91), + [sym_preproc_call] = STATE(91), + [sym_preproc_if] = STATE(91), + [sym_preproc_ifdef] = STATE(91), + [sym_function_definition] = STATE(91), + [sym_declaration] = STATE(91), + [sym_type_definition] = STATE(91), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(91), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(91), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(91), + [sym_labeled_statement] = STATE(91), + [sym_expression_statement] = STATE(91), + [sym_if_statement] = STATE(91), + [sym_switch_statement] = STATE(91), + [sym_case_statement] = STATE(91), + [sym_while_statement] = STATE(91), + [sym_do_statement] = STATE(91), + [sym_for_statement] = STATE(91), + [sym_return_statement] = STATE(91), + [sym_break_statement] = STATE(91), + [sym_continue_statement] = STATE(91), + [sym_goto_statement] = STATE(91), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(91), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(91), + [sym_template_instantiation] = STATE(91), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(91), + [sym_operator_cast_declaration] = STATE(91), + [sym_constructor_or_destructor_definition] = STATE(91), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(91), + [sym_namespace_alias_definition] = STATE(91), + [sym_using_declaration] = STATE(91), + [sym_alias_declaration] = STATE(91), + [sym_static_assert_declaration] = STATE(91), + [sym_concept_definition] = STATE(91), + [sym_for_range_loop] = STATE(91), + [sym_co_return_statement] = STATE(91), + [sym_co_yield_statement] = STATE(91), + [sym_throw_statement] = STATE(91), + [sym_try_statement] = STATE(91), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(91), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -69584,10 +66231,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -69608,7 +66255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -69630,17 +66277,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -69677,17 +66324,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -69699,136 +66346,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [93] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7086), - [sym_array_declarator] = STATE(6917), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2393), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2393), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2393), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(237), - [aux_sym_preproc_def_token1] = ACTIONS(239), - [aux_sym_preproc_if_token1] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5816), + [sym_array_declarator] = STATE(5742), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1792), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1792), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1792), + [sym_identifier] = ACTIONS(159), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -69837,10 +66484,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -69861,7 +66508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -69883,17 +66530,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -69930,17 +66577,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(289), + [anon_sym_template] = ACTIONS(215), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(295), - [anon_sym_using] = ACTIONS(297), - [anon_sym_static_assert] = ACTIONS(299), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), + [anon_sym_using] = ACTIONS(223), + [anon_sym_static_assert] = ACTIONS(225), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -69961,28 +66608,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(94), [sym_declaration] = STATE(94), [sym_type_definition] = STATE(94), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5758), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4561), [sym_linkage_specification] = STATE(94), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2601), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7151), - [sym_array_declarator] = STATE(6917), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5806), + [sym_array_declarator] = STATE(5742), [sym_compound_statement] = STATE(94), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4280), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3475), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(94), [sym_labeled_statement] = STATE(94), [sym__top_level_expression_statement] = STATE(94), @@ -69996,50 +66643,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(94), [sym_continue_statement] = STATE(94), [sym_goto_statement] = STATE(94), - [sym__expression] = STATE(5413), - [sym__expression_not_binary] = STATE(5465), - [sym_conditional_expression] = STATE(5465), - [sym_assignment_expression] = STATE(5465), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(5465), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(5465), - [sym_cast_expression] = STATE(5465), - [sym_sizeof_expression] = STATE(5465), - [sym_alignof_expression] = STATE(5465), - [sym_offsetof_expression] = STATE(5465), - [sym_generic_expression] = STATE(5465), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(5465), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(5465), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(5465), + [sym__expression] = STATE(4382), + [sym__expression_not_binary] = STATE(4392), + [sym_conditional_expression] = STATE(4392), + [sym_assignment_expression] = STATE(4392), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(4392), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(4392), + [sym_cast_expression] = STATE(4392), + [sym_sizeof_expression] = STATE(4392), + [sym_alignof_expression] = STATE(4392), + [sym_offsetof_expression] = STATE(4392), + [sym_generic_expression] = STATE(4392), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(4392), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(4392), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(4392), [sym__empty_declaration] = STATE(94), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2402), - [sym_dependent_type] = STATE(3958), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1786), + [sym_dependent_type] = STATE(3114), [sym_template_declaration] = STATE(94), [sym_template_instantiation] = STATE(94), - [sym_operator_cast] = STATE(7496), - [sym__constructor_specifiers] = STATE(2402), + [sym_operator_cast] = STATE(6099), + [sym__constructor_specifiers] = STATE(1786), [sym_operator_cast_definition] = STATE(94), [sym_operator_cast_declaration] = STATE(94), [sym_constructor_or_destructor_definition] = STATE(94), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), [sym_namespace_definition] = STATE(94), [sym_namespace_alias_definition] = STATE(94), [sym_using_declaration] = STATE(94), @@ -70051,29 +66698,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(94), [sym_throw_statement] = STATE(94), [sym_try_statement] = STATE(94), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(5465), - [sym_new_expression] = STATE(5465), - [sym_delete_expression] = STATE(5465), - [sym_requires_clause] = STATE(5465), - [sym_requires_expression] = STATE(5465), - [sym_lambda_expression] = STATE(5465), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(5465), - [sym_parameter_pack_expansion] = STATE(5465), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7496), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(4392), + [sym_new_expression] = STATE(4392), + [sym_delete_expression] = STATE(4392), + [sym_requires_clause] = STATE(4392), + [sym_requires_expression] = STATE(4392), + [sym_lambda_expression] = STATE(4392), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(4392), + [sym_parameter_pack_expansion] = STATE(4392), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6099), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), [aux_sym_translation_unit_repeat1] = STATE(94), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2402), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1786), [ts_builtin_sym_end] = ACTIONS(1130), [sym_identifier] = ACTIONS(1132), [aux_sym_preproc_include_token1] = ACTIONS(1135), @@ -70212,28 +66859,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(94), [sym_declaration] = STATE(94), [sym_type_definition] = STATE(94), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5758), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4561), [sym_linkage_specification] = STATE(94), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(1512), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2601), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7151), - [sym_array_declarator] = STATE(6917), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(1013), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5806), + [sym_array_declarator] = STATE(5742), [sym_compound_statement] = STATE(94), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4280), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3475), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(94), [sym_labeled_statement] = STATE(94), [sym__top_level_expression_statement] = STATE(94), @@ -70247,50 +66894,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(94), [sym_continue_statement] = STATE(94), [sym_goto_statement] = STATE(94), - [sym__expression] = STATE(5413), - [sym__expression_not_binary] = STATE(5465), - [sym_conditional_expression] = STATE(5465), - [sym_assignment_expression] = STATE(5465), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(5465), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(5465), - [sym_cast_expression] = STATE(5465), - [sym_sizeof_expression] = STATE(5465), - [sym_alignof_expression] = STATE(5465), - [sym_offsetof_expression] = STATE(5465), - [sym_generic_expression] = STATE(5465), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(5465), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(5465), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(5465), + [sym__expression] = STATE(4382), + [sym__expression_not_binary] = STATE(4392), + [sym_conditional_expression] = STATE(4392), + [sym_assignment_expression] = STATE(4392), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(4392), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(4392), + [sym_cast_expression] = STATE(4392), + [sym_sizeof_expression] = STATE(4392), + [sym_alignof_expression] = STATE(4392), + [sym_offsetof_expression] = STATE(4392), + [sym_generic_expression] = STATE(4392), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(4392), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(4392), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(4392), [sym__empty_declaration] = STATE(94), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2402), - [sym_dependent_type] = STATE(3958), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1786), + [sym_dependent_type] = STATE(3114), [sym_template_declaration] = STATE(94), [sym_template_instantiation] = STATE(94), - [sym_operator_cast] = STATE(7496), - [sym__constructor_specifiers] = STATE(2402), + [sym_operator_cast] = STATE(6099), + [sym__constructor_specifiers] = STATE(1786), [sym_operator_cast_definition] = STATE(94), [sym_operator_cast_declaration] = STATE(94), [sym_constructor_or_destructor_definition] = STATE(94), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(5040), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(4127), [sym_namespace_definition] = STATE(94), [sym_namespace_alias_definition] = STATE(94), [sym_using_declaration] = STATE(94), @@ -70302,29 +66949,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(94), [sym_throw_statement] = STATE(94), [sym_try_statement] = STATE(94), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(5465), - [sym_new_expression] = STATE(5465), - [sym_delete_expression] = STATE(5465), - [sym_requires_clause] = STATE(5465), - [sym_requires_expression] = STATE(5465), - [sym_lambda_expression] = STATE(5465), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(5465), - [sym_parameter_pack_expansion] = STATE(5465), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6205), - [sym_qualified_identifier] = STATE(3934), - [sym_qualified_type_identifier] = STATE(4563), - [sym_qualified_operator_cast_identifier] = STATE(7496), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3951), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(4392), + [sym_new_expression] = STATE(4392), + [sym_delete_expression] = STATE(4392), + [sym_requires_clause] = STATE(4392), + [sym_requires_expression] = STATE(4392), + [sym_lambda_expression] = STATE(4392), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(4392), + [sym_parameter_pack_expansion] = STATE(4392), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4989), + [sym_qualified_identifier] = STATE(3026), + [sym_qualified_type_identifier] = STATE(3724), + [sym_qualified_operator_cast_identifier] = STATE(6099), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3087), [aux_sym_translation_unit_repeat1] = STATE(94), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2402), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1786), [ts_builtin_sym_end] = ACTIONS(1360), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -70456,19 +67103,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [96] = { [sym_declaration] = STATE(98), [sym_type_definition] = STATE(98), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5702), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4567), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), [sym_compound_statement] = STATE(98), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(98), [sym_labeled_statement] = STATE(98), [sym_expression_statement] = STATE(98), @@ -70481,63 +67128,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(98), [sym_continue_statement] = STATE(98), [sym_goto_statement] = STATE(98), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), [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(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), [aux_sym_case_statement_repeat1] = STATE(98), [sym_identifier] = ACTIONS(1362), [aux_sym_preproc_include_token1] = ACTIONS(1364), @@ -70559,9 +67206,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP_AMP] = ACTIONS(1370), [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym___extension__] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(183), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym___extension__] = ACTIONS(257), + [anon_sym_typedef] = ACTIONS(259), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), @@ -70574,7 +67221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1364), [anon_sym___thiscall] = ACTIONS(1364), [anon_sym___vectorcall] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -70604,18 +67251,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(191), + [anon_sym_if] = ACTIONS(267), [anon_sym_else] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(193), + [anon_sym_switch] = ACTIONS(269), [anon_sym_case] = ACTIONS(1364), [anon_sym_default] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -70654,15 +67301,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), [anon_sym_operator] = ACTIONS(1364), - [anon_sym_try] = ACTIONS(217), + [anon_sym_try] = ACTIONS(291), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), + [anon_sym_throw] = ACTIONS(293), [anon_sym_namespace] = ACTIONS(1364), [anon_sym_using] = ACTIONS(1364), [anon_sym_static_assert] = ACTIONS(1364), [anon_sym_concept] = ACTIONS(1364), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), + [anon_sym_co_return] = ACTIONS(303), + [anon_sym_co_yield] = ACTIONS(305), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -70676,19 +67323,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [97] = { [sym_declaration] = STATE(100), [sym_type_definition] = STATE(100), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5702), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4567), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), [sym_compound_statement] = STATE(100), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(100), [sym_labeled_statement] = STATE(100), [sym_expression_statement] = STATE(100), @@ -70701,63 +67348,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(100), [sym_continue_statement] = STATE(100), [sym_goto_statement] = STATE(100), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), [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(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), [aux_sym_case_statement_repeat1] = STATE(100), [sym_identifier] = ACTIONS(1362), [aux_sym_preproc_include_token1] = ACTIONS(1380), @@ -70779,9 +67426,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP_AMP] = ACTIONS(1382), [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym___extension__] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(183), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym___extension__] = ACTIONS(257), + [anon_sym_typedef] = ACTIONS(259), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), @@ -70794,7 +67441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1380), [anon_sym___thiscall] = ACTIONS(1380), [anon_sym___vectorcall] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -70824,18 +67471,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(191), + [anon_sym_if] = ACTIONS(267), [anon_sym_else] = ACTIONS(1380), - [anon_sym_switch] = ACTIONS(193), + [anon_sym_switch] = ACTIONS(269), [anon_sym_case] = ACTIONS(1380), [anon_sym_default] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -70874,15 +67521,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), [anon_sym_operator] = ACTIONS(1380), - [anon_sym_try] = ACTIONS(217), + [anon_sym_try] = ACTIONS(291), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), + [anon_sym_throw] = ACTIONS(293), [anon_sym_namespace] = ACTIONS(1380), [anon_sym_using] = ACTIONS(1380), [anon_sym_static_assert] = ACTIONS(1380), [anon_sym_concept] = ACTIONS(1380), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), + [anon_sym_co_return] = ACTIONS(303), + [anon_sym_co_yield] = ACTIONS(305), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -70896,19 +67543,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [98] = { [sym_declaration] = STATE(100), [sym_type_definition] = STATE(100), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5702), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4567), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), [sym_compound_statement] = STATE(100), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(100), [sym_labeled_statement] = STATE(100), [sym_expression_statement] = STATE(100), @@ -70921,63 +67568,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(100), [sym_continue_statement] = STATE(100), [sym_goto_statement] = STATE(100), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), [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(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), [aux_sym_case_statement_repeat1] = STATE(100), [sym_identifier] = ACTIONS(1362), [aux_sym_preproc_include_token1] = ACTIONS(1384), @@ -70999,9 +67646,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP_AMP] = ACTIONS(1386), [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym___extension__] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(183), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym___extension__] = ACTIONS(257), + [anon_sym_typedef] = ACTIONS(259), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), @@ -71014,7 +67661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1384), [anon_sym___thiscall] = ACTIONS(1384), [anon_sym___vectorcall] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -71044,18 +67691,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(191), + [anon_sym_if] = ACTIONS(267), [anon_sym_else] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(193), + [anon_sym_switch] = ACTIONS(269), [anon_sym_case] = ACTIONS(1384), [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -71094,15 +67741,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), [anon_sym_operator] = ACTIONS(1384), - [anon_sym_try] = ACTIONS(217), + [anon_sym_try] = ACTIONS(291), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), + [anon_sym_throw] = ACTIONS(293), [anon_sym_namespace] = ACTIONS(1384), [anon_sym_using] = ACTIONS(1384), [anon_sym_static_assert] = ACTIONS(1384), [anon_sym_concept] = ACTIONS(1384), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), + [anon_sym_co_return] = ACTIONS(303), + [anon_sym_co_yield] = ACTIONS(305), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -71116,19 +67763,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [99] = { [sym_declaration] = STATE(97), [sym_type_definition] = STATE(97), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5702), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4567), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), [sym_compound_statement] = STATE(97), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(97), [sym_labeled_statement] = STATE(97), [sym_expression_statement] = STATE(97), @@ -71141,63 +67788,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(97), [sym_continue_statement] = STATE(97), [sym_goto_statement] = STATE(97), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), [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(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), [aux_sym_case_statement_repeat1] = STATE(97), [sym_identifier] = ACTIONS(1362), [aux_sym_preproc_include_token1] = ACTIONS(1388), @@ -71219,9 +67866,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP_AMP] = ACTIONS(1390), [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym___extension__] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(183), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym___extension__] = ACTIONS(257), + [anon_sym_typedef] = ACTIONS(259), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), @@ -71234,7 +67881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1388), [anon_sym___thiscall] = ACTIONS(1388), [anon_sym___vectorcall] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -71264,18 +67911,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(191), + [anon_sym_if] = ACTIONS(267), [anon_sym_else] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(193), + [anon_sym_switch] = ACTIONS(269), [anon_sym_case] = ACTIONS(1388), [anon_sym_default] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -71314,15 +67961,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), [anon_sym_operator] = ACTIONS(1388), - [anon_sym_try] = ACTIONS(217), + [anon_sym_try] = ACTIONS(291), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), + [anon_sym_throw] = ACTIONS(293), [anon_sym_namespace] = ACTIONS(1388), [anon_sym_using] = ACTIONS(1388), [anon_sym_static_assert] = ACTIONS(1388), [anon_sym_concept] = ACTIONS(1388), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), + [anon_sym_co_return] = ACTIONS(303), + [anon_sym_co_yield] = ACTIONS(305), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -71336,19 +67983,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [100] = { [sym_declaration] = STATE(100), [sym_type_definition] = STATE(100), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5702), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4567), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), [sym_compound_statement] = STATE(100), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(100), [sym_labeled_statement] = STATE(100), [sym_expression_statement] = STATE(100), @@ -71361,63 +68008,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(100), [sym_continue_statement] = STATE(100), [sym_goto_statement] = STATE(100), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), [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(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), [aux_sym_case_statement_repeat1] = STATE(100), [sym_identifier] = ACTIONS(1392), [aux_sym_preproc_include_token1] = ACTIONS(1395), @@ -71554,92 +68201,310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1519), }, [101] = { - [sym_declaration] = STATE(105), - [sym_type_definition] = STATE(105), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5753), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [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__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [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(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(105), + [sym_declaration] = STATE(101), + [sym_type_definition] = STATE(101), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4558), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(101), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [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__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [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(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(101), [sym_identifier] = ACTIONS(1570), + [aux_sym_preproc_include_token1] = ACTIONS(1395), + [aux_sym_preproc_def_token1] = ACTIONS(1395), + [aux_sym_preproc_if_token1] = ACTIONS(1395), + [aux_sym_preproc_if_token2] = ACTIONS(1395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1395), + [aux_sym_preproc_else_token1] = ACTIONS(1395), + [aux_sym_preproc_elif_token1] = ACTIONS(1395), + [sym_preproc_directive] = ACTIONS(1395), + [anon_sym_LPAREN2] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_AMP_AMP] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym___extension__] = ACTIONS(1576), + [anon_sym_typedef] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1423), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_COLON_COLON] = ACTIONS(1429), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1435), + [anon_sym___based] = ACTIONS(1395), + [anon_sym___cdecl] = ACTIONS(1395), + [anon_sym___clrcall] = ACTIONS(1395), + [anon_sym___stdcall] = ACTIONS(1395), + [anon_sym___fastcall] = ACTIONS(1395), + [anon_sym___thiscall] = ACTIONS(1395), + [anon_sym___vectorcall] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_signed] = ACTIONS(1441), + [anon_sym_unsigned] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_register] = ACTIONS(1423), + [anon_sym_inline] = ACTIONS(1423), + [anon_sym___inline] = ACTIONS(1423), + [anon_sym___inline__] = ACTIONS(1423), + [anon_sym___forceinline] = ACTIONS(1423), + [anon_sym_thread_local] = ACTIONS(1423), + [anon_sym___thread] = ACTIONS(1423), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_constexpr] = ACTIONS(1447), + [anon_sym_volatile] = ACTIONS(1447), + [anon_sym_restrict] = ACTIONS(1447), + [anon_sym___restrict__] = ACTIONS(1447), + [anon_sym__Atomic] = ACTIONS(1447), + [anon_sym__Noreturn] = ACTIONS(1447), + [anon_sym_noreturn] = ACTIONS(1447), + [anon_sym_mutable] = ACTIONS(1447), + [anon_sym_constinit] = ACTIONS(1447), + [anon_sym_consteval] = ACTIONS(1447), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1459), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_else] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1588), + [anon_sym_case] = ACTIONS(1395), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_do] = ACTIONS(1594), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1600), + [anon_sym_break] = ACTIONS(1603), + [anon_sym_continue] = ACTIONS(1606), + [anon_sym_goto] = ACTIONS(1609), + [anon_sym_not] = ACTIONS(1403), + [anon_sym_compl] = ACTIONS(1403), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1492), + [anon_sym_sizeof] = ACTIONS(1495), + [anon_sym___alignof__] = ACTIONS(1498), + [anon_sym___alignof] = ACTIONS(1498), + [anon_sym__alignof] = ACTIONS(1498), + [anon_sym_alignof] = ACTIONS(1498), + [anon_sym__Alignof] = ACTIONS(1498), + [anon_sym_offsetof] = ACTIONS(1501), + [anon_sym__Generic] = ACTIONS(1504), + [anon_sym_asm] = ACTIONS(1507), + [anon_sym___asm__] = ACTIONS(1507), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1513), + [anon_sym_u_SQUOTE] = ACTIONS(1513), + [anon_sym_U_SQUOTE] = ACTIONS(1513), + [anon_sym_u8_SQUOTE] = ACTIONS(1513), + [anon_sym_SQUOTE] = ACTIONS(1513), + [anon_sym_L_DQUOTE] = ACTIONS(1516), + [anon_sym_u_DQUOTE] = ACTIONS(1516), + [anon_sym_U_DQUOTE] = ACTIONS(1516), + [anon_sym_u8_DQUOTE] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym_true] = ACTIONS(1519), + [sym_false] = ACTIONS(1519), + [anon_sym_NULL] = ACTIONS(1522), + [anon_sym_nullptr] = ACTIONS(1522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1525), + [anon_sym_decltype] = ACTIONS(1528), + [anon_sym_virtual] = ACTIONS(1531), + [anon_sym_alignas] = ACTIONS(1534), + [anon_sym_explicit] = ACTIONS(1395), + [anon_sym_typename] = ACTIONS(1537), + [anon_sym_template] = ACTIONS(1540), + [anon_sym_operator] = ACTIONS(1395), + [anon_sym_try] = ACTIONS(1612), + [anon_sym_delete] = ACTIONS(1546), + [anon_sym_throw] = ACTIONS(1615), + [anon_sym_namespace] = ACTIONS(1395), + [anon_sym_using] = ACTIONS(1395), + [anon_sym_static_assert] = ACTIONS(1395), + [anon_sym_concept] = ACTIONS(1395), + [anon_sym_co_return] = ACTIONS(1618), + [anon_sym_co_yield] = ACTIONS(1621), + [anon_sym_R_DQUOTE] = ACTIONS(1558), + [anon_sym_LR_DQUOTE] = ACTIONS(1558), + [anon_sym_uR_DQUOTE] = ACTIONS(1558), + [anon_sym_UR_DQUOTE] = ACTIONS(1558), + [anon_sym_u8R_DQUOTE] = ACTIONS(1558), + [anon_sym_co_await] = ACTIONS(1561), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_requires] = ACTIONS(1567), + [sym_this] = ACTIONS(1519), + }, + [102] = { + [sym_declaration] = STATE(101), + [sym_type_definition] = STATE(101), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4558), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(101), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [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__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [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(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(101), + [sym_identifier] = ACTIONS(1624), [aux_sym_preproc_include_token1] = ACTIONS(1380), [aux_sym_preproc_def_token1] = ACTIONS(1380), [aux_sym_preproc_if_token1] = ACTIONS(1380), @@ -71771,109 +68636,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [102] = { - [sym_declaration] = STATE(104), - [sym_type_definition] = STATE(104), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5753), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(104), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [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__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [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(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(104), - [sym_identifier] = ACTIONS(1570), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token2] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [aux_sym_preproc_else_token1] = ACTIONS(1364), - [aux_sym_preproc_elif_token1] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), + [103] = { + [sym_declaration] = STATE(101), + [sym_type_definition] = STATE(101), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4558), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(101), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [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__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [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(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(101), + [sym_identifier] = ACTIONS(1624), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token2] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [aux_sym_preproc_else_token1] = ACTIONS(1384), + [aux_sym_preproc_elif_token1] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1370), + [anon_sym_AMP_AMP] = ACTIONS(1386), [anon_sym_AMP] = ACTIONS(1372), [anon_sym_SEMI] = ACTIONS(363), [anon_sym___extension__] = ACTIONS(365), @@ -71883,13 +68748,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1364), - [anon_sym___cdecl] = ACTIONS(1364), - [anon_sym___clrcall] = ACTIONS(1364), - [anon_sym___stdcall] = ACTIONS(1364), - [anon_sym___fastcall] = ACTIONS(1364), - [anon_sym___thiscall] = ACTIONS(1364), - [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym___based] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), [anon_sym_LBRACE] = ACTIONS(371), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -71921,10 +68786,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), [anon_sym_if] = ACTIONS(375), - [anon_sym_else] = ACTIONS(1364), + [anon_sym_else] = ACTIONS(1384), [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), [anon_sym_while] = ACTIONS(383), [anon_sym_do] = ACTIONS(385), [anon_sym_for] = ACTIONS(387), @@ -71966,17 +68831,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1364), + [anon_sym_explicit] = ACTIONS(1384), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(1364), + [anon_sym_operator] = ACTIONS(1384), [anon_sym_try] = ACTIONS(399), [anon_sym_delete] = ACTIONS(135), [anon_sym_throw] = ACTIONS(401), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_using] = ACTIONS(1364), - [anon_sym_static_assert] = ACTIONS(1364), - [anon_sym_concept] = ACTIONS(1364), + [anon_sym_namespace] = ACTIONS(1384), + [anon_sym_using] = ACTIONS(1384), + [anon_sym_static_assert] = ACTIONS(1384), + [anon_sym_concept] = ACTIONS(1384), [anon_sym_co_return] = ACTIONS(411), [anon_sym_co_yield] = ACTIONS(413), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -71989,93 +68854,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [103] = { - [sym_declaration] = STATE(101), - [sym_type_definition] = STATE(101), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5753), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(101), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [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__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [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(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(101), - [sym_identifier] = ACTIONS(1570), + [104] = { + [sym_declaration] = STATE(102), + [sym_type_definition] = STATE(102), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4558), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(102), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(102), + [sym_labeled_statement] = STATE(102), + [sym_expression_statement] = STATE(102), + [sym_if_statement] = STATE(102), + [sym_switch_statement] = STATE(102), + [sym_while_statement] = STATE(102), + [sym_do_statement] = STATE(102), + [sym_for_statement] = STATE(102), + [sym_return_statement] = STATE(102), + [sym_break_statement] = STATE(102), + [sym_continue_statement] = STATE(102), + [sym_goto_statement] = STATE(102), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(102), + [sym_co_return_statement] = STATE(102), + [sym_co_yield_statement] = STATE(102), + [sym_throw_statement] = STATE(102), + [sym_try_statement] = STATE(102), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(102), + [sym_identifier] = ACTIONS(1624), [aux_sym_preproc_include_token1] = ACTIONS(1388), [aux_sym_preproc_def_token1] = ACTIONS(1388), [aux_sym_preproc_if_token1] = ACTIONS(1388), @@ -72207,109 +69072,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [104] = { - [sym_declaration] = STATE(105), - [sym_type_definition] = STATE(105), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5753), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [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__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [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(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(105), - [sym_identifier] = ACTIONS(1570), - [aux_sym_preproc_include_token1] = ACTIONS(1384), - [aux_sym_preproc_def_token1] = ACTIONS(1384), - [aux_sym_preproc_if_token1] = ACTIONS(1384), - [aux_sym_preproc_if_token2] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), - [aux_sym_preproc_else_token1] = ACTIONS(1384), - [aux_sym_preproc_elif_token1] = ACTIONS(1384), - [sym_preproc_directive] = ACTIONS(1384), + [105] = { + [sym_declaration] = STATE(103), + [sym_type_definition] = STATE(103), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4558), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(103), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [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__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [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(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(103), + [sym_identifier] = ACTIONS(1624), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token2] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [aux_sym_preproc_else_token1] = ACTIONS(1364), + [aux_sym_preproc_elif_token1] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1386), + [anon_sym_AMP_AMP] = ACTIONS(1370), [anon_sym_AMP] = ACTIONS(1372), [anon_sym_SEMI] = ACTIONS(363), [anon_sym___extension__] = ACTIONS(365), @@ -72319,13 +69184,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1384), - [anon_sym___cdecl] = ACTIONS(1384), - [anon_sym___clrcall] = ACTIONS(1384), - [anon_sym___stdcall] = ACTIONS(1384), - [anon_sym___fastcall] = ACTIONS(1384), - [anon_sym___thiscall] = ACTIONS(1384), - [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym___based] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(371), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -72357,10 +69222,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), [anon_sym_if] = ACTIONS(375), - [anon_sym_else] = ACTIONS(1384), + [anon_sym_else] = ACTIONS(1364), [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), [anon_sym_while] = ACTIONS(383), [anon_sym_do] = ACTIONS(385), [anon_sym_for] = ACTIONS(387), @@ -72402,17 +69267,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1384), + [anon_sym_explicit] = ACTIONS(1364), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(1384), + [anon_sym_operator] = ACTIONS(1364), [anon_sym_try] = ACTIONS(399), [anon_sym_delete] = ACTIONS(135), [anon_sym_throw] = ACTIONS(401), - [anon_sym_namespace] = ACTIONS(1384), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_static_assert] = ACTIONS(1384), - [anon_sym_concept] = ACTIONS(1384), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_using] = ACTIONS(1364), + [anon_sym_static_assert] = ACTIONS(1364), + [anon_sym_concept] = ACTIONS(1364), [anon_sym_co_return] = ACTIONS(411), [anon_sym_co_yield] = ACTIONS(413), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -72425,310 +69290,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [105] = { - [sym_declaration] = STATE(105), - [sym_type_definition] = STATE(105), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5753), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [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__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [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(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(105), - [sym_identifier] = ACTIONS(1572), - [aux_sym_preproc_include_token1] = ACTIONS(1395), - [aux_sym_preproc_def_token1] = ACTIONS(1395), - [aux_sym_preproc_if_token1] = ACTIONS(1395), - [aux_sym_preproc_if_token2] = ACTIONS(1395), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1395), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1395), - [aux_sym_preproc_else_token1] = ACTIONS(1395), - [aux_sym_preproc_elif_token1] = ACTIONS(1395), - [sym_preproc_directive] = ACTIONS(1395), - [anon_sym_LPAREN2] = ACTIONS(1397), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_AMP_AMP] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym___extension__] = ACTIONS(1578), - [anon_sym_typedef] = ACTIONS(1581), - [anon_sym_extern] = ACTIONS(1423), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_COLON_COLON] = ACTIONS(1429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1435), - [anon_sym___based] = ACTIONS(1395), - [anon_sym___cdecl] = ACTIONS(1395), - [anon_sym___clrcall] = ACTIONS(1395), - [anon_sym___stdcall] = ACTIONS(1395), - [anon_sym___fastcall] = ACTIONS(1395), - [anon_sym___thiscall] = ACTIONS(1395), - [anon_sym___vectorcall] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_signed] = ACTIONS(1441), - [anon_sym_unsigned] = ACTIONS(1441), - [anon_sym_long] = ACTIONS(1441), - [anon_sym_short] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_register] = ACTIONS(1423), - [anon_sym_inline] = ACTIONS(1423), - [anon_sym___inline] = ACTIONS(1423), - [anon_sym___inline__] = ACTIONS(1423), - [anon_sym___forceinline] = ACTIONS(1423), - [anon_sym_thread_local] = ACTIONS(1423), - [anon_sym___thread] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_constexpr] = ACTIONS(1447), - [anon_sym_volatile] = ACTIONS(1447), - [anon_sym_restrict] = ACTIONS(1447), - [anon_sym___restrict__] = ACTIONS(1447), - [anon_sym__Atomic] = ACTIONS(1447), - [anon_sym__Noreturn] = ACTIONS(1447), - [anon_sym_noreturn] = ACTIONS(1447), - [anon_sym_mutable] = ACTIONS(1447), - [anon_sym_constinit] = ACTIONS(1447), - [anon_sym_consteval] = ACTIONS(1447), - [sym_primitive_type] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1453), - [anon_sym_class] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1459), - [anon_sym_union] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_else] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1590), - [anon_sym_case] = ACTIONS(1395), - [anon_sym_default] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1602), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_goto] = ACTIONS(1611), - [anon_sym_not] = ACTIONS(1403), - [anon_sym_compl] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1492), - [anon_sym_PLUS_PLUS] = ACTIONS(1492), - [anon_sym_sizeof] = ACTIONS(1495), - [anon_sym___alignof__] = ACTIONS(1498), - [anon_sym___alignof] = ACTIONS(1498), - [anon_sym__alignof] = ACTIONS(1498), - [anon_sym_alignof] = ACTIONS(1498), - [anon_sym__Alignof] = ACTIONS(1498), - [anon_sym_offsetof] = ACTIONS(1501), - [anon_sym__Generic] = ACTIONS(1504), - [anon_sym_asm] = ACTIONS(1507), - [anon_sym___asm__] = ACTIONS(1507), - [sym_number_literal] = ACTIONS(1510), - [anon_sym_L_SQUOTE] = ACTIONS(1513), - [anon_sym_u_SQUOTE] = ACTIONS(1513), - [anon_sym_U_SQUOTE] = ACTIONS(1513), - [anon_sym_u8_SQUOTE] = ACTIONS(1513), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_L_DQUOTE] = ACTIONS(1516), - [anon_sym_u_DQUOTE] = ACTIONS(1516), - [anon_sym_U_DQUOTE] = ACTIONS(1516), - [anon_sym_u8_DQUOTE] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [sym_true] = ACTIONS(1519), - [sym_false] = ACTIONS(1519), - [anon_sym_NULL] = ACTIONS(1522), - [anon_sym_nullptr] = ACTIONS(1522), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1525), - [anon_sym_decltype] = ACTIONS(1528), - [anon_sym_virtual] = ACTIONS(1531), - [anon_sym_alignas] = ACTIONS(1534), - [anon_sym_explicit] = ACTIONS(1395), - [anon_sym_typename] = ACTIONS(1537), - [anon_sym_template] = ACTIONS(1540), - [anon_sym_operator] = ACTIONS(1395), - [anon_sym_try] = ACTIONS(1614), - [anon_sym_delete] = ACTIONS(1546), - [anon_sym_throw] = ACTIONS(1617), - [anon_sym_namespace] = ACTIONS(1395), - [anon_sym_using] = ACTIONS(1395), - [anon_sym_static_assert] = ACTIONS(1395), - [anon_sym_concept] = ACTIONS(1395), - [anon_sym_co_return] = ACTIONS(1620), - [anon_sym_co_yield] = ACTIONS(1623), - [anon_sym_R_DQUOTE] = ACTIONS(1558), - [anon_sym_LR_DQUOTE] = ACTIONS(1558), - [anon_sym_uR_DQUOTE] = ACTIONS(1558), - [anon_sym_UR_DQUOTE] = ACTIONS(1558), - [anon_sym_u8R_DQUOTE] = ACTIONS(1558), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1564), - [anon_sym_requires] = ACTIONS(1567), - [sym_this] = ACTIONS(1519), - }, [106] = { - [sym_declaration] = STATE(108), - [sym_type_definition] = STATE(108), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5771), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(108), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [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__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [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(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(108), + [sym_declaration] = STATE(119), + [sym_type_definition] = STATE(119), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(119), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [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__expression] = STATE(4151), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7452), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [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(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(119), + [ts_builtin_sym_end] = ACTIONS(1386), [sym_identifier] = ACTIONS(1626), [aux_sym_preproc_include_token1] = ACTIONS(1384), [aux_sym_preproc_def_token1] = ACTIONS(1384), @@ -72744,9 +69392,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP_AMP] = ACTIONS(1386), [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym___extension__] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), @@ -72759,8 +69407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1384), [anon_sym___thiscall] = ACTIONS(1384), [anon_sym___vectorcall] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -72790,18 +69437,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), + [anon_sym_if] = ACTIONS(73), [anon_sym_else] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(75), [anon_sym_case] = ACTIONS(1384), [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_while] = ACTIONS(81), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(85), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -72840,15 +69487,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), [anon_sym_operator] = ACTIONS(1384), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), + [anon_sym_throw] = ACTIONS(137), [anon_sym_namespace] = ACTIONS(1384), [anon_sym_using] = ACTIONS(1384), [anon_sym_static_assert] = ACTIONS(1384), [anon_sym_concept] = ACTIONS(1384), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -72860,123 +69507,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [107] = { - [sym_declaration] = STATE(116), - [sym_type_definition] = STATE(116), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5685), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(116), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(116), - [sym_labeled_statement] = STATE(116), - [sym_expression_statement] = STATE(116), - [sym_if_statement] = STATE(116), - [sym_switch_statement] = STATE(116), - [sym_while_statement] = STATE(116), - [sym_do_statement] = STATE(116), - [sym_for_statement] = STATE(116), - [sym_return_statement] = STATE(116), - [sym_break_statement] = STATE(116), - [sym_continue_statement] = STATE(116), - [sym_goto_statement] = STATE(116), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(116), - [sym_co_return_statement] = STATE(116), - [sym_co_yield_statement] = STATE(116), - [sym_throw_statement] = STATE(116), - [sym_try_statement] = STATE(116), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(1628), - [aux_sym_preproc_include_token1] = ACTIONS(1384), - [aux_sym_preproc_def_token1] = ACTIONS(1384), - [aux_sym_preproc_if_token1] = ACTIONS(1384), - [aux_sym_preproc_if_token2] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), - [sym_preproc_directive] = ACTIONS(1384), + [sym_declaration] = STATE(117), + [sym_type_definition] = STATE(117), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4571), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(117), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(117), + [sym_labeled_statement] = STATE(117), + [sym_expression_statement] = STATE(117), + [sym_if_statement] = STATE(117), + [sym_switch_statement] = STATE(117), + [sym_while_statement] = STATE(117), + [sym_do_statement] = STATE(117), + [sym_for_statement] = STATE(117), + [sym_return_statement] = STATE(117), + [sym_break_statement] = STATE(117), + [sym_continue_statement] = STATE(117), + [sym_goto_statement] = STATE(117), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(117), + [sym_co_return_statement] = STATE(117), + [sym_co_yield_statement] = STATE(117), + [sym_throw_statement] = STATE(117), + [sym_try_statement] = STATE(117), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(117), + [sym_identifier] = ACTIONS(1630), + [aux_sym_preproc_include_token1] = ACTIONS(1388), + [aux_sym_preproc_def_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), + [sym_preproc_directive] = ACTIONS(1388), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1386), + [anon_sym_AMP_AMP] = ACTIONS(1390), [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym___extension__] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1384), - [anon_sym___cdecl] = ACTIONS(1384), - [anon_sym___clrcall] = ACTIONS(1384), - [anon_sym___stdcall] = ACTIONS(1384), - [anon_sym___fastcall] = ACTIONS(1384), - [anon_sym___thiscall] = ACTIONS(1384), - [anon_sym___vectorcall] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym___based] = ACTIONS(1388), + [anon_sym___cdecl] = ACTIONS(1388), + [anon_sym___clrcall] = ACTIONS(1388), + [anon_sym___stdcall] = ACTIONS(1388), + [anon_sym___fastcall] = ACTIONS(1388), + [anon_sym___thiscall] = ACTIONS(1388), + [anon_sym___vectorcall] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_RBRACE] = ACTIONS(1390), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -73006,18 +69653,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(189), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -73052,19 +69699,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1384), + [anon_sym_explicit] = ACTIONS(1388), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(1384), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_operator] = ACTIONS(1388), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1384), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_static_assert] = ACTIONS(1384), - [anon_sym_concept] = ACTIONS(1384), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_using] = ACTIONS(1388), + [anon_sym_static_assert] = ACTIONS(1388), + [anon_sym_concept] = ACTIONS(1388), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -73076,339 +69723,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [108] = { - [sym_declaration] = STATE(108), - [sym_type_definition] = STATE(108), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5771), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(108), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [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__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [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(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(108), - [sym_identifier] = ACTIONS(1630), - [aux_sym_preproc_include_token1] = ACTIONS(1395), - [aux_sym_preproc_def_token1] = ACTIONS(1395), - [aux_sym_preproc_if_token1] = ACTIONS(1395), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1395), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1395), - [sym_preproc_directive] = ACTIONS(1395), - [anon_sym_LPAREN2] = ACTIONS(1397), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_AMP_AMP] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym___extension__] = ACTIONS(1636), - [anon_sym_typedef] = ACTIONS(1639), - [anon_sym_extern] = ACTIONS(1423), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_COLON_COLON] = ACTIONS(1429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1435), - [anon_sym___based] = ACTIONS(1395), - [anon_sym___cdecl] = ACTIONS(1395), - [anon_sym___clrcall] = ACTIONS(1395), - [anon_sym___stdcall] = ACTIONS(1395), - [anon_sym___fastcall] = ACTIONS(1395), - [anon_sym___thiscall] = ACTIONS(1395), - [anon_sym___vectorcall] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1642), - [anon_sym_RBRACE] = ACTIONS(1409), - [anon_sym_signed] = ACTIONS(1441), - [anon_sym_unsigned] = ACTIONS(1441), - [anon_sym_long] = ACTIONS(1441), - [anon_sym_short] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_register] = ACTIONS(1423), - [anon_sym_inline] = ACTIONS(1423), - [anon_sym___inline] = ACTIONS(1423), - [anon_sym___inline__] = ACTIONS(1423), - [anon_sym___forceinline] = ACTIONS(1423), - [anon_sym_thread_local] = ACTIONS(1423), - [anon_sym___thread] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_constexpr] = ACTIONS(1447), - [anon_sym_volatile] = ACTIONS(1447), - [anon_sym_restrict] = ACTIONS(1447), - [anon_sym___restrict__] = ACTIONS(1447), - [anon_sym__Atomic] = ACTIONS(1447), - [anon_sym__Noreturn] = ACTIONS(1447), - [anon_sym_noreturn] = ACTIONS(1447), - [anon_sym_mutable] = ACTIONS(1447), - [anon_sym_constinit] = ACTIONS(1447), - [anon_sym_consteval] = ACTIONS(1447), - [sym_primitive_type] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1453), - [anon_sym_class] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1459), - [anon_sym_union] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_else] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1648), - [anon_sym_case] = ACTIONS(1395), - [anon_sym_default] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1651), - [anon_sym_do] = ACTIONS(1654), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_break] = ACTIONS(1663), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_goto] = ACTIONS(1669), - [anon_sym_not] = ACTIONS(1403), - [anon_sym_compl] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1492), - [anon_sym_PLUS_PLUS] = ACTIONS(1492), - [anon_sym_sizeof] = ACTIONS(1495), - [anon_sym___alignof__] = ACTIONS(1498), - [anon_sym___alignof] = ACTIONS(1498), - [anon_sym__alignof] = ACTIONS(1498), - [anon_sym_alignof] = ACTIONS(1498), - [anon_sym__Alignof] = ACTIONS(1498), - [anon_sym_offsetof] = ACTIONS(1501), - [anon_sym__Generic] = ACTIONS(1504), - [anon_sym_asm] = ACTIONS(1507), - [anon_sym___asm__] = ACTIONS(1507), - [sym_number_literal] = ACTIONS(1510), - [anon_sym_L_SQUOTE] = ACTIONS(1513), - [anon_sym_u_SQUOTE] = ACTIONS(1513), - [anon_sym_U_SQUOTE] = ACTIONS(1513), - [anon_sym_u8_SQUOTE] = ACTIONS(1513), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_L_DQUOTE] = ACTIONS(1516), - [anon_sym_u_DQUOTE] = ACTIONS(1516), - [anon_sym_U_DQUOTE] = ACTIONS(1516), - [anon_sym_u8_DQUOTE] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [sym_true] = ACTIONS(1519), - [sym_false] = ACTIONS(1519), - [anon_sym_NULL] = ACTIONS(1522), - [anon_sym_nullptr] = ACTIONS(1522), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1525), - [anon_sym_decltype] = ACTIONS(1528), - [anon_sym_virtual] = ACTIONS(1531), - [anon_sym_alignas] = ACTIONS(1534), - [anon_sym_explicit] = ACTIONS(1395), - [anon_sym_typename] = ACTIONS(1537), - [anon_sym_template] = ACTIONS(1540), - [anon_sym_operator] = ACTIONS(1395), - [anon_sym_try] = ACTIONS(1672), - [anon_sym_delete] = ACTIONS(1546), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1395), - [anon_sym_using] = ACTIONS(1395), - [anon_sym_static_assert] = ACTIONS(1395), - [anon_sym_concept] = ACTIONS(1395), - [anon_sym_co_return] = ACTIONS(1678), - [anon_sym_co_yield] = ACTIONS(1681), - [anon_sym_R_DQUOTE] = ACTIONS(1558), - [anon_sym_LR_DQUOTE] = ACTIONS(1558), - [anon_sym_uR_DQUOTE] = ACTIONS(1558), - [anon_sym_UR_DQUOTE] = ACTIONS(1558), - [anon_sym_u8R_DQUOTE] = ACTIONS(1558), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1564), - [anon_sym_requires] = ACTIONS(1567), - [sym_this] = ACTIONS(1519), - }, - [109] = { - [sym_declaration] = STATE(116), - [sym_type_definition] = STATE(116), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5685), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(116), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(116), - [sym_labeled_statement] = STATE(116), - [sym_expression_statement] = STATE(116), - [sym_if_statement] = STATE(116), - [sym_switch_statement] = STATE(116), - [sym_while_statement] = STATE(116), - [sym_do_statement] = STATE(116), - [sym_for_statement] = STATE(116), - [sym_return_statement] = STATE(116), - [sym_break_statement] = STATE(116), - [sym_continue_statement] = STATE(116), - [sym_goto_statement] = STATE(116), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(116), - [sym_co_return_statement] = STATE(116), - [sym_co_yield_statement] = STATE(116), - [sym_throw_statement] = STATE(116), - [sym_try_statement] = STATE(116), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(1628), - [aux_sym_preproc_include_token1] = ACTIONS(1380), - [aux_sym_preproc_def_token1] = ACTIONS(1380), - [aux_sym_preproc_if_token1] = ACTIONS(1380), - [aux_sym_preproc_if_token2] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), - [sym_preproc_directive] = ACTIONS(1380), + [sym_declaration] = STATE(110), + [sym_type_definition] = STATE(110), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(110), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [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__expression] = STATE(4151), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7452), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [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(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(110), + [ts_builtin_sym_end] = ACTIONS(1390), + [sym_identifier] = ACTIONS(1626), + [aux_sym_preproc_include_token1] = ACTIONS(1388), + [aux_sym_preproc_def_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), + [sym_preproc_directive] = ACTIONS(1388), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1382), + [anon_sym_AMP_AMP] = ACTIONS(1390), [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym___extension__] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym___extension__] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1380), - [anon_sym___cdecl] = ACTIONS(1380), - [anon_sym___clrcall] = ACTIONS(1380), - [anon_sym___stdcall] = ACTIONS(1380), - [anon_sym___fastcall] = ACTIONS(1380), - [anon_sym___thiscall] = ACTIONS(1380), - [anon_sym___vectorcall] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym___based] = ACTIONS(1388), + [anon_sym___cdecl] = ACTIONS(1388), + [anon_sym___clrcall] = ACTIONS(1388), + [anon_sym___stdcall] = ACTIONS(1388), + [anon_sym___fastcall] = ACTIONS(1388), + [anon_sym___thiscall] = ACTIONS(1388), + [anon_sym___vectorcall] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -73438,18 +69869,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1380), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(73), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(81), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(85), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -73484,19 +69915,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1380), + [anon_sym_explicit] = ACTIONS(1388), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(1380), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_operator] = ACTIONS(1388), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1380), - [anon_sym_using] = ACTIONS(1380), - [anon_sym_static_assert] = ACTIONS(1380), - [anon_sym_concept] = ACTIONS(1380), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_using] = ACTIONS(1388), + [anon_sym_static_assert] = ACTIONS(1388), + [anon_sym_concept] = ACTIONS(1388), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -73507,124 +69938,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [110] = { - [sym_declaration] = STATE(108), - [sym_type_definition] = STATE(108), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5771), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(108), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [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__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [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(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(108), - [sym_identifier] = ACTIONS(1626), - [aux_sym_preproc_include_token1] = ACTIONS(1380), - [aux_sym_preproc_def_token1] = ACTIONS(1380), - [aux_sym_preproc_if_token1] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), - [sym_preproc_directive] = ACTIONS(1380), + [109] = { + [sym_declaration] = STATE(111), + [sym_type_definition] = STATE(111), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4571), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(111), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [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__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [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(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(111), + [sym_identifier] = ACTIONS(1630), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1382), + [anon_sym_AMP_AMP] = ACTIONS(1370), [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1380), - [anon_sym___cdecl] = ACTIONS(1380), - [anon_sym___clrcall] = ACTIONS(1380), - [anon_sym___stdcall] = ACTIONS(1380), - [anon_sym___fastcall] = ACTIONS(1380), - [anon_sym___thiscall] = ACTIONS(1380), - [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym___based] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1370), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -73654,18 +70085,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1380), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(189), + [anon_sym_else] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -73700,19 +70131,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1380), + [anon_sym_explicit] = ACTIONS(1364), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(1380), - [anon_sym_try] = ACTIONS(291), + [anon_sym_operator] = ACTIONS(1364), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(1380), - [anon_sym_using] = ACTIONS(1380), - [anon_sym_static_assert] = ACTIONS(1380), - [anon_sym_concept] = ACTIONS(1380), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_using] = ACTIONS(1364), + [anon_sym_static_assert] = ACTIONS(1364), + [anon_sym_concept] = ACTIONS(1364), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -73723,124 +70154,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [111] = { - [sym_declaration] = STATE(107), - [sym_type_definition] = STATE(107), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5685), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(107), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [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__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [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(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(107), - [sym_identifier] = ACTIONS(1628), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token2] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), + [110] = { + [sym_declaration] = STATE(119), + [sym_type_definition] = STATE(119), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(119), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [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__expression] = STATE(4151), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7452), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [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(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(119), + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1626), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1370), + [anon_sym_AMP_AMP] = ACTIONS(1382), [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym___extension__] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym___extension__] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1364), - [anon_sym___cdecl] = ACTIONS(1364), - [anon_sym___clrcall] = ACTIONS(1364), - [anon_sym___stdcall] = ACTIONS(1364), - [anon_sym___fastcall] = ACTIONS(1364), - [anon_sym___thiscall] = ACTIONS(1364), - [anon_sym___vectorcall] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym___based] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -73870,18 +70301,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(73), + [anon_sym_else] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(81), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(85), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -73916,19 +70347,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1364), + [anon_sym_explicit] = ACTIONS(1380), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(1364), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_operator] = ACTIONS(1380), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_using] = ACTIONS(1364), - [anon_sym_static_assert] = ACTIONS(1364), - [anon_sym_concept] = ACTIONS(1364), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1380), + [anon_sym_using] = ACTIONS(1380), + [anon_sym_static_assert] = ACTIONS(1380), + [anon_sym_concept] = ACTIONS(1380), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -73939,124 +70370,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [112] = { - [sym_declaration] = STATE(109), - [sym_type_definition] = STATE(109), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5685), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(109), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [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__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [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(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(1628), - [aux_sym_preproc_include_token1] = ACTIONS(1388), - [aux_sym_preproc_def_token1] = ACTIONS(1388), - [aux_sym_preproc_if_token1] = ACTIONS(1388), - [aux_sym_preproc_if_token2] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), - [sym_preproc_directive] = ACTIONS(1388), + [111] = { + [sym_declaration] = STATE(112), + [sym_type_definition] = STATE(112), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4571), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(112), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(112), + [sym_co_return_statement] = STATE(112), + [sym_co_yield_statement] = STATE(112), + [sym_throw_statement] = STATE(112), + [sym_try_statement] = STATE(112), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(112), + [sym_identifier] = ACTIONS(1630), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1390), + [anon_sym_AMP_AMP] = ACTIONS(1386), [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym___extension__] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1388), - [anon_sym___cdecl] = ACTIONS(1388), - [anon_sym___clrcall] = ACTIONS(1388), - [anon_sym___stdcall] = ACTIONS(1388), - [anon_sym___fastcall] = ACTIONS(1388), - [anon_sym___thiscall] = ACTIONS(1388), - [anon_sym___vectorcall] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym___based] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_RBRACE] = ACTIONS(1386), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -74086,18 +70517,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(189), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -74132,19 +70563,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1388), + [anon_sym_explicit] = ACTIONS(1384), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(1388), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_operator] = ACTIONS(1384), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1388), - [anon_sym_using] = ACTIONS(1388), - [anon_sym_static_assert] = ACTIONS(1388), - [anon_sym_concept] = ACTIONS(1388), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(1384), + [anon_sym_using] = ACTIONS(1384), + [anon_sym_static_assert] = ACTIONS(1384), + [anon_sym_concept] = ACTIONS(1384), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -74155,22 +70586,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, + [112] = { + [sym_declaration] = STATE(112), + [sym_type_definition] = STATE(112), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4571), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(112), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(112), + [sym_co_return_statement] = STATE(112), + [sym_co_yield_statement] = STATE(112), + [sym_throw_statement] = STATE(112), + [sym_try_statement] = STATE(112), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(112), + [sym_identifier] = ACTIONS(1632), + [aux_sym_preproc_include_token1] = ACTIONS(1395), + [aux_sym_preproc_def_token1] = ACTIONS(1395), + [aux_sym_preproc_if_token1] = ACTIONS(1395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1395), + [sym_preproc_directive] = ACTIONS(1395), + [anon_sym_LPAREN2] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_AMP_AMP] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym___extension__] = ACTIONS(1638), + [anon_sym_typedef] = ACTIONS(1641), + [anon_sym_extern] = ACTIONS(1423), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_COLON_COLON] = ACTIONS(1429), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1435), + [anon_sym___based] = ACTIONS(1395), + [anon_sym___cdecl] = ACTIONS(1395), + [anon_sym___clrcall] = ACTIONS(1395), + [anon_sym___stdcall] = ACTIONS(1395), + [anon_sym___fastcall] = ACTIONS(1395), + [anon_sym___thiscall] = ACTIONS(1395), + [anon_sym___vectorcall] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1409), + [anon_sym_signed] = ACTIONS(1441), + [anon_sym_unsigned] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_register] = ACTIONS(1423), + [anon_sym_inline] = ACTIONS(1423), + [anon_sym___inline] = ACTIONS(1423), + [anon_sym___inline__] = ACTIONS(1423), + [anon_sym___forceinline] = ACTIONS(1423), + [anon_sym_thread_local] = ACTIONS(1423), + [anon_sym___thread] = ACTIONS(1423), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_constexpr] = ACTIONS(1447), + [anon_sym_volatile] = ACTIONS(1447), + [anon_sym_restrict] = ACTIONS(1447), + [anon_sym___restrict__] = ACTIONS(1447), + [anon_sym__Atomic] = ACTIONS(1447), + [anon_sym__Noreturn] = ACTIONS(1447), + [anon_sym_noreturn] = ACTIONS(1447), + [anon_sym_mutable] = ACTIONS(1447), + [anon_sym_constinit] = ACTIONS(1447), + [anon_sym_consteval] = ACTIONS(1447), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1459), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_else] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1650), + [anon_sym_case] = ACTIONS(1395), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_do] = ACTIONS(1656), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_break] = ACTIONS(1665), + [anon_sym_continue] = ACTIONS(1668), + [anon_sym_goto] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1403), + [anon_sym_compl] = ACTIONS(1403), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1492), + [anon_sym_sizeof] = ACTIONS(1495), + [anon_sym___alignof__] = ACTIONS(1498), + [anon_sym___alignof] = ACTIONS(1498), + [anon_sym__alignof] = ACTIONS(1498), + [anon_sym_alignof] = ACTIONS(1498), + [anon_sym__Alignof] = ACTIONS(1498), + [anon_sym_offsetof] = ACTIONS(1501), + [anon_sym__Generic] = ACTIONS(1504), + [anon_sym_asm] = ACTIONS(1507), + [anon_sym___asm__] = ACTIONS(1507), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1513), + [anon_sym_u_SQUOTE] = ACTIONS(1513), + [anon_sym_U_SQUOTE] = ACTIONS(1513), + [anon_sym_u8_SQUOTE] = ACTIONS(1513), + [anon_sym_SQUOTE] = ACTIONS(1513), + [anon_sym_L_DQUOTE] = ACTIONS(1516), + [anon_sym_u_DQUOTE] = ACTIONS(1516), + [anon_sym_U_DQUOTE] = ACTIONS(1516), + [anon_sym_u8_DQUOTE] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym_true] = ACTIONS(1519), + [sym_false] = ACTIONS(1519), + [anon_sym_NULL] = ACTIONS(1522), + [anon_sym_nullptr] = ACTIONS(1522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1525), + [anon_sym_decltype] = ACTIONS(1528), + [anon_sym_virtual] = ACTIONS(1531), + [anon_sym_alignas] = ACTIONS(1534), + [anon_sym_explicit] = ACTIONS(1395), + [anon_sym_typename] = ACTIONS(1537), + [anon_sym_template] = ACTIONS(1540), + [anon_sym_operator] = ACTIONS(1395), + [anon_sym_try] = ACTIONS(1674), + [anon_sym_delete] = ACTIONS(1546), + [anon_sym_throw] = ACTIONS(1677), + [anon_sym_namespace] = ACTIONS(1395), + [anon_sym_using] = ACTIONS(1395), + [anon_sym_static_assert] = ACTIONS(1395), + [anon_sym_concept] = ACTIONS(1395), + [anon_sym_co_return] = ACTIONS(1680), + [anon_sym_co_yield] = ACTIONS(1683), + [anon_sym_R_DQUOTE] = ACTIONS(1558), + [anon_sym_LR_DQUOTE] = ACTIONS(1558), + [anon_sym_uR_DQUOTE] = ACTIONS(1558), + [anon_sym_UR_DQUOTE] = ACTIONS(1558), + [anon_sym_u8R_DQUOTE] = ACTIONS(1558), + [anon_sym_co_await] = ACTIONS(1561), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_requires] = ACTIONS(1567), + [sym_this] = ACTIONS(1519), + }, [113] = { [sym_declaration] = STATE(113), [sym_type_definition] = STATE(113), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5724), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4592), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), [sym_compound_statement] = STATE(113), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(113), [sym_labeled_statement] = STATE(113), [sym_expression_statement] = STATE(113), @@ -74183,69 +70830,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(113), [sym_continue_statement] = STATE(113), [sym_goto_statement] = STATE(113), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), + [sym__expression] = STATE(4063), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7688), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), [sym_for_range_loop] = STATE(113), [sym_co_return_statement] = STATE(113), [sym_co_yield_statement] = STATE(113), [sym_throw_statement] = STATE(113), [sym_try_statement] = STATE(113), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), [aux_sym_case_statement_repeat1] = STATE(113), - [ts_builtin_sym_end] = ACTIONS(1409), - [sym_identifier] = ACTIONS(1684), + [sym_identifier] = ACTIONS(1686), [aux_sym_preproc_include_token1] = ACTIONS(1395), [aux_sym_preproc_def_token1] = ACTIONS(1395), [aux_sym_preproc_if_token1] = ACTIONS(1395), + [aux_sym_preproc_if_token2] = ACTIONS(1395), [aux_sym_preproc_ifdef_token1] = ACTIONS(1395), [aux_sym_preproc_ifdef_token2] = ACTIONS(1395), [sym_preproc_directive] = ACTIONS(1395), @@ -74257,9 +70904,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1406), [anon_sym_AMP_AMP] = ACTIONS(1409), [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym___extension__] = ACTIONS(1690), - [anon_sym_typedef] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym___extension__] = ACTIONS(1692), + [anon_sym_typedef] = ACTIONS(1695), [anon_sym_extern] = ACTIONS(1423), [anon_sym___attribute__] = ACTIONS(1426), [anon_sym_COLON_COLON] = ACTIONS(1429), @@ -74272,7 +70919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1395), [anon_sym___thiscall] = ACTIONS(1395), [anon_sym___vectorcall] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), [anon_sym_signed] = ACTIONS(1441), [anon_sym_unsigned] = ACTIONS(1441), [anon_sym_long] = ACTIONS(1441), @@ -74302,18 +70949,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(1456), [anon_sym_struct] = ACTIONS(1459), [anon_sym_union] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1701), [anon_sym_else] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1704), [anon_sym_case] = ACTIONS(1395), [anon_sym_default] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1720), - [anon_sym_goto] = ACTIONS(1723), + [anon_sym_while] = ACTIONS(1707), + [anon_sym_do] = ACTIONS(1710), + [anon_sym_for] = ACTIONS(1713), + [anon_sym_return] = ACTIONS(1716), + [anon_sym_break] = ACTIONS(1719), + [anon_sym_continue] = ACTIONS(1722), + [anon_sym_goto] = ACTIONS(1725), [anon_sym_not] = ACTIONS(1403), [anon_sym_compl] = ACTIONS(1403), [anon_sym_DASH_DASH] = ACTIONS(1492), @@ -74352,15 +70999,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(1537), [anon_sym_template] = ACTIONS(1540), [anon_sym_operator] = ACTIONS(1395), - [anon_sym_try] = ACTIONS(1726), + [anon_sym_try] = ACTIONS(1728), [anon_sym_delete] = ACTIONS(1546), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_namespace] = ACTIONS(1395), [anon_sym_using] = ACTIONS(1395), [anon_sym_static_assert] = ACTIONS(1395), [anon_sym_concept] = ACTIONS(1395), - [anon_sym_co_return] = ACTIONS(1732), - [anon_sym_co_yield] = ACTIONS(1735), + [anon_sym_co_return] = ACTIONS(1734), + [anon_sym_co_yield] = ACTIONS(1737), [anon_sym_R_DQUOTE] = ACTIONS(1558), [anon_sym_LR_DQUOTE] = ACTIONS(1558), [anon_sym_uR_DQUOTE] = ACTIONS(1558), @@ -74372,123 +71019,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1519), }, [114] = { - [sym_declaration] = STATE(110), - [sym_type_definition] = STATE(110), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5771), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [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__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [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(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(1626), - [aux_sym_preproc_include_token1] = ACTIONS(1388), - [aux_sym_preproc_def_token1] = ACTIONS(1388), - [aux_sym_preproc_if_token1] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), - [sym_preproc_directive] = ACTIONS(1388), + [sym_declaration] = STATE(113), + [sym_type_definition] = STATE(113), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4592), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(113), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(113), + [sym_labeled_statement] = STATE(113), + [sym_expression_statement] = STATE(113), + [sym_if_statement] = STATE(113), + [sym_switch_statement] = STATE(113), + [sym_while_statement] = STATE(113), + [sym_do_statement] = STATE(113), + [sym_for_statement] = STATE(113), + [sym_return_statement] = STATE(113), + [sym_break_statement] = STATE(113), + [sym_continue_statement] = STATE(113), + [sym_goto_statement] = STATE(113), + [sym__expression] = STATE(4063), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7688), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(113), + [sym_co_return_statement] = STATE(113), + [sym_co_yield_statement] = STATE(113), + [sym_throw_statement] = STATE(113), + [sym_try_statement] = STATE(113), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(113), + [sym_identifier] = ACTIONS(1740), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token2] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1390), + [anon_sym_AMP_AMP] = ACTIONS(1382), [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym___extension__] = ACTIONS(812), + [anon_sym_typedef] = ACTIONS(814), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1388), - [anon_sym___cdecl] = ACTIONS(1388), - [anon_sym___clrcall] = ACTIONS(1388), - [anon_sym___stdcall] = ACTIONS(1388), - [anon_sym___fastcall] = ACTIONS(1388), - [anon_sym___thiscall] = ACTIONS(1388), - [anon_sym___vectorcall] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym___based] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(818), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -74518,18 +71165,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_if] = ACTIONS(822), + [anon_sym_else] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(830), + [anon_sym_do] = ACTIONS(832), + [anon_sym_for] = ACTIONS(834), + [anon_sym_return] = ACTIONS(836), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(842), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -74564,19 +71211,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1388), + [anon_sym_explicit] = ACTIONS(1380), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(1388), - [anon_sym_try] = ACTIONS(291), + [anon_sym_operator] = ACTIONS(1380), + [anon_sym_try] = ACTIONS(846), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(1388), - [anon_sym_using] = ACTIONS(1388), - [anon_sym_static_assert] = ACTIONS(1388), - [anon_sym_concept] = ACTIONS(1388), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_namespace] = ACTIONS(1380), + [anon_sym_using] = ACTIONS(1380), + [anon_sym_static_assert] = ACTIONS(1380), + [anon_sym_concept] = ACTIONS(1380), + [anon_sym_co_return] = ACTIONS(858), + [anon_sym_co_yield] = ACTIONS(860), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -74590,19 +71237,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [115] = { [sym_declaration] = STATE(113), [sym_type_definition] = STATE(113), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5724), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4592), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), [sym_compound_statement] = STATE(113), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(113), [sym_labeled_statement] = STATE(113), [sym_expression_statement] = STATE(113), @@ -74615,96 +71262,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(113), [sym_continue_statement] = STATE(113), [sym_goto_statement] = STATE(113), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), + [sym__expression] = STATE(4063), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7688), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), [sym_for_range_loop] = STATE(113), [sym_co_return_statement] = STATE(113), [sym_co_yield_statement] = STATE(113), [sym_throw_statement] = STATE(113), [sym_try_statement] = STATE(113), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), [aux_sym_case_statement_repeat1] = STATE(113), - [ts_builtin_sym_end] = ACTIONS(1382), - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1380), - [aux_sym_preproc_def_token1] = ACTIONS(1380), - [aux_sym_preproc_if_token1] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), - [sym_preproc_directive] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1740), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token2] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1382), + [anon_sym_AMP_AMP] = ACTIONS(1386), [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym___extension__] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym___extension__] = ACTIONS(812), + [anon_sym_typedef] = ACTIONS(814), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1380), - [anon_sym___cdecl] = ACTIONS(1380), - [anon_sym___clrcall] = ACTIONS(1380), - [anon_sym___stdcall] = ACTIONS(1380), - [anon_sym___fastcall] = ACTIONS(1380), - [anon_sym___thiscall] = ACTIONS(1380), - [anon_sym___vectorcall] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(818), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -74734,18 +71381,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(73), - [anon_sym_else] = ACTIONS(1380), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_if] = ACTIONS(822), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(830), + [anon_sym_do] = ACTIONS(832), + [anon_sym_for] = ACTIONS(834), + [anon_sym_return] = ACTIONS(836), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(842), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -74780,19 +71427,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1380), + [anon_sym_explicit] = ACTIONS(1384), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(1380), - [anon_sym_try] = ACTIONS(133), + [anon_sym_operator] = ACTIONS(1384), + [anon_sym_try] = ACTIONS(846), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_namespace] = ACTIONS(1380), - [anon_sym_using] = ACTIONS(1380), - [anon_sym_static_assert] = ACTIONS(1380), - [anon_sym_concept] = ACTIONS(1380), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_namespace] = ACTIONS(1384), + [anon_sym_using] = ACTIONS(1384), + [anon_sym_static_assert] = ACTIONS(1384), + [anon_sym_concept] = ACTIONS(1384), + [anon_sym_co_return] = ACTIONS(858), + [anon_sym_co_yield] = ACTIONS(860), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -74804,339 +71451,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [116] = { - [sym_declaration] = STATE(116), - [sym_type_definition] = STATE(116), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5685), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(116), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(116), - [sym_labeled_statement] = STATE(116), - [sym_expression_statement] = STATE(116), - [sym_if_statement] = STATE(116), - [sym_switch_statement] = STATE(116), - [sym_while_statement] = STATE(116), - [sym_do_statement] = STATE(116), - [sym_for_statement] = STATE(116), - [sym_return_statement] = STATE(116), - [sym_break_statement] = STATE(116), - [sym_continue_statement] = STATE(116), - [sym_goto_statement] = STATE(116), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(116), - [sym_co_return_statement] = STATE(116), - [sym_co_yield_statement] = STATE(116), - [sym_throw_statement] = STATE(116), - [sym_try_statement] = STATE(116), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(1742), - [aux_sym_preproc_include_token1] = ACTIONS(1395), - [aux_sym_preproc_def_token1] = ACTIONS(1395), - [aux_sym_preproc_if_token1] = ACTIONS(1395), - [aux_sym_preproc_if_token2] = ACTIONS(1395), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1395), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1395), - [sym_preproc_directive] = ACTIONS(1395), - [anon_sym_LPAREN2] = ACTIONS(1397), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_AMP_AMP] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym___extension__] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1751), - [anon_sym_extern] = ACTIONS(1423), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_COLON_COLON] = ACTIONS(1429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1435), - [anon_sym___based] = ACTIONS(1395), - [anon_sym___cdecl] = ACTIONS(1395), - [anon_sym___clrcall] = ACTIONS(1395), - [anon_sym___stdcall] = ACTIONS(1395), - [anon_sym___fastcall] = ACTIONS(1395), - [anon_sym___thiscall] = ACTIONS(1395), - [anon_sym___vectorcall] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_signed] = ACTIONS(1441), - [anon_sym_unsigned] = ACTIONS(1441), - [anon_sym_long] = ACTIONS(1441), - [anon_sym_short] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_register] = ACTIONS(1423), - [anon_sym_inline] = ACTIONS(1423), - [anon_sym___inline] = ACTIONS(1423), - [anon_sym___inline__] = ACTIONS(1423), - [anon_sym___forceinline] = ACTIONS(1423), - [anon_sym_thread_local] = ACTIONS(1423), - [anon_sym___thread] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_constexpr] = ACTIONS(1447), - [anon_sym_volatile] = ACTIONS(1447), - [anon_sym_restrict] = ACTIONS(1447), - [anon_sym___restrict__] = ACTIONS(1447), - [anon_sym__Atomic] = ACTIONS(1447), - [anon_sym__Noreturn] = ACTIONS(1447), - [anon_sym_noreturn] = ACTIONS(1447), - [anon_sym_mutable] = ACTIONS(1447), - [anon_sym_constinit] = ACTIONS(1447), - [anon_sym_consteval] = ACTIONS(1447), - [sym_primitive_type] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1453), - [anon_sym_class] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1459), - [anon_sym_union] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1760), - [anon_sym_case] = ACTIONS(1395), - [anon_sym_default] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1766), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1772), - [anon_sym_break] = ACTIONS(1775), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_goto] = ACTIONS(1781), - [anon_sym_not] = ACTIONS(1403), - [anon_sym_compl] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1492), - [anon_sym_PLUS_PLUS] = ACTIONS(1492), - [anon_sym_sizeof] = ACTIONS(1495), - [anon_sym___alignof__] = ACTIONS(1498), - [anon_sym___alignof] = ACTIONS(1498), - [anon_sym__alignof] = ACTIONS(1498), - [anon_sym_alignof] = ACTIONS(1498), - [anon_sym__Alignof] = ACTIONS(1498), - [anon_sym_offsetof] = ACTIONS(1501), - [anon_sym__Generic] = ACTIONS(1504), - [anon_sym_asm] = ACTIONS(1507), - [anon_sym___asm__] = ACTIONS(1507), - [sym_number_literal] = ACTIONS(1510), - [anon_sym_L_SQUOTE] = ACTIONS(1513), - [anon_sym_u_SQUOTE] = ACTIONS(1513), - [anon_sym_U_SQUOTE] = ACTIONS(1513), - [anon_sym_u8_SQUOTE] = ACTIONS(1513), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_L_DQUOTE] = ACTIONS(1516), - [anon_sym_u_DQUOTE] = ACTIONS(1516), - [anon_sym_U_DQUOTE] = ACTIONS(1516), - [anon_sym_u8_DQUOTE] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [sym_true] = ACTIONS(1519), - [sym_false] = ACTIONS(1519), - [anon_sym_NULL] = ACTIONS(1522), - [anon_sym_nullptr] = ACTIONS(1522), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1525), - [anon_sym_decltype] = ACTIONS(1528), - [anon_sym_virtual] = ACTIONS(1531), - [anon_sym_alignas] = ACTIONS(1534), - [anon_sym_explicit] = ACTIONS(1395), - [anon_sym_typename] = ACTIONS(1537), - [anon_sym_template] = ACTIONS(1540), - [anon_sym_operator] = ACTIONS(1395), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_delete] = ACTIONS(1546), - [anon_sym_throw] = ACTIONS(1787), - [anon_sym_namespace] = ACTIONS(1395), - [anon_sym_using] = ACTIONS(1395), - [anon_sym_static_assert] = ACTIONS(1395), - [anon_sym_concept] = ACTIONS(1395), - [anon_sym_co_return] = ACTIONS(1790), - [anon_sym_co_yield] = ACTIONS(1793), - [anon_sym_R_DQUOTE] = ACTIONS(1558), - [anon_sym_LR_DQUOTE] = ACTIONS(1558), - [anon_sym_uR_DQUOTE] = ACTIONS(1558), - [anon_sym_UR_DQUOTE] = ACTIONS(1558), - [anon_sym_u8R_DQUOTE] = ACTIONS(1558), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1564), - [anon_sym_requires] = ACTIONS(1567), - [sym_this] = ACTIONS(1519), - }, - [117] = { - [sym_declaration] = STATE(119), - [sym_type_definition] = STATE(119), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5724), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(119), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [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__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [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(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(119), - [ts_builtin_sym_end] = ACTIONS(1370), - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), + [sym_declaration] = STATE(114), + [sym_type_definition] = STATE(114), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4592), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(114), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(114), + [sym_labeled_statement] = STATE(114), + [sym_expression_statement] = STATE(114), + [sym_if_statement] = STATE(114), + [sym_switch_statement] = STATE(114), + [sym_while_statement] = STATE(114), + [sym_do_statement] = STATE(114), + [sym_for_statement] = STATE(114), + [sym_return_statement] = STATE(114), + [sym_break_statement] = STATE(114), + [sym_continue_statement] = STATE(114), + [sym_goto_statement] = STATE(114), + [sym__expression] = STATE(4063), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7688), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(114), + [sym_co_return_statement] = STATE(114), + [sym_co_yield_statement] = STATE(114), + [sym_throw_statement] = STATE(114), + [sym_try_statement] = STATE(114), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(114), + [sym_identifier] = ACTIONS(1740), + [aux_sym_preproc_include_token1] = ACTIONS(1388), + [aux_sym_preproc_def_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token2] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), + [sym_preproc_directive] = ACTIONS(1388), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1370), + [anon_sym_AMP_AMP] = ACTIONS(1390), [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym___extension__] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym___extension__] = ACTIONS(812), + [anon_sym_typedef] = ACTIONS(814), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1364), - [anon_sym___cdecl] = ACTIONS(1364), - [anon_sym___clrcall] = ACTIONS(1364), - [anon_sym___stdcall] = ACTIONS(1364), - [anon_sym___fastcall] = ACTIONS(1364), - [anon_sym___thiscall] = ACTIONS(1364), - [anon_sym___vectorcall] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1388), + [anon_sym___cdecl] = ACTIONS(1388), + [anon_sym___clrcall] = ACTIONS(1388), + [anon_sym___stdcall] = ACTIONS(1388), + [anon_sym___fastcall] = ACTIONS(1388), + [anon_sym___thiscall] = ACTIONS(1388), + [anon_sym___vectorcall] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(818), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -75166,18 +71597,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(73), - [anon_sym_else] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_if] = ACTIONS(822), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(830), + [anon_sym_do] = ACTIONS(832), + [anon_sym_for] = ACTIONS(834), + [anon_sym_return] = ACTIONS(836), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(842), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -75212,19 +71643,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1364), + [anon_sym_explicit] = ACTIONS(1388), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(1364), - [anon_sym_try] = ACTIONS(133), + [anon_sym_operator] = ACTIONS(1388), + [anon_sym_try] = ACTIONS(846), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_using] = ACTIONS(1364), - [anon_sym_static_assert] = ACTIONS(1364), - [anon_sym_concept] = ACTIONS(1364), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_using] = ACTIONS(1388), + [anon_sym_static_assert] = ACTIONS(1388), + [anon_sym_concept] = ACTIONS(1388), + [anon_sym_co_return] = ACTIONS(858), + [anon_sym_co_yield] = ACTIONS(860), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -75235,124 +71666,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [118] = { - [sym_declaration] = STATE(115), - [sym_type_definition] = STATE(115), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5724), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(115), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(115), - [sym_labeled_statement] = STATE(115), - [sym_expression_statement] = STATE(115), - [sym_if_statement] = STATE(115), - [sym_switch_statement] = STATE(115), - [sym_while_statement] = STATE(115), - [sym_do_statement] = STATE(115), - [sym_for_statement] = STATE(115), - [sym_return_statement] = STATE(115), - [sym_break_statement] = STATE(115), - [sym_continue_statement] = STATE(115), - [sym_goto_statement] = STATE(115), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(115), - [sym_co_return_statement] = STATE(115), - [sym_co_yield_statement] = STATE(115), - [sym_throw_statement] = STATE(115), - [sym_try_statement] = STATE(115), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(115), - [ts_builtin_sym_end] = ACTIONS(1390), - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1388), - [aux_sym_preproc_def_token1] = ACTIONS(1388), - [aux_sym_preproc_if_token1] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), - [sym_preproc_directive] = ACTIONS(1388), + [117] = { + [sym_declaration] = STATE(112), + [sym_type_definition] = STATE(112), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4571), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(112), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(112), + [sym_co_return_statement] = STATE(112), + [sym_co_yield_statement] = STATE(112), + [sym_throw_statement] = STATE(112), + [sym_try_statement] = STATE(112), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(112), + [sym_identifier] = ACTIONS(1630), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1390), + [anon_sym_AMP_AMP] = ACTIONS(1382), [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym___extension__] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1388), - [anon_sym___cdecl] = ACTIONS(1388), - [anon_sym___clrcall] = ACTIONS(1388), - [anon_sym___stdcall] = ACTIONS(1388), - [anon_sym___fastcall] = ACTIONS(1388), - [anon_sym___thiscall] = ACTIONS(1388), - [anon_sym___vectorcall] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_RBRACE] = ACTIONS(1382), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -75382,18 +71813,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(73), - [anon_sym_else] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_if] = ACTIONS(189), + [anon_sym_else] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -75428,19 +71859,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1388), + [anon_sym_explicit] = ACTIONS(1380), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(1388), - [anon_sym_try] = ACTIONS(133), + [anon_sym_operator] = ACTIONS(1380), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_namespace] = ACTIONS(1388), - [anon_sym_using] = ACTIONS(1388), - [anon_sym_static_assert] = ACTIONS(1388), - [anon_sym_concept] = ACTIONS(1388), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(1380), + [anon_sym_using] = ACTIONS(1380), + [anon_sym_static_assert] = ACTIONS(1380), + [anon_sym_concept] = ACTIONS(1380), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -75451,124 +71882,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [119] = { - [sym_declaration] = STATE(113), - [sym_type_definition] = STATE(113), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5724), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(113), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(113), - [sym_labeled_statement] = STATE(113), - [sym_expression_statement] = STATE(113), - [sym_if_statement] = STATE(113), - [sym_switch_statement] = STATE(113), - [sym_while_statement] = STATE(113), - [sym_do_statement] = STATE(113), - [sym_for_statement] = STATE(113), - [sym_return_statement] = STATE(113), - [sym_break_statement] = STATE(113), - [sym_continue_statement] = STATE(113), - [sym_goto_statement] = STATE(113), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(113), - [sym_co_return_statement] = STATE(113), - [sym_co_yield_statement] = STATE(113), - [sym_throw_statement] = STATE(113), - [sym_try_statement] = STATE(113), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(113), - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1384), - [aux_sym_preproc_def_token1] = ACTIONS(1384), - [aux_sym_preproc_if_token1] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), - [sym_preproc_directive] = ACTIONS(1384), + [118] = { + [sym_declaration] = STATE(115), + [sym_type_definition] = STATE(115), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4592), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(115), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym__expression] = STATE(4063), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7688), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(115), + [sym_co_return_statement] = STATE(115), + [sym_co_yield_statement] = STATE(115), + [sym_throw_statement] = STATE(115), + [sym_try_statement] = STATE(115), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(115), + [sym_identifier] = ACTIONS(1740), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token2] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1386), + [anon_sym_AMP_AMP] = ACTIONS(1370), [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym___extension__] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym___extension__] = ACTIONS(812), + [anon_sym_typedef] = ACTIONS(814), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1384), - [anon_sym___cdecl] = ACTIONS(1384), - [anon_sym___clrcall] = ACTIONS(1384), - [anon_sym___stdcall] = ACTIONS(1384), - [anon_sym___fastcall] = ACTIONS(1384), - [anon_sym___thiscall] = ACTIONS(1384), - [anon_sym___vectorcall] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(818), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -75598,18 +72029,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(73), - [anon_sym_else] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_if] = ACTIONS(822), + [anon_sym_else] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_case] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(830), + [anon_sym_do] = ACTIONS(832), + [anon_sym_for] = ACTIONS(834), + [anon_sym_return] = ACTIONS(836), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(842), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -75644,19 +72075,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1384), + [anon_sym_explicit] = ACTIONS(1364), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(1384), - [anon_sym_try] = ACTIONS(133), + [anon_sym_operator] = ACTIONS(1364), + [anon_sym_try] = ACTIONS(846), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_namespace] = ACTIONS(1384), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_static_assert] = ACTIONS(1384), - [anon_sym_concept] = ACTIONS(1384), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_using] = ACTIONS(1364), + [anon_sym_static_assert] = ACTIONS(1364), + [anon_sym_concept] = ACTIONS(1364), + [anon_sym_co_return] = ACTIONS(858), + [anon_sym_co_yield] = ACTIONS(860), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -75667,22 +72098,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, + [119] = { + [sym_declaration] = STATE(119), + [sym_type_definition] = STATE(119), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(119), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [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__expression] = STATE(4151), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7452), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [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(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(119), + [ts_builtin_sym_end] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1742), + [aux_sym_preproc_include_token1] = ACTIONS(1395), + [aux_sym_preproc_def_token1] = ACTIONS(1395), + [aux_sym_preproc_if_token1] = ACTIONS(1395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1395), + [sym_preproc_directive] = ACTIONS(1395), + [anon_sym_LPAREN2] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_AMP_AMP] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1745), + [anon_sym___extension__] = ACTIONS(1748), + [anon_sym_typedef] = ACTIONS(1751), + [anon_sym_extern] = ACTIONS(1423), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_COLON_COLON] = ACTIONS(1429), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1435), + [anon_sym___based] = ACTIONS(1395), + [anon_sym___cdecl] = ACTIONS(1395), + [anon_sym___clrcall] = ACTIONS(1395), + [anon_sym___stdcall] = ACTIONS(1395), + [anon_sym___fastcall] = ACTIONS(1395), + [anon_sym___thiscall] = ACTIONS(1395), + [anon_sym___vectorcall] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_signed] = ACTIONS(1441), + [anon_sym_unsigned] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_register] = ACTIONS(1423), + [anon_sym_inline] = ACTIONS(1423), + [anon_sym___inline] = ACTIONS(1423), + [anon_sym___inline__] = ACTIONS(1423), + [anon_sym___forceinline] = ACTIONS(1423), + [anon_sym_thread_local] = ACTIONS(1423), + [anon_sym___thread] = ACTIONS(1423), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_constexpr] = ACTIONS(1447), + [anon_sym_volatile] = ACTIONS(1447), + [anon_sym_restrict] = ACTIONS(1447), + [anon_sym___restrict__] = ACTIONS(1447), + [anon_sym__Atomic] = ACTIONS(1447), + [anon_sym__Noreturn] = ACTIONS(1447), + [anon_sym_noreturn] = ACTIONS(1447), + [anon_sym_mutable] = ACTIONS(1447), + [anon_sym_constinit] = ACTIONS(1447), + [anon_sym_consteval] = ACTIONS(1447), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1459), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1757), + [anon_sym_else] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1760), + [anon_sym_case] = ACTIONS(1395), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1763), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1775), + [anon_sym_continue] = ACTIONS(1778), + [anon_sym_goto] = ACTIONS(1781), + [anon_sym_not] = ACTIONS(1403), + [anon_sym_compl] = ACTIONS(1403), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1492), + [anon_sym_sizeof] = ACTIONS(1495), + [anon_sym___alignof__] = ACTIONS(1498), + [anon_sym___alignof] = ACTIONS(1498), + [anon_sym__alignof] = ACTIONS(1498), + [anon_sym_alignof] = ACTIONS(1498), + [anon_sym__Alignof] = ACTIONS(1498), + [anon_sym_offsetof] = ACTIONS(1501), + [anon_sym__Generic] = ACTIONS(1504), + [anon_sym_asm] = ACTIONS(1507), + [anon_sym___asm__] = ACTIONS(1507), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1513), + [anon_sym_u_SQUOTE] = ACTIONS(1513), + [anon_sym_U_SQUOTE] = ACTIONS(1513), + [anon_sym_u8_SQUOTE] = ACTIONS(1513), + [anon_sym_SQUOTE] = ACTIONS(1513), + [anon_sym_L_DQUOTE] = ACTIONS(1516), + [anon_sym_u_DQUOTE] = ACTIONS(1516), + [anon_sym_U_DQUOTE] = ACTIONS(1516), + [anon_sym_u8_DQUOTE] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym_true] = ACTIONS(1519), + [sym_false] = ACTIONS(1519), + [anon_sym_NULL] = ACTIONS(1522), + [anon_sym_nullptr] = ACTIONS(1522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1525), + [anon_sym_decltype] = ACTIONS(1528), + [anon_sym_virtual] = ACTIONS(1531), + [anon_sym_alignas] = ACTIONS(1534), + [anon_sym_explicit] = ACTIONS(1395), + [anon_sym_typename] = ACTIONS(1537), + [anon_sym_template] = ACTIONS(1540), + [anon_sym_operator] = ACTIONS(1395), + [anon_sym_try] = ACTIONS(1784), + [anon_sym_delete] = ACTIONS(1546), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_namespace] = ACTIONS(1395), + [anon_sym_using] = ACTIONS(1395), + [anon_sym_static_assert] = ACTIONS(1395), + [anon_sym_concept] = ACTIONS(1395), + [anon_sym_co_return] = ACTIONS(1790), + [anon_sym_co_yield] = ACTIONS(1793), + [anon_sym_R_DQUOTE] = ACTIONS(1558), + [anon_sym_LR_DQUOTE] = ACTIONS(1558), + [anon_sym_uR_DQUOTE] = ACTIONS(1558), + [anon_sym_UR_DQUOTE] = ACTIONS(1558), + [anon_sym_u8R_DQUOTE] = ACTIONS(1558), + [anon_sym_co_await] = ACTIONS(1561), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_requires] = ACTIONS(1567), + [sym_this] = ACTIONS(1519), + }, [120] = { [sym_declaration] = STATE(106), [sym_type_definition] = STATE(106), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5771), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), [sym_compound_statement] = STATE(106), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(106), [sym_labeled_statement] = STATE(106), [sym_expression_statement] = STATE(106), @@ -75695,64 +72342,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(106), [sym_continue_statement] = STATE(106), [sym_goto_statement] = STATE(106), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), + [sym__expression] = STATE(4151), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7452), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), [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(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), [aux_sym_case_statement_repeat1] = STATE(106), + [ts_builtin_sym_end] = ACTIONS(1370), [sym_identifier] = ACTIONS(1626), [aux_sym_preproc_include_token1] = ACTIONS(1364), [aux_sym_preproc_def_token1] = ACTIONS(1364), @@ -75768,9 +72416,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP_AMP] = ACTIONS(1370), [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym___extension__] = ACTIONS(251), - [anon_sym_typedef] = ACTIONS(253), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym___extension__] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), @@ -75783,8 +72431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1364), [anon_sym___thiscall] = ACTIONS(1364), [anon_sym___vectorcall] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -75814,18 +72461,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(265), + [anon_sym_if] = ACTIONS(73), [anon_sym_else] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(75), [anon_sym_case] = ACTIONS(1364), [anon_sym_default] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [anon_sym_while] = ACTIONS(81), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(85), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -75864,15 +72511,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), [anon_sym_operator] = ACTIONS(1364), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), + [anon_sym_throw] = ACTIONS(137), [anon_sym_namespace] = ACTIONS(1364), [anon_sym_using] = ACTIONS(1364), [anon_sym_static_assert] = ACTIONS(1364), [anon_sym_concept] = ACTIONS(1364), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -75884,92 +72531,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [121] = { - [sym_declaration] = STATE(121), - [sym_type_definition] = STATE(121), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(121), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(121), - [sym_labeled_statement] = STATE(121), - [sym_expression_statement] = STATE(121), - [sym_if_statement] = STATE(121), - [sym_switch_statement] = STATE(121), - [sym_while_statement] = STATE(121), - [sym_do_statement] = STATE(121), - [sym_for_statement] = STATE(121), - [sym_return_statement] = STATE(121), - [sym_break_statement] = STATE(121), - [sym_continue_statement] = STATE(121), - [sym_goto_statement] = STATE(121), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(121), - [sym_co_return_statement] = STATE(121), - [sym_co_yield_statement] = STATE(121), - [sym_throw_statement] = STATE(121), - [sym_try_statement] = STATE(121), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(121), + [sym_declaration] = STATE(124), + [sym_type_definition] = STATE(124), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4600), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(124), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(124), + [sym_labeled_statement] = STATE(124), + [sym_expression_statement] = STATE(124), + [sym_if_statement] = STATE(124), + [sym_switch_statement] = STATE(124), + [sym_while_statement] = STATE(124), + [sym_do_statement] = STATE(124), + [sym_for_statement] = STATE(124), + [sym_return_statement] = STATE(124), + [sym_break_statement] = STATE(124), + [sym_continue_statement] = STATE(124), + [sym_goto_statement] = STATE(124), + [sym__expression] = STATE(4110), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7822), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(124), + [sym_co_return_statement] = STATE(124), + [sym_co_yield_statement] = STATE(124), + [sym_throw_statement] = STATE(124), + [sym_try_statement] = STATE(124), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(170), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(124), [sym_identifier] = ACTIONS(1796), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym___extension__] = ACTIONS(1800), + [anon_sym_typedef] = ACTIONS(1802), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(63), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_else] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1810), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_goto] = ACTIONS(1822), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_try] = ACTIONS(1824), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(1826), + [anon_sym_co_return] = ACTIONS(1828), + [anon_sym_co_yield] = ACTIONS(1830), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), + }, + [122] = { + [sym_declaration] = STATE(122), + [sym_type_definition] = STATE(122), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4600), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(122), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(122), + [sym_labeled_statement] = STATE(122), + [sym_expression_statement] = STATE(122), + [sym_if_statement] = STATE(122), + [sym_switch_statement] = STATE(122), + [sym_while_statement] = STATE(122), + [sym_do_statement] = STATE(122), + [sym_for_statement] = STATE(122), + [sym_return_statement] = STATE(122), + [sym_break_statement] = STATE(122), + [sym_continue_statement] = STATE(122), + [sym_goto_statement] = STATE(122), + [sym__expression] = STATE(4110), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7822), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(122), + [sym_co_return_statement] = STATE(122), + [sym_co_yield_statement] = STATE(122), + [sym_throw_statement] = STATE(122), + [sym_try_statement] = STATE(122), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(170), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(1832), [anon_sym_LPAREN2] = ACTIONS(1397), [anon_sym_BANG] = ACTIONS(1400), [anon_sym_TILDE] = ACTIONS(1400), @@ -75977,15 +72817,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1403), [anon_sym_STAR] = ACTIONS(1406), [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym___extension__] = ACTIONS(1802), - [anon_sym_typedef] = ACTIONS(1805), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym___extension__] = ACTIONS(1838), + [anon_sym_typedef] = ACTIONS(1841), [anon_sym_extern] = ACTIONS(1423), [anon_sym___attribute__] = ACTIONS(1426), [anon_sym_COLON_COLON] = ACTIONS(1429), [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), [anon_sym___declspec] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1844), [anon_sym_signed] = ACTIONS(1441), [anon_sym_unsigned] = ACTIONS(1441), [anon_sym_long] = ACTIONS(1441), @@ -76015,16 +72855,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(1456), [anon_sym_struct] = ACTIONS(1459), [anon_sym_union] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1847), [anon_sym_else] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1814), - [anon_sym_while] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1829), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_goto] = ACTIONS(1835), + [anon_sym_switch] = ACTIONS(1850), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_do] = ACTIONS(1856), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1862), + [anon_sym_break] = ACTIONS(1865), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1871), [anon_sym_not] = ACTIONS(1403), [anon_sym_compl] = ACTIONS(1403), [anon_sym_DASH_DASH] = ACTIONS(1492), @@ -76061,11 +72901,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(1534), [anon_sym_typename] = ACTIONS(1537), [anon_sym_template] = ACTIONS(1540), - [anon_sym_try] = ACTIONS(1838), + [anon_sym_try] = ACTIONS(1874), [anon_sym_delete] = ACTIONS(1546), - [anon_sym_throw] = ACTIONS(1841), - [anon_sym_co_return] = ACTIONS(1844), - [anon_sym_co_yield] = ACTIONS(1847), + [anon_sym_throw] = ACTIONS(1877), + [anon_sym_co_return] = ACTIONS(1880), + [anon_sym_co_yield] = ACTIONS(1883), [anon_sym_R_DQUOTE] = ACTIONS(1558), [anon_sym_LR_DQUOTE] = ACTIONS(1558), [anon_sym_uR_DQUOTE] = ACTIONS(1558), @@ -76076,93 +72916,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1567), [sym_this] = ACTIONS(1519), }, - [122] = { - [sym_declaration] = STATE(121), - [sym_type_definition] = STATE(121), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(121), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(121), - [sym_labeled_statement] = STATE(121), - [sym_expression_statement] = STATE(121), - [sym_if_statement] = STATE(121), - [sym_switch_statement] = STATE(121), - [sym_while_statement] = STATE(121), - [sym_do_statement] = STATE(121), - [sym_for_statement] = STATE(121), - [sym_return_statement] = STATE(121), - [sym_break_statement] = STATE(121), - [sym_continue_statement] = STATE(121), - [sym_goto_statement] = STATE(121), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(121), - [sym_co_return_statement] = STATE(121), - [sym_co_yield_statement] = STATE(121), - [sym_throw_statement] = STATE(121), - [sym_try_statement] = STATE(121), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(1850), + [123] = { + [sym_declaration] = STATE(122), + [sym_type_definition] = STATE(122), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4600), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(122), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(122), + [sym_labeled_statement] = STATE(122), + [sym_expression_statement] = STATE(122), + [sym_if_statement] = STATE(122), + [sym_switch_statement] = STATE(122), + [sym_while_statement] = STATE(122), + [sym_do_statement] = STATE(122), + [sym_for_statement] = STATE(122), + [sym_return_statement] = STATE(122), + [sym_break_statement] = STATE(122), + [sym_continue_statement] = STATE(122), + [sym_goto_statement] = STATE(122), + [sym__expression] = STATE(4110), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7822), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(122), + [sym_co_return_statement] = STATE(122), + [sym_co_yield_statement] = STATE(122), + [sym_throw_statement] = STATE(122), + [sym_try_statement] = STATE(122), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(170), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(1796), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -76170,15 +73010,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym___extension__] = ACTIONS(1854), - [anon_sym_typedef] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym___extension__] = ACTIONS(1800), + [anon_sym_typedef] = ACTIONS(1802), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -76208,16 +73048,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_else] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_else] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1810), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_goto] = ACTIONS(1822), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -76254,11 +73094,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(1824), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(1826), + [anon_sym_co_return] = ACTIONS(1828), + [anon_sym_co_yield] = ACTIONS(1830), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -76269,93 +73109,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [123] = { - [sym_declaration] = STATE(121), - [sym_type_definition] = STATE(121), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(121), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(121), - [sym_labeled_statement] = STATE(121), - [sym_expression_statement] = STATE(121), - [sym_if_statement] = STATE(121), - [sym_switch_statement] = STATE(121), - [sym_while_statement] = STATE(121), - [sym_do_statement] = STATE(121), - [sym_for_statement] = STATE(121), - [sym_return_statement] = STATE(121), - [sym_break_statement] = STATE(121), - [sym_continue_statement] = STATE(121), - [sym_goto_statement] = STATE(121), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(121), - [sym_co_return_statement] = STATE(121), - [sym_co_yield_statement] = STATE(121), - [sym_throw_statement] = STATE(121), - [sym_try_statement] = STATE(121), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(1850), + [124] = { + [sym_declaration] = STATE(122), + [sym_type_definition] = STATE(122), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4600), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_compound_statement] = STATE(122), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_attributed_statement] = STATE(122), + [sym_labeled_statement] = STATE(122), + [sym_expression_statement] = STATE(122), + [sym_if_statement] = STATE(122), + [sym_switch_statement] = STATE(122), + [sym_while_statement] = STATE(122), + [sym_do_statement] = STATE(122), + [sym_for_statement] = STATE(122), + [sym_return_statement] = STATE(122), + [sym_break_statement] = STATE(122), + [sym_continue_statement] = STATE(122), + [sym_goto_statement] = STATE(122), + [sym__expression] = STATE(4110), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7822), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(122), + [sym_co_return_statement] = STATE(122), + [sym_co_yield_statement] = STATE(122), + [sym_throw_statement] = STATE(122), + [sym_try_statement] = STATE(122), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(170), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_case_statement_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(1796), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -76363,15 +73203,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym___extension__] = ACTIONS(1854), - [anon_sym_typedef] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym___extension__] = ACTIONS(1800), + [anon_sym_typedef] = ACTIONS(1802), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -76401,16 +73241,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_else] = ACTIONS(1380), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1810), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_goto] = ACTIONS(1822), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -76447,11 +73287,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(1824), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(1826), + [anon_sym_co_return] = ACTIONS(1828), + [anon_sym_co_yield] = ACTIONS(1830), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -76462,22 +73302,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [124] = { + [125] = { [sym_declaration] = STATE(123), [sym_type_definition] = STATE(123), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4600), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(1057), + [sym_ms_declspec_modifier] = STATE(2019), [sym_compound_statement] = STATE(123), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), [sym_attributed_statement] = STATE(123), [sym_labeled_statement] = STATE(123), [sym_expression_statement] = STATE(123), @@ -76490,65 +73330,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(123), [sym_continue_statement] = STATE(123), [sym_goto_statement] = STATE(123), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), + [sym__expression] = STATE(4110), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7822), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), [sym_for_range_loop] = STATE(123), [sym_co_return_statement] = STATE(123), [sym_co_yield_statement] = STATE(123), [sym_throw_statement] = STATE(123), [sym_try_statement] = STATE(123), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_attributed_declarator_repeat1] = STATE(170), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), [aux_sym_case_statement_repeat1] = STATE(123), - [sym_identifier] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1796), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -76556,15 +73396,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym___extension__] = ACTIONS(1854), - [anon_sym_typedef] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym___extension__] = ACTIONS(1800), + [anon_sym_typedef] = ACTIONS(1802), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -76594,16 +73434,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1806), [anon_sym_else] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1810), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_goto] = ACTIONS(1822), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -76640,11 +73480,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(1824), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(1826), + [anon_sym_co_return] = ACTIONS(1828), + [anon_sym_co_yield] = ACTIONS(1830), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -76655,93 +73495,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [125] = { - [sym_declaration] = STATE(122), - [sym_type_definition] = STATE(122), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(1572), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_compound_statement] = STATE(122), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_attributed_statement] = STATE(122), - [sym_labeled_statement] = STATE(122), - [sym_expression_statement] = STATE(122), - [sym_if_statement] = STATE(122), - [sym_switch_statement] = STATE(122), - [sym_while_statement] = STATE(122), - [sym_do_statement] = STATE(122), - [sym_for_statement] = STATE(122), - [sym_return_statement] = STATE(122), - [sym_break_statement] = STATE(122), - [sym_continue_statement] = STATE(122), - [sym_goto_statement] = STATE(122), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(122), - [sym_co_return_statement] = STATE(122), - [sym_co_yield_statement] = STATE(122), - [sym_throw_statement] = STATE(122), - [sym_try_statement] = STATE(122), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_case_statement_repeat1] = STATE(122), - [sym_identifier] = ACTIONS(1850), + [126] = { + [sym_declaration] = STATE(271), + [sym_type_definition] = STATE(3871), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4557), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_expression_statement] = STATE(3871), + [sym__for_statement_body] = STATE(7209), + [sym__expression] = STATE(4112), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7558), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_alias_declaration] = STATE(3871), + [sym__for_range_loop_body] = STATE(7206), + [sym_init_statement] = STATE(1971), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(1886), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -76749,15 +73574,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym___extension__] = ACTIONS(1854), - [anon_sym_typedef] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym___extension__] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1892), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1858), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -76787,16 +73611,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_else] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -76833,11 +73647,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_using] = ACTIONS(1896), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -76848,76 +73659,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [126] = { - [sym_declaration] = STATE(2283), - [sym_type_definition] = STATE(2283), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5728), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_expression_statement] = STATE(2283), - [sym__expression] = STATE(4914), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8580), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [sym_alias_declaration] = STATE(2283), - [sym_init_statement] = STATE(141), - [sym_condition_declaration] = STATE(9464), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), + [127] = { + [sym_declaration] = STATE(271), + [sym_type_definition] = STATE(3871), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4557), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_expression_statement] = STATE(3871), + [sym__for_statement_body] = STATE(7556), + [sym__expression] = STATE(4112), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7558), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_alias_declaration] = STATE(3871), + [sym__for_range_loop_body] = STATE(7560), + [sym_init_statement] = STATE(1971), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), [sym_identifier] = ACTIONS(1886), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), @@ -76926,13 +73738,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym___extension__] = ACTIONS(1854), - [anon_sym_typedef] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym___extension__] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1892), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -77000,7 +73812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), [anon_sym_delete] = ACTIONS(135), - [anon_sym_using] = ACTIONS(1890), + [anon_sym_using] = ACTIONS(1896), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -77011,75 +73823,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [127] = { - [sym_declaration] = STATE(379), - [sym_type_definition] = STATE(4828), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5708), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_expression_statement] = STATE(4828), - [sym__expression] = STATE(5160), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8961), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [sym_alias_declaration] = STATE(4828), - [sym_init_statement] = STATE(2568), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), + [128] = { + [sym_declaration] = STATE(271), + [sym_type_definition] = STATE(3871), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4557), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_expression_statement] = STATE(3871), + [sym__for_statement_body] = STATE(7331), + [sym__expression] = STATE(4112), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7558), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_alias_declaration] = STATE(3871), + [sym__for_range_loop_body] = STATE(7332), + [sym_init_statement] = STATE(1971), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), [sym_identifier] = ACTIONS(1886), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), @@ -77088,13 +73902,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym___extension__] = ACTIONS(1894), - [anon_sym_typedef] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym___extension__] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1892), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -77162,7 +73976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), [anon_sym_delete] = ACTIONS(135), - [anon_sym_using] = ACTIONS(1898), + [anon_sym_using] = ACTIONS(1896), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -77173,75 +73987,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [128] = { - [sym_declaration] = STATE(462), - [sym_type_definition] = STATE(4828), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5760), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_expression_statement] = STATE(4828), - [sym__expression] = STATE(5091), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9600), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [sym_alias_declaration] = STATE(4828), - [sym_init_statement] = STATE(2650), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), + [129] = { + [sym_declaration] = STATE(271), + [sym_type_definition] = STATE(3871), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4557), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_expression_statement] = STATE(3871), + [sym__for_statement_body] = STATE(7490), + [sym__expression] = STATE(4112), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7558), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_alias_declaration] = STATE(3871), + [sym__for_range_loop_body] = STATE(7489), + [sym_init_statement] = STATE(1971), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), [sym_identifier] = ACTIONS(1886), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), @@ -77250,13 +74066,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1900), - [anon_sym___extension__] = ACTIONS(1894), - [anon_sym_typedef] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym___extension__] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1892), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -77324,7 +74140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), [anon_sym_delete] = ACTIONS(135), - [anon_sym_using] = ACTIONS(1898), + [anon_sym_using] = ACTIONS(1896), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -77335,75 +74151,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [129] = { - [sym_declaration] = STATE(387), - [sym_type_definition] = STATE(4828), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5769), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_expression_statement] = STATE(4828), - [sym__expression] = STATE(5072), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9656), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [sym_alias_declaration] = STATE(4828), - [sym_init_statement] = STATE(2573), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), + [130] = { + [sym_declaration] = STATE(271), + [sym_type_definition] = STATE(3871), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4557), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_expression_statement] = STATE(3871), + [sym__for_statement_body] = STATE(7186), + [sym__expression] = STATE(4112), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7558), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_alias_declaration] = STATE(3871), + [sym__for_range_loop_body] = STATE(7257), + [sym_init_statement] = STATE(1971), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), [sym_identifier] = ACTIONS(1886), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), @@ -77412,13 +74230,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym___extension__] = ACTIONS(1894), - [anon_sym_typedef] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym___extension__] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1892), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -77486,7 +74304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), [anon_sym_delete] = ACTIONS(135), - [anon_sym_using] = ACTIONS(1898), + [anon_sym_using] = ACTIONS(1896), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -77497,75 +74315,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [130] = { - [sym_declaration] = STATE(496), - [sym_type_definition] = STATE(4828), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5721), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_expression_statement] = STATE(4828), - [sym__expression] = STATE(5039), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9462), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [sym_alias_declaration] = STATE(4828), - [sym_init_statement] = STATE(2585), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), + [131] = { + [sym_declaration] = STATE(271), + [sym_type_definition] = STATE(3871), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4557), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_expression_statement] = STATE(3871), + [sym__for_statement_body] = STATE(7391), + [sym__expression] = STATE(4112), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7558), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_alias_declaration] = STATE(3871), + [sym__for_range_loop_body] = STATE(7389), + [sym_init_statement] = STATE(1971), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), [sym_identifier] = ACTIONS(1886), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), @@ -77574,13 +74394,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1904), - [anon_sym___extension__] = ACTIONS(1894), - [anon_sym_typedef] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym___extension__] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1892), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -77648,7 +74468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), [anon_sym_delete] = ACTIONS(135), - [anon_sym_using] = ACTIONS(1898), + [anon_sym_using] = ACTIONS(1896), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -77659,75 +74479,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [131] = { - [sym_declaration] = STATE(512), - [sym_type_definition] = STATE(4828), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5791), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_expression_statement] = STATE(4828), - [sym__expression] = STATE(5078), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9193), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [sym_alias_declaration] = STATE(4828), - [sym_init_statement] = STATE(2560), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), + [132] = { + [sym_declaration] = STATE(271), + [sym_type_definition] = STATE(3871), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4557), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_expression_statement] = STATE(3871), + [sym__for_statement_body] = STATE(7232), + [sym__expression] = STATE(4112), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7558), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_alias_declaration] = STATE(3871), + [sym__for_range_loop_body] = STATE(7234), + [sym_init_statement] = STATE(1971), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), [sym_identifier] = ACTIONS(1886), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), @@ -77736,13 +74558,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1906), - [anon_sym___extension__] = ACTIONS(1894), - [anon_sym_typedef] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym___extension__] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1892), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -77810,7 +74632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), [anon_sym_delete] = ACTIONS(135), - [anon_sym_using] = ACTIONS(1898), + [anon_sym_using] = ACTIONS(1896), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -77821,75 +74643,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [132] = { - [sym_declaration] = STATE(416), - [sym_type_definition] = STATE(4828), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5801), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_expression_statement] = STATE(4828), - [sym__expression] = STATE(5153), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9642), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [sym_alias_declaration] = STATE(4828), - [sym_init_statement] = STATE(2661), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), + [133] = { + [sym_declaration] = STATE(1670), + [sym_type_definition] = STATE(1670), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4601), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_expression_statement] = STATE(1670), + [sym__expression] = STATE(3970), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(6873), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_alias_declaration] = STATE(1670), + [sym_init_statement] = STATE(141), + [sym_condition_declaration] = STATE(7554), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), [sym_identifier] = ACTIONS(1886), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), @@ -77898,13 +74721,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1908), - [anon_sym___extension__] = ACTIONS(1894), - [anon_sym_typedef] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym___extension__] = ACTIONS(1800), + [anon_sym_typedef] = ACTIONS(1802), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -77983,76 +74806,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [133] = { - [sym_declaration] = STATE(382), - [sym_type_definition] = STATE(4828), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5733), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_expression_statement] = STATE(4828), - [sym__expression] = STATE(5135), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9447), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [sym_alias_declaration] = STATE(4828), - [sym_init_statement] = STATE(2644), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(1886), + [134] = { + [sym__declaration_modifiers] = STATE(2020), + [sym__declaration_specifiers] = STATE(3794), + [sym_attribute_specifier] = STATE(2020), + [sym_attribute_declaration] = STATE(2020), + [sym_ms_declspec_modifier] = STATE(2020), + [sym_storage_class_specifier] = STATE(2020), + [sym_type_qualifier] = STATE(2020), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_parameter_declaration] = STATE(6847), + [sym__expression] = STATE(3096), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6939), + [sym_virtual] = STATE(2020), + [sym_alignas_specifier] = STATE(2020), + [sym_dependent_type] = STATE(3114), + [sym_optional_parameter_declaration] = STATE(6847), + [sym_variadic_parameter_declaration] = STATE(6847), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7329), + [sym__unary_right_fold] = STATE(7330), + [sym__binary_fold] = STATE(7334), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5201), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__declaration_specifiers_repeat1] = STATE(2020), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(1900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_RPAREN] = ACTIONS(1904), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(1948), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [135] = { + [sym__declaration_modifiers] = STATE(2020), + [sym__declaration_specifiers] = STATE(3794), + [sym_attribute_specifier] = STATE(2020), + [sym_attribute_declaration] = STATE(2020), + [sym_ms_declspec_modifier] = STATE(2020), + [sym_compound_statement] = STATE(6761), + [sym_storage_class_specifier] = STATE(2020), + [sym_type_qualifier] = STATE(2020), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_parameter_declaration] = STATE(6840), + [sym__expression] = STATE(4003), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6761), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2020), + [sym_alignas_specifier] = STATE(2020), + [sym_dependent_type] = STATE(3114), + [sym_optional_parameter_declaration] = STATE(6840), + [sym_variadic_parameter_declaration] = STATE(6840), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5202), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2020), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(1960), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1962), + [anon_sym_RPAREN] = ACTIONS(1964), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -78060,14 +75045,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym___extension__] = ACTIONS(1894), - [anon_sym_typedef] = ACTIONS(1896), + [anon_sym___extension__] = ACTIONS(1966), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1968), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -78093,10 +75077,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -78131,10 +75115,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(1948), [anon_sym_template] = ACTIONS(1378), [anon_sym_delete] = ACTIONS(135), - [anon_sym_using] = ACTIONS(1898), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -78145,412 +75128,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [134] = { - [sym__declaration_modifiers] = STATE(2688), - [sym__declaration_specifiers] = STATE(4733), - [sym_attribute_specifier] = STATE(2688), - [sym_attribute_declaration] = STATE(2688), - [sym_ms_declspec_modifier] = STATE(2688), - [sym_storage_class_specifier] = STATE(2688), - [sym_type_qualifier] = STATE(2688), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_parameter_declaration] = STATE(8288), - [sym__expression] = STATE(3937), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8484), - [sym_virtual] = STATE(2688), - [sym_alignas_specifier] = STATE(2688), - [sym_dependent_type] = STATE(3958), - [sym_optional_parameter_declaration] = STATE(8288), - [sym_variadic_parameter_declaration] = STATE(8288), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9701), - [sym__unary_right_fold] = STATE(9697), - [sym__binary_fold] = STATE(9685), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6312), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(4031), - [aux_sym__declaration_specifiers_repeat1] = STATE(2688), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(1912), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1928), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(1960), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [135] = { - [sym__declaration_modifiers] = STATE(2688), - [sym__declaration_specifiers] = STATE(4733), - [sym_attribute_specifier] = STATE(2688), - [sym_attribute_declaration] = STATE(2688), - [sym_ms_declspec_modifier] = STATE(2688), - [sym_storage_class_specifier] = STATE(2688), - [sym_type_qualifier] = STATE(2688), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_parameter_declaration] = STATE(8288), - [sym__expression] = STATE(4000), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8484), - [sym_virtual] = STATE(2688), - [sym_alignas_specifier] = STATE(2688), - [sym_dependent_type] = STATE(3958), - [sym_optional_parameter_declaration] = STATE(8288), - [sym_variadic_parameter_declaration] = STATE(8288), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9088), - [sym__unary_right_fold] = STATE(9089), - [sym__binary_fold] = STATE(9207), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6312), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(4031), - [aux_sym__declaration_specifiers_repeat1] = STATE(2688), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(1912), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1928), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(1960), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, [136] = { - [sym__declaration_modifiers] = STATE(2688), - [sym__declaration_specifiers] = STATE(4733), - [sym_attribute_specifier] = STATE(2688), - [sym_attribute_declaration] = STATE(2688), - [sym_ms_declspec_modifier] = STATE(2688), - [sym_storage_class_specifier] = STATE(2688), - [sym_type_qualifier] = STATE(2688), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_parameter_declaration] = STATE(8288), - [sym__expression] = STATE(3986), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8484), - [sym_virtual] = STATE(2688), - [sym_alignas_specifier] = STATE(2688), - [sym_dependent_type] = STATE(3958), - [sym_optional_parameter_declaration] = STATE(8288), - [sym_variadic_parameter_declaration] = STATE(8288), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9224), - [sym__unary_right_fold] = STATE(9222), - [sym__binary_fold] = STATE(9210), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6312), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(4031), - [aux_sym__declaration_specifiers_repeat1] = STATE(2688), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(1912), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), + [sym__declaration_modifiers] = STATE(2020), + [sym__declaration_specifiers] = STATE(3794), + [sym_attribute_specifier] = STATE(2020), + [sym_attribute_declaration] = STATE(2020), + [sym_ms_declspec_modifier] = STATE(2020), + [sym_storage_class_specifier] = STATE(2020), + [sym_type_qualifier] = STATE(2020), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_parameter_declaration] = STATE(6847), + [sym__expression] = STATE(3079), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6939), + [sym_virtual] = STATE(2020), + [sym_alignas_specifier] = STATE(2020), + [sym_dependent_type] = STATE(3114), + [sym_optional_parameter_declaration] = STATE(6847), + [sym_variadic_parameter_declaration] = STATE(6847), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7227), + [sym__unary_right_fold] = STATE(7226), + [sym__binary_fold] = STATE(7224), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5201), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__declaration_specifiers_repeat1] = STATE(2020), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(1900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_RPAREN] = ACTIONS(1904), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), [anon_sym___extension__] = ACTIONS(61), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -78576,142 +75237,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1928), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), + [sym_primitive_type] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(1948), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [137] = { - [sym__declaration_modifiers] = STATE(2688), - [sym__declaration_specifiers] = STATE(4733), - [sym_attribute_specifier] = STATE(2688), - [sym_attribute_declaration] = STATE(2688), - [sym_ms_declspec_modifier] = STATE(2688), - [sym_storage_class_specifier] = STATE(2688), - [sym_type_qualifier] = STATE(2688), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_parameter_declaration] = STATE(8288), - [sym__expression] = STATE(3981), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8484), - [sym_virtual] = STATE(2688), - [sym_alignas_specifier] = STATE(2688), - [sym_dependent_type] = STATE(3958), - [sym_optional_parameter_declaration] = STATE(8288), - [sym_variadic_parameter_declaration] = STATE(8288), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9587), - [sym__unary_right_fold] = STATE(9577), - [sym__binary_fold] = STATE(9562), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6312), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(4031), - [aux_sym__declaration_specifiers_repeat1] = STATE(2688), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(1912), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), + [sym__declaration_modifiers] = STATE(2020), + [sym__declaration_specifiers] = STATE(3794), + [sym_attribute_specifier] = STATE(2020), + [sym_attribute_declaration] = STATE(2020), + [sym_ms_declspec_modifier] = STATE(2020), + [sym_storage_class_specifier] = STATE(2020), + [sym_type_qualifier] = STATE(2020), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_parameter_declaration] = STATE(6847), + [sym__expression] = STATE(3102), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6939), + [sym_virtual] = STATE(2020), + [sym_alignas_specifier] = STATE(2020), + [sym_dependent_type] = STATE(3114), + [sym_optional_parameter_declaration] = STATE(6847), + [sym_variadic_parameter_declaration] = STATE(6847), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7502), + [sym__unary_right_fold] = STATE(7503), + [sym__binary_fold] = STATE(7505), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5201), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__declaration_specifiers_repeat1] = STATE(2020), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(1900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_RPAREN] = ACTIONS(1904), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), [anon_sym___extension__] = ACTIONS(61), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -78737,142 +75398,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1928), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), + [sym_primitive_type] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(1948), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [138] = { - [sym__declaration_modifiers] = STATE(2688), - [sym__declaration_specifiers] = STATE(4733), - [sym_attribute_specifier] = STATE(2688), - [sym_attribute_declaration] = STATE(2688), - [sym_ms_declspec_modifier] = STATE(2688), - [sym_storage_class_specifier] = STATE(2688), - [sym_type_qualifier] = STATE(2688), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_parameter_declaration] = STATE(8288), - [sym__expression] = STATE(3890), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8484), - [sym_virtual] = STATE(2688), - [sym_alignas_specifier] = STATE(2688), - [sym_dependent_type] = STATE(3958), - [sym_optional_parameter_declaration] = STATE(8288), - [sym_variadic_parameter_declaration] = STATE(8288), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9098), - [sym__unary_right_fold] = STATE(9090), - [sym__binary_fold] = STATE(9079), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6312), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(4031), - [aux_sym__declaration_specifiers_repeat1] = STATE(2688), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(1912), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), + [sym__declaration_modifiers] = STATE(2020), + [sym__declaration_specifiers] = STATE(3794), + [sym_attribute_specifier] = STATE(2020), + [sym_attribute_declaration] = STATE(2020), + [sym_ms_declspec_modifier] = STATE(2020), + [sym_storage_class_specifier] = STATE(2020), + [sym_type_qualifier] = STATE(2020), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_parameter_declaration] = STATE(6847), + [sym__expression] = STATE(2996), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6939), + [sym_virtual] = STATE(2020), + [sym_alignas_specifier] = STATE(2020), + [sym_dependent_type] = STATE(3114), + [sym_optional_parameter_declaration] = STATE(6847), + [sym_variadic_parameter_declaration] = STATE(6847), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7884), + [sym__unary_right_fold] = STATE(7892), + [sym__binary_fold] = STATE(7903), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5201), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__declaration_specifiers_repeat1] = STATE(2020), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(1900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_RPAREN] = ACTIONS(1904), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), [anon_sym___extension__] = ACTIONS(61), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -78898,142 +75559,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1928), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), + [sym_primitive_type] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(1948), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [139] = { - [sym__declaration_modifiers] = STATE(2688), - [sym__declaration_specifiers] = STATE(4733), - [sym_attribute_specifier] = STATE(2688), - [sym_attribute_declaration] = STATE(2688), - [sym_ms_declspec_modifier] = STATE(2688), - [sym_storage_class_specifier] = STATE(2688), - [sym_type_qualifier] = STATE(2688), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_parameter_declaration] = STATE(8288), - [sym__expression] = STATE(3884), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8484), - [sym_virtual] = STATE(2688), - [sym_alignas_specifier] = STATE(2688), - [sym_dependent_type] = STATE(3958), - [sym_optional_parameter_declaration] = STATE(8288), - [sym_variadic_parameter_declaration] = STATE(8288), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9631), - [sym__unary_right_fold] = STATE(9630), - [sym__binary_fold] = STATE(9629), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6312), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(4031), - [aux_sym__declaration_specifiers_repeat1] = STATE(2688), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(1912), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), + [sym__declaration_modifiers] = STATE(2020), + [sym__declaration_specifiers] = STATE(3794), + [sym_attribute_specifier] = STATE(2020), + [sym_attribute_declaration] = STATE(2020), + [sym_ms_declspec_modifier] = STATE(2020), + [sym_storage_class_specifier] = STATE(2020), + [sym_type_qualifier] = STATE(2020), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_parameter_declaration] = STATE(6847), + [sym__expression] = STATE(3107), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6939), + [sym_virtual] = STATE(2020), + [sym_alignas_specifier] = STATE(2020), + [sym_dependent_type] = STATE(3114), + [sym_optional_parameter_declaration] = STATE(6847), + [sym_variadic_parameter_declaration] = STATE(6847), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7459), + [sym__unary_right_fold] = STATE(7457), + [sym__binary_fold] = STATE(7456), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5201), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__declaration_specifiers_repeat1] = STATE(2020), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(1900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_RPAREN] = ACTIONS(1904), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), [anon_sym___extension__] = ACTIONS(61), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -79059,143 +75720,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1928), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), + [sym_primitive_type] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(1948), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [140] = { - [sym__declaration_modifiers] = STATE(2688), - [sym__declaration_specifiers] = STATE(4733), - [sym_attribute_specifier] = STATE(2688), - [sym_attribute_declaration] = STATE(2688), - [sym_ms_declspec_modifier] = STATE(2688), - [sym_compound_statement] = STATE(8346), - [sym_storage_class_specifier] = STATE(2688), - [sym_type_qualifier] = STATE(2688), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_parameter_declaration] = STATE(8273), - [sym__expression] = STATE(4988), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8346), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2688), - [sym_alignas_specifier] = STATE(2688), - [sym_dependent_type] = STATE(3958), - [sym_optional_parameter_declaration] = STATE(8273), - [sym_variadic_parameter_declaration] = STATE(8273), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6363), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2688), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(1972), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1976), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1978), + [sym__declaration_modifiers] = STATE(2020), + [sym__declaration_specifiers] = STATE(3794), + [sym_attribute_specifier] = STATE(2020), + [sym_attribute_declaration] = STATE(2020), + [sym_ms_declspec_modifier] = STATE(2020), + [sym_storage_class_specifier] = STATE(2020), + [sym_type_qualifier] = STATE(2020), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_parameter_declaration] = STATE(6847), + [sym__expression] = STATE(3038), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6939), + [sym_virtual] = STATE(2020), + [sym_alignas_specifier] = STATE(2020), + [sym_dependent_type] = STATE(3114), + [sym_optional_parameter_declaration] = STATE(6847), + [sym_variadic_parameter_declaration] = STATE(6847), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7684), + [sym__unary_right_fold] = STATE(7685), + [sym__binary_fold] = STATE(7686), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5201), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__declaration_specifiers_repeat1] = STATE(2020), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(1900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_RPAREN] = ACTIONS(1904), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1980), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -79220,123 +75881,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_primitive_type] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(1948), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [141] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5804), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__expression] = STATE(5216), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9140), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(8466), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4574), - [sym_template_function] = STATE(4797), - [sym_condition_declaration] = STATE(9140), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6266), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(4563), - [sym_user_defined_literal] = STATE(3951), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4782), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__expression] = STATE(4098), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7670), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(6993), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3733), + [sym_template_function] = STATE(3876), + [sym_condition_declaration] = STATE(7670), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5141), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(3724), + [sym_user_defined_literal] = STATE(3087), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), [sym_identifier] = ACTIONS(1886), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), @@ -79349,7 +76010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -79428,94 +76089,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [142] = { - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7341), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6917), - [sym_array_declarator] = STATE(6917), - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3894), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9633), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9087), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4360), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9088), - [sym__unary_right_fold] = STATE(9089), - [sym__binary_fold] = STATE(9207), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6269), - [sym_qualified_identifier] = STATE(4002), - [sym_qualified_type_identifier] = STATE(6098), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(1982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1986), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1988), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6034), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5742), + [sym_array_declarator] = STATE(5742), + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3061), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7869), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7877), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3494), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7884), + [sym__unary_right_fold] = STATE(7892), + [sym__binary_fold] = STATE(7903), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5177), + [sym_qualified_identifier] = STATE(3095), + [sym_qualified_type_identifier] = STATE(4973), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1976), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1978), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), + [anon_sym_COLON_COLON] = ACTIONS(1914), [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1982), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -79527,146 +76188,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(2012), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [anon_sym_operator] = ACTIONS(2000), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [143] = { - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7341), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6917), - [sym_array_declarator] = STATE(6917), - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3889), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9595), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9593), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4360), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9587), - [sym__unary_right_fold] = STATE(9577), - [sym__binary_fold] = STATE(9562), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6269), - [sym_qualified_identifier] = STATE(4002), - [sym_qualified_type_identifier] = STATE(6098), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(1982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1986), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1988), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6034), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5742), + [sym_array_declarator] = STATE(5742), + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3138), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7461), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7460), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3494), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7459), + [sym__unary_right_fold] = STATE(7457), + [sym__binary_fold] = STATE(7456), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5177), + [sym_qualified_identifier] = STATE(3095), + [sym_qualified_type_identifier] = STATE(4973), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1976), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1978), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), + [anon_sym_COLON_COLON] = ACTIONS(1914), [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1982), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -79678,146 +76339,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(2012), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [anon_sym_operator] = ACTIONS(2000), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [144] = { - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7341), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6917), - [sym_array_declarator] = STATE(6917), - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3889), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9595), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9703), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4360), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9701), - [sym__unary_right_fold] = STATE(9697), - [sym__binary_fold] = STATE(9685), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6269), - [sym_qualified_identifier] = STATE(4002), - [sym_qualified_type_identifier] = STATE(6098), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(1982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1986), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1988), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6034), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5742), + [sym_array_declarator] = STATE(5742), + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3061), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7869), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7228), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3494), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7227), + [sym__unary_right_fold] = STATE(7226), + [sym__binary_fold] = STATE(7224), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5177), + [sym_qualified_identifier] = STATE(3095), + [sym_qualified_type_identifier] = STATE(4973), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1976), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1978), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), + [anon_sym_COLON_COLON] = ACTIONS(1914), [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1982), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -79829,146 +76490,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(2012), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [anon_sym_operator] = ACTIONS(2000), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [145] = { - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7341), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6917), - [sym_array_declarator] = STATE(6917), - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3894), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9633), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9632), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4360), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9631), - [sym__unary_right_fold] = STATE(9630), - [sym__binary_fold] = STATE(9629), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6269), - [sym_qualified_identifier] = STATE(4002), - [sym_qualified_type_identifier] = STATE(6098), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(1982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1986), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1988), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6034), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5742), + [sym_array_declarator] = STATE(5742), + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3138), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7461), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7326), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3494), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7329), + [sym__unary_right_fold] = STATE(7330), + [sym__binary_fold] = STATE(7334), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5177), + [sym_qualified_identifier] = STATE(3095), + [sym_qualified_type_identifier] = STATE(4973), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1976), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1978), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), + [anon_sym_COLON_COLON] = ACTIONS(1914), [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1982), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -79980,314 +76641,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(2012), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [anon_sym_operator] = ACTIONS(2000), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [146] = { - [sym__expression] = STATE(3385), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_initializer_list] = STATE(3493), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), - [anon_sym_COMMA] = ACTIONS(2016), - [anon_sym_RPAREN] = ACTIONS(2016), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2020), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), + [sym__expression] = STATE(2567), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_initializer_list] = STATE(2738), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2004), + [anon_sym_COMMA] = ACTIONS(2004), + [anon_sym_RPAREN] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2008), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_SLASH] = ACTIONS(2012), + [anon_sym_PERCENT] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2004), + [anon_sym_AMP_AMP] = ACTIONS(2004), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_CARET] = ACTIONS(2012), [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(2016), - [anon_sym_BANG_EQ] = ACTIONS(2016), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2016), - [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(2016), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_RBRACE] = ACTIONS(2016), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(2016), - [anon_sym_EQ] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_QMARK] = ACTIONS(2016), - [anon_sym_STAR_EQ] = ACTIONS(2016), - [anon_sym_SLASH_EQ] = ACTIONS(2016), - [anon_sym_PERCENT_EQ] = ACTIONS(2016), - [anon_sym_PLUS_EQ] = ACTIONS(2016), - [anon_sym_DASH_EQ] = ACTIONS(2016), - [anon_sym_LT_LT_EQ] = ACTIONS(2016), - [anon_sym_GT_GT_EQ] = ACTIONS(2016), - [anon_sym_AMP_EQ] = ACTIONS(2016), - [anon_sym_CARET_EQ] = ACTIONS(2016), - [anon_sym_PIPE_EQ] = ACTIONS(2016), - [anon_sym_and_eq] = ACTIONS(2024), - [anon_sym_or_eq] = ACTIONS(2024), - [anon_sym_xor_eq] = ACTIONS(2024), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_LT_EQ_GT] = ACTIONS(2016), - [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(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2016), - [anon_sym_DASH_GT] = ACTIONS(2016), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_EQ_EQ] = ACTIONS(2004), + [anon_sym_BANG_EQ] = ACTIONS(2004), + [anon_sym_GT] = ACTIONS(2012), + [anon_sym_GT_EQ] = ACTIONS(2004), + [anon_sym_LT_EQ] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2012), + [anon_sym_GT_GT] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2004), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_RBRACE] = ACTIONS(2004), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(2004), + [anon_sym_EQ] = ACTIONS(2012), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_QMARK] = ACTIONS(2004), + [anon_sym_STAR_EQ] = ACTIONS(2004), + [anon_sym_SLASH_EQ] = ACTIONS(2004), + [anon_sym_PERCENT_EQ] = ACTIONS(2004), + [anon_sym_PLUS_EQ] = ACTIONS(2004), + [anon_sym_DASH_EQ] = ACTIONS(2004), + [anon_sym_LT_LT_EQ] = ACTIONS(2004), + [anon_sym_GT_GT_EQ] = ACTIONS(2004), + [anon_sym_AMP_EQ] = ACTIONS(2004), + [anon_sym_CARET_EQ] = ACTIONS(2004), + [anon_sym_PIPE_EQ] = ACTIONS(2004), + [anon_sym_and_eq] = ACTIONS(2012), + [anon_sym_or_eq] = ACTIONS(2012), + [anon_sym_xor_eq] = ACTIONS(2012), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_LT_EQ_GT] = ACTIONS(2004), + [anon_sym_or] = ACTIONS(2012), + [anon_sym_and] = ACTIONS(2012), + [anon_sym_bitor] = ACTIONS(2012), + [anon_sym_xor] = ACTIONS(2012), + [anon_sym_bitand] = ACTIONS(2012), + [anon_sym_not_eq] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [anon_sym_DOT] = ACTIONS(2012), + [anon_sym_DOT_STAR] = ACTIONS(2004), + [anon_sym_DASH_GT] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [147] = { - [sym__expression] = STATE(3385), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_initializer_list] = STATE(3493), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), - [anon_sym_COMMA] = ACTIONS(2016), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2016), - [anon_sym_BANG_EQ] = ACTIONS(2016), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2016), - [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(2016), - [anon_sym___attribute__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_EQ] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_QMARK] = ACTIONS(2016), - [anon_sym_STAR_EQ] = ACTIONS(2016), - [anon_sym_SLASH_EQ] = ACTIONS(2016), - [anon_sym_PERCENT_EQ] = ACTIONS(2016), - [anon_sym_PLUS_EQ] = ACTIONS(2016), - [anon_sym_DASH_EQ] = ACTIONS(2016), - [anon_sym_LT_LT_EQ] = ACTIONS(2016), - [anon_sym_GT_GT_EQ] = ACTIONS(2016), - [anon_sym_AMP_EQ] = ACTIONS(2016), - [anon_sym_CARET_EQ] = ACTIONS(2016), - [anon_sym_PIPE_EQ] = ACTIONS(2016), - [anon_sym_and_eq] = ACTIONS(2024), - [anon_sym_or_eq] = ACTIONS(2024), - [anon_sym_xor_eq] = ACTIONS(2024), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_LT_EQ_GT] = ACTIONS(2016), - [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(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2016), - [anon_sym_DASH_GT] = ACTIONS(2016), + [sym__expression] = STATE(2934), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_initializer_list] = STATE(3205), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2004), + [anon_sym_COMMA] = ACTIONS(2004), + [anon_sym_RPAREN] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2060), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_SLASH] = ACTIONS(2012), + [anon_sym_PERCENT] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2004), + [anon_sym_AMP_AMP] = ACTIONS(2004), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_CARET] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2064), + [anon_sym_EQ_EQ] = ACTIONS(2004), + [anon_sym_BANG_EQ] = ACTIONS(2004), + [anon_sym_GT] = ACTIONS(2012), + [anon_sym_GT_EQ] = ACTIONS(2004), + [anon_sym_LT_EQ] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2012), + [anon_sym_GT_GT] = ACTIONS(2012), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_EQ] = ACTIONS(2012), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_QMARK] = ACTIONS(2004), + [anon_sym_STAR_EQ] = ACTIONS(2004), + [anon_sym_SLASH_EQ] = ACTIONS(2004), + [anon_sym_PERCENT_EQ] = ACTIONS(2004), + [anon_sym_PLUS_EQ] = ACTIONS(2004), + [anon_sym_DASH_EQ] = ACTIONS(2004), + [anon_sym_LT_LT_EQ] = ACTIONS(2004), + [anon_sym_GT_GT_EQ] = ACTIONS(2004), + [anon_sym_AMP_EQ] = ACTIONS(2004), + [anon_sym_CARET_EQ] = ACTIONS(2004), + [anon_sym_PIPE_EQ] = ACTIONS(2004), + [anon_sym_and_eq] = ACTIONS(2012), + [anon_sym_or_eq] = ACTIONS(2012), + [anon_sym_xor_eq] = ACTIONS(2012), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_LT_EQ_GT] = ACTIONS(2004), + [anon_sym_or] = ACTIONS(2012), + [anon_sym_and] = ACTIONS(2012), + [anon_sym_bitor] = ACTIONS(2012), + [anon_sym_xor] = ACTIONS(2012), + [anon_sym_bitand] = ACTIONS(2012), + [anon_sym_not_eq] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [anon_sym_DOT] = ACTIONS(2012), + [anon_sym_DOT_STAR] = ACTIONS(2004), + [anon_sym_DASH_GT] = ACTIONS(2012), [sym_number_literal] = ACTIONS(2084), [anon_sym_L_SQUOTE] = ACTIONS(2086), [anon_sym_u_SQUOTE] = ACTIONS(2086), @@ -80299,1210 +76959,1211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(2088), [anon_sym_u8_DQUOTE] = ACTIONS(2088), [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [anon_sym_DASH_GT_STAR] = ACTIONS(2004), + [sym_this] = ACTIONS(2090), }, [148] = { - [sym__expression] = STATE(3793), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_initializer_list] = STATE(4156), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), - [anon_sym_COMMA] = ACTIONS(2016), - [anon_sym_RPAREN] = ACTIONS(2016), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2100), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2104), - [anon_sym_EQ_EQ] = ACTIONS(2016), - [anon_sym_BANG_EQ] = ACTIONS(2016), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2016), - [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_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_EQ] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_QMARK] = ACTIONS(2016), - [anon_sym_STAR_EQ] = ACTIONS(2016), - [anon_sym_SLASH_EQ] = ACTIONS(2016), - [anon_sym_PERCENT_EQ] = ACTIONS(2016), - [anon_sym_PLUS_EQ] = ACTIONS(2016), - [anon_sym_DASH_EQ] = ACTIONS(2016), - [anon_sym_LT_LT_EQ] = ACTIONS(2016), - [anon_sym_GT_GT_EQ] = ACTIONS(2016), - [anon_sym_AMP_EQ] = ACTIONS(2016), - [anon_sym_CARET_EQ] = ACTIONS(2016), - [anon_sym_PIPE_EQ] = ACTIONS(2016), - [anon_sym_and_eq] = ACTIONS(2024), - [anon_sym_or_eq] = ACTIONS(2024), - [anon_sym_xor_eq] = ACTIONS(2024), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_LT_EQ_GT] = ACTIONS(2016), - [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(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2016), - [anon_sym_DASH_GT] = ACTIONS(2024), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__expression] = STATE(2567), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_initializer_list] = STATE(2738), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2004), + [anon_sym_COMMA] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2112), + [anon_sym_SLASH] = ACTIONS(2012), + [anon_sym_PERCENT] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2004), + [anon_sym_AMP_AMP] = ACTIONS(2004), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_CARET] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2112), + [anon_sym_EQ_EQ] = ACTIONS(2004), + [anon_sym_BANG_EQ] = ACTIONS(2004), + [anon_sym_GT] = ACTIONS(2012), + [anon_sym_GT_EQ] = ACTIONS(2004), + [anon_sym_LT_EQ] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2012), + [anon_sym_GT_GT] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2012), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_EQ] = ACTIONS(2012), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_QMARK] = ACTIONS(2004), + [anon_sym_STAR_EQ] = ACTIONS(2004), + [anon_sym_SLASH_EQ] = ACTIONS(2004), + [anon_sym_PERCENT_EQ] = ACTIONS(2004), + [anon_sym_PLUS_EQ] = ACTIONS(2004), + [anon_sym_DASH_EQ] = ACTIONS(2004), + [anon_sym_LT_LT_EQ] = ACTIONS(2004), + [anon_sym_GT_GT_EQ] = ACTIONS(2004), + [anon_sym_AMP_EQ] = ACTIONS(2004), + [anon_sym_CARET_EQ] = ACTIONS(2004), + [anon_sym_PIPE_EQ] = ACTIONS(2004), + [anon_sym_and_eq] = ACTIONS(2012), + [anon_sym_or_eq] = ACTIONS(2012), + [anon_sym_xor_eq] = ACTIONS(2012), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_LT_EQ_GT] = ACTIONS(2004), + [anon_sym_or] = ACTIONS(2012), + [anon_sym_and] = ACTIONS(2012), + [anon_sym_bitor] = ACTIONS(2012), + [anon_sym_xor] = ACTIONS(2012), + [anon_sym_bitand] = ACTIONS(2012), + [anon_sym_not_eq] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [anon_sym_DOT] = ACTIONS(2012), + [anon_sym_DOT_STAR] = ACTIONS(2004), + [anon_sym_DASH_GT] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [149] = { + [ts_builtin_sym_end] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [anon_sym_COMMA] = ACTIONS(2132), + [anon_sym_RPAREN] = ACTIONS(2132), + [aux_sym_preproc_if_token1] = ACTIONS(2134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), + [sym_preproc_directive] = ACTIONS(2134), + [anon_sym_LPAREN2] = ACTIONS(2132), + [anon_sym_BANG] = ACTIONS(2132), + [anon_sym_TILDE] = ACTIONS(2132), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_PIPE_PIPE] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym___extension__] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym___attribute__] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2134), + [anon_sym___based] = ACTIONS(2134), + [anon_sym___cdecl] = ACTIONS(2134), + [anon_sym___clrcall] = ACTIONS(2134), + [anon_sym___stdcall] = ACTIONS(2134), + [anon_sym___fastcall] = ACTIONS(2134), + [anon_sym___thiscall] = ACTIONS(2134), + [anon_sym___vectorcall] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2134), + [anon_sym_unsigned] = ACTIONS(2134), + [anon_sym_long] = ACTIONS(2134), + [anon_sym_short] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(2132), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_register] = ACTIONS(2134), + [anon_sym_inline] = ACTIONS(2134), + [anon_sym___inline] = ACTIONS(2134), + [anon_sym___inline__] = ACTIONS(2134), + [anon_sym___forceinline] = ACTIONS(2134), + [anon_sym_thread_local] = ACTIONS(2134), + [anon_sym___thread] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_constexpr] = ACTIONS(2134), + [anon_sym_volatile] = ACTIONS(2134), + [anon_sym_restrict] = ACTIONS(2134), + [anon_sym___restrict__] = ACTIONS(2134), + [anon_sym__Atomic] = ACTIONS(2134), + [anon_sym__Noreturn] = ACTIONS(2134), + [anon_sym_noreturn] = ACTIONS(2134), + [anon_sym_mutable] = ACTIONS(2134), + [anon_sym_constinit] = ACTIONS(2134), + [anon_sym_consteval] = ACTIONS(2134), + [sym_primitive_type] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_struct] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_else] = ACTIONS(2134), + [anon_sym_switch] = ACTIONS(2134), + [anon_sym_case] = ACTIONS(2134), + [anon_sym_default] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2134), + [anon_sym_not] = ACTIONS(2134), + [anon_sym_compl] = ACTIONS(2134), + [anon_sym_or] = ACTIONS(2134), + [anon_sym_and] = ACTIONS(2134), + [anon_sym_DASH_DASH] = ACTIONS(2132), + [anon_sym_PLUS_PLUS] = ACTIONS(2132), + [anon_sym_sizeof] = ACTIONS(2134), + [anon_sym___alignof__] = ACTIONS(2134), + [anon_sym___alignof] = ACTIONS(2134), + [anon_sym__alignof] = ACTIONS(2134), + [anon_sym_alignof] = ACTIONS(2134), + [anon_sym__Alignof] = ACTIONS(2134), + [anon_sym_offsetof] = ACTIONS(2134), + [anon_sym__Generic] = ACTIONS(2134), + [anon_sym_asm] = ACTIONS(2134), + [anon_sym___asm__] = ACTIONS(2134), + [sym_number_literal] = ACTIONS(2132), + [anon_sym_L_SQUOTE] = ACTIONS(2132), + [anon_sym_u_SQUOTE] = ACTIONS(2132), + [anon_sym_U_SQUOTE] = ACTIONS(2132), + [anon_sym_u8_SQUOTE] = ACTIONS(2132), + [anon_sym_SQUOTE] = ACTIONS(2132), + [anon_sym_L_DQUOTE] = ACTIONS(2132), + [anon_sym_u_DQUOTE] = ACTIONS(2132), + [anon_sym_U_DQUOTE] = ACTIONS(2132), + [anon_sym_u8_DQUOTE] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(2132), + [sym_true] = ACTIONS(2134), + [sym_false] = ACTIONS(2134), + [anon_sym_NULL] = ACTIONS(2134), + [anon_sym_nullptr] = ACTIONS(2134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2134), + [anon_sym_decltype] = ACTIONS(2134), + [anon_sym_final] = ACTIONS(2134), + [anon_sym_override] = ACTIONS(2134), + [anon_sym_virtual] = ACTIONS(2134), + [anon_sym_alignas] = ACTIONS(2134), + [anon_sym_explicit] = ACTIONS(2134), + [anon_sym_typename] = ACTIONS(2134), + [anon_sym_template] = ACTIONS(2134), + [anon_sym_GT2] = ACTIONS(2132), + [anon_sym_operator] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), [anon_sym_delete] = ACTIONS(2134), + [anon_sym_throw] = ACTIONS(2134), + [anon_sym_namespace] = ACTIONS(2134), + [anon_sym_using] = ACTIONS(2134), + [anon_sym_static_assert] = ACTIONS(2134), + [anon_sym_concept] = ACTIONS(2134), + [anon_sym_co_return] = ACTIONS(2134), + [anon_sym_co_yield] = ACTIONS(2134), + [anon_sym_catch] = ACTIONS(2134), + [anon_sym_R_DQUOTE] = ACTIONS(2132), + [anon_sym_LR_DQUOTE] = ACTIONS(2132), + [anon_sym_uR_DQUOTE] = ACTIONS(2132), + [anon_sym_UR_DQUOTE] = ACTIONS(2132), + [anon_sym_u8R_DQUOTE] = ACTIONS(2132), + [anon_sym_co_await] = ACTIONS(2134), + [anon_sym_new] = ACTIONS(2134), + [anon_sym_requires] = ACTIONS(2134), + [sym_this] = ACTIONS(2134), + }, + [150] = { + [ts_builtin_sym_end] = ACTIONS(2136), + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_include_token1] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2136), + [anon_sym_RPAREN] = ACTIONS(2136), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_PIPE_PIPE] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym___cdecl] = ACTIONS(2138), + [anon_sym___clrcall] = ACTIONS(2138), + [anon_sym___stdcall] = ACTIONS(2138), + [anon_sym___fastcall] = ACTIONS(2138), + [anon_sym___thiscall] = ACTIONS(2138), + [anon_sym___vectorcall] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_EQ] = ACTIONS(2136), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_goto] = ACTIONS(2138), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_compl] = ACTIONS(2138), + [anon_sym_or] = ACTIONS(2138), + [anon_sym_and] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_PLUS_PLUS] = ACTIONS(2136), + [anon_sym_sizeof] = ACTIONS(2138), + [anon_sym___alignof__] = ACTIONS(2138), + [anon_sym___alignof] = ACTIONS(2138), + [anon_sym__alignof] = ACTIONS(2138), + [anon_sym_alignof] = ACTIONS(2138), + [anon_sym__Alignof] = ACTIONS(2138), + [anon_sym_offsetof] = ACTIONS(2138), + [anon_sym__Generic] = ACTIONS(2138), + [anon_sym_asm] = ACTIONS(2138), + [anon_sym___asm__] = ACTIONS(2138), + [sym_number_literal] = ACTIONS(2136), + [anon_sym_L_SQUOTE] = ACTIONS(2136), + [anon_sym_u_SQUOTE] = ACTIONS(2136), + [anon_sym_U_SQUOTE] = ACTIONS(2136), + [anon_sym_u8_SQUOTE] = ACTIONS(2136), + [anon_sym_SQUOTE] = ACTIONS(2136), + [anon_sym_L_DQUOTE] = ACTIONS(2136), + [anon_sym_u_DQUOTE] = ACTIONS(2136), + [anon_sym_U_DQUOTE] = ACTIONS(2136), + [anon_sym_u8_DQUOTE] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2136), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [anon_sym_NULL] = ACTIONS(2138), + [anon_sym_nullptr] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_final] = ACTIONS(2138), + [anon_sym_override] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_GT2] = ACTIONS(2136), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), + [anon_sym_concept] = ACTIONS(2138), + [anon_sym_co_return] = ACTIONS(2138), + [anon_sym_co_yield] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), [anon_sym_R_DQUOTE] = ACTIONS(2136), [anon_sym_LR_DQUOTE] = ACTIONS(2136), [anon_sym_uR_DQUOTE] = ACTIONS(2136), [anon_sym_UR_DQUOTE] = ACTIONS(2136), [anon_sym_u8R_DQUOTE] = ACTIONS(2136), [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [anon_sym_DASH_GT_STAR] = ACTIONS(2016), - [sym_this] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_requires] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), }, - [149] = { - [sym__expression] = STATE(3852), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_initializer_list] = STATE(4225), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), - [anon_sym_COMMA] = ACTIONS(2016), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2148), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_EQ_EQ] = ACTIONS(2016), - [anon_sym_BANG_EQ] = ACTIONS(2016), - [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_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_EQ] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_QMARK] = ACTIONS(2016), - [anon_sym_STAR_EQ] = ACTIONS(2016), - [anon_sym_SLASH_EQ] = ACTIONS(2016), - [anon_sym_PERCENT_EQ] = ACTIONS(2016), - [anon_sym_PLUS_EQ] = ACTIONS(2016), - [anon_sym_DASH_EQ] = ACTIONS(2016), - [anon_sym_LT_LT_EQ] = ACTIONS(2016), - [anon_sym_GT_GT_EQ] = ACTIONS(2024), - [anon_sym_AMP_EQ] = ACTIONS(2016), - [anon_sym_CARET_EQ] = ACTIONS(2016), - [anon_sym_PIPE_EQ] = ACTIONS(2016), - [anon_sym_and_eq] = ACTIONS(2024), - [anon_sym_or_eq] = ACTIONS(2024), - [anon_sym_xor_eq] = ACTIONS(2024), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_LT_EQ_GT] = ACTIONS(2016), - [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(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2016), - [anon_sym_DASH_GT] = ACTIONS(2016), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [151] = { + [sym__expression] = STATE(3100), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_initializer_list] = STATE(3379), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2004), + [anon_sym_COMMA] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2148), + [anon_sym_SLASH] = ACTIONS(2012), + [anon_sym_PERCENT] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2004), + [anon_sym_AMP_AMP] = ACTIONS(2004), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_CARET] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2148), + [anon_sym_EQ_EQ] = ACTIONS(2004), + [anon_sym_BANG_EQ] = ACTIONS(2004), + [anon_sym_GT] = ACTIONS(2012), + [anon_sym_GT_EQ] = ACTIONS(2012), + [anon_sym_LT_EQ] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2012), + [anon_sym_GT_GT] = ACTIONS(2012), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_EQ] = ACTIONS(2012), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_QMARK] = ACTIONS(2004), + [anon_sym_STAR_EQ] = ACTIONS(2004), + [anon_sym_SLASH_EQ] = ACTIONS(2004), + [anon_sym_PERCENT_EQ] = ACTIONS(2004), + [anon_sym_PLUS_EQ] = ACTIONS(2004), + [anon_sym_DASH_EQ] = ACTIONS(2004), + [anon_sym_LT_LT_EQ] = ACTIONS(2004), + [anon_sym_GT_GT_EQ] = ACTIONS(2012), + [anon_sym_AMP_EQ] = ACTIONS(2004), + [anon_sym_CARET_EQ] = ACTIONS(2004), + [anon_sym_PIPE_EQ] = ACTIONS(2004), + [anon_sym_and_eq] = ACTIONS(2012), + [anon_sym_or_eq] = ACTIONS(2012), + [anon_sym_xor_eq] = ACTIONS(2012), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_LT_EQ_GT] = ACTIONS(2004), + [anon_sym_or] = ACTIONS(2012), + [anon_sym_and] = ACTIONS(2012), + [anon_sym_bitor] = ACTIONS(2012), + [anon_sym_xor] = ACTIONS(2012), + [anon_sym_bitand] = ACTIONS(2012), + [anon_sym_not_eq] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [anon_sym_DOT] = ACTIONS(2012), + [anon_sym_DOT_STAR] = ACTIONS(2004), + [anon_sym_DASH_GT] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_GT2] = ACTIONS(2016), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), + [anon_sym_GT2] = ACTIONS(2004), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, - [150] = { - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_include_token1] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_RPAREN] = ACTIONS(2192), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), + [152] = { + [sym__expression] = STATE(3214), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_initializer_list] = STATE(2738), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2190), [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2194), + [anon_sym_SLASH] = ACTIONS(2012), + [anon_sym_PERCENT] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2004), + [anon_sym_AMP_AMP] = ACTIONS(2004), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_CARET] = ACTIONS(2012), [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym___cdecl] = ACTIONS(2194), - [anon_sym___clrcall] = ACTIONS(2194), - [anon_sym___stdcall] = ACTIONS(2194), - [anon_sym___fastcall] = ACTIONS(2194), - [anon_sym___thiscall] = ACTIONS(2194), - [anon_sym___vectorcall] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_EQ] = ACTIONS(2192), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_goto] = ACTIONS(2194), - [anon_sym_not] = ACTIONS(2194), - [anon_sym_compl] = ACTIONS(2194), - [anon_sym_or] = ACTIONS(2194), - [anon_sym_and] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_sizeof] = ACTIONS(2194), - [anon_sym___alignof__] = ACTIONS(2194), - [anon_sym___alignof] = ACTIONS(2194), - [anon_sym__alignof] = ACTIONS(2194), - [anon_sym_alignof] = ACTIONS(2194), - [anon_sym__Alignof] = ACTIONS(2194), - [anon_sym_offsetof] = ACTIONS(2194), - [anon_sym__Generic] = ACTIONS(2194), - [anon_sym_asm] = ACTIONS(2194), - [anon_sym___asm__] = ACTIONS(2194), - [sym_number_literal] = ACTIONS(2192), - [anon_sym_L_SQUOTE] = ACTIONS(2192), - [anon_sym_u_SQUOTE] = ACTIONS(2192), - [anon_sym_U_SQUOTE] = ACTIONS(2192), - [anon_sym_u8_SQUOTE] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_L_DQUOTE] = ACTIONS(2192), - [anon_sym_u_DQUOTE] = ACTIONS(2192), - [anon_sym_U_DQUOTE] = ACTIONS(2192), - [anon_sym_u8_DQUOTE] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [anon_sym_NULL] = ACTIONS(2194), - [anon_sym_nullptr] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_final] = ACTIONS(2194), - [anon_sym_override] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_GT2] = ACTIONS(2192), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_delete] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - [anon_sym_concept] = ACTIONS(2194), - [anon_sym_co_return] = ACTIONS(2194), - [anon_sym_co_yield] = ACTIONS(2194), - [anon_sym_catch] = ACTIONS(2194), - [anon_sym_R_DQUOTE] = ACTIONS(2192), - [anon_sym_LR_DQUOTE] = ACTIONS(2192), - [anon_sym_uR_DQUOTE] = ACTIONS(2192), - [anon_sym_UR_DQUOTE] = ACTIONS(2192), - [anon_sym_u8R_DQUOTE] = ACTIONS(2192), - [anon_sym_co_await] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_requires] = ACTIONS(2194), - [sym_this] = ACTIONS(2194), - }, - [151] = { - [ts_builtin_sym_end] = ACTIONS(2196), - [sym_identifier] = ACTIONS(2198), - [aux_sym_preproc_include_token1] = ACTIONS(2198), - [aux_sym_preproc_def_token1] = ACTIONS(2198), - [anon_sym_COMMA] = ACTIONS(2196), - [anon_sym_RPAREN] = ACTIONS(2196), - [aux_sym_preproc_if_token1] = ACTIONS(2198), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2198), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2198), - [sym_preproc_directive] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(2196), - [anon_sym_BANG] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2198), - [anon_sym_PLUS] = ACTIONS(2198), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2196), - [anon_sym___extension__] = ACTIONS(2198), - [anon_sym_typedef] = ACTIONS(2198), - [anon_sym_extern] = ACTIONS(2198), - [anon_sym___attribute__] = ACTIONS(2198), + [anon_sym_EQ_EQ] = ACTIONS(2004), + [anon_sym_BANG_EQ] = ACTIONS(2004), + [anon_sym_GT] = ACTIONS(2012), + [anon_sym_GT_EQ] = ACTIONS(2004), + [anon_sym_LT_EQ] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2012), + [anon_sym_GT_GT] = ACTIONS(2012), [anon_sym_COLON_COLON] = ACTIONS(2196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2196), - [anon_sym___declspec] = ACTIONS(2198), - [anon_sym___based] = ACTIONS(2198), - [anon_sym___cdecl] = ACTIONS(2198), - [anon_sym___clrcall] = ACTIONS(2198), - [anon_sym___stdcall] = ACTIONS(2198), - [anon_sym___fastcall] = ACTIONS(2198), - [anon_sym___thiscall] = ACTIONS(2198), - [anon_sym___vectorcall] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2196), - [anon_sym_signed] = ACTIONS(2198), - [anon_sym_unsigned] = ACTIONS(2198), - [anon_sym_long] = ACTIONS(2198), - [anon_sym_short] = ACTIONS(2198), - [anon_sym_LBRACK] = ACTIONS(2198), - [anon_sym_EQ] = ACTIONS(2196), - [anon_sym_static] = ACTIONS(2198), - [anon_sym_register] = ACTIONS(2198), - [anon_sym_inline] = ACTIONS(2198), - [anon_sym___inline] = ACTIONS(2198), - [anon_sym___inline__] = ACTIONS(2198), - [anon_sym___forceinline] = ACTIONS(2198), - [anon_sym_thread_local] = ACTIONS(2198), - [anon_sym___thread] = ACTIONS(2198), - [anon_sym_const] = ACTIONS(2198), - [anon_sym_constexpr] = ACTIONS(2198), - [anon_sym_volatile] = ACTIONS(2198), - [anon_sym_restrict] = ACTIONS(2198), - [anon_sym___restrict__] = ACTIONS(2198), - [anon_sym__Atomic] = ACTIONS(2198), - [anon_sym__Noreturn] = ACTIONS(2198), - [anon_sym_noreturn] = ACTIONS(2198), - [anon_sym_mutable] = ACTIONS(2198), - [anon_sym_constinit] = ACTIONS(2198), - [anon_sym_consteval] = ACTIONS(2198), - [sym_primitive_type] = ACTIONS(2198), - [anon_sym_enum] = ACTIONS(2198), - [anon_sym_class] = ACTIONS(2198), - [anon_sym_struct] = ACTIONS(2198), - [anon_sym_union] = ACTIONS(2198), - [anon_sym_if] = ACTIONS(2198), - [anon_sym_else] = ACTIONS(2198), - [anon_sym_switch] = ACTIONS(2198), - [anon_sym_case] = ACTIONS(2198), - [anon_sym_default] = ACTIONS(2198), - [anon_sym_while] = ACTIONS(2198), - [anon_sym_do] = ACTIONS(2198), - [anon_sym_for] = ACTIONS(2198), - [anon_sym_return] = ACTIONS(2198), - [anon_sym_break] = ACTIONS(2198), - [anon_sym_continue] = ACTIONS(2198), - [anon_sym_goto] = ACTIONS(2198), - [anon_sym_not] = ACTIONS(2198), - [anon_sym_compl] = ACTIONS(2198), - [anon_sym_or] = ACTIONS(2198), - [anon_sym_and] = ACTIONS(2198), - [anon_sym_DASH_DASH] = ACTIONS(2196), - [anon_sym_PLUS_PLUS] = ACTIONS(2196), - [anon_sym_sizeof] = ACTIONS(2198), - [anon_sym___alignof__] = ACTIONS(2198), - [anon_sym___alignof] = ACTIONS(2198), - [anon_sym__alignof] = ACTIONS(2198), - [anon_sym_alignof] = ACTIONS(2198), - [anon_sym__Alignof] = ACTIONS(2198), - [anon_sym_offsetof] = ACTIONS(2198), - [anon_sym__Generic] = ACTIONS(2198), - [anon_sym_asm] = ACTIONS(2198), - [anon_sym___asm__] = ACTIONS(2198), - [sym_number_literal] = ACTIONS(2196), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2196), - [anon_sym_u_DQUOTE] = ACTIONS(2196), - [anon_sym_U_DQUOTE] = ACTIONS(2196), - [anon_sym_u8_DQUOTE] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2196), - [sym_true] = ACTIONS(2198), - [sym_false] = ACTIONS(2198), - [anon_sym_NULL] = ACTIONS(2198), - [anon_sym_nullptr] = ACTIONS(2198), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2198), - [anon_sym_decltype] = ACTIONS(2198), - [anon_sym_final] = ACTIONS(2198), - [anon_sym_override] = ACTIONS(2198), - [anon_sym_virtual] = ACTIONS(2198), - [anon_sym_alignas] = ACTIONS(2198), - [anon_sym_explicit] = ACTIONS(2198), - [anon_sym_typename] = ACTIONS(2198), - [anon_sym_template] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2196), - [anon_sym_operator] = ACTIONS(2198), - [anon_sym_try] = ACTIONS(2198), - [anon_sym_delete] = ACTIONS(2198), - [anon_sym_throw] = ACTIONS(2198), - [anon_sym_namespace] = ACTIONS(2198), - [anon_sym_using] = ACTIONS(2198), - [anon_sym_static_assert] = ACTIONS(2198), - [anon_sym_concept] = ACTIONS(2198), - [anon_sym_co_return] = ACTIONS(2198), - [anon_sym_co_yield] = ACTIONS(2198), - [anon_sym_catch] = ACTIONS(2198), - [anon_sym_R_DQUOTE] = ACTIONS(2196), - [anon_sym_LR_DQUOTE] = ACTIONS(2196), - [anon_sym_uR_DQUOTE] = ACTIONS(2196), - [anon_sym_UR_DQUOTE] = ACTIONS(2196), - [anon_sym_u8R_DQUOTE] = ACTIONS(2196), - [anon_sym_co_await] = ACTIONS(2198), - [anon_sym_new] = ACTIONS(2198), - [anon_sym_requires] = ACTIONS(2198), - [sym_this] = ACTIONS(2198), - }, - [152] = { - [sym__expression] = STATE(4117), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_initializer_list] = STATE(3493), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(2206), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2206), - [anon_sym_EQ_EQ] = ACTIONS(2016), - [anon_sym_BANG_EQ] = ACTIONS(2016), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2016), - [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_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_EQ] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_COLON] = ACTIONS(2024), - [anon_sym_QMARK] = ACTIONS(2016), - [anon_sym_STAR_EQ] = ACTIONS(2016), - [anon_sym_SLASH_EQ] = ACTIONS(2016), - [anon_sym_PERCENT_EQ] = ACTIONS(2016), - [anon_sym_PLUS_EQ] = ACTIONS(2016), - [anon_sym_DASH_EQ] = ACTIONS(2016), - [anon_sym_LT_LT_EQ] = ACTIONS(2016), - [anon_sym_GT_GT_EQ] = ACTIONS(2016), - [anon_sym_AMP_EQ] = ACTIONS(2016), - [anon_sym_CARET_EQ] = ACTIONS(2016), - [anon_sym_PIPE_EQ] = ACTIONS(2016), - [anon_sym_and_eq] = ACTIONS(2024), - [anon_sym_or_eq] = ACTIONS(2024), - [anon_sym_xor_eq] = ACTIONS(2024), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_LT_EQ_GT] = ACTIONS(2016), - [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(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2016), - [anon_sym_DASH_GT] = ACTIONS(2016), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_EQ] = ACTIONS(2012), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_COLON] = ACTIONS(2012), + [anon_sym_QMARK] = ACTIONS(2004), + [anon_sym_STAR_EQ] = ACTIONS(2004), + [anon_sym_SLASH_EQ] = ACTIONS(2004), + [anon_sym_PERCENT_EQ] = ACTIONS(2004), + [anon_sym_PLUS_EQ] = ACTIONS(2004), + [anon_sym_DASH_EQ] = ACTIONS(2004), + [anon_sym_LT_LT_EQ] = ACTIONS(2004), + [anon_sym_GT_GT_EQ] = ACTIONS(2004), + [anon_sym_AMP_EQ] = ACTIONS(2004), + [anon_sym_CARET_EQ] = ACTIONS(2004), + [anon_sym_PIPE_EQ] = ACTIONS(2004), + [anon_sym_and_eq] = ACTIONS(2012), + [anon_sym_or_eq] = ACTIONS(2012), + [anon_sym_xor_eq] = ACTIONS(2012), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_LT_EQ_GT] = ACTIONS(2004), + [anon_sym_or] = ACTIONS(2012), + [anon_sym_and] = ACTIONS(2012), + [anon_sym_bitor] = ACTIONS(2012), + [anon_sym_xor] = ACTIONS(2012), + [anon_sym_bitand] = ACTIONS(2012), + [anon_sym_not_eq] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [anon_sym_DOT] = ACTIONS(2012), + [anon_sym_DOT_STAR] = ACTIONS(2004), + [anon_sym_DASH_GT] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [153] = { - [sym__expression] = STATE(4253), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_initializer_list] = STATE(4442), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), - [anon_sym_COMMA] = ACTIONS(2016), - [anon_sym_RPAREN] = ACTIONS(2016), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2104), - [anon_sym_EQ_EQ] = ACTIONS(2016), - [anon_sym_BANG_EQ] = ACTIONS(2016), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2016), - [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_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_EQ] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_QMARK] = ACTIONS(2016), - [anon_sym_STAR_EQ] = ACTIONS(2016), - [anon_sym_SLASH_EQ] = ACTIONS(2016), - [anon_sym_PERCENT_EQ] = ACTIONS(2016), - [anon_sym_PLUS_EQ] = ACTIONS(2016), - [anon_sym_DASH_EQ] = ACTIONS(2016), - [anon_sym_LT_LT_EQ] = ACTIONS(2016), - [anon_sym_GT_GT_EQ] = ACTIONS(2016), - [anon_sym_AMP_EQ] = ACTIONS(2016), - [anon_sym_CARET_EQ] = ACTIONS(2016), - [anon_sym_PIPE_EQ] = ACTIONS(2016), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_LT_EQ_GT] = ACTIONS(2016), - [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(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2016), - [anon_sym_DASH_GT] = ACTIONS(2024), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__expression] = STATE(3456), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_initializer_list] = STATE(3585), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2004), + [anon_sym_COMMA] = ACTIONS(2004), + [anon_sym_RPAREN] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_SLASH] = ACTIONS(2012), + [anon_sym_PERCENT] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2004), + [anon_sym_AMP_AMP] = ACTIONS(2004), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_CARET] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2064), + [anon_sym_EQ_EQ] = ACTIONS(2004), + [anon_sym_BANG_EQ] = ACTIONS(2004), + [anon_sym_GT] = ACTIONS(2012), + [anon_sym_GT_EQ] = ACTIONS(2004), + [anon_sym_LT_EQ] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2012), + [anon_sym_GT_GT] = ACTIONS(2012), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_EQ] = ACTIONS(2012), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_QMARK] = ACTIONS(2004), + [anon_sym_STAR_EQ] = ACTIONS(2004), + [anon_sym_SLASH_EQ] = ACTIONS(2004), + [anon_sym_PERCENT_EQ] = ACTIONS(2004), + [anon_sym_PLUS_EQ] = ACTIONS(2004), + [anon_sym_DASH_EQ] = ACTIONS(2004), + [anon_sym_LT_LT_EQ] = ACTIONS(2004), + [anon_sym_GT_GT_EQ] = ACTIONS(2004), + [anon_sym_AMP_EQ] = ACTIONS(2004), + [anon_sym_CARET_EQ] = ACTIONS(2004), + [anon_sym_PIPE_EQ] = ACTIONS(2004), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_LT_EQ_GT] = ACTIONS(2004), + [anon_sym_or] = ACTIONS(2012), + [anon_sym_and] = ACTIONS(2012), + [anon_sym_bitor] = ACTIONS(2012), + [anon_sym_xor] = ACTIONS(2012), + [anon_sym_bitand] = ACTIONS(2012), + [anon_sym_not_eq] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [anon_sym_DOT] = ACTIONS(2012), + [anon_sym_DOT_STAR] = ACTIONS(2004), + [anon_sym_DASH_GT] = ACTIONS(2012), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [anon_sym_DASH_GT_STAR] = ACTIONS(2016), - [sym_this] = ACTIONS(1956), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [anon_sym_DASH_GT_STAR] = ACTIONS(2004), + [sym_this] = ACTIONS(1944), }, [154] = { [sym_catch_clause] = STATE(155), [aux_sym_constructor_try_statement_repeat1] = STATE(155), - [sym_identifier] = ACTIONS(2224), - [aux_sym_preproc_include_token1] = ACTIONS(2224), - [aux_sym_preproc_def_token1] = ACTIONS(2224), - [aux_sym_preproc_if_token1] = ACTIONS(2224), - [aux_sym_preproc_if_token2] = ACTIONS(2224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2224), - [aux_sym_preproc_else_token1] = ACTIONS(2224), - [aux_sym_preproc_elif_token1] = ACTIONS(2224), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2224), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2224), - [sym_preproc_directive] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_AMP_AMP] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym___extension__] = ACTIONS(2224), - [anon_sym_typedef] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym___attribute__] = ACTIONS(2224), - [anon_sym_COLON_COLON] = ACTIONS(2226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2226), - [anon_sym___declspec] = ACTIONS(2224), - [anon_sym___based] = ACTIONS(2224), - [anon_sym___cdecl] = ACTIONS(2224), - [anon_sym___clrcall] = ACTIONS(2224), - [anon_sym___stdcall] = ACTIONS(2224), - [anon_sym___fastcall] = ACTIONS(2224), - [anon_sym___thiscall] = ACTIONS(2224), - [anon_sym___vectorcall] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_signed] = ACTIONS(2224), - [anon_sym_unsigned] = ACTIONS(2224), - [anon_sym_long] = ACTIONS(2224), - [anon_sym_short] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2224), - [anon_sym_register] = ACTIONS(2224), - [anon_sym_inline] = ACTIONS(2224), - [anon_sym___inline] = ACTIONS(2224), - [anon_sym___inline__] = ACTIONS(2224), - [anon_sym___forceinline] = ACTIONS(2224), - [anon_sym_thread_local] = ACTIONS(2224), - [anon_sym___thread] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [anon_sym_constexpr] = ACTIONS(2224), - [anon_sym_volatile] = ACTIONS(2224), - [anon_sym_restrict] = ACTIONS(2224), - [anon_sym___restrict__] = ACTIONS(2224), - [anon_sym__Atomic] = ACTIONS(2224), - [anon_sym__Noreturn] = ACTIONS(2224), - [anon_sym_noreturn] = ACTIONS(2224), - [anon_sym_mutable] = ACTIONS(2224), - [anon_sym_constinit] = ACTIONS(2224), - [anon_sym_consteval] = ACTIONS(2224), - [sym_primitive_type] = ACTIONS(2224), - [anon_sym_enum] = ACTIONS(2224), - [anon_sym_class] = ACTIONS(2224), - [anon_sym_struct] = ACTIONS(2224), - [anon_sym_union] = ACTIONS(2224), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_else] = ACTIONS(2224), - [anon_sym_switch] = ACTIONS(2224), - [anon_sym_case] = ACTIONS(2224), - [anon_sym_default] = ACTIONS(2224), - [anon_sym_while] = ACTIONS(2224), - [anon_sym_do] = ACTIONS(2224), - [anon_sym_for] = ACTIONS(2224), - [anon_sym_return] = ACTIONS(2224), - [anon_sym_break] = ACTIONS(2224), - [anon_sym_continue] = ACTIONS(2224), - [anon_sym_goto] = ACTIONS(2224), - [anon_sym_not] = ACTIONS(2224), - [anon_sym_compl] = ACTIONS(2224), - [anon_sym_DASH_DASH] = ACTIONS(2226), - [anon_sym_PLUS_PLUS] = ACTIONS(2226), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym___alignof__] = ACTIONS(2224), - [anon_sym___alignof] = ACTIONS(2224), - [anon_sym__alignof] = ACTIONS(2224), - [anon_sym_alignof] = ACTIONS(2224), - [anon_sym__Alignof] = ACTIONS(2224), - [anon_sym_offsetof] = ACTIONS(2224), - [anon_sym__Generic] = ACTIONS(2224), - [anon_sym_asm] = ACTIONS(2224), - [anon_sym___asm__] = ACTIONS(2224), - [sym_number_literal] = ACTIONS(2226), - [anon_sym_L_SQUOTE] = ACTIONS(2226), - [anon_sym_u_SQUOTE] = ACTIONS(2226), - [anon_sym_U_SQUOTE] = ACTIONS(2226), - [anon_sym_u8_SQUOTE] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2226), - [anon_sym_L_DQUOTE] = ACTIONS(2226), - [anon_sym_u_DQUOTE] = ACTIONS(2226), - [anon_sym_U_DQUOTE] = ACTIONS(2226), - [anon_sym_u8_DQUOTE] = ACTIONS(2226), - [anon_sym_DQUOTE] = ACTIONS(2226), - [sym_true] = ACTIONS(2224), - [sym_false] = ACTIONS(2224), - [anon_sym_NULL] = ACTIONS(2224), - [anon_sym_nullptr] = ACTIONS(2224), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2224), - [anon_sym_decltype] = ACTIONS(2224), - [anon_sym_virtual] = ACTIONS(2224), - [anon_sym_alignas] = ACTIONS(2224), - [anon_sym_explicit] = ACTIONS(2224), - [anon_sym_typename] = ACTIONS(2224), - [anon_sym_template] = ACTIONS(2224), - [anon_sym_operator] = ACTIONS(2224), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_delete] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2224), - [anon_sym_namespace] = ACTIONS(2224), - [anon_sym_using] = ACTIONS(2224), - [anon_sym_static_assert] = ACTIONS(2224), - [anon_sym_concept] = ACTIONS(2224), - [anon_sym_co_return] = ACTIONS(2224), - [anon_sym_co_yield] = ACTIONS(2224), - [anon_sym_catch] = ACTIONS(2228), - [anon_sym_R_DQUOTE] = ACTIONS(2226), - [anon_sym_LR_DQUOTE] = ACTIONS(2226), - [anon_sym_uR_DQUOTE] = ACTIONS(2226), - [anon_sym_UR_DQUOTE] = ACTIONS(2226), - [anon_sym_u8R_DQUOTE] = ACTIONS(2226), - [anon_sym_co_await] = ACTIONS(2224), - [anon_sym_new] = ACTIONS(2224), - [anon_sym_requires] = ACTIONS(2224), - [sym_this] = ACTIONS(2224), + [sym_identifier] = ACTIONS(2212), + [aux_sym_preproc_include_token1] = ACTIONS(2212), + [aux_sym_preproc_def_token1] = ACTIONS(2212), + [aux_sym_preproc_if_token1] = ACTIONS(2212), + [aux_sym_preproc_if_token2] = ACTIONS(2212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2212), + [aux_sym_preproc_else_token1] = ACTIONS(2212), + [aux_sym_preproc_elif_token1] = ACTIONS(2212), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2212), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2212), + [sym_preproc_directive] = ACTIONS(2212), + [anon_sym_LPAREN2] = ACTIONS(2214), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym___extension__] = ACTIONS(2212), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_extern] = ACTIONS(2212), + [anon_sym___attribute__] = ACTIONS(2212), + [anon_sym_COLON_COLON] = ACTIONS(2214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [anon_sym___declspec] = ACTIONS(2212), + [anon_sym___based] = ACTIONS(2212), + [anon_sym___cdecl] = ACTIONS(2212), + [anon_sym___clrcall] = ACTIONS(2212), + [anon_sym___stdcall] = ACTIONS(2212), + [anon_sym___fastcall] = ACTIONS(2212), + [anon_sym___thiscall] = ACTIONS(2212), + [anon_sym___vectorcall] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_signed] = ACTIONS(2212), + [anon_sym_unsigned] = ACTIONS(2212), + [anon_sym_long] = ACTIONS(2212), + [anon_sym_short] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_register] = ACTIONS(2212), + [anon_sym_inline] = ACTIONS(2212), + [anon_sym___inline] = ACTIONS(2212), + [anon_sym___inline__] = ACTIONS(2212), + [anon_sym___forceinline] = ACTIONS(2212), + [anon_sym_thread_local] = ACTIONS(2212), + [anon_sym___thread] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_constexpr] = ACTIONS(2212), + [anon_sym_volatile] = ACTIONS(2212), + [anon_sym_restrict] = ACTIONS(2212), + [anon_sym___restrict__] = ACTIONS(2212), + [anon_sym__Atomic] = ACTIONS(2212), + [anon_sym__Noreturn] = ACTIONS(2212), + [anon_sym_noreturn] = ACTIONS(2212), + [anon_sym_mutable] = ACTIONS(2212), + [anon_sym_constinit] = ACTIONS(2212), + [anon_sym_consteval] = ACTIONS(2212), + [sym_primitive_type] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_struct] = ACTIONS(2212), + [anon_sym_union] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_else] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_case] = ACTIONS(2212), + [anon_sym_default] = ACTIONS(2212), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_goto] = ACTIONS(2212), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2214), + [anon_sym_PLUS_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2212), + [anon_sym___alignof__] = ACTIONS(2212), + [anon_sym___alignof] = ACTIONS(2212), + [anon_sym__alignof] = ACTIONS(2212), + [anon_sym_alignof] = ACTIONS(2212), + [anon_sym__Alignof] = ACTIONS(2212), + [anon_sym_offsetof] = ACTIONS(2212), + [anon_sym__Generic] = ACTIONS(2212), + [anon_sym_asm] = ACTIONS(2212), + [anon_sym___asm__] = ACTIONS(2212), + [sym_number_literal] = ACTIONS(2214), + [anon_sym_L_SQUOTE] = ACTIONS(2214), + [anon_sym_u_SQUOTE] = ACTIONS(2214), + [anon_sym_U_SQUOTE] = ACTIONS(2214), + [anon_sym_u8_SQUOTE] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2214), + [anon_sym_L_DQUOTE] = ACTIONS(2214), + [anon_sym_u_DQUOTE] = ACTIONS(2214), + [anon_sym_U_DQUOTE] = ACTIONS(2214), + [anon_sym_u8_DQUOTE] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2214), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [anon_sym_NULL] = ACTIONS(2212), + [anon_sym_nullptr] = ACTIONS(2212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2212), + [anon_sym_decltype] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(2212), + [anon_sym_alignas] = ACTIONS(2212), + [anon_sym_explicit] = ACTIONS(2212), + [anon_sym_typename] = ACTIONS(2212), + [anon_sym_template] = ACTIONS(2212), + [anon_sym_operator] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_static_assert] = ACTIONS(2212), + [anon_sym_concept] = ACTIONS(2212), + [anon_sym_co_return] = ACTIONS(2212), + [anon_sym_co_yield] = ACTIONS(2212), + [anon_sym_catch] = ACTIONS(2216), + [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(2212), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_requires] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), }, [155] = { [sym_catch_clause] = STATE(155), [aux_sym_constructor_try_statement_repeat1] = STATE(155), - [sym_identifier] = ACTIONS(2230), - [aux_sym_preproc_include_token1] = ACTIONS(2230), - [aux_sym_preproc_def_token1] = ACTIONS(2230), - [aux_sym_preproc_if_token1] = ACTIONS(2230), - [aux_sym_preproc_if_token2] = ACTIONS(2230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2230), - [aux_sym_preproc_else_token1] = ACTIONS(2230), - [aux_sym_preproc_elif_token1] = ACTIONS(2230), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2230), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2230), - [sym_preproc_directive] = ACTIONS(2230), - [anon_sym_LPAREN2] = ACTIONS(2232), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_AMP_AMP] = ACTIONS(2232), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2232), - [anon_sym___extension__] = ACTIONS(2230), - [anon_sym_typedef] = ACTIONS(2230), - [anon_sym_extern] = ACTIONS(2230), - [anon_sym___attribute__] = ACTIONS(2230), - [anon_sym_COLON_COLON] = ACTIONS(2232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2232), - [anon_sym___declspec] = ACTIONS(2230), - [anon_sym___based] = ACTIONS(2230), - [anon_sym___cdecl] = ACTIONS(2230), - [anon_sym___clrcall] = ACTIONS(2230), - [anon_sym___stdcall] = ACTIONS(2230), - [anon_sym___fastcall] = ACTIONS(2230), - [anon_sym___thiscall] = ACTIONS(2230), - [anon_sym___vectorcall] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_signed] = ACTIONS(2230), - [anon_sym_unsigned] = ACTIONS(2230), - [anon_sym_long] = ACTIONS(2230), - [anon_sym_short] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_register] = ACTIONS(2230), - [anon_sym_inline] = ACTIONS(2230), - [anon_sym___inline] = ACTIONS(2230), - [anon_sym___inline__] = ACTIONS(2230), - [anon_sym___forceinline] = ACTIONS(2230), - [anon_sym_thread_local] = ACTIONS(2230), - [anon_sym___thread] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_constexpr] = ACTIONS(2230), - [anon_sym_volatile] = ACTIONS(2230), - [anon_sym_restrict] = ACTIONS(2230), - [anon_sym___restrict__] = ACTIONS(2230), - [anon_sym__Atomic] = ACTIONS(2230), - [anon_sym__Noreturn] = ACTIONS(2230), - [anon_sym_noreturn] = ACTIONS(2230), - [anon_sym_mutable] = ACTIONS(2230), - [anon_sym_constinit] = ACTIONS(2230), - [anon_sym_consteval] = ACTIONS(2230), - [sym_primitive_type] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [anon_sym_class] = ACTIONS(2230), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_union] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_else] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2230), - [anon_sym_case] = ACTIONS(2230), - [anon_sym_default] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_goto] = ACTIONS(2230), - [anon_sym_not] = ACTIONS(2230), - [anon_sym_compl] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2232), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2230), - [anon_sym___alignof] = ACTIONS(2230), - [anon_sym__alignof] = ACTIONS(2230), - [anon_sym_alignof] = ACTIONS(2230), - [anon_sym__Alignof] = ACTIONS(2230), - [anon_sym_offsetof] = ACTIONS(2230), - [anon_sym__Generic] = ACTIONS(2230), - [anon_sym_asm] = ACTIONS(2230), - [anon_sym___asm__] = ACTIONS(2230), - [sym_number_literal] = ACTIONS(2232), - [anon_sym_L_SQUOTE] = ACTIONS(2232), - [anon_sym_u_SQUOTE] = ACTIONS(2232), - [anon_sym_U_SQUOTE] = ACTIONS(2232), - [anon_sym_u8_SQUOTE] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2232), - [anon_sym_L_DQUOTE] = ACTIONS(2232), - [anon_sym_u_DQUOTE] = ACTIONS(2232), - [anon_sym_U_DQUOTE] = ACTIONS(2232), - [anon_sym_u8_DQUOTE] = ACTIONS(2232), - [anon_sym_DQUOTE] = ACTIONS(2232), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [anon_sym_NULL] = ACTIONS(2230), - [anon_sym_nullptr] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2230), - [anon_sym_decltype] = ACTIONS(2230), - [anon_sym_virtual] = ACTIONS(2230), - [anon_sym_alignas] = ACTIONS(2230), - [anon_sym_explicit] = ACTIONS(2230), - [anon_sym_typename] = ACTIONS(2230), - [anon_sym_template] = ACTIONS(2230), - [anon_sym_operator] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_delete] = ACTIONS(2230), - [anon_sym_throw] = ACTIONS(2230), - [anon_sym_namespace] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2230), - [anon_sym_static_assert] = ACTIONS(2230), - [anon_sym_concept] = ACTIONS(2230), - [anon_sym_co_return] = ACTIONS(2230), - [anon_sym_co_yield] = ACTIONS(2230), - [anon_sym_catch] = ACTIONS(2234), - [anon_sym_R_DQUOTE] = ACTIONS(2232), - [anon_sym_LR_DQUOTE] = ACTIONS(2232), - [anon_sym_uR_DQUOTE] = ACTIONS(2232), - [anon_sym_UR_DQUOTE] = ACTIONS(2232), - [anon_sym_u8R_DQUOTE] = ACTIONS(2232), - [anon_sym_co_await] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_requires] = ACTIONS(2230), - [sym_this] = ACTIONS(2230), + [sym_identifier] = ACTIONS(2218), + [aux_sym_preproc_include_token1] = ACTIONS(2218), + [aux_sym_preproc_def_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token2] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2218), + [aux_sym_preproc_else_token1] = ACTIONS(2218), + [aux_sym_preproc_elif_token1] = ACTIONS(2218), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2218), + [sym_preproc_directive] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_PLUS] = ACTIONS(2218), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP_AMP] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2218), + [anon_sym_typedef] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym___attribute__] = ACTIONS(2218), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2220), + [anon_sym___declspec] = ACTIONS(2218), + [anon_sym___based] = ACTIONS(2218), + [anon_sym___cdecl] = ACTIONS(2218), + [anon_sym___clrcall] = ACTIONS(2218), + [anon_sym___stdcall] = ACTIONS(2218), + [anon_sym___fastcall] = ACTIONS(2218), + [anon_sym___thiscall] = ACTIONS(2218), + [anon_sym___vectorcall] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_signed] = ACTIONS(2218), + [anon_sym_unsigned] = ACTIONS(2218), + [anon_sym_long] = ACTIONS(2218), + [anon_sym_short] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_inline] = ACTIONS(2218), + [anon_sym___inline] = ACTIONS(2218), + [anon_sym___inline__] = ACTIONS(2218), + [anon_sym___forceinline] = ACTIONS(2218), + [anon_sym_thread_local] = ACTIONS(2218), + [anon_sym___thread] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_constexpr] = ACTIONS(2218), + [anon_sym_volatile] = ACTIONS(2218), + [anon_sym_restrict] = ACTIONS(2218), + [anon_sym___restrict__] = ACTIONS(2218), + [anon_sym__Atomic] = ACTIONS(2218), + [anon_sym__Noreturn] = ACTIONS(2218), + [anon_sym_noreturn] = ACTIONS(2218), + [anon_sym_mutable] = ACTIONS(2218), + [anon_sym_constinit] = ACTIONS(2218), + [anon_sym_consteval] = ACTIONS(2218), + [sym_primitive_type] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_class] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_else] = ACTIONS(2218), + [anon_sym_switch] = ACTIONS(2218), + [anon_sym_case] = ACTIONS(2218), + [anon_sym_default] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_do] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_goto] = ACTIONS(2218), + [anon_sym_not] = ACTIONS(2218), + [anon_sym_compl] = ACTIONS(2218), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(2218), + [anon_sym___alignof__] = ACTIONS(2218), + [anon_sym___alignof] = ACTIONS(2218), + [anon_sym__alignof] = ACTIONS(2218), + [anon_sym_alignof] = ACTIONS(2218), + [anon_sym__Alignof] = ACTIONS(2218), + [anon_sym_offsetof] = ACTIONS(2218), + [anon_sym__Generic] = ACTIONS(2218), + [anon_sym_asm] = ACTIONS(2218), + [anon_sym___asm__] = ACTIONS(2218), + [sym_number_literal] = ACTIONS(2220), + [anon_sym_L_SQUOTE] = ACTIONS(2220), + [anon_sym_u_SQUOTE] = ACTIONS(2220), + [anon_sym_U_SQUOTE] = ACTIONS(2220), + [anon_sym_u8_SQUOTE] = ACTIONS(2220), + [anon_sym_SQUOTE] = ACTIONS(2220), + [anon_sym_L_DQUOTE] = ACTIONS(2220), + [anon_sym_u_DQUOTE] = ACTIONS(2220), + [anon_sym_U_DQUOTE] = ACTIONS(2220), + [anon_sym_u8_DQUOTE] = ACTIONS(2220), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_true] = ACTIONS(2218), + [sym_false] = ACTIONS(2218), + [anon_sym_NULL] = ACTIONS(2218), + [anon_sym_nullptr] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2218), + [anon_sym_virtual] = ACTIONS(2218), + [anon_sym_alignas] = ACTIONS(2218), + [anon_sym_explicit] = ACTIONS(2218), + [anon_sym_typename] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_operator] = ACTIONS(2218), + [anon_sym_try] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(2218), + [anon_sym_throw] = ACTIONS(2218), + [anon_sym_namespace] = ACTIONS(2218), + [anon_sym_using] = ACTIONS(2218), + [anon_sym_static_assert] = ACTIONS(2218), + [anon_sym_concept] = ACTIONS(2218), + [anon_sym_co_return] = ACTIONS(2218), + [anon_sym_co_yield] = ACTIONS(2218), + [anon_sym_catch] = ACTIONS(2222), + [anon_sym_R_DQUOTE] = ACTIONS(2220), + [anon_sym_LR_DQUOTE] = ACTIONS(2220), + [anon_sym_uR_DQUOTE] = ACTIONS(2220), + [anon_sym_UR_DQUOTE] = ACTIONS(2220), + [anon_sym_u8R_DQUOTE] = ACTIONS(2220), + [anon_sym_co_await] = ACTIONS(2218), + [anon_sym_new] = ACTIONS(2218), + [anon_sym_requires] = ACTIONS(2218), + [sym_this] = ACTIONS(2218), }, [156] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(632), - [sym_attributed_statement] = STATE(631), - [sym_labeled_statement] = STATE(623), - [sym_expression_statement] = STATE(621), - [sym_if_statement] = STATE(615), - [sym_switch_statement] = STATE(628), - [sym_case_statement] = STATE(622), - [sym_while_statement] = STATE(614), - [sym_do_statement] = STATE(671), - [sym_for_statement] = STATE(664), - [sym_return_statement] = STATE(640), - [sym_break_statement] = STATE(639), - [sym_continue_statement] = STATE(630), - [sym_goto_statement] = STATE(661), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(644), - [sym_co_return_statement] = STATE(665), - [sym_co_yield_statement] = STATE(668), - [sym_throw_statement] = STATE(669), - [sym_try_statement] = STATE(674), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(268), + [sym_attributed_statement] = STATE(268), + [sym_labeled_statement] = STATE(268), + [sym_expression_statement] = STATE(268), + [sym_if_statement] = STATE(268), + [sym_switch_statement] = STATE(268), + [sym_case_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_do_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_return_statement] = STATE(268), + [sym_break_statement] = STATE(268), + [sym_continue_statement] = STATE(268), + [sym_goto_statement] = STATE(268), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(268), + [sym_co_return_statement] = STATE(268), + [sym_co_yield_statement] = STATE(268), + [sym_throw_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2225), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -81510,23 +78171,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(255), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(273), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -81557,13 +78218,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), + [anon_sym_try] = ACTIONS(291), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), + [anon_sym_throw] = ACTIONS(293), + [anon_sym_co_return] = ACTIONS(303), + [anon_sym_co_yield] = ACTIONS(305), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -81575,71 +78236,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [157] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(9258), - [sym_attributed_statement] = STATE(9258), - [sym_labeled_statement] = STATE(9258), - [sym_expression_statement] = STATE(9258), - [sym_if_statement] = STATE(9258), - [sym_switch_statement] = STATE(9258), - [sym_case_statement] = STATE(9258), - [sym_while_statement] = STATE(9258), - [sym_do_statement] = STATE(9258), - [sym_for_statement] = STATE(9258), - [sym_return_statement] = STATE(9258), - [sym_break_statement] = STATE(9258), - [sym_continue_statement] = STATE(9258), - [sym_goto_statement] = STATE(9258), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(9258), - [sym_co_return_statement] = STATE(9258), - [sym_co_yield_statement] = STATE(9258), - [sym_throw_statement] = STATE(9258), - [sym_try_statement] = STATE(9258), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(599), + [sym_attributed_statement] = STATE(599), + [sym_labeled_statement] = STATE(599), + [sym_expression_statement] = STATE(599), + [sym_if_statement] = STATE(599), + [sym_switch_statement] = STATE(599), + [sym_case_statement] = STATE(599), + [sym_while_statement] = STATE(599), + [sym_do_statement] = STATE(599), + [sym_for_statement] = STATE(599), + [sym_return_statement] = STATE(599), + [sym_break_statement] = STATE(599), + [sym_continue_statement] = STATE(599), + [sym_goto_statement] = STATE(599), + [sym__expression] = STATE(4151), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7452), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(599), + [sym_co_return_statement] = STATE(599), + [sym_co_yield_statement] = STATE(599), + [sym_throw_statement] = STATE(599), + [sym_try_statement] = STATE(599), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2229), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -81647,19 +78308,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1628), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(73), [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), + [anon_sym_case] = ACTIONS(77), + [anon_sym_default] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(85), [anon_sym_return] = ACTIONS(87), [anon_sym_break] = ACTIONS(89), [anon_sym_continue] = ACTIONS(91), @@ -81694,7 +78355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), @@ -81712,71 +78373,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [158] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(871), - [sym_attributed_statement] = STATE(983), - [sym_labeled_statement] = STATE(977), - [sym_expression_statement] = STATE(972), - [sym_if_statement] = STATE(970), - [sym_switch_statement] = STATE(965), - [sym_case_statement] = STATE(964), - [sym_while_statement] = STATE(963), - [sym_do_statement] = STATE(962), - [sym_for_statement] = STATE(961), - [sym_return_statement] = STATE(956), - [sym_break_statement] = STATE(953), - [sym_continue_statement] = STATE(948), - [sym_goto_statement] = STATE(947), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(943), - [sym_co_return_statement] = STATE(937), - [sym_co_yield_statement] = STATE(924), - [sym_throw_statement] = STATE(920), - [sym_try_statement] = STATE(919), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), + [sym_attribute_declaration] = STATE(156), + [sym_compound_statement] = STATE(263), + [sym_attributed_statement] = STATE(263), + [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__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [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(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [sym_identifier] = ACTIONS(2225), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -81784,23 +78445,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(255), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(273), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -81831,13 +78492,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(291), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(293), + [anon_sym_co_return] = ACTIONS(303), + [anon_sym_co_yield] = ACTIONS(305), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -81849,71 +78510,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [159] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(1151), - [sym_attributed_statement] = STATE(1151), - [sym_labeled_statement] = STATE(1151), - [sym_expression_statement] = STATE(1151), - [sym_if_statement] = STATE(1151), - [sym_switch_statement] = STATE(1151), - [sym_case_statement] = STATE(1151), - [sym_while_statement] = STATE(1151), - [sym_do_statement] = STATE(1151), - [sym_for_statement] = STATE(1151), - [sym_return_statement] = STATE(1151), - [sym_break_statement] = STATE(1151), - [sym_continue_statement] = STATE(1151), - [sym_goto_statement] = STATE(1151), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1151), - [sym_co_return_statement] = STATE(1151), - [sym_co_yield_statement] = STATE(1151), - [sym_throw_statement] = STATE(1151), - [sym_try_statement] = STATE(1151), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(549), + [sym_attributed_statement] = STATE(549), + [sym_labeled_statement] = STATE(549), + [sym_expression_statement] = STATE(549), + [sym_if_statement] = STATE(549), + [sym_switch_statement] = STATE(549), + [sym_case_statement] = STATE(549), + [sym_while_statement] = STATE(549), + [sym_do_statement] = STATE(549), + [sym_for_statement] = STATE(549), + [sym_return_statement] = STATE(549), + [sym_break_statement] = STATE(549), + [sym_continue_statement] = STATE(549), + [sym_goto_statement] = STATE(549), + [sym__expression] = STATE(4063), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7688), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(549), + [sym_co_return_statement] = STATE(549), + [sym_co_yield_statement] = STATE(549), + [sym_throw_statement] = STATE(549), + [sym_try_statement] = STATE(549), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(2231), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -81921,23 +78582,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(810), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(818), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(822), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_case] = ACTIONS(826), + [anon_sym_default] = ACTIONS(828), + [anon_sym_while] = ACTIONS(830), + [anon_sym_do] = ACTIONS(832), + [anon_sym_for] = ACTIONS(834), + [anon_sym_return] = ACTIONS(836), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(842), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -81968,13 +78629,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(846), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_co_return] = ACTIONS(858), + [anon_sym_co_yield] = ACTIONS(860), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -81986,208 +78647,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [160] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3894), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9633), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9087), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9088), - [sym__unary_right_fold] = STATE(9089), - [sym__binary_fold] = STATE(9207), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [161] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(606), - [sym_attributed_statement] = STATE(606), - [sym_labeled_statement] = STATE(606), - [sym_expression_statement] = STATE(606), - [sym_if_statement] = STATE(606), - [sym_switch_statement] = STATE(606), - [sym_case_statement] = STATE(606), - [sym_while_statement] = STATE(606), - [sym_do_statement] = STATE(606), - [sym_for_statement] = STATE(606), - [sym_return_statement] = STATE(606), - [sym_break_statement] = STATE(606), - [sym_continue_statement] = STATE(606), - [sym_goto_statement] = STATE(606), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(606), - [sym_co_return_statement] = STATE(606), - [sym_co_yield_statement] = STATE(606), - [sym_throw_statement] = STATE(606), - [sym_try_statement] = STATE(606), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(744), + [sym_attributed_statement] = STATE(744), + [sym_labeled_statement] = STATE(744), + [sym_expression_statement] = STATE(744), + [sym_if_statement] = STATE(744), + [sym_switch_statement] = STATE(744), + [sym_case_statement] = STATE(744), + [sym_while_statement] = STATE(744), + [sym_do_statement] = STATE(744), + [sym_for_statement] = STATE(744), + [sym_return_statement] = STATE(744), + [sym_break_statement] = STATE(744), + [sym_continue_statement] = STATE(744), + [sym_goto_statement] = STATE(744), + [sym__expression] = STATE(4063), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7688), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(744), + [sym_co_return_statement] = STATE(744), + [sym_co_yield_statement] = STATE(744), + [sym_throw_statement] = STATE(744), + [sym_try_statement] = STATE(744), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(2231), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -82195,23 +78719,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(810), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(818), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(822), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_case] = ACTIONS(826), + [anon_sym_default] = ACTIONS(828), + [anon_sym_while] = ACTIONS(830), + [anon_sym_do] = ACTIONS(832), + [anon_sym_for] = ACTIONS(834), + [anon_sym_return] = ACTIONS(836), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(842), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -82242,13 +78766,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), + [anon_sym_try] = ACTIONS(846), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_co_return] = ACTIONS(858), + [anon_sym_co_yield] = ACTIONS(860), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -82259,72 +78783,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, + [161] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3138), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7461), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7434), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7329), + [sym__unary_right_fold] = STATE(7330), + [sym__binary_fold] = STATE(7334), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, [162] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(656), - [sym_attributed_statement] = STATE(656), - [sym_labeled_statement] = STATE(656), - [sym_expression_statement] = STATE(656), - [sym_if_statement] = STATE(656), - [sym_switch_statement] = STATE(656), - [sym_case_statement] = STATE(656), - [sym_while_statement] = STATE(656), - [sym_do_statement] = STATE(656), - [sym_for_statement] = STATE(656), - [sym_return_statement] = STATE(656), - [sym_break_statement] = STATE(656), - [sym_continue_statement] = STATE(656), - [sym_goto_statement] = STATE(656), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(656), - [sym_co_return_statement] = STATE(656), - [sym_co_yield_statement] = STATE(656), - [sym_throw_statement] = STATE(656), - [sym_try_statement] = STATE(656), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(6665), + [sym_attributed_statement] = STATE(6665), + [sym_labeled_statement] = STATE(6665), + [sym_expression_statement] = STATE(6665), + [sym_if_statement] = STATE(6665), + [sym_switch_statement] = STATE(6665), + [sym_case_statement] = STATE(6665), + [sym_while_statement] = STATE(6665), + [sym_do_statement] = STATE(6665), + [sym_for_statement] = STATE(6665), + [sym_return_statement] = STATE(6665), + [sym_break_statement] = STATE(6665), + [sym_continue_statement] = STATE(6665), + [sym_goto_statement] = STATE(6665), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(6665), + [sym_co_return_statement] = STATE(6665), + [sym_co_yield_statement] = STATE(6665), + [sym_throw_statement] = STATE(6665), + [sym_try_statement] = STATE(6665), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2235), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -82332,23 +78993,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -82379,13 +79040,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -82397,71 +79058,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [163] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1595), - [sym_attributed_statement] = STATE(1595), - [sym_labeled_statement] = STATE(1595), - [sym_expression_statement] = STATE(1595), - [sym_if_statement] = STATE(1595), - [sym_switch_statement] = STATE(1595), - [sym_case_statement] = STATE(1595), - [sym_while_statement] = STATE(1595), - [sym_do_statement] = STATE(1595), - [sym_for_statement] = STATE(1595), - [sym_return_statement] = STATE(1595), - [sym_break_statement] = STATE(1595), - [sym_continue_statement] = STATE(1595), - [sym_goto_statement] = STATE(1595), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1595), - [sym_co_return_statement] = STATE(1595), - [sym_co_yield_statement] = STATE(1595), - [sym_throw_statement] = STATE(1595), - [sym_try_statement] = STATE(1595), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(2259), + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(7557), + [sym_attributed_statement] = STATE(7557), + [sym_labeled_statement] = STATE(7557), + [sym_expression_statement] = STATE(7557), + [sym_if_statement] = STATE(7557), + [sym_switch_statement] = STATE(7557), + [sym_case_statement] = STATE(7557), + [sym_while_statement] = STATE(7557), + [sym_do_statement] = STATE(7557), + [sym_for_statement] = STATE(7557), + [sym_return_statement] = STATE(7557), + [sym_break_statement] = STATE(7557), + [sym_continue_statement] = STATE(7557), + [sym_goto_statement] = STATE(7557), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(7557), + [sym_co_return_statement] = STATE(7557), + [sym_co_yield_statement] = STATE(7557), + [sym_throw_statement] = STATE(7557), + [sym_try_statement] = STATE(7557), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2235), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -82469,23 +79130,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -82516,13 +79177,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -82534,71 +79195,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [164] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(1036), - [sym_attributed_statement] = STATE(1036), - [sym_labeled_statement] = STATE(1036), - [sym_expression_statement] = STATE(1036), - [sym_if_statement] = STATE(1036), - [sym_switch_statement] = STATE(1036), - [sym_case_statement] = STATE(1036), - [sym_while_statement] = STATE(1036), - [sym_do_statement] = STATE(1036), - [sym_for_statement] = STATE(1036), - [sym_return_statement] = STATE(1036), - [sym_break_statement] = STATE(1036), - [sym_continue_statement] = STATE(1036), - [sym_goto_statement] = STATE(1036), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1036), - [sym_co_return_statement] = STATE(1036), - [sym_co_yield_statement] = STATE(1036), - [sym_throw_statement] = STATE(1036), - [sym_try_statement] = STATE(1036), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(741), + [sym_attributed_statement] = STATE(741), + [sym_labeled_statement] = STATE(741), + [sym_expression_statement] = STATE(741), + [sym_if_statement] = STATE(741), + [sym_switch_statement] = STATE(741), + [sym_case_statement] = STATE(741), + [sym_while_statement] = STATE(741), + [sym_do_statement] = STATE(741), + [sym_for_statement] = STATE(741), + [sym_return_statement] = STATE(741), + [sym_break_statement] = STATE(741), + [sym_continue_statement] = STATE(741), + [sym_goto_statement] = STATE(741), + [sym__expression] = STATE(4063), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7688), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(741), + [sym_co_return_statement] = STATE(741), + [sym_co_yield_statement] = STATE(741), + [sym_throw_statement] = STATE(741), + [sym_try_statement] = STATE(741), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(2231), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -82606,23 +79267,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(810), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(818), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(822), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_case] = ACTIONS(826), + [anon_sym_default] = ACTIONS(828), + [anon_sym_while] = ACTIONS(830), + [anon_sym_do] = ACTIONS(832), + [anon_sym_for] = ACTIONS(834), + [anon_sym_return] = ACTIONS(836), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(842), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -82653,13 +79314,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(846), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_co_return] = ACTIONS(858), + [anon_sym_co_yield] = ACTIONS(860), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -82671,71 +79332,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [165] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1597), - [sym_attributed_statement] = STATE(1597), - [sym_labeled_statement] = STATE(1597), - [sym_expression_statement] = STATE(1597), - [sym_if_statement] = STATE(1597), - [sym_switch_statement] = STATE(1597), - [sym_case_statement] = STATE(1597), - [sym_while_statement] = STATE(1597), - [sym_do_statement] = STATE(1597), - [sym_for_statement] = STATE(1597), - [sym_return_statement] = STATE(1597), - [sym_break_statement] = STATE(1597), - [sym_continue_statement] = STATE(1597), - [sym_goto_statement] = STATE(1597), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1597), - [sym_co_return_statement] = STATE(1597), - [sym_co_yield_statement] = STATE(1597), - [sym_throw_statement] = STATE(1597), - [sym_try_statement] = STATE(1597), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(2259), + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(641), + [sym_attributed_statement] = STATE(641), + [sym_labeled_statement] = STATE(641), + [sym_expression_statement] = STATE(641), + [sym_if_statement] = STATE(641), + [sym_switch_statement] = STATE(641), + [sym_case_statement] = STATE(641), + [sym_while_statement] = STATE(641), + [sym_do_statement] = STATE(641), + [sym_for_statement] = STATE(641), + [sym_return_statement] = STATE(641), + [sym_break_statement] = STATE(641), + [sym_continue_statement] = STATE(641), + [sym_goto_statement] = STATE(641), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(641), + [sym_co_return_statement] = STATE(641), + [sym_co_yield_statement] = STATE(641), + [sym_throw_statement] = STATE(641), + [sym_try_statement] = STATE(641), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(2247), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -82743,23 +79404,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -82790,13 +79451,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -82808,218 +79469,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(213), }, [166] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(864), - [sym_attributed_statement] = STATE(864), - [sym_labeled_statement] = STATE(864), - [sym_expression_statement] = STATE(864), - [sym_if_statement] = STATE(864), - [sym_switch_statement] = STATE(864), - [sym_case_statement] = STATE(864), - [sym_while_statement] = STATE(864), - [sym_do_statement] = STATE(864), - [sym_for_statement] = STATE(864), - [sym_return_statement] = STATE(864), - [sym_break_statement] = STATE(864), - [sym_continue_statement] = STATE(864), - [sym_goto_statement] = STATE(864), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(864), - [sym_co_return_statement] = STATE(864), - [sym_co_yield_statement] = STATE(864), - [sym_throw_statement] = STATE(864), - [sym_try_statement] = STATE(864), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3061), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7869), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(8021), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7227), + [sym__unary_right_fold] = STATE(7226), + [sym__binary_fold] = STATE(7224), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [167] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3894), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9633), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9408), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9088), - [sym__unary_right_fold] = STATE(9089), - [sym__binary_fold] = STATE(9207), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), + [sym_catch_clause] = STATE(155), + [aux_sym_constructor_try_statement_repeat1] = STATE(155), + [sym_identifier] = ACTIONS(2249), + [aux_sym_preproc_include_token1] = ACTIONS(2249), + [aux_sym_preproc_def_token1] = ACTIONS(2249), + [aux_sym_preproc_if_token1] = ACTIONS(2249), + [aux_sym_preproc_if_token2] = ACTIONS(2249), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2249), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2249), + [aux_sym_preproc_else_token1] = ACTIONS(2249), + [aux_sym_preproc_elif_token1] = ACTIONS(2249), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2249), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2249), + [sym_preproc_directive] = ACTIONS(2249), + [anon_sym_LPAREN2] = ACTIONS(2251), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_TILDE] = ACTIONS(2251), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(2251), + [anon_sym_AMP_AMP] = ACTIONS(2251), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym___extension__] = ACTIONS(2249), + [anon_sym_typedef] = ACTIONS(2249), + [anon_sym_extern] = ACTIONS(2249), + [anon_sym___attribute__] = ACTIONS(2249), + [anon_sym_COLON_COLON] = ACTIONS(2251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2251), + [anon_sym___declspec] = ACTIONS(2249), + [anon_sym___based] = ACTIONS(2249), + [anon_sym___cdecl] = ACTIONS(2249), + [anon_sym___clrcall] = ACTIONS(2249), + [anon_sym___stdcall] = ACTIONS(2249), + [anon_sym___fastcall] = ACTIONS(2249), + [anon_sym___thiscall] = ACTIONS(2249), + [anon_sym___vectorcall] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_signed] = ACTIONS(2249), + [anon_sym_unsigned] = ACTIONS(2249), + [anon_sym_long] = ACTIONS(2249), + [anon_sym_short] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_register] = ACTIONS(2249), + [anon_sym_inline] = ACTIONS(2249), + [anon_sym___inline] = ACTIONS(2249), + [anon_sym___inline__] = ACTIONS(2249), + [anon_sym___forceinline] = ACTIONS(2249), + [anon_sym_thread_local] = ACTIONS(2249), + [anon_sym___thread] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_constexpr] = ACTIONS(2249), + [anon_sym_volatile] = ACTIONS(2249), + [anon_sym_restrict] = ACTIONS(2249), + [anon_sym___restrict__] = ACTIONS(2249), + [anon_sym__Atomic] = ACTIONS(2249), + [anon_sym__Noreturn] = ACTIONS(2249), + [anon_sym_noreturn] = ACTIONS(2249), + [anon_sym_mutable] = ACTIONS(2249), + [anon_sym_constinit] = ACTIONS(2249), + [anon_sym_consteval] = ACTIONS(2249), + [sym_primitive_type] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_switch] = ACTIONS(2249), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_goto] = ACTIONS(2249), + [anon_sym_not] = ACTIONS(2249), + [anon_sym_compl] = ACTIONS(2249), + [anon_sym_DASH_DASH] = ACTIONS(2251), + [anon_sym_PLUS_PLUS] = ACTIONS(2251), + [anon_sym_sizeof] = ACTIONS(2249), + [anon_sym___alignof__] = ACTIONS(2249), + [anon_sym___alignof] = ACTIONS(2249), + [anon_sym__alignof] = ACTIONS(2249), + [anon_sym_alignof] = ACTIONS(2249), + [anon_sym__Alignof] = ACTIONS(2249), + [anon_sym_offsetof] = ACTIONS(2249), + [anon_sym__Generic] = ACTIONS(2249), + [anon_sym_asm] = ACTIONS(2249), + [anon_sym___asm__] = ACTIONS(2249), + [sym_number_literal] = ACTIONS(2251), + [anon_sym_L_SQUOTE] = ACTIONS(2251), + [anon_sym_u_SQUOTE] = ACTIONS(2251), + [anon_sym_U_SQUOTE] = ACTIONS(2251), + [anon_sym_u8_SQUOTE] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_L_DQUOTE] = ACTIONS(2251), + [anon_sym_u_DQUOTE] = ACTIONS(2251), + [anon_sym_U_DQUOTE] = ACTIONS(2251), + [anon_sym_u8_DQUOTE] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(2251), + [sym_true] = ACTIONS(2249), + [sym_false] = ACTIONS(2249), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2249), + [anon_sym_decltype] = ACTIONS(2249), + [anon_sym_virtual] = ACTIONS(2249), + [anon_sym_alignas] = ACTIONS(2249), + [anon_sym_explicit] = ACTIONS(2249), + [anon_sym_typename] = ACTIONS(2249), + [anon_sym_template] = ACTIONS(2249), + [anon_sym_operator] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_delete] = ACTIONS(2249), + [anon_sym_throw] = ACTIONS(2249), + [anon_sym_namespace] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [anon_sym_static_assert] = ACTIONS(2249), + [anon_sym_concept] = ACTIONS(2249), + [anon_sym_co_return] = ACTIONS(2249), + [anon_sym_co_yield] = ACTIONS(2249), + [anon_sym_catch] = ACTIONS(2216), + [anon_sym_R_DQUOTE] = ACTIONS(2251), + [anon_sym_LR_DQUOTE] = ACTIONS(2251), + [anon_sym_uR_DQUOTE] = ACTIONS(2251), + [anon_sym_UR_DQUOTE] = ACTIONS(2251), + [anon_sym_u8R_DQUOTE] = ACTIONS(2251), + [anon_sym_co_await] = ACTIONS(2249), + [anon_sym_new] = ACTIONS(2249), + [anon_sym_requires] = ACTIONS(2249), + [sym_this] = ACTIONS(2249), + }, + [168] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3061), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7869), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7680), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7227), + [sym__unary_right_fold] = STATE(7226), + [sym__binary_fold] = STATE(7224), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -83031,122 +79829,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [168] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1598), - [sym_attributed_statement] = STATE(1598), - [sym_labeled_statement] = STATE(1598), - [sym_expression_statement] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_case_statement] = STATE(1598), - [sym_while_statement] = STATE(1598), - [sym_do_statement] = STATE(1598), - [sym_for_statement] = STATE(1598), - [sym_return_statement] = STATE(1598), - [sym_break_statement] = STATE(1598), - [sym_continue_statement] = STATE(1598), - [sym_goto_statement] = STATE(1598), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1598), - [sym_co_return_statement] = STATE(1598), - [sym_co_yield_statement] = STATE(1598), - [sym_throw_statement] = STATE(1598), - [sym_try_statement] = STATE(1598), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(2259), + [169] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3061), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7869), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7941), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7227), + [sym__unary_right_fold] = STATE(7226), + [sym__binary_fold] = STATE(7224), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [170] = { + [sym_attribute_declaration] = STATE(221), + [sym_compound_statement] = STATE(1103), + [sym_attributed_statement] = STATE(1103), + [sym_labeled_statement] = STATE(1103), + [sym_expression_statement] = STATE(1103), + [sym_if_statement] = STATE(1103), + [sym_switch_statement] = STATE(1103), + [sym_case_statement] = STATE(1103), + [sym_while_statement] = STATE(1103), + [sym_do_statement] = STATE(1103), + [sym_for_statement] = STATE(1103), + [sym_return_statement] = STATE(1103), + [sym_break_statement] = STATE(1103), + [sym_continue_statement] = STATE(1103), + [sym_goto_statement] = STATE(1103), + [sym__expression] = STATE(4110), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7822), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(1103), + [sym_co_return_statement] = STATE(1103), + [sym_co_yield_statement] = STATE(1103), + [sym_throw_statement] = STATE(1103), + [sym_try_statement] = STATE(1103), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(2253), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -83154,23 +80089,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1798), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_switch] = ACTIONS(1808), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(1810), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_goto] = ACTIONS(1822), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -83201,13 +80136,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(1824), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(1826), + [anon_sym_co_return] = ACTIONS(1828), + [anon_sym_co_yield] = ACTIONS(1830), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -83218,72 +80153,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [169] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(918), - [sym_attributed_statement] = STATE(915), - [sym_labeled_statement] = STATE(913), - [sym_expression_statement] = STATE(912), - [sym_if_statement] = STATE(910), - [sym_switch_statement] = STATE(907), - [sym_case_statement] = STATE(901), - [sym_while_statement] = STATE(893), - [sym_do_statement] = STATE(873), - [sym_for_statement] = STATE(849), - [sym_return_statement] = STATE(850), - [sym_break_statement] = STATE(851), - [sym_continue_statement] = STATE(852), - [sym_goto_statement] = STATE(853), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(859), - [sym_co_return_statement] = STATE(860), - [sym_co_yield_statement] = STATE(866), - [sym_throw_statement] = STATE(867), - [sym_try_statement] = STATE(868), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), + [171] = { + [sym_catch_clause] = STATE(155), + [aux_sym_constructor_try_statement_repeat1] = STATE(155), + [sym_identifier] = ACTIONS(2255), + [aux_sym_preproc_include_token1] = ACTIONS(2255), + [aux_sym_preproc_def_token1] = ACTIONS(2255), + [aux_sym_preproc_if_token1] = ACTIONS(2255), + [aux_sym_preproc_if_token2] = ACTIONS(2255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2255), + [aux_sym_preproc_else_token1] = ACTIONS(2255), + [aux_sym_preproc_elif_token1] = ACTIONS(2255), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2255), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2255), + [sym_preproc_directive] = ACTIONS(2255), + [anon_sym_LPAREN2] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_AMP_AMP] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2257), + [anon_sym___extension__] = ACTIONS(2255), + [anon_sym_typedef] = ACTIONS(2255), + [anon_sym_extern] = ACTIONS(2255), + [anon_sym___attribute__] = ACTIONS(2255), + [anon_sym_COLON_COLON] = ACTIONS(2257), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2257), + [anon_sym___declspec] = ACTIONS(2255), + [anon_sym___based] = ACTIONS(2255), + [anon_sym___cdecl] = ACTIONS(2255), + [anon_sym___clrcall] = ACTIONS(2255), + [anon_sym___stdcall] = ACTIONS(2255), + [anon_sym___fastcall] = ACTIONS(2255), + [anon_sym___thiscall] = ACTIONS(2255), + [anon_sym___vectorcall] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2257), + [anon_sym_signed] = ACTIONS(2255), + [anon_sym_unsigned] = ACTIONS(2255), + [anon_sym_long] = ACTIONS(2255), + [anon_sym_short] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_register] = ACTIONS(2255), + [anon_sym_inline] = ACTIONS(2255), + [anon_sym___inline] = ACTIONS(2255), + [anon_sym___inline__] = ACTIONS(2255), + [anon_sym___forceinline] = ACTIONS(2255), + [anon_sym_thread_local] = ACTIONS(2255), + [anon_sym___thread] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_constexpr] = ACTIONS(2255), + [anon_sym_volatile] = ACTIONS(2255), + [anon_sym_restrict] = ACTIONS(2255), + [anon_sym___restrict__] = ACTIONS(2255), + [anon_sym__Atomic] = ACTIONS(2255), + [anon_sym__Noreturn] = ACTIONS(2255), + [anon_sym_noreturn] = ACTIONS(2255), + [anon_sym_mutable] = ACTIONS(2255), + [anon_sym_constinit] = ACTIONS(2255), + [anon_sym_consteval] = ACTIONS(2255), + [sym_primitive_type] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [anon_sym_class] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(2255), + [anon_sym_union] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_switch] = ACTIONS(2255), + [anon_sym_case] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2255), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_goto] = ACTIONS(2255), + [anon_sym_not] = ACTIONS(2255), + [anon_sym_compl] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_sizeof] = ACTIONS(2255), + [anon_sym___alignof__] = ACTIONS(2255), + [anon_sym___alignof] = ACTIONS(2255), + [anon_sym__alignof] = ACTIONS(2255), + [anon_sym_alignof] = ACTIONS(2255), + [anon_sym__Alignof] = ACTIONS(2255), + [anon_sym_offsetof] = ACTIONS(2255), + [anon_sym__Generic] = ACTIONS(2255), + [anon_sym_asm] = ACTIONS(2255), + [anon_sym___asm__] = ACTIONS(2255), + [sym_number_literal] = ACTIONS(2257), + [anon_sym_L_SQUOTE] = ACTIONS(2257), + [anon_sym_u_SQUOTE] = ACTIONS(2257), + [anon_sym_U_SQUOTE] = ACTIONS(2257), + [anon_sym_u8_SQUOTE] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2257), + [anon_sym_L_DQUOTE] = ACTIONS(2257), + [anon_sym_u_DQUOTE] = ACTIONS(2257), + [anon_sym_U_DQUOTE] = ACTIONS(2257), + [anon_sym_u8_DQUOTE] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2257), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), + [anon_sym_NULL] = ACTIONS(2255), + [anon_sym_nullptr] = ACTIONS(2255), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2255), + [anon_sym_decltype] = ACTIONS(2255), + [anon_sym_virtual] = ACTIONS(2255), + [anon_sym_alignas] = ACTIONS(2255), + [anon_sym_explicit] = ACTIONS(2255), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(2255), + [anon_sym_operator] = ACTIONS(2255), + [anon_sym_try] = ACTIONS(2255), + [anon_sym_delete] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(2255), + [anon_sym_namespace] = ACTIONS(2255), + [anon_sym_using] = ACTIONS(2255), + [anon_sym_static_assert] = ACTIONS(2255), + [anon_sym_concept] = ACTIONS(2255), + [anon_sym_co_return] = ACTIONS(2255), + [anon_sym_co_yield] = ACTIONS(2255), + [anon_sym_catch] = ACTIONS(2216), + [anon_sym_R_DQUOTE] = ACTIONS(2257), + [anon_sym_LR_DQUOTE] = ACTIONS(2257), + [anon_sym_uR_DQUOTE] = ACTIONS(2257), + [anon_sym_UR_DQUOTE] = ACTIONS(2257), + [anon_sym_u8R_DQUOTE] = ACTIONS(2257), + [anon_sym_co_await] = ACTIONS(2255), + [anon_sym_new] = ACTIONS(2255), + [anon_sym_requires] = ACTIONS(2255), + [sym_this] = ACTIONS(2255), + }, + [172] = { + [sym_attribute_declaration] = STATE(156), + [sym_compound_statement] = STATE(308), + [sym_attributed_statement] = STATE(307), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(305), + [sym_if_statement] = STATE(304), + [sym_switch_statement] = STATE(303), + [sym_case_statement] = STATE(302), + [sym_while_statement] = STATE(301), + [sym_do_statement] = STATE(300), + [sym_for_statement] = STATE(299), + [sym_return_statement] = STATE(297), + [sym_break_statement] = STATE(296), + [sym_continue_statement] = STATE(295), + [sym_goto_statement] = STATE(294), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(292), + [sym_co_return_statement] = STATE(291), + [sym_co_yield_statement] = STATE(290), + [sym_throw_statement] = STATE(264), + [sym_try_statement] = STATE(289), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [sym_identifier] = ACTIONS(2225), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -83291,23 +80363,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(255), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(273), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -83338,13 +80410,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(291), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(293), + [anon_sym_co_return] = ACTIONS(303), + [anon_sym_co_yield] = ACTIONS(305), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -83355,209 +80427,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [170] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3889), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9595), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(8976), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9701), - [sym__unary_right_fold] = STATE(9697), - [sym__binary_fold] = STATE(9685), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [171] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1599), - [sym_attributed_statement] = STATE(1599), - [sym_labeled_statement] = STATE(1599), - [sym_expression_statement] = STATE(1599), - [sym_if_statement] = STATE(1599), - [sym_switch_statement] = STATE(1599), - [sym_case_statement] = STATE(1599), - [sym_while_statement] = STATE(1599), - [sym_do_statement] = STATE(1599), - [sym_for_statement] = STATE(1599), - [sym_return_statement] = STATE(1599), - [sym_break_statement] = STATE(1599), - [sym_continue_statement] = STATE(1599), - [sym_goto_statement] = STATE(1599), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1599), - [sym_co_return_statement] = STATE(1599), - [sym_co_yield_statement] = STATE(1599), - [sym_throw_statement] = STATE(1599), - [sym_try_statement] = STATE(1599), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(2259), + [173] = { + [sym_attribute_declaration] = STATE(156), + [sym_compound_statement] = STATE(328), + [sym_attributed_statement] = STATE(327), + [sym_labeled_statement] = STATE(326), + [sym_expression_statement] = STATE(325), + [sym_if_statement] = STATE(324), + [sym_switch_statement] = STATE(323), + [sym_case_statement] = STATE(322), + [sym_while_statement] = STATE(321), + [sym_do_statement] = STATE(320), + [sym_for_statement] = STATE(319), + [sym_return_statement] = STATE(318), + [sym_break_statement] = STATE(317), + [sym_continue_statement] = STATE(316), + [sym_goto_statement] = STATE(315), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(314), + [sym_co_return_statement] = STATE(313), + [sym_co_yield_statement] = STATE(312), + [sym_throw_statement] = STATE(311), + [sym_try_statement] = STATE(309), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [sym_identifier] = ACTIONS(2225), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -83565,23 +80500,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(255), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(273), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -83612,13 +80547,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(291), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(293), + [anon_sym_co_return] = ACTIONS(303), + [anon_sym_co_yield] = ACTIONS(305), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -83629,72 +80564,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [172] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1601), - [sym_attributed_statement] = STATE(1601), - [sym_labeled_statement] = STATE(1601), - [sym_expression_statement] = STATE(1601), - [sym_if_statement] = STATE(1601), - [sym_switch_statement] = STATE(1601), - [sym_case_statement] = STATE(1601), - [sym_while_statement] = STATE(1601), - [sym_do_statement] = STATE(1601), - [sym_for_statement] = STATE(1601), - [sym_return_statement] = STATE(1601), - [sym_break_statement] = STATE(1601), - [sym_continue_statement] = STATE(1601), - [sym_goto_statement] = STATE(1601), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1601), - [sym_co_return_statement] = STATE(1601), - [sym_co_yield_statement] = STATE(1601), - [sym_throw_statement] = STATE(1601), - [sym_try_statement] = STATE(1601), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(2259), + [174] = { + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(717), + [sym_attributed_statement] = STATE(718), + [sym_labeled_statement] = STATE(719), + [sym_expression_statement] = STATE(720), + [sym_if_statement] = STATE(721), + [sym_switch_statement] = STATE(722), + [sym_case_statement] = STATE(723), + [sym_while_statement] = STATE(724), + [sym_do_statement] = STATE(725), + [sym_for_statement] = STATE(727), + [sym_return_statement] = STATE(728), + [sym_break_statement] = STATE(729), + [sym_continue_statement] = STATE(730), + [sym_goto_statement] = STATE(731), + [sym__expression] = STATE(4151), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7452), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(732), + [sym_co_return_statement] = STATE(733), + [sym_co_yield_statement] = STATE(734), + [sym_throw_statement] = STATE(735), + [sym_try_statement] = STATE(738), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2229), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -83702,23 +80637,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1628), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(73), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(77), + [anon_sym_default] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(85), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -83749,13 +80684,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -83766,209 +80701,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [173] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1584), - [sym_attributed_statement] = STATE(1584), - [sym_labeled_statement] = STATE(1584), - [sym_expression_statement] = STATE(1584), - [sym_if_statement] = STATE(1584), - [sym_switch_statement] = STATE(1584), - [sym_case_statement] = STATE(1584), - [sym_while_statement] = STATE(1584), - [sym_do_statement] = STATE(1584), - [sym_for_statement] = STATE(1584), - [sym_return_statement] = STATE(1584), - [sym_break_statement] = STATE(1584), - [sym_continue_statement] = STATE(1584), - [sym_goto_statement] = STATE(1584), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1584), - [sym_co_return_statement] = STATE(1584), - [sym_co_yield_statement] = STATE(1584), - [sym_throw_statement] = STATE(1584), - [sym_try_statement] = STATE(1584), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), + [175] = { + [sym_attribute_declaration] = STATE(175), + [sym_compound_statement] = STATE(749), + [sym_attributed_statement] = STATE(749), + [sym_labeled_statement] = STATE(749), + [sym_expression_statement] = STATE(749), + [sym_if_statement] = STATE(749), + [sym_switch_statement] = STATE(749), + [sym_case_statement] = STATE(749), + [sym_while_statement] = STATE(749), + [sym_do_statement] = STATE(749), + [sym_for_statement] = STATE(749), + [sym_return_statement] = STATE(749), + [sym_break_statement] = STATE(749), + [sym_continue_statement] = STATE(749), + [sym_goto_statement] = STATE(749), + [sym__expression] = STATE(4063), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7688), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(749), + [sym_co_return_statement] = STATE(749), + [sym_co_yield_statement] = STATE(749), + [sym_throw_statement] = STATE(749), + [sym_try_statement] = STATE(749), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(175), [sym_identifier] = ACTIONS(2259), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_LPAREN2] = ACTIONS(2262), + [anon_sym_BANG] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(2277), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2286), + [sym_primitive_type] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2292), + [anon_sym_switch] = ACTIONS(2295), + [anon_sym_case] = ACTIONS(2298), + [anon_sym_default] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2316), + [anon_sym_continue] = ACTIONS(2319), + [anon_sym_goto] = ACTIONS(2322), + [anon_sym_not] = ACTIONS(2268), + [anon_sym_compl] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2325), + [anon_sym_PLUS_PLUS] = ACTIONS(2325), + [anon_sym_sizeof] = ACTIONS(2328), + [anon_sym___alignof__] = ACTIONS(2331), + [anon_sym___alignof] = ACTIONS(2331), + [anon_sym__alignof] = ACTIONS(2331), + [anon_sym_alignof] = ACTIONS(2331), + [anon_sym__Alignof] = ACTIONS(2331), + [anon_sym_offsetof] = ACTIONS(2334), + [anon_sym__Generic] = ACTIONS(2337), + [anon_sym_asm] = ACTIONS(2340), + [anon_sym___asm__] = ACTIONS(2340), + [sym_number_literal] = ACTIONS(2343), + [anon_sym_L_SQUOTE] = ACTIONS(2346), + [anon_sym_u_SQUOTE] = ACTIONS(2346), + [anon_sym_U_SQUOTE] = ACTIONS(2346), + [anon_sym_u8_SQUOTE] = ACTIONS(2346), + [anon_sym_SQUOTE] = ACTIONS(2346), + [anon_sym_L_DQUOTE] = ACTIONS(2349), + [anon_sym_u_DQUOTE] = ACTIONS(2349), + [anon_sym_U_DQUOTE] = ACTIONS(2349), + [anon_sym_u8_DQUOTE] = ACTIONS(2349), + [anon_sym_DQUOTE] = ACTIONS(2349), + [sym_true] = ACTIONS(2352), + [sym_false] = ACTIONS(2352), + [anon_sym_NULL] = ACTIONS(2355), + [anon_sym_nullptr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2358), + [anon_sym_template] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2364), + [anon_sym_delete] = ACTIONS(2367), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_co_return] = ACTIONS(2373), + [anon_sym_co_yield] = ACTIONS(2376), + [anon_sym_R_DQUOTE] = ACTIONS(2379), + [anon_sym_LR_DQUOTE] = ACTIONS(2379), + [anon_sym_uR_DQUOTE] = ACTIONS(2379), + [anon_sym_UR_DQUOTE] = ACTIONS(2379), + [anon_sym_u8R_DQUOTE] = ACTIONS(2379), + [anon_sym_co_await] = ACTIONS(2382), + [anon_sym_new] = ACTIONS(2385), + [anon_sym_requires] = ACTIONS(2388), + [sym_this] = ACTIONS(2352), }, - [174] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(645), - [sym_attributed_statement] = STATE(645), - [sym_labeled_statement] = STATE(645), - [sym_expression_statement] = STATE(645), - [sym_if_statement] = STATE(645), - [sym_switch_statement] = STATE(645), - [sym_case_statement] = STATE(645), - [sym_while_statement] = STATE(645), - [sym_do_statement] = STATE(645), - [sym_for_statement] = STATE(645), - [sym_return_statement] = STATE(645), - [sym_break_statement] = STATE(645), - [sym_continue_statement] = STATE(645), - [sym_goto_statement] = STATE(645), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(645), - [sym_co_return_statement] = STATE(645), - [sym_co_yield_statement] = STATE(645), - [sym_throw_statement] = STATE(645), - [sym_try_statement] = STATE(645), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), + [176] = { + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(581), + [sym_attributed_statement] = STATE(650), + [sym_labeled_statement] = STATE(653), + [sym_expression_statement] = STATE(655), + [sym_if_statement] = STATE(656), + [sym_switch_statement] = STATE(657), + [sym_case_statement] = STATE(658), + [sym_while_statement] = STATE(659), + [sym_do_statement] = STATE(660), + [sym_for_statement] = STATE(661), + [sym_return_statement] = STATE(662), + [sym_break_statement] = STATE(664), + [sym_continue_statement] = STATE(665), + [sym_goto_statement] = STATE(666), + [sym__expression] = STATE(4151), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7452), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(667), + [sym_co_return_statement] = STATE(669), + [sym_co_yield_statement] = STATE(713), + [sym_throw_statement] = STATE(714), + [sym_try_statement] = STATE(716), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2229), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -83976,23 +80911,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(1628), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(73), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(77), + [anon_sym_default] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(85), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -84023,13 +80958,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -84040,72 +80975,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [175] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(1217), - [sym_attributed_statement] = STATE(1217), - [sym_labeled_statement] = STATE(1217), - [sym_expression_statement] = STATE(1217), - [sym_if_statement] = STATE(1217), - [sym_switch_statement] = STATE(1217), - [sym_case_statement] = STATE(1217), - [sym_while_statement] = STATE(1217), - [sym_do_statement] = STATE(1217), - [sym_for_statement] = STATE(1217), - [sym_return_statement] = STATE(1217), - [sym_break_statement] = STATE(1217), - [sym_continue_statement] = STATE(1217), - [sym_goto_statement] = STATE(1217), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1217), - [sym_co_return_statement] = STATE(1217), - [sym_co_yield_statement] = STATE(1217), - [sym_throw_statement] = STATE(1217), - [sym_try_statement] = STATE(1217), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), + [177] = { + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(647), + [sym_attributed_statement] = STATE(647), + [sym_labeled_statement] = STATE(647), + [sym_expression_statement] = STATE(647), + [sym_if_statement] = STATE(647), + [sym_switch_statement] = STATE(647), + [sym_case_statement] = STATE(647), + [sym_while_statement] = STATE(647), + [sym_do_statement] = STATE(647), + [sym_for_statement] = STATE(647), + [sym_return_statement] = STATE(647), + [sym_break_statement] = STATE(647), + [sym_continue_statement] = STATE(647), + [sym_goto_statement] = STATE(647), + [sym__expression] = STATE(4151), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7452), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(647), + [sym_co_return_statement] = STATE(647), + [sym_co_yield_statement] = STATE(647), + [sym_throw_statement] = STATE(647), + [sym_try_statement] = STATE(647), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2229), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -84113,12 +81048,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1628), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), + [sym_primitive_type] = ACTIONS(2227), [anon_sym_if] = ACTIONS(73), [anon_sym_switch] = ACTIONS(75), [anon_sym_case] = ACTIONS(77), @@ -84160,7 +81095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), @@ -84177,209 +81112,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [176] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3912), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9086), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9101), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9098), - [sym__unary_right_fold] = STATE(9090), - [sym__binary_fold] = STATE(9079), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [177] = { - [sym_attribute_declaration] = STATE(289), - [sym_compound_statement] = STATE(971), - [sym_attributed_statement] = STATE(971), - [sym_labeled_statement] = STATE(971), - [sym_expression_statement] = STATE(971), - [sym_if_statement] = STATE(971), - [sym_switch_statement] = STATE(971), - [sym_case_statement] = STATE(971), - [sym_while_statement] = STATE(971), - [sym_do_statement] = STATE(971), - [sym_for_statement] = STATE(971), - [sym_return_statement] = STATE(971), - [sym_break_statement] = STATE(971), - [sym_continue_statement] = STATE(971), - [sym_goto_statement] = STATE(971), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(971), - [sym_co_return_statement] = STATE(971), - [sym_co_yield_statement] = STATE(971), - [sym_throw_statement] = STATE(971), - [sym_try_statement] = STATE(971), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(289), - [sym_identifier] = ACTIONS(2241), + [178] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(459), + [sym_attributed_statement] = STATE(459), + [sym_labeled_statement] = STATE(459), + [sym_expression_statement] = STATE(459), + [sym_if_statement] = STATE(459), + [sym_switch_statement] = STATE(459), + [sym_case_statement] = STATE(459), + [sym_while_statement] = STATE(459), + [sym_do_statement] = STATE(459), + [sym_for_statement] = STATE(459), + [sym_return_statement] = STATE(459), + [sym_break_statement] = STATE(459), + [sym_continue_statement] = STATE(459), + [sym_goto_statement] = STATE(459), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(459), + [sym_co_return_statement] = STATE(459), + [sym_co_yield_statement] = STATE(459), + [sym_throw_statement] = STATE(459), + [sym_try_statement] = STATE(459), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -84387,23 +81185,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(363), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -84434,13 +81232,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(399), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(401), + [anon_sym_co_return] = ACTIONS(411), + [anon_sym_co_yield] = ACTIONS(413), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -84451,72 +81249,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [178] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1602), - [sym_attributed_statement] = STATE(1602), - [sym_labeled_statement] = STATE(1602), - [sym_expression_statement] = STATE(1602), - [sym_if_statement] = STATE(1602), - [sym_switch_statement] = STATE(1602), - [sym_case_statement] = STATE(1602), - [sym_while_statement] = STATE(1602), - [sym_do_statement] = STATE(1602), - [sym_for_statement] = STATE(1602), - [sym_return_statement] = STATE(1602), - [sym_break_statement] = STATE(1602), - [sym_continue_statement] = STATE(1602), - [sym_goto_statement] = STATE(1602), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1602), - [sym_co_return_statement] = STATE(1602), - [sym_co_yield_statement] = STATE(1602), - [sym_throw_statement] = STATE(1602), - [sym_try_statement] = STATE(1602), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(2259), + [179] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3061), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7869), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7895), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7227), + [sym__unary_right_fold] = STATE(7226), + [sym__binary_fold] = STATE(7224), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [180] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3009), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7230), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7681), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7684), + [sym__unary_right_fold] = STATE(7685), + [sym__binary_fold] = STATE(7686), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [181] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(711), + [sym_attributed_statement] = STATE(711), + [sym_labeled_statement] = STATE(711), + [sym_expression_statement] = STATE(711), + [sym_if_statement] = STATE(711), + [sym_switch_statement] = STATE(711), + [sym_case_statement] = STATE(711), + [sym_while_statement] = STATE(711), + [sym_do_statement] = STATE(711), + [sym_for_statement] = STATE(711), + [sym_return_statement] = STATE(711), + [sym_break_statement] = STATE(711), + [sym_continue_statement] = STATE(711), + [sym_goto_statement] = STATE(711), + [sym__expression] = STATE(4063), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7688), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(711), + [sym_co_return_statement] = STATE(711), + [sym_co_yield_statement] = STATE(711), + [sym_throw_statement] = STATE(711), + [sym_try_statement] = STATE(711), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(2231), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -84524,23 +81596,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(810), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(818), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(822), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_case] = ACTIONS(826), + [anon_sym_default] = ACTIONS(828), + [anon_sym_while] = ACTIONS(830), + [anon_sym_do] = ACTIONS(832), + [anon_sym_for] = ACTIONS(834), + [anon_sym_return] = ACTIONS(836), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(842), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -84571,13 +81643,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(846), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_co_return] = ACTIONS(858), + [anon_sym_co_yield] = ACTIONS(860), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -84588,72 +81660,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [179] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1603), - [sym_attributed_statement] = STATE(1603), - [sym_labeled_statement] = STATE(1603), - [sym_expression_statement] = STATE(1603), - [sym_if_statement] = STATE(1603), - [sym_switch_statement] = STATE(1603), - [sym_case_statement] = STATE(1603), - [sym_while_statement] = STATE(1603), - [sym_do_statement] = STATE(1603), - [sym_for_statement] = STATE(1603), - [sym_return_statement] = STATE(1603), - [sym_break_statement] = STATE(1603), - [sym_continue_statement] = STATE(1603), - [sym_goto_statement] = STATE(1603), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1603), - [sym_co_return_statement] = STATE(1603), - [sym_co_yield_statement] = STATE(1603), - [sym_throw_statement] = STATE(1603), - [sym_try_statement] = STATE(1603), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(2259), + [182] = { + [sym_attribute_declaration] = STATE(156), + [sym_compound_statement] = STATE(330), + [sym_attributed_statement] = STATE(330), + [sym_labeled_statement] = STATE(330), + [sym_expression_statement] = STATE(330), + [sym_if_statement] = STATE(330), + [sym_switch_statement] = STATE(330), + [sym_case_statement] = STATE(330), + [sym_while_statement] = STATE(330), + [sym_do_statement] = STATE(330), + [sym_for_statement] = STATE(330), + [sym_return_statement] = STATE(330), + [sym_break_statement] = STATE(330), + [sym_continue_statement] = STATE(330), + [sym_goto_statement] = STATE(330), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(330), + [sym_co_return_statement] = STATE(330), + [sym_co_yield_statement] = STATE(330), + [sym_throw_statement] = STATE(330), + [sym_try_statement] = STATE(330), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [sym_identifier] = ACTIONS(2225), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -84661,23 +81733,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(255), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(273), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -84708,13 +81780,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(291), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(293), + [anon_sym_co_return] = ACTIONS(303), + [anon_sym_co_yield] = ACTIONS(305), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -84725,72 +81797,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [180] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1606), - [sym_attributed_statement] = STATE(1606), - [sym_labeled_statement] = STATE(1606), - [sym_expression_statement] = STATE(1606), - [sym_if_statement] = STATE(1606), - [sym_switch_statement] = STATE(1606), - [sym_case_statement] = STATE(1606), - [sym_while_statement] = STATE(1606), - [sym_do_statement] = STATE(1606), - [sym_for_statement] = STATE(1606), - [sym_return_statement] = STATE(1606), - [sym_break_statement] = STATE(1606), - [sym_continue_statement] = STATE(1606), - [sym_goto_statement] = STATE(1606), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1606), - [sym_co_return_statement] = STATE(1606), - [sym_co_yield_statement] = STATE(1606), - [sym_throw_statement] = STATE(1606), - [sym_try_statement] = STATE(1606), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(2259), + [183] = { + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(591), + [sym_attributed_statement] = STATE(591), + [sym_labeled_statement] = STATE(591), + [sym_expression_statement] = STATE(591), + [sym_if_statement] = STATE(591), + [sym_switch_statement] = STATE(591), + [sym_case_statement] = STATE(591), + [sym_while_statement] = STATE(591), + [sym_do_statement] = STATE(591), + [sym_for_statement] = STATE(591), + [sym_return_statement] = STATE(591), + [sym_break_statement] = STATE(591), + [sym_continue_statement] = STATE(591), + [sym_goto_statement] = STATE(591), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(591), + [sym_co_return_statement] = STATE(591), + [sym_co_yield_statement] = STATE(591), + [sym_throw_statement] = STATE(591), + [sym_try_statement] = STATE(591), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2235), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -84798,23 +81870,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -84845,13 +81917,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -84862,72 +81934,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [181] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(1160), - [sym_attributed_statement] = STATE(1160), - [sym_labeled_statement] = STATE(1160), - [sym_expression_statement] = STATE(1160), - [sym_if_statement] = STATE(1160), - [sym_switch_statement] = STATE(1160), - [sym_case_statement] = STATE(1160), - [sym_while_statement] = STATE(1160), - [sym_do_statement] = STATE(1160), - [sym_for_statement] = STATE(1160), - [sym_return_statement] = STATE(1160), - [sym_break_statement] = STATE(1160), - [sym_continue_statement] = STATE(1160), - [sym_goto_statement] = STATE(1160), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1160), - [sym_co_return_statement] = STATE(1160), - [sym_co_yield_statement] = STATE(1160), - [sym_throw_statement] = STATE(1160), - [sym_try_statement] = STATE(1160), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), + [184] = { + [sym_attribute_declaration] = STATE(184), + [sym_compound_statement] = STATE(596), + [sym_attributed_statement] = STATE(596), + [sym_labeled_statement] = STATE(596), + [sym_expression_statement] = STATE(596), + [sym_if_statement] = STATE(596), + [sym_switch_statement] = STATE(596), + [sym_case_statement] = STATE(596), + [sym_while_statement] = STATE(596), + [sym_do_statement] = STATE(596), + [sym_for_statement] = STATE(596), + [sym_return_statement] = STATE(596), + [sym_break_statement] = STATE(596), + [sym_continue_statement] = STATE(596), + [sym_goto_statement] = STATE(596), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(596), + [sym_co_return_statement] = STATE(596), + [sym_co_yield_statement] = STATE(596), + [sym_throw_statement] = STATE(596), + [sym_try_statement] = STATE(596), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN2] = ACTIONS(2262), + [anon_sym_BANG] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_COLON_COLON] = ACTIONS(2277), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2286), + [sym_primitive_type] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2414), + [anon_sym_do] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2423), + [anon_sym_break] = ACTIONS(2426), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_goto] = ACTIONS(2432), + [anon_sym_not] = ACTIONS(2268), + [anon_sym_compl] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2325), + [anon_sym_PLUS_PLUS] = ACTIONS(2325), + [anon_sym_sizeof] = ACTIONS(2328), + [anon_sym___alignof__] = ACTIONS(2331), + [anon_sym___alignof] = ACTIONS(2331), + [anon_sym__alignof] = ACTIONS(2331), + [anon_sym_alignof] = ACTIONS(2331), + [anon_sym__Alignof] = ACTIONS(2331), + [anon_sym_offsetof] = ACTIONS(2334), + [anon_sym__Generic] = ACTIONS(2337), + [anon_sym_asm] = ACTIONS(2340), + [anon_sym___asm__] = ACTIONS(2340), + [sym_number_literal] = ACTIONS(2343), + [anon_sym_L_SQUOTE] = ACTIONS(2346), + [anon_sym_u_SQUOTE] = ACTIONS(2346), + [anon_sym_U_SQUOTE] = ACTIONS(2346), + [anon_sym_u8_SQUOTE] = ACTIONS(2346), + [anon_sym_SQUOTE] = ACTIONS(2346), + [anon_sym_L_DQUOTE] = ACTIONS(2349), + [anon_sym_u_DQUOTE] = ACTIONS(2349), + [anon_sym_U_DQUOTE] = ACTIONS(2349), + [anon_sym_u8_DQUOTE] = ACTIONS(2349), + [anon_sym_DQUOTE] = ACTIONS(2349), + [sym_true] = ACTIONS(2352), + [sym_false] = ACTIONS(2352), + [anon_sym_NULL] = ACTIONS(2355), + [anon_sym_nullptr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2358), + [anon_sym_template] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2435), + [anon_sym_delete] = ACTIONS(2367), + [anon_sym_throw] = ACTIONS(2438), + [anon_sym_co_return] = ACTIONS(2441), + [anon_sym_co_yield] = ACTIONS(2444), + [anon_sym_R_DQUOTE] = ACTIONS(2379), + [anon_sym_LR_DQUOTE] = ACTIONS(2379), + [anon_sym_uR_DQUOTE] = ACTIONS(2379), + [anon_sym_UR_DQUOTE] = ACTIONS(2379), + [anon_sym_u8R_DQUOTE] = ACTIONS(2379), + [anon_sym_co_await] = ACTIONS(2382), + [anon_sym_new] = ACTIONS(2385), + [anon_sym_requires] = ACTIONS(2388), + [sym_this] = ACTIONS(2352), + }, + [185] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3009), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7230), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7724), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7684), + [sym__unary_right_fold] = STATE(7685), + [sym__binary_fold] = STATE(7686), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [186] = { + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(6607), + [sym_attributed_statement] = STATE(6607), + [sym_labeled_statement] = STATE(6607), + [sym_expression_statement] = STATE(6607), + [sym_if_statement] = STATE(6607), + [sym_switch_statement] = STATE(6607), + [sym_case_statement] = STATE(6607), + [sym_while_statement] = STATE(6607), + [sym_do_statement] = STATE(6607), + [sym_for_statement] = STATE(6607), + [sym_return_statement] = STATE(6607), + [sym_break_statement] = STATE(6607), + [sym_continue_statement] = STATE(6607), + [sym_goto_statement] = STATE(6607), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(6607), + [sym_co_return_statement] = STATE(6607), + [sym_co_yield_statement] = STATE(6607), + [sym_throw_statement] = STATE(6607), + [sym_try_statement] = STATE(6607), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2235), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -84935,23 +82281,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -84982,13 +82328,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -84999,72 +82345,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [182] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1607), - [sym_attributed_statement] = STATE(1607), - [sym_labeled_statement] = STATE(1607), - [sym_expression_statement] = STATE(1607), - [sym_if_statement] = STATE(1607), - [sym_switch_statement] = STATE(1607), - [sym_case_statement] = STATE(1607), - [sym_while_statement] = STATE(1607), - [sym_do_statement] = STATE(1607), - [sym_for_statement] = STATE(1607), - [sym_return_statement] = STATE(1607), - [sym_break_statement] = STATE(1607), - [sym_continue_statement] = STATE(1607), - [sym_goto_statement] = STATE(1607), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1607), - [sym_co_return_statement] = STATE(1607), - [sym_co_yield_statement] = STATE(1607), - [sym_throw_statement] = STATE(1607), - [sym_try_statement] = STATE(1607), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(2259), + [187] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(709), + [sym_attributed_statement] = STATE(708), + [sym_labeled_statement] = STATE(707), + [sym_expression_statement] = STATE(706), + [sym_if_statement] = STATE(705), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(703), + [sym_while_statement] = STATE(702), + [sym_do_statement] = STATE(701), + [sym_for_statement] = STATE(700), + [sym_return_statement] = STATE(699), + [sym_break_statement] = STATE(698), + [sym_continue_statement] = STATE(697), + [sym_goto_statement] = STATE(696), + [sym__expression] = STATE(4063), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7688), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(695), + [sym_co_return_statement] = STATE(693), + [sym_co_yield_statement] = STATE(692), + [sym_throw_statement] = STATE(691), + [sym_try_statement] = STATE(690), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(2231), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -85072,23 +82418,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(810), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(818), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(822), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_case] = ACTIONS(826), + [anon_sym_default] = ACTIONS(828), + [anon_sym_while] = ACTIONS(830), + [anon_sym_do] = ACTIONS(832), + [anon_sym_for] = ACTIONS(834), + [anon_sym_return] = ACTIONS(836), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(842), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -85119,13 +82465,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(846), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_co_return] = ACTIONS(858), + [anon_sym_co_yield] = ACTIONS(860), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -85136,72 +82482,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [183] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1610), - [sym_attributed_statement] = STATE(1611), - [sym_labeled_statement] = STATE(1613), - [sym_expression_statement] = STATE(1616), - [sym_if_statement] = STATE(1617), - [sym_switch_statement] = STATE(1618), - [sym_case_statement] = STATE(1619), - [sym_while_statement] = STATE(1620), - [sym_do_statement] = STATE(1621), - [sym_for_statement] = STATE(1623), - [sym_return_statement] = STATE(1624), - [sym_break_statement] = STATE(1626), - [sym_continue_statement] = STATE(1627), - [sym_goto_statement] = STATE(1628), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1569), - [sym_co_return_statement] = STATE(1630), - [sym_co_yield_statement] = STATE(1631), - [sym_throw_statement] = STATE(1632), - [sym_try_statement] = STATE(1633), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(2259), + [188] = { + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(647), + [sym_attributed_statement] = STATE(647), + [sym_labeled_statement] = STATE(647), + [sym_expression_statement] = STATE(647), + [sym_if_statement] = STATE(647), + [sym_switch_statement] = STATE(647), + [sym_case_statement] = STATE(647), + [sym_while_statement] = STATE(647), + [sym_do_statement] = STATE(647), + [sym_for_statement] = STATE(647), + [sym_return_statement] = STATE(647), + [sym_break_statement] = STATE(647), + [sym_continue_statement] = STATE(647), + [sym_goto_statement] = STATE(647), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(647), + [sym_co_return_statement] = STATE(647), + [sym_co_yield_statement] = STATE(647), + [sym_throw_statement] = STATE(647), + [sym_try_statement] = STATE(647), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2235), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -85209,23 +82555,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -85256,13 +82602,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -85273,72 +82619,483 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [184] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1635), - [sym_attributed_statement] = STATE(1636), - [sym_labeled_statement] = STATE(1529), - [sym_expression_statement] = STATE(1638), - [sym_if_statement] = STATE(1639), - [sym_switch_statement] = STATE(1640), - [sym_case_statement] = STATE(1645), - [sym_while_statement] = STATE(1646), - [sym_do_statement] = STATE(1650), - [sym_for_statement] = STATE(1651), - [sym_return_statement] = STATE(1654), - [sym_break_statement] = STATE(1655), - [sym_continue_statement] = STATE(1656), - [sym_goto_statement] = STATE(1657), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1658), - [sym_co_return_statement] = STATE(1659), - [sym_co_yield_statement] = STATE(1660), - [sym_throw_statement] = STATE(1662), - [sym_try_statement] = STATE(1663), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(2259), + [189] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(268), + [sym_attributed_statement] = STATE(268), + [sym_labeled_statement] = STATE(268), + [sym_expression_statement] = STATE(268), + [sym_if_statement] = STATE(268), + [sym_switch_statement] = STATE(268), + [sym_case_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_do_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_return_statement] = STATE(268), + [sym_break_statement] = STATE(268), + [sym_continue_statement] = STATE(268), + [sym_goto_statement] = STATE(268), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(268), + [sym_co_return_statement] = STATE(268), + [sym_co_yield_statement] = STATE(268), + [sym_throw_statement] = STATE(268), + [sym_try_statement] = STATE(268), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2447), + [anon_sym_LPAREN2] = ACTIONS(2262), + [anon_sym_BANG] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2450), + [anon_sym_COLON_COLON] = ACTIONS(2277), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2286), + [sym_primitive_type] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_switch] = ACTIONS(2459), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2468), + [anon_sym_do] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2480), + [anon_sym_continue] = ACTIONS(2483), + [anon_sym_goto] = ACTIONS(2486), + [anon_sym_not] = ACTIONS(2268), + [anon_sym_compl] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2325), + [anon_sym_PLUS_PLUS] = ACTIONS(2325), + [anon_sym_sizeof] = ACTIONS(2328), + [anon_sym___alignof__] = ACTIONS(2331), + [anon_sym___alignof] = ACTIONS(2331), + [anon_sym__alignof] = ACTIONS(2331), + [anon_sym_alignof] = ACTIONS(2331), + [anon_sym__Alignof] = ACTIONS(2331), + [anon_sym_offsetof] = ACTIONS(2334), + [anon_sym__Generic] = ACTIONS(2337), + [anon_sym_asm] = ACTIONS(2340), + [anon_sym___asm__] = ACTIONS(2340), + [sym_number_literal] = ACTIONS(2343), + [anon_sym_L_SQUOTE] = ACTIONS(2346), + [anon_sym_u_SQUOTE] = ACTIONS(2346), + [anon_sym_U_SQUOTE] = ACTIONS(2346), + [anon_sym_u8_SQUOTE] = ACTIONS(2346), + [anon_sym_SQUOTE] = ACTIONS(2346), + [anon_sym_L_DQUOTE] = ACTIONS(2349), + [anon_sym_u_DQUOTE] = ACTIONS(2349), + [anon_sym_U_DQUOTE] = ACTIONS(2349), + [anon_sym_u8_DQUOTE] = ACTIONS(2349), + [anon_sym_DQUOTE] = ACTIONS(2349), + [sym_true] = ACTIONS(2352), + [sym_false] = ACTIONS(2352), + [anon_sym_NULL] = ACTIONS(2355), + [anon_sym_nullptr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2358), + [anon_sym_template] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_delete] = ACTIONS(2367), + [anon_sym_throw] = ACTIONS(2492), + [anon_sym_co_return] = ACTIONS(2495), + [anon_sym_co_yield] = ACTIONS(2498), + [anon_sym_R_DQUOTE] = ACTIONS(2379), + [anon_sym_LR_DQUOTE] = ACTIONS(2379), + [anon_sym_uR_DQUOTE] = ACTIONS(2379), + [anon_sym_UR_DQUOTE] = ACTIONS(2379), + [anon_sym_u8R_DQUOTE] = ACTIONS(2379), + [anon_sym_co_await] = ACTIONS(2382), + [anon_sym_new] = ACTIONS(2385), + [anon_sym_requires] = ACTIONS(2388), + [sym_this] = ACTIONS(2352), + }, + [190] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3009), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7230), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7500), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7502), + [sym__unary_right_fold] = STATE(7503), + [sym__binary_fold] = STATE(7505), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [191] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3061), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7869), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7813), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7884), + [sym__unary_right_fold] = STATE(7892), + [sym__binary_fold] = STATE(7903), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [192] = { + [sym_attribute_declaration] = STATE(175), + [sym_compound_statement] = STATE(749), + [sym_attributed_statement] = STATE(749), + [sym_labeled_statement] = STATE(749), + [sym_expression_statement] = STATE(749), + [sym_if_statement] = STATE(749), + [sym_switch_statement] = STATE(749), + [sym_case_statement] = STATE(749), + [sym_while_statement] = STATE(749), + [sym_do_statement] = STATE(749), + [sym_for_statement] = STATE(749), + [sym_return_statement] = STATE(749), + [sym_break_statement] = STATE(749), + [sym_continue_statement] = STATE(749), + [sym_goto_statement] = STATE(749), + [sym__expression] = STATE(4063), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7688), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(749), + [sym_co_return_statement] = STATE(749), + [sym_co_yield_statement] = STATE(749), + [sym_throw_statement] = STATE(749), + [sym_try_statement] = STATE(749), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(2231), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -85346,23 +83103,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(810), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(818), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(822), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_case] = ACTIONS(826), + [anon_sym_default] = ACTIONS(828), + [anon_sym_while] = ACTIONS(830), + [anon_sym_do] = ACTIONS(832), + [anon_sym_for] = ACTIONS(834), + [anon_sym_return] = ACTIONS(836), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(842), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -85393,13 +83150,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(846), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_co_return] = ACTIONS(858), + [anon_sym_co_yield] = ACTIONS(860), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -85410,72 +83167,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [185] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(1033), - [sym_attributed_statement] = STATE(1033), - [sym_labeled_statement] = STATE(1033), - [sym_expression_statement] = STATE(1033), - [sym_if_statement] = STATE(1033), - [sym_switch_statement] = STATE(1033), - [sym_case_statement] = STATE(1033), - [sym_while_statement] = STATE(1033), - [sym_do_statement] = STATE(1033), - [sym_for_statement] = STATE(1033), - [sym_return_statement] = STATE(1033), - [sym_break_statement] = STATE(1033), - [sym_continue_statement] = STATE(1033), - [sym_goto_statement] = STATE(1033), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1033), - [sym_co_return_statement] = STATE(1033), - [sym_co_yield_statement] = STATE(1033), - [sym_throw_statement] = STATE(1033), - [sym_try_statement] = STATE(1033), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), + [193] = { + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(548), + [sym_attributed_statement] = STATE(548), + [sym_labeled_statement] = STATE(548), + [sym_expression_statement] = STATE(548), + [sym_if_statement] = STATE(548), + [sym_switch_statement] = STATE(548), + [sym_case_statement] = STATE(548), + [sym_while_statement] = STATE(548), + [sym_do_statement] = STATE(548), + [sym_for_statement] = STATE(548), + [sym_return_statement] = STATE(548), + [sym_break_statement] = STATE(548), + [sym_continue_statement] = STATE(548), + [sym_goto_statement] = STATE(548), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(548), + [sym_co_return_statement] = STATE(548), + [sym_co_yield_statement] = STATE(548), + [sym_throw_statement] = STATE(548), + [sym_try_statement] = STATE(548), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(2247), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -85483,23 +83240,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -85530,13 +83287,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -85547,72 +83304,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [186] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1664), - [sym_attributed_statement] = STATE(1664), - [sym_labeled_statement] = STATE(1664), - [sym_expression_statement] = STATE(1664), - [sym_if_statement] = STATE(1664), - [sym_switch_statement] = STATE(1664), - [sym_case_statement] = STATE(1664), - [sym_while_statement] = STATE(1664), - [sym_do_statement] = STATE(1664), - [sym_for_statement] = STATE(1664), - [sym_return_statement] = STATE(1664), - [sym_break_statement] = STATE(1664), - [sym_continue_statement] = STATE(1664), - [sym_goto_statement] = STATE(1664), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1664), - [sym_co_return_statement] = STATE(1664), - [sym_co_yield_statement] = STATE(1664), - [sym_throw_statement] = STATE(1664), - [sym_try_statement] = STATE(1664), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(2259), + [194] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3061), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7869), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7581), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7884), + [sym__unary_right_fold] = STATE(7892), + [sym__binary_fold] = STATE(7903), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [195] = { + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(581), + [sym_attributed_statement] = STATE(650), + [sym_labeled_statement] = STATE(653), + [sym_expression_statement] = STATE(655), + [sym_if_statement] = STATE(656), + [sym_switch_statement] = STATE(657), + [sym_case_statement] = STATE(658), + [sym_while_statement] = STATE(659), + [sym_do_statement] = STATE(660), + [sym_for_statement] = STATE(661), + [sym_return_statement] = STATE(662), + [sym_break_statement] = STATE(664), + [sym_continue_statement] = STATE(665), + [sym_goto_statement] = STATE(666), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(667), + [sym_co_return_statement] = STATE(669), + [sym_co_yield_statement] = STATE(713), + [sym_throw_statement] = STATE(714), + [sym_try_statement] = STATE(716), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2235), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -85620,23 +83514,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -85667,13 +83561,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -85684,72 +83578,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [187] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1666), - [sym_attributed_statement] = STATE(1666), - [sym_labeled_statement] = STATE(1666), - [sym_expression_statement] = STATE(1666), - [sym_if_statement] = STATE(1666), - [sym_switch_statement] = STATE(1666), - [sym_case_statement] = STATE(1666), - [sym_while_statement] = STATE(1666), - [sym_do_statement] = STATE(1666), - [sym_for_statement] = STATE(1666), - [sym_return_statement] = STATE(1666), - [sym_break_statement] = STATE(1666), - [sym_continue_statement] = STATE(1666), - [sym_goto_statement] = STATE(1666), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1666), - [sym_co_return_statement] = STATE(1666), - [sym_co_yield_statement] = STATE(1666), - [sym_throw_statement] = STATE(1666), - [sym_try_statement] = STATE(1666), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(2259), + [196] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(689), + [sym_attributed_statement] = STATE(688), + [sym_labeled_statement] = STATE(687), + [sym_expression_statement] = STATE(686), + [sym_if_statement] = STATE(685), + [sym_switch_statement] = STATE(684), + [sym_case_statement] = STATE(683), + [sym_while_statement] = STATE(682), + [sym_do_statement] = STATE(681), + [sym_for_statement] = STATE(680), + [sym_return_statement] = STATE(679), + [sym_break_statement] = STATE(582), + [sym_continue_statement] = STATE(677), + [sym_goto_statement] = STATE(676), + [sym__expression] = STATE(4063), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7688), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(675), + [sym_co_return_statement] = STATE(674), + [sym_co_yield_statement] = STATE(673), + [sym_throw_statement] = STATE(672), + [sym_try_statement] = STATE(671), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(2231), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -85757,23 +83651,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(810), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(818), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(822), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_case] = ACTIONS(826), + [anon_sym_default] = ACTIONS(828), + [anon_sym_while] = ACTIONS(830), + [anon_sym_do] = ACTIONS(832), + [anon_sym_for] = ACTIONS(834), + [anon_sym_return] = ACTIONS(836), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(842), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -85804,13 +83698,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(846), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_co_return] = ACTIONS(858), + [anon_sym_co_yield] = ACTIONS(860), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -85821,72 +83715,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [188] = { - [sym_attribute_declaration] = STATE(294), - [sym_compound_statement] = STATE(388), - [sym_attributed_statement] = STATE(388), - [sym_labeled_statement] = STATE(388), - [sym_expression_statement] = STATE(388), - [sym_if_statement] = STATE(388), - [sym_switch_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_do_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_return_statement] = STATE(388), - [sym_break_statement] = STATE(388), - [sym_continue_statement] = STATE(388), - [sym_goto_statement] = STATE(388), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(388), - [sym_co_return_statement] = STATE(388), - [sym_co_yield_statement] = STATE(388), - [sym_throw_statement] = STATE(388), - [sym_try_statement] = STATE(388), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(294), - [sym_identifier] = ACTIONS(2263), + [197] = { + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(638), + [sym_attributed_statement] = STATE(637), + [sym_labeled_statement] = STATE(636), + [sym_expression_statement] = STATE(635), + [sym_if_statement] = STATE(634), + [sym_switch_statement] = STATE(631), + [sym_case_statement] = STATE(625), + [sym_while_statement] = STATE(630), + [sym_do_statement] = STATE(629), + [sym_for_statement] = STATE(628), + [sym_return_statement] = STATE(627), + [sym_break_statement] = STATE(626), + [sym_continue_statement] = STATE(624), + [sym_goto_statement] = STATE(623), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(622), + [sym_co_return_statement] = STATE(621), + [sym_co_yield_statement] = STATE(620), + [sym_throw_statement] = STATE(619), + [sym_try_statement] = STATE(618), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(2247), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -85894,23 +83788,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -85941,7 +83835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), @@ -85958,72 +83852,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [189] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(1083), - [sym_attributed_statement] = STATE(1083), - [sym_labeled_statement] = STATE(1083), - [sym_expression_statement] = STATE(1083), - [sym_if_statement] = STATE(1083), - [sym_switch_statement] = STATE(1083), - [sym_case_statement] = STATE(1083), - [sym_while_statement] = STATE(1083), - [sym_do_statement] = STATE(1083), - [sym_for_statement] = STATE(1083), - [sym_return_statement] = STATE(1083), - [sym_break_statement] = STATE(1083), - [sym_continue_statement] = STATE(1083), - [sym_goto_statement] = STATE(1083), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1083), - [sym_co_return_statement] = STATE(1083), - [sym_co_yield_statement] = STATE(1083), - [sym_throw_statement] = STATE(1083), - [sym_try_statement] = STATE(1083), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), + [198] = { + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(717), + [sym_attributed_statement] = STATE(718), + [sym_labeled_statement] = STATE(719), + [sym_expression_statement] = STATE(720), + [sym_if_statement] = STATE(721), + [sym_switch_statement] = STATE(722), + [sym_case_statement] = STATE(723), + [sym_while_statement] = STATE(724), + [sym_do_statement] = STATE(725), + [sym_for_statement] = STATE(727), + [sym_return_statement] = STATE(728), + [sym_break_statement] = STATE(729), + [sym_continue_statement] = STATE(730), + [sym_goto_statement] = STATE(731), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(732), + [sym_co_return_statement] = STATE(733), + [sym_co_yield_statement] = STATE(734), + [sym_throw_statement] = STATE(735), + [sym_try_statement] = STATE(738), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2235), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -86031,23 +83925,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -86078,13 +83972,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -86095,72 +83989,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [190] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1668), - [sym_attributed_statement] = STATE(1668), - [sym_labeled_statement] = STATE(1668), - [sym_expression_statement] = STATE(1668), - [sym_if_statement] = STATE(1668), - [sym_switch_statement] = STATE(1668), - [sym_case_statement] = STATE(1668), - [sym_while_statement] = STATE(1668), - [sym_do_statement] = STATE(1668), - [sym_for_statement] = STATE(1668), - [sym_return_statement] = STATE(1668), - [sym_break_statement] = STATE(1668), - [sym_continue_statement] = STATE(1668), - [sym_goto_statement] = STATE(1668), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1668), - [sym_co_return_statement] = STATE(1668), - [sym_co_yield_statement] = STATE(1668), - [sym_throw_statement] = STATE(1668), - [sym_try_statement] = STATE(1668), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(2259), + [199] = { + [sym_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(766), + [sym_attributed_statement] = STATE(766), + [sym_labeled_statement] = STATE(766), + [sym_expression_statement] = STATE(766), + [sym_if_statement] = STATE(766), + [sym_switch_statement] = STATE(766), + [sym_case_statement] = STATE(766), + [sym_while_statement] = STATE(766), + [sym_do_statement] = STATE(766), + [sym_for_statement] = STATE(766), + [sym_return_statement] = STATE(766), + [sym_break_statement] = STATE(766), + [sym_continue_statement] = STATE(766), + [sym_goto_statement] = STATE(766), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(766), + [sym_co_return_statement] = STATE(766), + [sym_co_yield_statement] = STATE(766), + [sym_throw_statement] = STATE(766), + [sym_try_statement] = STATE(766), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(2262), + [anon_sym_BANG] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_COLON_COLON] = ACTIONS(2277), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2504), + [anon_sym_LBRACK] = ACTIONS(2286), + [sym_primitive_type] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_switch] = ACTIONS(2510), + [anon_sym_case] = ACTIONS(2513), + [anon_sym_default] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2519), + [anon_sym_do] = ACTIONS(2522), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2534), + [anon_sym_goto] = ACTIONS(2537), + [anon_sym_not] = ACTIONS(2268), + [anon_sym_compl] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2325), + [anon_sym_PLUS_PLUS] = ACTIONS(2325), + [anon_sym_sizeof] = ACTIONS(2328), + [anon_sym___alignof__] = ACTIONS(2331), + [anon_sym___alignof] = ACTIONS(2331), + [anon_sym__alignof] = ACTIONS(2331), + [anon_sym_alignof] = ACTIONS(2331), + [anon_sym__Alignof] = ACTIONS(2331), + [anon_sym_offsetof] = ACTIONS(2334), + [anon_sym__Generic] = ACTIONS(2337), + [anon_sym_asm] = ACTIONS(2340), + [anon_sym___asm__] = ACTIONS(2340), + [sym_number_literal] = ACTIONS(2343), + [anon_sym_L_SQUOTE] = ACTIONS(2346), + [anon_sym_u_SQUOTE] = ACTIONS(2346), + [anon_sym_U_SQUOTE] = ACTIONS(2346), + [anon_sym_u8_SQUOTE] = ACTIONS(2346), + [anon_sym_SQUOTE] = ACTIONS(2346), + [anon_sym_L_DQUOTE] = ACTIONS(2349), + [anon_sym_u_DQUOTE] = ACTIONS(2349), + [anon_sym_U_DQUOTE] = ACTIONS(2349), + [anon_sym_u8_DQUOTE] = ACTIONS(2349), + [anon_sym_DQUOTE] = ACTIONS(2349), + [sym_true] = ACTIONS(2352), + [sym_false] = ACTIONS(2352), + [anon_sym_NULL] = ACTIONS(2355), + [anon_sym_nullptr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2358), + [anon_sym_template] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2540), + [anon_sym_delete] = ACTIONS(2367), + [anon_sym_throw] = ACTIONS(2543), + [anon_sym_co_return] = ACTIONS(2546), + [anon_sym_co_yield] = ACTIONS(2549), + [anon_sym_R_DQUOTE] = ACTIONS(2379), + [anon_sym_LR_DQUOTE] = ACTIONS(2379), + [anon_sym_uR_DQUOTE] = ACTIONS(2379), + [anon_sym_UR_DQUOTE] = ACTIONS(2379), + [anon_sym_u8R_DQUOTE] = ACTIONS(2379), + [anon_sym_co_await] = ACTIONS(2382), + [anon_sym_new] = ACTIONS(2385), + [anon_sym_requires] = ACTIONS(2388), + [sym_this] = ACTIONS(2352), + }, + [200] = { + [sym_attribute_declaration] = STATE(170), + [sym_compound_statement] = STATE(1040), + [sym_attributed_statement] = STATE(1038), + [sym_labeled_statement] = STATE(1097), + [sym_expression_statement] = STATE(1102), + [sym_if_statement] = STATE(1100), + [sym_switch_statement] = STATE(1099), + [sym_case_statement] = STATE(1096), + [sym_while_statement] = STATE(1093), + [sym_do_statement] = STATE(1092), + [sym_for_statement] = STATE(1091), + [sym_return_statement] = STATE(1090), + [sym_break_statement] = STATE(1089), + [sym_continue_statement] = STATE(1086), + [sym_goto_statement] = STATE(1085), + [sym__expression] = STATE(4110), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7822), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(1084), + [sym_co_return_statement] = STATE(1083), + [sym_co_yield_statement] = STATE(1082), + [sym_throw_statement] = STATE(1079), + [sym_try_statement] = STATE(1078), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(2253), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -86168,23 +84199,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1798), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_switch] = ACTIONS(1808), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(1810), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_goto] = ACTIONS(1822), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -86215,13 +84246,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(1824), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(1826), + [anon_sym_co_return] = ACTIONS(1828), + [anon_sym_co_yield] = ACTIONS(1830), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -86232,72 +84263,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [191] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1669), - [sym_attributed_statement] = STATE(1667), - [sym_labeled_statement] = STATE(1665), - [sym_expression_statement] = STATE(1661), - [sym_if_statement] = STATE(1653), - [sym_switch_statement] = STATE(1652), - [sym_case_statement] = STATE(1649), - [sym_while_statement] = STATE(1648), - [sym_do_statement] = STATE(1647), - [sym_for_statement] = STATE(1644), - [sym_return_statement] = STATE(1643), - [sym_break_statement] = STATE(1642), - [sym_continue_statement] = STATE(1641), - [sym_goto_statement] = STATE(1637), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1634), - [sym_co_return_statement] = STATE(1629), - [sym_co_yield_statement] = STATE(1625), - [sym_throw_statement] = STATE(1622), - [sym_try_statement] = STATE(1615), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(2259), + [201] = { + [sym_attribute_declaration] = STATE(170), + [sym_compound_statement] = STATE(1060), + [sym_attributed_statement] = STATE(1063), + [sym_labeled_statement] = STATE(1069), + [sym_expression_statement] = STATE(1052), + [sym_if_statement] = STATE(1087), + [sym_switch_statement] = STATE(1073), + [sym_case_statement] = STATE(1068), + [sym_while_statement] = STATE(1062), + [sym_do_statement] = STATE(1061), + [sym_for_statement] = STATE(1059), + [sym_return_statement] = STATE(1056), + [sym_break_statement] = STATE(1055), + [sym_continue_statement] = STATE(1053), + [sym_goto_statement] = STATE(1051), + [sym__expression] = STATE(4110), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7822), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(1048), + [sym_co_return_statement] = STATE(1047), + [sym_co_yield_statement] = STATE(1044), + [sym_throw_statement] = STATE(1043), + [sym_try_statement] = STATE(1042), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(2253), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -86305,23 +84336,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1798), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_switch] = ACTIONS(1808), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(1810), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_goto] = ACTIONS(1822), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -86352,13 +84383,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(1824), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(1826), + [anon_sym_co_return] = ACTIONS(1828), + [anon_sym_co_yield] = ACTIONS(1830), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -86369,72 +84400,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [192] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1614), - [sym_attributed_statement] = STATE(1612), - [sym_labeled_statement] = STATE(1609), - [sym_expression_statement] = STATE(1608), - [sym_if_statement] = STATE(1605), - [sym_switch_statement] = STATE(1604), - [sym_case_statement] = STATE(1600), - [sym_while_statement] = STATE(1596), - [sym_do_statement] = STATE(1594), - [sym_for_statement] = STATE(1593), - [sym_return_statement] = STATE(1591), - [sym_break_statement] = STATE(1530), - [sym_continue_statement] = STATE(1590), - [sym_goto_statement] = STATE(1589), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1588), - [sym_co_return_statement] = STATE(1587), - [sym_co_yield_statement] = STATE(1586), - [sym_throw_statement] = STATE(1581), - [sym_try_statement] = STATE(1577), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(2259), + [202] = { + [sym_attribute_declaration] = STATE(170), + [sym_compound_statement] = STATE(1046), + [sym_attributed_statement] = STATE(1046), + [sym_labeled_statement] = STATE(1046), + [sym_expression_statement] = STATE(1046), + [sym_if_statement] = STATE(1046), + [sym_switch_statement] = STATE(1046), + [sym_case_statement] = STATE(1046), + [sym_while_statement] = STATE(1046), + [sym_do_statement] = STATE(1046), + [sym_for_statement] = STATE(1046), + [sym_return_statement] = STATE(1046), + [sym_break_statement] = STATE(1046), + [sym_continue_statement] = STATE(1046), + [sym_goto_statement] = STATE(1046), + [sym__expression] = STATE(4110), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7822), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(1046), + [sym_co_return_statement] = STATE(1046), + [sym_co_yield_statement] = STATE(1046), + [sym_throw_statement] = STATE(1046), + [sym_try_statement] = STATE(1046), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(2253), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -86442,23 +84473,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1798), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_switch] = ACTIONS(1808), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(1810), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_goto] = ACTIONS(1822), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -86489,13 +84520,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(1824), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(1826), + [anon_sym_co_return] = ACTIONS(1828), + [anon_sym_co_yield] = ACTIONS(1830), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -86506,72 +84537,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [193] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(795), - [sym_attributed_statement] = STATE(795), - [sym_labeled_statement] = STATE(795), - [sym_expression_statement] = STATE(795), - [sym_if_statement] = STATE(795), - [sym_switch_statement] = STATE(795), - [sym_case_statement] = STATE(795), - [sym_while_statement] = STATE(795), - [sym_do_statement] = STATE(795), - [sym_for_statement] = STATE(795), - [sym_return_statement] = STATE(795), - [sym_break_statement] = STATE(795), - [sym_continue_statement] = STATE(795), - [sym_goto_statement] = STATE(795), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(795), - [sym_co_return_statement] = STATE(795), - [sym_co_yield_statement] = STATE(795), - [sym_throw_statement] = STATE(795), - [sym_try_statement] = STATE(795), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), + [203] = { + [sym_attribute_declaration] = STATE(184), + [sym_compound_statement] = STATE(596), + [sym_attributed_statement] = STATE(596), + [sym_labeled_statement] = STATE(596), + [sym_expression_statement] = STATE(596), + [sym_if_statement] = STATE(596), + [sym_switch_statement] = STATE(596), + [sym_case_statement] = STATE(596), + [sym_while_statement] = STATE(596), + [sym_do_statement] = STATE(596), + [sym_for_statement] = STATE(596), + [sym_return_statement] = STATE(596), + [sym_break_statement] = STATE(596), + [sym_continue_statement] = STATE(596), + [sym_goto_statement] = STATE(596), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(596), + [sym_co_return_statement] = STATE(596), + [sym_co_yield_statement] = STATE(596), + [sym_throw_statement] = STATE(596), + [sym_try_statement] = STATE(596), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(2235), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -86579,23 +84610,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -86626,13 +84657,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -86643,72 +84674,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [194] = { - [sym_attribute_declaration] = STATE(214), - [sym_compound_statement] = STATE(1214), - [sym_attributed_statement] = STATE(1214), - [sym_labeled_statement] = STATE(1214), - [sym_expression_statement] = STATE(1214), - [sym_if_statement] = STATE(1214), - [sym_switch_statement] = STATE(1214), - [sym_case_statement] = STATE(1214), - [sym_while_statement] = STATE(1214), - [sym_do_statement] = STATE(1214), - [sym_for_statement] = STATE(1214), - [sym_return_statement] = STATE(1214), - [sym_break_statement] = STATE(1214), - [sym_continue_statement] = STATE(1214), - [sym_goto_statement] = STATE(1214), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1214), - [sym_co_return_statement] = STATE(1214), - [sym_co_yield_statement] = STATE(1214), - [sym_throw_statement] = STATE(1214), - [sym_try_statement] = STATE(1214), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(214), - [sym_identifier] = ACTIONS(2261), + [204] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3061), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7869), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7877), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7884), + [sym__unary_right_fold] = STATE(7892), + [sym__binary_fold] = STATE(7903), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [205] = { + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(7779), + [sym_attributed_statement] = STATE(7779), + [sym_labeled_statement] = STATE(7779), + [sym_expression_statement] = STATE(7779), + [sym_if_statement] = STATE(7779), + [sym_switch_statement] = STATE(7779), + [sym_case_statement] = STATE(7779), + [sym_while_statement] = STATE(7779), + [sym_do_statement] = STATE(7779), + [sym_for_statement] = STATE(7779), + [sym_return_statement] = STATE(7779), + [sym_break_statement] = STATE(7779), + [sym_continue_statement] = STATE(7779), + [sym_goto_statement] = STATE(7779), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(7779), + [sym_co_return_statement] = STATE(7779), + [sym_co_yield_statement] = STATE(7779), + [sym_throw_statement] = STATE(7779), + [sym_try_statement] = STATE(7779), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2235), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -86716,23 +84884,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -86763,13 +84931,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -86780,72 +84948,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [195] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(870), - [sym_attributed_statement] = STATE(870), - [sym_labeled_statement] = STATE(870), - [sym_expression_statement] = STATE(870), - [sym_if_statement] = STATE(870), - [sym_switch_statement] = STATE(870), - [sym_case_statement] = STATE(870), - [sym_while_statement] = STATE(870), - [sym_do_statement] = STATE(870), - [sym_for_statement] = STATE(870), - [sym_return_statement] = STATE(870), - [sym_break_statement] = STATE(870), - [sym_continue_statement] = STATE(870), - [sym_goto_statement] = STATE(870), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(870), - [sym_co_return_statement] = STATE(870), - [sym_co_yield_statement] = STATE(870), - [sym_throw_statement] = STATE(870), - [sym_try_statement] = STATE(870), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), + [206] = { + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(554), + [sym_attributed_statement] = STATE(554), + [sym_labeled_statement] = STATE(554), + [sym_expression_statement] = STATE(554), + [sym_if_statement] = STATE(554), + [sym_switch_statement] = STATE(554), + [sym_case_statement] = STATE(554), + [sym_while_statement] = STATE(554), + [sym_do_statement] = STATE(554), + [sym_for_statement] = STATE(554), + [sym_return_statement] = STATE(554), + [sym_break_statement] = STATE(554), + [sym_continue_statement] = STATE(554), + [sym_goto_statement] = STATE(554), + [sym__expression] = STATE(4151), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7452), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(554), + [sym_co_return_statement] = STATE(554), + [sym_co_yield_statement] = STATE(554), + [sym_throw_statement] = STATE(554), + [sym_try_statement] = STATE(554), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2229), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -86853,12 +85021,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1628), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), + [sym_primitive_type] = ACTIONS(2227), [anon_sym_if] = ACTIONS(73), [anon_sym_switch] = ACTIONS(75), [anon_sym_case] = ACTIONS(77), @@ -86900,7 +85068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), @@ -86917,72 +85085,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [196] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(888), - [sym_attributed_statement] = STATE(890), - [sym_labeled_statement] = STATE(897), - [sym_expression_statement] = STATE(898), - [sym_if_statement] = STATE(899), - [sym_switch_statement] = STATE(905), - [sym_case_statement] = STATE(914), - [sym_while_statement] = STATE(916), - [sym_do_statement] = STATE(960), - [sym_for_statement] = STATE(966), - [sym_return_statement] = STATE(974), - [sym_break_statement] = STATE(986), - [sym_continue_statement] = STATE(985), - [sym_goto_statement] = STATE(1009), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1075), - [sym_co_return_statement] = STATE(1089), - [sym_co_yield_statement] = STATE(1093), - [sym_throw_statement] = STATE(1137), - [sym_try_statement] = STATE(1138), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), + [207] = { + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(759), + [sym_attributed_statement] = STATE(759), + [sym_labeled_statement] = STATE(759), + [sym_expression_statement] = STATE(759), + [sym_if_statement] = STATE(759), + [sym_switch_statement] = STATE(759), + [sym_case_statement] = STATE(759), + [sym_while_statement] = STATE(759), + [sym_do_statement] = STATE(759), + [sym_for_statement] = STATE(759), + [sym_return_statement] = STATE(759), + [sym_break_statement] = STATE(759), + [sym_continue_statement] = STATE(759), + [sym_goto_statement] = STATE(759), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(759), + [sym_co_return_statement] = STATE(759), + [sym_co_yield_statement] = STATE(759), + [sym_throw_statement] = STATE(759), + [sym_try_statement] = STATE(759), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(2247), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -86990,23 +85158,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -87037,13 +85205,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -87054,72 +85222,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [197] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(1026), - [sym_attributed_statement] = STATE(1220), - [sym_labeled_statement] = STATE(1238), - [sym_expression_statement] = STATE(1253), - [sym_if_statement] = STATE(1213), - [sym_switch_statement] = STATE(1039), - [sym_case_statement] = STATE(1108), - [sym_while_statement] = STATE(1102), - [sym_do_statement] = STATE(872), - [sym_for_statement] = STATE(959), - [sym_return_statement] = STATE(950), - [sym_break_statement] = STATE(925), - [sym_continue_statement] = STATE(923), - [sym_goto_statement] = STATE(921), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(883), - [sym_co_return_statement] = STATE(882), - [sym_co_yield_statement] = STATE(854), - [sym_throw_statement] = STATE(881), - [sym_try_statement] = STATE(885), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), + [208] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(454), + [sym_attributed_statement] = STATE(454), + [sym_labeled_statement] = STATE(454), + [sym_expression_statement] = STATE(454), + [sym_if_statement] = STATE(454), + [sym_switch_statement] = STATE(454), + [sym_case_statement] = STATE(454), + [sym_while_statement] = STATE(454), + [sym_do_statement] = STATE(454), + [sym_for_statement] = STATE(454), + [sym_return_statement] = STATE(454), + [sym_break_statement] = STATE(454), + [sym_continue_statement] = STATE(454), + [sym_goto_statement] = STATE(454), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(454), + [sym_co_return_statement] = STATE(454), + [sym_co_yield_statement] = STATE(454), + [sym_throw_statement] = STATE(454), + [sym_try_statement] = STATE(454), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -87127,23 +85295,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(363), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -87174,13 +85342,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(399), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(401), + [anon_sym_co_return] = ACTIONS(411), + [anon_sym_co_yield] = ACTIONS(413), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -87191,72 +85359,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [198] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(1223), - [sym_attributed_statement] = STATE(1222), - [sym_labeled_statement] = STATE(1212), - [sym_expression_statement] = STATE(1206), - [sym_if_statement] = STATE(1205), - [sym_switch_statement] = STATE(1204), - [sym_case_statement] = STATE(1203), - [sym_while_statement] = STATE(1202), - [sym_do_statement] = STATE(1197), - [sym_for_statement] = STATE(1195), - [sym_return_statement] = STATE(1194), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1175), - [sym_goto_statement] = STATE(1172), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1171), - [sym_co_return_statement] = STATE(1170), - [sym_co_yield_statement] = STATE(1164), - [sym_throw_statement] = STATE(1162), - [sym_try_statement] = STATE(1161), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), + [209] = { + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(762), + [sym_attributed_statement] = STATE(762), + [sym_labeled_statement] = STATE(762), + [sym_expression_statement] = STATE(762), + [sym_if_statement] = STATE(762), + [sym_switch_statement] = STATE(762), + [sym_case_statement] = STATE(762), + [sym_while_statement] = STATE(762), + [sym_do_statement] = STATE(762), + [sym_for_statement] = STATE(762), + [sym_return_statement] = STATE(762), + [sym_break_statement] = STATE(762), + [sym_continue_statement] = STATE(762), + [sym_goto_statement] = STATE(762), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(762), + [sym_co_return_statement] = STATE(762), + [sym_co_yield_statement] = STATE(762), + [sym_throw_statement] = STATE(762), + [sym_try_statement] = STATE(762), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(2247), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -87264,23 +85432,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -87311,13 +85479,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -87328,72 +85496,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [199] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(1126), - [sym_attributed_statement] = STATE(1126), - [sym_labeled_statement] = STATE(1126), - [sym_expression_statement] = STATE(1126), - [sym_if_statement] = STATE(1126), - [sym_switch_statement] = STATE(1126), - [sym_case_statement] = STATE(1126), - [sym_while_statement] = STATE(1126), - [sym_do_statement] = STATE(1126), - [sym_for_statement] = STATE(1126), - [sym_return_statement] = STATE(1126), - [sym_break_statement] = STATE(1126), - [sym_continue_statement] = STATE(1126), - [sym_goto_statement] = STATE(1126), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1126), - [sym_co_return_statement] = STATE(1126), - [sym_co_yield_statement] = STATE(1126), - [sym_throw_statement] = STATE(1126), - [sym_try_statement] = STATE(1126), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), + [210] = { + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(599), + [sym_attributed_statement] = STATE(599), + [sym_labeled_statement] = STATE(599), + [sym_expression_statement] = STATE(599), + [sym_if_statement] = STATE(599), + [sym_switch_statement] = STATE(599), + [sym_case_statement] = STATE(599), + [sym_while_statement] = STATE(599), + [sym_do_statement] = STATE(599), + [sym_for_statement] = STATE(599), + [sym_return_statement] = STATE(599), + [sym_break_statement] = STATE(599), + [sym_continue_statement] = STATE(599), + [sym_goto_statement] = STATE(599), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(599), + [sym_co_return_statement] = STATE(599), + [sym_co_yield_statement] = STATE(599), + [sym_throw_statement] = STATE(599), + [sym_try_statement] = STATE(599), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2235), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -87401,23 +85569,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -87448,13 +85616,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -87465,72 +85633,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [200] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(1241), - [sym_attributed_statement] = STATE(1242), - [sym_labeled_statement] = STATE(1255), - [sym_expression_statement] = STATE(1256), - [sym_if_statement] = STATE(1257), - [sym_switch_statement] = STATE(1258), - [sym_case_statement] = STATE(1259), - [sym_while_statement] = STATE(1260), - [sym_do_statement] = STATE(1261), - [sym_for_statement] = STATE(1262), - [sym_return_statement] = STATE(1263), - [sym_break_statement] = STATE(1264), - [sym_continue_statement] = STATE(1249), - [sym_goto_statement] = STATE(1244), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1236), - [sym_co_return_statement] = STATE(1233), - [sym_co_yield_statement] = STATE(1227), - [sym_throw_statement] = STATE(1226), - [sym_try_statement] = STATE(1225), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), + [211] = { + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(617), + [sym_attributed_statement] = STATE(616), + [sym_labeled_statement] = STATE(615), + [sym_expression_statement] = STATE(613), + [sym_if_statement] = STATE(612), + [sym_switch_statement] = STATE(610), + [sym_case_statement] = STATE(609), + [sym_while_statement] = STATE(608), + [sym_do_statement] = STATE(607), + [sym_for_statement] = STATE(606), + [sym_return_statement] = STATE(586), + [sym_break_statement] = STATE(587), + [sym_continue_statement] = STATE(598), + [sym_goto_statement] = STATE(602), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(603), + [sym_co_return_statement] = STATE(678), + [sym_co_yield_statement] = STATE(583), + [sym_throw_statement] = STATE(584), + [sym_try_statement] = STATE(585), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(2247), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -87538,23 +85706,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -87585,13 +85753,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -87602,209 +85770,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [201] = { - [sym_attribute_declaration] = STATE(201), - [sym_compound_statement] = STATE(1016), - [sym_attributed_statement] = STATE(1016), - [sym_labeled_statement] = STATE(1016), - [sym_expression_statement] = STATE(1016), - [sym_if_statement] = STATE(1016), - [sym_switch_statement] = STATE(1016), - [sym_case_statement] = STATE(1016), - [sym_while_statement] = STATE(1016), - [sym_do_statement] = STATE(1016), - [sym_for_statement] = STATE(1016), - [sym_return_statement] = STATE(1016), - [sym_break_statement] = STATE(1016), - [sym_continue_statement] = STATE(1016), - [sym_goto_statement] = STATE(1016), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1016), - [sym_co_return_statement] = STATE(1016), - [sym_co_yield_statement] = STATE(1016), - [sym_throw_statement] = STATE(1016), - [sym_try_statement] = STATE(1016), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(2265), - [anon_sym_LPAREN2] = ACTIONS(2268), - [anon_sym_BANG] = ACTIONS(2271), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2277), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_COLON_COLON] = ACTIONS(2283), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2286), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2292), - [sym_primitive_type] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2298), - [anon_sym_switch] = ACTIONS(2301), - [anon_sym_case] = ACTIONS(2304), - [anon_sym_default] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_do] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2319), - [anon_sym_break] = ACTIONS(2322), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_goto] = ACTIONS(2328), - [anon_sym_not] = ACTIONS(2274), - [anon_sym_compl] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_sizeof] = ACTIONS(2334), - [anon_sym___alignof__] = ACTIONS(2337), - [anon_sym___alignof] = ACTIONS(2337), - [anon_sym__alignof] = ACTIONS(2337), - [anon_sym_alignof] = ACTIONS(2337), - [anon_sym__Alignof] = ACTIONS(2337), - [anon_sym_offsetof] = ACTIONS(2340), - [anon_sym__Generic] = ACTIONS(2343), - [anon_sym_asm] = ACTIONS(2346), - [anon_sym___asm__] = ACTIONS(2346), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2352), - [anon_sym_u_SQUOTE] = ACTIONS(2352), - [anon_sym_U_SQUOTE] = ACTIONS(2352), - [anon_sym_u8_SQUOTE] = ACTIONS(2352), - [anon_sym_SQUOTE] = ACTIONS(2352), - [anon_sym_L_DQUOTE] = ACTIONS(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2358), - [sym_false] = ACTIONS(2358), - [anon_sym_NULL] = ACTIONS(2361), - [anon_sym_nullptr] = ACTIONS(2361), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2364), - [anon_sym_template] = ACTIONS(2367), - [anon_sym_try] = ACTIONS(2370), - [anon_sym_delete] = ACTIONS(2373), - [anon_sym_throw] = ACTIONS(2376), - [anon_sym_co_return] = ACTIONS(2379), - [anon_sym_co_yield] = ACTIONS(2382), - [anon_sym_R_DQUOTE] = ACTIONS(2385), - [anon_sym_LR_DQUOTE] = ACTIONS(2385), - [anon_sym_uR_DQUOTE] = ACTIONS(2385), - [anon_sym_UR_DQUOTE] = ACTIONS(2385), - [anon_sym_u8R_DQUOTE] = ACTIONS(2385), - [anon_sym_co_await] = ACTIONS(2388), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_requires] = ACTIONS(2394), - [sym_this] = ACTIONS(2358), - }, - [202] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(1240), - [sym_attributed_statement] = STATE(1240), - [sym_labeled_statement] = STATE(1240), - [sym_expression_statement] = STATE(1240), - [sym_if_statement] = STATE(1240), - [sym_switch_statement] = STATE(1240), - [sym_case_statement] = STATE(1240), - [sym_while_statement] = STATE(1240), - [sym_do_statement] = STATE(1240), - [sym_for_statement] = STATE(1240), - [sym_return_statement] = STATE(1240), - [sym_break_statement] = STATE(1240), - [sym_continue_statement] = STATE(1240), - [sym_goto_statement] = STATE(1240), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1240), - [sym_co_return_statement] = STATE(1240), - [sym_co_yield_statement] = STATE(1240), - [sym_throw_statement] = STATE(1240), - [sym_try_statement] = STATE(1240), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), + [212] = { + [sym_attribute_declaration] = STATE(170), + [sym_compound_statement] = STATE(1037), + [sym_attributed_statement] = STATE(1037), + [sym_labeled_statement] = STATE(1037), + [sym_expression_statement] = STATE(1037), + [sym_if_statement] = STATE(1037), + [sym_switch_statement] = STATE(1037), + [sym_case_statement] = STATE(1037), + [sym_while_statement] = STATE(1037), + [sym_do_statement] = STATE(1037), + [sym_for_statement] = STATE(1037), + [sym_return_statement] = STATE(1037), + [sym_break_statement] = STATE(1037), + [sym_continue_statement] = STATE(1037), + [sym_goto_statement] = STATE(1037), + [sym__expression] = STATE(4110), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7822), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(1037), + [sym_co_return_statement] = STATE(1037), + [sym_co_yield_statement] = STATE(1037), + [sym_throw_statement] = STATE(1037), + [sym_try_statement] = STATE(1037), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(2253), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -87812,23 +85843,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1798), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_switch] = ACTIONS(1808), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(1810), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_goto] = ACTIONS(1822), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -87859,13 +85890,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1824), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(1826), + [anon_sym_co_return] = ACTIONS(1828), + [anon_sym_co_yield] = ACTIONS(1830), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -87876,72 +85907,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [203] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(784), - [sym_attributed_statement] = STATE(784), - [sym_labeled_statement] = STATE(784), - [sym_expression_statement] = STATE(784), - [sym_if_statement] = STATE(784), - [sym_switch_statement] = STATE(784), - [sym_case_statement] = STATE(784), - [sym_while_statement] = STATE(784), - [sym_do_statement] = STATE(784), - [sym_for_statement] = STATE(784), - [sym_return_statement] = STATE(784), - [sym_break_statement] = STATE(784), - [sym_continue_statement] = STATE(784), - [sym_goto_statement] = STATE(784), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(784), - [sym_co_return_statement] = STATE(784), - [sym_co_yield_statement] = STATE(784), - [sym_throw_statement] = STATE(784), - [sym_try_statement] = STATE(784), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), + [213] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3061), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7869), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7228), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7227), + [sym__unary_right_fold] = STATE(7226), + [sym__binary_fold] = STATE(7224), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [214] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(520), + [sym_attributed_statement] = STATE(520), + [sym_labeled_statement] = STATE(520), + [sym_expression_statement] = STATE(520), + [sym_if_statement] = STATE(520), + [sym_switch_statement] = STATE(520), + [sym_case_statement] = STATE(520), + [sym_while_statement] = STATE(520), + [sym_do_statement] = STATE(520), + [sym_for_statement] = STATE(520), + [sym_return_statement] = STATE(520), + [sym_break_statement] = STATE(520), + [sym_continue_statement] = STATE(520), + [sym_goto_statement] = STATE(520), + [sym__expression] = STATE(4063), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7688), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(520), + [sym_co_return_statement] = STATE(520), + [sym_co_yield_statement] = STATE(520), + [sym_throw_statement] = STATE(520), + [sym_try_statement] = STATE(520), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(2231), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -87949,23 +86117,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(810), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(818), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(822), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_case] = ACTIONS(826), + [anon_sym_default] = ACTIONS(828), + [anon_sym_while] = ACTIONS(830), + [anon_sym_do] = ACTIONS(832), + [anon_sym_for] = ACTIONS(834), + [anon_sym_return] = ACTIONS(836), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(842), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -87996,13 +86164,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(846), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_co_return] = ACTIONS(858), + [anon_sym_co_yield] = ACTIONS(860), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -88013,72 +86181,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [204] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(779), - [sym_attributed_statement] = STATE(779), - [sym_labeled_statement] = STATE(779), - [sym_expression_statement] = STATE(779), - [sym_if_statement] = STATE(779), - [sym_switch_statement] = STATE(779), - [sym_case_statement] = STATE(779), - [sym_while_statement] = STATE(779), - [sym_do_statement] = STATE(779), - [sym_for_statement] = STATE(779), - [sym_return_statement] = STATE(779), - [sym_break_statement] = STATE(779), - [sym_continue_statement] = STATE(779), - [sym_goto_statement] = STATE(779), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(779), - [sym_co_return_statement] = STATE(779), - [sym_co_yield_statement] = STATE(779), - [sym_throw_statement] = STATE(779), - [sym_try_statement] = STATE(779), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), + [215] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3061), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7869), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7708), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7884), + [sym__unary_right_fold] = STATE(7892), + [sym__binary_fold] = STATE(7903), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [216] = { + [sym_attribute_declaration] = STATE(216), + [sym_compound_statement] = STATE(596), + [sym_attributed_statement] = STATE(596), + [sym_labeled_statement] = STATE(596), + [sym_expression_statement] = STATE(596), + [sym_if_statement] = STATE(596), + [sym_switch_statement] = STATE(596), + [sym_case_statement] = STATE(596), + [sym_while_statement] = STATE(596), + [sym_do_statement] = STATE(596), + [sym_for_statement] = STATE(596), + [sym_return_statement] = STATE(596), + [sym_break_statement] = STATE(596), + [sym_continue_statement] = STATE(596), + [sym_goto_statement] = STATE(596), + [sym__expression] = STATE(4151), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7452), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(596), + [sym_co_return_statement] = STATE(596), + [sym_co_yield_statement] = STATE(596), + [sym_throw_statement] = STATE(596), + [sym_try_statement] = STATE(596), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(2552), + [anon_sym_LPAREN2] = ACTIONS(2262), + [anon_sym_BANG] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2277), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2286), + [sym_primitive_type] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2558), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2561), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2570), + [anon_sym_return] = ACTIONS(2423), + [anon_sym_break] = ACTIONS(2426), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_goto] = ACTIONS(2432), + [anon_sym_not] = ACTIONS(2268), + [anon_sym_compl] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2325), + [anon_sym_PLUS_PLUS] = ACTIONS(2325), + [anon_sym_sizeof] = ACTIONS(2328), + [anon_sym___alignof__] = ACTIONS(2331), + [anon_sym___alignof] = ACTIONS(2331), + [anon_sym__alignof] = ACTIONS(2331), + [anon_sym_alignof] = ACTIONS(2331), + [anon_sym__Alignof] = ACTIONS(2331), + [anon_sym_offsetof] = ACTIONS(2334), + [anon_sym__Generic] = ACTIONS(2337), + [anon_sym_asm] = ACTIONS(2340), + [anon_sym___asm__] = ACTIONS(2340), + [sym_number_literal] = ACTIONS(2343), + [anon_sym_L_SQUOTE] = ACTIONS(2346), + [anon_sym_u_SQUOTE] = ACTIONS(2346), + [anon_sym_U_SQUOTE] = ACTIONS(2346), + [anon_sym_u8_SQUOTE] = ACTIONS(2346), + [anon_sym_SQUOTE] = ACTIONS(2346), + [anon_sym_L_DQUOTE] = ACTIONS(2349), + [anon_sym_u_DQUOTE] = ACTIONS(2349), + [anon_sym_U_DQUOTE] = ACTIONS(2349), + [anon_sym_u8_DQUOTE] = ACTIONS(2349), + [anon_sym_DQUOTE] = ACTIONS(2349), + [sym_true] = ACTIONS(2352), + [sym_false] = ACTIONS(2352), + [anon_sym_NULL] = ACTIONS(2355), + [anon_sym_nullptr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2358), + [anon_sym_template] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2435), + [anon_sym_delete] = ACTIONS(2367), + [anon_sym_throw] = ACTIONS(2438), + [anon_sym_co_return] = ACTIONS(2441), + [anon_sym_co_yield] = ACTIONS(2444), + [anon_sym_R_DQUOTE] = ACTIONS(2379), + [anon_sym_LR_DQUOTE] = ACTIONS(2379), + [anon_sym_uR_DQUOTE] = ACTIONS(2379), + [anon_sym_UR_DQUOTE] = ACTIONS(2379), + [anon_sym_u8R_DQUOTE] = ACTIONS(2379), + [anon_sym_co_await] = ACTIONS(2382), + [anon_sym_new] = ACTIONS(2385), + [anon_sym_requires] = ACTIONS(2388), + [sym_this] = ACTIONS(2352), + }, + [217] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(405), + [sym_attributed_statement] = STATE(405), + [sym_labeled_statement] = STATE(405), + [sym_expression_statement] = STATE(405), + [sym_if_statement] = STATE(405), + [sym_switch_statement] = STATE(405), + [sym_case_statement] = STATE(405), + [sym_while_statement] = STATE(405), + [sym_do_statement] = STATE(405), + [sym_for_statement] = STATE(405), + [sym_return_statement] = STATE(405), + [sym_break_statement] = STATE(405), + [sym_continue_statement] = STATE(405), + [sym_goto_statement] = STATE(405), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(405), + [sym_co_return_statement] = STATE(405), + [sym_co_yield_statement] = STATE(405), + [sym_throw_statement] = STATE(405), + [sym_try_statement] = STATE(405), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -88086,23 +86528,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(363), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -88133,13 +86575,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(399), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(401), + [anon_sym_co_return] = ACTIONS(411), + [anon_sym_co_yield] = ACTIONS(413), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -88150,72 +86592,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [205] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(878), - [sym_attributed_statement] = STATE(878), - [sym_labeled_statement] = STATE(878), - [sym_expression_statement] = STATE(878), - [sym_if_statement] = STATE(878), - [sym_switch_statement] = STATE(878), - [sym_case_statement] = STATE(878), - [sym_while_statement] = STATE(878), - [sym_do_statement] = STATE(878), - [sym_for_statement] = STATE(878), - [sym_return_statement] = STATE(878), - [sym_break_statement] = STATE(878), - [sym_continue_statement] = STATE(878), - [sym_goto_statement] = STATE(878), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(878), - [sym_co_return_statement] = STATE(878), - [sym_co_yield_statement] = STATE(878), - [sym_throw_statement] = STATE(878), - [sym_try_statement] = STATE(878), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), + [218] = { + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(571), + [sym_attributed_statement] = STATE(571), + [sym_labeled_statement] = STATE(571), + [sym_expression_statement] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_switch_statement] = STATE(571), + [sym_case_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_do_statement] = STATE(571), + [sym_for_statement] = STATE(571), + [sym_return_statement] = STATE(571), + [sym_break_statement] = STATE(571), + [sym_continue_statement] = STATE(571), + [sym_goto_statement] = STATE(571), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(571), + [sym_co_return_statement] = STATE(571), + [sym_co_yield_statement] = STATE(571), + [sym_throw_statement] = STATE(571), + [sym_try_statement] = STATE(571), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(2247), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -88223,23 +86665,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -88270,13 +86712,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -88287,72 +86729,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [206] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(1239), - [sym_attributed_statement] = STATE(1239), - [sym_labeled_statement] = STATE(1239), - [sym_expression_statement] = STATE(1239), - [sym_if_statement] = STATE(1239), - [sym_switch_statement] = STATE(1239), - [sym_case_statement] = STATE(1239), - [sym_while_statement] = STATE(1239), - [sym_do_statement] = STATE(1239), - [sym_for_statement] = STATE(1239), - [sym_return_statement] = STATE(1239), - [sym_break_statement] = STATE(1239), - [sym_continue_statement] = STATE(1239), - [sym_goto_statement] = STATE(1239), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1239), - [sym_co_return_statement] = STATE(1239), - [sym_co_yield_statement] = STATE(1239), - [sym_throw_statement] = STATE(1239), - [sym_try_statement] = STATE(1239), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), + [219] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(408), + [sym_attributed_statement] = STATE(408), + [sym_labeled_statement] = STATE(408), + [sym_expression_statement] = STATE(408), + [sym_if_statement] = STATE(408), + [sym_switch_statement] = STATE(408), + [sym_case_statement] = STATE(408), + [sym_while_statement] = STATE(408), + [sym_do_statement] = STATE(408), + [sym_for_statement] = STATE(408), + [sym_return_statement] = STATE(408), + [sym_break_statement] = STATE(408), + [sym_continue_statement] = STATE(408), + [sym_goto_statement] = STATE(408), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(408), + [sym_co_return_statement] = STATE(408), + [sym_co_yield_statement] = STATE(408), + [sym_throw_statement] = STATE(408), + [sym_try_statement] = STATE(408), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -88360,23 +86802,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(363), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -88407,13 +86849,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(399), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(401), + [anon_sym_co_return] = ACTIONS(411), + [anon_sym_co_yield] = ACTIONS(413), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -88424,72 +86866,483 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [207] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(1235), - [sym_attributed_statement] = STATE(1235), - [sym_labeled_statement] = STATE(1235), - [sym_expression_statement] = STATE(1235), - [sym_if_statement] = STATE(1235), - [sym_switch_statement] = STATE(1235), - [sym_case_statement] = STATE(1235), - [sym_while_statement] = STATE(1235), - [sym_do_statement] = STATE(1235), - [sym_for_statement] = STATE(1235), - [sym_return_statement] = STATE(1235), - [sym_break_statement] = STATE(1235), - [sym_continue_statement] = STATE(1235), - [sym_goto_statement] = STATE(1235), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1235), - [sym_co_return_statement] = STATE(1235), - [sym_co_yield_statement] = STATE(1235), - [sym_throw_statement] = STATE(1235), - [sym_try_statement] = STATE(1235), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), + [220] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3061), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7869), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7563), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7884), + [sym__unary_right_fold] = STATE(7892), + [sym__binary_fold] = STATE(7903), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [221] = { + [sym_attribute_declaration] = STATE(221), + [sym_compound_statement] = STATE(1103), + [sym_attributed_statement] = STATE(1103), + [sym_labeled_statement] = STATE(1103), + [sym_expression_statement] = STATE(1103), + [sym_if_statement] = STATE(1103), + [sym_switch_statement] = STATE(1103), + [sym_case_statement] = STATE(1103), + [sym_while_statement] = STATE(1103), + [sym_do_statement] = STATE(1103), + [sym_for_statement] = STATE(1103), + [sym_return_statement] = STATE(1103), + [sym_break_statement] = STATE(1103), + [sym_continue_statement] = STATE(1103), + [sym_goto_statement] = STATE(1103), + [sym__expression] = STATE(4110), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7822), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(1103), + [sym_co_return_statement] = STATE(1103), + [sym_co_yield_statement] = STATE(1103), + [sym_throw_statement] = STATE(1103), + [sym_try_statement] = STATE(1103), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(2573), + [anon_sym_LPAREN2] = ACTIONS(2262), + [anon_sym_BANG] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_COLON_COLON] = ACTIONS(2277), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2286), + [sym_primitive_type] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2582), + [anon_sym_switch] = ACTIONS(2585), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2588), + [anon_sym_do] = ACTIONS(2591), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2597), + [anon_sym_break] = ACTIONS(2600), + [anon_sym_continue] = ACTIONS(2603), + [anon_sym_goto] = ACTIONS(2606), + [anon_sym_not] = ACTIONS(2268), + [anon_sym_compl] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2325), + [anon_sym_PLUS_PLUS] = ACTIONS(2325), + [anon_sym_sizeof] = ACTIONS(2328), + [anon_sym___alignof__] = ACTIONS(2331), + [anon_sym___alignof] = ACTIONS(2331), + [anon_sym__alignof] = ACTIONS(2331), + [anon_sym_alignof] = ACTIONS(2331), + [anon_sym__Alignof] = ACTIONS(2331), + [anon_sym_offsetof] = ACTIONS(2334), + [anon_sym__Generic] = ACTIONS(2337), + [anon_sym_asm] = ACTIONS(2340), + [anon_sym___asm__] = ACTIONS(2340), + [sym_number_literal] = ACTIONS(2343), + [anon_sym_L_SQUOTE] = ACTIONS(2346), + [anon_sym_u_SQUOTE] = ACTIONS(2346), + [anon_sym_U_SQUOTE] = ACTIONS(2346), + [anon_sym_u8_SQUOTE] = ACTIONS(2346), + [anon_sym_SQUOTE] = ACTIONS(2346), + [anon_sym_L_DQUOTE] = ACTIONS(2349), + [anon_sym_u_DQUOTE] = ACTIONS(2349), + [anon_sym_U_DQUOTE] = ACTIONS(2349), + [anon_sym_u8_DQUOTE] = ACTIONS(2349), + [anon_sym_DQUOTE] = ACTIONS(2349), + [sym_true] = ACTIONS(2352), + [sym_false] = ACTIONS(2352), + [anon_sym_NULL] = ACTIONS(2355), + [anon_sym_nullptr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2358), + [anon_sym_template] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2609), + [anon_sym_delete] = ACTIONS(2367), + [anon_sym_throw] = ACTIONS(2612), + [anon_sym_co_return] = ACTIONS(2615), + [anon_sym_co_yield] = ACTIONS(2618), + [anon_sym_R_DQUOTE] = ACTIONS(2379), + [anon_sym_LR_DQUOTE] = ACTIONS(2379), + [anon_sym_uR_DQUOTE] = ACTIONS(2379), + [anon_sym_UR_DQUOTE] = ACTIONS(2379), + [anon_sym_u8R_DQUOTE] = ACTIONS(2379), + [anon_sym_co_await] = ACTIONS(2382), + [anon_sym_new] = ACTIONS(2385), + [anon_sym_requires] = ACTIONS(2388), + [sym_this] = ACTIONS(2352), + }, + [222] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3061), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7869), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7547), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7884), + [sym__unary_right_fold] = STATE(7892), + [sym__binary_fold] = STATE(7903), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [223] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(485), + [sym_attributed_statement] = STATE(484), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(481), + [sym_if_statement] = STATE(480), + [sym_switch_statement] = STATE(479), + [sym_case_statement] = STATE(478), + [sym_while_statement] = STATE(477), + [sym_do_statement] = STATE(473), + [sym_for_statement] = STATE(491), + [sym_return_statement] = STATE(426), + [sym_break_statement] = STATE(428), + [sym_continue_statement] = STATE(430), + [sym_goto_statement] = STATE(431), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(432), + [sym_co_return_statement] = STATE(433), + [sym_co_yield_statement] = STATE(434), + [sym_throw_statement] = STATE(435), + [sym_try_statement] = STATE(437), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -88497,23 +87350,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(363), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -88544,13 +87397,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(399), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(401), + [anon_sym_co_return] = ACTIONS(411), + [anon_sym_co_yield] = ACTIONS(413), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -88561,72 +87414,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [208] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(944), - [sym_attributed_statement] = STATE(944), - [sym_labeled_statement] = STATE(944), - [sym_expression_statement] = STATE(944), - [sym_if_statement] = STATE(944), - [sym_switch_statement] = STATE(944), - [sym_case_statement] = STATE(944), - [sym_while_statement] = STATE(944), - [sym_do_statement] = STATE(944), - [sym_for_statement] = STATE(944), - [sym_return_statement] = STATE(944), - [sym_break_statement] = STATE(944), - [sym_continue_statement] = STATE(944), - [sym_goto_statement] = STATE(944), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(944), - [sym_co_return_statement] = STATE(944), - [sym_co_yield_statement] = STATE(944), - [sym_throw_statement] = STATE(944), - [sym_try_statement] = STATE(944), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), + [224] = { + [sym_attribute_declaration] = STATE(216), + [sym_compound_statement] = STATE(596), + [sym_attributed_statement] = STATE(596), + [sym_labeled_statement] = STATE(596), + [sym_expression_statement] = STATE(596), + [sym_if_statement] = STATE(596), + [sym_switch_statement] = STATE(596), + [sym_case_statement] = STATE(596), + [sym_while_statement] = STATE(596), + [sym_do_statement] = STATE(596), + [sym_for_statement] = STATE(596), + [sym_return_statement] = STATE(596), + [sym_break_statement] = STATE(596), + [sym_continue_statement] = STATE(596), + [sym_goto_statement] = STATE(596), + [sym__expression] = STATE(4151), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7452), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(596), + [sym_co_return_statement] = STATE(596), + [sym_co_yield_statement] = STATE(596), + [sym_throw_statement] = STATE(596), + [sym_try_statement] = STATE(596), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(2229), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -88634,12 +87487,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1628), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), + [sym_primitive_type] = ACTIONS(2227), [anon_sym_if] = ACTIONS(73), [anon_sym_switch] = ACTIONS(75), [anon_sym_case] = ACTIONS(77), @@ -88681,7 +87534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), @@ -88698,72 +87551,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [209] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(1231), - [sym_attributed_statement] = STATE(1231), - [sym_labeled_statement] = STATE(1231), - [sym_expression_statement] = STATE(1231), - [sym_if_statement] = STATE(1231), - [sym_switch_statement] = STATE(1231), - [sym_case_statement] = STATE(1231), - [sym_while_statement] = STATE(1231), - [sym_do_statement] = STATE(1231), - [sym_for_statement] = STATE(1231), - [sym_return_statement] = STATE(1231), - [sym_break_statement] = STATE(1231), - [sym_continue_statement] = STATE(1231), - [sym_goto_statement] = STATE(1231), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1231), - [sym_co_return_statement] = STATE(1231), - [sym_co_yield_statement] = STATE(1231), - [sym_throw_statement] = STATE(1231), - [sym_try_statement] = STATE(1231), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), + [225] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(469), + [sym_attributed_statement] = STATE(470), + [sym_labeled_statement] = STATE(471), + [sym_expression_statement] = STATE(472), + [sym_if_statement] = STATE(474), + [sym_switch_statement] = STATE(483), + [sym_case_statement] = STATE(488), + [sym_while_statement] = STATE(493), + [sym_do_statement] = STATE(495), + [sym_for_statement] = STATE(503), + [sym_return_statement] = STATE(502), + [sym_break_statement] = STATE(501), + [sym_continue_statement] = STATE(421), + [sym_goto_statement] = STATE(497), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(494), + [sym_co_return_statement] = STATE(492), + [sym_co_yield_statement] = STATE(490), + [sym_throw_statement] = STATE(487), + [sym_try_statement] = STATE(486), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -88771,23 +87624,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(363), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -88818,13 +87671,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(399), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(401), + [anon_sym_co_return] = ACTIONS(411), + [anon_sym_co_yield] = ACTIONS(413), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -88835,72 +87688,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [210] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(1230), - [sym_attributed_statement] = STATE(1230), - [sym_labeled_statement] = STATE(1230), - [sym_expression_statement] = STATE(1230), - [sym_if_statement] = STATE(1230), - [sym_switch_statement] = STATE(1230), - [sym_case_statement] = STATE(1230), - [sym_while_statement] = STATE(1230), - [sym_do_statement] = STATE(1230), - [sym_for_statement] = STATE(1230), - [sym_return_statement] = STATE(1230), - [sym_break_statement] = STATE(1230), - [sym_continue_statement] = STATE(1230), - [sym_goto_statement] = STATE(1230), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1230), - [sym_co_return_statement] = STATE(1230), - [sym_co_yield_statement] = STATE(1230), - [sym_throw_statement] = STATE(1230), - [sym_try_statement] = STATE(1230), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), + [226] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(467), + [sym_attributed_statement] = STATE(467), + [sym_labeled_statement] = STATE(467), + [sym_expression_statement] = STATE(467), + [sym_if_statement] = STATE(467), + [sym_switch_statement] = STATE(467), + [sym_case_statement] = STATE(467), + [sym_while_statement] = STATE(467), + [sym_do_statement] = STATE(467), + [sym_for_statement] = STATE(467), + [sym_return_statement] = STATE(467), + [sym_break_statement] = STATE(467), + [sym_continue_statement] = STATE(467), + [sym_goto_statement] = STATE(467), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(467), + [sym_co_return_statement] = STATE(467), + [sym_co_yield_statement] = STATE(467), + [sym_throw_statement] = STATE(467), + [sym_try_statement] = STATE(467), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -88908,23 +87761,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(363), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -88955,13 +87808,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(399), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(401), + [anon_sym_co_return] = ACTIONS(411), + [anon_sym_co_yield] = ACTIONS(413), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -88972,72 +87825,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [211] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(1229), - [sym_attributed_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_expression_statement] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_case_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_goto_statement] = STATE(1229), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1229), - [sym_co_return_statement] = STATE(1229), - [sym_co_yield_statement] = STATE(1229), - [sym_throw_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), + [227] = { + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(7711), + [sym_attributed_statement] = STATE(7711), + [sym_labeled_statement] = STATE(7711), + [sym_expression_statement] = STATE(7711), + [sym_if_statement] = STATE(7711), + [sym_switch_statement] = STATE(7711), + [sym_case_statement] = STATE(7711), + [sym_while_statement] = STATE(7711), + [sym_do_statement] = STATE(7711), + [sym_for_statement] = STATE(7711), + [sym_return_statement] = STATE(7711), + [sym_break_statement] = STATE(7711), + [sym_continue_statement] = STATE(7711), + [sym_goto_statement] = STATE(7711), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(7711), + [sym_co_return_statement] = STATE(7711), + [sym_co_yield_statement] = STATE(7711), + [sym_throw_statement] = STATE(7711), + [sym_try_statement] = STATE(7711), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2235), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -89045,23 +87898,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -89092,13 +87945,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -89109,72 +87962,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [212] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1526), - [sym_attributed_statement] = STATE(1526), - [sym_labeled_statement] = STATE(1526), - [sym_expression_statement] = STATE(1526), - [sym_if_statement] = STATE(1526), - [sym_switch_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_do_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_return_statement] = STATE(1526), - [sym_break_statement] = STATE(1526), - [sym_continue_statement] = STATE(1526), - [sym_goto_statement] = STATE(1526), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1526), - [sym_co_return_statement] = STATE(1526), - [sym_co_yield_statement] = STATE(1526), - [sym_throw_statement] = STATE(1526), - [sym_try_statement] = STATE(1526), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(2259), + [228] = { + [sym_attribute_declaration] = STATE(170), + [sym_compound_statement] = STATE(1064), + [sym_attributed_statement] = STATE(1064), + [sym_labeled_statement] = STATE(1064), + [sym_expression_statement] = STATE(1064), + [sym_if_statement] = STATE(1064), + [sym_switch_statement] = STATE(1064), + [sym_case_statement] = STATE(1064), + [sym_while_statement] = STATE(1064), + [sym_do_statement] = STATE(1064), + [sym_for_statement] = STATE(1064), + [sym_return_statement] = STATE(1064), + [sym_break_statement] = STATE(1064), + [sym_continue_statement] = STATE(1064), + [sym_goto_statement] = STATE(1064), + [sym__expression] = STATE(4110), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7822), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(1064), + [sym_co_return_statement] = STATE(1064), + [sym_co_yield_statement] = STATE(1064), + [sym_throw_statement] = STATE(1064), + [sym_try_statement] = STATE(1064), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(2253), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -89182,23 +88035,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1798), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_switch] = ACTIONS(1808), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(1810), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_goto] = ACTIONS(1822), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -89229,13 +88082,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(1824), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(1826), + [anon_sym_co_return] = ACTIONS(1828), + [anon_sym_co_yield] = ACTIONS(1830), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -89246,72 +88099,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [213] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(1228), - [sym_attributed_statement] = STATE(1228), - [sym_labeled_statement] = STATE(1228), - [sym_expression_statement] = STATE(1228), - [sym_if_statement] = STATE(1228), - [sym_switch_statement] = STATE(1228), - [sym_case_statement] = STATE(1228), - [sym_while_statement] = STATE(1228), - [sym_do_statement] = STATE(1228), - [sym_for_statement] = STATE(1228), - [sym_return_statement] = STATE(1228), - [sym_break_statement] = STATE(1228), - [sym_continue_statement] = STATE(1228), - [sym_goto_statement] = STATE(1228), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1228), - [sym_co_return_statement] = STATE(1228), - [sym_co_yield_statement] = STATE(1228), - [sym_throw_statement] = STATE(1228), - [sym_try_statement] = STATE(1228), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), + [229] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3009), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7230), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7555), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7502), + [sym__unary_right_fold] = STATE(7503), + [sym__binary_fold] = STATE(7505), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [230] = { + [sym_attribute_declaration] = STATE(170), + [sym_compound_statement] = STATE(1080), + [sym_attributed_statement] = STATE(1080), + [sym_labeled_statement] = STATE(1080), + [sym_expression_statement] = STATE(1080), + [sym_if_statement] = STATE(1080), + [sym_switch_statement] = STATE(1080), + [sym_case_statement] = STATE(1080), + [sym_while_statement] = STATE(1080), + [sym_do_statement] = STATE(1080), + [sym_for_statement] = STATE(1080), + [sym_return_statement] = STATE(1080), + [sym_break_statement] = STATE(1080), + [sym_continue_statement] = STATE(1080), + [sym_goto_statement] = STATE(1080), + [sym__expression] = STATE(4110), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7822), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(1080), + [sym_co_return_statement] = STATE(1080), + [sym_co_yield_statement] = STATE(1080), + [sym_throw_statement] = STATE(1080), + [sym_try_statement] = STATE(1080), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(2253), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -89319,23 +88309,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1798), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_switch] = ACTIONS(1808), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(1810), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_goto] = ACTIONS(1822), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -89366,13 +88356,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1824), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(1826), + [anon_sym_co_return] = ACTIONS(1828), + [anon_sym_co_yield] = ACTIONS(1830), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -89383,209 +88373,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [214] = { - [sym_attribute_declaration] = STATE(214), - [sym_compound_statement] = STATE(1214), - [sym_attributed_statement] = STATE(1214), - [sym_labeled_statement] = STATE(1214), - [sym_expression_statement] = STATE(1214), - [sym_if_statement] = STATE(1214), - [sym_switch_statement] = STATE(1214), - [sym_case_statement] = STATE(1214), - [sym_while_statement] = STATE(1214), - [sym_do_statement] = STATE(1214), - [sym_for_statement] = STATE(1214), - [sym_return_statement] = STATE(1214), - [sym_break_statement] = STATE(1214), - [sym_continue_statement] = STATE(1214), - [sym_goto_statement] = STATE(1214), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1214), - [sym_co_return_statement] = STATE(1214), - [sym_co_yield_statement] = STATE(1214), - [sym_throw_statement] = STATE(1214), - [sym_try_statement] = STATE(1214), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(214), - [sym_identifier] = ACTIONS(2397), - [anon_sym_LPAREN2] = ACTIONS(2268), - [anon_sym_BANG] = ACTIONS(2271), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2277), - [anon_sym_SEMI] = ACTIONS(2400), - [anon_sym_COLON_COLON] = ACTIONS(2283), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2286), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_LBRACK] = ACTIONS(2292), - [sym_primitive_type] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_switch] = ACTIONS(2409), - [anon_sym_case] = ACTIONS(2412), - [anon_sym_default] = ACTIONS(2415), - [anon_sym_while] = ACTIONS(2418), - [anon_sym_do] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2424), - [anon_sym_return] = ACTIONS(2427), - [anon_sym_break] = ACTIONS(2430), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_goto] = ACTIONS(2436), - [anon_sym_not] = ACTIONS(2274), - [anon_sym_compl] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_sizeof] = ACTIONS(2334), - [anon_sym___alignof__] = ACTIONS(2337), - [anon_sym___alignof] = ACTIONS(2337), - [anon_sym__alignof] = ACTIONS(2337), - [anon_sym_alignof] = ACTIONS(2337), - [anon_sym__Alignof] = ACTIONS(2337), - [anon_sym_offsetof] = ACTIONS(2340), - [anon_sym__Generic] = ACTIONS(2343), - [anon_sym_asm] = ACTIONS(2346), - [anon_sym___asm__] = ACTIONS(2346), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2352), - [anon_sym_u_SQUOTE] = ACTIONS(2352), - [anon_sym_U_SQUOTE] = ACTIONS(2352), - [anon_sym_u8_SQUOTE] = ACTIONS(2352), - [anon_sym_SQUOTE] = ACTIONS(2352), - [anon_sym_L_DQUOTE] = ACTIONS(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2358), - [sym_false] = ACTIONS(2358), - [anon_sym_NULL] = ACTIONS(2361), - [anon_sym_nullptr] = ACTIONS(2361), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2364), - [anon_sym_template] = ACTIONS(2367), - [anon_sym_try] = ACTIONS(2439), - [anon_sym_delete] = ACTIONS(2373), - [anon_sym_throw] = ACTIONS(2442), - [anon_sym_co_return] = ACTIONS(2445), - [anon_sym_co_yield] = ACTIONS(2448), - [anon_sym_R_DQUOTE] = ACTIONS(2385), - [anon_sym_LR_DQUOTE] = ACTIONS(2385), - [anon_sym_uR_DQUOTE] = ACTIONS(2385), - [anon_sym_UR_DQUOTE] = ACTIONS(2385), - [anon_sym_u8R_DQUOTE] = ACTIONS(2385), - [anon_sym_co_await] = ACTIONS(2388), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_requires] = ACTIONS(2394), - [sym_this] = ACTIONS(2358), - }, - [215] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(973), - [sym_attributed_statement] = STATE(973), - [sym_labeled_statement] = STATE(973), - [sym_expression_statement] = STATE(973), - [sym_if_statement] = STATE(973), - [sym_switch_statement] = STATE(973), - [sym_case_statement] = STATE(973), - [sym_while_statement] = STATE(973), - [sym_do_statement] = STATE(973), - [sym_for_statement] = STATE(973), - [sym_return_statement] = STATE(973), - [sym_break_statement] = STATE(973), - [sym_continue_statement] = STATE(973), - [sym_goto_statement] = STATE(973), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(973), - [sym_co_return_statement] = STATE(973), - [sym_co_yield_statement] = STATE(973), - [sym_throw_statement] = STATE(973), - [sym_try_statement] = STATE(973), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), + [231] = { + [sym_attribute_declaration] = STATE(170), + [sym_compound_statement] = STATE(1036), + [sym_attributed_statement] = STATE(1036), + [sym_labeled_statement] = STATE(1036), + [sym_expression_statement] = STATE(1036), + [sym_if_statement] = STATE(1036), + [sym_switch_statement] = STATE(1036), + [sym_case_statement] = STATE(1036), + [sym_while_statement] = STATE(1036), + [sym_do_statement] = STATE(1036), + [sym_for_statement] = STATE(1036), + [sym_return_statement] = STATE(1036), + [sym_break_statement] = STATE(1036), + [sym_continue_statement] = STATE(1036), + [sym_goto_statement] = STATE(1036), + [sym__expression] = STATE(4110), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7822), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(1036), + [sym_co_return_statement] = STATE(1036), + [sym_co_yield_statement] = STATE(1036), + [sym_throw_statement] = STATE(1036), + [sym_try_statement] = STATE(1036), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(2253), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -89593,23 +88446,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1798), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_switch] = ACTIONS(1808), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(1810), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_goto] = ACTIONS(1822), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -89640,13 +88493,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), + [anon_sym_try] = ACTIONS(1824), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), + [anon_sym_throw] = ACTIONS(1826), + [anon_sym_co_return] = ACTIONS(1828), + [anon_sym_co_yield] = ACTIONS(1830), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -89657,72 +88510,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [216] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(981), - [sym_attributed_statement] = STATE(981), - [sym_labeled_statement] = STATE(981), - [sym_expression_statement] = STATE(981), - [sym_if_statement] = STATE(981), - [sym_switch_statement] = STATE(981), - [sym_case_statement] = STATE(981), - [sym_while_statement] = STATE(981), - [sym_do_statement] = STATE(981), - [sym_for_statement] = STATE(981), - [sym_return_statement] = STATE(981), - [sym_break_statement] = STATE(981), - [sym_continue_statement] = STATE(981), - [sym_goto_statement] = STATE(981), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(981), - [sym_co_return_statement] = STATE(981), - [sym_co_yield_statement] = STATE(981), - [sym_throw_statement] = STATE(981), - [sym_try_statement] = STATE(981), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), + [232] = { + [sym_attribute_declaration] = STATE(156), + [sym_compound_statement] = STATE(281), + [sym_attributed_statement] = STATE(281), + [sym_labeled_statement] = STATE(281), + [sym_expression_statement] = STATE(281), + [sym_if_statement] = STATE(281), + [sym_switch_statement] = STATE(281), + [sym_case_statement] = STATE(281), + [sym_while_statement] = STATE(281), + [sym_do_statement] = STATE(281), + [sym_for_statement] = STATE(281), + [sym_return_statement] = STATE(281), + [sym_break_statement] = STATE(281), + [sym_continue_statement] = STATE(281), + [sym_goto_statement] = STATE(281), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(281), + [sym_co_return_statement] = STATE(281), + [sym_co_yield_statement] = STATE(281), + [sym_throw_statement] = STATE(281), + [sym_try_statement] = STATE(281), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [sym_identifier] = ACTIONS(2225), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -89730,23 +88583,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(255), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(273), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -89777,7 +88630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), [anon_sym_try] = ACTIONS(291), [anon_sym_delete] = ACTIONS(135), @@ -89794,72 +88647,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [217] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(1221), - [sym_attributed_statement] = STATE(1221), - [sym_labeled_statement] = STATE(1221), - [sym_expression_statement] = STATE(1221), - [sym_if_statement] = STATE(1221), - [sym_switch_statement] = STATE(1221), - [sym_case_statement] = STATE(1221), - [sym_while_statement] = STATE(1221), - [sym_do_statement] = STATE(1221), - [sym_for_statement] = STATE(1221), - [sym_return_statement] = STATE(1221), - [sym_break_statement] = STATE(1221), - [sym_continue_statement] = STATE(1221), - [sym_goto_statement] = STATE(1221), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1221), - [sym_co_return_statement] = STATE(1221), - [sym_co_yield_statement] = STATE(1221), - [sym_throw_statement] = STATE(1221), - [sym_try_statement] = STATE(1221), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), + [233] = { + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(591), + [sym_attributed_statement] = STATE(591), + [sym_labeled_statement] = STATE(591), + [sym_expression_statement] = STATE(591), + [sym_if_statement] = STATE(591), + [sym_switch_statement] = STATE(591), + [sym_case_statement] = STATE(591), + [sym_while_statement] = STATE(591), + [sym_do_statement] = STATE(591), + [sym_for_statement] = STATE(591), + [sym_return_statement] = STATE(591), + [sym_break_statement] = STATE(591), + [sym_continue_statement] = STATE(591), + [sym_goto_statement] = STATE(591), + [sym__expression] = STATE(4151), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7452), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(591), + [sym_co_return_statement] = STATE(591), + [sym_co_yield_statement] = STATE(591), + [sym_throw_statement] = STATE(591), + [sym_try_statement] = STATE(591), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2229), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -89867,23 +88720,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1628), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(73), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(77), + [anon_sym_default] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(85), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -89914,13 +88767,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -89931,72 +88784,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [218] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(1218), - [sym_attributed_statement] = STATE(1218), - [sym_labeled_statement] = STATE(1218), - [sym_expression_statement] = STATE(1218), - [sym_if_statement] = STATE(1218), - [sym_switch_statement] = STATE(1218), - [sym_case_statement] = STATE(1218), - [sym_while_statement] = STATE(1218), - [sym_do_statement] = STATE(1218), - [sym_for_statement] = STATE(1218), - [sym_return_statement] = STATE(1218), - [sym_break_statement] = STATE(1218), - [sym_continue_statement] = STATE(1218), - [sym_goto_statement] = STATE(1218), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1218), - [sym_co_return_statement] = STATE(1218), - [sym_co_yield_statement] = STATE(1218), - [sym_throw_statement] = STATE(1218), - [sym_try_statement] = STATE(1218), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), + [234] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3061), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7869), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7864), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7884), + [sym__unary_right_fold] = STATE(7892), + [sym__binary_fold] = STATE(7903), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [235] = { + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(553), + [sym_attributed_statement] = STATE(553), + [sym_labeled_statement] = STATE(553), + [sym_expression_statement] = STATE(553), + [sym_if_statement] = STATE(553), + [sym_switch_statement] = STATE(553), + [sym_case_statement] = STATE(553), + [sym_while_statement] = STATE(553), + [sym_do_statement] = STATE(553), + [sym_for_statement] = STATE(553), + [sym_return_statement] = STATE(553), + [sym_break_statement] = STATE(553), + [sym_continue_statement] = STATE(553), + [sym_goto_statement] = STATE(553), + [sym__expression] = STATE(4151), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7452), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(553), + [sym_co_return_statement] = STATE(553), + [sym_co_yield_statement] = STATE(553), + [sym_throw_statement] = STATE(553), + [sym_try_statement] = STATE(553), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2229), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -90004,23 +88994,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1628), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(73), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(77), + [anon_sym_default] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(85), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -90051,13 +89041,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -90068,72 +89058,483 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [219] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(1025), - [sym_attributed_statement] = STATE(1027), - [sym_labeled_statement] = STATE(1030), - [sym_expression_statement] = STATE(1032), - [sym_if_statement] = STATE(1037), - [sym_switch_statement] = STATE(1041), - [sym_case_statement] = STATE(1042), - [sym_while_statement] = STATE(1047), - [sym_do_statement] = STATE(1059), - [sym_for_statement] = STATE(1070), - [sym_return_statement] = STATE(1073), - [sym_break_statement] = STATE(1074), - [sym_continue_statement] = STATE(1078), - [sym_goto_statement] = STATE(1079), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1080), - [sym_co_return_statement] = STATE(1087), - [sym_co_yield_statement] = STATE(1095), - [sym_throw_statement] = STATE(1099), - [sym_try_statement] = STATE(1103), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), + [236] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3061), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7869), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7205), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7227), + [sym__unary_right_fold] = STATE(7226), + [sym__binary_fold] = STATE(7224), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [237] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3061), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7869), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7722), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7884), + [sym__unary_right_fold] = STATE(7892), + [sym__binary_fold] = STATE(7903), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [238] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3138), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7461), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7326), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7329), + [sym__unary_right_fold] = STATE(7330), + [sym__binary_fold] = STATE(7334), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [239] = { + [sym_attribute_declaration] = STATE(243), + [sym_compound_statement] = STATE(427), + [sym_attributed_statement] = STATE(427), + [sym_labeled_statement] = STATE(427), + [sym_expression_statement] = STATE(427), + [sym_if_statement] = STATE(427), + [sym_switch_statement] = STATE(427), + [sym_case_statement] = STATE(427), + [sym_while_statement] = STATE(427), + [sym_do_statement] = STATE(427), + [sym_for_statement] = STATE(427), + [sym_return_statement] = STATE(427), + [sym_break_statement] = STATE(427), + [sym_continue_statement] = STATE(427), + [sym_goto_statement] = STATE(427), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(427), + [sym_co_return_statement] = STATE(427), + [sym_co_yield_statement] = STATE(427), + [sym_throw_statement] = STATE(427), + [sym_try_statement] = STATE(427), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -90141,23 +89542,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(363), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(375), + [anon_sym_switch] = ACTIONS(377), + [anon_sym_case] = ACTIONS(379), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_goto] = ACTIONS(395), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -90188,13 +89589,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(399), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(401), + [anon_sym_co_return] = ACTIONS(411), + [anon_sym_co_yield] = ACTIONS(413), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -90205,209 +89606,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [220] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3894), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9633), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9460), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9631), - [sym__unary_right_fold] = STATE(9630), - [sym__binary_fold] = STATE(9629), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [221] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(975), - [sym_attributed_statement] = STATE(976), - [sym_labeled_statement] = STATE(978), - [sym_expression_statement] = STATE(980), - [sym_if_statement] = STATE(984), - [sym_switch_statement] = STATE(989), - [sym_case_statement] = STATE(994), - [sym_while_statement] = STATE(995), - [sym_do_statement] = STATE(1001), - [sym_for_statement] = STATE(1004), - [sym_return_statement] = STATE(938), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(1008), - [sym_goto_statement] = STATE(1010), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1011), - [sym_co_return_statement] = STATE(1012), - [sym_co_yield_statement] = STATE(1017), - [sym_throw_statement] = STATE(1021), - [sym_try_statement] = STATE(1024), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), + [240] = { + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(7737), + [sym_attributed_statement] = STATE(7737), + [sym_labeled_statement] = STATE(7737), + [sym_expression_statement] = STATE(7737), + [sym_if_statement] = STATE(7737), + [sym_switch_statement] = STATE(7737), + [sym_case_statement] = STATE(7737), + [sym_while_statement] = STATE(7737), + [sym_do_statement] = STATE(7737), + [sym_for_statement] = STATE(7737), + [sym_return_statement] = STATE(7737), + [sym_break_statement] = STATE(7737), + [sym_continue_statement] = STATE(7737), + [sym_goto_statement] = STATE(7737), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(7737), + [sym_co_return_statement] = STATE(7737), + [sym_co_yield_statement] = STATE(7737), + [sym_throw_statement] = STATE(7737), + [sym_try_statement] = STATE(7737), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2235), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -90415,19 +89679,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2237), [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2243), [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2245), [anon_sym_return] = ACTIONS(87), [anon_sym_break] = ACTIONS(89), [anon_sym_continue] = ACTIONS(91), @@ -90462,7 +89726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), @@ -90479,209 +89743,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [222] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3894), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9633), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9171), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9631), - [sym__unary_right_fold] = STATE(9630), - [sym__binary_fold] = STATE(9629), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [223] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(377), - [sym_attributed_statement] = STATE(377), - [sym_labeled_statement] = STATE(377), - [sym_expression_statement] = STATE(377), - [sym_if_statement] = STATE(377), - [sym_switch_statement] = STATE(377), - [sym_case_statement] = STATE(377), - [sym_while_statement] = STATE(377), - [sym_do_statement] = STATE(377), - [sym_for_statement] = STATE(377), - [sym_return_statement] = STATE(377), - [sym_break_statement] = STATE(377), - [sym_continue_statement] = STATE(377), - [sym_goto_statement] = STATE(377), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(377), - [sym_co_return_statement] = STATE(377), - [sym_co_yield_statement] = STATE(377), - [sym_throw_statement] = STATE(377), - [sym_try_statement] = STATE(377), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), + [241] = { + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(7576), + [sym_attributed_statement] = STATE(7576), + [sym_labeled_statement] = STATE(7576), + [sym_expression_statement] = STATE(7576), + [sym_if_statement] = STATE(7576), + [sym_switch_statement] = STATE(7576), + [sym_case_statement] = STATE(7576), + [sym_while_statement] = STATE(7576), + [sym_do_statement] = STATE(7576), + [sym_for_statement] = STATE(7576), + [sym_return_statement] = STATE(7576), + [sym_break_statement] = STATE(7576), + [sym_continue_statement] = STATE(7576), + [sym_goto_statement] = STATE(7576), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(7576), + [sym_co_return_statement] = STATE(7576), + [sym_co_yield_statement] = STATE(7576), + [sym_throw_statement] = STATE(7576), + [sym_try_statement] = STATE(7576), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2235), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -90689,23 +89816,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -90736,13 +89863,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -90753,72 +89880,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [224] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(9603), - [sym_attributed_statement] = STATE(9603), - [sym_labeled_statement] = STATE(9603), - [sym_expression_statement] = STATE(9603), - [sym_if_statement] = STATE(9603), - [sym_switch_statement] = STATE(9603), - [sym_case_statement] = STATE(9603), - [sym_while_statement] = STATE(9603), - [sym_do_statement] = STATE(9603), - [sym_for_statement] = STATE(9603), - [sym_return_statement] = STATE(9603), - [sym_break_statement] = STATE(9603), - [sym_continue_statement] = STATE(9603), - [sym_goto_statement] = STATE(9603), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(9603), - [sym_co_return_statement] = STATE(9603), - [sym_co_yield_statement] = STATE(9603), - [sym_throw_statement] = STATE(9603), - [sym_try_statement] = STATE(9603), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), + [242] = { + [sym_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(766), + [sym_attributed_statement] = STATE(766), + [sym_labeled_statement] = STATE(766), + [sym_expression_statement] = STATE(766), + [sym_if_statement] = STATE(766), + [sym_switch_statement] = STATE(766), + [sym_case_statement] = STATE(766), + [sym_while_statement] = STATE(766), + [sym_do_statement] = STATE(766), + [sym_for_statement] = STATE(766), + [sym_return_statement] = STATE(766), + [sym_break_statement] = STATE(766), + [sym_continue_statement] = STATE(766), + [sym_goto_statement] = STATE(766), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(766), + [sym_co_return_statement] = STATE(766), + [sym_co_yield_statement] = STATE(766), + [sym_throw_statement] = STATE(766), + [sym_try_statement] = STATE(766), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(2247), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -90826,23 +89953,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -90873,13 +90000,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(217), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(229), + [anon_sym_co_yield] = ACTIONS(231), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -90890,346 +90017,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [225] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3894), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9633), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9194), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9631), - [sym__unary_right_fold] = STATE(9630), - [sym__binary_fold] = STATE(9629), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [226] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3894), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9633), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9632), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9631), - [sym__unary_right_fold] = STATE(9630), - [sym__binary_fold] = STATE(9629), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [243] = { + [sym_attribute_declaration] = STATE(243), + [sym_compound_statement] = STATE(427), + [sym_attributed_statement] = STATE(427), + [sym_labeled_statement] = STATE(427), + [sym_expression_statement] = STATE(427), + [sym_if_statement] = STATE(427), + [sym_switch_statement] = STATE(427), + [sym_case_statement] = STATE(427), + [sym_while_statement] = STATE(427), + [sym_do_statement] = STATE(427), + [sym_for_statement] = STATE(427), + [sym_return_statement] = STATE(427), + [sym_break_statement] = STATE(427), + [sym_continue_statement] = STATE(427), + [sym_goto_statement] = STATE(427), + [sym__expression] = STATE(4130), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(427), + [sym_co_return_statement] = STATE(427), + [sym_co_yield_statement] = STATE(427), + [sym_throw_statement] = STATE(427), + [sym_try_statement] = STATE(427), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2262), + [anon_sym_BANG] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2277), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2286), + [sym_primitive_type] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2630), + [anon_sym_switch] = ACTIONS(2633), + [anon_sym_case] = ACTIONS(2636), + [anon_sym_default] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2642), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2651), + [anon_sym_break] = ACTIONS(2654), + [anon_sym_continue] = ACTIONS(2657), + [anon_sym_goto] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2268), + [anon_sym_compl] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2325), + [anon_sym_PLUS_PLUS] = ACTIONS(2325), + [anon_sym_sizeof] = ACTIONS(2328), + [anon_sym___alignof__] = ACTIONS(2331), + [anon_sym___alignof] = ACTIONS(2331), + [anon_sym__alignof] = ACTIONS(2331), + [anon_sym_alignof] = ACTIONS(2331), + [anon_sym__Alignof] = ACTIONS(2331), + [anon_sym_offsetof] = ACTIONS(2334), + [anon_sym__Generic] = ACTIONS(2337), + [anon_sym_asm] = ACTIONS(2340), + [anon_sym___asm__] = ACTIONS(2340), + [sym_number_literal] = ACTIONS(2343), + [anon_sym_L_SQUOTE] = ACTIONS(2346), + [anon_sym_u_SQUOTE] = ACTIONS(2346), + [anon_sym_U_SQUOTE] = ACTIONS(2346), + [anon_sym_u8_SQUOTE] = ACTIONS(2346), + [anon_sym_SQUOTE] = ACTIONS(2346), + [anon_sym_L_DQUOTE] = ACTIONS(2349), + [anon_sym_u_DQUOTE] = ACTIONS(2349), + [anon_sym_U_DQUOTE] = ACTIONS(2349), + [anon_sym_u8_DQUOTE] = ACTIONS(2349), + [anon_sym_DQUOTE] = ACTIONS(2349), + [sym_true] = ACTIONS(2352), + [sym_false] = ACTIONS(2352), + [anon_sym_NULL] = ACTIONS(2355), + [anon_sym_nullptr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2358), + [anon_sym_template] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2663), + [anon_sym_delete] = ACTIONS(2367), + [anon_sym_throw] = ACTIONS(2666), + [anon_sym_co_return] = ACTIONS(2669), + [anon_sym_co_yield] = ACTIONS(2672), + [anon_sym_R_DQUOTE] = ACTIONS(2379), + [anon_sym_LR_DQUOTE] = ACTIONS(2379), + [anon_sym_uR_DQUOTE] = ACTIONS(2379), + [anon_sym_UR_DQUOTE] = ACTIONS(2379), + [anon_sym_u8R_DQUOTE] = ACTIONS(2379), + [anon_sym_co_await] = ACTIONS(2382), + [anon_sym_new] = ACTIONS(2385), + [anon_sym_requires] = ACTIONS(2388), + [sym_this] = ACTIONS(2352), }, - [227] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(9177), - [sym_attributed_statement] = STATE(9177), - [sym_labeled_statement] = STATE(9177), - [sym_expression_statement] = STATE(9177), - [sym_if_statement] = STATE(9177), - [sym_switch_statement] = STATE(9177), - [sym_case_statement] = STATE(9177), - [sym_while_statement] = STATE(9177), - [sym_do_statement] = STATE(9177), - [sym_for_statement] = STATE(9177), - [sym_return_statement] = STATE(9177), - [sym_break_statement] = STATE(9177), - [sym_continue_statement] = STATE(9177), - [sym_goto_statement] = STATE(9177), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(9177), - [sym_co_return_statement] = STATE(9177), - [sym_co_yield_statement] = STATE(9177), - [sym_throw_statement] = STATE(9177), - [sym_try_statement] = STATE(9177), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), + [244] = { + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(7759), + [sym_attributed_statement] = STATE(7759), + [sym_labeled_statement] = STATE(7759), + [sym_expression_statement] = STATE(7759), + [sym_if_statement] = STATE(7759), + [sym_switch_statement] = STATE(7759), + [sym_case_statement] = STATE(7759), + [sym_while_statement] = STATE(7759), + [sym_do_statement] = STATE(7759), + [sym_for_statement] = STATE(7759), + [sym_return_statement] = STATE(7759), + [sym_break_statement] = STATE(7759), + [sym_continue_statement] = STATE(7759), + [sym_goto_statement] = STATE(7759), + [sym__expression] = STATE(4043), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7667), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(7759), + [sym_co_return_statement] = STATE(7759), + [sym_co_yield_statement] = STATE(7759), + [sym_throw_statement] = STATE(7759), + [sym_try_statement] = STATE(7759), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2235), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -91237,19 +90227,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2237), [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), + [anon_sym_case] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2243), [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2245), [anon_sym_return] = ACTIONS(87), [anon_sym_break] = ACTIONS(89), [anon_sym_continue] = ACTIONS(91), @@ -91284,7 +90274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), @@ -91301,219 +90291,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [228] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(969), - [sym_attributed_statement] = STATE(969), - [sym_labeled_statement] = STATE(969), - [sym_expression_statement] = STATE(969), - [sym_if_statement] = STATE(969), - [sym_switch_statement] = STATE(969), - [sym_case_statement] = STATE(969), - [sym_while_statement] = STATE(969), - [sym_do_statement] = STATE(969), - [sym_for_statement] = STATE(969), - [sym_return_statement] = STATE(969), - [sym_break_statement] = STATE(969), - [sym_continue_statement] = STATE(969), - [sym_goto_statement] = STATE(969), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(969), - [sym_co_return_statement] = STATE(969), - [sym_co_yield_statement] = STATE(969), - [sym_throw_statement] = STATE(969), - [sym_try_statement] = STATE(969), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [245] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3138), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7461), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7460), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7459), + [sym__unary_right_fold] = STATE(7457), + [sym__binary_fold] = STATE(7456), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [229] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3894), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9633), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(8962), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9631), - [sym__unary_right_fold] = STATE(9630), - [sym__binary_fold] = STATE(9629), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), + [246] = { + [sym_type_qualifier] = STATE(3761), + [sym__type_specifier] = STATE(4449), + [sym_sized_type_specifier] = STATE(1958), + [sym_enum_specifier] = STATE(1958), + [sym_struct_specifier] = STATE(1958), + [sym_union_specifier] = STATE(1958), + [sym__expression] = STATE(3138), + [sym__expression_not_binary] = STATE(3589), + [sym_comma_expression] = STATE(7461), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_type_descriptor] = STATE(7388), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_placeholder_type_specifier] = STATE(1958), + [sym_decltype_auto] = STATE(1963), + [sym_decltype] = STATE(1886), + [sym_class_specifier] = STATE(1958), + [sym__class_name] = STATE(6939), + [sym_dependent_type] = STATE(1958), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7459), + [sym__unary_right_fold] = STATE(7457), + [sym__binary_fold] = STATE(7456), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5196), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3171), + [aux_sym__type_definition_type_repeat1] = STATE(3761), + [aux_sym_sized_type_specifier_repeat1] = STATE(1934), + [sym_identifier] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(2018), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -91525,122 +90515,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1994), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1998), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [230] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(878), - [sym_attributed_statement] = STATE(878), - [sym_labeled_statement] = STATE(878), - [sym_expression_statement] = STATE(878), - [sym_if_statement] = STATE(878), - [sym_switch_statement] = STATE(878), - [sym_case_statement] = STATE(878), - [sym_while_statement] = STATE(878), - [sym_do_statement] = STATE(878), - [sym_for_statement] = STATE(878), - [sym_return_statement] = STATE(878), - [sym_break_statement] = STATE(878), - [sym_continue_statement] = STATE(878), - [sym_goto_statement] = STATE(878), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(878), - [sym_co_return_statement] = STATE(878), - [sym_co_yield_statement] = STATE(878), - [sym_throw_statement] = STATE(878), - [sym_try_statement] = STATE(878), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), + [247] = { + [sym_attribute_declaration] = STATE(156), + [sym_compound_statement] = STATE(253), + [sym_attributed_statement] = STATE(253), + [sym_labeled_statement] = STATE(253), + [sym_expression_statement] = STATE(253), + [sym_if_statement] = STATE(253), + [sym_switch_statement] = STATE(253), + [sym_case_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_do_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_return_statement] = STATE(253), + [sym_break_statement] = STATE(253), + [sym_continue_statement] = STATE(253), + [sym_goto_statement] = STATE(253), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(253), + [sym_co_return_statement] = STATE(253), + [sym_co_yield_statement] = STATE(253), + [sym_throw_statement] = STATE(253), + [sym_try_statement] = STATE(253), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [sym_identifier] = ACTIONS(2225), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -91648,23 +90638,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(255), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(273), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -91695,13 +90685,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(291), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(293), + [anon_sym_co_return] = ACTIONS(303), + [anon_sym_co_yield] = ACTIONS(305), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -91712,72 +90702,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [231] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(870), - [sym_attributed_statement] = STATE(870), - [sym_labeled_statement] = STATE(870), - [sym_expression_statement] = STATE(870), - [sym_if_statement] = STATE(870), - [sym_switch_statement] = STATE(870), - [sym_case_statement] = STATE(870), - [sym_while_statement] = STATE(870), - [sym_do_statement] = STATE(870), - [sym_for_statement] = STATE(870), - [sym_return_statement] = STATE(870), - [sym_break_statement] = STATE(870), - [sym_continue_statement] = STATE(870), - [sym_goto_statement] = STATE(870), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(870), - [sym_co_return_statement] = STATE(870), - [sym_co_yield_statement] = STATE(870), - [sym_throw_statement] = STATE(870), - [sym_try_statement] = STATE(870), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), + [248] = { + [sym_attribute_declaration] = STATE(156), + [sym_compound_statement] = STATE(278), + [sym_attributed_statement] = STATE(278), + [sym_labeled_statement] = STATE(278), + [sym_expression_statement] = STATE(278), + [sym_if_statement] = STATE(278), + [sym_switch_statement] = STATE(278), + [sym_case_statement] = STATE(278), + [sym_while_statement] = STATE(278), + [sym_do_statement] = STATE(278), + [sym_for_statement] = STATE(278), + [sym_return_statement] = STATE(278), + [sym_break_statement] = STATE(278), + [sym_continue_statement] = STATE(278), + [sym_goto_statement] = STATE(278), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7216), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_for_range_loop] = STATE(278), + [sym_co_return_statement] = STATE(278), + [sym_co_yield_statement] = STATE(278), + [sym_throw_statement] = STATE(278), + [sym_try_statement] = STATE(278), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [sym_identifier] = ACTIONS(2225), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -91785,23 +90775,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(255), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(263), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(267), + [anon_sym_switch] = ACTIONS(269), + [anon_sym_case] = ACTIONS(271), + [anon_sym_default] = ACTIONS(273), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_goto] = ACTIONS(287), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -91832,13 +90822,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(291), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(293), + [anon_sym_co_return] = ACTIONS(303), + [anon_sym_co_yield] = ACTIONS(305), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -91849,82 +90839,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [232] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3889), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9595), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9593), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9587), - [sym__unary_right_fold] = STATE(9577), - [sym__binary_fold] = STATE(9562), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), + [249] = { + [sym_preproc_def] = STATE(453), + [sym_preproc_function_def] = STATE(453), + [sym_preproc_call] = STATE(453), + [sym_preproc_elifdef] = STATE(7447), + [sym_preproc_if_in_field_declaration_list] = STATE(453), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(453), + [sym_preproc_else_in_field_declaration_list] = STATE(7447), + [sym_preproc_elif_in_field_declaration_list] = STATE(7447), + [sym_type_definition] = STATE(453), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5176), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5750), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(453), + [sym_field_declaration] = STATE(453), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1790), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(453), + [sym_operator_cast] = STATE(6091), + [sym_inline_method_definition] = STATE(453), + [sym__constructor_specifiers] = STATE(1790), + [sym_operator_cast_definition] = STATE(453), + [sym_operator_cast_declaration] = STATE(453), + [sym_constructor_or_destructor_definition] = STATE(453), + [sym_constructor_or_destructor_declaration] = STATE(453), + [sym_friend_declaration] = STATE(453), + [sym_access_specifier] = STATE(7399), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(453), + [sym_alias_declaration] = STATE(453), + [sym_static_assert_declaration] = STATE(453), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6091), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(453), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(2677), + [aux_sym_preproc_if_token1] = ACTIONS(2679), + [aux_sym_preproc_if_token2] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2687), + [aux_sym_preproc_elifdef_token1] = ACTIONS(251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(251), + [sym_preproc_directive] = ACTIONS(2689), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(2699), + [anon_sym_typedef] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -91936,122 +90954,2651 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(2719), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(2721), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_static_assert] = ACTIONS(2727), }, - [233] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(1169), - [sym_attributed_statement] = STATE(1169), - [sym_labeled_statement] = STATE(1169), - [sym_expression_statement] = STATE(1169), - [sym_if_statement] = STATE(1169), - [sym_switch_statement] = STATE(1169), - [sym_case_statement] = STATE(1169), - [sym_while_statement] = STATE(1169), - [sym_do_statement] = STATE(1169), - [sym_for_statement] = STATE(1169), - [sym_return_statement] = STATE(1169), - [sym_break_statement] = STATE(1169), - [sym_continue_statement] = STATE(1169), - [sym_goto_statement] = STATE(1169), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1169), - [sym_co_return_statement] = STATE(1169), - [sym_co_yield_statement] = STATE(1169), - [sym_throw_statement] = STATE(1169), - [sym_try_statement] = STATE(1169), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), + [250] = { + [sym_preproc_def] = STATE(252), + [sym_preproc_function_def] = STATE(252), + [sym_preproc_call] = STATE(252), + [sym_preproc_elifdef] = STATE(7286), + [sym_preproc_if_in_field_declaration_list] = STATE(252), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(252), + [sym_preproc_else_in_field_declaration_list] = STATE(7286), + [sym_preproc_elif_in_field_declaration_list] = STATE(7286), + [sym_type_definition] = STATE(252), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5176), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5750), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(252), + [sym_field_declaration] = STATE(252), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1790), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(252), + [sym_operator_cast] = STATE(6091), + [sym_inline_method_definition] = STATE(252), + [sym__constructor_specifiers] = STATE(1790), + [sym_operator_cast_definition] = STATE(252), + [sym_operator_cast_declaration] = STATE(252), + [sym_constructor_or_destructor_definition] = STATE(252), + [sym_constructor_or_destructor_declaration] = STATE(252), + [sym_friend_declaration] = STATE(252), + [sym_access_specifier] = STATE(7399), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(252), + [sym_alias_declaration] = STATE(252), + [sym_static_assert_declaration] = STATE(252), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6091), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(252), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(2677), + [aux_sym_preproc_if_token1] = ACTIONS(2679), + [aux_sym_preproc_if_token2] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2687), + [aux_sym_preproc_elifdef_token1] = ACTIONS(251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(251), + [sym_preproc_directive] = ACTIONS(2689), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(2699), + [anon_sym_typedef] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(2719), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(2721), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_static_assert] = ACTIONS(2727), + }, + [251] = { + [sym_preproc_def] = STATE(453), + [sym_preproc_function_def] = STATE(453), + [sym_preproc_call] = STATE(453), + [sym_preproc_elifdef] = STATE(8037), + [sym_preproc_if_in_field_declaration_list] = STATE(453), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(453), + [sym_preproc_else_in_field_declaration_list] = STATE(8037), + [sym_preproc_elif_in_field_declaration_list] = STATE(8037), + [sym_type_definition] = STATE(453), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5176), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5750), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(453), + [sym_field_declaration] = STATE(453), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1790), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(453), + [sym_operator_cast] = STATE(6091), + [sym_inline_method_definition] = STATE(453), + [sym__constructor_specifiers] = STATE(1790), + [sym_operator_cast_definition] = STATE(453), + [sym_operator_cast_declaration] = STATE(453), + [sym_constructor_or_destructor_definition] = STATE(453), + [sym_constructor_or_destructor_declaration] = STATE(453), + [sym_friend_declaration] = STATE(453), + [sym_access_specifier] = STATE(7399), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(453), + [sym_alias_declaration] = STATE(453), + [sym_static_assert_declaration] = STATE(453), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6091), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(453), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(2677), + [aux_sym_preproc_if_token1] = ACTIONS(2679), + [aux_sym_preproc_if_token2] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2687), + [aux_sym_preproc_elifdef_token1] = ACTIONS(251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(251), + [sym_preproc_directive] = ACTIONS(2689), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(2699), + [anon_sym_typedef] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(2719), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(2721), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_static_assert] = ACTIONS(2727), + }, + [252] = { + [sym_preproc_def] = STATE(453), + [sym_preproc_function_def] = STATE(453), + [sym_preproc_call] = STATE(453), + [sym_preproc_elifdef] = STATE(7298), + [sym_preproc_if_in_field_declaration_list] = STATE(453), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(453), + [sym_preproc_else_in_field_declaration_list] = STATE(7298), + [sym_preproc_elif_in_field_declaration_list] = STATE(7298), + [sym_type_definition] = STATE(453), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5176), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5750), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(453), + [sym_field_declaration] = STATE(453), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1790), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(453), + [sym_operator_cast] = STATE(6091), + [sym_inline_method_definition] = STATE(453), + [sym__constructor_specifiers] = STATE(1790), + [sym_operator_cast_definition] = STATE(453), + [sym_operator_cast_declaration] = STATE(453), + [sym_constructor_or_destructor_definition] = STATE(453), + [sym_constructor_or_destructor_declaration] = STATE(453), + [sym_friend_declaration] = STATE(453), + [sym_access_specifier] = STATE(7399), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(453), + [sym_alias_declaration] = STATE(453), + [sym_static_assert_declaration] = STATE(453), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6091), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(453), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(2677), + [aux_sym_preproc_if_token1] = ACTIONS(2679), + [aux_sym_preproc_if_token2] = ACTIONS(2733), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2687), + [aux_sym_preproc_elifdef_token1] = ACTIONS(251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(251), + [sym_preproc_directive] = ACTIONS(2689), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(2699), + [anon_sym_typedef] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(2719), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(2721), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_static_assert] = ACTIONS(2727), + }, + [253] = { + [sym_else_clause] = STATE(298), + [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_extern] = 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___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_mutable] = ACTIONS(2735), + [anon_sym_constinit] = ACTIONS(2735), + [anon_sym_consteval] = 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(2739), + [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_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), + [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_virtual] = ACTIONS(2735), + [anon_sym_alignas] = 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_using] = 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), + }, + [254] = { + [sym_preproc_def] = STATE(262), + [sym_preproc_function_def] = STATE(262), + [sym_preproc_call] = STATE(262), + [sym_preproc_elifdef] = STATE(7289), + [sym_preproc_if_in_field_declaration_list] = STATE(262), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(262), + [sym_preproc_else_in_field_declaration_list] = STATE(7289), + [sym_preproc_elif_in_field_declaration_list] = STATE(7289), + [sym_type_definition] = STATE(262), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5176), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5750), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(262), + [sym_field_declaration] = STATE(262), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1790), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(262), + [sym_operator_cast] = STATE(6091), + [sym_inline_method_definition] = STATE(262), + [sym__constructor_specifiers] = STATE(1790), + [sym_operator_cast_definition] = STATE(262), + [sym_operator_cast_declaration] = STATE(262), + [sym_constructor_or_destructor_definition] = STATE(262), + [sym_constructor_or_destructor_declaration] = STATE(262), + [sym_friend_declaration] = STATE(262), + [sym_access_specifier] = STATE(7399), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(262), + [sym_alias_declaration] = STATE(262), + [sym_static_assert_declaration] = STATE(262), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6091), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(262), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(2677), + [aux_sym_preproc_if_token1] = ACTIONS(2679), + [aux_sym_preproc_if_token2] = ACTIONS(2741), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2687), + [aux_sym_preproc_elifdef_token1] = ACTIONS(251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(251), + [sym_preproc_directive] = ACTIONS(2689), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(2699), + [anon_sym_typedef] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(2719), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(2721), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_static_assert] = ACTIONS(2727), + }, + [255] = { + [sym_catch_clause] = STATE(255), + [aux_sym_constructor_try_statement_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(2218), + [aux_sym_preproc_include_token1] = ACTIONS(2218), + [aux_sym_preproc_def_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token2] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2218), + [aux_sym_preproc_else_token1] = ACTIONS(2218), + [aux_sym_preproc_elif_token1] = ACTIONS(2218), + [sym_preproc_directive] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_PLUS] = ACTIONS(2218), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP_AMP] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2218), + [anon_sym_typedef] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym___attribute__] = ACTIONS(2218), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2220), + [anon_sym___declspec] = ACTIONS(2218), + [anon_sym___based] = ACTIONS(2218), + [anon_sym___cdecl] = ACTIONS(2218), + [anon_sym___clrcall] = ACTIONS(2218), + [anon_sym___stdcall] = ACTIONS(2218), + [anon_sym___fastcall] = ACTIONS(2218), + [anon_sym___thiscall] = ACTIONS(2218), + [anon_sym___vectorcall] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_signed] = ACTIONS(2218), + [anon_sym_unsigned] = ACTIONS(2218), + [anon_sym_long] = ACTIONS(2218), + [anon_sym_short] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_inline] = ACTIONS(2218), + [anon_sym___inline] = ACTIONS(2218), + [anon_sym___inline__] = ACTIONS(2218), + [anon_sym___forceinline] = ACTIONS(2218), + [anon_sym_thread_local] = ACTIONS(2218), + [anon_sym___thread] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_constexpr] = ACTIONS(2218), + [anon_sym_volatile] = ACTIONS(2218), + [anon_sym_restrict] = ACTIONS(2218), + [anon_sym___restrict__] = ACTIONS(2218), + [anon_sym__Atomic] = ACTIONS(2218), + [anon_sym__Noreturn] = ACTIONS(2218), + [anon_sym_noreturn] = ACTIONS(2218), + [anon_sym_mutable] = ACTIONS(2218), + [anon_sym_constinit] = ACTIONS(2218), + [anon_sym_consteval] = ACTIONS(2218), + [sym_primitive_type] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_class] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_else] = ACTIONS(2218), + [anon_sym_switch] = ACTIONS(2218), + [anon_sym_case] = ACTIONS(2218), + [anon_sym_default] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_do] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_goto] = ACTIONS(2218), + [anon_sym_not] = ACTIONS(2218), + [anon_sym_compl] = ACTIONS(2218), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(2218), + [anon_sym___alignof__] = ACTIONS(2218), + [anon_sym___alignof] = ACTIONS(2218), + [anon_sym__alignof] = ACTIONS(2218), + [anon_sym_alignof] = ACTIONS(2218), + [anon_sym__Alignof] = ACTIONS(2218), + [anon_sym_offsetof] = ACTIONS(2218), + [anon_sym__Generic] = ACTIONS(2218), + [anon_sym_asm] = ACTIONS(2218), + [anon_sym___asm__] = ACTIONS(2218), + [sym_number_literal] = ACTIONS(2220), + [anon_sym_L_SQUOTE] = ACTIONS(2220), + [anon_sym_u_SQUOTE] = ACTIONS(2220), + [anon_sym_U_SQUOTE] = ACTIONS(2220), + [anon_sym_u8_SQUOTE] = ACTIONS(2220), + [anon_sym_SQUOTE] = ACTIONS(2220), + [anon_sym_L_DQUOTE] = ACTIONS(2220), + [anon_sym_u_DQUOTE] = ACTIONS(2220), + [anon_sym_U_DQUOTE] = ACTIONS(2220), + [anon_sym_u8_DQUOTE] = ACTIONS(2220), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_true] = ACTIONS(2218), + [sym_false] = ACTIONS(2218), + [anon_sym_NULL] = ACTIONS(2218), + [anon_sym_nullptr] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2218), + [anon_sym_virtual] = ACTIONS(2218), + [anon_sym_alignas] = ACTIONS(2218), + [anon_sym_explicit] = ACTIONS(2218), + [anon_sym_typename] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_operator] = ACTIONS(2218), + [anon_sym_try] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(2218), + [anon_sym_throw] = ACTIONS(2218), + [anon_sym_namespace] = ACTIONS(2218), + [anon_sym_using] = ACTIONS(2218), + [anon_sym_static_assert] = ACTIONS(2218), + [anon_sym_concept] = ACTIONS(2218), + [anon_sym_co_return] = ACTIONS(2218), + [anon_sym_co_yield] = ACTIONS(2218), + [anon_sym_catch] = ACTIONS(2743), + [anon_sym_R_DQUOTE] = ACTIONS(2220), + [anon_sym_LR_DQUOTE] = ACTIONS(2220), + [anon_sym_uR_DQUOTE] = ACTIONS(2220), + [anon_sym_UR_DQUOTE] = ACTIONS(2220), + [anon_sym_u8R_DQUOTE] = ACTIONS(2220), + [anon_sym_co_await] = ACTIONS(2218), + [anon_sym_new] = ACTIONS(2218), + [anon_sym_requires] = ACTIONS(2218), + [sym_this] = ACTIONS(2218), + }, + [256] = { + [sym_preproc_def] = STATE(251), + [sym_preproc_function_def] = STATE(251), + [sym_preproc_call] = STATE(251), + [sym_preproc_elifdef] = STATE(7772), + [sym_preproc_if_in_field_declaration_list] = STATE(251), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(251), + [sym_preproc_else_in_field_declaration_list] = STATE(7772), + [sym_preproc_elif_in_field_declaration_list] = STATE(7772), + [sym_type_definition] = STATE(251), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5176), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5750), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(251), + [sym_field_declaration] = STATE(251), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1790), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(251), + [sym_operator_cast] = STATE(6091), + [sym_inline_method_definition] = STATE(251), + [sym__constructor_specifiers] = STATE(1790), + [sym_operator_cast_definition] = STATE(251), + [sym_operator_cast_declaration] = STATE(251), + [sym_constructor_or_destructor_definition] = STATE(251), + [sym_constructor_or_destructor_declaration] = STATE(251), + [sym_friend_declaration] = STATE(251), + [sym_access_specifier] = STATE(7399), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(251), + [sym_alias_declaration] = STATE(251), + [sym_static_assert_declaration] = STATE(251), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6091), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(251), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(2677), + [aux_sym_preproc_if_token1] = ACTIONS(2679), + [aux_sym_preproc_if_token2] = ACTIONS(2746), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2687), + [aux_sym_preproc_elifdef_token1] = ACTIONS(251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(251), + [sym_preproc_directive] = ACTIONS(2689), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(2699), + [anon_sym_typedef] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(2719), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(2721), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_static_assert] = ACTIONS(2727), + }, + [257] = { + [sym_catch_clause] = STATE(255), + [aux_sym_constructor_try_statement_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(2212), + [aux_sym_preproc_include_token1] = ACTIONS(2212), + [aux_sym_preproc_def_token1] = ACTIONS(2212), + [aux_sym_preproc_if_token1] = ACTIONS(2212), + [aux_sym_preproc_if_token2] = ACTIONS(2212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2212), + [aux_sym_preproc_else_token1] = ACTIONS(2212), + [aux_sym_preproc_elif_token1] = ACTIONS(2212), + [sym_preproc_directive] = ACTIONS(2212), + [anon_sym_LPAREN2] = ACTIONS(2214), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym___extension__] = ACTIONS(2212), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_extern] = ACTIONS(2212), + [anon_sym___attribute__] = ACTIONS(2212), + [anon_sym_COLON_COLON] = ACTIONS(2214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [anon_sym___declspec] = ACTIONS(2212), + [anon_sym___based] = ACTIONS(2212), + [anon_sym___cdecl] = ACTIONS(2212), + [anon_sym___clrcall] = ACTIONS(2212), + [anon_sym___stdcall] = ACTIONS(2212), + [anon_sym___fastcall] = ACTIONS(2212), + [anon_sym___thiscall] = ACTIONS(2212), + [anon_sym___vectorcall] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_signed] = ACTIONS(2212), + [anon_sym_unsigned] = ACTIONS(2212), + [anon_sym_long] = ACTIONS(2212), + [anon_sym_short] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_register] = ACTIONS(2212), + [anon_sym_inline] = ACTIONS(2212), + [anon_sym___inline] = ACTIONS(2212), + [anon_sym___inline__] = ACTIONS(2212), + [anon_sym___forceinline] = ACTIONS(2212), + [anon_sym_thread_local] = ACTIONS(2212), + [anon_sym___thread] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_constexpr] = ACTIONS(2212), + [anon_sym_volatile] = ACTIONS(2212), + [anon_sym_restrict] = ACTIONS(2212), + [anon_sym___restrict__] = ACTIONS(2212), + [anon_sym__Atomic] = ACTIONS(2212), + [anon_sym__Noreturn] = ACTIONS(2212), + [anon_sym_noreturn] = ACTIONS(2212), + [anon_sym_mutable] = ACTIONS(2212), + [anon_sym_constinit] = ACTIONS(2212), + [anon_sym_consteval] = ACTIONS(2212), + [sym_primitive_type] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_struct] = ACTIONS(2212), + [anon_sym_union] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_else] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_case] = ACTIONS(2212), + [anon_sym_default] = ACTIONS(2212), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_goto] = ACTIONS(2212), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2214), + [anon_sym_PLUS_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2212), + [anon_sym___alignof__] = ACTIONS(2212), + [anon_sym___alignof] = ACTIONS(2212), + [anon_sym__alignof] = ACTIONS(2212), + [anon_sym_alignof] = ACTIONS(2212), + [anon_sym__Alignof] = ACTIONS(2212), + [anon_sym_offsetof] = ACTIONS(2212), + [anon_sym__Generic] = ACTIONS(2212), + [anon_sym_asm] = ACTIONS(2212), + [anon_sym___asm__] = ACTIONS(2212), + [sym_number_literal] = ACTIONS(2214), + [anon_sym_L_SQUOTE] = ACTIONS(2214), + [anon_sym_u_SQUOTE] = ACTIONS(2214), + [anon_sym_U_SQUOTE] = ACTIONS(2214), + [anon_sym_u8_SQUOTE] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2214), + [anon_sym_L_DQUOTE] = ACTIONS(2214), + [anon_sym_u_DQUOTE] = ACTIONS(2214), + [anon_sym_U_DQUOTE] = ACTIONS(2214), + [anon_sym_u8_DQUOTE] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2214), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [anon_sym_NULL] = ACTIONS(2212), + [anon_sym_nullptr] = ACTIONS(2212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2212), + [anon_sym_decltype] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(2212), + [anon_sym_alignas] = ACTIONS(2212), + [anon_sym_explicit] = ACTIONS(2212), + [anon_sym_typename] = ACTIONS(2212), + [anon_sym_template] = ACTIONS(2212), + [anon_sym_operator] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_static_assert] = ACTIONS(2212), + [anon_sym_concept] = ACTIONS(2212), + [anon_sym_co_return] = ACTIONS(2212), + [anon_sym_co_yield] = ACTIONS(2212), + [anon_sym_catch] = ACTIONS(2748), + [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(2212), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_requires] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), + }, + [258] = { + [sym_preproc_def] = STATE(249), + [sym_preproc_function_def] = STATE(249), + [sym_preproc_call] = STATE(249), + [sym_preproc_elifdef] = STATE(7435), + [sym_preproc_if_in_field_declaration_list] = STATE(249), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(249), + [sym_preproc_else_in_field_declaration_list] = STATE(7435), + [sym_preproc_elif_in_field_declaration_list] = STATE(7435), + [sym_type_definition] = STATE(249), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5176), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5750), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(249), + [sym_field_declaration] = STATE(249), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1790), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(249), + [sym_operator_cast] = STATE(6091), + [sym_inline_method_definition] = STATE(249), + [sym__constructor_specifiers] = STATE(1790), + [sym_operator_cast_definition] = STATE(249), + [sym_operator_cast_declaration] = STATE(249), + [sym_constructor_or_destructor_definition] = STATE(249), + [sym_constructor_or_destructor_declaration] = STATE(249), + [sym_friend_declaration] = STATE(249), + [sym_access_specifier] = STATE(7399), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(249), + [sym_alias_declaration] = STATE(249), + [sym_static_assert_declaration] = STATE(249), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6091), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(249), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(2677), + [aux_sym_preproc_if_token1] = ACTIONS(2679), + [aux_sym_preproc_if_token2] = ACTIONS(2750), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2687), + [aux_sym_preproc_elifdef_token1] = ACTIONS(251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(251), + [sym_preproc_directive] = ACTIONS(2689), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(2699), + [anon_sym_typedef] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(2719), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(2721), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_static_assert] = ACTIONS(2727), + }, + [259] = { + [sym_identifier] = ACTIONS(2134), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token2] = ACTIONS(2134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), + [aux_sym_preproc_else_token1] = ACTIONS(2134), + [aux_sym_preproc_elif_token1] = ACTIONS(2134), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2134), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2134), + [sym_preproc_directive] = ACTIONS(2134), + [anon_sym_LPAREN2] = ACTIONS(2132), + [anon_sym_BANG] = ACTIONS(2132), + [anon_sym_TILDE] = ACTIONS(2132), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym___extension__] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym___attribute__] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2134), + [anon_sym___based] = ACTIONS(2134), + [anon_sym___cdecl] = ACTIONS(2134), + [anon_sym___clrcall] = ACTIONS(2134), + [anon_sym___stdcall] = ACTIONS(2134), + [anon_sym___fastcall] = ACTIONS(2134), + [anon_sym___thiscall] = ACTIONS(2134), + [anon_sym___vectorcall] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2134), + [anon_sym_unsigned] = ACTIONS(2134), + [anon_sym_long] = ACTIONS(2134), + [anon_sym_short] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_register] = ACTIONS(2134), + [anon_sym_inline] = ACTIONS(2134), + [anon_sym___inline] = ACTIONS(2134), + [anon_sym___inline__] = ACTIONS(2134), + [anon_sym___forceinline] = ACTIONS(2134), + [anon_sym_thread_local] = ACTIONS(2134), + [anon_sym___thread] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_constexpr] = ACTIONS(2134), + [anon_sym_volatile] = ACTIONS(2134), + [anon_sym_restrict] = ACTIONS(2134), + [anon_sym___restrict__] = ACTIONS(2134), + [anon_sym__Atomic] = ACTIONS(2134), + [anon_sym__Noreturn] = ACTIONS(2134), + [anon_sym_noreturn] = ACTIONS(2134), + [anon_sym_mutable] = ACTIONS(2134), + [anon_sym_constinit] = ACTIONS(2134), + [anon_sym_consteval] = ACTIONS(2134), + [sym_primitive_type] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_struct] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_else] = ACTIONS(2134), + [anon_sym_switch] = ACTIONS(2134), + [anon_sym_case] = ACTIONS(2134), + [anon_sym_default] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2134), + [anon_sym_not] = ACTIONS(2134), + [anon_sym_compl] = ACTIONS(2134), + [anon_sym_DASH_DASH] = ACTIONS(2132), + [anon_sym_PLUS_PLUS] = ACTIONS(2132), + [anon_sym_sizeof] = ACTIONS(2134), + [anon_sym___alignof__] = ACTIONS(2134), + [anon_sym___alignof] = ACTIONS(2134), + [anon_sym__alignof] = ACTIONS(2134), + [anon_sym_alignof] = ACTIONS(2134), + [anon_sym__Alignof] = ACTIONS(2134), + [anon_sym_offsetof] = ACTIONS(2134), + [anon_sym__Generic] = ACTIONS(2134), + [anon_sym_asm] = ACTIONS(2134), + [anon_sym___asm__] = ACTIONS(2134), + [sym_number_literal] = ACTIONS(2132), + [anon_sym_L_SQUOTE] = ACTIONS(2132), + [anon_sym_u_SQUOTE] = ACTIONS(2132), + [anon_sym_U_SQUOTE] = ACTIONS(2132), + [anon_sym_u8_SQUOTE] = ACTIONS(2132), + [anon_sym_SQUOTE] = ACTIONS(2132), + [anon_sym_L_DQUOTE] = ACTIONS(2132), + [anon_sym_u_DQUOTE] = ACTIONS(2132), + [anon_sym_U_DQUOTE] = ACTIONS(2132), + [anon_sym_u8_DQUOTE] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(2132), + [sym_true] = ACTIONS(2134), + [sym_false] = ACTIONS(2134), + [anon_sym_NULL] = ACTIONS(2134), + [anon_sym_nullptr] = ACTIONS(2134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2134), + [anon_sym_decltype] = ACTIONS(2134), + [anon_sym_virtual] = ACTIONS(2134), + [anon_sym_alignas] = ACTIONS(2134), + [anon_sym_explicit] = ACTIONS(2134), + [anon_sym_typename] = ACTIONS(2134), + [anon_sym_template] = ACTIONS(2134), + [anon_sym_operator] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_delete] = ACTIONS(2134), + [anon_sym_throw] = ACTIONS(2134), + [anon_sym_namespace] = ACTIONS(2134), + [anon_sym_using] = ACTIONS(2134), + [anon_sym_static_assert] = ACTIONS(2134), + [anon_sym_concept] = ACTIONS(2134), + [anon_sym_co_return] = ACTIONS(2134), + [anon_sym_co_yield] = ACTIONS(2134), + [anon_sym_catch] = ACTIONS(2134), + [anon_sym_R_DQUOTE] = ACTIONS(2132), + [anon_sym_LR_DQUOTE] = ACTIONS(2132), + [anon_sym_uR_DQUOTE] = ACTIONS(2132), + [anon_sym_UR_DQUOTE] = ACTIONS(2132), + [anon_sym_u8R_DQUOTE] = ACTIONS(2132), + [anon_sym_co_await] = ACTIONS(2134), + [anon_sym_new] = ACTIONS(2134), + [anon_sym_requires] = ACTIONS(2134), + [sym_this] = ACTIONS(2134), + }, + [260] = { + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_include_token1] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token2] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [aux_sym_preproc_else_token1] = ACTIONS(2138), + [aux_sym_preproc_elif_token1] = ACTIONS(2138), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym___cdecl] = ACTIONS(2138), + [anon_sym___clrcall] = ACTIONS(2138), + [anon_sym___stdcall] = ACTIONS(2138), + [anon_sym___fastcall] = ACTIONS(2138), + [anon_sym___thiscall] = ACTIONS(2138), + [anon_sym___vectorcall] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_goto] = ACTIONS(2138), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_compl] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_PLUS_PLUS] = ACTIONS(2136), + [anon_sym_sizeof] = ACTIONS(2138), + [anon_sym___alignof__] = ACTIONS(2138), + [anon_sym___alignof] = ACTIONS(2138), + [anon_sym__alignof] = ACTIONS(2138), + [anon_sym_alignof] = ACTIONS(2138), + [anon_sym__Alignof] = ACTIONS(2138), + [anon_sym_offsetof] = ACTIONS(2138), + [anon_sym__Generic] = ACTIONS(2138), + [anon_sym_asm] = ACTIONS(2138), + [anon_sym___asm__] = ACTIONS(2138), + [sym_number_literal] = ACTIONS(2136), + [anon_sym_L_SQUOTE] = ACTIONS(2136), + [anon_sym_u_SQUOTE] = ACTIONS(2136), + [anon_sym_U_SQUOTE] = ACTIONS(2136), + [anon_sym_u8_SQUOTE] = ACTIONS(2136), + [anon_sym_SQUOTE] = ACTIONS(2136), + [anon_sym_L_DQUOTE] = ACTIONS(2136), + [anon_sym_u_DQUOTE] = ACTIONS(2136), + [anon_sym_U_DQUOTE] = ACTIONS(2136), + [anon_sym_u8_DQUOTE] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2136), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [anon_sym_NULL] = ACTIONS(2138), + [anon_sym_nullptr] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), + [anon_sym_concept] = ACTIONS(2138), + [anon_sym_co_return] = ACTIONS(2138), + [anon_sym_co_yield] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + [anon_sym_R_DQUOTE] = ACTIONS(2136), + [anon_sym_LR_DQUOTE] = ACTIONS(2136), + [anon_sym_uR_DQUOTE] = ACTIONS(2136), + [anon_sym_UR_DQUOTE] = ACTIONS(2136), + [anon_sym_u8R_DQUOTE] = ACTIONS(2136), + [anon_sym_co_await] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_requires] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + }, + [261] = { + [sym_identifier] = ACTIONS(2752), + [aux_sym_preproc_include_token1] = ACTIONS(2752), + [aux_sym_preproc_def_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token2] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2752), + [aux_sym_preproc_else_token1] = ACTIONS(2752), + [aux_sym_preproc_elif_token1] = ACTIONS(2752), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2752), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2752), + [sym_preproc_directive] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_BANG] = ACTIONS(2754), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym___extension__] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym___attribute__] = ACTIONS(2752), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2754), + [anon_sym___declspec] = ACTIONS(2752), + [anon_sym___based] = ACTIONS(2752), + [anon_sym___cdecl] = ACTIONS(2752), + [anon_sym___clrcall] = ACTIONS(2752), + [anon_sym___stdcall] = ACTIONS(2752), + [anon_sym___fastcall] = ACTIONS(2752), + [anon_sym___thiscall] = ACTIONS(2752), + [anon_sym___vectorcall] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_signed] = ACTIONS(2752), + [anon_sym_unsigned] = ACTIONS(2752), + [anon_sym_long] = ACTIONS(2752), + [anon_sym_short] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_register] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym___inline] = ACTIONS(2752), + [anon_sym___inline__] = ACTIONS(2752), + [anon_sym___forceinline] = ACTIONS(2752), + [anon_sym_thread_local] = ACTIONS(2752), + [anon_sym___thread] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_constexpr] = ACTIONS(2752), + [anon_sym_volatile] = ACTIONS(2752), + [anon_sym_restrict] = ACTIONS(2752), + [anon_sym___restrict__] = ACTIONS(2752), + [anon_sym__Atomic] = ACTIONS(2752), + [anon_sym__Noreturn] = ACTIONS(2752), + [anon_sym_noreturn] = ACTIONS(2752), + [anon_sym_mutable] = ACTIONS(2752), + [anon_sym_constinit] = ACTIONS(2752), + [anon_sym_consteval] = ACTIONS(2752), + [sym_primitive_type] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_class] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_else] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2752), + [anon_sym_case] = ACTIONS(2752), + [anon_sym_default] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_goto] = ACTIONS(2752), + [anon_sym_not] = ACTIONS(2752), + [anon_sym_compl] = ACTIONS(2752), + [anon_sym_DASH_DASH] = ACTIONS(2754), + [anon_sym_PLUS_PLUS] = ACTIONS(2754), + [anon_sym_sizeof] = ACTIONS(2752), + [anon_sym___alignof__] = ACTIONS(2752), + [anon_sym___alignof] = ACTIONS(2752), + [anon_sym__alignof] = ACTIONS(2752), + [anon_sym_alignof] = ACTIONS(2752), + [anon_sym__Alignof] = ACTIONS(2752), + [anon_sym_offsetof] = ACTIONS(2752), + [anon_sym__Generic] = ACTIONS(2752), + [anon_sym_asm] = ACTIONS(2752), + [anon_sym___asm__] = ACTIONS(2752), + [sym_number_literal] = ACTIONS(2754), + [anon_sym_L_SQUOTE] = ACTIONS(2754), + [anon_sym_u_SQUOTE] = ACTIONS(2754), + [anon_sym_U_SQUOTE] = ACTIONS(2754), + [anon_sym_u8_SQUOTE] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_L_DQUOTE] = ACTIONS(2754), + [anon_sym_u_DQUOTE] = ACTIONS(2754), + [anon_sym_U_DQUOTE] = ACTIONS(2754), + [anon_sym_u8_DQUOTE] = ACTIONS(2754), + [anon_sym_DQUOTE] = ACTIONS(2754), + [sym_true] = ACTIONS(2752), + [sym_false] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_nullptr] = ACTIONS(2752), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2752), + [anon_sym_decltype] = ACTIONS(2752), + [anon_sym_virtual] = ACTIONS(2752), + [anon_sym_alignas] = ACTIONS(2752), + [anon_sym_explicit] = ACTIONS(2752), + [anon_sym_typename] = ACTIONS(2752), + [anon_sym_template] = ACTIONS(2752), + [anon_sym_operator] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_delete] = ACTIONS(2752), + [anon_sym_throw] = ACTIONS(2752), + [anon_sym_namespace] = ACTIONS(2752), + [anon_sym_using] = ACTIONS(2752), + [anon_sym_static_assert] = ACTIONS(2752), + [anon_sym_concept] = ACTIONS(2752), + [anon_sym_co_return] = ACTIONS(2752), + [anon_sym_co_yield] = ACTIONS(2752), + [anon_sym_catch] = ACTIONS(2752), + [anon_sym_R_DQUOTE] = ACTIONS(2754), + [anon_sym_LR_DQUOTE] = ACTIONS(2754), + [anon_sym_uR_DQUOTE] = ACTIONS(2754), + [anon_sym_UR_DQUOTE] = ACTIONS(2754), + [anon_sym_u8R_DQUOTE] = ACTIONS(2754), + [anon_sym_co_await] = ACTIONS(2752), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_requires] = ACTIONS(2752), + [sym_this] = ACTIONS(2752), + }, + [262] = { + [sym_preproc_def] = STATE(453), + [sym_preproc_function_def] = STATE(453), + [sym_preproc_call] = STATE(453), + [sym_preproc_elifdef] = STATE(7281), + [sym_preproc_if_in_field_declaration_list] = STATE(453), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(453), + [sym_preproc_else_in_field_declaration_list] = STATE(7281), + [sym_preproc_elif_in_field_declaration_list] = STATE(7281), + [sym_type_definition] = STATE(453), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5176), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5750), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(453), + [sym_field_declaration] = STATE(453), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1790), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(453), + [sym_operator_cast] = STATE(6091), + [sym_inline_method_definition] = STATE(453), + [sym__constructor_specifiers] = STATE(1790), + [sym_operator_cast_definition] = STATE(453), + [sym_operator_cast_declaration] = STATE(453), + [sym_constructor_or_destructor_definition] = STATE(453), + [sym_constructor_or_destructor_declaration] = STATE(453), + [sym_friend_declaration] = STATE(453), + [sym_access_specifier] = STATE(7399), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(453), + [sym_alias_declaration] = STATE(453), + [sym_static_assert_declaration] = STATE(453), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6091), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(453), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(2677), + [aux_sym_preproc_if_token1] = ACTIONS(2679), + [aux_sym_preproc_if_token2] = ACTIONS(2756), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2687), + [aux_sym_preproc_elifdef_token1] = ACTIONS(251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(251), + [sym_preproc_directive] = ACTIONS(2689), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(2699), + [anon_sym_typedef] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(2719), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(2721), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_static_assert] = ACTIONS(2727), + }, + [263] = { + [sym_else_clause] = STATE(331), + [sym_identifier] = ACTIONS(2758), + [aux_sym_preproc_include_token1] = ACTIONS(2758), + [aux_sym_preproc_def_token1] = ACTIONS(2758), + [aux_sym_preproc_if_token1] = ACTIONS(2758), + [aux_sym_preproc_if_token2] = ACTIONS(2758), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2758), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2758), + [aux_sym_preproc_else_token1] = ACTIONS(2758), + [aux_sym_preproc_elif_token1] = ACTIONS(2758), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2758), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2758), + [sym_preproc_directive] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2760), + [anon_sym_BANG] = ACTIONS(2760), + [anon_sym_TILDE] = ACTIONS(2760), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_STAR] = ACTIONS(2760), + [anon_sym_AMP_AMP] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym___extension__] = ACTIONS(2758), + [anon_sym_typedef] = ACTIONS(2758), + [anon_sym_extern] = ACTIONS(2758), + [anon_sym___attribute__] = ACTIONS(2758), + [anon_sym_COLON_COLON] = ACTIONS(2760), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2760), + [anon_sym___declspec] = ACTIONS(2758), + [anon_sym___based] = ACTIONS(2758), + [anon_sym___cdecl] = ACTIONS(2758), + [anon_sym___clrcall] = ACTIONS(2758), + [anon_sym___stdcall] = ACTIONS(2758), + [anon_sym___fastcall] = ACTIONS(2758), + [anon_sym___thiscall] = ACTIONS(2758), + [anon_sym___vectorcall] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2760), + [anon_sym_signed] = ACTIONS(2758), + [anon_sym_unsigned] = ACTIONS(2758), + [anon_sym_long] = ACTIONS(2758), + [anon_sym_short] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_static] = ACTIONS(2758), + [anon_sym_register] = ACTIONS(2758), + [anon_sym_inline] = ACTIONS(2758), + [anon_sym___inline] = ACTIONS(2758), + [anon_sym___inline__] = ACTIONS(2758), + [anon_sym___forceinline] = ACTIONS(2758), + [anon_sym_thread_local] = ACTIONS(2758), + [anon_sym___thread] = ACTIONS(2758), + [anon_sym_const] = ACTIONS(2758), + [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_mutable] = ACTIONS(2758), + [anon_sym_constinit] = ACTIONS(2758), + [anon_sym_consteval] = ACTIONS(2758), + [sym_primitive_type] = ACTIONS(2758), + [anon_sym_enum] = ACTIONS(2758), + [anon_sym_class] = ACTIONS(2758), + [anon_sym_struct] = ACTIONS(2758), + [anon_sym_union] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_switch] = ACTIONS(2758), + [anon_sym_case] = ACTIONS(2758), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_break] = ACTIONS(2758), + [anon_sym_continue] = ACTIONS(2758), + [anon_sym_goto] = ACTIONS(2758), + [anon_sym_not] = ACTIONS(2758), + [anon_sym_compl] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2760), + [anon_sym_PLUS_PLUS] = ACTIONS(2760), + [anon_sym_sizeof] = ACTIONS(2758), + [anon_sym___alignof__] = ACTIONS(2758), + [anon_sym___alignof] = ACTIONS(2758), + [anon_sym__alignof] = ACTIONS(2758), + [anon_sym_alignof] = ACTIONS(2758), + [anon_sym__Alignof] = ACTIONS(2758), + [anon_sym_offsetof] = ACTIONS(2758), + [anon_sym__Generic] = ACTIONS(2758), + [anon_sym_asm] = ACTIONS(2758), + [anon_sym___asm__] = ACTIONS(2758), + [sym_number_literal] = ACTIONS(2760), + [anon_sym_L_SQUOTE] = ACTIONS(2760), + [anon_sym_u_SQUOTE] = ACTIONS(2760), + [anon_sym_U_SQUOTE] = ACTIONS(2760), + [anon_sym_u8_SQUOTE] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_L_DQUOTE] = ACTIONS(2760), + [anon_sym_u_DQUOTE] = ACTIONS(2760), + [anon_sym_U_DQUOTE] = ACTIONS(2760), + [anon_sym_u8_DQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2760), + [sym_true] = ACTIONS(2758), + [sym_false] = ACTIONS(2758), + [anon_sym_NULL] = ACTIONS(2758), + [anon_sym_nullptr] = ACTIONS(2758), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2758), + [anon_sym_decltype] = ACTIONS(2758), + [anon_sym_virtual] = ACTIONS(2758), + [anon_sym_alignas] = ACTIONS(2758), + [anon_sym_explicit] = ACTIONS(2758), + [anon_sym_typename] = ACTIONS(2758), + [anon_sym_template] = ACTIONS(2758), + [anon_sym_operator] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_delete] = ACTIONS(2758), + [anon_sym_throw] = ACTIONS(2758), + [anon_sym_namespace] = ACTIONS(2758), + [anon_sym_using] = ACTIONS(2758), + [anon_sym_static_assert] = ACTIONS(2758), + [anon_sym_concept] = ACTIONS(2758), + [anon_sym_co_return] = ACTIONS(2758), + [anon_sym_co_yield] = ACTIONS(2758), + [anon_sym_R_DQUOTE] = ACTIONS(2760), + [anon_sym_LR_DQUOTE] = ACTIONS(2760), + [anon_sym_uR_DQUOTE] = ACTIONS(2760), + [anon_sym_UR_DQUOTE] = ACTIONS(2760), + [anon_sym_u8R_DQUOTE] = ACTIONS(2760), + [anon_sym_co_await] = ACTIONS(2758), + [anon_sym_new] = ACTIONS(2758), + [anon_sym_requires] = ACTIONS(2758), + [sym_this] = ACTIONS(2758), + }, + [264] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), + }, + [265] = { + [sym_identifier] = ACTIONS(2766), + [aux_sym_preproc_include_token1] = ACTIONS(2766), + [aux_sym_preproc_def_token1] = ACTIONS(2766), + [aux_sym_preproc_if_token1] = ACTIONS(2766), + [aux_sym_preproc_if_token2] = ACTIONS(2766), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2766), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2766), + [aux_sym_preproc_else_token1] = ACTIONS(2766), + [aux_sym_preproc_elif_token1] = ACTIONS(2766), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2766), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2766), + [sym_preproc_directive] = ACTIONS(2766), + [anon_sym_LPAREN2] = ACTIONS(2768), + [anon_sym_BANG] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2766), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym___extension__] = ACTIONS(2766), + [anon_sym_typedef] = ACTIONS(2766), + [anon_sym_extern] = ACTIONS(2766), + [anon_sym___attribute__] = ACTIONS(2766), + [anon_sym_COLON_COLON] = ACTIONS(2768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2768), + [anon_sym___declspec] = ACTIONS(2766), + [anon_sym___based] = ACTIONS(2766), + [anon_sym___cdecl] = ACTIONS(2766), + [anon_sym___clrcall] = ACTIONS(2766), + [anon_sym___stdcall] = ACTIONS(2766), + [anon_sym___fastcall] = ACTIONS(2766), + [anon_sym___thiscall] = ACTIONS(2766), + [anon_sym___vectorcall] = ACTIONS(2766), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_signed] = ACTIONS(2766), + [anon_sym_unsigned] = ACTIONS(2766), + [anon_sym_long] = ACTIONS(2766), + [anon_sym_short] = ACTIONS(2766), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym_static] = ACTIONS(2766), + [anon_sym_register] = ACTIONS(2766), + [anon_sym_inline] = ACTIONS(2766), + [anon_sym___inline] = ACTIONS(2766), + [anon_sym___inline__] = ACTIONS(2766), + [anon_sym___forceinline] = ACTIONS(2766), + [anon_sym_thread_local] = ACTIONS(2766), + [anon_sym___thread] = ACTIONS(2766), + [anon_sym_const] = ACTIONS(2766), + [anon_sym_constexpr] = ACTIONS(2766), + [anon_sym_volatile] = ACTIONS(2766), + [anon_sym_restrict] = ACTIONS(2766), + [anon_sym___restrict__] = ACTIONS(2766), + [anon_sym__Atomic] = ACTIONS(2766), + [anon_sym__Noreturn] = ACTIONS(2766), + [anon_sym_noreturn] = ACTIONS(2766), + [anon_sym_mutable] = ACTIONS(2766), + [anon_sym_constinit] = ACTIONS(2766), + [anon_sym_consteval] = ACTIONS(2766), + [sym_primitive_type] = ACTIONS(2766), + [anon_sym_enum] = ACTIONS(2766), + [anon_sym_class] = ACTIONS(2766), + [anon_sym_struct] = ACTIONS(2766), + [anon_sym_union] = ACTIONS(2766), + [anon_sym_if] = ACTIONS(2766), + [anon_sym_else] = ACTIONS(2766), + [anon_sym_switch] = ACTIONS(2766), + [anon_sym_case] = ACTIONS(2766), + [anon_sym_default] = ACTIONS(2766), + [anon_sym_while] = ACTIONS(2766), + [anon_sym_do] = ACTIONS(2766), + [anon_sym_for] = ACTIONS(2766), + [anon_sym_return] = ACTIONS(2766), + [anon_sym_break] = ACTIONS(2766), + [anon_sym_continue] = ACTIONS(2766), + [anon_sym_goto] = ACTIONS(2766), + [anon_sym_not] = ACTIONS(2766), + [anon_sym_compl] = ACTIONS(2766), + [anon_sym_DASH_DASH] = ACTIONS(2768), + [anon_sym_PLUS_PLUS] = ACTIONS(2768), + [anon_sym_sizeof] = ACTIONS(2766), + [anon_sym___alignof__] = ACTIONS(2766), + [anon_sym___alignof] = ACTIONS(2766), + [anon_sym__alignof] = ACTIONS(2766), + [anon_sym_alignof] = ACTIONS(2766), + [anon_sym__Alignof] = ACTIONS(2766), + [anon_sym_offsetof] = ACTIONS(2766), + [anon_sym__Generic] = ACTIONS(2766), + [anon_sym_asm] = ACTIONS(2766), + [anon_sym___asm__] = ACTIONS(2766), + [sym_number_literal] = ACTIONS(2768), + [anon_sym_L_SQUOTE] = ACTIONS(2768), + [anon_sym_u_SQUOTE] = ACTIONS(2768), + [anon_sym_U_SQUOTE] = ACTIONS(2768), + [anon_sym_u8_SQUOTE] = ACTIONS(2768), + [anon_sym_SQUOTE] = ACTIONS(2768), + [anon_sym_L_DQUOTE] = ACTIONS(2768), + [anon_sym_u_DQUOTE] = ACTIONS(2768), + [anon_sym_U_DQUOTE] = ACTIONS(2768), + [anon_sym_u8_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [sym_true] = ACTIONS(2766), + [sym_false] = ACTIONS(2766), + [anon_sym_NULL] = ACTIONS(2766), + [anon_sym_nullptr] = ACTIONS(2766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2766), + [anon_sym_decltype] = ACTIONS(2766), + [anon_sym_virtual] = ACTIONS(2766), + [anon_sym_alignas] = ACTIONS(2766), + [anon_sym_explicit] = ACTIONS(2766), + [anon_sym_typename] = ACTIONS(2766), + [anon_sym_template] = ACTIONS(2766), + [anon_sym_operator] = ACTIONS(2766), + [anon_sym_try] = ACTIONS(2766), + [anon_sym_delete] = ACTIONS(2766), + [anon_sym_throw] = ACTIONS(2766), + [anon_sym_namespace] = ACTIONS(2766), + [anon_sym_using] = ACTIONS(2766), + [anon_sym_static_assert] = ACTIONS(2766), + [anon_sym_concept] = ACTIONS(2766), + [anon_sym_co_return] = ACTIONS(2766), + [anon_sym_co_yield] = ACTIONS(2766), + [anon_sym_R_DQUOTE] = ACTIONS(2768), + [anon_sym_LR_DQUOTE] = ACTIONS(2768), + [anon_sym_uR_DQUOTE] = ACTIONS(2768), + [anon_sym_UR_DQUOTE] = ACTIONS(2768), + [anon_sym_u8R_DQUOTE] = ACTIONS(2768), + [anon_sym_co_await] = ACTIONS(2766), + [anon_sym_new] = ACTIONS(2766), + [anon_sym_requires] = ACTIONS(2766), + [sym_this] = ACTIONS(2766), + }, + [266] = { + [sym_identifier] = ACTIONS(2770), + [aux_sym_preproc_include_token1] = ACTIONS(2770), + [aux_sym_preproc_def_token1] = ACTIONS(2770), + [aux_sym_preproc_if_token1] = ACTIONS(2770), + [aux_sym_preproc_if_token2] = ACTIONS(2770), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2770), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2770), + [aux_sym_preproc_else_token1] = ACTIONS(2770), + [aux_sym_preproc_elif_token1] = ACTIONS(2770), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2770), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2770), + [sym_preproc_directive] = ACTIONS(2770), + [anon_sym_LPAREN2] = ACTIONS(2772), + [anon_sym_BANG] = ACTIONS(2772), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2770), + [anon_sym_PLUS] = ACTIONS(2770), + [anon_sym_STAR] = ACTIONS(2772), + [anon_sym_AMP_AMP] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2770), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym___extension__] = ACTIONS(2770), + [anon_sym_typedef] = ACTIONS(2770), + [anon_sym_extern] = ACTIONS(2770), + [anon_sym___attribute__] = ACTIONS(2770), + [anon_sym_COLON_COLON] = ACTIONS(2772), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2772), + [anon_sym___declspec] = ACTIONS(2770), + [anon_sym___based] = ACTIONS(2770), + [anon_sym___cdecl] = ACTIONS(2770), + [anon_sym___clrcall] = ACTIONS(2770), + [anon_sym___stdcall] = ACTIONS(2770), + [anon_sym___fastcall] = ACTIONS(2770), + [anon_sym___thiscall] = ACTIONS(2770), + [anon_sym___vectorcall] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_signed] = ACTIONS(2770), + [anon_sym_unsigned] = ACTIONS(2770), + [anon_sym_long] = ACTIONS(2770), + [anon_sym_short] = ACTIONS(2770), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym_static] = ACTIONS(2770), + [anon_sym_register] = ACTIONS(2770), + [anon_sym_inline] = ACTIONS(2770), + [anon_sym___inline] = ACTIONS(2770), + [anon_sym___inline__] = ACTIONS(2770), + [anon_sym___forceinline] = ACTIONS(2770), + [anon_sym_thread_local] = ACTIONS(2770), + [anon_sym___thread] = ACTIONS(2770), + [anon_sym_const] = ACTIONS(2770), + [anon_sym_constexpr] = ACTIONS(2770), + [anon_sym_volatile] = ACTIONS(2770), + [anon_sym_restrict] = ACTIONS(2770), + [anon_sym___restrict__] = ACTIONS(2770), + [anon_sym__Atomic] = ACTIONS(2770), + [anon_sym__Noreturn] = ACTIONS(2770), + [anon_sym_noreturn] = ACTIONS(2770), + [anon_sym_mutable] = ACTIONS(2770), + [anon_sym_constinit] = ACTIONS(2770), + [anon_sym_consteval] = ACTIONS(2770), + [sym_primitive_type] = ACTIONS(2770), + [anon_sym_enum] = ACTIONS(2770), + [anon_sym_class] = ACTIONS(2770), + [anon_sym_struct] = ACTIONS(2770), + [anon_sym_union] = ACTIONS(2770), + [anon_sym_if] = ACTIONS(2770), + [anon_sym_else] = ACTIONS(2770), + [anon_sym_switch] = ACTIONS(2770), + [anon_sym_case] = ACTIONS(2770), + [anon_sym_default] = ACTIONS(2770), + [anon_sym_while] = ACTIONS(2770), + [anon_sym_do] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2770), + [anon_sym_return] = ACTIONS(2770), + [anon_sym_break] = ACTIONS(2770), + [anon_sym_continue] = ACTIONS(2770), + [anon_sym_goto] = ACTIONS(2770), + [anon_sym_not] = ACTIONS(2770), + [anon_sym_compl] = ACTIONS(2770), + [anon_sym_DASH_DASH] = ACTIONS(2772), + [anon_sym_PLUS_PLUS] = ACTIONS(2772), + [anon_sym_sizeof] = ACTIONS(2770), + [anon_sym___alignof__] = ACTIONS(2770), + [anon_sym___alignof] = ACTIONS(2770), + [anon_sym__alignof] = ACTIONS(2770), + [anon_sym_alignof] = ACTIONS(2770), + [anon_sym__Alignof] = ACTIONS(2770), + [anon_sym_offsetof] = ACTIONS(2770), + [anon_sym__Generic] = ACTIONS(2770), + [anon_sym_asm] = ACTIONS(2770), + [anon_sym___asm__] = ACTIONS(2770), + [sym_number_literal] = ACTIONS(2772), + [anon_sym_L_SQUOTE] = ACTIONS(2772), + [anon_sym_u_SQUOTE] = ACTIONS(2772), + [anon_sym_U_SQUOTE] = ACTIONS(2772), + [anon_sym_u8_SQUOTE] = ACTIONS(2772), + [anon_sym_SQUOTE] = ACTIONS(2772), + [anon_sym_L_DQUOTE] = ACTIONS(2772), + [anon_sym_u_DQUOTE] = ACTIONS(2772), + [anon_sym_U_DQUOTE] = ACTIONS(2772), + [anon_sym_u8_DQUOTE] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2772), + [sym_true] = ACTIONS(2770), + [sym_false] = ACTIONS(2770), + [anon_sym_NULL] = ACTIONS(2770), + [anon_sym_nullptr] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2770), + [anon_sym_decltype] = ACTIONS(2770), + [anon_sym_virtual] = ACTIONS(2770), + [anon_sym_alignas] = ACTIONS(2770), + [anon_sym_explicit] = ACTIONS(2770), + [anon_sym_typename] = ACTIONS(2770), + [anon_sym_template] = ACTIONS(2770), + [anon_sym_operator] = ACTIONS(2770), + [anon_sym_try] = ACTIONS(2770), + [anon_sym_delete] = ACTIONS(2770), + [anon_sym_throw] = ACTIONS(2770), + [anon_sym_namespace] = ACTIONS(2770), + [anon_sym_using] = ACTIONS(2770), + [anon_sym_static_assert] = ACTIONS(2770), + [anon_sym_concept] = ACTIONS(2770), + [anon_sym_co_return] = ACTIONS(2770), + [anon_sym_co_yield] = ACTIONS(2770), + [anon_sym_R_DQUOTE] = ACTIONS(2772), + [anon_sym_LR_DQUOTE] = ACTIONS(2772), + [anon_sym_uR_DQUOTE] = ACTIONS(2772), + [anon_sym_UR_DQUOTE] = ACTIONS(2772), + [anon_sym_u8R_DQUOTE] = ACTIONS(2772), + [anon_sym_co_await] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2770), + [anon_sym_requires] = ACTIONS(2770), + [sym_this] = ACTIONS(2770), + }, + [267] = { + [sym_identifier] = ACTIONS(2774), + [aux_sym_preproc_include_token1] = ACTIONS(2774), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token2] = ACTIONS(2774), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), + [aux_sym_preproc_else_token1] = ACTIONS(2774), + [aux_sym_preproc_elif_token1] = ACTIONS(2774), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), + [sym_preproc_directive] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_TILDE] = ACTIONS(2776), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_STAR] = ACTIONS(2776), + [anon_sym_AMP_AMP] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym___extension__] = ACTIONS(2774), + [anon_sym_typedef] = ACTIONS(2774), + [anon_sym_extern] = ACTIONS(2774), + [anon_sym___attribute__] = ACTIONS(2774), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), + [anon_sym___declspec] = ACTIONS(2774), + [anon_sym___based] = ACTIONS(2774), + [anon_sym___cdecl] = ACTIONS(2774), + [anon_sym___clrcall] = ACTIONS(2774), + [anon_sym___stdcall] = ACTIONS(2774), + [anon_sym___fastcall] = ACTIONS(2774), + [anon_sym___thiscall] = ACTIONS(2774), + [anon_sym___vectorcall] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2776), + [anon_sym_signed] = ACTIONS(2774), + [anon_sym_unsigned] = ACTIONS(2774), + [anon_sym_long] = ACTIONS(2774), + [anon_sym_short] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_static] = ACTIONS(2774), + [anon_sym_register] = ACTIONS(2774), + [anon_sym_inline] = ACTIONS(2774), + [anon_sym___inline] = ACTIONS(2774), + [anon_sym___inline__] = ACTIONS(2774), + [anon_sym___forceinline] = ACTIONS(2774), + [anon_sym_thread_local] = ACTIONS(2774), + [anon_sym___thread] = ACTIONS(2774), + [anon_sym_const] = ACTIONS(2774), + [anon_sym_constexpr] = ACTIONS(2774), + [anon_sym_volatile] = ACTIONS(2774), + [anon_sym_restrict] = ACTIONS(2774), + [anon_sym___restrict__] = ACTIONS(2774), + [anon_sym__Atomic] = ACTIONS(2774), + [anon_sym__Noreturn] = ACTIONS(2774), + [anon_sym_noreturn] = ACTIONS(2774), + [anon_sym_mutable] = ACTIONS(2774), + [anon_sym_constinit] = ACTIONS(2774), + [anon_sym_consteval] = ACTIONS(2774), + [sym_primitive_type] = ACTIONS(2774), + [anon_sym_enum] = ACTIONS(2774), + [anon_sym_class] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(2774), + [anon_sym_union] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_else] = ACTIONS(2774), + [anon_sym_switch] = ACTIONS(2774), + [anon_sym_case] = ACTIONS(2774), + [anon_sym_default] = ACTIONS(2774), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_break] = ACTIONS(2774), + [anon_sym_continue] = ACTIONS(2774), + [anon_sym_goto] = ACTIONS(2774), + [anon_sym_not] = ACTIONS(2774), + [anon_sym_compl] = ACTIONS(2774), + [anon_sym_DASH_DASH] = ACTIONS(2776), + [anon_sym_PLUS_PLUS] = ACTIONS(2776), + [anon_sym_sizeof] = ACTIONS(2774), + [anon_sym___alignof__] = ACTIONS(2774), + [anon_sym___alignof] = ACTIONS(2774), + [anon_sym__alignof] = ACTIONS(2774), + [anon_sym_alignof] = ACTIONS(2774), + [anon_sym__Alignof] = ACTIONS(2774), + [anon_sym_offsetof] = ACTIONS(2774), + [anon_sym__Generic] = ACTIONS(2774), + [anon_sym_asm] = ACTIONS(2774), + [anon_sym___asm__] = ACTIONS(2774), + [sym_number_literal] = ACTIONS(2776), + [anon_sym_L_SQUOTE] = ACTIONS(2776), + [anon_sym_u_SQUOTE] = ACTIONS(2776), + [anon_sym_U_SQUOTE] = ACTIONS(2776), + [anon_sym_u8_SQUOTE] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_L_DQUOTE] = ACTIONS(2776), + [anon_sym_u_DQUOTE] = ACTIONS(2776), + [anon_sym_U_DQUOTE] = ACTIONS(2776), + [anon_sym_u8_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE] = ACTIONS(2776), + [sym_true] = ACTIONS(2774), + [sym_false] = ACTIONS(2774), + [anon_sym_NULL] = ACTIONS(2774), + [anon_sym_nullptr] = ACTIONS(2774), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2774), + [anon_sym_virtual] = ACTIONS(2774), + [anon_sym_alignas] = ACTIONS(2774), + [anon_sym_explicit] = ACTIONS(2774), + [anon_sym_typename] = ACTIONS(2774), + [anon_sym_template] = ACTIONS(2774), + [anon_sym_operator] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_delete] = ACTIONS(2774), + [anon_sym_throw] = ACTIONS(2774), + [anon_sym_namespace] = ACTIONS(2774), + [anon_sym_using] = ACTIONS(2774), + [anon_sym_static_assert] = ACTIONS(2774), + [anon_sym_concept] = ACTIONS(2774), + [anon_sym_co_return] = ACTIONS(2774), + [anon_sym_co_yield] = ACTIONS(2774), + [anon_sym_R_DQUOTE] = ACTIONS(2776), + [anon_sym_LR_DQUOTE] = ACTIONS(2776), + [anon_sym_uR_DQUOTE] = ACTIONS(2776), + [anon_sym_UR_DQUOTE] = ACTIONS(2776), + [anon_sym_u8R_DQUOTE] = ACTIONS(2776), + [anon_sym_co_await] = ACTIONS(2774), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_requires] = ACTIONS(2774), + [sym_this] = ACTIONS(2774), + }, + [268] = { + [sym_identifier] = ACTIONS(2778), + [aux_sym_preproc_include_token1] = ACTIONS(2778), + [aux_sym_preproc_def_token1] = ACTIONS(2778), + [aux_sym_preproc_if_token1] = ACTIONS(2778), + [aux_sym_preproc_if_token2] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [aux_sym_preproc_else_token1] = ACTIONS(2778), + [aux_sym_preproc_elif_token1] = ACTIONS(2778), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2778), + [anon_sym_LPAREN2] = ACTIONS(2780), + [anon_sym_BANG] = ACTIONS(2780), + [anon_sym_TILDE] = ACTIONS(2780), + [anon_sym_DASH] = ACTIONS(2778), + [anon_sym_PLUS] = ACTIONS(2778), + [anon_sym_STAR] = ACTIONS(2780), + [anon_sym_AMP_AMP] = ACTIONS(2780), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym___extension__] = ACTIONS(2778), + [anon_sym_typedef] = ACTIONS(2778), + [anon_sym_extern] = ACTIONS(2778), + [anon_sym___attribute__] = ACTIONS(2778), + [anon_sym_COLON_COLON] = ACTIONS(2780), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), + [anon_sym___declspec] = ACTIONS(2778), + [anon_sym___based] = ACTIONS(2778), + [anon_sym___cdecl] = ACTIONS(2778), + [anon_sym___clrcall] = ACTIONS(2778), + [anon_sym___stdcall] = ACTIONS(2778), + [anon_sym___fastcall] = ACTIONS(2778), + [anon_sym___thiscall] = ACTIONS(2778), + [anon_sym___vectorcall] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2780), + [anon_sym_signed] = ACTIONS(2778), + [anon_sym_unsigned] = ACTIONS(2778), + [anon_sym_long] = ACTIONS(2778), + [anon_sym_short] = ACTIONS(2778), + [anon_sym_LBRACK] = ACTIONS(2778), + [anon_sym_static] = ACTIONS(2778), + [anon_sym_register] = ACTIONS(2778), + [anon_sym_inline] = ACTIONS(2778), + [anon_sym___inline] = ACTIONS(2778), + [anon_sym___inline__] = ACTIONS(2778), + [anon_sym___forceinline] = ACTIONS(2778), + [anon_sym_thread_local] = ACTIONS(2778), + [anon_sym___thread] = ACTIONS(2778), + [anon_sym_const] = ACTIONS(2778), + [anon_sym_constexpr] = ACTIONS(2778), + [anon_sym_volatile] = ACTIONS(2778), + [anon_sym_restrict] = ACTIONS(2778), + [anon_sym___restrict__] = ACTIONS(2778), + [anon_sym__Atomic] = ACTIONS(2778), + [anon_sym__Noreturn] = ACTIONS(2778), + [anon_sym_noreturn] = ACTIONS(2778), + [anon_sym_mutable] = ACTIONS(2778), + [anon_sym_constinit] = ACTIONS(2778), + [anon_sym_consteval] = ACTIONS(2778), + [sym_primitive_type] = ACTIONS(2778), + [anon_sym_enum] = ACTIONS(2778), + [anon_sym_class] = ACTIONS(2778), + [anon_sym_struct] = ACTIONS(2778), + [anon_sym_union] = ACTIONS(2778), + [anon_sym_if] = ACTIONS(2778), + [anon_sym_else] = ACTIONS(2778), + [anon_sym_switch] = ACTIONS(2778), + [anon_sym_case] = ACTIONS(2778), + [anon_sym_default] = ACTIONS(2778), + [anon_sym_while] = ACTIONS(2778), + [anon_sym_do] = ACTIONS(2778), + [anon_sym_for] = ACTIONS(2778), + [anon_sym_return] = ACTIONS(2778), + [anon_sym_break] = ACTIONS(2778), + [anon_sym_continue] = ACTIONS(2778), + [anon_sym_goto] = ACTIONS(2778), + [anon_sym_not] = ACTIONS(2778), + [anon_sym_compl] = ACTIONS(2778), + [anon_sym_DASH_DASH] = ACTIONS(2780), + [anon_sym_PLUS_PLUS] = ACTIONS(2780), + [anon_sym_sizeof] = ACTIONS(2778), + [anon_sym___alignof__] = ACTIONS(2778), + [anon_sym___alignof] = ACTIONS(2778), + [anon_sym__alignof] = ACTIONS(2778), + [anon_sym_alignof] = ACTIONS(2778), + [anon_sym__Alignof] = ACTIONS(2778), + [anon_sym_offsetof] = ACTIONS(2778), + [anon_sym__Generic] = ACTIONS(2778), + [anon_sym_asm] = ACTIONS(2778), + [anon_sym___asm__] = ACTIONS(2778), + [sym_number_literal] = ACTIONS(2780), + [anon_sym_L_SQUOTE] = ACTIONS(2780), + [anon_sym_u_SQUOTE] = ACTIONS(2780), + [anon_sym_U_SQUOTE] = ACTIONS(2780), + [anon_sym_u8_SQUOTE] = ACTIONS(2780), + [anon_sym_SQUOTE] = ACTIONS(2780), + [anon_sym_L_DQUOTE] = ACTIONS(2780), + [anon_sym_u_DQUOTE] = ACTIONS(2780), + [anon_sym_U_DQUOTE] = ACTIONS(2780), + [anon_sym_u8_DQUOTE] = ACTIONS(2780), + [anon_sym_DQUOTE] = ACTIONS(2780), + [sym_true] = ACTIONS(2778), + [sym_false] = ACTIONS(2778), + [anon_sym_NULL] = ACTIONS(2778), + [anon_sym_nullptr] = ACTIONS(2778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2778), + [anon_sym_virtual] = ACTIONS(2778), + [anon_sym_alignas] = ACTIONS(2778), + [anon_sym_explicit] = ACTIONS(2778), + [anon_sym_typename] = ACTIONS(2778), + [anon_sym_template] = ACTIONS(2778), + [anon_sym_operator] = ACTIONS(2778), + [anon_sym_try] = ACTIONS(2778), + [anon_sym_delete] = ACTIONS(2778), + [anon_sym_throw] = ACTIONS(2778), + [anon_sym_namespace] = ACTIONS(2778), + [anon_sym_using] = ACTIONS(2778), + [anon_sym_static_assert] = ACTIONS(2778), + [anon_sym_concept] = ACTIONS(2778), + [anon_sym_co_return] = ACTIONS(2778), + [anon_sym_co_yield] = ACTIONS(2778), + [anon_sym_R_DQUOTE] = ACTIONS(2780), + [anon_sym_LR_DQUOTE] = ACTIONS(2780), + [anon_sym_uR_DQUOTE] = ACTIONS(2780), + [anon_sym_UR_DQUOTE] = ACTIONS(2780), + [anon_sym_u8R_DQUOTE] = ACTIONS(2780), + [anon_sym_co_await] = ACTIONS(2778), + [anon_sym_new] = ACTIONS(2778), + [anon_sym_requires] = ACTIONS(2778), + [sym_this] = ACTIONS(2778), + }, + [269] = { + [sym__expression] = STATE(4129), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7673), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -92059,23 +93606,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym___extension__] = ACTIONS(2786), + [anon_sym_extern] = ACTIONS(2786), + [anon_sym___attribute__] = ACTIONS(2786), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2788), + [anon_sym___declspec] = ACTIONS(2786), + [anon_sym_signed] = ACTIONS(2786), + [anon_sym_unsigned] = ACTIONS(2786), + [anon_sym_long] = ACTIONS(2786), + [anon_sym_short] = ACTIONS(2786), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2786), + [anon_sym_register] = ACTIONS(2786), + [anon_sym_inline] = ACTIONS(2786), + [anon_sym___inline] = ACTIONS(2786), + [anon_sym___inline__] = ACTIONS(2786), + [anon_sym___forceinline] = ACTIONS(2786), + [anon_sym_thread_local] = ACTIONS(2786), + [anon_sym___thread] = ACTIONS(2786), + [anon_sym_const] = ACTIONS(2786), + [anon_sym_constexpr] = ACTIONS(2786), + [anon_sym_volatile] = ACTIONS(2786), + [anon_sym_restrict] = ACTIONS(2786), + [anon_sym___restrict__] = ACTIONS(2786), + [anon_sym__Atomic] = ACTIONS(2786), + [anon_sym__Noreturn] = ACTIONS(2786), + [anon_sym_noreturn] = ACTIONS(2786), + [anon_sym_mutable] = ACTIONS(2786), + [anon_sym_constinit] = ACTIONS(2786), + [anon_sym_consteval] = ACTIONS(2786), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2786), + [anon_sym_class] = ACTIONS(2786), + [anon_sym_struct] = ACTIONS(2786), + [anon_sym_union] = ACTIONS(2786), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -92106,13 +93672,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(2786), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(2786), + [anon_sym_alignas] = ACTIONS(2786), + [anon_sym_typename] = ACTIONS(2786), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -92123,72 +93689,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [234] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(918), - [sym_attributed_statement] = STATE(915), - [sym_labeled_statement] = STATE(913), - [sym_expression_statement] = STATE(912), - [sym_if_statement] = STATE(910), - [sym_switch_statement] = STATE(907), - [sym_case_statement] = STATE(901), - [sym_while_statement] = STATE(893), - [sym_do_statement] = STATE(873), - [sym_for_statement] = STATE(849), - [sym_return_statement] = STATE(850), - [sym_break_statement] = STATE(851), - [sym_continue_statement] = STATE(852), - [sym_goto_statement] = STATE(853), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(859), - [sym_co_return_statement] = STATE(860), - [sym_co_yield_statement] = STATE(866), - [sym_throw_statement] = STATE(867), - [sym_try_statement] = STATE(868), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), + [270] = { + [sym_identifier] = ACTIONS(2790), + [aux_sym_preproc_include_token1] = ACTIONS(2790), + [aux_sym_preproc_def_token1] = ACTIONS(2790), + [aux_sym_preproc_if_token1] = ACTIONS(2790), + [aux_sym_preproc_if_token2] = ACTIONS(2790), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2790), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2790), + [aux_sym_preproc_else_token1] = ACTIONS(2790), + [aux_sym_preproc_elif_token1] = ACTIONS(2790), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2790), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2790), + [sym_preproc_directive] = ACTIONS(2790), + [anon_sym_LPAREN2] = ACTIONS(2792), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_TILDE] = ACTIONS(2792), + [anon_sym_DASH] = ACTIONS(2790), + [anon_sym_PLUS] = ACTIONS(2790), + [anon_sym_STAR] = ACTIONS(2792), + [anon_sym_AMP_AMP] = ACTIONS(2792), + [anon_sym_AMP] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym___extension__] = ACTIONS(2790), + [anon_sym_typedef] = ACTIONS(2790), + [anon_sym_extern] = ACTIONS(2790), + [anon_sym___attribute__] = ACTIONS(2790), + [anon_sym_COLON_COLON] = ACTIONS(2792), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2792), + [anon_sym___declspec] = ACTIONS(2790), + [anon_sym___based] = ACTIONS(2790), + [anon_sym___cdecl] = ACTIONS(2790), + [anon_sym___clrcall] = ACTIONS(2790), + [anon_sym___stdcall] = ACTIONS(2790), + [anon_sym___fastcall] = ACTIONS(2790), + [anon_sym___thiscall] = ACTIONS(2790), + [anon_sym___vectorcall] = ACTIONS(2790), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_signed] = ACTIONS(2790), + [anon_sym_unsigned] = ACTIONS(2790), + [anon_sym_long] = ACTIONS(2790), + [anon_sym_short] = ACTIONS(2790), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym_static] = ACTIONS(2790), + [anon_sym_register] = ACTIONS(2790), + [anon_sym_inline] = ACTIONS(2790), + [anon_sym___inline] = ACTIONS(2790), + [anon_sym___inline__] = ACTIONS(2790), + [anon_sym___forceinline] = ACTIONS(2790), + [anon_sym_thread_local] = ACTIONS(2790), + [anon_sym___thread] = ACTIONS(2790), + [anon_sym_const] = ACTIONS(2790), + [anon_sym_constexpr] = ACTIONS(2790), + [anon_sym_volatile] = ACTIONS(2790), + [anon_sym_restrict] = ACTIONS(2790), + [anon_sym___restrict__] = ACTIONS(2790), + [anon_sym__Atomic] = ACTIONS(2790), + [anon_sym__Noreturn] = ACTIONS(2790), + [anon_sym_noreturn] = ACTIONS(2790), + [anon_sym_mutable] = ACTIONS(2790), + [anon_sym_constinit] = ACTIONS(2790), + [anon_sym_consteval] = ACTIONS(2790), + [sym_primitive_type] = ACTIONS(2790), + [anon_sym_enum] = ACTIONS(2790), + [anon_sym_class] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(2790), + [anon_sym_union] = ACTIONS(2790), + [anon_sym_if] = ACTIONS(2790), + [anon_sym_else] = ACTIONS(2790), + [anon_sym_switch] = ACTIONS(2790), + [anon_sym_case] = ACTIONS(2790), + [anon_sym_default] = ACTIONS(2790), + [anon_sym_while] = ACTIONS(2790), + [anon_sym_do] = ACTIONS(2790), + [anon_sym_for] = ACTIONS(2790), + [anon_sym_return] = ACTIONS(2790), + [anon_sym_break] = ACTIONS(2790), + [anon_sym_continue] = ACTIONS(2790), + [anon_sym_goto] = ACTIONS(2790), + [anon_sym_not] = ACTIONS(2790), + [anon_sym_compl] = ACTIONS(2790), + [anon_sym_DASH_DASH] = ACTIONS(2792), + [anon_sym_PLUS_PLUS] = ACTIONS(2792), + [anon_sym_sizeof] = ACTIONS(2790), + [anon_sym___alignof__] = ACTIONS(2790), + [anon_sym___alignof] = ACTIONS(2790), + [anon_sym__alignof] = ACTIONS(2790), + [anon_sym_alignof] = ACTIONS(2790), + [anon_sym__Alignof] = ACTIONS(2790), + [anon_sym_offsetof] = ACTIONS(2790), + [anon_sym__Generic] = ACTIONS(2790), + [anon_sym_asm] = ACTIONS(2790), + [anon_sym___asm__] = ACTIONS(2790), + [sym_number_literal] = ACTIONS(2792), + [anon_sym_L_SQUOTE] = ACTIONS(2792), + [anon_sym_u_SQUOTE] = ACTIONS(2792), + [anon_sym_U_SQUOTE] = ACTIONS(2792), + [anon_sym_u8_SQUOTE] = ACTIONS(2792), + [anon_sym_SQUOTE] = ACTIONS(2792), + [anon_sym_L_DQUOTE] = ACTIONS(2792), + [anon_sym_u_DQUOTE] = ACTIONS(2792), + [anon_sym_U_DQUOTE] = ACTIONS(2792), + [anon_sym_u8_DQUOTE] = ACTIONS(2792), + [anon_sym_DQUOTE] = ACTIONS(2792), + [sym_true] = ACTIONS(2790), + [sym_false] = ACTIONS(2790), + [anon_sym_NULL] = ACTIONS(2790), + [anon_sym_nullptr] = ACTIONS(2790), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2790), + [anon_sym_decltype] = ACTIONS(2790), + [anon_sym_virtual] = ACTIONS(2790), + [anon_sym_alignas] = ACTIONS(2790), + [anon_sym_explicit] = ACTIONS(2790), + [anon_sym_typename] = ACTIONS(2790), + [anon_sym_template] = ACTIONS(2790), + [anon_sym_operator] = ACTIONS(2790), + [anon_sym_try] = ACTIONS(2790), + [anon_sym_delete] = ACTIONS(2790), + [anon_sym_throw] = ACTIONS(2790), + [anon_sym_namespace] = ACTIONS(2790), + [anon_sym_using] = ACTIONS(2790), + [anon_sym_static_assert] = ACTIONS(2790), + [anon_sym_concept] = ACTIONS(2790), + [anon_sym_co_return] = ACTIONS(2790), + [anon_sym_co_yield] = ACTIONS(2790), + [anon_sym_R_DQUOTE] = ACTIONS(2792), + [anon_sym_LR_DQUOTE] = ACTIONS(2792), + [anon_sym_uR_DQUOTE] = ACTIONS(2792), + [anon_sym_UR_DQUOTE] = ACTIONS(2792), + [anon_sym_u8R_DQUOTE] = ACTIONS(2792), + [anon_sym_co_await] = ACTIONS(2790), + [anon_sym_new] = ACTIONS(2790), + [anon_sym_requires] = ACTIONS(2790), + [sym_this] = ACTIONS(2790), + }, + [271] = { + [sym__expression] = STATE(4161), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7677), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -92196,23 +93876,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym___extension__] = ACTIONS(2796), + [anon_sym_extern] = ACTIONS(2796), + [anon_sym___attribute__] = ACTIONS(2796), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2798), + [anon_sym___declspec] = ACTIONS(2796), + [anon_sym_signed] = ACTIONS(2796), + [anon_sym_unsigned] = ACTIONS(2796), + [anon_sym_long] = ACTIONS(2796), + [anon_sym_short] = ACTIONS(2796), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2796), + [anon_sym_register] = ACTIONS(2796), + [anon_sym_inline] = ACTIONS(2796), + [anon_sym___inline] = ACTIONS(2796), + [anon_sym___inline__] = ACTIONS(2796), + [anon_sym___forceinline] = ACTIONS(2796), + [anon_sym_thread_local] = ACTIONS(2796), + [anon_sym___thread] = ACTIONS(2796), + [anon_sym_const] = ACTIONS(2796), + [anon_sym_constexpr] = ACTIONS(2796), + [anon_sym_volatile] = ACTIONS(2796), + [anon_sym_restrict] = ACTIONS(2796), + [anon_sym___restrict__] = ACTIONS(2796), + [anon_sym__Atomic] = ACTIONS(2796), + [anon_sym__Noreturn] = ACTIONS(2796), + [anon_sym_noreturn] = ACTIONS(2796), + [anon_sym_mutable] = ACTIONS(2796), + [anon_sym_constinit] = ACTIONS(2796), + [anon_sym_consteval] = ACTIONS(2796), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2796), + [anon_sym_class] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2796), + [anon_sym_union] = ACTIONS(2796), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -92243,13 +93942,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(2796), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(2796), + [anon_sym_alignas] = ACTIONS(2796), + [anon_sym_typename] = ACTIONS(2796), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -92260,1853 +93959,1671 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [235] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(951), - [sym_attributed_statement] = STATE(951), - [sym_labeled_statement] = STATE(951), - [sym_expression_statement] = STATE(951), - [sym_if_statement] = STATE(951), - [sym_switch_statement] = STATE(951), - [sym_case_statement] = STATE(951), - [sym_while_statement] = STATE(951), - [sym_do_statement] = STATE(951), - [sym_for_statement] = STATE(951), - [sym_return_statement] = STATE(951), - [sym_break_statement] = STATE(951), - [sym_continue_statement] = STATE(951), - [sym_goto_statement] = STATE(951), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(951), - [sym_co_return_statement] = STATE(951), - [sym_co_yield_statement] = STATE(951), - [sym_throw_statement] = STATE(951), - [sym_try_statement] = STATE(951), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [236] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(871), - [sym_attributed_statement] = STATE(983), - [sym_labeled_statement] = STATE(977), - [sym_expression_statement] = STATE(972), - [sym_if_statement] = STATE(970), - [sym_switch_statement] = STATE(965), - [sym_case_statement] = STATE(964), - [sym_while_statement] = STATE(963), - [sym_do_statement] = STATE(962), - [sym_for_statement] = STATE(961), - [sym_return_statement] = STATE(956), - [sym_break_statement] = STATE(953), - [sym_continue_statement] = STATE(948), - [sym_goto_statement] = STATE(947), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(943), - [sym_co_return_statement] = STATE(937), - [sym_co_yield_statement] = STATE(924), - [sym_throw_statement] = STATE(920), - [sym_try_statement] = STATE(919), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [272] = { + [sym_identifier] = ACTIONS(2786), + [aux_sym_preproc_include_token1] = ACTIONS(2786), + [aux_sym_preproc_def_token1] = ACTIONS(2786), + [aux_sym_preproc_if_token1] = ACTIONS(2786), + [aux_sym_preproc_if_token2] = ACTIONS(2786), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2786), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2786), + [aux_sym_preproc_else_token1] = ACTIONS(2786), + [aux_sym_preproc_elif_token1] = ACTIONS(2786), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2786), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2786), + [sym_preproc_directive] = ACTIONS(2786), + [anon_sym_LPAREN2] = ACTIONS(2788), + [anon_sym_BANG] = ACTIONS(2788), + [anon_sym_TILDE] = ACTIONS(2788), + [anon_sym_DASH] = ACTIONS(2786), + [anon_sym_PLUS] = ACTIONS(2786), + [anon_sym_STAR] = ACTIONS(2788), + [anon_sym_AMP_AMP] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym___extension__] = ACTIONS(2786), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_extern] = ACTIONS(2786), + [anon_sym___attribute__] = ACTIONS(2786), + [anon_sym_COLON_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2788), + [anon_sym___declspec] = ACTIONS(2786), + [anon_sym___based] = ACTIONS(2786), + [anon_sym___cdecl] = ACTIONS(2786), + [anon_sym___clrcall] = ACTIONS(2786), + [anon_sym___stdcall] = ACTIONS(2786), + [anon_sym___fastcall] = ACTIONS(2786), + [anon_sym___thiscall] = ACTIONS(2786), + [anon_sym___vectorcall] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2788), + [anon_sym_signed] = ACTIONS(2786), + [anon_sym_unsigned] = ACTIONS(2786), + [anon_sym_long] = ACTIONS(2786), + [anon_sym_short] = ACTIONS(2786), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_static] = ACTIONS(2786), + [anon_sym_register] = ACTIONS(2786), + [anon_sym_inline] = ACTIONS(2786), + [anon_sym___inline] = ACTIONS(2786), + [anon_sym___inline__] = ACTIONS(2786), + [anon_sym___forceinline] = ACTIONS(2786), + [anon_sym_thread_local] = ACTIONS(2786), + [anon_sym___thread] = ACTIONS(2786), + [anon_sym_const] = ACTIONS(2786), + [anon_sym_constexpr] = ACTIONS(2786), + [anon_sym_volatile] = ACTIONS(2786), + [anon_sym_restrict] = ACTIONS(2786), + [anon_sym___restrict__] = ACTIONS(2786), + [anon_sym__Atomic] = ACTIONS(2786), + [anon_sym__Noreturn] = ACTIONS(2786), + [anon_sym_noreturn] = ACTIONS(2786), + [anon_sym_mutable] = ACTIONS(2786), + [anon_sym_constinit] = ACTIONS(2786), + [anon_sym_consteval] = ACTIONS(2786), + [sym_primitive_type] = ACTIONS(2786), + [anon_sym_enum] = ACTIONS(2786), + [anon_sym_class] = ACTIONS(2786), + [anon_sym_struct] = ACTIONS(2786), + [anon_sym_union] = ACTIONS(2786), + [anon_sym_if] = ACTIONS(2786), + [anon_sym_else] = ACTIONS(2786), + [anon_sym_switch] = ACTIONS(2786), + [anon_sym_case] = ACTIONS(2786), + [anon_sym_default] = ACTIONS(2786), + [anon_sym_while] = ACTIONS(2786), + [anon_sym_do] = ACTIONS(2786), + [anon_sym_for] = ACTIONS(2786), + [anon_sym_return] = ACTIONS(2786), + [anon_sym_break] = ACTIONS(2786), + [anon_sym_continue] = ACTIONS(2786), + [anon_sym_goto] = ACTIONS(2786), + [anon_sym_not] = ACTIONS(2786), + [anon_sym_compl] = ACTIONS(2786), + [anon_sym_DASH_DASH] = ACTIONS(2788), + [anon_sym_PLUS_PLUS] = ACTIONS(2788), + [anon_sym_sizeof] = ACTIONS(2786), + [anon_sym___alignof__] = ACTIONS(2786), + [anon_sym___alignof] = ACTIONS(2786), + [anon_sym__alignof] = ACTIONS(2786), + [anon_sym_alignof] = ACTIONS(2786), + [anon_sym__Alignof] = ACTIONS(2786), + [anon_sym_offsetof] = ACTIONS(2786), + [anon_sym__Generic] = ACTIONS(2786), + [anon_sym_asm] = ACTIONS(2786), + [anon_sym___asm__] = ACTIONS(2786), + [sym_number_literal] = ACTIONS(2788), + [anon_sym_L_SQUOTE] = ACTIONS(2788), + [anon_sym_u_SQUOTE] = ACTIONS(2788), + [anon_sym_U_SQUOTE] = ACTIONS(2788), + [anon_sym_u8_SQUOTE] = ACTIONS(2788), + [anon_sym_SQUOTE] = ACTIONS(2788), + [anon_sym_L_DQUOTE] = ACTIONS(2788), + [anon_sym_u_DQUOTE] = ACTIONS(2788), + [anon_sym_U_DQUOTE] = ACTIONS(2788), + [anon_sym_u8_DQUOTE] = ACTIONS(2788), + [anon_sym_DQUOTE] = ACTIONS(2788), + [sym_true] = ACTIONS(2786), + [sym_false] = ACTIONS(2786), + [anon_sym_NULL] = ACTIONS(2786), + [anon_sym_nullptr] = ACTIONS(2786), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2786), + [anon_sym_decltype] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(2786), + [anon_sym_alignas] = ACTIONS(2786), + [anon_sym_explicit] = ACTIONS(2786), + [anon_sym_typename] = ACTIONS(2786), + [anon_sym_template] = ACTIONS(2786), + [anon_sym_operator] = ACTIONS(2786), + [anon_sym_try] = ACTIONS(2786), + [anon_sym_delete] = ACTIONS(2786), + [anon_sym_throw] = ACTIONS(2786), + [anon_sym_namespace] = ACTIONS(2786), + [anon_sym_using] = ACTIONS(2786), + [anon_sym_static_assert] = ACTIONS(2786), + [anon_sym_concept] = ACTIONS(2786), + [anon_sym_co_return] = ACTIONS(2786), + [anon_sym_co_yield] = ACTIONS(2786), + [anon_sym_R_DQUOTE] = ACTIONS(2788), + [anon_sym_LR_DQUOTE] = ACTIONS(2788), + [anon_sym_uR_DQUOTE] = ACTIONS(2788), + [anon_sym_UR_DQUOTE] = ACTIONS(2788), + [anon_sym_u8R_DQUOTE] = ACTIONS(2788), + [anon_sym_co_await] = ACTIONS(2786), + [anon_sym_new] = ACTIONS(2786), + [anon_sym_requires] = ACTIONS(2786), + [sym_this] = ACTIONS(2786), }, - [237] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(988), - [sym_attributed_statement] = STATE(988), - [sym_labeled_statement] = STATE(988), - [sym_expression_statement] = STATE(988), - [sym_if_statement] = STATE(988), - [sym_switch_statement] = STATE(988), - [sym_case_statement] = STATE(988), - [sym_while_statement] = STATE(988), - [sym_do_statement] = STATE(988), - [sym_for_statement] = STATE(988), - [sym_return_statement] = STATE(988), - [sym_break_statement] = STATE(988), - [sym_continue_statement] = STATE(988), - [sym_goto_statement] = STATE(988), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(988), - [sym_co_return_statement] = STATE(988), - [sym_co_yield_statement] = STATE(988), - [sym_throw_statement] = STATE(988), - [sym_try_statement] = STATE(988), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [273] = { + [sym_identifier] = ACTIONS(2800), + [aux_sym_preproc_include_token1] = ACTIONS(2800), + [aux_sym_preproc_def_token1] = ACTIONS(2800), + [aux_sym_preproc_if_token1] = ACTIONS(2800), + [aux_sym_preproc_if_token2] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2800), + [aux_sym_preproc_else_token1] = ACTIONS(2800), + [aux_sym_preproc_elif_token1] = ACTIONS(2800), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2800), + [sym_preproc_directive] = ACTIONS(2800), + [anon_sym_LPAREN2] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(2800), + [anon_sym_PLUS] = ACTIONS(2800), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_AMP_AMP] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2800), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym___extension__] = ACTIONS(2800), + [anon_sym_typedef] = ACTIONS(2800), + [anon_sym_extern] = ACTIONS(2800), + [anon_sym___attribute__] = ACTIONS(2800), + [anon_sym_COLON_COLON] = ACTIONS(2802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2802), + [anon_sym___declspec] = ACTIONS(2800), + [anon_sym___based] = ACTIONS(2800), + [anon_sym___cdecl] = ACTIONS(2800), + [anon_sym___clrcall] = ACTIONS(2800), + [anon_sym___stdcall] = ACTIONS(2800), + [anon_sym___fastcall] = ACTIONS(2800), + [anon_sym___thiscall] = ACTIONS(2800), + [anon_sym___vectorcall] = ACTIONS(2800), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_signed] = ACTIONS(2800), + [anon_sym_unsigned] = ACTIONS(2800), + [anon_sym_long] = ACTIONS(2800), + [anon_sym_short] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2800), + [anon_sym_register] = ACTIONS(2800), + [anon_sym_inline] = ACTIONS(2800), + [anon_sym___inline] = ACTIONS(2800), + [anon_sym___inline__] = ACTIONS(2800), + [anon_sym___forceinline] = ACTIONS(2800), + [anon_sym_thread_local] = ACTIONS(2800), + [anon_sym___thread] = ACTIONS(2800), + [anon_sym_const] = ACTIONS(2800), + [anon_sym_constexpr] = ACTIONS(2800), + [anon_sym_volatile] = ACTIONS(2800), + [anon_sym_restrict] = ACTIONS(2800), + [anon_sym___restrict__] = ACTIONS(2800), + [anon_sym__Atomic] = ACTIONS(2800), + [anon_sym__Noreturn] = ACTIONS(2800), + [anon_sym_noreturn] = ACTIONS(2800), + [anon_sym_mutable] = ACTIONS(2800), + [anon_sym_constinit] = ACTIONS(2800), + [anon_sym_consteval] = ACTIONS(2800), + [sym_primitive_type] = ACTIONS(2800), + [anon_sym_enum] = ACTIONS(2800), + [anon_sym_class] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2800), + [anon_sym_union] = ACTIONS(2800), + [anon_sym_if] = ACTIONS(2800), + [anon_sym_else] = ACTIONS(2800), + [anon_sym_switch] = ACTIONS(2800), + [anon_sym_case] = ACTIONS(2800), + [anon_sym_default] = ACTIONS(2800), + [anon_sym_while] = ACTIONS(2800), + [anon_sym_do] = ACTIONS(2800), + [anon_sym_for] = ACTIONS(2800), + [anon_sym_return] = ACTIONS(2800), + [anon_sym_break] = ACTIONS(2800), + [anon_sym_continue] = ACTIONS(2800), + [anon_sym_goto] = ACTIONS(2800), + [anon_sym_not] = ACTIONS(2800), + [anon_sym_compl] = ACTIONS(2800), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_sizeof] = ACTIONS(2800), + [anon_sym___alignof__] = ACTIONS(2800), + [anon_sym___alignof] = ACTIONS(2800), + [anon_sym__alignof] = ACTIONS(2800), + [anon_sym_alignof] = ACTIONS(2800), + [anon_sym__Alignof] = ACTIONS(2800), + [anon_sym_offsetof] = ACTIONS(2800), + [anon_sym__Generic] = ACTIONS(2800), + [anon_sym_asm] = ACTIONS(2800), + [anon_sym___asm__] = ACTIONS(2800), + [sym_number_literal] = ACTIONS(2802), + [anon_sym_L_SQUOTE] = ACTIONS(2802), + [anon_sym_u_SQUOTE] = ACTIONS(2802), + [anon_sym_U_SQUOTE] = ACTIONS(2802), + [anon_sym_u8_SQUOTE] = ACTIONS(2802), + [anon_sym_SQUOTE] = ACTIONS(2802), + [anon_sym_L_DQUOTE] = ACTIONS(2802), + [anon_sym_u_DQUOTE] = ACTIONS(2802), + [anon_sym_U_DQUOTE] = ACTIONS(2802), + [anon_sym_u8_DQUOTE] = ACTIONS(2802), + [anon_sym_DQUOTE] = ACTIONS(2802), + [sym_true] = ACTIONS(2800), + [sym_false] = ACTIONS(2800), + [anon_sym_NULL] = ACTIONS(2800), + [anon_sym_nullptr] = ACTIONS(2800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2800), + [anon_sym_decltype] = ACTIONS(2800), + [anon_sym_virtual] = ACTIONS(2800), + [anon_sym_alignas] = ACTIONS(2800), + [anon_sym_explicit] = ACTIONS(2800), + [anon_sym_typename] = ACTIONS(2800), + [anon_sym_template] = ACTIONS(2800), + [anon_sym_operator] = ACTIONS(2800), + [anon_sym_try] = ACTIONS(2800), + [anon_sym_delete] = ACTIONS(2800), + [anon_sym_throw] = ACTIONS(2800), + [anon_sym_namespace] = ACTIONS(2800), + [anon_sym_using] = ACTIONS(2800), + [anon_sym_static_assert] = ACTIONS(2800), + [anon_sym_concept] = ACTIONS(2800), + [anon_sym_co_return] = ACTIONS(2800), + [anon_sym_co_yield] = ACTIONS(2800), + [anon_sym_R_DQUOTE] = ACTIONS(2802), + [anon_sym_LR_DQUOTE] = ACTIONS(2802), + [anon_sym_uR_DQUOTE] = ACTIONS(2802), + [anon_sym_UR_DQUOTE] = ACTIONS(2802), + [anon_sym_u8R_DQUOTE] = ACTIONS(2802), + [anon_sym_co_await] = ACTIONS(2800), + [anon_sym_new] = ACTIONS(2800), + [anon_sym_requires] = ACTIONS(2800), + [sym_this] = ACTIONS(2800), }, - [238] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(776), - [sym_attributed_statement] = STATE(776), - [sym_labeled_statement] = STATE(776), - [sym_expression_statement] = STATE(776), - [sym_if_statement] = STATE(776), - [sym_switch_statement] = STATE(776), - [sym_case_statement] = STATE(776), - [sym_while_statement] = STATE(776), - [sym_do_statement] = STATE(776), - [sym_for_statement] = STATE(776), - [sym_return_statement] = STATE(776), - [sym_break_statement] = STATE(776), - [sym_continue_statement] = STATE(776), - [sym_goto_statement] = STATE(776), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(776), - [sym_co_return_statement] = STATE(776), - [sym_co_yield_statement] = STATE(776), - [sym_throw_statement] = STATE(776), - [sym_try_statement] = STATE(776), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [274] = { + [sym_identifier] = ACTIONS(2804), + [aux_sym_preproc_include_token1] = ACTIONS(2804), + [aux_sym_preproc_def_token1] = ACTIONS(2804), + [aux_sym_preproc_if_token1] = ACTIONS(2804), + [aux_sym_preproc_if_token2] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2804), + [aux_sym_preproc_else_token1] = ACTIONS(2804), + [aux_sym_preproc_elif_token1] = ACTIONS(2804), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2804), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2804), + [sym_preproc_directive] = ACTIONS(2804), + [anon_sym_LPAREN2] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2806), + [anon_sym_DASH] = ACTIONS(2804), + [anon_sym_PLUS] = ACTIONS(2804), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_AMP_AMP] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym___extension__] = ACTIONS(2804), + [anon_sym_typedef] = ACTIONS(2804), + [anon_sym_extern] = ACTIONS(2804), + [anon_sym___attribute__] = ACTIONS(2804), + [anon_sym_COLON_COLON] = ACTIONS(2806), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2806), + [anon_sym___declspec] = ACTIONS(2804), + [anon_sym___based] = ACTIONS(2804), + [anon_sym___cdecl] = ACTIONS(2804), + [anon_sym___clrcall] = ACTIONS(2804), + [anon_sym___stdcall] = ACTIONS(2804), + [anon_sym___fastcall] = ACTIONS(2804), + [anon_sym___thiscall] = ACTIONS(2804), + [anon_sym___vectorcall] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_signed] = ACTIONS(2804), + [anon_sym_unsigned] = ACTIONS(2804), + [anon_sym_long] = ACTIONS(2804), + [anon_sym_short] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2804), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_register] = ACTIONS(2804), + [anon_sym_inline] = ACTIONS(2804), + [anon_sym___inline] = ACTIONS(2804), + [anon_sym___inline__] = ACTIONS(2804), + [anon_sym___forceinline] = ACTIONS(2804), + [anon_sym_thread_local] = ACTIONS(2804), + [anon_sym___thread] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_constexpr] = ACTIONS(2804), + [anon_sym_volatile] = ACTIONS(2804), + [anon_sym_restrict] = ACTIONS(2804), + [anon_sym___restrict__] = ACTIONS(2804), + [anon_sym__Atomic] = ACTIONS(2804), + [anon_sym__Noreturn] = ACTIONS(2804), + [anon_sym_noreturn] = ACTIONS(2804), + [anon_sym_mutable] = ACTIONS(2804), + [anon_sym_constinit] = ACTIONS(2804), + [anon_sym_consteval] = ACTIONS(2804), + [sym_primitive_type] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [anon_sym_class] = ACTIONS(2804), + [anon_sym_struct] = ACTIONS(2804), + [anon_sym_union] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2804), + [anon_sym_else] = ACTIONS(2804), + [anon_sym_switch] = ACTIONS(2804), + [anon_sym_case] = ACTIONS(2804), + [anon_sym_default] = ACTIONS(2804), + [anon_sym_while] = ACTIONS(2804), + [anon_sym_do] = ACTIONS(2804), + [anon_sym_for] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2804), + [anon_sym_break] = ACTIONS(2804), + [anon_sym_continue] = ACTIONS(2804), + [anon_sym_goto] = ACTIONS(2804), + [anon_sym_not] = ACTIONS(2804), + [anon_sym_compl] = ACTIONS(2804), + [anon_sym_DASH_DASH] = ACTIONS(2806), + [anon_sym_PLUS_PLUS] = ACTIONS(2806), + [anon_sym_sizeof] = ACTIONS(2804), + [anon_sym___alignof__] = ACTIONS(2804), + [anon_sym___alignof] = ACTIONS(2804), + [anon_sym__alignof] = ACTIONS(2804), + [anon_sym_alignof] = ACTIONS(2804), + [anon_sym__Alignof] = ACTIONS(2804), + [anon_sym_offsetof] = ACTIONS(2804), + [anon_sym__Generic] = ACTIONS(2804), + [anon_sym_asm] = ACTIONS(2804), + [anon_sym___asm__] = ACTIONS(2804), + [sym_number_literal] = ACTIONS(2806), + [anon_sym_L_SQUOTE] = ACTIONS(2806), + [anon_sym_u_SQUOTE] = ACTIONS(2806), + [anon_sym_U_SQUOTE] = ACTIONS(2806), + [anon_sym_u8_SQUOTE] = ACTIONS(2806), + [anon_sym_SQUOTE] = ACTIONS(2806), + [anon_sym_L_DQUOTE] = ACTIONS(2806), + [anon_sym_u_DQUOTE] = ACTIONS(2806), + [anon_sym_U_DQUOTE] = ACTIONS(2806), + [anon_sym_u8_DQUOTE] = ACTIONS(2806), + [anon_sym_DQUOTE] = ACTIONS(2806), + [sym_true] = ACTIONS(2804), + [sym_false] = ACTIONS(2804), + [anon_sym_NULL] = ACTIONS(2804), + [anon_sym_nullptr] = ACTIONS(2804), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2804), + [anon_sym_decltype] = ACTIONS(2804), + [anon_sym_virtual] = ACTIONS(2804), + [anon_sym_alignas] = ACTIONS(2804), + [anon_sym_explicit] = ACTIONS(2804), + [anon_sym_typename] = ACTIONS(2804), + [anon_sym_template] = ACTIONS(2804), + [anon_sym_operator] = ACTIONS(2804), + [anon_sym_try] = ACTIONS(2804), + [anon_sym_delete] = ACTIONS(2804), + [anon_sym_throw] = ACTIONS(2804), + [anon_sym_namespace] = ACTIONS(2804), + [anon_sym_using] = ACTIONS(2804), + [anon_sym_static_assert] = ACTIONS(2804), + [anon_sym_concept] = ACTIONS(2804), + [anon_sym_co_return] = ACTIONS(2804), + [anon_sym_co_yield] = ACTIONS(2804), + [anon_sym_R_DQUOTE] = ACTIONS(2806), + [anon_sym_LR_DQUOTE] = ACTIONS(2806), + [anon_sym_uR_DQUOTE] = ACTIONS(2806), + [anon_sym_UR_DQUOTE] = ACTIONS(2806), + [anon_sym_u8R_DQUOTE] = ACTIONS(2806), + [anon_sym_co_await] = ACTIONS(2804), + [anon_sym_new] = ACTIONS(2804), + [anon_sym_requires] = ACTIONS(2804), + [sym_this] = ACTIONS(2804), }, - [239] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(1251), - [sym_attributed_statement] = STATE(1251), - [sym_labeled_statement] = STATE(1251), - [sym_expression_statement] = STATE(1251), - [sym_if_statement] = STATE(1251), - [sym_switch_statement] = STATE(1251), - [sym_case_statement] = STATE(1251), - [sym_while_statement] = STATE(1251), - [sym_do_statement] = STATE(1251), - [sym_for_statement] = STATE(1251), - [sym_return_statement] = STATE(1251), - [sym_break_statement] = STATE(1251), - [sym_continue_statement] = STATE(1251), - [sym_goto_statement] = STATE(1251), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1251), - [sym_co_return_statement] = STATE(1251), - [sym_co_yield_statement] = STATE(1251), - [sym_throw_statement] = STATE(1251), - [sym_try_statement] = STATE(1251), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [275] = { + [sym_identifier] = ACTIONS(2808), + [aux_sym_preproc_include_token1] = ACTIONS(2808), + [aux_sym_preproc_def_token1] = ACTIONS(2808), + [aux_sym_preproc_if_token1] = ACTIONS(2808), + [aux_sym_preproc_if_token2] = ACTIONS(2808), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2808), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2808), + [aux_sym_preproc_else_token1] = ACTIONS(2808), + [aux_sym_preproc_elif_token1] = ACTIONS(2808), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2808), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2808), + [sym_preproc_directive] = ACTIONS(2808), + [anon_sym_LPAREN2] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2808), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_AMP_AMP] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2808), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym___extension__] = ACTIONS(2808), + [anon_sym_typedef] = ACTIONS(2808), + [anon_sym_extern] = ACTIONS(2808), + [anon_sym___attribute__] = ACTIONS(2808), + [anon_sym_COLON_COLON] = ACTIONS(2810), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2810), + [anon_sym___declspec] = ACTIONS(2808), + [anon_sym___based] = ACTIONS(2808), + [anon_sym___cdecl] = ACTIONS(2808), + [anon_sym___clrcall] = ACTIONS(2808), + [anon_sym___stdcall] = ACTIONS(2808), + [anon_sym___fastcall] = ACTIONS(2808), + [anon_sym___thiscall] = ACTIONS(2808), + [anon_sym___vectorcall] = ACTIONS(2808), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_signed] = ACTIONS(2808), + [anon_sym_unsigned] = ACTIONS(2808), + [anon_sym_long] = ACTIONS(2808), + [anon_sym_short] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2808), + [anon_sym_static] = ACTIONS(2808), + [anon_sym_register] = ACTIONS(2808), + [anon_sym_inline] = ACTIONS(2808), + [anon_sym___inline] = ACTIONS(2808), + [anon_sym___inline__] = ACTIONS(2808), + [anon_sym___forceinline] = ACTIONS(2808), + [anon_sym_thread_local] = ACTIONS(2808), + [anon_sym___thread] = ACTIONS(2808), + [anon_sym_const] = ACTIONS(2808), + [anon_sym_constexpr] = ACTIONS(2808), + [anon_sym_volatile] = ACTIONS(2808), + [anon_sym_restrict] = ACTIONS(2808), + [anon_sym___restrict__] = ACTIONS(2808), + [anon_sym__Atomic] = ACTIONS(2808), + [anon_sym__Noreturn] = ACTIONS(2808), + [anon_sym_noreturn] = ACTIONS(2808), + [anon_sym_mutable] = ACTIONS(2808), + [anon_sym_constinit] = ACTIONS(2808), + [anon_sym_consteval] = ACTIONS(2808), + [sym_primitive_type] = ACTIONS(2808), + [anon_sym_enum] = ACTIONS(2808), + [anon_sym_class] = ACTIONS(2808), + [anon_sym_struct] = ACTIONS(2808), + [anon_sym_union] = ACTIONS(2808), + [anon_sym_if] = ACTIONS(2808), + [anon_sym_else] = ACTIONS(2808), + [anon_sym_switch] = ACTIONS(2808), + [anon_sym_case] = ACTIONS(2808), + [anon_sym_default] = ACTIONS(2808), + [anon_sym_while] = ACTIONS(2808), + [anon_sym_do] = ACTIONS(2808), + [anon_sym_for] = ACTIONS(2808), + [anon_sym_return] = ACTIONS(2808), + [anon_sym_break] = ACTIONS(2808), + [anon_sym_continue] = ACTIONS(2808), + [anon_sym_goto] = ACTIONS(2808), + [anon_sym_not] = ACTIONS(2808), + [anon_sym_compl] = ACTIONS(2808), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_sizeof] = ACTIONS(2808), + [anon_sym___alignof__] = ACTIONS(2808), + [anon_sym___alignof] = ACTIONS(2808), + [anon_sym__alignof] = ACTIONS(2808), + [anon_sym_alignof] = ACTIONS(2808), + [anon_sym__Alignof] = ACTIONS(2808), + [anon_sym_offsetof] = ACTIONS(2808), + [anon_sym__Generic] = ACTIONS(2808), + [anon_sym_asm] = ACTIONS(2808), + [anon_sym___asm__] = ACTIONS(2808), + [sym_number_literal] = ACTIONS(2810), + [anon_sym_L_SQUOTE] = ACTIONS(2810), + [anon_sym_u_SQUOTE] = ACTIONS(2810), + [anon_sym_U_SQUOTE] = ACTIONS(2810), + [anon_sym_u8_SQUOTE] = ACTIONS(2810), + [anon_sym_SQUOTE] = ACTIONS(2810), + [anon_sym_L_DQUOTE] = ACTIONS(2810), + [anon_sym_u_DQUOTE] = ACTIONS(2810), + [anon_sym_U_DQUOTE] = ACTIONS(2810), + [anon_sym_u8_DQUOTE] = ACTIONS(2810), + [anon_sym_DQUOTE] = ACTIONS(2810), + [sym_true] = ACTIONS(2808), + [sym_false] = ACTIONS(2808), + [anon_sym_NULL] = ACTIONS(2808), + [anon_sym_nullptr] = ACTIONS(2808), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2808), + [anon_sym_decltype] = ACTIONS(2808), + [anon_sym_virtual] = ACTIONS(2808), + [anon_sym_alignas] = ACTIONS(2808), + [anon_sym_explicit] = ACTIONS(2808), + [anon_sym_typename] = ACTIONS(2808), + [anon_sym_template] = ACTIONS(2808), + [anon_sym_operator] = ACTIONS(2808), + [anon_sym_try] = ACTIONS(2808), + [anon_sym_delete] = ACTIONS(2808), + [anon_sym_throw] = ACTIONS(2808), + [anon_sym_namespace] = ACTIONS(2808), + [anon_sym_using] = ACTIONS(2808), + [anon_sym_static_assert] = ACTIONS(2808), + [anon_sym_concept] = ACTIONS(2808), + [anon_sym_co_return] = ACTIONS(2808), + [anon_sym_co_yield] = ACTIONS(2808), + [anon_sym_R_DQUOTE] = ACTIONS(2810), + [anon_sym_LR_DQUOTE] = ACTIONS(2810), + [anon_sym_uR_DQUOTE] = ACTIONS(2810), + [anon_sym_UR_DQUOTE] = ACTIONS(2810), + [anon_sym_u8R_DQUOTE] = ACTIONS(2810), + [anon_sym_co_await] = ACTIONS(2808), + [anon_sym_new] = ACTIONS(2808), + [anon_sym_requires] = ACTIONS(2808), + [sym_this] = ACTIONS(2808), }, - [240] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(990), - [sym_attributed_statement] = STATE(990), - [sym_labeled_statement] = STATE(990), - [sym_expression_statement] = STATE(990), - [sym_if_statement] = STATE(990), - [sym_switch_statement] = STATE(990), - [sym_case_statement] = STATE(990), - [sym_while_statement] = STATE(990), - [sym_do_statement] = STATE(990), - [sym_for_statement] = STATE(990), - [sym_return_statement] = STATE(990), - [sym_break_statement] = STATE(990), - [sym_continue_statement] = STATE(990), - [sym_goto_statement] = STATE(990), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(990), - [sym_co_return_statement] = STATE(990), - [sym_co_yield_statement] = STATE(990), - [sym_throw_statement] = STATE(990), - [sym_try_statement] = STATE(990), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), + [276] = { + [sym_catch_clause] = STATE(255), + [aux_sym_constructor_try_statement_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(2249), + [aux_sym_preproc_include_token1] = ACTIONS(2249), + [aux_sym_preproc_def_token1] = ACTIONS(2249), + [aux_sym_preproc_if_token1] = ACTIONS(2249), + [aux_sym_preproc_if_token2] = ACTIONS(2249), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2249), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2249), + [aux_sym_preproc_else_token1] = ACTIONS(2249), + [aux_sym_preproc_elif_token1] = ACTIONS(2249), + [sym_preproc_directive] = ACTIONS(2249), + [anon_sym_LPAREN2] = ACTIONS(2251), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_TILDE] = ACTIONS(2251), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(2251), + [anon_sym_AMP_AMP] = ACTIONS(2251), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym___extension__] = ACTIONS(2249), + [anon_sym_typedef] = ACTIONS(2249), + [anon_sym_extern] = ACTIONS(2249), + [anon_sym___attribute__] = ACTIONS(2249), + [anon_sym_COLON_COLON] = ACTIONS(2251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2251), + [anon_sym___declspec] = ACTIONS(2249), + [anon_sym___based] = ACTIONS(2249), + [anon_sym___cdecl] = ACTIONS(2249), + [anon_sym___clrcall] = ACTIONS(2249), + [anon_sym___stdcall] = ACTIONS(2249), + [anon_sym___fastcall] = ACTIONS(2249), + [anon_sym___thiscall] = ACTIONS(2249), + [anon_sym___vectorcall] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_signed] = ACTIONS(2249), + [anon_sym_unsigned] = ACTIONS(2249), + [anon_sym_long] = ACTIONS(2249), + [anon_sym_short] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_register] = ACTIONS(2249), + [anon_sym_inline] = ACTIONS(2249), + [anon_sym___inline] = ACTIONS(2249), + [anon_sym___inline__] = ACTIONS(2249), + [anon_sym___forceinline] = ACTIONS(2249), + [anon_sym_thread_local] = ACTIONS(2249), + [anon_sym___thread] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_constexpr] = ACTIONS(2249), + [anon_sym_volatile] = ACTIONS(2249), + [anon_sym_restrict] = ACTIONS(2249), + [anon_sym___restrict__] = ACTIONS(2249), + [anon_sym__Atomic] = ACTIONS(2249), + [anon_sym__Noreturn] = ACTIONS(2249), + [anon_sym_noreturn] = ACTIONS(2249), + [anon_sym_mutable] = ACTIONS(2249), + [anon_sym_constinit] = ACTIONS(2249), + [anon_sym_consteval] = ACTIONS(2249), + [sym_primitive_type] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_switch] = ACTIONS(2249), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2249), [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_goto] = ACTIONS(2249), + [anon_sym_not] = ACTIONS(2249), + [anon_sym_compl] = ACTIONS(2249), + [anon_sym_DASH_DASH] = ACTIONS(2251), + [anon_sym_PLUS_PLUS] = ACTIONS(2251), + [anon_sym_sizeof] = ACTIONS(2249), + [anon_sym___alignof__] = ACTIONS(2249), + [anon_sym___alignof] = ACTIONS(2249), + [anon_sym__alignof] = ACTIONS(2249), + [anon_sym_alignof] = ACTIONS(2249), + [anon_sym__Alignof] = ACTIONS(2249), + [anon_sym_offsetof] = ACTIONS(2249), + [anon_sym__Generic] = ACTIONS(2249), + [anon_sym_asm] = ACTIONS(2249), + [anon_sym___asm__] = ACTIONS(2249), + [sym_number_literal] = ACTIONS(2251), + [anon_sym_L_SQUOTE] = ACTIONS(2251), + [anon_sym_u_SQUOTE] = ACTIONS(2251), + [anon_sym_U_SQUOTE] = ACTIONS(2251), + [anon_sym_u8_SQUOTE] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_L_DQUOTE] = ACTIONS(2251), + [anon_sym_u_DQUOTE] = ACTIONS(2251), + [anon_sym_U_DQUOTE] = ACTIONS(2251), + [anon_sym_u8_DQUOTE] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(2251), + [sym_true] = ACTIONS(2249), + [sym_false] = ACTIONS(2249), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2249), + [anon_sym_decltype] = ACTIONS(2249), + [anon_sym_virtual] = ACTIONS(2249), + [anon_sym_alignas] = ACTIONS(2249), + [anon_sym_explicit] = ACTIONS(2249), + [anon_sym_typename] = ACTIONS(2249), + [anon_sym_template] = ACTIONS(2249), + [anon_sym_operator] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_delete] = ACTIONS(2249), + [anon_sym_throw] = ACTIONS(2249), + [anon_sym_namespace] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [anon_sym_static_assert] = ACTIONS(2249), + [anon_sym_concept] = ACTIONS(2249), + [anon_sym_co_return] = ACTIONS(2249), + [anon_sym_co_yield] = ACTIONS(2249), + [anon_sym_catch] = ACTIONS(2748), + [anon_sym_R_DQUOTE] = ACTIONS(2251), + [anon_sym_LR_DQUOTE] = ACTIONS(2251), + [anon_sym_uR_DQUOTE] = ACTIONS(2251), + [anon_sym_UR_DQUOTE] = ACTIONS(2251), + [anon_sym_u8R_DQUOTE] = ACTIONS(2251), + [anon_sym_co_await] = ACTIONS(2249), + [anon_sym_new] = ACTIONS(2249), + [anon_sym_requires] = ACTIONS(2249), + [sym_this] = ACTIONS(2249), }, - [241] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(754), - [sym_attributed_statement] = STATE(753), - [sym_labeled_statement] = STATE(751), - [sym_expression_statement] = STATE(750), - [sym_if_statement] = STATE(749), - [sym_switch_statement] = STATE(746), - [sym_case_statement] = STATE(745), - [sym_while_statement] = STATE(744), - [sym_do_statement] = STATE(743), - [sym_for_statement] = STATE(742), - [sym_return_statement] = STATE(741), - [sym_break_statement] = STATE(740), - [sym_continue_statement] = STATE(739), - [sym_goto_statement] = STATE(738), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(737), - [sym_co_return_statement] = STATE(736), - [sym_co_yield_statement] = STATE(735), - [sym_throw_statement] = STATE(733), - [sym_try_statement] = STATE(732), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [277] = { + [sym_catch_clause] = STATE(255), + [aux_sym_constructor_try_statement_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(2255), + [aux_sym_preproc_include_token1] = ACTIONS(2255), + [aux_sym_preproc_def_token1] = ACTIONS(2255), + [aux_sym_preproc_if_token1] = ACTIONS(2255), + [aux_sym_preproc_if_token2] = ACTIONS(2255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2255), + [aux_sym_preproc_else_token1] = ACTIONS(2255), + [aux_sym_preproc_elif_token1] = ACTIONS(2255), + [sym_preproc_directive] = ACTIONS(2255), + [anon_sym_LPAREN2] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_AMP_AMP] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2257), + [anon_sym___extension__] = ACTIONS(2255), + [anon_sym_typedef] = ACTIONS(2255), + [anon_sym_extern] = ACTIONS(2255), + [anon_sym___attribute__] = ACTIONS(2255), + [anon_sym_COLON_COLON] = ACTIONS(2257), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2257), + [anon_sym___declspec] = ACTIONS(2255), + [anon_sym___based] = ACTIONS(2255), + [anon_sym___cdecl] = ACTIONS(2255), + [anon_sym___clrcall] = ACTIONS(2255), + [anon_sym___stdcall] = ACTIONS(2255), + [anon_sym___fastcall] = ACTIONS(2255), + [anon_sym___thiscall] = ACTIONS(2255), + [anon_sym___vectorcall] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2257), + [anon_sym_signed] = ACTIONS(2255), + [anon_sym_unsigned] = ACTIONS(2255), + [anon_sym_long] = ACTIONS(2255), + [anon_sym_short] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_register] = ACTIONS(2255), + [anon_sym_inline] = ACTIONS(2255), + [anon_sym___inline] = ACTIONS(2255), + [anon_sym___inline__] = ACTIONS(2255), + [anon_sym___forceinline] = ACTIONS(2255), + [anon_sym_thread_local] = ACTIONS(2255), + [anon_sym___thread] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_constexpr] = ACTIONS(2255), + [anon_sym_volatile] = ACTIONS(2255), + [anon_sym_restrict] = ACTIONS(2255), + [anon_sym___restrict__] = ACTIONS(2255), + [anon_sym__Atomic] = ACTIONS(2255), + [anon_sym__Noreturn] = ACTIONS(2255), + [anon_sym_noreturn] = ACTIONS(2255), + [anon_sym_mutable] = ACTIONS(2255), + [anon_sym_constinit] = ACTIONS(2255), + [anon_sym_consteval] = ACTIONS(2255), + [sym_primitive_type] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [anon_sym_class] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(2255), + [anon_sym_union] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_switch] = ACTIONS(2255), + [anon_sym_case] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2255), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_goto] = ACTIONS(2255), + [anon_sym_not] = ACTIONS(2255), + [anon_sym_compl] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_sizeof] = ACTIONS(2255), + [anon_sym___alignof__] = ACTIONS(2255), + [anon_sym___alignof] = ACTIONS(2255), + [anon_sym__alignof] = ACTIONS(2255), + [anon_sym_alignof] = ACTIONS(2255), + [anon_sym__Alignof] = ACTIONS(2255), + [anon_sym_offsetof] = ACTIONS(2255), + [anon_sym__Generic] = ACTIONS(2255), + [anon_sym_asm] = ACTIONS(2255), + [anon_sym___asm__] = ACTIONS(2255), + [sym_number_literal] = ACTIONS(2257), + [anon_sym_L_SQUOTE] = ACTIONS(2257), + [anon_sym_u_SQUOTE] = ACTIONS(2257), + [anon_sym_U_SQUOTE] = ACTIONS(2257), + [anon_sym_u8_SQUOTE] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2257), + [anon_sym_L_DQUOTE] = ACTIONS(2257), + [anon_sym_u_DQUOTE] = ACTIONS(2257), + [anon_sym_U_DQUOTE] = ACTIONS(2257), + [anon_sym_u8_DQUOTE] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2257), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), + [anon_sym_NULL] = ACTIONS(2255), + [anon_sym_nullptr] = ACTIONS(2255), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2255), + [anon_sym_decltype] = ACTIONS(2255), + [anon_sym_virtual] = ACTIONS(2255), + [anon_sym_alignas] = ACTIONS(2255), + [anon_sym_explicit] = ACTIONS(2255), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(2255), + [anon_sym_operator] = ACTIONS(2255), + [anon_sym_try] = ACTIONS(2255), + [anon_sym_delete] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(2255), + [anon_sym_namespace] = ACTIONS(2255), + [anon_sym_using] = ACTIONS(2255), + [anon_sym_static_assert] = ACTIONS(2255), + [anon_sym_concept] = ACTIONS(2255), + [anon_sym_co_return] = ACTIONS(2255), + [anon_sym_co_yield] = ACTIONS(2255), + [anon_sym_catch] = ACTIONS(2748), + [anon_sym_R_DQUOTE] = ACTIONS(2257), + [anon_sym_LR_DQUOTE] = ACTIONS(2257), + [anon_sym_uR_DQUOTE] = ACTIONS(2257), + [anon_sym_UR_DQUOTE] = ACTIONS(2257), + [anon_sym_u8R_DQUOTE] = ACTIONS(2257), + [anon_sym_co_await] = ACTIONS(2255), + [anon_sym_new] = ACTIONS(2255), + [anon_sym_requires] = ACTIONS(2255), + [sym_this] = ACTIONS(2255), }, - [242] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(1169), - [sym_attributed_statement] = STATE(1169), - [sym_labeled_statement] = STATE(1169), - [sym_expression_statement] = STATE(1169), - [sym_if_statement] = STATE(1169), - [sym_switch_statement] = STATE(1169), - [sym_case_statement] = STATE(1169), - [sym_while_statement] = STATE(1169), - [sym_do_statement] = STATE(1169), - [sym_for_statement] = STATE(1169), - [sym_return_statement] = STATE(1169), - [sym_break_statement] = STATE(1169), - [sym_continue_statement] = STATE(1169), - [sym_goto_statement] = STATE(1169), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1169), - [sym_co_return_statement] = STATE(1169), - [sym_co_yield_statement] = STATE(1169), - [sym_throw_statement] = STATE(1169), - [sym_try_statement] = STATE(1169), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [278] = { + [sym_identifier] = ACTIONS(2812), + [aux_sym_preproc_include_token1] = ACTIONS(2812), + [aux_sym_preproc_def_token1] = ACTIONS(2812), + [aux_sym_preproc_if_token1] = ACTIONS(2812), + [aux_sym_preproc_if_token2] = ACTIONS(2812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2812), + [aux_sym_preproc_else_token1] = ACTIONS(2812), + [aux_sym_preproc_elif_token1] = ACTIONS(2812), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2812), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2812), + [sym_preproc_directive] = ACTIONS(2812), + [anon_sym_LPAREN2] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_TILDE] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_AMP_AMP] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym___extension__] = ACTIONS(2812), + [anon_sym_typedef] = ACTIONS(2812), + [anon_sym_extern] = ACTIONS(2812), + [anon_sym___attribute__] = ACTIONS(2812), + [anon_sym_COLON_COLON] = ACTIONS(2814), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2814), + [anon_sym___declspec] = ACTIONS(2812), + [anon_sym___based] = ACTIONS(2812), + [anon_sym___cdecl] = ACTIONS(2812), + [anon_sym___clrcall] = ACTIONS(2812), + [anon_sym___stdcall] = ACTIONS(2812), + [anon_sym___fastcall] = ACTIONS(2812), + [anon_sym___thiscall] = ACTIONS(2812), + [anon_sym___vectorcall] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_signed] = ACTIONS(2812), + [anon_sym_unsigned] = ACTIONS(2812), + [anon_sym_long] = ACTIONS(2812), + [anon_sym_short] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_register] = ACTIONS(2812), + [anon_sym_inline] = ACTIONS(2812), + [anon_sym___inline] = ACTIONS(2812), + [anon_sym___inline__] = ACTIONS(2812), + [anon_sym___forceinline] = ACTIONS(2812), + [anon_sym_thread_local] = ACTIONS(2812), + [anon_sym___thread] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_constexpr] = ACTIONS(2812), + [anon_sym_volatile] = ACTIONS(2812), + [anon_sym_restrict] = ACTIONS(2812), + [anon_sym___restrict__] = ACTIONS(2812), + [anon_sym__Atomic] = ACTIONS(2812), + [anon_sym__Noreturn] = ACTIONS(2812), + [anon_sym_noreturn] = ACTIONS(2812), + [anon_sym_mutable] = ACTIONS(2812), + [anon_sym_constinit] = ACTIONS(2812), + [anon_sym_consteval] = ACTIONS(2812), + [sym_primitive_type] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_class] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_union] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_else] = ACTIONS(2812), + [anon_sym_switch] = ACTIONS(2812), + [anon_sym_case] = ACTIONS(2812), + [anon_sym_default] = ACTIONS(2812), + [anon_sym_while] = ACTIONS(2812), + [anon_sym_do] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_goto] = ACTIONS(2812), + [anon_sym_not] = ACTIONS(2812), + [anon_sym_compl] = ACTIONS(2812), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_sizeof] = ACTIONS(2812), + [anon_sym___alignof__] = ACTIONS(2812), + [anon_sym___alignof] = ACTIONS(2812), + [anon_sym__alignof] = ACTIONS(2812), + [anon_sym_alignof] = ACTIONS(2812), + [anon_sym__Alignof] = ACTIONS(2812), + [anon_sym_offsetof] = ACTIONS(2812), + [anon_sym__Generic] = ACTIONS(2812), + [anon_sym_asm] = ACTIONS(2812), + [anon_sym___asm__] = ACTIONS(2812), + [sym_number_literal] = ACTIONS(2814), + [anon_sym_L_SQUOTE] = ACTIONS(2814), + [anon_sym_u_SQUOTE] = ACTIONS(2814), + [anon_sym_U_SQUOTE] = ACTIONS(2814), + [anon_sym_u8_SQUOTE] = ACTIONS(2814), + [anon_sym_SQUOTE] = ACTIONS(2814), + [anon_sym_L_DQUOTE] = ACTIONS(2814), + [anon_sym_u_DQUOTE] = ACTIONS(2814), + [anon_sym_U_DQUOTE] = ACTIONS(2814), + [anon_sym_u8_DQUOTE] = ACTIONS(2814), + [anon_sym_DQUOTE] = ACTIONS(2814), + [sym_true] = ACTIONS(2812), + [sym_false] = ACTIONS(2812), + [anon_sym_NULL] = ACTIONS(2812), + [anon_sym_nullptr] = ACTIONS(2812), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2812), + [anon_sym_decltype] = ACTIONS(2812), + [anon_sym_virtual] = ACTIONS(2812), + [anon_sym_alignas] = ACTIONS(2812), + [anon_sym_explicit] = ACTIONS(2812), + [anon_sym_typename] = ACTIONS(2812), + [anon_sym_template] = ACTIONS(2812), + [anon_sym_operator] = ACTIONS(2812), + [anon_sym_try] = ACTIONS(2812), + [anon_sym_delete] = ACTIONS(2812), + [anon_sym_throw] = ACTIONS(2812), + [anon_sym_namespace] = ACTIONS(2812), + [anon_sym_using] = ACTIONS(2812), + [anon_sym_static_assert] = ACTIONS(2812), + [anon_sym_concept] = ACTIONS(2812), + [anon_sym_co_return] = ACTIONS(2812), + [anon_sym_co_yield] = ACTIONS(2812), + [anon_sym_R_DQUOTE] = ACTIONS(2814), + [anon_sym_LR_DQUOTE] = ACTIONS(2814), + [anon_sym_uR_DQUOTE] = ACTIONS(2814), + [anon_sym_UR_DQUOTE] = ACTIONS(2814), + [anon_sym_u8R_DQUOTE] = ACTIONS(2814), + [anon_sym_co_await] = ACTIONS(2812), + [anon_sym_new] = ACTIONS(2812), + [anon_sym_requires] = ACTIONS(2812), + [sym_this] = ACTIONS(2812), }, - [243] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(721), - [sym_attributed_statement] = STATE(722), - [sym_labeled_statement] = STATE(723), - [sym_expression_statement] = STATE(727), - [sym_if_statement] = STATE(728), - [sym_switch_statement] = STATE(691), - [sym_case_statement] = STATE(769), - [sym_while_statement] = STATE(768), - [sym_do_statement] = STATE(767), - [sym_for_statement] = STATE(766), - [sym_return_statement] = STATE(725), - [sym_break_statement] = STATE(666), - [sym_continue_statement] = STATE(765), - [sym_goto_statement] = STATE(763), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(762), - [sym_co_return_statement] = STATE(761), - [sym_co_yield_statement] = STATE(760), - [sym_throw_statement] = STATE(756), - [sym_try_statement] = STATE(755), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [279] = { + [sym_identifier] = ACTIONS(2816), + [aux_sym_preproc_include_token1] = ACTIONS(2816), + [aux_sym_preproc_def_token1] = ACTIONS(2816), + [aux_sym_preproc_if_token1] = ACTIONS(2816), + [aux_sym_preproc_if_token2] = ACTIONS(2816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2816), + [aux_sym_preproc_else_token1] = ACTIONS(2816), + [aux_sym_preproc_elif_token1] = ACTIONS(2816), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2816), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2816), + [sym_preproc_directive] = ACTIONS(2816), + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2816), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym___extension__] = ACTIONS(2816), + [anon_sym_typedef] = ACTIONS(2816), + [anon_sym_extern] = ACTIONS(2816), + [anon_sym___attribute__] = ACTIONS(2816), + [anon_sym_COLON_COLON] = ACTIONS(2818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2818), + [anon_sym___declspec] = ACTIONS(2816), + [anon_sym___based] = ACTIONS(2816), + [anon_sym___cdecl] = ACTIONS(2816), + [anon_sym___clrcall] = ACTIONS(2816), + [anon_sym___stdcall] = ACTIONS(2816), + [anon_sym___fastcall] = ACTIONS(2816), + [anon_sym___thiscall] = ACTIONS(2816), + [anon_sym___vectorcall] = ACTIONS(2816), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_signed] = ACTIONS(2816), + [anon_sym_unsigned] = ACTIONS(2816), + [anon_sym_long] = ACTIONS(2816), + [anon_sym_short] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_register] = ACTIONS(2816), + [anon_sym_inline] = ACTIONS(2816), + [anon_sym___inline] = ACTIONS(2816), + [anon_sym___inline__] = ACTIONS(2816), + [anon_sym___forceinline] = ACTIONS(2816), + [anon_sym_thread_local] = ACTIONS(2816), + [anon_sym___thread] = ACTIONS(2816), + [anon_sym_const] = ACTIONS(2816), + [anon_sym_constexpr] = ACTIONS(2816), + [anon_sym_volatile] = ACTIONS(2816), + [anon_sym_restrict] = ACTIONS(2816), + [anon_sym___restrict__] = ACTIONS(2816), + [anon_sym__Atomic] = ACTIONS(2816), + [anon_sym__Noreturn] = ACTIONS(2816), + [anon_sym_noreturn] = ACTIONS(2816), + [anon_sym_mutable] = ACTIONS(2816), + [anon_sym_constinit] = ACTIONS(2816), + [anon_sym_consteval] = ACTIONS(2816), + [sym_primitive_type] = ACTIONS(2816), + [anon_sym_enum] = ACTIONS(2816), + [anon_sym_class] = ACTIONS(2816), + [anon_sym_struct] = ACTIONS(2816), + [anon_sym_union] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_else] = ACTIONS(2816), + [anon_sym_switch] = ACTIONS(2816), + [anon_sym_case] = ACTIONS(2816), + [anon_sym_default] = ACTIONS(2816), + [anon_sym_while] = ACTIONS(2816), + [anon_sym_do] = ACTIONS(2816), + [anon_sym_for] = ACTIONS(2816), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_break] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_goto] = ACTIONS(2816), + [anon_sym_not] = ACTIONS(2816), + [anon_sym_compl] = ACTIONS(2816), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_sizeof] = ACTIONS(2816), + [anon_sym___alignof__] = ACTIONS(2816), + [anon_sym___alignof] = ACTIONS(2816), + [anon_sym__alignof] = ACTIONS(2816), + [anon_sym_alignof] = ACTIONS(2816), + [anon_sym__Alignof] = ACTIONS(2816), + [anon_sym_offsetof] = ACTIONS(2816), + [anon_sym__Generic] = ACTIONS(2816), + [anon_sym_asm] = ACTIONS(2816), + [anon_sym___asm__] = ACTIONS(2816), + [sym_number_literal] = ACTIONS(2818), + [anon_sym_L_SQUOTE] = ACTIONS(2818), + [anon_sym_u_SQUOTE] = ACTIONS(2818), + [anon_sym_U_SQUOTE] = ACTIONS(2818), + [anon_sym_u8_SQUOTE] = ACTIONS(2818), + [anon_sym_SQUOTE] = ACTIONS(2818), + [anon_sym_L_DQUOTE] = ACTIONS(2818), + [anon_sym_u_DQUOTE] = ACTIONS(2818), + [anon_sym_U_DQUOTE] = ACTIONS(2818), + [anon_sym_u8_DQUOTE] = ACTIONS(2818), + [anon_sym_DQUOTE] = ACTIONS(2818), + [sym_true] = ACTIONS(2816), + [sym_false] = ACTIONS(2816), + [anon_sym_NULL] = ACTIONS(2816), + [anon_sym_nullptr] = ACTIONS(2816), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2816), + [anon_sym_decltype] = ACTIONS(2816), + [anon_sym_virtual] = ACTIONS(2816), + [anon_sym_alignas] = ACTIONS(2816), + [anon_sym_explicit] = ACTIONS(2816), + [anon_sym_typename] = ACTIONS(2816), + [anon_sym_template] = ACTIONS(2816), + [anon_sym_operator] = ACTIONS(2816), + [anon_sym_try] = ACTIONS(2816), + [anon_sym_delete] = ACTIONS(2816), + [anon_sym_throw] = ACTIONS(2816), + [anon_sym_namespace] = ACTIONS(2816), + [anon_sym_using] = ACTIONS(2816), + [anon_sym_static_assert] = ACTIONS(2816), + [anon_sym_concept] = ACTIONS(2816), + [anon_sym_co_return] = ACTIONS(2816), + [anon_sym_co_yield] = ACTIONS(2816), + [anon_sym_R_DQUOTE] = ACTIONS(2818), + [anon_sym_LR_DQUOTE] = ACTIONS(2818), + [anon_sym_uR_DQUOTE] = ACTIONS(2818), + [anon_sym_UR_DQUOTE] = ACTIONS(2818), + [anon_sym_u8R_DQUOTE] = ACTIONS(2818), + [anon_sym_co_await] = ACTIONS(2816), + [anon_sym_new] = ACTIONS(2816), + [anon_sym_requires] = ACTIONS(2816), + [sym_this] = ACTIONS(2816), }, - [244] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(720), - [sym_attributed_statement] = STATE(720), - [sym_labeled_statement] = STATE(720), - [sym_expression_statement] = STATE(720), - [sym_if_statement] = STATE(720), - [sym_switch_statement] = STATE(720), - [sym_case_statement] = STATE(720), - [sym_while_statement] = STATE(720), - [sym_do_statement] = STATE(720), - [sym_for_statement] = STATE(720), - [sym_return_statement] = STATE(720), - [sym_break_statement] = STATE(720), - [sym_continue_statement] = STATE(720), - [sym_goto_statement] = STATE(720), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(720), - [sym_co_return_statement] = STATE(720), - [sym_co_yield_statement] = STATE(720), - [sym_throw_statement] = STATE(720), - [sym_try_statement] = STATE(720), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [280] = { + [sym_identifier] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token2] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [aux_sym_preproc_else_token1] = ACTIONS(2820), + [aux_sym_preproc_elif_token1] = ACTIONS(2820), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_AMP_AMP] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym_COLON_COLON] = ACTIONS(2822), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym___based] = ACTIONS(2820), + [anon_sym___cdecl] = ACTIONS(2820), + [anon_sym___clrcall] = ACTIONS(2820), + [anon_sym___stdcall] = ACTIONS(2820), + [anon_sym___fastcall] = ACTIONS(2820), + [anon_sym___thiscall] = ACTIONS(2820), + [anon_sym___vectorcall] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_mutable] = ACTIONS(2820), + [anon_sym_constinit] = ACTIONS(2820), + [anon_sym_consteval] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_class] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_else] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_not] = ACTIONS(2820), + [anon_sym_compl] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2820), + [anon_sym_decltype] = ACTIONS(2820), + [anon_sym_virtual] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym_explicit] = ACTIONS(2820), + [anon_sym_typename] = ACTIONS(2820), + [anon_sym_template] = ACTIONS(2820), + [anon_sym_operator] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(2820), + [anon_sym_delete] = ACTIONS(2820), + [anon_sym_throw] = ACTIONS(2820), + [anon_sym_namespace] = ACTIONS(2820), + [anon_sym_using] = ACTIONS(2820), + [anon_sym_static_assert] = ACTIONS(2820), + [anon_sym_concept] = ACTIONS(2820), + [anon_sym_co_return] = ACTIONS(2820), + [anon_sym_co_yield] = ACTIONS(2820), + [anon_sym_R_DQUOTE] = ACTIONS(2822), + [anon_sym_LR_DQUOTE] = ACTIONS(2822), + [anon_sym_uR_DQUOTE] = ACTIONS(2822), + [anon_sym_UR_DQUOTE] = ACTIONS(2822), + [anon_sym_u8R_DQUOTE] = ACTIONS(2822), + [anon_sym_co_await] = ACTIONS(2820), + [anon_sym_new] = ACTIONS(2820), + [anon_sym_requires] = ACTIONS(2820), + [sym_this] = ACTIONS(2820), }, - [245] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(1251), - [sym_attributed_statement] = STATE(1251), - [sym_labeled_statement] = STATE(1251), - [sym_expression_statement] = STATE(1251), - [sym_if_statement] = STATE(1251), - [sym_switch_statement] = STATE(1251), - [sym_case_statement] = STATE(1251), - [sym_while_statement] = STATE(1251), - [sym_do_statement] = STATE(1251), - [sym_for_statement] = STATE(1251), - [sym_return_statement] = STATE(1251), - [sym_break_statement] = STATE(1251), - [sym_continue_statement] = STATE(1251), - [sym_goto_statement] = STATE(1251), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1251), - [sym_co_return_statement] = STATE(1251), - [sym_co_yield_statement] = STATE(1251), - [sym_throw_statement] = STATE(1251), - [sym_try_statement] = STATE(1251), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [281] = { + [sym_identifier] = ACTIONS(2824), + [aux_sym_preproc_include_token1] = ACTIONS(2824), + [aux_sym_preproc_def_token1] = ACTIONS(2824), + [aux_sym_preproc_if_token1] = ACTIONS(2824), + [aux_sym_preproc_if_token2] = ACTIONS(2824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2824), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2824), + [aux_sym_preproc_else_token1] = ACTIONS(2824), + [aux_sym_preproc_elif_token1] = ACTIONS(2824), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2824), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2824), + [sym_preproc_directive] = ACTIONS(2824), + [anon_sym_LPAREN2] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_PLUS] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2826), + [anon_sym_AMP_AMP] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym___extension__] = ACTIONS(2824), + [anon_sym_typedef] = ACTIONS(2824), + [anon_sym_extern] = ACTIONS(2824), + [anon_sym___attribute__] = ACTIONS(2824), + [anon_sym_COLON_COLON] = ACTIONS(2826), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2826), + [anon_sym___declspec] = ACTIONS(2824), + [anon_sym___based] = ACTIONS(2824), + [anon_sym___cdecl] = ACTIONS(2824), + [anon_sym___clrcall] = ACTIONS(2824), + [anon_sym___stdcall] = ACTIONS(2824), + [anon_sym___fastcall] = ACTIONS(2824), + [anon_sym___thiscall] = ACTIONS(2824), + [anon_sym___vectorcall] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_signed] = ACTIONS(2824), + [anon_sym_unsigned] = ACTIONS(2824), + [anon_sym_long] = ACTIONS(2824), + [anon_sym_short] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_register] = ACTIONS(2824), + [anon_sym_inline] = ACTIONS(2824), + [anon_sym___inline] = ACTIONS(2824), + [anon_sym___inline__] = ACTIONS(2824), + [anon_sym___forceinline] = ACTIONS(2824), + [anon_sym_thread_local] = ACTIONS(2824), + [anon_sym___thread] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2824), + [anon_sym_constexpr] = ACTIONS(2824), + [anon_sym_volatile] = ACTIONS(2824), + [anon_sym_restrict] = ACTIONS(2824), + [anon_sym___restrict__] = ACTIONS(2824), + [anon_sym__Atomic] = ACTIONS(2824), + [anon_sym__Noreturn] = ACTIONS(2824), + [anon_sym_noreturn] = ACTIONS(2824), + [anon_sym_mutable] = ACTIONS(2824), + [anon_sym_constinit] = ACTIONS(2824), + [anon_sym_consteval] = ACTIONS(2824), + [sym_primitive_type] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [anon_sym_class] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2824), + [anon_sym_union] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_else] = ACTIONS(2824), + [anon_sym_switch] = ACTIONS(2824), + [anon_sym_case] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_do] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_goto] = ACTIONS(2824), + [anon_sym_not] = ACTIONS(2824), + [anon_sym_compl] = ACTIONS(2824), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_sizeof] = ACTIONS(2824), + [anon_sym___alignof__] = ACTIONS(2824), + [anon_sym___alignof] = ACTIONS(2824), + [anon_sym__alignof] = ACTIONS(2824), + [anon_sym_alignof] = ACTIONS(2824), + [anon_sym__Alignof] = ACTIONS(2824), + [anon_sym_offsetof] = ACTIONS(2824), + [anon_sym__Generic] = ACTIONS(2824), + [anon_sym_asm] = ACTIONS(2824), + [anon_sym___asm__] = ACTIONS(2824), + [sym_number_literal] = ACTIONS(2826), + [anon_sym_L_SQUOTE] = ACTIONS(2826), + [anon_sym_u_SQUOTE] = ACTIONS(2826), + [anon_sym_U_SQUOTE] = ACTIONS(2826), + [anon_sym_u8_SQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_L_DQUOTE] = ACTIONS(2826), + [anon_sym_u_DQUOTE] = ACTIONS(2826), + [anon_sym_U_DQUOTE] = ACTIONS(2826), + [anon_sym_u8_DQUOTE] = ACTIONS(2826), + [anon_sym_DQUOTE] = ACTIONS(2826), + [sym_true] = ACTIONS(2824), + [sym_false] = ACTIONS(2824), + [anon_sym_NULL] = ACTIONS(2824), + [anon_sym_nullptr] = ACTIONS(2824), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2824), + [anon_sym_decltype] = ACTIONS(2824), + [anon_sym_virtual] = ACTIONS(2824), + [anon_sym_alignas] = ACTIONS(2824), + [anon_sym_explicit] = ACTIONS(2824), + [anon_sym_typename] = ACTIONS(2824), + [anon_sym_template] = ACTIONS(2824), + [anon_sym_operator] = ACTIONS(2824), + [anon_sym_try] = ACTIONS(2824), + [anon_sym_delete] = ACTIONS(2824), + [anon_sym_throw] = ACTIONS(2824), + [anon_sym_namespace] = ACTIONS(2824), + [anon_sym_using] = ACTIONS(2824), + [anon_sym_static_assert] = ACTIONS(2824), + [anon_sym_concept] = ACTIONS(2824), + [anon_sym_co_return] = ACTIONS(2824), + [anon_sym_co_yield] = ACTIONS(2824), + [anon_sym_R_DQUOTE] = ACTIONS(2826), + [anon_sym_LR_DQUOTE] = ACTIONS(2826), + [anon_sym_uR_DQUOTE] = ACTIONS(2826), + [anon_sym_UR_DQUOTE] = ACTIONS(2826), + [anon_sym_u8R_DQUOTE] = ACTIONS(2826), + [anon_sym_co_await] = ACTIONS(2824), + [anon_sym_new] = ACTIONS(2824), + [anon_sym_requires] = ACTIONS(2824), + [sym_this] = ACTIONS(2824), }, - [246] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(1224), - [sym_attributed_statement] = STATE(1224), - [sym_labeled_statement] = STATE(1224), - [sym_expression_statement] = STATE(1224), - [sym_if_statement] = STATE(1224), - [sym_switch_statement] = STATE(1224), - [sym_case_statement] = STATE(1224), - [sym_while_statement] = STATE(1224), - [sym_do_statement] = STATE(1224), - [sym_for_statement] = STATE(1224), - [sym_return_statement] = STATE(1224), - [sym_break_statement] = STATE(1224), - [sym_continue_statement] = STATE(1224), - [sym_goto_statement] = STATE(1224), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1224), - [sym_co_return_statement] = STATE(1224), - [sym_co_yield_statement] = STATE(1224), - [sym_throw_statement] = STATE(1224), - [sym_try_statement] = STATE(1224), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [282] = { + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_include_token1] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token2] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [aux_sym_preproc_else_token1] = ACTIONS(2138), + [aux_sym_preproc_elif_token1] = ACTIONS(2138), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2828), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym___cdecl] = ACTIONS(2138), + [anon_sym___clrcall] = ACTIONS(2138), + [anon_sym___stdcall] = ACTIONS(2138), + [anon_sym___fastcall] = ACTIONS(2138), + [anon_sym___thiscall] = ACTIONS(2138), + [anon_sym___vectorcall] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_goto] = ACTIONS(2138), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_compl] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_PLUS_PLUS] = ACTIONS(2136), + [anon_sym_sizeof] = ACTIONS(2138), + [anon_sym___alignof__] = ACTIONS(2138), + [anon_sym___alignof] = ACTIONS(2138), + [anon_sym__alignof] = ACTIONS(2138), + [anon_sym_alignof] = ACTIONS(2138), + [anon_sym__Alignof] = ACTIONS(2138), + [anon_sym_offsetof] = ACTIONS(2138), + [anon_sym__Generic] = ACTIONS(2138), + [anon_sym_asm] = ACTIONS(2138), + [anon_sym___asm__] = ACTIONS(2138), + [sym_number_literal] = ACTIONS(2136), + [anon_sym_L_SQUOTE] = ACTIONS(2136), + [anon_sym_u_SQUOTE] = ACTIONS(2136), + [anon_sym_U_SQUOTE] = ACTIONS(2136), + [anon_sym_u8_SQUOTE] = ACTIONS(2136), + [anon_sym_SQUOTE] = ACTIONS(2136), + [anon_sym_L_DQUOTE] = ACTIONS(2136), + [anon_sym_u_DQUOTE] = ACTIONS(2136), + [anon_sym_U_DQUOTE] = ACTIONS(2136), + [anon_sym_u8_DQUOTE] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2136), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [anon_sym_NULL] = ACTIONS(2138), + [anon_sym_nullptr] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), + [anon_sym_concept] = ACTIONS(2138), + [anon_sym_co_return] = ACTIONS(2138), + [anon_sym_co_yield] = ACTIONS(2138), + [anon_sym_R_DQUOTE] = ACTIONS(2136), + [anon_sym_LR_DQUOTE] = ACTIONS(2136), + [anon_sym_uR_DQUOTE] = ACTIONS(2136), + [anon_sym_UR_DQUOTE] = ACTIONS(2136), + [anon_sym_u8R_DQUOTE] = ACTIONS(2136), + [anon_sym_co_await] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_requires] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), }, - [247] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3912), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9086), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9235), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9224), - [sym__unary_right_fold] = STATE(9222), - [sym__binary_fold] = STATE(9210), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [283] = { + [sym_identifier] = ACTIONS(2830), + [aux_sym_preproc_include_token1] = ACTIONS(2830), + [aux_sym_preproc_def_token1] = ACTIONS(2830), + [aux_sym_preproc_if_token1] = ACTIONS(2830), + [aux_sym_preproc_if_token2] = ACTIONS(2830), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2830), + [aux_sym_preproc_else_token1] = ACTIONS(2830), + [aux_sym_preproc_elif_token1] = ACTIONS(2830), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2830), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2830), + [sym_preproc_directive] = ACTIONS(2830), + [anon_sym_LPAREN2] = ACTIONS(2832), + [anon_sym_BANG] = ACTIONS(2832), + [anon_sym_TILDE] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2830), + [anon_sym_PLUS] = ACTIONS(2830), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_AMP_AMP] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2832), + [anon_sym___extension__] = ACTIONS(2830), + [anon_sym_typedef] = ACTIONS(2830), + [anon_sym_extern] = ACTIONS(2830), + [anon_sym___attribute__] = ACTIONS(2830), + [anon_sym_COLON_COLON] = ACTIONS(2832), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2832), + [anon_sym___declspec] = ACTIONS(2830), + [anon_sym___based] = ACTIONS(2830), + [anon_sym___cdecl] = ACTIONS(2830), + [anon_sym___clrcall] = ACTIONS(2830), + [anon_sym___stdcall] = ACTIONS(2830), + [anon_sym___fastcall] = ACTIONS(2830), + [anon_sym___thiscall] = ACTIONS(2830), + [anon_sym___vectorcall] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_signed] = ACTIONS(2830), + [anon_sym_unsigned] = ACTIONS(2830), + [anon_sym_long] = ACTIONS(2830), + [anon_sym_short] = ACTIONS(2830), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2830), + [anon_sym_register] = ACTIONS(2830), + [anon_sym_inline] = ACTIONS(2830), + [anon_sym___inline] = ACTIONS(2830), + [anon_sym___inline__] = ACTIONS(2830), + [anon_sym___forceinline] = ACTIONS(2830), + [anon_sym_thread_local] = ACTIONS(2830), + [anon_sym___thread] = ACTIONS(2830), + [anon_sym_const] = ACTIONS(2830), + [anon_sym_constexpr] = ACTIONS(2830), + [anon_sym_volatile] = ACTIONS(2830), + [anon_sym_restrict] = ACTIONS(2830), + [anon_sym___restrict__] = ACTIONS(2830), + [anon_sym__Atomic] = ACTIONS(2830), + [anon_sym__Noreturn] = ACTIONS(2830), + [anon_sym_noreturn] = ACTIONS(2830), + [anon_sym_mutable] = ACTIONS(2830), + [anon_sym_constinit] = ACTIONS(2830), + [anon_sym_consteval] = ACTIONS(2830), + [sym_primitive_type] = ACTIONS(2830), + [anon_sym_enum] = ACTIONS(2830), + [anon_sym_class] = ACTIONS(2830), + [anon_sym_struct] = ACTIONS(2830), + [anon_sym_union] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2830), + [anon_sym_else] = ACTIONS(2830), + [anon_sym_switch] = ACTIONS(2830), + [anon_sym_case] = ACTIONS(2830), + [anon_sym_default] = ACTIONS(2830), + [anon_sym_while] = ACTIONS(2830), + [anon_sym_do] = ACTIONS(2830), + [anon_sym_for] = ACTIONS(2830), + [anon_sym_return] = ACTIONS(2830), + [anon_sym_break] = ACTIONS(2830), + [anon_sym_continue] = ACTIONS(2830), + [anon_sym_goto] = ACTIONS(2830), + [anon_sym_not] = ACTIONS(2830), + [anon_sym_compl] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_sizeof] = ACTIONS(2830), + [anon_sym___alignof__] = ACTIONS(2830), + [anon_sym___alignof] = ACTIONS(2830), + [anon_sym__alignof] = ACTIONS(2830), + [anon_sym_alignof] = ACTIONS(2830), + [anon_sym__Alignof] = ACTIONS(2830), + [anon_sym_offsetof] = ACTIONS(2830), + [anon_sym__Generic] = ACTIONS(2830), + [anon_sym_asm] = ACTIONS(2830), + [anon_sym___asm__] = ACTIONS(2830), + [sym_number_literal] = ACTIONS(2832), + [anon_sym_L_SQUOTE] = ACTIONS(2832), + [anon_sym_u_SQUOTE] = ACTIONS(2832), + [anon_sym_U_SQUOTE] = ACTIONS(2832), + [anon_sym_u8_SQUOTE] = ACTIONS(2832), + [anon_sym_SQUOTE] = ACTIONS(2832), + [anon_sym_L_DQUOTE] = ACTIONS(2832), + [anon_sym_u_DQUOTE] = ACTIONS(2832), + [anon_sym_U_DQUOTE] = ACTIONS(2832), + [anon_sym_u8_DQUOTE] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [anon_sym_NULL] = ACTIONS(2830), + [anon_sym_nullptr] = ACTIONS(2830), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2830), + [anon_sym_decltype] = ACTIONS(2830), + [anon_sym_virtual] = ACTIONS(2830), + [anon_sym_alignas] = ACTIONS(2830), + [anon_sym_explicit] = ACTIONS(2830), + [anon_sym_typename] = ACTIONS(2830), + [anon_sym_template] = ACTIONS(2830), + [anon_sym_operator] = ACTIONS(2830), + [anon_sym_try] = ACTIONS(2830), + [anon_sym_delete] = ACTIONS(2830), + [anon_sym_throw] = ACTIONS(2830), + [anon_sym_namespace] = ACTIONS(2830), + [anon_sym_using] = ACTIONS(2830), + [anon_sym_static_assert] = ACTIONS(2830), + [anon_sym_concept] = ACTIONS(2830), + [anon_sym_co_return] = ACTIONS(2830), + [anon_sym_co_yield] = ACTIONS(2830), + [anon_sym_R_DQUOTE] = ACTIONS(2832), + [anon_sym_LR_DQUOTE] = ACTIONS(2832), + [anon_sym_uR_DQUOTE] = ACTIONS(2832), + [anon_sym_UR_DQUOTE] = ACTIONS(2832), + [anon_sym_u8R_DQUOTE] = ACTIONS(2832), + [anon_sym_co_await] = ACTIONS(2830), + [anon_sym_new] = ACTIONS(2830), + [anon_sym_requires] = ACTIONS(2830), + [sym_this] = ACTIONS(2830), }, - [248] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(1144), - [sym_attributed_statement] = STATE(1144), - [sym_labeled_statement] = STATE(1144), - [sym_expression_statement] = STATE(1144), - [sym_if_statement] = STATE(1144), - [sym_switch_statement] = STATE(1144), - [sym_case_statement] = STATE(1144), - [sym_while_statement] = STATE(1144), - [sym_do_statement] = STATE(1144), - [sym_for_statement] = STATE(1144), - [sym_return_statement] = STATE(1144), - [sym_break_statement] = STATE(1144), - [sym_continue_statement] = STATE(1144), - [sym_goto_statement] = STATE(1144), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1144), - [sym_co_return_statement] = STATE(1144), - [sym_co_yield_statement] = STATE(1144), - [sym_throw_statement] = STATE(1144), - [sym_try_statement] = STATE(1144), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), + [284] = { + [sym__expression] = STATE(4056), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7793), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -94114,23 +95631,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym___extension__] = ACTIONS(2808), + [anon_sym_extern] = ACTIONS(2808), + [anon_sym___attribute__] = ACTIONS(2808), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2810), + [anon_sym___declspec] = ACTIONS(2808), + [anon_sym_signed] = ACTIONS(2808), + [anon_sym_unsigned] = ACTIONS(2808), + [anon_sym_long] = ACTIONS(2808), + [anon_sym_short] = ACTIONS(2808), [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2808), + [anon_sym_register] = ACTIONS(2808), + [anon_sym_inline] = ACTIONS(2808), + [anon_sym___inline] = ACTIONS(2808), + [anon_sym___inline__] = ACTIONS(2808), + [anon_sym___forceinline] = ACTIONS(2808), + [anon_sym_thread_local] = ACTIONS(2808), + [anon_sym___thread] = ACTIONS(2808), + [anon_sym_const] = ACTIONS(2808), + [anon_sym_constexpr] = ACTIONS(2808), + [anon_sym_volatile] = ACTIONS(2808), + [anon_sym_restrict] = ACTIONS(2808), + [anon_sym___restrict__] = ACTIONS(2808), + [anon_sym__Atomic] = ACTIONS(2808), + [anon_sym__Noreturn] = ACTIONS(2808), + [anon_sym_noreturn] = ACTIONS(2808), + [anon_sym_mutable] = ACTIONS(2808), + [anon_sym_constinit] = ACTIONS(2808), + [anon_sym_consteval] = ACTIONS(2808), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2808), + [anon_sym_class] = ACTIONS(2808), + [anon_sym_struct] = ACTIONS(2808), + [anon_sym_union] = ACTIONS(2808), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -94161,13 +95697,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(2808), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(2808), + [anon_sym_alignas] = ACTIONS(2808), + [anon_sym_typename] = ACTIONS(2808), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -94178,3918 +95714,6692 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [249] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(1104), - [sym_attributed_statement] = STATE(1104), - [sym_labeled_statement] = STATE(1104), - [sym_expression_statement] = STATE(1104), - [sym_if_statement] = STATE(1104), - [sym_switch_statement] = STATE(1104), - [sym_case_statement] = STATE(1104), - [sym_while_statement] = STATE(1104), - [sym_do_statement] = STATE(1104), - [sym_for_statement] = STATE(1104), - [sym_return_statement] = STATE(1104), - [sym_break_statement] = STATE(1104), - [sym_continue_statement] = STATE(1104), - [sym_goto_statement] = STATE(1104), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1104), - [sym_co_return_statement] = STATE(1104), - [sym_co_yield_statement] = STATE(1104), - [sym_throw_statement] = STATE(1104), - [sym_try_statement] = STATE(1104), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [285] = { + [sym_identifier] = ACTIONS(2836), + [aux_sym_preproc_include_token1] = ACTIONS(2836), + [aux_sym_preproc_def_token1] = ACTIONS(2836), + [aux_sym_preproc_if_token1] = ACTIONS(2836), + [aux_sym_preproc_if_token2] = ACTIONS(2836), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2836), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2836), + [aux_sym_preproc_else_token1] = ACTIONS(2836), + [aux_sym_preproc_elif_token1] = ACTIONS(2836), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2836), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2836), + [sym_preproc_directive] = ACTIONS(2836), + [anon_sym_LPAREN2] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(2838), + [anon_sym_TILDE] = ACTIONS(2838), + [anon_sym_DASH] = ACTIONS(2836), + [anon_sym_PLUS] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_AMP_AMP] = ACTIONS(2838), + [anon_sym_AMP] = ACTIONS(2836), + [anon_sym_SEMI] = ACTIONS(2838), + [anon_sym___extension__] = ACTIONS(2836), + [anon_sym_typedef] = ACTIONS(2836), + [anon_sym_extern] = ACTIONS(2836), + [anon_sym___attribute__] = ACTIONS(2836), + [anon_sym_COLON_COLON] = ACTIONS(2838), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2838), + [anon_sym___declspec] = ACTIONS(2836), + [anon_sym___based] = ACTIONS(2836), + [anon_sym___cdecl] = ACTIONS(2836), + [anon_sym___clrcall] = ACTIONS(2836), + [anon_sym___stdcall] = ACTIONS(2836), + [anon_sym___fastcall] = ACTIONS(2836), + [anon_sym___thiscall] = ACTIONS(2836), + [anon_sym___vectorcall] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_signed] = ACTIONS(2836), + [anon_sym_unsigned] = ACTIONS(2836), + [anon_sym_long] = ACTIONS(2836), + [anon_sym_short] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_static] = ACTIONS(2836), + [anon_sym_register] = ACTIONS(2836), + [anon_sym_inline] = ACTIONS(2836), + [anon_sym___inline] = ACTIONS(2836), + [anon_sym___inline__] = ACTIONS(2836), + [anon_sym___forceinline] = ACTIONS(2836), + [anon_sym_thread_local] = ACTIONS(2836), + [anon_sym___thread] = ACTIONS(2836), + [anon_sym_const] = ACTIONS(2836), + [anon_sym_constexpr] = ACTIONS(2836), + [anon_sym_volatile] = ACTIONS(2836), + [anon_sym_restrict] = ACTIONS(2836), + [anon_sym___restrict__] = ACTIONS(2836), + [anon_sym__Atomic] = ACTIONS(2836), + [anon_sym__Noreturn] = ACTIONS(2836), + [anon_sym_noreturn] = ACTIONS(2836), + [anon_sym_mutable] = ACTIONS(2836), + [anon_sym_constinit] = ACTIONS(2836), + [anon_sym_consteval] = ACTIONS(2836), + [sym_primitive_type] = ACTIONS(2836), + [anon_sym_enum] = ACTIONS(2836), + [anon_sym_class] = ACTIONS(2836), + [anon_sym_struct] = ACTIONS(2836), + [anon_sym_union] = ACTIONS(2836), + [anon_sym_if] = ACTIONS(2836), + [anon_sym_else] = ACTIONS(2836), + [anon_sym_switch] = ACTIONS(2836), + [anon_sym_case] = ACTIONS(2836), + [anon_sym_default] = ACTIONS(2836), + [anon_sym_while] = ACTIONS(2836), + [anon_sym_do] = ACTIONS(2836), + [anon_sym_for] = ACTIONS(2836), + [anon_sym_return] = ACTIONS(2836), + [anon_sym_break] = ACTIONS(2836), + [anon_sym_continue] = ACTIONS(2836), + [anon_sym_goto] = ACTIONS(2836), + [anon_sym_not] = ACTIONS(2836), + [anon_sym_compl] = ACTIONS(2836), + [anon_sym_DASH_DASH] = ACTIONS(2838), + [anon_sym_PLUS_PLUS] = ACTIONS(2838), + [anon_sym_sizeof] = ACTIONS(2836), + [anon_sym___alignof__] = ACTIONS(2836), + [anon_sym___alignof] = ACTIONS(2836), + [anon_sym__alignof] = ACTIONS(2836), + [anon_sym_alignof] = ACTIONS(2836), + [anon_sym__Alignof] = ACTIONS(2836), + [anon_sym_offsetof] = ACTIONS(2836), + [anon_sym__Generic] = ACTIONS(2836), + [anon_sym_asm] = ACTIONS(2836), + [anon_sym___asm__] = ACTIONS(2836), + [sym_number_literal] = ACTIONS(2838), + [anon_sym_L_SQUOTE] = ACTIONS(2838), + [anon_sym_u_SQUOTE] = ACTIONS(2838), + [anon_sym_U_SQUOTE] = ACTIONS(2838), + [anon_sym_u8_SQUOTE] = ACTIONS(2838), + [anon_sym_SQUOTE] = ACTIONS(2838), + [anon_sym_L_DQUOTE] = ACTIONS(2838), + [anon_sym_u_DQUOTE] = ACTIONS(2838), + [anon_sym_U_DQUOTE] = ACTIONS(2838), + [anon_sym_u8_DQUOTE] = ACTIONS(2838), + [anon_sym_DQUOTE] = ACTIONS(2838), + [sym_true] = ACTIONS(2836), + [sym_false] = ACTIONS(2836), + [anon_sym_NULL] = ACTIONS(2836), + [anon_sym_nullptr] = ACTIONS(2836), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2836), + [anon_sym_decltype] = ACTIONS(2836), + [anon_sym_virtual] = ACTIONS(2836), + [anon_sym_alignas] = ACTIONS(2836), + [anon_sym_explicit] = ACTIONS(2836), + [anon_sym_typename] = ACTIONS(2836), + [anon_sym_template] = ACTIONS(2836), + [anon_sym_operator] = ACTIONS(2836), + [anon_sym_try] = ACTIONS(2836), + [anon_sym_delete] = ACTIONS(2836), + [anon_sym_throw] = ACTIONS(2836), + [anon_sym_namespace] = ACTIONS(2836), + [anon_sym_using] = ACTIONS(2836), + [anon_sym_static_assert] = ACTIONS(2836), + [anon_sym_concept] = ACTIONS(2836), + [anon_sym_co_return] = ACTIONS(2836), + [anon_sym_co_yield] = ACTIONS(2836), + [anon_sym_R_DQUOTE] = ACTIONS(2838), + [anon_sym_LR_DQUOTE] = ACTIONS(2838), + [anon_sym_uR_DQUOTE] = ACTIONS(2838), + [anon_sym_UR_DQUOTE] = ACTIONS(2838), + [anon_sym_u8R_DQUOTE] = ACTIONS(2838), + [anon_sym_co_await] = ACTIONS(2836), + [anon_sym_new] = ACTIONS(2836), + [anon_sym_requires] = ACTIONS(2836), + [sym_this] = ACTIONS(2836), }, - [250] = { - [sym_attribute_declaration] = STATE(250), - [sym_compound_statement] = STATE(677), - [sym_attributed_statement] = STATE(677), - [sym_labeled_statement] = STATE(677), - [sym_expression_statement] = STATE(677), - [sym_if_statement] = STATE(677), - [sym_switch_statement] = STATE(677), - [sym_case_statement] = STATE(677), - [sym_while_statement] = STATE(677), - [sym_do_statement] = STATE(677), - [sym_for_statement] = STATE(677), - [sym_return_statement] = STATE(677), - [sym_break_statement] = STATE(677), - [sym_continue_statement] = STATE(677), - [sym_goto_statement] = STATE(677), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(677), - [sym_co_return_statement] = STATE(677), - [sym_co_yield_statement] = STATE(677), - [sym_throw_statement] = STATE(677), - [sym_try_statement] = STATE(677), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(250), - [sym_identifier] = ACTIONS(2451), - [anon_sym_LPAREN2] = ACTIONS(2268), - [anon_sym_BANG] = ACTIONS(2271), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2277), - [anon_sym_SEMI] = ACTIONS(2454), - [anon_sym_COLON_COLON] = ACTIONS(2283), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2286), - [anon_sym_LBRACE] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2292), - [sym_primitive_type] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2460), - [anon_sym_switch] = ACTIONS(2463), - [anon_sym_case] = ACTIONS(2466), - [anon_sym_default] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2472), - [anon_sym_do] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2481), - [anon_sym_break] = ACTIONS(2484), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_goto] = ACTIONS(2490), - [anon_sym_not] = ACTIONS(2274), - [anon_sym_compl] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_sizeof] = ACTIONS(2334), - [anon_sym___alignof__] = ACTIONS(2337), - [anon_sym___alignof] = ACTIONS(2337), - [anon_sym__alignof] = ACTIONS(2337), - [anon_sym_alignof] = ACTIONS(2337), - [anon_sym__Alignof] = ACTIONS(2337), - [anon_sym_offsetof] = ACTIONS(2340), - [anon_sym__Generic] = ACTIONS(2343), - [anon_sym_asm] = ACTIONS(2346), - [anon_sym___asm__] = ACTIONS(2346), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2352), - [anon_sym_u_SQUOTE] = ACTIONS(2352), - [anon_sym_U_SQUOTE] = ACTIONS(2352), - [anon_sym_u8_SQUOTE] = ACTIONS(2352), - [anon_sym_SQUOTE] = ACTIONS(2352), - [anon_sym_L_DQUOTE] = ACTIONS(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2358), - [sym_false] = ACTIONS(2358), - [anon_sym_NULL] = ACTIONS(2361), - [anon_sym_nullptr] = ACTIONS(2361), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2364), - [anon_sym_template] = ACTIONS(2367), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_delete] = ACTIONS(2373), - [anon_sym_throw] = ACTIONS(2496), - [anon_sym_co_return] = ACTIONS(2499), - [anon_sym_co_yield] = ACTIONS(2502), - [anon_sym_R_DQUOTE] = ACTIONS(2385), - [anon_sym_LR_DQUOTE] = ACTIONS(2385), - [anon_sym_uR_DQUOTE] = ACTIONS(2385), - [anon_sym_UR_DQUOTE] = ACTIONS(2385), - [anon_sym_u8R_DQUOTE] = ACTIONS(2385), - [anon_sym_co_await] = ACTIONS(2388), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_requires] = ACTIONS(2394), - [sym_this] = ACTIONS(2358), + [286] = { + [sym_identifier] = ACTIONS(2840), + [aux_sym_preproc_include_token1] = ACTIONS(2840), + [aux_sym_preproc_def_token1] = ACTIONS(2840), + [aux_sym_preproc_if_token1] = ACTIONS(2840), + [aux_sym_preproc_if_token2] = ACTIONS(2840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2840), + [aux_sym_preproc_else_token1] = ACTIONS(2840), + [aux_sym_preproc_elif_token1] = ACTIONS(2840), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2840), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2840), + [sym_preproc_directive] = ACTIONS(2840), + [anon_sym_LPAREN2] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_TILDE] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_AMP_AMP] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2840), + [anon_sym_SEMI] = ACTIONS(2842), + [anon_sym___extension__] = ACTIONS(2840), + [anon_sym_typedef] = ACTIONS(2840), + [anon_sym_extern] = ACTIONS(2840), + [anon_sym___attribute__] = ACTIONS(2840), + [anon_sym_COLON_COLON] = ACTIONS(2842), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2842), + [anon_sym___declspec] = ACTIONS(2840), + [anon_sym___based] = ACTIONS(2840), + [anon_sym___cdecl] = ACTIONS(2840), + [anon_sym___clrcall] = ACTIONS(2840), + [anon_sym___stdcall] = ACTIONS(2840), + [anon_sym___fastcall] = ACTIONS(2840), + [anon_sym___thiscall] = ACTIONS(2840), + [anon_sym___vectorcall] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_signed] = ACTIONS(2840), + [anon_sym_unsigned] = ACTIONS(2840), + [anon_sym_long] = ACTIONS(2840), + [anon_sym_short] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2840), + [anon_sym_static] = ACTIONS(2840), + [anon_sym_register] = ACTIONS(2840), + [anon_sym_inline] = ACTIONS(2840), + [anon_sym___inline] = ACTIONS(2840), + [anon_sym___inline__] = ACTIONS(2840), + [anon_sym___forceinline] = ACTIONS(2840), + [anon_sym_thread_local] = ACTIONS(2840), + [anon_sym___thread] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2840), + [anon_sym_constexpr] = ACTIONS(2840), + [anon_sym_volatile] = ACTIONS(2840), + [anon_sym_restrict] = ACTIONS(2840), + [anon_sym___restrict__] = ACTIONS(2840), + [anon_sym__Atomic] = ACTIONS(2840), + [anon_sym__Noreturn] = ACTIONS(2840), + [anon_sym_noreturn] = ACTIONS(2840), + [anon_sym_mutable] = ACTIONS(2840), + [anon_sym_constinit] = ACTIONS(2840), + [anon_sym_consteval] = ACTIONS(2840), + [sym_primitive_type] = ACTIONS(2840), + [anon_sym_enum] = ACTIONS(2840), + [anon_sym_class] = ACTIONS(2840), + [anon_sym_struct] = ACTIONS(2840), + [anon_sym_union] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_else] = ACTIONS(2840), + [anon_sym_switch] = ACTIONS(2840), + [anon_sym_case] = ACTIONS(2840), + [anon_sym_default] = ACTIONS(2840), + [anon_sym_while] = ACTIONS(2840), + [anon_sym_do] = ACTIONS(2840), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_goto] = ACTIONS(2840), + [anon_sym_not] = ACTIONS(2840), + [anon_sym_compl] = ACTIONS(2840), + [anon_sym_DASH_DASH] = ACTIONS(2842), + [anon_sym_PLUS_PLUS] = ACTIONS(2842), + [anon_sym_sizeof] = ACTIONS(2840), + [anon_sym___alignof__] = ACTIONS(2840), + [anon_sym___alignof] = ACTIONS(2840), + [anon_sym__alignof] = ACTIONS(2840), + [anon_sym_alignof] = ACTIONS(2840), + [anon_sym__Alignof] = ACTIONS(2840), + [anon_sym_offsetof] = ACTIONS(2840), + [anon_sym__Generic] = ACTIONS(2840), + [anon_sym_asm] = ACTIONS(2840), + [anon_sym___asm__] = ACTIONS(2840), + [sym_number_literal] = ACTIONS(2842), + [anon_sym_L_SQUOTE] = ACTIONS(2842), + [anon_sym_u_SQUOTE] = ACTIONS(2842), + [anon_sym_U_SQUOTE] = ACTIONS(2842), + [anon_sym_u8_SQUOTE] = ACTIONS(2842), + [anon_sym_SQUOTE] = ACTIONS(2842), + [anon_sym_L_DQUOTE] = ACTIONS(2842), + [anon_sym_u_DQUOTE] = ACTIONS(2842), + [anon_sym_U_DQUOTE] = ACTIONS(2842), + [anon_sym_u8_DQUOTE] = ACTIONS(2842), + [anon_sym_DQUOTE] = ACTIONS(2842), + [sym_true] = ACTIONS(2840), + [sym_false] = ACTIONS(2840), + [anon_sym_NULL] = ACTIONS(2840), + [anon_sym_nullptr] = ACTIONS(2840), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2840), + [anon_sym_decltype] = ACTIONS(2840), + [anon_sym_virtual] = ACTIONS(2840), + [anon_sym_alignas] = ACTIONS(2840), + [anon_sym_explicit] = ACTIONS(2840), + [anon_sym_typename] = ACTIONS(2840), + [anon_sym_template] = ACTIONS(2840), + [anon_sym_operator] = ACTIONS(2840), + [anon_sym_try] = ACTIONS(2840), + [anon_sym_delete] = ACTIONS(2840), + [anon_sym_throw] = ACTIONS(2840), + [anon_sym_namespace] = ACTIONS(2840), + [anon_sym_using] = ACTIONS(2840), + [anon_sym_static_assert] = ACTIONS(2840), + [anon_sym_concept] = ACTIONS(2840), + [anon_sym_co_return] = ACTIONS(2840), + [anon_sym_co_yield] = ACTIONS(2840), + [anon_sym_R_DQUOTE] = ACTIONS(2842), + [anon_sym_LR_DQUOTE] = ACTIONS(2842), + [anon_sym_uR_DQUOTE] = ACTIONS(2842), + [anon_sym_UR_DQUOTE] = ACTIONS(2842), + [anon_sym_u8R_DQUOTE] = ACTIONS(2842), + [anon_sym_co_await] = ACTIONS(2840), + [anon_sym_new] = ACTIONS(2840), + [anon_sym_requires] = ACTIONS(2840), + [sym_this] = ACTIONS(2840), }, - [251] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(718), - [sym_attributed_statement] = STATE(718), - [sym_labeled_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_if_statement] = STATE(718), - [sym_switch_statement] = STATE(718), - [sym_case_statement] = STATE(718), - [sym_while_statement] = STATE(718), - [sym_do_statement] = STATE(718), - [sym_for_statement] = STATE(718), - [sym_return_statement] = STATE(718), - [sym_break_statement] = STATE(718), - [sym_continue_statement] = STATE(718), - [sym_goto_statement] = STATE(718), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(718), - [sym_co_return_statement] = STATE(718), - [sym_co_yield_statement] = STATE(718), - [sym_throw_statement] = STATE(718), - [sym_try_statement] = STATE(718), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [287] = { + [sym_identifier] = ACTIONS(2844), + [aux_sym_preproc_include_token1] = ACTIONS(2844), + [aux_sym_preproc_def_token1] = ACTIONS(2844), + [aux_sym_preproc_if_token1] = ACTIONS(2844), + [aux_sym_preproc_if_token2] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2844), + [aux_sym_preproc_else_token1] = ACTIONS(2844), + [aux_sym_preproc_elif_token1] = ACTIONS(2844), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2844), + [sym_preproc_directive] = ACTIONS(2844), + [anon_sym_LPAREN2] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_PLUS] = ACTIONS(2844), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_AMP_AMP] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym___extension__] = ACTIONS(2844), + [anon_sym_typedef] = ACTIONS(2844), + [anon_sym_extern] = ACTIONS(2844), + [anon_sym___attribute__] = ACTIONS(2844), + [anon_sym_COLON_COLON] = ACTIONS(2846), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2846), + [anon_sym___declspec] = ACTIONS(2844), + [anon_sym___based] = ACTIONS(2844), + [anon_sym___cdecl] = ACTIONS(2844), + [anon_sym___clrcall] = ACTIONS(2844), + [anon_sym___stdcall] = ACTIONS(2844), + [anon_sym___fastcall] = ACTIONS(2844), + [anon_sym___thiscall] = ACTIONS(2844), + [anon_sym___vectorcall] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_signed] = ACTIONS(2844), + [anon_sym_unsigned] = ACTIONS(2844), + [anon_sym_long] = ACTIONS(2844), + [anon_sym_short] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_register] = ACTIONS(2844), + [anon_sym_inline] = ACTIONS(2844), + [anon_sym___inline] = ACTIONS(2844), + [anon_sym___inline__] = ACTIONS(2844), + [anon_sym___forceinline] = ACTIONS(2844), + [anon_sym_thread_local] = ACTIONS(2844), + [anon_sym___thread] = ACTIONS(2844), + [anon_sym_const] = ACTIONS(2844), + [anon_sym_constexpr] = ACTIONS(2844), + [anon_sym_volatile] = ACTIONS(2844), + [anon_sym_restrict] = ACTIONS(2844), + [anon_sym___restrict__] = ACTIONS(2844), + [anon_sym__Atomic] = ACTIONS(2844), + [anon_sym__Noreturn] = ACTIONS(2844), + [anon_sym_noreturn] = ACTIONS(2844), + [anon_sym_mutable] = ACTIONS(2844), + [anon_sym_constinit] = ACTIONS(2844), + [anon_sym_consteval] = ACTIONS(2844), + [sym_primitive_type] = ACTIONS(2844), + [anon_sym_enum] = ACTIONS(2844), + [anon_sym_class] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2844), + [anon_sym_union] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_else] = ACTIONS(2844), + [anon_sym_switch] = ACTIONS(2844), + [anon_sym_case] = ACTIONS(2844), + [anon_sym_default] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_break] = ACTIONS(2844), + [anon_sym_continue] = ACTIONS(2844), + [anon_sym_goto] = ACTIONS(2844), + [anon_sym_not] = ACTIONS(2844), + [anon_sym_compl] = ACTIONS(2844), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_sizeof] = ACTIONS(2844), + [anon_sym___alignof__] = ACTIONS(2844), + [anon_sym___alignof] = ACTIONS(2844), + [anon_sym__alignof] = ACTIONS(2844), + [anon_sym_alignof] = ACTIONS(2844), + [anon_sym__Alignof] = ACTIONS(2844), + [anon_sym_offsetof] = ACTIONS(2844), + [anon_sym__Generic] = ACTIONS(2844), + [anon_sym_asm] = ACTIONS(2844), + [anon_sym___asm__] = ACTIONS(2844), + [sym_number_literal] = ACTIONS(2846), + [anon_sym_L_SQUOTE] = ACTIONS(2846), + [anon_sym_u_SQUOTE] = ACTIONS(2846), + [anon_sym_U_SQUOTE] = ACTIONS(2846), + [anon_sym_u8_SQUOTE] = ACTIONS(2846), + [anon_sym_SQUOTE] = ACTIONS(2846), + [anon_sym_L_DQUOTE] = ACTIONS(2846), + [anon_sym_u_DQUOTE] = ACTIONS(2846), + [anon_sym_U_DQUOTE] = ACTIONS(2846), + [anon_sym_u8_DQUOTE] = ACTIONS(2846), + [anon_sym_DQUOTE] = ACTIONS(2846), + [sym_true] = ACTIONS(2844), + [sym_false] = ACTIONS(2844), + [anon_sym_NULL] = ACTIONS(2844), + [anon_sym_nullptr] = ACTIONS(2844), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2844), + [anon_sym_decltype] = ACTIONS(2844), + [anon_sym_virtual] = ACTIONS(2844), + [anon_sym_alignas] = ACTIONS(2844), + [anon_sym_explicit] = ACTIONS(2844), + [anon_sym_typename] = ACTIONS(2844), + [anon_sym_template] = ACTIONS(2844), + [anon_sym_operator] = ACTIONS(2844), + [anon_sym_try] = ACTIONS(2844), + [anon_sym_delete] = ACTIONS(2844), + [anon_sym_throw] = ACTIONS(2844), + [anon_sym_namespace] = ACTIONS(2844), + [anon_sym_using] = ACTIONS(2844), + [anon_sym_static_assert] = ACTIONS(2844), + [anon_sym_concept] = ACTIONS(2844), + [anon_sym_co_return] = ACTIONS(2844), + [anon_sym_co_yield] = ACTIONS(2844), + [anon_sym_R_DQUOTE] = ACTIONS(2846), + [anon_sym_LR_DQUOTE] = ACTIONS(2846), + [anon_sym_uR_DQUOTE] = ACTIONS(2846), + [anon_sym_UR_DQUOTE] = ACTIONS(2846), + [anon_sym_u8R_DQUOTE] = ACTIONS(2846), + [anon_sym_co_await] = ACTIONS(2844), + [anon_sym_new] = ACTIONS(2844), + [anon_sym_requires] = ACTIONS(2844), + [sym_this] = ACTIONS(2844), }, - [252] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(1224), - [sym_attributed_statement] = STATE(1224), - [sym_labeled_statement] = STATE(1224), - [sym_expression_statement] = STATE(1224), - [sym_if_statement] = STATE(1224), - [sym_switch_statement] = STATE(1224), - [sym_case_statement] = STATE(1224), - [sym_while_statement] = STATE(1224), - [sym_do_statement] = STATE(1224), - [sym_for_statement] = STATE(1224), - [sym_return_statement] = STATE(1224), - [sym_break_statement] = STATE(1224), - [sym_continue_statement] = STATE(1224), - [sym_goto_statement] = STATE(1224), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1224), - [sym_co_return_statement] = STATE(1224), - [sym_co_yield_statement] = STATE(1224), - [sym_throw_statement] = STATE(1224), - [sym_try_statement] = STATE(1224), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [288] = { + [sym_identifier] = ACTIONS(2848), + [aux_sym_preproc_include_token1] = ACTIONS(2848), + [aux_sym_preproc_def_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token2] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2848), + [aux_sym_preproc_else_token1] = ACTIONS(2848), + [aux_sym_preproc_elif_token1] = ACTIONS(2848), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2848), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2848), + [sym_preproc_directive] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_AMP_AMP] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym___extension__] = ACTIONS(2848), + [anon_sym_typedef] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym___attribute__] = ACTIONS(2848), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2850), + [anon_sym___declspec] = ACTIONS(2848), + [anon_sym___based] = ACTIONS(2848), + [anon_sym___cdecl] = ACTIONS(2848), + [anon_sym___clrcall] = ACTIONS(2848), + [anon_sym___stdcall] = ACTIONS(2848), + [anon_sym___fastcall] = ACTIONS(2848), + [anon_sym___thiscall] = ACTIONS(2848), + [anon_sym___vectorcall] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_signed] = ACTIONS(2848), + [anon_sym_unsigned] = ACTIONS(2848), + [anon_sym_long] = ACTIONS(2848), + [anon_sym_short] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_register] = ACTIONS(2848), + [anon_sym_inline] = ACTIONS(2848), + [anon_sym___inline] = ACTIONS(2848), + [anon_sym___inline__] = ACTIONS(2848), + [anon_sym___forceinline] = ACTIONS(2848), + [anon_sym_thread_local] = ACTIONS(2848), + [anon_sym___thread] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_constexpr] = ACTIONS(2848), + [anon_sym_volatile] = ACTIONS(2848), + [anon_sym_restrict] = ACTIONS(2848), + [anon_sym___restrict__] = ACTIONS(2848), + [anon_sym__Atomic] = ACTIONS(2848), + [anon_sym__Noreturn] = ACTIONS(2848), + [anon_sym_noreturn] = ACTIONS(2848), + [anon_sym_mutable] = ACTIONS(2848), + [anon_sym_constinit] = ACTIONS(2848), + [anon_sym_consteval] = ACTIONS(2848), + [sym_primitive_type] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_class] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2848), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_else] = ACTIONS(2848), + [anon_sym_switch] = ACTIONS(2848), + [anon_sym_case] = ACTIONS(2848), + [anon_sym_default] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_goto] = ACTIONS(2848), + [anon_sym_not] = ACTIONS(2848), + [anon_sym_compl] = ACTIONS(2848), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_sizeof] = ACTIONS(2848), + [anon_sym___alignof__] = ACTIONS(2848), + [anon_sym___alignof] = ACTIONS(2848), + [anon_sym__alignof] = ACTIONS(2848), + [anon_sym_alignof] = ACTIONS(2848), + [anon_sym__Alignof] = ACTIONS(2848), + [anon_sym_offsetof] = ACTIONS(2848), + [anon_sym__Generic] = ACTIONS(2848), + [anon_sym_asm] = ACTIONS(2848), + [anon_sym___asm__] = ACTIONS(2848), + [sym_number_literal] = ACTIONS(2850), + [anon_sym_L_SQUOTE] = ACTIONS(2850), + [anon_sym_u_SQUOTE] = ACTIONS(2850), + [anon_sym_U_SQUOTE] = ACTIONS(2850), + [anon_sym_u8_SQUOTE] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_L_DQUOTE] = ACTIONS(2850), + [anon_sym_u_DQUOTE] = ACTIONS(2850), + [anon_sym_U_DQUOTE] = ACTIONS(2850), + [anon_sym_u8_DQUOTE] = ACTIONS(2850), + [anon_sym_DQUOTE] = ACTIONS(2850), + [sym_true] = ACTIONS(2848), + [sym_false] = ACTIONS(2848), + [anon_sym_NULL] = ACTIONS(2848), + [anon_sym_nullptr] = ACTIONS(2848), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2848), + [anon_sym_decltype] = ACTIONS(2848), + [anon_sym_virtual] = ACTIONS(2848), + [anon_sym_alignas] = ACTIONS(2848), + [anon_sym_explicit] = ACTIONS(2848), + [anon_sym_typename] = ACTIONS(2848), + [anon_sym_template] = ACTIONS(2848), + [anon_sym_operator] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_delete] = ACTIONS(2848), + [anon_sym_throw] = ACTIONS(2848), + [anon_sym_namespace] = ACTIONS(2848), + [anon_sym_using] = ACTIONS(2848), + [anon_sym_static_assert] = ACTIONS(2848), + [anon_sym_concept] = ACTIONS(2848), + [anon_sym_co_return] = ACTIONS(2848), + [anon_sym_co_yield] = ACTIONS(2848), + [anon_sym_R_DQUOTE] = ACTIONS(2850), + [anon_sym_LR_DQUOTE] = ACTIONS(2850), + [anon_sym_uR_DQUOTE] = ACTIONS(2850), + [anon_sym_UR_DQUOTE] = ACTIONS(2850), + [anon_sym_u8R_DQUOTE] = ACTIONS(2850), + [anon_sym_co_await] = ACTIONS(2848), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_requires] = ACTIONS(2848), + [sym_this] = ACTIONS(2848), }, - [253] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(902), - [sym_attributed_statement] = STATE(902), - [sym_labeled_statement] = STATE(902), - [sym_expression_statement] = STATE(902), - [sym_if_statement] = STATE(902), - [sym_switch_statement] = STATE(902), - [sym_case_statement] = STATE(902), - [sym_while_statement] = STATE(902), - [sym_do_statement] = STATE(902), - [sym_for_statement] = STATE(902), - [sym_return_statement] = STATE(902), - [sym_break_statement] = STATE(902), - [sym_continue_statement] = STATE(902), - [sym_goto_statement] = STATE(902), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(902), - [sym_co_return_statement] = STATE(902), - [sym_co_yield_statement] = STATE(902), - [sym_throw_statement] = STATE(902), - [sym_try_statement] = STATE(902), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [289] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [254] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(877), - [sym_attributed_statement] = STATE(877), - [sym_labeled_statement] = STATE(877), - [sym_expression_statement] = STATE(877), - [sym_if_statement] = STATE(877), - [sym_switch_statement] = STATE(877), - [sym_case_statement] = STATE(877), - [sym_while_statement] = STATE(877), - [sym_do_statement] = STATE(877), - [sym_for_statement] = STATE(877), - [sym_return_statement] = STATE(877), - [sym_break_statement] = STATE(877), - [sym_continue_statement] = STATE(877), - [sym_goto_statement] = STATE(877), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(877), - [sym_co_return_statement] = STATE(877), - [sym_co_yield_statement] = STATE(877), - [sym_throw_statement] = STATE(877), - [sym_try_statement] = STATE(877), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [290] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [255] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(717), - [sym_attributed_statement] = STATE(717), - [sym_labeled_statement] = STATE(717), - [sym_expression_statement] = STATE(717), - [sym_if_statement] = STATE(717), - [sym_switch_statement] = STATE(717), - [sym_case_statement] = STATE(717), - [sym_while_statement] = STATE(717), - [sym_do_statement] = STATE(717), - [sym_for_statement] = STATE(717), - [sym_return_statement] = STATE(717), - [sym_break_statement] = STATE(717), - [sym_continue_statement] = STATE(717), - [sym_goto_statement] = STATE(717), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(717), - [sym_co_return_statement] = STATE(717), - [sym_co_yield_statement] = STATE(717), - [sym_throw_statement] = STATE(717), - [sym_try_statement] = STATE(717), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [291] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [256] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(1144), - [sym_attributed_statement] = STATE(1144), - [sym_labeled_statement] = STATE(1144), - [sym_expression_statement] = STATE(1144), - [sym_if_statement] = STATE(1144), - [sym_switch_statement] = STATE(1144), - [sym_case_statement] = STATE(1144), - [sym_while_statement] = STATE(1144), - [sym_do_statement] = STATE(1144), - [sym_for_statement] = STATE(1144), - [sym_return_statement] = STATE(1144), - [sym_break_statement] = STATE(1144), - [sym_continue_statement] = STATE(1144), - [sym_goto_statement] = STATE(1144), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1144), - [sym_co_return_statement] = STATE(1144), - [sym_co_yield_statement] = STATE(1144), - [sym_throw_statement] = STATE(1144), - [sym_try_statement] = STATE(1144), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [292] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [257] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(675), - [sym_attributed_statement] = STATE(676), - [sym_labeled_statement] = STATE(680), - [sym_expression_statement] = STATE(681), - [sym_if_statement] = STATE(682), - [sym_switch_statement] = STATE(684), - [sym_case_statement] = STATE(685), - [sym_while_statement] = STATE(612), - [sym_do_statement] = STATE(688), - [sym_for_statement] = STATE(690), - [sym_return_statement] = STATE(613), - [sym_break_statement] = STATE(693), - [sym_continue_statement] = STATE(694), - [sym_goto_statement] = STATE(698), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(702), - [sym_co_return_statement] = STATE(706), - [sym_co_yield_statement] = STATE(714), - [sym_throw_statement] = STATE(715), - [sym_try_statement] = STATE(716), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [258] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3894), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9633), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9402), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9088), - [sym__unary_right_fold] = STATE(9089), - [sym__binary_fold] = STATE(9207), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [259] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(1090), - [sym_attributed_statement] = STATE(1090), - [sym_labeled_statement] = STATE(1090), - [sym_expression_statement] = STATE(1090), - [sym_if_statement] = STATE(1090), - [sym_switch_statement] = STATE(1090), - [sym_case_statement] = STATE(1090), - [sym_while_statement] = STATE(1090), - [sym_do_statement] = STATE(1090), - [sym_for_statement] = STATE(1090), - [sym_return_statement] = STATE(1090), - [sym_break_statement] = STATE(1090), - [sym_continue_statement] = STATE(1090), - [sym_goto_statement] = STATE(1090), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1090), - [sym_co_return_statement] = STATE(1090), - [sym_co_yield_statement] = STATE(1090), - [sym_throw_statement] = STATE(1090), - [sym_try_statement] = STATE(1090), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [293] = { + [sym_identifier] = ACTIONS(2852), + [aux_sym_preproc_include_token1] = ACTIONS(2852), + [aux_sym_preproc_def_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token2] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2852), + [aux_sym_preproc_else_token1] = ACTIONS(2852), + [aux_sym_preproc_elif_token1] = ACTIONS(2852), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2852), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2852), + [sym_preproc_directive] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym___extension__] = ACTIONS(2852), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym___attribute__] = ACTIONS(2852), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2854), + [anon_sym___declspec] = ACTIONS(2852), + [anon_sym___based] = ACTIONS(2852), + [anon_sym___cdecl] = ACTIONS(2852), + [anon_sym___clrcall] = ACTIONS(2852), + [anon_sym___stdcall] = ACTIONS(2852), + [anon_sym___fastcall] = ACTIONS(2852), + [anon_sym___thiscall] = ACTIONS(2852), + [anon_sym___vectorcall] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_signed] = ACTIONS(2852), + [anon_sym_unsigned] = ACTIONS(2852), + [anon_sym_long] = ACTIONS(2852), + [anon_sym_short] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_register] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym___inline] = ACTIONS(2852), + [anon_sym___inline__] = ACTIONS(2852), + [anon_sym___forceinline] = ACTIONS(2852), + [anon_sym_thread_local] = ACTIONS(2852), + [anon_sym___thread] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_constexpr] = ACTIONS(2852), + [anon_sym_volatile] = ACTIONS(2852), + [anon_sym_restrict] = ACTIONS(2852), + [anon_sym___restrict__] = ACTIONS(2852), + [anon_sym__Atomic] = ACTIONS(2852), + [anon_sym__Noreturn] = ACTIONS(2852), + [anon_sym_noreturn] = ACTIONS(2852), + [anon_sym_mutable] = ACTIONS(2852), + [anon_sym_constinit] = ACTIONS(2852), + [anon_sym_consteval] = ACTIONS(2852), + [sym_primitive_type] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_class] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_else] = ACTIONS(2852), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_goto] = ACTIONS(2852), + [anon_sym_not] = ACTIONS(2852), + [anon_sym_compl] = ACTIONS(2852), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_sizeof] = ACTIONS(2852), + [anon_sym___alignof__] = ACTIONS(2852), + [anon_sym___alignof] = ACTIONS(2852), + [anon_sym__alignof] = ACTIONS(2852), + [anon_sym_alignof] = ACTIONS(2852), + [anon_sym__Alignof] = ACTIONS(2852), + [anon_sym_offsetof] = ACTIONS(2852), + [anon_sym__Generic] = ACTIONS(2852), + [anon_sym_asm] = ACTIONS(2852), + [anon_sym___asm__] = ACTIONS(2852), + [sym_number_literal] = ACTIONS(2854), + [anon_sym_L_SQUOTE] = ACTIONS(2854), + [anon_sym_u_SQUOTE] = ACTIONS(2854), + [anon_sym_U_SQUOTE] = ACTIONS(2854), + [anon_sym_u8_SQUOTE] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_L_DQUOTE] = ACTIONS(2854), + [anon_sym_u_DQUOTE] = ACTIONS(2854), + [anon_sym_U_DQUOTE] = ACTIONS(2854), + [anon_sym_u8_DQUOTE] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [sym_true] = ACTIONS(2852), + [sym_false] = ACTIONS(2852), + [anon_sym_NULL] = ACTIONS(2852), + [anon_sym_nullptr] = ACTIONS(2852), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2852), + [anon_sym_decltype] = ACTIONS(2852), + [anon_sym_virtual] = ACTIONS(2852), + [anon_sym_alignas] = ACTIONS(2852), + [anon_sym_explicit] = ACTIONS(2852), + [anon_sym_typename] = ACTIONS(2852), + [anon_sym_template] = ACTIONS(2852), + [anon_sym_operator] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_delete] = ACTIONS(2852), + [anon_sym_throw] = ACTIONS(2852), + [anon_sym_namespace] = ACTIONS(2852), + [anon_sym_using] = ACTIONS(2852), + [anon_sym_static_assert] = ACTIONS(2852), + [anon_sym_concept] = ACTIONS(2852), + [anon_sym_co_return] = ACTIONS(2852), + [anon_sym_co_yield] = ACTIONS(2852), + [anon_sym_R_DQUOTE] = ACTIONS(2854), + [anon_sym_LR_DQUOTE] = ACTIONS(2854), + [anon_sym_uR_DQUOTE] = ACTIONS(2854), + [anon_sym_UR_DQUOTE] = ACTIONS(2854), + [anon_sym_u8R_DQUOTE] = ACTIONS(2854), + [anon_sym_co_await] = ACTIONS(2852), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_requires] = ACTIONS(2852), + [sym_this] = ACTIONS(2852), }, - [260] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(1104), - [sym_attributed_statement] = STATE(1104), - [sym_labeled_statement] = STATE(1104), - [sym_expression_statement] = STATE(1104), - [sym_if_statement] = STATE(1104), - [sym_switch_statement] = STATE(1104), - [sym_case_statement] = STATE(1104), - [sym_while_statement] = STATE(1104), - [sym_do_statement] = STATE(1104), - [sym_for_statement] = STATE(1104), - [sym_return_statement] = STATE(1104), - [sym_break_statement] = STATE(1104), - [sym_continue_statement] = STATE(1104), - [sym_goto_statement] = STATE(1104), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1104), - [sym_co_return_statement] = STATE(1104), - [sym_co_yield_statement] = STATE(1104), - [sym_throw_statement] = STATE(1104), - [sym_try_statement] = STATE(1104), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [294] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [261] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(969), - [sym_attributed_statement] = STATE(969), - [sym_labeled_statement] = STATE(969), - [sym_expression_statement] = STATE(969), - [sym_if_statement] = STATE(969), - [sym_switch_statement] = STATE(969), - [sym_case_statement] = STATE(969), - [sym_while_statement] = STATE(969), - [sym_do_statement] = STATE(969), - [sym_for_statement] = STATE(969), - [sym_return_statement] = STATE(969), - [sym_break_statement] = STATE(969), - [sym_continue_statement] = STATE(969), - [sym_goto_statement] = STATE(969), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(969), - [sym_co_return_statement] = STATE(969), - [sym_co_yield_statement] = STATE(969), - [sym_throw_statement] = STATE(969), - [sym_try_statement] = STATE(969), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [295] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [262] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(356), - [sym_attributed_statement] = STATE(356), - [sym_labeled_statement] = STATE(356), - [sym_expression_statement] = STATE(356), - [sym_if_statement] = STATE(356), - [sym_switch_statement] = STATE(356), - [sym_case_statement] = STATE(356), - [sym_while_statement] = STATE(356), - [sym_do_statement] = STATE(356), - [sym_for_statement] = STATE(356), - [sym_return_statement] = STATE(356), - [sym_break_statement] = STATE(356), - [sym_continue_statement] = STATE(356), - [sym_goto_statement] = STATE(356), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(356), - [sym_co_return_statement] = STATE(356), - [sym_co_yield_statement] = STATE(356), - [sym_throw_statement] = STATE(356), - [sym_try_statement] = STATE(356), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [296] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [263] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(1217), - [sym_attributed_statement] = STATE(1217), - [sym_labeled_statement] = STATE(1217), - [sym_expression_statement] = STATE(1217), - [sym_if_statement] = STATE(1217), - [sym_switch_statement] = STATE(1217), - [sym_case_statement] = STATE(1217), - [sym_while_statement] = STATE(1217), - [sym_do_statement] = STATE(1217), - [sym_for_statement] = STATE(1217), - [sym_return_statement] = STATE(1217), - [sym_break_statement] = STATE(1217), - [sym_continue_statement] = STATE(1217), - [sym_goto_statement] = STATE(1217), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1217), - [sym_co_return_statement] = STATE(1217), - [sym_co_yield_statement] = STATE(1217), - [sym_throw_statement] = STATE(1217), - [sym_try_statement] = STATE(1217), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [297] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [264] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(670), - [sym_attributed_statement] = STATE(670), - [sym_labeled_statement] = STATE(670), - [sym_expression_statement] = STATE(670), - [sym_if_statement] = STATE(670), - [sym_switch_statement] = STATE(670), - [sym_case_statement] = STATE(670), - [sym_while_statement] = STATE(670), - [sym_do_statement] = STATE(670), - [sym_for_statement] = STATE(670), - [sym_return_statement] = STATE(670), - [sym_break_statement] = STATE(670), - [sym_continue_statement] = STATE(670), - [sym_goto_statement] = STATE(670), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(670), - [sym_co_return_statement] = STATE(670), - [sym_co_yield_statement] = STATE(670), - [sym_throw_statement] = STATE(670), - [sym_try_statement] = STATE(670), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [298] = { + [sym_identifier] = ACTIONS(2856), + [aux_sym_preproc_include_token1] = ACTIONS(2856), + [aux_sym_preproc_def_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token2] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2856), + [aux_sym_preproc_else_token1] = ACTIONS(2856), + [aux_sym_preproc_elif_token1] = ACTIONS(2856), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2856), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2856), + [sym_preproc_directive] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_AMP_AMP] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym___extension__] = ACTIONS(2856), + [anon_sym_typedef] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym___attribute__] = ACTIONS(2856), + [anon_sym_COLON_COLON] = ACTIONS(2858), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), + [anon_sym___declspec] = ACTIONS(2856), + [anon_sym___based] = ACTIONS(2856), + [anon_sym___cdecl] = ACTIONS(2856), + [anon_sym___clrcall] = ACTIONS(2856), + [anon_sym___stdcall] = ACTIONS(2856), + [anon_sym___fastcall] = ACTIONS(2856), + [anon_sym___thiscall] = ACTIONS(2856), + [anon_sym___vectorcall] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_signed] = ACTIONS(2856), + [anon_sym_unsigned] = ACTIONS(2856), + [anon_sym_long] = ACTIONS(2856), + [anon_sym_short] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_register] = ACTIONS(2856), + [anon_sym_inline] = ACTIONS(2856), + [anon_sym___inline] = ACTIONS(2856), + [anon_sym___inline__] = ACTIONS(2856), + [anon_sym___forceinline] = ACTIONS(2856), + [anon_sym_thread_local] = ACTIONS(2856), + [anon_sym___thread] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_constexpr] = ACTIONS(2856), + [anon_sym_volatile] = ACTIONS(2856), + [anon_sym_restrict] = ACTIONS(2856), + [anon_sym___restrict__] = ACTIONS(2856), + [anon_sym__Atomic] = ACTIONS(2856), + [anon_sym__Noreturn] = ACTIONS(2856), + [anon_sym_noreturn] = ACTIONS(2856), + [anon_sym_mutable] = ACTIONS(2856), + [anon_sym_constinit] = ACTIONS(2856), + [anon_sym_consteval] = ACTIONS(2856), + [sym_primitive_type] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_class] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_else] = ACTIONS(2856), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_case] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_goto] = ACTIONS(2856), + [anon_sym_not] = ACTIONS(2856), + [anon_sym_compl] = ACTIONS(2856), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_sizeof] = ACTIONS(2856), + [anon_sym___alignof__] = ACTIONS(2856), + [anon_sym___alignof] = ACTIONS(2856), + [anon_sym__alignof] = ACTIONS(2856), + [anon_sym_alignof] = ACTIONS(2856), + [anon_sym__Alignof] = ACTIONS(2856), + [anon_sym_offsetof] = ACTIONS(2856), + [anon_sym__Generic] = ACTIONS(2856), + [anon_sym_asm] = ACTIONS(2856), + [anon_sym___asm__] = ACTIONS(2856), + [sym_number_literal] = ACTIONS(2858), + [anon_sym_L_SQUOTE] = ACTIONS(2858), + [anon_sym_u_SQUOTE] = ACTIONS(2858), + [anon_sym_U_SQUOTE] = ACTIONS(2858), + [anon_sym_u8_SQUOTE] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_L_DQUOTE] = ACTIONS(2858), + [anon_sym_u_DQUOTE] = ACTIONS(2858), + [anon_sym_U_DQUOTE] = ACTIONS(2858), + [anon_sym_u8_DQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(2858), + [sym_true] = ACTIONS(2856), + [sym_false] = ACTIONS(2856), + [anon_sym_NULL] = ACTIONS(2856), + [anon_sym_nullptr] = ACTIONS(2856), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2856), + [anon_sym_decltype] = ACTIONS(2856), + [anon_sym_virtual] = ACTIONS(2856), + [anon_sym_alignas] = ACTIONS(2856), + [anon_sym_explicit] = ACTIONS(2856), + [anon_sym_typename] = ACTIONS(2856), + [anon_sym_template] = ACTIONS(2856), + [anon_sym_operator] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_delete] = ACTIONS(2856), + [anon_sym_throw] = ACTIONS(2856), + [anon_sym_namespace] = ACTIONS(2856), + [anon_sym_using] = ACTIONS(2856), + [anon_sym_static_assert] = ACTIONS(2856), + [anon_sym_concept] = ACTIONS(2856), + [anon_sym_co_return] = ACTIONS(2856), + [anon_sym_co_yield] = ACTIONS(2856), + [anon_sym_R_DQUOTE] = ACTIONS(2858), + [anon_sym_LR_DQUOTE] = ACTIONS(2858), + [anon_sym_uR_DQUOTE] = ACTIONS(2858), + [anon_sym_UR_DQUOTE] = ACTIONS(2858), + [anon_sym_u8R_DQUOTE] = ACTIONS(2858), + [anon_sym_co_await] = ACTIONS(2856), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_requires] = ACTIONS(2856), + [sym_this] = ACTIONS(2856), }, - [265] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(672), - [sym_attributed_statement] = STATE(672), - [sym_labeled_statement] = STATE(672), - [sym_expression_statement] = STATE(672), - [sym_if_statement] = STATE(672), - [sym_switch_statement] = STATE(672), - [sym_case_statement] = STATE(672), - [sym_while_statement] = STATE(672), - [sym_do_statement] = STATE(672), - [sym_for_statement] = STATE(672), - [sym_return_statement] = STATE(672), - [sym_break_statement] = STATE(672), - [sym_continue_statement] = STATE(672), - [sym_goto_statement] = STATE(672), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(672), - [sym_co_return_statement] = STATE(672), - [sym_co_yield_statement] = STATE(672), - [sym_throw_statement] = STATE(672), - [sym_try_statement] = STATE(672), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [299] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [266] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(443), - [sym_attributed_statement] = STATE(443), - [sym_labeled_statement] = STATE(443), - [sym_expression_statement] = STATE(443), - [sym_if_statement] = STATE(443), - [sym_switch_statement] = STATE(443), - [sym_case_statement] = STATE(443), - [sym_while_statement] = STATE(443), - [sym_do_statement] = STATE(443), - [sym_for_statement] = STATE(443), - [sym_return_statement] = STATE(443), - [sym_break_statement] = STATE(443), - [sym_continue_statement] = STATE(443), - [sym_goto_statement] = STATE(443), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(443), - [sym_co_return_statement] = STATE(443), - [sym_co_yield_statement] = STATE(443), - [sym_throw_statement] = STATE(443), - [sym_try_statement] = STATE(443), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [300] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [267] = { - [sym_attribute_declaration] = STATE(267), - [sym_compound_statement] = STATE(1565), - [sym_attributed_statement] = STATE(1565), - [sym_labeled_statement] = STATE(1565), - [sym_expression_statement] = STATE(1565), - [sym_if_statement] = STATE(1565), - [sym_switch_statement] = STATE(1565), - [sym_case_statement] = STATE(1565), - [sym_while_statement] = STATE(1565), - [sym_do_statement] = STATE(1565), - [sym_for_statement] = STATE(1565), - [sym_return_statement] = STATE(1565), - [sym_break_statement] = STATE(1565), - [sym_continue_statement] = STATE(1565), - [sym_goto_statement] = STATE(1565), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1565), - [sym_co_return_statement] = STATE(1565), - [sym_co_yield_statement] = STATE(1565), - [sym_throw_statement] = STATE(1565), - [sym_try_statement] = STATE(1565), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(267), - [sym_identifier] = ACTIONS(2505), - [anon_sym_LPAREN2] = ACTIONS(2268), - [anon_sym_BANG] = ACTIONS(2271), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2277), - [anon_sym_SEMI] = ACTIONS(2508), - [anon_sym_COLON_COLON] = ACTIONS(2283), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2286), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_LBRACK] = ACTIONS(2292), - [sym_primitive_type] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2514), - [anon_sym_switch] = ACTIONS(2517), - [anon_sym_case] = ACTIONS(2520), - [anon_sym_default] = ACTIONS(2523), - [anon_sym_while] = ACTIONS(2526), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2532), - [anon_sym_return] = ACTIONS(2535), - [anon_sym_break] = ACTIONS(2538), - [anon_sym_continue] = ACTIONS(2541), - [anon_sym_goto] = ACTIONS(2544), - [anon_sym_not] = ACTIONS(2274), - [anon_sym_compl] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_sizeof] = ACTIONS(2334), - [anon_sym___alignof__] = ACTIONS(2337), - [anon_sym___alignof] = ACTIONS(2337), - [anon_sym__alignof] = ACTIONS(2337), - [anon_sym_alignof] = ACTIONS(2337), - [anon_sym__Alignof] = ACTIONS(2337), - [anon_sym_offsetof] = ACTIONS(2340), - [anon_sym__Generic] = ACTIONS(2343), - [anon_sym_asm] = ACTIONS(2346), - [anon_sym___asm__] = ACTIONS(2346), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2352), - [anon_sym_u_SQUOTE] = ACTIONS(2352), - [anon_sym_U_SQUOTE] = ACTIONS(2352), - [anon_sym_u8_SQUOTE] = ACTIONS(2352), - [anon_sym_SQUOTE] = ACTIONS(2352), - [anon_sym_L_DQUOTE] = ACTIONS(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2358), - [sym_false] = ACTIONS(2358), - [anon_sym_NULL] = ACTIONS(2361), - [anon_sym_nullptr] = ACTIONS(2361), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2364), - [anon_sym_template] = ACTIONS(2367), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_delete] = ACTIONS(2373), - [anon_sym_throw] = ACTIONS(2550), - [anon_sym_co_return] = ACTIONS(2553), - [anon_sym_co_yield] = ACTIONS(2556), - [anon_sym_R_DQUOTE] = ACTIONS(2385), - [anon_sym_LR_DQUOTE] = ACTIONS(2385), - [anon_sym_uR_DQUOTE] = ACTIONS(2385), - [anon_sym_UR_DQUOTE] = ACTIONS(2385), - [anon_sym_u8R_DQUOTE] = ACTIONS(2385), - [anon_sym_co_await] = ACTIONS(2388), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_requires] = ACTIONS(2394), - [sym_this] = ACTIONS(2358), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [268] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(975), - [sym_attributed_statement] = STATE(976), - [sym_labeled_statement] = STATE(978), - [sym_expression_statement] = STATE(980), - [sym_if_statement] = STATE(984), - [sym_switch_statement] = STATE(989), - [sym_case_statement] = STATE(994), - [sym_while_statement] = STATE(995), - [sym_do_statement] = STATE(1001), - [sym_for_statement] = STATE(1004), - [sym_return_statement] = STATE(938), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(1008), - [sym_goto_statement] = STATE(1010), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1011), - [sym_co_return_statement] = STATE(1012), - [sym_co_yield_statement] = STATE(1017), - [sym_throw_statement] = STATE(1021), - [sym_try_statement] = STATE(1024), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [301] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [269] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(9338), - [sym_attributed_statement] = STATE(9338), - [sym_labeled_statement] = STATE(9338), - [sym_expression_statement] = STATE(9338), - [sym_if_statement] = STATE(9338), - [sym_switch_statement] = STATE(9338), - [sym_case_statement] = STATE(9338), - [sym_while_statement] = STATE(9338), - [sym_do_statement] = STATE(9338), - [sym_for_statement] = STATE(9338), - [sym_return_statement] = STATE(9338), - [sym_break_statement] = STATE(9338), - [sym_continue_statement] = STATE(9338), - [sym_goto_statement] = STATE(9338), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(9338), - [sym_co_return_statement] = STATE(9338), - [sym_co_yield_statement] = STATE(9338), - [sym_throw_statement] = STATE(9338), - [sym_try_statement] = STATE(9338), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [302] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [270] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3889), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9595), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9323), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9587), - [sym__unary_right_fold] = STATE(9577), - [sym__binary_fold] = STATE(9562), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [271] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(8928), - [sym_attributed_statement] = STATE(8928), - [sym_labeled_statement] = STATE(8928), - [sym_expression_statement] = STATE(8928), - [sym_if_statement] = STATE(8928), - [sym_switch_statement] = STATE(8928), - [sym_case_statement] = STATE(8928), - [sym_while_statement] = STATE(8928), - [sym_do_statement] = STATE(8928), - [sym_for_statement] = STATE(8928), - [sym_return_statement] = STATE(8928), - [sym_break_statement] = STATE(8928), - [sym_continue_statement] = STATE(8928), - [sym_goto_statement] = STATE(8928), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(8928), - [sym_co_return_statement] = STATE(8928), - [sym_co_yield_statement] = STATE(8928), - [sym_throw_statement] = STATE(8928), - [sym_try_statement] = STATE(8928), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [303] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [272] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(456), - [sym_attributed_statement] = STATE(456), - [sym_labeled_statement] = STATE(456), - [sym_expression_statement] = STATE(456), - [sym_if_statement] = STATE(456), - [sym_switch_statement] = STATE(456), - [sym_case_statement] = STATE(456), - [sym_while_statement] = STATE(456), - [sym_do_statement] = STATE(456), - [sym_for_statement] = STATE(456), - [sym_return_statement] = STATE(456), - [sym_break_statement] = STATE(456), - [sym_continue_statement] = STATE(456), - [sym_goto_statement] = STATE(456), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(456), - [sym_co_return_statement] = STATE(456), - [sym_co_yield_statement] = STATE(456), - [sym_throw_statement] = STATE(456), - [sym_try_statement] = STATE(456), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [304] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [273] = { - [sym_catch_clause] = STATE(155), - [aux_sym_constructor_try_statement_repeat1] = STATE(155), - [sym_identifier] = ACTIONS(2559), - [aux_sym_preproc_include_token1] = ACTIONS(2559), - [aux_sym_preproc_def_token1] = ACTIONS(2559), - [aux_sym_preproc_if_token1] = ACTIONS(2559), - [aux_sym_preproc_if_token2] = ACTIONS(2559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), - [aux_sym_preproc_else_token1] = ACTIONS(2559), - [aux_sym_preproc_elif_token1] = ACTIONS(2559), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2559), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2559), - [sym_preproc_directive] = ACTIONS(2559), - [anon_sym_LPAREN2] = ACTIONS(2561), - [anon_sym_BANG] = ACTIONS(2561), - [anon_sym_TILDE] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2559), - [anon_sym_STAR] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2561), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2561), - [anon_sym___extension__] = ACTIONS(2559), - [anon_sym_typedef] = ACTIONS(2559), - [anon_sym_extern] = ACTIONS(2559), - [anon_sym___attribute__] = ACTIONS(2559), - [anon_sym_COLON_COLON] = ACTIONS(2561), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2559), - [anon_sym___based] = ACTIONS(2559), - [anon_sym___cdecl] = ACTIONS(2559), - [anon_sym___clrcall] = ACTIONS(2559), - [anon_sym___stdcall] = ACTIONS(2559), - [anon_sym___fastcall] = ACTIONS(2559), - [anon_sym___thiscall] = ACTIONS(2559), - [anon_sym___vectorcall] = ACTIONS(2559), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_signed] = ACTIONS(2559), - [anon_sym_unsigned] = ACTIONS(2559), - [anon_sym_long] = ACTIONS(2559), - [anon_sym_short] = ACTIONS(2559), - [anon_sym_LBRACK] = ACTIONS(2559), - [anon_sym_static] = ACTIONS(2559), - [anon_sym_register] = ACTIONS(2559), - [anon_sym_inline] = ACTIONS(2559), - [anon_sym___inline] = ACTIONS(2559), - [anon_sym___inline__] = ACTIONS(2559), - [anon_sym___forceinline] = ACTIONS(2559), - [anon_sym_thread_local] = ACTIONS(2559), - [anon_sym___thread] = ACTIONS(2559), - [anon_sym_const] = ACTIONS(2559), - [anon_sym_constexpr] = ACTIONS(2559), - [anon_sym_volatile] = ACTIONS(2559), - [anon_sym_restrict] = ACTIONS(2559), - [anon_sym___restrict__] = ACTIONS(2559), - [anon_sym__Atomic] = ACTIONS(2559), - [anon_sym__Noreturn] = ACTIONS(2559), - [anon_sym_noreturn] = ACTIONS(2559), - [anon_sym_mutable] = ACTIONS(2559), - [anon_sym_constinit] = ACTIONS(2559), - [anon_sym_consteval] = ACTIONS(2559), - [sym_primitive_type] = ACTIONS(2559), - [anon_sym_enum] = ACTIONS(2559), - [anon_sym_class] = ACTIONS(2559), - [anon_sym_struct] = ACTIONS(2559), - [anon_sym_union] = ACTIONS(2559), - [anon_sym_if] = ACTIONS(2559), - [anon_sym_switch] = ACTIONS(2559), - [anon_sym_case] = ACTIONS(2559), - [anon_sym_default] = ACTIONS(2559), - [anon_sym_while] = ACTIONS(2559), - [anon_sym_do] = ACTIONS(2559), - [anon_sym_for] = ACTIONS(2559), - [anon_sym_return] = ACTIONS(2559), - [anon_sym_break] = ACTIONS(2559), - [anon_sym_continue] = ACTIONS(2559), - [anon_sym_goto] = ACTIONS(2559), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_compl] = ACTIONS(2559), - [anon_sym_DASH_DASH] = ACTIONS(2561), - [anon_sym_PLUS_PLUS] = ACTIONS(2561), - [anon_sym_sizeof] = ACTIONS(2559), - [anon_sym___alignof__] = ACTIONS(2559), - [anon_sym___alignof] = ACTIONS(2559), - [anon_sym__alignof] = ACTIONS(2559), - [anon_sym_alignof] = ACTIONS(2559), - [anon_sym__Alignof] = ACTIONS(2559), - [anon_sym_offsetof] = ACTIONS(2559), - [anon_sym__Generic] = ACTIONS(2559), - [anon_sym_asm] = ACTIONS(2559), - [anon_sym___asm__] = ACTIONS(2559), - [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(2559), - [sym_false] = ACTIONS(2559), - [anon_sym_NULL] = ACTIONS(2559), - [anon_sym_nullptr] = ACTIONS(2559), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2559), - [anon_sym_decltype] = ACTIONS(2559), - [anon_sym_virtual] = ACTIONS(2559), - [anon_sym_alignas] = ACTIONS(2559), - [anon_sym_explicit] = ACTIONS(2559), - [anon_sym_typename] = ACTIONS(2559), - [anon_sym_template] = ACTIONS(2559), - [anon_sym_operator] = ACTIONS(2559), - [anon_sym_try] = ACTIONS(2559), - [anon_sym_delete] = ACTIONS(2559), - [anon_sym_throw] = ACTIONS(2559), - [anon_sym_namespace] = ACTIONS(2559), - [anon_sym_using] = ACTIONS(2559), - [anon_sym_static_assert] = ACTIONS(2559), - [anon_sym_concept] = ACTIONS(2559), - [anon_sym_co_return] = ACTIONS(2559), - [anon_sym_co_yield] = ACTIONS(2559), - [anon_sym_catch] = ACTIONS(2228), - [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(2559), - [anon_sym_new] = ACTIONS(2559), - [anon_sym_requires] = ACTIONS(2559), - [sym_this] = ACTIONS(2559), + [305] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [274] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(1149), - [sym_attributed_statement] = STATE(1143), - [sym_labeled_statement] = STATE(1139), - [sym_expression_statement] = STATE(1134), - [sym_if_statement] = STATE(1133), - [sym_switch_statement] = STATE(1127), - [sym_case_statement] = STATE(1120), - [sym_while_statement] = STATE(1117), - [sym_do_statement] = STATE(1116), - [sym_for_statement] = STATE(1114), - [sym_return_statement] = STATE(1113), - [sym_break_statement] = STATE(1112), - [sym_continue_statement] = STATE(1111), - [sym_goto_statement] = STATE(1110), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1109), - [sym_co_return_statement] = STATE(1105), - [sym_co_yield_statement] = STATE(968), - [sym_throw_statement] = STATE(967), - [sym_try_statement] = STATE(957), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [306] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [275] = { - [sym_attribute_declaration] = STATE(201), - [sym_compound_statement] = STATE(1016), - [sym_attributed_statement] = STATE(1016), - [sym_labeled_statement] = STATE(1016), - [sym_expression_statement] = STATE(1016), - [sym_if_statement] = STATE(1016), - [sym_switch_statement] = STATE(1016), - [sym_case_statement] = STATE(1016), - [sym_while_statement] = STATE(1016), - [sym_do_statement] = STATE(1016), - [sym_for_statement] = STATE(1016), - [sym_return_statement] = STATE(1016), - [sym_break_statement] = STATE(1016), - [sym_continue_statement] = STATE(1016), - [sym_goto_statement] = STATE(1016), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1016), - [sym_co_return_statement] = STATE(1016), - [sym_co_yield_statement] = STATE(1016), - [sym_throw_statement] = STATE(1016), - [sym_try_statement] = STATE(1016), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(2255), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [307] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [276] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(946), - [sym_attributed_statement] = STATE(942), - [sym_labeled_statement] = STATE(941), - [sym_expression_statement] = STATE(1006), - [sym_if_statement] = STATE(928), - [sym_switch_statement] = STATE(927), - [sym_case_statement] = STATE(917), - [sym_while_statement] = STATE(911), - [sym_do_statement] = STATE(909), - [sym_for_statement] = STATE(908), - [sym_return_statement] = STATE(903), - [sym_break_statement] = STATE(900), - [sym_continue_statement] = STATE(892), - [sym_goto_statement] = STATE(889), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(887), - [sym_co_return_statement] = STATE(886), - [sym_co_yield_statement] = STATE(884), - [sym_throw_statement] = STATE(993), - [sym_try_statement] = STATE(996), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [308] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [277] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3894), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9633), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9644), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9631), - [sym__unary_right_fold] = STATE(9630), - [sym__binary_fold] = STATE(9629), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), + [309] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [310] = { + [sym_identifier] = ACTIONS(2864), + [aux_sym_preproc_include_token1] = ACTIONS(2864), + [aux_sym_preproc_def_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token2] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2864), + [aux_sym_preproc_else_token1] = ACTIONS(2864), + [aux_sym_preproc_elif_token1] = ACTIONS(2864), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2864), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2864), + [sym_preproc_directive] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_AMP_AMP] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym___extension__] = ACTIONS(2864), + [anon_sym_typedef] = ACTIONS(2864), + [anon_sym_extern] = ACTIONS(2864), + [anon_sym___attribute__] = ACTIONS(2864), + [anon_sym_COLON_COLON] = ACTIONS(2866), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2866), + [anon_sym___declspec] = ACTIONS(2864), + [anon_sym___based] = ACTIONS(2864), + [anon_sym___cdecl] = ACTIONS(2864), + [anon_sym___clrcall] = ACTIONS(2864), + [anon_sym___stdcall] = ACTIONS(2864), + [anon_sym___fastcall] = ACTIONS(2864), + [anon_sym___thiscall] = ACTIONS(2864), + [anon_sym___vectorcall] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_signed] = ACTIONS(2864), + [anon_sym_unsigned] = ACTIONS(2864), + [anon_sym_long] = ACTIONS(2864), + [anon_sym_short] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_register] = ACTIONS(2864), + [anon_sym_inline] = ACTIONS(2864), + [anon_sym___inline] = ACTIONS(2864), + [anon_sym___inline__] = ACTIONS(2864), + [anon_sym___forceinline] = ACTIONS(2864), + [anon_sym_thread_local] = ACTIONS(2864), + [anon_sym___thread] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym___restrict__] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym__Noreturn] = ACTIONS(2864), + [anon_sym_noreturn] = ACTIONS(2864), + [anon_sym_mutable] = ACTIONS(2864), + [anon_sym_constinit] = ACTIONS(2864), + [anon_sym_consteval] = ACTIONS(2864), + [sym_primitive_type] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [anon_sym_class] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2864), + [anon_sym_union] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_else] = ACTIONS(2864), + [anon_sym_switch] = ACTIONS(2864), + [anon_sym_case] = ACTIONS(2864), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_goto] = ACTIONS(2864), + [anon_sym_not] = ACTIONS(2864), + [anon_sym_compl] = ACTIONS(2864), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_sizeof] = ACTIONS(2864), + [anon_sym___alignof__] = ACTIONS(2864), + [anon_sym___alignof] = ACTIONS(2864), + [anon_sym__alignof] = ACTIONS(2864), + [anon_sym_alignof] = ACTIONS(2864), + [anon_sym__Alignof] = ACTIONS(2864), + [anon_sym_offsetof] = ACTIONS(2864), + [anon_sym__Generic] = ACTIONS(2864), + [anon_sym_asm] = ACTIONS(2864), + [anon_sym___asm__] = ACTIONS(2864), + [sym_number_literal] = ACTIONS(2866), + [anon_sym_L_SQUOTE] = ACTIONS(2866), + [anon_sym_u_SQUOTE] = ACTIONS(2866), + [anon_sym_U_SQUOTE] = ACTIONS(2866), + [anon_sym_u8_SQUOTE] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_L_DQUOTE] = ACTIONS(2866), + [anon_sym_u_DQUOTE] = ACTIONS(2866), + [anon_sym_U_DQUOTE] = ACTIONS(2866), + [anon_sym_u8_DQUOTE] = ACTIONS(2866), + [anon_sym_DQUOTE] = ACTIONS(2866), + [sym_true] = ACTIONS(2864), + [sym_false] = ACTIONS(2864), + [anon_sym_NULL] = ACTIONS(2864), + [anon_sym_nullptr] = ACTIONS(2864), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2864), + [anon_sym_decltype] = ACTIONS(2864), + [anon_sym_virtual] = ACTIONS(2864), + [anon_sym_alignas] = ACTIONS(2864), + [anon_sym_explicit] = ACTIONS(2864), + [anon_sym_typename] = ACTIONS(2864), + [anon_sym_template] = ACTIONS(2864), + [anon_sym_operator] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_delete] = ACTIONS(2864), + [anon_sym_throw] = ACTIONS(2864), + [anon_sym_namespace] = ACTIONS(2864), + [anon_sym_using] = ACTIONS(2864), + [anon_sym_static_assert] = ACTIONS(2864), + [anon_sym_concept] = ACTIONS(2864), + [anon_sym_co_return] = ACTIONS(2864), + [anon_sym_co_yield] = ACTIONS(2864), + [anon_sym_R_DQUOTE] = ACTIONS(2866), + [anon_sym_LR_DQUOTE] = ACTIONS(2866), + [anon_sym_uR_DQUOTE] = ACTIONS(2866), + [anon_sym_UR_DQUOTE] = ACTIONS(2866), + [anon_sym_u8R_DQUOTE] = ACTIONS(2866), + [anon_sym_co_await] = ACTIONS(2864), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_requires] = ACTIONS(2864), + [sym_this] = ACTIONS(2864), + }, + [311] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [312] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [313] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [314] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [315] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [316] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [317] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [318] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [319] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [320] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [321] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [322] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [323] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [324] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [325] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [326] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [327] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [328] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [329] = { + [sym_identifier] = ACTIONS(2868), + [aux_sym_preproc_include_token1] = ACTIONS(2868), + [aux_sym_preproc_def_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token2] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2868), + [aux_sym_preproc_else_token1] = ACTIONS(2868), + [aux_sym_preproc_elif_token1] = ACTIONS(2868), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2868), + [sym_preproc_directive] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym___extension__] = ACTIONS(2868), + [anon_sym_typedef] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym___attribute__] = ACTIONS(2868), + [anon_sym_COLON_COLON] = ACTIONS(2870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2870), + [anon_sym___declspec] = ACTIONS(2868), + [anon_sym___based] = ACTIONS(2868), + [anon_sym___cdecl] = ACTIONS(2868), + [anon_sym___clrcall] = ACTIONS(2868), + [anon_sym___stdcall] = ACTIONS(2868), + [anon_sym___fastcall] = ACTIONS(2868), + [anon_sym___thiscall] = ACTIONS(2868), + [anon_sym___vectorcall] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_signed] = ACTIONS(2868), + [anon_sym_unsigned] = ACTIONS(2868), + [anon_sym_long] = ACTIONS(2868), + [anon_sym_short] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_register] = ACTIONS(2868), + [anon_sym_inline] = ACTIONS(2868), + [anon_sym___inline] = ACTIONS(2868), + [anon_sym___inline__] = ACTIONS(2868), + [anon_sym___forceinline] = ACTIONS(2868), + [anon_sym_thread_local] = ACTIONS(2868), + [anon_sym___thread] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_constexpr] = ACTIONS(2868), + [anon_sym_volatile] = ACTIONS(2868), + [anon_sym_restrict] = ACTIONS(2868), + [anon_sym___restrict__] = ACTIONS(2868), + [anon_sym__Atomic] = ACTIONS(2868), + [anon_sym__Noreturn] = ACTIONS(2868), + [anon_sym_noreturn] = ACTIONS(2868), + [anon_sym_mutable] = ACTIONS(2868), + [anon_sym_constinit] = ACTIONS(2868), + [anon_sym_consteval] = ACTIONS(2868), + [sym_primitive_type] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_class] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2868), + [anon_sym_union] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_goto] = ACTIONS(2868), + [anon_sym_not] = ACTIONS(2868), + [anon_sym_compl] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_sizeof] = ACTIONS(2868), + [anon_sym___alignof__] = ACTIONS(2868), + [anon_sym___alignof] = ACTIONS(2868), + [anon_sym__alignof] = ACTIONS(2868), + [anon_sym_alignof] = ACTIONS(2868), + [anon_sym__Alignof] = ACTIONS(2868), + [anon_sym_offsetof] = ACTIONS(2868), + [anon_sym__Generic] = ACTIONS(2868), + [anon_sym_asm] = ACTIONS(2868), + [anon_sym___asm__] = ACTIONS(2868), + [sym_number_literal] = ACTIONS(2870), + [anon_sym_L_SQUOTE] = ACTIONS(2870), + [anon_sym_u_SQUOTE] = ACTIONS(2870), + [anon_sym_U_SQUOTE] = ACTIONS(2870), + [anon_sym_u8_SQUOTE] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_L_DQUOTE] = ACTIONS(2870), + [anon_sym_u_DQUOTE] = ACTIONS(2870), + [anon_sym_U_DQUOTE] = ACTIONS(2870), + [anon_sym_u8_DQUOTE] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [sym_true] = ACTIONS(2868), + [sym_false] = ACTIONS(2868), + [anon_sym_NULL] = ACTIONS(2868), + [anon_sym_nullptr] = ACTIONS(2868), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2868), + [anon_sym_decltype] = ACTIONS(2868), + [anon_sym_virtual] = ACTIONS(2868), + [anon_sym_alignas] = ACTIONS(2868), + [anon_sym_explicit] = ACTIONS(2868), + [anon_sym_typename] = ACTIONS(2868), + [anon_sym_template] = ACTIONS(2868), + [anon_sym_operator] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_delete] = ACTIONS(2868), + [anon_sym_throw] = ACTIONS(2868), + [anon_sym_namespace] = ACTIONS(2868), + [anon_sym_using] = ACTIONS(2868), + [anon_sym_static_assert] = ACTIONS(2868), + [anon_sym_concept] = ACTIONS(2868), + [anon_sym_co_return] = ACTIONS(2868), + [anon_sym_co_yield] = ACTIONS(2868), + [anon_sym_R_DQUOTE] = ACTIONS(2870), + [anon_sym_LR_DQUOTE] = ACTIONS(2870), + [anon_sym_uR_DQUOTE] = ACTIONS(2870), + [anon_sym_UR_DQUOTE] = ACTIONS(2870), + [anon_sym_u8R_DQUOTE] = ACTIONS(2870), + [anon_sym_co_await] = ACTIONS(2868), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_requires] = ACTIONS(2868), + [sym_this] = ACTIONS(2868), + }, + [330] = { + [sym_identifier] = ACTIONS(2872), + [aux_sym_preproc_include_token1] = ACTIONS(2872), + [aux_sym_preproc_def_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token2] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2872), + [aux_sym_preproc_else_token1] = ACTIONS(2872), + [aux_sym_preproc_elif_token1] = ACTIONS(2872), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2872), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2872), + [sym_preproc_directive] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_AMP_AMP] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym___extension__] = ACTIONS(2872), + [anon_sym_typedef] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym___attribute__] = ACTIONS(2872), + [anon_sym_COLON_COLON] = ACTIONS(2874), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2874), + [anon_sym___declspec] = ACTIONS(2872), + [anon_sym___based] = ACTIONS(2872), + [anon_sym___cdecl] = ACTIONS(2872), + [anon_sym___clrcall] = ACTIONS(2872), + [anon_sym___stdcall] = ACTIONS(2872), + [anon_sym___fastcall] = ACTIONS(2872), + [anon_sym___thiscall] = ACTIONS(2872), + [anon_sym___vectorcall] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_signed] = ACTIONS(2872), + [anon_sym_unsigned] = ACTIONS(2872), + [anon_sym_long] = ACTIONS(2872), + [anon_sym_short] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_register] = ACTIONS(2872), + [anon_sym_inline] = ACTIONS(2872), + [anon_sym___inline] = ACTIONS(2872), + [anon_sym___inline__] = ACTIONS(2872), + [anon_sym___forceinline] = ACTIONS(2872), + [anon_sym_thread_local] = ACTIONS(2872), + [anon_sym___thread] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_constexpr] = ACTIONS(2872), + [anon_sym_volatile] = ACTIONS(2872), + [anon_sym_restrict] = ACTIONS(2872), + [anon_sym___restrict__] = ACTIONS(2872), + [anon_sym__Atomic] = ACTIONS(2872), + [anon_sym__Noreturn] = ACTIONS(2872), + [anon_sym_noreturn] = ACTIONS(2872), + [anon_sym_mutable] = ACTIONS(2872), + [anon_sym_constinit] = ACTIONS(2872), + [anon_sym_consteval] = ACTIONS(2872), + [sym_primitive_type] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_class] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_else] = ACTIONS(2872), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_case] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_goto] = ACTIONS(2872), + [anon_sym_not] = ACTIONS(2872), + [anon_sym_compl] = ACTIONS(2872), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_sizeof] = ACTIONS(2872), + [anon_sym___alignof__] = ACTIONS(2872), + [anon_sym___alignof] = ACTIONS(2872), + [anon_sym__alignof] = ACTIONS(2872), + [anon_sym_alignof] = ACTIONS(2872), + [anon_sym__Alignof] = ACTIONS(2872), + [anon_sym_offsetof] = ACTIONS(2872), + [anon_sym__Generic] = ACTIONS(2872), + [anon_sym_asm] = ACTIONS(2872), + [anon_sym___asm__] = ACTIONS(2872), + [sym_number_literal] = ACTIONS(2874), + [anon_sym_L_SQUOTE] = ACTIONS(2874), + [anon_sym_u_SQUOTE] = ACTIONS(2874), + [anon_sym_U_SQUOTE] = ACTIONS(2874), + [anon_sym_u8_SQUOTE] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_L_DQUOTE] = ACTIONS(2874), + [anon_sym_u_DQUOTE] = ACTIONS(2874), + [anon_sym_U_DQUOTE] = ACTIONS(2874), + [anon_sym_u8_DQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE] = ACTIONS(2874), + [sym_true] = ACTIONS(2872), + [sym_false] = ACTIONS(2872), + [anon_sym_NULL] = ACTIONS(2872), + [anon_sym_nullptr] = ACTIONS(2872), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2872), + [anon_sym_decltype] = ACTIONS(2872), + [anon_sym_virtual] = ACTIONS(2872), + [anon_sym_alignas] = ACTIONS(2872), + [anon_sym_explicit] = ACTIONS(2872), + [anon_sym_typename] = ACTIONS(2872), + [anon_sym_template] = ACTIONS(2872), + [anon_sym_operator] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_delete] = ACTIONS(2872), + [anon_sym_throw] = ACTIONS(2872), + [anon_sym_namespace] = ACTIONS(2872), + [anon_sym_using] = ACTIONS(2872), + [anon_sym_static_assert] = ACTIONS(2872), + [anon_sym_concept] = ACTIONS(2872), + [anon_sym_co_return] = ACTIONS(2872), + [anon_sym_co_yield] = ACTIONS(2872), + [anon_sym_R_DQUOTE] = ACTIONS(2874), + [anon_sym_LR_DQUOTE] = ACTIONS(2874), + [anon_sym_uR_DQUOTE] = ACTIONS(2874), + [anon_sym_UR_DQUOTE] = ACTIONS(2874), + [anon_sym_u8R_DQUOTE] = ACTIONS(2874), + [anon_sym_co_await] = ACTIONS(2872), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_requires] = ACTIONS(2872), + [sym_this] = ACTIONS(2872), + }, + [331] = { + [sym_identifier] = ACTIONS(2876), + [aux_sym_preproc_include_token1] = ACTIONS(2876), + [aux_sym_preproc_def_token1] = ACTIONS(2876), + [aux_sym_preproc_if_token1] = ACTIONS(2876), + [aux_sym_preproc_if_token2] = ACTIONS(2876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2876), + [aux_sym_preproc_else_token1] = ACTIONS(2876), + [aux_sym_preproc_elif_token1] = ACTIONS(2876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2876), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2876), + [sym_preproc_directive] = ACTIONS(2876), + [anon_sym_LPAREN2] = ACTIONS(2878), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_TILDE] = ACTIONS(2878), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym___extension__] = ACTIONS(2876), + [anon_sym_typedef] = ACTIONS(2876), + [anon_sym_extern] = ACTIONS(2876), + [anon_sym___attribute__] = ACTIONS(2876), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2878), + [anon_sym___declspec] = ACTIONS(2876), + [anon_sym___based] = ACTIONS(2876), + [anon_sym___cdecl] = ACTIONS(2876), + [anon_sym___clrcall] = ACTIONS(2876), + [anon_sym___stdcall] = ACTIONS(2876), + [anon_sym___fastcall] = ACTIONS(2876), + [anon_sym___thiscall] = ACTIONS(2876), + [anon_sym___vectorcall] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_signed] = ACTIONS(2876), + [anon_sym_unsigned] = ACTIONS(2876), + [anon_sym_long] = ACTIONS(2876), + [anon_sym_short] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_register] = ACTIONS(2876), + [anon_sym_inline] = ACTIONS(2876), + [anon_sym___inline] = ACTIONS(2876), + [anon_sym___inline__] = ACTIONS(2876), + [anon_sym___forceinline] = ACTIONS(2876), + [anon_sym_thread_local] = ACTIONS(2876), + [anon_sym___thread] = ACTIONS(2876), + [anon_sym_const] = ACTIONS(2876), + [anon_sym_constexpr] = ACTIONS(2876), + [anon_sym_volatile] = ACTIONS(2876), + [anon_sym_restrict] = ACTIONS(2876), + [anon_sym___restrict__] = ACTIONS(2876), + [anon_sym__Atomic] = ACTIONS(2876), + [anon_sym__Noreturn] = ACTIONS(2876), + [anon_sym_noreturn] = ACTIONS(2876), + [anon_sym_mutable] = ACTIONS(2876), + [anon_sym_constinit] = ACTIONS(2876), + [anon_sym_consteval] = ACTIONS(2876), + [sym_primitive_type] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), + [anon_sym_class] = ACTIONS(2876), + [anon_sym_struct] = ACTIONS(2876), + [anon_sym_union] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_else] = ACTIONS(2876), + [anon_sym_switch] = ACTIONS(2876), + [anon_sym_case] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_goto] = ACTIONS(2876), + [anon_sym_not] = ACTIONS(2876), + [anon_sym_compl] = ACTIONS(2876), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_sizeof] = ACTIONS(2876), + [anon_sym___alignof__] = ACTIONS(2876), + [anon_sym___alignof] = ACTIONS(2876), + [anon_sym__alignof] = ACTIONS(2876), + [anon_sym_alignof] = ACTIONS(2876), + [anon_sym__Alignof] = ACTIONS(2876), + [anon_sym_offsetof] = ACTIONS(2876), + [anon_sym__Generic] = ACTIONS(2876), + [anon_sym_asm] = ACTIONS(2876), + [anon_sym___asm__] = ACTIONS(2876), + [sym_number_literal] = ACTIONS(2878), + [anon_sym_L_SQUOTE] = ACTIONS(2878), + [anon_sym_u_SQUOTE] = ACTIONS(2878), + [anon_sym_U_SQUOTE] = ACTIONS(2878), + [anon_sym_u8_SQUOTE] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_L_DQUOTE] = ACTIONS(2878), + [anon_sym_u_DQUOTE] = ACTIONS(2878), + [anon_sym_U_DQUOTE] = ACTIONS(2878), + [anon_sym_u8_DQUOTE] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [sym_true] = ACTIONS(2876), + [sym_false] = ACTIONS(2876), + [anon_sym_NULL] = ACTIONS(2876), + [anon_sym_nullptr] = ACTIONS(2876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2876), + [anon_sym_decltype] = ACTIONS(2876), + [anon_sym_virtual] = ACTIONS(2876), + [anon_sym_alignas] = ACTIONS(2876), + [anon_sym_explicit] = ACTIONS(2876), + [anon_sym_typename] = ACTIONS(2876), + [anon_sym_template] = ACTIONS(2876), + [anon_sym_operator] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_delete] = ACTIONS(2876), + [anon_sym_throw] = ACTIONS(2876), + [anon_sym_namespace] = ACTIONS(2876), + [anon_sym_using] = ACTIONS(2876), + [anon_sym_static_assert] = ACTIONS(2876), + [anon_sym_concept] = ACTIONS(2876), + [anon_sym_co_return] = ACTIONS(2876), + [anon_sym_co_yield] = ACTIONS(2876), + [anon_sym_R_DQUOTE] = ACTIONS(2878), + [anon_sym_LR_DQUOTE] = ACTIONS(2878), + [anon_sym_uR_DQUOTE] = ACTIONS(2878), + [anon_sym_UR_DQUOTE] = ACTIONS(2878), + [anon_sym_u8R_DQUOTE] = ACTIONS(2878), + [anon_sym_co_await] = ACTIONS(2876), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_requires] = ACTIONS(2876), + [sym_this] = ACTIONS(2876), + }, + [332] = { + [sym_identifier] = ACTIONS(2880), + [aux_sym_preproc_include_token1] = ACTIONS(2880), + [aux_sym_preproc_def_token1] = ACTIONS(2880), + [aux_sym_preproc_if_token1] = ACTIONS(2880), + [aux_sym_preproc_if_token2] = ACTIONS(2880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2880), + [aux_sym_preproc_else_token1] = ACTIONS(2880), + [aux_sym_preproc_elif_token1] = ACTIONS(2880), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2880), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2880), + [sym_preproc_directive] = ACTIONS(2880), + [anon_sym_LPAREN2] = ACTIONS(2882), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_SEMI] = ACTIONS(2882), + [anon_sym___extension__] = ACTIONS(2880), + [anon_sym_typedef] = ACTIONS(2880), + [anon_sym_extern] = ACTIONS(2880), + [anon_sym___attribute__] = ACTIONS(2880), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2882), + [anon_sym___declspec] = ACTIONS(2880), + [anon_sym___based] = ACTIONS(2880), + [anon_sym___cdecl] = ACTIONS(2880), + [anon_sym___clrcall] = ACTIONS(2880), + [anon_sym___stdcall] = ACTIONS(2880), + [anon_sym___fastcall] = ACTIONS(2880), + [anon_sym___thiscall] = ACTIONS(2880), + [anon_sym___vectorcall] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_signed] = ACTIONS(2880), + [anon_sym_unsigned] = ACTIONS(2880), + [anon_sym_long] = ACTIONS(2880), + [anon_sym_short] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_static] = ACTIONS(2880), + [anon_sym_register] = ACTIONS(2880), + [anon_sym_inline] = ACTIONS(2880), + [anon_sym___inline] = ACTIONS(2880), + [anon_sym___inline__] = ACTIONS(2880), + [anon_sym___forceinline] = ACTIONS(2880), + [anon_sym_thread_local] = ACTIONS(2880), + [anon_sym___thread] = ACTIONS(2880), + [anon_sym_const] = ACTIONS(2880), + [anon_sym_constexpr] = ACTIONS(2880), + [anon_sym_volatile] = ACTIONS(2880), + [anon_sym_restrict] = ACTIONS(2880), + [anon_sym___restrict__] = ACTIONS(2880), + [anon_sym__Atomic] = ACTIONS(2880), + [anon_sym__Noreturn] = ACTIONS(2880), + [anon_sym_noreturn] = ACTIONS(2880), + [anon_sym_mutable] = ACTIONS(2880), + [anon_sym_constinit] = ACTIONS(2880), + [anon_sym_consteval] = ACTIONS(2880), + [sym_primitive_type] = ACTIONS(2880), + [anon_sym_enum] = ACTIONS(2880), + [anon_sym_class] = ACTIONS(2880), + [anon_sym_struct] = ACTIONS(2880), + [anon_sym_union] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_else] = ACTIONS(2880), + [anon_sym_switch] = ACTIONS(2880), + [anon_sym_case] = ACTIONS(2880), + [anon_sym_default] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_break] = ACTIONS(2880), + [anon_sym_continue] = ACTIONS(2880), + [anon_sym_goto] = ACTIONS(2880), + [anon_sym_not] = ACTIONS(2880), + [anon_sym_compl] = ACTIONS(2880), + [anon_sym_DASH_DASH] = ACTIONS(2882), + [anon_sym_PLUS_PLUS] = ACTIONS(2882), + [anon_sym_sizeof] = ACTIONS(2880), + [anon_sym___alignof__] = ACTIONS(2880), + [anon_sym___alignof] = ACTIONS(2880), + [anon_sym__alignof] = ACTIONS(2880), + [anon_sym_alignof] = ACTIONS(2880), + [anon_sym__Alignof] = ACTIONS(2880), + [anon_sym_offsetof] = ACTIONS(2880), + [anon_sym__Generic] = ACTIONS(2880), + [anon_sym_asm] = ACTIONS(2880), + [anon_sym___asm__] = ACTIONS(2880), + [sym_number_literal] = ACTIONS(2882), + [anon_sym_L_SQUOTE] = ACTIONS(2882), + [anon_sym_u_SQUOTE] = ACTIONS(2882), + [anon_sym_U_SQUOTE] = ACTIONS(2882), + [anon_sym_u8_SQUOTE] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_L_DQUOTE] = ACTIONS(2882), + [anon_sym_u_DQUOTE] = ACTIONS(2882), + [anon_sym_U_DQUOTE] = ACTIONS(2882), + [anon_sym_u8_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE] = ACTIONS(2882), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [anon_sym_NULL] = ACTIONS(2880), + [anon_sym_nullptr] = ACTIONS(2880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2880), + [anon_sym_decltype] = ACTIONS(2880), + [anon_sym_virtual] = ACTIONS(2880), + [anon_sym_alignas] = ACTIONS(2880), + [anon_sym_explicit] = ACTIONS(2880), + [anon_sym_typename] = ACTIONS(2880), + [anon_sym_template] = ACTIONS(2880), + [anon_sym_operator] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_delete] = ACTIONS(2880), + [anon_sym_throw] = ACTIONS(2880), + [anon_sym_namespace] = ACTIONS(2880), + [anon_sym_using] = ACTIONS(2880), + [anon_sym_static_assert] = ACTIONS(2880), + [anon_sym_concept] = ACTIONS(2880), + [anon_sym_co_return] = ACTIONS(2880), + [anon_sym_co_yield] = ACTIONS(2880), + [anon_sym_R_DQUOTE] = ACTIONS(2882), + [anon_sym_LR_DQUOTE] = ACTIONS(2882), + [anon_sym_uR_DQUOTE] = ACTIONS(2882), + [anon_sym_UR_DQUOTE] = ACTIONS(2882), + [anon_sym_u8R_DQUOTE] = ACTIONS(2882), + [anon_sym_co_await] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_requires] = ACTIONS(2880), + [sym_this] = ACTIONS(2880), + }, + [333] = { + [sym_identifier] = ACTIONS(2884), + [aux_sym_preproc_include_token1] = ACTIONS(2884), + [aux_sym_preproc_def_token1] = ACTIONS(2884), + [aux_sym_preproc_if_token1] = ACTIONS(2884), + [aux_sym_preproc_if_token2] = ACTIONS(2884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2884), + [aux_sym_preproc_else_token1] = ACTIONS(2884), + [aux_sym_preproc_elif_token1] = ACTIONS(2884), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2884), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2884), + [sym_preproc_directive] = ACTIONS(2884), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_STAR] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_SEMI] = ACTIONS(2886), + [anon_sym___extension__] = ACTIONS(2884), + [anon_sym_typedef] = ACTIONS(2884), + [anon_sym_extern] = ACTIONS(2884), + [anon_sym___attribute__] = ACTIONS(2884), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2886), + [anon_sym___declspec] = ACTIONS(2884), + [anon_sym___based] = ACTIONS(2884), + [anon_sym___cdecl] = ACTIONS(2884), + [anon_sym___clrcall] = ACTIONS(2884), + [anon_sym___stdcall] = ACTIONS(2884), + [anon_sym___fastcall] = ACTIONS(2884), + [anon_sym___thiscall] = ACTIONS(2884), + [anon_sym___vectorcall] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_signed] = ACTIONS(2884), + [anon_sym_unsigned] = ACTIONS(2884), + [anon_sym_long] = ACTIONS(2884), + [anon_sym_short] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(2884), + [anon_sym_register] = ACTIONS(2884), + [anon_sym_inline] = ACTIONS(2884), + [anon_sym___inline] = ACTIONS(2884), + [anon_sym___inline__] = ACTIONS(2884), + [anon_sym___forceinline] = ACTIONS(2884), + [anon_sym_thread_local] = ACTIONS(2884), + [anon_sym___thread] = ACTIONS(2884), + [anon_sym_const] = ACTIONS(2884), + [anon_sym_constexpr] = ACTIONS(2884), + [anon_sym_volatile] = ACTIONS(2884), + [anon_sym_restrict] = ACTIONS(2884), + [anon_sym___restrict__] = ACTIONS(2884), + [anon_sym__Atomic] = ACTIONS(2884), + [anon_sym__Noreturn] = ACTIONS(2884), + [anon_sym_noreturn] = ACTIONS(2884), + [anon_sym_mutable] = ACTIONS(2884), + [anon_sym_constinit] = ACTIONS(2884), + [anon_sym_consteval] = ACTIONS(2884), + [sym_primitive_type] = ACTIONS(2884), + [anon_sym_enum] = ACTIONS(2884), + [anon_sym_class] = ACTIONS(2884), + [anon_sym_struct] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_switch] = ACTIONS(2884), + [anon_sym_case] = ACTIONS(2884), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_break] = ACTIONS(2884), + [anon_sym_continue] = ACTIONS(2884), + [anon_sym_goto] = ACTIONS(2884), + [anon_sym_not] = ACTIONS(2884), + [anon_sym_compl] = ACTIONS(2884), + [anon_sym_DASH_DASH] = ACTIONS(2886), + [anon_sym_PLUS_PLUS] = ACTIONS(2886), + [anon_sym_sizeof] = ACTIONS(2884), + [anon_sym___alignof__] = ACTIONS(2884), + [anon_sym___alignof] = ACTIONS(2884), + [anon_sym__alignof] = ACTIONS(2884), + [anon_sym_alignof] = ACTIONS(2884), + [anon_sym__Alignof] = ACTIONS(2884), + [anon_sym_offsetof] = ACTIONS(2884), + [anon_sym__Generic] = ACTIONS(2884), + [anon_sym_asm] = ACTIONS(2884), + [anon_sym___asm__] = ACTIONS(2884), + [sym_number_literal] = ACTIONS(2886), + [anon_sym_L_SQUOTE] = ACTIONS(2886), + [anon_sym_u_SQUOTE] = ACTIONS(2886), + [anon_sym_U_SQUOTE] = ACTIONS(2886), + [anon_sym_u8_SQUOTE] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_L_DQUOTE] = ACTIONS(2886), + [anon_sym_u_DQUOTE] = ACTIONS(2886), + [anon_sym_U_DQUOTE] = ACTIONS(2886), + [anon_sym_u8_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [sym_true] = ACTIONS(2884), + [sym_false] = ACTIONS(2884), + [anon_sym_NULL] = ACTIONS(2884), + [anon_sym_nullptr] = ACTIONS(2884), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2884), + [anon_sym_decltype] = ACTIONS(2884), + [anon_sym_virtual] = ACTIONS(2884), + [anon_sym_alignas] = ACTIONS(2884), + [anon_sym_explicit] = ACTIONS(2884), + [anon_sym_typename] = ACTIONS(2884), + [anon_sym_template] = ACTIONS(2884), + [anon_sym_operator] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_delete] = ACTIONS(2884), + [anon_sym_throw] = ACTIONS(2884), + [anon_sym_namespace] = ACTIONS(2884), + [anon_sym_using] = ACTIONS(2884), + [anon_sym_static_assert] = ACTIONS(2884), + [anon_sym_concept] = ACTIONS(2884), + [anon_sym_co_return] = ACTIONS(2884), + [anon_sym_co_yield] = ACTIONS(2884), + [anon_sym_R_DQUOTE] = ACTIONS(2886), + [anon_sym_LR_DQUOTE] = ACTIONS(2886), + [anon_sym_uR_DQUOTE] = ACTIONS(2886), + [anon_sym_UR_DQUOTE] = ACTIONS(2886), + [anon_sym_u8R_DQUOTE] = ACTIONS(2886), + [anon_sym_co_await] = ACTIONS(2884), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_requires] = ACTIONS(2884), + [sym_this] = ACTIONS(2884), + }, + [334] = { + [sym_type_qualifier] = STATE(3780), + [sym__type_specifier] = STATE(4440), + [sym_sized_type_specifier] = STATE(2799), + [sym_enum_specifier] = STATE(2799), + [sym_struct_specifier] = STATE(2799), + [sym_union_specifier] = STATE(2799), + [sym__expression] = STATE(3972), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_type_descriptor] = STATE(6453), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_placeholder_type_specifier] = STATE(2799), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2758), + [sym_class_specifier] = STATE(2799), + [sym__class_name] = STATE(6922), + [sym_dependent_type] = STATE(2799), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_type_parameter_pack_expansion] = STATE(6831), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5157), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3355), + [aux_sym__type_definition_type_repeat1] = STATE(3780), + [aux_sym_sized_type_specifier_repeat1] = STATE(2297), + [sym_identifier] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2018), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -98101,2050 +102411,2675 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), + [sym_primitive_type] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2934), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2938), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [anon_sym_GT2] = ACTIONS(2940), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [278] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(1025), - [sym_attributed_statement] = STATE(1027), - [sym_labeled_statement] = STATE(1030), - [sym_expression_statement] = STATE(1032), - [sym_if_statement] = STATE(1037), - [sym_switch_statement] = STATE(1041), - [sym_case_statement] = STATE(1042), - [sym_while_statement] = STATE(1047), - [sym_do_statement] = STATE(1059), - [sym_for_statement] = STATE(1070), - [sym_return_statement] = STATE(1073), - [sym_break_statement] = STATE(1074), - [sym_continue_statement] = STATE(1078), - [sym_goto_statement] = STATE(1079), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1080), - [sym_co_return_statement] = STATE(1087), - [sym_co_yield_statement] = STATE(1095), - [sym_throw_statement] = STATE(1099), - [sym_try_statement] = STATE(1103), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [335] = { + [sym_catch_clause] = STATE(336), + [aux_sym_constructor_try_statement_repeat1] = STATE(336), + [sym_identifier] = ACTIONS(2212), + [aux_sym_preproc_include_token1] = ACTIONS(2212), + [aux_sym_preproc_def_token1] = ACTIONS(2212), + [aux_sym_preproc_if_token1] = ACTIONS(2212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2212), + [sym_preproc_directive] = ACTIONS(2212), + [anon_sym_LPAREN2] = ACTIONS(2214), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym___extension__] = ACTIONS(2212), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_extern] = ACTIONS(2212), + [anon_sym___attribute__] = ACTIONS(2212), + [anon_sym_COLON_COLON] = ACTIONS(2214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [anon_sym___declspec] = ACTIONS(2212), + [anon_sym___based] = ACTIONS(2212), + [anon_sym___cdecl] = ACTIONS(2212), + [anon_sym___clrcall] = ACTIONS(2212), + [anon_sym___stdcall] = ACTIONS(2212), + [anon_sym___fastcall] = ACTIONS(2212), + [anon_sym___thiscall] = ACTIONS(2212), + [anon_sym___vectorcall] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_signed] = ACTIONS(2212), + [anon_sym_unsigned] = ACTIONS(2212), + [anon_sym_long] = ACTIONS(2212), + [anon_sym_short] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_register] = ACTIONS(2212), + [anon_sym_inline] = ACTIONS(2212), + [anon_sym___inline] = ACTIONS(2212), + [anon_sym___inline__] = ACTIONS(2212), + [anon_sym___forceinline] = ACTIONS(2212), + [anon_sym_thread_local] = ACTIONS(2212), + [anon_sym___thread] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_constexpr] = ACTIONS(2212), + [anon_sym_volatile] = ACTIONS(2212), + [anon_sym_restrict] = ACTIONS(2212), + [anon_sym___restrict__] = ACTIONS(2212), + [anon_sym__Atomic] = ACTIONS(2212), + [anon_sym__Noreturn] = ACTIONS(2212), + [anon_sym_noreturn] = ACTIONS(2212), + [anon_sym_mutable] = ACTIONS(2212), + [anon_sym_constinit] = ACTIONS(2212), + [anon_sym_consteval] = ACTIONS(2212), + [sym_primitive_type] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_struct] = ACTIONS(2212), + [anon_sym_union] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_else] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_case] = ACTIONS(2212), + [anon_sym_default] = ACTIONS(2212), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_goto] = ACTIONS(2212), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2214), + [anon_sym_PLUS_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2212), + [anon_sym___alignof__] = ACTIONS(2212), + [anon_sym___alignof] = ACTIONS(2212), + [anon_sym__alignof] = ACTIONS(2212), + [anon_sym_alignof] = ACTIONS(2212), + [anon_sym__Alignof] = ACTIONS(2212), + [anon_sym_offsetof] = ACTIONS(2212), + [anon_sym__Generic] = ACTIONS(2212), + [anon_sym_asm] = ACTIONS(2212), + [anon_sym___asm__] = ACTIONS(2212), + [sym_number_literal] = ACTIONS(2214), + [anon_sym_L_SQUOTE] = ACTIONS(2214), + [anon_sym_u_SQUOTE] = ACTIONS(2214), + [anon_sym_U_SQUOTE] = ACTIONS(2214), + [anon_sym_u8_SQUOTE] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2214), + [anon_sym_L_DQUOTE] = ACTIONS(2214), + [anon_sym_u_DQUOTE] = ACTIONS(2214), + [anon_sym_U_DQUOTE] = ACTIONS(2214), + [anon_sym_u8_DQUOTE] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2214), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [anon_sym_NULL] = ACTIONS(2212), + [anon_sym_nullptr] = ACTIONS(2212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2212), + [anon_sym_decltype] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(2212), + [anon_sym_alignas] = ACTIONS(2212), + [anon_sym_explicit] = ACTIONS(2212), + [anon_sym_typename] = ACTIONS(2212), + [anon_sym_template] = ACTIONS(2212), + [anon_sym_operator] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_static_assert] = ACTIONS(2212), + [anon_sym_concept] = ACTIONS(2212), + [anon_sym_co_return] = ACTIONS(2212), + [anon_sym_co_yield] = ACTIONS(2212), + [anon_sym_catch] = ACTIONS(2952), + [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(2212), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_requires] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), }, - [279] = { - [sym_catch_clause] = STATE(155), - [aux_sym_constructor_try_statement_repeat1] = STATE(155), - [sym_identifier] = ACTIONS(2563), - [aux_sym_preproc_include_token1] = ACTIONS(2563), - [aux_sym_preproc_def_token1] = ACTIONS(2563), - [aux_sym_preproc_if_token1] = ACTIONS(2563), - [aux_sym_preproc_if_token2] = ACTIONS(2563), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2563), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2563), - [aux_sym_preproc_else_token1] = ACTIONS(2563), - [aux_sym_preproc_elif_token1] = ACTIONS(2563), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2563), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2563), - [sym_preproc_directive] = ACTIONS(2563), - [anon_sym_LPAREN2] = ACTIONS(2565), - [anon_sym_BANG] = ACTIONS(2565), - [anon_sym_TILDE] = ACTIONS(2565), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_STAR] = ACTIONS(2565), - [anon_sym_AMP_AMP] = ACTIONS(2565), - [anon_sym_AMP] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2565), - [anon_sym___extension__] = ACTIONS(2563), - [anon_sym_typedef] = ACTIONS(2563), - [anon_sym_extern] = ACTIONS(2563), - [anon_sym___attribute__] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2565), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), - [anon_sym___declspec] = ACTIONS(2563), - [anon_sym___based] = ACTIONS(2563), - [anon_sym___cdecl] = ACTIONS(2563), - [anon_sym___clrcall] = ACTIONS(2563), - [anon_sym___stdcall] = ACTIONS(2563), - [anon_sym___fastcall] = ACTIONS(2563), - [anon_sym___thiscall] = ACTIONS(2563), - [anon_sym___vectorcall] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2565), - [anon_sym_signed] = ACTIONS(2563), - [anon_sym_unsigned] = ACTIONS(2563), - [anon_sym_long] = ACTIONS(2563), - [anon_sym_short] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(2563), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2563), - [anon_sym_inline] = ACTIONS(2563), - [anon_sym___inline] = ACTIONS(2563), - [anon_sym___inline__] = ACTIONS(2563), - [anon_sym___forceinline] = ACTIONS(2563), - [anon_sym_thread_local] = ACTIONS(2563), - [anon_sym___thread] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_constexpr] = ACTIONS(2563), - [anon_sym_volatile] = ACTIONS(2563), - [anon_sym_restrict] = ACTIONS(2563), - [anon_sym___restrict__] = ACTIONS(2563), - [anon_sym__Atomic] = ACTIONS(2563), - [anon_sym__Noreturn] = ACTIONS(2563), - [anon_sym_noreturn] = ACTIONS(2563), - [anon_sym_mutable] = ACTIONS(2563), - [anon_sym_constinit] = ACTIONS(2563), - [anon_sym_consteval] = ACTIONS(2563), - [sym_primitive_type] = ACTIONS(2563), - [anon_sym_enum] = ACTIONS(2563), - [anon_sym_class] = ACTIONS(2563), - [anon_sym_struct] = ACTIONS(2563), - [anon_sym_union] = ACTIONS(2563), - [anon_sym_if] = ACTIONS(2563), - [anon_sym_switch] = ACTIONS(2563), - [anon_sym_case] = ACTIONS(2563), - [anon_sym_default] = ACTIONS(2563), - [anon_sym_while] = ACTIONS(2563), - [anon_sym_do] = ACTIONS(2563), - [anon_sym_for] = ACTIONS(2563), - [anon_sym_return] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_goto] = ACTIONS(2563), - [anon_sym_not] = ACTIONS(2563), - [anon_sym_compl] = ACTIONS(2563), - [anon_sym_DASH_DASH] = ACTIONS(2565), - [anon_sym_PLUS_PLUS] = ACTIONS(2565), - [anon_sym_sizeof] = ACTIONS(2563), - [anon_sym___alignof__] = ACTIONS(2563), - [anon_sym___alignof] = ACTIONS(2563), - [anon_sym__alignof] = ACTIONS(2563), - [anon_sym_alignof] = ACTIONS(2563), - [anon_sym__Alignof] = ACTIONS(2563), - [anon_sym_offsetof] = ACTIONS(2563), - [anon_sym__Generic] = ACTIONS(2563), - [anon_sym_asm] = ACTIONS(2563), - [anon_sym___asm__] = ACTIONS(2563), - [sym_number_literal] = ACTIONS(2565), - [anon_sym_L_SQUOTE] = ACTIONS(2565), - [anon_sym_u_SQUOTE] = ACTIONS(2565), - [anon_sym_U_SQUOTE] = ACTIONS(2565), - [anon_sym_u8_SQUOTE] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2565), - [anon_sym_L_DQUOTE] = ACTIONS(2565), - [anon_sym_u_DQUOTE] = ACTIONS(2565), - [anon_sym_U_DQUOTE] = ACTIONS(2565), - [anon_sym_u8_DQUOTE] = ACTIONS(2565), - [anon_sym_DQUOTE] = ACTIONS(2565), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [anon_sym_NULL] = ACTIONS(2563), - [anon_sym_nullptr] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2563), - [anon_sym_decltype] = ACTIONS(2563), - [anon_sym_virtual] = ACTIONS(2563), - [anon_sym_alignas] = ACTIONS(2563), - [anon_sym_explicit] = ACTIONS(2563), - [anon_sym_typename] = ACTIONS(2563), - [anon_sym_template] = ACTIONS(2563), - [anon_sym_operator] = ACTIONS(2563), - [anon_sym_try] = ACTIONS(2563), - [anon_sym_delete] = ACTIONS(2563), - [anon_sym_throw] = ACTIONS(2563), - [anon_sym_namespace] = ACTIONS(2563), - [anon_sym_using] = ACTIONS(2563), - [anon_sym_static_assert] = ACTIONS(2563), - [anon_sym_concept] = ACTIONS(2563), - [anon_sym_co_return] = ACTIONS(2563), - [anon_sym_co_yield] = ACTIONS(2563), - [anon_sym_catch] = ACTIONS(2228), - [anon_sym_R_DQUOTE] = ACTIONS(2565), - [anon_sym_LR_DQUOTE] = ACTIONS(2565), - [anon_sym_uR_DQUOTE] = ACTIONS(2565), - [anon_sym_UR_DQUOTE] = ACTIONS(2565), - [anon_sym_u8R_DQUOTE] = ACTIONS(2565), - [anon_sym_co_await] = ACTIONS(2563), - [anon_sym_new] = ACTIONS(2563), - [anon_sym_requires] = ACTIONS(2563), - [sym_this] = ACTIONS(2563), + [336] = { + [sym_catch_clause] = STATE(336), + [aux_sym_constructor_try_statement_repeat1] = STATE(336), + [sym_identifier] = ACTIONS(2218), + [aux_sym_preproc_include_token1] = ACTIONS(2218), + [aux_sym_preproc_def_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2218), + [sym_preproc_directive] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_PLUS] = ACTIONS(2218), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP_AMP] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2218), + [anon_sym_typedef] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym___attribute__] = ACTIONS(2218), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2220), + [anon_sym___declspec] = ACTIONS(2218), + [anon_sym___based] = ACTIONS(2218), + [anon_sym___cdecl] = ACTIONS(2218), + [anon_sym___clrcall] = ACTIONS(2218), + [anon_sym___stdcall] = ACTIONS(2218), + [anon_sym___fastcall] = ACTIONS(2218), + [anon_sym___thiscall] = ACTIONS(2218), + [anon_sym___vectorcall] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_RBRACE] = ACTIONS(2220), + [anon_sym_signed] = ACTIONS(2218), + [anon_sym_unsigned] = ACTIONS(2218), + [anon_sym_long] = ACTIONS(2218), + [anon_sym_short] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_inline] = ACTIONS(2218), + [anon_sym___inline] = ACTIONS(2218), + [anon_sym___inline__] = ACTIONS(2218), + [anon_sym___forceinline] = ACTIONS(2218), + [anon_sym_thread_local] = ACTIONS(2218), + [anon_sym___thread] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_constexpr] = ACTIONS(2218), + [anon_sym_volatile] = ACTIONS(2218), + [anon_sym_restrict] = ACTIONS(2218), + [anon_sym___restrict__] = ACTIONS(2218), + [anon_sym__Atomic] = ACTIONS(2218), + [anon_sym__Noreturn] = ACTIONS(2218), + [anon_sym_noreturn] = ACTIONS(2218), + [anon_sym_mutable] = ACTIONS(2218), + [anon_sym_constinit] = ACTIONS(2218), + [anon_sym_consteval] = ACTIONS(2218), + [sym_primitive_type] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_class] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_else] = ACTIONS(2218), + [anon_sym_switch] = ACTIONS(2218), + [anon_sym_case] = ACTIONS(2218), + [anon_sym_default] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_do] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_goto] = ACTIONS(2218), + [anon_sym_not] = ACTIONS(2218), + [anon_sym_compl] = ACTIONS(2218), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(2218), + [anon_sym___alignof__] = ACTIONS(2218), + [anon_sym___alignof] = ACTIONS(2218), + [anon_sym__alignof] = ACTIONS(2218), + [anon_sym_alignof] = ACTIONS(2218), + [anon_sym__Alignof] = ACTIONS(2218), + [anon_sym_offsetof] = ACTIONS(2218), + [anon_sym__Generic] = ACTIONS(2218), + [anon_sym_asm] = ACTIONS(2218), + [anon_sym___asm__] = ACTIONS(2218), + [sym_number_literal] = ACTIONS(2220), + [anon_sym_L_SQUOTE] = ACTIONS(2220), + [anon_sym_u_SQUOTE] = ACTIONS(2220), + [anon_sym_U_SQUOTE] = ACTIONS(2220), + [anon_sym_u8_SQUOTE] = ACTIONS(2220), + [anon_sym_SQUOTE] = ACTIONS(2220), + [anon_sym_L_DQUOTE] = ACTIONS(2220), + [anon_sym_u_DQUOTE] = ACTIONS(2220), + [anon_sym_U_DQUOTE] = ACTIONS(2220), + [anon_sym_u8_DQUOTE] = ACTIONS(2220), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_true] = ACTIONS(2218), + [sym_false] = ACTIONS(2218), + [anon_sym_NULL] = ACTIONS(2218), + [anon_sym_nullptr] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2218), + [anon_sym_virtual] = ACTIONS(2218), + [anon_sym_alignas] = ACTIONS(2218), + [anon_sym_explicit] = ACTIONS(2218), + [anon_sym_typename] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_operator] = ACTIONS(2218), + [anon_sym_try] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(2218), + [anon_sym_throw] = ACTIONS(2218), + [anon_sym_namespace] = ACTIONS(2218), + [anon_sym_using] = ACTIONS(2218), + [anon_sym_static_assert] = ACTIONS(2218), + [anon_sym_concept] = ACTIONS(2218), + [anon_sym_co_return] = ACTIONS(2218), + [anon_sym_co_yield] = ACTIONS(2218), + [anon_sym_catch] = ACTIONS(2954), + [anon_sym_R_DQUOTE] = ACTIONS(2220), + [anon_sym_LR_DQUOTE] = ACTIONS(2220), + [anon_sym_uR_DQUOTE] = ACTIONS(2220), + [anon_sym_UR_DQUOTE] = ACTIONS(2220), + [anon_sym_u8R_DQUOTE] = ACTIONS(2220), + [anon_sym_co_await] = ACTIONS(2218), + [anon_sym_new] = ACTIONS(2218), + [anon_sym_requires] = ACTIONS(2218), + [sym_this] = ACTIONS(2218), }, - [280] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(673), - [sym_attributed_statement] = STATE(673), - [sym_labeled_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_if_statement] = STATE(673), - [sym_switch_statement] = STATE(673), - [sym_case_statement] = STATE(673), - [sym_while_statement] = STATE(673), - [sym_do_statement] = STATE(673), - [sym_for_statement] = STATE(673), - [sym_return_statement] = STATE(673), - [sym_break_statement] = STATE(673), - [sym_continue_statement] = STATE(673), - [sym_goto_statement] = STATE(673), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(673), - [sym_co_return_statement] = STATE(673), - [sym_co_yield_statement] = STATE(673), - [sym_throw_statement] = STATE(673), - [sym_try_statement] = STATE(673), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [337] = { + [sym_identifier] = ACTIONS(2957), + [aux_sym_preproc_include_token1] = ACTIONS(2957), + [aux_sym_preproc_def_token1] = ACTIONS(2957), + [aux_sym_preproc_if_token1] = ACTIONS(2957), + [aux_sym_preproc_if_token2] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2957), + [aux_sym_preproc_else_token1] = ACTIONS(2957), + [aux_sym_preproc_elif_token1] = ACTIONS(2957), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2957), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2957), + [sym_preproc_directive] = ACTIONS(2957), + [anon_sym_LPAREN2] = ACTIONS(2959), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2959), + [anon_sym___extension__] = ACTIONS(2957), + [anon_sym_typedef] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym___attribute__] = ACTIONS(2957), + [anon_sym_COLON_COLON] = ACTIONS(2959), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), + [anon_sym___declspec] = ACTIONS(2957), + [anon_sym___based] = ACTIONS(2957), + [anon_sym___cdecl] = ACTIONS(2957), + [anon_sym___clrcall] = ACTIONS(2957), + [anon_sym___stdcall] = ACTIONS(2957), + [anon_sym___fastcall] = ACTIONS(2957), + [anon_sym___thiscall] = ACTIONS(2957), + [anon_sym___vectorcall] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_signed] = ACTIONS(2957), + [anon_sym_unsigned] = ACTIONS(2957), + [anon_sym_long] = ACTIONS(2957), + [anon_sym_short] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_static] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_inline] = ACTIONS(2957), + [anon_sym___inline] = ACTIONS(2957), + [anon_sym___inline__] = ACTIONS(2957), + [anon_sym___forceinline] = ACTIONS(2957), + [anon_sym_thread_local] = ACTIONS(2957), + [anon_sym___thread] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_constexpr] = ACTIONS(2957), + [anon_sym_volatile] = ACTIONS(2957), + [anon_sym_restrict] = ACTIONS(2957), + [anon_sym___restrict__] = ACTIONS(2957), + [anon_sym__Atomic] = ACTIONS(2957), + [anon_sym__Noreturn] = ACTIONS(2957), + [anon_sym_noreturn] = ACTIONS(2957), + [anon_sym_mutable] = ACTIONS(2957), + [anon_sym_constinit] = ACTIONS(2957), + [anon_sym_consteval] = ACTIONS(2957), + [sym_primitive_type] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [anon_sym_class] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_union] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_switch] = ACTIONS(2957), + [anon_sym_case] = ACTIONS(2957), + [anon_sym_default] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_goto] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [anon_sym_compl] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_sizeof] = ACTIONS(2957), + [anon_sym___alignof__] = ACTIONS(2957), + [anon_sym___alignof] = ACTIONS(2957), + [anon_sym__alignof] = ACTIONS(2957), + [anon_sym_alignof] = ACTIONS(2957), + [anon_sym__Alignof] = ACTIONS(2957), + [anon_sym_offsetof] = ACTIONS(2957), + [anon_sym__Generic] = ACTIONS(2957), + [anon_sym_asm] = ACTIONS(2957), + [anon_sym___asm__] = ACTIONS(2957), + [sym_number_literal] = ACTIONS(2959), + [anon_sym_L_SQUOTE] = ACTIONS(2959), + [anon_sym_u_SQUOTE] = ACTIONS(2959), + [anon_sym_U_SQUOTE] = ACTIONS(2959), + [anon_sym_u8_SQUOTE] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2959), + [anon_sym_L_DQUOTE] = ACTIONS(2959), + [anon_sym_u_DQUOTE] = ACTIONS(2959), + [anon_sym_U_DQUOTE] = ACTIONS(2959), + [anon_sym_u8_DQUOTE] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [anon_sym_NULL] = ACTIONS(2957), + [anon_sym_nullptr] = ACTIONS(2957), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2957), + [anon_sym_decltype] = ACTIONS(2957), + [anon_sym_virtual] = ACTIONS(2957), + [anon_sym_alignas] = ACTIONS(2957), + [anon_sym_explicit] = ACTIONS(2957), + [anon_sym_typename] = ACTIONS(2957), + [anon_sym_template] = ACTIONS(2957), + [anon_sym_operator] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_delete] = ACTIONS(2957), + [anon_sym_throw] = ACTIONS(2957), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_using] = ACTIONS(2957), + [anon_sym_static_assert] = ACTIONS(2957), + [anon_sym_concept] = ACTIONS(2957), + [anon_sym_co_return] = ACTIONS(2957), + [anon_sym_co_yield] = ACTIONS(2957), + [anon_sym_R_DQUOTE] = ACTIONS(2959), + [anon_sym_LR_DQUOTE] = ACTIONS(2959), + [anon_sym_uR_DQUOTE] = ACTIONS(2959), + [anon_sym_UR_DQUOTE] = ACTIONS(2959), + [anon_sym_u8R_DQUOTE] = ACTIONS(2959), + [anon_sym_co_await] = ACTIONS(2957), + [anon_sym_new] = ACTIONS(2957), + [anon_sym_requires] = ACTIONS(2957), + [sym_this] = ACTIONS(2957), }, - [281] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(8195), - [sym_attributed_statement] = STATE(8195), - [sym_labeled_statement] = STATE(8195), - [sym_expression_statement] = STATE(8195), - [sym_if_statement] = STATE(8195), - [sym_switch_statement] = STATE(8195), - [sym_case_statement] = STATE(8195), - [sym_while_statement] = STATE(8195), - [sym_do_statement] = STATE(8195), - [sym_for_statement] = STATE(8195), - [sym_return_statement] = STATE(8195), - [sym_break_statement] = STATE(8195), - [sym_continue_statement] = STATE(8195), - [sym_goto_statement] = STATE(8195), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(8195), - [sym_co_return_statement] = STATE(8195), - [sym_co_yield_statement] = STATE(8195), - [sym_throw_statement] = STATE(8195), - [sym_try_statement] = STATE(8195), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [338] = { + [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_extern] = ACTIONS(2961), + [anon_sym___attribute__] = ACTIONS(2961), + [anon_sym_COLON_COLON] = ACTIONS(2963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), + [anon_sym___declspec] = ACTIONS(2961), + [anon_sym___based] = ACTIONS(2961), + [anon_sym___cdecl] = ACTIONS(2961), + [anon_sym___clrcall] = ACTIONS(2961), + [anon_sym___stdcall] = ACTIONS(2961), + [anon_sym___fastcall] = ACTIONS(2961), + [anon_sym___thiscall] = ACTIONS(2961), + [anon_sym___vectorcall] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2963), + [anon_sym_signed] = ACTIONS(2961), + [anon_sym_unsigned] = ACTIONS(2961), + [anon_sym_long] = ACTIONS(2961), + [anon_sym_short] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_static] = ACTIONS(2961), + [anon_sym_register] = ACTIONS(2961), + [anon_sym_inline] = ACTIONS(2961), + [anon_sym___inline] = ACTIONS(2961), + [anon_sym___inline__] = ACTIONS(2961), + [anon_sym___forceinline] = ACTIONS(2961), + [anon_sym_thread_local] = ACTIONS(2961), + [anon_sym___thread] = ACTIONS(2961), + [anon_sym_const] = ACTIONS(2961), + [anon_sym_constexpr] = ACTIONS(2961), + [anon_sym_volatile] = ACTIONS(2961), + [anon_sym_restrict] = ACTIONS(2961), + [anon_sym___restrict__] = ACTIONS(2961), + [anon_sym__Atomic] = ACTIONS(2961), + [anon_sym__Noreturn] = ACTIONS(2961), + [anon_sym_noreturn] = ACTIONS(2961), + [anon_sym_mutable] = ACTIONS(2961), + [anon_sym_constinit] = ACTIONS(2961), + [anon_sym_consteval] = ACTIONS(2961), + [sym_primitive_type] = ACTIONS(2961), + [anon_sym_enum] = ACTIONS(2961), + [anon_sym_class] = ACTIONS(2961), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_union] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_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), + [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), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2961), + [anon_sym_decltype] = ACTIONS(2961), + [anon_sym_virtual] = ACTIONS(2961), + [anon_sym_alignas] = ACTIONS(2961), + [anon_sym_explicit] = ACTIONS(2961), + [anon_sym_typename] = ACTIONS(2961), + [anon_sym_template] = ACTIONS(2961), + [anon_sym_operator] = ACTIONS(2961), + [anon_sym_try] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2961), + [anon_sym_throw] = ACTIONS(2961), + [anon_sym_namespace] = ACTIONS(2961), + [anon_sym_using] = ACTIONS(2961), + [anon_sym_static_assert] = ACTIONS(2961), + [anon_sym_concept] = ACTIONS(2961), + [anon_sym_co_return] = ACTIONS(2961), + [anon_sym_co_yield] = ACTIONS(2961), + [anon_sym_R_DQUOTE] = ACTIONS(2963), + [anon_sym_LR_DQUOTE] = ACTIONS(2963), + [anon_sym_uR_DQUOTE] = ACTIONS(2963), + [anon_sym_UR_DQUOTE] = ACTIONS(2963), + [anon_sym_u8R_DQUOTE] = ACTIONS(2963), + [anon_sym_co_await] = ACTIONS(2961), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2961), + [sym_this] = ACTIONS(2961), }, - [282] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(692), - [sym_attributed_statement] = STATE(692), - [sym_labeled_statement] = STATE(692), - [sym_expression_statement] = STATE(692), - [sym_if_statement] = STATE(692), - [sym_switch_statement] = STATE(692), - [sym_case_statement] = STATE(692), - [sym_while_statement] = STATE(692), - [sym_do_statement] = STATE(692), - [sym_for_statement] = STATE(692), - [sym_return_statement] = STATE(692), - [sym_break_statement] = STATE(692), - [sym_continue_statement] = STATE(692), - [sym_goto_statement] = STATE(692), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(692), - [sym_co_return_statement] = STATE(692), - [sym_co_yield_statement] = STATE(692), - [sym_throw_statement] = STATE(692), - [sym_try_statement] = STATE(692), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [339] = { + [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_extern] = ACTIONS(2965), + [anon_sym___attribute__] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(2967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), + [anon_sym___declspec] = ACTIONS(2965), + [anon_sym___based] = ACTIONS(2965), + [anon_sym___cdecl] = ACTIONS(2965), + [anon_sym___clrcall] = ACTIONS(2965), + [anon_sym___stdcall] = ACTIONS(2965), + [anon_sym___fastcall] = ACTIONS(2965), + [anon_sym___thiscall] = ACTIONS(2965), + [anon_sym___vectorcall] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_signed] = ACTIONS(2965), + [anon_sym_unsigned] = ACTIONS(2965), + [anon_sym_long] = ACTIONS(2965), + [anon_sym_short] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_static] = ACTIONS(2965), + [anon_sym_register] = ACTIONS(2965), + [anon_sym_inline] = ACTIONS(2965), + [anon_sym___inline] = ACTIONS(2965), + [anon_sym___inline__] = ACTIONS(2965), + [anon_sym___forceinline] = ACTIONS(2965), + [anon_sym_thread_local] = ACTIONS(2965), + [anon_sym___thread] = ACTIONS(2965), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_constexpr] = ACTIONS(2965), + [anon_sym_volatile] = ACTIONS(2965), + [anon_sym_restrict] = ACTIONS(2965), + [anon_sym___restrict__] = ACTIONS(2965), + [anon_sym__Atomic] = ACTIONS(2965), + [anon_sym__Noreturn] = ACTIONS(2965), + [anon_sym_noreturn] = ACTIONS(2965), + [anon_sym_mutable] = ACTIONS(2965), + [anon_sym_constinit] = ACTIONS(2965), + [anon_sym_consteval] = ACTIONS(2965), + [sym_primitive_type] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_class] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_union] = ACTIONS(2965), + [anon_sym_if] = ACTIONS(2965), + [anon_sym_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), + [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), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2965), + [anon_sym_decltype] = ACTIONS(2965), + [anon_sym_virtual] = ACTIONS(2965), + [anon_sym_alignas] = ACTIONS(2965), + [anon_sym_explicit] = ACTIONS(2965), + [anon_sym_typename] = ACTIONS(2965), + [anon_sym_template] = ACTIONS(2965), + [anon_sym_operator] = ACTIONS(2965), + [anon_sym_try] = ACTIONS(2965), + [anon_sym_delete] = ACTIONS(2965), + [anon_sym_throw] = ACTIONS(2965), + [anon_sym_namespace] = ACTIONS(2965), + [anon_sym_using] = ACTIONS(2965), + [anon_sym_static_assert] = ACTIONS(2965), + [anon_sym_concept] = ACTIONS(2965), + [anon_sym_co_return] = ACTIONS(2965), + [anon_sym_co_yield] = ACTIONS(2965), + [anon_sym_R_DQUOTE] = ACTIONS(2967), + [anon_sym_LR_DQUOTE] = ACTIONS(2967), + [anon_sym_uR_DQUOTE] = ACTIONS(2967), + [anon_sym_UR_DQUOTE] = ACTIONS(2967), + [anon_sym_u8R_DQUOTE] = ACTIONS(2967), + [anon_sym_co_await] = ACTIONS(2965), + [anon_sym_new] = ACTIONS(2965), + [anon_sym_requires] = ACTIONS(2965), + [sym_this] = ACTIONS(2965), }, - [283] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(695), - [sym_attributed_statement] = STATE(695), - [sym_labeled_statement] = STATE(695), - [sym_expression_statement] = STATE(695), - [sym_if_statement] = STATE(695), - [sym_switch_statement] = STATE(695), - [sym_case_statement] = STATE(695), - [sym_while_statement] = STATE(695), - [sym_do_statement] = STATE(695), - [sym_for_statement] = STATE(695), - [sym_return_statement] = STATE(695), - [sym_break_statement] = STATE(695), - [sym_continue_statement] = STATE(695), - [sym_goto_statement] = STATE(695), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(695), - [sym_co_return_statement] = STATE(695), - [sym_co_yield_statement] = STATE(695), - [sym_throw_statement] = STATE(695), - [sym_try_statement] = STATE(695), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [340] = { + [sym_identifier] = ACTIONS(2969), + [aux_sym_preproc_include_token1] = ACTIONS(2969), + [aux_sym_preproc_def_token1] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(2969), + [aux_sym_preproc_if_token2] = ACTIONS(2969), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), + [aux_sym_preproc_else_token1] = ACTIONS(2969), + [aux_sym_preproc_elif_token1] = ACTIONS(2969), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), + [sym_preproc_directive] = ACTIONS(2969), + [anon_sym_LPAREN2] = ACTIONS(2971), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2969), + [anon_sym_SEMI] = ACTIONS(2971), + [anon_sym___extension__] = ACTIONS(2969), + [anon_sym_typedef] = ACTIONS(2969), + [anon_sym_extern] = ACTIONS(2969), + [anon_sym___attribute__] = ACTIONS(2969), + [anon_sym_COLON_COLON] = ACTIONS(2971), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), + [anon_sym___declspec] = ACTIONS(2969), + [anon_sym___based] = ACTIONS(2969), + [anon_sym___cdecl] = ACTIONS(2969), + [anon_sym___clrcall] = ACTIONS(2969), + [anon_sym___stdcall] = ACTIONS(2969), + [anon_sym___fastcall] = ACTIONS(2969), + [anon_sym___thiscall] = ACTIONS(2969), + [anon_sym___vectorcall] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_signed] = ACTIONS(2969), + [anon_sym_unsigned] = ACTIONS(2969), + [anon_sym_long] = ACTIONS(2969), + [anon_sym_short] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(2969), + [anon_sym_register] = ACTIONS(2969), + [anon_sym_inline] = ACTIONS(2969), + [anon_sym___inline] = ACTIONS(2969), + [anon_sym___inline__] = ACTIONS(2969), + [anon_sym___forceinline] = ACTIONS(2969), + [anon_sym_thread_local] = ACTIONS(2969), + [anon_sym___thread] = ACTIONS(2969), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_constexpr] = ACTIONS(2969), + [anon_sym_volatile] = ACTIONS(2969), + [anon_sym_restrict] = ACTIONS(2969), + [anon_sym___restrict__] = ACTIONS(2969), + [anon_sym__Atomic] = ACTIONS(2969), + [anon_sym__Noreturn] = ACTIONS(2969), + [anon_sym_noreturn] = ACTIONS(2969), + [anon_sym_mutable] = ACTIONS(2969), + [anon_sym_constinit] = ACTIONS(2969), + [anon_sym_consteval] = ACTIONS(2969), + [sym_primitive_type] = ACTIONS(2969), + [anon_sym_enum] = ACTIONS(2969), + [anon_sym_class] = ACTIONS(2969), + [anon_sym_struct] = ACTIONS(2969), + [anon_sym_union] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_switch] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2969), + [anon_sym_default] = ACTIONS(2969), + [anon_sym_while] = ACTIONS(2969), + [anon_sym_do] = ACTIONS(2969), + [anon_sym_for] = ACTIONS(2969), + [anon_sym_return] = ACTIONS(2969), + [anon_sym_break] = ACTIONS(2969), + [anon_sym_continue] = ACTIONS(2969), + [anon_sym_goto] = ACTIONS(2969), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(2971), + [anon_sym_PLUS_PLUS] = ACTIONS(2971), + [anon_sym_sizeof] = ACTIONS(2969), + [anon_sym___alignof__] = ACTIONS(2969), + [anon_sym___alignof] = ACTIONS(2969), + [anon_sym__alignof] = ACTIONS(2969), + [anon_sym_alignof] = ACTIONS(2969), + [anon_sym__Alignof] = ACTIONS(2969), + [anon_sym_offsetof] = ACTIONS(2969), + [anon_sym__Generic] = ACTIONS(2969), + [anon_sym_asm] = ACTIONS(2969), + [anon_sym___asm__] = ACTIONS(2969), + [sym_number_literal] = ACTIONS(2971), + [anon_sym_L_SQUOTE] = ACTIONS(2971), + [anon_sym_u_SQUOTE] = ACTIONS(2971), + [anon_sym_U_SQUOTE] = ACTIONS(2971), + [anon_sym_u8_SQUOTE] = ACTIONS(2971), + [anon_sym_SQUOTE] = ACTIONS(2971), + [anon_sym_L_DQUOTE] = ACTIONS(2971), + [anon_sym_u_DQUOTE] = ACTIONS(2971), + [anon_sym_U_DQUOTE] = ACTIONS(2971), + [anon_sym_u8_DQUOTE] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [sym_true] = ACTIONS(2969), + [sym_false] = ACTIONS(2969), + [anon_sym_NULL] = ACTIONS(2969), + [anon_sym_nullptr] = ACTIONS(2969), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2969), + [anon_sym_decltype] = ACTIONS(2969), + [anon_sym_virtual] = ACTIONS(2969), + [anon_sym_alignas] = ACTIONS(2969), + [anon_sym_explicit] = ACTIONS(2969), + [anon_sym_typename] = ACTIONS(2969), + [anon_sym_template] = ACTIONS(2969), + [anon_sym_operator] = ACTIONS(2969), + [anon_sym_try] = ACTIONS(2969), + [anon_sym_delete] = ACTIONS(2969), + [anon_sym_throw] = ACTIONS(2969), + [anon_sym_namespace] = ACTIONS(2969), + [anon_sym_using] = ACTIONS(2969), + [anon_sym_static_assert] = ACTIONS(2969), + [anon_sym_concept] = ACTIONS(2969), + [anon_sym_co_return] = ACTIONS(2969), + [anon_sym_co_yield] = ACTIONS(2969), + [anon_sym_R_DQUOTE] = ACTIONS(2971), + [anon_sym_LR_DQUOTE] = ACTIONS(2971), + [anon_sym_uR_DQUOTE] = ACTIONS(2971), + [anon_sym_UR_DQUOTE] = ACTIONS(2971), + [anon_sym_u8R_DQUOTE] = ACTIONS(2971), + [anon_sym_co_await] = ACTIONS(2969), + [anon_sym_new] = ACTIONS(2969), + [anon_sym_requires] = ACTIONS(2969), + [sym_this] = ACTIONS(2969), }, - [284] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(697), - [sym_attributed_statement] = STATE(697), - [sym_labeled_statement] = STATE(697), - [sym_expression_statement] = STATE(697), - [sym_if_statement] = STATE(697), - [sym_switch_statement] = STATE(697), - [sym_case_statement] = STATE(697), - [sym_while_statement] = STATE(697), - [sym_do_statement] = STATE(697), - [sym_for_statement] = STATE(697), - [sym_return_statement] = STATE(697), - [sym_break_statement] = STATE(697), - [sym_continue_statement] = STATE(697), - [sym_goto_statement] = STATE(697), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(697), - [sym_co_return_statement] = STATE(697), - [sym_co_yield_statement] = STATE(697), - [sym_throw_statement] = STATE(697), - [sym_try_statement] = STATE(697), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [341] = { + [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_extern] = ACTIONS(2973), + [anon_sym___attribute__] = ACTIONS(2973), + [anon_sym_COLON_COLON] = ACTIONS(2975), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), + [anon_sym___declspec] = ACTIONS(2973), + [anon_sym___based] = ACTIONS(2973), + [anon_sym___cdecl] = ACTIONS(2973), + [anon_sym___clrcall] = ACTIONS(2973), + [anon_sym___stdcall] = ACTIONS(2973), + [anon_sym___fastcall] = ACTIONS(2973), + [anon_sym___thiscall] = ACTIONS(2973), + [anon_sym___vectorcall] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2975), + [anon_sym_signed] = ACTIONS(2973), + [anon_sym_unsigned] = ACTIONS(2973), + [anon_sym_long] = ACTIONS(2973), + [anon_sym_short] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_static] = ACTIONS(2973), + [anon_sym_register] = ACTIONS(2973), + [anon_sym_inline] = ACTIONS(2973), + [anon_sym___inline] = ACTIONS(2973), + [anon_sym___inline__] = ACTIONS(2973), + [anon_sym___forceinline] = ACTIONS(2973), + [anon_sym_thread_local] = ACTIONS(2973), + [anon_sym___thread] = ACTIONS(2973), + [anon_sym_const] = ACTIONS(2973), + [anon_sym_constexpr] = ACTIONS(2973), + [anon_sym_volatile] = ACTIONS(2973), + [anon_sym_restrict] = ACTIONS(2973), + [anon_sym___restrict__] = ACTIONS(2973), + [anon_sym__Atomic] = ACTIONS(2973), + [anon_sym__Noreturn] = ACTIONS(2973), + [anon_sym_noreturn] = ACTIONS(2973), + [anon_sym_mutable] = ACTIONS(2973), + [anon_sym_constinit] = ACTIONS(2973), + [anon_sym_consteval] = ACTIONS(2973), + [sym_primitive_type] = ACTIONS(2973), + [anon_sym_enum] = ACTIONS(2973), + [anon_sym_class] = ACTIONS(2973), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_union] = ACTIONS(2973), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_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), + [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), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2973), + [anon_sym_decltype] = ACTIONS(2973), + [anon_sym_virtual] = ACTIONS(2973), + [anon_sym_alignas] = ACTIONS(2973), + [anon_sym_explicit] = ACTIONS(2973), + [anon_sym_typename] = ACTIONS(2973), + [anon_sym_template] = ACTIONS(2973), + [anon_sym_operator] = ACTIONS(2973), + [anon_sym_try] = ACTIONS(2973), + [anon_sym_delete] = ACTIONS(2973), + [anon_sym_throw] = ACTIONS(2973), + [anon_sym_namespace] = ACTIONS(2973), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_static_assert] = ACTIONS(2973), + [anon_sym_concept] = ACTIONS(2973), + [anon_sym_co_return] = ACTIONS(2973), + [anon_sym_co_yield] = ACTIONS(2973), + [anon_sym_R_DQUOTE] = ACTIONS(2975), + [anon_sym_LR_DQUOTE] = ACTIONS(2975), + [anon_sym_uR_DQUOTE] = ACTIONS(2975), + [anon_sym_UR_DQUOTE] = ACTIONS(2975), + [anon_sym_u8R_DQUOTE] = ACTIONS(2975), + [anon_sym_co_await] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(2973), + [anon_sym_requires] = ACTIONS(2973), + [sym_this] = ACTIONS(2973), }, - [285] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(700), - [sym_attributed_statement] = STATE(700), - [sym_labeled_statement] = STATE(700), - [sym_expression_statement] = STATE(700), - [sym_if_statement] = STATE(700), - [sym_switch_statement] = STATE(700), - [sym_case_statement] = STATE(700), - [sym_while_statement] = STATE(700), - [sym_do_statement] = STATE(700), - [sym_for_statement] = STATE(700), - [sym_return_statement] = STATE(700), - [sym_break_statement] = STATE(700), - [sym_continue_statement] = STATE(700), - [sym_goto_statement] = STATE(700), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(700), - [sym_co_return_statement] = STATE(700), - [sym_co_yield_statement] = STATE(700), - [sym_throw_statement] = STATE(700), - [sym_try_statement] = STATE(700), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [342] = { + [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_extern] = ACTIONS(2977), + [anon_sym___attribute__] = ACTIONS(2977), + [anon_sym_COLON_COLON] = ACTIONS(2979), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), + [anon_sym___declspec] = ACTIONS(2977), + [anon_sym___based] = ACTIONS(2977), + [anon_sym___cdecl] = ACTIONS(2977), + [anon_sym___clrcall] = ACTIONS(2977), + [anon_sym___stdcall] = ACTIONS(2977), + [anon_sym___fastcall] = ACTIONS(2977), + [anon_sym___thiscall] = ACTIONS(2977), + [anon_sym___vectorcall] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_signed] = ACTIONS(2977), + [anon_sym_unsigned] = ACTIONS(2977), + [anon_sym_long] = ACTIONS(2977), + [anon_sym_short] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2977), + [anon_sym_register] = ACTIONS(2977), + [anon_sym_inline] = ACTIONS(2977), + [anon_sym___inline] = ACTIONS(2977), + [anon_sym___inline__] = ACTIONS(2977), + [anon_sym___forceinline] = ACTIONS(2977), + [anon_sym_thread_local] = ACTIONS(2977), + [anon_sym___thread] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_constexpr] = ACTIONS(2977), + [anon_sym_volatile] = ACTIONS(2977), + [anon_sym_restrict] = ACTIONS(2977), + [anon_sym___restrict__] = ACTIONS(2977), + [anon_sym__Atomic] = ACTIONS(2977), + [anon_sym__Noreturn] = ACTIONS(2977), + [anon_sym_noreturn] = ACTIONS(2977), + [anon_sym_mutable] = ACTIONS(2977), + [anon_sym_constinit] = ACTIONS(2977), + [anon_sym_consteval] = ACTIONS(2977), + [sym_primitive_type] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_union] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_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), + [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), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [286] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3894), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9633), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(8917), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9631), - [sym__unary_right_fold] = STATE(9630), - [sym__binary_fold] = STATE(9629), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_auto] = ACTIONS(2977), + [anon_sym_decltype] = ACTIONS(2977), + [anon_sym_virtual] = ACTIONS(2977), + [anon_sym_alignas] = ACTIONS(2977), + [anon_sym_explicit] = ACTIONS(2977), + [anon_sym_typename] = ACTIONS(2977), + [anon_sym_template] = ACTIONS(2977), + [anon_sym_operator] = ACTIONS(2977), + [anon_sym_try] = ACTIONS(2977), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_throw] = ACTIONS(2977), + [anon_sym_namespace] = ACTIONS(2977), + [anon_sym_using] = ACTIONS(2977), + [anon_sym_static_assert] = ACTIONS(2977), + [anon_sym_concept] = ACTIONS(2977), + [anon_sym_co_return] = ACTIONS(2977), + [anon_sym_co_yield] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2979), + [anon_sym_LR_DQUOTE] = ACTIONS(2979), + [anon_sym_uR_DQUOTE] = ACTIONS(2979), + [anon_sym_UR_DQUOTE] = ACTIONS(2979), + [anon_sym_u8R_DQUOTE] = ACTIONS(2979), + [anon_sym_co_await] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(2977), + [anon_sym_requires] = ACTIONS(2977), + [sym_this] = ACTIONS(2977), }, - [287] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(600), - [sym_attributed_statement] = STATE(600), - [sym_labeled_statement] = STATE(600), - [sym_expression_statement] = STATE(600), - [sym_if_statement] = STATE(600), - [sym_switch_statement] = STATE(600), - [sym_case_statement] = STATE(600), - [sym_while_statement] = STATE(600), - [sym_do_statement] = STATE(600), - [sym_for_statement] = STATE(600), - [sym_return_statement] = STATE(600), - [sym_break_statement] = STATE(600), - [sym_continue_statement] = STATE(600), - [sym_goto_statement] = STATE(600), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(600), - [sym_co_return_statement] = STATE(600), - [sym_co_yield_statement] = STATE(600), - [sym_throw_statement] = STATE(600), - [sym_try_statement] = STATE(600), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [343] = { + [sym_identifier] = ACTIONS(2981), + [aux_sym_preproc_include_token1] = ACTIONS(2981), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token2] = ACTIONS(2981), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2981), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2981), + [aux_sym_preproc_else_token1] = ACTIONS(2981), + [aux_sym_preproc_elif_token1] = ACTIONS(2981), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2981), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2981), + [sym_preproc_directive] = ACTIONS(2981), + [anon_sym_LPAREN2] = ACTIONS(2983), + [anon_sym_BANG] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym___extension__] = ACTIONS(2981), + [anon_sym_typedef] = ACTIONS(2981), + [anon_sym_extern] = ACTIONS(2981), + [anon_sym___attribute__] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(2983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), + [anon_sym___declspec] = ACTIONS(2981), + [anon_sym___based] = ACTIONS(2981), + [anon_sym___cdecl] = ACTIONS(2981), + [anon_sym___clrcall] = ACTIONS(2981), + [anon_sym___stdcall] = ACTIONS(2981), + [anon_sym___fastcall] = ACTIONS(2981), + [anon_sym___thiscall] = ACTIONS(2981), + [anon_sym___vectorcall] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_signed] = ACTIONS(2981), + [anon_sym_unsigned] = ACTIONS(2981), + [anon_sym_long] = ACTIONS(2981), + [anon_sym_short] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_static] = ACTIONS(2981), + [anon_sym_register] = ACTIONS(2981), + [anon_sym_inline] = ACTIONS(2981), + [anon_sym___inline] = ACTIONS(2981), + [anon_sym___inline__] = ACTIONS(2981), + [anon_sym___forceinline] = ACTIONS(2981), + [anon_sym_thread_local] = ACTIONS(2981), + [anon_sym___thread] = ACTIONS(2981), + [anon_sym_const] = ACTIONS(2981), + [anon_sym_constexpr] = ACTIONS(2981), + [anon_sym_volatile] = ACTIONS(2981), + [anon_sym_restrict] = ACTIONS(2981), + [anon_sym___restrict__] = ACTIONS(2981), + [anon_sym__Atomic] = ACTIONS(2981), + [anon_sym__Noreturn] = ACTIONS(2981), + [anon_sym_noreturn] = ACTIONS(2981), + [anon_sym_mutable] = ACTIONS(2981), + [anon_sym_constinit] = ACTIONS(2981), + [anon_sym_consteval] = ACTIONS(2981), + [sym_primitive_type] = ACTIONS(2981), + [anon_sym_enum] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(2981), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_union] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_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), + [sym_number_literal] = ACTIONS(2983), + [anon_sym_L_SQUOTE] = ACTIONS(2983), + [anon_sym_u_SQUOTE] = ACTIONS(2983), + [anon_sym_U_SQUOTE] = ACTIONS(2983), + [anon_sym_u8_SQUOTE] = ACTIONS(2983), + [anon_sym_SQUOTE] = ACTIONS(2983), + [anon_sym_L_DQUOTE] = ACTIONS(2983), + [anon_sym_u_DQUOTE] = ACTIONS(2983), + [anon_sym_U_DQUOTE] = ACTIONS(2983), + [anon_sym_u8_DQUOTE] = ACTIONS(2983), + [anon_sym_DQUOTE] = ACTIONS(2983), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [anon_sym_NULL] = ACTIONS(2981), + [anon_sym_nullptr] = ACTIONS(2981), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2981), + [anon_sym_decltype] = ACTIONS(2981), + [anon_sym_virtual] = ACTIONS(2981), + [anon_sym_alignas] = ACTIONS(2981), + [anon_sym_explicit] = ACTIONS(2981), + [anon_sym_typename] = ACTIONS(2981), + [anon_sym_template] = ACTIONS(2981), + [anon_sym_operator] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2981), + [anon_sym_delete] = ACTIONS(2981), + [anon_sym_throw] = ACTIONS(2981), + [anon_sym_namespace] = ACTIONS(2981), + [anon_sym_using] = ACTIONS(2981), + [anon_sym_static_assert] = ACTIONS(2981), + [anon_sym_concept] = ACTIONS(2981), + [anon_sym_co_return] = ACTIONS(2981), + [anon_sym_co_yield] = ACTIONS(2981), + [anon_sym_R_DQUOTE] = ACTIONS(2983), + [anon_sym_LR_DQUOTE] = ACTIONS(2983), + [anon_sym_uR_DQUOTE] = ACTIONS(2983), + [anon_sym_UR_DQUOTE] = ACTIONS(2983), + [anon_sym_u8R_DQUOTE] = ACTIONS(2983), + [anon_sym_co_await] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2981), + [anon_sym_requires] = ACTIONS(2981), + [sym_this] = ACTIONS(2981), }, - [288] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(809), - [sym_attributed_statement] = STATE(809), - [sym_labeled_statement] = STATE(809), - [sym_expression_statement] = STATE(809), - [sym_if_statement] = STATE(809), - [sym_switch_statement] = STATE(809), - [sym_case_statement] = STATE(809), - [sym_while_statement] = STATE(809), - [sym_do_statement] = STATE(809), - [sym_for_statement] = STATE(809), - [sym_return_statement] = STATE(809), - [sym_break_statement] = STATE(809), - [sym_continue_statement] = STATE(809), - [sym_goto_statement] = STATE(809), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(809), - [sym_co_return_statement] = STATE(809), - [sym_co_yield_statement] = STATE(809), - [sym_throw_statement] = STATE(809), - [sym_try_statement] = STATE(809), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [344] = { + [sym_identifier] = ACTIONS(2985), + [aux_sym_preproc_include_token1] = ACTIONS(2985), + [aux_sym_preproc_def_token1] = ACTIONS(2985), + [aux_sym_preproc_if_token1] = ACTIONS(2985), + [aux_sym_preproc_if_token2] = ACTIONS(2985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2985), + [aux_sym_preproc_else_token1] = ACTIONS(2985), + [aux_sym_preproc_elif_token1] = ACTIONS(2985), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2985), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2985), + [sym_preproc_directive] = ACTIONS(2985), + [anon_sym_LPAREN2] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_AMP_AMP] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym___extension__] = ACTIONS(2985), + [anon_sym_typedef] = ACTIONS(2985), + [anon_sym_extern] = ACTIONS(2985), + [anon_sym___attribute__] = ACTIONS(2985), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), + [anon_sym___declspec] = ACTIONS(2985), + [anon_sym___based] = ACTIONS(2985), + [anon_sym___cdecl] = ACTIONS(2985), + [anon_sym___clrcall] = ACTIONS(2985), + [anon_sym___stdcall] = ACTIONS(2985), + [anon_sym___fastcall] = ACTIONS(2985), + [anon_sym___thiscall] = ACTIONS(2985), + [anon_sym___vectorcall] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_signed] = ACTIONS(2985), + [anon_sym_unsigned] = ACTIONS(2985), + [anon_sym_long] = ACTIONS(2985), + [anon_sym_short] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_static] = ACTIONS(2985), + [anon_sym_register] = ACTIONS(2985), + [anon_sym_inline] = ACTIONS(2985), + [anon_sym___inline] = ACTIONS(2985), + [anon_sym___inline__] = ACTIONS(2985), + [anon_sym___forceinline] = ACTIONS(2985), + [anon_sym_thread_local] = ACTIONS(2985), + [anon_sym___thread] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_constexpr] = ACTIONS(2985), + [anon_sym_volatile] = ACTIONS(2985), + [anon_sym_restrict] = ACTIONS(2985), + [anon_sym___restrict__] = ACTIONS(2985), + [anon_sym__Atomic] = ACTIONS(2985), + [anon_sym__Noreturn] = ACTIONS(2985), + [anon_sym_noreturn] = ACTIONS(2985), + [anon_sym_mutable] = ACTIONS(2985), + [anon_sym_constinit] = ACTIONS(2985), + [anon_sym_consteval] = ACTIONS(2985), + [sym_primitive_type] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_class] = ACTIONS(2985), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_union] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_switch] = ACTIONS(2985), + [anon_sym_case] = ACTIONS(2985), + [anon_sym_default] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_do] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym_not] = ACTIONS(2985), + [anon_sym_compl] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_sizeof] = ACTIONS(2985), + [anon_sym___alignof__] = ACTIONS(2985), + [anon_sym___alignof] = ACTIONS(2985), + [anon_sym__alignof] = ACTIONS(2985), + [anon_sym_alignof] = ACTIONS(2985), + [anon_sym__Alignof] = ACTIONS(2985), + [anon_sym_offsetof] = ACTIONS(2985), + [anon_sym__Generic] = ACTIONS(2985), + [anon_sym_asm] = ACTIONS(2985), + [anon_sym___asm__] = ACTIONS(2985), + [sym_number_literal] = ACTIONS(2987), + [anon_sym_L_SQUOTE] = ACTIONS(2987), + [anon_sym_u_SQUOTE] = ACTIONS(2987), + [anon_sym_U_SQUOTE] = ACTIONS(2987), + [anon_sym_u8_SQUOTE] = ACTIONS(2987), + [anon_sym_SQUOTE] = ACTIONS(2987), + [anon_sym_L_DQUOTE] = ACTIONS(2987), + [anon_sym_u_DQUOTE] = ACTIONS(2987), + [anon_sym_U_DQUOTE] = ACTIONS(2987), + [anon_sym_u8_DQUOTE] = ACTIONS(2987), + [anon_sym_DQUOTE] = ACTIONS(2987), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [anon_sym_NULL] = ACTIONS(2985), + [anon_sym_nullptr] = ACTIONS(2985), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [289] = { - [sym_attribute_declaration] = STATE(289), - [sym_compound_statement] = STATE(971), - [sym_attributed_statement] = STATE(971), - [sym_labeled_statement] = STATE(971), - [sym_expression_statement] = STATE(971), - [sym_if_statement] = STATE(971), - [sym_switch_statement] = STATE(971), - [sym_case_statement] = STATE(971), - [sym_while_statement] = STATE(971), - [sym_do_statement] = STATE(971), - [sym_for_statement] = STATE(971), - [sym_return_statement] = STATE(971), - [sym_break_statement] = STATE(971), - [sym_continue_statement] = STATE(971), - [sym_goto_statement] = STATE(971), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(971), - [sym_co_return_statement] = STATE(971), - [sym_co_yield_statement] = STATE(971), - [sym_throw_statement] = STATE(971), - [sym_try_statement] = STATE(971), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(289), - [sym_identifier] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2268), - [anon_sym_BANG] = ACTIONS(2271), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2277), - [anon_sym_SEMI] = ACTIONS(2400), - [anon_sym_COLON_COLON] = ACTIONS(2283), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2286), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_LBRACK] = ACTIONS(2292), - [sym_primitive_type] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2573), - [anon_sym_switch] = ACTIONS(2576), - [anon_sym_case] = ACTIONS(2520), - [anon_sym_default] = ACTIONS(2523), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_do] = ACTIONS(2582), - [anon_sym_for] = ACTIONS(2585), - [anon_sym_return] = ACTIONS(2588), - [anon_sym_break] = ACTIONS(2591), - [anon_sym_continue] = ACTIONS(2594), - [anon_sym_goto] = ACTIONS(2597), - [anon_sym_not] = ACTIONS(2274), - [anon_sym_compl] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_sizeof] = ACTIONS(2334), - [anon_sym___alignof__] = ACTIONS(2337), - [anon_sym___alignof] = ACTIONS(2337), - [anon_sym__alignof] = ACTIONS(2337), - [anon_sym_alignof] = ACTIONS(2337), - [anon_sym__Alignof] = ACTIONS(2337), - [anon_sym_offsetof] = ACTIONS(2340), - [anon_sym__Generic] = ACTIONS(2343), - [anon_sym_asm] = ACTIONS(2346), - [anon_sym___asm__] = ACTIONS(2346), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2352), - [anon_sym_u_SQUOTE] = ACTIONS(2352), - [anon_sym_U_SQUOTE] = ACTIONS(2352), - [anon_sym_u8_SQUOTE] = ACTIONS(2352), - [anon_sym_SQUOTE] = ACTIONS(2352), - [anon_sym_L_DQUOTE] = ACTIONS(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2358), - [sym_false] = ACTIONS(2358), - [anon_sym_NULL] = ACTIONS(2361), - [anon_sym_nullptr] = ACTIONS(2361), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2364), - [anon_sym_template] = ACTIONS(2367), - [anon_sym_try] = ACTIONS(2600), - [anon_sym_delete] = ACTIONS(2373), - [anon_sym_throw] = ACTIONS(2603), - [anon_sym_co_return] = ACTIONS(2606), - [anon_sym_co_yield] = ACTIONS(2609), - [anon_sym_R_DQUOTE] = ACTIONS(2385), - [anon_sym_LR_DQUOTE] = ACTIONS(2385), - [anon_sym_uR_DQUOTE] = ACTIONS(2385), - [anon_sym_UR_DQUOTE] = ACTIONS(2385), - [anon_sym_u8R_DQUOTE] = ACTIONS(2385), - [anon_sym_co_await] = ACTIONS(2388), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_requires] = ACTIONS(2394), - [sym_this] = ACTIONS(2358), + [sym_auto] = ACTIONS(2985), + [anon_sym_decltype] = ACTIONS(2985), + [anon_sym_virtual] = ACTIONS(2985), + [anon_sym_alignas] = ACTIONS(2985), + [anon_sym_explicit] = ACTIONS(2985), + [anon_sym_typename] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(2985), + [anon_sym_operator] = ACTIONS(2985), + [anon_sym_try] = ACTIONS(2985), + [anon_sym_delete] = ACTIONS(2985), + [anon_sym_throw] = ACTIONS(2985), + [anon_sym_namespace] = ACTIONS(2985), + [anon_sym_using] = ACTIONS(2985), + [anon_sym_static_assert] = ACTIONS(2985), + [anon_sym_concept] = ACTIONS(2985), + [anon_sym_co_return] = ACTIONS(2985), + [anon_sym_co_yield] = ACTIONS(2985), + [anon_sym_R_DQUOTE] = ACTIONS(2987), + [anon_sym_LR_DQUOTE] = ACTIONS(2987), + [anon_sym_uR_DQUOTE] = ACTIONS(2987), + [anon_sym_UR_DQUOTE] = ACTIONS(2987), + [anon_sym_u8R_DQUOTE] = ACTIONS(2987), + [anon_sym_co_await] = ACTIONS(2985), + [anon_sym_new] = ACTIONS(2985), + [anon_sym_requires] = ACTIONS(2985), + [sym_this] = ACTIONS(2985), }, - [290] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(811), - [sym_attributed_statement] = STATE(811), - [sym_labeled_statement] = STATE(811), - [sym_expression_statement] = STATE(811), - [sym_if_statement] = STATE(811), - [sym_switch_statement] = STATE(811), - [sym_case_statement] = STATE(811), - [sym_while_statement] = STATE(811), - [sym_do_statement] = STATE(811), - [sym_for_statement] = STATE(811), - [sym_return_statement] = STATE(811), - [sym_break_statement] = STATE(811), - [sym_continue_statement] = STATE(811), - [sym_goto_statement] = STATE(811), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(811), - [sym_co_return_statement] = STATE(811), - [sym_co_yield_statement] = STATE(811), - [sym_throw_statement] = STATE(811), - [sym_try_statement] = STATE(811), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [345] = { + [sym_identifier] = ACTIONS(2989), + [aux_sym_preproc_include_token1] = ACTIONS(2989), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token2] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2989), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2989), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2989), + [sym_preproc_directive] = ACTIONS(2989), + [anon_sym_LPAREN2] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_SEMI] = ACTIONS(2991), + [anon_sym___extension__] = ACTIONS(2989), + [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_extern] = ACTIONS(2989), + [anon_sym___attribute__] = ACTIONS(2989), + [anon_sym_COLON_COLON] = ACTIONS(2991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), + [anon_sym___declspec] = ACTIONS(2989), + [anon_sym___based] = ACTIONS(2989), + [anon_sym___cdecl] = ACTIONS(2989), + [anon_sym___clrcall] = ACTIONS(2989), + [anon_sym___stdcall] = ACTIONS(2989), + [anon_sym___fastcall] = ACTIONS(2989), + [anon_sym___thiscall] = ACTIONS(2989), + [anon_sym___vectorcall] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_signed] = ACTIONS(2989), + [anon_sym_unsigned] = ACTIONS(2989), + [anon_sym_long] = ACTIONS(2989), + [anon_sym_short] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2989), + [anon_sym_static] = ACTIONS(2989), + [anon_sym_register] = ACTIONS(2989), + [anon_sym_inline] = ACTIONS(2989), + [anon_sym___inline] = ACTIONS(2989), + [anon_sym___inline__] = ACTIONS(2989), + [anon_sym___forceinline] = ACTIONS(2989), + [anon_sym_thread_local] = ACTIONS(2989), + [anon_sym___thread] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_constexpr] = ACTIONS(2989), + [anon_sym_volatile] = ACTIONS(2989), + [anon_sym_restrict] = ACTIONS(2989), + [anon_sym___restrict__] = ACTIONS(2989), + [anon_sym__Atomic] = ACTIONS(2989), + [anon_sym__Noreturn] = ACTIONS(2989), + [anon_sym_noreturn] = ACTIONS(2989), + [anon_sym_mutable] = ACTIONS(2989), + [anon_sym_constinit] = ACTIONS(2989), + [anon_sym_consteval] = ACTIONS(2989), + [sym_primitive_type] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_class] = ACTIONS(2989), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_union] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_switch] = ACTIONS(2989), + [anon_sym_case] = ACTIONS(2989), + [anon_sym_default] = ACTIONS(2989), + [anon_sym_while] = ACTIONS(2989), + [anon_sym_do] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_goto] = ACTIONS(2989), + [anon_sym_not] = ACTIONS(2989), + [anon_sym_compl] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_sizeof] = ACTIONS(2989), + [anon_sym___alignof__] = ACTIONS(2989), + [anon_sym___alignof] = ACTIONS(2989), + [anon_sym__alignof] = ACTIONS(2989), + [anon_sym_alignof] = ACTIONS(2989), + [anon_sym__Alignof] = ACTIONS(2989), + [anon_sym_offsetof] = ACTIONS(2989), + [anon_sym__Generic] = ACTIONS(2989), + [anon_sym_asm] = ACTIONS(2989), + [anon_sym___asm__] = ACTIONS(2989), + [sym_number_literal] = ACTIONS(2991), + [anon_sym_L_SQUOTE] = ACTIONS(2991), + [anon_sym_u_SQUOTE] = ACTIONS(2991), + [anon_sym_U_SQUOTE] = ACTIONS(2991), + [anon_sym_u8_SQUOTE] = ACTIONS(2991), + [anon_sym_SQUOTE] = ACTIONS(2991), + [anon_sym_L_DQUOTE] = ACTIONS(2991), + [anon_sym_u_DQUOTE] = ACTIONS(2991), + [anon_sym_U_DQUOTE] = ACTIONS(2991), + [anon_sym_u8_DQUOTE] = ACTIONS(2991), + [anon_sym_DQUOTE] = ACTIONS(2991), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [anon_sym_NULL] = ACTIONS(2989), + [anon_sym_nullptr] = ACTIONS(2989), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2989), + [anon_sym_decltype] = ACTIONS(2989), + [anon_sym_virtual] = ACTIONS(2989), + [anon_sym_alignas] = ACTIONS(2989), + [anon_sym_explicit] = ACTIONS(2989), + [anon_sym_typename] = ACTIONS(2989), + [anon_sym_template] = ACTIONS(2989), + [anon_sym_operator] = ACTIONS(2989), + [anon_sym_try] = ACTIONS(2989), + [anon_sym_delete] = ACTIONS(2989), + [anon_sym_throw] = ACTIONS(2989), + [anon_sym_namespace] = ACTIONS(2989), + [anon_sym_using] = ACTIONS(2989), + [anon_sym_static_assert] = ACTIONS(2989), + [anon_sym_concept] = ACTIONS(2989), + [anon_sym_co_return] = ACTIONS(2989), + [anon_sym_co_yield] = ACTIONS(2989), + [anon_sym_R_DQUOTE] = ACTIONS(2991), + [anon_sym_LR_DQUOTE] = ACTIONS(2991), + [anon_sym_uR_DQUOTE] = ACTIONS(2991), + [anon_sym_UR_DQUOTE] = ACTIONS(2991), + [anon_sym_u8R_DQUOTE] = ACTIONS(2991), + [anon_sym_co_await] = ACTIONS(2989), + [anon_sym_new] = ACTIONS(2989), + [anon_sym_requires] = ACTIONS(2989), + [sym_this] = ACTIONS(2989), }, - [291] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(951), - [sym_attributed_statement] = STATE(951), - [sym_labeled_statement] = STATE(951), - [sym_expression_statement] = STATE(951), - [sym_if_statement] = STATE(951), - [sym_switch_statement] = STATE(951), - [sym_case_statement] = STATE(951), - [sym_while_statement] = STATE(951), - [sym_do_statement] = STATE(951), - [sym_for_statement] = STATE(951), - [sym_return_statement] = STATE(951), - [sym_break_statement] = STATE(951), - [sym_continue_statement] = STATE(951), - [sym_goto_statement] = STATE(951), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(951), - [sym_co_return_statement] = STATE(951), - [sym_co_yield_statement] = STATE(951), - [sym_throw_statement] = STATE(951), - [sym_try_statement] = STATE(951), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [346] = { + [sym_identifier] = ACTIONS(2993), + [aux_sym_preproc_include_token1] = ACTIONS(2993), + [aux_sym_preproc_def_token1] = ACTIONS(2993), + [aux_sym_preproc_if_token1] = ACTIONS(2993), + [aux_sym_preproc_if_token2] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2993), + [aux_sym_preproc_else_token1] = ACTIONS(2993), + [aux_sym_preproc_elif_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_TILDE] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym___extension__] = ACTIONS(2993), + [anon_sym_typedef] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2993), + [anon_sym___attribute__] = ACTIONS(2993), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2995), + [anon_sym___declspec] = ACTIONS(2993), + [anon_sym___based] = ACTIONS(2993), + [anon_sym___cdecl] = ACTIONS(2993), + [anon_sym___clrcall] = ACTIONS(2993), + [anon_sym___stdcall] = ACTIONS(2993), + [anon_sym___fastcall] = ACTIONS(2993), + [anon_sym___thiscall] = ACTIONS(2993), + [anon_sym___vectorcall] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_signed] = ACTIONS(2993), + [anon_sym_unsigned] = ACTIONS(2993), + [anon_sym_long] = ACTIONS(2993), + [anon_sym_short] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_static] = ACTIONS(2993), + [anon_sym_register] = ACTIONS(2993), + [anon_sym_inline] = ACTIONS(2993), + [anon_sym___inline] = ACTIONS(2993), + [anon_sym___inline__] = ACTIONS(2993), + [anon_sym___forceinline] = ACTIONS(2993), + [anon_sym_thread_local] = ACTIONS(2993), + [anon_sym___thread] = ACTIONS(2993), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_constexpr] = ACTIONS(2993), + [anon_sym_volatile] = ACTIONS(2993), + [anon_sym_restrict] = ACTIONS(2993), + [anon_sym___restrict__] = ACTIONS(2993), + [anon_sym__Atomic] = ACTIONS(2993), + [anon_sym__Noreturn] = ACTIONS(2993), + [anon_sym_noreturn] = ACTIONS(2993), + [anon_sym_mutable] = ACTIONS(2993), + [anon_sym_constinit] = ACTIONS(2993), + [anon_sym_consteval] = ACTIONS(2993), + [sym_primitive_type] = ACTIONS(2993), + [anon_sym_enum] = ACTIONS(2993), + [anon_sym_class] = ACTIONS(2993), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_union] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_switch] = ACTIONS(2993), + [anon_sym_case] = ACTIONS(2993), + [anon_sym_default] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_goto] = ACTIONS(2993), + [anon_sym_not] = ACTIONS(2993), + [anon_sym_compl] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2993), + [anon_sym___alignof] = ACTIONS(2993), + [anon_sym__alignof] = ACTIONS(2993), + [anon_sym_alignof] = ACTIONS(2993), + [anon_sym__Alignof] = ACTIONS(2993), + [anon_sym_offsetof] = ACTIONS(2993), + [anon_sym__Generic] = ACTIONS(2993), + [anon_sym_asm] = ACTIONS(2993), + [anon_sym___asm__] = ACTIONS(2993), + [sym_number_literal] = ACTIONS(2995), + [anon_sym_L_SQUOTE] = ACTIONS(2995), + [anon_sym_u_SQUOTE] = ACTIONS(2995), + [anon_sym_U_SQUOTE] = ACTIONS(2995), + [anon_sym_u8_SQUOTE] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_L_DQUOTE] = ACTIONS(2995), + [anon_sym_u_DQUOTE] = ACTIONS(2995), + [anon_sym_U_DQUOTE] = ACTIONS(2995), + [anon_sym_u8_DQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [anon_sym_NULL] = ACTIONS(2993), + [anon_sym_nullptr] = ACTIONS(2993), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2993), + [anon_sym_decltype] = ACTIONS(2993), + [anon_sym_virtual] = ACTIONS(2993), + [anon_sym_alignas] = ACTIONS(2993), + [anon_sym_explicit] = ACTIONS(2993), + [anon_sym_typename] = ACTIONS(2993), + [anon_sym_template] = ACTIONS(2993), + [anon_sym_operator] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_delete] = ACTIONS(2993), + [anon_sym_throw] = ACTIONS(2993), + [anon_sym_namespace] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(2993), + [anon_sym_static_assert] = ACTIONS(2993), + [anon_sym_concept] = ACTIONS(2993), + [anon_sym_co_return] = ACTIONS(2993), + [anon_sym_co_yield] = ACTIONS(2993), + [anon_sym_R_DQUOTE] = ACTIONS(2995), + [anon_sym_LR_DQUOTE] = ACTIONS(2995), + [anon_sym_uR_DQUOTE] = ACTIONS(2995), + [anon_sym_UR_DQUOTE] = ACTIONS(2995), + [anon_sym_u8R_DQUOTE] = ACTIONS(2995), + [anon_sym_co_await] = ACTIONS(2993), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_requires] = ACTIONS(2993), + [sym_this] = ACTIONS(2993), }, - [292] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3912), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9086), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9026), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9224), - [sym__unary_right_fold] = STATE(9222), - [sym__binary_fold] = STATE(9210), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), + [347] = { + [sym_identifier] = ACTIONS(2997), + [aux_sym_preproc_include_token1] = ACTIONS(2997), + [aux_sym_preproc_def_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token2] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2997), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2997), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2997), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2997), + [sym_preproc_directive] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(2999), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(2999), + [anon_sym___extension__] = ACTIONS(2997), + [anon_sym_typedef] = ACTIONS(2997), + [anon_sym_extern] = ACTIONS(2997), + [anon_sym___attribute__] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2999), + [anon_sym___declspec] = ACTIONS(2997), + [anon_sym___based] = ACTIONS(2997), + [anon_sym___cdecl] = ACTIONS(2997), + [anon_sym___clrcall] = ACTIONS(2997), + [anon_sym___stdcall] = ACTIONS(2997), + [anon_sym___fastcall] = ACTIONS(2997), + [anon_sym___thiscall] = ACTIONS(2997), + [anon_sym___vectorcall] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_signed] = ACTIONS(2997), + [anon_sym_unsigned] = ACTIONS(2997), + [anon_sym_long] = ACTIONS(2997), + [anon_sym_short] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(2997), + [anon_sym_register] = ACTIONS(2997), + [anon_sym_inline] = ACTIONS(2997), + [anon_sym___inline] = ACTIONS(2997), + [anon_sym___inline__] = ACTIONS(2997), + [anon_sym___forceinline] = ACTIONS(2997), + [anon_sym_thread_local] = ACTIONS(2997), + [anon_sym___thread] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_volatile] = ACTIONS(2997), + [anon_sym_restrict] = ACTIONS(2997), + [anon_sym___restrict__] = ACTIONS(2997), + [anon_sym__Atomic] = ACTIONS(2997), + [anon_sym__Noreturn] = ACTIONS(2997), + [anon_sym_noreturn] = ACTIONS(2997), + [anon_sym_mutable] = ACTIONS(2997), + [anon_sym_constinit] = ACTIONS(2997), + [anon_sym_consteval] = ACTIONS(2997), + [sym_primitive_type] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_class] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_switch] = ACTIONS(2997), + [anon_sym_case] = ACTIONS(2997), + [anon_sym_default] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_goto] = ACTIONS(2997), + [anon_sym_not] = ACTIONS(2997), + [anon_sym_compl] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_sizeof] = ACTIONS(2997), + [anon_sym___alignof__] = ACTIONS(2997), + [anon_sym___alignof] = ACTIONS(2997), + [anon_sym__alignof] = ACTIONS(2997), + [anon_sym_alignof] = ACTIONS(2997), + [anon_sym__Alignof] = ACTIONS(2997), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2997), + [anon_sym_asm] = ACTIONS(2997), + [anon_sym___asm__] = ACTIONS(2997), + [sym_number_literal] = ACTIONS(2999), + [anon_sym_L_SQUOTE] = ACTIONS(2999), + [anon_sym_u_SQUOTE] = ACTIONS(2999), + [anon_sym_U_SQUOTE] = ACTIONS(2999), + [anon_sym_u8_SQUOTE] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_L_DQUOTE] = ACTIONS(2999), + [anon_sym_u_DQUOTE] = ACTIONS(2999), + [anon_sym_U_DQUOTE] = ACTIONS(2999), + [anon_sym_u8_DQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE] = ACTIONS(2999), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [anon_sym_NULL] = ACTIONS(2997), + [anon_sym_nullptr] = ACTIONS(2997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2997), + [anon_sym_decltype] = ACTIONS(2997), + [anon_sym_virtual] = ACTIONS(2997), + [anon_sym_alignas] = ACTIONS(2997), + [anon_sym_explicit] = ACTIONS(2997), + [anon_sym_typename] = ACTIONS(2997), + [anon_sym_template] = ACTIONS(2997), + [anon_sym_operator] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_delete] = ACTIONS(2997), + [anon_sym_throw] = ACTIONS(2997), + [anon_sym_namespace] = ACTIONS(2997), + [anon_sym_using] = ACTIONS(2997), + [anon_sym_static_assert] = ACTIONS(2997), + [anon_sym_concept] = ACTIONS(2997), + [anon_sym_co_return] = ACTIONS(2997), + [anon_sym_co_yield] = ACTIONS(2997), + [anon_sym_R_DQUOTE] = ACTIONS(2999), + [anon_sym_LR_DQUOTE] = ACTIONS(2999), + [anon_sym_uR_DQUOTE] = ACTIONS(2999), + [anon_sym_UR_DQUOTE] = ACTIONS(2999), + [anon_sym_u8R_DQUOTE] = ACTIONS(2999), + [anon_sym_co_await] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_requires] = ACTIONS(2997), + [sym_this] = ACTIONS(2997), + }, + [348] = { + [sym_identifier] = ACTIONS(3001), + [aux_sym_preproc_include_token1] = ACTIONS(3001), + [aux_sym_preproc_def_token1] = ACTIONS(3001), + [aux_sym_preproc_if_token1] = ACTIONS(3001), + [aux_sym_preproc_if_token2] = ACTIONS(3001), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3001), + [aux_sym_preproc_else_token1] = ACTIONS(3001), + [aux_sym_preproc_elif_token1] = ACTIONS(3001), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3001), + [anon_sym_LPAREN2] = ACTIONS(3003), + [anon_sym_BANG] = ACTIONS(3003), + [anon_sym_TILDE] = ACTIONS(3003), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3003), + [anon_sym_AMP_AMP] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_SEMI] = ACTIONS(3003), + [anon_sym___extension__] = ACTIONS(3001), + [anon_sym_typedef] = ACTIONS(3001), + [anon_sym_extern] = ACTIONS(3001), + [anon_sym___attribute__] = ACTIONS(3001), + [anon_sym_COLON_COLON] = ACTIONS(3003), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3003), + [anon_sym___declspec] = ACTIONS(3001), + [anon_sym___based] = ACTIONS(3001), + [anon_sym___cdecl] = ACTIONS(3001), + [anon_sym___clrcall] = ACTIONS(3001), + [anon_sym___stdcall] = ACTIONS(3001), + [anon_sym___fastcall] = ACTIONS(3001), + [anon_sym___thiscall] = ACTIONS(3001), + [anon_sym___vectorcall] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_signed] = ACTIONS(3001), + [anon_sym_unsigned] = ACTIONS(3001), + [anon_sym_long] = ACTIONS(3001), + [anon_sym_short] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_static] = ACTIONS(3001), + [anon_sym_register] = ACTIONS(3001), + [anon_sym_inline] = ACTIONS(3001), + [anon_sym___inline] = ACTIONS(3001), + [anon_sym___inline__] = ACTIONS(3001), + [anon_sym___forceinline] = ACTIONS(3001), + [anon_sym_thread_local] = ACTIONS(3001), + [anon_sym___thread] = ACTIONS(3001), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_constexpr] = ACTIONS(3001), + [anon_sym_volatile] = ACTIONS(3001), + [anon_sym_restrict] = ACTIONS(3001), + [anon_sym___restrict__] = ACTIONS(3001), + [anon_sym__Atomic] = ACTIONS(3001), + [anon_sym__Noreturn] = ACTIONS(3001), + [anon_sym_noreturn] = ACTIONS(3001), + [anon_sym_mutable] = ACTIONS(3001), + [anon_sym_constinit] = ACTIONS(3001), + [anon_sym_consteval] = ACTIONS(3001), + [sym_primitive_type] = ACTIONS(3001), + [anon_sym_enum] = ACTIONS(3001), + [anon_sym_class] = ACTIONS(3001), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_union] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_switch] = ACTIONS(3001), + [anon_sym_case] = ACTIONS(3001), + [anon_sym_default] = ACTIONS(3001), + [anon_sym_while] = ACTIONS(3001), + [anon_sym_do] = ACTIONS(3001), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_break] = ACTIONS(3001), + [anon_sym_continue] = ACTIONS(3001), + [anon_sym_goto] = ACTIONS(3001), + [anon_sym_not] = ACTIONS(3001), + [anon_sym_compl] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3003), + [anon_sym_PLUS_PLUS] = ACTIONS(3003), + [anon_sym_sizeof] = ACTIONS(3001), + [anon_sym___alignof__] = ACTIONS(3001), + [anon_sym___alignof] = ACTIONS(3001), + [anon_sym__alignof] = ACTIONS(3001), + [anon_sym_alignof] = ACTIONS(3001), + [anon_sym__Alignof] = ACTIONS(3001), + [anon_sym_offsetof] = ACTIONS(3001), + [anon_sym__Generic] = ACTIONS(3001), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3003), + [anon_sym_u_SQUOTE] = ACTIONS(3003), + [anon_sym_U_SQUOTE] = ACTIONS(3003), + [anon_sym_u8_SQUOTE] = ACTIONS(3003), + [anon_sym_SQUOTE] = ACTIONS(3003), + [anon_sym_L_DQUOTE] = ACTIONS(3003), + [anon_sym_u_DQUOTE] = ACTIONS(3003), + [anon_sym_U_DQUOTE] = ACTIONS(3003), + [anon_sym_u8_DQUOTE] = ACTIONS(3003), + [anon_sym_DQUOTE] = ACTIONS(3003), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [anon_sym_NULL] = ACTIONS(3001), + [anon_sym_nullptr] = ACTIONS(3001), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3001), + [anon_sym_decltype] = ACTIONS(3001), + [anon_sym_virtual] = ACTIONS(3001), + [anon_sym_alignas] = ACTIONS(3001), + [anon_sym_explicit] = ACTIONS(3001), + [anon_sym_typename] = ACTIONS(3001), + [anon_sym_template] = ACTIONS(3001), + [anon_sym_operator] = ACTIONS(3001), + [anon_sym_try] = ACTIONS(3001), + [anon_sym_delete] = ACTIONS(3001), + [anon_sym_throw] = ACTIONS(3001), + [anon_sym_namespace] = ACTIONS(3001), + [anon_sym_using] = ACTIONS(3001), + [anon_sym_static_assert] = ACTIONS(3001), + [anon_sym_concept] = ACTIONS(3001), + [anon_sym_co_return] = ACTIONS(3001), + [anon_sym_co_yield] = ACTIONS(3001), + [anon_sym_R_DQUOTE] = ACTIONS(3003), + [anon_sym_LR_DQUOTE] = ACTIONS(3003), + [anon_sym_uR_DQUOTE] = ACTIONS(3003), + [anon_sym_UR_DQUOTE] = ACTIONS(3003), + [anon_sym_u8R_DQUOTE] = ACTIONS(3003), + [anon_sym_co_await] = ACTIONS(3001), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_requires] = ACTIONS(3001), + [sym_this] = ACTIONS(3001), + }, + [349] = { + [sym_identifier] = ACTIONS(3005), + [aux_sym_preproc_include_token1] = ACTIONS(3005), + [aux_sym_preproc_def_token1] = ACTIONS(3005), + [aux_sym_preproc_if_token1] = ACTIONS(3005), + [aux_sym_preproc_if_token2] = ACTIONS(3005), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3005), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3005), + [aux_sym_preproc_else_token1] = ACTIONS(3005), + [aux_sym_preproc_elif_token1] = ACTIONS(3005), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3005), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3005), + [sym_preproc_directive] = ACTIONS(3005), + [anon_sym_LPAREN2] = ACTIONS(3007), + [anon_sym_BANG] = ACTIONS(3007), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3007), + [anon_sym_AMP_AMP] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_SEMI] = ACTIONS(3007), + [anon_sym___extension__] = ACTIONS(3005), + [anon_sym_typedef] = ACTIONS(3005), + [anon_sym_extern] = ACTIONS(3005), + [anon_sym___attribute__] = ACTIONS(3005), + [anon_sym_COLON_COLON] = ACTIONS(3007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3007), + [anon_sym___declspec] = ACTIONS(3005), + [anon_sym___based] = ACTIONS(3005), + [anon_sym___cdecl] = ACTIONS(3005), + [anon_sym___clrcall] = ACTIONS(3005), + [anon_sym___stdcall] = ACTIONS(3005), + [anon_sym___fastcall] = ACTIONS(3005), + [anon_sym___thiscall] = ACTIONS(3005), + [anon_sym___vectorcall] = ACTIONS(3005), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_signed] = ACTIONS(3005), + [anon_sym_unsigned] = ACTIONS(3005), + [anon_sym_long] = ACTIONS(3005), + [anon_sym_short] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_static] = ACTIONS(3005), + [anon_sym_register] = ACTIONS(3005), + [anon_sym_inline] = ACTIONS(3005), + [anon_sym___inline] = ACTIONS(3005), + [anon_sym___inline__] = ACTIONS(3005), + [anon_sym___forceinline] = ACTIONS(3005), + [anon_sym_thread_local] = ACTIONS(3005), + [anon_sym___thread] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3005), + [anon_sym_constexpr] = ACTIONS(3005), + [anon_sym_volatile] = ACTIONS(3005), + [anon_sym_restrict] = ACTIONS(3005), + [anon_sym___restrict__] = ACTIONS(3005), + [anon_sym__Atomic] = ACTIONS(3005), + [anon_sym__Noreturn] = ACTIONS(3005), + [anon_sym_noreturn] = ACTIONS(3005), + [anon_sym_mutable] = ACTIONS(3005), + [anon_sym_constinit] = ACTIONS(3005), + [anon_sym_consteval] = ACTIONS(3005), + [sym_primitive_type] = ACTIONS(3005), + [anon_sym_enum] = ACTIONS(3005), + [anon_sym_class] = ACTIONS(3005), + [anon_sym_struct] = ACTIONS(3005), + [anon_sym_union] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_switch] = ACTIONS(3005), + [anon_sym_case] = ACTIONS(3005), + [anon_sym_default] = ACTIONS(3005), + [anon_sym_while] = ACTIONS(3005), + [anon_sym_do] = ACTIONS(3005), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_break] = ACTIONS(3005), + [anon_sym_continue] = ACTIONS(3005), + [anon_sym_goto] = ACTIONS(3005), + [anon_sym_not] = ACTIONS(3005), + [anon_sym_compl] = ACTIONS(3005), + [anon_sym_DASH_DASH] = ACTIONS(3007), + [anon_sym_PLUS_PLUS] = ACTIONS(3007), + [anon_sym_sizeof] = ACTIONS(3005), + [anon_sym___alignof__] = ACTIONS(3005), + [anon_sym___alignof] = ACTIONS(3005), + [anon_sym__alignof] = ACTIONS(3005), + [anon_sym_alignof] = ACTIONS(3005), + [anon_sym__Alignof] = ACTIONS(3005), + [anon_sym_offsetof] = ACTIONS(3005), + [anon_sym__Generic] = ACTIONS(3005), + [anon_sym_asm] = ACTIONS(3005), + [anon_sym___asm__] = ACTIONS(3005), + [sym_number_literal] = ACTIONS(3007), + [anon_sym_L_SQUOTE] = ACTIONS(3007), + [anon_sym_u_SQUOTE] = ACTIONS(3007), + [anon_sym_U_SQUOTE] = ACTIONS(3007), + [anon_sym_u8_SQUOTE] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3005), + [sym_false] = ACTIONS(3005), + [anon_sym_NULL] = ACTIONS(3005), + [anon_sym_nullptr] = ACTIONS(3005), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3005), + [anon_sym_decltype] = ACTIONS(3005), + [anon_sym_virtual] = ACTIONS(3005), + [anon_sym_alignas] = ACTIONS(3005), + [anon_sym_explicit] = ACTIONS(3005), + [anon_sym_typename] = ACTIONS(3005), + [anon_sym_template] = ACTIONS(3005), + [anon_sym_operator] = ACTIONS(3005), + [anon_sym_try] = ACTIONS(3005), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_throw] = ACTIONS(3005), + [anon_sym_namespace] = ACTIONS(3005), + [anon_sym_using] = ACTIONS(3005), + [anon_sym_static_assert] = ACTIONS(3005), + [anon_sym_concept] = ACTIONS(3005), + [anon_sym_co_return] = ACTIONS(3005), + [anon_sym_co_yield] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(3007), + [anon_sym_LR_DQUOTE] = ACTIONS(3007), + [anon_sym_uR_DQUOTE] = ACTIONS(3007), + [anon_sym_UR_DQUOTE] = ACTIONS(3007), + [anon_sym_u8R_DQUOTE] = ACTIONS(3007), + [anon_sym_co_await] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3005), + [anon_sym_requires] = ACTIONS(3005), + [sym_this] = ACTIONS(3005), + }, + [350] = { + [sym_identifier] = ACTIONS(3009), + [aux_sym_preproc_include_token1] = ACTIONS(3009), + [aux_sym_preproc_def_token1] = ACTIONS(3009), + [aux_sym_preproc_if_token1] = ACTIONS(3009), + [aux_sym_preproc_if_token2] = ACTIONS(3009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3009), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3009), + [aux_sym_preproc_else_token1] = ACTIONS(3009), + [aux_sym_preproc_elif_token1] = ACTIONS(3009), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3009), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3009), + [sym_preproc_directive] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(3011), + [anon_sym_BANG] = ACTIONS(3011), + [anon_sym_TILDE] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_AMP_AMP] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym___extension__] = ACTIONS(3009), + [anon_sym_typedef] = ACTIONS(3009), + [anon_sym_extern] = ACTIONS(3009), + [anon_sym___attribute__] = ACTIONS(3009), + [anon_sym_COLON_COLON] = ACTIONS(3011), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3011), + [anon_sym___declspec] = ACTIONS(3009), + [anon_sym___based] = ACTIONS(3009), + [anon_sym___cdecl] = ACTIONS(3009), + [anon_sym___clrcall] = ACTIONS(3009), + [anon_sym___stdcall] = ACTIONS(3009), + [anon_sym___fastcall] = ACTIONS(3009), + [anon_sym___thiscall] = ACTIONS(3009), + [anon_sym___vectorcall] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_signed] = ACTIONS(3009), + [anon_sym_unsigned] = ACTIONS(3009), + [anon_sym_long] = ACTIONS(3009), + [anon_sym_short] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_static] = ACTIONS(3009), + [anon_sym_register] = ACTIONS(3009), + [anon_sym_inline] = ACTIONS(3009), + [anon_sym___inline] = ACTIONS(3009), + [anon_sym___inline__] = ACTIONS(3009), + [anon_sym___forceinline] = ACTIONS(3009), + [anon_sym_thread_local] = ACTIONS(3009), + [anon_sym___thread] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3009), + [anon_sym_constexpr] = ACTIONS(3009), + [anon_sym_volatile] = ACTIONS(3009), + [anon_sym_restrict] = ACTIONS(3009), + [anon_sym___restrict__] = ACTIONS(3009), + [anon_sym__Atomic] = ACTIONS(3009), + [anon_sym__Noreturn] = ACTIONS(3009), + [anon_sym_noreturn] = ACTIONS(3009), + [anon_sym_mutable] = ACTIONS(3009), + [anon_sym_constinit] = ACTIONS(3009), + [anon_sym_consteval] = ACTIONS(3009), + [sym_primitive_type] = ACTIONS(3009), + [anon_sym_enum] = ACTIONS(3009), + [anon_sym_class] = ACTIONS(3009), + [anon_sym_struct] = ACTIONS(3009), + [anon_sym_union] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_switch] = ACTIONS(3009), + [anon_sym_case] = ACTIONS(3009), + [anon_sym_default] = ACTIONS(3009), + [anon_sym_while] = ACTIONS(3009), + [anon_sym_do] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_break] = ACTIONS(3009), + [anon_sym_continue] = ACTIONS(3009), + [anon_sym_goto] = ACTIONS(3009), + [anon_sym_not] = ACTIONS(3009), + [anon_sym_compl] = ACTIONS(3009), + [anon_sym_DASH_DASH] = ACTIONS(3011), + [anon_sym_PLUS_PLUS] = ACTIONS(3011), + [anon_sym_sizeof] = ACTIONS(3009), + [anon_sym___alignof__] = ACTIONS(3009), + [anon_sym___alignof] = ACTIONS(3009), + [anon_sym__alignof] = ACTIONS(3009), + [anon_sym_alignof] = ACTIONS(3009), + [anon_sym__Alignof] = ACTIONS(3009), + [anon_sym_offsetof] = ACTIONS(3009), + [anon_sym__Generic] = ACTIONS(3009), + [anon_sym_asm] = ACTIONS(3009), + [anon_sym___asm__] = ACTIONS(3009), + [sym_number_literal] = ACTIONS(3011), + [anon_sym_L_SQUOTE] = ACTIONS(3011), + [anon_sym_u_SQUOTE] = ACTIONS(3011), + [anon_sym_U_SQUOTE] = ACTIONS(3011), + [anon_sym_u8_SQUOTE] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_L_DQUOTE] = ACTIONS(3011), + [anon_sym_u_DQUOTE] = ACTIONS(3011), + [anon_sym_U_DQUOTE] = ACTIONS(3011), + [anon_sym_u8_DQUOTE] = ACTIONS(3011), + [anon_sym_DQUOTE] = ACTIONS(3011), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3009), + [anon_sym_nullptr] = ACTIONS(3009), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3009), + [anon_sym_decltype] = ACTIONS(3009), + [anon_sym_virtual] = ACTIONS(3009), + [anon_sym_alignas] = ACTIONS(3009), + [anon_sym_explicit] = ACTIONS(3009), + [anon_sym_typename] = ACTIONS(3009), + [anon_sym_template] = ACTIONS(3009), + [anon_sym_operator] = ACTIONS(3009), + [anon_sym_try] = ACTIONS(3009), + [anon_sym_delete] = ACTIONS(3009), + [anon_sym_throw] = ACTIONS(3009), + [anon_sym_namespace] = ACTIONS(3009), + [anon_sym_using] = ACTIONS(3009), + [anon_sym_static_assert] = ACTIONS(3009), + [anon_sym_concept] = ACTIONS(3009), + [anon_sym_co_return] = ACTIONS(3009), + [anon_sym_co_yield] = ACTIONS(3009), + [anon_sym_R_DQUOTE] = ACTIONS(3011), + [anon_sym_LR_DQUOTE] = ACTIONS(3011), + [anon_sym_uR_DQUOTE] = ACTIONS(3011), + [anon_sym_UR_DQUOTE] = ACTIONS(3011), + [anon_sym_u8R_DQUOTE] = ACTIONS(3011), + [anon_sym_co_await] = ACTIONS(3009), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(3009), + [sym_this] = ACTIONS(3009), + }, + [351] = { + [sym_identifier] = ACTIONS(3013), + [aux_sym_preproc_include_token1] = ACTIONS(3013), + [aux_sym_preproc_def_token1] = ACTIONS(3013), + [aux_sym_preproc_if_token1] = ACTIONS(3013), + [aux_sym_preproc_if_token2] = ACTIONS(3013), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3013), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3013), + [aux_sym_preproc_else_token1] = ACTIONS(3013), + [aux_sym_preproc_elif_token1] = ACTIONS(3013), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3013), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3013), + [sym_preproc_directive] = ACTIONS(3013), + [anon_sym_LPAREN2] = ACTIONS(3015), + [anon_sym_BANG] = ACTIONS(3015), + [anon_sym_TILDE] = ACTIONS(3015), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_SEMI] = ACTIONS(3015), + [anon_sym___extension__] = ACTIONS(3013), + [anon_sym_typedef] = ACTIONS(3013), + [anon_sym_extern] = ACTIONS(3013), + [anon_sym___attribute__] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(3015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3015), + [anon_sym___declspec] = ACTIONS(3013), + [anon_sym___based] = ACTIONS(3013), + [anon_sym___cdecl] = ACTIONS(3013), + [anon_sym___clrcall] = ACTIONS(3013), + [anon_sym___stdcall] = ACTIONS(3013), + [anon_sym___fastcall] = ACTIONS(3013), + [anon_sym___thiscall] = ACTIONS(3013), + [anon_sym___vectorcall] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3015), + [anon_sym_signed] = ACTIONS(3013), + [anon_sym_unsigned] = ACTIONS(3013), + [anon_sym_long] = ACTIONS(3013), + [anon_sym_short] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_static] = ACTIONS(3013), + [anon_sym_register] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym___inline] = ACTIONS(3013), + [anon_sym___inline__] = ACTIONS(3013), + [anon_sym___forceinline] = ACTIONS(3013), + [anon_sym_thread_local] = ACTIONS(3013), + [anon_sym___thread] = ACTIONS(3013), + [anon_sym_const] = ACTIONS(3013), + [anon_sym_constexpr] = ACTIONS(3013), + [anon_sym_volatile] = ACTIONS(3013), + [anon_sym_restrict] = ACTIONS(3013), + [anon_sym___restrict__] = ACTIONS(3013), + [anon_sym__Atomic] = ACTIONS(3013), + [anon_sym__Noreturn] = ACTIONS(3013), + [anon_sym_noreturn] = ACTIONS(3013), + [anon_sym_mutable] = ACTIONS(3013), + [anon_sym_constinit] = ACTIONS(3013), + [anon_sym_consteval] = ACTIONS(3013), + [sym_primitive_type] = ACTIONS(3013), + [anon_sym_enum] = ACTIONS(3013), + [anon_sym_class] = ACTIONS(3013), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3013), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_while] = ACTIONS(3013), + [anon_sym_do] = ACTIONS(3013), + [anon_sym_for] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_goto] = ACTIONS(3013), + [anon_sym_not] = ACTIONS(3013), + [anon_sym_compl] = ACTIONS(3013), + [anon_sym_DASH_DASH] = ACTIONS(3015), + [anon_sym_PLUS_PLUS] = ACTIONS(3015), + [anon_sym_sizeof] = ACTIONS(3013), + [anon_sym___alignof__] = ACTIONS(3013), + [anon_sym___alignof] = ACTIONS(3013), + [anon_sym__alignof] = ACTIONS(3013), + [anon_sym_alignof] = ACTIONS(3013), + [anon_sym__Alignof] = ACTIONS(3013), + [anon_sym_offsetof] = ACTIONS(3013), + [anon_sym__Generic] = ACTIONS(3013), + [anon_sym_asm] = ACTIONS(3013), + [anon_sym___asm__] = ACTIONS(3013), + [sym_number_literal] = ACTIONS(3015), + [anon_sym_L_SQUOTE] = ACTIONS(3015), + [anon_sym_u_SQUOTE] = ACTIONS(3015), + [anon_sym_U_SQUOTE] = ACTIONS(3015), + [anon_sym_u8_SQUOTE] = ACTIONS(3015), + [anon_sym_SQUOTE] = ACTIONS(3015), + [anon_sym_L_DQUOTE] = ACTIONS(3015), + [anon_sym_u_DQUOTE] = ACTIONS(3015), + [anon_sym_U_DQUOTE] = ACTIONS(3015), + [anon_sym_u8_DQUOTE] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [anon_sym_NULL] = ACTIONS(3013), + [anon_sym_nullptr] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3013), + [anon_sym_decltype] = ACTIONS(3013), + [anon_sym_virtual] = ACTIONS(3013), + [anon_sym_alignas] = ACTIONS(3013), + [anon_sym_explicit] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3013), + [anon_sym_template] = ACTIONS(3013), + [anon_sym_operator] = ACTIONS(3013), + [anon_sym_try] = ACTIONS(3013), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_throw] = ACTIONS(3013), + [anon_sym_namespace] = ACTIONS(3013), + [anon_sym_using] = ACTIONS(3013), + [anon_sym_static_assert] = ACTIONS(3013), + [anon_sym_concept] = ACTIONS(3013), + [anon_sym_co_return] = ACTIONS(3013), + [anon_sym_co_yield] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3013), + [anon_sym_new] = ACTIONS(3013), + [anon_sym_requires] = ACTIONS(3013), + [sym_this] = ACTIONS(3013), + }, + [352] = { + [sym_identifier] = ACTIONS(3017), + [aux_sym_preproc_include_token1] = ACTIONS(3017), + [aux_sym_preproc_def_token1] = ACTIONS(3017), + [aux_sym_preproc_if_token1] = ACTIONS(3017), + [aux_sym_preproc_if_token2] = ACTIONS(3017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3017), + [aux_sym_preproc_else_token1] = ACTIONS(3017), + [aux_sym_preproc_elif_token1] = ACTIONS(3017), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3017), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3017), + [sym_preproc_directive] = ACTIONS(3017), + [anon_sym_LPAREN2] = ACTIONS(3019), + [anon_sym_BANG] = ACTIONS(3019), + [anon_sym_TILDE] = ACTIONS(3019), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_AMP] = ACTIONS(3017), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym___extension__] = ACTIONS(3017), + [anon_sym_typedef] = ACTIONS(3017), + [anon_sym_extern] = ACTIONS(3017), + [anon_sym___attribute__] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(3019), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3019), + [anon_sym___declspec] = ACTIONS(3017), + [anon_sym___based] = ACTIONS(3017), + [anon_sym___cdecl] = ACTIONS(3017), + [anon_sym___clrcall] = ACTIONS(3017), + [anon_sym___stdcall] = ACTIONS(3017), + [anon_sym___fastcall] = ACTIONS(3017), + [anon_sym___thiscall] = ACTIONS(3017), + [anon_sym___vectorcall] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3019), + [anon_sym_signed] = ACTIONS(3017), + [anon_sym_unsigned] = ACTIONS(3017), + [anon_sym_long] = ACTIONS(3017), + [anon_sym_short] = ACTIONS(3017), + [anon_sym_LBRACK] = ACTIONS(3017), + [anon_sym_static] = ACTIONS(3017), + [anon_sym_register] = ACTIONS(3017), + [anon_sym_inline] = ACTIONS(3017), + [anon_sym___inline] = ACTIONS(3017), + [anon_sym___inline__] = ACTIONS(3017), + [anon_sym___forceinline] = ACTIONS(3017), + [anon_sym_thread_local] = ACTIONS(3017), + [anon_sym___thread] = ACTIONS(3017), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_constexpr] = ACTIONS(3017), + [anon_sym_volatile] = ACTIONS(3017), + [anon_sym_restrict] = ACTIONS(3017), + [anon_sym___restrict__] = ACTIONS(3017), + [anon_sym__Atomic] = ACTIONS(3017), + [anon_sym__Noreturn] = ACTIONS(3017), + [anon_sym_noreturn] = ACTIONS(3017), + [anon_sym_mutable] = ACTIONS(3017), + [anon_sym_constinit] = ACTIONS(3017), + [anon_sym_consteval] = ACTIONS(3017), + [sym_primitive_type] = ACTIONS(3017), + [anon_sym_enum] = ACTIONS(3017), + [anon_sym_class] = ACTIONS(3017), + [anon_sym_struct] = ACTIONS(3017), + [anon_sym_union] = ACTIONS(3017), + [anon_sym_if] = ACTIONS(3017), + [anon_sym_switch] = ACTIONS(3017), + [anon_sym_case] = ACTIONS(3017), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3017), + [anon_sym_do] = ACTIONS(3017), + [anon_sym_for] = ACTIONS(3017), + [anon_sym_return] = ACTIONS(3017), + [anon_sym_break] = ACTIONS(3017), + [anon_sym_continue] = ACTIONS(3017), + [anon_sym_goto] = ACTIONS(3017), + [anon_sym_not] = ACTIONS(3017), + [anon_sym_compl] = ACTIONS(3017), + [anon_sym_DASH_DASH] = ACTIONS(3019), + [anon_sym_PLUS_PLUS] = ACTIONS(3019), + [anon_sym_sizeof] = ACTIONS(3017), + [anon_sym___alignof__] = ACTIONS(3017), + [anon_sym___alignof] = ACTIONS(3017), + [anon_sym__alignof] = ACTIONS(3017), + [anon_sym_alignof] = ACTIONS(3017), + [anon_sym__Alignof] = ACTIONS(3017), + [anon_sym_offsetof] = ACTIONS(3017), + [anon_sym__Generic] = ACTIONS(3017), + [anon_sym_asm] = ACTIONS(3017), + [anon_sym___asm__] = ACTIONS(3017), + [sym_number_literal] = ACTIONS(3019), + [anon_sym_L_SQUOTE] = ACTIONS(3019), + [anon_sym_u_SQUOTE] = ACTIONS(3019), + [anon_sym_U_SQUOTE] = ACTIONS(3019), + [anon_sym_u8_SQUOTE] = ACTIONS(3019), + [anon_sym_SQUOTE] = ACTIONS(3019), + [anon_sym_L_DQUOTE] = ACTIONS(3019), + [anon_sym_u_DQUOTE] = ACTIONS(3019), + [anon_sym_U_DQUOTE] = ACTIONS(3019), + [anon_sym_u8_DQUOTE] = ACTIONS(3019), + [anon_sym_DQUOTE] = ACTIONS(3019), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [anon_sym_NULL] = ACTIONS(3017), + [anon_sym_nullptr] = ACTIONS(3017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3017), + [anon_sym_decltype] = ACTIONS(3017), + [anon_sym_virtual] = ACTIONS(3017), + [anon_sym_alignas] = ACTIONS(3017), + [anon_sym_explicit] = ACTIONS(3017), + [anon_sym_typename] = ACTIONS(3017), + [anon_sym_template] = ACTIONS(3017), + [anon_sym_operator] = ACTIONS(3017), + [anon_sym_try] = ACTIONS(3017), + [anon_sym_delete] = ACTIONS(3017), + [anon_sym_throw] = ACTIONS(3017), + [anon_sym_namespace] = ACTIONS(3017), + [anon_sym_using] = ACTIONS(3017), + [anon_sym_static_assert] = ACTIONS(3017), + [anon_sym_concept] = ACTIONS(3017), + [anon_sym_co_return] = ACTIONS(3017), + [anon_sym_co_yield] = ACTIONS(3017), + [anon_sym_R_DQUOTE] = ACTIONS(3019), + [anon_sym_LR_DQUOTE] = ACTIONS(3019), + [anon_sym_uR_DQUOTE] = ACTIONS(3019), + [anon_sym_UR_DQUOTE] = ACTIONS(3019), + [anon_sym_u8R_DQUOTE] = ACTIONS(3019), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3017), + [anon_sym_requires] = ACTIONS(3017), + [sym_this] = ACTIONS(3017), + }, + [353] = { + [sym_identifier] = ACTIONS(3021), + [aux_sym_preproc_include_token1] = ACTIONS(3021), + [aux_sym_preproc_def_token1] = ACTIONS(3021), + [aux_sym_preproc_if_token1] = ACTIONS(3021), + [aux_sym_preproc_if_token2] = ACTIONS(3021), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3021), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3021), + [aux_sym_preproc_else_token1] = ACTIONS(3021), + [aux_sym_preproc_elif_token1] = ACTIONS(3021), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3021), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3021), + [sym_preproc_directive] = ACTIONS(3021), + [anon_sym_LPAREN2] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3021), + [anon_sym_PLUS] = ACTIONS(3021), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3021), + [anon_sym_SEMI] = ACTIONS(3023), + [anon_sym___extension__] = ACTIONS(3021), + [anon_sym_typedef] = ACTIONS(3021), + [anon_sym_extern] = ACTIONS(3021), + [anon_sym___attribute__] = ACTIONS(3021), + [anon_sym_COLON_COLON] = ACTIONS(3023), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3023), + [anon_sym___declspec] = ACTIONS(3021), + [anon_sym___based] = ACTIONS(3021), + [anon_sym___cdecl] = ACTIONS(3021), + [anon_sym___clrcall] = ACTIONS(3021), + [anon_sym___stdcall] = ACTIONS(3021), + [anon_sym___fastcall] = ACTIONS(3021), + [anon_sym___thiscall] = ACTIONS(3021), + [anon_sym___vectorcall] = ACTIONS(3021), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_signed] = ACTIONS(3021), + [anon_sym_unsigned] = ACTIONS(3021), + [anon_sym_long] = ACTIONS(3021), + [anon_sym_short] = ACTIONS(3021), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_static] = ACTIONS(3021), + [anon_sym_register] = ACTIONS(3021), + [anon_sym_inline] = ACTIONS(3021), + [anon_sym___inline] = ACTIONS(3021), + [anon_sym___inline__] = ACTIONS(3021), + [anon_sym___forceinline] = ACTIONS(3021), + [anon_sym_thread_local] = ACTIONS(3021), + [anon_sym___thread] = ACTIONS(3021), + [anon_sym_const] = ACTIONS(3021), + [anon_sym_constexpr] = ACTIONS(3021), + [anon_sym_volatile] = ACTIONS(3021), + [anon_sym_restrict] = ACTIONS(3021), + [anon_sym___restrict__] = ACTIONS(3021), + [anon_sym__Atomic] = ACTIONS(3021), + [anon_sym__Noreturn] = ACTIONS(3021), + [anon_sym_noreturn] = ACTIONS(3021), + [anon_sym_mutable] = ACTIONS(3021), + [anon_sym_constinit] = ACTIONS(3021), + [anon_sym_consteval] = ACTIONS(3021), + [sym_primitive_type] = ACTIONS(3021), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3021), + [anon_sym_struct] = ACTIONS(3021), + [anon_sym_union] = ACTIONS(3021), + [anon_sym_if] = ACTIONS(3021), + [anon_sym_switch] = ACTIONS(3021), + [anon_sym_case] = ACTIONS(3021), + [anon_sym_default] = ACTIONS(3021), + [anon_sym_while] = ACTIONS(3021), + [anon_sym_do] = ACTIONS(3021), + [anon_sym_for] = ACTIONS(3021), + [anon_sym_return] = ACTIONS(3021), + [anon_sym_break] = ACTIONS(3021), + [anon_sym_continue] = ACTIONS(3021), + [anon_sym_goto] = ACTIONS(3021), + [anon_sym_not] = ACTIONS(3021), + [anon_sym_compl] = ACTIONS(3021), + [anon_sym_DASH_DASH] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(3023), + [anon_sym_sizeof] = ACTIONS(3021), + [anon_sym___alignof__] = ACTIONS(3021), + [anon_sym___alignof] = ACTIONS(3021), + [anon_sym__alignof] = ACTIONS(3021), + [anon_sym_alignof] = ACTIONS(3021), + [anon_sym__Alignof] = ACTIONS(3021), + [anon_sym_offsetof] = ACTIONS(3021), + [anon_sym__Generic] = ACTIONS(3021), + [anon_sym_asm] = ACTIONS(3021), + [anon_sym___asm__] = ACTIONS(3021), + [sym_number_literal] = ACTIONS(3023), + [anon_sym_L_SQUOTE] = ACTIONS(3023), + [anon_sym_u_SQUOTE] = ACTIONS(3023), + [anon_sym_U_SQUOTE] = ACTIONS(3023), + [anon_sym_u8_SQUOTE] = ACTIONS(3023), + [anon_sym_SQUOTE] = ACTIONS(3023), + [anon_sym_L_DQUOTE] = ACTIONS(3023), + [anon_sym_u_DQUOTE] = ACTIONS(3023), + [anon_sym_U_DQUOTE] = ACTIONS(3023), + [anon_sym_u8_DQUOTE] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(3023), + [sym_true] = ACTIONS(3021), + [sym_false] = ACTIONS(3021), + [anon_sym_NULL] = ACTIONS(3021), + [anon_sym_nullptr] = ACTIONS(3021), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3021), + [anon_sym_decltype] = ACTIONS(3021), + [anon_sym_virtual] = ACTIONS(3021), + [anon_sym_alignas] = ACTIONS(3021), + [anon_sym_explicit] = ACTIONS(3021), + [anon_sym_typename] = ACTIONS(3021), + [anon_sym_template] = ACTIONS(3021), + [anon_sym_operator] = ACTIONS(3021), + [anon_sym_try] = ACTIONS(3021), + [anon_sym_delete] = ACTIONS(3021), + [anon_sym_throw] = ACTIONS(3021), + [anon_sym_namespace] = ACTIONS(3021), + [anon_sym_using] = ACTIONS(3021), + [anon_sym_static_assert] = ACTIONS(3021), + [anon_sym_concept] = ACTIONS(3021), + [anon_sym_co_return] = ACTIONS(3021), + [anon_sym_co_yield] = ACTIONS(3021), + [anon_sym_R_DQUOTE] = ACTIONS(3023), + [anon_sym_LR_DQUOTE] = ACTIONS(3023), + [anon_sym_uR_DQUOTE] = ACTIONS(3023), + [anon_sym_UR_DQUOTE] = ACTIONS(3023), + [anon_sym_u8R_DQUOTE] = ACTIONS(3023), + [anon_sym_co_await] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3021), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3021), + }, + [354] = { + [sym_type_qualifier] = STATE(3780), + [sym__type_specifier] = STATE(4440), + [sym_sized_type_specifier] = STATE(2799), + [sym_enum_specifier] = STATE(2799), + [sym_struct_specifier] = STATE(2799), + [sym_union_specifier] = STATE(2799), + [sym__expression] = STATE(3968), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_type_descriptor] = STATE(6410), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_placeholder_type_specifier] = STATE(2799), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2758), + [sym_class_specifier] = STATE(2799), + [sym__class_name] = STATE(6922), + [sym_dependent_type] = STATE(2799), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_type_parameter_pack_expansion] = STATE(6493), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5157), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3355), + [aux_sym__type_definition_type_repeat1] = STATE(3780), + [aux_sym_sized_type_specifier_repeat1] = STATE(2297), + [sym_identifier] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2018), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -100156,4379 +105091,4015 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [293] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(944), - [sym_attributed_statement] = STATE(944), - [sym_labeled_statement] = STATE(944), - [sym_expression_statement] = STATE(944), - [sym_if_statement] = STATE(944), - [sym_switch_statement] = STATE(944), - [sym_case_statement] = STATE(944), - [sym_while_statement] = STATE(944), - [sym_do_statement] = STATE(944), - [sym_for_statement] = STATE(944), - [sym_return_statement] = STATE(944), - [sym_break_statement] = STATE(944), - [sym_continue_statement] = STATE(944), - [sym_goto_statement] = STATE(944), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(944), - [sym_co_return_statement] = STATE(944), - [sym_co_yield_statement] = STATE(944), - [sym_throw_statement] = STATE(944), - [sym_try_statement] = STATE(944), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_primitive_type] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2934), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2938), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [294] = { - [sym_attribute_declaration] = STATE(294), - [sym_compound_statement] = STATE(388), - [sym_attributed_statement] = STATE(388), - [sym_labeled_statement] = STATE(388), - [sym_expression_statement] = STATE(388), - [sym_if_statement] = STATE(388), - [sym_switch_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_do_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_return_statement] = STATE(388), - [sym_break_statement] = STATE(388), - [sym_continue_statement] = STATE(388), - [sym_goto_statement] = STATE(388), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(388), - [sym_co_return_statement] = STATE(388), - [sym_co_yield_statement] = STATE(388), - [sym_throw_statement] = STATE(388), - [sym_try_statement] = STATE(388), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(294), - [sym_identifier] = ACTIONS(2612), - [anon_sym_LPAREN2] = ACTIONS(2268), - [anon_sym_BANG] = ACTIONS(2271), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2277), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym_COLON_COLON] = ACTIONS(2283), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2286), - [anon_sym_LBRACE] = ACTIONS(2618), - [anon_sym_LBRACK] = ACTIONS(2292), - [sym_primitive_type] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2621), - [anon_sym_switch] = ACTIONS(2624), - [anon_sym_case] = ACTIONS(2627), - [anon_sym_default] = ACTIONS(2630), - [anon_sym_while] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2636), - [anon_sym_for] = ACTIONS(2639), - [anon_sym_return] = ACTIONS(2642), - [anon_sym_break] = ACTIONS(2645), - [anon_sym_continue] = ACTIONS(2648), - [anon_sym_goto] = ACTIONS(2651), - [anon_sym_not] = ACTIONS(2274), - [anon_sym_compl] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_sizeof] = ACTIONS(2334), - [anon_sym___alignof__] = ACTIONS(2337), - [anon_sym___alignof] = ACTIONS(2337), - [anon_sym__alignof] = ACTIONS(2337), - [anon_sym_alignof] = ACTIONS(2337), - [anon_sym__Alignof] = ACTIONS(2337), - [anon_sym_offsetof] = ACTIONS(2340), - [anon_sym__Generic] = ACTIONS(2343), - [anon_sym_asm] = ACTIONS(2346), - [anon_sym___asm__] = ACTIONS(2346), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2352), - [anon_sym_u_SQUOTE] = ACTIONS(2352), - [anon_sym_U_SQUOTE] = ACTIONS(2352), - [anon_sym_u8_SQUOTE] = ACTIONS(2352), - [anon_sym_SQUOTE] = ACTIONS(2352), - [anon_sym_L_DQUOTE] = ACTIONS(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2358), - [sym_false] = ACTIONS(2358), - [anon_sym_NULL] = ACTIONS(2361), - [anon_sym_nullptr] = ACTIONS(2361), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2364), - [anon_sym_template] = ACTIONS(2367), - [anon_sym_try] = ACTIONS(2654), - [anon_sym_delete] = ACTIONS(2373), - [anon_sym_throw] = ACTIONS(2657), - [anon_sym_co_return] = ACTIONS(2660), - [anon_sym_co_yield] = ACTIONS(2663), - [anon_sym_R_DQUOTE] = ACTIONS(2385), - [anon_sym_LR_DQUOTE] = ACTIONS(2385), - [anon_sym_uR_DQUOTE] = ACTIONS(2385), - [anon_sym_UR_DQUOTE] = ACTIONS(2385), - [anon_sym_u8R_DQUOTE] = ACTIONS(2385), - [anon_sym_co_await] = ACTIONS(2388), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_requires] = ACTIONS(2394), - [sym_this] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(3025), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [295] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(8281), - [sym_attributed_statement] = STATE(8281), - [sym_labeled_statement] = STATE(8281), - [sym_expression_statement] = STATE(8281), - [sym_if_statement] = STATE(8281), - [sym_switch_statement] = STATE(8281), - [sym_case_statement] = STATE(8281), - [sym_while_statement] = STATE(8281), - [sym_do_statement] = STATE(8281), - [sym_for_statement] = STATE(8281), - [sym_return_statement] = STATE(8281), - [sym_break_statement] = STATE(8281), - [sym_continue_statement] = STATE(8281), - [sym_goto_statement] = STATE(8281), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(8281), - [sym_co_return_statement] = STATE(8281), - [sym_co_yield_statement] = STATE(8281), - [sym_throw_statement] = STATE(8281), - [sym_try_statement] = STATE(8281), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [355] = { + [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_extern] = ACTIONS(3027), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3027), + [anon_sym_constinit] = ACTIONS(3027), + [anon_sym_consteval] = 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), + [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), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3027), + [anon_sym_decltype] = ACTIONS(3027), + [anon_sym_virtual] = ACTIONS(3027), + [anon_sym_alignas] = 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_using] = 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), }, - [296] = { - [sym_attribute_declaration] = STATE(315), - [sym_compound_statement] = STATE(971), - [sym_attributed_statement] = STATE(971), - [sym_labeled_statement] = STATE(971), - [sym_expression_statement] = STATE(971), - [sym_if_statement] = STATE(971), - [sym_switch_statement] = STATE(971), - [sym_case_statement] = STATE(971), - [sym_while_statement] = STATE(971), - [sym_do_statement] = STATE(971), - [sym_for_statement] = STATE(971), - [sym_return_statement] = STATE(971), - [sym_break_statement] = STATE(971), - [sym_continue_statement] = STATE(971), - [sym_goto_statement] = STATE(971), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(971), - [sym_co_return_statement] = STATE(971), - [sym_co_yield_statement] = STATE(971), - [sym_throw_statement] = STATE(971), - [sym_try_statement] = STATE(971), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [356] = { + [sym_identifier] = ACTIONS(3031), + [aux_sym_preproc_include_token1] = ACTIONS(3031), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token2] = ACTIONS(3031), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3031), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3031), + [aux_sym_preproc_else_token1] = ACTIONS(3031), + [aux_sym_preproc_elif_token1] = ACTIONS(3031), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3031), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3031), + [sym_preproc_directive] = ACTIONS(3031), + [anon_sym_LPAREN2] = ACTIONS(3033), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_TILDE] = ACTIONS(3033), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_STAR] = ACTIONS(3033), + [anon_sym_AMP_AMP] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_SEMI] = ACTIONS(3033), + [anon_sym___extension__] = ACTIONS(3031), + [anon_sym_typedef] = ACTIONS(3031), + [anon_sym_extern] = ACTIONS(3031), + [anon_sym___attribute__] = ACTIONS(3031), + [anon_sym_COLON_COLON] = ACTIONS(3033), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3033), + [anon_sym___declspec] = ACTIONS(3031), + [anon_sym___based] = ACTIONS(3031), + [anon_sym___cdecl] = ACTIONS(3031), + [anon_sym___clrcall] = ACTIONS(3031), + [anon_sym___stdcall] = ACTIONS(3031), + [anon_sym___fastcall] = ACTIONS(3031), + [anon_sym___thiscall] = ACTIONS(3031), + [anon_sym___vectorcall] = ACTIONS(3031), + [anon_sym_LBRACE] = ACTIONS(3033), + [anon_sym_signed] = ACTIONS(3031), + [anon_sym_unsigned] = ACTIONS(3031), + [anon_sym_long] = ACTIONS(3031), + [anon_sym_short] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_static] = ACTIONS(3031), + [anon_sym_register] = ACTIONS(3031), + [anon_sym_inline] = ACTIONS(3031), + [anon_sym___inline] = ACTIONS(3031), + [anon_sym___inline__] = ACTIONS(3031), + [anon_sym___forceinline] = ACTIONS(3031), + [anon_sym_thread_local] = ACTIONS(3031), + [anon_sym___thread] = ACTIONS(3031), + [anon_sym_const] = ACTIONS(3031), + [anon_sym_constexpr] = ACTIONS(3031), + [anon_sym_volatile] = ACTIONS(3031), + [anon_sym_restrict] = ACTIONS(3031), + [anon_sym___restrict__] = ACTIONS(3031), + [anon_sym__Atomic] = ACTIONS(3031), + [anon_sym__Noreturn] = ACTIONS(3031), + [anon_sym_noreturn] = ACTIONS(3031), + [anon_sym_mutable] = ACTIONS(3031), + [anon_sym_constinit] = ACTIONS(3031), + [anon_sym_consteval] = ACTIONS(3031), + [sym_primitive_type] = ACTIONS(3031), + [anon_sym_enum] = ACTIONS(3031), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3031), + [anon_sym_union] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_switch] = ACTIONS(3031), + [anon_sym_case] = ACTIONS(3031), + [anon_sym_default] = ACTIONS(3031), + [anon_sym_while] = ACTIONS(3031), + [anon_sym_do] = ACTIONS(3031), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_break] = ACTIONS(3031), + [anon_sym_continue] = ACTIONS(3031), + [anon_sym_goto] = ACTIONS(3031), + [anon_sym_not] = ACTIONS(3031), + [anon_sym_compl] = ACTIONS(3031), + [anon_sym_DASH_DASH] = ACTIONS(3033), + [anon_sym_PLUS_PLUS] = ACTIONS(3033), + [anon_sym_sizeof] = ACTIONS(3031), + [anon_sym___alignof__] = ACTIONS(3031), + [anon_sym___alignof] = ACTIONS(3031), + [anon_sym__alignof] = ACTIONS(3031), + [anon_sym_alignof] = ACTIONS(3031), + [anon_sym__Alignof] = ACTIONS(3031), + [anon_sym_offsetof] = ACTIONS(3031), + [anon_sym__Generic] = ACTIONS(3031), + [anon_sym_asm] = ACTIONS(3031), + [anon_sym___asm__] = ACTIONS(3031), + [sym_number_literal] = ACTIONS(3033), + [anon_sym_L_SQUOTE] = ACTIONS(3033), + [anon_sym_u_SQUOTE] = ACTIONS(3033), + [anon_sym_U_SQUOTE] = ACTIONS(3033), + [anon_sym_u8_SQUOTE] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3033), + [anon_sym_L_DQUOTE] = ACTIONS(3033), + [anon_sym_u_DQUOTE] = ACTIONS(3033), + [anon_sym_U_DQUOTE] = ACTIONS(3033), + [anon_sym_u8_DQUOTE] = ACTIONS(3033), + [anon_sym_DQUOTE] = ACTIONS(3033), + [sym_true] = ACTIONS(3031), + [sym_false] = ACTIONS(3031), + [anon_sym_NULL] = ACTIONS(3031), + [anon_sym_nullptr] = ACTIONS(3031), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3031), + [anon_sym_decltype] = ACTIONS(3031), + [anon_sym_virtual] = ACTIONS(3031), + [anon_sym_alignas] = ACTIONS(3031), + [anon_sym_explicit] = ACTIONS(3031), + [anon_sym_typename] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3031), + [anon_sym_operator] = ACTIONS(3031), + [anon_sym_try] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_throw] = ACTIONS(3031), + [anon_sym_namespace] = ACTIONS(3031), + [anon_sym_using] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3031), + [anon_sym_concept] = ACTIONS(3031), + [anon_sym_co_return] = ACTIONS(3031), + [anon_sym_co_yield] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(3033), + [anon_sym_LR_DQUOTE] = ACTIONS(3033), + [anon_sym_uR_DQUOTE] = ACTIONS(3033), + [anon_sym_UR_DQUOTE] = ACTIONS(3033), + [anon_sym_u8R_DQUOTE] = ACTIONS(3033), + [anon_sym_co_await] = ACTIONS(3031), + [anon_sym_new] = ACTIONS(3031), + [anon_sym_requires] = ACTIONS(3031), + [sym_this] = ACTIONS(3031), }, - [297] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(758), - [sym_attributed_statement] = STATE(758), - [sym_labeled_statement] = STATE(758), - [sym_expression_statement] = STATE(758), - [sym_if_statement] = STATE(758), - [sym_switch_statement] = STATE(758), - [sym_case_statement] = STATE(758), - [sym_while_statement] = STATE(758), - [sym_do_statement] = STATE(758), - [sym_for_statement] = STATE(758), - [sym_return_statement] = STATE(758), - [sym_break_statement] = STATE(758), - [sym_continue_statement] = STATE(758), - [sym_goto_statement] = STATE(758), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(758), - [sym_co_return_statement] = STATE(758), - [sym_co_yield_statement] = STATE(758), - [sym_throw_statement] = STATE(758), - [sym_try_statement] = STATE(758), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [357] = { + [sym_identifier] = ACTIONS(3035), + [aux_sym_preproc_include_token1] = ACTIONS(3035), + [aux_sym_preproc_def_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token2] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), + [aux_sym_preproc_else_token1] = ACTIONS(3035), + [aux_sym_preproc_elif_token1] = ACTIONS(3035), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3035), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3035), + [sym_preproc_directive] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_BANG] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(3037), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP_AMP] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_SEMI] = ACTIONS(3037), + [anon_sym___extension__] = ACTIONS(3035), + [anon_sym_typedef] = ACTIONS(3035), + [anon_sym_extern] = ACTIONS(3035), + [anon_sym___attribute__] = ACTIONS(3035), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), + [anon_sym___declspec] = ACTIONS(3035), + [anon_sym___based] = ACTIONS(3035), + [anon_sym___cdecl] = ACTIONS(3035), + [anon_sym___clrcall] = ACTIONS(3035), + [anon_sym___stdcall] = ACTIONS(3035), + [anon_sym___fastcall] = ACTIONS(3035), + [anon_sym___thiscall] = ACTIONS(3035), + [anon_sym___vectorcall] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3037), + [anon_sym_signed] = ACTIONS(3035), + [anon_sym_unsigned] = ACTIONS(3035), + [anon_sym_long] = ACTIONS(3035), + [anon_sym_short] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_static] = ACTIONS(3035), + [anon_sym_register] = ACTIONS(3035), + [anon_sym_inline] = ACTIONS(3035), + [anon_sym___inline] = ACTIONS(3035), + [anon_sym___inline__] = ACTIONS(3035), + [anon_sym___forceinline] = ACTIONS(3035), + [anon_sym_thread_local] = ACTIONS(3035), + [anon_sym___thread] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_constexpr] = ACTIONS(3035), + [anon_sym_volatile] = ACTIONS(3035), + [anon_sym_restrict] = ACTIONS(3035), + [anon_sym___restrict__] = ACTIONS(3035), + [anon_sym__Atomic] = ACTIONS(3035), + [anon_sym__Noreturn] = ACTIONS(3035), + [anon_sym_noreturn] = ACTIONS(3035), + [anon_sym_mutable] = ACTIONS(3035), + [anon_sym_constinit] = ACTIONS(3035), + [anon_sym_consteval] = ACTIONS(3035), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_class] = ACTIONS(3035), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_switch] = ACTIONS(3035), + [anon_sym_case] = ACTIONS(3035), + [anon_sym_default] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_break] = ACTIONS(3035), + [anon_sym_continue] = ACTIONS(3035), + [anon_sym_goto] = ACTIONS(3035), + [anon_sym_not] = ACTIONS(3035), + [anon_sym_compl] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3037), + [anon_sym_PLUS_PLUS] = ACTIONS(3037), + [anon_sym_sizeof] = ACTIONS(3035), + [anon_sym___alignof__] = ACTIONS(3035), + [anon_sym___alignof] = ACTIONS(3035), + [anon_sym__alignof] = ACTIONS(3035), + [anon_sym_alignof] = ACTIONS(3035), + [anon_sym__Alignof] = ACTIONS(3035), + [anon_sym_offsetof] = ACTIONS(3035), + [anon_sym__Generic] = ACTIONS(3035), + [anon_sym_asm] = ACTIONS(3035), + [anon_sym___asm__] = ACTIONS(3035), + [sym_number_literal] = ACTIONS(3037), + [anon_sym_L_SQUOTE] = ACTIONS(3037), + [anon_sym_u_SQUOTE] = ACTIONS(3037), + [anon_sym_U_SQUOTE] = ACTIONS(3037), + [anon_sym_u8_SQUOTE] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_L_DQUOTE] = ACTIONS(3037), + [anon_sym_u_DQUOTE] = ACTIONS(3037), + [anon_sym_U_DQUOTE] = ACTIONS(3037), + [anon_sym_u8_DQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE] = ACTIONS(3037), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [anon_sym_NULL] = ACTIONS(3035), + [anon_sym_nullptr] = ACTIONS(3035), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3035), + [anon_sym_decltype] = ACTIONS(3035), + [anon_sym_virtual] = ACTIONS(3035), + [anon_sym_alignas] = ACTIONS(3035), + [anon_sym_explicit] = ACTIONS(3035), + [anon_sym_typename] = ACTIONS(3035), + [anon_sym_template] = ACTIONS(3035), + [anon_sym_operator] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_delete] = ACTIONS(3035), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_namespace] = ACTIONS(3035), + [anon_sym_using] = ACTIONS(3035), + [anon_sym_static_assert] = ACTIONS(3035), + [anon_sym_concept] = ACTIONS(3035), + [anon_sym_co_return] = ACTIONS(3035), + [anon_sym_co_yield] = ACTIONS(3035), + [anon_sym_R_DQUOTE] = ACTIONS(3037), + [anon_sym_LR_DQUOTE] = ACTIONS(3037), + [anon_sym_uR_DQUOTE] = ACTIONS(3037), + [anon_sym_UR_DQUOTE] = ACTIONS(3037), + [anon_sym_u8R_DQUOTE] = ACTIONS(3037), + [anon_sym_co_await] = ACTIONS(3035), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(3035), + [sym_this] = ACTIONS(3035), }, - [298] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(358), - [sym_attributed_statement] = STATE(358), - [sym_labeled_statement] = STATE(358), - [sym_expression_statement] = STATE(358), - [sym_if_statement] = STATE(358), - [sym_switch_statement] = STATE(358), - [sym_case_statement] = STATE(358), - [sym_while_statement] = STATE(358), - [sym_do_statement] = STATE(358), - [sym_for_statement] = STATE(358), - [sym_return_statement] = STATE(358), - [sym_break_statement] = STATE(358), - [sym_continue_statement] = STATE(358), - [sym_goto_statement] = STATE(358), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(358), - [sym_co_return_statement] = STATE(358), - [sym_co_yield_statement] = STATE(358), - [sym_throw_statement] = STATE(358), - [sym_try_statement] = STATE(358), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [358] = { + [sym_identifier] = ACTIONS(3035), + [aux_sym_preproc_include_token1] = ACTIONS(3035), + [aux_sym_preproc_def_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token2] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), + [aux_sym_preproc_else_token1] = ACTIONS(3035), + [aux_sym_preproc_elif_token1] = ACTIONS(3035), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3035), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3035), + [sym_preproc_directive] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_BANG] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(3037), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP_AMP] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_SEMI] = ACTIONS(3037), + [anon_sym___extension__] = ACTIONS(3035), + [anon_sym_typedef] = ACTIONS(3035), + [anon_sym_extern] = ACTIONS(3035), + [anon_sym___attribute__] = ACTIONS(3035), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), + [anon_sym___declspec] = ACTIONS(3035), + [anon_sym___based] = ACTIONS(3035), + [anon_sym___cdecl] = ACTIONS(3035), + [anon_sym___clrcall] = ACTIONS(3035), + [anon_sym___stdcall] = ACTIONS(3035), + [anon_sym___fastcall] = ACTIONS(3035), + [anon_sym___thiscall] = ACTIONS(3035), + [anon_sym___vectorcall] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3037), + [anon_sym_signed] = ACTIONS(3035), + [anon_sym_unsigned] = ACTIONS(3035), + [anon_sym_long] = ACTIONS(3035), + [anon_sym_short] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_static] = ACTIONS(3035), + [anon_sym_register] = ACTIONS(3035), + [anon_sym_inline] = ACTIONS(3035), + [anon_sym___inline] = ACTIONS(3035), + [anon_sym___inline__] = ACTIONS(3035), + [anon_sym___forceinline] = ACTIONS(3035), + [anon_sym_thread_local] = ACTIONS(3035), + [anon_sym___thread] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_constexpr] = ACTIONS(3035), + [anon_sym_volatile] = ACTIONS(3035), + [anon_sym_restrict] = ACTIONS(3035), + [anon_sym___restrict__] = ACTIONS(3035), + [anon_sym__Atomic] = ACTIONS(3035), + [anon_sym__Noreturn] = ACTIONS(3035), + [anon_sym_noreturn] = ACTIONS(3035), + [anon_sym_mutable] = ACTIONS(3035), + [anon_sym_constinit] = ACTIONS(3035), + [anon_sym_consteval] = ACTIONS(3035), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_class] = ACTIONS(3035), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_switch] = ACTIONS(3035), + [anon_sym_case] = ACTIONS(3035), + [anon_sym_default] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_break] = ACTIONS(3035), + [anon_sym_continue] = ACTIONS(3035), + [anon_sym_goto] = ACTIONS(3035), + [anon_sym_not] = ACTIONS(3035), + [anon_sym_compl] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3037), + [anon_sym_PLUS_PLUS] = ACTIONS(3037), + [anon_sym_sizeof] = ACTIONS(3035), + [anon_sym___alignof__] = ACTIONS(3035), + [anon_sym___alignof] = ACTIONS(3035), + [anon_sym__alignof] = ACTIONS(3035), + [anon_sym_alignof] = ACTIONS(3035), + [anon_sym__Alignof] = ACTIONS(3035), + [anon_sym_offsetof] = ACTIONS(3035), + [anon_sym__Generic] = ACTIONS(3035), + [anon_sym_asm] = ACTIONS(3035), + [anon_sym___asm__] = ACTIONS(3035), + [sym_number_literal] = ACTIONS(3037), + [anon_sym_L_SQUOTE] = ACTIONS(3037), + [anon_sym_u_SQUOTE] = ACTIONS(3037), + [anon_sym_U_SQUOTE] = ACTIONS(3037), + [anon_sym_u8_SQUOTE] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_L_DQUOTE] = ACTIONS(3037), + [anon_sym_u_DQUOTE] = ACTIONS(3037), + [anon_sym_U_DQUOTE] = ACTIONS(3037), + [anon_sym_u8_DQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE] = ACTIONS(3037), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [anon_sym_NULL] = ACTIONS(3035), + [anon_sym_nullptr] = ACTIONS(3035), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3035), + [anon_sym_decltype] = ACTIONS(3035), + [anon_sym_virtual] = ACTIONS(3035), + [anon_sym_alignas] = ACTIONS(3035), + [anon_sym_explicit] = ACTIONS(3035), + [anon_sym_typename] = ACTIONS(3035), + [anon_sym_template] = ACTIONS(3035), + [anon_sym_operator] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_delete] = ACTIONS(3035), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_namespace] = ACTIONS(3035), + [anon_sym_using] = ACTIONS(3035), + [anon_sym_static_assert] = ACTIONS(3035), + [anon_sym_concept] = ACTIONS(3035), + [anon_sym_co_return] = ACTIONS(3035), + [anon_sym_co_yield] = ACTIONS(3035), + [anon_sym_R_DQUOTE] = ACTIONS(3037), + [anon_sym_LR_DQUOTE] = ACTIONS(3037), + [anon_sym_uR_DQUOTE] = ACTIONS(3037), + [anon_sym_UR_DQUOTE] = ACTIONS(3037), + [anon_sym_u8R_DQUOTE] = ACTIONS(3037), + [anon_sym_co_await] = ACTIONS(3035), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(3035), + [sym_this] = ACTIONS(3035), }, - [299] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1546), - [sym_attributed_statement] = STATE(1546), - [sym_labeled_statement] = STATE(1546), - [sym_expression_statement] = STATE(1546), - [sym_if_statement] = STATE(1546), - [sym_switch_statement] = STATE(1546), - [sym_case_statement] = STATE(1546), - [sym_while_statement] = STATE(1546), - [sym_do_statement] = STATE(1546), - [sym_for_statement] = STATE(1546), - [sym_return_statement] = STATE(1546), - [sym_break_statement] = STATE(1546), - [sym_continue_statement] = STATE(1546), - [sym_goto_statement] = STATE(1546), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1546), - [sym_co_return_statement] = STATE(1546), - [sym_co_yield_statement] = STATE(1546), - [sym_throw_statement] = STATE(1546), - [sym_try_statement] = STATE(1546), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(2259), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [359] = { + [sym_identifier] = ACTIONS(3039), + [aux_sym_preproc_include_token1] = ACTIONS(3039), + [aux_sym_preproc_def_token1] = ACTIONS(3039), + [aux_sym_preproc_if_token1] = ACTIONS(3039), + [aux_sym_preproc_if_token2] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3039), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3039), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3039), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3039), + [sym_preproc_directive] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3041), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_AMP_AMP] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_SEMI] = ACTIONS(3041), + [anon_sym___extension__] = ACTIONS(3039), + [anon_sym_typedef] = ACTIONS(3039), + [anon_sym_extern] = ACTIONS(3039), + [anon_sym___attribute__] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3041), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3041), + [anon_sym___declspec] = ACTIONS(3039), + [anon_sym___based] = ACTIONS(3039), + [anon_sym___cdecl] = ACTIONS(3039), + [anon_sym___clrcall] = ACTIONS(3039), + [anon_sym___stdcall] = ACTIONS(3039), + [anon_sym___fastcall] = ACTIONS(3039), + [anon_sym___thiscall] = ACTIONS(3039), + [anon_sym___vectorcall] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(3041), + [anon_sym_signed] = ACTIONS(3039), + [anon_sym_unsigned] = ACTIONS(3039), + [anon_sym_long] = ACTIONS(3039), + [anon_sym_short] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_static] = ACTIONS(3039), + [anon_sym_register] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym___inline] = ACTIONS(3039), + [anon_sym___inline__] = ACTIONS(3039), + [anon_sym___forceinline] = ACTIONS(3039), + [anon_sym_thread_local] = ACTIONS(3039), + [anon_sym___thread] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(3039), + [anon_sym_constexpr] = ACTIONS(3039), + [anon_sym_volatile] = ACTIONS(3039), + [anon_sym_restrict] = ACTIONS(3039), + [anon_sym___restrict__] = ACTIONS(3039), + [anon_sym__Atomic] = ACTIONS(3039), + [anon_sym__Noreturn] = ACTIONS(3039), + [anon_sym_noreturn] = ACTIONS(3039), + [anon_sym_mutable] = ACTIONS(3039), + [anon_sym_constinit] = ACTIONS(3039), + [anon_sym_consteval] = ACTIONS(3039), + [sym_primitive_type] = ACTIONS(3039), + [anon_sym_enum] = ACTIONS(3039), + [anon_sym_class] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3039), + [anon_sym_union] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_switch] = ACTIONS(3039), + [anon_sym_case] = ACTIONS(3039), + [anon_sym_default] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_goto] = ACTIONS(3039), + [anon_sym_not] = ACTIONS(3039), + [anon_sym_compl] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3039), + [anon_sym___alignof__] = ACTIONS(3039), + [anon_sym___alignof] = ACTIONS(3039), + [anon_sym__alignof] = ACTIONS(3039), + [anon_sym_alignof] = ACTIONS(3039), + [anon_sym__Alignof] = ACTIONS(3039), + [anon_sym_offsetof] = ACTIONS(3039), + [anon_sym__Generic] = ACTIONS(3039), + [anon_sym_asm] = ACTIONS(3039), + [anon_sym___asm__] = ACTIONS(3039), + [sym_number_literal] = ACTIONS(3041), + [anon_sym_L_SQUOTE] = ACTIONS(3041), + [anon_sym_u_SQUOTE] = ACTIONS(3041), + [anon_sym_U_SQUOTE] = ACTIONS(3041), + [anon_sym_u8_SQUOTE] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_L_DQUOTE] = ACTIONS(3041), + [anon_sym_u_DQUOTE] = ACTIONS(3041), + [anon_sym_U_DQUOTE] = ACTIONS(3041), + [anon_sym_u8_DQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(3041), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [anon_sym_NULL] = ACTIONS(3039), + [anon_sym_nullptr] = ACTIONS(3039), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3039), + [anon_sym_decltype] = ACTIONS(3039), + [anon_sym_virtual] = ACTIONS(3039), + [anon_sym_alignas] = ACTIONS(3039), + [anon_sym_explicit] = ACTIONS(3039), + [anon_sym_typename] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3039), + [anon_sym_operator] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_delete] = ACTIONS(3039), + [anon_sym_throw] = ACTIONS(3039), + [anon_sym_namespace] = ACTIONS(3039), + [anon_sym_using] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3039), + [anon_sym_concept] = ACTIONS(3039), + [anon_sym_co_return] = ACTIONS(3039), + [anon_sym_co_yield] = ACTIONS(3039), + [anon_sym_R_DQUOTE] = ACTIONS(3041), + [anon_sym_LR_DQUOTE] = ACTIONS(3041), + [anon_sym_uR_DQUOTE] = ACTIONS(3041), + [anon_sym_UR_DQUOTE] = ACTIONS(3041), + [anon_sym_u8R_DQUOTE] = ACTIONS(3041), + [anon_sym_co_await] = ACTIONS(3039), + [anon_sym_new] = ACTIONS(3039), + [anon_sym_requires] = ACTIONS(3039), + [sym_this] = ACTIONS(3039), }, - [300] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(1076), - [sym_attributed_statement] = STATE(1076), - [sym_labeled_statement] = STATE(1076), - [sym_expression_statement] = STATE(1076), - [sym_if_statement] = STATE(1076), - [sym_switch_statement] = STATE(1076), - [sym_case_statement] = STATE(1076), - [sym_while_statement] = STATE(1076), - [sym_do_statement] = STATE(1076), - [sym_for_statement] = STATE(1076), - [sym_return_statement] = STATE(1076), - [sym_break_statement] = STATE(1076), - [sym_continue_statement] = STATE(1076), - [sym_goto_statement] = STATE(1076), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1076), - [sym_co_return_statement] = STATE(1076), - [sym_co_yield_statement] = STATE(1076), - [sym_throw_statement] = STATE(1076), - [sym_try_statement] = STATE(1076), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [360] = { + [sym_identifier] = ACTIONS(3043), + [aux_sym_preproc_include_token1] = ACTIONS(3043), + [aux_sym_preproc_def_token1] = ACTIONS(3043), + [aux_sym_preproc_if_token1] = ACTIONS(3043), + [aux_sym_preproc_if_token2] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3043), + [aux_sym_preproc_else_token1] = ACTIONS(3043), + [aux_sym_preproc_elif_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym___extension__] = ACTIONS(3043), + [anon_sym_typedef] = ACTIONS(3043), + [anon_sym_extern] = ACTIONS(3043), + [anon_sym___attribute__] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3045), + [anon_sym___declspec] = ACTIONS(3043), + [anon_sym___based] = ACTIONS(3043), + [anon_sym___cdecl] = ACTIONS(3043), + [anon_sym___clrcall] = ACTIONS(3043), + [anon_sym___stdcall] = ACTIONS(3043), + [anon_sym___fastcall] = ACTIONS(3043), + [anon_sym___thiscall] = ACTIONS(3043), + [anon_sym___vectorcall] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_signed] = ACTIONS(3043), + [anon_sym_unsigned] = ACTIONS(3043), + [anon_sym_long] = ACTIONS(3043), + [anon_sym_short] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_static] = ACTIONS(3043), + [anon_sym_register] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym___inline] = ACTIONS(3043), + [anon_sym___inline__] = ACTIONS(3043), + [anon_sym___forceinline] = ACTIONS(3043), + [anon_sym_thread_local] = ACTIONS(3043), + [anon_sym___thread] = ACTIONS(3043), + [anon_sym_const] = ACTIONS(3043), + [anon_sym_constexpr] = ACTIONS(3043), + [anon_sym_volatile] = ACTIONS(3043), + [anon_sym_restrict] = ACTIONS(3043), + [anon_sym___restrict__] = ACTIONS(3043), + [anon_sym__Atomic] = ACTIONS(3043), + [anon_sym__Noreturn] = ACTIONS(3043), + [anon_sym_noreturn] = ACTIONS(3043), + [anon_sym_mutable] = ACTIONS(3043), + [anon_sym_constinit] = ACTIONS(3043), + [anon_sym_consteval] = ACTIONS(3043), + [sym_primitive_type] = ACTIONS(3043), + [anon_sym_enum] = ACTIONS(3043), + [anon_sym_class] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3043), + [anon_sym_union] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_switch] = ACTIONS(3043), + [anon_sym_case] = ACTIONS(3043), + [anon_sym_default] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_do] = ACTIONS(3043), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_goto] = ACTIONS(3043), + [anon_sym_not] = ACTIONS(3043), + [anon_sym_compl] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_sizeof] = ACTIONS(3043), + [anon_sym___alignof__] = ACTIONS(3043), + [anon_sym___alignof] = ACTIONS(3043), + [anon_sym__alignof] = ACTIONS(3043), + [anon_sym_alignof] = ACTIONS(3043), + [anon_sym__Alignof] = ACTIONS(3043), + [anon_sym_offsetof] = ACTIONS(3043), + [anon_sym__Generic] = ACTIONS(3043), + [anon_sym_asm] = ACTIONS(3043), + [anon_sym___asm__] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(3045), + [anon_sym_L_SQUOTE] = ACTIONS(3045), + [anon_sym_u_SQUOTE] = ACTIONS(3045), + [anon_sym_U_SQUOTE] = ACTIONS(3045), + [anon_sym_u8_SQUOTE] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_L_DQUOTE] = ACTIONS(3045), + [anon_sym_u_DQUOTE] = ACTIONS(3045), + [anon_sym_U_DQUOTE] = ACTIONS(3045), + [anon_sym_u8_DQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [sym_true] = ACTIONS(3043), + [sym_false] = ACTIONS(3043), + [anon_sym_NULL] = ACTIONS(3043), + [anon_sym_nullptr] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3043), + [anon_sym_decltype] = ACTIONS(3043), + [anon_sym_virtual] = ACTIONS(3043), + [anon_sym_alignas] = ACTIONS(3043), + [anon_sym_explicit] = ACTIONS(3043), + [anon_sym_typename] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_delete] = ACTIONS(3043), + [anon_sym_throw] = ACTIONS(3043), + [anon_sym_namespace] = ACTIONS(3043), + [anon_sym_using] = ACTIONS(3043), + [anon_sym_static_assert] = ACTIONS(3043), + [anon_sym_concept] = ACTIONS(3043), + [anon_sym_co_return] = ACTIONS(3043), + [anon_sym_co_yield] = ACTIONS(3043), + [anon_sym_R_DQUOTE] = ACTIONS(3045), + [anon_sym_LR_DQUOTE] = ACTIONS(3045), + [anon_sym_uR_DQUOTE] = ACTIONS(3045), + [anon_sym_UR_DQUOTE] = ACTIONS(3045), + [anon_sym_u8R_DQUOTE] = ACTIONS(3045), + [anon_sym_co_await] = ACTIONS(3043), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_requires] = ACTIONS(3043), + [sym_this] = ACTIONS(3043), }, - [301] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(368), - [sym_attributed_statement] = STATE(369), - [sym_labeled_statement] = STATE(370), - [sym_expression_statement] = STATE(371), - [sym_if_statement] = STATE(372), - [sym_switch_statement] = STATE(373), - [sym_case_statement] = STATE(374), - [sym_while_statement] = STATE(375), - [sym_do_statement] = STATE(376), - [sym_for_statement] = STATE(378), - [sym_return_statement] = STATE(380), - [sym_break_statement] = STATE(383), - [sym_continue_statement] = STATE(384), - [sym_goto_statement] = STATE(390), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(391), - [sym_co_return_statement] = STATE(392), - [sym_co_yield_statement] = STATE(393), - [sym_throw_statement] = STATE(394), - [sym_try_statement] = STATE(395), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [361] = { + [sym_identifier] = ACTIONS(3047), + [aux_sym_preproc_include_token1] = ACTIONS(3047), + [aux_sym_preproc_def_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token2] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3047), + [aux_sym_preproc_else_token1] = ACTIONS(3047), + [aux_sym_preproc_elif_token1] = ACTIONS(3047), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3047), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3047), + [sym_preproc_directive] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3047), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym___extension__] = ACTIONS(3047), + [anon_sym_typedef] = ACTIONS(3047), + [anon_sym_extern] = ACTIONS(3047), + [anon_sym___attribute__] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3049), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3049), + [anon_sym___declspec] = ACTIONS(3047), + [anon_sym___based] = ACTIONS(3047), + [anon_sym___cdecl] = ACTIONS(3047), + [anon_sym___clrcall] = ACTIONS(3047), + [anon_sym___stdcall] = ACTIONS(3047), + [anon_sym___fastcall] = ACTIONS(3047), + [anon_sym___thiscall] = ACTIONS(3047), + [anon_sym___vectorcall] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_signed] = ACTIONS(3047), + [anon_sym_unsigned] = ACTIONS(3047), + [anon_sym_long] = ACTIONS(3047), + [anon_sym_short] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_static] = ACTIONS(3047), + [anon_sym_register] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym___inline] = ACTIONS(3047), + [anon_sym___inline__] = ACTIONS(3047), + [anon_sym___forceinline] = ACTIONS(3047), + [anon_sym_thread_local] = ACTIONS(3047), + [anon_sym___thread] = ACTIONS(3047), + [anon_sym_const] = ACTIONS(3047), + [anon_sym_constexpr] = ACTIONS(3047), + [anon_sym_volatile] = ACTIONS(3047), + [anon_sym_restrict] = ACTIONS(3047), + [anon_sym___restrict__] = ACTIONS(3047), + [anon_sym__Atomic] = ACTIONS(3047), + [anon_sym__Noreturn] = ACTIONS(3047), + [anon_sym_noreturn] = ACTIONS(3047), + [anon_sym_mutable] = ACTIONS(3047), + [anon_sym_constinit] = ACTIONS(3047), + [anon_sym_consteval] = ACTIONS(3047), + [sym_primitive_type] = ACTIONS(3047), + [anon_sym_enum] = ACTIONS(3047), + [anon_sym_class] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_union] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_switch] = ACTIONS(3047), + [anon_sym_case] = ACTIONS(3047), + [anon_sym_default] = ACTIONS(3047), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_do] = ACTIONS(3047), + [anon_sym_for] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_goto] = ACTIONS(3047), + [anon_sym_not] = ACTIONS(3047), + [anon_sym_compl] = ACTIONS(3047), + [anon_sym_DASH_DASH] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_sizeof] = ACTIONS(3047), + [anon_sym___alignof__] = ACTIONS(3047), + [anon_sym___alignof] = ACTIONS(3047), + [anon_sym__alignof] = ACTIONS(3047), + [anon_sym_alignof] = ACTIONS(3047), + [anon_sym__Alignof] = ACTIONS(3047), + [anon_sym_offsetof] = ACTIONS(3047), + [anon_sym__Generic] = ACTIONS(3047), + [anon_sym_asm] = ACTIONS(3047), + [anon_sym___asm__] = ACTIONS(3047), + [sym_number_literal] = ACTIONS(3049), + [anon_sym_L_SQUOTE] = ACTIONS(3049), + [anon_sym_u_SQUOTE] = ACTIONS(3049), + [anon_sym_U_SQUOTE] = ACTIONS(3049), + [anon_sym_u8_SQUOTE] = ACTIONS(3049), + [anon_sym_SQUOTE] = ACTIONS(3049), + [anon_sym_L_DQUOTE] = ACTIONS(3049), + [anon_sym_u_DQUOTE] = ACTIONS(3049), + [anon_sym_U_DQUOTE] = ACTIONS(3049), + [anon_sym_u8_DQUOTE] = ACTIONS(3049), + [anon_sym_DQUOTE] = ACTIONS(3049), + [sym_true] = ACTIONS(3047), + [sym_false] = ACTIONS(3047), + [anon_sym_NULL] = ACTIONS(3047), + [anon_sym_nullptr] = ACTIONS(3047), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3047), + [anon_sym_decltype] = ACTIONS(3047), + [anon_sym_virtual] = ACTIONS(3047), + [anon_sym_alignas] = ACTIONS(3047), + [anon_sym_explicit] = ACTIONS(3047), + [anon_sym_typename] = ACTIONS(3047), + [anon_sym_template] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_delete] = ACTIONS(3047), + [anon_sym_throw] = ACTIONS(3047), + [anon_sym_namespace] = ACTIONS(3047), + [anon_sym_using] = ACTIONS(3047), + [anon_sym_static_assert] = ACTIONS(3047), + [anon_sym_concept] = ACTIONS(3047), + [anon_sym_co_return] = ACTIONS(3047), + [anon_sym_co_yield] = ACTIONS(3047), + [anon_sym_R_DQUOTE] = ACTIONS(3049), + [anon_sym_LR_DQUOTE] = ACTIONS(3049), + [anon_sym_uR_DQUOTE] = ACTIONS(3049), + [anon_sym_UR_DQUOTE] = ACTIONS(3049), + [anon_sym_u8R_DQUOTE] = ACTIONS(3049), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_requires] = ACTIONS(3047), + [sym_this] = ACTIONS(3047), }, - [302] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3912), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9086), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9146), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9098), - [sym__unary_right_fold] = STATE(9090), - [sym__binary_fold] = STATE(9079), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [362] = { + [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_extern] = ACTIONS(3051), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3051), + [anon_sym_constinit] = ACTIONS(3051), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3051), + [anon_sym_alignas] = 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_using] = 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), }, - [303] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(430), - [sym_attributed_statement] = STATE(429), - [sym_labeled_statement] = STATE(427), - [sym_expression_statement] = STATE(424), - [sym_if_statement] = STATE(423), - [sym_switch_statement] = STATE(422), - [sym_case_statement] = STATE(421), - [sym_while_statement] = STATE(420), - [sym_do_statement] = STATE(419), - [sym_for_statement] = STATE(418), - [sym_return_statement] = STATE(412), - [sym_break_statement] = STATE(406), - [sym_continue_statement] = STATE(404), - [sym_goto_statement] = STATE(403), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(401), - [sym_co_return_statement] = STATE(363), - [sym_co_yield_statement] = STATE(364), - [sym_throw_statement] = STATE(366), - [sym_try_statement] = STATE(367), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [363] = { + [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_extern] = ACTIONS(3055), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3055), + [anon_sym_constinit] = ACTIONS(3055), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3055), + [anon_sym_alignas] = 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_using] = 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), }, - [304] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3894), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9633), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9520), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9088), - [sym__unary_right_fold] = STATE(9089), - [sym__binary_fold] = STATE(9207), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [364] = { + [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_extern] = ACTIONS(3059), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3059), + [anon_sym_constinit] = ACTIONS(3059), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3059), + [anon_sym_alignas] = 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_using] = 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), }, - [305] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(902), - [sym_attributed_statement] = STATE(902), - [sym_labeled_statement] = STATE(902), - [sym_expression_statement] = STATE(902), - [sym_if_statement] = STATE(902), - [sym_switch_statement] = STATE(902), - [sym_case_statement] = STATE(902), - [sym_while_statement] = STATE(902), - [sym_do_statement] = STATE(902), - [sym_for_statement] = STATE(902), - [sym_return_statement] = STATE(902), - [sym_break_statement] = STATE(902), - [sym_continue_statement] = STATE(902), - [sym_goto_statement] = STATE(902), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(902), - [sym_co_return_statement] = STATE(902), - [sym_co_yield_statement] = STATE(902), - [sym_throw_statement] = STATE(902), - [sym_try_statement] = STATE(902), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [365] = { + [sym_identifier] = ACTIONS(3063), + [aux_sym_preproc_include_token1] = ACTIONS(3063), + [aux_sym_preproc_def_token1] = ACTIONS(3063), + [aux_sym_preproc_if_token1] = ACTIONS(3063), + [aux_sym_preproc_if_token2] = ACTIONS(3063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), + [aux_sym_preproc_else_token1] = ACTIONS(3063), + [aux_sym_preproc_elif_token1] = ACTIONS(3063), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3063), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3063), + [sym_preproc_directive] = ACTIONS(3063), + [anon_sym_LPAREN2] = ACTIONS(3065), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_TILDE] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym___extension__] = ACTIONS(3063), + [anon_sym_typedef] = ACTIONS(3063), + [anon_sym_extern] = ACTIONS(3063), + [anon_sym___attribute__] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(3065), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), + [anon_sym___declspec] = ACTIONS(3063), + [anon_sym___based] = ACTIONS(3063), + [anon_sym___cdecl] = ACTIONS(3063), + [anon_sym___clrcall] = ACTIONS(3063), + [anon_sym___stdcall] = ACTIONS(3063), + [anon_sym___fastcall] = ACTIONS(3063), + [anon_sym___thiscall] = ACTIONS(3063), + [anon_sym___vectorcall] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_signed] = ACTIONS(3063), + [anon_sym_unsigned] = ACTIONS(3063), + [anon_sym_long] = ACTIONS(3063), + [anon_sym_short] = ACTIONS(3063), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_static] = ACTIONS(3063), + [anon_sym_register] = ACTIONS(3063), + [anon_sym_inline] = ACTIONS(3063), + [anon_sym___inline] = ACTIONS(3063), + [anon_sym___inline__] = ACTIONS(3063), + [anon_sym___forceinline] = ACTIONS(3063), + [anon_sym_thread_local] = ACTIONS(3063), + [anon_sym___thread] = ACTIONS(3063), + [anon_sym_const] = ACTIONS(3063), + [anon_sym_constexpr] = ACTIONS(3063), + [anon_sym_volatile] = ACTIONS(3063), + [anon_sym_restrict] = ACTIONS(3063), + [anon_sym___restrict__] = ACTIONS(3063), + [anon_sym__Atomic] = ACTIONS(3063), + [anon_sym__Noreturn] = ACTIONS(3063), + [anon_sym_noreturn] = ACTIONS(3063), + [anon_sym_mutable] = ACTIONS(3063), + [anon_sym_constinit] = ACTIONS(3063), + [anon_sym_consteval] = ACTIONS(3063), + [sym_primitive_type] = ACTIONS(3063), + [anon_sym_enum] = ACTIONS(3063), + [anon_sym_class] = ACTIONS(3063), + [anon_sym_struct] = ACTIONS(3063), + [anon_sym_union] = ACTIONS(3063), + [anon_sym_if] = ACTIONS(3063), + [anon_sym_switch] = ACTIONS(3063), + [anon_sym_case] = ACTIONS(3063), + [anon_sym_default] = ACTIONS(3063), + [anon_sym_while] = ACTIONS(3063), + [anon_sym_do] = ACTIONS(3063), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(3063), + [anon_sym_break] = ACTIONS(3063), + [anon_sym_continue] = ACTIONS(3063), + [anon_sym_goto] = ACTIONS(3063), + [anon_sym_not] = ACTIONS(3063), + [anon_sym_compl] = ACTIONS(3063), + [anon_sym_DASH_DASH] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_sizeof] = ACTIONS(3063), + [anon_sym___alignof__] = ACTIONS(3063), + [anon_sym___alignof] = ACTIONS(3063), + [anon_sym__alignof] = ACTIONS(3063), + [anon_sym_alignof] = ACTIONS(3063), + [anon_sym__Alignof] = ACTIONS(3063), + [anon_sym_offsetof] = ACTIONS(3063), + [anon_sym__Generic] = ACTIONS(3063), + [anon_sym_asm] = ACTIONS(3063), + [anon_sym___asm__] = ACTIONS(3063), + [sym_number_literal] = ACTIONS(3065), + [anon_sym_L_SQUOTE] = ACTIONS(3065), + [anon_sym_u_SQUOTE] = ACTIONS(3065), + [anon_sym_U_SQUOTE] = ACTIONS(3065), + [anon_sym_u8_SQUOTE] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3065), + [anon_sym_L_DQUOTE] = ACTIONS(3065), + [anon_sym_u_DQUOTE] = ACTIONS(3065), + [anon_sym_U_DQUOTE] = ACTIONS(3065), + [anon_sym_u8_DQUOTE] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [sym_true] = ACTIONS(3063), + [sym_false] = ACTIONS(3063), + [anon_sym_NULL] = ACTIONS(3063), + [anon_sym_nullptr] = ACTIONS(3063), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3063), + [anon_sym_decltype] = ACTIONS(3063), + [anon_sym_virtual] = ACTIONS(3063), + [anon_sym_alignas] = ACTIONS(3063), + [anon_sym_explicit] = ACTIONS(3063), + [anon_sym_typename] = ACTIONS(3063), + [anon_sym_template] = ACTIONS(3063), + [anon_sym_operator] = ACTIONS(3063), + [anon_sym_try] = ACTIONS(3063), + [anon_sym_delete] = ACTIONS(3063), + [anon_sym_throw] = ACTIONS(3063), + [anon_sym_namespace] = ACTIONS(3063), + [anon_sym_using] = ACTIONS(3063), + [anon_sym_static_assert] = ACTIONS(3063), + [anon_sym_concept] = ACTIONS(3063), + [anon_sym_co_return] = ACTIONS(3063), + [anon_sym_co_yield] = ACTIONS(3063), + [anon_sym_R_DQUOTE] = ACTIONS(3065), + [anon_sym_LR_DQUOTE] = ACTIONS(3065), + [anon_sym_uR_DQUOTE] = ACTIONS(3065), + [anon_sym_UR_DQUOTE] = ACTIONS(3065), + [anon_sym_u8R_DQUOTE] = ACTIONS(3065), + [anon_sym_co_await] = ACTIONS(3063), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_requires] = ACTIONS(3063), + [sym_this] = ACTIONS(3063), }, - [306] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3894), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9633), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9144), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9088), - [sym__unary_right_fold] = STATE(9089), - [sym__binary_fold] = STATE(9207), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [366] = { + [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_extern] = ACTIONS(3067), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3067), + [anon_sym_constinit] = ACTIONS(3067), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3067), + [anon_sym_alignas] = 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_using] = 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), }, - [307] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(432), - [sym_attributed_statement] = STATE(432), - [sym_labeled_statement] = STATE(432), - [sym_expression_statement] = STATE(432), - [sym_if_statement] = STATE(432), - [sym_switch_statement] = STATE(432), - [sym_case_statement] = STATE(432), - [sym_while_statement] = STATE(432), - [sym_do_statement] = STATE(432), - [sym_for_statement] = STATE(432), - [sym_return_statement] = STATE(432), - [sym_break_statement] = STATE(432), - [sym_continue_statement] = STATE(432), - [sym_goto_statement] = STATE(432), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(432), - [sym_co_return_statement] = STATE(432), - [sym_co_yield_statement] = STATE(432), - [sym_throw_statement] = STATE(432), - [sym_try_statement] = STATE(432), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [367] = { + [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_extern] = ACTIONS(3071), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3071), + [anon_sym_constinit] = ACTIONS(3071), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3071), + [anon_sym_alignas] = 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_using] = 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), }, - [308] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(1125), - [sym_attributed_statement] = STATE(1125), - [sym_labeled_statement] = STATE(1125), - [sym_expression_statement] = STATE(1125), - [sym_if_statement] = STATE(1125), - [sym_switch_statement] = STATE(1125), - [sym_case_statement] = STATE(1125), - [sym_while_statement] = STATE(1125), - [sym_do_statement] = STATE(1125), - [sym_for_statement] = STATE(1125), - [sym_return_statement] = STATE(1125), - [sym_break_statement] = STATE(1125), - [sym_continue_statement] = STATE(1125), - [sym_goto_statement] = STATE(1125), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1125), - [sym_co_return_statement] = STATE(1125), - [sym_co_yield_statement] = STATE(1125), - [sym_throw_statement] = STATE(1125), - [sym_try_statement] = STATE(1125), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [368] = { + [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_extern] = ACTIONS(3075), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3075), + [anon_sym_constinit] = ACTIONS(3075), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3075), + [anon_sym_alignas] = 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_using] = 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), }, - [309] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(1177), - [sym_attributed_statement] = STATE(1177), - [sym_labeled_statement] = STATE(1177), - [sym_expression_statement] = STATE(1177), - [sym_if_statement] = STATE(1177), - [sym_switch_statement] = STATE(1177), - [sym_case_statement] = STATE(1177), - [sym_while_statement] = STATE(1177), - [sym_do_statement] = STATE(1177), - [sym_for_statement] = STATE(1177), - [sym_return_statement] = STATE(1177), - [sym_break_statement] = STATE(1177), - [sym_continue_statement] = STATE(1177), - [sym_goto_statement] = STATE(1177), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1177), - [sym_co_return_statement] = STATE(1177), - [sym_co_yield_statement] = STATE(1177), - [sym_throw_statement] = STATE(1177), - [sym_try_statement] = STATE(1177), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [369] = { + [sym_identifier] = ACTIONS(3079), + [aux_sym_preproc_include_token1] = ACTIONS(3079), + [aux_sym_preproc_def_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token2] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), + [aux_sym_preproc_else_token1] = ACTIONS(3079), + [aux_sym_preproc_elif_token1] = ACTIONS(3079), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3079), + [sym_preproc_directive] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym___extension__] = ACTIONS(3079), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym___based] = ACTIONS(3079), + [anon_sym___cdecl] = ACTIONS(3079), + [anon_sym___clrcall] = ACTIONS(3079), + [anon_sym___stdcall] = ACTIONS(3079), + [anon_sym___fastcall] = ACTIONS(3079), + [anon_sym___thiscall] = ACTIONS(3079), + [anon_sym___vectorcall] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym___inline] = ACTIONS(3079), + [anon_sym___inline__] = ACTIONS(3079), + [anon_sym___forceinline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym___thread] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3079), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_goto] = ACTIONS(3079), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_compl] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3079), + [anon_sym___alignof__] = ACTIONS(3079), + [anon_sym___alignof] = ACTIONS(3079), + [anon_sym__alignof] = ACTIONS(3079), + [anon_sym_alignof] = ACTIONS(3079), + [anon_sym__Alignof] = ACTIONS(3079), + [anon_sym_offsetof] = ACTIONS(3079), + [anon_sym__Generic] = ACTIONS(3079), + [anon_sym_asm] = ACTIONS(3079), + [anon_sym___asm__] = ACTIONS(3079), + [sym_number_literal] = ACTIONS(3081), + [anon_sym_L_SQUOTE] = ACTIONS(3081), + [anon_sym_u_SQUOTE] = ACTIONS(3081), + [anon_sym_U_SQUOTE] = ACTIONS(3081), + [anon_sym_u8_SQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_L_DQUOTE] = ACTIONS(3081), + [anon_sym_u_DQUOTE] = ACTIONS(3081), + [anon_sym_U_DQUOTE] = ACTIONS(3081), + [anon_sym_u8_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [anon_sym_NULL] = ACTIONS(3079), + [anon_sym_nullptr] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_alignas] = ACTIONS(3079), + [anon_sym_explicit] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_static_assert] = ACTIONS(3079), + [anon_sym_concept] = ACTIONS(3079), + [anon_sym_co_return] = ACTIONS(3079), + [anon_sym_co_yield] = ACTIONS(3079), + [anon_sym_R_DQUOTE] = ACTIONS(3081), + [anon_sym_LR_DQUOTE] = ACTIONS(3081), + [anon_sym_uR_DQUOTE] = ACTIONS(3081), + [anon_sym_UR_DQUOTE] = ACTIONS(3081), + [anon_sym_u8R_DQUOTE] = ACTIONS(3081), + [anon_sym_co_await] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_requires] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), }, - [310] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(434), - [sym_attributed_statement] = STATE(434), - [sym_labeled_statement] = STATE(434), - [sym_expression_statement] = STATE(434), - [sym_if_statement] = STATE(434), - [sym_switch_statement] = STATE(434), - [sym_case_statement] = STATE(434), - [sym_while_statement] = STATE(434), - [sym_do_statement] = STATE(434), - [sym_for_statement] = STATE(434), - [sym_return_statement] = STATE(434), - [sym_break_statement] = STATE(434), - [sym_continue_statement] = STATE(434), - [sym_goto_statement] = STATE(434), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(434), - [sym_co_return_statement] = STATE(434), - [sym_co_yield_statement] = STATE(434), - [sym_throw_statement] = STATE(434), - [sym_try_statement] = STATE(434), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [370] = { + [sym_identifier] = ACTIONS(3083), + [aux_sym_preproc_include_token1] = ACTIONS(3083), + [aux_sym_preproc_def_token1] = ACTIONS(3083), + [aux_sym_preproc_if_token1] = ACTIONS(3083), + [aux_sym_preproc_if_token2] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), + [aux_sym_preproc_else_token1] = ACTIONS(3083), + [aux_sym_preproc_elif_token1] = ACTIONS(3083), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3083), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3083), + [sym_preproc_directive] = ACTIONS(3083), + [anon_sym_LPAREN2] = ACTIONS(3085), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(3083), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym___extension__] = ACTIONS(3083), + [anon_sym_typedef] = ACTIONS(3083), + [anon_sym_extern] = ACTIONS(3083), + [anon_sym___attribute__] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3085), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), + [anon_sym___declspec] = ACTIONS(3083), + [anon_sym___based] = ACTIONS(3083), + [anon_sym___cdecl] = ACTIONS(3083), + [anon_sym___clrcall] = ACTIONS(3083), + [anon_sym___stdcall] = ACTIONS(3083), + [anon_sym___fastcall] = ACTIONS(3083), + [anon_sym___thiscall] = ACTIONS(3083), + [anon_sym___vectorcall] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3083), + [anon_sym_unsigned] = ACTIONS(3083), + [anon_sym_long] = ACTIONS(3083), + [anon_sym_short] = ACTIONS(3083), + [anon_sym_LBRACK] = ACTIONS(3083), + [anon_sym_static] = ACTIONS(3083), + [anon_sym_register] = ACTIONS(3083), + [anon_sym_inline] = ACTIONS(3083), + [anon_sym___inline] = ACTIONS(3083), + [anon_sym___inline__] = ACTIONS(3083), + [anon_sym___forceinline] = ACTIONS(3083), + [anon_sym_thread_local] = ACTIONS(3083), + [anon_sym___thread] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3083), + [anon_sym_constexpr] = ACTIONS(3083), + [anon_sym_volatile] = ACTIONS(3083), + [anon_sym_restrict] = ACTIONS(3083), + [anon_sym___restrict__] = ACTIONS(3083), + [anon_sym__Atomic] = ACTIONS(3083), + [anon_sym__Noreturn] = ACTIONS(3083), + [anon_sym_noreturn] = ACTIONS(3083), + [anon_sym_mutable] = ACTIONS(3083), + [anon_sym_constinit] = ACTIONS(3083), + [anon_sym_consteval] = ACTIONS(3083), + [sym_primitive_type] = ACTIONS(3083), + [anon_sym_enum] = ACTIONS(3083), + [anon_sym_class] = ACTIONS(3083), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_switch] = ACTIONS(3083), + [anon_sym_case] = ACTIONS(3083), + [anon_sym_default] = ACTIONS(3083), + [anon_sym_while] = ACTIONS(3083), + [anon_sym_do] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3083), + [anon_sym_return] = ACTIONS(3083), + [anon_sym_break] = ACTIONS(3083), + [anon_sym_continue] = ACTIONS(3083), + [anon_sym_goto] = ACTIONS(3083), + [anon_sym_not] = ACTIONS(3083), + [anon_sym_compl] = ACTIONS(3083), + [anon_sym_DASH_DASH] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_sizeof] = ACTIONS(3083), + [anon_sym___alignof__] = ACTIONS(3083), + [anon_sym___alignof] = ACTIONS(3083), + [anon_sym__alignof] = ACTIONS(3083), + [anon_sym_alignof] = ACTIONS(3083), + [anon_sym__Alignof] = ACTIONS(3083), + [anon_sym_offsetof] = ACTIONS(3083), + [anon_sym__Generic] = ACTIONS(3083), + [anon_sym_asm] = ACTIONS(3083), + [anon_sym___asm__] = ACTIONS(3083), + [sym_number_literal] = ACTIONS(3085), + [anon_sym_L_SQUOTE] = ACTIONS(3085), + [anon_sym_u_SQUOTE] = ACTIONS(3085), + [anon_sym_U_SQUOTE] = ACTIONS(3085), + [anon_sym_u8_SQUOTE] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(3085), + [anon_sym_L_DQUOTE] = ACTIONS(3085), + [anon_sym_u_DQUOTE] = ACTIONS(3085), + [anon_sym_U_DQUOTE] = ACTIONS(3085), + [anon_sym_u8_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [sym_true] = ACTIONS(3083), + [sym_false] = ACTIONS(3083), + [anon_sym_NULL] = ACTIONS(3083), + [anon_sym_nullptr] = ACTIONS(3083), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3083), + [anon_sym_decltype] = ACTIONS(3083), + [anon_sym_virtual] = ACTIONS(3083), + [anon_sym_alignas] = ACTIONS(3083), + [anon_sym_explicit] = ACTIONS(3083), + [anon_sym_typename] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3083), + [anon_sym_operator] = ACTIONS(3083), + [anon_sym_try] = ACTIONS(3083), + [anon_sym_delete] = ACTIONS(3083), + [anon_sym_throw] = ACTIONS(3083), + [anon_sym_namespace] = ACTIONS(3083), + [anon_sym_using] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3083), + [anon_sym_concept] = ACTIONS(3083), + [anon_sym_co_return] = ACTIONS(3083), + [anon_sym_co_yield] = ACTIONS(3083), + [anon_sym_R_DQUOTE] = ACTIONS(3085), + [anon_sym_LR_DQUOTE] = ACTIONS(3085), + [anon_sym_uR_DQUOTE] = ACTIONS(3085), + [anon_sym_UR_DQUOTE] = ACTIONS(3085), + [anon_sym_u8R_DQUOTE] = ACTIONS(3085), + [anon_sym_co_await] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_requires] = ACTIONS(3083), + [sym_this] = ACTIONS(3083), }, - [311] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(435), - [sym_attributed_statement] = STATE(435), - [sym_labeled_statement] = STATE(435), - [sym_expression_statement] = STATE(435), - [sym_if_statement] = STATE(435), - [sym_switch_statement] = STATE(435), - [sym_case_statement] = STATE(435), - [sym_while_statement] = STATE(435), - [sym_do_statement] = STATE(435), - [sym_for_statement] = STATE(435), - [sym_return_statement] = STATE(435), - [sym_break_statement] = STATE(435), - [sym_continue_statement] = STATE(435), - [sym_goto_statement] = STATE(435), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(435), - [sym_co_return_statement] = STATE(435), - [sym_co_yield_statement] = STATE(435), - [sym_throw_statement] = STATE(435), - [sym_try_statement] = STATE(435), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [371] = { + [sym_identifier] = ACTIONS(3087), + [aux_sym_preproc_include_token1] = ACTIONS(3087), + [aux_sym_preproc_def_token1] = ACTIONS(3087), + [aux_sym_preproc_if_token1] = ACTIONS(3087), + [aux_sym_preproc_if_token2] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), + [aux_sym_preproc_else_token1] = ACTIONS(3087), + [aux_sym_preproc_elif_token1] = ACTIONS(3087), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3087), + [sym_preproc_directive] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_BANG] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3089), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym___cdecl] = ACTIONS(3087), + [anon_sym___clrcall] = ACTIONS(3087), + [anon_sym___stdcall] = ACTIONS(3087), + [anon_sym___fastcall] = ACTIONS(3087), + [anon_sym___thiscall] = ACTIONS(3087), + [anon_sym___vectorcall] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3087), + [anon_sym_unsigned] = ACTIONS(3087), + [anon_sym_long] = ACTIONS(3087), + [anon_sym_short] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_register] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym___inline] = ACTIONS(3087), + [anon_sym___inline__] = ACTIONS(3087), + [anon_sym___forceinline] = ACTIONS(3087), + [anon_sym_thread_local] = ACTIONS(3087), + [anon_sym___thread] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_constexpr] = ACTIONS(3087), + [anon_sym_volatile] = ACTIONS(3087), + [anon_sym_restrict] = ACTIONS(3087), + [anon_sym___restrict__] = ACTIONS(3087), + [anon_sym__Atomic] = ACTIONS(3087), + [anon_sym__Noreturn] = ACTIONS(3087), + [anon_sym_noreturn] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [sym_primitive_type] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_switch] = ACTIONS(3087), + [anon_sym_case] = ACTIONS(3087), + [anon_sym_default] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3087), + [anon_sym_do] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_goto] = ACTIONS(3087), + [anon_sym_not] = ACTIONS(3087), + [anon_sym_compl] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_sizeof] = ACTIONS(3087), + [anon_sym___alignof__] = ACTIONS(3087), + [anon_sym___alignof] = ACTIONS(3087), + [anon_sym__alignof] = ACTIONS(3087), + [anon_sym_alignof] = ACTIONS(3087), + [anon_sym__Alignof] = ACTIONS(3087), + [anon_sym_offsetof] = ACTIONS(3087), + [anon_sym__Generic] = ACTIONS(3087), + [anon_sym_asm] = ACTIONS(3087), + [anon_sym___asm__] = ACTIONS(3087), + [sym_number_literal] = ACTIONS(3089), + [anon_sym_L_SQUOTE] = ACTIONS(3089), + [anon_sym_u_SQUOTE] = ACTIONS(3089), + [anon_sym_U_SQUOTE] = ACTIONS(3089), + [anon_sym_u8_SQUOTE] = ACTIONS(3089), + [anon_sym_SQUOTE] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(3089), + [anon_sym_u_DQUOTE] = ACTIONS(3089), + [anon_sym_U_DQUOTE] = ACTIONS(3089), + [anon_sym_u8_DQUOTE] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [anon_sym_NULL] = ACTIONS(3087), + [anon_sym_nullptr] = ACTIONS(3087), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym_explicit] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_try] = ACTIONS(3087), + [anon_sym_delete] = ACTIONS(3087), + [anon_sym_throw] = ACTIONS(3087), + [anon_sym_namespace] = ACTIONS(3087), + [anon_sym_using] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), + [anon_sym_concept] = ACTIONS(3087), + [anon_sym_co_return] = ACTIONS(3087), + [anon_sym_co_yield] = ACTIONS(3087), + [anon_sym_R_DQUOTE] = ACTIONS(3089), + [anon_sym_LR_DQUOTE] = ACTIONS(3089), + [anon_sym_uR_DQUOTE] = ACTIONS(3089), + [anon_sym_UR_DQUOTE] = ACTIONS(3089), + [anon_sym_u8R_DQUOTE] = ACTIONS(3089), + [anon_sym_co_await] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_requires] = ACTIONS(3087), + [sym_this] = ACTIONS(3087), }, - [312] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(481), - [sym_attributed_statement] = STATE(480), - [sym_labeled_statement] = STATE(479), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(477), - [sym_switch_statement] = STATE(473), - [sym_case_statement] = STATE(472), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(362), - [sym_for_statement] = STATE(469), - [sym_return_statement] = STATE(468), - [sym_break_statement] = STATE(467), - [sym_continue_statement] = STATE(459), - [sym_goto_statement] = STATE(458), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(453), - [sym_co_return_statement] = STATE(452), - [sym_co_yield_statement] = STATE(450), - [sym_throw_statement] = STATE(449), - [sym_try_statement] = STATE(436), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [372] = { + [sym_identifier] = ACTIONS(3091), + [aux_sym_preproc_include_token1] = ACTIONS(3091), + [aux_sym_preproc_def_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token2] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), + [aux_sym_preproc_else_token1] = ACTIONS(3091), + [aux_sym_preproc_elif_token1] = ACTIONS(3091), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3091), + [sym_preproc_directive] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym___based] = ACTIONS(3091), + [anon_sym___cdecl] = ACTIONS(3091), + [anon_sym___clrcall] = ACTIONS(3091), + [anon_sym___stdcall] = ACTIONS(3091), + [anon_sym___fastcall] = ACTIONS(3091), + [anon_sym___thiscall] = ACTIONS(3091), + [anon_sym___vectorcall] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_switch] = ACTIONS(3091), + [anon_sym_case] = ACTIONS(3091), + [anon_sym_default] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_goto] = ACTIONS(3091), + [anon_sym_not] = ACTIONS(3091), + [anon_sym_compl] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3093), + [anon_sym_sizeof] = ACTIONS(3091), + [anon_sym___alignof__] = ACTIONS(3091), + [anon_sym___alignof] = ACTIONS(3091), + [anon_sym__alignof] = ACTIONS(3091), + [anon_sym_alignof] = ACTIONS(3091), + [anon_sym__Alignof] = ACTIONS(3091), + [anon_sym_offsetof] = ACTIONS(3091), + [anon_sym__Generic] = ACTIONS(3091), + [anon_sym_asm] = ACTIONS(3091), + [anon_sym___asm__] = ACTIONS(3091), + [sym_number_literal] = ACTIONS(3093), + [anon_sym_L_SQUOTE] = ACTIONS(3093), + [anon_sym_u_SQUOTE] = ACTIONS(3093), + [anon_sym_U_SQUOTE] = ACTIONS(3093), + [anon_sym_u8_SQUOTE] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_L_DQUOTE] = ACTIONS(3093), + [anon_sym_u_DQUOTE] = ACTIONS(3093), + [anon_sym_U_DQUOTE] = ACTIONS(3093), + [anon_sym_u8_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [anon_sym_NULL] = ACTIONS(3091), + [anon_sym_nullptr] = ACTIONS(3091), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym_explicit] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_operator] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_delete] = ACTIONS(3091), + [anon_sym_throw] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_static_assert] = ACTIONS(3091), + [anon_sym_concept] = ACTIONS(3091), + [anon_sym_co_return] = ACTIONS(3091), + [anon_sym_co_yield] = ACTIONS(3091), + [anon_sym_R_DQUOTE] = ACTIONS(3093), + [anon_sym_LR_DQUOTE] = ACTIONS(3093), + [anon_sym_uR_DQUOTE] = ACTIONS(3093), + [anon_sym_UR_DQUOTE] = ACTIONS(3093), + [anon_sym_u8R_DQUOTE] = ACTIONS(3093), + [anon_sym_co_await] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_requires] = ACTIONS(3091), + [sym_this] = ACTIONS(3091), }, - [313] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(508), - [sym_attributed_statement] = STATE(507), - [sym_labeled_statement] = STATE(506), - [sym_expression_statement] = STATE(505), - [sym_if_statement] = STATE(503), - [sym_switch_statement] = STATE(501), - [sym_case_statement] = STATE(498), - [sym_while_statement] = STATE(494), - [sym_do_statement] = STATE(493), - [sym_for_statement] = STATE(491), - [sym_return_statement] = STATE(490), - [sym_break_statement] = STATE(489), - [sym_continue_statement] = STATE(488), - [sym_goto_statement] = STATE(487), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(486), - [sym_co_return_statement] = STATE(485), - [sym_co_yield_statement] = STATE(484), - [sym_throw_statement] = STATE(483), - [sym_try_statement] = STATE(482), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [373] = { + [sym_identifier] = ACTIONS(3095), + [aux_sym_preproc_include_token1] = ACTIONS(3095), + [aux_sym_preproc_def_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token2] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), + [aux_sym_preproc_else_token1] = ACTIONS(3095), + [aux_sym_preproc_elif_token1] = ACTIONS(3095), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3095), + [sym_preproc_directive] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_AMP_AMP] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(3095), + [anon_sym___attribute__] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), + [anon_sym___declspec] = ACTIONS(3095), + [anon_sym___based] = ACTIONS(3095), + [anon_sym___cdecl] = ACTIONS(3095), + [anon_sym___clrcall] = ACTIONS(3095), + [anon_sym___stdcall] = ACTIONS(3095), + [anon_sym___fastcall] = ACTIONS(3095), + [anon_sym___thiscall] = ACTIONS(3095), + [anon_sym___vectorcall] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3095), + [anon_sym_unsigned] = ACTIONS(3095), + [anon_sym_long] = ACTIONS(3095), + [anon_sym_short] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_register] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym___inline] = ACTIONS(3095), + [anon_sym___inline__] = ACTIONS(3095), + [anon_sym___forceinline] = ACTIONS(3095), + [anon_sym_thread_local] = ACTIONS(3095), + [anon_sym___thread] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_constexpr] = ACTIONS(3095), + [anon_sym_volatile] = ACTIONS(3095), + [anon_sym_restrict] = ACTIONS(3095), + [anon_sym___restrict__] = ACTIONS(3095), + [anon_sym__Atomic] = ACTIONS(3095), + [anon_sym__Noreturn] = ACTIONS(3095), + [anon_sym_noreturn] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [sym_primitive_type] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3095), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_switch] = ACTIONS(3095), + [anon_sym_case] = ACTIONS(3095), + [anon_sym_default] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_break] = ACTIONS(3095), + [anon_sym_continue] = ACTIONS(3095), + [anon_sym_goto] = ACTIONS(3095), + [anon_sym_not] = ACTIONS(3095), + [anon_sym_compl] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3097), + [anon_sym_PLUS_PLUS] = ACTIONS(3097), + [anon_sym_sizeof] = ACTIONS(3095), + [anon_sym___alignof__] = ACTIONS(3095), + [anon_sym___alignof] = ACTIONS(3095), + [anon_sym__alignof] = ACTIONS(3095), + [anon_sym_alignof] = ACTIONS(3095), + [anon_sym__Alignof] = ACTIONS(3095), + [anon_sym_offsetof] = ACTIONS(3095), + [anon_sym__Generic] = ACTIONS(3095), + [anon_sym_asm] = ACTIONS(3095), + [anon_sym___asm__] = ACTIONS(3095), + [sym_number_literal] = ACTIONS(3097), + [anon_sym_L_SQUOTE] = ACTIONS(3097), + [anon_sym_u_SQUOTE] = ACTIONS(3097), + [anon_sym_U_SQUOTE] = ACTIONS(3097), + [anon_sym_u8_SQUOTE] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(3097), + [anon_sym_u_DQUOTE] = ACTIONS(3097), + [anon_sym_U_DQUOTE] = ACTIONS(3097), + [anon_sym_u8_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE] = ACTIONS(3097), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [anon_sym_NULL] = ACTIONS(3095), + [anon_sym_nullptr] = ACTIONS(3095), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [314] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(509), - [sym_attributed_statement] = STATE(509), - [sym_labeled_statement] = STATE(509), - [sym_expression_statement] = STATE(509), - [sym_if_statement] = STATE(509), - [sym_switch_statement] = STATE(509), - [sym_case_statement] = STATE(509), - [sym_while_statement] = STATE(509), - [sym_do_statement] = STATE(509), - [sym_for_statement] = STATE(509), - [sym_return_statement] = STATE(509), - [sym_break_statement] = STATE(509), - [sym_continue_statement] = STATE(509), - [sym_goto_statement] = STATE(509), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(509), - [sym_co_return_statement] = STATE(509), - [sym_co_yield_statement] = STATE(509), - [sym_throw_statement] = STATE(509), - [sym_try_statement] = STATE(509), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [315] = { - [sym_attribute_declaration] = STATE(315), - [sym_compound_statement] = STATE(971), - [sym_attributed_statement] = STATE(971), - [sym_labeled_statement] = STATE(971), - [sym_expression_statement] = STATE(971), - [sym_if_statement] = STATE(971), - [sym_switch_statement] = STATE(971), - [sym_case_statement] = STATE(971), - [sym_while_statement] = STATE(971), - [sym_do_statement] = STATE(971), - [sym_for_statement] = STATE(971), - [sym_return_statement] = STATE(971), - [sym_break_statement] = STATE(971), - [sym_continue_statement] = STATE(971), - [sym_goto_statement] = STATE(971), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(971), - [sym_co_return_statement] = STATE(971), - [sym_co_yield_statement] = STATE(971), - [sym_throw_statement] = STATE(971), - [sym_try_statement] = STATE(971), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(2666), - [anon_sym_LPAREN2] = ACTIONS(2268), - [anon_sym_BANG] = ACTIONS(2271), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2277), - [anon_sym_SEMI] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2283), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2286), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_LBRACK] = ACTIONS(2292), - [sym_primitive_type] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2576), - [anon_sym_case] = ACTIONS(2675), - [anon_sym_default] = ACTIONS(2678), - [anon_sym_while] = ACTIONS(2681), - [anon_sym_do] = ACTIONS(2582), - [anon_sym_for] = ACTIONS(2684), - [anon_sym_return] = ACTIONS(2588), - [anon_sym_break] = ACTIONS(2591), - [anon_sym_continue] = ACTIONS(2594), - [anon_sym_goto] = ACTIONS(2597), - [anon_sym_not] = ACTIONS(2274), - [anon_sym_compl] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_sizeof] = ACTIONS(2334), - [anon_sym___alignof__] = ACTIONS(2337), - [anon_sym___alignof] = ACTIONS(2337), - [anon_sym__alignof] = ACTIONS(2337), - [anon_sym_alignof] = ACTIONS(2337), - [anon_sym__Alignof] = ACTIONS(2337), - [anon_sym_offsetof] = ACTIONS(2340), - [anon_sym__Generic] = ACTIONS(2343), - [anon_sym_asm] = ACTIONS(2346), - [anon_sym___asm__] = ACTIONS(2346), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2352), - [anon_sym_u_SQUOTE] = ACTIONS(2352), - [anon_sym_U_SQUOTE] = ACTIONS(2352), - [anon_sym_u8_SQUOTE] = ACTIONS(2352), - [anon_sym_SQUOTE] = ACTIONS(2352), - [anon_sym_L_DQUOTE] = ACTIONS(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2358), - [sym_false] = ACTIONS(2358), - [anon_sym_NULL] = ACTIONS(2361), - [anon_sym_nullptr] = ACTIONS(2361), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2364), - [anon_sym_template] = ACTIONS(2367), - [anon_sym_try] = ACTIONS(2600), - [anon_sym_delete] = ACTIONS(2373), - [anon_sym_throw] = ACTIONS(2603), - [anon_sym_co_return] = ACTIONS(2606), - [anon_sym_co_yield] = ACTIONS(2609), - [anon_sym_R_DQUOTE] = ACTIONS(2385), - [anon_sym_LR_DQUOTE] = ACTIONS(2385), - [anon_sym_uR_DQUOTE] = ACTIONS(2385), - [anon_sym_UR_DQUOTE] = ACTIONS(2385), - [anon_sym_u8R_DQUOTE] = ACTIONS(2385), - [anon_sym_co_await] = ACTIONS(2388), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_requires] = ACTIONS(2394), - [sym_this] = ACTIONS(2358), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_virtual] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym_explicit] = ACTIONS(3095), + [anon_sym_typename] = ACTIONS(3095), + [anon_sym_template] = ACTIONS(3095), + [anon_sym_operator] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_delete] = ACTIONS(3095), + [anon_sym_throw] = ACTIONS(3095), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_using] = ACTIONS(3095), + [anon_sym_static_assert] = ACTIONS(3095), + [anon_sym_concept] = ACTIONS(3095), + [anon_sym_co_return] = ACTIONS(3095), + [anon_sym_co_yield] = ACTIONS(3095), + [anon_sym_R_DQUOTE] = ACTIONS(3097), + [anon_sym_LR_DQUOTE] = ACTIONS(3097), + [anon_sym_uR_DQUOTE] = ACTIONS(3097), + [anon_sym_UR_DQUOTE] = ACTIONS(3097), + [anon_sym_u8R_DQUOTE] = ACTIONS(3097), + [anon_sym_co_await] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_requires] = ACTIONS(3095), + [sym_this] = ACTIONS(3095), }, - [316] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(510), - [sym_attributed_statement] = STATE(510), - [sym_labeled_statement] = STATE(510), - [sym_expression_statement] = STATE(510), - [sym_if_statement] = STATE(510), - [sym_switch_statement] = STATE(510), - [sym_case_statement] = STATE(510), - [sym_while_statement] = STATE(510), - [sym_do_statement] = STATE(510), - [sym_for_statement] = STATE(510), - [sym_return_statement] = STATE(510), - [sym_break_statement] = STATE(510), - [sym_continue_statement] = STATE(510), - [sym_goto_statement] = STATE(510), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(510), - [sym_co_return_statement] = STATE(510), - [sym_co_yield_statement] = STATE(510), - [sym_throw_statement] = STATE(510), - [sym_try_statement] = STATE(510), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [374] = { + [sym_identifier] = ACTIONS(3099), + [aux_sym_preproc_include_token1] = ACTIONS(3099), + [aux_sym_preproc_def_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token2] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), + [aux_sym_preproc_else_token1] = ACTIONS(3099), + [aux_sym_preproc_elif_token1] = ACTIONS(3099), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3099), + [sym_preproc_directive] = ACTIONS(3099), + [anon_sym_LPAREN2] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym___extension__] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym___attribute__] = ACTIONS(3099), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), + [anon_sym___declspec] = ACTIONS(3099), + [anon_sym___based] = ACTIONS(3099), + [anon_sym___cdecl] = ACTIONS(3099), + [anon_sym___clrcall] = ACTIONS(3099), + [anon_sym___stdcall] = ACTIONS(3099), + [anon_sym___fastcall] = ACTIONS(3099), + [anon_sym___thiscall] = ACTIONS(3099), + [anon_sym___vectorcall] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3099), + [anon_sym_unsigned] = ACTIONS(3099), + [anon_sym_long] = ACTIONS(3099), + [anon_sym_short] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_register] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym___inline] = ACTIONS(3099), + [anon_sym___inline__] = ACTIONS(3099), + [anon_sym___forceinline] = ACTIONS(3099), + [anon_sym_thread_local] = ACTIONS(3099), + [anon_sym___thread] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_constexpr] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_restrict] = ACTIONS(3099), + [anon_sym___restrict__] = ACTIONS(3099), + [anon_sym__Atomic] = ACTIONS(3099), + [anon_sym__Noreturn] = ACTIONS(3099), + [anon_sym_noreturn] = ACTIONS(3099), + [anon_sym_mutable] = ACTIONS(3099), + [anon_sym_constinit] = ACTIONS(3099), + [anon_sym_consteval] = ACTIONS(3099), + [sym_primitive_type] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3099), + [anon_sym_case] = ACTIONS(3099), + [anon_sym_default] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_do] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym_not] = ACTIONS(3099), + [anon_sym_compl] = ACTIONS(3099), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym___alignof__] = ACTIONS(3099), + [anon_sym___alignof] = ACTIONS(3099), + [anon_sym__alignof] = ACTIONS(3099), + [anon_sym_alignof] = ACTIONS(3099), + [anon_sym__Alignof] = ACTIONS(3099), + [anon_sym_offsetof] = ACTIONS(3099), + [anon_sym__Generic] = ACTIONS(3099), + [anon_sym_asm] = ACTIONS(3099), + [anon_sym___asm__] = ACTIONS(3099), + [sym_number_literal] = ACTIONS(3101), + [anon_sym_L_SQUOTE] = ACTIONS(3101), + [anon_sym_u_SQUOTE] = ACTIONS(3101), + [anon_sym_U_SQUOTE] = ACTIONS(3101), + [anon_sym_u8_SQUOTE] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3101), + [anon_sym_L_DQUOTE] = ACTIONS(3101), + [anon_sym_u_DQUOTE] = ACTIONS(3101), + [anon_sym_U_DQUOTE] = ACTIONS(3101), + [anon_sym_u8_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [anon_sym_NULL] = ACTIONS(3099), + [anon_sym_nullptr] = ACTIONS(3099), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_alignas] = ACTIONS(3099), + [anon_sym_explicit] = ACTIONS(3099), + [anon_sym_typename] = ACTIONS(3099), + [anon_sym_template] = ACTIONS(3099), + [anon_sym_operator] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_throw] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_static_assert] = ACTIONS(3099), + [anon_sym_concept] = ACTIONS(3099), + [anon_sym_co_return] = ACTIONS(3099), + [anon_sym_co_yield] = ACTIONS(3099), + [anon_sym_R_DQUOTE] = ACTIONS(3101), + [anon_sym_LR_DQUOTE] = ACTIONS(3101), + [anon_sym_uR_DQUOTE] = ACTIONS(3101), + [anon_sym_UR_DQUOTE] = ACTIONS(3101), + [anon_sym_u8R_DQUOTE] = ACTIONS(3101), + [anon_sym_co_await] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_requires] = ACTIONS(3099), + [sym_this] = ACTIONS(3099), }, - [317] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(514), - [sym_attributed_statement] = STATE(514), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(514), - [sym_co_return_statement] = STATE(514), - [sym_co_yield_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_try_statement] = STATE(514), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [375] = { + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_include_token1] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token2] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [aux_sym_preproc_else_token1] = ACTIONS(3103), + [aux_sym_preproc_elif_token1] = ACTIONS(3103), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym___cdecl] = ACTIONS(3103), + [anon_sym___clrcall] = ACTIONS(3103), + [anon_sym___stdcall] = ACTIONS(3103), + [anon_sym___fastcall] = ACTIONS(3103), + [anon_sym___thiscall] = ACTIONS(3103), + [anon_sym___vectorcall] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3103), + [anon_sym_case] = ACTIONS(3103), + [anon_sym_default] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_do] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_compl] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_sizeof] = ACTIONS(3103), + [anon_sym___alignof__] = ACTIONS(3103), + [anon_sym___alignof] = ACTIONS(3103), + [anon_sym__alignof] = ACTIONS(3103), + [anon_sym_alignof] = ACTIONS(3103), + [anon_sym__Alignof] = ACTIONS(3103), + [anon_sym_offsetof] = ACTIONS(3103), + [anon_sym__Generic] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym___asm__] = ACTIONS(3103), + [sym_number_literal] = ACTIONS(3105), + [anon_sym_L_SQUOTE] = ACTIONS(3105), + [anon_sym_u_SQUOTE] = ACTIONS(3105), + [anon_sym_U_SQUOTE] = ACTIONS(3105), + [anon_sym_u8_SQUOTE] = ACTIONS(3105), + [anon_sym_SQUOTE] = ACTIONS(3105), + [anon_sym_L_DQUOTE] = ACTIONS(3105), + [anon_sym_u_DQUOTE] = ACTIONS(3105), + [anon_sym_U_DQUOTE] = ACTIONS(3105), + [anon_sym_u8_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [sym_true] = ACTIONS(3103), + [sym_false] = ACTIONS(3103), + [anon_sym_NULL] = ACTIONS(3103), + [anon_sym_nullptr] = ACTIONS(3103), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_delete] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + [anon_sym_concept] = ACTIONS(3103), + [anon_sym_co_return] = ACTIONS(3103), + [anon_sym_co_yield] = ACTIONS(3103), + [anon_sym_R_DQUOTE] = ACTIONS(3105), + [anon_sym_LR_DQUOTE] = ACTIONS(3105), + [anon_sym_uR_DQUOTE] = ACTIONS(3105), + [anon_sym_UR_DQUOTE] = ACTIONS(3105), + [anon_sym_u8R_DQUOTE] = ACTIONS(3105), + [anon_sym_co_await] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(3103), + [sym_this] = ACTIONS(3103), }, - [318] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(470), - [sym_attributed_statement] = STATE(470), - [sym_labeled_statement] = STATE(470), - [sym_expression_statement] = STATE(470), - [sym_if_statement] = STATE(470), - [sym_switch_statement] = STATE(470), - [sym_case_statement] = STATE(470), - [sym_while_statement] = STATE(470), - [sym_do_statement] = STATE(470), - [sym_for_statement] = STATE(470), - [sym_return_statement] = STATE(470), - [sym_break_statement] = STATE(470), - [sym_continue_statement] = STATE(470), - [sym_goto_statement] = STATE(470), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(470), - [sym_co_return_statement] = STATE(470), - [sym_co_yield_statement] = STATE(470), - [sym_throw_statement] = STATE(470), - [sym_try_statement] = STATE(470), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [376] = { + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_include_token1] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token2] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [aux_sym_preproc_else_token1] = ACTIONS(3103), + [aux_sym_preproc_elif_token1] = ACTIONS(3103), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym___cdecl] = ACTIONS(3103), + [anon_sym___clrcall] = ACTIONS(3103), + [anon_sym___stdcall] = ACTIONS(3103), + [anon_sym___fastcall] = ACTIONS(3103), + [anon_sym___thiscall] = ACTIONS(3103), + [anon_sym___vectorcall] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3103), + [anon_sym_case] = ACTIONS(3103), + [anon_sym_default] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_do] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_compl] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_sizeof] = ACTIONS(3103), + [anon_sym___alignof__] = ACTIONS(3103), + [anon_sym___alignof] = ACTIONS(3103), + [anon_sym__alignof] = ACTIONS(3103), + [anon_sym_alignof] = ACTIONS(3103), + [anon_sym__Alignof] = ACTIONS(3103), + [anon_sym_offsetof] = ACTIONS(3103), + [anon_sym__Generic] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym___asm__] = ACTIONS(3103), + [sym_number_literal] = ACTIONS(3105), + [anon_sym_L_SQUOTE] = ACTIONS(3105), + [anon_sym_u_SQUOTE] = ACTIONS(3105), + [anon_sym_U_SQUOTE] = ACTIONS(3105), + [anon_sym_u8_SQUOTE] = ACTIONS(3105), + [anon_sym_SQUOTE] = ACTIONS(3105), + [anon_sym_L_DQUOTE] = ACTIONS(3105), + [anon_sym_u_DQUOTE] = ACTIONS(3105), + [anon_sym_U_DQUOTE] = ACTIONS(3105), + [anon_sym_u8_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [sym_true] = ACTIONS(3103), + [sym_false] = ACTIONS(3103), + [anon_sym_NULL] = ACTIONS(3103), + [anon_sym_nullptr] = ACTIONS(3103), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_delete] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + [anon_sym_concept] = ACTIONS(3103), + [anon_sym_co_return] = ACTIONS(3103), + [anon_sym_co_yield] = ACTIONS(3103), + [anon_sym_R_DQUOTE] = ACTIONS(3105), + [anon_sym_LR_DQUOTE] = ACTIONS(3105), + [anon_sym_uR_DQUOTE] = ACTIONS(3105), + [anon_sym_UR_DQUOTE] = ACTIONS(3105), + [anon_sym_u8R_DQUOTE] = ACTIONS(3105), + [anon_sym_co_await] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(3103), + [sym_this] = ACTIONS(3103), }, - [319] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(521), - [sym_attributed_statement] = STATE(521), - [sym_labeled_statement] = STATE(521), - [sym_expression_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_switch_statement] = STATE(521), - [sym_case_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_do_statement] = STATE(521), - [sym_for_statement] = STATE(521), - [sym_return_statement] = STATE(521), - [sym_break_statement] = STATE(521), - [sym_continue_statement] = STATE(521), - [sym_goto_statement] = STATE(521), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(521), - [sym_co_return_statement] = STATE(521), - [sym_co_yield_statement] = STATE(521), - [sym_throw_statement] = STATE(521), - [sym_try_statement] = STATE(521), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [377] = { + [sym_identifier] = ACTIONS(3107), + [aux_sym_preproc_include_token1] = ACTIONS(3107), + [aux_sym_preproc_def_token1] = ACTIONS(3107), + [aux_sym_preproc_if_token1] = ACTIONS(3107), + [aux_sym_preproc_if_token2] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3107), + [aux_sym_preproc_else_token1] = ACTIONS(3107), + [aux_sym_preproc_elif_token1] = ACTIONS(3107), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3107), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3107), + [sym_preproc_directive] = ACTIONS(3107), + [anon_sym_LPAREN2] = ACTIONS(3109), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym___extension__] = ACTIONS(3107), + [anon_sym_typedef] = ACTIONS(3107), + [anon_sym_extern] = ACTIONS(3107), + [anon_sym___attribute__] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), + [anon_sym___declspec] = ACTIONS(3107), + [anon_sym___based] = ACTIONS(3107), + [anon_sym___cdecl] = ACTIONS(3107), + [anon_sym___clrcall] = ACTIONS(3107), + [anon_sym___stdcall] = ACTIONS(3107), + [anon_sym___fastcall] = ACTIONS(3107), + [anon_sym___thiscall] = ACTIONS(3107), + [anon_sym___vectorcall] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_signed] = ACTIONS(3107), + [anon_sym_unsigned] = ACTIONS(3107), + [anon_sym_long] = ACTIONS(3107), + [anon_sym_short] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_register] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym___inline] = ACTIONS(3107), + [anon_sym___inline__] = ACTIONS(3107), + [anon_sym___forceinline] = ACTIONS(3107), + [anon_sym_thread_local] = ACTIONS(3107), + [anon_sym___thread] = ACTIONS(3107), + [anon_sym_const] = ACTIONS(3107), + [anon_sym_constexpr] = ACTIONS(3107), + [anon_sym_volatile] = ACTIONS(3107), + [anon_sym_restrict] = ACTIONS(3107), + [anon_sym___restrict__] = ACTIONS(3107), + [anon_sym__Atomic] = ACTIONS(3107), + [anon_sym__Noreturn] = ACTIONS(3107), + [anon_sym_noreturn] = ACTIONS(3107), + [anon_sym_mutable] = ACTIONS(3107), + [anon_sym_constinit] = ACTIONS(3107), + [anon_sym_consteval] = ACTIONS(3107), + [sym_primitive_type] = ACTIONS(3107), + [anon_sym_enum] = ACTIONS(3107), + [anon_sym_class] = ACTIONS(3107), + [anon_sym_struct] = ACTIONS(3107), + [anon_sym_union] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_switch] = ACTIONS(3107), + [anon_sym_case] = ACTIONS(3107), + [anon_sym_default] = ACTIONS(3107), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_do] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_goto] = ACTIONS(3107), + [anon_sym_not] = ACTIONS(3107), + [anon_sym_compl] = ACTIONS(3107), + [anon_sym_DASH_DASH] = ACTIONS(3109), + [anon_sym_PLUS_PLUS] = ACTIONS(3109), + [anon_sym_sizeof] = ACTIONS(3107), + [anon_sym___alignof__] = ACTIONS(3107), + [anon_sym___alignof] = ACTIONS(3107), + [anon_sym__alignof] = ACTIONS(3107), + [anon_sym_alignof] = ACTIONS(3107), + [anon_sym__Alignof] = ACTIONS(3107), + [anon_sym_offsetof] = ACTIONS(3107), + [anon_sym__Generic] = ACTIONS(3107), + [anon_sym_asm] = ACTIONS(3107), + [anon_sym___asm__] = ACTIONS(3107), + [sym_number_literal] = ACTIONS(3109), + [anon_sym_L_SQUOTE] = ACTIONS(3109), + [anon_sym_u_SQUOTE] = ACTIONS(3109), + [anon_sym_U_SQUOTE] = ACTIONS(3109), + [anon_sym_u8_SQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3109), + [anon_sym_L_DQUOTE] = ACTIONS(3109), + [anon_sym_u_DQUOTE] = ACTIONS(3109), + [anon_sym_U_DQUOTE] = ACTIONS(3109), + [anon_sym_u8_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [sym_true] = ACTIONS(3107), + [sym_false] = ACTIONS(3107), + [anon_sym_NULL] = ACTIONS(3107), + [anon_sym_nullptr] = ACTIONS(3107), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3107), + [anon_sym_decltype] = ACTIONS(3107), + [anon_sym_virtual] = ACTIONS(3107), + [anon_sym_alignas] = ACTIONS(3107), + [anon_sym_explicit] = ACTIONS(3107), + [anon_sym_typename] = ACTIONS(3107), + [anon_sym_template] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_delete] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_namespace] = ACTIONS(3107), + [anon_sym_using] = ACTIONS(3107), + [anon_sym_static_assert] = ACTIONS(3107), + [anon_sym_concept] = ACTIONS(3107), + [anon_sym_co_return] = ACTIONS(3107), + [anon_sym_co_yield] = ACTIONS(3107), + [anon_sym_R_DQUOTE] = ACTIONS(3109), + [anon_sym_LR_DQUOTE] = ACTIONS(3109), + [anon_sym_uR_DQUOTE] = ACTIONS(3109), + [anon_sym_UR_DQUOTE] = ACTIONS(3109), + [anon_sym_u8R_DQUOTE] = ACTIONS(3109), + [anon_sym_co_await] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3107), + [anon_sym_requires] = ACTIONS(3107), + [sym_this] = ACTIONS(3107), }, - [320] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(504), - [sym_attributed_statement] = STATE(504), - [sym_labeled_statement] = STATE(504), - [sym_expression_statement] = STATE(504), - [sym_if_statement] = STATE(504), - [sym_switch_statement] = STATE(504), - [sym_case_statement] = STATE(504), - [sym_while_statement] = STATE(504), - [sym_do_statement] = STATE(504), - [sym_for_statement] = STATE(504), - [sym_return_statement] = STATE(504), - [sym_break_statement] = STATE(504), - [sym_continue_statement] = STATE(504), - [sym_goto_statement] = STATE(504), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(504), - [sym_co_return_statement] = STATE(504), - [sym_co_yield_statement] = STATE(504), - [sym_throw_statement] = STATE(504), - [sym_try_statement] = STATE(504), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [378] = { + [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_extern] = ACTIONS(3111), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3111), + [anon_sym_constinit] = ACTIONS(3111), + [anon_sym_consteval] = 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), + [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), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3111), + [anon_sym_decltype] = ACTIONS(3111), + [anon_sym_virtual] = ACTIONS(3111), + [anon_sym_alignas] = 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_using] = 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), }, - [321] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(519), - [sym_attributed_statement] = STATE(519), - [sym_labeled_statement] = STATE(519), - [sym_expression_statement] = STATE(519), - [sym_if_statement] = STATE(519), - [sym_switch_statement] = STATE(519), - [sym_case_statement] = STATE(519), - [sym_while_statement] = STATE(519), - [sym_do_statement] = STATE(519), - [sym_for_statement] = STATE(519), - [sym_return_statement] = STATE(519), - [sym_break_statement] = STATE(519), - [sym_continue_statement] = STATE(519), - [sym_goto_statement] = STATE(519), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(519), - [sym_co_return_statement] = STATE(519), - [sym_co_yield_statement] = STATE(519), - [sym_throw_statement] = STATE(519), - [sym_try_statement] = STATE(519), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [379] = { + [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_extern] = ACTIONS(3115), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3115), + [anon_sym_constinit] = ACTIONS(3115), + [anon_sym_consteval] = 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), + [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), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3115), + [anon_sym_decltype] = ACTIONS(3115), + [anon_sym_virtual] = ACTIONS(3115), + [anon_sym_alignas] = 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_using] = 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), }, - [322] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1551), - [sym_attributed_statement] = STATE(1551), - [sym_labeled_statement] = STATE(1551), - [sym_expression_statement] = STATE(1551), - [sym_if_statement] = STATE(1551), - [sym_switch_statement] = STATE(1551), - [sym_case_statement] = STATE(1551), - [sym_while_statement] = STATE(1551), - [sym_do_statement] = STATE(1551), - [sym_for_statement] = STATE(1551), - [sym_return_statement] = STATE(1551), - [sym_break_statement] = STATE(1551), - [sym_continue_statement] = STATE(1551), - [sym_goto_statement] = STATE(1551), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1551), - [sym_co_return_statement] = STATE(1551), - [sym_co_yield_statement] = STATE(1551), - [sym_throw_statement] = STATE(1551), - [sym_try_statement] = STATE(1551), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(2259), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [380] = { + [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_extern] = ACTIONS(3119), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3119), + [anon_sym_constinit] = ACTIONS(3119), + [anon_sym_consteval] = 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), + [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), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3119), + [anon_sym_decltype] = ACTIONS(3119), + [anon_sym_virtual] = ACTIONS(3119), + [anon_sym_alignas] = 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_using] = 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), }, - [323] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(492), - [sym_attributed_statement] = STATE(492), - [sym_labeled_statement] = STATE(492), - [sym_expression_statement] = STATE(492), - [sym_if_statement] = STATE(492), - [sym_switch_statement] = STATE(492), - [sym_case_statement] = STATE(492), - [sym_while_statement] = STATE(492), - [sym_do_statement] = STATE(492), - [sym_for_statement] = STATE(492), - [sym_return_statement] = STATE(492), - [sym_break_statement] = STATE(492), - [sym_continue_statement] = STATE(492), - [sym_goto_statement] = STATE(492), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(492), - [sym_co_return_statement] = STATE(492), - [sym_co_yield_statement] = STATE(492), - [sym_throw_statement] = STATE(492), - [sym_try_statement] = STATE(492), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [381] = { + [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_extern] = ACTIONS(3123), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3123), + [anon_sym_constinit] = ACTIONS(3123), + [anon_sym_consteval] = 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), + [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), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3123), + [anon_sym_decltype] = ACTIONS(3123), + [anon_sym_virtual] = ACTIONS(3123), + [anon_sym_alignas] = 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_using] = 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), }, - [324] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3894), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9633), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9568), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9631), - [sym__unary_right_fold] = STATE(9630), - [sym__binary_fold] = STATE(9629), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), + [382] = { + [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_extern] = ACTIONS(3127), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3127), + [anon_sym_constinit] = ACTIONS(3127), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3127), + [anon_sym_alignas] = 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_using] = 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), + }, + [383] = { + [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_extern] = ACTIONS(3131), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3131), + [anon_sym_constinit] = ACTIONS(3131), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3131), + [anon_sym_alignas] = 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_using] = 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), + }, + [384] = { + [sym_type_qualifier] = STATE(3780), + [sym__type_specifier] = STATE(4440), + [sym_sized_type_specifier] = STATE(2799), + [sym_enum_specifier] = STATE(2799), + [sym_struct_specifier] = STATE(2799), + [sym_union_specifier] = STATE(2799), + [sym__expression] = STATE(4011), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_type_descriptor] = STATE(6341), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_placeholder_type_specifier] = STATE(2799), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2758), + [sym_class_specifier] = STATE(2799), + [sym__class_name] = STATE(6922), + [sym_dependent_type] = STATE(2799), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_type_parameter_pack_expansion] = STATE(6802), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5157), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3355), + [aux_sym__type_definition_type_repeat1] = STATE(3780), + [aux_sym_sized_type_specifier_repeat1] = STATE(2297), + [sym_identifier] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2018), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -104540,1228 +109111,933 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), + [sym_primitive_type] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2934), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2938), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [anon_sym_GT2] = ACTIONS(3135), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [325] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(955), - [sym_attributed_statement] = STATE(955), - [sym_labeled_statement] = STATE(955), - [sym_expression_statement] = STATE(955), - [sym_if_statement] = STATE(955), - [sym_switch_statement] = STATE(955), - [sym_case_statement] = STATE(955), - [sym_while_statement] = STATE(955), - [sym_do_statement] = STATE(955), - [sym_for_statement] = STATE(955), - [sym_return_statement] = STATE(955), - [sym_break_statement] = STATE(955), - [sym_continue_statement] = STATE(955), - [sym_goto_statement] = STATE(955), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(955), - [sym_co_return_statement] = STATE(955), - [sym_co_yield_statement] = STATE(955), - [sym_throw_statement] = STATE(955), - [sym_try_statement] = STATE(955), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [385] = { + [sym_type_qualifier] = STATE(3780), + [sym__type_specifier] = STATE(4440), + [sym_sized_type_specifier] = STATE(2799), + [sym_enum_specifier] = STATE(2799), + [sym_struct_specifier] = STATE(2799), + [sym_union_specifier] = STATE(2799), + [sym__expression] = STATE(3944), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_type_descriptor] = STATE(6264), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_placeholder_type_specifier] = STATE(2799), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2758), + [sym_class_specifier] = STATE(2799), + [sym__class_name] = STATE(6922), + [sym_dependent_type] = STATE(2799), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_type_parameter_pack_expansion] = STATE(6782), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5157), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3355), + [aux_sym__type_definition_type_repeat1] = STATE(3780), + [aux_sym_sized_type_specifier_repeat1] = STATE(2297), + [sym_identifier] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2934), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2938), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_GT2] = ACTIONS(3137), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [326] = { - [sym_attribute_declaration] = STATE(250), - [sym_compound_statement] = STATE(677), - [sym_attributed_statement] = STATE(677), - [sym_labeled_statement] = STATE(677), - [sym_expression_statement] = STATE(677), - [sym_if_statement] = STATE(677), - [sym_switch_statement] = STATE(677), - [sym_case_statement] = STATE(677), - [sym_while_statement] = STATE(677), - [sym_do_statement] = STATE(677), - [sym_for_statement] = STATE(677), - [sym_return_statement] = STATE(677), - [sym_break_statement] = STATE(677), - [sym_continue_statement] = STATE(677), - [sym_goto_statement] = STATE(677), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(677), - [sym_co_return_statement] = STATE(677), - [sym_co_yield_statement] = STATE(677), - [sym_throw_statement] = STATE(677), - [sym_try_statement] = STATE(677), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(250), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [386] = { + [sym_type_qualifier] = STATE(3780), + [sym__type_specifier] = STATE(4440), + [sym_sized_type_specifier] = STATE(2799), + [sym_enum_specifier] = STATE(2799), + [sym_struct_specifier] = STATE(2799), + [sym_union_specifier] = STATE(2799), + [sym__expression] = STATE(4027), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_type_descriptor] = STATE(6211), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_placeholder_type_specifier] = STATE(2799), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2758), + [sym_class_specifier] = STATE(2799), + [sym__class_name] = STATE(6922), + [sym_dependent_type] = STATE(2799), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_type_parameter_pack_expansion] = STATE(6762), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5157), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3355), + [aux_sym__type_definition_type_repeat1] = STATE(3780), + [aux_sym_sized_type_specifier_repeat1] = STATE(2297), + [sym_identifier] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2934), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2938), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_GT2] = ACTIONS(3139), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [327] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(703), - [sym_attributed_statement] = STATE(703), - [sym_labeled_statement] = STATE(703), - [sym_expression_statement] = STATE(703), - [sym_if_statement] = STATE(703), - [sym_switch_statement] = STATE(703), - [sym_case_statement] = STATE(703), - [sym_while_statement] = STATE(703), - [sym_do_statement] = STATE(703), - [sym_for_statement] = STATE(703), - [sym_return_statement] = STATE(703), - [sym_break_statement] = STATE(703), - [sym_continue_statement] = STATE(703), - [sym_goto_statement] = STATE(703), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(703), - [sym_co_return_statement] = STATE(703), - [sym_co_yield_statement] = STATE(703), - [sym_throw_statement] = STATE(703), - [sym_try_statement] = STATE(703), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [387] = { + [sym_type_qualifier] = STATE(3780), + [sym__type_specifier] = STATE(4440), + [sym_sized_type_specifier] = STATE(2799), + [sym_enum_specifier] = STATE(2799), + [sym_struct_specifier] = STATE(2799), + [sym_union_specifier] = STATE(2799), + [sym__expression] = STATE(3964), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_type_descriptor] = STATE(6383), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_placeholder_type_specifier] = STATE(2799), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2758), + [sym_class_specifier] = STATE(2799), + [sym__class_name] = STATE(6922), + [sym_dependent_type] = STATE(2799), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_type_parameter_pack_expansion] = STATE(6741), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5157), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3355), + [aux_sym__type_definition_type_repeat1] = STATE(3780), + [aux_sym_sized_type_specifier_repeat1] = STATE(2297), + [sym_identifier] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2934), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2938), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_GT2] = ACTIONS(3141), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [328] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(9306), - [sym_attributed_statement] = STATE(9306), - [sym_labeled_statement] = STATE(9306), - [sym_expression_statement] = STATE(9306), - [sym_if_statement] = STATE(9306), - [sym_switch_statement] = STATE(9306), - [sym_case_statement] = STATE(9306), - [sym_while_statement] = STATE(9306), - [sym_do_statement] = STATE(9306), - [sym_for_statement] = STATE(9306), - [sym_return_statement] = STATE(9306), - [sym_break_statement] = STATE(9306), - [sym_continue_statement] = STATE(9306), - [sym_goto_statement] = STATE(9306), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(9306), - [sym_co_return_statement] = STATE(9306), - [sym_co_yield_statement] = STATE(9306), - [sym_throw_statement] = STATE(9306), - [sym_try_statement] = STATE(9306), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [388] = { + [sym_type_qualifier] = STATE(3780), + [sym__type_specifier] = STATE(4440), + [sym_sized_type_specifier] = STATE(2799), + [sym_enum_specifier] = STATE(2799), + [sym_struct_specifier] = STATE(2799), + [sym_union_specifier] = STATE(2799), + [sym__expression] = STATE(3961), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_type_descriptor] = STATE(6294), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_placeholder_type_specifier] = STATE(2799), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2758), + [sym_class_specifier] = STATE(2799), + [sym__class_name] = STATE(6922), + [sym_dependent_type] = STATE(2799), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_type_parameter_pack_expansion] = STATE(6718), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5157), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3355), + [aux_sym__type_definition_type_repeat1] = STATE(3780), + [aux_sym_sized_type_specifier_repeat1] = STATE(2297), + [sym_identifier] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2934), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2938), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_GT2] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [329] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(988), - [sym_attributed_statement] = STATE(988), - [sym_labeled_statement] = STATE(988), - [sym_expression_statement] = STATE(988), - [sym_if_statement] = STATE(988), - [sym_switch_statement] = STATE(988), - [sym_case_statement] = STATE(988), - [sym_while_statement] = STATE(988), - [sym_do_statement] = STATE(988), - [sym_for_statement] = STATE(988), - [sym_return_statement] = STATE(988), - [sym_break_statement] = STATE(988), - [sym_continue_statement] = STATE(988), - [sym_goto_statement] = STATE(988), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(988), - [sym_co_return_statement] = STATE(988), - [sym_co_yield_statement] = STATE(988), - [sym_throw_statement] = STATE(988), - [sym_try_statement] = STATE(988), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [389] = { + [sym_type_qualifier] = STATE(3780), + [sym__type_specifier] = STATE(4440), + [sym_sized_type_specifier] = STATE(2799), + [sym_enum_specifier] = STATE(2799), + [sym_struct_specifier] = STATE(2799), + [sym_union_specifier] = STATE(2799), + [sym__expression] = STATE(3999), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_type_descriptor] = STATE(6209), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_placeholder_type_specifier] = STATE(2799), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2758), + [sym_class_specifier] = STATE(2799), + [sym__class_name] = STATE(6922), + [sym_dependent_type] = STATE(2799), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_type_parameter_pack_expansion] = STATE(6651), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5157), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3355), + [aux_sym__type_definition_type_repeat1] = STATE(3780), + [aux_sym_sized_type_specifier_repeat1] = STATE(2297), + [sym_identifier] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2934), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2938), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_GT2] = ACTIONS(3145), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [330] = { - [sym_attribute_declaration] = STATE(326), - [sym_compound_statement] = STATE(704), - [sym_attributed_statement] = STATE(704), - [sym_labeled_statement] = STATE(704), - [sym_expression_statement] = STATE(704), - [sym_if_statement] = STATE(704), - [sym_switch_statement] = STATE(704), - [sym_case_statement] = STATE(704), - [sym_while_statement] = STATE(704), - [sym_do_statement] = STATE(704), - [sym_for_statement] = STATE(704), - [sym_return_statement] = STATE(704), - [sym_break_statement] = STATE(704), - [sym_continue_statement] = STATE(704), - [sym_goto_statement] = STATE(704), - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9046), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(704), - [sym_co_return_statement] = STATE(704), - [sym_co_yield_statement] = STATE(704), - [sym_throw_statement] = STATE(704), - [sym_try_statement] = STATE(704), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [390] = { + [sym_type_qualifier] = STATE(3780), + [sym__type_specifier] = STATE(4440), + [sym_sized_type_specifier] = STATE(2799), + [sym_enum_specifier] = STATE(2799), + [sym_struct_specifier] = STATE(2799), + [sym_union_specifier] = STATE(2799), + [sym__expression] = STATE(4005), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_type_descriptor] = STATE(6229), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_placeholder_type_specifier] = STATE(2799), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2758), + [sym_class_specifier] = STATE(2799), + [sym__class_name] = STATE(6922), + [sym_dependent_type] = STATE(2799), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_type_parameter_pack_expansion] = STATE(6690), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5157), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3355), + [aux_sym__type_definition_type_repeat1] = STATE(3780), + [aux_sym_sized_type_specifier_repeat1] = STATE(2297), + [sym_identifier] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2934), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2938), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_co_return] = ACTIONS(411), - [anon_sym_co_yield] = ACTIONS(413), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_GT2] = ACTIONS(3147), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [331] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(954), - [sym_attributed_statement] = STATE(954), - [sym_labeled_statement] = STATE(954), - [sym_expression_statement] = STATE(954), - [sym_if_statement] = STATE(954), - [sym_switch_statement] = STATE(954), - [sym_case_statement] = STATE(954), - [sym_while_statement] = STATE(954), - [sym_do_statement] = STATE(954), - [sym_for_statement] = STATE(954), - [sym_return_statement] = STATE(954), - [sym_break_statement] = STATE(954), - [sym_continue_statement] = STATE(954), - [sym_goto_statement] = STATE(954), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(954), - [sym_co_return_statement] = STATE(954), - [sym_co_yield_statement] = STATE(954), - [sym_throw_statement] = STATE(954), - [sym_try_statement] = STATE(954), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [332] = { - [sym_attribute_declaration] = STATE(275), - [sym_compound_statement] = STATE(1150), - [sym_attributed_statement] = STATE(1150), - [sym_labeled_statement] = STATE(1150), - [sym_expression_statement] = STATE(1150), - [sym_if_statement] = STATE(1150), - [sym_switch_statement] = STATE(1150), - [sym_case_statement] = STATE(1150), - [sym_while_statement] = STATE(1150), - [sym_do_statement] = STATE(1150), - [sym_for_statement] = STATE(1150), - [sym_return_statement] = STATE(1150), - [sym_break_statement] = STATE(1150), - [sym_continue_statement] = STATE(1150), - [sym_goto_statement] = STATE(1150), - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8909), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1150), - [sym_co_return_statement] = STATE(1150), - [sym_co_yield_statement] = STATE(1150), - [sym_throw_statement] = STATE(1150), - [sym_try_statement] = STATE(1150), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2255), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1078), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1082), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1084), - [anon_sym_co_return] = ACTIONS(1094), - [anon_sym_co_yield] = ACTIONS(1096), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [333] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3889), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9595), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9703), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9701), - [sym__unary_right_fold] = STATE(9697), - [sym__binary_fold] = STATE(9685), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), + [391] = { + [sym_type_qualifier] = STATE(3780), + [sym__type_specifier] = STATE(4440), + [sym_sized_type_specifier] = STATE(2799), + [sym_enum_specifier] = STATE(2799), + [sym_struct_specifier] = STATE(2799), + [sym_union_specifier] = STATE(2799), + [sym__expression] = STATE(3960), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_type_descriptor] = STATE(6252), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_placeholder_type_specifier] = STATE(2799), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2758), + [sym_class_specifier] = STATE(2799), + [sym__class_name] = STATE(6922), + [sym_dependent_type] = STATE(2799), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_type_parameter_pack_expansion] = STATE(6657), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5157), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3355), + [aux_sym__type_definition_type_repeat1] = STATE(3780), + [aux_sym_sized_type_specifier_repeat1] = STATE(2297), + [sym_identifier] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2018), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -105773,954 +110049,531 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [334] = { - [sym_attribute_declaration] = STATE(188), - [sym_compound_statement] = STATE(365), - [sym_attributed_statement] = STATE(365), - [sym_labeled_statement] = STATE(365), - [sym_expression_statement] = STATE(365), - [sym_if_statement] = STATE(365), - [sym_switch_statement] = STATE(365), - [sym_case_statement] = STATE(365), - [sym_while_statement] = STATE(365), - [sym_do_statement] = STATE(365), - [sym_for_statement] = STATE(365), - [sym_return_statement] = STATE(365), - [sym_break_statement] = STATE(365), - [sym_continue_statement] = STATE(365), - [sym_goto_statement] = STATE(365), - [sym__expression] = STATE(5122), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(365), - [sym_co_return_statement] = STATE(365), - [sym_co_yield_statement] = STATE(365), - [sym_throw_statement] = STATE(365), - [sym_try_statement] = STATE(365), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(179), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(217), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_co_return] = ACTIONS(229), - [anon_sym_co_yield] = ACTIONS(231), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [335] = { - [sym_attribute_declaration] = STATE(344), - [sym_compound_statement] = STATE(1525), - [sym_attributed_statement] = STATE(1525), - [sym_labeled_statement] = STATE(1525), - [sym_expression_statement] = STATE(1525), - [sym_if_statement] = STATE(1525), - [sym_switch_statement] = STATE(1525), - [sym_case_statement] = STATE(1525), - [sym_while_statement] = STATE(1525), - [sym_do_statement] = STATE(1525), - [sym_for_statement] = STATE(1525), - [sym_return_statement] = STATE(1525), - [sym_break_statement] = STATE(1525), - [sym_continue_statement] = STATE(1525), - [sym_goto_statement] = STATE(1525), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1525), - [sym_co_return_statement] = STATE(1525), - [sym_co_yield_statement] = STATE(1525), - [sym_throw_statement] = STATE(1525), - [sym_try_statement] = STATE(1525), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(2259), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [336] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(1191), - [sym_attributed_statement] = STATE(1193), - [sym_labeled_statement] = STATE(1196), - [sym_expression_statement] = STATE(1198), - [sym_if_statement] = STATE(1200), - [sym_switch_statement] = STATE(1201), - [sym_case_statement] = STATE(1207), - [sym_while_statement] = STATE(1210), - [sym_do_statement] = STATE(1211), - [sym_for_statement] = STATE(1237), - [sym_return_statement] = STATE(1250), - [sym_break_statement] = STATE(1129), - [sym_continue_statement] = STATE(1165), - [sym_goto_statement] = STATE(1092), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(904), - [sym_co_return_statement] = STATE(891), - [sym_co_yield_statement] = STATE(855), - [sym_throw_statement] = STATE(869), - [sym_try_statement] = STATE(987), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_primitive_type] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2934), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2938), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_GT2] = ACTIONS(3149), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [337] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(1152), - [sym_attributed_statement] = STATE(1154), - [sym_labeled_statement] = STATE(1155), - [sym_expression_statement] = STATE(1156), - [sym_if_statement] = STATE(1157), - [sym_switch_statement] = STATE(1158), - [sym_case_statement] = STATE(1159), - [sym_while_statement] = STATE(940), - [sym_do_statement] = STATE(1163), - [sym_for_statement] = STATE(1168), - [sym_return_statement] = STATE(1173), - [sym_break_statement] = STATE(1174), - [sym_continue_statement] = STATE(1179), - [sym_goto_statement] = STATE(1182), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1185), - [sym_co_return_statement] = STATE(1186), - [sym_co_yield_statement] = STATE(1188), - [sym_throw_statement] = STATE(1189), - [sym_try_statement] = STATE(1190), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [392] = { + [sym_type_qualifier] = STATE(3780), + [sym__type_specifier] = STATE(4440), + [sym_sized_type_specifier] = STATE(2799), + [sym_enum_specifier] = STATE(2799), + [sym_struct_specifier] = STATE(2799), + [sym_union_specifier] = STATE(2799), + [sym__expression] = STATE(3951), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_type_descriptor] = STATE(6343), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_placeholder_type_specifier] = STATE(2799), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2758), + [sym_class_specifier] = STATE(2799), + [sym__class_name] = STATE(6922), + [sym_dependent_type] = STATE(2799), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_type_parameter_pack_expansion] = STATE(6584), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5157), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3355), + [aux_sym__type_definition_type_repeat1] = STATE(3780), + [aux_sym_sized_type_specifier_repeat1] = STATE(2297), + [sym_identifier] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2934), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2938), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_GT2] = ACTIONS(3151), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [338] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(1148), - [sym_attributed_statement] = STATE(1148), - [sym_labeled_statement] = STATE(1148), - [sym_expression_statement] = STATE(1148), - [sym_if_statement] = STATE(1148), - [sym_switch_statement] = STATE(1148), - [sym_case_statement] = STATE(1148), - [sym_while_statement] = STATE(1148), - [sym_do_statement] = STATE(1148), - [sym_for_statement] = STATE(1148), - [sym_return_statement] = STATE(1148), - [sym_break_statement] = STATE(1148), - [sym_continue_statement] = STATE(1148), - [sym_goto_statement] = STATE(1148), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1148), - [sym_co_return_statement] = STATE(1148), - [sym_co_yield_statement] = STATE(1148), - [sym_throw_statement] = STATE(1148), - [sym_try_statement] = STATE(1148), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [393] = { + [sym_catch_clause] = STATE(393), + [aux_sym_constructor_try_statement_repeat1] = STATE(393), + [ts_builtin_sym_end] = ACTIONS(2220), + [sym_identifier] = ACTIONS(2218), + [aux_sym_preproc_include_token1] = ACTIONS(2218), + [aux_sym_preproc_def_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2218), + [sym_preproc_directive] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_PLUS] = ACTIONS(2218), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP_AMP] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2218), + [anon_sym_typedef] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym___attribute__] = ACTIONS(2218), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2220), + [anon_sym___declspec] = ACTIONS(2218), + [anon_sym___based] = ACTIONS(2218), + [anon_sym___cdecl] = ACTIONS(2218), + [anon_sym___clrcall] = ACTIONS(2218), + [anon_sym___stdcall] = ACTIONS(2218), + [anon_sym___fastcall] = ACTIONS(2218), + [anon_sym___thiscall] = ACTIONS(2218), + [anon_sym___vectorcall] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_signed] = ACTIONS(2218), + [anon_sym_unsigned] = ACTIONS(2218), + [anon_sym_long] = ACTIONS(2218), + [anon_sym_short] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_inline] = ACTIONS(2218), + [anon_sym___inline] = ACTIONS(2218), + [anon_sym___inline__] = ACTIONS(2218), + [anon_sym___forceinline] = ACTIONS(2218), + [anon_sym_thread_local] = ACTIONS(2218), + [anon_sym___thread] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_constexpr] = ACTIONS(2218), + [anon_sym_volatile] = ACTIONS(2218), + [anon_sym_restrict] = ACTIONS(2218), + [anon_sym___restrict__] = ACTIONS(2218), + [anon_sym__Atomic] = ACTIONS(2218), + [anon_sym__Noreturn] = ACTIONS(2218), + [anon_sym_noreturn] = ACTIONS(2218), + [anon_sym_mutable] = ACTIONS(2218), + [anon_sym_constinit] = ACTIONS(2218), + [anon_sym_consteval] = ACTIONS(2218), + [sym_primitive_type] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_class] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_else] = ACTIONS(2218), + [anon_sym_switch] = ACTIONS(2218), + [anon_sym_case] = ACTIONS(2218), + [anon_sym_default] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_do] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_goto] = ACTIONS(2218), + [anon_sym_not] = ACTIONS(2218), + [anon_sym_compl] = ACTIONS(2218), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(2218), + [anon_sym___alignof__] = ACTIONS(2218), + [anon_sym___alignof] = ACTIONS(2218), + [anon_sym__alignof] = ACTIONS(2218), + [anon_sym_alignof] = ACTIONS(2218), + [anon_sym__Alignof] = ACTIONS(2218), + [anon_sym_offsetof] = ACTIONS(2218), + [anon_sym__Generic] = ACTIONS(2218), + [anon_sym_asm] = ACTIONS(2218), + [anon_sym___asm__] = ACTIONS(2218), + [sym_number_literal] = ACTIONS(2220), + [anon_sym_L_SQUOTE] = ACTIONS(2220), + [anon_sym_u_SQUOTE] = ACTIONS(2220), + [anon_sym_U_SQUOTE] = ACTIONS(2220), + [anon_sym_u8_SQUOTE] = ACTIONS(2220), + [anon_sym_SQUOTE] = ACTIONS(2220), + [anon_sym_L_DQUOTE] = ACTIONS(2220), + [anon_sym_u_DQUOTE] = ACTIONS(2220), + [anon_sym_U_DQUOTE] = ACTIONS(2220), + [anon_sym_u8_DQUOTE] = ACTIONS(2220), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_true] = ACTIONS(2218), + [sym_false] = ACTIONS(2218), + [anon_sym_NULL] = ACTIONS(2218), + [anon_sym_nullptr] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2218), + [anon_sym_virtual] = ACTIONS(2218), + [anon_sym_alignas] = ACTIONS(2218), + [anon_sym_explicit] = ACTIONS(2218), + [anon_sym_typename] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_operator] = ACTIONS(2218), + [anon_sym_try] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(2218), + [anon_sym_throw] = ACTIONS(2218), + [anon_sym_namespace] = ACTIONS(2218), + [anon_sym_using] = ACTIONS(2218), + [anon_sym_static_assert] = ACTIONS(2218), + [anon_sym_concept] = ACTIONS(2218), + [anon_sym_co_return] = ACTIONS(2218), + [anon_sym_co_yield] = ACTIONS(2218), + [anon_sym_catch] = ACTIONS(3153), + [anon_sym_R_DQUOTE] = ACTIONS(2220), + [anon_sym_LR_DQUOTE] = ACTIONS(2220), + [anon_sym_uR_DQUOTE] = ACTIONS(2220), + [anon_sym_UR_DQUOTE] = ACTIONS(2220), + [anon_sym_u8R_DQUOTE] = ACTIONS(2220), + [anon_sym_co_await] = ACTIONS(2218), + [anon_sym_new] = ACTIONS(2218), + [anon_sym_requires] = ACTIONS(2218), + [sym_this] = ACTIONS(2218), }, - [339] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(1147), - [sym_attributed_statement] = STATE(1147), - [sym_labeled_statement] = STATE(1147), - [sym_expression_statement] = STATE(1147), - [sym_if_statement] = STATE(1147), - [sym_switch_statement] = STATE(1147), - [sym_case_statement] = STATE(1147), - [sym_while_statement] = STATE(1147), - [sym_do_statement] = STATE(1147), - [sym_for_statement] = STATE(1147), - [sym_return_statement] = STATE(1147), - [sym_break_statement] = STATE(1147), - [sym_continue_statement] = STATE(1147), - [sym_goto_statement] = STATE(1147), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1147), - [sym_co_return_statement] = STATE(1147), - [sym_co_yield_statement] = STATE(1147), - [sym_throw_statement] = STATE(1147), - [sym_try_statement] = STATE(1147), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [394] = { + [sym_type_qualifier] = STATE(3780), + [sym__type_specifier] = STATE(4440), + [sym_sized_type_specifier] = STATE(2799), + [sym_enum_specifier] = STATE(2799), + [sym_struct_specifier] = STATE(2799), + [sym_union_specifier] = STATE(2799), + [sym__expression] = STATE(3935), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_type_descriptor] = STATE(6466), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_placeholder_type_specifier] = STATE(2799), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2758), + [sym_class_specifier] = STATE(2799), + [sym__class_name] = STATE(6922), + [sym_dependent_type] = STATE(2799), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_type_parameter_pack_expansion] = STATE(6481), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5157), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3355), + [aux_sym__type_definition_type_repeat1] = STATE(3780), + [aux_sym_sized_type_specifier_repeat1] = STATE(2297), + [sym_identifier] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2934), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2938), [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_GT2] = ACTIONS(3156), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [340] = { - [sym_type_qualifier] = STATE(4643), - [sym__type_specifier] = STATE(5540), - [sym_sized_type_specifier] = STATE(2567), - [sym_enum_specifier] = STATE(2567), - [sym_struct_specifier] = STATE(2567), - [sym_union_specifier] = STATE(2567), - [sym__expression] = STATE(3894), - [sym__expression_not_binary] = STATE(4454), - [sym_comma_expression] = STATE(9633), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_type_descriptor] = STATE(9473), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_placeholder_type_specifier] = STATE(2567), - [sym_decltype_auto] = STATE(2574), - [sym_decltype] = STATE(2553), - [sym_class_specifier] = STATE(2567), - [sym__class_name] = STATE(8484), - [sym_dependent_type] = STATE(2567), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9088), - [sym__unary_right_fold] = STATE(9089), - [sym__binary_fold] = STATE(9207), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6282), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4031), - [aux_sym_type_definition_repeat1] = STATE(4643), - [aux_sym_sized_type_specifier_repeat1] = STATE(2564), - [sym_identifier] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), + [395] = { + [sym_type_qualifier] = STATE(3780), + [sym__type_specifier] = STATE(4440), + [sym_sized_type_specifier] = STATE(2799), + [sym_enum_specifier] = STATE(2799), + [sym_struct_specifier] = STATE(2799), + [sym_union_specifier] = STATE(2799), + [sym__expression] = STATE(3969), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_type_descriptor] = STATE(6337), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_placeholder_type_specifier] = STATE(2799), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2758), + [sym_class_specifier] = STATE(2799), + [sym__class_name] = STATE(6922), + [sym_dependent_type] = STATE(2799), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_type_parameter_pack_expansion] = STATE(6591), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5157), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3355), + [aux_sym__type_definition_type_repeat1] = STATE(3780), + [aux_sym_sized_type_specifier_repeat1] = STATE(2297), + [sym_identifier] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2018), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -106732,982 +110585,1871 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2006), - [anon_sym_decltype] = ACTIONS(2008), - [anon_sym_typename] = ACTIONS(2010), + [sym_primitive_type] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2934), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2938), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [anon_sym_GT2] = ACTIONS(3158), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [341] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(990), - [sym_attributed_statement] = STATE(990), - [sym_labeled_statement] = STATE(990), - [sym_expression_statement] = STATE(990), - [sym_if_statement] = STATE(990), - [sym_switch_statement] = STATE(990), - [sym_case_statement] = STATE(990), - [sym_while_statement] = STATE(990), - [sym_do_statement] = STATE(990), - [sym_for_statement] = STATE(990), - [sym_return_statement] = STATE(990), - [sym_break_statement] = STATE(990), - [sym_continue_statement] = STATE(990), - [sym_goto_statement] = STATE(990), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(990), - [sym_co_return_statement] = STATE(990), - [sym_co_yield_statement] = STATE(990), - [sym_throw_statement] = STATE(990), - [sym_try_statement] = STATE(990), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [396] = { + [sym_identifier] = ACTIONS(3160), + [aux_sym_preproc_include_token1] = ACTIONS(3160), + [aux_sym_preproc_def_token1] = ACTIONS(3160), + [aux_sym_preproc_if_token1] = ACTIONS(3160), + [aux_sym_preproc_if_token2] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), + [aux_sym_preproc_else_token1] = ACTIONS(3160), + [aux_sym_preproc_elif_token1] = ACTIONS(3160), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3160), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3160), + [sym_preproc_directive] = ACTIONS(3160), + [anon_sym_LPAREN2] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym___extension__] = ACTIONS(3160), + [anon_sym_typedef] = ACTIONS(3160), + [anon_sym_extern] = ACTIONS(3160), + [anon_sym___attribute__] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), + [anon_sym___declspec] = ACTIONS(3160), + [anon_sym___based] = ACTIONS(3160), + [anon_sym___cdecl] = ACTIONS(3160), + [anon_sym___clrcall] = ACTIONS(3160), + [anon_sym___stdcall] = ACTIONS(3160), + [anon_sym___fastcall] = ACTIONS(3160), + [anon_sym___thiscall] = ACTIONS(3160), + [anon_sym___vectorcall] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_signed] = ACTIONS(3160), + [anon_sym_unsigned] = ACTIONS(3160), + [anon_sym_long] = ACTIONS(3160), + [anon_sym_short] = ACTIONS(3160), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_static] = ACTIONS(3160), + [anon_sym_register] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym___inline] = ACTIONS(3160), + [anon_sym___inline__] = ACTIONS(3160), + [anon_sym___forceinline] = ACTIONS(3160), + [anon_sym_thread_local] = ACTIONS(3160), + [anon_sym___thread] = ACTIONS(3160), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_constexpr] = ACTIONS(3160), + [anon_sym_volatile] = ACTIONS(3160), + [anon_sym_restrict] = ACTIONS(3160), + [anon_sym___restrict__] = ACTIONS(3160), + [anon_sym__Atomic] = ACTIONS(3160), + [anon_sym__Noreturn] = ACTIONS(3160), + [anon_sym_noreturn] = ACTIONS(3160), + [anon_sym_mutable] = ACTIONS(3160), + [anon_sym_constinit] = ACTIONS(3160), + [anon_sym_consteval] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), + [anon_sym_class] = ACTIONS(3160), + [anon_sym_struct] = ACTIONS(3160), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_switch] = ACTIONS(3160), + [anon_sym_case] = ACTIONS(3160), + [anon_sym_default] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_do] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_goto] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3160), + [anon_sym_compl] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3160), + [anon_sym___alignof__] = ACTIONS(3160), + [anon_sym___alignof] = ACTIONS(3160), + [anon_sym__alignof] = ACTIONS(3160), + [anon_sym_alignof] = ACTIONS(3160), + [anon_sym__Alignof] = ACTIONS(3160), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3160), + [anon_sym_asm] = ACTIONS(3160), + [anon_sym___asm__] = ACTIONS(3160), + [sym_number_literal] = ACTIONS(3162), + [anon_sym_L_SQUOTE] = ACTIONS(3162), + [anon_sym_u_SQUOTE] = ACTIONS(3162), + [anon_sym_U_SQUOTE] = ACTIONS(3162), + [anon_sym_u8_SQUOTE] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3162), + [anon_sym_L_DQUOTE] = ACTIONS(3162), + [anon_sym_u_DQUOTE] = ACTIONS(3162), + [anon_sym_U_DQUOTE] = ACTIONS(3162), + [anon_sym_u8_DQUOTE] = ACTIONS(3162), + [anon_sym_DQUOTE] = ACTIONS(3162), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [anon_sym_NULL] = ACTIONS(3160), + [anon_sym_nullptr] = ACTIONS(3160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3160), + [anon_sym_decltype] = ACTIONS(3160), + [anon_sym_virtual] = ACTIONS(3160), + [anon_sym_alignas] = ACTIONS(3160), + [anon_sym_explicit] = ACTIONS(3160), + [anon_sym_typename] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_delete] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_namespace] = ACTIONS(3160), + [anon_sym_using] = ACTIONS(3160), + [anon_sym_static_assert] = ACTIONS(3160), + [anon_sym_concept] = ACTIONS(3160), + [anon_sym_co_return] = ACTIONS(3160), + [anon_sym_co_yield] = ACTIONS(3160), + [anon_sym_R_DQUOTE] = ACTIONS(3162), + [anon_sym_LR_DQUOTE] = ACTIONS(3162), + [anon_sym_uR_DQUOTE] = ACTIONS(3162), + [anon_sym_UR_DQUOTE] = ACTIONS(3162), + [anon_sym_u8R_DQUOTE] = ACTIONS(3162), + [anon_sym_co_await] = ACTIONS(3160), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_requires] = ACTIONS(3160), + [sym_this] = ACTIONS(3160), }, - [342] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(1091), - [sym_attributed_statement] = STATE(1091), - [sym_labeled_statement] = STATE(1091), - [sym_expression_statement] = STATE(1091), - [sym_if_statement] = STATE(1091), - [sym_switch_statement] = STATE(1091), - [sym_case_statement] = STATE(1091), - [sym_while_statement] = STATE(1091), - [sym_do_statement] = STATE(1091), - [sym_for_statement] = STATE(1091), - [sym_return_statement] = STATE(1091), - [sym_break_statement] = STATE(1091), - [sym_continue_statement] = STATE(1091), - [sym_goto_statement] = STATE(1091), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1091), - [sym_co_return_statement] = STATE(1091), - [sym_co_yield_statement] = STATE(1091), - [sym_throw_statement] = STATE(1091), - [sym_try_statement] = STATE(1091), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [397] = { + [sym_identifier] = ACTIONS(3164), + [aux_sym_preproc_include_token1] = ACTIONS(3164), + [aux_sym_preproc_def_token1] = ACTIONS(3164), + [aux_sym_preproc_if_token1] = ACTIONS(3164), + [aux_sym_preproc_if_token2] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3164), + [aux_sym_preproc_else_token1] = ACTIONS(3164), + [aux_sym_preproc_elif_token1] = ACTIONS(3164), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3164), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3164), + [sym_preproc_directive] = ACTIONS(3164), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3164), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3164), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym___extension__] = ACTIONS(3164), + [anon_sym_typedef] = ACTIONS(3164), + [anon_sym_extern] = ACTIONS(3164), + [anon_sym___attribute__] = ACTIONS(3164), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3164), + [anon_sym___based] = ACTIONS(3164), + [anon_sym___cdecl] = ACTIONS(3164), + [anon_sym___clrcall] = ACTIONS(3164), + [anon_sym___stdcall] = ACTIONS(3164), + [anon_sym___fastcall] = ACTIONS(3164), + [anon_sym___thiscall] = ACTIONS(3164), + [anon_sym___vectorcall] = ACTIONS(3164), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_signed] = ACTIONS(3164), + [anon_sym_unsigned] = ACTIONS(3164), + [anon_sym_long] = ACTIONS(3164), + [anon_sym_short] = ACTIONS(3164), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_static] = ACTIONS(3164), + [anon_sym_register] = ACTIONS(3164), + [anon_sym_inline] = ACTIONS(3164), + [anon_sym___inline] = ACTIONS(3164), + [anon_sym___inline__] = ACTIONS(3164), + [anon_sym___forceinline] = ACTIONS(3164), + [anon_sym_thread_local] = ACTIONS(3164), + [anon_sym___thread] = ACTIONS(3164), + [anon_sym_const] = ACTIONS(3164), + [anon_sym_constexpr] = ACTIONS(3164), + [anon_sym_volatile] = ACTIONS(3164), + [anon_sym_restrict] = ACTIONS(3164), + [anon_sym___restrict__] = ACTIONS(3164), + [anon_sym__Atomic] = ACTIONS(3164), + [anon_sym__Noreturn] = ACTIONS(3164), + [anon_sym_noreturn] = ACTIONS(3164), + [anon_sym_mutable] = ACTIONS(3164), + [anon_sym_constinit] = ACTIONS(3164), + [anon_sym_consteval] = ACTIONS(3164), + [sym_primitive_type] = ACTIONS(3164), + [anon_sym_enum] = ACTIONS(3164), + [anon_sym_class] = ACTIONS(3164), + [anon_sym_struct] = ACTIONS(3164), + [anon_sym_union] = ACTIONS(3164), + [anon_sym_if] = ACTIONS(3164), + [anon_sym_switch] = ACTIONS(3164), + [anon_sym_case] = ACTIONS(3164), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_while] = ACTIONS(3164), + [anon_sym_do] = ACTIONS(3164), + [anon_sym_for] = ACTIONS(3164), + [anon_sym_return] = ACTIONS(3164), + [anon_sym_break] = ACTIONS(3164), + [anon_sym_continue] = ACTIONS(3164), + [anon_sym_goto] = ACTIONS(3164), + [anon_sym_not] = ACTIONS(3164), + [anon_sym_compl] = ACTIONS(3164), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3164), + [anon_sym___alignof] = ACTIONS(3164), + [anon_sym__alignof] = ACTIONS(3164), + [anon_sym_alignof] = ACTIONS(3164), + [anon_sym__Alignof] = ACTIONS(3164), + [anon_sym_offsetof] = ACTIONS(3164), + [anon_sym__Generic] = ACTIONS(3164), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3166), + [anon_sym_u_SQUOTE] = ACTIONS(3166), + [anon_sym_U_SQUOTE] = ACTIONS(3166), + [anon_sym_u8_SQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_L_DQUOTE] = ACTIONS(3166), + [anon_sym_u_DQUOTE] = ACTIONS(3166), + [anon_sym_U_DQUOTE] = ACTIONS(3166), + [anon_sym_u8_DQUOTE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [sym_true] = ACTIONS(3164), + [sym_false] = ACTIONS(3164), + [anon_sym_NULL] = ACTIONS(3164), + [anon_sym_nullptr] = ACTIONS(3164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3164), + [anon_sym_decltype] = ACTIONS(3164), + [anon_sym_virtual] = ACTIONS(3164), + [anon_sym_alignas] = ACTIONS(3164), + [anon_sym_explicit] = ACTIONS(3164), + [anon_sym_typename] = ACTIONS(3164), + [anon_sym_template] = ACTIONS(3164), + [anon_sym_operator] = ACTIONS(3164), + [anon_sym_try] = ACTIONS(3164), + [anon_sym_delete] = ACTIONS(3164), + [anon_sym_throw] = ACTIONS(3164), + [anon_sym_namespace] = ACTIONS(3164), + [anon_sym_using] = ACTIONS(3164), + [anon_sym_static_assert] = ACTIONS(3164), + [anon_sym_concept] = ACTIONS(3164), + [anon_sym_co_return] = ACTIONS(3164), + [anon_sym_co_yield] = ACTIONS(3164), + [anon_sym_R_DQUOTE] = ACTIONS(3166), + [anon_sym_LR_DQUOTE] = ACTIONS(3166), + [anon_sym_uR_DQUOTE] = ACTIONS(3166), + [anon_sym_UR_DQUOTE] = ACTIONS(3166), + [anon_sym_u8R_DQUOTE] = ACTIONS(3166), + [anon_sym_co_await] = ACTIONS(3164), + [anon_sym_new] = ACTIONS(3164), + [anon_sym_requires] = ACTIONS(3164), + [sym_this] = ACTIONS(3164), }, - [343] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(877), - [sym_attributed_statement] = STATE(877), - [sym_labeled_statement] = STATE(877), - [sym_expression_statement] = STATE(877), - [sym_if_statement] = STATE(877), - [sym_switch_statement] = STATE(877), - [sym_case_statement] = STATE(877), - [sym_while_statement] = STATE(877), - [sym_do_statement] = STATE(877), - [sym_for_statement] = STATE(877), - [sym_return_statement] = STATE(877), - [sym_break_statement] = STATE(877), - [sym_continue_statement] = STATE(877), - [sym_goto_statement] = STATE(877), - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9501), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(877), - [sym_co_return_statement] = STATE(877), - [sym_co_yield_statement] = STATE(877), - [sym_throw_statement] = STATE(877), - [sym_try_statement] = STATE(877), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [398] = { + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_include_token1] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token2] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [aux_sym_preproc_else_token1] = ACTIONS(3168), + [aux_sym_preproc_elif_token1] = ACTIONS(3168), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3170), + [anon_sym_AMP_AMP] = ACTIONS(3170), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3170), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3170), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym___cdecl] = ACTIONS(3168), + [anon_sym___clrcall] = ACTIONS(3168), + [anon_sym___stdcall] = ACTIONS(3168), + [anon_sym___fastcall] = ACTIONS(3168), + [anon_sym___thiscall] = ACTIONS(3168), + [anon_sym___vectorcall] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_goto] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym___alignof__] = ACTIONS(3168), + [anon_sym___alignof] = ACTIONS(3168), + [anon_sym__alignof] = ACTIONS(3168), + [anon_sym_alignof] = ACTIONS(3168), + [anon_sym__Alignof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3170), + [anon_sym_L_SQUOTE] = ACTIONS(3170), + [anon_sym_u_SQUOTE] = ACTIONS(3170), + [anon_sym_U_SQUOTE] = ACTIONS(3170), + [anon_sym_u8_SQUOTE] = ACTIONS(3170), + [anon_sym_SQUOTE] = ACTIONS(3170), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_concept] = ACTIONS(3168), + [anon_sym_co_return] = ACTIONS(3168), + [anon_sym_co_yield] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3170), + [anon_sym_LR_DQUOTE] = ACTIONS(3170), + [anon_sym_uR_DQUOTE] = ACTIONS(3170), + [anon_sym_UR_DQUOTE] = ACTIONS(3170), + [anon_sym_u8R_DQUOTE] = ACTIONS(3170), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [sym_this] = ACTIONS(3168), }, - [344] = { - [sym_attribute_declaration] = STATE(267), - [sym_compound_statement] = STATE(1565), - [sym_attributed_statement] = STATE(1565), - [sym_labeled_statement] = STATE(1565), - [sym_expression_statement] = STATE(1565), - [sym_if_statement] = STATE(1565), - [sym_switch_statement] = STATE(1565), - [sym_case_statement] = STATE(1565), - [sym_while_statement] = STATE(1565), - [sym_do_statement] = STATE(1565), - [sym_for_statement] = STATE(1565), - [sym_return_statement] = STATE(1565), - [sym_break_statement] = STATE(1565), - [sym_continue_statement] = STATE(1565), - [sym_goto_statement] = STATE(1565), - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9622), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1565), - [sym_co_return_statement] = STATE(1565), - [sym_co_yield_statement] = STATE(1565), - [sym_throw_statement] = STATE(1565), - [sym_try_statement] = STATE(1565), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(267), - [sym_identifier] = ACTIONS(2259), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1876), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1878), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_co_return] = ACTIONS(1882), - [anon_sym_co_yield] = ACTIONS(1884), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [399] = { + [sym_identifier] = ACTIONS(3172), + [aux_sym_preproc_include_token1] = ACTIONS(3172), + [aux_sym_preproc_def_token1] = ACTIONS(3172), + [aux_sym_preproc_if_token1] = ACTIONS(3172), + [aux_sym_preproc_if_token2] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3172), + [aux_sym_preproc_else_token1] = ACTIONS(3172), + [aux_sym_preproc_elif_token1] = ACTIONS(3172), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3172), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3172), + [sym_preproc_directive] = ACTIONS(3172), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3172), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_SEMI] = ACTIONS(3174), + [anon_sym___extension__] = ACTIONS(3172), + [anon_sym_typedef] = ACTIONS(3172), + [anon_sym_extern] = ACTIONS(3172), + [anon_sym___attribute__] = ACTIONS(3172), + [anon_sym_COLON_COLON] = ACTIONS(3174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3174), + [anon_sym___declspec] = ACTIONS(3172), + [anon_sym___based] = ACTIONS(3172), + [anon_sym___cdecl] = ACTIONS(3172), + [anon_sym___clrcall] = ACTIONS(3172), + [anon_sym___stdcall] = ACTIONS(3172), + [anon_sym___fastcall] = ACTIONS(3172), + [anon_sym___thiscall] = ACTIONS(3172), + [anon_sym___vectorcall] = ACTIONS(3172), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_signed] = ACTIONS(3172), + [anon_sym_unsigned] = ACTIONS(3172), + [anon_sym_long] = ACTIONS(3172), + [anon_sym_short] = ACTIONS(3172), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3172), + [anon_sym_register] = ACTIONS(3172), + [anon_sym_inline] = ACTIONS(3172), + [anon_sym___inline] = ACTIONS(3172), + [anon_sym___inline__] = ACTIONS(3172), + [anon_sym___forceinline] = ACTIONS(3172), + [anon_sym_thread_local] = ACTIONS(3172), + [anon_sym___thread] = ACTIONS(3172), + [anon_sym_const] = ACTIONS(3172), + [anon_sym_constexpr] = ACTIONS(3172), + [anon_sym_volatile] = ACTIONS(3172), + [anon_sym_restrict] = ACTIONS(3172), + [anon_sym___restrict__] = ACTIONS(3172), + [anon_sym__Atomic] = ACTIONS(3172), + [anon_sym__Noreturn] = ACTIONS(3172), + [anon_sym_noreturn] = ACTIONS(3172), + [anon_sym_mutable] = ACTIONS(3172), + [anon_sym_constinit] = ACTIONS(3172), + [anon_sym_consteval] = ACTIONS(3172), + [sym_primitive_type] = ACTIONS(3172), + [anon_sym_enum] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3172), + [anon_sym_union] = ACTIONS(3172), + [anon_sym_if] = ACTIONS(3172), + [anon_sym_switch] = ACTIONS(3172), + [anon_sym_case] = ACTIONS(3172), + [anon_sym_default] = ACTIONS(3172), + [anon_sym_while] = ACTIONS(3172), + [anon_sym_do] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_return] = ACTIONS(3172), + [anon_sym_break] = ACTIONS(3172), + [anon_sym_continue] = ACTIONS(3172), + [anon_sym_goto] = ACTIONS(3172), + [anon_sym_not] = ACTIONS(3172), + [anon_sym_compl] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_sizeof] = ACTIONS(3172), + [anon_sym___alignof__] = ACTIONS(3172), + [anon_sym___alignof] = ACTIONS(3172), + [anon_sym__alignof] = ACTIONS(3172), + [anon_sym_alignof] = ACTIONS(3172), + [anon_sym__Alignof] = ACTIONS(3172), + [anon_sym_offsetof] = ACTIONS(3172), + [anon_sym__Generic] = ACTIONS(3172), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3174), + [anon_sym_u_SQUOTE] = ACTIONS(3174), + [anon_sym_U_SQUOTE] = ACTIONS(3174), + [anon_sym_u8_SQUOTE] = ACTIONS(3174), + [anon_sym_SQUOTE] = ACTIONS(3174), + [anon_sym_L_DQUOTE] = ACTIONS(3174), + [anon_sym_u_DQUOTE] = ACTIONS(3174), + [anon_sym_U_DQUOTE] = ACTIONS(3174), + [anon_sym_u8_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3172), + [anon_sym_nullptr] = ACTIONS(3172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3172), + [anon_sym_decltype] = ACTIONS(3172), + [anon_sym_virtual] = ACTIONS(3172), + [anon_sym_alignas] = ACTIONS(3172), + [anon_sym_explicit] = ACTIONS(3172), + [anon_sym_typename] = ACTIONS(3172), + [anon_sym_template] = ACTIONS(3172), + [anon_sym_operator] = ACTIONS(3172), + [anon_sym_try] = ACTIONS(3172), + [anon_sym_delete] = ACTIONS(3172), + [anon_sym_throw] = ACTIONS(3172), + [anon_sym_namespace] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3172), + [anon_sym_static_assert] = ACTIONS(3172), + [anon_sym_concept] = ACTIONS(3172), + [anon_sym_co_return] = ACTIONS(3172), + [anon_sym_co_yield] = ACTIONS(3172), + [anon_sym_R_DQUOTE] = ACTIONS(3174), + [anon_sym_LR_DQUOTE] = ACTIONS(3174), + [anon_sym_uR_DQUOTE] = ACTIONS(3174), + [anon_sym_UR_DQUOTE] = ACTIONS(3174), + [anon_sym_u8R_DQUOTE] = ACTIONS(3174), + [anon_sym_co_await] = ACTIONS(3172), + [anon_sym_new] = ACTIONS(3172), + [anon_sym_requires] = ACTIONS(3172), + [sym_this] = ACTIONS(3172), }, - [345] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(1003), - [sym_attributed_statement] = STATE(1003), - [sym_labeled_statement] = STATE(1003), - [sym_expression_statement] = STATE(1003), - [sym_if_statement] = STATE(1003), - [sym_switch_statement] = STATE(1003), - [sym_case_statement] = STATE(1003), - [sym_while_statement] = STATE(1003), - [sym_do_statement] = STATE(1003), - [sym_for_statement] = STATE(1003), - [sym_return_statement] = STATE(1003), - [sym_break_statement] = STATE(1003), - [sym_continue_statement] = STATE(1003), - [sym_goto_statement] = STATE(1003), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1003), - [sym_co_return_statement] = STATE(1003), - [sym_co_yield_statement] = STATE(1003), - [sym_throw_statement] = STATE(1003), - [sym_try_statement] = STATE(1003), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [400] = { + [sym_identifier] = ACTIONS(3176), + [aux_sym_preproc_include_token1] = ACTIONS(3176), + [aux_sym_preproc_def_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token2] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), + [aux_sym_preproc_else_token1] = ACTIONS(3176), + [aux_sym_preproc_elif_token1] = ACTIONS(3176), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3176), + [sym_preproc_directive] = ACTIONS(3176), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym___extension__] = ACTIONS(3176), + [anon_sym_typedef] = ACTIONS(3176), + [anon_sym_extern] = ACTIONS(3176), + [anon_sym___attribute__] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(3178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), + [anon_sym___declspec] = ACTIONS(3176), + [anon_sym___based] = ACTIONS(3176), + [anon_sym___cdecl] = ACTIONS(3176), + [anon_sym___clrcall] = ACTIONS(3176), + [anon_sym___stdcall] = ACTIONS(3176), + [anon_sym___fastcall] = ACTIONS(3176), + [anon_sym___thiscall] = ACTIONS(3176), + [anon_sym___vectorcall] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_signed] = ACTIONS(3176), + [anon_sym_unsigned] = ACTIONS(3176), + [anon_sym_long] = ACTIONS(3176), + [anon_sym_short] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_register] = ACTIONS(3176), + [anon_sym_inline] = ACTIONS(3176), + [anon_sym___inline] = ACTIONS(3176), + [anon_sym___inline__] = ACTIONS(3176), + [anon_sym___forceinline] = ACTIONS(3176), + [anon_sym_thread_local] = ACTIONS(3176), + [anon_sym___thread] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_constexpr] = ACTIONS(3176), + [anon_sym_volatile] = ACTIONS(3176), + [anon_sym_restrict] = ACTIONS(3176), + [anon_sym___restrict__] = ACTIONS(3176), + [anon_sym__Atomic] = ACTIONS(3176), + [anon_sym__Noreturn] = ACTIONS(3176), + [anon_sym_noreturn] = ACTIONS(3176), + [anon_sym_mutable] = ACTIONS(3176), + [anon_sym_constinit] = ACTIONS(3176), + [anon_sym_consteval] = ACTIONS(3176), + [sym_primitive_type] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_case] = ACTIONS(3176), + [anon_sym_default] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_goto] = ACTIONS(3176), + [anon_sym_not] = ACTIONS(3176), + [anon_sym_compl] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_sizeof] = ACTIONS(3176), + [anon_sym___alignof__] = ACTIONS(3176), + [anon_sym___alignof] = ACTIONS(3176), + [anon_sym__alignof] = ACTIONS(3176), + [anon_sym_alignof] = ACTIONS(3176), + [anon_sym__Alignof] = ACTIONS(3176), + [anon_sym_offsetof] = ACTIONS(3176), + [anon_sym__Generic] = ACTIONS(3176), + [anon_sym_asm] = ACTIONS(3176), + [anon_sym___asm__] = ACTIONS(3176), + [sym_number_literal] = ACTIONS(3178), + [anon_sym_L_SQUOTE] = ACTIONS(3178), + [anon_sym_u_SQUOTE] = ACTIONS(3178), + [anon_sym_U_SQUOTE] = ACTIONS(3178), + [anon_sym_u8_SQUOTE] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3178), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [anon_sym_NULL] = ACTIONS(3176), + [anon_sym_nullptr] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3176), + [anon_sym_virtual] = ACTIONS(3176), + [anon_sym_alignas] = ACTIONS(3176), + [anon_sym_explicit] = ACTIONS(3176), + [anon_sym_typename] = ACTIONS(3176), + [anon_sym_template] = ACTIONS(3176), + [anon_sym_operator] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_static_assert] = ACTIONS(3176), + [anon_sym_concept] = ACTIONS(3176), + [anon_sym_co_return] = ACTIONS(3176), + [anon_sym_co_yield] = ACTIONS(3176), + [anon_sym_R_DQUOTE] = ACTIONS(3178), + [anon_sym_LR_DQUOTE] = ACTIONS(3178), + [anon_sym_uR_DQUOTE] = ACTIONS(3178), + [anon_sym_UR_DQUOTE] = ACTIONS(3178), + [anon_sym_u8R_DQUOTE] = ACTIONS(3178), + [anon_sym_co_await] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_requires] = ACTIONS(3176), + [sym_this] = ACTIONS(3176), }, - [346] = { - [sym_attribute_declaration] = STATE(194), - [sym_compound_statement] = STATE(1115), - [sym_attributed_statement] = STATE(1115), - [sym_labeled_statement] = STATE(1115), - [sym_expression_statement] = STATE(1115), - [sym_if_statement] = STATE(1115), - [sym_switch_statement] = STATE(1115), - [sym_case_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_return_statement] = STATE(1115), - [sym_break_statement] = STATE(1115), - [sym_continue_statement] = STATE(1115), - [sym_goto_statement] = STATE(1115), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9614), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_for_range_loop] = STATE(1115), - [sym_co_return_statement] = STATE(1115), - [sym_co_yield_statement] = STATE(1115), - [sym_throw_statement] = STATE(1115), - [sym_try_statement] = STATE(1115), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(267), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(271), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_return] = ACTIONS(279), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(285), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(291), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [401] = { + [sym_identifier] = ACTIONS(3180), + [aux_sym_preproc_include_token1] = ACTIONS(3180), + [aux_sym_preproc_def_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token2] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3180), + [aux_sym_preproc_else_token1] = ACTIONS(3180), + [aux_sym_preproc_elif_token1] = ACTIONS(3180), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3180), + [sym_preproc_directive] = ACTIONS(3180), + [anon_sym_LPAREN2] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_PLUS] = ACTIONS(3180), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym___extension__] = ACTIONS(3180), + [anon_sym_typedef] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(3180), + [anon_sym___attribute__] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3182), + [anon_sym___declspec] = ACTIONS(3180), + [anon_sym___based] = ACTIONS(3180), + [anon_sym___cdecl] = ACTIONS(3180), + [anon_sym___clrcall] = ACTIONS(3180), + [anon_sym___stdcall] = ACTIONS(3180), + [anon_sym___fastcall] = ACTIONS(3180), + [anon_sym___thiscall] = ACTIONS(3180), + [anon_sym___vectorcall] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_signed] = ACTIONS(3180), + [anon_sym_unsigned] = ACTIONS(3180), + [anon_sym_long] = ACTIONS(3180), + [anon_sym_short] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_register] = ACTIONS(3180), + [anon_sym_inline] = ACTIONS(3180), + [anon_sym___inline] = ACTIONS(3180), + [anon_sym___inline__] = ACTIONS(3180), + [anon_sym___forceinline] = ACTIONS(3180), + [anon_sym_thread_local] = ACTIONS(3180), + [anon_sym___thread] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym___restrict__] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym__Noreturn] = ACTIONS(3180), + [anon_sym_noreturn] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3180), + [anon_sym_union] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3180), + [anon_sym_case] = ACTIONS(3180), + [anon_sym_default] = ACTIONS(3180), + [anon_sym_while] = ACTIONS(3180), + [anon_sym_do] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_break] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(3180), + [anon_sym_goto] = ACTIONS(3180), + [anon_sym_not] = ACTIONS(3180), + [anon_sym_compl] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_sizeof] = ACTIONS(3180), + [anon_sym___alignof__] = ACTIONS(3180), + [anon_sym___alignof] = ACTIONS(3180), + [anon_sym__alignof] = ACTIONS(3180), + [anon_sym_alignof] = ACTIONS(3180), + [anon_sym__Alignof] = ACTIONS(3180), + [anon_sym_offsetof] = ACTIONS(3180), + [anon_sym__Generic] = ACTIONS(3180), + [anon_sym_asm] = ACTIONS(3180), + [anon_sym___asm__] = ACTIONS(3180), + [sym_number_literal] = ACTIONS(3182), + [anon_sym_L_SQUOTE] = ACTIONS(3182), + [anon_sym_u_SQUOTE] = ACTIONS(3182), + [anon_sym_U_SQUOTE] = ACTIONS(3182), + [anon_sym_u8_SQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_L_DQUOTE] = ACTIONS(3182), + [anon_sym_u_DQUOTE] = ACTIONS(3182), + [anon_sym_U_DQUOTE] = ACTIONS(3182), + [anon_sym_u8_DQUOTE] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3180), + [anon_sym_nullptr] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3180), + [anon_sym_decltype] = ACTIONS(3180), + [anon_sym_virtual] = ACTIONS(3180), + [anon_sym_alignas] = ACTIONS(3180), + [anon_sym_explicit] = ACTIONS(3180), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(3180), + [anon_sym_operator] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3180), + [anon_sym_delete] = ACTIONS(3180), + [anon_sym_throw] = ACTIONS(3180), + [anon_sym_namespace] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_static_assert] = ACTIONS(3180), + [anon_sym_concept] = ACTIONS(3180), + [anon_sym_co_return] = ACTIONS(3180), + [anon_sym_co_yield] = ACTIONS(3180), + [anon_sym_R_DQUOTE] = ACTIONS(3182), + [anon_sym_LR_DQUOTE] = ACTIONS(3182), + [anon_sym_uR_DQUOTE] = ACTIONS(3182), + [anon_sym_UR_DQUOTE] = ACTIONS(3182), + [anon_sym_u8R_DQUOTE] = ACTIONS(3182), + [anon_sym_co_await] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3180), + [anon_sym_requires] = ACTIONS(3180), + [sym_this] = ACTIONS(3180), }, - [347] = { - [sym_preproc_def] = STATE(349), - [sym_preproc_function_def] = STATE(349), - [sym_preproc_call] = STATE(349), - [sym_preproc_elifdef] = STATE(9054), - [sym_preproc_if_in_field_declaration_list] = STATE(349), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(349), - [sym_preproc_else_in_field_declaration_list] = STATE(9054), - [sym_preproc_elif_in_field_declaration_list] = STATE(9054), - [sym_type_definition] = STATE(349), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6408), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6925), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(349), - [sym_field_declaration] = STATE(349), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(349), - [sym_operator_cast] = STATE(7495), - [sym_inline_method_definition] = STATE(349), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(349), - [sym_operator_cast_declaration] = STATE(349), - [sym_constructor_or_destructor_definition] = STATE(349), - [sym_constructor_or_destructor_declaration] = STATE(349), - [sym_friend_declaration] = STATE(349), - [sym_access_specifier] = STATE(9326), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(349), - [sym_alias_declaration] = STATE(349), - [sym_static_assert_declaration] = STATE(349), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7495), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(349), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2689), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2693), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), - [aux_sym_preproc_else_token1] = ACTIONS(2697), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [aux_sym_preproc_elifdef_token1] = ACTIONS(175), - [aux_sym_preproc_elifdef_token2] = ACTIONS(175), - [sym_preproc_directive] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2713), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), + [402] = { + [sym_identifier] = ACTIONS(3184), + [aux_sym_preproc_include_token1] = ACTIONS(3184), + [aux_sym_preproc_def_token1] = ACTIONS(3184), + [aux_sym_preproc_if_token1] = ACTIONS(3184), + [aux_sym_preproc_if_token2] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3184), + [aux_sym_preproc_else_token1] = ACTIONS(3184), + [aux_sym_preproc_elif_token1] = ACTIONS(3184), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3184), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym___extension__] = ACTIONS(3184), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym___attribute__] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3186), + [anon_sym___declspec] = ACTIONS(3184), + [anon_sym___based] = ACTIONS(3184), + [anon_sym___cdecl] = ACTIONS(3184), + [anon_sym___clrcall] = ACTIONS(3184), + [anon_sym___stdcall] = ACTIONS(3184), + [anon_sym___fastcall] = ACTIONS(3184), + [anon_sym___thiscall] = ACTIONS(3184), + [anon_sym___vectorcall] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_signed] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym___inline] = ACTIONS(3184), + [anon_sym___inline__] = ACTIONS(3184), + [anon_sym___forceinline] = ACTIONS(3184), + [anon_sym_thread_local] = ACTIONS(3184), + [anon_sym___thread] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym___restrict__] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym__Noreturn] = ACTIONS(3184), + [anon_sym_noreturn] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_constinit] = ACTIONS(3184), + [anon_sym_consteval] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_class] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3184), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_goto] = ACTIONS(3184), + [anon_sym_not] = ACTIONS(3184), + [anon_sym_compl] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_sizeof] = ACTIONS(3184), + [anon_sym___alignof__] = ACTIONS(3184), + [anon_sym___alignof] = ACTIONS(3184), + [anon_sym__alignof] = ACTIONS(3184), + [anon_sym_alignof] = ACTIONS(3184), + [anon_sym__Alignof] = ACTIONS(3184), + [anon_sym_offsetof] = ACTIONS(3184), + [anon_sym__Generic] = ACTIONS(3184), + [anon_sym_asm] = ACTIONS(3184), + [anon_sym___asm__] = ACTIONS(3184), + [sym_number_literal] = ACTIONS(3186), + [anon_sym_L_SQUOTE] = ACTIONS(3186), + [anon_sym_u_SQUOTE] = ACTIONS(3186), + [anon_sym_U_SQUOTE] = ACTIONS(3186), + [anon_sym_u8_SQUOTE] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_L_DQUOTE] = ACTIONS(3186), + [anon_sym_u_DQUOTE] = ACTIONS(3186), + [anon_sym_U_DQUOTE] = ACTIONS(3186), + [anon_sym_u8_DQUOTE] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [anon_sym_NULL] = ACTIONS(3184), + [anon_sym_nullptr] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3184), + [anon_sym_virtual] = ACTIONS(3184), + [anon_sym_alignas] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [anon_sym_template] = ACTIONS(3184), + [anon_sym_operator] = ACTIONS(3184), + [anon_sym_try] = ACTIONS(3184), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_throw] = ACTIONS(3184), + [anon_sym_namespace] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_static_assert] = ACTIONS(3184), + [anon_sym_concept] = ACTIONS(3184), + [anon_sym_co_return] = ACTIONS(3184), + [anon_sym_co_yield] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_requires] = ACTIONS(3184), + [sym_this] = ACTIONS(3184), + }, + [403] = { + [sym_identifier] = ACTIONS(3188), + [aux_sym_preproc_include_token1] = ACTIONS(3188), + [aux_sym_preproc_def_token1] = ACTIONS(3188), + [aux_sym_preproc_if_token1] = ACTIONS(3188), + [aux_sym_preproc_if_token2] = ACTIONS(3188), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3188), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3188), + [aux_sym_preproc_else_token1] = ACTIONS(3188), + [aux_sym_preproc_elif_token1] = ACTIONS(3188), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3188), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3188), + [sym_preproc_directive] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(3190), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_AMP_AMP] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3190), + [anon_sym___extension__] = ACTIONS(3188), + [anon_sym_typedef] = ACTIONS(3188), + [anon_sym_extern] = ACTIONS(3188), + [anon_sym___attribute__] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3190), + [anon_sym___declspec] = ACTIONS(3188), + [anon_sym___based] = ACTIONS(3188), + [anon_sym___cdecl] = ACTIONS(3188), + [anon_sym___clrcall] = ACTIONS(3188), + [anon_sym___stdcall] = ACTIONS(3188), + [anon_sym___fastcall] = ACTIONS(3188), + [anon_sym___thiscall] = ACTIONS(3188), + [anon_sym___vectorcall] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_signed] = ACTIONS(3188), + [anon_sym_unsigned] = ACTIONS(3188), + [anon_sym_long] = ACTIONS(3188), + [anon_sym_short] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_register] = ACTIONS(3188), + [anon_sym_inline] = ACTIONS(3188), + [anon_sym___inline] = ACTIONS(3188), + [anon_sym___inline__] = ACTIONS(3188), + [anon_sym___forceinline] = ACTIONS(3188), + [anon_sym_thread_local] = ACTIONS(3188), + [anon_sym___thread] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_constexpr] = ACTIONS(3188), + [anon_sym_volatile] = ACTIONS(3188), + [anon_sym_restrict] = ACTIONS(3188), + [anon_sym___restrict__] = ACTIONS(3188), + [anon_sym__Atomic] = ACTIONS(3188), + [anon_sym__Noreturn] = ACTIONS(3188), + [anon_sym_noreturn] = ACTIONS(3188), + [anon_sym_mutable] = ACTIONS(3188), + [anon_sym_constinit] = ACTIONS(3188), + [anon_sym_consteval] = ACTIONS(3188), + [sym_primitive_type] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_struct] = ACTIONS(3188), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3188), + [anon_sym_case] = ACTIONS(3188), + [anon_sym_default] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_break] = ACTIONS(3188), + [anon_sym_continue] = ACTIONS(3188), + [anon_sym_goto] = ACTIONS(3188), + [anon_sym_not] = ACTIONS(3188), + [anon_sym_compl] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3190), + [anon_sym_PLUS_PLUS] = ACTIONS(3190), + [anon_sym_sizeof] = ACTIONS(3188), + [anon_sym___alignof__] = ACTIONS(3188), + [anon_sym___alignof] = ACTIONS(3188), + [anon_sym__alignof] = ACTIONS(3188), + [anon_sym_alignof] = ACTIONS(3188), + [anon_sym__Alignof] = ACTIONS(3188), + [anon_sym_offsetof] = ACTIONS(3188), + [anon_sym__Generic] = ACTIONS(3188), + [anon_sym_asm] = ACTIONS(3188), + [anon_sym___asm__] = ACTIONS(3188), + [sym_number_literal] = ACTIONS(3190), + [anon_sym_L_SQUOTE] = ACTIONS(3190), + [anon_sym_u_SQUOTE] = ACTIONS(3190), + [anon_sym_U_SQUOTE] = ACTIONS(3190), + [anon_sym_u8_SQUOTE] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3190), + [anon_sym_L_DQUOTE] = ACTIONS(3190), + [anon_sym_u_DQUOTE] = ACTIONS(3190), + [anon_sym_U_DQUOTE] = ACTIONS(3190), + [anon_sym_u8_DQUOTE] = ACTIONS(3190), + [anon_sym_DQUOTE] = ACTIONS(3190), + [sym_true] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [anon_sym_NULL] = ACTIONS(3188), + [anon_sym_nullptr] = ACTIONS(3188), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3188), + [anon_sym_decltype] = ACTIONS(3188), + [anon_sym_virtual] = ACTIONS(3188), + [anon_sym_alignas] = ACTIONS(3188), + [anon_sym_explicit] = ACTIONS(3188), + [anon_sym_typename] = ACTIONS(3188), + [anon_sym_template] = ACTIONS(3188), + [anon_sym_operator] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_throw] = ACTIONS(3188), + [anon_sym_namespace] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3188), + [anon_sym_static_assert] = ACTIONS(3188), + [anon_sym_concept] = ACTIONS(3188), + [anon_sym_co_return] = ACTIONS(3188), + [anon_sym_co_yield] = ACTIONS(3188), + [anon_sym_R_DQUOTE] = ACTIONS(3190), + [anon_sym_LR_DQUOTE] = ACTIONS(3190), + [anon_sym_uR_DQUOTE] = ACTIONS(3190), + [anon_sym_UR_DQUOTE] = ACTIONS(3190), + [anon_sym_u8R_DQUOTE] = ACTIONS(3190), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_requires] = ACTIONS(3188), + [sym_this] = ACTIONS(3188), + }, + [404] = { + [sym_identifier] = ACTIONS(3192), + [aux_sym_preproc_include_token1] = ACTIONS(3192), + [aux_sym_preproc_def_token1] = ACTIONS(3192), + [aux_sym_preproc_if_token1] = ACTIONS(3192), + [aux_sym_preproc_if_token2] = ACTIONS(3192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3192), + [aux_sym_preproc_else_token1] = ACTIONS(3192), + [aux_sym_preproc_elif_token1] = ACTIONS(3192), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3192), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3192), + [sym_preproc_directive] = ACTIONS(3192), + [anon_sym_LPAREN2] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3192), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3192), + [anon_sym_typedef] = ACTIONS(3192), + [anon_sym_extern] = ACTIONS(3192), + [anon_sym___attribute__] = ACTIONS(3192), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3194), + [anon_sym___declspec] = ACTIONS(3192), + [anon_sym___based] = ACTIONS(3192), + [anon_sym___cdecl] = ACTIONS(3192), + [anon_sym___clrcall] = ACTIONS(3192), + [anon_sym___stdcall] = ACTIONS(3192), + [anon_sym___fastcall] = ACTIONS(3192), + [anon_sym___thiscall] = ACTIONS(3192), + [anon_sym___vectorcall] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_signed] = ACTIONS(3192), + [anon_sym_unsigned] = ACTIONS(3192), + [anon_sym_long] = ACTIONS(3192), + [anon_sym_short] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3192), + [anon_sym_register] = ACTIONS(3192), + [anon_sym_inline] = ACTIONS(3192), + [anon_sym___inline] = ACTIONS(3192), + [anon_sym___inline__] = ACTIONS(3192), + [anon_sym___forceinline] = ACTIONS(3192), + [anon_sym_thread_local] = ACTIONS(3192), + [anon_sym___thread] = ACTIONS(3192), + [anon_sym_const] = ACTIONS(3192), + [anon_sym_constexpr] = ACTIONS(3192), + [anon_sym_volatile] = ACTIONS(3192), + [anon_sym_restrict] = ACTIONS(3192), + [anon_sym___restrict__] = ACTIONS(3192), + [anon_sym__Atomic] = ACTIONS(3192), + [anon_sym__Noreturn] = ACTIONS(3192), + [anon_sym_noreturn] = ACTIONS(3192), + [anon_sym_mutable] = ACTIONS(3192), + [anon_sym_constinit] = ACTIONS(3192), + [anon_sym_consteval] = ACTIONS(3192), + [sym_primitive_type] = ACTIONS(3192), + [anon_sym_enum] = ACTIONS(3192), + [anon_sym_class] = ACTIONS(3192), + [anon_sym_struct] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3192), + [anon_sym_if] = ACTIONS(3192), + [anon_sym_switch] = ACTIONS(3192), + [anon_sym_case] = ACTIONS(3192), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_while] = ACTIONS(3192), + [anon_sym_do] = ACTIONS(3192), + [anon_sym_for] = ACTIONS(3192), + [anon_sym_return] = ACTIONS(3192), + [anon_sym_break] = ACTIONS(3192), + [anon_sym_continue] = ACTIONS(3192), + [anon_sym_goto] = ACTIONS(3192), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_sizeof] = ACTIONS(3192), + [anon_sym___alignof__] = ACTIONS(3192), + [anon_sym___alignof] = ACTIONS(3192), + [anon_sym__alignof] = ACTIONS(3192), + [anon_sym_alignof] = ACTIONS(3192), + [anon_sym__Alignof] = ACTIONS(3192), + [anon_sym_offsetof] = ACTIONS(3192), + [anon_sym__Generic] = ACTIONS(3192), + [anon_sym_asm] = ACTIONS(3192), + [anon_sym___asm__] = ACTIONS(3192), + [sym_number_literal] = ACTIONS(3194), + [anon_sym_L_SQUOTE] = ACTIONS(3194), + [anon_sym_u_SQUOTE] = ACTIONS(3194), + [anon_sym_U_SQUOTE] = ACTIONS(3194), + [anon_sym_u8_SQUOTE] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3194), + [anon_sym_L_DQUOTE] = ACTIONS(3194), + [anon_sym_u_DQUOTE] = ACTIONS(3194), + [anon_sym_U_DQUOTE] = ACTIONS(3194), + [anon_sym_u8_DQUOTE] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(3194), + [sym_true] = ACTIONS(3192), + [sym_false] = ACTIONS(3192), + [anon_sym_NULL] = ACTIONS(3192), + [anon_sym_nullptr] = ACTIONS(3192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3192), + [anon_sym_decltype] = ACTIONS(3192), + [anon_sym_virtual] = ACTIONS(3192), + [anon_sym_alignas] = ACTIONS(3192), + [anon_sym_explicit] = ACTIONS(3192), + [anon_sym_typename] = ACTIONS(3192), + [anon_sym_template] = ACTIONS(3192), + [anon_sym_operator] = ACTIONS(3192), + [anon_sym_try] = ACTIONS(3192), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_throw] = ACTIONS(3192), + [anon_sym_namespace] = ACTIONS(3192), + [anon_sym_using] = ACTIONS(3192), + [anon_sym_static_assert] = ACTIONS(3192), + [anon_sym_concept] = ACTIONS(3192), + [anon_sym_co_return] = ACTIONS(3192), + [anon_sym_co_yield] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3192), + [anon_sym_new] = ACTIONS(3192), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3192), + }, + [405] = { + [sym_else_clause] = STATE(462), + [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), + [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_extern] = 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___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_mutable] = ACTIONS(2735), + [anon_sym_constinit] = ACTIONS(2735), + [anon_sym_consteval] = 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(3196), + [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_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), + [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_virtual] = ACTIONS(2735), + [anon_sym_alignas] = 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_using] = 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), + }, + [406] = { + [sym_identifier] = ACTIONS(3198), + [aux_sym_preproc_include_token1] = ACTIONS(3198), + [aux_sym_preproc_def_token1] = ACTIONS(3198), + [aux_sym_preproc_if_token1] = ACTIONS(3198), + [aux_sym_preproc_if_token2] = ACTIONS(3198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3198), + [aux_sym_preproc_else_token1] = ACTIONS(3198), + [aux_sym_preproc_elif_token1] = ACTIONS(3198), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3198), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3198), + [sym_preproc_directive] = ACTIONS(3198), + [anon_sym_LPAREN2] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym___extension__] = ACTIONS(3198), + [anon_sym_typedef] = ACTIONS(3198), + [anon_sym_extern] = ACTIONS(3198), + [anon_sym___attribute__] = ACTIONS(3198), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3200), + [anon_sym___declspec] = ACTIONS(3198), + [anon_sym___based] = ACTIONS(3198), + [anon_sym___cdecl] = ACTIONS(3198), + [anon_sym___clrcall] = ACTIONS(3198), + [anon_sym___stdcall] = ACTIONS(3198), + [anon_sym___fastcall] = ACTIONS(3198), + [anon_sym___thiscall] = ACTIONS(3198), + [anon_sym___vectorcall] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_signed] = ACTIONS(3198), + [anon_sym_unsigned] = ACTIONS(3198), + [anon_sym_long] = ACTIONS(3198), + [anon_sym_short] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_register] = ACTIONS(3198), + [anon_sym_inline] = ACTIONS(3198), + [anon_sym___inline] = ACTIONS(3198), + [anon_sym___inline__] = ACTIONS(3198), + [anon_sym___forceinline] = ACTIONS(3198), + [anon_sym_thread_local] = ACTIONS(3198), + [anon_sym___thread] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_constexpr] = ACTIONS(3198), + [anon_sym_volatile] = ACTIONS(3198), + [anon_sym_restrict] = ACTIONS(3198), + [anon_sym___restrict__] = ACTIONS(3198), + [anon_sym__Atomic] = ACTIONS(3198), + [anon_sym__Noreturn] = ACTIONS(3198), + [anon_sym_noreturn] = ACTIONS(3198), + [anon_sym_mutable] = ACTIONS(3198), + [anon_sym_constinit] = ACTIONS(3198), + [anon_sym_consteval] = ACTIONS(3198), + [sym_primitive_type] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_goto] = ACTIONS(3198), + [anon_sym_not] = ACTIONS(3198), + [anon_sym_compl] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_sizeof] = ACTIONS(3198), + [anon_sym___alignof__] = ACTIONS(3198), + [anon_sym___alignof] = ACTIONS(3198), + [anon_sym__alignof] = ACTIONS(3198), + [anon_sym_alignof] = ACTIONS(3198), + [anon_sym__Alignof] = ACTIONS(3198), + [anon_sym_offsetof] = ACTIONS(3198), + [anon_sym__Generic] = ACTIONS(3198), + [anon_sym_asm] = ACTIONS(3198), + [anon_sym___asm__] = ACTIONS(3198), + [sym_number_literal] = ACTIONS(3200), + [anon_sym_L_SQUOTE] = ACTIONS(3200), + [anon_sym_u_SQUOTE] = ACTIONS(3200), + [anon_sym_U_SQUOTE] = ACTIONS(3200), + [anon_sym_u8_SQUOTE] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3200), + [anon_sym_L_DQUOTE] = ACTIONS(3200), + [anon_sym_u_DQUOTE] = ACTIONS(3200), + [anon_sym_U_DQUOTE] = ACTIONS(3200), + [anon_sym_u8_DQUOTE] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(3200), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [anon_sym_NULL] = ACTIONS(3198), + [anon_sym_nullptr] = ACTIONS(3198), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3198), + [anon_sym_decltype] = ACTIONS(3198), + [anon_sym_virtual] = ACTIONS(3198), + [anon_sym_alignas] = ACTIONS(3198), + [anon_sym_explicit] = ACTIONS(3198), + [anon_sym_typename] = ACTIONS(3198), + [anon_sym_template] = ACTIONS(3198), + [anon_sym_operator] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_static_assert] = ACTIONS(3198), + [anon_sym_concept] = ACTIONS(3198), + [anon_sym_co_return] = ACTIONS(3198), + [anon_sym_co_yield] = ACTIONS(3198), + [anon_sym_R_DQUOTE] = ACTIONS(3200), + [anon_sym_LR_DQUOTE] = ACTIONS(3200), + [anon_sym_uR_DQUOTE] = ACTIONS(3200), + [anon_sym_UR_DQUOTE] = ACTIONS(3200), + [anon_sym_u8R_DQUOTE] = ACTIONS(3200), + [anon_sym_co_await] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + }, + [407] = { + [sym_identifier] = ACTIONS(3202), + [aux_sym_preproc_include_token1] = ACTIONS(3202), + [aux_sym_preproc_def_token1] = ACTIONS(3202), + [aux_sym_preproc_if_token1] = ACTIONS(3202), + [aux_sym_preproc_if_token2] = ACTIONS(3202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3202), + [aux_sym_preproc_else_token1] = ACTIONS(3202), + [aux_sym_preproc_elif_token1] = ACTIONS(3202), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3202), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3202), + [sym_preproc_directive] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym___extension__] = ACTIONS(3202), + [anon_sym_typedef] = ACTIONS(3202), + [anon_sym_extern] = ACTIONS(3202), + [anon_sym___attribute__] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3204), + [anon_sym___declspec] = ACTIONS(3202), + [anon_sym___based] = ACTIONS(3202), + [anon_sym___cdecl] = ACTIONS(3202), + [anon_sym___clrcall] = ACTIONS(3202), + [anon_sym___stdcall] = ACTIONS(3202), + [anon_sym___fastcall] = ACTIONS(3202), + [anon_sym___thiscall] = ACTIONS(3202), + [anon_sym___vectorcall] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_signed] = ACTIONS(3202), + [anon_sym_unsigned] = ACTIONS(3202), + [anon_sym_long] = ACTIONS(3202), + [anon_sym_short] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_register] = ACTIONS(3202), + [anon_sym_inline] = ACTIONS(3202), + [anon_sym___inline] = ACTIONS(3202), + [anon_sym___inline__] = ACTIONS(3202), + [anon_sym___forceinline] = ACTIONS(3202), + [anon_sym_thread_local] = ACTIONS(3202), + [anon_sym___thread] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_constexpr] = ACTIONS(3202), + [anon_sym_volatile] = ACTIONS(3202), + [anon_sym_restrict] = ACTIONS(3202), + [anon_sym___restrict__] = ACTIONS(3202), + [anon_sym__Atomic] = ACTIONS(3202), + [anon_sym__Noreturn] = ACTIONS(3202), + [anon_sym_noreturn] = ACTIONS(3202), + [anon_sym_mutable] = ACTIONS(3202), + [anon_sym_constinit] = ACTIONS(3202), + [anon_sym_consteval] = ACTIONS(3202), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_union] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_case] = ACTIONS(3202), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_goto] = ACTIONS(3202), + [anon_sym_not] = ACTIONS(3202), + [anon_sym_compl] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3204), + [anon_sym_PLUS_PLUS] = ACTIONS(3204), + [anon_sym_sizeof] = ACTIONS(3202), + [anon_sym___alignof__] = ACTIONS(3202), + [anon_sym___alignof] = ACTIONS(3202), + [anon_sym__alignof] = ACTIONS(3202), + [anon_sym_alignof] = ACTIONS(3202), + [anon_sym__Alignof] = ACTIONS(3202), + [anon_sym_offsetof] = ACTIONS(3202), + [anon_sym__Generic] = ACTIONS(3202), + [anon_sym_asm] = ACTIONS(3202), + [anon_sym___asm__] = ACTIONS(3202), + [sym_number_literal] = ACTIONS(3204), + [anon_sym_L_SQUOTE] = ACTIONS(3204), + [anon_sym_u_SQUOTE] = ACTIONS(3204), + [anon_sym_U_SQUOTE] = ACTIONS(3204), + [anon_sym_u8_SQUOTE] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3204), + [anon_sym_L_DQUOTE] = ACTIONS(3204), + [anon_sym_u_DQUOTE] = ACTIONS(3204), + [anon_sym_U_DQUOTE] = ACTIONS(3204), + [anon_sym_u8_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(3204), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [anon_sym_NULL] = ACTIONS(3202), + [anon_sym_nullptr] = ACTIONS(3202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3202), + [anon_sym_decltype] = ACTIONS(3202), + [anon_sym_virtual] = ACTIONS(3202), + [anon_sym_alignas] = ACTIONS(3202), + [anon_sym_explicit] = ACTIONS(3202), + [anon_sym_typename] = ACTIONS(3202), + [anon_sym_template] = ACTIONS(3202), + [anon_sym_operator] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(3202), + [anon_sym_throw] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_using] = ACTIONS(3202), + [anon_sym_static_assert] = ACTIONS(3202), + [anon_sym_concept] = ACTIONS(3202), + [anon_sym_co_return] = ACTIONS(3202), + [anon_sym_co_yield] = ACTIONS(3202), + [anon_sym_R_DQUOTE] = ACTIONS(3204), + [anon_sym_LR_DQUOTE] = ACTIONS(3204), + [anon_sym_uR_DQUOTE] = ACTIONS(3204), + [anon_sym_UR_DQUOTE] = ACTIONS(3204), + [anon_sym_u8R_DQUOTE] = ACTIONS(3204), + [anon_sym_co_await] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_requires] = ACTIONS(3202), + [sym_this] = ACTIONS(3202), + }, + [408] = { + [sym_else_clause] = STATE(466), + [sym_identifier] = ACTIONS(2758), + [aux_sym_preproc_include_token1] = ACTIONS(2758), + [aux_sym_preproc_def_token1] = ACTIONS(2758), + [aux_sym_preproc_if_token1] = ACTIONS(2758), + [aux_sym_preproc_if_token2] = ACTIONS(2758), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2758), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2758), + [aux_sym_preproc_else_token1] = ACTIONS(2758), + [aux_sym_preproc_elif_token1] = ACTIONS(2758), + [sym_preproc_directive] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2760), + [anon_sym_BANG] = ACTIONS(2760), + [anon_sym_TILDE] = ACTIONS(2760), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_STAR] = ACTIONS(2760), + [anon_sym_AMP_AMP] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym___extension__] = ACTIONS(2758), + [anon_sym_typedef] = ACTIONS(2758), + [anon_sym_extern] = ACTIONS(2758), + [anon_sym___attribute__] = ACTIONS(2758), + [anon_sym_COLON_COLON] = ACTIONS(2760), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2760), + [anon_sym___declspec] = ACTIONS(2758), + [anon_sym___based] = ACTIONS(2758), + [anon_sym___cdecl] = ACTIONS(2758), + [anon_sym___clrcall] = ACTIONS(2758), + [anon_sym___stdcall] = ACTIONS(2758), + [anon_sym___fastcall] = ACTIONS(2758), + [anon_sym___thiscall] = ACTIONS(2758), + [anon_sym___vectorcall] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2760), + [anon_sym_signed] = ACTIONS(2758), + [anon_sym_unsigned] = ACTIONS(2758), + [anon_sym_long] = ACTIONS(2758), + [anon_sym_short] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_static] = ACTIONS(2758), + [anon_sym_register] = ACTIONS(2758), + [anon_sym_inline] = ACTIONS(2758), + [anon_sym___inline] = ACTIONS(2758), + [anon_sym___inline__] = ACTIONS(2758), + [anon_sym___forceinline] = ACTIONS(2758), + [anon_sym_thread_local] = ACTIONS(2758), + [anon_sym___thread] = ACTIONS(2758), + [anon_sym_const] = ACTIONS(2758), + [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_mutable] = ACTIONS(2758), + [anon_sym_constinit] = ACTIONS(2758), + [anon_sym_consteval] = ACTIONS(2758), + [sym_primitive_type] = ACTIONS(2758), + [anon_sym_enum] = ACTIONS(2758), + [anon_sym_class] = ACTIONS(2758), + [anon_sym_struct] = ACTIONS(2758), + [anon_sym_union] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_switch] = ACTIONS(2758), + [anon_sym_case] = ACTIONS(2758), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_break] = ACTIONS(2758), + [anon_sym_continue] = ACTIONS(2758), + [anon_sym_goto] = ACTIONS(2758), + [anon_sym_not] = ACTIONS(2758), + [anon_sym_compl] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2760), + [anon_sym_PLUS_PLUS] = ACTIONS(2760), + [anon_sym_sizeof] = ACTIONS(2758), + [anon_sym___alignof__] = ACTIONS(2758), + [anon_sym___alignof] = ACTIONS(2758), + [anon_sym__alignof] = ACTIONS(2758), + [anon_sym_alignof] = ACTIONS(2758), + [anon_sym__Alignof] = ACTIONS(2758), + [anon_sym_offsetof] = ACTIONS(2758), + [anon_sym__Generic] = ACTIONS(2758), + [anon_sym_asm] = ACTIONS(2758), + [anon_sym___asm__] = ACTIONS(2758), + [sym_number_literal] = ACTIONS(2760), + [anon_sym_L_SQUOTE] = ACTIONS(2760), + [anon_sym_u_SQUOTE] = ACTIONS(2760), + [anon_sym_U_SQUOTE] = ACTIONS(2760), + [anon_sym_u8_SQUOTE] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_L_DQUOTE] = ACTIONS(2760), + [anon_sym_u_DQUOTE] = ACTIONS(2760), + [anon_sym_U_DQUOTE] = ACTIONS(2760), + [anon_sym_u8_DQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2760), + [sym_true] = ACTIONS(2758), + [sym_false] = ACTIONS(2758), + [anon_sym_NULL] = ACTIONS(2758), + [anon_sym_nullptr] = ACTIONS(2758), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2758), + [anon_sym_decltype] = ACTIONS(2758), + [anon_sym_virtual] = ACTIONS(2758), + [anon_sym_alignas] = ACTIONS(2758), + [anon_sym_explicit] = ACTIONS(2758), + [anon_sym_typename] = ACTIONS(2758), + [anon_sym_template] = ACTIONS(2758), + [anon_sym_operator] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_delete] = ACTIONS(2758), + [anon_sym_throw] = ACTIONS(2758), + [anon_sym_namespace] = ACTIONS(2758), + [anon_sym_using] = ACTIONS(2758), + [anon_sym_static_assert] = ACTIONS(2758), + [anon_sym_concept] = ACTIONS(2758), + [anon_sym_co_return] = ACTIONS(2758), + [anon_sym_co_yield] = ACTIONS(2758), + [anon_sym_R_DQUOTE] = ACTIONS(2760), + [anon_sym_LR_DQUOTE] = ACTIONS(2760), + [anon_sym_uR_DQUOTE] = ACTIONS(2760), + [anon_sym_UR_DQUOTE] = ACTIONS(2760), + [anon_sym_u8R_DQUOTE] = ACTIONS(2760), + [anon_sym_co_await] = ACTIONS(2758), + [anon_sym_new] = ACTIONS(2758), + [anon_sym_requires] = ACTIONS(2758), + [sym_this] = ACTIONS(2758), + }, + [409] = { + [sym_type_qualifier] = STATE(3780), + [sym__type_specifier] = STATE(4440), + [sym_sized_type_specifier] = STATE(2799), + [sym_enum_specifier] = STATE(2799), + [sym_struct_specifier] = STATE(2799), + [sym_union_specifier] = STATE(2799), + [sym__expression] = STATE(3937), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_type_descriptor] = STATE(6296), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_placeholder_type_specifier] = STATE(2799), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2758), + [sym_class_specifier] = STATE(2799), + [sym__class_name] = STATE(6922), + [sym_dependent_type] = STATE(2799), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_type_parameter_pack_expansion] = STATE(6725), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5157), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3355), + [aux_sym__type_definition_type_repeat1] = STATE(3780), + [aux_sym_sized_type_specifier_repeat1] = STATE(2297), + [sym_identifier] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2018), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -107719,267 +112461,1067 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(2731), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(2733), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(2737), - [anon_sym_static_assert] = ACTIONS(2739), + [sym_primitive_type] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2934), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2938), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_GT2] = ACTIONS(3206), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [348] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_include_token1] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token2] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [aux_sym_preproc_else_token1] = ACTIONS(2194), - [aux_sym_preproc_elif_token1] = ACTIONS(2194), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym___cdecl] = ACTIONS(2194), - [anon_sym___clrcall] = ACTIONS(2194), - [anon_sym___stdcall] = ACTIONS(2194), - [anon_sym___fastcall] = ACTIONS(2194), - [anon_sym___thiscall] = ACTIONS(2194), - [anon_sym___vectorcall] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_goto] = ACTIONS(2194), - [anon_sym_not] = ACTIONS(2194), - [anon_sym_compl] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_sizeof] = ACTIONS(2194), - [anon_sym___alignof__] = ACTIONS(2194), - [anon_sym___alignof] = ACTIONS(2194), - [anon_sym__alignof] = ACTIONS(2194), - [anon_sym_alignof] = ACTIONS(2194), - [anon_sym__Alignof] = ACTIONS(2194), - [anon_sym_offsetof] = ACTIONS(2194), - [anon_sym__Generic] = ACTIONS(2194), - [anon_sym_asm] = ACTIONS(2194), - [anon_sym___asm__] = ACTIONS(2194), - [sym_number_literal] = ACTIONS(2192), - [anon_sym_L_SQUOTE] = ACTIONS(2192), - [anon_sym_u_SQUOTE] = ACTIONS(2192), - [anon_sym_U_SQUOTE] = ACTIONS(2192), - [anon_sym_u8_SQUOTE] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_L_DQUOTE] = ACTIONS(2192), - [anon_sym_u_DQUOTE] = ACTIONS(2192), - [anon_sym_U_DQUOTE] = ACTIONS(2192), - [anon_sym_u8_DQUOTE] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [anon_sym_NULL] = ACTIONS(2194), - [anon_sym_nullptr] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_delete] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - [anon_sym_concept] = ACTIONS(2194), - [anon_sym_co_return] = ACTIONS(2194), - [anon_sym_co_yield] = ACTIONS(2194), - [anon_sym_catch] = ACTIONS(2194), - [anon_sym_R_DQUOTE] = ACTIONS(2192), - [anon_sym_LR_DQUOTE] = ACTIONS(2192), - [anon_sym_uR_DQUOTE] = ACTIONS(2192), - [anon_sym_UR_DQUOTE] = ACTIONS(2192), - [anon_sym_u8R_DQUOTE] = ACTIONS(2192), - [anon_sym_co_await] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_requires] = ACTIONS(2194), - [sym_this] = ACTIONS(2194), + [410] = { + [sym_identifier] = ACTIONS(3208), + [aux_sym_preproc_include_token1] = ACTIONS(3208), + [aux_sym_preproc_def_token1] = ACTIONS(3208), + [aux_sym_preproc_if_token1] = ACTIONS(3208), + [aux_sym_preproc_if_token2] = ACTIONS(3208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3208), + [aux_sym_preproc_else_token1] = ACTIONS(3208), + [aux_sym_preproc_elif_token1] = ACTIONS(3208), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3208), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3208), + [sym_preproc_directive] = ACTIONS(3208), + [anon_sym_LPAREN2] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_AMP_AMP] = ACTIONS(3210), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym_SEMI] = ACTIONS(3210), + [anon_sym___extension__] = ACTIONS(3208), + [anon_sym_typedef] = ACTIONS(3208), + [anon_sym_extern] = ACTIONS(3208), + [anon_sym___attribute__] = ACTIONS(3208), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3210), + [anon_sym___declspec] = ACTIONS(3208), + [anon_sym___based] = ACTIONS(3208), + [anon_sym___cdecl] = ACTIONS(3208), + [anon_sym___clrcall] = ACTIONS(3208), + [anon_sym___stdcall] = ACTIONS(3208), + [anon_sym___fastcall] = ACTIONS(3208), + [anon_sym___thiscall] = ACTIONS(3208), + [anon_sym___vectorcall] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_signed] = ACTIONS(3208), + [anon_sym_unsigned] = ACTIONS(3208), + [anon_sym_long] = ACTIONS(3208), + [anon_sym_short] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_static] = ACTIONS(3208), + [anon_sym_register] = ACTIONS(3208), + [anon_sym_inline] = ACTIONS(3208), + [anon_sym___inline] = ACTIONS(3208), + [anon_sym___inline__] = ACTIONS(3208), + [anon_sym___forceinline] = ACTIONS(3208), + [anon_sym_thread_local] = ACTIONS(3208), + [anon_sym___thread] = ACTIONS(3208), + [anon_sym_const] = ACTIONS(3208), + [anon_sym_constexpr] = ACTIONS(3208), + [anon_sym_volatile] = ACTIONS(3208), + [anon_sym_restrict] = ACTIONS(3208), + [anon_sym___restrict__] = ACTIONS(3208), + [anon_sym__Atomic] = ACTIONS(3208), + [anon_sym__Noreturn] = ACTIONS(3208), + [anon_sym_noreturn] = ACTIONS(3208), + [anon_sym_mutable] = ACTIONS(3208), + [anon_sym_constinit] = ACTIONS(3208), + [anon_sym_consteval] = ACTIONS(3208), + [sym_primitive_type] = ACTIONS(3208), + [anon_sym_enum] = ACTIONS(3208), + [anon_sym_class] = ACTIONS(3208), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3208), + [anon_sym_if] = ACTIONS(3208), + [anon_sym_switch] = ACTIONS(3208), + [anon_sym_case] = ACTIONS(3208), + [anon_sym_default] = ACTIONS(3208), + [anon_sym_while] = ACTIONS(3208), + [anon_sym_do] = ACTIONS(3208), + [anon_sym_for] = ACTIONS(3208), + [anon_sym_return] = ACTIONS(3208), + [anon_sym_break] = ACTIONS(3208), + [anon_sym_continue] = ACTIONS(3208), + [anon_sym_goto] = ACTIONS(3208), + [anon_sym_not] = ACTIONS(3208), + [anon_sym_compl] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3210), + [anon_sym_sizeof] = ACTIONS(3208), + [anon_sym___alignof__] = ACTIONS(3208), + [anon_sym___alignof] = ACTIONS(3208), + [anon_sym__alignof] = ACTIONS(3208), + [anon_sym_alignof] = ACTIONS(3208), + [anon_sym__Alignof] = ACTIONS(3208), + [anon_sym_offsetof] = ACTIONS(3208), + [anon_sym__Generic] = ACTIONS(3208), + [anon_sym_asm] = ACTIONS(3208), + [anon_sym___asm__] = ACTIONS(3208), + [sym_number_literal] = ACTIONS(3210), + [anon_sym_L_SQUOTE] = ACTIONS(3210), + [anon_sym_u_SQUOTE] = ACTIONS(3210), + [anon_sym_U_SQUOTE] = ACTIONS(3210), + [anon_sym_u8_SQUOTE] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3210), + [anon_sym_L_DQUOTE] = ACTIONS(3210), + [anon_sym_u_DQUOTE] = ACTIONS(3210), + [anon_sym_U_DQUOTE] = ACTIONS(3210), + [anon_sym_u8_DQUOTE] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(3210), + [sym_true] = ACTIONS(3208), + [sym_false] = ACTIONS(3208), + [anon_sym_NULL] = ACTIONS(3208), + [anon_sym_nullptr] = ACTIONS(3208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3208), + [anon_sym_decltype] = ACTIONS(3208), + [anon_sym_virtual] = ACTIONS(3208), + [anon_sym_alignas] = ACTIONS(3208), + [anon_sym_explicit] = ACTIONS(3208), + [anon_sym_typename] = ACTIONS(3208), + [anon_sym_template] = ACTIONS(3208), + [anon_sym_operator] = ACTIONS(3208), + [anon_sym_try] = ACTIONS(3208), + [anon_sym_delete] = ACTIONS(3208), + [anon_sym_throw] = ACTIONS(3208), + [anon_sym_namespace] = ACTIONS(3208), + [anon_sym_using] = ACTIONS(3208), + [anon_sym_static_assert] = ACTIONS(3208), + [anon_sym_concept] = ACTIONS(3208), + [anon_sym_co_return] = ACTIONS(3208), + [anon_sym_co_yield] = ACTIONS(3208), + [anon_sym_R_DQUOTE] = ACTIONS(3210), + [anon_sym_LR_DQUOTE] = ACTIONS(3210), + [anon_sym_uR_DQUOTE] = ACTIONS(3210), + [anon_sym_UR_DQUOTE] = ACTIONS(3210), + [anon_sym_u8R_DQUOTE] = ACTIONS(3210), + [anon_sym_co_await] = ACTIONS(3208), + [anon_sym_new] = ACTIONS(3208), + [anon_sym_requires] = ACTIONS(3208), + [sym_this] = ACTIONS(3208), }, - [349] = { - [sym_preproc_def] = STATE(747), - [sym_preproc_function_def] = STATE(747), - [sym_preproc_call] = STATE(747), - [sym_preproc_elifdef] = STATE(8869), - [sym_preproc_if_in_field_declaration_list] = STATE(747), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(747), - [sym_preproc_else_in_field_declaration_list] = STATE(8869), - [sym_preproc_elif_in_field_declaration_list] = STATE(8869), - [sym_type_definition] = STATE(747), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6408), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6925), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(747), - [sym_field_declaration] = STATE(747), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(747), - [sym_operator_cast] = STATE(7495), - [sym_inline_method_definition] = STATE(747), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(747), - [sym_operator_cast_declaration] = STATE(747), - [sym_constructor_or_destructor_definition] = STATE(747), - [sym_constructor_or_destructor_declaration] = STATE(747), - [sym_friend_declaration] = STATE(747), - [sym_access_specifier] = STATE(9326), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(747), - [sym_alias_declaration] = STATE(747), - [sym_static_assert_declaration] = STATE(747), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7495), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(747), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2689), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2741), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), - [aux_sym_preproc_else_token1] = ACTIONS(2697), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [aux_sym_preproc_elifdef_token1] = ACTIONS(175), - [aux_sym_preproc_elifdef_token2] = ACTIONS(175), - [sym_preproc_directive] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2713), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), + [411] = { + [sym_identifier] = ACTIONS(3212), + [aux_sym_preproc_include_token1] = ACTIONS(3212), + [aux_sym_preproc_def_token1] = ACTIONS(3212), + [aux_sym_preproc_if_token1] = ACTIONS(3212), + [aux_sym_preproc_if_token2] = ACTIONS(3212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3212), + [aux_sym_preproc_else_token1] = ACTIONS(3212), + [aux_sym_preproc_elif_token1] = ACTIONS(3212), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3212), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3212), + [sym_preproc_directive] = ACTIONS(3212), + [anon_sym_LPAREN2] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3214), + [anon_sym_AMP_AMP] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_SEMI] = ACTIONS(3214), + [anon_sym___extension__] = ACTIONS(3212), + [anon_sym_typedef] = ACTIONS(3212), + [anon_sym_extern] = ACTIONS(3212), + [anon_sym___attribute__] = ACTIONS(3212), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3214), + [anon_sym___declspec] = ACTIONS(3212), + [anon_sym___based] = ACTIONS(3212), + [anon_sym___cdecl] = ACTIONS(3212), + [anon_sym___clrcall] = ACTIONS(3212), + [anon_sym___stdcall] = ACTIONS(3212), + [anon_sym___fastcall] = ACTIONS(3212), + [anon_sym___thiscall] = ACTIONS(3212), + [anon_sym___vectorcall] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_signed] = ACTIONS(3212), + [anon_sym_unsigned] = ACTIONS(3212), + [anon_sym_long] = ACTIONS(3212), + [anon_sym_short] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_static] = ACTIONS(3212), + [anon_sym_register] = ACTIONS(3212), + [anon_sym_inline] = ACTIONS(3212), + [anon_sym___inline] = ACTIONS(3212), + [anon_sym___inline__] = ACTIONS(3212), + [anon_sym___forceinline] = ACTIONS(3212), + [anon_sym_thread_local] = ACTIONS(3212), + [anon_sym___thread] = ACTIONS(3212), + [anon_sym_const] = ACTIONS(3212), + [anon_sym_constexpr] = ACTIONS(3212), + [anon_sym_volatile] = ACTIONS(3212), + [anon_sym_restrict] = ACTIONS(3212), + [anon_sym___restrict__] = ACTIONS(3212), + [anon_sym__Atomic] = ACTIONS(3212), + [anon_sym__Noreturn] = ACTIONS(3212), + [anon_sym_noreturn] = ACTIONS(3212), + [anon_sym_mutable] = ACTIONS(3212), + [anon_sym_constinit] = ACTIONS(3212), + [anon_sym_consteval] = ACTIONS(3212), + [sym_primitive_type] = ACTIONS(3212), + [anon_sym_enum] = ACTIONS(3212), + [anon_sym_class] = ACTIONS(3212), + [anon_sym_struct] = ACTIONS(3212), + [anon_sym_union] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_switch] = ACTIONS(3212), + [anon_sym_case] = ACTIONS(3212), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_break] = ACTIONS(3212), + [anon_sym_continue] = ACTIONS(3212), + [anon_sym_goto] = ACTIONS(3212), + [anon_sym_not] = ACTIONS(3212), + [anon_sym_compl] = ACTIONS(3212), + [anon_sym_DASH_DASH] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3214), + [anon_sym_sizeof] = ACTIONS(3212), + [anon_sym___alignof__] = ACTIONS(3212), + [anon_sym___alignof] = ACTIONS(3212), + [anon_sym__alignof] = ACTIONS(3212), + [anon_sym_alignof] = ACTIONS(3212), + [anon_sym__Alignof] = ACTIONS(3212), + [anon_sym_offsetof] = ACTIONS(3212), + [anon_sym__Generic] = ACTIONS(3212), + [anon_sym_asm] = ACTIONS(3212), + [anon_sym___asm__] = ACTIONS(3212), + [sym_number_literal] = ACTIONS(3214), + [anon_sym_L_SQUOTE] = ACTIONS(3214), + [anon_sym_u_SQUOTE] = ACTIONS(3214), + [anon_sym_U_SQUOTE] = ACTIONS(3214), + [anon_sym_u8_SQUOTE] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3214), + [anon_sym_L_DQUOTE] = ACTIONS(3214), + [anon_sym_u_DQUOTE] = ACTIONS(3214), + [anon_sym_U_DQUOTE] = ACTIONS(3214), + [anon_sym_u8_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE] = ACTIONS(3214), + [sym_true] = ACTIONS(3212), + [sym_false] = ACTIONS(3212), + [anon_sym_NULL] = ACTIONS(3212), + [anon_sym_nullptr] = ACTIONS(3212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3212), + [anon_sym_decltype] = ACTIONS(3212), + [anon_sym_virtual] = ACTIONS(3212), + [anon_sym_alignas] = ACTIONS(3212), + [anon_sym_explicit] = ACTIONS(3212), + [anon_sym_typename] = ACTIONS(3212), + [anon_sym_template] = ACTIONS(3212), + [anon_sym_operator] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_delete] = ACTIONS(3212), + [anon_sym_throw] = ACTIONS(3212), + [anon_sym_namespace] = ACTIONS(3212), + [anon_sym_using] = ACTIONS(3212), + [anon_sym_static_assert] = ACTIONS(3212), + [anon_sym_concept] = ACTIONS(3212), + [anon_sym_co_return] = ACTIONS(3212), + [anon_sym_co_yield] = ACTIONS(3212), + [anon_sym_R_DQUOTE] = ACTIONS(3214), + [anon_sym_LR_DQUOTE] = ACTIONS(3214), + [anon_sym_uR_DQUOTE] = ACTIONS(3214), + [anon_sym_UR_DQUOTE] = ACTIONS(3214), + [anon_sym_u8R_DQUOTE] = ACTIONS(3214), + [anon_sym_co_await] = ACTIONS(3212), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_requires] = ACTIONS(3212), + [sym_this] = ACTIONS(3212), + }, + [412] = { + [sym_identifier] = ACTIONS(2752), + [aux_sym_preproc_include_token1] = ACTIONS(2752), + [aux_sym_preproc_def_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token2] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2752), + [aux_sym_preproc_else_token1] = ACTIONS(2752), + [aux_sym_preproc_elif_token1] = ACTIONS(2752), + [sym_preproc_directive] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_BANG] = ACTIONS(2754), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym___extension__] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym___attribute__] = ACTIONS(2752), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2754), + [anon_sym___declspec] = ACTIONS(2752), + [anon_sym___based] = ACTIONS(2752), + [anon_sym___cdecl] = ACTIONS(2752), + [anon_sym___clrcall] = ACTIONS(2752), + [anon_sym___stdcall] = ACTIONS(2752), + [anon_sym___fastcall] = ACTIONS(2752), + [anon_sym___thiscall] = ACTIONS(2752), + [anon_sym___vectorcall] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_signed] = ACTIONS(2752), + [anon_sym_unsigned] = ACTIONS(2752), + [anon_sym_long] = ACTIONS(2752), + [anon_sym_short] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_register] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym___inline] = ACTIONS(2752), + [anon_sym___inline__] = ACTIONS(2752), + [anon_sym___forceinline] = ACTIONS(2752), + [anon_sym_thread_local] = ACTIONS(2752), + [anon_sym___thread] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_constexpr] = ACTIONS(2752), + [anon_sym_volatile] = ACTIONS(2752), + [anon_sym_restrict] = ACTIONS(2752), + [anon_sym___restrict__] = ACTIONS(2752), + [anon_sym__Atomic] = ACTIONS(2752), + [anon_sym__Noreturn] = ACTIONS(2752), + [anon_sym_noreturn] = ACTIONS(2752), + [anon_sym_mutable] = ACTIONS(2752), + [anon_sym_constinit] = ACTIONS(2752), + [anon_sym_consteval] = ACTIONS(2752), + [sym_primitive_type] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_class] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_else] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2752), + [anon_sym_case] = ACTIONS(2752), + [anon_sym_default] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_goto] = ACTIONS(2752), + [anon_sym_not] = ACTIONS(2752), + [anon_sym_compl] = ACTIONS(2752), + [anon_sym_DASH_DASH] = ACTIONS(2754), + [anon_sym_PLUS_PLUS] = ACTIONS(2754), + [anon_sym_sizeof] = ACTIONS(2752), + [anon_sym___alignof__] = ACTIONS(2752), + [anon_sym___alignof] = ACTIONS(2752), + [anon_sym__alignof] = ACTIONS(2752), + [anon_sym_alignof] = ACTIONS(2752), + [anon_sym__Alignof] = ACTIONS(2752), + [anon_sym_offsetof] = ACTIONS(2752), + [anon_sym__Generic] = ACTIONS(2752), + [anon_sym_asm] = ACTIONS(2752), + [anon_sym___asm__] = ACTIONS(2752), + [sym_number_literal] = ACTIONS(2754), + [anon_sym_L_SQUOTE] = ACTIONS(2754), + [anon_sym_u_SQUOTE] = ACTIONS(2754), + [anon_sym_U_SQUOTE] = ACTIONS(2754), + [anon_sym_u8_SQUOTE] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_L_DQUOTE] = ACTIONS(2754), + [anon_sym_u_DQUOTE] = ACTIONS(2754), + [anon_sym_U_DQUOTE] = ACTIONS(2754), + [anon_sym_u8_DQUOTE] = ACTIONS(2754), + [anon_sym_DQUOTE] = ACTIONS(2754), + [sym_true] = ACTIONS(2752), + [sym_false] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_nullptr] = ACTIONS(2752), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2752), + [anon_sym_decltype] = ACTIONS(2752), + [anon_sym_virtual] = ACTIONS(2752), + [anon_sym_alignas] = ACTIONS(2752), + [anon_sym_explicit] = ACTIONS(2752), + [anon_sym_typename] = ACTIONS(2752), + [anon_sym_template] = ACTIONS(2752), + [anon_sym_operator] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_delete] = ACTIONS(2752), + [anon_sym_throw] = ACTIONS(2752), + [anon_sym_namespace] = ACTIONS(2752), + [anon_sym_using] = ACTIONS(2752), + [anon_sym_static_assert] = ACTIONS(2752), + [anon_sym_concept] = ACTIONS(2752), + [anon_sym_co_return] = ACTIONS(2752), + [anon_sym_co_yield] = ACTIONS(2752), + [anon_sym_catch] = ACTIONS(2752), + [anon_sym_R_DQUOTE] = ACTIONS(2754), + [anon_sym_LR_DQUOTE] = ACTIONS(2754), + [anon_sym_uR_DQUOTE] = ACTIONS(2754), + [anon_sym_UR_DQUOTE] = ACTIONS(2754), + [anon_sym_u8R_DQUOTE] = ACTIONS(2754), + [anon_sym_co_await] = ACTIONS(2752), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_requires] = ACTIONS(2752), + [sym_this] = ACTIONS(2752), + }, + [413] = { + [sym_identifier] = ACTIONS(3216), + [aux_sym_preproc_include_token1] = ACTIONS(3216), + [aux_sym_preproc_def_token1] = ACTIONS(3216), + [aux_sym_preproc_if_token1] = ACTIONS(3216), + [aux_sym_preproc_if_token2] = ACTIONS(3216), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3216), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3216), + [aux_sym_preproc_else_token1] = ACTIONS(3216), + [aux_sym_preproc_elif_token1] = ACTIONS(3216), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3216), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3216), + [sym_preproc_directive] = ACTIONS(3216), + [anon_sym_LPAREN2] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym___extension__] = ACTIONS(3216), + [anon_sym_typedef] = ACTIONS(3216), + [anon_sym_extern] = ACTIONS(3216), + [anon_sym___attribute__] = ACTIONS(3216), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3218), + [anon_sym___declspec] = ACTIONS(3216), + [anon_sym___based] = ACTIONS(3216), + [anon_sym___cdecl] = ACTIONS(3216), + [anon_sym___clrcall] = ACTIONS(3216), + [anon_sym___stdcall] = ACTIONS(3216), + [anon_sym___fastcall] = ACTIONS(3216), + [anon_sym___thiscall] = ACTIONS(3216), + [anon_sym___vectorcall] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_signed] = ACTIONS(3216), + [anon_sym_unsigned] = ACTIONS(3216), + [anon_sym_long] = ACTIONS(3216), + [anon_sym_short] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_static] = ACTIONS(3216), + [anon_sym_register] = ACTIONS(3216), + [anon_sym_inline] = ACTIONS(3216), + [anon_sym___inline] = ACTIONS(3216), + [anon_sym___inline__] = ACTIONS(3216), + [anon_sym___forceinline] = ACTIONS(3216), + [anon_sym_thread_local] = ACTIONS(3216), + [anon_sym___thread] = ACTIONS(3216), + [anon_sym_const] = ACTIONS(3216), + [anon_sym_constexpr] = ACTIONS(3216), + [anon_sym_volatile] = ACTIONS(3216), + [anon_sym_restrict] = ACTIONS(3216), + [anon_sym___restrict__] = ACTIONS(3216), + [anon_sym__Atomic] = ACTIONS(3216), + [anon_sym__Noreturn] = ACTIONS(3216), + [anon_sym_noreturn] = ACTIONS(3216), + [anon_sym_mutable] = ACTIONS(3216), + [anon_sym_constinit] = ACTIONS(3216), + [anon_sym_consteval] = ACTIONS(3216), + [sym_primitive_type] = ACTIONS(3216), + [anon_sym_enum] = ACTIONS(3216), + [anon_sym_class] = ACTIONS(3216), + [anon_sym_struct] = ACTIONS(3216), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_if] = ACTIONS(3216), + [anon_sym_switch] = ACTIONS(3216), + [anon_sym_case] = ACTIONS(3216), + [anon_sym_default] = ACTIONS(3216), + [anon_sym_while] = ACTIONS(3216), + [anon_sym_do] = ACTIONS(3216), + [anon_sym_for] = ACTIONS(3216), + [anon_sym_return] = ACTIONS(3216), + [anon_sym_break] = ACTIONS(3216), + [anon_sym_continue] = ACTIONS(3216), + [anon_sym_goto] = ACTIONS(3216), + [anon_sym_not] = ACTIONS(3216), + [anon_sym_compl] = ACTIONS(3216), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_sizeof] = ACTIONS(3216), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3216), + [anon_sym__Generic] = ACTIONS(3216), + [anon_sym_asm] = ACTIONS(3216), + [anon_sym___asm__] = ACTIONS(3216), + [sym_number_literal] = ACTIONS(3218), + [anon_sym_L_SQUOTE] = ACTIONS(3218), + [anon_sym_u_SQUOTE] = ACTIONS(3218), + [anon_sym_U_SQUOTE] = ACTIONS(3218), + [anon_sym_u8_SQUOTE] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3218), + [anon_sym_L_DQUOTE] = ACTIONS(3218), + [anon_sym_u_DQUOTE] = ACTIONS(3218), + [anon_sym_U_DQUOTE] = ACTIONS(3218), + [anon_sym_u8_DQUOTE] = ACTIONS(3218), + [anon_sym_DQUOTE] = ACTIONS(3218), + [sym_true] = ACTIONS(3216), + [sym_false] = ACTIONS(3216), + [anon_sym_NULL] = ACTIONS(3216), + [anon_sym_nullptr] = ACTIONS(3216), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3216), + [anon_sym_decltype] = ACTIONS(3216), + [anon_sym_virtual] = ACTIONS(3216), + [anon_sym_alignas] = ACTIONS(3216), + [anon_sym_explicit] = ACTIONS(3216), + [anon_sym_typename] = ACTIONS(3216), + [anon_sym_template] = ACTIONS(3216), + [anon_sym_operator] = ACTIONS(3216), + [anon_sym_try] = ACTIONS(3216), + [anon_sym_delete] = ACTIONS(3216), + [anon_sym_throw] = ACTIONS(3216), + [anon_sym_namespace] = ACTIONS(3216), + [anon_sym_using] = ACTIONS(3216), + [anon_sym_static_assert] = ACTIONS(3216), + [anon_sym_concept] = ACTIONS(3216), + [anon_sym_co_return] = ACTIONS(3216), + [anon_sym_co_yield] = ACTIONS(3216), + [anon_sym_R_DQUOTE] = ACTIONS(3218), + [anon_sym_LR_DQUOTE] = ACTIONS(3218), + [anon_sym_uR_DQUOTE] = ACTIONS(3218), + [anon_sym_UR_DQUOTE] = ACTIONS(3218), + [anon_sym_u8R_DQUOTE] = ACTIONS(3218), + [anon_sym_co_await] = ACTIONS(3216), + [anon_sym_new] = ACTIONS(3216), + [anon_sym_requires] = ACTIONS(3216), + [sym_this] = ACTIONS(3216), + }, + [414] = { + [sym_catch_clause] = STATE(415), + [aux_sym_constructor_try_statement_repeat1] = STATE(415), + [sym_identifier] = ACTIONS(2212), + [aux_sym_preproc_include_token1] = ACTIONS(2212), + [aux_sym_preproc_def_token1] = ACTIONS(2212), + [aux_sym_preproc_if_token1] = ACTIONS(2212), + [aux_sym_preproc_if_token2] = ACTIONS(2212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2212), + [sym_preproc_directive] = ACTIONS(2212), + [anon_sym_LPAREN2] = ACTIONS(2214), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym___extension__] = ACTIONS(2212), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_extern] = ACTIONS(2212), + [anon_sym___attribute__] = ACTIONS(2212), + [anon_sym_COLON_COLON] = ACTIONS(2214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [anon_sym___declspec] = ACTIONS(2212), + [anon_sym___based] = ACTIONS(2212), + [anon_sym___cdecl] = ACTIONS(2212), + [anon_sym___clrcall] = ACTIONS(2212), + [anon_sym___stdcall] = ACTIONS(2212), + [anon_sym___fastcall] = ACTIONS(2212), + [anon_sym___thiscall] = ACTIONS(2212), + [anon_sym___vectorcall] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_signed] = ACTIONS(2212), + [anon_sym_unsigned] = ACTIONS(2212), + [anon_sym_long] = ACTIONS(2212), + [anon_sym_short] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_register] = ACTIONS(2212), + [anon_sym_inline] = ACTIONS(2212), + [anon_sym___inline] = ACTIONS(2212), + [anon_sym___inline__] = ACTIONS(2212), + [anon_sym___forceinline] = ACTIONS(2212), + [anon_sym_thread_local] = ACTIONS(2212), + [anon_sym___thread] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_constexpr] = ACTIONS(2212), + [anon_sym_volatile] = ACTIONS(2212), + [anon_sym_restrict] = ACTIONS(2212), + [anon_sym___restrict__] = ACTIONS(2212), + [anon_sym__Atomic] = ACTIONS(2212), + [anon_sym__Noreturn] = ACTIONS(2212), + [anon_sym_noreturn] = ACTIONS(2212), + [anon_sym_mutable] = ACTIONS(2212), + [anon_sym_constinit] = ACTIONS(2212), + [anon_sym_consteval] = ACTIONS(2212), + [sym_primitive_type] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_struct] = ACTIONS(2212), + [anon_sym_union] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_else] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_case] = ACTIONS(2212), + [anon_sym_default] = ACTIONS(2212), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_goto] = ACTIONS(2212), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2214), + [anon_sym_PLUS_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2212), + [anon_sym___alignof__] = ACTIONS(2212), + [anon_sym___alignof] = ACTIONS(2212), + [anon_sym__alignof] = ACTIONS(2212), + [anon_sym_alignof] = ACTIONS(2212), + [anon_sym__Alignof] = ACTIONS(2212), + [anon_sym_offsetof] = ACTIONS(2212), + [anon_sym__Generic] = ACTIONS(2212), + [anon_sym_asm] = ACTIONS(2212), + [anon_sym___asm__] = ACTIONS(2212), + [sym_number_literal] = ACTIONS(2214), + [anon_sym_L_SQUOTE] = ACTIONS(2214), + [anon_sym_u_SQUOTE] = ACTIONS(2214), + [anon_sym_U_SQUOTE] = ACTIONS(2214), + [anon_sym_u8_SQUOTE] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2214), + [anon_sym_L_DQUOTE] = ACTIONS(2214), + [anon_sym_u_DQUOTE] = ACTIONS(2214), + [anon_sym_U_DQUOTE] = ACTIONS(2214), + [anon_sym_u8_DQUOTE] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2214), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [anon_sym_NULL] = ACTIONS(2212), + [anon_sym_nullptr] = ACTIONS(2212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2212), + [anon_sym_decltype] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(2212), + [anon_sym_alignas] = ACTIONS(2212), + [anon_sym_explicit] = ACTIONS(2212), + [anon_sym_typename] = ACTIONS(2212), + [anon_sym_template] = ACTIONS(2212), + [anon_sym_operator] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_static_assert] = ACTIONS(2212), + [anon_sym_concept] = ACTIONS(2212), + [anon_sym_co_return] = ACTIONS(2212), + [anon_sym_co_yield] = ACTIONS(2212), + [anon_sym_catch] = ACTIONS(3220), + [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(2212), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_requires] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), + }, + [415] = { + [sym_catch_clause] = STATE(415), + [aux_sym_constructor_try_statement_repeat1] = STATE(415), + [sym_identifier] = ACTIONS(2218), + [aux_sym_preproc_include_token1] = ACTIONS(2218), + [aux_sym_preproc_def_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token2] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2218), + [sym_preproc_directive] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_PLUS] = ACTIONS(2218), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP_AMP] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2218), + [anon_sym_typedef] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym___attribute__] = ACTIONS(2218), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2220), + [anon_sym___declspec] = ACTIONS(2218), + [anon_sym___based] = ACTIONS(2218), + [anon_sym___cdecl] = ACTIONS(2218), + [anon_sym___clrcall] = ACTIONS(2218), + [anon_sym___stdcall] = ACTIONS(2218), + [anon_sym___fastcall] = ACTIONS(2218), + [anon_sym___thiscall] = ACTIONS(2218), + [anon_sym___vectorcall] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_signed] = ACTIONS(2218), + [anon_sym_unsigned] = ACTIONS(2218), + [anon_sym_long] = ACTIONS(2218), + [anon_sym_short] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_inline] = ACTIONS(2218), + [anon_sym___inline] = ACTIONS(2218), + [anon_sym___inline__] = ACTIONS(2218), + [anon_sym___forceinline] = ACTIONS(2218), + [anon_sym_thread_local] = ACTIONS(2218), + [anon_sym___thread] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_constexpr] = ACTIONS(2218), + [anon_sym_volatile] = ACTIONS(2218), + [anon_sym_restrict] = ACTIONS(2218), + [anon_sym___restrict__] = ACTIONS(2218), + [anon_sym__Atomic] = ACTIONS(2218), + [anon_sym__Noreturn] = ACTIONS(2218), + [anon_sym_noreturn] = ACTIONS(2218), + [anon_sym_mutable] = ACTIONS(2218), + [anon_sym_constinit] = ACTIONS(2218), + [anon_sym_consteval] = ACTIONS(2218), + [sym_primitive_type] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_class] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_else] = ACTIONS(2218), + [anon_sym_switch] = ACTIONS(2218), + [anon_sym_case] = ACTIONS(2218), + [anon_sym_default] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_do] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_goto] = ACTIONS(2218), + [anon_sym_not] = ACTIONS(2218), + [anon_sym_compl] = ACTIONS(2218), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(2218), + [anon_sym___alignof__] = ACTIONS(2218), + [anon_sym___alignof] = ACTIONS(2218), + [anon_sym__alignof] = ACTIONS(2218), + [anon_sym_alignof] = ACTIONS(2218), + [anon_sym__Alignof] = ACTIONS(2218), + [anon_sym_offsetof] = ACTIONS(2218), + [anon_sym__Generic] = ACTIONS(2218), + [anon_sym_asm] = ACTIONS(2218), + [anon_sym___asm__] = ACTIONS(2218), + [sym_number_literal] = ACTIONS(2220), + [anon_sym_L_SQUOTE] = ACTIONS(2220), + [anon_sym_u_SQUOTE] = ACTIONS(2220), + [anon_sym_U_SQUOTE] = ACTIONS(2220), + [anon_sym_u8_SQUOTE] = ACTIONS(2220), + [anon_sym_SQUOTE] = ACTIONS(2220), + [anon_sym_L_DQUOTE] = ACTIONS(2220), + [anon_sym_u_DQUOTE] = ACTIONS(2220), + [anon_sym_U_DQUOTE] = ACTIONS(2220), + [anon_sym_u8_DQUOTE] = ACTIONS(2220), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_true] = ACTIONS(2218), + [sym_false] = ACTIONS(2218), + [anon_sym_NULL] = ACTIONS(2218), + [anon_sym_nullptr] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2218), + [anon_sym_virtual] = ACTIONS(2218), + [anon_sym_alignas] = ACTIONS(2218), + [anon_sym_explicit] = ACTIONS(2218), + [anon_sym_typename] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_operator] = ACTIONS(2218), + [anon_sym_try] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(2218), + [anon_sym_throw] = ACTIONS(2218), + [anon_sym_namespace] = ACTIONS(2218), + [anon_sym_using] = ACTIONS(2218), + [anon_sym_static_assert] = ACTIONS(2218), + [anon_sym_concept] = ACTIONS(2218), + [anon_sym_co_return] = ACTIONS(2218), + [anon_sym_co_yield] = ACTIONS(2218), + [anon_sym_catch] = ACTIONS(3222), + [anon_sym_R_DQUOTE] = ACTIONS(2220), + [anon_sym_LR_DQUOTE] = ACTIONS(2220), + [anon_sym_uR_DQUOTE] = ACTIONS(2220), + [anon_sym_UR_DQUOTE] = ACTIONS(2220), + [anon_sym_u8R_DQUOTE] = ACTIONS(2220), + [anon_sym_co_await] = ACTIONS(2218), + [anon_sym_new] = ACTIONS(2218), + [anon_sym_requires] = ACTIONS(2218), + [sym_this] = ACTIONS(2218), + }, + [416] = { + [sym_catch_clause] = STATE(393), + [aux_sym_constructor_try_statement_repeat1] = STATE(393), + [ts_builtin_sym_end] = ACTIONS(2214), + [sym_identifier] = ACTIONS(2212), + [aux_sym_preproc_include_token1] = ACTIONS(2212), + [aux_sym_preproc_def_token1] = ACTIONS(2212), + [aux_sym_preproc_if_token1] = ACTIONS(2212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2212), + [sym_preproc_directive] = ACTIONS(2212), + [anon_sym_LPAREN2] = ACTIONS(2214), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym___extension__] = ACTIONS(2212), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_extern] = ACTIONS(2212), + [anon_sym___attribute__] = ACTIONS(2212), + [anon_sym_COLON_COLON] = ACTIONS(2214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [anon_sym___declspec] = ACTIONS(2212), + [anon_sym___based] = ACTIONS(2212), + [anon_sym___cdecl] = ACTIONS(2212), + [anon_sym___clrcall] = ACTIONS(2212), + [anon_sym___stdcall] = ACTIONS(2212), + [anon_sym___fastcall] = ACTIONS(2212), + [anon_sym___thiscall] = ACTIONS(2212), + [anon_sym___vectorcall] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_signed] = ACTIONS(2212), + [anon_sym_unsigned] = ACTIONS(2212), + [anon_sym_long] = ACTIONS(2212), + [anon_sym_short] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_register] = ACTIONS(2212), + [anon_sym_inline] = ACTIONS(2212), + [anon_sym___inline] = ACTIONS(2212), + [anon_sym___inline__] = ACTIONS(2212), + [anon_sym___forceinline] = ACTIONS(2212), + [anon_sym_thread_local] = ACTIONS(2212), + [anon_sym___thread] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_constexpr] = ACTIONS(2212), + [anon_sym_volatile] = ACTIONS(2212), + [anon_sym_restrict] = ACTIONS(2212), + [anon_sym___restrict__] = ACTIONS(2212), + [anon_sym__Atomic] = ACTIONS(2212), + [anon_sym__Noreturn] = ACTIONS(2212), + [anon_sym_noreturn] = ACTIONS(2212), + [anon_sym_mutable] = ACTIONS(2212), + [anon_sym_constinit] = ACTIONS(2212), + [anon_sym_consteval] = ACTIONS(2212), + [sym_primitive_type] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_struct] = ACTIONS(2212), + [anon_sym_union] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_else] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_case] = ACTIONS(2212), + [anon_sym_default] = ACTIONS(2212), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_goto] = ACTIONS(2212), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2214), + [anon_sym_PLUS_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2212), + [anon_sym___alignof__] = ACTIONS(2212), + [anon_sym___alignof] = ACTIONS(2212), + [anon_sym__alignof] = ACTIONS(2212), + [anon_sym_alignof] = ACTIONS(2212), + [anon_sym__Alignof] = ACTIONS(2212), + [anon_sym_offsetof] = ACTIONS(2212), + [anon_sym__Generic] = ACTIONS(2212), + [anon_sym_asm] = ACTIONS(2212), + [anon_sym___asm__] = ACTIONS(2212), + [sym_number_literal] = ACTIONS(2214), + [anon_sym_L_SQUOTE] = ACTIONS(2214), + [anon_sym_u_SQUOTE] = ACTIONS(2214), + [anon_sym_U_SQUOTE] = ACTIONS(2214), + [anon_sym_u8_SQUOTE] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2214), + [anon_sym_L_DQUOTE] = ACTIONS(2214), + [anon_sym_u_DQUOTE] = ACTIONS(2214), + [anon_sym_U_DQUOTE] = ACTIONS(2214), + [anon_sym_u8_DQUOTE] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2214), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [anon_sym_NULL] = ACTIONS(2212), + [anon_sym_nullptr] = ACTIONS(2212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2212), + [anon_sym_decltype] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(2212), + [anon_sym_alignas] = ACTIONS(2212), + [anon_sym_explicit] = ACTIONS(2212), + [anon_sym_typename] = ACTIONS(2212), + [anon_sym_template] = ACTIONS(2212), + [anon_sym_operator] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_static_assert] = ACTIONS(2212), + [anon_sym_concept] = ACTIONS(2212), + [anon_sym_co_return] = ACTIONS(2212), + [anon_sym_co_yield] = ACTIONS(2212), + [anon_sym_catch] = ACTIONS(3225), + [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(2212), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_requires] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), + }, + [417] = { + [sym_type_qualifier] = STATE(3780), + [sym__type_specifier] = STATE(4440), + [sym_sized_type_specifier] = STATE(2799), + [sym_enum_specifier] = STATE(2799), + [sym_struct_specifier] = STATE(2799), + [sym_union_specifier] = STATE(2799), + [sym__expression] = STATE(3943), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_type_descriptor] = STATE(6312), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_placeholder_type_specifier] = STATE(2799), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2758), + [sym_class_specifier] = STATE(2799), + [sym__class_name] = STATE(6922), + [sym_dependent_type] = STATE(2799), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_type_parameter_pack_expansion] = STATE(6828), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5157), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3355), + [aux_sym__type_definition_type_repeat1] = STATE(3780), + [aux_sym_sized_type_specifier_repeat1] = STATE(2297), + [sym_identifier] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2018), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -107991,267 +113533,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(2731), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(2733), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(2737), - [anon_sym_static_assert] = ACTIONS(2739), + [sym_primitive_type] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2934), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2938), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_GT2] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [350] = { - [sym_catch_clause] = STATE(350), - [aux_sym_constructor_try_statement_repeat1] = STATE(350), - [sym_identifier] = ACTIONS(2230), - [aux_sym_preproc_include_token1] = ACTIONS(2230), - [aux_sym_preproc_def_token1] = ACTIONS(2230), - [aux_sym_preproc_if_token1] = ACTIONS(2230), - [aux_sym_preproc_if_token2] = ACTIONS(2230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2230), - [aux_sym_preproc_else_token1] = ACTIONS(2230), - [aux_sym_preproc_elif_token1] = ACTIONS(2230), - [sym_preproc_directive] = ACTIONS(2230), - [anon_sym_LPAREN2] = ACTIONS(2232), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_AMP_AMP] = ACTIONS(2232), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2232), - [anon_sym___extension__] = ACTIONS(2230), - [anon_sym_typedef] = ACTIONS(2230), - [anon_sym_extern] = ACTIONS(2230), - [anon_sym___attribute__] = ACTIONS(2230), - [anon_sym_COLON_COLON] = ACTIONS(2232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2232), - [anon_sym___declspec] = ACTIONS(2230), - [anon_sym___based] = ACTIONS(2230), - [anon_sym___cdecl] = ACTIONS(2230), - [anon_sym___clrcall] = ACTIONS(2230), - [anon_sym___stdcall] = ACTIONS(2230), - [anon_sym___fastcall] = ACTIONS(2230), - [anon_sym___thiscall] = ACTIONS(2230), - [anon_sym___vectorcall] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_signed] = ACTIONS(2230), - [anon_sym_unsigned] = ACTIONS(2230), - [anon_sym_long] = ACTIONS(2230), - [anon_sym_short] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_register] = ACTIONS(2230), - [anon_sym_inline] = ACTIONS(2230), - [anon_sym___inline] = ACTIONS(2230), - [anon_sym___inline__] = ACTIONS(2230), - [anon_sym___forceinline] = ACTIONS(2230), - [anon_sym_thread_local] = ACTIONS(2230), - [anon_sym___thread] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_constexpr] = ACTIONS(2230), - [anon_sym_volatile] = ACTIONS(2230), - [anon_sym_restrict] = ACTIONS(2230), - [anon_sym___restrict__] = ACTIONS(2230), - [anon_sym__Atomic] = ACTIONS(2230), - [anon_sym__Noreturn] = ACTIONS(2230), - [anon_sym_noreturn] = ACTIONS(2230), - [anon_sym_mutable] = ACTIONS(2230), - [anon_sym_constinit] = ACTIONS(2230), - [anon_sym_consteval] = ACTIONS(2230), - [sym_primitive_type] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [anon_sym_class] = ACTIONS(2230), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_union] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_else] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2230), - [anon_sym_case] = ACTIONS(2230), - [anon_sym_default] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_goto] = ACTIONS(2230), - [anon_sym_not] = ACTIONS(2230), - [anon_sym_compl] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2232), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2230), - [anon_sym___alignof] = ACTIONS(2230), - [anon_sym__alignof] = ACTIONS(2230), - [anon_sym_alignof] = ACTIONS(2230), - [anon_sym__Alignof] = ACTIONS(2230), - [anon_sym_offsetof] = ACTIONS(2230), - [anon_sym__Generic] = ACTIONS(2230), - [anon_sym_asm] = ACTIONS(2230), - [anon_sym___asm__] = ACTIONS(2230), - [sym_number_literal] = ACTIONS(2232), - [anon_sym_L_SQUOTE] = ACTIONS(2232), - [anon_sym_u_SQUOTE] = ACTIONS(2232), - [anon_sym_U_SQUOTE] = ACTIONS(2232), - [anon_sym_u8_SQUOTE] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2232), - [anon_sym_L_DQUOTE] = ACTIONS(2232), - [anon_sym_u_DQUOTE] = ACTIONS(2232), - [anon_sym_U_DQUOTE] = ACTIONS(2232), - [anon_sym_u8_DQUOTE] = ACTIONS(2232), - [anon_sym_DQUOTE] = ACTIONS(2232), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [anon_sym_NULL] = ACTIONS(2230), - [anon_sym_nullptr] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2230), - [anon_sym_decltype] = ACTIONS(2230), - [anon_sym_virtual] = ACTIONS(2230), - [anon_sym_alignas] = ACTIONS(2230), - [anon_sym_explicit] = ACTIONS(2230), - [anon_sym_typename] = ACTIONS(2230), - [anon_sym_template] = ACTIONS(2230), - [anon_sym_operator] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_delete] = ACTIONS(2230), - [anon_sym_throw] = ACTIONS(2230), - [anon_sym_namespace] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2230), - [anon_sym_static_assert] = ACTIONS(2230), - [anon_sym_concept] = ACTIONS(2230), - [anon_sym_co_return] = ACTIONS(2230), - [anon_sym_co_yield] = ACTIONS(2230), - [anon_sym_catch] = ACTIONS(2743), - [anon_sym_R_DQUOTE] = ACTIONS(2232), - [anon_sym_LR_DQUOTE] = ACTIONS(2232), - [anon_sym_uR_DQUOTE] = ACTIONS(2232), - [anon_sym_UR_DQUOTE] = ACTIONS(2232), - [anon_sym_u8R_DQUOTE] = ACTIONS(2232), - [anon_sym_co_await] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_requires] = ACTIONS(2230), - [sym_this] = ACTIONS(2230), + [418] = { + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_include_token1] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token2] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [aux_sym_preproc_else_token1] = ACTIONS(2138), + [aux_sym_preproc_elif_token1] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym___cdecl] = ACTIONS(2138), + [anon_sym___clrcall] = ACTIONS(2138), + [anon_sym___stdcall] = ACTIONS(2138), + [anon_sym___fastcall] = ACTIONS(2138), + [anon_sym___thiscall] = ACTIONS(2138), + [anon_sym___vectorcall] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_goto] = ACTIONS(2138), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_compl] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_PLUS_PLUS] = ACTIONS(2136), + [anon_sym_sizeof] = ACTIONS(2138), + [anon_sym___alignof__] = ACTIONS(2138), + [anon_sym___alignof] = ACTIONS(2138), + [anon_sym__alignof] = ACTIONS(2138), + [anon_sym_alignof] = ACTIONS(2138), + [anon_sym__Alignof] = ACTIONS(2138), + [anon_sym_offsetof] = ACTIONS(2138), + [anon_sym__Generic] = ACTIONS(2138), + [anon_sym_asm] = ACTIONS(2138), + [anon_sym___asm__] = ACTIONS(2138), + [sym_number_literal] = ACTIONS(2136), + [anon_sym_L_SQUOTE] = ACTIONS(2136), + [anon_sym_u_SQUOTE] = ACTIONS(2136), + [anon_sym_U_SQUOTE] = ACTIONS(2136), + [anon_sym_u8_SQUOTE] = ACTIONS(2136), + [anon_sym_SQUOTE] = ACTIONS(2136), + [anon_sym_L_DQUOTE] = ACTIONS(2136), + [anon_sym_u_DQUOTE] = ACTIONS(2136), + [anon_sym_U_DQUOTE] = ACTIONS(2136), + [anon_sym_u8_DQUOTE] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2136), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [anon_sym_NULL] = ACTIONS(2138), + [anon_sym_nullptr] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), + [anon_sym_concept] = ACTIONS(2138), + [anon_sym_co_return] = ACTIONS(2138), + [anon_sym_co_yield] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + [anon_sym_R_DQUOTE] = ACTIONS(2136), + [anon_sym_LR_DQUOTE] = ACTIONS(2136), + [anon_sym_uR_DQUOTE] = ACTIONS(2136), + [anon_sym_UR_DQUOTE] = ACTIONS(2136), + [anon_sym_u8R_DQUOTE] = ACTIONS(2136), + [anon_sym_co_await] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_requires] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), }, - [351] = { - [sym_preproc_def] = STATE(353), - [sym_preproc_function_def] = STATE(353), - [sym_preproc_call] = STATE(353), - [sym_preproc_elifdef] = STATE(8938), - [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(8938), - [sym_preproc_elif_in_field_declaration_list] = STATE(8938), - [sym_type_definition] = STATE(353), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6408), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6925), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(353), - [sym_field_declaration] = STATE(353), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(353), - [sym_operator_cast] = STATE(7495), - [sym_inline_method_definition] = STATE(353), - [sym__constructor_specifiers] = STATE(2396), - [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(9326), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(353), - [sym_alias_declaration] = STATE(353), - [sym_static_assert_declaration] = STATE(353), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7495), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(353), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2689), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), - [aux_sym_preproc_else_token1] = ACTIONS(2697), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [aux_sym_preproc_elifdef_token1] = ACTIONS(175), - [aux_sym_preproc_elifdef_token2] = ACTIONS(175), - [sym_preproc_directive] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2713), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), + [419] = { + [sym_identifier] = ACTIONS(2134), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token2] = ACTIONS(2134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), + [aux_sym_preproc_else_token1] = ACTIONS(2134), + [aux_sym_preproc_elif_token1] = ACTIONS(2134), + [sym_preproc_directive] = ACTIONS(2134), + [anon_sym_LPAREN2] = ACTIONS(2132), + [anon_sym_BANG] = ACTIONS(2132), + [anon_sym_TILDE] = ACTIONS(2132), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym___extension__] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym___attribute__] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2134), + [anon_sym___based] = ACTIONS(2134), + [anon_sym___cdecl] = ACTIONS(2134), + [anon_sym___clrcall] = ACTIONS(2134), + [anon_sym___stdcall] = ACTIONS(2134), + [anon_sym___fastcall] = ACTIONS(2134), + [anon_sym___thiscall] = ACTIONS(2134), + [anon_sym___vectorcall] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2134), + [anon_sym_unsigned] = ACTIONS(2134), + [anon_sym_long] = ACTIONS(2134), + [anon_sym_short] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_register] = ACTIONS(2134), + [anon_sym_inline] = ACTIONS(2134), + [anon_sym___inline] = ACTIONS(2134), + [anon_sym___inline__] = ACTIONS(2134), + [anon_sym___forceinline] = ACTIONS(2134), + [anon_sym_thread_local] = ACTIONS(2134), + [anon_sym___thread] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_constexpr] = ACTIONS(2134), + [anon_sym_volatile] = ACTIONS(2134), + [anon_sym_restrict] = ACTIONS(2134), + [anon_sym___restrict__] = ACTIONS(2134), + [anon_sym__Atomic] = ACTIONS(2134), + [anon_sym__Noreturn] = ACTIONS(2134), + [anon_sym_noreturn] = ACTIONS(2134), + [anon_sym_mutable] = ACTIONS(2134), + [anon_sym_constinit] = ACTIONS(2134), + [anon_sym_consteval] = ACTIONS(2134), + [sym_primitive_type] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_struct] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_else] = ACTIONS(2134), + [anon_sym_switch] = ACTIONS(2134), + [anon_sym_case] = ACTIONS(2134), + [anon_sym_default] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2134), + [anon_sym_not] = ACTIONS(2134), + [anon_sym_compl] = ACTIONS(2134), + [anon_sym_DASH_DASH] = ACTIONS(2132), + [anon_sym_PLUS_PLUS] = ACTIONS(2132), + [anon_sym_sizeof] = ACTIONS(2134), + [anon_sym___alignof__] = ACTIONS(2134), + [anon_sym___alignof] = ACTIONS(2134), + [anon_sym__alignof] = ACTIONS(2134), + [anon_sym_alignof] = ACTIONS(2134), + [anon_sym__Alignof] = ACTIONS(2134), + [anon_sym_offsetof] = ACTIONS(2134), + [anon_sym__Generic] = ACTIONS(2134), + [anon_sym_asm] = ACTIONS(2134), + [anon_sym___asm__] = ACTIONS(2134), + [sym_number_literal] = ACTIONS(2132), + [anon_sym_L_SQUOTE] = ACTIONS(2132), + [anon_sym_u_SQUOTE] = ACTIONS(2132), + [anon_sym_U_SQUOTE] = ACTIONS(2132), + [anon_sym_u8_SQUOTE] = ACTIONS(2132), + [anon_sym_SQUOTE] = ACTIONS(2132), + [anon_sym_L_DQUOTE] = ACTIONS(2132), + [anon_sym_u_DQUOTE] = ACTIONS(2132), + [anon_sym_U_DQUOTE] = ACTIONS(2132), + [anon_sym_u8_DQUOTE] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(2132), + [sym_true] = ACTIONS(2134), + [sym_false] = ACTIONS(2134), + [anon_sym_NULL] = ACTIONS(2134), + [anon_sym_nullptr] = ACTIONS(2134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2134), + [anon_sym_decltype] = ACTIONS(2134), + [anon_sym_virtual] = ACTIONS(2134), + [anon_sym_alignas] = ACTIONS(2134), + [anon_sym_explicit] = ACTIONS(2134), + [anon_sym_typename] = ACTIONS(2134), + [anon_sym_template] = ACTIONS(2134), + [anon_sym_operator] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_delete] = ACTIONS(2134), + [anon_sym_throw] = ACTIONS(2134), + [anon_sym_namespace] = ACTIONS(2134), + [anon_sym_using] = ACTIONS(2134), + [anon_sym_static_assert] = ACTIONS(2134), + [anon_sym_concept] = ACTIONS(2134), + [anon_sym_co_return] = ACTIONS(2134), + [anon_sym_co_yield] = ACTIONS(2134), + [anon_sym_catch] = ACTIONS(2134), + [anon_sym_R_DQUOTE] = ACTIONS(2132), + [anon_sym_LR_DQUOTE] = ACTIONS(2132), + [anon_sym_uR_DQUOTE] = ACTIONS(2132), + [anon_sym_UR_DQUOTE] = ACTIONS(2132), + [anon_sym_u8R_DQUOTE] = ACTIONS(2132), + [anon_sym_co_await] = ACTIONS(2134), + [anon_sym_new] = ACTIONS(2134), + [anon_sym_requires] = ACTIONS(2134), + [sym_this] = ACTIONS(2134), + }, + [420] = { + [sym_type_qualifier] = STATE(3780), + [sym__type_specifier] = STATE(4440), + [sym_sized_type_specifier] = STATE(2799), + [sym_enum_specifier] = STATE(2799), + [sym_struct_specifier] = STATE(2799), + [sym_union_specifier] = STATE(2799), + [sym__expression] = STATE(4037), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_type_descriptor] = STATE(6216), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_placeholder_type_specifier] = STATE(2799), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2758), + [sym_class_specifier] = STATE(2799), + [sym__class_name] = STATE(6922), + [sym_dependent_type] = STATE(2799), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_type_parameter_pack_expansion] = STATE(6647), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5157), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3355), + [aux_sym__type_definition_type_repeat1] = STATE(3780), + [aux_sym_sized_type_specifier_repeat1] = STATE(2297), + [sym_identifier] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2018), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -108263,123 +113935,416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(2731), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(2733), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(2737), - [anon_sym_static_assert] = ACTIONS(2739), + [sym_primitive_type] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2934), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2938), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_GT2] = ACTIONS(3229), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [352] = { - [sym_preproc_def] = STATE(747), - [sym_preproc_function_def] = STATE(747), - [sym_preproc_call] = STATE(747), - [sym_preproc_elifdef] = STATE(8883), - [sym_preproc_if_in_field_declaration_list] = STATE(747), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(747), - [sym_preproc_else_in_field_declaration_list] = STATE(8883), - [sym_preproc_elif_in_field_declaration_list] = STATE(8883), - [sym_type_definition] = STATE(747), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6408), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6925), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(747), - [sym_field_declaration] = STATE(747), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(747), - [sym_operator_cast] = STATE(7495), - [sym_inline_method_definition] = STATE(747), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(747), - [sym_operator_cast_declaration] = STATE(747), - [sym_constructor_or_destructor_definition] = STATE(747), - [sym_constructor_or_destructor_declaration] = STATE(747), - [sym_friend_declaration] = STATE(747), - [sym_access_specifier] = STATE(9326), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(747), - [sym_alias_declaration] = STATE(747), - [sym_static_assert_declaration] = STATE(747), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7495), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(747), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2689), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2748), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), - [aux_sym_preproc_else_token1] = ACTIONS(2697), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [aux_sym_preproc_elifdef_token1] = ACTIONS(175), - [aux_sym_preproc_elifdef_token2] = ACTIONS(175), - [sym_preproc_directive] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), + [421] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [422] = { + [sym_identifier] = ACTIONS(2836), + [aux_sym_preproc_include_token1] = ACTIONS(2836), + [aux_sym_preproc_def_token1] = ACTIONS(2836), + [aux_sym_preproc_if_token1] = ACTIONS(2836), + [aux_sym_preproc_if_token2] = ACTIONS(2836), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2836), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2836), + [aux_sym_preproc_else_token1] = ACTIONS(2836), + [aux_sym_preproc_elif_token1] = ACTIONS(2836), + [sym_preproc_directive] = ACTIONS(2836), + [anon_sym_LPAREN2] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(2838), + [anon_sym_TILDE] = ACTIONS(2838), + [anon_sym_DASH] = ACTIONS(2836), + [anon_sym_PLUS] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_AMP_AMP] = ACTIONS(2838), + [anon_sym_AMP] = ACTIONS(2836), + [anon_sym_SEMI] = ACTIONS(2838), + [anon_sym___extension__] = ACTIONS(2836), + [anon_sym_typedef] = ACTIONS(2836), + [anon_sym_extern] = ACTIONS(2836), + [anon_sym___attribute__] = ACTIONS(2836), + [anon_sym_COLON_COLON] = ACTIONS(2838), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2838), + [anon_sym___declspec] = ACTIONS(2836), + [anon_sym___based] = ACTIONS(2836), + [anon_sym___cdecl] = ACTIONS(2836), + [anon_sym___clrcall] = ACTIONS(2836), + [anon_sym___stdcall] = ACTIONS(2836), + [anon_sym___fastcall] = ACTIONS(2836), + [anon_sym___thiscall] = ACTIONS(2836), + [anon_sym___vectorcall] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_signed] = ACTIONS(2836), + [anon_sym_unsigned] = ACTIONS(2836), + [anon_sym_long] = ACTIONS(2836), + [anon_sym_short] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_static] = ACTIONS(2836), + [anon_sym_register] = ACTIONS(2836), + [anon_sym_inline] = ACTIONS(2836), + [anon_sym___inline] = ACTIONS(2836), + [anon_sym___inline__] = ACTIONS(2836), + [anon_sym___forceinline] = ACTIONS(2836), + [anon_sym_thread_local] = ACTIONS(2836), + [anon_sym___thread] = ACTIONS(2836), + [anon_sym_const] = ACTIONS(2836), + [anon_sym_constexpr] = ACTIONS(2836), + [anon_sym_volatile] = ACTIONS(2836), + [anon_sym_restrict] = ACTIONS(2836), + [anon_sym___restrict__] = ACTIONS(2836), + [anon_sym__Atomic] = ACTIONS(2836), + [anon_sym__Noreturn] = ACTIONS(2836), + [anon_sym_noreturn] = ACTIONS(2836), + [anon_sym_mutable] = ACTIONS(2836), + [anon_sym_constinit] = ACTIONS(2836), + [anon_sym_consteval] = ACTIONS(2836), + [sym_primitive_type] = ACTIONS(2836), + [anon_sym_enum] = ACTIONS(2836), + [anon_sym_class] = ACTIONS(2836), + [anon_sym_struct] = ACTIONS(2836), + [anon_sym_union] = ACTIONS(2836), + [anon_sym_if] = ACTIONS(2836), + [anon_sym_else] = ACTIONS(2836), + [anon_sym_switch] = ACTIONS(2836), + [anon_sym_case] = ACTIONS(2836), + [anon_sym_default] = ACTIONS(2836), + [anon_sym_while] = ACTIONS(2836), + [anon_sym_do] = ACTIONS(2836), + [anon_sym_for] = ACTIONS(2836), + [anon_sym_return] = ACTIONS(2836), + [anon_sym_break] = ACTIONS(2836), + [anon_sym_continue] = ACTIONS(2836), + [anon_sym_goto] = ACTIONS(2836), + [anon_sym_not] = ACTIONS(2836), + [anon_sym_compl] = ACTIONS(2836), + [anon_sym_DASH_DASH] = ACTIONS(2838), + [anon_sym_PLUS_PLUS] = ACTIONS(2838), + [anon_sym_sizeof] = ACTIONS(2836), + [anon_sym___alignof__] = ACTIONS(2836), + [anon_sym___alignof] = ACTIONS(2836), + [anon_sym__alignof] = ACTIONS(2836), + [anon_sym_alignof] = ACTIONS(2836), + [anon_sym__Alignof] = ACTIONS(2836), + [anon_sym_offsetof] = ACTIONS(2836), + [anon_sym__Generic] = ACTIONS(2836), + [anon_sym_asm] = ACTIONS(2836), + [anon_sym___asm__] = ACTIONS(2836), + [sym_number_literal] = ACTIONS(2838), + [anon_sym_L_SQUOTE] = ACTIONS(2838), + [anon_sym_u_SQUOTE] = ACTIONS(2838), + [anon_sym_U_SQUOTE] = ACTIONS(2838), + [anon_sym_u8_SQUOTE] = ACTIONS(2838), + [anon_sym_SQUOTE] = ACTIONS(2838), + [anon_sym_L_DQUOTE] = ACTIONS(2838), + [anon_sym_u_DQUOTE] = ACTIONS(2838), + [anon_sym_U_DQUOTE] = ACTIONS(2838), + [anon_sym_u8_DQUOTE] = ACTIONS(2838), + [anon_sym_DQUOTE] = ACTIONS(2838), + [sym_true] = ACTIONS(2836), + [sym_false] = ACTIONS(2836), + [anon_sym_NULL] = ACTIONS(2836), + [anon_sym_nullptr] = ACTIONS(2836), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2836), + [anon_sym_decltype] = ACTIONS(2836), + [anon_sym_virtual] = ACTIONS(2836), + [anon_sym_alignas] = ACTIONS(2836), + [anon_sym_explicit] = ACTIONS(2836), + [anon_sym_typename] = ACTIONS(2836), + [anon_sym_template] = ACTIONS(2836), + [anon_sym_operator] = ACTIONS(2836), + [anon_sym_try] = ACTIONS(2836), + [anon_sym_delete] = ACTIONS(2836), + [anon_sym_throw] = ACTIONS(2836), + [anon_sym_namespace] = ACTIONS(2836), + [anon_sym_using] = ACTIONS(2836), + [anon_sym_static_assert] = ACTIONS(2836), + [anon_sym_concept] = ACTIONS(2836), + [anon_sym_co_return] = ACTIONS(2836), + [anon_sym_co_yield] = ACTIONS(2836), + [anon_sym_R_DQUOTE] = ACTIONS(2838), + [anon_sym_LR_DQUOTE] = ACTIONS(2838), + [anon_sym_uR_DQUOTE] = ACTIONS(2838), + [anon_sym_UR_DQUOTE] = ACTIONS(2838), + [anon_sym_u8R_DQUOTE] = ACTIONS(2838), + [anon_sym_co_await] = ACTIONS(2836), + [anon_sym_new] = ACTIONS(2836), + [anon_sym_requires] = ACTIONS(2836), + [sym_this] = ACTIONS(2836), + }, + [423] = { + [sym_preproc_def] = STATE(601), + [sym_preproc_function_def] = STATE(601), + [sym_preproc_call] = STATE(601), + [sym_preproc_if_in_field_declaration_list] = STATE(601), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(601), + [sym_preproc_else_in_field_declaration_list] = STATE(7930), + [sym_preproc_elif_in_field_declaration_list] = STATE(7930), + [sym_type_definition] = STATE(601), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5209), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5775), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(601), + [sym_field_declaration] = STATE(601), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1795), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(601), + [sym_operator_cast] = STATE(6107), + [sym_inline_method_definition] = STATE(601), + [sym__constructor_specifiers] = STATE(1795), + [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_access_specifier] = STATE(7215), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(601), + [sym_alias_declaration] = STATE(601), + [sym_static_assert_declaration] = STATE(601), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6107), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(601), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1795), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3237), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2687), + [sym_preproc_directive] = ACTIONS(3239), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3241), + [anon_sym_typedef] = ACTIONS(3243), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2705), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -108399,123 +114364,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(2731), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3245), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(2733), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(2737), - [anon_sym_static_assert] = ACTIONS(2739), + [anon_sym_friend] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3249), + [anon_sym_static_assert] = ACTIONS(3251), }, - [353] = { - [sym_preproc_def] = STATE(747), - [sym_preproc_function_def] = STATE(747), - [sym_preproc_call] = STATE(747), - [sym_preproc_elifdef] = STATE(8875), - [sym_preproc_if_in_field_declaration_list] = STATE(747), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(747), - [sym_preproc_else_in_field_declaration_list] = STATE(8875), - [sym_preproc_elif_in_field_declaration_list] = STATE(8875), - [sym_type_definition] = STATE(747), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6408), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6925), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(747), - [sym_field_declaration] = STATE(747), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(747), - [sym_operator_cast] = STATE(7495), - [sym_inline_method_definition] = STATE(747), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(747), - [sym_operator_cast_declaration] = STATE(747), - [sym_constructor_or_destructor_definition] = STATE(747), - [sym_constructor_or_destructor_declaration] = STATE(747), - [sym_friend_declaration] = STATE(747), - [sym_access_specifier] = STATE(9326), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(747), - [sym_alias_declaration] = STATE(747), - [sym_static_assert_declaration] = STATE(747), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7495), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(747), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2689), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), - [aux_sym_preproc_else_token1] = ACTIONS(2697), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [aux_sym_preproc_elifdef_token1] = ACTIONS(175), - [aux_sym_preproc_elifdef_token2] = ACTIONS(175), - [sym_preproc_directive] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), + [424] = { + [sym_preproc_def] = STATE(425), + [sym_preproc_function_def] = STATE(425), + [sym_preproc_call] = STATE(425), + [sym_preproc_if_in_field_declaration_list] = STATE(425), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(425), + [sym_preproc_else_in_field_declaration_list] = STATE(7907), + [sym_preproc_elif_in_field_declaration_list] = STATE(7907), + [sym_type_definition] = STATE(425), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5209), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5775), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(425), + [sym_field_declaration] = STATE(425), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1795), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(425), + [sym_operator_cast] = STATE(6107), + [sym_inline_method_definition] = STATE(425), + [sym__constructor_specifiers] = STATE(1795), + [sym_operator_cast_definition] = STATE(425), + [sym_operator_cast_declaration] = STATE(425), + [sym_constructor_or_destructor_definition] = STATE(425), + [sym_constructor_or_destructor_declaration] = STATE(425), + [sym_friend_declaration] = STATE(425), + [sym_access_specifier] = STATE(7215), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(425), + [sym_alias_declaration] = STATE(425), + [sym_static_assert_declaration] = STATE(425), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6107), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(425), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1795), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3253), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3237), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2687), + [sym_preproc_directive] = ACTIONS(3239), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3241), + [anon_sym_typedef] = ACTIONS(3243), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2705), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -108535,123 +114497,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(2731), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3245), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(2733), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(2737), - [anon_sym_static_assert] = ACTIONS(2739), + [anon_sym_friend] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3249), + [anon_sym_static_assert] = ACTIONS(3251), }, - [354] = { - [sym_preproc_def] = STATE(359), - [sym_preproc_function_def] = STATE(359), - [sym_preproc_call] = STATE(359), - [sym_preproc_elifdef] = STATE(9523), - [sym_preproc_if_in_field_declaration_list] = STATE(359), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(359), - [sym_preproc_else_in_field_declaration_list] = STATE(9523), - [sym_preproc_elif_in_field_declaration_list] = STATE(9523), - [sym_type_definition] = STATE(359), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6408), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6925), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(359), - [sym_field_declaration] = STATE(359), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(359), - [sym_operator_cast] = STATE(7495), - [sym_inline_method_definition] = STATE(359), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(359), - [sym_operator_cast_declaration] = STATE(359), - [sym_constructor_or_destructor_definition] = STATE(359), - [sym_constructor_or_destructor_declaration] = STATE(359), - [sym_friend_declaration] = STATE(359), - [sym_access_specifier] = STATE(9326), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(359), - [sym_alias_declaration] = STATE(359), - [sym_static_assert_declaration] = STATE(359), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7495), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(359), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2689), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2752), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), - [aux_sym_preproc_else_token1] = ACTIONS(2697), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [aux_sym_preproc_elifdef_token1] = ACTIONS(175), - [aux_sym_preproc_elifdef_token2] = ACTIONS(175), - [sym_preproc_directive] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), + [425] = { + [sym_preproc_def] = STATE(601), + [sym_preproc_function_def] = STATE(601), + [sym_preproc_call] = STATE(601), + [sym_preproc_if_in_field_declaration_list] = STATE(601), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(601), + [sym_preproc_else_in_field_declaration_list] = STATE(7890), + [sym_preproc_elif_in_field_declaration_list] = STATE(7890), + [sym_type_definition] = STATE(601), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5209), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5775), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(601), + [sym_field_declaration] = STATE(601), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1795), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(601), + [sym_operator_cast] = STATE(6107), + [sym_inline_method_definition] = STATE(601), + [sym__constructor_specifiers] = STATE(1795), + [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_access_specifier] = STATE(7215), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(601), + [sym_alias_declaration] = STATE(601), + [sym_static_assert_declaration] = STATE(601), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6107), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(601), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1795), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3237), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2687), + [sym_preproc_directive] = ACTIONS(3239), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3241), + [anon_sym_typedef] = ACTIONS(3243), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2705), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -108671,437 +114630,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(2731), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3245), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(2733), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(2737), - [anon_sym_static_assert] = ACTIONS(2739), - }, - [355] = { - [sym_identifier] = ACTIONS(2198), - [aux_sym_preproc_include_token1] = ACTIONS(2198), - [aux_sym_preproc_def_token1] = ACTIONS(2198), - [aux_sym_preproc_if_token1] = ACTIONS(2198), - [aux_sym_preproc_if_token2] = ACTIONS(2198), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2198), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2198), - [aux_sym_preproc_else_token1] = ACTIONS(2198), - [aux_sym_preproc_elif_token1] = ACTIONS(2198), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2198), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2198), - [sym_preproc_directive] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(2196), - [anon_sym_BANG] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2198), - [anon_sym_PLUS] = ACTIONS(2198), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2196), - [anon_sym___extension__] = ACTIONS(2198), - [anon_sym_typedef] = ACTIONS(2198), - [anon_sym_extern] = ACTIONS(2198), - [anon_sym___attribute__] = ACTIONS(2198), - [anon_sym_COLON_COLON] = ACTIONS(2196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2196), - [anon_sym___declspec] = ACTIONS(2198), - [anon_sym___based] = ACTIONS(2198), - [anon_sym___cdecl] = ACTIONS(2198), - [anon_sym___clrcall] = ACTIONS(2198), - [anon_sym___stdcall] = ACTIONS(2198), - [anon_sym___fastcall] = ACTIONS(2198), - [anon_sym___thiscall] = ACTIONS(2198), - [anon_sym___vectorcall] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2196), - [anon_sym_signed] = ACTIONS(2198), - [anon_sym_unsigned] = ACTIONS(2198), - [anon_sym_long] = ACTIONS(2198), - [anon_sym_short] = ACTIONS(2198), - [anon_sym_LBRACK] = ACTIONS(2198), - [anon_sym_static] = ACTIONS(2198), - [anon_sym_register] = ACTIONS(2198), - [anon_sym_inline] = ACTIONS(2198), - [anon_sym___inline] = ACTIONS(2198), - [anon_sym___inline__] = ACTIONS(2198), - [anon_sym___forceinline] = ACTIONS(2198), - [anon_sym_thread_local] = ACTIONS(2198), - [anon_sym___thread] = ACTIONS(2198), - [anon_sym_const] = ACTIONS(2198), - [anon_sym_constexpr] = ACTIONS(2198), - [anon_sym_volatile] = ACTIONS(2198), - [anon_sym_restrict] = ACTIONS(2198), - [anon_sym___restrict__] = ACTIONS(2198), - [anon_sym__Atomic] = ACTIONS(2198), - [anon_sym__Noreturn] = ACTIONS(2198), - [anon_sym_noreturn] = ACTIONS(2198), - [anon_sym_mutable] = ACTIONS(2198), - [anon_sym_constinit] = ACTIONS(2198), - [anon_sym_consteval] = ACTIONS(2198), - [sym_primitive_type] = ACTIONS(2198), - [anon_sym_enum] = ACTIONS(2198), - [anon_sym_class] = ACTIONS(2198), - [anon_sym_struct] = ACTIONS(2198), - [anon_sym_union] = ACTIONS(2198), - [anon_sym_if] = ACTIONS(2198), - [anon_sym_else] = ACTIONS(2198), - [anon_sym_switch] = ACTIONS(2198), - [anon_sym_case] = ACTIONS(2198), - [anon_sym_default] = ACTIONS(2198), - [anon_sym_while] = ACTIONS(2198), - [anon_sym_do] = ACTIONS(2198), - [anon_sym_for] = ACTIONS(2198), - [anon_sym_return] = ACTIONS(2198), - [anon_sym_break] = ACTIONS(2198), - [anon_sym_continue] = ACTIONS(2198), - [anon_sym_goto] = ACTIONS(2198), - [anon_sym_not] = ACTIONS(2198), - [anon_sym_compl] = ACTIONS(2198), - [anon_sym_DASH_DASH] = ACTIONS(2196), - [anon_sym_PLUS_PLUS] = ACTIONS(2196), - [anon_sym_sizeof] = ACTIONS(2198), - [anon_sym___alignof__] = ACTIONS(2198), - [anon_sym___alignof] = ACTIONS(2198), - [anon_sym__alignof] = ACTIONS(2198), - [anon_sym_alignof] = ACTIONS(2198), - [anon_sym__Alignof] = ACTIONS(2198), - [anon_sym_offsetof] = ACTIONS(2198), - [anon_sym__Generic] = ACTIONS(2198), - [anon_sym_asm] = ACTIONS(2198), - [anon_sym___asm__] = ACTIONS(2198), - [sym_number_literal] = ACTIONS(2196), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2196), - [anon_sym_u_DQUOTE] = ACTIONS(2196), - [anon_sym_U_DQUOTE] = ACTIONS(2196), - [anon_sym_u8_DQUOTE] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2196), - [sym_true] = ACTIONS(2198), - [sym_false] = ACTIONS(2198), - [anon_sym_NULL] = ACTIONS(2198), - [anon_sym_nullptr] = ACTIONS(2198), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2198), - [anon_sym_decltype] = ACTIONS(2198), - [anon_sym_virtual] = ACTIONS(2198), - [anon_sym_alignas] = ACTIONS(2198), - [anon_sym_explicit] = ACTIONS(2198), - [anon_sym_typename] = ACTIONS(2198), - [anon_sym_template] = ACTIONS(2198), - [anon_sym_operator] = ACTIONS(2198), - [anon_sym_try] = ACTIONS(2198), - [anon_sym_delete] = ACTIONS(2198), - [anon_sym_throw] = ACTIONS(2198), - [anon_sym_namespace] = ACTIONS(2198), - [anon_sym_using] = ACTIONS(2198), - [anon_sym_static_assert] = ACTIONS(2198), - [anon_sym_concept] = ACTIONS(2198), - [anon_sym_co_return] = ACTIONS(2198), - [anon_sym_co_yield] = ACTIONS(2198), - [anon_sym_catch] = ACTIONS(2198), - [anon_sym_R_DQUOTE] = ACTIONS(2196), - [anon_sym_LR_DQUOTE] = ACTIONS(2196), - [anon_sym_uR_DQUOTE] = ACTIONS(2196), - [anon_sym_UR_DQUOTE] = ACTIONS(2196), - [anon_sym_u8R_DQUOTE] = ACTIONS(2196), - [anon_sym_co_await] = ACTIONS(2198), - [anon_sym_new] = ACTIONS(2198), - [anon_sym_requires] = ACTIONS(2198), - [sym_this] = ACTIONS(2198), - }, - [356] = { - [sym_else_clause] = STATE(439), - [sym_identifier] = ACTIONS(2754), - [aux_sym_preproc_include_token1] = ACTIONS(2754), - [aux_sym_preproc_def_token1] = ACTIONS(2754), - [aux_sym_preproc_if_token1] = ACTIONS(2754), - [aux_sym_preproc_if_token2] = ACTIONS(2754), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2754), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2754), - [aux_sym_preproc_else_token1] = ACTIONS(2754), - [aux_sym_preproc_elif_token1] = ACTIONS(2754), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2754), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2754), - [sym_preproc_directive] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_TILDE] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym___extension__] = ACTIONS(2754), - [anon_sym_typedef] = ACTIONS(2754), - [anon_sym_extern] = ACTIONS(2754), - [anon_sym___attribute__] = ACTIONS(2754), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2756), - [anon_sym___declspec] = ACTIONS(2754), - [anon_sym___based] = ACTIONS(2754), - [anon_sym___cdecl] = ACTIONS(2754), - [anon_sym___clrcall] = ACTIONS(2754), - [anon_sym___stdcall] = ACTIONS(2754), - [anon_sym___fastcall] = ACTIONS(2754), - [anon_sym___thiscall] = ACTIONS(2754), - [anon_sym___vectorcall] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_signed] = ACTIONS(2754), - [anon_sym_unsigned] = ACTIONS(2754), - [anon_sym_long] = ACTIONS(2754), - [anon_sym_short] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_static] = ACTIONS(2754), - [anon_sym_register] = ACTIONS(2754), - [anon_sym_inline] = ACTIONS(2754), - [anon_sym___inline] = ACTIONS(2754), - [anon_sym___inline__] = ACTIONS(2754), - [anon_sym___forceinline] = ACTIONS(2754), - [anon_sym_thread_local] = ACTIONS(2754), - [anon_sym___thread] = ACTIONS(2754), - [anon_sym_const] = ACTIONS(2754), - [anon_sym_constexpr] = ACTIONS(2754), - [anon_sym_volatile] = ACTIONS(2754), - [anon_sym_restrict] = ACTIONS(2754), - [anon_sym___restrict__] = ACTIONS(2754), - [anon_sym__Atomic] = ACTIONS(2754), - [anon_sym__Noreturn] = ACTIONS(2754), - [anon_sym_noreturn] = ACTIONS(2754), - [anon_sym_mutable] = ACTIONS(2754), - [anon_sym_constinit] = ACTIONS(2754), - [anon_sym_consteval] = ACTIONS(2754), - [sym_primitive_type] = ACTIONS(2754), - [anon_sym_enum] = ACTIONS(2754), - [anon_sym_class] = ACTIONS(2754), - [anon_sym_struct] = ACTIONS(2754), - [anon_sym_union] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_else] = ACTIONS(2758), - [anon_sym_switch] = ACTIONS(2754), - [anon_sym_case] = ACTIONS(2754), - [anon_sym_default] = ACTIONS(2754), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_break] = ACTIONS(2754), - [anon_sym_continue] = ACTIONS(2754), - [anon_sym_goto] = ACTIONS(2754), - [anon_sym_not] = ACTIONS(2754), - [anon_sym_compl] = ACTIONS(2754), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_sizeof] = ACTIONS(2754), - [anon_sym___alignof__] = ACTIONS(2754), - [anon_sym___alignof] = ACTIONS(2754), - [anon_sym__alignof] = ACTIONS(2754), - [anon_sym_alignof] = ACTIONS(2754), - [anon_sym__Alignof] = ACTIONS(2754), - [anon_sym_offsetof] = ACTIONS(2754), - [anon_sym__Generic] = ACTIONS(2754), - [anon_sym_asm] = ACTIONS(2754), - [anon_sym___asm__] = ACTIONS(2754), - [sym_number_literal] = ACTIONS(2756), - [anon_sym_L_SQUOTE] = ACTIONS(2756), - [anon_sym_u_SQUOTE] = ACTIONS(2756), - [anon_sym_U_SQUOTE] = ACTIONS(2756), - [anon_sym_u8_SQUOTE] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_L_DQUOTE] = ACTIONS(2756), - [anon_sym_u_DQUOTE] = ACTIONS(2756), - [anon_sym_U_DQUOTE] = ACTIONS(2756), - [anon_sym_u8_DQUOTE] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [sym_true] = ACTIONS(2754), - [sym_false] = ACTIONS(2754), - [anon_sym_NULL] = ACTIONS(2754), - [anon_sym_nullptr] = ACTIONS(2754), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2754), - [anon_sym_decltype] = ACTIONS(2754), - [anon_sym_virtual] = ACTIONS(2754), - [anon_sym_alignas] = ACTIONS(2754), - [anon_sym_explicit] = ACTIONS(2754), - [anon_sym_typename] = ACTIONS(2754), - [anon_sym_template] = ACTIONS(2754), - [anon_sym_operator] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_delete] = ACTIONS(2754), - [anon_sym_throw] = ACTIONS(2754), - [anon_sym_namespace] = ACTIONS(2754), - [anon_sym_using] = ACTIONS(2754), - [anon_sym_static_assert] = ACTIONS(2754), - [anon_sym_concept] = ACTIONS(2754), - [anon_sym_co_return] = ACTIONS(2754), - [anon_sym_co_yield] = ACTIONS(2754), - [anon_sym_R_DQUOTE] = ACTIONS(2756), - [anon_sym_LR_DQUOTE] = ACTIONS(2756), - [anon_sym_uR_DQUOTE] = ACTIONS(2756), - [anon_sym_UR_DQUOTE] = ACTIONS(2756), - [anon_sym_u8R_DQUOTE] = ACTIONS(2756), - [anon_sym_co_await] = ACTIONS(2754), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_requires] = ACTIONS(2754), - [sym_this] = ACTIONS(2754), - }, - [357] = { - [sym_catch_clause] = STATE(350), - [aux_sym_constructor_try_statement_repeat1] = STATE(350), - [sym_identifier] = ACTIONS(2224), - [aux_sym_preproc_include_token1] = ACTIONS(2224), - [aux_sym_preproc_def_token1] = ACTIONS(2224), - [aux_sym_preproc_if_token1] = ACTIONS(2224), - [aux_sym_preproc_if_token2] = ACTIONS(2224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2224), - [aux_sym_preproc_else_token1] = ACTIONS(2224), - [aux_sym_preproc_elif_token1] = ACTIONS(2224), - [sym_preproc_directive] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_AMP_AMP] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym___extension__] = ACTIONS(2224), - [anon_sym_typedef] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym___attribute__] = ACTIONS(2224), - [anon_sym_COLON_COLON] = ACTIONS(2226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2226), - [anon_sym___declspec] = ACTIONS(2224), - [anon_sym___based] = ACTIONS(2224), - [anon_sym___cdecl] = ACTIONS(2224), - [anon_sym___clrcall] = ACTIONS(2224), - [anon_sym___stdcall] = ACTIONS(2224), - [anon_sym___fastcall] = ACTIONS(2224), - [anon_sym___thiscall] = ACTIONS(2224), - [anon_sym___vectorcall] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_signed] = ACTIONS(2224), - [anon_sym_unsigned] = ACTIONS(2224), - [anon_sym_long] = ACTIONS(2224), - [anon_sym_short] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2224), - [anon_sym_register] = ACTIONS(2224), - [anon_sym_inline] = ACTIONS(2224), - [anon_sym___inline] = ACTIONS(2224), - [anon_sym___inline__] = ACTIONS(2224), - [anon_sym___forceinline] = ACTIONS(2224), - [anon_sym_thread_local] = ACTIONS(2224), - [anon_sym___thread] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [anon_sym_constexpr] = ACTIONS(2224), - [anon_sym_volatile] = ACTIONS(2224), - [anon_sym_restrict] = ACTIONS(2224), - [anon_sym___restrict__] = ACTIONS(2224), - [anon_sym__Atomic] = ACTIONS(2224), - [anon_sym__Noreturn] = ACTIONS(2224), - [anon_sym_noreturn] = ACTIONS(2224), - [anon_sym_mutable] = ACTIONS(2224), - [anon_sym_constinit] = ACTIONS(2224), - [anon_sym_consteval] = ACTIONS(2224), - [sym_primitive_type] = ACTIONS(2224), - [anon_sym_enum] = ACTIONS(2224), - [anon_sym_class] = ACTIONS(2224), - [anon_sym_struct] = ACTIONS(2224), - [anon_sym_union] = ACTIONS(2224), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_else] = ACTIONS(2224), - [anon_sym_switch] = ACTIONS(2224), - [anon_sym_case] = ACTIONS(2224), - [anon_sym_default] = ACTIONS(2224), - [anon_sym_while] = ACTIONS(2224), - [anon_sym_do] = ACTIONS(2224), - [anon_sym_for] = ACTIONS(2224), - [anon_sym_return] = ACTIONS(2224), - [anon_sym_break] = ACTIONS(2224), - [anon_sym_continue] = ACTIONS(2224), - [anon_sym_goto] = ACTIONS(2224), - [anon_sym_not] = ACTIONS(2224), - [anon_sym_compl] = ACTIONS(2224), - [anon_sym_DASH_DASH] = ACTIONS(2226), - [anon_sym_PLUS_PLUS] = ACTIONS(2226), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym___alignof__] = ACTIONS(2224), - [anon_sym___alignof] = ACTIONS(2224), - [anon_sym__alignof] = ACTIONS(2224), - [anon_sym_alignof] = ACTIONS(2224), - [anon_sym__Alignof] = ACTIONS(2224), - [anon_sym_offsetof] = ACTIONS(2224), - [anon_sym__Generic] = ACTIONS(2224), - [anon_sym_asm] = ACTIONS(2224), - [anon_sym___asm__] = ACTIONS(2224), - [sym_number_literal] = ACTIONS(2226), - [anon_sym_L_SQUOTE] = ACTIONS(2226), - [anon_sym_u_SQUOTE] = ACTIONS(2226), - [anon_sym_U_SQUOTE] = ACTIONS(2226), - [anon_sym_u8_SQUOTE] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2226), - [anon_sym_L_DQUOTE] = ACTIONS(2226), - [anon_sym_u_DQUOTE] = ACTIONS(2226), - [anon_sym_U_DQUOTE] = ACTIONS(2226), - [anon_sym_u8_DQUOTE] = ACTIONS(2226), - [anon_sym_DQUOTE] = ACTIONS(2226), - [sym_true] = ACTIONS(2224), - [sym_false] = ACTIONS(2224), - [anon_sym_NULL] = ACTIONS(2224), - [anon_sym_nullptr] = ACTIONS(2224), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2224), - [anon_sym_decltype] = ACTIONS(2224), - [anon_sym_virtual] = ACTIONS(2224), - [anon_sym_alignas] = ACTIONS(2224), - [anon_sym_explicit] = ACTIONS(2224), - [anon_sym_typename] = ACTIONS(2224), - [anon_sym_template] = ACTIONS(2224), - [anon_sym_operator] = ACTIONS(2224), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_delete] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2224), - [anon_sym_namespace] = ACTIONS(2224), - [anon_sym_using] = ACTIONS(2224), - [anon_sym_static_assert] = ACTIONS(2224), - [anon_sym_concept] = ACTIONS(2224), - [anon_sym_co_return] = ACTIONS(2224), - [anon_sym_co_yield] = ACTIONS(2224), - [anon_sym_catch] = ACTIONS(2760), - [anon_sym_R_DQUOTE] = ACTIONS(2226), - [anon_sym_LR_DQUOTE] = ACTIONS(2226), - [anon_sym_uR_DQUOTE] = ACTIONS(2226), - [anon_sym_UR_DQUOTE] = ACTIONS(2226), - [anon_sym_u8R_DQUOTE] = ACTIONS(2226), - [anon_sym_co_await] = ACTIONS(2224), - [anon_sym_new] = ACTIONS(2224), - [anon_sym_requires] = ACTIONS(2224), - [sym_this] = ACTIONS(2224), + [anon_sym_friend] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3249), + [anon_sym_static_assert] = ACTIONS(3251), }, - [358] = { - [sym_else_clause] = STATE(520), + [426] = { [sym_identifier] = ACTIONS(2762), [aux_sym_preproc_include_token1] = ACTIONS(2762), [aux_sym_preproc_def_token1] = ACTIONS(2762), @@ -109111,8 +114661,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), [aux_sym_preproc_else_token1] = ACTIONS(2762), [aux_sym_preproc_elif_token1] = ACTIONS(2762), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), [sym_preproc_directive] = ACTIONS(2762), [anon_sym_LPAREN2] = ACTIONS(2764), [anon_sym_BANG] = ACTIONS(2764), @@ -109168,7 +114716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2762), [anon_sym_union] = ACTIONS(2762), [anon_sym_if] = ACTIONS(2762), - [anon_sym_else] = ACTIONS(2758), + [anon_sym_else] = ACTIONS(2762), [anon_sym_switch] = ACTIONS(2762), [anon_sym_case] = ACTIONS(2762), [anon_sym_default] = ACTIONS(2762), @@ -109236,550 +114784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2762), [sym_this] = ACTIONS(2762), }, - [359] = { - [sym_preproc_def] = STATE(747), - [sym_preproc_function_def] = STATE(747), - [sym_preproc_call] = STATE(747), - [sym_preproc_elifdef] = STATE(9585), - [sym_preproc_if_in_field_declaration_list] = STATE(747), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(747), - [sym_preproc_else_in_field_declaration_list] = STATE(9585), - [sym_preproc_elif_in_field_declaration_list] = STATE(9585), - [sym_type_definition] = STATE(747), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6408), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6925), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(747), - [sym_field_declaration] = STATE(747), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(747), - [sym_operator_cast] = STATE(7495), - [sym_inline_method_definition] = STATE(747), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(747), - [sym_operator_cast_declaration] = STATE(747), - [sym_constructor_or_destructor_definition] = STATE(747), - [sym_constructor_or_destructor_declaration] = STATE(747), - [sym_friend_declaration] = STATE(747), - [sym_access_specifier] = STATE(9326), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(747), - [sym_alias_declaration] = STATE(747), - [sym_static_assert_declaration] = STATE(747), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7495), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(747), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2689), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2766), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), - [aux_sym_preproc_else_token1] = ACTIONS(2697), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [aux_sym_preproc_elifdef_token1] = ACTIONS(175), - [aux_sym_preproc_elifdef_token2] = ACTIONS(175), - [sym_preproc_directive] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2713), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(2731), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(2733), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(2737), - [anon_sym_static_assert] = ACTIONS(2739), - }, - [360] = { - [sym_identifier] = ACTIONS(2768), - [aux_sym_preproc_include_token1] = ACTIONS(2768), - [aux_sym_preproc_def_token1] = ACTIONS(2768), - [aux_sym_preproc_if_token1] = ACTIONS(2768), - [aux_sym_preproc_if_token2] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2768), - [aux_sym_preproc_else_token1] = ACTIONS(2768), - [aux_sym_preproc_elif_token1] = ACTIONS(2768), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2768), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2768), - [sym_preproc_directive] = ACTIONS(2768), - [anon_sym_LPAREN2] = ACTIONS(2770), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_TILDE] = ACTIONS(2770), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_SEMI] = ACTIONS(2770), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym_typedef] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2770), - [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(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(2768), - [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_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = 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_if] = ACTIONS(2768), - [anon_sym_else] = ACTIONS(2768), - [anon_sym_switch] = ACTIONS(2768), - [anon_sym_case] = ACTIONS(2768), - [anon_sym_default] = ACTIONS(2768), - [anon_sym_while] = ACTIONS(2768), - [anon_sym_do] = ACTIONS(2768), - [anon_sym_for] = ACTIONS(2768), - [anon_sym_return] = ACTIONS(2768), - [anon_sym_break] = ACTIONS(2768), - [anon_sym_continue] = ACTIONS(2768), - [anon_sym_goto] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(2768), - [anon_sym_compl] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2770), - [anon_sym_PLUS_PLUS] = ACTIONS(2770), - [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_asm] = ACTIONS(2768), - [anon_sym___asm__] = ACTIONS(2768), - [sym_number_literal] = ACTIONS(2770), - [anon_sym_L_SQUOTE] = ACTIONS(2770), - [anon_sym_u_SQUOTE] = ACTIONS(2770), - [anon_sym_U_SQUOTE] = ACTIONS(2770), - [anon_sym_u8_SQUOTE] = ACTIONS(2770), - [anon_sym_SQUOTE] = ACTIONS(2770), - [anon_sym_L_DQUOTE] = ACTIONS(2770), - [anon_sym_u_DQUOTE] = ACTIONS(2770), - [anon_sym_U_DQUOTE] = ACTIONS(2770), - [anon_sym_u8_DQUOTE] = ACTIONS(2770), - [anon_sym_DQUOTE] = ACTIONS(2770), - [sym_true] = ACTIONS(2768), - [sym_false] = ACTIONS(2768), - [anon_sym_NULL] = ACTIONS(2768), - [anon_sym_nullptr] = ACTIONS(2768), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2768), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym_explicit] = ACTIONS(2768), - [anon_sym_typename] = ACTIONS(2768), - [anon_sym_template] = ACTIONS(2768), - [anon_sym_operator] = ACTIONS(2768), - [anon_sym_try] = ACTIONS(2768), - [anon_sym_delete] = ACTIONS(2768), - [anon_sym_throw] = ACTIONS(2768), - [anon_sym_namespace] = ACTIONS(2768), - [anon_sym_using] = ACTIONS(2768), - [anon_sym_static_assert] = ACTIONS(2768), - [anon_sym_concept] = ACTIONS(2768), - [anon_sym_co_return] = ACTIONS(2768), - [anon_sym_co_yield] = ACTIONS(2768), - [anon_sym_catch] = ACTIONS(2768), - [anon_sym_R_DQUOTE] = ACTIONS(2770), - [anon_sym_LR_DQUOTE] = ACTIONS(2770), - [anon_sym_uR_DQUOTE] = ACTIONS(2770), - [anon_sym_UR_DQUOTE] = ACTIONS(2770), - [anon_sym_u8R_DQUOTE] = ACTIONS(2770), - [anon_sym_co_await] = ACTIONS(2768), - [anon_sym_new] = ACTIONS(2768), - [anon_sym_requires] = ACTIONS(2768), - [sym_this] = ACTIONS(2768), - }, - [361] = { - [sym_preproc_def] = STATE(352), - [sym_preproc_function_def] = STATE(352), - [sym_preproc_call] = STATE(352), - [sym_preproc_elifdef] = STATE(8988), - [sym_preproc_if_in_field_declaration_list] = STATE(352), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(352), - [sym_preproc_else_in_field_declaration_list] = STATE(8988), - [sym_preproc_elif_in_field_declaration_list] = STATE(8988), - [sym_type_definition] = STATE(352), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6408), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6925), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(352), - [sym_field_declaration] = STATE(352), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(352), - [sym_operator_cast] = STATE(7495), - [sym_inline_method_definition] = STATE(352), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(352), - [sym_operator_cast_declaration] = STATE(352), - [sym_constructor_or_destructor_definition] = STATE(352), - [sym_constructor_or_destructor_declaration] = STATE(352), - [sym_friend_declaration] = STATE(352), - [sym_access_specifier] = STATE(9326), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(352), - [sym_alias_declaration] = STATE(352), - [sym_static_assert_declaration] = STATE(352), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7495), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(352), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2689), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2772), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), - [aux_sym_preproc_else_token1] = ACTIONS(2697), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [aux_sym_preproc_elifdef_token1] = ACTIONS(175), - [aux_sym_preproc_elifdef_token2] = ACTIONS(175), - [sym_preproc_directive] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2713), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(2731), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(2733), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(2737), - [anon_sym_static_assert] = ACTIONS(2739), - }, - [362] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), - }, - [363] = { + [427] = { [sym_identifier] = ACTIONS(2778), [aux_sym_preproc_include_token1] = ACTIONS(2778), [aux_sym_preproc_def_token1] = ACTIONS(2778), @@ -109789,8 +114794,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), [aux_sym_preproc_else_token1] = ACTIONS(2778), [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), [sym_preproc_directive] = ACTIONS(2778), [anon_sym_LPAREN2] = ACTIONS(2780), [anon_sym_BANG] = ACTIONS(2780), @@ -109914,2076 +114917,2577 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2778), [sym_this] = ACTIONS(2778), }, - [364] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [428] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [365] = { - [sym_identifier] = ACTIONS(2782), - [aux_sym_preproc_include_token1] = ACTIONS(2782), - [aux_sym_preproc_def_token1] = ACTIONS(2782), - [aux_sym_preproc_if_token1] = ACTIONS(2782), - [aux_sym_preproc_if_token2] = ACTIONS(2782), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2782), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2782), - [aux_sym_preproc_else_token1] = ACTIONS(2782), - [aux_sym_preproc_elif_token1] = ACTIONS(2782), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2782), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2782), - [sym_preproc_directive] = ACTIONS(2782), - [anon_sym_LPAREN2] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym___extension__] = ACTIONS(2782), - [anon_sym_typedef] = ACTIONS(2782), - [anon_sym_extern] = ACTIONS(2782), - [anon_sym___attribute__] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2784), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2784), - [anon_sym___declspec] = ACTIONS(2782), - [anon_sym___based] = ACTIONS(2782), - [anon_sym___cdecl] = ACTIONS(2782), - [anon_sym___clrcall] = ACTIONS(2782), - [anon_sym___stdcall] = ACTIONS(2782), - [anon_sym___fastcall] = ACTIONS(2782), - [anon_sym___thiscall] = ACTIONS(2782), - [anon_sym___vectorcall] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_signed] = ACTIONS(2782), - [anon_sym_unsigned] = ACTIONS(2782), - [anon_sym_long] = ACTIONS(2782), - [anon_sym_short] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_static] = ACTIONS(2782), - [anon_sym_register] = ACTIONS(2782), - [anon_sym_inline] = ACTIONS(2782), - [anon_sym___inline] = ACTIONS(2782), - [anon_sym___inline__] = ACTIONS(2782), - [anon_sym___forceinline] = ACTIONS(2782), - [anon_sym_thread_local] = ACTIONS(2782), - [anon_sym___thread] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_constexpr] = ACTIONS(2782), - [anon_sym_volatile] = ACTIONS(2782), - [anon_sym_restrict] = ACTIONS(2782), - [anon_sym___restrict__] = ACTIONS(2782), - [anon_sym__Atomic] = ACTIONS(2782), - [anon_sym__Noreturn] = ACTIONS(2782), - [anon_sym_noreturn] = ACTIONS(2782), - [anon_sym_mutable] = ACTIONS(2782), - [anon_sym_constinit] = ACTIONS(2782), - [anon_sym_consteval] = ACTIONS(2782), - [sym_primitive_type] = ACTIONS(2782), - [anon_sym_enum] = ACTIONS(2782), - [anon_sym_class] = ACTIONS(2782), - [anon_sym_struct] = ACTIONS(2782), - [anon_sym_union] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_else] = ACTIONS(2782), - [anon_sym_switch] = ACTIONS(2782), - [anon_sym_case] = ACTIONS(2782), - [anon_sym_default] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_goto] = ACTIONS(2782), - [anon_sym_not] = ACTIONS(2782), - [anon_sym_compl] = ACTIONS(2782), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_sizeof] = ACTIONS(2782), - [anon_sym___alignof__] = ACTIONS(2782), - [anon_sym___alignof] = ACTIONS(2782), - [anon_sym__alignof] = ACTIONS(2782), - [anon_sym_alignof] = ACTIONS(2782), - [anon_sym__Alignof] = ACTIONS(2782), - [anon_sym_offsetof] = ACTIONS(2782), - [anon_sym__Generic] = ACTIONS(2782), - [anon_sym_asm] = ACTIONS(2782), - [anon_sym___asm__] = ACTIONS(2782), - [sym_number_literal] = ACTIONS(2784), - [anon_sym_L_SQUOTE] = ACTIONS(2784), - [anon_sym_u_SQUOTE] = ACTIONS(2784), - [anon_sym_U_SQUOTE] = ACTIONS(2784), - [anon_sym_u8_SQUOTE] = ACTIONS(2784), - [anon_sym_SQUOTE] = ACTIONS(2784), - [anon_sym_L_DQUOTE] = ACTIONS(2784), - [anon_sym_u_DQUOTE] = ACTIONS(2784), - [anon_sym_U_DQUOTE] = ACTIONS(2784), - [anon_sym_u8_DQUOTE] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [sym_true] = ACTIONS(2782), - [sym_false] = ACTIONS(2782), - [anon_sym_NULL] = ACTIONS(2782), - [anon_sym_nullptr] = ACTIONS(2782), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2782), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_virtual] = ACTIONS(2782), - [anon_sym_alignas] = ACTIONS(2782), - [anon_sym_explicit] = ACTIONS(2782), - [anon_sym_typename] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2782), - [anon_sym_operator] = ACTIONS(2782), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_delete] = ACTIONS(2782), - [anon_sym_throw] = ACTIONS(2782), - [anon_sym_namespace] = ACTIONS(2782), - [anon_sym_using] = ACTIONS(2782), - [anon_sym_static_assert] = ACTIONS(2782), - [anon_sym_concept] = ACTIONS(2782), - [anon_sym_co_return] = ACTIONS(2782), - [anon_sym_co_yield] = ACTIONS(2782), - [anon_sym_R_DQUOTE] = ACTIONS(2784), - [anon_sym_LR_DQUOTE] = ACTIONS(2784), - [anon_sym_uR_DQUOTE] = ACTIONS(2784), - [anon_sym_UR_DQUOTE] = ACTIONS(2784), - [anon_sym_u8R_DQUOTE] = ACTIONS(2784), - [anon_sym_co_await] = ACTIONS(2782), - [anon_sym_new] = ACTIONS(2782), - [anon_sym_requires] = ACTIONS(2782), - [sym_this] = ACTIONS(2782), + [429] = { + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_unaligned_ptr_modifier] = STATE(4768), + [sym_ms_pointer_modifier] = STATE(3249), + [sym__declarator] = STATE(5852), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5742), + [sym_array_declarator] = STATE(5742), + [sym_type_qualifier] = STATE(3801), + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3042), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5162), + [sym_qualified_identifier] = STATE(3040), + [sym_qualified_type_identifier] = STATE(7185), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(2684), + [aux_sym__type_definition_type_repeat1] = STATE(3801), + [aux_sym_pointer_declarator_repeat1] = STATE(3249), + [sym_identifier] = ACTIONS(3257), + [anon_sym_LPAREN2] = ACTIONS(3259), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym___extension__] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym___based] = ACTIONS(47), + [sym_ms_restrict_modifier] = ACTIONS(3265), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3265), + [sym_ms_signed_ptr_modifier] = ACTIONS(3265), + [anon_sym__unaligned] = ACTIONS(3267), + [anon_sym___unaligned] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(1982), + [anon_sym_const] = ACTIONS(3263), + [anon_sym_constexpr] = ACTIONS(3263), + [anon_sym_volatile] = ACTIONS(3263), + [anon_sym_restrict] = ACTIONS(3263), + [anon_sym___restrict__] = ACTIONS(3263), + [anon_sym__Atomic] = ACTIONS(3263), + [anon_sym__Noreturn] = ACTIONS(3263), + [anon_sym_noreturn] = ACTIONS(3263), + [anon_sym_mutable] = ACTIONS(3263), + [anon_sym_constinit] = ACTIONS(3263), + [anon_sym_consteval] = ACTIONS(3263), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_operator] = ACTIONS(2000), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [366] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [430] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [367] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [431] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [368] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [432] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [369] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [433] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [370] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [434] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [371] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [435] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [372] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [436] = { + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_include_token1] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token2] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [aux_sym_preproc_else_token1] = ACTIONS(2138), + [aux_sym_preproc_elif_token1] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2828), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym___cdecl] = ACTIONS(2138), + [anon_sym___clrcall] = ACTIONS(2138), + [anon_sym___stdcall] = ACTIONS(2138), + [anon_sym___fastcall] = ACTIONS(2138), + [anon_sym___thiscall] = ACTIONS(2138), + [anon_sym___vectorcall] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_goto] = ACTIONS(2138), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_compl] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_PLUS_PLUS] = ACTIONS(2136), + [anon_sym_sizeof] = ACTIONS(2138), + [anon_sym___alignof__] = ACTIONS(2138), + [anon_sym___alignof] = ACTIONS(2138), + [anon_sym__alignof] = ACTIONS(2138), + [anon_sym_alignof] = ACTIONS(2138), + [anon_sym__Alignof] = ACTIONS(2138), + [anon_sym_offsetof] = ACTIONS(2138), + [anon_sym__Generic] = ACTIONS(2138), + [anon_sym_asm] = ACTIONS(2138), + [anon_sym___asm__] = ACTIONS(2138), + [sym_number_literal] = ACTIONS(2136), + [anon_sym_L_SQUOTE] = ACTIONS(2136), + [anon_sym_u_SQUOTE] = ACTIONS(2136), + [anon_sym_U_SQUOTE] = ACTIONS(2136), + [anon_sym_u8_SQUOTE] = ACTIONS(2136), + [anon_sym_SQUOTE] = ACTIONS(2136), + [anon_sym_L_DQUOTE] = ACTIONS(2136), + [anon_sym_u_DQUOTE] = ACTIONS(2136), + [anon_sym_U_DQUOTE] = ACTIONS(2136), + [anon_sym_u8_DQUOTE] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2136), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [anon_sym_NULL] = ACTIONS(2138), + [anon_sym_nullptr] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), + [anon_sym_concept] = ACTIONS(2138), + [anon_sym_co_return] = ACTIONS(2138), + [anon_sym_co_yield] = ACTIONS(2138), + [anon_sym_R_DQUOTE] = ACTIONS(2136), + [anon_sym_LR_DQUOTE] = ACTIONS(2136), + [anon_sym_uR_DQUOTE] = ACTIONS(2136), + [anon_sym_UR_DQUOTE] = ACTIONS(2136), + [anon_sym_u8R_DQUOTE] = ACTIONS(2136), + [anon_sym_co_await] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_requires] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + }, + [437] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [373] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [438] = { + [sym_identifier] = ACTIONS(2766), + [aux_sym_preproc_include_token1] = ACTIONS(2766), + [aux_sym_preproc_def_token1] = ACTIONS(2766), + [aux_sym_preproc_if_token1] = ACTIONS(2766), + [aux_sym_preproc_if_token2] = ACTIONS(2766), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2766), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2766), + [aux_sym_preproc_else_token1] = ACTIONS(2766), + [aux_sym_preproc_elif_token1] = ACTIONS(2766), + [sym_preproc_directive] = ACTIONS(2766), + [anon_sym_LPAREN2] = ACTIONS(2768), + [anon_sym_BANG] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2766), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym___extension__] = ACTIONS(2766), + [anon_sym_typedef] = ACTIONS(2766), + [anon_sym_extern] = ACTIONS(2766), + [anon_sym___attribute__] = ACTIONS(2766), + [anon_sym_COLON_COLON] = ACTIONS(2768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2768), + [anon_sym___declspec] = ACTIONS(2766), + [anon_sym___based] = ACTIONS(2766), + [anon_sym___cdecl] = ACTIONS(2766), + [anon_sym___clrcall] = ACTIONS(2766), + [anon_sym___stdcall] = ACTIONS(2766), + [anon_sym___fastcall] = ACTIONS(2766), + [anon_sym___thiscall] = ACTIONS(2766), + [anon_sym___vectorcall] = ACTIONS(2766), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_signed] = ACTIONS(2766), + [anon_sym_unsigned] = ACTIONS(2766), + [anon_sym_long] = ACTIONS(2766), + [anon_sym_short] = ACTIONS(2766), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym_static] = ACTIONS(2766), + [anon_sym_register] = ACTIONS(2766), + [anon_sym_inline] = ACTIONS(2766), + [anon_sym___inline] = ACTIONS(2766), + [anon_sym___inline__] = ACTIONS(2766), + [anon_sym___forceinline] = ACTIONS(2766), + [anon_sym_thread_local] = ACTIONS(2766), + [anon_sym___thread] = ACTIONS(2766), + [anon_sym_const] = ACTIONS(2766), + [anon_sym_constexpr] = ACTIONS(2766), + [anon_sym_volatile] = ACTIONS(2766), + [anon_sym_restrict] = ACTIONS(2766), + [anon_sym___restrict__] = ACTIONS(2766), + [anon_sym__Atomic] = ACTIONS(2766), + [anon_sym__Noreturn] = ACTIONS(2766), + [anon_sym_noreturn] = ACTIONS(2766), + [anon_sym_mutable] = ACTIONS(2766), + [anon_sym_constinit] = ACTIONS(2766), + [anon_sym_consteval] = ACTIONS(2766), + [sym_primitive_type] = ACTIONS(2766), + [anon_sym_enum] = ACTIONS(2766), + [anon_sym_class] = ACTIONS(2766), + [anon_sym_struct] = ACTIONS(2766), + [anon_sym_union] = ACTIONS(2766), + [anon_sym_if] = ACTIONS(2766), + [anon_sym_else] = ACTIONS(2766), + [anon_sym_switch] = ACTIONS(2766), + [anon_sym_case] = ACTIONS(2766), + [anon_sym_default] = ACTIONS(2766), + [anon_sym_while] = ACTIONS(2766), + [anon_sym_do] = ACTIONS(2766), + [anon_sym_for] = ACTIONS(2766), + [anon_sym_return] = ACTIONS(2766), + [anon_sym_break] = ACTIONS(2766), + [anon_sym_continue] = ACTIONS(2766), + [anon_sym_goto] = ACTIONS(2766), + [anon_sym_not] = ACTIONS(2766), + [anon_sym_compl] = ACTIONS(2766), + [anon_sym_DASH_DASH] = ACTIONS(2768), + [anon_sym_PLUS_PLUS] = ACTIONS(2768), + [anon_sym_sizeof] = ACTIONS(2766), + [anon_sym___alignof__] = ACTIONS(2766), + [anon_sym___alignof] = ACTIONS(2766), + [anon_sym__alignof] = ACTIONS(2766), + [anon_sym_alignof] = ACTIONS(2766), + [anon_sym__Alignof] = ACTIONS(2766), + [anon_sym_offsetof] = ACTIONS(2766), + [anon_sym__Generic] = ACTIONS(2766), + [anon_sym_asm] = ACTIONS(2766), + [anon_sym___asm__] = ACTIONS(2766), + [sym_number_literal] = ACTIONS(2768), + [anon_sym_L_SQUOTE] = ACTIONS(2768), + [anon_sym_u_SQUOTE] = ACTIONS(2768), + [anon_sym_U_SQUOTE] = ACTIONS(2768), + [anon_sym_u8_SQUOTE] = ACTIONS(2768), + [anon_sym_SQUOTE] = ACTIONS(2768), + [anon_sym_L_DQUOTE] = ACTIONS(2768), + [anon_sym_u_DQUOTE] = ACTIONS(2768), + [anon_sym_U_DQUOTE] = ACTIONS(2768), + [anon_sym_u8_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [sym_true] = ACTIONS(2766), + [sym_false] = ACTIONS(2766), + [anon_sym_NULL] = ACTIONS(2766), + [anon_sym_nullptr] = ACTIONS(2766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2766), + [anon_sym_decltype] = ACTIONS(2766), + [anon_sym_virtual] = ACTIONS(2766), + [anon_sym_alignas] = ACTIONS(2766), + [anon_sym_explicit] = ACTIONS(2766), + [anon_sym_typename] = ACTIONS(2766), + [anon_sym_template] = ACTIONS(2766), + [anon_sym_operator] = ACTIONS(2766), + [anon_sym_try] = ACTIONS(2766), + [anon_sym_delete] = ACTIONS(2766), + [anon_sym_throw] = ACTIONS(2766), + [anon_sym_namespace] = ACTIONS(2766), + [anon_sym_using] = ACTIONS(2766), + [anon_sym_static_assert] = ACTIONS(2766), + [anon_sym_concept] = ACTIONS(2766), + [anon_sym_co_return] = ACTIONS(2766), + [anon_sym_co_yield] = ACTIONS(2766), + [anon_sym_R_DQUOTE] = ACTIONS(2768), + [anon_sym_LR_DQUOTE] = ACTIONS(2768), + [anon_sym_uR_DQUOTE] = ACTIONS(2768), + [anon_sym_UR_DQUOTE] = ACTIONS(2768), + [anon_sym_u8R_DQUOTE] = ACTIONS(2768), + [anon_sym_co_await] = ACTIONS(2766), + [anon_sym_new] = ACTIONS(2766), + [anon_sym_requires] = ACTIONS(2766), + [sym_this] = ACTIONS(2766), + }, + [439] = { + [sym_identifier] = ACTIONS(2774), + [aux_sym_preproc_include_token1] = ACTIONS(2774), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token2] = ACTIONS(2774), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), + [aux_sym_preproc_else_token1] = ACTIONS(2774), + [aux_sym_preproc_elif_token1] = ACTIONS(2774), + [sym_preproc_directive] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_TILDE] = ACTIONS(2776), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_STAR] = ACTIONS(2776), + [anon_sym_AMP_AMP] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym___extension__] = ACTIONS(2774), + [anon_sym_typedef] = ACTIONS(2774), + [anon_sym_extern] = ACTIONS(2774), + [anon_sym___attribute__] = ACTIONS(2774), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), + [anon_sym___declspec] = ACTIONS(2774), + [anon_sym___based] = ACTIONS(2774), + [anon_sym___cdecl] = ACTIONS(2774), + [anon_sym___clrcall] = ACTIONS(2774), + [anon_sym___stdcall] = ACTIONS(2774), + [anon_sym___fastcall] = ACTIONS(2774), + [anon_sym___thiscall] = ACTIONS(2774), + [anon_sym___vectorcall] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2776), + [anon_sym_signed] = ACTIONS(2774), + [anon_sym_unsigned] = ACTIONS(2774), + [anon_sym_long] = ACTIONS(2774), + [anon_sym_short] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_static] = ACTIONS(2774), + [anon_sym_register] = ACTIONS(2774), + [anon_sym_inline] = ACTIONS(2774), + [anon_sym___inline] = ACTIONS(2774), + [anon_sym___inline__] = ACTIONS(2774), + [anon_sym___forceinline] = ACTIONS(2774), + [anon_sym_thread_local] = ACTIONS(2774), + [anon_sym___thread] = ACTIONS(2774), + [anon_sym_const] = ACTIONS(2774), + [anon_sym_constexpr] = ACTIONS(2774), + [anon_sym_volatile] = ACTIONS(2774), + [anon_sym_restrict] = ACTIONS(2774), + [anon_sym___restrict__] = ACTIONS(2774), + [anon_sym__Atomic] = ACTIONS(2774), + [anon_sym__Noreturn] = ACTIONS(2774), + [anon_sym_noreturn] = ACTIONS(2774), + [anon_sym_mutable] = ACTIONS(2774), + [anon_sym_constinit] = ACTIONS(2774), + [anon_sym_consteval] = ACTIONS(2774), + [sym_primitive_type] = ACTIONS(2774), + [anon_sym_enum] = ACTIONS(2774), + [anon_sym_class] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(2774), + [anon_sym_union] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_else] = ACTIONS(2774), + [anon_sym_switch] = ACTIONS(2774), + [anon_sym_case] = ACTIONS(2774), + [anon_sym_default] = ACTIONS(2774), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_break] = ACTIONS(2774), + [anon_sym_continue] = ACTIONS(2774), + [anon_sym_goto] = ACTIONS(2774), + [anon_sym_not] = ACTIONS(2774), + [anon_sym_compl] = ACTIONS(2774), + [anon_sym_DASH_DASH] = ACTIONS(2776), + [anon_sym_PLUS_PLUS] = ACTIONS(2776), + [anon_sym_sizeof] = ACTIONS(2774), + [anon_sym___alignof__] = ACTIONS(2774), + [anon_sym___alignof] = ACTIONS(2774), + [anon_sym__alignof] = ACTIONS(2774), + [anon_sym_alignof] = ACTIONS(2774), + [anon_sym__Alignof] = ACTIONS(2774), + [anon_sym_offsetof] = ACTIONS(2774), + [anon_sym__Generic] = ACTIONS(2774), + [anon_sym_asm] = ACTIONS(2774), + [anon_sym___asm__] = ACTIONS(2774), + [sym_number_literal] = ACTIONS(2776), + [anon_sym_L_SQUOTE] = ACTIONS(2776), + [anon_sym_u_SQUOTE] = ACTIONS(2776), + [anon_sym_U_SQUOTE] = ACTIONS(2776), + [anon_sym_u8_SQUOTE] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_L_DQUOTE] = ACTIONS(2776), + [anon_sym_u_DQUOTE] = ACTIONS(2776), + [anon_sym_U_DQUOTE] = ACTIONS(2776), + [anon_sym_u8_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE] = ACTIONS(2776), + [sym_true] = ACTIONS(2774), + [sym_false] = ACTIONS(2774), + [anon_sym_NULL] = ACTIONS(2774), + [anon_sym_nullptr] = ACTIONS(2774), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2774), + [anon_sym_virtual] = ACTIONS(2774), + [anon_sym_alignas] = ACTIONS(2774), + [anon_sym_explicit] = ACTIONS(2774), + [anon_sym_typename] = ACTIONS(2774), + [anon_sym_template] = ACTIONS(2774), + [anon_sym_operator] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_delete] = ACTIONS(2774), + [anon_sym_throw] = ACTIONS(2774), + [anon_sym_namespace] = ACTIONS(2774), + [anon_sym_using] = ACTIONS(2774), + [anon_sym_static_assert] = ACTIONS(2774), + [anon_sym_concept] = ACTIONS(2774), + [anon_sym_co_return] = ACTIONS(2774), + [anon_sym_co_yield] = ACTIONS(2774), + [anon_sym_R_DQUOTE] = ACTIONS(2776), + [anon_sym_LR_DQUOTE] = ACTIONS(2776), + [anon_sym_uR_DQUOTE] = ACTIONS(2776), + [anon_sym_UR_DQUOTE] = ACTIONS(2776), + [anon_sym_u8R_DQUOTE] = ACTIONS(2776), + [anon_sym_co_await] = ACTIONS(2774), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_requires] = ACTIONS(2774), + [sym_this] = ACTIONS(2774), }, - [374] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [440] = { + [sym_identifier] = ACTIONS(2790), + [aux_sym_preproc_include_token1] = ACTIONS(2790), + [aux_sym_preproc_def_token1] = ACTIONS(2790), + [aux_sym_preproc_if_token1] = ACTIONS(2790), + [aux_sym_preproc_if_token2] = ACTIONS(2790), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2790), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2790), + [aux_sym_preproc_else_token1] = ACTIONS(2790), + [aux_sym_preproc_elif_token1] = ACTIONS(2790), + [sym_preproc_directive] = ACTIONS(2790), + [anon_sym_LPAREN2] = ACTIONS(2792), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_TILDE] = ACTIONS(2792), + [anon_sym_DASH] = ACTIONS(2790), + [anon_sym_PLUS] = ACTIONS(2790), + [anon_sym_STAR] = ACTIONS(2792), + [anon_sym_AMP_AMP] = ACTIONS(2792), + [anon_sym_AMP] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym___extension__] = ACTIONS(2790), + [anon_sym_typedef] = ACTIONS(2790), + [anon_sym_extern] = ACTIONS(2790), + [anon_sym___attribute__] = ACTIONS(2790), + [anon_sym_COLON_COLON] = ACTIONS(2792), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2792), + [anon_sym___declspec] = ACTIONS(2790), + [anon_sym___based] = ACTIONS(2790), + [anon_sym___cdecl] = ACTIONS(2790), + [anon_sym___clrcall] = ACTIONS(2790), + [anon_sym___stdcall] = ACTIONS(2790), + [anon_sym___fastcall] = ACTIONS(2790), + [anon_sym___thiscall] = ACTIONS(2790), + [anon_sym___vectorcall] = ACTIONS(2790), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_signed] = ACTIONS(2790), + [anon_sym_unsigned] = ACTIONS(2790), + [anon_sym_long] = ACTIONS(2790), + [anon_sym_short] = ACTIONS(2790), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym_static] = ACTIONS(2790), + [anon_sym_register] = ACTIONS(2790), + [anon_sym_inline] = ACTIONS(2790), + [anon_sym___inline] = ACTIONS(2790), + [anon_sym___inline__] = ACTIONS(2790), + [anon_sym___forceinline] = ACTIONS(2790), + [anon_sym_thread_local] = ACTIONS(2790), + [anon_sym___thread] = ACTIONS(2790), + [anon_sym_const] = ACTIONS(2790), + [anon_sym_constexpr] = ACTIONS(2790), + [anon_sym_volatile] = ACTIONS(2790), + [anon_sym_restrict] = ACTIONS(2790), + [anon_sym___restrict__] = ACTIONS(2790), + [anon_sym__Atomic] = ACTIONS(2790), + [anon_sym__Noreturn] = ACTIONS(2790), + [anon_sym_noreturn] = ACTIONS(2790), + [anon_sym_mutable] = ACTIONS(2790), + [anon_sym_constinit] = ACTIONS(2790), + [anon_sym_consteval] = ACTIONS(2790), + [sym_primitive_type] = ACTIONS(2790), + [anon_sym_enum] = ACTIONS(2790), + [anon_sym_class] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(2790), + [anon_sym_union] = ACTIONS(2790), + [anon_sym_if] = ACTIONS(2790), + [anon_sym_else] = ACTIONS(2790), + [anon_sym_switch] = ACTIONS(2790), + [anon_sym_case] = ACTIONS(2790), + [anon_sym_default] = ACTIONS(2790), + [anon_sym_while] = ACTIONS(2790), + [anon_sym_do] = ACTIONS(2790), + [anon_sym_for] = ACTIONS(2790), + [anon_sym_return] = ACTIONS(2790), + [anon_sym_break] = ACTIONS(2790), + [anon_sym_continue] = ACTIONS(2790), + [anon_sym_goto] = ACTIONS(2790), + [anon_sym_not] = ACTIONS(2790), + [anon_sym_compl] = ACTIONS(2790), + [anon_sym_DASH_DASH] = ACTIONS(2792), + [anon_sym_PLUS_PLUS] = ACTIONS(2792), + [anon_sym_sizeof] = ACTIONS(2790), + [anon_sym___alignof__] = ACTIONS(2790), + [anon_sym___alignof] = ACTIONS(2790), + [anon_sym__alignof] = ACTIONS(2790), + [anon_sym_alignof] = ACTIONS(2790), + [anon_sym__Alignof] = ACTIONS(2790), + [anon_sym_offsetof] = ACTIONS(2790), + [anon_sym__Generic] = ACTIONS(2790), + [anon_sym_asm] = ACTIONS(2790), + [anon_sym___asm__] = ACTIONS(2790), + [sym_number_literal] = ACTIONS(2792), + [anon_sym_L_SQUOTE] = ACTIONS(2792), + [anon_sym_u_SQUOTE] = ACTIONS(2792), + [anon_sym_U_SQUOTE] = ACTIONS(2792), + [anon_sym_u8_SQUOTE] = ACTIONS(2792), + [anon_sym_SQUOTE] = ACTIONS(2792), + [anon_sym_L_DQUOTE] = ACTIONS(2792), + [anon_sym_u_DQUOTE] = ACTIONS(2792), + [anon_sym_U_DQUOTE] = ACTIONS(2792), + [anon_sym_u8_DQUOTE] = ACTIONS(2792), + [anon_sym_DQUOTE] = ACTIONS(2792), + [sym_true] = ACTIONS(2790), + [sym_false] = ACTIONS(2790), + [anon_sym_NULL] = ACTIONS(2790), + [anon_sym_nullptr] = ACTIONS(2790), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2790), + [anon_sym_decltype] = ACTIONS(2790), + [anon_sym_virtual] = ACTIONS(2790), + [anon_sym_alignas] = ACTIONS(2790), + [anon_sym_explicit] = ACTIONS(2790), + [anon_sym_typename] = ACTIONS(2790), + [anon_sym_template] = ACTIONS(2790), + [anon_sym_operator] = ACTIONS(2790), + [anon_sym_try] = ACTIONS(2790), + [anon_sym_delete] = ACTIONS(2790), + [anon_sym_throw] = ACTIONS(2790), + [anon_sym_namespace] = ACTIONS(2790), + [anon_sym_using] = ACTIONS(2790), + [anon_sym_static_assert] = ACTIONS(2790), + [anon_sym_concept] = ACTIONS(2790), + [anon_sym_co_return] = ACTIONS(2790), + [anon_sym_co_yield] = ACTIONS(2790), + [anon_sym_R_DQUOTE] = ACTIONS(2792), + [anon_sym_LR_DQUOTE] = ACTIONS(2792), + [anon_sym_uR_DQUOTE] = ACTIONS(2792), + [anon_sym_UR_DQUOTE] = ACTIONS(2792), + [anon_sym_u8R_DQUOTE] = ACTIONS(2792), + [anon_sym_co_await] = ACTIONS(2790), + [anon_sym_new] = ACTIONS(2790), + [anon_sym_requires] = ACTIONS(2790), + [sym_this] = ACTIONS(2790), + }, + [441] = { + [sym_identifier] = ACTIONS(2800), + [aux_sym_preproc_include_token1] = ACTIONS(2800), + [aux_sym_preproc_def_token1] = ACTIONS(2800), + [aux_sym_preproc_if_token1] = ACTIONS(2800), + [aux_sym_preproc_if_token2] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2800), + [aux_sym_preproc_else_token1] = ACTIONS(2800), + [aux_sym_preproc_elif_token1] = ACTIONS(2800), + [sym_preproc_directive] = ACTIONS(2800), + [anon_sym_LPAREN2] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(2800), + [anon_sym_PLUS] = ACTIONS(2800), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_AMP_AMP] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2800), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym___extension__] = ACTIONS(2800), + [anon_sym_typedef] = ACTIONS(2800), + [anon_sym_extern] = ACTIONS(2800), + [anon_sym___attribute__] = ACTIONS(2800), + [anon_sym_COLON_COLON] = ACTIONS(2802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2802), + [anon_sym___declspec] = ACTIONS(2800), + [anon_sym___based] = ACTIONS(2800), + [anon_sym___cdecl] = ACTIONS(2800), + [anon_sym___clrcall] = ACTIONS(2800), + [anon_sym___stdcall] = ACTIONS(2800), + [anon_sym___fastcall] = ACTIONS(2800), + [anon_sym___thiscall] = ACTIONS(2800), + [anon_sym___vectorcall] = ACTIONS(2800), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_signed] = ACTIONS(2800), + [anon_sym_unsigned] = ACTIONS(2800), + [anon_sym_long] = ACTIONS(2800), + [anon_sym_short] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2800), + [anon_sym_register] = ACTIONS(2800), + [anon_sym_inline] = ACTIONS(2800), + [anon_sym___inline] = ACTIONS(2800), + [anon_sym___inline__] = ACTIONS(2800), + [anon_sym___forceinline] = ACTIONS(2800), + [anon_sym_thread_local] = ACTIONS(2800), + [anon_sym___thread] = ACTIONS(2800), + [anon_sym_const] = ACTIONS(2800), + [anon_sym_constexpr] = ACTIONS(2800), + [anon_sym_volatile] = ACTIONS(2800), + [anon_sym_restrict] = ACTIONS(2800), + [anon_sym___restrict__] = ACTIONS(2800), + [anon_sym__Atomic] = ACTIONS(2800), + [anon_sym__Noreturn] = ACTIONS(2800), + [anon_sym_noreturn] = ACTIONS(2800), + [anon_sym_mutable] = ACTIONS(2800), + [anon_sym_constinit] = ACTIONS(2800), + [anon_sym_consteval] = ACTIONS(2800), + [sym_primitive_type] = ACTIONS(2800), + [anon_sym_enum] = ACTIONS(2800), + [anon_sym_class] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2800), + [anon_sym_union] = ACTIONS(2800), + [anon_sym_if] = ACTIONS(2800), + [anon_sym_else] = ACTIONS(2800), + [anon_sym_switch] = ACTIONS(2800), + [anon_sym_case] = ACTIONS(2800), + [anon_sym_default] = ACTIONS(2800), + [anon_sym_while] = ACTIONS(2800), + [anon_sym_do] = ACTIONS(2800), + [anon_sym_for] = ACTIONS(2800), + [anon_sym_return] = ACTIONS(2800), + [anon_sym_break] = ACTIONS(2800), + [anon_sym_continue] = ACTIONS(2800), + [anon_sym_goto] = ACTIONS(2800), + [anon_sym_not] = ACTIONS(2800), + [anon_sym_compl] = ACTIONS(2800), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_sizeof] = ACTIONS(2800), + [anon_sym___alignof__] = ACTIONS(2800), + [anon_sym___alignof] = ACTIONS(2800), + [anon_sym__alignof] = ACTIONS(2800), + [anon_sym_alignof] = ACTIONS(2800), + [anon_sym__Alignof] = ACTIONS(2800), + [anon_sym_offsetof] = ACTIONS(2800), + [anon_sym__Generic] = ACTIONS(2800), + [anon_sym_asm] = ACTIONS(2800), + [anon_sym___asm__] = ACTIONS(2800), + [sym_number_literal] = ACTIONS(2802), + [anon_sym_L_SQUOTE] = ACTIONS(2802), + [anon_sym_u_SQUOTE] = ACTIONS(2802), + [anon_sym_U_SQUOTE] = ACTIONS(2802), + [anon_sym_u8_SQUOTE] = ACTIONS(2802), + [anon_sym_SQUOTE] = ACTIONS(2802), + [anon_sym_L_DQUOTE] = ACTIONS(2802), + [anon_sym_u_DQUOTE] = ACTIONS(2802), + [anon_sym_U_DQUOTE] = ACTIONS(2802), + [anon_sym_u8_DQUOTE] = ACTIONS(2802), + [anon_sym_DQUOTE] = ACTIONS(2802), + [sym_true] = ACTIONS(2800), + [sym_false] = ACTIONS(2800), + [anon_sym_NULL] = ACTIONS(2800), + [anon_sym_nullptr] = ACTIONS(2800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2800), + [anon_sym_decltype] = ACTIONS(2800), + [anon_sym_virtual] = ACTIONS(2800), + [anon_sym_alignas] = ACTIONS(2800), + [anon_sym_explicit] = ACTIONS(2800), + [anon_sym_typename] = ACTIONS(2800), + [anon_sym_template] = ACTIONS(2800), + [anon_sym_operator] = ACTIONS(2800), + [anon_sym_try] = ACTIONS(2800), + [anon_sym_delete] = ACTIONS(2800), + [anon_sym_throw] = ACTIONS(2800), + [anon_sym_namespace] = ACTIONS(2800), + [anon_sym_using] = ACTIONS(2800), + [anon_sym_static_assert] = ACTIONS(2800), + [anon_sym_concept] = ACTIONS(2800), + [anon_sym_co_return] = ACTIONS(2800), + [anon_sym_co_yield] = ACTIONS(2800), + [anon_sym_R_DQUOTE] = ACTIONS(2802), + [anon_sym_LR_DQUOTE] = ACTIONS(2802), + [anon_sym_uR_DQUOTE] = ACTIONS(2802), + [anon_sym_UR_DQUOTE] = ACTIONS(2802), + [anon_sym_u8R_DQUOTE] = ACTIONS(2802), + [anon_sym_co_await] = ACTIONS(2800), + [anon_sym_new] = ACTIONS(2800), + [anon_sym_requires] = ACTIONS(2800), + [sym_this] = ACTIONS(2800), + }, + [442] = { + [sym_identifier] = ACTIONS(2770), + [aux_sym_preproc_include_token1] = ACTIONS(2770), + [aux_sym_preproc_def_token1] = ACTIONS(2770), + [aux_sym_preproc_if_token1] = ACTIONS(2770), + [aux_sym_preproc_if_token2] = ACTIONS(2770), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2770), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2770), + [aux_sym_preproc_else_token1] = ACTIONS(2770), + [aux_sym_preproc_elif_token1] = ACTIONS(2770), + [sym_preproc_directive] = ACTIONS(2770), + [anon_sym_LPAREN2] = ACTIONS(2772), + [anon_sym_BANG] = ACTIONS(2772), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2770), + [anon_sym_PLUS] = ACTIONS(2770), + [anon_sym_STAR] = ACTIONS(2772), + [anon_sym_AMP_AMP] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2770), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym___extension__] = ACTIONS(2770), + [anon_sym_typedef] = ACTIONS(2770), + [anon_sym_extern] = ACTIONS(2770), + [anon_sym___attribute__] = ACTIONS(2770), + [anon_sym_COLON_COLON] = ACTIONS(2772), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2772), + [anon_sym___declspec] = ACTIONS(2770), + [anon_sym___based] = ACTIONS(2770), + [anon_sym___cdecl] = ACTIONS(2770), + [anon_sym___clrcall] = ACTIONS(2770), + [anon_sym___stdcall] = ACTIONS(2770), + [anon_sym___fastcall] = ACTIONS(2770), + [anon_sym___thiscall] = ACTIONS(2770), + [anon_sym___vectorcall] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_signed] = ACTIONS(2770), + [anon_sym_unsigned] = ACTIONS(2770), + [anon_sym_long] = ACTIONS(2770), + [anon_sym_short] = ACTIONS(2770), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym_static] = ACTIONS(2770), + [anon_sym_register] = ACTIONS(2770), + [anon_sym_inline] = ACTIONS(2770), + [anon_sym___inline] = ACTIONS(2770), + [anon_sym___inline__] = ACTIONS(2770), + [anon_sym___forceinline] = ACTIONS(2770), + [anon_sym_thread_local] = ACTIONS(2770), + [anon_sym___thread] = ACTIONS(2770), + [anon_sym_const] = ACTIONS(2770), + [anon_sym_constexpr] = ACTIONS(2770), + [anon_sym_volatile] = ACTIONS(2770), + [anon_sym_restrict] = ACTIONS(2770), + [anon_sym___restrict__] = ACTIONS(2770), + [anon_sym__Atomic] = ACTIONS(2770), + [anon_sym__Noreturn] = ACTIONS(2770), + [anon_sym_noreturn] = ACTIONS(2770), + [anon_sym_mutable] = ACTIONS(2770), + [anon_sym_constinit] = ACTIONS(2770), + [anon_sym_consteval] = ACTIONS(2770), + [sym_primitive_type] = ACTIONS(2770), + [anon_sym_enum] = ACTIONS(2770), + [anon_sym_class] = ACTIONS(2770), + [anon_sym_struct] = ACTIONS(2770), + [anon_sym_union] = ACTIONS(2770), + [anon_sym_if] = ACTIONS(2770), + [anon_sym_else] = ACTIONS(2770), + [anon_sym_switch] = ACTIONS(2770), + [anon_sym_case] = ACTIONS(2770), + [anon_sym_default] = ACTIONS(2770), + [anon_sym_while] = ACTIONS(2770), + [anon_sym_do] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2770), + [anon_sym_return] = ACTIONS(2770), + [anon_sym_break] = ACTIONS(2770), + [anon_sym_continue] = ACTIONS(2770), + [anon_sym_goto] = ACTIONS(2770), + [anon_sym_not] = ACTIONS(2770), + [anon_sym_compl] = ACTIONS(2770), + [anon_sym_DASH_DASH] = ACTIONS(2772), + [anon_sym_PLUS_PLUS] = ACTIONS(2772), + [anon_sym_sizeof] = ACTIONS(2770), + [anon_sym___alignof__] = ACTIONS(2770), + [anon_sym___alignof] = ACTIONS(2770), + [anon_sym__alignof] = ACTIONS(2770), + [anon_sym_alignof] = ACTIONS(2770), + [anon_sym__Alignof] = ACTIONS(2770), + [anon_sym_offsetof] = ACTIONS(2770), + [anon_sym__Generic] = ACTIONS(2770), + [anon_sym_asm] = ACTIONS(2770), + [anon_sym___asm__] = ACTIONS(2770), + [sym_number_literal] = ACTIONS(2772), + [anon_sym_L_SQUOTE] = ACTIONS(2772), + [anon_sym_u_SQUOTE] = ACTIONS(2772), + [anon_sym_U_SQUOTE] = ACTIONS(2772), + [anon_sym_u8_SQUOTE] = ACTIONS(2772), + [anon_sym_SQUOTE] = ACTIONS(2772), + [anon_sym_L_DQUOTE] = ACTIONS(2772), + [anon_sym_u_DQUOTE] = ACTIONS(2772), + [anon_sym_U_DQUOTE] = ACTIONS(2772), + [anon_sym_u8_DQUOTE] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2772), + [sym_true] = ACTIONS(2770), + [sym_false] = ACTIONS(2770), + [anon_sym_NULL] = ACTIONS(2770), + [anon_sym_nullptr] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2770), + [anon_sym_decltype] = ACTIONS(2770), + [anon_sym_virtual] = ACTIONS(2770), + [anon_sym_alignas] = ACTIONS(2770), + [anon_sym_explicit] = ACTIONS(2770), + [anon_sym_typename] = ACTIONS(2770), + [anon_sym_template] = ACTIONS(2770), + [anon_sym_operator] = ACTIONS(2770), + [anon_sym_try] = ACTIONS(2770), + [anon_sym_delete] = ACTIONS(2770), + [anon_sym_throw] = ACTIONS(2770), + [anon_sym_namespace] = ACTIONS(2770), + [anon_sym_using] = ACTIONS(2770), + [anon_sym_static_assert] = ACTIONS(2770), + [anon_sym_concept] = ACTIONS(2770), + [anon_sym_co_return] = ACTIONS(2770), + [anon_sym_co_yield] = ACTIONS(2770), + [anon_sym_R_DQUOTE] = ACTIONS(2772), + [anon_sym_LR_DQUOTE] = ACTIONS(2772), + [anon_sym_uR_DQUOTE] = ACTIONS(2772), + [anon_sym_UR_DQUOTE] = ACTIONS(2772), + [anon_sym_u8R_DQUOTE] = ACTIONS(2772), + [anon_sym_co_await] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2770), + [anon_sym_requires] = ACTIONS(2770), + [sym_this] = ACTIONS(2770), + }, + [443] = { + [sym_catch_clause] = STATE(415), + [aux_sym_constructor_try_statement_repeat1] = STATE(415), + [sym_identifier] = ACTIONS(2255), + [aux_sym_preproc_include_token1] = ACTIONS(2255), + [aux_sym_preproc_def_token1] = ACTIONS(2255), + [aux_sym_preproc_if_token1] = ACTIONS(2255), + [aux_sym_preproc_if_token2] = ACTIONS(2255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2255), + [sym_preproc_directive] = ACTIONS(2255), + [anon_sym_LPAREN2] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_AMP_AMP] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2257), + [anon_sym___extension__] = ACTIONS(2255), + [anon_sym_typedef] = ACTIONS(2255), + [anon_sym_extern] = ACTIONS(2255), + [anon_sym___attribute__] = ACTIONS(2255), + [anon_sym_COLON_COLON] = ACTIONS(2257), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2257), + [anon_sym___declspec] = ACTIONS(2255), + [anon_sym___based] = ACTIONS(2255), + [anon_sym___cdecl] = ACTIONS(2255), + [anon_sym___clrcall] = ACTIONS(2255), + [anon_sym___stdcall] = ACTIONS(2255), + [anon_sym___fastcall] = ACTIONS(2255), + [anon_sym___thiscall] = ACTIONS(2255), + [anon_sym___vectorcall] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2257), + [anon_sym_signed] = ACTIONS(2255), + [anon_sym_unsigned] = ACTIONS(2255), + [anon_sym_long] = ACTIONS(2255), + [anon_sym_short] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_register] = ACTIONS(2255), + [anon_sym_inline] = ACTIONS(2255), + [anon_sym___inline] = ACTIONS(2255), + [anon_sym___inline__] = ACTIONS(2255), + [anon_sym___forceinline] = ACTIONS(2255), + [anon_sym_thread_local] = ACTIONS(2255), + [anon_sym___thread] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_constexpr] = ACTIONS(2255), + [anon_sym_volatile] = ACTIONS(2255), + [anon_sym_restrict] = ACTIONS(2255), + [anon_sym___restrict__] = ACTIONS(2255), + [anon_sym__Atomic] = ACTIONS(2255), + [anon_sym__Noreturn] = ACTIONS(2255), + [anon_sym_noreturn] = ACTIONS(2255), + [anon_sym_mutable] = ACTIONS(2255), + [anon_sym_constinit] = ACTIONS(2255), + [anon_sym_consteval] = ACTIONS(2255), + [sym_primitive_type] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [anon_sym_class] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(2255), + [anon_sym_union] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_switch] = ACTIONS(2255), + [anon_sym_case] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2255), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_goto] = ACTIONS(2255), + [anon_sym_not] = ACTIONS(2255), + [anon_sym_compl] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_sizeof] = ACTIONS(2255), + [anon_sym___alignof__] = ACTIONS(2255), + [anon_sym___alignof] = ACTIONS(2255), + [anon_sym__alignof] = ACTIONS(2255), + [anon_sym_alignof] = ACTIONS(2255), + [anon_sym__Alignof] = ACTIONS(2255), + [anon_sym_offsetof] = ACTIONS(2255), + [anon_sym__Generic] = ACTIONS(2255), + [anon_sym_asm] = ACTIONS(2255), + [anon_sym___asm__] = ACTIONS(2255), + [sym_number_literal] = ACTIONS(2257), + [anon_sym_L_SQUOTE] = ACTIONS(2257), + [anon_sym_u_SQUOTE] = ACTIONS(2257), + [anon_sym_U_SQUOTE] = ACTIONS(2257), + [anon_sym_u8_SQUOTE] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2257), + [anon_sym_L_DQUOTE] = ACTIONS(2257), + [anon_sym_u_DQUOTE] = ACTIONS(2257), + [anon_sym_U_DQUOTE] = ACTIONS(2257), + [anon_sym_u8_DQUOTE] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2257), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), + [anon_sym_NULL] = ACTIONS(2255), + [anon_sym_nullptr] = ACTIONS(2255), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2255), + [anon_sym_decltype] = ACTIONS(2255), + [anon_sym_virtual] = ACTIONS(2255), + [anon_sym_alignas] = ACTIONS(2255), + [anon_sym_explicit] = ACTIONS(2255), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(2255), + [anon_sym_operator] = ACTIONS(2255), + [anon_sym_try] = ACTIONS(2255), + [anon_sym_delete] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(2255), + [anon_sym_namespace] = ACTIONS(2255), + [anon_sym_using] = ACTIONS(2255), + [anon_sym_static_assert] = ACTIONS(2255), + [anon_sym_concept] = ACTIONS(2255), + [anon_sym_co_return] = ACTIONS(2255), + [anon_sym_co_yield] = ACTIONS(2255), + [anon_sym_catch] = ACTIONS(3220), + [anon_sym_R_DQUOTE] = ACTIONS(2257), + [anon_sym_LR_DQUOTE] = ACTIONS(2257), + [anon_sym_uR_DQUOTE] = ACTIONS(2257), + [anon_sym_UR_DQUOTE] = ACTIONS(2257), + [anon_sym_u8R_DQUOTE] = ACTIONS(2257), + [anon_sym_co_await] = ACTIONS(2255), + [anon_sym_new] = ACTIONS(2255), + [anon_sym_requires] = ACTIONS(2255), + [sym_this] = ACTIONS(2255), + }, + [444] = { + [sym_type_qualifier] = STATE(3780), + [sym__type_specifier] = STATE(4440), + [sym_sized_type_specifier] = STATE(2799), + [sym_enum_specifier] = STATE(2799), + [sym_struct_specifier] = STATE(2799), + [sym_union_specifier] = STATE(2799), + [sym__expression] = STATE(4076), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_type_descriptor] = STATE(6649), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_placeholder_type_specifier] = STATE(2799), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2758), + [sym_class_specifier] = STATE(2799), + [sym__class_name] = STATE(6922), + [sym_dependent_type] = STATE(2799), + [sym_template_type] = STATE(4929), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_type_parameter_pack_expansion] = STATE(7013), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5157), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(4973), + [sym_user_defined_literal] = STATE(3355), + [aux_sym__type_definition_type_repeat1] = STATE(3780), + [aux_sym_sized_type_specifier_repeat1] = STATE(2297), + [sym_identifier] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2934), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2938), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), + }, + [445] = { + [sym_preproc_def] = STATE(446), + [sym_preproc_function_def] = STATE(446), + [sym_preproc_call] = STATE(446), + [sym_preproc_if_in_field_declaration_list] = STATE(446), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(446), + [sym_preproc_else_in_field_declaration_list] = STATE(7283), + [sym_preproc_elif_in_field_declaration_list] = STATE(7283), + [sym_type_definition] = STATE(446), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5209), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5775), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(446), + [sym_field_declaration] = STATE(446), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1795), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(446), + [sym_operator_cast] = STATE(6107), + [sym_inline_method_definition] = STATE(446), + [sym__constructor_specifiers] = STATE(1795), + [sym_operator_cast_definition] = STATE(446), + [sym_operator_cast_declaration] = STATE(446), + [sym_constructor_or_destructor_definition] = STATE(446), + [sym_constructor_or_destructor_declaration] = STATE(446), + [sym_friend_declaration] = STATE(446), + [sym_access_specifier] = STATE(7215), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(446), + [sym_alias_declaration] = STATE(446), + [sym_static_assert_declaration] = STATE(446), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6107), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(446), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1795), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3269), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3237), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2687), + [sym_preproc_directive] = ACTIONS(3239), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3241), + [anon_sym_typedef] = ACTIONS(3243), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3245), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3249), + [anon_sym_static_assert] = ACTIONS(3251), }, - [375] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [446] = { + [sym_preproc_def] = STATE(601), + [sym_preproc_function_def] = STATE(601), + [sym_preproc_call] = STATE(601), + [sym_preproc_if_in_field_declaration_list] = STATE(601), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(601), + [sym_preproc_else_in_field_declaration_list] = STATE(7250), + [sym_preproc_elif_in_field_declaration_list] = STATE(7250), + [sym_type_definition] = STATE(601), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5209), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5775), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(601), + [sym_field_declaration] = STATE(601), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1795), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(601), + [sym_operator_cast] = STATE(6107), + [sym_inline_method_definition] = STATE(601), + [sym__constructor_specifiers] = STATE(1795), + [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_access_specifier] = STATE(7215), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(601), + [sym_alias_declaration] = STATE(601), + [sym_static_assert_declaration] = STATE(601), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6107), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(601), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1795), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3237), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2687), + [sym_preproc_directive] = ACTIONS(3239), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3241), + [anon_sym_typedef] = ACTIONS(3243), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3245), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3249), + [anon_sym_static_assert] = ACTIONS(3251), }, - [376] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - }, - [377] = { - [sym_identifier] = ACTIONS(2786), - [aux_sym_preproc_include_token1] = ACTIONS(2786), - [aux_sym_preproc_def_token1] = ACTIONS(2786), - [aux_sym_preproc_if_token1] = ACTIONS(2786), - [aux_sym_preproc_if_token2] = ACTIONS(2786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2786), - [aux_sym_preproc_else_token1] = ACTIONS(2786), - [aux_sym_preproc_elif_token1] = ACTIONS(2786), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2786), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2786), - [sym_preproc_directive] = ACTIONS(2786), - [anon_sym_LPAREN2] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2786), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym___extension__] = ACTIONS(2786), - [anon_sym_typedef] = ACTIONS(2786), - [anon_sym_extern] = ACTIONS(2786), - [anon_sym___attribute__] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2788), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2788), - [anon_sym___declspec] = ACTIONS(2786), - [anon_sym___based] = ACTIONS(2786), - [anon_sym___cdecl] = ACTIONS(2786), - [anon_sym___clrcall] = ACTIONS(2786), - [anon_sym___stdcall] = ACTIONS(2786), - [anon_sym___fastcall] = ACTIONS(2786), - [anon_sym___thiscall] = ACTIONS(2786), - [anon_sym___vectorcall] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_signed] = ACTIONS(2786), - [anon_sym_unsigned] = ACTIONS(2786), - [anon_sym_long] = ACTIONS(2786), - [anon_sym_short] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_static] = ACTIONS(2786), - [anon_sym_register] = ACTIONS(2786), - [anon_sym_inline] = ACTIONS(2786), - [anon_sym___inline] = ACTIONS(2786), - [anon_sym___inline__] = ACTIONS(2786), - [anon_sym___forceinline] = ACTIONS(2786), - [anon_sym_thread_local] = ACTIONS(2786), - [anon_sym___thread] = ACTIONS(2786), - [anon_sym_const] = ACTIONS(2786), - [anon_sym_constexpr] = ACTIONS(2786), - [anon_sym_volatile] = ACTIONS(2786), - [anon_sym_restrict] = ACTIONS(2786), - [anon_sym___restrict__] = ACTIONS(2786), - [anon_sym__Atomic] = ACTIONS(2786), - [anon_sym__Noreturn] = ACTIONS(2786), - [anon_sym_noreturn] = ACTIONS(2786), - [anon_sym_mutable] = ACTIONS(2786), - [anon_sym_constinit] = ACTIONS(2786), - [anon_sym_consteval] = ACTIONS(2786), - [sym_primitive_type] = ACTIONS(2786), - [anon_sym_enum] = ACTIONS(2786), - [anon_sym_class] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2786), - [anon_sym_union] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2786), - [anon_sym_else] = ACTIONS(2786), - [anon_sym_switch] = ACTIONS(2786), - [anon_sym_case] = ACTIONS(2786), - [anon_sym_default] = ACTIONS(2786), - [anon_sym_while] = ACTIONS(2786), - [anon_sym_do] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2786), - [anon_sym_return] = ACTIONS(2786), - [anon_sym_break] = ACTIONS(2786), - [anon_sym_continue] = ACTIONS(2786), - [anon_sym_goto] = ACTIONS(2786), - [anon_sym_not] = ACTIONS(2786), - [anon_sym_compl] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_sizeof] = ACTIONS(2786), - [anon_sym___alignof__] = ACTIONS(2786), - [anon_sym___alignof] = ACTIONS(2786), - [anon_sym__alignof] = ACTIONS(2786), - [anon_sym_alignof] = ACTIONS(2786), - [anon_sym__Alignof] = ACTIONS(2786), - [anon_sym_offsetof] = ACTIONS(2786), - [anon_sym__Generic] = ACTIONS(2786), - [anon_sym_asm] = ACTIONS(2786), - [anon_sym___asm__] = ACTIONS(2786), - [sym_number_literal] = ACTIONS(2788), - [anon_sym_L_SQUOTE] = ACTIONS(2788), - [anon_sym_u_SQUOTE] = ACTIONS(2788), - [anon_sym_U_SQUOTE] = ACTIONS(2788), - [anon_sym_u8_SQUOTE] = ACTIONS(2788), - [anon_sym_SQUOTE] = ACTIONS(2788), - [anon_sym_L_DQUOTE] = ACTIONS(2788), - [anon_sym_u_DQUOTE] = ACTIONS(2788), - [anon_sym_U_DQUOTE] = ACTIONS(2788), - [anon_sym_u8_DQUOTE] = ACTIONS(2788), - [anon_sym_DQUOTE] = ACTIONS(2788), - [sym_true] = ACTIONS(2786), - [sym_false] = ACTIONS(2786), - [anon_sym_NULL] = ACTIONS(2786), - [anon_sym_nullptr] = ACTIONS(2786), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2786), - [anon_sym_decltype] = ACTIONS(2786), - [anon_sym_virtual] = ACTIONS(2786), - [anon_sym_alignas] = ACTIONS(2786), - [anon_sym_explicit] = ACTIONS(2786), - [anon_sym_typename] = ACTIONS(2786), - [anon_sym_template] = ACTIONS(2786), - [anon_sym_operator] = ACTIONS(2786), - [anon_sym_try] = ACTIONS(2786), - [anon_sym_delete] = ACTIONS(2786), - [anon_sym_throw] = ACTIONS(2786), - [anon_sym_namespace] = ACTIONS(2786), - [anon_sym_using] = ACTIONS(2786), - [anon_sym_static_assert] = ACTIONS(2786), - [anon_sym_concept] = ACTIONS(2786), - [anon_sym_co_return] = ACTIONS(2786), - [anon_sym_co_yield] = ACTIONS(2786), - [anon_sym_R_DQUOTE] = ACTIONS(2788), - [anon_sym_LR_DQUOTE] = ACTIONS(2788), - [anon_sym_uR_DQUOTE] = ACTIONS(2788), - [anon_sym_UR_DQUOTE] = ACTIONS(2788), - [anon_sym_u8R_DQUOTE] = ACTIONS(2788), - [anon_sym_co_await] = ACTIONS(2786), - [anon_sym_new] = ACTIONS(2786), - [anon_sym_requires] = ACTIONS(2786), - [sym_this] = ACTIONS(2786), - }, - [378] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - }, - [379] = { - [sym__expression] = STATE(5044), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9035), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2790), + [447] = { + [sym__expression] = STATE(4009), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), [anon_sym_LPAREN2] = ACTIONS(1366), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -111991,42 +117495,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym___extension__] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym___attribute__] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2797), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2800), - [anon_sym___declspec] = ACTIONS(2795), - [anon_sym_signed] = ACTIONS(2795), - [anon_sym_unsigned] = ACTIONS(2795), - [anon_sym_long] = ACTIONS(2795), - [anon_sym_short] = ACTIONS(2795), + [anon_sym___extension__] = ACTIONS(3273), + [anon_sym_extern] = ACTIONS(3273), + [anon_sym___attribute__] = ACTIONS(3273), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3275), + [anon_sym___declspec] = ACTIONS(3273), + [anon_sym_signed] = ACTIONS(3273), + [anon_sym_unsigned] = ACTIONS(3273), + [anon_sym_long] = ACTIONS(3273), + [anon_sym_short] = ACTIONS(3273), [anon_sym_LBRACK] = ACTIONS(1376), - [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_mutable] = ACTIONS(2795), - [anon_sym_constinit] = ACTIONS(2795), - [anon_sym_consteval] = ACTIONS(2795), - [sym_primitive_type] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_union] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(3273), + [anon_sym_register] = ACTIONS(3273), + [anon_sym_inline] = ACTIONS(3273), + [anon_sym___inline] = ACTIONS(3273), + [anon_sym___inline__] = ACTIONS(3273), + [anon_sym___forceinline] = ACTIONS(3273), + [anon_sym_thread_local] = ACTIONS(3273), + [anon_sym___thread] = ACTIONS(3273), + [anon_sym_const] = ACTIONS(3273), + [anon_sym_constexpr] = ACTIONS(3273), + [anon_sym_volatile] = ACTIONS(3273), + [anon_sym_restrict] = ACTIONS(3273), + [anon_sym___restrict__] = ACTIONS(3273), + [anon_sym__Atomic] = ACTIONS(3273), + [anon_sym__Noreturn] = ACTIONS(3273), + [anon_sym_noreturn] = ACTIONS(3273), + [anon_sym_mutable] = ACTIONS(3273), + [anon_sym_constinit] = ACTIONS(3273), + [anon_sym_consteval] = ACTIONS(3273), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(3273), + [anon_sym_class] = ACTIONS(3273), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3273), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -112057,12 +117560,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2795), - [anon_sym_decltype] = ACTIONS(2805), - [anon_sym_virtual] = ACTIONS(2795), - [anon_sym_alignas] = ACTIONS(2795), - [anon_sym_typename] = ACTIONS(2795), - [anon_sym_template] = ACTIONS(2808), + [sym_auto] = ACTIONS(3273), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(3273), + [anon_sym_alignas] = ACTIONS(3273), + [anon_sym_typename] = ACTIONS(3273), + [anon_sym_template] = ACTIONS(1378), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), @@ -112074,12990 +117577,12228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [380] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [448] = { + [sym_preproc_def] = STATE(601), + [sym_preproc_function_def] = STATE(601), + [sym_preproc_call] = STATE(601), + [sym_preproc_if_in_field_declaration_list] = STATE(601), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(601), + [sym_preproc_else_in_field_declaration_list] = STATE(7306), + [sym_preproc_elif_in_field_declaration_list] = STATE(7306), + [sym_type_definition] = STATE(601), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5209), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5775), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(601), + [sym_field_declaration] = STATE(601), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1795), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(601), + [sym_operator_cast] = STATE(6107), + [sym_inline_method_definition] = STATE(601), + [sym__constructor_specifiers] = STATE(1795), + [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_access_specifier] = STATE(7215), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(601), + [sym_alias_declaration] = STATE(601), + [sym_static_assert_declaration] = STATE(601), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6107), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(601), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1795), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3277), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3237), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2687), + [sym_preproc_directive] = ACTIONS(3239), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3241), + [anon_sym_typedef] = ACTIONS(3243), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - }, - [381] = { - [sym_catch_clause] = STATE(350), - [aux_sym_constructor_try_statement_repeat1] = STATE(350), - [sym_identifier] = ACTIONS(2563), - [aux_sym_preproc_include_token1] = ACTIONS(2563), - [aux_sym_preproc_def_token1] = ACTIONS(2563), - [aux_sym_preproc_if_token1] = ACTIONS(2563), - [aux_sym_preproc_if_token2] = ACTIONS(2563), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2563), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2563), - [aux_sym_preproc_else_token1] = ACTIONS(2563), - [aux_sym_preproc_elif_token1] = ACTIONS(2563), - [sym_preproc_directive] = ACTIONS(2563), - [anon_sym_LPAREN2] = ACTIONS(2565), - [anon_sym_BANG] = ACTIONS(2565), - [anon_sym_TILDE] = ACTIONS(2565), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_STAR] = ACTIONS(2565), - [anon_sym_AMP_AMP] = ACTIONS(2565), - [anon_sym_AMP] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2565), - [anon_sym___extension__] = ACTIONS(2563), - [anon_sym_typedef] = ACTIONS(2563), - [anon_sym_extern] = ACTIONS(2563), - [anon_sym___attribute__] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2565), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), - [anon_sym___declspec] = ACTIONS(2563), - [anon_sym___based] = ACTIONS(2563), - [anon_sym___cdecl] = ACTIONS(2563), - [anon_sym___clrcall] = ACTIONS(2563), - [anon_sym___stdcall] = ACTIONS(2563), - [anon_sym___fastcall] = ACTIONS(2563), - [anon_sym___thiscall] = ACTIONS(2563), - [anon_sym___vectorcall] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2565), - [anon_sym_signed] = ACTIONS(2563), - [anon_sym_unsigned] = ACTIONS(2563), - [anon_sym_long] = ACTIONS(2563), - [anon_sym_short] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(2563), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2563), - [anon_sym_inline] = ACTIONS(2563), - [anon_sym___inline] = ACTIONS(2563), - [anon_sym___inline__] = ACTIONS(2563), - [anon_sym___forceinline] = ACTIONS(2563), - [anon_sym_thread_local] = ACTIONS(2563), - [anon_sym___thread] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_constexpr] = ACTIONS(2563), - [anon_sym_volatile] = ACTIONS(2563), - [anon_sym_restrict] = ACTIONS(2563), - [anon_sym___restrict__] = ACTIONS(2563), - [anon_sym__Atomic] = ACTIONS(2563), - [anon_sym__Noreturn] = ACTIONS(2563), - [anon_sym_noreturn] = ACTIONS(2563), - [anon_sym_mutable] = ACTIONS(2563), - [anon_sym_constinit] = ACTIONS(2563), - [anon_sym_consteval] = ACTIONS(2563), - [sym_primitive_type] = ACTIONS(2563), - [anon_sym_enum] = ACTIONS(2563), - [anon_sym_class] = ACTIONS(2563), - [anon_sym_struct] = ACTIONS(2563), - [anon_sym_union] = ACTIONS(2563), - [anon_sym_if] = ACTIONS(2563), - [anon_sym_switch] = ACTIONS(2563), - [anon_sym_case] = ACTIONS(2563), - [anon_sym_default] = ACTIONS(2563), - [anon_sym_while] = ACTIONS(2563), - [anon_sym_do] = ACTIONS(2563), - [anon_sym_for] = ACTIONS(2563), - [anon_sym_return] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_goto] = ACTIONS(2563), - [anon_sym_not] = ACTIONS(2563), - [anon_sym_compl] = ACTIONS(2563), - [anon_sym_DASH_DASH] = ACTIONS(2565), - [anon_sym_PLUS_PLUS] = ACTIONS(2565), - [anon_sym_sizeof] = ACTIONS(2563), - [anon_sym___alignof__] = ACTIONS(2563), - [anon_sym___alignof] = ACTIONS(2563), - [anon_sym__alignof] = ACTIONS(2563), - [anon_sym_alignof] = ACTIONS(2563), - [anon_sym__Alignof] = ACTIONS(2563), - [anon_sym_offsetof] = ACTIONS(2563), - [anon_sym__Generic] = ACTIONS(2563), - [anon_sym_asm] = ACTIONS(2563), - [anon_sym___asm__] = ACTIONS(2563), - [sym_number_literal] = ACTIONS(2565), - [anon_sym_L_SQUOTE] = ACTIONS(2565), - [anon_sym_u_SQUOTE] = ACTIONS(2565), - [anon_sym_U_SQUOTE] = ACTIONS(2565), - [anon_sym_u8_SQUOTE] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2565), - [anon_sym_L_DQUOTE] = ACTIONS(2565), - [anon_sym_u_DQUOTE] = ACTIONS(2565), - [anon_sym_U_DQUOTE] = ACTIONS(2565), - [anon_sym_u8_DQUOTE] = ACTIONS(2565), - [anon_sym_DQUOTE] = ACTIONS(2565), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [anon_sym_NULL] = ACTIONS(2563), - [anon_sym_nullptr] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2563), - [anon_sym_decltype] = ACTIONS(2563), - [anon_sym_virtual] = ACTIONS(2563), - [anon_sym_alignas] = ACTIONS(2563), - [anon_sym_explicit] = ACTIONS(2563), - [anon_sym_typename] = ACTIONS(2563), - [anon_sym_template] = ACTIONS(2563), - [anon_sym_operator] = ACTIONS(2563), - [anon_sym_try] = ACTIONS(2563), - [anon_sym_delete] = ACTIONS(2563), - [anon_sym_throw] = ACTIONS(2563), - [anon_sym_namespace] = ACTIONS(2563), - [anon_sym_using] = ACTIONS(2563), - [anon_sym_static_assert] = ACTIONS(2563), - [anon_sym_concept] = ACTIONS(2563), - [anon_sym_co_return] = ACTIONS(2563), - [anon_sym_co_yield] = ACTIONS(2563), - [anon_sym_catch] = ACTIONS(2760), - [anon_sym_R_DQUOTE] = ACTIONS(2565), - [anon_sym_LR_DQUOTE] = ACTIONS(2565), - [anon_sym_uR_DQUOTE] = ACTIONS(2565), - [anon_sym_UR_DQUOTE] = ACTIONS(2565), - [anon_sym_u8R_DQUOTE] = ACTIONS(2565), - [anon_sym_co_await] = ACTIONS(2563), - [anon_sym_new] = ACTIONS(2563), - [anon_sym_requires] = ACTIONS(2563), - [sym_this] = ACTIONS(2563), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3245), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3249), + [anon_sym_static_assert] = ACTIONS(3251), }, - [382] = { - [sym__expression] = STATE(5125), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8987), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(2811), - [anon_sym___extension__] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym___attribute__] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2797), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2800), - [anon_sym___declspec] = 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(1376), - [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_mutable] = ACTIONS(2795), - [anon_sym_constinit] = ACTIONS(2795), - [anon_sym_consteval] = ACTIONS(2795), - [sym_primitive_type] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_union] = ACTIONS(2795), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [449] = { + [sym_preproc_def] = STATE(448), + [sym_preproc_function_def] = STATE(448), + [sym_preproc_call] = STATE(448), + [sym_preproc_if_in_field_declaration_list] = STATE(448), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(448), + [sym_preproc_else_in_field_declaration_list] = STATE(7297), + [sym_preproc_elif_in_field_declaration_list] = STATE(7297), + [sym_type_definition] = STATE(448), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5209), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5775), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(448), + [sym_field_declaration] = STATE(448), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1795), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(448), + [sym_operator_cast] = STATE(6107), + [sym_inline_method_definition] = STATE(448), + [sym__constructor_specifiers] = STATE(1795), + [sym_operator_cast_definition] = STATE(448), + [sym_operator_cast_declaration] = STATE(448), + [sym_constructor_or_destructor_definition] = STATE(448), + [sym_constructor_or_destructor_declaration] = STATE(448), + [sym_friend_declaration] = STATE(448), + [sym_access_specifier] = STATE(7215), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(448), + [sym_alias_declaration] = STATE(448), + [sym_static_assert_declaration] = STATE(448), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6107), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(448), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1795), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3237), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2687), + [sym_preproc_directive] = ACTIONS(3239), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3241), + [anon_sym_typedef] = ACTIONS(3243), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2795), - [anon_sym_decltype] = ACTIONS(2805), - [anon_sym_virtual] = ACTIONS(2795), - [anon_sym_alignas] = ACTIONS(2795), - [anon_sym_typename] = ACTIONS(2795), - [anon_sym_template] = ACTIONS(2808), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3245), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3249), + [anon_sym_static_assert] = ACTIONS(3251), }, - [383] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [450] = { + [sym_catch_clause] = STATE(336), + [aux_sym_constructor_try_statement_repeat1] = STATE(336), + [sym_identifier] = ACTIONS(2249), + [aux_sym_preproc_include_token1] = ACTIONS(2249), + [aux_sym_preproc_def_token1] = ACTIONS(2249), + [aux_sym_preproc_if_token1] = ACTIONS(2249), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2249), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2249), + [sym_preproc_directive] = ACTIONS(2249), + [anon_sym_LPAREN2] = ACTIONS(2251), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_TILDE] = ACTIONS(2251), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(2251), + [anon_sym_AMP_AMP] = ACTIONS(2251), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym___extension__] = ACTIONS(2249), + [anon_sym_typedef] = ACTIONS(2249), + [anon_sym_extern] = ACTIONS(2249), + [anon_sym___attribute__] = ACTIONS(2249), + [anon_sym_COLON_COLON] = ACTIONS(2251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2251), + [anon_sym___declspec] = ACTIONS(2249), + [anon_sym___based] = ACTIONS(2249), + [anon_sym___cdecl] = ACTIONS(2249), + [anon_sym___clrcall] = ACTIONS(2249), + [anon_sym___stdcall] = ACTIONS(2249), + [anon_sym___fastcall] = ACTIONS(2249), + [anon_sym___thiscall] = ACTIONS(2249), + [anon_sym___vectorcall] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_signed] = ACTIONS(2249), + [anon_sym_unsigned] = ACTIONS(2249), + [anon_sym_long] = ACTIONS(2249), + [anon_sym_short] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_register] = ACTIONS(2249), + [anon_sym_inline] = ACTIONS(2249), + [anon_sym___inline] = ACTIONS(2249), + [anon_sym___inline__] = ACTIONS(2249), + [anon_sym___forceinline] = ACTIONS(2249), + [anon_sym_thread_local] = ACTIONS(2249), + [anon_sym___thread] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_constexpr] = ACTIONS(2249), + [anon_sym_volatile] = ACTIONS(2249), + [anon_sym_restrict] = ACTIONS(2249), + [anon_sym___restrict__] = ACTIONS(2249), + [anon_sym__Atomic] = ACTIONS(2249), + [anon_sym__Noreturn] = ACTIONS(2249), + [anon_sym_noreturn] = ACTIONS(2249), + [anon_sym_mutable] = ACTIONS(2249), + [anon_sym_constinit] = ACTIONS(2249), + [anon_sym_consteval] = ACTIONS(2249), + [sym_primitive_type] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_switch] = ACTIONS(2249), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_goto] = ACTIONS(2249), + [anon_sym_not] = ACTIONS(2249), + [anon_sym_compl] = ACTIONS(2249), + [anon_sym_DASH_DASH] = ACTIONS(2251), + [anon_sym_PLUS_PLUS] = ACTIONS(2251), + [anon_sym_sizeof] = ACTIONS(2249), + [anon_sym___alignof__] = ACTIONS(2249), + [anon_sym___alignof] = ACTIONS(2249), + [anon_sym__alignof] = ACTIONS(2249), + [anon_sym_alignof] = ACTIONS(2249), + [anon_sym__Alignof] = ACTIONS(2249), + [anon_sym_offsetof] = ACTIONS(2249), + [anon_sym__Generic] = ACTIONS(2249), + [anon_sym_asm] = ACTIONS(2249), + [anon_sym___asm__] = ACTIONS(2249), + [sym_number_literal] = ACTIONS(2251), + [anon_sym_L_SQUOTE] = ACTIONS(2251), + [anon_sym_u_SQUOTE] = ACTIONS(2251), + [anon_sym_U_SQUOTE] = ACTIONS(2251), + [anon_sym_u8_SQUOTE] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_L_DQUOTE] = ACTIONS(2251), + [anon_sym_u_DQUOTE] = ACTIONS(2251), + [anon_sym_U_DQUOTE] = ACTIONS(2251), + [anon_sym_u8_DQUOTE] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(2251), + [sym_true] = ACTIONS(2249), + [sym_false] = ACTIONS(2249), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2249), + [anon_sym_decltype] = ACTIONS(2249), + [anon_sym_virtual] = ACTIONS(2249), + [anon_sym_alignas] = ACTIONS(2249), + [anon_sym_explicit] = ACTIONS(2249), + [anon_sym_typename] = ACTIONS(2249), + [anon_sym_template] = ACTIONS(2249), + [anon_sym_operator] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_delete] = ACTIONS(2249), + [anon_sym_throw] = ACTIONS(2249), + [anon_sym_namespace] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [anon_sym_static_assert] = ACTIONS(2249), + [anon_sym_concept] = ACTIONS(2249), + [anon_sym_co_return] = ACTIONS(2249), + [anon_sym_co_yield] = ACTIONS(2249), + [anon_sym_catch] = ACTIONS(2952), + [anon_sym_R_DQUOTE] = ACTIONS(2251), + [anon_sym_LR_DQUOTE] = ACTIONS(2251), + [anon_sym_uR_DQUOTE] = ACTIONS(2251), + [anon_sym_UR_DQUOTE] = ACTIONS(2251), + [anon_sym_u8R_DQUOTE] = ACTIONS(2251), + [anon_sym_co_await] = ACTIONS(2249), + [anon_sym_new] = ACTIONS(2249), + [anon_sym_requires] = ACTIONS(2249), + [sym_this] = ACTIONS(2249), }, - [384] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [451] = { + [sym_preproc_def] = STATE(423), + [sym_preproc_function_def] = STATE(423), + [sym_preproc_call] = STATE(423), + [sym_preproc_if_in_field_declaration_list] = STATE(423), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(423), + [sym_preproc_else_in_field_declaration_list] = STATE(7913), + [sym_preproc_elif_in_field_declaration_list] = STATE(7913), + [sym_type_definition] = STATE(423), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5209), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5775), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(423), + [sym_field_declaration] = STATE(423), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1795), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(423), + [sym_operator_cast] = STATE(6107), + [sym_inline_method_definition] = STATE(423), + [sym__constructor_specifiers] = STATE(1795), + [sym_operator_cast_definition] = STATE(423), + [sym_operator_cast_declaration] = STATE(423), + [sym_constructor_or_destructor_definition] = STATE(423), + [sym_constructor_or_destructor_declaration] = STATE(423), + [sym_friend_declaration] = STATE(423), + [sym_access_specifier] = STATE(7215), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(423), + [sym_alias_declaration] = STATE(423), + [sym_static_assert_declaration] = STATE(423), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6107), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(423), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1795), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3281), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3237), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2687), + [sym_preproc_directive] = ACTIONS(3239), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3241), + [anon_sym_typedef] = ACTIONS(3243), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3245), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3249), + [anon_sym_static_assert] = ACTIONS(3251), }, - [385] = { - [sym__expression] = STATE(5112), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9024), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym___extension__] = ACTIONS(2818), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym___attribute__] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), - [anon_sym___declspec] = ACTIONS(2818), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym___inline] = ACTIONS(2818), - [anon_sym___inline__] = ACTIONS(2818), - [anon_sym___forceinline] = ACTIONS(2818), - [anon_sym_thread_local] = ACTIONS(2818), - [anon_sym___thread] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_restrict] = ACTIONS(2818), - [anon_sym___restrict__] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [anon_sym__Noreturn] = ACTIONS(2818), - [anon_sym_noreturn] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [anon_sym_constinit] = ACTIONS(2818), - [anon_sym_consteval] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2825), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2818), - [anon_sym_decltype] = ACTIONS(2828), - [anon_sym_virtual] = ACTIONS(2818), - [anon_sym_alignas] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_template] = ACTIONS(2831), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [452] = { + [sym_identifier] = ACTIONS(2864), + [aux_sym_preproc_include_token1] = ACTIONS(2864), + [aux_sym_preproc_def_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token2] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2864), + [aux_sym_preproc_else_token1] = ACTIONS(2864), + [aux_sym_preproc_elif_token1] = ACTIONS(2864), + [sym_preproc_directive] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_AMP_AMP] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym___extension__] = ACTIONS(2864), + [anon_sym_typedef] = ACTIONS(2864), + [anon_sym_extern] = ACTIONS(2864), + [anon_sym___attribute__] = ACTIONS(2864), + [anon_sym_COLON_COLON] = ACTIONS(2866), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2866), + [anon_sym___declspec] = ACTIONS(2864), + [anon_sym___based] = ACTIONS(2864), + [anon_sym___cdecl] = ACTIONS(2864), + [anon_sym___clrcall] = ACTIONS(2864), + [anon_sym___stdcall] = ACTIONS(2864), + [anon_sym___fastcall] = ACTIONS(2864), + [anon_sym___thiscall] = ACTIONS(2864), + [anon_sym___vectorcall] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_signed] = ACTIONS(2864), + [anon_sym_unsigned] = ACTIONS(2864), + [anon_sym_long] = ACTIONS(2864), + [anon_sym_short] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_register] = ACTIONS(2864), + [anon_sym_inline] = ACTIONS(2864), + [anon_sym___inline] = ACTIONS(2864), + [anon_sym___inline__] = ACTIONS(2864), + [anon_sym___forceinline] = ACTIONS(2864), + [anon_sym_thread_local] = ACTIONS(2864), + [anon_sym___thread] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym___restrict__] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym__Noreturn] = ACTIONS(2864), + [anon_sym_noreturn] = ACTIONS(2864), + [anon_sym_mutable] = ACTIONS(2864), + [anon_sym_constinit] = ACTIONS(2864), + [anon_sym_consteval] = ACTIONS(2864), + [sym_primitive_type] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [anon_sym_class] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2864), + [anon_sym_union] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_else] = ACTIONS(2864), + [anon_sym_switch] = ACTIONS(2864), + [anon_sym_case] = ACTIONS(2864), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_goto] = ACTIONS(2864), + [anon_sym_not] = ACTIONS(2864), + [anon_sym_compl] = ACTIONS(2864), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_sizeof] = ACTIONS(2864), + [anon_sym___alignof__] = ACTIONS(2864), + [anon_sym___alignof] = ACTIONS(2864), + [anon_sym__alignof] = ACTIONS(2864), + [anon_sym_alignof] = ACTIONS(2864), + [anon_sym__Alignof] = ACTIONS(2864), + [anon_sym_offsetof] = ACTIONS(2864), + [anon_sym__Generic] = ACTIONS(2864), + [anon_sym_asm] = ACTIONS(2864), + [anon_sym___asm__] = ACTIONS(2864), + [sym_number_literal] = ACTIONS(2866), + [anon_sym_L_SQUOTE] = ACTIONS(2866), + [anon_sym_u_SQUOTE] = ACTIONS(2866), + [anon_sym_U_SQUOTE] = ACTIONS(2866), + [anon_sym_u8_SQUOTE] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_L_DQUOTE] = ACTIONS(2866), + [anon_sym_u_DQUOTE] = ACTIONS(2866), + [anon_sym_U_DQUOTE] = ACTIONS(2866), + [anon_sym_u8_DQUOTE] = ACTIONS(2866), + [anon_sym_DQUOTE] = ACTIONS(2866), + [sym_true] = ACTIONS(2864), + [sym_false] = ACTIONS(2864), + [anon_sym_NULL] = ACTIONS(2864), + [anon_sym_nullptr] = ACTIONS(2864), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2864), + [anon_sym_decltype] = ACTIONS(2864), + [anon_sym_virtual] = ACTIONS(2864), + [anon_sym_alignas] = ACTIONS(2864), + [anon_sym_explicit] = ACTIONS(2864), + [anon_sym_typename] = ACTIONS(2864), + [anon_sym_template] = ACTIONS(2864), + [anon_sym_operator] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_delete] = ACTIONS(2864), + [anon_sym_throw] = ACTIONS(2864), + [anon_sym_namespace] = ACTIONS(2864), + [anon_sym_using] = ACTIONS(2864), + [anon_sym_static_assert] = ACTIONS(2864), + [anon_sym_concept] = ACTIONS(2864), + [anon_sym_co_return] = ACTIONS(2864), + [anon_sym_co_yield] = ACTIONS(2864), + [anon_sym_R_DQUOTE] = ACTIONS(2866), + [anon_sym_LR_DQUOTE] = ACTIONS(2866), + [anon_sym_uR_DQUOTE] = ACTIONS(2866), + [anon_sym_UR_DQUOTE] = ACTIONS(2866), + [anon_sym_u8R_DQUOTE] = ACTIONS(2866), + [anon_sym_co_await] = ACTIONS(2864), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_requires] = ACTIONS(2864), + [sym_this] = ACTIONS(2864), }, - [386] = { - [sym__expression] = STATE(5186), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9319), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(2834), - [anon_sym___extension__] = ACTIONS(2818), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym___attribute__] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), - [anon_sym___declspec] = ACTIONS(2818), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym___inline] = ACTIONS(2818), - [anon_sym___inline__] = ACTIONS(2818), - [anon_sym___forceinline] = ACTIONS(2818), - [anon_sym_thread_local] = ACTIONS(2818), - [anon_sym___thread] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_restrict] = ACTIONS(2818), - [anon_sym___restrict__] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [anon_sym__Noreturn] = ACTIONS(2818), - [anon_sym_noreturn] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [anon_sym_constinit] = ACTIONS(2818), - [anon_sym_consteval] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2825), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2818), - [anon_sym_decltype] = ACTIONS(2828), - [anon_sym_virtual] = ACTIONS(2818), - [anon_sym_alignas] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_template] = ACTIONS(2831), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [453] = { + [sym_preproc_def] = STATE(453), + [sym_preproc_function_def] = STATE(453), + [sym_preproc_call] = STATE(453), + [sym_preproc_if_in_field_declaration_list] = STATE(453), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(453), + [sym_type_definition] = STATE(453), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5176), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5750), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(453), + [sym_field_declaration] = STATE(453), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1790), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(453), + [sym_operator_cast] = STATE(6091), + [sym_inline_method_definition] = STATE(453), + [sym__constructor_specifiers] = STATE(1790), + [sym_operator_cast_definition] = STATE(453), + [sym_operator_cast_declaration] = STATE(453), + [sym_constructor_or_destructor_definition] = STATE(453), + [sym_constructor_or_destructor_declaration] = STATE(453), + [sym_friend_declaration] = STATE(453), + [sym_access_specifier] = STATE(7399), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(453), + [sym_alias_declaration] = STATE(453), + [sym_static_assert_declaration] = STATE(453), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6091), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(453), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_identifier] = ACTIONS(3283), + [aux_sym_preproc_def_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token1] = ACTIONS(3289), + [aux_sym_preproc_if_token2] = ACTIONS(3292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), + [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(3297), + [anon_sym_LPAREN2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_AMP_AMP] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym___extension__] = ACTIONS(3315), + [anon_sym_typedef] = ACTIONS(3318), + [anon_sym_extern] = ACTIONS(3321), + [anon_sym___attribute__] = ACTIONS(3324), + [anon_sym_COLON_COLON] = ACTIONS(3327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3330), + [anon_sym___declspec] = ACTIONS(3333), + [anon_sym___based] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3339), + [anon_sym_unsigned] = ACTIONS(3339), + [anon_sym_long] = ACTIONS(3339), + [anon_sym_short] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3321), + [anon_sym_register] = ACTIONS(3321), + [anon_sym_inline] = ACTIONS(3321), + [anon_sym___inline] = ACTIONS(3321), + [anon_sym___inline__] = ACTIONS(3321), + [anon_sym___forceinline] = ACTIONS(3321), + [anon_sym_thread_local] = ACTIONS(3321), + [anon_sym___thread] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3345), + [anon_sym_constexpr] = ACTIONS(3345), + [anon_sym_volatile] = ACTIONS(3345), + [anon_sym_restrict] = ACTIONS(3345), + [anon_sym___restrict__] = ACTIONS(3345), + [anon_sym__Atomic] = ACTIONS(3345), + [anon_sym__Noreturn] = ACTIONS(3345), + [anon_sym_noreturn] = ACTIONS(3345), + [anon_sym_mutable] = ACTIONS(3345), + [anon_sym_constinit] = ACTIONS(3345), + [anon_sym_consteval] = ACTIONS(3345), + [sym_primitive_type] = ACTIONS(3348), + [anon_sym_enum] = ACTIONS(3351), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3357), + [anon_sym_union] = ACTIONS(3360), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3363), + [anon_sym_decltype] = ACTIONS(3366), + [anon_sym_virtual] = ACTIONS(3369), + [anon_sym_alignas] = ACTIONS(3372), + [anon_sym_explicit] = ACTIONS(3375), + [anon_sym_typename] = ACTIONS(3378), + [anon_sym_template] = ACTIONS(3381), + [anon_sym_operator] = ACTIONS(3384), + [anon_sym_friend] = ACTIONS(3387), + [anon_sym_public] = ACTIONS(3390), + [anon_sym_private] = ACTIONS(3390), + [anon_sym_protected] = ACTIONS(3390), + [anon_sym_using] = ACTIONS(3393), + [anon_sym_static_assert] = ACTIONS(3396), }, - [387] = { - [sym__expression] = STATE(5190), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9321), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym___extension__] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym___attribute__] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2797), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2800), - [anon_sym___declspec] = 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(1376), - [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_mutable] = ACTIONS(2795), - [anon_sym_constinit] = ACTIONS(2795), - [anon_sym_consteval] = ACTIONS(2795), - [sym_primitive_type] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_union] = ACTIONS(2795), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [454] = { + [sym_identifier] = ACTIONS(2812), + [aux_sym_preproc_include_token1] = ACTIONS(2812), + [aux_sym_preproc_def_token1] = ACTIONS(2812), + [aux_sym_preproc_if_token1] = ACTIONS(2812), + [aux_sym_preproc_if_token2] = ACTIONS(2812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2812), + [aux_sym_preproc_else_token1] = ACTIONS(2812), + [aux_sym_preproc_elif_token1] = ACTIONS(2812), + [sym_preproc_directive] = ACTIONS(2812), + [anon_sym_LPAREN2] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_TILDE] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_AMP_AMP] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym___extension__] = ACTIONS(2812), + [anon_sym_typedef] = ACTIONS(2812), + [anon_sym_extern] = ACTIONS(2812), + [anon_sym___attribute__] = ACTIONS(2812), + [anon_sym_COLON_COLON] = ACTIONS(2814), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2814), + [anon_sym___declspec] = ACTIONS(2812), + [anon_sym___based] = ACTIONS(2812), + [anon_sym___cdecl] = ACTIONS(2812), + [anon_sym___clrcall] = ACTIONS(2812), + [anon_sym___stdcall] = ACTIONS(2812), + [anon_sym___fastcall] = ACTIONS(2812), + [anon_sym___thiscall] = ACTIONS(2812), + [anon_sym___vectorcall] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_signed] = ACTIONS(2812), + [anon_sym_unsigned] = ACTIONS(2812), + [anon_sym_long] = ACTIONS(2812), + [anon_sym_short] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_register] = ACTIONS(2812), + [anon_sym_inline] = ACTIONS(2812), + [anon_sym___inline] = ACTIONS(2812), + [anon_sym___inline__] = ACTIONS(2812), + [anon_sym___forceinline] = ACTIONS(2812), + [anon_sym_thread_local] = ACTIONS(2812), + [anon_sym___thread] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_constexpr] = ACTIONS(2812), + [anon_sym_volatile] = ACTIONS(2812), + [anon_sym_restrict] = ACTIONS(2812), + [anon_sym___restrict__] = ACTIONS(2812), + [anon_sym__Atomic] = ACTIONS(2812), + [anon_sym__Noreturn] = ACTIONS(2812), + [anon_sym_noreturn] = ACTIONS(2812), + [anon_sym_mutable] = ACTIONS(2812), + [anon_sym_constinit] = ACTIONS(2812), + [anon_sym_consteval] = ACTIONS(2812), + [sym_primitive_type] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_class] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_union] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_else] = ACTIONS(2812), + [anon_sym_switch] = ACTIONS(2812), + [anon_sym_case] = ACTIONS(2812), + [anon_sym_default] = ACTIONS(2812), + [anon_sym_while] = ACTIONS(2812), + [anon_sym_do] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_goto] = ACTIONS(2812), + [anon_sym_not] = ACTIONS(2812), + [anon_sym_compl] = ACTIONS(2812), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_sizeof] = ACTIONS(2812), + [anon_sym___alignof__] = ACTIONS(2812), + [anon_sym___alignof] = ACTIONS(2812), + [anon_sym__alignof] = ACTIONS(2812), + [anon_sym_alignof] = ACTIONS(2812), + [anon_sym__Alignof] = ACTIONS(2812), + [anon_sym_offsetof] = ACTIONS(2812), + [anon_sym__Generic] = ACTIONS(2812), + [anon_sym_asm] = ACTIONS(2812), + [anon_sym___asm__] = ACTIONS(2812), + [sym_number_literal] = ACTIONS(2814), + [anon_sym_L_SQUOTE] = ACTIONS(2814), + [anon_sym_u_SQUOTE] = ACTIONS(2814), + [anon_sym_U_SQUOTE] = ACTIONS(2814), + [anon_sym_u8_SQUOTE] = ACTIONS(2814), + [anon_sym_SQUOTE] = ACTIONS(2814), + [anon_sym_L_DQUOTE] = ACTIONS(2814), + [anon_sym_u_DQUOTE] = ACTIONS(2814), + [anon_sym_U_DQUOTE] = ACTIONS(2814), + [anon_sym_u8_DQUOTE] = ACTIONS(2814), + [anon_sym_DQUOTE] = ACTIONS(2814), + [sym_true] = ACTIONS(2812), + [sym_false] = ACTIONS(2812), + [anon_sym_NULL] = ACTIONS(2812), + [anon_sym_nullptr] = ACTIONS(2812), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2812), + [anon_sym_decltype] = ACTIONS(2812), + [anon_sym_virtual] = ACTIONS(2812), + [anon_sym_alignas] = ACTIONS(2812), + [anon_sym_explicit] = ACTIONS(2812), + [anon_sym_typename] = ACTIONS(2812), + [anon_sym_template] = ACTIONS(2812), + [anon_sym_operator] = ACTIONS(2812), + [anon_sym_try] = ACTIONS(2812), + [anon_sym_delete] = ACTIONS(2812), + [anon_sym_throw] = ACTIONS(2812), + [anon_sym_namespace] = ACTIONS(2812), + [anon_sym_using] = ACTIONS(2812), + [anon_sym_static_assert] = ACTIONS(2812), + [anon_sym_concept] = ACTIONS(2812), + [anon_sym_co_return] = ACTIONS(2812), + [anon_sym_co_yield] = ACTIONS(2812), + [anon_sym_R_DQUOTE] = ACTIONS(2814), + [anon_sym_LR_DQUOTE] = ACTIONS(2814), + [anon_sym_uR_DQUOTE] = ACTIONS(2814), + [anon_sym_UR_DQUOTE] = ACTIONS(2814), + [anon_sym_u8R_DQUOTE] = ACTIONS(2814), + [anon_sym_co_await] = ACTIONS(2812), + [anon_sym_new] = ACTIONS(2812), + [anon_sym_requires] = ACTIONS(2812), + [sym_this] = ACTIONS(2812), + }, + [455] = { + [sym_identifier] = ACTIONS(2816), + [aux_sym_preproc_include_token1] = ACTIONS(2816), + [aux_sym_preproc_def_token1] = ACTIONS(2816), + [aux_sym_preproc_if_token1] = ACTIONS(2816), + [aux_sym_preproc_if_token2] = ACTIONS(2816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2816), + [aux_sym_preproc_else_token1] = ACTIONS(2816), + [aux_sym_preproc_elif_token1] = ACTIONS(2816), + [sym_preproc_directive] = ACTIONS(2816), + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2816), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym___extension__] = ACTIONS(2816), + [anon_sym_typedef] = ACTIONS(2816), + [anon_sym_extern] = ACTIONS(2816), + [anon_sym___attribute__] = ACTIONS(2816), + [anon_sym_COLON_COLON] = ACTIONS(2818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2818), + [anon_sym___declspec] = ACTIONS(2816), + [anon_sym___based] = ACTIONS(2816), + [anon_sym___cdecl] = ACTIONS(2816), + [anon_sym___clrcall] = ACTIONS(2816), + [anon_sym___stdcall] = ACTIONS(2816), + [anon_sym___fastcall] = ACTIONS(2816), + [anon_sym___thiscall] = ACTIONS(2816), + [anon_sym___vectorcall] = ACTIONS(2816), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_signed] = ACTIONS(2816), + [anon_sym_unsigned] = ACTIONS(2816), + [anon_sym_long] = ACTIONS(2816), + [anon_sym_short] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_register] = ACTIONS(2816), + [anon_sym_inline] = ACTIONS(2816), + [anon_sym___inline] = ACTIONS(2816), + [anon_sym___inline__] = ACTIONS(2816), + [anon_sym___forceinline] = ACTIONS(2816), + [anon_sym_thread_local] = ACTIONS(2816), + [anon_sym___thread] = ACTIONS(2816), + [anon_sym_const] = ACTIONS(2816), + [anon_sym_constexpr] = ACTIONS(2816), + [anon_sym_volatile] = ACTIONS(2816), + [anon_sym_restrict] = ACTIONS(2816), + [anon_sym___restrict__] = ACTIONS(2816), + [anon_sym__Atomic] = ACTIONS(2816), + [anon_sym__Noreturn] = ACTIONS(2816), + [anon_sym_noreturn] = ACTIONS(2816), + [anon_sym_mutable] = ACTIONS(2816), + [anon_sym_constinit] = ACTIONS(2816), + [anon_sym_consteval] = ACTIONS(2816), + [sym_primitive_type] = ACTIONS(2816), + [anon_sym_enum] = ACTIONS(2816), + [anon_sym_class] = ACTIONS(2816), + [anon_sym_struct] = ACTIONS(2816), + [anon_sym_union] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_else] = ACTIONS(2816), + [anon_sym_switch] = ACTIONS(2816), + [anon_sym_case] = ACTIONS(2816), + [anon_sym_default] = ACTIONS(2816), + [anon_sym_while] = ACTIONS(2816), + [anon_sym_do] = ACTIONS(2816), + [anon_sym_for] = ACTIONS(2816), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_break] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_goto] = ACTIONS(2816), + [anon_sym_not] = ACTIONS(2816), + [anon_sym_compl] = ACTIONS(2816), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_sizeof] = ACTIONS(2816), + [anon_sym___alignof__] = ACTIONS(2816), + [anon_sym___alignof] = ACTIONS(2816), + [anon_sym__alignof] = ACTIONS(2816), + [anon_sym_alignof] = ACTIONS(2816), + [anon_sym__Alignof] = ACTIONS(2816), + [anon_sym_offsetof] = ACTIONS(2816), + [anon_sym__Generic] = ACTIONS(2816), + [anon_sym_asm] = ACTIONS(2816), + [anon_sym___asm__] = ACTIONS(2816), + [sym_number_literal] = ACTIONS(2818), + [anon_sym_L_SQUOTE] = ACTIONS(2818), + [anon_sym_u_SQUOTE] = ACTIONS(2818), + [anon_sym_U_SQUOTE] = ACTIONS(2818), + [anon_sym_u8_SQUOTE] = ACTIONS(2818), + [anon_sym_SQUOTE] = ACTIONS(2818), + [anon_sym_L_DQUOTE] = ACTIONS(2818), + [anon_sym_u_DQUOTE] = ACTIONS(2818), + [anon_sym_U_DQUOTE] = ACTIONS(2818), + [anon_sym_u8_DQUOTE] = ACTIONS(2818), + [anon_sym_DQUOTE] = ACTIONS(2818), + [sym_true] = ACTIONS(2816), + [sym_false] = ACTIONS(2816), + [anon_sym_NULL] = ACTIONS(2816), + [anon_sym_nullptr] = ACTIONS(2816), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2816), + [anon_sym_decltype] = ACTIONS(2816), + [anon_sym_virtual] = ACTIONS(2816), + [anon_sym_alignas] = ACTIONS(2816), + [anon_sym_explicit] = ACTIONS(2816), + [anon_sym_typename] = ACTIONS(2816), + [anon_sym_template] = ACTIONS(2816), + [anon_sym_operator] = ACTIONS(2816), + [anon_sym_try] = ACTIONS(2816), + [anon_sym_delete] = ACTIONS(2816), + [anon_sym_throw] = ACTIONS(2816), + [anon_sym_namespace] = ACTIONS(2816), + [anon_sym_using] = ACTIONS(2816), + [anon_sym_static_assert] = ACTIONS(2816), + [anon_sym_concept] = ACTIONS(2816), + [anon_sym_co_return] = ACTIONS(2816), + [anon_sym_co_yield] = ACTIONS(2816), + [anon_sym_R_DQUOTE] = ACTIONS(2818), + [anon_sym_LR_DQUOTE] = ACTIONS(2818), + [anon_sym_uR_DQUOTE] = ACTIONS(2818), + [anon_sym_UR_DQUOTE] = ACTIONS(2818), + [anon_sym_u8R_DQUOTE] = ACTIONS(2818), + [anon_sym_co_await] = ACTIONS(2816), + [anon_sym_new] = ACTIONS(2816), + [anon_sym_requires] = ACTIONS(2816), + [sym_this] = ACTIONS(2816), + }, + [456] = { + [sym_identifier] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token2] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [aux_sym_preproc_else_token1] = ACTIONS(2820), + [aux_sym_preproc_elif_token1] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_AMP_AMP] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym_COLON_COLON] = ACTIONS(2822), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym___based] = ACTIONS(2820), + [anon_sym___cdecl] = ACTIONS(2820), + [anon_sym___clrcall] = ACTIONS(2820), + [anon_sym___stdcall] = ACTIONS(2820), + [anon_sym___fastcall] = ACTIONS(2820), + [anon_sym___thiscall] = ACTIONS(2820), + [anon_sym___vectorcall] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_mutable] = ACTIONS(2820), + [anon_sym_constinit] = ACTIONS(2820), + [anon_sym_consteval] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_class] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_else] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_not] = ACTIONS(2820), + [anon_sym_compl] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2820), + [anon_sym_decltype] = ACTIONS(2820), + [anon_sym_virtual] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym_explicit] = ACTIONS(2820), + [anon_sym_typename] = ACTIONS(2820), + [anon_sym_template] = ACTIONS(2820), + [anon_sym_operator] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(2820), + [anon_sym_delete] = ACTIONS(2820), + [anon_sym_throw] = ACTIONS(2820), + [anon_sym_namespace] = ACTIONS(2820), + [anon_sym_using] = ACTIONS(2820), + [anon_sym_static_assert] = ACTIONS(2820), + [anon_sym_concept] = ACTIONS(2820), + [anon_sym_co_return] = ACTIONS(2820), + [anon_sym_co_yield] = ACTIONS(2820), + [anon_sym_R_DQUOTE] = ACTIONS(2822), + [anon_sym_LR_DQUOTE] = ACTIONS(2822), + [anon_sym_uR_DQUOTE] = ACTIONS(2822), + [anon_sym_UR_DQUOTE] = ACTIONS(2822), + [anon_sym_u8R_DQUOTE] = ACTIONS(2822), + [anon_sym_co_await] = ACTIONS(2820), + [anon_sym_new] = ACTIONS(2820), + [anon_sym_requires] = ACTIONS(2820), + [sym_this] = ACTIONS(2820), + }, + [457] = { + [sym_preproc_def] = STATE(463), + [sym_preproc_function_def] = STATE(463), + [sym_preproc_call] = STATE(463), + [sym_preproc_if_in_field_declaration_list] = STATE(463), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(463), + [sym_preproc_else_in_field_declaration_list] = STATE(7443), + [sym_preproc_elif_in_field_declaration_list] = STATE(7443), + [sym_type_definition] = STATE(463), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5209), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5775), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(463), + [sym_field_declaration] = STATE(463), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1795), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(463), + [sym_operator_cast] = STATE(6107), + [sym_inline_method_definition] = STATE(463), + [sym__constructor_specifiers] = STATE(1795), + [sym_operator_cast_definition] = STATE(463), + [sym_operator_cast_declaration] = STATE(463), + [sym_constructor_or_destructor_definition] = STATE(463), + [sym_constructor_or_destructor_declaration] = STATE(463), + [sym_friend_declaration] = STATE(463), + [sym_access_specifier] = STATE(7215), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(463), + [sym_alias_declaration] = STATE(463), + [sym_static_assert_declaration] = STATE(463), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6107), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(463), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1795), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3237), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2687), + [sym_preproc_directive] = ACTIONS(3239), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3241), + [anon_sym_typedef] = ACTIONS(3243), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2795), - [anon_sym_decltype] = ACTIONS(2805), - [anon_sym_virtual] = ACTIONS(2795), - [anon_sym_alignas] = ACTIONS(2795), - [anon_sym_typename] = ACTIONS(2795), - [anon_sym_template] = ACTIONS(2808), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3245), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3249), + [anon_sym_static_assert] = ACTIONS(3251), }, - [388] = { - [sym_identifier] = ACTIONS(2838), - [aux_sym_preproc_include_token1] = ACTIONS(2838), - [aux_sym_preproc_def_token1] = ACTIONS(2838), - [aux_sym_preproc_if_token1] = ACTIONS(2838), - [aux_sym_preproc_if_token2] = ACTIONS(2838), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2838), - [aux_sym_preproc_else_token1] = ACTIONS(2838), - [aux_sym_preproc_elif_token1] = ACTIONS(2838), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2838), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2838), - [sym_preproc_directive] = ACTIONS(2838), - [anon_sym_LPAREN2] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym___extension__] = ACTIONS(2838), - [anon_sym_typedef] = ACTIONS(2838), - [anon_sym_extern] = ACTIONS(2838), - [anon_sym___attribute__] = ACTIONS(2838), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2840), - [anon_sym___declspec] = ACTIONS(2838), - [anon_sym___based] = ACTIONS(2838), - [anon_sym___cdecl] = ACTIONS(2838), - [anon_sym___clrcall] = ACTIONS(2838), - [anon_sym___stdcall] = ACTIONS(2838), - [anon_sym___fastcall] = ACTIONS(2838), - [anon_sym___thiscall] = ACTIONS(2838), - [anon_sym___vectorcall] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_signed] = ACTIONS(2838), - [anon_sym_unsigned] = ACTIONS(2838), - [anon_sym_long] = ACTIONS(2838), - [anon_sym_short] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_static] = ACTIONS(2838), - [anon_sym_register] = ACTIONS(2838), - [anon_sym_inline] = ACTIONS(2838), - [anon_sym___inline] = ACTIONS(2838), - [anon_sym___inline__] = ACTIONS(2838), - [anon_sym___forceinline] = ACTIONS(2838), - [anon_sym_thread_local] = ACTIONS(2838), - [anon_sym___thread] = ACTIONS(2838), - [anon_sym_const] = ACTIONS(2838), - [anon_sym_constexpr] = ACTIONS(2838), - [anon_sym_volatile] = ACTIONS(2838), - [anon_sym_restrict] = ACTIONS(2838), - [anon_sym___restrict__] = ACTIONS(2838), - [anon_sym__Atomic] = ACTIONS(2838), - [anon_sym__Noreturn] = ACTIONS(2838), - [anon_sym_noreturn] = ACTIONS(2838), - [anon_sym_mutable] = ACTIONS(2838), - [anon_sym_constinit] = ACTIONS(2838), - [anon_sym_consteval] = ACTIONS(2838), - [sym_primitive_type] = ACTIONS(2838), - [anon_sym_enum] = ACTIONS(2838), - [anon_sym_class] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2838), - [anon_sym_union] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_else] = ACTIONS(2838), - [anon_sym_switch] = ACTIONS(2838), - [anon_sym_case] = ACTIONS(2838), - [anon_sym_default] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_break] = ACTIONS(2838), - [anon_sym_continue] = ACTIONS(2838), - [anon_sym_goto] = ACTIONS(2838), - [anon_sym_not] = ACTIONS(2838), - [anon_sym_compl] = ACTIONS(2838), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_sizeof] = ACTIONS(2838), - [anon_sym___alignof__] = ACTIONS(2838), - [anon_sym___alignof] = ACTIONS(2838), - [anon_sym__alignof] = ACTIONS(2838), - [anon_sym_alignof] = ACTIONS(2838), - [anon_sym__Alignof] = ACTIONS(2838), - [anon_sym_offsetof] = ACTIONS(2838), - [anon_sym__Generic] = ACTIONS(2838), - [anon_sym_asm] = ACTIONS(2838), - [anon_sym___asm__] = ACTIONS(2838), - [sym_number_literal] = ACTIONS(2840), - [anon_sym_L_SQUOTE] = ACTIONS(2840), - [anon_sym_u_SQUOTE] = ACTIONS(2840), - [anon_sym_U_SQUOTE] = ACTIONS(2840), - [anon_sym_u8_SQUOTE] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_L_DQUOTE] = ACTIONS(2840), - [anon_sym_u_DQUOTE] = ACTIONS(2840), - [anon_sym_U_DQUOTE] = ACTIONS(2840), - [anon_sym_u8_DQUOTE] = ACTIONS(2840), - [anon_sym_DQUOTE] = ACTIONS(2840), - [sym_true] = ACTIONS(2838), - [sym_false] = ACTIONS(2838), - [anon_sym_NULL] = ACTIONS(2838), - [anon_sym_nullptr] = ACTIONS(2838), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2838), - [anon_sym_decltype] = ACTIONS(2838), - [anon_sym_virtual] = ACTIONS(2838), - [anon_sym_alignas] = ACTIONS(2838), - [anon_sym_explicit] = ACTIONS(2838), - [anon_sym_typename] = ACTIONS(2838), - [anon_sym_template] = ACTIONS(2838), - [anon_sym_operator] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_delete] = ACTIONS(2838), - [anon_sym_throw] = ACTIONS(2838), - [anon_sym_namespace] = ACTIONS(2838), - [anon_sym_using] = ACTIONS(2838), - [anon_sym_static_assert] = ACTIONS(2838), - [anon_sym_concept] = ACTIONS(2838), - [anon_sym_co_return] = ACTIONS(2838), - [anon_sym_co_yield] = ACTIONS(2838), - [anon_sym_R_DQUOTE] = ACTIONS(2840), - [anon_sym_LR_DQUOTE] = ACTIONS(2840), - [anon_sym_uR_DQUOTE] = ACTIONS(2840), - [anon_sym_UR_DQUOTE] = ACTIONS(2840), - [anon_sym_u8R_DQUOTE] = ACTIONS(2840), - [anon_sym_co_await] = ACTIONS(2838), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_requires] = ACTIONS(2838), - [sym_this] = ACTIONS(2838), + [458] = { + [sym_identifier] = ACTIONS(2848), + [aux_sym_preproc_include_token1] = ACTIONS(2848), + [aux_sym_preproc_def_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token2] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2848), + [aux_sym_preproc_else_token1] = ACTIONS(2848), + [aux_sym_preproc_elif_token1] = ACTIONS(2848), + [sym_preproc_directive] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_AMP_AMP] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym___extension__] = ACTIONS(2848), + [anon_sym_typedef] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym___attribute__] = ACTIONS(2848), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2850), + [anon_sym___declspec] = ACTIONS(2848), + [anon_sym___based] = ACTIONS(2848), + [anon_sym___cdecl] = ACTIONS(2848), + [anon_sym___clrcall] = ACTIONS(2848), + [anon_sym___stdcall] = ACTIONS(2848), + [anon_sym___fastcall] = ACTIONS(2848), + [anon_sym___thiscall] = ACTIONS(2848), + [anon_sym___vectorcall] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_signed] = ACTIONS(2848), + [anon_sym_unsigned] = ACTIONS(2848), + [anon_sym_long] = ACTIONS(2848), + [anon_sym_short] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_register] = ACTIONS(2848), + [anon_sym_inline] = ACTIONS(2848), + [anon_sym___inline] = ACTIONS(2848), + [anon_sym___inline__] = ACTIONS(2848), + [anon_sym___forceinline] = ACTIONS(2848), + [anon_sym_thread_local] = ACTIONS(2848), + [anon_sym___thread] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_constexpr] = ACTIONS(2848), + [anon_sym_volatile] = ACTIONS(2848), + [anon_sym_restrict] = ACTIONS(2848), + [anon_sym___restrict__] = ACTIONS(2848), + [anon_sym__Atomic] = ACTIONS(2848), + [anon_sym__Noreturn] = ACTIONS(2848), + [anon_sym_noreturn] = ACTIONS(2848), + [anon_sym_mutable] = ACTIONS(2848), + [anon_sym_constinit] = ACTIONS(2848), + [anon_sym_consteval] = ACTIONS(2848), + [sym_primitive_type] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_class] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2848), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_else] = ACTIONS(2848), + [anon_sym_switch] = ACTIONS(2848), + [anon_sym_case] = ACTIONS(2848), + [anon_sym_default] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_goto] = ACTIONS(2848), + [anon_sym_not] = ACTIONS(2848), + [anon_sym_compl] = ACTIONS(2848), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_sizeof] = ACTIONS(2848), + [anon_sym___alignof__] = ACTIONS(2848), + [anon_sym___alignof] = ACTIONS(2848), + [anon_sym__alignof] = ACTIONS(2848), + [anon_sym_alignof] = ACTIONS(2848), + [anon_sym__Alignof] = ACTIONS(2848), + [anon_sym_offsetof] = ACTIONS(2848), + [anon_sym__Generic] = ACTIONS(2848), + [anon_sym_asm] = ACTIONS(2848), + [anon_sym___asm__] = ACTIONS(2848), + [sym_number_literal] = ACTIONS(2850), + [anon_sym_L_SQUOTE] = ACTIONS(2850), + [anon_sym_u_SQUOTE] = ACTIONS(2850), + [anon_sym_U_SQUOTE] = ACTIONS(2850), + [anon_sym_u8_SQUOTE] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_L_DQUOTE] = ACTIONS(2850), + [anon_sym_u_DQUOTE] = ACTIONS(2850), + [anon_sym_U_DQUOTE] = ACTIONS(2850), + [anon_sym_u8_DQUOTE] = ACTIONS(2850), + [anon_sym_DQUOTE] = ACTIONS(2850), + [sym_true] = ACTIONS(2848), + [sym_false] = ACTIONS(2848), + [anon_sym_NULL] = ACTIONS(2848), + [anon_sym_nullptr] = ACTIONS(2848), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2848), + [anon_sym_decltype] = ACTIONS(2848), + [anon_sym_virtual] = ACTIONS(2848), + [anon_sym_alignas] = ACTIONS(2848), + [anon_sym_explicit] = ACTIONS(2848), + [anon_sym_typename] = ACTIONS(2848), + [anon_sym_template] = ACTIONS(2848), + [anon_sym_operator] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_delete] = ACTIONS(2848), + [anon_sym_throw] = ACTIONS(2848), + [anon_sym_namespace] = ACTIONS(2848), + [anon_sym_using] = ACTIONS(2848), + [anon_sym_static_assert] = ACTIONS(2848), + [anon_sym_concept] = ACTIONS(2848), + [anon_sym_co_return] = ACTIONS(2848), + [anon_sym_co_yield] = ACTIONS(2848), + [anon_sym_R_DQUOTE] = ACTIONS(2850), + [anon_sym_LR_DQUOTE] = ACTIONS(2850), + [anon_sym_uR_DQUOTE] = ACTIONS(2850), + [anon_sym_UR_DQUOTE] = ACTIONS(2850), + [anon_sym_u8R_DQUOTE] = ACTIONS(2850), + [anon_sym_co_await] = ACTIONS(2848), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_requires] = ACTIONS(2848), + [sym_this] = ACTIONS(2848), }, - [389] = { - [sym__expression] = STATE(5129), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8985), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), + [459] = { + [sym_identifier] = ACTIONS(2824), + [aux_sym_preproc_include_token1] = ACTIONS(2824), + [aux_sym_preproc_def_token1] = ACTIONS(2824), + [aux_sym_preproc_if_token1] = ACTIONS(2824), + [aux_sym_preproc_if_token2] = ACTIONS(2824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2824), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2824), + [aux_sym_preproc_else_token1] = ACTIONS(2824), + [aux_sym_preproc_elif_token1] = ACTIONS(2824), + [sym_preproc_directive] = ACTIONS(2824), + [anon_sym_LPAREN2] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_PLUS] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2826), + [anon_sym_AMP_AMP] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym___extension__] = ACTIONS(2824), + [anon_sym_typedef] = ACTIONS(2824), + [anon_sym_extern] = ACTIONS(2824), + [anon_sym___attribute__] = ACTIONS(2824), + [anon_sym_COLON_COLON] = ACTIONS(2826), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2826), + [anon_sym___declspec] = ACTIONS(2824), + [anon_sym___based] = ACTIONS(2824), + [anon_sym___cdecl] = ACTIONS(2824), + [anon_sym___clrcall] = ACTIONS(2824), + [anon_sym___stdcall] = ACTIONS(2824), + [anon_sym___fastcall] = ACTIONS(2824), + [anon_sym___thiscall] = ACTIONS(2824), + [anon_sym___vectorcall] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_signed] = ACTIONS(2824), + [anon_sym_unsigned] = ACTIONS(2824), + [anon_sym_long] = ACTIONS(2824), + [anon_sym_short] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_register] = ACTIONS(2824), + [anon_sym_inline] = ACTIONS(2824), + [anon_sym___inline] = ACTIONS(2824), + [anon_sym___inline__] = ACTIONS(2824), + [anon_sym___forceinline] = ACTIONS(2824), + [anon_sym_thread_local] = ACTIONS(2824), + [anon_sym___thread] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2824), + [anon_sym_constexpr] = ACTIONS(2824), + [anon_sym_volatile] = ACTIONS(2824), + [anon_sym_restrict] = ACTIONS(2824), + [anon_sym___restrict__] = ACTIONS(2824), + [anon_sym__Atomic] = ACTIONS(2824), + [anon_sym__Noreturn] = ACTIONS(2824), + [anon_sym_noreturn] = ACTIONS(2824), + [anon_sym_mutable] = ACTIONS(2824), + [anon_sym_constinit] = ACTIONS(2824), + [anon_sym_consteval] = ACTIONS(2824), + [sym_primitive_type] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [anon_sym_class] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2824), + [anon_sym_union] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_else] = ACTIONS(2824), + [anon_sym_switch] = ACTIONS(2824), + [anon_sym_case] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_do] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_goto] = ACTIONS(2824), + [anon_sym_not] = ACTIONS(2824), + [anon_sym_compl] = ACTIONS(2824), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_sizeof] = ACTIONS(2824), + [anon_sym___alignof__] = ACTIONS(2824), + [anon_sym___alignof] = ACTIONS(2824), + [anon_sym__alignof] = ACTIONS(2824), + [anon_sym_alignof] = ACTIONS(2824), + [anon_sym__Alignof] = ACTIONS(2824), + [anon_sym_offsetof] = ACTIONS(2824), + [anon_sym__Generic] = ACTIONS(2824), + [anon_sym_asm] = ACTIONS(2824), + [anon_sym___asm__] = ACTIONS(2824), + [sym_number_literal] = ACTIONS(2826), + [anon_sym_L_SQUOTE] = ACTIONS(2826), + [anon_sym_u_SQUOTE] = ACTIONS(2826), + [anon_sym_U_SQUOTE] = ACTIONS(2826), + [anon_sym_u8_SQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_L_DQUOTE] = ACTIONS(2826), + [anon_sym_u_DQUOTE] = ACTIONS(2826), + [anon_sym_U_DQUOTE] = ACTIONS(2826), + [anon_sym_u8_DQUOTE] = ACTIONS(2826), + [anon_sym_DQUOTE] = ACTIONS(2826), + [sym_true] = ACTIONS(2824), + [sym_false] = ACTIONS(2824), + [anon_sym_NULL] = ACTIONS(2824), + [anon_sym_nullptr] = ACTIONS(2824), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2824), + [anon_sym_decltype] = ACTIONS(2824), + [anon_sym_virtual] = ACTIONS(2824), + [anon_sym_alignas] = ACTIONS(2824), + [anon_sym_explicit] = ACTIONS(2824), + [anon_sym_typename] = ACTIONS(2824), + [anon_sym_template] = ACTIONS(2824), + [anon_sym_operator] = ACTIONS(2824), + [anon_sym_try] = ACTIONS(2824), + [anon_sym_delete] = ACTIONS(2824), + [anon_sym_throw] = ACTIONS(2824), + [anon_sym_namespace] = ACTIONS(2824), + [anon_sym_using] = ACTIONS(2824), + [anon_sym_static_assert] = ACTIONS(2824), + [anon_sym_concept] = ACTIONS(2824), + [anon_sym_co_return] = ACTIONS(2824), + [anon_sym_co_yield] = ACTIONS(2824), + [anon_sym_R_DQUOTE] = ACTIONS(2826), + [anon_sym_LR_DQUOTE] = ACTIONS(2826), + [anon_sym_uR_DQUOTE] = ACTIONS(2826), + [anon_sym_UR_DQUOTE] = ACTIONS(2826), + [anon_sym_u8R_DQUOTE] = ACTIONS(2826), + [anon_sym_co_await] = ACTIONS(2824), + [anon_sym_new] = ACTIONS(2824), + [anon_sym_requires] = ACTIONS(2824), + [sym_this] = ACTIONS(2824), + }, + [460] = { + [sym_identifier] = ACTIONS(2830), + [aux_sym_preproc_include_token1] = ACTIONS(2830), + [aux_sym_preproc_def_token1] = ACTIONS(2830), + [aux_sym_preproc_if_token1] = ACTIONS(2830), + [aux_sym_preproc_if_token2] = ACTIONS(2830), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2830), + [aux_sym_preproc_else_token1] = ACTIONS(2830), + [aux_sym_preproc_elif_token1] = ACTIONS(2830), + [sym_preproc_directive] = ACTIONS(2830), + [anon_sym_LPAREN2] = ACTIONS(2832), + [anon_sym_BANG] = ACTIONS(2832), + [anon_sym_TILDE] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2830), + [anon_sym_PLUS] = ACTIONS(2830), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_AMP_AMP] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2832), + [anon_sym___extension__] = ACTIONS(2830), + [anon_sym_typedef] = ACTIONS(2830), + [anon_sym_extern] = ACTIONS(2830), + [anon_sym___attribute__] = ACTIONS(2830), + [anon_sym_COLON_COLON] = ACTIONS(2832), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2832), + [anon_sym___declspec] = ACTIONS(2830), + [anon_sym___based] = ACTIONS(2830), + [anon_sym___cdecl] = ACTIONS(2830), + [anon_sym___clrcall] = ACTIONS(2830), + [anon_sym___stdcall] = ACTIONS(2830), + [anon_sym___fastcall] = ACTIONS(2830), + [anon_sym___thiscall] = ACTIONS(2830), + [anon_sym___vectorcall] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_signed] = ACTIONS(2830), + [anon_sym_unsigned] = ACTIONS(2830), + [anon_sym_long] = ACTIONS(2830), + [anon_sym_short] = ACTIONS(2830), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2830), + [anon_sym_register] = ACTIONS(2830), + [anon_sym_inline] = ACTIONS(2830), + [anon_sym___inline] = ACTIONS(2830), + [anon_sym___inline__] = ACTIONS(2830), + [anon_sym___forceinline] = ACTIONS(2830), + [anon_sym_thread_local] = ACTIONS(2830), + [anon_sym___thread] = ACTIONS(2830), + [anon_sym_const] = ACTIONS(2830), + [anon_sym_constexpr] = ACTIONS(2830), + [anon_sym_volatile] = ACTIONS(2830), + [anon_sym_restrict] = ACTIONS(2830), + [anon_sym___restrict__] = ACTIONS(2830), + [anon_sym__Atomic] = ACTIONS(2830), + [anon_sym__Noreturn] = ACTIONS(2830), + [anon_sym_noreturn] = ACTIONS(2830), + [anon_sym_mutable] = ACTIONS(2830), + [anon_sym_constinit] = ACTIONS(2830), + [anon_sym_consteval] = ACTIONS(2830), + [sym_primitive_type] = ACTIONS(2830), + [anon_sym_enum] = ACTIONS(2830), + [anon_sym_class] = ACTIONS(2830), + [anon_sym_struct] = ACTIONS(2830), + [anon_sym_union] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2830), + [anon_sym_else] = ACTIONS(2830), + [anon_sym_switch] = ACTIONS(2830), + [anon_sym_case] = ACTIONS(2830), + [anon_sym_default] = ACTIONS(2830), + [anon_sym_while] = ACTIONS(2830), + [anon_sym_do] = ACTIONS(2830), + [anon_sym_for] = ACTIONS(2830), + [anon_sym_return] = ACTIONS(2830), + [anon_sym_break] = ACTIONS(2830), + [anon_sym_continue] = ACTIONS(2830), + [anon_sym_goto] = ACTIONS(2830), + [anon_sym_not] = ACTIONS(2830), + [anon_sym_compl] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_sizeof] = ACTIONS(2830), + [anon_sym___alignof__] = ACTIONS(2830), + [anon_sym___alignof] = ACTIONS(2830), + [anon_sym__alignof] = ACTIONS(2830), + [anon_sym_alignof] = ACTIONS(2830), + [anon_sym__Alignof] = ACTIONS(2830), + [anon_sym_offsetof] = ACTIONS(2830), + [anon_sym__Generic] = ACTIONS(2830), + [anon_sym_asm] = ACTIONS(2830), + [anon_sym___asm__] = ACTIONS(2830), + [sym_number_literal] = ACTIONS(2832), + [anon_sym_L_SQUOTE] = ACTIONS(2832), + [anon_sym_u_SQUOTE] = ACTIONS(2832), + [anon_sym_U_SQUOTE] = ACTIONS(2832), + [anon_sym_u8_SQUOTE] = ACTIONS(2832), + [anon_sym_SQUOTE] = ACTIONS(2832), + [anon_sym_L_DQUOTE] = ACTIONS(2832), + [anon_sym_u_DQUOTE] = ACTIONS(2832), + [anon_sym_U_DQUOTE] = ACTIONS(2832), + [anon_sym_u8_DQUOTE] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [anon_sym_NULL] = ACTIONS(2830), + [anon_sym_nullptr] = ACTIONS(2830), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2830), + [anon_sym_decltype] = ACTIONS(2830), + [anon_sym_virtual] = ACTIONS(2830), + [anon_sym_alignas] = ACTIONS(2830), + [anon_sym_explicit] = ACTIONS(2830), + [anon_sym_typename] = ACTIONS(2830), + [anon_sym_template] = ACTIONS(2830), + [anon_sym_operator] = ACTIONS(2830), + [anon_sym_try] = ACTIONS(2830), + [anon_sym_delete] = ACTIONS(2830), + [anon_sym_throw] = ACTIONS(2830), + [anon_sym_namespace] = ACTIONS(2830), + [anon_sym_using] = ACTIONS(2830), + [anon_sym_static_assert] = ACTIONS(2830), + [anon_sym_concept] = ACTIONS(2830), + [anon_sym_co_return] = ACTIONS(2830), + [anon_sym_co_yield] = ACTIONS(2830), + [anon_sym_R_DQUOTE] = ACTIONS(2832), + [anon_sym_LR_DQUOTE] = ACTIONS(2832), + [anon_sym_uR_DQUOTE] = ACTIONS(2832), + [anon_sym_UR_DQUOTE] = ACTIONS(2832), + [anon_sym_u8R_DQUOTE] = ACTIONS(2832), + [anon_sym_co_await] = ACTIONS(2830), + [anon_sym_new] = ACTIONS(2830), + [anon_sym_requires] = ACTIONS(2830), + [sym_this] = ACTIONS(2830), + }, + [461] = { + [sym_identifier] = ACTIONS(2840), + [aux_sym_preproc_include_token1] = ACTIONS(2840), + [aux_sym_preproc_def_token1] = ACTIONS(2840), + [aux_sym_preproc_if_token1] = ACTIONS(2840), + [aux_sym_preproc_if_token2] = ACTIONS(2840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2840), + [aux_sym_preproc_else_token1] = ACTIONS(2840), + [aux_sym_preproc_elif_token1] = ACTIONS(2840), + [sym_preproc_directive] = ACTIONS(2840), + [anon_sym_LPAREN2] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_TILDE] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_AMP_AMP] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2840), [anon_sym_SEMI] = ACTIONS(2842), - [anon_sym___extension__] = ACTIONS(2818), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym___attribute__] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), - [anon_sym___declspec] = ACTIONS(2818), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym___inline] = ACTIONS(2818), - [anon_sym___inline__] = ACTIONS(2818), - [anon_sym___forceinline] = ACTIONS(2818), - [anon_sym_thread_local] = ACTIONS(2818), - [anon_sym___thread] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_restrict] = ACTIONS(2818), - [anon_sym___restrict__] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [anon_sym__Noreturn] = ACTIONS(2818), - [anon_sym_noreturn] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [anon_sym_constinit] = ACTIONS(2818), - [anon_sym_consteval] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2825), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2818), - [anon_sym_decltype] = ACTIONS(2828), - [anon_sym_virtual] = ACTIONS(2818), - [anon_sym_alignas] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_template] = ACTIONS(2831), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym___extension__] = ACTIONS(2840), + [anon_sym_typedef] = ACTIONS(2840), + [anon_sym_extern] = ACTIONS(2840), + [anon_sym___attribute__] = ACTIONS(2840), + [anon_sym_COLON_COLON] = ACTIONS(2842), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2842), + [anon_sym___declspec] = ACTIONS(2840), + [anon_sym___based] = ACTIONS(2840), + [anon_sym___cdecl] = ACTIONS(2840), + [anon_sym___clrcall] = ACTIONS(2840), + [anon_sym___stdcall] = ACTIONS(2840), + [anon_sym___fastcall] = ACTIONS(2840), + [anon_sym___thiscall] = ACTIONS(2840), + [anon_sym___vectorcall] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_signed] = ACTIONS(2840), + [anon_sym_unsigned] = ACTIONS(2840), + [anon_sym_long] = ACTIONS(2840), + [anon_sym_short] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2840), + [anon_sym_static] = ACTIONS(2840), + [anon_sym_register] = ACTIONS(2840), + [anon_sym_inline] = ACTIONS(2840), + [anon_sym___inline] = ACTIONS(2840), + [anon_sym___inline__] = ACTIONS(2840), + [anon_sym___forceinline] = ACTIONS(2840), + [anon_sym_thread_local] = ACTIONS(2840), + [anon_sym___thread] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2840), + [anon_sym_constexpr] = ACTIONS(2840), + [anon_sym_volatile] = ACTIONS(2840), + [anon_sym_restrict] = ACTIONS(2840), + [anon_sym___restrict__] = ACTIONS(2840), + [anon_sym__Atomic] = ACTIONS(2840), + [anon_sym__Noreturn] = ACTIONS(2840), + [anon_sym_noreturn] = ACTIONS(2840), + [anon_sym_mutable] = ACTIONS(2840), + [anon_sym_constinit] = ACTIONS(2840), + [anon_sym_consteval] = ACTIONS(2840), + [sym_primitive_type] = ACTIONS(2840), + [anon_sym_enum] = ACTIONS(2840), + [anon_sym_class] = ACTIONS(2840), + [anon_sym_struct] = ACTIONS(2840), + [anon_sym_union] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_else] = ACTIONS(2840), + [anon_sym_switch] = ACTIONS(2840), + [anon_sym_case] = ACTIONS(2840), + [anon_sym_default] = ACTIONS(2840), + [anon_sym_while] = ACTIONS(2840), + [anon_sym_do] = ACTIONS(2840), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_goto] = ACTIONS(2840), + [anon_sym_not] = ACTIONS(2840), + [anon_sym_compl] = ACTIONS(2840), + [anon_sym_DASH_DASH] = ACTIONS(2842), + [anon_sym_PLUS_PLUS] = ACTIONS(2842), + [anon_sym_sizeof] = ACTIONS(2840), + [anon_sym___alignof__] = ACTIONS(2840), + [anon_sym___alignof] = ACTIONS(2840), + [anon_sym__alignof] = ACTIONS(2840), + [anon_sym_alignof] = ACTIONS(2840), + [anon_sym__Alignof] = ACTIONS(2840), + [anon_sym_offsetof] = ACTIONS(2840), + [anon_sym__Generic] = ACTIONS(2840), + [anon_sym_asm] = ACTIONS(2840), + [anon_sym___asm__] = ACTIONS(2840), + [sym_number_literal] = ACTIONS(2842), + [anon_sym_L_SQUOTE] = ACTIONS(2842), + [anon_sym_u_SQUOTE] = ACTIONS(2842), + [anon_sym_U_SQUOTE] = ACTIONS(2842), + [anon_sym_u8_SQUOTE] = ACTIONS(2842), + [anon_sym_SQUOTE] = ACTIONS(2842), + [anon_sym_L_DQUOTE] = ACTIONS(2842), + [anon_sym_u_DQUOTE] = ACTIONS(2842), + [anon_sym_U_DQUOTE] = ACTIONS(2842), + [anon_sym_u8_DQUOTE] = ACTIONS(2842), + [anon_sym_DQUOTE] = ACTIONS(2842), + [sym_true] = ACTIONS(2840), + [sym_false] = ACTIONS(2840), + [anon_sym_NULL] = ACTIONS(2840), + [anon_sym_nullptr] = ACTIONS(2840), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2840), + [anon_sym_decltype] = ACTIONS(2840), + [anon_sym_virtual] = ACTIONS(2840), + [anon_sym_alignas] = ACTIONS(2840), + [anon_sym_explicit] = ACTIONS(2840), + [anon_sym_typename] = ACTIONS(2840), + [anon_sym_template] = ACTIONS(2840), + [anon_sym_operator] = ACTIONS(2840), + [anon_sym_try] = ACTIONS(2840), + [anon_sym_delete] = ACTIONS(2840), + [anon_sym_throw] = ACTIONS(2840), + [anon_sym_namespace] = ACTIONS(2840), + [anon_sym_using] = ACTIONS(2840), + [anon_sym_static_assert] = ACTIONS(2840), + [anon_sym_concept] = ACTIONS(2840), + [anon_sym_co_return] = ACTIONS(2840), + [anon_sym_co_yield] = ACTIONS(2840), + [anon_sym_R_DQUOTE] = ACTIONS(2842), + [anon_sym_LR_DQUOTE] = ACTIONS(2842), + [anon_sym_uR_DQUOTE] = ACTIONS(2842), + [anon_sym_UR_DQUOTE] = ACTIONS(2842), + [anon_sym_u8R_DQUOTE] = ACTIONS(2842), + [anon_sym_co_await] = ACTIONS(2840), + [anon_sym_new] = ACTIONS(2840), + [anon_sym_requires] = ACTIONS(2840), + [sym_this] = ACTIONS(2840), }, - [390] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [462] = { + [sym_identifier] = ACTIONS(2856), + [aux_sym_preproc_include_token1] = ACTIONS(2856), + [aux_sym_preproc_def_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token2] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2856), + [aux_sym_preproc_else_token1] = ACTIONS(2856), + [aux_sym_preproc_elif_token1] = ACTIONS(2856), + [sym_preproc_directive] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_AMP_AMP] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym___extension__] = ACTIONS(2856), + [anon_sym_typedef] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym___attribute__] = ACTIONS(2856), + [anon_sym_COLON_COLON] = ACTIONS(2858), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), + [anon_sym___declspec] = ACTIONS(2856), + [anon_sym___based] = ACTIONS(2856), + [anon_sym___cdecl] = ACTIONS(2856), + [anon_sym___clrcall] = ACTIONS(2856), + [anon_sym___stdcall] = ACTIONS(2856), + [anon_sym___fastcall] = ACTIONS(2856), + [anon_sym___thiscall] = ACTIONS(2856), + [anon_sym___vectorcall] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_signed] = ACTIONS(2856), + [anon_sym_unsigned] = ACTIONS(2856), + [anon_sym_long] = ACTIONS(2856), + [anon_sym_short] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_register] = ACTIONS(2856), + [anon_sym_inline] = ACTIONS(2856), + [anon_sym___inline] = ACTIONS(2856), + [anon_sym___inline__] = ACTIONS(2856), + [anon_sym___forceinline] = ACTIONS(2856), + [anon_sym_thread_local] = ACTIONS(2856), + [anon_sym___thread] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_constexpr] = ACTIONS(2856), + [anon_sym_volatile] = ACTIONS(2856), + [anon_sym_restrict] = ACTIONS(2856), + [anon_sym___restrict__] = ACTIONS(2856), + [anon_sym__Atomic] = ACTIONS(2856), + [anon_sym__Noreturn] = ACTIONS(2856), + [anon_sym_noreturn] = ACTIONS(2856), + [anon_sym_mutable] = ACTIONS(2856), + [anon_sym_constinit] = ACTIONS(2856), + [anon_sym_consteval] = ACTIONS(2856), + [sym_primitive_type] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_class] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_else] = ACTIONS(2856), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_case] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_goto] = ACTIONS(2856), + [anon_sym_not] = ACTIONS(2856), + [anon_sym_compl] = ACTIONS(2856), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_sizeof] = ACTIONS(2856), + [anon_sym___alignof__] = ACTIONS(2856), + [anon_sym___alignof] = ACTIONS(2856), + [anon_sym__alignof] = ACTIONS(2856), + [anon_sym_alignof] = ACTIONS(2856), + [anon_sym__Alignof] = ACTIONS(2856), + [anon_sym_offsetof] = ACTIONS(2856), + [anon_sym__Generic] = ACTIONS(2856), + [anon_sym_asm] = ACTIONS(2856), + [anon_sym___asm__] = ACTIONS(2856), + [sym_number_literal] = ACTIONS(2858), + [anon_sym_L_SQUOTE] = ACTIONS(2858), + [anon_sym_u_SQUOTE] = ACTIONS(2858), + [anon_sym_U_SQUOTE] = ACTIONS(2858), + [anon_sym_u8_SQUOTE] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_L_DQUOTE] = ACTIONS(2858), + [anon_sym_u_DQUOTE] = ACTIONS(2858), + [anon_sym_U_DQUOTE] = ACTIONS(2858), + [anon_sym_u8_DQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(2858), + [sym_true] = ACTIONS(2856), + [sym_false] = ACTIONS(2856), + [anon_sym_NULL] = ACTIONS(2856), + [anon_sym_nullptr] = ACTIONS(2856), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2856), + [anon_sym_decltype] = ACTIONS(2856), + [anon_sym_virtual] = ACTIONS(2856), + [anon_sym_alignas] = ACTIONS(2856), + [anon_sym_explicit] = ACTIONS(2856), + [anon_sym_typename] = ACTIONS(2856), + [anon_sym_template] = ACTIONS(2856), + [anon_sym_operator] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_delete] = ACTIONS(2856), + [anon_sym_throw] = ACTIONS(2856), + [anon_sym_namespace] = ACTIONS(2856), + [anon_sym_using] = ACTIONS(2856), + [anon_sym_static_assert] = ACTIONS(2856), + [anon_sym_concept] = ACTIONS(2856), + [anon_sym_co_return] = ACTIONS(2856), + [anon_sym_co_yield] = ACTIONS(2856), + [anon_sym_R_DQUOTE] = ACTIONS(2858), + [anon_sym_LR_DQUOTE] = ACTIONS(2858), + [anon_sym_uR_DQUOTE] = ACTIONS(2858), + [anon_sym_UR_DQUOTE] = ACTIONS(2858), + [anon_sym_u8R_DQUOTE] = ACTIONS(2858), + [anon_sym_co_await] = ACTIONS(2856), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_requires] = ACTIONS(2856), + [sym_this] = ACTIONS(2856), }, - [391] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [463] = { + [sym_preproc_def] = STATE(601), + [sym_preproc_function_def] = STATE(601), + [sym_preproc_call] = STATE(601), + [sym_preproc_if_in_field_declaration_list] = STATE(601), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(601), + [sym_preproc_else_in_field_declaration_list] = STATE(7463), + [sym_preproc_elif_in_field_declaration_list] = STATE(7463), + [sym_type_definition] = STATE(601), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5209), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5775), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(601), + [sym_field_declaration] = STATE(601), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1795), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(601), + [sym_operator_cast] = STATE(6107), + [sym_inline_method_definition] = STATE(601), + [sym__constructor_specifiers] = STATE(1795), + [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_access_specifier] = STATE(7215), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(601), + [sym_alias_declaration] = STATE(601), + [sym_static_assert_declaration] = STATE(601), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6107), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(601), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1795), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3401), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3237), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2687), + [sym_preproc_directive] = ACTIONS(3239), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3241), + [anon_sym_typedef] = ACTIONS(3243), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3245), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3249), + [anon_sym_static_assert] = ACTIONS(3251), }, - [392] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [464] = { + [sym_identifier] = ACTIONS(2808), + [aux_sym_preproc_include_token1] = ACTIONS(2808), + [aux_sym_preproc_def_token1] = ACTIONS(2808), + [aux_sym_preproc_if_token1] = ACTIONS(2808), + [aux_sym_preproc_if_token2] = ACTIONS(2808), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2808), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2808), + [aux_sym_preproc_else_token1] = ACTIONS(2808), + [aux_sym_preproc_elif_token1] = ACTIONS(2808), + [sym_preproc_directive] = ACTIONS(2808), + [anon_sym_LPAREN2] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2808), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_AMP_AMP] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2808), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym___extension__] = ACTIONS(2808), + [anon_sym_typedef] = ACTIONS(2808), + [anon_sym_extern] = ACTIONS(2808), + [anon_sym___attribute__] = ACTIONS(2808), + [anon_sym_COLON_COLON] = ACTIONS(2810), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2810), + [anon_sym___declspec] = ACTIONS(2808), + [anon_sym___based] = ACTIONS(2808), + [anon_sym___cdecl] = ACTIONS(2808), + [anon_sym___clrcall] = ACTIONS(2808), + [anon_sym___stdcall] = ACTIONS(2808), + [anon_sym___fastcall] = ACTIONS(2808), + [anon_sym___thiscall] = ACTIONS(2808), + [anon_sym___vectorcall] = ACTIONS(2808), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_signed] = ACTIONS(2808), + [anon_sym_unsigned] = ACTIONS(2808), + [anon_sym_long] = ACTIONS(2808), + [anon_sym_short] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2808), + [anon_sym_static] = ACTIONS(2808), + [anon_sym_register] = ACTIONS(2808), + [anon_sym_inline] = ACTIONS(2808), + [anon_sym___inline] = ACTIONS(2808), + [anon_sym___inline__] = ACTIONS(2808), + [anon_sym___forceinline] = ACTIONS(2808), + [anon_sym_thread_local] = ACTIONS(2808), + [anon_sym___thread] = ACTIONS(2808), + [anon_sym_const] = ACTIONS(2808), + [anon_sym_constexpr] = ACTIONS(2808), + [anon_sym_volatile] = ACTIONS(2808), + [anon_sym_restrict] = ACTIONS(2808), + [anon_sym___restrict__] = ACTIONS(2808), + [anon_sym__Atomic] = ACTIONS(2808), + [anon_sym__Noreturn] = ACTIONS(2808), + [anon_sym_noreturn] = ACTIONS(2808), + [anon_sym_mutable] = ACTIONS(2808), + [anon_sym_constinit] = ACTIONS(2808), + [anon_sym_consteval] = ACTIONS(2808), + [sym_primitive_type] = ACTIONS(2808), + [anon_sym_enum] = ACTIONS(2808), + [anon_sym_class] = ACTIONS(2808), + [anon_sym_struct] = ACTIONS(2808), + [anon_sym_union] = ACTIONS(2808), + [anon_sym_if] = ACTIONS(2808), + [anon_sym_else] = ACTIONS(2808), + [anon_sym_switch] = ACTIONS(2808), + [anon_sym_case] = ACTIONS(2808), + [anon_sym_default] = ACTIONS(2808), + [anon_sym_while] = ACTIONS(2808), + [anon_sym_do] = ACTIONS(2808), + [anon_sym_for] = ACTIONS(2808), + [anon_sym_return] = ACTIONS(2808), + [anon_sym_break] = ACTIONS(2808), + [anon_sym_continue] = ACTIONS(2808), + [anon_sym_goto] = ACTIONS(2808), + [anon_sym_not] = ACTIONS(2808), + [anon_sym_compl] = ACTIONS(2808), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_sizeof] = ACTIONS(2808), + [anon_sym___alignof__] = ACTIONS(2808), + [anon_sym___alignof] = ACTIONS(2808), + [anon_sym__alignof] = ACTIONS(2808), + [anon_sym_alignof] = ACTIONS(2808), + [anon_sym__Alignof] = ACTIONS(2808), + [anon_sym_offsetof] = ACTIONS(2808), + [anon_sym__Generic] = ACTIONS(2808), + [anon_sym_asm] = ACTIONS(2808), + [anon_sym___asm__] = ACTIONS(2808), + [sym_number_literal] = ACTIONS(2810), + [anon_sym_L_SQUOTE] = ACTIONS(2810), + [anon_sym_u_SQUOTE] = ACTIONS(2810), + [anon_sym_U_SQUOTE] = ACTIONS(2810), + [anon_sym_u8_SQUOTE] = ACTIONS(2810), + [anon_sym_SQUOTE] = ACTIONS(2810), + [anon_sym_L_DQUOTE] = ACTIONS(2810), + [anon_sym_u_DQUOTE] = ACTIONS(2810), + [anon_sym_U_DQUOTE] = ACTIONS(2810), + [anon_sym_u8_DQUOTE] = ACTIONS(2810), + [anon_sym_DQUOTE] = ACTIONS(2810), + [sym_true] = ACTIONS(2808), + [sym_false] = ACTIONS(2808), + [anon_sym_NULL] = ACTIONS(2808), + [anon_sym_nullptr] = ACTIONS(2808), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2808), + [anon_sym_decltype] = ACTIONS(2808), + [anon_sym_virtual] = ACTIONS(2808), + [anon_sym_alignas] = ACTIONS(2808), + [anon_sym_explicit] = ACTIONS(2808), + [anon_sym_typename] = ACTIONS(2808), + [anon_sym_template] = ACTIONS(2808), + [anon_sym_operator] = ACTIONS(2808), + [anon_sym_try] = ACTIONS(2808), + [anon_sym_delete] = ACTIONS(2808), + [anon_sym_throw] = ACTIONS(2808), + [anon_sym_namespace] = ACTIONS(2808), + [anon_sym_using] = ACTIONS(2808), + [anon_sym_static_assert] = ACTIONS(2808), + [anon_sym_concept] = ACTIONS(2808), + [anon_sym_co_return] = ACTIONS(2808), + [anon_sym_co_yield] = ACTIONS(2808), + [anon_sym_R_DQUOTE] = ACTIONS(2810), + [anon_sym_LR_DQUOTE] = ACTIONS(2810), + [anon_sym_uR_DQUOTE] = ACTIONS(2810), + [anon_sym_UR_DQUOTE] = ACTIONS(2810), + [anon_sym_u8R_DQUOTE] = ACTIONS(2810), + [anon_sym_co_await] = ACTIONS(2808), + [anon_sym_new] = ACTIONS(2808), + [anon_sym_requires] = ACTIONS(2808), + [sym_this] = ACTIONS(2808), }, - [393] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [465] = { + [sym_catch_clause] = STATE(415), + [aux_sym_constructor_try_statement_repeat1] = STATE(415), + [sym_identifier] = ACTIONS(2249), + [aux_sym_preproc_include_token1] = ACTIONS(2249), + [aux_sym_preproc_def_token1] = ACTIONS(2249), + [aux_sym_preproc_if_token1] = ACTIONS(2249), + [aux_sym_preproc_if_token2] = ACTIONS(2249), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2249), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2249), + [sym_preproc_directive] = ACTIONS(2249), + [anon_sym_LPAREN2] = ACTIONS(2251), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_TILDE] = ACTIONS(2251), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(2251), + [anon_sym_AMP_AMP] = ACTIONS(2251), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym___extension__] = ACTIONS(2249), + [anon_sym_typedef] = ACTIONS(2249), + [anon_sym_extern] = ACTIONS(2249), + [anon_sym___attribute__] = ACTIONS(2249), + [anon_sym_COLON_COLON] = ACTIONS(2251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2251), + [anon_sym___declspec] = ACTIONS(2249), + [anon_sym___based] = ACTIONS(2249), + [anon_sym___cdecl] = ACTIONS(2249), + [anon_sym___clrcall] = ACTIONS(2249), + [anon_sym___stdcall] = ACTIONS(2249), + [anon_sym___fastcall] = ACTIONS(2249), + [anon_sym___thiscall] = ACTIONS(2249), + [anon_sym___vectorcall] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_signed] = ACTIONS(2249), + [anon_sym_unsigned] = ACTIONS(2249), + [anon_sym_long] = ACTIONS(2249), + [anon_sym_short] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_register] = ACTIONS(2249), + [anon_sym_inline] = ACTIONS(2249), + [anon_sym___inline] = ACTIONS(2249), + [anon_sym___inline__] = ACTIONS(2249), + [anon_sym___forceinline] = ACTIONS(2249), + [anon_sym_thread_local] = ACTIONS(2249), + [anon_sym___thread] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_constexpr] = ACTIONS(2249), + [anon_sym_volatile] = ACTIONS(2249), + [anon_sym_restrict] = ACTIONS(2249), + [anon_sym___restrict__] = ACTIONS(2249), + [anon_sym__Atomic] = ACTIONS(2249), + [anon_sym__Noreturn] = ACTIONS(2249), + [anon_sym_noreturn] = ACTIONS(2249), + [anon_sym_mutable] = ACTIONS(2249), + [anon_sym_constinit] = ACTIONS(2249), + [anon_sym_consteval] = ACTIONS(2249), + [sym_primitive_type] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_switch] = ACTIONS(2249), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_goto] = ACTIONS(2249), + [anon_sym_not] = ACTIONS(2249), + [anon_sym_compl] = ACTIONS(2249), + [anon_sym_DASH_DASH] = ACTIONS(2251), + [anon_sym_PLUS_PLUS] = ACTIONS(2251), + [anon_sym_sizeof] = ACTIONS(2249), + [anon_sym___alignof__] = ACTIONS(2249), + [anon_sym___alignof] = ACTIONS(2249), + [anon_sym__alignof] = ACTIONS(2249), + [anon_sym_alignof] = ACTIONS(2249), + [anon_sym__Alignof] = ACTIONS(2249), + [anon_sym_offsetof] = ACTIONS(2249), + [anon_sym__Generic] = ACTIONS(2249), + [anon_sym_asm] = ACTIONS(2249), + [anon_sym___asm__] = ACTIONS(2249), + [sym_number_literal] = ACTIONS(2251), + [anon_sym_L_SQUOTE] = ACTIONS(2251), + [anon_sym_u_SQUOTE] = ACTIONS(2251), + [anon_sym_U_SQUOTE] = ACTIONS(2251), + [anon_sym_u8_SQUOTE] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_L_DQUOTE] = ACTIONS(2251), + [anon_sym_u_DQUOTE] = ACTIONS(2251), + [anon_sym_U_DQUOTE] = ACTIONS(2251), + [anon_sym_u8_DQUOTE] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(2251), + [sym_true] = ACTIONS(2249), + [sym_false] = ACTIONS(2249), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2249), + [anon_sym_decltype] = ACTIONS(2249), + [anon_sym_virtual] = ACTIONS(2249), + [anon_sym_alignas] = ACTIONS(2249), + [anon_sym_explicit] = ACTIONS(2249), + [anon_sym_typename] = ACTIONS(2249), + [anon_sym_template] = ACTIONS(2249), + [anon_sym_operator] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_delete] = ACTIONS(2249), + [anon_sym_throw] = ACTIONS(2249), + [anon_sym_namespace] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [anon_sym_static_assert] = ACTIONS(2249), + [anon_sym_concept] = ACTIONS(2249), + [anon_sym_co_return] = ACTIONS(2249), + [anon_sym_co_yield] = ACTIONS(2249), + [anon_sym_catch] = ACTIONS(3220), + [anon_sym_R_DQUOTE] = ACTIONS(2251), + [anon_sym_LR_DQUOTE] = ACTIONS(2251), + [anon_sym_uR_DQUOTE] = ACTIONS(2251), + [anon_sym_UR_DQUOTE] = ACTIONS(2251), + [anon_sym_u8R_DQUOTE] = ACTIONS(2251), + [anon_sym_co_await] = ACTIONS(2249), + [anon_sym_new] = ACTIONS(2249), + [anon_sym_requires] = ACTIONS(2249), + [sym_this] = ACTIONS(2249), }, - [394] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [466] = { + [sym_identifier] = ACTIONS(2876), + [aux_sym_preproc_include_token1] = ACTIONS(2876), + [aux_sym_preproc_def_token1] = ACTIONS(2876), + [aux_sym_preproc_if_token1] = ACTIONS(2876), + [aux_sym_preproc_if_token2] = ACTIONS(2876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2876), + [aux_sym_preproc_else_token1] = ACTIONS(2876), + [aux_sym_preproc_elif_token1] = ACTIONS(2876), + [sym_preproc_directive] = ACTIONS(2876), + [anon_sym_LPAREN2] = ACTIONS(2878), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_TILDE] = ACTIONS(2878), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym___extension__] = ACTIONS(2876), + [anon_sym_typedef] = ACTIONS(2876), + [anon_sym_extern] = ACTIONS(2876), + [anon_sym___attribute__] = ACTIONS(2876), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2878), + [anon_sym___declspec] = ACTIONS(2876), + [anon_sym___based] = ACTIONS(2876), + [anon_sym___cdecl] = ACTIONS(2876), + [anon_sym___clrcall] = ACTIONS(2876), + [anon_sym___stdcall] = ACTIONS(2876), + [anon_sym___fastcall] = ACTIONS(2876), + [anon_sym___thiscall] = ACTIONS(2876), + [anon_sym___vectorcall] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_signed] = ACTIONS(2876), + [anon_sym_unsigned] = ACTIONS(2876), + [anon_sym_long] = ACTIONS(2876), + [anon_sym_short] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_register] = ACTIONS(2876), + [anon_sym_inline] = ACTIONS(2876), + [anon_sym___inline] = ACTIONS(2876), + [anon_sym___inline__] = ACTIONS(2876), + [anon_sym___forceinline] = ACTIONS(2876), + [anon_sym_thread_local] = ACTIONS(2876), + [anon_sym___thread] = ACTIONS(2876), + [anon_sym_const] = ACTIONS(2876), + [anon_sym_constexpr] = ACTIONS(2876), + [anon_sym_volatile] = ACTIONS(2876), + [anon_sym_restrict] = ACTIONS(2876), + [anon_sym___restrict__] = ACTIONS(2876), + [anon_sym__Atomic] = ACTIONS(2876), + [anon_sym__Noreturn] = ACTIONS(2876), + [anon_sym_noreturn] = ACTIONS(2876), + [anon_sym_mutable] = ACTIONS(2876), + [anon_sym_constinit] = ACTIONS(2876), + [anon_sym_consteval] = ACTIONS(2876), + [sym_primitive_type] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), + [anon_sym_class] = ACTIONS(2876), + [anon_sym_struct] = ACTIONS(2876), + [anon_sym_union] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_else] = ACTIONS(2876), + [anon_sym_switch] = ACTIONS(2876), + [anon_sym_case] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_goto] = ACTIONS(2876), + [anon_sym_not] = ACTIONS(2876), + [anon_sym_compl] = ACTIONS(2876), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_sizeof] = ACTIONS(2876), + [anon_sym___alignof__] = ACTIONS(2876), + [anon_sym___alignof] = ACTIONS(2876), + [anon_sym__alignof] = ACTIONS(2876), + [anon_sym_alignof] = ACTIONS(2876), + [anon_sym__Alignof] = ACTIONS(2876), + [anon_sym_offsetof] = ACTIONS(2876), + [anon_sym__Generic] = ACTIONS(2876), + [anon_sym_asm] = ACTIONS(2876), + [anon_sym___asm__] = ACTIONS(2876), + [sym_number_literal] = ACTIONS(2878), + [anon_sym_L_SQUOTE] = ACTIONS(2878), + [anon_sym_u_SQUOTE] = ACTIONS(2878), + [anon_sym_U_SQUOTE] = ACTIONS(2878), + [anon_sym_u8_SQUOTE] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_L_DQUOTE] = ACTIONS(2878), + [anon_sym_u_DQUOTE] = ACTIONS(2878), + [anon_sym_U_DQUOTE] = ACTIONS(2878), + [anon_sym_u8_DQUOTE] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [sym_true] = ACTIONS(2876), + [sym_false] = ACTIONS(2876), + [anon_sym_NULL] = ACTIONS(2876), + [anon_sym_nullptr] = ACTIONS(2876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2876), + [anon_sym_decltype] = ACTIONS(2876), + [anon_sym_virtual] = ACTIONS(2876), + [anon_sym_alignas] = ACTIONS(2876), + [anon_sym_explicit] = ACTIONS(2876), + [anon_sym_typename] = ACTIONS(2876), + [anon_sym_template] = ACTIONS(2876), + [anon_sym_operator] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_delete] = ACTIONS(2876), + [anon_sym_throw] = ACTIONS(2876), + [anon_sym_namespace] = ACTIONS(2876), + [anon_sym_using] = ACTIONS(2876), + [anon_sym_static_assert] = ACTIONS(2876), + [anon_sym_concept] = ACTIONS(2876), + [anon_sym_co_return] = ACTIONS(2876), + [anon_sym_co_yield] = ACTIONS(2876), + [anon_sym_R_DQUOTE] = ACTIONS(2878), + [anon_sym_LR_DQUOTE] = ACTIONS(2878), + [anon_sym_uR_DQUOTE] = ACTIONS(2878), + [anon_sym_UR_DQUOTE] = ACTIONS(2878), + [anon_sym_u8R_DQUOTE] = ACTIONS(2878), + [anon_sym_co_await] = ACTIONS(2876), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_requires] = ACTIONS(2876), + [sym_this] = ACTIONS(2876), }, - [395] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [467] = { + [sym_identifier] = ACTIONS(2872), + [aux_sym_preproc_include_token1] = ACTIONS(2872), + [aux_sym_preproc_def_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token2] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2872), + [aux_sym_preproc_else_token1] = ACTIONS(2872), + [aux_sym_preproc_elif_token1] = ACTIONS(2872), + [sym_preproc_directive] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_AMP_AMP] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym___extension__] = ACTIONS(2872), + [anon_sym_typedef] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym___attribute__] = ACTIONS(2872), + [anon_sym_COLON_COLON] = ACTIONS(2874), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2874), + [anon_sym___declspec] = ACTIONS(2872), + [anon_sym___based] = ACTIONS(2872), + [anon_sym___cdecl] = ACTIONS(2872), + [anon_sym___clrcall] = ACTIONS(2872), + [anon_sym___stdcall] = ACTIONS(2872), + [anon_sym___fastcall] = ACTIONS(2872), + [anon_sym___thiscall] = ACTIONS(2872), + [anon_sym___vectorcall] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_signed] = ACTIONS(2872), + [anon_sym_unsigned] = ACTIONS(2872), + [anon_sym_long] = ACTIONS(2872), + [anon_sym_short] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_register] = ACTIONS(2872), + [anon_sym_inline] = ACTIONS(2872), + [anon_sym___inline] = ACTIONS(2872), + [anon_sym___inline__] = ACTIONS(2872), + [anon_sym___forceinline] = ACTIONS(2872), + [anon_sym_thread_local] = ACTIONS(2872), + [anon_sym___thread] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_constexpr] = ACTIONS(2872), + [anon_sym_volatile] = ACTIONS(2872), + [anon_sym_restrict] = ACTIONS(2872), + [anon_sym___restrict__] = ACTIONS(2872), + [anon_sym__Atomic] = ACTIONS(2872), + [anon_sym__Noreturn] = ACTIONS(2872), + [anon_sym_noreturn] = ACTIONS(2872), + [anon_sym_mutable] = ACTIONS(2872), + [anon_sym_constinit] = ACTIONS(2872), + [anon_sym_consteval] = ACTIONS(2872), + [sym_primitive_type] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_class] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_else] = ACTIONS(2872), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_case] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_goto] = ACTIONS(2872), + [anon_sym_not] = ACTIONS(2872), + [anon_sym_compl] = ACTIONS(2872), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_sizeof] = ACTIONS(2872), + [anon_sym___alignof__] = ACTIONS(2872), + [anon_sym___alignof] = ACTIONS(2872), + [anon_sym__alignof] = ACTIONS(2872), + [anon_sym_alignof] = ACTIONS(2872), + [anon_sym__Alignof] = ACTIONS(2872), + [anon_sym_offsetof] = ACTIONS(2872), + [anon_sym__Generic] = ACTIONS(2872), + [anon_sym_asm] = ACTIONS(2872), + [anon_sym___asm__] = ACTIONS(2872), + [sym_number_literal] = ACTIONS(2874), + [anon_sym_L_SQUOTE] = ACTIONS(2874), + [anon_sym_u_SQUOTE] = ACTIONS(2874), + [anon_sym_U_SQUOTE] = ACTIONS(2874), + [anon_sym_u8_SQUOTE] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_L_DQUOTE] = ACTIONS(2874), + [anon_sym_u_DQUOTE] = ACTIONS(2874), + [anon_sym_U_DQUOTE] = ACTIONS(2874), + [anon_sym_u8_DQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE] = ACTIONS(2874), + [sym_true] = ACTIONS(2872), + [sym_false] = ACTIONS(2872), + [anon_sym_NULL] = ACTIONS(2872), + [anon_sym_nullptr] = ACTIONS(2872), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2872), + [anon_sym_decltype] = ACTIONS(2872), + [anon_sym_virtual] = ACTIONS(2872), + [anon_sym_alignas] = ACTIONS(2872), + [anon_sym_explicit] = ACTIONS(2872), + [anon_sym_typename] = ACTIONS(2872), + [anon_sym_template] = ACTIONS(2872), + [anon_sym_operator] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_delete] = ACTIONS(2872), + [anon_sym_throw] = ACTIONS(2872), + [anon_sym_namespace] = ACTIONS(2872), + [anon_sym_using] = ACTIONS(2872), + [anon_sym_static_assert] = ACTIONS(2872), + [anon_sym_concept] = ACTIONS(2872), + [anon_sym_co_return] = ACTIONS(2872), + [anon_sym_co_yield] = ACTIONS(2872), + [anon_sym_R_DQUOTE] = ACTIONS(2874), + [anon_sym_LR_DQUOTE] = ACTIONS(2874), + [anon_sym_uR_DQUOTE] = ACTIONS(2874), + [anon_sym_UR_DQUOTE] = ACTIONS(2874), + [anon_sym_u8R_DQUOTE] = ACTIONS(2874), + [anon_sym_co_await] = ACTIONS(2872), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_requires] = ACTIONS(2872), + [sym_this] = ACTIONS(2872), }, - [396] = { - [sym_identifier] = ACTIONS(2844), - [aux_sym_preproc_include_token1] = ACTIONS(2844), - [aux_sym_preproc_def_token1] = ACTIONS(2844), - [aux_sym_preproc_if_token1] = ACTIONS(2844), - [aux_sym_preproc_if_token2] = ACTIONS(2844), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2844), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2844), - [aux_sym_preproc_else_token1] = ACTIONS(2844), - [aux_sym_preproc_elif_token1] = ACTIONS(2844), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2844), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2844), - [sym_preproc_directive] = ACTIONS(2844), - [anon_sym_LPAREN2] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2844), - [anon_sym_PLUS] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2844), - [anon_sym_SEMI] = ACTIONS(2846), - [anon_sym___extension__] = ACTIONS(2844), - [anon_sym_typedef] = ACTIONS(2844), - [anon_sym_extern] = ACTIONS(2844), - [anon_sym___attribute__] = ACTIONS(2844), - [anon_sym_COLON_COLON] = ACTIONS(2846), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2846), - [anon_sym___declspec] = ACTIONS(2844), - [anon_sym___based] = ACTIONS(2844), - [anon_sym___cdecl] = ACTIONS(2844), - [anon_sym___clrcall] = ACTIONS(2844), - [anon_sym___stdcall] = ACTIONS(2844), - [anon_sym___fastcall] = ACTIONS(2844), - [anon_sym___thiscall] = ACTIONS(2844), - [anon_sym___vectorcall] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_signed] = ACTIONS(2844), - [anon_sym_unsigned] = ACTIONS(2844), - [anon_sym_long] = ACTIONS(2844), - [anon_sym_short] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_static] = ACTIONS(2844), - [anon_sym_register] = ACTIONS(2844), - [anon_sym_inline] = ACTIONS(2844), - [anon_sym___inline] = ACTIONS(2844), - [anon_sym___inline__] = ACTIONS(2844), - [anon_sym___forceinline] = ACTIONS(2844), - [anon_sym_thread_local] = ACTIONS(2844), - [anon_sym___thread] = ACTIONS(2844), - [anon_sym_const] = ACTIONS(2844), - [anon_sym_constexpr] = ACTIONS(2844), - [anon_sym_volatile] = ACTIONS(2844), - [anon_sym_restrict] = ACTIONS(2844), - [anon_sym___restrict__] = ACTIONS(2844), - [anon_sym__Atomic] = ACTIONS(2844), - [anon_sym__Noreturn] = ACTIONS(2844), - [anon_sym_noreturn] = ACTIONS(2844), - [anon_sym_mutable] = ACTIONS(2844), - [anon_sym_constinit] = ACTIONS(2844), - [anon_sym_consteval] = ACTIONS(2844), - [sym_primitive_type] = ACTIONS(2844), - [anon_sym_enum] = ACTIONS(2844), - [anon_sym_class] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_else] = ACTIONS(2844), - [anon_sym_switch] = ACTIONS(2844), - [anon_sym_case] = ACTIONS(2844), - [anon_sym_default] = ACTIONS(2844), - [anon_sym_while] = ACTIONS(2844), - [anon_sym_do] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2844), - [anon_sym_return] = ACTIONS(2844), - [anon_sym_break] = ACTIONS(2844), - [anon_sym_continue] = ACTIONS(2844), - [anon_sym_goto] = ACTIONS(2844), - [anon_sym_not] = ACTIONS(2844), - [anon_sym_compl] = ACTIONS(2844), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_sizeof] = ACTIONS(2844), - [anon_sym___alignof__] = ACTIONS(2844), - [anon_sym___alignof] = ACTIONS(2844), - [anon_sym__alignof] = ACTIONS(2844), - [anon_sym_alignof] = ACTIONS(2844), - [anon_sym__Alignof] = ACTIONS(2844), - [anon_sym_offsetof] = ACTIONS(2844), - [anon_sym__Generic] = ACTIONS(2844), - [anon_sym_asm] = ACTIONS(2844), - [anon_sym___asm__] = ACTIONS(2844), - [sym_number_literal] = ACTIONS(2846), - [anon_sym_L_SQUOTE] = ACTIONS(2846), - [anon_sym_u_SQUOTE] = ACTIONS(2846), - [anon_sym_U_SQUOTE] = ACTIONS(2846), - [anon_sym_u8_SQUOTE] = ACTIONS(2846), - [anon_sym_SQUOTE] = ACTIONS(2846), - [anon_sym_L_DQUOTE] = ACTIONS(2846), - [anon_sym_u_DQUOTE] = ACTIONS(2846), - [anon_sym_U_DQUOTE] = ACTIONS(2846), - [anon_sym_u8_DQUOTE] = ACTIONS(2846), - [anon_sym_DQUOTE] = ACTIONS(2846), - [sym_true] = ACTIONS(2844), - [sym_false] = ACTIONS(2844), - [anon_sym_NULL] = ACTIONS(2844), - [anon_sym_nullptr] = ACTIONS(2844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2844), - [anon_sym_decltype] = ACTIONS(2844), - [anon_sym_virtual] = ACTIONS(2844), - [anon_sym_alignas] = ACTIONS(2844), - [anon_sym_explicit] = ACTIONS(2844), - [anon_sym_typename] = ACTIONS(2844), - [anon_sym_template] = ACTIONS(2844), - [anon_sym_operator] = ACTIONS(2844), - [anon_sym_try] = ACTIONS(2844), - [anon_sym_delete] = ACTIONS(2844), - [anon_sym_throw] = ACTIONS(2844), - [anon_sym_namespace] = ACTIONS(2844), - [anon_sym_using] = ACTIONS(2844), - [anon_sym_static_assert] = ACTIONS(2844), - [anon_sym_concept] = ACTIONS(2844), - [anon_sym_co_return] = ACTIONS(2844), - [anon_sym_co_yield] = ACTIONS(2844), - [anon_sym_R_DQUOTE] = ACTIONS(2846), - [anon_sym_LR_DQUOTE] = ACTIONS(2846), - [anon_sym_uR_DQUOTE] = ACTIONS(2846), - [anon_sym_UR_DQUOTE] = ACTIONS(2846), - [anon_sym_u8R_DQUOTE] = ACTIONS(2846), - [anon_sym_co_await] = ACTIONS(2844), - [anon_sym_new] = ACTIONS(2844), - [anon_sym_requires] = ACTIONS(2844), - [sym_this] = ACTIONS(2844), + [468] = { + [sym_identifier] = ACTIONS(2868), + [aux_sym_preproc_include_token1] = ACTIONS(2868), + [aux_sym_preproc_def_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token2] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2868), + [aux_sym_preproc_else_token1] = ACTIONS(2868), + [aux_sym_preproc_elif_token1] = ACTIONS(2868), + [sym_preproc_directive] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym___extension__] = ACTIONS(2868), + [anon_sym_typedef] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym___attribute__] = ACTIONS(2868), + [anon_sym_COLON_COLON] = ACTIONS(2870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2870), + [anon_sym___declspec] = ACTIONS(2868), + [anon_sym___based] = ACTIONS(2868), + [anon_sym___cdecl] = ACTIONS(2868), + [anon_sym___clrcall] = ACTIONS(2868), + [anon_sym___stdcall] = ACTIONS(2868), + [anon_sym___fastcall] = ACTIONS(2868), + [anon_sym___thiscall] = ACTIONS(2868), + [anon_sym___vectorcall] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_signed] = ACTIONS(2868), + [anon_sym_unsigned] = ACTIONS(2868), + [anon_sym_long] = ACTIONS(2868), + [anon_sym_short] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_register] = ACTIONS(2868), + [anon_sym_inline] = ACTIONS(2868), + [anon_sym___inline] = ACTIONS(2868), + [anon_sym___inline__] = ACTIONS(2868), + [anon_sym___forceinline] = ACTIONS(2868), + [anon_sym_thread_local] = ACTIONS(2868), + [anon_sym___thread] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_constexpr] = ACTIONS(2868), + [anon_sym_volatile] = ACTIONS(2868), + [anon_sym_restrict] = ACTIONS(2868), + [anon_sym___restrict__] = ACTIONS(2868), + [anon_sym__Atomic] = ACTIONS(2868), + [anon_sym__Noreturn] = ACTIONS(2868), + [anon_sym_noreturn] = ACTIONS(2868), + [anon_sym_mutable] = ACTIONS(2868), + [anon_sym_constinit] = ACTIONS(2868), + [anon_sym_consteval] = ACTIONS(2868), + [sym_primitive_type] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_class] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2868), + [anon_sym_union] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_goto] = ACTIONS(2868), + [anon_sym_not] = ACTIONS(2868), + [anon_sym_compl] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_sizeof] = ACTIONS(2868), + [anon_sym___alignof__] = ACTIONS(2868), + [anon_sym___alignof] = ACTIONS(2868), + [anon_sym__alignof] = ACTIONS(2868), + [anon_sym_alignof] = ACTIONS(2868), + [anon_sym__Alignof] = ACTIONS(2868), + [anon_sym_offsetof] = ACTIONS(2868), + [anon_sym__Generic] = ACTIONS(2868), + [anon_sym_asm] = ACTIONS(2868), + [anon_sym___asm__] = ACTIONS(2868), + [sym_number_literal] = ACTIONS(2870), + [anon_sym_L_SQUOTE] = ACTIONS(2870), + [anon_sym_u_SQUOTE] = ACTIONS(2870), + [anon_sym_U_SQUOTE] = ACTIONS(2870), + [anon_sym_u8_SQUOTE] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_L_DQUOTE] = ACTIONS(2870), + [anon_sym_u_DQUOTE] = ACTIONS(2870), + [anon_sym_U_DQUOTE] = ACTIONS(2870), + [anon_sym_u8_DQUOTE] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [sym_true] = ACTIONS(2868), + [sym_false] = ACTIONS(2868), + [anon_sym_NULL] = ACTIONS(2868), + [anon_sym_nullptr] = ACTIONS(2868), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2868), + [anon_sym_decltype] = ACTIONS(2868), + [anon_sym_virtual] = ACTIONS(2868), + [anon_sym_alignas] = ACTIONS(2868), + [anon_sym_explicit] = ACTIONS(2868), + [anon_sym_typename] = ACTIONS(2868), + [anon_sym_template] = ACTIONS(2868), + [anon_sym_operator] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_delete] = ACTIONS(2868), + [anon_sym_throw] = ACTIONS(2868), + [anon_sym_namespace] = ACTIONS(2868), + [anon_sym_using] = ACTIONS(2868), + [anon_sym_static_assert] = ACTIONS(2868), + [anon_sym_concept] = ACTIONS(2868), + [anon_sym_co_return] = ACTIONS(2868), + [anon_sym_co_yield] = ACTIONS(2868), + [anon_sym_R_DQUOTE] = ACTIONS(2870), + [anon_sym_LR_DQUOTE] = ACTIONS(2870), + [anon_sym_uR_DQUOTE] = ACTIONS(2870), + [anon_sym_UR_DQUOTE] = ACTIONS(2870), + [anon_sym_u8R_DQUOTE] = ACTIONS(2870), + [anon_sym_co_await] = ACTIONS(2868), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_requires] = ACTIONS(2868), + [sym_this] = ACTIONS(2868), }, - [397] = { - [sym__expression] = STATE(5075), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9112), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2848), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym___extension__] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym___attribute__] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2855), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), - [anon_sym___declspec] = ACTIONS(2853), - [anon_sym_signed] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym___inline] = ACTIONS(2853), - [anon_sym___inline__] = ACTIONS(2853), - [anon_sym___forceinline] = ACTIONS(2853), - [anon_sym_thread_local] = ACTIONS(2853), - [anon_sym___thread] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_constexpr] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym___restrict__] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym__Noreturn] = ACTIONS(2853), - [anon_sym_noreturn] = ACTIONS(2853), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_constinit] = ACTIONS(2853), - [anon_sym_consteval] = ACTIONS(2853), + [469] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), [sym_primitive_type] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2853), - [anon_sym_decltype] = ACTIONS(2863), - [anon_sym_virtual] = ACTIONS(2853), - [anon_sym_alignas] = ACTIONS(2853), - [anon_sym_typename] = ACTIONS(2853), - [anon_sym_template] = ACTIONS(2866), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [398] = { - [sym_identifier] = ACTIONS(2869), - [aux_sym_preproc_include_token1] = ACTIONS(2869), - [aux_sym_preproc_def_token1] = ACTIONS(2869), - [aux_sym_preproc_if_token1] = ACTIONS(2869), - [aux_sym_preproc_if_token2] = ACTIONS(2869), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2869), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2869), - [aux_sym_preproc_else_token1] = ACTIONS(2869), - [aux_sym_preproc_elif_token1] = ACTIONS(2869), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2869), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2869), - [sym_preproc_directive] = ACTIONS(2869), - [anon_sym_LPAREN2] = ACTIONS(2871), - [anon_sym_BANG] = ACTIONS(2871), - [anon_sym_TILDE] = ACTIONS(2871), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2871), - [anon_sym_AMP_AMP] = ACTIONS(2871), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym___extension__] = ACTIONS(2869), - [anon_sym_typedef] = ACTIONS(2869), - [anon_sym_extern] = ACTIONS(2869), - [anon_sym___attribute__] = ACTIONS(2869), - [anon_sym_COLON_COLON] = ACTIONS(2871), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2871), - [anon_sym___declspec] = ACTIONS(2869), - [anon_sym___based] = ACTIONS(2869), - [anon_sym___cdecl] = ACTIONS(2869), - [anon_sym___clrcall] = ACTIONS(2869), - [anon_sym___stdcall] = ACTIONS(2869), - [anon_sym___fastcall] = ACTIONS(2869), - [anon_sym___thiscall] = ACTIONS(2869), - [anon_sym___vectorcall] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_signed] = ACTIONS(2869), - [anon_sym_unsigned] = ACTIONS(2869), - [anon_sym_long] = ACTIONS(2869), - [anon_sym_short] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_static] = ACTIONS(2869), - [anon_sym_register] = ACTIONS(2869), - [anon_sym_inline] = ACTIONS(2869), - [anon_sym___inline] = ACTIONS(2869), - [anon_sym___inline__] = ACTIONS(2869), - [anon_sym___forceinline] = ACTIONS(2869), - [anon_sym_thread_local] = ACTIONS(2869), - [anon_sym___thread] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2869), - [anon_sym_constexpr] = ACTIONS(2869), - [anon_sym_volatile] = ACTIONS(2869), - [anon_sym_restrict] = ACTIONS(2869), - [anon_sym___restrict__] = ACTIONS(2869), - [anon_sym__Atomic] = ACTIONS(2869), - [anon_sym__Noreturn] = ACTIONS(2869), - [anon_sym_noreturn] = ACTIONS(2869), - [anon_sym_mutable] = ACTIONS(2869), - [anon_sym_constinit] = ACTIONS(2869), - [anon_sym_consteval] = ACTIONS(2869), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2869), - [anon_sym_class] = ACTIONS(2869), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_union] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_else] = ACTIONS(2869), - [anon_sym_switch] = ACTIONS(2869), - [anon_sym_case] = ACTIONS(2869), - [anon_sym_default] = ACTIONS(2869), - [anon_sym_while] = ACTIONS(2869), - [anon_sym_do] = ACTIONS(2869), - [anon_sym_for] = ACTIONS(2869), - [anon_sym_return] = ACTIONS(2869), - [anon_sym_break] = ACTIONS(2869), - [anon_sym_continue] = ACTIONS(2869), - [anon_sym_goto] = ACTIONS(2869), - [anon_sym_not] = ACTIONS(2869), - [anon_sym_compl] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2871), - [anon_sym_PLUS_PLUS] = ACTIONS(2871), - [anon_sym_sizeof] = ACTIONS(2869), - [anon_sym___alignof__] = ACTIONS(2869), - [anon_sym___alignof] = ACTIONS(2869), - [anon_sym__alignof] = ACTIONS(2869), - [anon_sym_alignof] = ACTIONS(2869), - [anon_sym__Alignof] = ACTIONS(2869), - [anon_sym_offsetof] = ACTIONS(2869), - [anon_sym__Generic] = ACTIONS(2869), - [anon_sym_asm] = ACTIONS(2869), - [anon_sym___asm__] = ACTIONS(2869), - [sym_number_literal] = ACTIONS(2871), - [anon_sym_L_SQUOTE] = ACTIONS(2871), - [anon_sym_u_SQUOTE] = ACTIONS(2871), - [anon_sym_U_SQUOTE] = ACTIONS(2871), - [anon_sym_u8_SQUOTE] = ACTIONS(2871), - [anon_sym_SQUOTE] = ACTIONS(2871), - [anon_sym_L_DQUOTE] = ACTIONS(2871), - [anon_sym_u_DQUOTE] = ACTIONS(2871), - [anon_sym_U_DQUOTE] = ACTIONS(2871), - [anon_sym_u8_DQUOTE] = ACTIONS(2871), - [anon_sym_DQUOTE] = ACTIONS(2871), - [sym_true] = ACTIONS(2869), - [sym_false] = ACTIONS(2869), - [anon_sym_NULL] = ACTIONS(2869), - [anon_sym_nullptr] = ACTIONS(2869), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2869), - [anon_sym_decltype] = ACTIONS(2869), - [anon_sym_virtual] = ACTIONS(2869), - [anon_sym_alignas] = ACTIONS(2869), - [anon_sym_explicit] = ACTIONS(2869), - [anon_sym_typename] = ACTIONS(2869), - [anon_sym_template] = ACTIONS(2869), - [anon_sym_operator] = ACTIONS(2869), - [anon_sym_try] = ACTIONS(2869), - [anon_sym_delete] = ACTIONS(2869), - [anon_sym_throw] = ACTIONS(2869), - [anon_sym_namespace] = ACTIONS(2869), - [anon_sym_using] = ACTIONS(2869), - [anon_sym_static_assert] = ACTIONS(2869), - [anon_sym_concept] = ACTIONS(2869), - [anon_sym_co_return] = ACTIONS(2869), - [anon_sym_co_yield] = ACTIONS(2869), - [anon_sym_R_DQUOTE] = ACTIONS(2871), - [anon_sym_LR_DQUOTE] = ACTIONS(2871), - [anon_sym_uR_DQUOTE] = ACTIONS(2871), - [anon_sym_UR_DQUOTE] = ACTIONS(2871), - [anon_sym_u8R_DQUOTE] = ACTIONS(2871), - [anon_sym_co_await] = ACTIONS(2869), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2869), - [sym_this] = ACTIONS(2869), + [470] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [399] = { - [sym_identifier] = ACTIONS(2873), - [aux_sym_preproc_include_token1] = ACTIONS(2873), - [aux_sym_preproc_def_token1] = ACTIONS(2873), - [aux_sym_preproc_if_token1] = ACTIONS(2873), - [aux_sym_preproc_if_token2] = ACTIONS(2873), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2873), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2873), - [aux_sym_preproc_else_token1] = ACTIONS(2873), - [aux_sym_preproc_elif_token1] = ACTIONS(2873), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2873), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2873), - [sym_preproc_directive] = ACTIONS(2873), - [anon_sym_LPAREN2] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2875), - [anon_sym_TILDE] = ACTIONS(2875), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_STAR] = ACTIONS(2875), - [anon_sym_AMP_AMP] = ACTIONS(2875), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym___extension__] = ACTIONS(2873), - [anon_sym_typedef] = ACTIONS(2873), - [anon_sym_extern] = ACTIONS(2873), - [anon_sym___attribute__] = ACTIONS(2873), - [anon_sym_COLON_COLON] = ACTIONS(2875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2875), - [anon_sym___declspec] = ACTIONS(2873), - [anon_sym___based] = ACTIONS(2873), - [anon_sym___cdecl] = ACTIONS(2873), - [anon_sym___clrcall] = ACTIONS(2873), - [anon_sym___stdcall] = ACTIONS(2873), - [anon_sym___fastcall] = ACTIONS(2873), - [anon_sym___thiscall] = ACTIONS(2873), - [anon_sym___vectorcall] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2875), - [anon_sym_signed] = ACTIONS(2873), - [anon_sym_unsigned] = ACTIONS(2873), - [anon_sym_long] = ACTIONS(2873), - [anon_sym_short] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_register] = ACTIONS(2873), - [anon_sym_inline] = ACTIONS(2873), - [anon_sym___inline] = ACTIONS(2873), - [anon_sym___inline__] = ACTIONS(2873), - [anon_sym___forceinline] = ACTIONS(2873), - [anon_sym_thread_local] = ACTIONS(2873), - [anon_sym___thread] = ACTIONS(2873), - [anon_sym_const] = ACTIONS(2873), - [anon_sym_constexpr] = ACTIONS(2873), - [anon_sym_volatile] = ACTIONS(2873), - [anon_sym_restrict] = ACTIONS(2873), - [anon_sym___restrict__] = ACTIONS(2873), - [anon_sym__Atomic] = ACTIONS(2873), - [anon_sym__Noreturn] = ACTIONS(2873), - [anon_sym_noreturn] = ACTIONS(2873), - [anon_sym_mutable] = ACTIONS(2873), - [anon_sym_constinit] = ACTIONS(2873), - [anon_sym_consteval] = ACTIONS(2873), - [sym_primitive_type] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2873), - [anon_sym_union] = ACTIONS(2873), - [anon_sym_if] = ACTIONS(2873), - [anon_sym_else] = ACTIONS(2873), - [anon_sym_switch] = ACTIONS(2873), - [anon_sym_case] = ACTIONS(2873), - [anon_sym_default] = ACTIONS(2873), - [anon_sym_while] = ACTIONS(2873), - [anon_sym_do] = ACTIONS(2873), - [anon_sym_for] = ACTIONS(2873), - [anon_sym_return] = ACTIONS(2873), - [anon_sym_break] = ACTIONS(2873), - [anon_sym_continue] = ACTIONS(2873), - [anon_sym_goto] = ACTIONS(2873), - [anon_sym_not] = ACTIONS(2873), - [anon_sym_compl] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2875), - [anon_sym_PLUS_PLUS] = ACTIONS(2875), - [anon_sym_sizeof] = ACTIONS(2873), - [anon_sym___alignof__] = ACTIONS(2873), - [anon_sym___alignof] = ACTIONS(2873), - [anon_sym__alignof] = ACTIONS(2873), - [anon_sym_alignof] = ACTIONS(2873), - [anon_sym__Alignof] = ACTIONS(2873), - [anon_sym_offsetof] = ACTIONS(2873), - [anon_sym__Generic] = ACTIONS(2873), - [anon_sym_asm] = ACTIONS(2873), - [anon_sym___asm__] = ACTIONS(2873), - [sym_number_literal] = ACTIONS(2875), - [anon_sym_L_SQUOTE] = ACTIONS(2875), - [anon_sym_u_SQUOTE] = ACTIONS(2875), - [anon_sym_U_SQUOTE] = ACTIONS(2875), - [anon_sym_u8_SQUOTE] = ACTIONS(2875), - [anon_sym_SQUOTE] = ACTIONS(2875), - [anon_sym_L_DQUOTE] = ACTIONS(2875), - [anon_sym_u_DQUOTE] = ACTIONS(2875), - [anon_sym_U_DQUOTE] = ACTIONS(2875), - [anon_sym_u8_DQUOTE] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [sym_true] = ACTIONS(2873), - [sym_false] = ACTIONS(2873), - [anon_sym_NULL] = ACTIONS(2873), - [anon_sym_nullptr] = ACTIONS(2873), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2873), - [anon_sym_decltype] = ACTIONS(2873), - [anon_sym_virtual] = ACTIONS(2873), - [anon_sym_alignas] = ACTIONS(2873), - [anon_sym_explicit] = ACTIONS(2873), - [anon_sym_typename] = ACTIONS(2873), - [anon_sym_template] = ACTIONS(2873), - [anon_sym_operator] = ACTIONS(2873), - [anon_sym_try] = ACTIONS(2873), - [anon_sym_delete] = ACTIONS(2873), - [anon_sym_throw] = ACTIONS(2873), - [anon_sym_namespace] = ACTIONS(2873), - [anon_sym_using] = ACTIONS(2873), - [anon_sym_static_assert] = ACTIONS(2873), - [anon_sym_concept] = ACTIONS(2873), - [anon_sym_co_return] = ACTIONS(2873), - [anon_sym_co_yield] = ACTIONS(2873), - [anon_sym_R_DQUOTE] = ACTIONS(2875), - [anon_sym_LR_DQUOTE] = ACTIONS(2875), - [anon_sym_uR_DQUOTE] = ACTIONS(2875), - [anon_sym_UR_DQUOTE] = ACTIONS(2875), - [anon_sym_u8R_DQUOTE] = ACTIONS(2875), - [anon_sym_co_await] = ACTIONS(2873), - [anon_sym_new] = ACTIONS(2873), - [anon_sym_requires] = ACTIONS(2873), - [sym_this] = ACTIONS(2873), + [471] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [400] = { - [sym__expression] = STATE(5193), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9327), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2848), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(2877), - [anon_sym___extension__] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym___attribute__] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2855), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), - [anon_sym___declspec] = ACTIONS(2853), - [anon_sym_signed] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym___inline] = ACTIONS(2853), - [anon_sym___inline__] = ACTIONS(2853), - [anon_sym___forceinline] = ACTIONS(2853), - [anon_sym_thread_local] = ACTIONS(2853), - [anon_sym___thread] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_constexpr] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym___restrict__] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym__Noreturn] = ACTIONS(2853), - [anon_sym_noreturn] = ACTIONS(2853), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_constinit] = ACTIONS(2853), - [anon_sym_consteval] = ACTIONS(2853), + [472] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), [sym_primitive_type] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2853), - [anon_sym_decltype] = ACTIONS(2863), - [anon_sym_virtual] = ACTIONS(2853), - [anon_sym_alignas] = ACTIONS(2853), - [anon_sym_typename] = ACTIONS(2853), - [anon_sym_template] = ACTIONS(2866), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [401] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [473] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [402] = { - [sym__expression] = STATE(5038), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9003), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2848), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(2879), - [anon_sym___extension__] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym___attribute__] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2855), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), - [anon_sym___declspec] = ACTIONS(2853), - [anon_sym_signed] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym___inline] = ACTIONS(2853), - [anon_sym___inline__] = ACTIONS(2853), - [anon_sym___forceinline] = ACTIONS(2853), - [anon_sym_thread_local] = ACTIONS(2853), - [anon_sym___thread] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_constexpr] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym___restrict__] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym__Noreturn] = ACTIONS(2853), - [anon_sym_noreturn] = ACTIONS(2853), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_constinit] = ACTIONS(2853), - [anon_sym_consteval] = ACTIONS(2853), + [474] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), [sym_primitive_type] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2853), - [anon_sym_decltype] = ACTIONS(2863), - [anon_sym_virtual] = ACTIONS(2853), - [anon_sym_alignas] = ACTIONS(2853), - [anon_sym_typename] = ACTIONS(2853), - [anon_sym_template] = ACTIONS(2866), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [403] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [475] = { + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_unaligned_ptr_modifier] = STATE(4768), + [sym_ms_pointer_modifier] = STATE(3249), + [sym__declarator] = STATE(5852), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5742), + [sym_array_declarator] = STATE(5742), + [sym_type_qualifier] = STATE(3801), + [sym__expression] = STATE(2914), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3108), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5222), + [sym_qualified_identifier] = STATE(3111), + [sym_qualified_type_identifier] = STATE(7063), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3267), + [aux_sym__type_definition_type_repeat1] = STATE(3801), + [aux_sym_pointer_declarator_repeat1] = STATE(3249), + [sym_identifier] = ACTIONS(3403), + [anon_sym_LPAREN2] = ACTIONS(3405), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(3407), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym___extension__] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym___based] = ACTIONS(47), + [sym_ms_restrict_modifier] = ACTIONS(3265), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3265), + [sym_ms_signed_ptr_modifier] = ACTIONS(3265), + [anon_sym__unaligned] = ACTIONS(3267), + [anon_sym___unaligned] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(1982), + [anon_sym_const] = ACTIONS(3263), + [anon_sym_constexpr] = ACTIONS(3263), + [anon_sym_volatile] = ACTIONS(3263), + [anon_sym_restrict] = ACTIONS(3263), + [anon_sym___restrict__] = ACTIONS(3263), + [anon_sym__Atomic] = ACTIONS(3263), + [anon_sym__Noreturn] = ACTIONS(3263), + [anon_sym_noreturn] = ACTIONS(3263), + [anon_sym_mutable] = ACTIONS(3263), + [anon_sym_constinit] = ACTIONS(3263), + [anon_sym_consteval] = ACTIONS(3263), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_operator] = ACTIONS(2000), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, - [404] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [476] = { + [sym_identifier] = ACTIONS(2852), + [aux_sym_preproc_include_token1] = ACTIONS(2852), + [aux_sym_preproc_def_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token2] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2852), + [aux_sym_preproc_else_token1] = ACTIONS(2852), + [aux_sym_preproc_elif_token1] = ACTIONS(2852), + [sym_preproc_directive] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym___extension__] = ACTIONS(2852), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym___attribute__] = ACTIONS(2852), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2854), + [anon_sym___declspec] = ACTIONS(2852), + [anon_sym___based] = ACTIONS(2852), + [anon_sym___cdecl] = ACTIONS(2852), + [anon_sym___clrcall] = ACTIONS(2852), + [anon_sym___stdcall] = ACTIONS(2852), + [anon_sym___fastcall] = ACTIONS(2852), + [anon_sym___thiscall] = ACTIONS(2852), + [anon_sym___vectorcall] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_signed] = ACTIONS(2852), + [anon_sym_unsigned] = ACTIONS(2852), + [anon_sym_long] = ACTIONS(2852), + [anon_sym_short] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_register] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym___inline] = ACTIONS(2852), + [anon_sym___inline__] = ACTIONS(2852), + [anon_sym___forceinline] = ACTIONS(2852), + [anon_sym_thread_local] = ACTIONS(2852), + [anon_sym___thread] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_constexpr] = ACTIONS(2852), + [anon_sym_volatile] = ACTIONS(2852), + [anon_sym_restrict] = ACTIONS(2852), + [anon_sym___restrict__] = ACTIONS(2852), + [anon_sym__Atomic] = ACTIONS(2852), + [anon_sym__Noreturn] = ACTIONS(2852), + [anon_sym_noreturn] = ACTIONS(2852), + [anon_sym_mutable] = ACTIONS(2852), + [anon_sym_constinit] = ACTIONS(2852), + [anon_sym_consteval] = ACTIONS(2852), + [sym_primitive_type] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_class] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_else] = ACTIONS(2852), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_goto] = ACTIONS(2852), + [anon_sym_not] = ACTIONS(2852), + [anon_sym_compl] = ACTIONS(2852), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_sizeof] = ACTIONS(2852), + [anon_sym___alignof__] = ACTIONS(2852), + [anon_sym___alignof] = ACTIONS(2852), + [anon_sym__alignof] = ACTIONS(2852), + [anon_sym_alignof] = ACTIONS(2852), + [anon_sym__Alignof] = ACTIONS(2852), + [anon_sym_offsetof] = ACTIONS(2852), + [anon_sym__Generic] = ACTIONS(2852), + [anon_sym_asm] = ACTIONS(2852), + [anon_sym___asm__] = ACTIONS(2852), + [sym_number_literal] = ACTIONS(2854), + [anon_sym_L_SQUOTE] = ACTIONS(2854), + [anon_sym_u_SQUOTE] = ACTIONS(2854), + [anon_sym_U_SQUOTE] = ACTIONS(2854), + [anon_sym_u8_SQUOTE] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_L_DQUOTE] = ACTIONS(2854), + [anon_sym_u_DQUOTE] = ACTIONS(2854), + [anon_sym_U_DQUOTE] = ACTIONS(2854), + [anon_sym_u8_DQUOTE] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [sym_true] = ACTIONS(2852), + [sym_false] = ACTIONS(2852), + [anon_sym_NULL] = ACTIONS(2852), + [anon_sym_nullptr] = ACTIONS(2852), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2852), + [anon_sym_decltype] = ACTIONS(2852), + [anon_sym_virtual] = ACTIONS(2852), + [anon_sym_alignas] = ACTIONS(2852), + [anon_sym_explicit] = ACTIONS(2852), + [anon_sym_typename] = ACTIONS(2852), + [anon_sym_template] = ACTIONS(2852), + [anon_sym_operator] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_delete] = ACTIONS(2852), + [anon_sym_throw] = ACTIONS(2852), + [anon_sym_namespace] = ACTIONS(2852), + [anon_sym_using] = ACTIONS(2852), + [anon_sym_static_assert] = ACTIONS(2852), + [anon_sym_concept] = ACTIONS(2852), + [anon_sym_co_return] = ACTIONS(2852), + [anon_sym_co_yield] = ACTIONS(2852), + [anon_sym_R_DQUOTE] = ACTIONS(2854), + [anon_sym_LR_DQUOTE] = ACTIONS(2854), + [anon_sym_uR_DQUOTE] = ACTIONS(2854), + [anon_sym_UR_DQUOTE] = ACTIONS(2854), + [anon_sym_u8R_DQUOTE] = ACTIONS(2854), + [anon_sym_co_await] = ACTIONS(2852), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_requires] = ACTIONS(2852), + [sym_this] = ACTIONS(2852), }, - [405] = { - [sym_identifier] = ACTIONS(2853), - [aux_sym_preproc_include_token1] = ACTIONS(2853), - [aux_sym_preproc_def_token1] = ACTIONS(2853), - [aux_sym_preproc_if_token1] = ACTIONS(2853), - [aux_sym_preproc_if_token2] = ACTIONS(2853), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2853), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2853), - [aux_sym_preproc_else_token1] = ACTIONS(2853), - [aux_sym_preproc_elif_token1] = ACTIONS(2853), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2853), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2853), - [sym_preproc_directive] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym___extension__] = ACTIONS(2853), - [anon_sym_typedef] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym___attribute__] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2858), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), - [anon_sym___declspec] = ACTIONS(2853), - [anon_sym___based] = ACTIONS(2853), - [anon_sym___cdecl] = ACTIONS(2853), - [anon_sym___clrcall] = ACTIONS(2853), - [anon_sym___stdcall] = ACTIONS(2853), - [anon_sym___fastcall] = ACTIONS(2853), - [anon_sym___thiscall] = ACTIONS(2853), - [anon_sym___vectorcall] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_signed] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym___inline] = ACTIONS(2853), - [anon_sym___inline__] = ACTIONS(2853), - [anon_sym___forceinline] = ACTIONS(2853), - [anon_sym_thread_local] = ACTIONS(2853), - [anon_sym___thread] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_constexpr] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym___restrict__] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym__Noreturn] = ACTIONS(2853), - [anon_sym_noreturn] = ACTIONS(2853), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_constinit] = ACTIONS(2853), - [anon_sym_consteval] = ACTIONS(2853), - [sym_primitive_type] = ACTIONS(2853), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_else] = ACTIONS(2853), - [anon_sym_switch] = ACTIONS(2853), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_default] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_do] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_goto] = ACTIONS(2853), - [anon_sym_not] = ACTIONS(2853), - [anon_sym_compl] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_sizeof] = ACTIONS(2853), - [anon_sym___alignof__] = ACTIONS(2853), - [anon_sym___alignof] = ACTIONS(2853), - [anon_sym__alignof] = ACTIONS(2853), - [anon_sym_alignof] = ACTIONS(2853), - [anon_sym__Alignof] = ACTIONS(2853), - [anon_sym_offsetof] = ACTIONS(2853), - [anon_sym__Generic] = ACTIONS(2853), - [anon_sym_asm] = ACTIONS(2853), - [anon_sym___asm__] = ACTIONS(2853), - [sym_number_literal] = ACTIONS(2858), - [anon_sym_L_SQUOTE] = ACTIONS(2858), - [anon_sym_u_SQUOTE] = ACTIONS(2858), - [anon_sym_U_SQUOTE] = ACTIONS(2858), - [anon_sym_u8_SQUOTE] = ACTIONS(2858), - [anon_sym_SQUOTE] = ACTIONS(2858), - [anon_sym_L_DQUOTE] = ACTIONS(2858), - [anon_sym_u_DQUOTE] = ACTIONS(2858), - [anon_sym_U_DQUOTE] = ACTIONS(2858), - [anon_sym_u8_DQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [sym_true] = ACTIONS(2853), - [sym_false] = ACTIONS(2853), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2853), - [anon_sym_decltype] = ACTIONS(2853), - [anon_sym_virtual] = ACTIONS(2853), - [anon_sym_alignas] = ACTIONS(2853), - [anon_sym_explicit] = ACTIONS(2853), - [anon_sym_typename] = ACTIONS(2853), - [anon_sym_template] = ACTIONS(2853), - [anon_sym_operator] = ACTIONS(2853), - [anon_sym_try] = ACTIONS(2853), - [anon_sym_delete] = ACTIONS(2853), - [anon_sym_throw] = ACTIONS(2853), - [anon_sym_namespace] = ACTIONS(2853), - [anon_sym_using] = ACTIONS(2853), - [anon_sym_static_assert] = ACTIONS(2853), - [anon_sym_concept] = ACTIONS(2853), - [anon_sym_co_return] = ACTIONS(2853), - [anon_sym_co_yield] = ACTIONS(2853), - [anon_sym_R_DQUOTE] = ACTIONS(2858), - [anon_sym_LR_DQUOTE] = ACTIONS(2858), - [anon_sym_uR_DQUOTE] = ACTIONS(2858), - [anon_sym_UR_DQUOTE] = ACTIONS(2858), - [anon_sym_u8R_DQUOTE] = ACTIONS(2858), - [anon_sym_co_await] = ACTIONS(2853), - [anon_sym_new] = ACTIONS(2853), - [anon_sym_requires] = ACTIONS(2853), - [sym_this] = ACTIONS(2853), + [477] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [406] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [478] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - }, - [407] = { - [sym_identifier] = ACTIONS(2881), - [aux_sym_preproc_include_token1] = ACTIONS(2881), - [aux_sym_preproc_def_token1] = ACTIONS(2881), - [aux_sym_preproc_if_token1] = ACTIONS(2881), - [aux_sym_preproc_if_token2] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2881), - [aux_sym_preproc_else_token1] = ACTIONS(2881), - [aux_sym_preproc_elif_token1] = ACTIONS(2881), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2881), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2881), - [sym_preproc_directive] = ACTIONS(2881), - [anon_sym_LPAREN2] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2881), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym___extension__] = ACTIONS(2881), - [anon_sym_typedef] = ACTIONS(2881), - [anon_sym_extern] = ACTIONS(2881), - [anon_sym___attribute__] = ACTIONS(2881), - [anon_sym_COLON_COLON] = ACTIONS(2883), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2883), - [anon_sym___declspec] = ACTIONS(2881), - [anon_sym___based] = ACTIONS(2881), - [anon_sym___cdecl] = ACTIONS(2881), - [anon_sym___clrcall] = ACTIONS(2881), - [anon_sym___stdcall] = ACTIONS(2881), - [anon_sym___fastcall] = ACTIONS(2881), - [anon_sym___thiscall] = ACTIONS(2881), - [anon_sym___vectorcall] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_signed] = ACTIONS(2881), - [anon_sym_unsigned] = ACTIONS(2881), - [anon_sym_long] = ACTIONS(2881), - [anon_sym_short] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_register] = ACTIONS(2881), - [anon_sym_inline] = ACTIONS(2881), - [anon_sym___inline] = ACTIONS(2881), - [anon_sym___inline__] = ACTIONS(2881), - [anon_sym___forceinline] = ACTIONS(2881), - [anon_sym_thread_local] = ACTIONS(2881), - [anon_sym___thread] = ACTIONS(2881), - [anon_sym_const] = ACTIONS(2881), - [anon_sym_constexpr] = ACTIONS(2881), - [anon_sym_volatile] = ACTIONS(2881), - [anon_sym_restrict] = ACTIONS(2881), - [anon_sym___restrict__] = ACTIONS(2881), - [anon_sym__Atomic] = ACTIONS(2881), - [anon_sym__Noreturn] = ACTIONS(2881), - [anon_sym_noreturn] = ACTIONS(2881), - [anon_sym_mutable] = ACTIONS(2881), - [anon_sym_constinit] = ACTIONS(2881), - [anon_sym_consteval] = ACTIONS(2881), - [sym_primitive_type] = ACTIONS(2881), - [anon_sym_enum] = ACTIONS(2881), - [anon_sym_class] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2881), - [anon_sym_union] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2881), - [anon_sym_else] = ACTIONS(2881), - [anon_sym_switch] = ACTIONS(2881), - [anon_sym_case] = ACTIONS(2881), - [anon_sym_default] = ACTIONS(2881), - [anon_sym_while] = ACTIONS(2881), - [anon_sym_do] = ACTIONS(2881), - [anon_sym_for] = ACTIONS(2881), - [anon_sym_return] = ACTIONS(2881), - [anon_sym_break] = ACTIONS(2881), - [anon_sym_continue] = ACTIONS(2881), - [anon_sym_goto] = ACTIONS(2881), - [anon_sym_not] = ACTIONS(2881), - [anon_sym_compl] = ACTIONS(2881), - [anon_sym_DASH_DASH] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_sizeof] = ACTIONS(2881), - [anon_sym___alignof__] = ACTIONS(2881), - [anon_sym___alignof] = ACTIONS(2881), - [anon_sym__alignof] = ACTIONS(2881), - [anon_sym_alignof] = ACTIONS(2881), - [anon_sym__Alignof] = ACTIONS(2881), - [anon_sym_offsetof] = ACTIONS(2881), - [anon_sym__Generic] = ACTIONS(2881), - [anon_sym_asm] = ACTIONS(2881), - [anon_sym___asm__] = ACTIONS(2881), - [sym_number_literal] = ACTIONS(2883), - [anon_sym_L_SQUOTE] = ACTIONS(2883), - [anon_sym_u_SQUOTE] = ACTIONS(2883), - [anon_sym_U_SQUOTE] = ACTIONS(2883), - [anon_sym_u8_SQUOTE] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2883), - [anon_sym_L_DQUOTE] = ACTIONS(2883), - [anon_sym_u_DQUOTE] = ACTIONS(2883), - [anon_sym_U_DQUOTE] = ACTIONS(2883), - [anon_sym_u8_DQUOTE] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [sym_true] = ACTIONS(2881), - [sym_false] = ACTIONS(2881), - [anon_sym_NULL] = ACTIONS(2881), - [anon_sym_nullptr] = ACTIONS(2881), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2881), - [anon_sym_decltype] = ACTIONS(2881), - [anon_sym_virtual] = ACTIONS(2881), - [anon_sym_alignas] = ACTIONS(2881), - [anon_sym_explicit] = ACTIONS(2881), - [anon_sym_typename] = ACTIONS(2881), - [anon_sym_template] = ACTIONS(2881), - [anon_sym_operator] = ACTIONS(2881), - [anon_sym_try] = ACTIONS(2881), - [anon_sym_delete] = ACTIONS(2881), - [anon_sym_throw] = ACTIONS(2881), - [anon_sym_namespace] = ACTIONS(2881), - [anon_sym_using] = ACTIONS(2881), - [anon_sym_static_assert] = ACTIONS(2881), - [anon_sym_concept] = ACTIONS(2881), - [anon_sym_co_return] = ACTIONS(2881), - [anon_sym_co_yield] = ACTIONS(2881), - [anon_sym_R_DQUOTE] = ACTIONS(2883), - [anon_sym_LR_DQUOTE] = ACTIONS(2883), - [anon_sym_uR_DQUOTE] = ACTIONS(2883), - [anon_sym_UR_DQUOTE] = ACTIONS(2883), - [anon_sym_u8R_DQUOTE] = ACTIONS(2883), - [anon_sym_co_await] = ACTIONS(2881), - [anon_sym_new] = ACTIONS(2881), - [anon_sym_requires] = ACTIONS(2881), - [sym_this] = ACTIONS(2881), - }, - [408] = { - [sym_identifier] = ACTIONS(2885), - [aux_sym_preproc_include_token1] = ACTIONS(2885), - [aux_sym_preproc_def_token1] = ACTIONS(2885), - [aux_sym_preproc_if_token1] = ACTIONS(2885), - [aux_sym_preproc_if_token2] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2885), - [aux_sym_preproc_else_token1] = ACTIONS(2885), - [aux_sym_preproc_elif_token1] = ACTIONS(2885), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2885), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2885), - [sym_preproc_directive] = ACTIONS(2885), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym___extension__] = ACTIONS(2885), - [anon_sym_typedef] = ACTIONS(2885), - [anon_sym_extern] = ACTIONS(2885), - [anon_sym___attribute__] = ACTIONS(2885), - [anon_sym_COLON_COLON] = ACTIONS(2887), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2887), - [anon_sym___declspec] = ACTIONS(2885), - [anon_sym___based] = ACTIONS(2885), - [anon_sym___cdecl] = ACTIONS(2885), - [anon_sym___clrcall] = ACTIONS(2885), - [anon_sym___stdcall] = ACTIONS(2885), - [anon_sym___fastcall] = ACTIONS(2885), - [anon_sym___thiscall] = ACTIONS(2885), - [anon_sym___vectorcall] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_signed] = ACTIONS(2885), - [anon_sym_unsigned] = ACTIONS(2885), - [anon_sym_long] = ACTIONS(2885), - [anon_sym_short] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_register] = ACTIONS(2885), - [anon_sym_inline] = ACTIONS(2885), - [anon_sym___inline] = ACTIONS(2885), - [anon_sym___inline__] = ACTIONS(2885), - [anon_sym___forceinline] = ACTIONS(2885), - [anon_sym_thread_local] = ACTIONS(2885), - [anon_sym___thread] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_constexpr] = ACTIONS(2885), - [anon_sym_volatile] = ACTIONS(2885), - [anon_sym_restrict] = ACTIONS(2885), - [anon_sym___restrict__] = ACTIONS(2885), - [anon_sym__Atomic] = ACTIONS(2885), - [anon_sym__Noreturn] = ACTIONS(2885), - [anon_sym_noreturn] = ACTIONS(2885), - [anon_sym_mutable] = ACTIONS(2885), - [anon_sym_constinit] = ACTIONS(2885), - [anon_sym_consteval] = ACTIONS(2885), - [sym_primitive_type] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_union] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_else] = ACTIONS(2885), - [anon_sym_switch] = ACTIONS(2885), - [anon_sym_case] = ACTIONS(2885), - [anon_sym_default] = ACTIONS(2885), - [anon_sym_while] = ACTIONS(2885), - [anon_sym_do] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_goto] = ACTIONS(2885), - [anon_sym_not] = ACTIONS(2885), - [anon_sym_compl] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_sizeof] = ACTIONS(2885), - [anon_sym___alignof__] = ACTIONS(2885), - [anon_sym___alignof] = ACTIONS(2885), - [anon_sym__alignof] = ACTIONS(2885), - [anon_sym_alignof] = ACTIONS(2885), - [anon_sym__Alignof] = ACTIONS(2885), - [anon_sym_offsetof] = ACTIONS(2885), - [anon_sym__Generic] = ACTIONS(2885), - [anon_sym_asm] = ACTIONS(2885), - [anon_sym___asm__] = ACTIONS(2885), - [sym_number_literal] = ACTIONS(2887), - [anon_sym_L_SQUOTE] = ACTIONS(2887), - [anon_sym_u_SQUOTE] = ACTIONS(2887), - [anon_sym_U_SQUOTE] = ACTIONS(2887), - [anon_sym_u8_SQUOTE] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_L_DQUOTE] = ACTIONS(2887), - [anon_sym_u_DQUOTE] = ACTIONS(2887), - [anon_sym_U_DQUOTE] = ACTIONS(2887), - [anon_sym_u8_DQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [sym_true] = ACTIONS(2885), - [sym_false] = ACTIONS(2885), - [anon_sym_NULL] = ACTIONS(2885), - [anon_sym_nullptr] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2885), - [anon_sym_decltype] = ACTIONS(2885), - [anon_sym_virtual] = ACTIONS(2885), - [anon_sym_alignas] = ACTIONS(2885), - [anon_sym_explicit] = ACTIONS(2885), - [anon_sym_typename] = ACTIONS(2885), - [anon_sym_template] = ACTIONS(2885), - [anon_sym_operator] = ACTIONS(2885), - [anon_sym_try] = ACTIONS(2885), - [anon_sym_delete] = ACTIONS(2885), - [anon_sym_throw] = ACTIONS(2885), - [anon_sym_namespace] = ACTIONS(2885), - [anon_sym_using] = ACTIONS(2885), - [anon_sym_static_assert] = ACTIONS(2885), - [anon_sym_concept] = ACTIONS(2885), - [anon_sym_co_return] = ACTIONS(2885), - [anon_sym_co_yield] = ACTIONS(2885), - [anon_sym_R_DQUOTE] = ACTIONS(2887), - [anon_sym_LR_DQUOTE] = ACTIONS(2887), - [anon_sym_uR_DQUOTE] = ACTIONS(2887), - [anon_sym_UR_DQUOTE] = ACTIONS(2887), - [anon_sym_u8R_DQUOTE] = ACTIONS(2887), - [anon_sym_co_await] = ACTIONS(2885), - [anon_sym_new] = ACTIONS(2885), - [anon_sym_requires] = ACTIONS(2885), - [sym_this] = ACTIONS(2885), - }, - [409] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_include_token1] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2889), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token2] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [aux_sym_preproc_else_token1] = ACTIONS(2194), - [aux_sym_preproc_elif_token1] = ACTIONS(2194), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym___cdecl] = ACTIONS(2194), - [anon_sym___clrcall] = ACTIONS(2194), - [anon_sym___stdcall] = ACTIONS(2194), - [anon_sym___fastcall] = ACTIONS(2194), - [anon_sym___thiscall] = ACTIONS(2194), - [anon_sym___vectorcall] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_goto] = ACTIONS(2194), - [anon_sym_not] = ACTIONS(2194), - [anon_sym_compl] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_sizeof] = ACTIONS(2194), - [anon_sym___alignof__] = ACTIONS(2194), - [anon_sym___alignof] = ACTIONS(2194), - [anon_sym__alignof] = ACTIONS(2194), - [anon_sym_alignof] = ACTIONS(2194), - [anon_sym__Alignof] = ACTIONS(2194), - [anon_sym_offsetof] = ACTIONS(2194), - [anon_sym__Generic] = ACTIONS(2194), - [anon_sym_asm] = ACTIONS(2194), - [anon_sym___asm__] = ACTIONS(2194), - [sym_number_literal] = ACTIONS(2192), - [anon_sym_L_SQUOTE] = ACTIONS(2192), - [anon_sym_u_SQUOTE] = ACTIONS(2192), - [anon_sym_U_SQUOTE] = ACTIONS(2192), - [anon_sym_u8_SQUOTE] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_L_DQUOTE] = ACTIONS(2192), - [anon_sym_u_DQUOTE] = ACTIONS(2192), - [anon_sym_U_DQUOTE] = ACTIONS(2192), - [anon_sym_u8_DQUOTE] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [anon_sym_NULL] = ACTIONS(2194), - [anon_sym_nullptr] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_delete] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - [anon_sym_concept] = ACTIONS(2194), - [anon_sym_co_return] = ACTIONS(2194), - [anon_sym_co_yield] = ACTIONS(2194), - [anon_sym_R_DQUOTE] = ACTIONS(2192), - [anon_sym_LR_DQUOTE] = ACTIONS(2192), - [anon_sym_uR_DQUOTE] = ACTIONS(2192), - [anon_sym_UR_DQUOTE] = ACTIONS(2192), - [anon_sym_u8R_DQUOTE] = ACTIONS(2192), - [anon_sym_co_await] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_requires] = ACTIONS(2194), - [sym_this] = ACTIONS(2194), - }, - [410] = { - [sym_identifier] = ACTIONS(2891), - [aux_sym_preproc_include_token1] = ACTIONS(2891), - [aux_sym_preproc_def_token1] = ACTIONS(2891), - [aux_sym_preproc_if_token1] = ACTIONS(2891), - [aux_sym_preproc_if_token2] = ACTIONS(2891), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2891), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2891), - [aux_sym_preproc_else_token1] = ACTIONS(2891), - [aux_sym_preproc_elif_token1] = ACTIONS(2891), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2891), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2891), - [sym_preproc_directive] = ACTIONS(2891), - [anon_sym_LPAREN2] = ACTIONS(2893), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_TILDE] = ACTIONS(2893), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2893), - [anon_sym_AMP_AMP] = ACTIONS(2893), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(2893), - [anon_sym___extension__] = ACTIONS(2891), - [anon_sym_typedef] = ACTIONS(2891), - [anon_sym_extern] = ACTIONS(2891), - [anon_sym___attribute__] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2893), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2893), - [anon_sym___declspec] = ACTIONS(2891), - [anon_sym___based] = ACTIONS(2891), - [anon_sym___cdecl] = ACTIONS(2891), - [anon_sym___clrcall] = ACTIONS(2891), - [anon_sym___stdcall] = ACTIONS(2891), - [anon_sym___fastcall] = ACTIONS(2891), - [anon_sym___thiscall] = ACTIONS(2891), - [anon_sym___vectorcall] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2893), - [anon_sym_signed] = ACTIONS(2891), - [anon_sym_unsigned] = ACTIONS(2891), - [anon_sym_long] = ACTIONS(2891), - [anon_sym_short] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2891), - [anon_sym_static] = ACTIONS(2891), - [anon_sym_register] = ACTIONS(2891), - [anon_sym_inline] = ACTIONS(2891), - [anon_sym___inline] = ACTIONS(2891), - [anon_sym___inline__] = ACTIONS(2891), - [anon_sym___forceinline] = ACTIONS(2891), - [anon_sym_thread_local] = ACTIONS(2891), - [anon_sym___thread] = ACTIONS(2891), - [anon_sym_const] = ACTIONS(2891), - [anon_sym_constexpr] = ACTIONS(2891), - [anon_sym_volatile] = ACTIONS(2891), - [anon_sym_restrict] = ACTIONS(2891), - [anon_sym___restrict__] = ACTIONS(2891), - [anon_sym__Atomic] = ACTIONS(2891), - [anon_sym__Noreturn] = ACTIONS(2891), - [anon_sym_noreturn] = ACTIONS(2891), - [anon_sym_mutable] = ACTIONS(2891), - [anon_sym_constinit] = ACTIONS(2891), - [anon_sym_consteval] = ACTIONS(2891), - [sym_primitive_type] = ACTIONS(2891), - [anon_sym_enum] = ACTIONS(2891), - [anon_sym_class] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_union] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_else] = ACTIONS(2891), - [anon_sym_switch] = ACTIONS(2891), - [anon_sym_case] = ACTIONS(2891), - [anon_sym_default] = ACTIONS(2891), - [anon_sym_while] = ACTIONS(2891), - [anon_sym_do] = ACTIONS(2891), - [anon_sym_for] = ACTIONS(2891), - [anon_sym_return] = ACTIONS(2891), - [anon_sym_break] = ACTIONS(2891), - [anon_sym_continue] = ACTIONS(2891), - [anon_sym_goto] = ACTIONS(2891), - [anon_sym_not] = ACTIONS(2891), - [anon_sym_compl] = ACTIONS(2891), - [anon_sym_DASH_DASH] = ACTIONS(2893), - [anon_sym_PLUS_PLUS] = ACTIONS(2893), - [anon_sym_sizeof] = ACTIONS(2891), - [anon_sym___alignof__] = ACTIONS(2891), - [anon_sym___alignof] = ACTIONS(2891), - [anon_sym__alignof] = ACTIONS(2891), - [anon_sym_alignof] = ACTIONS(2891), - [anon_sym__Alignof] = ACTIONS(2891), - [anon_sym_offsetof] = ACTIONS(2891), - [anon_sym__Generic] = ACTIONS(2891), - [anon_sym_asm] = ACTIONS(2891), - [anon_sym___asm__] = ACTIONS(2891), - [sym_number_literal] = ACTIONS(2893), - [anon_sym_L_SQUOTE] = ACTIONS(2893), - [anon_sym_u_SQUOTE] = ACTIONS(2893), - [anon_sym_U_SQUOTE] = ACTIONS(2893), - [anon_sym_u8_SQUOTE] = ACTIONS(2893), - [anon_sym_SQUOTE] = ACTIONS(2893), - [anon_sym_L_DQUOTE] = ACTIONS(2893), - [anon_sym_u_DQUOTE] = ACTIONS(2893), - [anon_sym_U_DQUOTE] = ACTIONS(2893), - [anon_sym_u8_DQUOTE] = ACTIONS(2893), - [anon_sym_DQUOTE] = ACTIONS(2893), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [anon_sym_NULL] = ACTIONS(2891), - [anon_sym_nullptr] = ACTIONS(2891), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2891), - [anon_sym_decltype] = ACTIONS(2891), - [anon_sym_virtual] = ACTIONS(2891), - [anon_sym_alignas] = ACTIONS(2891), - [anon_sym_explicit] = ACTIONS(2891), - [anon_sym_typename] = ACTIONS(2891), - [anon_sym_template] = ACTIONS(2891), - [anon_sym_operator] = ACTIONS(2891), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_delete] = ACTIONS(2891), - [anon_sym_throw] = ACTIONS(2891), - [anon_sym_namespace] = ACTIONS(2891), - [anon_sym_using] = ACTIONS(2891), - [anon_sym_static_assert] = ACTIONS(2891), - [anon_sym_concept] = ACTIONS(2891), - [anon_sym_co_return] = ACTIONS(2891), - [anon_sym_co_yield] = ACTIONS(2891), - [anon_sym_R_DQUOTE] = ACTIONS(2893), - [anon_sym_LR_DQUOTE] = ACTIONS(2893), - [anon_sym_uR_DQUOTE] = ACTIONS(2893), - [anon_sym_UR_DQUOTE] = ACTIONS(2893), - [anon_sym_u8R_DQUOTE] = ACTIONS(2893), - [anon_sym_co_await] = ACTIONS(2891), - [anon_sym_new] = ACTIONS(2891), - [anon_sym_requires] = ACTIONS(2891), - [sym_this] = ACTIONS(2891), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [411] = { - [sym__expression] = STATE(5081), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9280), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2848), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(2895), - [anon_sym___extension__] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym___attribute__] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2855), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), - [anon_sym___declspec] = ACTIONS(2853), - [anon_sym_signed] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym___inline] = ACTIONS(2853), - [anon_sym___inline__] = ACTIONS(2853), - [anon_sym___forceinline] = ACTIONS(2853), - [anon_sym_thread_local] = ACTIONS(2853), - [anon_sym___thread] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_constexpr] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym___restrict__] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym__Noreturn] = ACTIONS(2853), - [anon_sym_noreturn] = ACTIONS(2853), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_constinit] = ACTIONS(2853), - [anon_sym_consteval] = ACTIONS(2853), - [sym_primitive_type] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [479] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2853), - [anon_sym_decltype] = ACTIONS(2863), - [anon_sym_virtual] = ACTIONS(2853), - [anon_sym_alignas] = ACTIONS(2853), - [anon_sym_typename] = ACTIONS(2853), - [anon_sym_template] = ACTIONS(2866), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [412] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [480] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - }, - [413] = { - [sym_identifier] = ACTIONS(2897), - [aux_sym_preproc_include_token1] = ACTIONS(2897), - [aux_sym_preproc_def_token1] = ACTIONS(2897), - [aux_sym_preproc_if_token1] = ACTIONS(2897), - [aux_sym_preproc_if_token2] = ACTIONS(2897), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2897), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2897), - [aux_sym_preproc_else_token1] = ACTIONS(2897), - [aux_sym_preproc_elif_token1] = ACTIONS(2897), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2897), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2897), - [sym_preproc_directive] = ACTIONS(2897), - [anon_sym_LPAREN2] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym___extension__] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2897), - [anon_sym_extern] = ACTIONS(2897), - [anon_sym___attribute__] = ACTIONS(2897), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2899), - [anon_sym___declspec] = ACTIONS(2897), - [anon_sym___based] = ACTIONS(2897), - [anon_sym___cdecl] = ACTIONS(2897), - [anon_sym___clrcall] = ACTIONS(2897), - [anon_sym___stdcall] = ACTIONS(2897), - [anon_sym___fastcall] = ACTIONS(2897), - [anon_sym___thiscall] = ACTIONS(2897), - [anon_sym___vectorcall] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_signed] = ACTIONS(2897), - [anon_sym_unsigned] = ACTIONS(2897), - [anon_sym_long] = ACTIONS(2897), - [anon_sym_short] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_register] = ACTIONS(2897), - [anon_sym_inline] = ACTIONS(2897), - [anon_sym___inline] = ACTIONS(2897), - [anon_sym___inline__] = ACTIONS(2897), - [anon_sym___forceinline] = ACTIONS(2897), - [anon_sym_thread_local] = ACTIONS(2897), - [anon_sym___thread] = ACTIONS(2897), - [anon_sym_const] = ACTIONS(2897), - [anon_sym_constexpr] = ACTIONS(2897), - [anon_sym_volatile] = ACTIONS(2897), - [anon_sym_restrict] = ACTIONS(2897), - [anon_sym___restrict__] = ACTIONS(2897), - [anon_sym__Atomic] = ACTIONS(2897), - [anon_sym__Noreturn] = ACTIONS(2897), - [anon_sym_noreturn] = ACTIONS(2897), - [anon_sym_mutable] = ACTIONS(2897), - [anon_sym_constinit] = ACTIONS(2897), - [anon_sym_consteval] = ACTIONS(2897), - [sym_primitive_type] = ACTIONS(2897), - [anon_sym_enum] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2897), - [anon_sym_union] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2897), - [anon_sym_else] = ACTIONS(2897), - [anon_sym_switch] = ACTIONS(2897), - [anon_sym_case] = ACTIONS(2897), - [anon_sym_default] = ACTIONS(2897), - [anon_sym_while] = ACTIONS(2897), - [anon_sym_do] = ACTIONS(2897), - [anon_sym_for] = ACTIONS(2897), - [anon_sym_return] = ACTIONS(2897), - [anon_sym_break] = ACTIONS(2897), - [anon_sym_continue] = ACTIONS(2897), - [anon_sym_goto] = ACTIONS(2897), - [anon_sym_not] = ACTIONS(2897), - [anon_sym_compl] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_sizeof] = ACTIONS(2897), - [anon_sym___alignof__] = ACTIONS(2897), - [anon_sym___alignof] = ACTIONS(2897), - [anon_sym__alignof] = ACTIONS(2897), - [anon_sym_alignof] = ACTIONS(2897), - [anon_sym__Alignof] = ACTIONS(2897), - [anon_sym_offsetof] = ACTIONS(2897), - [anon_sym__Generic] = ACTIONS(2897), - [anon_sym_asm] = ACTIONS(2897), - [anon_sym___asm__] = ACTIONS(2897), - [sym_number_literal] = ACTIONS(2899), - [anon_sym_L_SQUOTE] = ACTIONS(2899), - [anon_sym_u_SQUOTE] = ACTIONS(2899), - [anon_sym_U_SQUOTE] = ACTIONS(2899), - [anon_sym_u8_SQUOTE] = ACTIONS(2899), - [anon_sym_SQUOTE] = ACTIONS(2899), - [anon_sym_L_DQUOTE] = ACTIONS(2899), - [anon_sym_u_DQUOTE] = ACTIONS(2899), - [anon_sym_U_DQUOTE] = ACTIONS(2899), - [anon_sym_u8_DQUOTE] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [sym_true] = ACTIONS(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2897), - [anon_sym_nullptr] = ACTIONS(2897), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2897), - [anon_sym_decltype] = ACTIONS(2897), - [anon_sym_virtual] = ACTIONS(2897), - [anon_sym_alignas] = ACTIONS(2897), - [anon_sym_explicit] = ACTIONS(2897), - [anon_sym_typename] = ACTIONS(2897), - [anon_sym_template] = ACTIONS(2897), - [anon_sym_operator] = ACTIONS(2897), - [anon_sym_try] = ACTIONS(2897), - [anon_sym_delete] = ACTIONS(2897), - [anon_sym_throw] = ACTIONS(2897), - [anon_sym_namespace] = ACTIONS(2897), - [anon_sym_using] = ACTIONS(2897), - [anon_sym_static_assert] = ACTIONS(2897), - [anon_sym_concept] = ACTIONS(2897), - [anon_sym_co_return] = ACTIONS(2897), - [anon_sym_co_yield] = ACTIONS(2897), - [anon_sym_R_DQUOTE] = ACTIONS(2899), - [anon_sym_LR_DQUOTE] = ACTIONS(2899), - [anon_sym_uR_DQUOTE] = ACTIONS(2899), - [anon_sym_UR_DQUOTE] = ACTIONS(2899), - [anon_sym_u8R_DQUOTE] = ACTIONS(2899), - [anon_sym_co_await] = ACTIONS(2897), - [anon_sym_new] = ACTIONS(2897), - [anon_sym_requires] = ACTIONS(2897), - [sym_this] = ACTIONS(2897), - }, - [414] = { - [sym_identifier] = ACTIONS(2901), - [aux_sym_preproc_include_token1] = ACTIONS(2901), - [aux_sym_preproc_def_token1] = ACTIONS(2901), - [aux_sym_preproc_if_token1] = ACTIONS(2901), - [aux_sym_preproc_if_token2] = ACTIONS(2901), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2901), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2901), - [aux_sym_preproc_else_token1] = ACTIONS(2901), - [aux_sym_preproc_elif_token1] = ACTIONS(2901), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2901), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2901), - [sym_preproc_directive] = ACTIONS(2901), - [anon_sym_LPAREN2] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2901), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym___extension__] = ACTIONS(2901), - [anon_sym_typedef] = ACTIONS(2901), - [anon_sym_extern] = ACTIONS(2901), - [anon_sym___attribute__] = ACTIONS(2901), - [anon_sym_COLON_COLON] = ACTIONS(2903), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2903), - [anon_sym___declspec] = ACTIONS(2901), - [anon_sym___based] = ACTIONS(2901), - [anon_sym___cdecl] = ACTIONS(2901), - [anon_sym___clrcall] = ACTIONS(2901), - [anon_sym___stdcall] = ACTIONS(2901), - [anon_sym___fastcall] = ACTIONS(2901), - [anon_sym___thiscall] = ACTIONS(2901), - [anon_sym___vectorcall] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_signed] = ACTIONS(2901), - [anon_sym_unsigned] = ACTIONS(2901), - [anon_sym_long] = ACTIONS(2901), - [anon_sym_short] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_register] = ACTIONS(2901), - [anon_sym_inline] = ACTIONS(2901), - [anon_sym___inline] = ACTIONS(2901), - [anon_sym___inline__] = ACTIONS(2901), - [anon_sym___forceinline] = ACTIONS(2901), - [anon_sym_thread_local] = ACTIONS(2901), - [anon_sym___thread] = ACTIONS(2901), - [anon_sym_const] = ACTIONS(2901), - [anon_sym_constexpr] = ACTIONS(2901), - [anon_sym_volatile] = ACTIONS(2901), - [anon_sym_restrict] = ACTIONS(2901), - [anon_sym___restrict__] = ACTIONS(2901), - [anon_sym__Atomic] = ACTIONS(2901), - [anon_sym__Noreturn] = ACTIONS(2901), - [anon_sym_noreturn] = ACTIONS(2901), - [anon_sym_mutable] = ACTIONS(2901), - [anon_sym_constinit] = ACTIONS(2901), - [anon_sym_consteval] = ACTIONS(2901), - [sym_primitive_type] = ACTIONS(2901), - [anon_sym_enum] = ACTIONS(2901), - [anon_sym_class] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2901), - [anon_sym_union] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2901), - [anon_sym_else] = ACTIONS(2901), - [anon_sym_switch] = ACTIONS(2901), - [anon_sym_case] = ACTIONS(2901), - [anon_sym_default] = ACTIONS(2901), - [anon_sym_while] = ACTIONS(2901), - [anon_sym_do] = ACTIONS(2901), - [anon_sym_for] = ACTIONS(2901), - [anon_sym_return] = ACTIONS(2901), - [anon_sym_break] = ACTIONS(2901), - [anon_sym_continue] = ACTIONS(2901), - [anon_sym_goto] = ACTIONS(2901), - [anon_sym_not] = ACTIONS(2901), - [anon_sym_compl] = ACTIONS(2901), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_sizeof] = ACTIONS(2901), - [anon_sym___alignof__] = ACTIONS(2901), - [anon_sym___alignof] = ACTIONS(2901), - [anon_sym__alignof] = ACTIONS(2901), - [anon_sym_alignof] = ACTIONS(2901), - [anon_sym__Alignof] = ACTIONS(2901), - [anon_sym_offsetof] = ACTIONS(2901), - [anon_sym__Generic] = ACTIONS(2901), - [anon_sym_asm] = ACTIONS(2901), - [anon_sym___asm__] = ACTIONS(2901), - [sym_number_literal] = ACTIONS(2903), - [anon_sym_L_SQUOTE] = ACTIONS(2903), - [anon_sym_u_SQUOTE] = ACTIONS(2903), - [anon_sym_U_SQUOTE] = ACTIONS(2903), - [anon_sym_u8_SQUOTE] = ACTIONS(2903), - [anon_sym_SQUOTE] = ACTIONS(2903), - [anon_sym_L_DQUOTE] = ACTIONS(2903), - [anon_sym_u_DQUOTE] = ACTIONS(2903), - [anon_sym_U_DQUOTE] = ACTIONS(2903), - [anon_sym_u8_DQUOTE] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym_true] = ACTIONS(2901), - [sym_false] = ACTIONS(2901), - [anon_sym_NULL] = ACTIONS(2901), - [anon_sym_nullptr] = ACTIONS(2901), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2901), - [anon_sym_virtual] = ACTIONS(2901), - [anon_sym_alignas] = ACTIONS(2901), - [anon_sym_explicit] = ACTIONS(2901), - [anon_sym_typename] = ACTIONS(2901), - [anon_sym_template] = ACTIONS(2901), - [anon_sym_operator] = ACTIONS(2901), - [anon_sym_try] = ACTIONS(2901), - [anon_sym_delete] = ACTIONS(2901), - [anon_sym_throw] = ACTIONS(2901), - [anon_sym_namespace] = ACTIONS(2901), - [anon_sym_using] = ACTIONS(2901), - [anon_sym_static_assert] = ACTIONS(2901), - [anon_sym_concept] = ACTIONS(2901), - [anon_sym_co_return] = ACTIONS(2901), - [anon_sym_co_yield] = ACTIONS(2901), - [anon_sym_R_DQUOTE] = ACTIONS(2903), - [anon_sym_LR_DQUOTE] = ACTIONS(2903), - [anon_sym_uR_DQUOTE] = ACTIONS(2903), - [anon_sym_UR_DQUOTE] = ACTIONS(2903), - [anon_sym_u8R_DQUOTE] = ACTIONS(2903), - [anon_sym_co_await] = ACTIONS(2901), - [anon_sym_new] = ACTIONS(2901), - [anon_sym_requires] = ACTIONS(2901), - [sym_this] = ACTIONS(2901), - }, - [415] = { - [sym_identifier] = ACTIONS(2905), - [aux_sym_preproc_include_token1] = ACTIONS(2905), - [aux_sym_preproc_def_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token2] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2905), - [aux_sym_preproc_else_token1] = ACTIONS(2905), - [aux_sym_preproc_elif_token1] = ACTIONS(2905), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2905), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2905), - [sym_preproc_directive] = ACTIONS(2905), - [anon_sym_LPAREN2] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym___extension__] = ACTIONS(2905), - [anon_sym_typedef] = ACTIONS(2905), - [anon_sym_extern] = ACTIONS(2905), - [anon_sym___attribute__] = ACTIONS(2905), - [anon_sym_COLON_COLON] = ACTIONS(2907), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2907), - [anon_sym___declspec] = ACTIONS(2905), - [anon_sym___based] = ACTIONS(2905), - [anon_sym___cdecl] = ACTIONS(2905), - [anon_sym___clrcall] = ACTIONS(2905), - [anon_sym___stdcall] = ACTIONS(2905), - [anon_sym___fastcall] = ACTIONS(2905), - [anon_sym___thiscall] = ACTIONS(2905), - [anon_sym___vectorcall] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_signed] = ACTIONS(2905), - [anon_sym_unsigned] = ACTIONS(2905), - [anon_sym_long] = ACTIONS(2905), - [anon_sym_short] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_register] = ACTIONS(2905), - [anon_sym_inline] = ACTIONS(2905), - [anon_sym___inline] = ACTIONS(2905), - [anon_sym___inline__] = ACTIONS(2905), - [anon_sym___forceinline] = ACTIONS(2905), - [anon_sym_thread_local] = ACTIONS(2905), - [anon_sym___thread] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_constexpr] = ACTIONS(2905), - [anon_sym_volatile] = ACTIONS(2905), - [anon_sym_restrict] = ACTIONS(2905), - [anon_sym___restrict__] = ACTIONS(2905), - [anon_sym__Atomic] = ACTIONS(2905), - [anon_sym__Noreturn] = ACTIONS(2905), - [anon_sym_noreturn] = ACTIONS(2905), - [anon_sym_mutable] = ACTIONS(2905), - [anon_sym_constinit] = ACTIONS(2905), - [anon_sym_consteval] = ACTIONS(2905), - [sym_primitive_type] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_union] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2905), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2905), - [anon_sym_default] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_do] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_goto] = ACTIONS(2905), - [anon_sym_not] = ACTIONS(2905), - [anon_sym_compl] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_sizeof] = ACTIONS(2905), - [anon_sym___alignof__] = ACTIONS(2905), - [anon_sym___alignof] = ACTIONS(2905), - [anon_sym__alignof] = ACTIONS(2905), - [anon_sym_alignof] = ACTIONS(2905), - [anon_sym__Alignof] = ACTIONS(2905), - [anon_sym_offsetof] = ACTIONS(2905), - [anon_sym__Generic] = ACTIONS(2905), - [anon_sym_asm] = ACTIONS(2905), - [anon_sym___asm__] = ACTIONS(2905), - [sym_number_literal] = ACTIONS(2907), - [anon_sym_L_SQUOTE] = ACTIONS(2907), - [anon_sym_u_SQUOTE] = ACTIONS(2907), - [anon_sym_U_SQUOTE] = ACTIONS(2907), - [anon_sym_u8_SQUOTE] = ACTIONS(2907), - [anon_sym_SQUOTE] = ACTIONS(2907), - [anon_sym_L_DQUOTE] = ACTIONS(2907), - [anon_sym_u_DQUOTE] = ACTIONS(2907), - [anon_sym_U_DQUOTE] = ACTIONS(2907), - [anon_sym_u8_DQUOTE] = ACTIONS(2907), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_true] = ACTIONS(2905), - [sym_false] = ACTIONS(2905), - [anon_sym_NULL] = ACTIONS(2905), - [anon_sym_nullptr] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2905), - [anon_sym_decltype] = ACTIONS(2905), - [anon_sym_virtual] = ACTIONS(2905), - [anon_sym_alignas] = ACTIONS(2905), - [anon_sym_explicit] = ACTIONS(2905), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(2905), - [anon_sym_operator] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_throw] = ACTIONS(2905), - [anon_sym_namespace] = ACTIONS(2905), - [anon_sym_using] = ACTIONS(2905), - [anon_sym_static_assert] = ACTIONS(2905), - [anon_sym_concept] = ACTIONS(2905), - [anon_sym_co_return] = ACTIONS(2905), - [anon_sym_co_yield] = ACTIONS(2905), - [anon_sym_R_DQUOTE] = ACTIONS(2907), - [anon_sym_LR_DQUOTE] = ACTIONS(2907), - [anon_sym_uR_DQUOTE] = ACTIONS(2907), - [anon_sym_UR_DQUOTE] = ACTIONS(2907), - [anon_sym_u8R_DQUOTE] = ACTIONS(2907), - [anon_sym_co_await] = ACTIONS(2905), - [anon_sym_new] = ACTIONS(2905), - [anon_sym_requires] = ACTIONS(2905), - [sym_this] = ACTIONS(2905), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [416] = { - [sym__expression] = STATE(5056), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9274), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(2909), - [anon_sym___extension__] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym___attribute__] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2797), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2800), - [anon_sym___declspec] = 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(1376), - [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_mutable] = ACTIONS(2795), - [anon_sym_constinit] = ACTIONS(2795), - [anon_sym_consteval] = ACTIONS(2795), - [sym_primitive_type] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_union] = ACTIONS(2795), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [481] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2795), - [anon_sym_decltype] = ACTIONS(2805), - [anon_sym_virtual] = ACTIONS(2795), - [anon_sym_alignas] = ACTIONS(2795), - [anon_sym_typename] = ACTIONS(2795), - [anon_sym_template] = ACTIONS(2808), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [417] = { - [sym__expression] = STATE(5079), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9272), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym___extension__] = ACTIONS(2818), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym___attribute__] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), - [anon_sym___declspec] = ACTIONS(2818), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym___inline] = ACTIONS(2818), - [anon_sym___inline__] = ACTIONS(2818), - [anon_sym___forceinline] = ACTIONS(2818), - [anon_sym_thread_local] = ACTIONS(2818), - [anon_sym___thread] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_restrict] = ACTIONS(2818), - [anon_sym___restrict__] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [anon_sym__Noreturn] = ACTIONS(2818), - [anon_sym_noreturn] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [anon_sym_constinit] = ACTIONS(2818), - [anon_sym_consteval] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2825), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [482] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2818), - [anon_sym_decltype] = ACTIONS(2828), - [anon_sym_virtual] = ACTIONS(2818), - [anon_sym_alignas] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_template] = ACTIONS(2831), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [418] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [419] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [483] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [420] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [484] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [421] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [485] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [422] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [486] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [423] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [487] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [424] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [488] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [425] = { - [sym_identifier] = ACTIONS(2913), - [aux_sym_preproc_include_token1] = ACTIONS(2913), - [aux_sym_preproc_def_token1] = ACTIONS(2913), - [aux_sym_preproc_if_token1] = ACTIONS(2913), - [aux_sym_preproc_if_token2] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2913), - [aux_sym_preproc_else_token1] = ACTIONS(2913), - [aux_sym_preproc_elif_token1] = ACTIONS(2913), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2913), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2913), - [sym_preproc_directive] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym___extension__] = ACTIONS(2913), - [anon_sym_typedef] = ACTIONS(2913), - [anon_sym_extern] = ACTIONS(2913), - [anon_sym___attribute__] = ACTIONS(2913), - [anon_sym_COLON_COLON] = ACTIONS(2915), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2915), - [anon_sym___declspec] = ACTIONS(2913), - [anon_sym___based] = ACTIONS(2913), - [anon_sym___cdecl] = ACTIONS(2913), - [anon_sym___clrcall] = ACTIONS(2913), - [anon_sym___stdcall] = ACTIONS(2913), - [anon_sym___fastcall] = ACTIONS(2913), - [anon_sym___thiscall] = ACTIONS(2913), - [anon_sym___vectorcall] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_signed] = ACTIONS(2913), - [anon_sym_unsigned] = ACTIONS(2913), - [anon_sym_long] = ACTIONS(2913), - [anon_sym_short] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_static] = ACTIONS(2913), - [anon_sym_register] = ACTIONS(2913), - [anon_sym_inline] = ACTIONS(2913), - [anon_sym___inline] = ACTIONS(2913), - [anon_sym___inline__] = ACTIONS(2913), - [anon_sym___forceinline] = ACTIONS(2913), - [anon_sym_thread_local] = ACTIONS(2913), - [anon_sym___thread] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_constexpr] = ACTIONS(2913), - [anon_sym_volatile] = ACTIONS(2913), - [anon_sym_restrict] = ACTIONS(2913), - [anon_sym___restrict__] = ACTIONS(2913), - [anon_sym__Atomic] = ACTIONS(2913), - [anon_sym__Noreturn] = ACTIONS(2913), - [anon_sym_noreturn] = ACTIONS(2913), - [anon_sym_mutable] = ACTIONS(2913), - [anon_sym_constinit] = ACTIONS(2913), - [anon_sym_consteval] = ACTIONS(2913), - [sym_primitive_type] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), - [anon_sym_class] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_union] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_else] = ACTIONS(2913), - [anon_sym_switch] = ACTIONS(2913), - [anon_sym_case] = ACTIONS(2913), - [anon_sym_default] = ACTIONS(2913), - [anon_sym_while] = ACTIONS(2913), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_goto] = ACTIONS(2913), - [anon_sym_not] = ACTIONS(2913), - [anon_sym_compl] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2913), - [anon_sym___alignof__] = ACTIONS(2913), - [anon_sym___alignof] = ACTIONS(2913), - [anon_sym__alignof] = ACTIONS(2913), - [anon_sym_alignof] = ACTIONS(2913), - [anon_sym__Alignof] = ACTIONS(2913), - [anon_sym_offsetof] = ACTIONS(2913), - [anon_sym__Generic] = ACTIONS(2913), - [anon_sym_asm] = ACTIONS(2913), - [anon_sym___asm__] = ACTIONS(2913), - [sym_number_literal] = ACTIONS(2915), - [anon_sym_L_SQUOTE] = ACTIONS(2915), - [anon_sym_u_SQUOTE] = ACTIONS(2915), - [anon_sym_U_SQUOTE] = ACTIONS(2915), - [anon_sym_u8_SQUOTE] = ACTIONS(2915), - [anon_sym_SQUOTE] = ACTIONS(2915), - [anon_sym_L_DQUOTE] = ACTIONS(2915), - [anon_sym_u_DQUOTE] = ACTIONS(2915), - [anon_sym_U_DQUOTE] = ACTIONS(2915), - [anon_sym_u8_DQUOTE] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(2915), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [anon_sym_NULL] = ACTIONS(2913), - [anon_sym_nullptr] = ACTIONS(2913), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2913), - [anon_sym_decltype] = ACTIONS(2913), - [anon_sym_virtual] = ACTIONS(2913), - [anon_sym_alignas] = ACTIONS(2913), - [anon_sym_explicit] = ACTIONS(2913), - [anon_sym_typename] = ACTIONS(2913), - [anon_sym_template] = ACTIONS(2913), - [anon_sym_operator] = ACTIONS(2913), - [anon_sym_try] = ACTIONS(2913), - [anon_sym_delete] = ACTIONS(2913), - [anon_sym_throw] = ACTIONS(2913), - [anon_sym_namespace] = ACTIONS(2913), - [anon_sym_using] = ACTIONS(2913), - [anon_sym_static_assert] = ACTIONS(2913), - [anon_sym_concept] = ACTIONS(2913), - [anon_sym_co_return] = ACTIONS(2913), - [anon_sym_co_yield] = ACTIONS(2913), - [anon_sym_R_DQUOTE] = ACTIONS(2915), - [anon_sym_LR_DQUOTE] = ACTIONS(2915), - [anon_sym_uR_DQUOTE] = ACTIONS(2915), - [anon_sym_UR_DQUOTE] = ACTIONS(2915), - [anon_sym_u8R_DQUOTE] = ACTIONS(2915), - [anon_sym_co_await] = ACTIONS(2913), - [anon_sym_new] = ACTIONS(2913), - [anon_sym_requires] = ACTIONS(2913), - [sym_this] = ACTIONS(2913), + [489] = { + [sym_catch_clause] = STATE(336), + [aux_sym_constructor_try_statement_repeat1] = STATE(336), + [sym_identifier] = ACTIONS(2255), + [aux_sym_preproc_include_token1] = ACTIONS(2255), + [aux_sym_preproc_def_token1] = ACTIONS(2255), + [aux_sym_preproc_if_token1] = ACTIONS(2255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2255), + [sym_preproc_directive] = ACTIONS(2255), + [anon_sym_LPAREN2] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_AMP_AMP] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2257), + [anon_sym___extension__] = ACTIONS(2255), + [anon_sym_typedef] = ACTIONS(2255), + [anon_sym_extern] = ACTIONS(2255), + [anon_sym___attribute__] = ACTIONS(2255), + [anon_sym_COLON_COLON] = ACTIONS(2257), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2257), + [anon_sym___declspec] = ACTIONS(2255), + [anon_sym___based] = ACTIONS(2255), + [anon_sym___cdecl] = ACTIONS(2255), + [anon_sym___clrcall] = ACTIONS(2255), + [anon_sym___stdcall] = ACTIONS(2255), + [anon_sym___fastcall] = ACTIONS(2255), + [anon_sym___thiscall] = ACTIONS(2255), + [anon_sym___vectorcall] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_signed] = ACTIONS(2255), + [anon_sym_unsigned] = ACTIONS(2255), + [anon_sym_long] = ACTIONS(2255), + [anon_sym_short] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_register] = ACTIONS(2255), + [anon_sym_inline] = ACTIONS(2255), + [anon_sym___inline] = ACTIONS(2255), + [anon_sym___inline__] = ACTIONS(2255), + [anon_sym___forceinline] = ACTIONS(2255), + [anon_sym_thread_local] = ACTIONS(2255), + [anon_sym___thread] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_constexpr] = ACTIONS(2255), + [anon_sym_volatile] = ACTIONS(2255), + [anon_sym_restrict] = ACTIONS(2255), + [anon_sym___restrict__] = ACTIONS(2255), + [anon_sym__Atomic] = ACTIONS(2255), + [anon_sym__Noreturn] = ACTIONS(2255), + [anon_sym_noreturn] = ACTIONS(2255), + [anon_sym_mutable] = ACTIONS(2255), + [anon_sym_constinit] = ACTIONS(2255), + [anon_sym_consteval] = ACTIONS(2255), + [sym_primitive_type] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [anon_sym_class] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(2255), + [anon_sym_union] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_switch] = ACTIONS(2255), + [anon_sym_case] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2255), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_goto] = ACTIONS(2255), + [anon_sym_not] = ACTIONS(2255), + [anon_sym_compl] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_sizeof] = ACTIONS(2255), + [anon_sym___alignof__] = ACTIONS(2255), + [anon_sym___alignof] = ACTIONS(2255), + [anon_sym__alignof] = ACTIONS(2255), + [anon_sym_alignof] = ACTIONS(2255), + [anon_sym__Alignof] = ACTIONS(2255), + [anon_sym_offsetof] = ACTIONS(2255), + [anon_sym__Generic] = ACTIONS(2255), + [anon_sym_asm] = ACTIONS(2255), + [anon_sym___asm__] = ACTIONS(2255), + [sym_number_literal] = ACTIONS(2257), + [anon_sym_L_SQUOTE] = ACTIONS(2257), + [anon_sym_u_SQUOTE] = ACTIONS(2257), + [anon_sym_U_SQUOTE] = ACTIONS(2257), + [anon_sym_u8_SQUOTE] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2257), + [anon_sym_L_DQUOTE] = ACTIONS(2257), + [anon_sym_u_DQUOTE] = ACTIONS(2257), + [anon_sym_U_DQUOTE] = ACTIONS(2257), + [anon_sym_u8_DQUOTE] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2257), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), + [anon_sym_NULL] = ACTIONS(2255), + [anon_sym_nullptr] = ACTIONS(2255), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2255), + [anon_sym_decltype] = ACTIONS(2255), + [anon_sym_virtual] = ACTIONS(2255), + [anon_sym_alignas] = ACTIONS(2255), + [anon_sym_explicit] = ACTIONS(2255), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(2255), + [anon_sym_operator] = ACTIONS(2255), + [anon_sym_try] = ACTIONS(2255), + [anon_sym_delete] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(2255), + [anon_sym_namespace] = ACTIONS(2255), + [anon_sym_using] = ACTIONS(2255), + [anon_sym_static_assert] = ACTIONS(2255), + [anon_sym_concept] = ACTIONS(2255), + [anon_sym_co_return] = ACTIONS(2255), + [anon_sym_co_yield] = ACTIONS(2255), + [anon_sym_catch] = ACTIONS(2952), + [anon_sym_R_DQUOTE] = ACTIONS(2257), + [anon_sym_LR_DQUOTE] = ACTIONS(2257), + [anon_sym_uR_DQUOTE] = ACTIONS(2257), + [anon_sym_UR_DQUOTE] = ACTIONS(2257), + [anon_sym_u8R_DQUOTE] = ACTIONS(2257), + [anon_sym_co_await] = ACTIONS(2255), + [anon_sym_new] = ACTIONS(2255), + [anon_sym_requires] = ACTIONS(2255), + [sym_this] = ACTIONS(2255), }, - [426] = { - [sym_identifier] = ACTIONS(2917), - [aux_sym_preproc_include_token1] = ACTIONS(2917), - [aux_sym_preproc_def_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token2] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), - [aux_sym_preproc_else_token1] = ACTIONS(2917), - [aux_sym_preproc_elif_token1] = ACTIONS(2917), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2917), - [sym_preproc_directive] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym___based] = ACTIONS(2917), - [anon_sym___cdecl] = ACTIONS(2917), - [anon_sym___clrcall] = ACTIONS(2917), - [anon_sym___stdcall] = ACTIONS(2917), - [anon_sym___fastcall] = ACTIONS(2917), - [anon_sym___thiscall] = ACTIONS(2917), - [anon_sym___vectorcall] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2917), - [anon_sym_switch] = ACTIONS(2917), - [anon_sym_case] = ACTIONS(2917), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_goto] = ACTIONS(2917), - [anon_sym_not] = ACTIONS(2917), - [anon_sym_compl] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_sizeof] = ACTIONS(2917), - [anon_sym___alignof__] = ACTIONS(2917), - [anon_sym___alignof] = ACTIONS(2917), - [anon_sym__alignof] = ACTIONS(2917), - [anon_sym_alignof] = ACTIONS(2917), - [anon_sym__Alignof] = ACTIONS(2917), - [anon_sym_offsetof] = ACTIONS(2917), - [anon_sym__Generic] = ACTIONS(2917), - [anon_sym_asm] = ACTIONS(2917), - [anon_sym___asm__] = ACTIONS(2917), - [sym_number_literal] = ACTIONS(2919), - [anon_sym_L_SQUOTE] = ACTIONS(2919), - [anon_sym_u_SQUOTE] = ACTIONS(2919), - [anon_sym_U_SQUOTE] = ACTIONS(2919), - [anon_sym_u8_SQUOTE] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2919), - [anon_sym_L_DQUOTE] = ACTIONS(2919), - [anon_sym_u_DQUOTE] = ACTIONS(2919), - [anon_sym_U_DQUOTE] = ACTIONS(2919), - [anon_sym_u8_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [anon_sym_NULL] = ACTIONS(2917), - [anon_sym_nullptr] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_explicit] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_operator] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_delete] = ACTIONS(2917), - [anon_sym_throw] = ACTIONS(2917), - [anon_sym_namespace] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_static_assert] = ACTIONS(2917), - [anon_sym_concept] = ACTIONS(2917), - [anon_sym_co_return] = ACTIONS(2917), - [anon_sym_co_yield] = ACTIONS(2917), - [anon_sym_R_DQUOTE] = ACTIONS(2919), - [anon_sym_LR_DQUOTE] = ACTIONS(2919), - [anon_sym_uR_DQUOTE] = ACTIONS(2919), - [anon_sym_UR_DQUOTE] = ACTIONS(2919), - [anon_sym_u8R_DQUOTE] = ACTIONS(2919), - [anon_sym_co_await] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2917), + [490] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [427] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [491] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - }, - [428] = { - [sym_identifier] = ACTIONS(2818), - [aux_sym_preproc_include_token1] = ACTIONS(2818), - [aux_sym_preproc_def_token1] = ACTIONS(2818), - [aux_sym_preproc_if_token1] = ACTIONS(2818), - [aux_sym_preproc_if_token2] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2818), - [aux_sym_preproc_else_token1] = ACTIONS(2818), - [aux_sym_preproc_elif_token1] = ACTIONS(2818), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2818), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2818), - [sym_preproc_directive] = ACTIONS(2818), - [anon_sym_LPAREN2] = ACTIONS(2823), - [anon_sym_BANG] = ACTIONS(2823), - [anon_sym_TILDE] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2823), - [anon_sym_AMP_AMP] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2823), - [anon_sym___extension__] = ACTIONS(2818), - [anon_sym_typedef] = ACTIONS(2818), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym___attribute__] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), - [anon_sym___declspec] = ACTIONS(2818), - [anon_sym___based] = ACTIONS(2818), - [anon_sym___cdecl] = ACTIONS(2818), - [anon_sym___clrcall] = ACTIONS(2818), - [anon_sym___stdcall] = ACTIONS(2818), - [anon_sym___fastcall] = ACTIONS(2818), - [anon_sym___thiscall] = ACTIONS(2818), - [anon_sym___vectorcall] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym___inline] = ACTIONS(2818), - [anon_sym___inline__] = ACTIONS(2818), - [anon_sym___forceinline] = ACTIONS(2818), - [anon_sym_thread_local] = ACTIONS(2818), - [anon_sym___thread] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_restrict] = ACTIONS(2818), - [anon_sym___restrict__] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [anon_sym__Noreturn] = ACTIONS(2818), - [anon_sym_noreturn] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [anon_sym_constinit] = ACTIONS(2818), - [anon_sym_consteval] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_else] = ACTIONS(2818), - [anon_sym_switch] = ACTIONS(2818), - [anon_sym_case] = ACTIONS(2818), - [anon_sym_default] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [anon_sym_goto] = ACTIONS(2818), - [anon_sym_not] = ACTIONS(2818), - [anon_sym_compl] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2823), - [anon_sym_PLUS_PLUS] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2818), - [anon_sym___alignof__] = ACTIONS(2818), - [anon_sym___alignof] = ACTIONS(2818), - [anon_sym__alignof] = ACTIONS(2818), - [anon_sym_alignof] = ACTIONS(2818), - [anon_sym__Alignof] = ACTIONS(2818), - [anon_sym_offsetof] = ACTIONS(2818), - [anon_sym__Generic] = ACTIONS(2818), - [anon_sym_asm] = ACTIONS(2818), - [anon_sym___asm__] = ACTIONS(2818), - [sym_number_literal] = ACTIONS(2823), - [anon_sym_L_SQUOTE] = ACTIONS(2823), - [anon_sym_u_SQUOTE] = ACTIONS(2823), - [anon_sym_U_SQUOTE] = ACTIONS(2823), - [anon_sym_u8_SQUOTE] = ACTIONS(2823), - [anon_sym_SQUOTE] = ACTIONS(2823), - [anon_sym_L_DQUOTE] = ACTIONS(2823), - [anon_sym_u_DQUOTE] = ACTIONS(2823), - [anon_sym_U_DQUOTE] = ACTIONS(2823), - [anon_sym_u8_DQUOTE] = ACTIONS(2823), - [anon_sym_DQUOTE] = ACTIONS(2823), - [sym_true] = ACTIONS(2818), - [sym_false] = ACTIONS(2818), - [anon_sym_NULL] = ACTIONS(2818), - [anon_sym_nullptr] = ACTIONS(2818), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2818), - [anon_sym_decltype] = ACTIONS(2818), - [anon_sym_virtual] = ACTIONS(2818), - [anon_sym_alignas] = ACTIONS(2818), - [anon_sym_explicit] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_template] = ACTIONS(2818), - [anon_sym_operator] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_delete] = ACTIONS(2818), - [anon_sym_throw] = ACTIONS(2818), - [anon_sym_namespace] = ACTIONS(2818), - [anon_sym_using] = ACTIONS(2818), - [anon_sym_static_assert] = ACTIONS(2818), - [anon_sym_concept] = ACTIONS(2818), - [anon_sym_co_return] = ACTIONS(2818), - [anon_sym_co_yield] = ACTIONS(2818), - [anon_sym_R_DQUOTE] = ACTIONS(2823), - [anon_sym_LR_DQUOTE] = ACTIONS(2823), - [anon_sym_uR_DQUOTE] = ACTIONS(2823), - [anon_sym_UR_DQUOTE] = ACTIONS(2823), - [anon_sym_u8R_DQUOTE] = ACTIONS(2823), - [anon_sym_co_await] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_requires] = ACTIONS(2818), - [sym_this] = ACTIONS(2818), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [429] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [492] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [430] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [493] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [431] = { - [sym_identifier] = ACTIONS(2917), - [aux_sym_preproc_include_token1] = ACTIONS(2917), - [aux_sym_preproc_def_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token2] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), - [aux_sym_preproc_else_token1] = ACTIONS(2917), - [aux_sym_preproc_elif_token1] = ACTIONS(2917), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2917), - [sym_preproc_directive] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym___based] = ACTIONS(2917), - [anon_sym___cdecl] = ACTIONS(2917), - [anon_sym___clrcall] = ACTIONS(2917), - [anon_sym___stdcall] = ACTIONS(2917), - [anon_sym___fastcall] = ACTIONS(2917), - [anon_sym___thiscall] = ACTIONS(2917), - [anon_sym___vectorcall] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2917), - [anon_sym_switch] = ACTIONS(2917), - [anon_sym_case] = ACTIONS(2917), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_goto] = ACTIONS(2917), - [anon_sym_not] = ACTIONS(2917), - [anon_sym_compl] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_sizeof] = ACTIONS(2917), - [anon_sym___alignof__] = ACTIONS(2917), - [anon_sym___alignof] = ACTIONS(2917), - [anon_sym__alignof] = ACTIONS(2917), - [anon_sym_alignof] = ACTIONS(2917), - [anon_sym__Alignof] = ACTIONS(2917), - [anon_sym_offsetof] = ACTIONS(2917), - [anon_sym__Generic] = ACTIONS(2917), - [anon_sym_asm] = ACTIONS(2917), - [anon_sym___asm__] = ACTIONS(2917), - [sym_number_literal] = ACTIONS(2919), - [anon_sym_L_SQUOTE] = ACTIONS(2919), - [anon_sym_u_SQUOTE] = ACTIONS(2919), - [anon_sym_U_SQUOTE] = ACTIONS(2919), - [anon_sym_u8_SQUOTE] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2919), - [anon_sym_L_DQUOTE] = ACTIONS(2919), - [anon_sym_u_DQUOTE] = ACTIONS(2919), - [anon_sym_U_DQUOTE] = ACTIONS(2919), - [anon_sym_u8_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [anon_sym_NULL] = ACTIONS(2917), - [anon_sym_nullptr] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_explicit] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_operator] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_delete] = ACTIONS(2917), - [anon_sym_throw] = ACTIONS(2917), - [anon_sym_namespace] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_static_assert] = ACTIONS(2917), - [anon_sym_concept] = ACTIONS(2917), - [anon_sym_co_return] = ACTIONS(2917), - [anon_sym_co_yield] = ACTIONS(2917), - [anon_sym_R_DQUOTE] = ACTIONS(2919), - [anon_sym_LR_DQUOTE] = ACTIONS(2919), - [anon_sym_uR_DQUOTE] = ACTIONS(2919), - [anon_sym_UR_DQUOTE] = ACTIONS(2919), - [anon_sym_u8R_DQUOTE] = ACTIONS(2919), - [anon_sym_co_await] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2917), + [494] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [432] = { - [sym_identifier] = ACTIONS(2921), - [aux_sym_preproc_include_token1] = ACTIONS(2921), - [aux_sym_preproc_def_token1] = ACTIONS(2921), - [aux_sym_preproc_if_token1] = ACTIONS(2921), - [aux_sym_preproc_if_token2] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2921), - [aux_sym_preproc_else_token1] = ACTIONS(2921), - [aux_sym_preproc_elif_token1] = ACTIONS(2921), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2921), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2921), - [sym_preproc_directive] = ACTIONS(2921), - [anon_sym_LPAREN2] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_SEMI] = ACTIONS(2923), - [anon_sym___extension__] = ACTIONS(2921), - [anon_sym_typedef] = ACTIONS(2921), - [anon_sym_extern] = ACTIONS(2921), - [anon_sym___attribute__] = ACTIONS(2921), - [anon_sym_COLON_COLON] = ACTIONS(2923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2923), - [anon_sym___declspec] = ACTIONS(2921), - [anon_sym___based] = ACTIONS(2921), - [anon_sym___cdecl] = ACTIONS(2921), - [anon_sym___clrcall] = ACTIONS(2921), - [anon_sym___stdcall] = ACTIONS(2921), - [anon_sym___fastcall] = ACTIONS(2921), - [anon_sym___thiscall] = ACTIONS(2921), - [anon_sym___vectorcall] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_signed] = ACTIONS(2921), - [anon_sym_unsigned] = ACTIONS(2921), - [anon_sym_long] = ACTIONS(2921), - [anon_sym_short] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(2921), - [anon_sym_register] = ACTIONS(2921), - [anon_sym_inline] = ACTIONS(2921), - [anon_sym___inline] = ACTIONS(2921), - [anon_sym___inline__] = ACTIONS(2921), - [anon_sym___forceinline] = ACTIONS(2921), - [anon_sym_thread_local] = ACTIONS(2921), - [anon_sym___thread] = ACTIONS(2921), - [anon_sym_const] = ACTIONS(2921), - [anon_sym_constexpr] = ACTIONS(2921), - [anon_sym_volatile] = ACTIONS(2921), - [anon_sym_restrict] = ACTIONS(2921), - [anon_sym___restrict__] = ACTIONS(2921), - [anon_sym__Atomic] = ACTIONS(2921), - [anon_sym__Noreturn] = ACTIONS(2921), - [anon_sym_noreturn] = ACTIONS(2921), - [anon_sym_mutable] = ACTIONS(2921), - [anon_sym_constinit] = ACTIONS(2921), - [anon_sym_consteval] = ACTIONS(2921), - [sym_primitive_type] = ACTIONS(2921), - [anon_sym_enum] = ACTIONS(2921), - [anon_sym_class] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_union] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_else] = ACTIONS(2921), - [anon_sym_switch] = ACTIONS(2921), - [anon_sym_case] = ACTIONS(2921), - [anon_sym_default] = ACTIONS(2921), - [anon_sym_while] = ACTIONS(2921), - [anon_sym_do] = ACTIONS(2921), - [anon_sym_for] = ACTIONS(2921), - [anon_sym_return] = ACTIONS(2921), - [anon_sym_break] = ACTIONS(2921), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2921), - [anon_sym_not] = ACTIONS(2921), - [anon_sym_compl] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2923), - [anon_sym_sizeof] = ACTIONS(2921), - [anon_sym___alignof__] = ACTIONS(2921), - [anon_sym___alignof] = ACTIONS(2921), - [anon_sym__alignof] = ACTIONS(2921), - [anon_sym_alignof] = ACTIONS(2921), - [anon_sym__Alignof] = ACTIONS(2921), - [anon_sym_offsetof] = ACTIONS(2921), - [anon_sym__Generic] = ACTIONS(2921), - [anon_sym_asm] = ACTIONS(2921), - [anon_sym___asm__] = ACTIONS(2921), - [sym_number_literal] = ACTIONS(2923), - [anon_sym_L_SQUOTE] = ACTIONS(2923), - [anon_sym_u_SQUOTE] = ACTIONS(2923), - [anon_sym_U_SQUOTE] = ACTIONS(2923), - [anon_sym_u8_SQUOTE] = ACTIONS(2923), - [anon_sym_SQUOTE] = ACTIONS(2923), - [anon_sym_L_DQUOTE] = ACTIONS(2923), - [anon_sym_u_DQUOTE] = ACTIONS(2923), - [anon_sym_U_DQUOTE] = ACTIONS(2923), - [anon_sym_u8_DQUOTE] = ACTIONS(2923), - [anon_sym_DQUOTE] = ACTIONS(2923), - [sym_true] = ACTIONS(2921), - [sym_false] = ACTIONS(2921), - [anon_sym_NULL] = ACTIONS(2921), - [anon_sym_nullptr] = ACTIONS(2921), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2921), - [anon_sym_decltype] = ACTIONS(2921), - [anon_sym_virtual] = ACTIONS(2921), - [anon_sym_alignas] = ACTIONS(2921), - [anon_sym_explicit] = ACTIONS(2921), - [anon_sym_typename] = ACTIONS(2921), - [anon_sym_template] = ACTIONS(2921), - [anon_sym_operator] = ACTIONS(2921), - [anon_sym_try] = ACTIONS(2921), - [anon_sym_delete] = ACTIONS(2921), - [anon_sym_throw] = ACTIONS(2921), - [anon_sym_namespace] = ACTIONS(2921), - [anon_sym_using] = ACTIONS(2921), - [anon_sym_static_assert] = ACTIONS(2921), - [anon_sym_concept] = ACTIONS(2921), - [anon_sym_co_return] = ACTIONS(2921), - [anon_sym_co_yield] = ACTIONS(2921), - [anon_sym_R_DQUOTE] = ACTIONS(2923), - [anon_sym_LR_DQUOTE] = ACTIONS(2923), - [anon_sym_uR_DQUOTE] = ACTIONS(2923), - [anon_sym_UR_DQUOTE] = ACTIONS(2923), - [anon_sym_u8R_DQUOTE] = ACTIONS(2923), - [anon_sym_co_await] = ACTIONS(2921), - [anon_sym_new] = ACTIONS(2921), - [anon_sym_requires] = ACTIONS(2921), - [sym_this] = ACTIONS(2921), + [495] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [433] = { - [sym_identifier] = ACTIONS(2925), - [aux_sym_preproc_include_token1] = ACTIONS(2925), - [aux_sym_preproc_def_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token2] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2925), - [aux_sym_preproc_else_token1] = ACTIONS(2925), - [aux_sym_preproc_elif_token1] = ACTIONS(2925), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2925), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2925), - [sym_preproc_directive] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2927), - [anon_sym___extension__] = ACTIONS(2925), - [anon_sym_typedef] = ACTIONS(2925), - [anon_sym_extern] = ACTIONS(2925), - [anon_sym___attribute__] = ACTIONS(2925), - [anon_sym_COLON_COLON] = ACTIONS(2927), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), - [anon_sym___declspec] = ACTIONS(2925), - [anon_sym___based] = ACTIONS(2925), - [anon_sym___cdecl] = ACTIONS(2925), - [anon_sym___clrcall] = ACTIONS(2925), - [anon_sym___stdcall] = ACTIONS(2925), - [anon_sym___fastcall] = ACTIONS(2925), - [anon_sym___thiscall] = ACTIONS(2925), - [anon_sym___vectorcall] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_signed] = ACTIONS(2925), - [anon_sym_unsigned] = ACTIONS(2925), - [anon_sym_long] = ACTIONS(2925), - [anon_sym_short] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_static] = ACTIONS(2925), - [anon_sym_register] = ACTIONS(2925), - [anon_sym_inline] = ACTIONS(2925), - [anon_sym___inline] = ACTIONS(2925), - [anon_sym___inline__] = ACTIONS(2925), - [anon_sym___forceinline] = ACTIONS(2925), - [anon_sym_thread_local] = ACTIONS(2925), - [anon_sym___thread] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(2925), - [anon_sym_constexpr] = ACTIONS(2925), - [anon_sym_volatile] = ACTIONS(2925), - [anon_sym_restrict] = ACTIONS(2925), - [anon_sym___restrict__] = ACTIONS(2925), - [anon_sym__Atomic] = ACTIONS(2925), - [anon_sym__Noreturn] = ACTIONS(2925), - [anon_sym_noreturn] = ACTIONS(2925), - [anon_sym_mutable] = ACTIONS(2925), - [anon_sym_constinit] = ACTIONS(2925), - [anon_sym_consteval] = ACTIONS(2925), - [sym_primitive_type] = ACTIONS(2925), - [anon_sym_enum] = ACTIONS(2925), - [anon_sym_class] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_union] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_else] = ACTIONS(2925), - [anon_sym_switch] = ACTIONS(2925), - [anon_sym_case] = ACTIONS(2925), - [anon_sym_default] = ACTIONS(2925), - [anon_sym_while] = ACTIONS(2925), - [anon_sym_do] = ACTIONS(2925), - [anon_sym_for] = ACTIONS(2925), - [anon_sym_return] = ACTIONS(2925), - [anon_sym_break] = ACTIONS(2925), - [anon_sym_continue] = ACTIONS(2925), - [anon_sym_goto] = ACTIONS(2925), - [anon_sym_not] = ACTIONS(2925), - [anon_sym_compl] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2927), - [anon_sym_sizeof] = ACTIONS(2925), - [anon_sym___alignof__] = ACTIONS(2925), - [anon_sym___alignof] = ACTIONS(2925), - [anon_sym__alignof] = ACTIONS(2925), - [anon_sym_alignof] = ACTIONS(2925), - [anon_sym__Alignof] = ACTIONS(2925), - [anon_sym_offsetof] = ACTIONS(2925), - [anon_sym__Generic] = ACTIONS(2925), - [anon_sym_asm] = ACTIONS(2925), - [anon_sym___asm__] = ACTIONS(2925), - [sym_number_literal] = ACTIONS(2927), - [anon_sym_L_SQUOTE] = ACTIONS(2927), - [anon_sym_u_SQUOTE] = ACTIONS(2927), - [anon_sym_U_SQUOTE] = ACTIONS(2927), - [anon_sym_u8_SQUOTE] = ACTIONS(2927), - [anon_sym_SQUOTE] = ACTIONS(2927), - [anon_sym_L_DQUOTE] = ACTIONS(2927), - [anon_sym_u_DQUOTE] = ACTIONS(2927), - [anon_sym_U_DQUOTE] = ACTIONS(2927), - [anon_sym_u8_DQUOTE] = ACTIONS(2927), - [anon_sym_DQUOTE] = ACTIONS(2927), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [anon_sym_NULL] = ACTIONS(2925), - [anon_sym_nullptr] = ACTIONS(2925), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2925), - [anon_sym_decltype] = ACTIONS(2925), - [anon_sym_virtual] = ACTIONS(2925), - [anon_sym_alignas] = ACTIONS(2925), - [anon_sym_explicit] = ACTIONS(2925), - [anon_sym_typename] = ACTIONS(2925), - [anon_sym_template] = ACTIONS(2925), - [anon_sym_operator] = ACTIONS(2925), - [anon_sym_try] = ACTIONS(2925), - [anon_sym_delete] = ACTIONS(2925), - [anon_sym_throw] = ACTIONS(2925), - [anon_sym_namespace] = ACTIONS(2925), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_static_assert] = ACTIONS(2925), - [anon_sym_concept] = ACTIONS(2925), - [anon_sym_co_return] = ACTIONS(2925), - [anon_sym_co_yield] = ACTIONS(2925), - [anon_sym_R_DQUOTE] = ACTIONS(2927), - [anon_sym_LR_DQUOTE] = ACTIONS(2927), - [anon_sym_uR_DQUOTE] = ACTIONS(2927), - [anon_sym_UR_DQUOTE] = ACTIONS(2927), - [anon_sym_u8R_DQUOTE] = ACTIONS(2927), - [anon_sym_co_await] = ACTIONS(2925), - [anon_sym_new] = ACTIONS(2925), - [anon_sym_requires] = ACTIONS(2925), - [sym_this] = ACTIONS(2925), + [496] = { + [sym_identifier] = ACTIONS(2804), + [aux_sym_preproc_include_token1] = ACTIONS(2804), + [aux_sym_preproc_def_token1] = ACTIONS(2804), + [aux_sym_preproc_if_token1] = ACTIONS(2804), + [aux_sym_preproc_if_token2] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2804), + [aux_sym_preproc_else_token1] = ACTIONS(2804), + [aux_sym_preproc_elif_token1] = ACTIONS(2804), + [sym_preproc_directive] = ACTIONS(2804), + [anon_sym_LPAREN2] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2806), + [anon_sym_DASH] = ACTIONS(2804), + [anon_sym_PLUS] = ACTIONS(2804), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_AMP_AMP] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym___extension__] = ACTIONS(2804), + [anon_sym_typedef] = ACTIONS(2804), + [anon_sym_extern] = ACTIONS(2804), + [anon_sym___attribute__] = ACTIONS(2804), + [anon_sym_COLON_COLON] = ACTIONS(2806), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2806), + [anon_sym___declspec] = ACTIONS(2804), + [anon_sym___based] = ACTIONS(2804), + [anon_sym___cdecl] = ACTIONS(2804), + [anon_sym___clrcall] = ACTIONS(2804), + [anon_sym___stdcall] = ACTIONS(2804), + [anon_sym___fastcall] = ACTIONS(2804), + [anon_sym___thiscall] = ACTIONS(2804), + [anon_sym___vectorcall] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_signed] = ACTIONS(2804), + [anon_sym_unsigned] = ACTIONS(2804), + [anon_sym_long] = ACTIONS(2804), + [anon_sym_short] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2804), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_register] = ACTIONS(2804), + [anon_sym_inline] = ACTIONS(2804), + [anon_sym___inline] = ACTIONS(2804), + [anon_sym___inline__] = ACTIONS(2804), + [anon_sym___forceinline] = ACTIONS(2804), + [anon_sym_thread_local] = ACTIONS(2804), + [anon_sym___thread] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_constexpr] = ACTIONS(2804), + [anon_sym_volatile] = ACTIONS(2804), + [anon_sym_restrict] = ACTIONS(2804), + [anon_sym___restrict__] = ACTIONS(2804), + [anon_sym__Atomic] = ACTIONS(2804), + [anon_sym__Noreturn] = ACTIONS(2804), + [anon_sym_noreturn] = ACTIONS(2804), + [anon_sym_mutable] = ACTIONS(2804), + [anon_sym_constinit] = ACTIONS(2804), + [anon_sym_consteval] = ACTIONS(2804), + [sym_primitive_type] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [anon_sym_class] = ACTIONS(2804), + [anon_sym_struct] = ACTIONS(2804), + [anon_sym_union] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2804), + [anon_sym_else] = ACTIONS(2804), + [anon_sym_switch] = ACTIONS(2804), + [anon_sym_case] = ACTIONS(2804), + [anon_sym_default] = ACTIONS(2804), + [anon_sym_while] = ACTIONS(2804), + [anon_sym_do] = ACTIONS(2804), + [anon_sym_for] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2804), + [anon_sym_break] = ACTIONS(2804), + [anon_sym_continue] = ACTIONS(2804), + [anon_sym_goto] = ACTIONS(2804), + [anon_sym_not] = ACTIONS(2804), + [anon_sym_compl] = ACTIONS(2804), + [anon_sym_DASH_DASH] = ACTIONS(2806), + [anon_sym_PLUS_PLUS] = ACTIONS(2806), + [anon_sym_sizeof] = ACTIONS(2804), + [anon_sym___alignof__] = ACTIONS(2804), + [anon_sym___alignof] = ACTIONS(2804), + [anon_sym__alignof] = ACTIONS(2804), + [anon_sym_alignof] = ACTIONS(2804), + [anon_sym__Alignof] = ACTIONS(2804), + [anon_sym_offsetof] = ACTIONS(2804), + [anon_sym__Generic] = ACTIONS(2804), + [anon_sym_asm] = ACTIONS(2804), + [anon_sym___asm__] = ACTIONS(2804), + [sym_number_literal] = ACTIONS(2806), + [anon_sym_L_SQUOTE] = ACTIONS(2806), + [anon_sym_u_SQUOTE] = ACTIONS(2806), + [anon_sym_U_SQUOTE] = ACTIONS(2806), + [anon_sym_u8_SQUOTE] = ACTIONS(2806), + [anon_sym_SQUOTE] = ACTIONS(2806), + [anon_sym_L_DQUOTE] = ACTIONS(2806), + [anon_sym_u_DQUOTE] = ACTIONS(2806), + [anon_sym_U_DQUOTE] = ACTIONS(2806), + [anon_sym_u8_DQUOTE] = ACTIONS(2806), + [anon_sym_DQUOTE] = ACTIONS(2806), + [sym_true] = ACTIONS(2804), + [sym_false] = ACTIONS(2804), + [anon_sym_NULL] = ACTIONS(2804), + [anon_sym_nullptr] = ACTIONS(2804), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2804), + [anon_sym_decltype] = ACTIONS(2804), + [anon_sym_virtual] = ACTIONS(2804), + [anon_sym_alignas] = ACTIONS(2804), + [anon_sym_explicit] = ACTIONS(2804), + [anon_sym_typename] = ACTIONS(2804), + [anon_sym_template] = ACTIONS(2804), + [anon_sym_operator] = ACTIONS(2804), + [anon_sym_try] = ACTIONS(2804), + [anon_sym_delete] = ACTIONS(2804), + [anon_sym_throw] = ACTIONS(2804), + [anon_sym_namespace] = ACTIONS(2804), + [anon_sym_using] = ACTIONS(2804), + [anon_sym_static_assert] = ACTIONS(2804), + [anon_sym_concept] = ACTIONS(2804), + [anon_sym_co_return] = ACTIONS(2804), + [anon_sym_co_yield] = ACTIONS(2804), + [anon_sym_R_DQUOTE] = ACTIONS(2806), + [anon_sym_LR_DQUOTE] = ACTIONS(2806), + [anon_sym_uR_DQUOTE] = ACTIONS(2806), + [anon_sym_UR_DQUOTE] = ACTIONS(2806), + [anon_sym_u8R_DQUOTE] = ACTIONS(2806), + [anon_sym_co_await] = ACTIONS(2804), + [anon_sym_new] = ACTIONS(2804), + [anon_sym_requires] = ACTIONS(2804), + [sym_this] = ACTIONS(2804), }, - [434] = { - [sym_identifier] = ACTIONS(2929), - [aux_sym_preproc_include_token1] = ACTIONS(2929), - [aux_sym_preproc_def_token1] = ACTIONS(2929), - [aux_sym_preproc_if_token1] = ACTIONS(2929), - [aux_sym_preproc_if_token2] = ACTIONS(2929), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2929), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2929), - [aux_sym_preproc_else_token1] = ACTIONS(2929), - [aux_sym_preproc_elif_token1] = ACTIONS(2929), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2929), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2929), - [sym_preproc_directive] = ACTIONS(2929), - [anon_sym_LPAREN2] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2929), - [anon_sym_PLUS] = ACTIONS(2929), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_SEMI] = ACTIONS(2931), - [anon_sym___extension__] = ACTIONS(2929), - [anon_sym_typedef] = ACTIONS(2929), - [anon_sym_extern] = ACTIONS(2929), - [anon_sym___attribute__] = ACTIONS(2929), - [anon_sym_COLON_COLON] = ACTIONS(2931), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2931), - [anon_sym___declspec] = ACTIONS(2929), - [anon_sym___based] = ACTIONS(2929), - [anon_sym___cdecl] = ACTIONS(2929), - [anon_sym___clrcall] = ACTIONS(2929), - [anon_sym___stdcall] = ACTIONS(2929), - [anon_sym___fastcall] = ACTIONS(2929), - [anon_sym___thiscall] = ACTIONS(2929), - [anon_sym___vectorcall] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_signed] = ACTIONS(2929), - [anon_sym_unsigned] = ACTIONS(2929), - [anon_sym_long] = ACTIONS(2929), - [anon_sym_short] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_static] = ACTIONS(2929), - [anon_sym_register] = ACTIONS(2929), - [anon_sym_inline] = ACTIONS(2929), - [anon_sym___inline] = ACTIONS(2929), - [anon_sym___inline__] = ACTIONS(2929), - [anon_sym___forceinline] = ACTIONS(2929), - [anon_sym_thread_local] = ACTIONS(2929), - [anon_sym___thread] = ACTIONS(2929), - [anon_sym_const] = ACTIONS(2929), - [anon_sym_constexpr] = ACTIONS(2929), - [anon_sym_volatile] = ACTIONS(2929), - [anon_sym_restrict] = ACTIONS(2929), - [anon_sym___restrict__] = ACTIONS(2929), - [anon_sym__Atomic] = ACTIONS(2929), - [anon_sym__Noreturn] = ACTIONS(2929), - [anon_sym_noreturn] = ACTIONS(2929), - [anon_sym_mutable] = ACTIONS(2929), - [anon_sym_constinit] = ACTIONS(2929), - [anon_sym_consteval] = ACTIONS(2929), - [sym_primitive_type] = ACTIONS(2929), - [anon_sym_enum] = ACTIONS(2929), - [anon_sym_class] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2929), - [anon_sym_union] = ACTIONS(2929), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_else] = ACTIONS(2929), - [anon_sym_switch] = ACTIONS(2929), - [anon_sym_case] = ACTIONS(2929), - [anon_sym_default] = ACTIONS(2929), - [anon_sym_while] = ACTIONS(2929), - [anon_sym_do] = ACTIONS(2929), - [anon_sym_for] = ACTIONS(2929), - [anon_sym_return] = ACTIONS(2929), - [anon_sym_break] = ACTIONS(2929), - [anon_sym_continue] = ACTIONS(2929), - [anon_sym_goto] = ACTIONS(2929), - [anon_sym_not] = ACTIONS(2929), - [anon_sym_compl] = ACTIONS(2929), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_sizeof] = ACTIONS(2929), - [anon_sym___alignof__] = ACTIONS(2929), - [anon_sym___alignof] = ACTIONS(2929), - [anon_sym__alignof] = ACTIONS(2929), - [anon_sym_alignof] = ACTIONS(2929), - [anon_sym__Alignof] = ACTIONS(2929), - [anon_sym_offsetof] = ACTIONS(2929), - [anon_sym__Generic] = ACTIONS(2929), - [anon_sym_asm] = ACTIONS(2929), - [anon_sym___asm__] = ACTIONS(2929), - [sym_number_literal] = ACTIONS(2931), - [anon_sym_L_SQUOTE] = ACTIONS(2931), - [anon_sym_u_SQUOTE] = ACTIONS(2931), - [anon_sym_U_SQUOTE] = ACTIONS(2931), - [anon_sym_u8_SQUOTE] = ACTIONS(2931), - [anon_sym_SQUOTE] = ACTIONS(2931), - [anon_sym_L_DQUOTE] = ACTIONS(2931), - [anon_sym_u_DQUOTE] = ACTIONS(2931), - [anon_sym_U_DQUOTE] = ACTIONS(2931), - [anon_sym_u8_DQUOTE] = ACTIONS(2931), - [anon_sym_DQUOTE] = ACTIONS(2931), - [sym_true] = ACTIONS(2929), - [sym_false] = ACTIONS(2929), - [anon_sym_NULL] = ACTIONS(2929), - [anon_sym_nullptr] = ACTIONS(2929), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2929), - [anon_sym_decltype] = ACTIONS(2929), - [anon_sym_virtual] = ACTIONS(2929), - [anon_sym_alignas] = ACTIONS(2929), - [anon_sym_explicit] = ACTIONS(2929), - [anon_sym_typename] = ACTIONS(2929), - [anon_sym_template] = ACTIONS(2929), - [anon_sym_operator] = ACTIONS(2929), - [anon_sym_try] = ACTIONS(2929), - [anon_sym_delete] = ACTIONS(2929), - [anon_sym_throw] = ACTIONS(2929), - [anon_sym_namespace] = ACTIONS(2929), - [anon_sym_using] = ACTIONS(2929), - [anon_sym_static_assert] = ACTIONS(2929), - [anon_sym_concept] = ACTIONS(2929), - [anon_sym_co_return] = ACTIONS(2929), - [anon_sym_co_yield] = ACTIONS(2929), - [anon_sym_R_DQUOTE] = ACTIONS(2931), - [anon_sym_LR_DQUOTE] = ACTIONS(2931), - [anon_sym_uR_DQUOTE] = ACTIONS(2931), - [anon_sym_UR_DQUOTE] = ACTIONS(2931), - [anon_sym_u8R_DQUOTE] = ACTIONS(2931), - [anon_sym_co_await] = ACTIONS(2929), - [anon_sym_new] = ACTIONS(2929), - [anon_sym_requires] = ACTIONS(2929), - [sym_this] = ACTIONS(2929), + [497] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [435] = { - [sym_identifier] = ACTIONS(2933), - [aux_sym_preproc_include_token1] = ACTIONS(2933), - [aux_sym_preproc_def_token1] = ACTIONS(2933), - [aux_sym_preproc_if_token1] = ACTIONS(2933), - [aux_sym_preproc_if_token2] = ACTIONS(2933), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2933), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2933), - [aux_sym_preproc_else_token1] = ACTIONS(2933), - [aux_sym_preproc_elif_token1] = ACTIONS(2933), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2933), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2933), - [sym_preproc_directive] = ACTIONS(2933), - [anon_sym_LPAREN2] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2933), - [anon_sym_SEMI] = ACTIONS(2935), - [anon_sym___extension__] = ACTIONS(2933), - [anon_sym_typedef] = ACTIONS(2933), - [anon_sym_extern] = ACTIONS(2933), - [anon_sym___attribute__] = ACTIONS(2933), - [anon_sym_COLON_COLON] = ACTIONS(2935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), - [anon_sym___declspec] = ACTIONS(2933), - [anon_sym___based] = ACTIONS(2933), - [anon_sym___cdecl] = ACTIONS(2933), - [anon_sym___clrcall] = ACTIONS(2933), - [anon_sym___stdcall] = ACTIONS(2933), - [anon_sym___fastcall] = ACTIONS(2933), - [anon_sym___thiscall] = ACTIONS(2933), - [anon_sym___vectorcall] = ACTIONS(2933), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_signed] = ACTIONS(2933), - [anon_sym_unsigned] = ACTIONS(2933), - [anon_sym_long] = ACTIONS(2933), - [anon_sym_short] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_static] = ACTIONS(2933), - [anon_sym_register] = ACTIONS(2933), - [anon_sym_inline] = ACTIONS(2933), - [anon_sym___inline] = ACTIONS(2933), - [anon_sym___inline__] = ACTIONS(2933), - [anon_sym___forceinline] = ACTIONS(2933), - [anon_sym_thread_local] = ACTIONS(2933), - [anon_sym___thread] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2933), - [anon_sym_constexpr] = ACTIONS(2933), - [anon_sym_volatile] = ACTIONS(2933), - [anon_sym_restrict] = ACTIONS(2933), - [anon_sym___restrict__] = ACTIONS(2933), - [anon_sym__Atomic] = ACTIONS(2933), - [anon_sym__Noreturn] = ACTIONS(2933), - [anon_sym_noreturn] = ACTIONS(2933), - [anon_sym_mutable] = ACTIONS(2933), - [anon_sym_constinit] = ACTIONS(2933), - [anon_sym_consteval] = ACTIONS(2933), - [sym_primitive_type] = ACTIONS(2933), - [anon_sym_enum] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2933), - [anon_sym_union] = ACTIONS(2933), - [anon_sym_if] = ACTIONS(2933), - [anon_sym_else] = ACTIONS(2933), - [anon_sym_switch] = ACTIONS(2933), - [anon_sym_case] = ACTIONS(2933), - [anon_sym_default] = ACTIONS(2933), - [anon_sym_while] = ACTIONS(2933), - [anon_sym_do] = ACTIONS(2933), - [anon_sym_for] = ACTIONS(2933), - [anon_sym_return] = ACTIONS(2933), - [anon_sym_break] = ACTIONS(2933), - [anon_sym_continue] = ACTIONS(2933), - [anon_sym_goto] = ACTIONS(2933), - [anon_sym_not] = ACTIONS(2933), - [anon_sym_compl] = ACTIONS(2933), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_sizeof] = ACTIONS(2933), - [anon_sym___alignof__] = ACTIONS(2933), - [anon_sym___alignof] = ACTIONS(2933), - [anon_sym__alignof] = ACTIONS(2933), - [anon_sym_alignof] = ACTIONS(2933), - [anon_sym__Alignof] = ACTIONS(2933), - [anon_sym_offsetof] = ACTIONS(2933), - [anon_sym__Generic] = ACTIONS(2933), - [anon_sym_asm] = ACTIONS(2933), - [anon_sym___asm__] = ACTIONS(2933), - [sym_number_literal] = ACTIONS(2935), - [anon_sym_L_SQUOTE] = ACTIONS(2935), - [anon_sym_u_SQUOTE] = ACTIONS(2935), - [anon_sym_U_SQUOTE] = ACTIONS(2935), - [anon_sym_u8_SQUOTE] = ACTIONS(2935), - [anon_sym_SQUOTE] = ACTIONS(2935), - [anon_sym_L_DQUOTE] = ACTIONS(2935), - [anon_sym_u_DQUOTE] = ACTIONS(2935), - [anon_sym_U_DQUOTE] = ACTIONS(2935), - [anon_sym_u8_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [sym_true] = ACTIONS(2933), - [sym_false] = ACTIONS(2933), - [anon_sym_NULL] = ACTIONS(2933), - [anon_sym_nullptr] = ACTIONS(2933), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2933), - [anon_sym_decltype] = ACTIONS(2933), - [anon_sym_virtual] = ACTIONS(2933), - [anon_sym_alignas] = ACTIONS(2933), - [anon_sym_explicit] = ACTIONS(2933), - [anon_sym_typename] = ACTIONS(2933), - [anon_sym_template] = ACTIONS(2933), - [anon_sym_operator] = ACTIONS(2933), - [anon_sym_try] = ACTIONS(2933), - [anon_sym_delete] = ACTIONS(2933), - [anon_sym_throw] = ACTIONS(2933), - [anon_sym_namespace] = ACTIONS(2933), - [anon_sym_using] = ACTIONS(2933), - [anon_sym_static_assert] = ACTIONS(2933), - [anon_sym_concept] = ACTIONS(2933), - [anon_sym_co_return] = ACTIONS(2933), - [anon_sym_co_yield] = ACTIONS(2933), - [anon_sym_R_DQUOTE] = ACTIONS(2935), - [anon_sym_LR_DQUOTE] = ACTIONS(2935), - [anon_sym_uR_DQUOTE] = ACTIONS(2935), - [anon_sym_UR_DQUOTE] = ACTIONS(2935), - [anon_sym_u8R_DQUOTE] = ACTIONS(2935), - [anon_sym_co_await] = ACTIONS(2933), - [anon_sym_new] = ACTIONS(2933), - [anon_sym_requires] = ACTIONS(2933), - [sym_this] = ACTIONS(2933), + [498] = { + [sym_identifier] = ACTIONS(2880), + [aux_sym_preproc_include_token1] = ACTIONS(2880), + [aux_sym_preproc_def_token1] = ACTIONS(2880), + [aux_sym_preproc_if_token1] = ACTIONS(2880), + [aux_sym_preproc_if_token2] = ACTIONS(2880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2880), + [aux_sym_preproc_else_token1] = ACTIONS(2880), + [aux_sym_preproc_elif_token1] = ACTIONS(2880), + [sym_preproc_directive] = ACTIONS(2880), + [anon_sym_LPAREN2] = ACTIONS(2882), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_SEMI] = ACTIONS(2882), + [anon_sym___extension__] = ACTIONS(2880), + [anon_sym_typedef] = ACTIONS(2880), + [anon_sym_extern] = ACTIONS(2880), + [anon_sym___attribute__] = ACTIONS(2880), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2882), + [anon_sym___declspec] = ACTIONS(2880), + [anon_sym___based] = ACTIONS(2880), + [anon_sym___cdecl] = ACTIONS(2880), + [anon_sym___clrcall] = ACTIONS(2880), + [anon_sym___stdcall] = ACTIONS(2880), + [anon_sym___fastcall] = ACTIONS(2880), + [anon_sym___thiscall] = ACTIONS(2880), + [anon_sym___vectorcall] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_signed] = ACTIONS(2880), + [anon_sym_unsigned] = ACTIONS(2880), + [anon_sym_long] = ACTIONS(2880), + [anon_sym_short] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_static] = ACTIONS(2880), + [anon_sym_register] = ACTIONS(2880), + [anon_sym_inline] = ACTIONS(2880), + [anon_sym___inline] = ACTIONS(2880), + [anon_sym___inline__] = ACTIONS(2880), + [anon_sym___forceinline] = ACTIONS(2880), + [anon_sym_thread_local] = ACTIONS(2880), + [anon_sym___thread] = ACTIONS(2880), + [anon_sym_const] = ACTIONS(2880), + [anon_sym_constexpr] = ACTIONS(2880), + [anon_sym_volatile] = ACTIONS(2880), + [anon_sym_restrict] = ACTIONS(2880), + [anon_sym___restrict__] = ACTIONS(2880), + [anon_sym__Atomic] = ACTIONS(2880), + [anon_sym__Noreturn] = ACTIONS(2880), + [anon_sym_noreturn] = ACTIONS(2880), + [anon_sym_mutable] = ACTIONS(2880), + [anon_sym_constinit] = ACTIONS(2880), + [anon_sym_consteval] = ACTIONS(2880), + [sym_primitive_type] = ACTIONS(2880), + [anon_sym_enum] = ACTIONS(2880), + [anon_sym_class] = ACTIONS(2880), + [anon_sym_struct] = ACTIONS(2880), + [anon_sym_union] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_else] = ACTIONS(2880), + [anon_sym_switch] = ACTIONS(2880), + [anon_sym_case] = ACTIONS(2880), + [anon_sym_default] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_break] = ACTIONS(2880), + [anon_sym_continue] = ACTIONS(2880), + [anon_sym_goto] = ACTIONS(2880), + [anon_sym_not] = ACTIONS(2880), + [anon_sym_compl] = ACTIONS(2880), + [anon_sym_DASH_DASH] = ACTIONS(2882), + [anon_sym_PLUS_PLUS] = ACTIONS(2882), + [anon_sym_sizeof] = ACTIONS(2880), + [anon_sym___alignof__] = ACTIONS(2880), + [anon_sym___alignof] = ACTIONS(2880), + [anon_sym__alignof] = ACTIONS(2880), + [anon_sym_alignof] = ACTIONS(2880), + [anon_sym__Alignof] = ACTIONS(2880), + [anon_sym_offsetof] = ACTIONS(2880), + [anon_sym__Generic] = ACTIONS(2880), + [anon_sym_asm] = ACTIONS(2880), + [anon_sym___asm__] = ACTIONS(2880), + [sym_number_literal] = ACTIONS(2882), + [anon_sym_L_SQUOTE] = ACTIONS(2882), + [anon_sym_u_SQUOTE] = ACTIONS(2882), + [anon_sym_U_SQUOTE] = ACTIONS(2882), + [anon_sym_u8_SQUOTE] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_L_DQUOTE] = ACTIONS(2882), + [anon_sym_u_DQUOTE] = ACTIONS(2882), + [anon_sym_U_DQUOTE] = ACTIONS(2882), + [anon_sym_u8_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE] = ACTIONS(2882), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [anon_sym_NULL] = ACTIONS(2880), + [anon_sym_nullptr] = ACTIONS(2880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2880), + [anon_sym_decltype] = ACTIONS(2880), + [anon_sym_virtual] = ACTIONS(2880), + [anon_sym_alignas] = ACTIONS(2880), + [anon_sym_explicit] = ACTIONS(2880), + [anon_sym_typename] = ACTIONS(2880), + [anon_sym_template] = ACTIONS(2880), + [anon_sym_operator] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_delete] = ACTIONS(2880), + [anon_sym_throw] = ACTIONS(2880), + [anon_sym_namespace] = ACTIONS(2880), + [anon_sym_using] = ACTIONS(2880), + [anon_sym_static_assert] = ACTIONS(2880), + [anon_sym_concept] = ACTIONS(2880), + [anon_sym_co_return] = ACTIONS(2880), + [anon_sym_co_yield] = ACTIONS(2880), + [anon_sym_R_DQUOTE] = ACTIONS(2882), + [anon_sym_LR_DQUOTE] = ACTIONS(2882), + [anon_sym_uR_DQUOTE] = ACTIONS(2882), + [anon_sym_UR_DQUOTE] = ACTIONS(2882), + [anon_sym_u8R_DQUOTE] = ACTIONS(2882), + [anon_sym_co_await] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_requires] = ACTIONS(2880), + [sym_this] = ACTIONS(2880), }, - [436] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [499] = { + [sym_identifier] = ACTIONS(2844), + [aux_sym_preproc_include_token1] = ACTIONS(2844), + [aux_sym_preproc_def_token1] = ACTIONS(2844), + [aux_sym_preproc_if_token1] = ACTIONS(2844), + [aux_sym_preproc_if_token2] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2844), + [aux_sym_preproc_else_token1] = ACTIONS(2844), + [aux_sym_preproc_elif_token1] = ACTIONS(2844), + [sym_preproc_directive] = ACTIONS(2844), + [anon_sym_LPAREN2] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_PLUS] = ACTIONS(2844), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_AMP_AMP] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym___extension__] = ACTIONS(2844), + [anon_sym_typedef] = ACTIONS(2844), + [anon_sym_extern] = ACTIONS(2844), + [anon_sym___attribute__] = ACTIONS(2844), + [anon_sym_COLON_COLON] = ACTIONS(2846), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2846), + [anon_sym___declspec] = ACTIONS(2844), + [anon_sym___based] = ACTIONS(2844), + [anon_sym___cdecl] = ACTIONS(2844), + [anon_sym___clrcall] = ACTIONS(2844), + [anon_sym___stdcall] = ACTIONS(2844), + [anon_sym___fastcall] = ACTIONS(2844), + [anon_sym___thiscall] = ACTIONS(2844), + [anon_sym___vectorcall] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_signed] = ACTIONS(2844), + [anon_sym_unsigned] = ACTIONS(2844), + [anon_sym_long] = ACTIONS(2844), + [anon_sym_short] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_register] = ACTIONS(2844), + [anon_sym_inline] = ACTIONS(2844), + [anon_sym___inline] = ACTIONS(2844), + [anon_sym___inline__] = ACTIONS(2844), + [anon_sym___forceinline] = ACTIONS(2844), + [anon_sym_thread_local] = ACTIONS(2844), + [anon_sym___thread] = ACTIONS(2844), + [anon_sym_const] = ACTIONS(2844), + [anon_sym_constexpr] = ACTIONS(2844), + [anon_sym_volatile] = ACTIONS(2844), + [anon_sym_restrict] = ACTIONS(2844), + [anon_sym___restrict__] = ACTIONS(2844), + [anon_sym__Atomic] = ACTIONS(2844), + [anon_sym__Noreturn] = ACTIONS(2844), + [anon_sym_noreturn] = ACTIONS(2844), + [anon_sym_mutable] = ACTIONS(2844), + [anon_sym_constinit] = ACTIONS(2844), + [anon_sym_consteval] = ACTIONS(2844), + [sym_primitive_type] = ACTIONS(2844), + [anon_sym_enum] = ACTIONS(2844), + [anon_sym_class] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2844), + [anon_sym_union] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_else] = ACTIONS(2844), + [anon_sym_switch] = ACTIONS(2844), + [anon_sym_case] = ACTIONS(2844), + [anon_sym_default] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_break] = ACTIONS(2844), + [anon_sym_continue] = ACTIONS(2844), + [anon_sym_goto] = ACTIONS(2844), + [anon_sym_not] = ACTIONS(2844), + [anon_sym_compl] = ACTIONS(2844), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_sizeof] = ACTIONS(2844), + [anon_sym___alignof__] = ACTIONS(2844), + [anon_sym___alignof] = ACTIONS(2844), + [anon_sym__alignof] = ACTIONS(2844), + [anon_sym_alignof] = ACTIONS(2844), + [anon_sym__Alignof] = ACTIONS(2844), + [anon_sym_offsetof] = ACTIONS(2844), + [anon_sym__Generic] = ACTIONS(2844), + [anon_sym_asm] = ACTIONS(2844), + [anon_sym___asm__] = ACTIONS(2844), + [sym_number_literal] = ACTIONS(2846), + [anon_sym_L_SQUOTE] = ACTIONS(2846), + [anon_sym_u_SQUOTE] = ACTIONS(2846), + [anon_sym_U_SQUOTE] = ACTIONS(2846), + [anon_sym_u8_SQUOTE] = ACTIONS(2846), + [anon_sym_SQUOTE] = ACTIONS(2846), + [anon_sym_L_DQUOTE] = ACTIONS(2846), + [anon_sym_u_DQUOTE] = ACTIONS(2846), + [anon_sym_U_DQUOTE] = ACTIONS(2846), + [anon_sym_u8_DQUOTE] = ACTIONS(2846), + [anon_sym_DQUOTE] = ACTIONS(2846), + [sym_true] = ACTIONS(2844), + [sym_false] = ACTIONS(2844), + [anon_sym_NULL] = ACTIONS(2844), + [anon_sym_nullptr] = ACTIONS(2844), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), - }, - [437] = { - [sym_identifier] = ACTIONS(2937), - [aux_sym_preproc_include_token1] = ACTIONS(2937), - [aux_sym_preproc_def_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token2] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), - [aux_sym_preproc_else_token1] = ACTIONS(2937), - [aux_sym_preproc_elif_token1] = ACTIONS(2937), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2937), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2937), - [sym_preproc_directive] = ACTIONS(2937), - [anon_sym_LPAREN2] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2939), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym_typedef] = ACTIONS(2937), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), - [anon_sym___declspec] = ACTIONS(2937), - [anon_sym___based] = ACTIONS(2937), - [anon_sym___cdecl] = ACTIONS(2937), - [anon_sym___clrcall] = ACTIONS(2937), - [anon_sym___stdcall] = ACTIONS(2937), - [anon_sym___fastcall] = ACTIONS(2937), - [anon_sym___thiscall] = ACTIONS(2937), - [anon_sym___vectorcall] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_signed] = ACTIONS(2937), - [anon_sym_unsigned] = ACTIONS(2937), - [anon_sym_long] = ACTIONS(2937), - [anon_sym_short] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(2937), - [anon_sym_register] = ACTIONS(2937), - [anon_sym_inline] = ACTIONS(2937), - [anon_sym___inline] = ACTIONS(2937), - [anon_sym___inline__] = ACTIONS(2937), - [anon_sym___forceinline] = ACTIONS(2937), - [anon_sym_thread_local] = ACTIONS(2937), - [anon_sym___thread] = ACTIONS(2937), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_class] = ACTIONS(2937), - [anon_sym_struct] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_if] = ACTIONS(2937), - [anon_sym_else] = ACTIONS(2937), - [anon_sym_switch] = ACTIONS(2937), - [anon_sym_case] = ACTIONS(2937), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_while] = ACTIONS(2937), - [anon_sym_do] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2937), - [anon_sym_break] = ACTIONS(2937), - [anon_sym_continue] = ACTIONS(2937), - [anon_sym_goto] = ACTIONS(2937), - [anon_sym_not] = ACTIONS(2937), - [anon_sym_compl] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_sizeof] = ACTIONS(2937), - [anon_sym___alignof__] = ACTIONS(2937), - [anon_sym___alignof] = ACTIONS(2937), - [anon_sym__alignof] = ACTIONS(2937), - [anon_sym_alignof] = ACTIONS(2937), - [anon_sym__Alignof] = ACTIONS(2937), - [anon_sym_offsetof] = ACTIONS(2937), - [anon_sym__Generic] = ACTIONS(2937), - [anon_sym_asm] = ACTIONS(2937), - [anon_sym___asm__] = ACTIONS(2937), - [sym_number_literal] = ACTIONS(2939), - [anon_sym_L_SQUOTE] = ACTIONS(2939), - [anon_sym_u_SQUOTE] = ACTIONS(2939), - [anon_sym_U_SQUOTE] = ACTIONS(2939), - [anon_sym_u8_SQUOTE] = ACTIONS(2939), - [anon_sym_SQUOTE] = ACTIONS(2939), - [anon_sym_L_DQUOTE] = ACTIONS(2939), - [anon_sym_u_DQUOTE] = ACTIONS(2939), - [anon_sym_U_DQUOTE] = ACTIONS(2939), - [anon_sym_u8_DQUOTE] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym_true] = ACTIONS(2937), - [sym_false] = ACTIONS(2937), - [anon_sym_NULL] = ACTIONS(2937), - [anon_sym_nullptr] = ACTIONS(2937), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2937), - [anon_sym_decltype] = ACTIONS(2937), - [anon_sym_virtual] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2937), - [anon_sym_explicit] = ACTIONS(2937), - [anon_sym_typename] = ACTIONS(2937), - [anon_sym_template] = ACTIONS(2937), - [anon_sym_operator] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2937), - [anon_sym_delete] = ACTIONS(2937), - [anon_sym_throw] = ACTIONS(2937), - [anon_sym_namespace] = ACTIONS(2937), - [anon_sym_using] = ACTIONS(2937), - [anon_sym_static_assert] = ACTIONS(2937), - [anon_sym_concept] = ACTIONS(2937), - [anon_sym_co_return] = ACTIONS(2937), - [anon_sym_co_yield] = ACTIONS(2937), - [anon_sym_R_DQUOTE] = ACTIONS(2939), - [anon_sym_LR_DQUOTE] = ACTIONS(2939), - [anon_sym_uR_DQUOTE] = ACTIONS(2939), - [anon_sym_UR_DQUOTE] = ACTIONS(2939), - [anon_sym_u8R_DQUOTE] = ACTIONS(2939), - [anon_sym_co_await] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2937), - [anon_sym_requires] = ACTIONS(2937), - [sym_this] = ACTIONS(2937), - }, - [438] = { - [sym_identifier] = ACTIONS(2941), - [aux_sym_preproc_include_token1] = ACTIONS(2941), - [aux_sym_preproc_def_token1] = ACTIONS(2941), - [aux_sym_preproc_if_token1] = ACTIONS(2941), - [aux_sym_preproc_if_token2] = ACTIONS(2941), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2941), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2941), - [aux_sym_preproc_else_token1] = ACTIONS(2941), - [aux_sym_preproc_elif_token1] = ACTIONS(2941), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2941), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2941), - [sym_preproc_directive] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2943), - [anon_sym___extension__] = ACTIONS(2941), - [anon_sym_typedef] = ACTIONS(2941), - [anon_sym_extern] = ACTIONS(2941), - [anon_sym___attribute__] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2943), - [anon_sym___declspec] = ACTIONS(2941), - [anon_sym___based] = ACTIONS(2941), - [anon_sym___cdecl] = ACTIONS(2941), - [anon_sym___clrcall] = ACTIONS(2941), - [anon_sym___stdcall] = ACTIONS(2941), - [anon_sym___fastcall] = ACTIONS(2941), - [anon_sym___thiscall] = ACTIONS(2941), - [anon_sym___vectorcall] = ACTIONS(2941), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_signed] = ACTIONS(2941), - [anon_sym_unsigned] = ACTIONS(2941), - [anon_sym_long] = ACTIONS(2941), - [anon_sym_short] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_static] = ACTIONS(2941), - [anon_sym_register] = ACTIONS(2941), - [anon_sym_inline] = ACTIONS(2941), - [anon_sym___inline] = ACTIONS(2941), - [anon_sym___inline__] = ACTIONS(2941), - [anon_sym___forceinline] = ACTIONS(2941), - [anon_sym_thread_local] = ACTIONS(2941), - [anon_sym___thread] = ACTIONS(2941), - [anon_sym_const] = ACTIONS(2941), - [anon_sym_constexpr] = ACTIONS(2941), - [anon_sym_volatile] = ACTIONS(2941), - [anon_sym_restrict] = ACTIONS(2941), - [anon_sym___restrict__] = ACTIONS(2941), - [anon_sym__Atomic] = ACTIONS(2941), - [anon_sym__Noreturn] = ACTIONS(2941), - [anon_sym_noreturn] = ACTIONS(2941), - [anon_sym_mutable] = ACTIONS(2941), - [anon_sym_constinit] = ACTIONS(2941), - [anon_sym_consteval] = ACTIONS(2941), - [sym_primitive_type] = ACTIONS(2941), - [anon_sym_enum] = ACTIONS(2941), - [anon_sym_class] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2941), - [anon_sym_union] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_else] = ACTIONS(2941), - [anon_sym_switch] = ACTIONS(2941), - [anon_sym_case] = ACTIONS(2941), - [anon_sym_default] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_break] = ACTIONS(2941), - [anon_sym_continue] = ACTIONS(2941), - [anon_sym_goto] = ACTIONS(2941), - [anon_sym_not] = ACTIONS(2941), - [anon_sym_compl] = ACTIONS(2941), - [anon_sym_DASH_DASH] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2943), - [anon_sym_sizeof] = ACTIONS(2941), - [anon_sym___alignof__] = ACTIONS(2941), - [anon_sym___alignof] = ACTIONS(2941), - [anon_sym__alignof] = ACTIONS(2941), - [anon_sym_alignof] = ACTIONS(2941), - [anon_sym__Alignof] = ACTIONS(2941), - [anon_sym_offsetof] = ACTIONS(2941), - [anon_sym__Generic] = ACTIONS(2941), - [anon_sym_asm] = ACTIONS(2941), - [anon_sym___asm__] = ACTIONS(2941), - [sym_number_literal] = ACTIONS(2943), - [anon_sym_L_SQUOTE] = ACTIONS(2943), - [anon_sym_u_SQUOTE] = ACTIONS(2943), - [anon_sym_U_SQUOTE] = ACTIONS(2943), - [anon_sym_u8_SQUOTE] = ACTIONS(2943), - [anon_sym_SQUOTE] = ACTIONS(2943), - [anon_sym_L_DQUOTE] = ACTIONS(2943), - [anon_sym_u_DQUOTE] = ACTIONS(2943), - [anon_sym_U_DQUOTE] = ACTIONS(2943), - [anon_sym_u8_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE] = ACTIONS(2943), - [sym_true] = ACTIONS(2941), - [sym_false] = ACTIONS(2941), - [anon_sym_NULL] = ACTIONS(2941), - [anon_sym_nullptr] = ACTIONS(2941), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2941), - [anon_sym_decltype] = ACTIONS(2941), - [anon_sym_virtual] = ACTIONS(2941), - [anon_sym_alignas] = ACTIONS(2941), - [anon_sym_explicit] = ACTIONS(2941), - [anon_sym_typename] = ACTIONS(2941), - [anon_sym_template] = ACTIONS(2941), - [anon_sym_operator] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_delete] = ACTIONS(2941), - [anon_sym_throw] = ACTIONS(2941), - [anon_sym_namespace] = ACTIONS(2941), - [anon_sym_using] = ACTIONS(2941), - [anon_sym_static_assert] = ACTIONS(2941), - [anon_sym_concept] = ACTIONS(2941), - [anon_sym_co_return] = ACTIONS(2941), - [anon_sym_co_yield] = ACTIONS(2941), - [anon_sym_R_DQUOTE] = ACTIONS(2943), - [anon_sym_LR_DQUOTE] = ACTIONS(2943), - [anon_sym_uR_DQUOTE] = ACTIONS(2943), - [anon_sym_UR_DQUOTE] = ACTIONS(2943), - [anon_sym_u8R_DQUOTE] = ACTIONS(2943), - [anon_sym_co_await] = ACTIONS(2941), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_requires] = ACTIONS(2941), - [sym_this] = ACTIONS(2941), + [sym_auto] = ACTIONS(2844), + [anon_sym_decltype] = ACTIONS(2844), + [anon_sym_virtual] = ACTIONS(2844), + [anon_sym_alignas] = ACTIONS(2844), + [anon_sym_explicit] = ACTIONS(2844), + [anon_sym_typename] = ACTIONS(2844), + [anon_sym_template] = ACTIONS(2844), + [anon_sym_operator] = ACTIONS(2844), + [anon_sym_try] = ACTIONS(2844), + [anon_sym_delete] = ACTIONS(2844), + [anon_sym_throw] = ACTIONS(2844), + [anon_sym_namespace] = ACTIONS(2844), + [anon_sym_using] = ACTIONS(2844), + [anon_sym_static_assert] = ACTIONS(2844), + [anon_sym_concept] = ACTIONS(2844), + [anon_sym_co_return] = ACTIONS(2844), + [anon_sym_co_yield] = ACTIONS(2844), + [anon_sym_R_DQUOTE] = ACTIONS(2846), + [anon_sym_LR_DQUOTE] = ACTIONS(2846), + [anon_sym_uR_DQUOTE] = ACTIONS(2846), + [anon_sym_UR_DQUOTE] = ACTIONS(2846), + [anon_sym_u8R_DQUOTE] = ACTIONS(2846), + [anon_sym_co_await] = ACTIONS(2844), + [anon_sym_new] = ACTIONS(2844), + [anon_sym_requires] = ACTIONS(2844), + [sym_this] = ACTIONS(2844), }, - [439] = { - [sym_identifier] = ACTIONS(2945), - [aux_sym_preproc_include_token1] = ACTIONS(2945), - [aux_sym_preproc_def_token1] = ACTIONS(2945), - [aux_sym_preproc_if_token1] = ACTIONS(2945), - [aux_sym_preproc_if_token2] = ACTIONS(2945), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2945), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2945), - [aux_sym_preproc_else_token1] = ACTIONS(2945), - [aux_sym_preproc_elif_token1] = ACTIONS(2945), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2945), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2945), - [sym_preproc_directive] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2945), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2945), - [anon_sym_SEMI] = ACTIONS(2947), - [anon_sym___extension__] = ACTIONS(2945), - [anon_sym_typedef] = ACTIONS(2945), - [anon_sym_extern] = ACTIONS(2945), - [anon_sym___attribute__] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2947), - [anon_sym___declspec] = ACTIONS(2945), - [anon_sym___based] = ACTIONS(2945), - [anon_sym___cdecl] = ACTIONS(2945), - [anon_sym___clrcall] = ACTIONS(2945), - [anon_sym___stdcall] = ACTIONS(2945), - [anon_sym___fastcall] = ACTIONS(2945), - [anon_sym___thiscall] = ACTIONS(2945), - [anon_sym___vectorcall] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_signed] = ACTIONS(2945), - [anon_sym_unsigned] = ACTIONS(2945), - [anon_sym_long] = ACTIONS(2945), - [anon_sym_short] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_static] = ACTIONS(2945), - [anon_sym_register] = ACTIONS(2945), - [anon_sym_inline] = ACTIONS(2945), - [anon_sym___inline] = ACTIONS(2945), - [anon_sym___inline__] = ACTIONS(2945), - [anon_sym___forceinline] = ACTIONS(2945), - [anon_sym_thread_local] = ACTIONS(2945), - [anon_sym___thread] = ACTIONS(2945), - [anon_sym_const] = ACTIONS(2945), - [anon_sym_constexpr] = ACTIONS(2945), - [anon_sym_volatile] = ACTIONS(2945), - [anon_sym_restrict] = ACTIONS(2945), - [anon_sym___restrict__] = ACTIONS(2945), - [anon_sym__Atomic] = ACTIONS(2945), - [anon_sym__Noreturn] = ACTIONS(2945), - [anon_sym_noreturn] = ACTIONS(2945), - [anon_sym_mutable] = ACTIONS(2945), - [anon_sym_constinit] = ACTIONS(2945), - [anon_sym_consteval] = ACTIONS(2945), - [sym_primitive_type] = ACTIONS(2945), - [anon_sym_enum] = ACTIONS(2945), - [anon_sym_class] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2945), - [anon_sym_union] = ACTIONS(2945), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(2945), - [anon_sym_switch] = ACTIONS(2945), - [anon_sym_case] = ACTIONS(2945), - [anon_sym_default] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_break] = ACTIONS(2945), - [anon_sym_continue] = ACTIONS(2945), - [anon_sym_goto] = ACTIONS(2945), - [anon_sym_not] = ACTIONS(2945), - [anon_sym_compl] = ACTIONS(2945), - [anon_sym_DASH_DASH] = ACTIONS(2947), - [anon_sym_PLUS_PLUS] = ACTIONS(2947), - [anon_sym_sizeof] = ACTIONS(2945), - [anon_sym___alignof__] = ACTIONS(2945), - [anon_sym___alignof] = ACTIONS(2945), - [anon_sym__alignof] = ACTIONS(2945), - [anon_sym_alignof] = ACTIONS(2945), - [anon_sym__Alignof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2945), - [anon_sym__Generic] = ACTIONS(2945), - [anon_sym_asm] = ACTIONS(2945), - [anon_sym___asm__] = ACTIONS(2945), - [sym_number_literal] = ACTIONS(2947), - [anon_sym_L_SQUOTE] = ACTIONS(2947), - [anon_sym_u_SQUOTE] = ACTIONS(2947), - [anon_sym_U_SQUOTE] = ACTIONS(2947), - [anon_sym_u8_SQUOTE] = ACTIONS(2947), - [anon_sym_SQUOTE] = ACTIONS(2947), - [anon_sym_L_DQUOTE] = ACTIONS(2947), - [anon_sym_u_DQUOTE] = ACTIONS(2947), - [anon_sym_U_DQUOTE] = ACTIONS(2947), - [anon_sym_u8_DQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(2947), - [sym_true] = ACTIONS(2945), - [sym_false] = ACTIONS(2945), - [anon_sym_NULL] = ACTIONS(2945), - [anon_sym_nullptr] = ACTIONS(2945), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2945), - [anon_sym_decltype] = ACTIONS(2945), - [anon_sym_virtual] = ACTIONS(2945), - [anon_sym_alignas] = ACTIONS(2945), - [anon_sym_explicit] = ACTIONS(2945), - [anon_sym_typename] = ACTIONS(2945), - [anon_sym_template] = ACTIONS(2945), - [anon_sym_operator] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_delete] = ACTIONS(2945), - [anon_sym_throw] = ACTIONS(2945), - [anon_sym_namespace] = ACTIONS(2945), - [anon_sym_using] = ACTIONS(2945), - [anon_sym_static_assert] = ACTIONS(2945), - [anon_sym_concept] = ACTIONS(2945), - [anon_sym_co_return] = ACTIONS(2945), - [anon_sym_co_yield] = ACTIONS(2945), - [anon_sym_R_DQUOTE] = ACTIONS(2947), - [anon_sym_LR_DQUOTE] = ACTIONS(2947), - [anon_sym_uR_DQUOTE] = ACTIONS(2947), - [anon_sym_UR_DQUOTE] = ACTIONS(2947), - [anon_sym_u8R_DQUOTE] = ACTIONS(2947), - [anon_sym_co_await] = ACTIONS(2945), - [anon_sym_new] = ACTIONS(2945), - [anon_sym_requires] = ACTIONS(2945), - [sym_this] = ACTIONS(2945), + [500] = { + [sym_identifier] = ACTIONS(2786), + [aux_sym_preproc_include_token1] = ACTIONS(2786), + [aux_sym_preproc_def_token1] = ACTIONS(2786), + [aux_sym_preproc_if_token1] = ACTIONS(2786), + [aux_sym_preproc_if_token2] = ACTIONS(2786), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2786), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2786), + [aux_sym_preproc_else_token1] = ACTIONS(2786), + [aux_sym_preproc_elif_token1] = ACTIONS(2786), + [sym_preproc_directive] = ACTIONS(2786), + [anon_sym_LPAREN2] = ACTIONS(2788), + [anon_sym_BANG] = ACTIONS(2788), + [anon_sym_TILDE] = ACTIONS(2788), + [anon_sym_DASH] = ACTIONS(2786), + [anon_sym_PLUS] = ACTIONS(2786), + [anon_sym_STAR] = ACTIONS(2788), + [anon_sym_AMP_AMP] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym___extension__] = ACTIONS(2786), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_extern] = ACTIONS(2786), + [anon_sym___attribute__] = ACTIONS(2786), + [anon_sym_COLON_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2788), + [anon_sym___declspec] = ACTIONS(2786), + [anon_sym___based] = ACTIONS(2786), + [anon_sym___cdecl] = ACTIONS(2786), + [anon_sym___clrcall] = ACTIONS(2786), + [anon_sym___stdcall] = ACTIONS(2786), + [anon_sym___fastcall] = ACTIONS(2786), + [anon_sym___thiscall] = ACTIONS(2786), + [anon_sym___vectorcall] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2788), + [anon_sym_signed] = ACTIONS(2786), + [anon_sym_unsigned] = ACTIONS(2786), + [anon_sym_long] = ACTIONS(2786), + [anon_sym_short] = ACTIONS(2786), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_static] = ACTIONS(2786), + [anon_sym_register] = ACTIONS(2786), + [anon_sym_inline] = ACTIONS(2786), + [anon_sym___inline] = ACTIONS(2786), + [anon_sym___inline__] = ACTIONS(2786), + [anon_sym___forceinline] = ACTIONS(2786), + [anon_sym_thread_local] = ACTIONS(2786), + [anon_sym___thread] = ACTIONS(2786), + [anon_sym_const] = ACTIONS(2786), + [anon_sym_constexpr] = ACTIONS(2786), + [anon_sym_volatile] = ACTIONS(2786), + [anon_sym_restrict] = ACTIONS(2786), + [anon_sym___restrict__] = ACTIONS(2786), + [anon_sym__Atomic] = ACTIONS(2786), + [anon_sym__Noreturn] = ACTIONS(2786), + [anon_sym_noreturn] = ACTIONS(2786), + [anon_sym_mutable] = ACTIONS(2786), + [anon_sym_constinit] = ACTIONS(2786), + [anon_sym_consteval] = ACTIONS(2786), + [sym_primitive_type] = ACTIONS(2786), + [anon_sym_enum] = ACTIONS(2786), + [anon_sym_class] = ACTIONS(2786), + [anon_sym_struct] = ACTIONS(2786), + [anon_sym_union] = ACTIONS(2786), + [anon_sym_if] = ACTIONS(2786), + [anon_sym_else] = ACTIONS(2786), + [anon_sym_switch] = ACTIONS(2786), + [anon_sym_case] = ACTIONS(2786), + [anon_sym_default] = ACTIONS(2786), + [anon_sym_while] = ACTIONS(2786), + [anon_sym_do] = ACTIONS(2786), + [anon_sym_for] = ACTIONS(2786), + [anon_sym_return] = ACTIONS(2786), + [anon_sym_break] = ACTIONS(2786), + [anon_sym_continue] = ACTIONS(2786), + [anon_sym_goto] = ACTIONS(2786), + [anon_sym_not] = ACTIONS(2786), + [anon_sym_compl] = ACTIONS(2786), + [anon_sym_DASH_DASH] = ACTIONS(2788), + [anon_sym_PLUS_PLUS] = ACTIONS(2788), + [anon_sym_sizeof] = ACTIONS(2786), + [anon_sym___alignof__] = ACTIONS(2786), + [anon_sym___alignof] = ACTIONS(2786), + [anon_sym__alignof] = ACTIONS(2786), + [anon_sym_alignof] = ACTIONS(2786), + [anon_sym__Alignof] = ACTIONS(2786), + [anon_sym_offsetof] = ACTIONS(2786), + [anon_sym__Generic] = ACTIONS(2786), + [anon_sym_asm] = ACTIONS(2786), + [anon_sym___asm__] = ACTIONS(2786), + [sym_number_literal] = ACTIONS(2788), + [anon_sym_L_SQUOTE] = ACTIONS(2788), + [anon_sym_u_SQUOTE] = ACTIONS(2788), + [anon_sym_U_SQUOTE] = ACTIONS(2788), + [anon_sym_u8_SQUOTE] = ACTIONS(2788), + [anon_sym_SQUOTE] = ACTIONS(2788), + [anon_sym_L_DQUOTE] = ACTIONS(2788), + [anon_sym_u_DQUOTE] = ACTIONS(2788), + [anon_sym_U_DQUOTE] = ACTIONS(2788), + [anon_sym_u8_DQUOTE] = ACTIONS(2788), + [anon_sym_DQUOTE] = ACTIONS(2788), + [sym_true] = ACTIONS(2786), + [sym_false] = ACTIONS(2786), + [anon_sym_NULL] = ACTIONS(2786), + [anon_sym_nullptr] = ACTIONS(2786), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2786), + [anon_sym_decltype] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(2786), + [anon_sym_alignas] = ACTIONS(2786), + [anon_sym_explicit] = ACTIONS(2786), + [anon_sym_typename] = ACTIONS(2786), + [anon_sym_template] = ACTIONS(2786), + [anon_sym_operator] = ACTIONS(2786), + [anon_sym_try] = ACTIONS(2786), + [anon_sym_delete] = ACTIONS(2786), + [anon_sym_throw] = ACTIONS(2786), + [anon_sym_namespace] = ACTIONS(2786), + [anon_sym_using] = ACTIONS(2786), + [anon_sym_static_assert] = ACTIONS(2786), + [anon_sym_concept] = ACTIONS(2786), + [anon_sym_co_return] = ACTIONS(2786), + [anon_sym_co_yield] = ACTIONS(2786), + [anon_sym_R_DQUOTE] = ACTIONS(2788), + [anon_sym_LR_DQUOTE] = ACTIONS(2788), + [anon_sym_uR_DQUOTE] = ACTIONS(2788), + [anon_sym_UR_DQUOTE] = ACTIONS(2788), + [anon_sym_u8R_DQUOTE] = ACTIONS(2788), + [anon_sym_co_await] = ACTIONS(2786), + [anon_sym_new] = ACTIONS(2786), + [anon_sym_requires] = ACTIONS(2786), + [sym_this] = ACTIONS(2786), }, - [440] = { - [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(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2949), - [anon_sym_SEMI] = ACTIONS(2951), - [anon_sym___extension__] = ACTIONS(2949), - [anon_sym_typedef] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2949), - [anon_sym___attribute__] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), - [anon_sym___declspec] = ACTIONS(2949), - [anon_sym___based] = ACTIONS(2949), - [anon_sym___cdecl] = ACTIONS(2949), - [anon_sym___clrcall] = ACTIONS(2949), - [anon_sym___stdcall] = ACTIONS(2949), - [anon_sym___fastcall] = ACTIONS(2949), - [anon_sym___thiscall] = ACTIONS(2949), - [anon_sym___vectorcall] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_signed] = ACTIONS(2949), - [anon_sym_unsigned] = ACTIONS(2949), - [anon_sym_long] = ACTIONS(2949), - [anon_sym_short] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_register] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2949), - [anon_sym___inline] = ACTIONS(2949), - [anon_sym___inline__] = ACTIONS(2949), - [anon_sym___forceinline] = ACTIONS(2949), - [anon_sym_thread_local] = ACTIONS(2949), - [anon_sym___thread] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_constexpr] = ACTIONS(2949), - [anon_sym_volatile] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2949), - [anon_sym___restrict__] = ACTIONS(2949), - [anon_sym__Atomic] = ACTIONS(2949), - [anon_sym__Noreturn] = ACTIONS(2949), - [anon_sym_noreturn] = ACTIONS(2949), - [anon_sym_mutable] = ACTIONS(2949), - [anon_sym_constinit] = ACTIONS(2949), - [anon_sym_consteval] = ACTIONS(2949), - [sym_primitive_type] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_else] = ACTIONS(2949), - [anon_sym_switch] = ACTIONS(2949), - [anon_sym_case] = ACTIONS(2949), - [anon_sym_default] = ACTIONS(2949), - [anon_sym_while] = ACTIONS(2949), - [anon_sym_do] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym_not] = ACTIONS(2949), - [anon_sym_compl] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2949), - [anon_sym___alignof__] = ACTIONS(2949), - [anon_sym___alignof] = ACTIONS(2949), - [anon_sym__alignof] = ACTIONS(2949), - [anon_sym_alignof] = ACTIONS(2949), - [anon_sym__Alignof] = ACTIONS(2949), - [anon_sym_offsetof] = ACTIONS(2949), - [anon_sym__Generic] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym___asm__] = ACTIONS(2949), - [sym_number_literal] = ACTIONS(2951), - [anon_sym_L_SQUOTE] = ACTIONS(2951), - [anon_sym_u_SQUOTE] = ACTIONS(2951), - [anon_sym_U_SQUOTE] = ACTIONS(2951), - [anon_sym_u8_SQUOTE] = ACTIONS(2951), - [anon_sym_SQUOTE] = ACTIONS(2951), - [anon_sym_L_DQUOTE] = ACTIONS(2951), - [anon_sym_u_DQUOTE] = ACTIONS(2951), - [anon_sym_U_DQUOTE] = ACTIONS(2951), - [anon_sym_u8_DQUOTE] = ACTIONS(2951), - [anon_sym_DQUOTE] = ACTIONS(2951), - [sym_true] = ACTIONS(2949), - [sym_false] = ACTIONS(2949), - [anon_sym_NULL] = ACTIONS(2949), - [anon_sym_nullptr] = ACTIONS(2949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2949), - [anon_sym_decltype] = ACTIONS(2949), - [anon_sym_virtual] = ACTIONS(2949), - [anon_sym_alignas] = ACTIONS(2949), - [anon_sym_explicit] = ACTIONS(2949), - [anon_sym_typename] = ACTIONS(2949), - [anon_sym_template] = ACTIONS(2949), - [anon_sym_operator] = ACTIONS(2949), - [anon_sym_try] = ACTIONS(2949), - [anon_sym_delete] = ACTIONS(2949), - [anon_sym_throw] = ACTIONS(2949), - [anon_sym_namespace] = ACTIONS(2949), - [anon_sym_using] = ACTIONS(2949), - [anon_sym_static_assert] = ACTIONS(2949), - [anon_sym_concept] = ACTIONS(2949), - [anon_sym_co_return] = ACTIONS(2949), - [anon_sym_co_yield] = ACTIONS(2949), - [anon_sym_R_DQUOTE] = ACTIONS(2951), - [anon_sym_LR_DQUOTE] = ACTIONS(2951), - [anon_sym_uR_DQUOTE] = ACTIONS(2951), - [anon_sym_UR_DQUOTE] = ACTIONS(2951), - [anon_sym_u8R_DQUOTE] = ACTIONS(2951), - [anon_sym_co_await] = ACTIONS(2949), - [anon_sym_new] = ACTIONS(2949), - [anon_sym_requires] = ACTIONS(2949), - [sym_this] = ACTIONS(2949), + [501] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [441] = { - [sym_identifier] = ACTIONS(2953), - [aux_sym_preproc_include_token1] = ACTIONS(2953), - [aux_sym_preproc_def_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token2] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2953), - [aux_sym_preproc_else_token1] = ACTIONS(2953), - [aux_sym_preproc_elif_token1] = ACTIONS(2953), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2953), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2953), - [sym_preproc_directive] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2955), - [anon_sym___extension__] = ACTIONS(2953), - [anon_sym_typedef] = ACTIONS(2953), - [anon_sym_extern] = ACTIONS(2953), - [anon_sym___attribute__] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), - [anon_sym___declspec] = ACTIONS(2953), - [anon_sym___based] = ACTIONS(2953), - [anon_sym___cdecl] = ACTIONS(2953), - [anon_sym___clrcall] = ACTIONS(2953), - [anon_sym___stdcall] = ACTIONS(2953), - [anon_sym___fastcall] = ACTIONS(2953), - [anon_sym___thiscall] = ACTIONS(2953), - [anon_sym___vectorcall] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_signed] = ACTIONS(2953), - [anon_sym_unsigned] = ACTIONS(2953), - [anon_sym_long] = ACTIONS(2953), - [anon_sym_short] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2953), - [anon_sym_register] = ACTIONS(2953), - [anon_sym_inline] = ACTIONS(2953), - [anon_sym___inline] = ACTIONS(2953), - [anon_sym___inline__] = ACTIONS(2953), - [anon_sym___forceinline] = ACTIONS(2953), - [anon_sym_thread_local] = ACTIONS(2953), - [anon_sym___thread] = ACTIONS(2953), - [anon_sym_const] = ACTIONS(2953), - [anon_sym_constexpr] = ACTIONS(2953), - [anon_sym_volatile] = ACTIONS(2953), - [anon_sym_restrict] = ACTIONS(2953), - [anon_sym___restrict__] = ACTIONS(2953), - [anon_sym__Atomic] = ACTIONS(2953), - [anon_sym__Noreturn] = ACTIONS(2953), - [anon_sym_noreturn] = ACTIONS(2953), - [anon_sym_mutable] = ACTIONS(2953), - [anon_sym_constinit] = ACTIONS(2953), - [anon_sym_consteval] = ACTIONS(2953), - [sym_primitive_type] = ACTIONS(2953), - [anon_sym_enum] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2953), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_union] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_else] = ACTIONS(2953), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_case] = ACTIONS(2953), - [anon_sym_default] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_break] = ACTIONS(2953), - [anon_sym_continue] = ACTIONS(2953), - [anon_sym_goto] = ACTIONS(2953), - [anon_sym_not] = ACTIONS(2953), - [anon_sym_compl] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2955), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2953), - [anon_sym___alignof] = ACTIONS(2953), - [anon_sym__alignof] = ACTIONS(2953), - [anon_sym_alignof] = ACTIONS(2953), - [anon_sym__Alignof] = ACTIONS(2953), - [anon_sym_offsetof] = ACTIONS(2953), - [anon_sym__Generic] = ACTIONS(2953), - [anon_sym_asm] = ACTIONS(2953), - [anon_sym___asm__] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(2955), - [anon_sym_L_SQUOTE] = ACTIONS(2955), - [anon_sym_u_SQUOTE] = ACTIONS(2955), - [anon_sym_U_SQUOTE] = ACTIONS(2955), - [anon_sym_u8_SQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2955), - [anon_sym_L_DQUOTE] = ACTIONS(2955), - [anon_sym_u_DQUOTE] = ACTIONS(2955), - [anon_sym_U_DQUOTE] = ACTIONS(2955), - [anon_sym_u8_DQUOTE] = ACTIONS(2955), - [anon_sym_DQUOTE] = ACTIONS(2955), - [sym_true] = ACTIONS(2953), - [sym_false] = ACTIONS(2953), - [anon_sym_NULL] = ACTIONS(2953), - [anon_sym_nullptr] = ACTIONS(2953), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2953), - [anon_sym_decltype] = ACTIONS(2953), - [anon_sym_virtual] = ACTIONS(2953), - [anon_sym_alignas] = ACTIONS(2953), - [anon_sym_explicit] = ACTIONS(2953), - [anon_sym_typename] = ACTIONS(2953), - [anon_sym_template] = ACTIONS(2953), - [anon_sym_operator] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_delete] = ACTIONS(2953), - [anon_sym_throw] = ACTIONS(2953), - [anon_sym_namespace] = ACTIONS(2953), - [anon_sym_using] = ACTIONS(2953), - [anon_sym_static_assert] = ACTIONS(2953), - [anon_sym_concept] = ACTIONS(2953), - [anon_sym_co_return] = ACTIONS(2953), - [anon_sym_co_yield] = ACTIONS(2953), - [anon_sym_R_DQUOTE] = ACTIONS(2955), - [anon_sym_LR_DQUOTE] = ACTIONS(2955), - [anon_sym_uR_DQUOTE] = ACTIONS(2955), - [anon_sym_UR_DQUOTE] = ACTIONS(2955), - [anon_sym_u8R_DQUOTE] = ACTIONS(2955), - [anon_sym_co_await] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_requires] = ACTIONS(2953), - [sym_this] = ACTIONS(2953), + [502] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [442] = { - [sym_catch_clause] = STATE(350), - [aux_sym_constructor_try_statement_repeat1] = STATE(350), - [sym_identifier] = ACTIONS(2559), - [aux_sym_preproc_include_token1] = ACTIONS(2559), - [aux_sym_preproc_def_token1] = ACTIONS(2559), - [aux_sym_preproc_if_token1] = ACTIONS(2559), - [aux_sym_preproc_if_token2] = ACTIONS(2559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), - [aux_sym_preproc_else_token1] = ACTIONS(2559), - [aux_sym_preproc_elif_token1] = ACTIONS(2559), - [sym_preproc_directive] = ACTIONS(2559), - [anon_sym_LPAREN2] = ACTIONS(2561), - [anon_sym_BANG] = ACTIONS(2561), - [anon_sym_TILDE] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2559), - [anon_sym_STAR] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2561), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2561), - [anon_sym___extension__] = ACTIONS(2559), - [anon_sym_typedef] = ACTIONS(2559), - [anon_sym_extern] = ACTIONS(2559), - [anon_sym___attribute__] = ACTIONS(2559), - [anon_sym_COLON_COLON] = ACTIONS(2561), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2559), - [anon_sym___based] = ACTIONS(2559), - [anon_sym___cdecl] = ACTIONS(2559), - [anon_sym___clrcall] = ACTIONS(2559), - [anon_sym___stdcall] = ACTIONS(2559), - [anon_sym___fastcall] = ACTIONS(2559), - [anon_sym___thiscall] = ACTIONS(2559), - [anon_sym___vectorcall] = ACTIONS(2559), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_signed] = ACTIONS(2559), - [anon_sym_unsigned] = ACTIONS(2559), - [anon_sym_long] = ACTIONS(2559), - [anon_sym_short] = ACTIONS(2559), - [anon_sym_LBRACK] = ACTIONS(2559), - [anon_sym_static] = ACTIONS(2559), - [anon_sym_register] = ACTIONS(2559), - [anon_sym_inline] = ACTIONS(2559), - [anon_sym___inline] = ACTIONS(2559), - [anon_sym___inline__] = ACTIONS(2559), - [anon_sym___forceinline] = ACTIONS(2559), - [anon_sym_thread_local] = ACTIONS(2559), - [anon_sym___thread] = ACTIONS(2559), - [anon_sym_const] = ACTIONS(2559), - [anon_sym_constexpr] = ACTIONS(2559), - [anon_sym_volatile] = ACTIONS(2559), - [anon_sym_restrict] = ACTIONS(2559), - [anon_sym___restrict__] = ACTIONS(2559), - [anon_sym__Atomic] = ACTIONS(2559), - [anon_sym__Noreturn] = ACTIONS(2559), - [anon_sym_noreturn] = ACTIONS(2559), - [anon_sym_mutable] = ACTIONS(2559), - [anon_sym_constinit] = ACTIONS(2559), - [anon_sym_consteval] = ACTIONS(2559), - [sym_primitive_type] = ACTIONS(2559), - [anon_sym_enum] = ACTIONS(2559), - [anon_sym_class] = ACTIONS(2559), - [anon_sym_struct] = ACTIONS(2559), - [anon_sym_union] = ACTIONS(2559), - [anon_sym_if] = ACTIONS(2559), - [anon_sym_switch] = ACTIONS(2559), - [anon_sym_case] = ACTIONS(2559), - [anon_sym_default] = ACTIONS(2559), - [anon_sym_while] = ACTIONS(2559), - [anon_sym_do] = ACTIONS(2559), - [anon_sym_for] = ACTIONS(2559), - [anon_sym_return] = ACTIONS(2559), - [anon_sym_break] = ACTIONS(2559), - [anon_sym_continue] = ACTIONS(2559), - [anon_sym_goto] = ACTIONS(2559), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_compl] = ACTIONS(2559), - [anon_sym_DASH_DASH] = ACTIONS(2561), - [anon_sym_PLUS_PLUS] = ACTIONS(2561), - [anon_sym_sizeof] = ACTIONS(2559), - [anon_sym___alignof__] = ACTIONS(2559), - [anon_sym___alignof] = ACTIONS(2559), - [anon_sym__alignof] = ACTIONS(2559), - [anon_sym_alignof] = ACTIONS(2559), - [anon_sym__Alignof] = ACTIONS(2559), - [anon_sym_offsetof] = ACTIONS(2559), - [anon_sym__Generic] = ACTIONS(2559), - [anon_sym_asm] = ACTIONS(2559), - [anon_sym___asm__] = ACTIONS(2559), - [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(2559), - [sym_false] = ACTIONS(2559), - [anon_sym_NULL] = ACTIONS(2559), - [anon_sym_nullptr] = ACTIONS(2559), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2559), - [anon_sym_decltype] = ACTIONS(2559), - [anon_sym_virtual] = ACTIONS(2559), - [anon_sym_alignas] = ACTIONS(2559), - [anon_sym_explicit] = ACTIONS(2559), - [anon_sym_typename] = ACTIONS(2559), - [anon_sym_template] = ACTIONS(2559), - [anon_sym_operator] = ACTIONS(2559), - [anon_sym_try] = ACTIONS(2559), - [anon_sym_delete] = ACTIONS(2559), - [anon_sym_throw] = ACTIONS(2559), - [anon_sym_namespace] = ACTIONS(2559), - [anon_sym_using] = ACTIONS(2559), - [anon_sym_static_assert] = ACTIONS(2559), - [anon_sym_concept] = ACTIONS(2559), - [anon_sym_co_return] = ACTIONS(2559), - [anon_sym_co_yield] = ACTIONS(2559), - [anon_sym_catch] = ACTIONS(2760), - [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(2559), - [anon_sym_new] = ACTIONS(2559), - [anon_sym_requires] = ACTIONS(2559), - [sym_this] = ACTIONS(2559), + [503] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [aux_sym_preproc_else_token1] = ACTIONS(2860), + [aux_sym_preproc_elif_token1] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [443] = { - [sym_identifier] = ACTIONS(2957), - [aux_sym_preproc_include_token1] = ACTIONS(2957), - [aux_sym_preproc_def_token1] = ACTIONS(2957), - [aux_sym_preproc_if_token1] = ACTIONS(2957), - [aux_sym_preproc_if_token2] = ACTIONS(2957), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2957), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2957), - [aux_sym_preproc_else_token1] = ACTIONS(2957), - [aux_sym_preproc_elif_token1] = ACTIONS(2957), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2957), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2957), - [sym_preproc_directive] = ACTIONS(2957), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2957), - [anon_sym_SEMI] = ACTIONS(2959), - [anon_sym___extension__] = ACTIONS(2957), - [anon_sym_typedef] = ACTIONS(2957), - [anon_sym_extern] = ACTIONS(2957), - [anon_sym___attribute__] = ACTIONS(2957), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), - [anon_sym___declspec] = ACTIONS(2957), - [anon_sym___based] = ACTIONS(2957), - [anon_sym___cdecl] = ACTIONS(2957), - [anon_sym___clrcall] = ACTIONS(2957), - [anon_sym___stdcall] = ACTIONS(2957), - [anon_sym___fastcall] = ACTIONS(2957), - [anon_sym___thiscall] = ACTIONS(2957), - [anon_sym___vectorcall] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_signed] = ACTIONS(2957), - [anon_sym_unsigned] = ACTIONS(2957), - [anon_sym_long] = ACTIONS(2957), - [anon_sym_short] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_static] = ACTIONS(2957), - [anon_sym_register] = ACTIONS(2957), - [anon_sym_inline] = ACTIONS(2957), - [anon_sym___inline] = ACTIONS(2957), - [anon_sym___inline__] = ACTIONS(2957), - [anon_sym___forceinline] = ACTIONS(2957), - [anon_sym_thread_local] = ACTIONS(2957), - [anon_sym___thread] = ACTIONS(2957), - [anon_sym_const] = ACTIONS(2957), - [anon_sym_constexpr] = ACTIONS(2957), - [anon_sym_volatile] = ACTIONS(2957), - [anon_sym_restrict] = ACTIONS(2957), - [anon_sym___restrict__] = ACTIONS(2957), - [anon_sym__Atomic] = ACTIONS(2957), - [anon_sym__Noreturn] = ACTIONS(2957), - [anon_sym_noreturn] = ACTIONS(2957), - [anon_sym_mutable] = ACTIONS(2957), - [anon_sym_constinit] = ACTIONS(2957), - [anon_sym_consteval] = ACTIONS(2957), - [sym_primitive_type] = ACTIONS(2957), - [anon_sym_enum] = ACTIONS(2957), - [anon_sym_class] = ACTIONS(2957), - [anon_sym_struct] = ACTIONS(2957), - [anon_sym_union] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2957), - [anon_sym_else] = ACTIONS(2957), - [anon_sym_switch] = ACTIONS(2957), - [anon_sym_case] = ACTIONS(2957), - [anon_sym_default] = ACTIONS(2957), - [anon_sym_while] = ACTIONS(2957), - [anon_sym_do] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2957), - [anon_sym_break] = ACTIONS(2957), - [anon_sym_continue] = ACTIONS(2957), - [anon_sym_goto] = ACTIONS(2957), - [anon_sym_not] = ACTIONS(2957), - [anon_sym_compl] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_sizeof] = ACTIONS(2957), - [anon_sym___alignof__] = ACTIONS(2957), - [anon_sym___alignof] = ACTIONS(2957), - [anon_sym__alignof] = ACTIONS(2957), - [anon_sym_alignof] = ACTIONS(2957), - [anon_sym__Alignof] = ACTIONS(2957), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2957), - [anon_sym_asm] = ACTIONS(2957), - [anon_sym___asm__] = ACTIONS(2957), - [sym_number_literal] = ACTIONS(2959), - [anon_sym_L_SQUOTE] = ACTIONS(2959), - [anon_sym_u_SQUOTE] = ACTIONS(2959), - [anon_sym_U_SQUOTE] = ACTIONS(2959), - [anon_sym_u8_SQUOTE] = ACTIONS(2959), - [anon_sym_SQUOTE] = ACTIONS(2959), - [anon_sym_L_DQUOTE] = ACTIONS(2959), - [anon_sym_u_DQUOTE] = ACTIONS(2959), - [anon_sym_U_DQUOTE] = ACTIONS(2959), - [anon_sym_u8_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [anon_sym_NULL] = ACTIONS(2957), - [anon_sym_nullptr] = ACTIONS(2957), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2957), - [anon_sym_decltype] = ACTIONS(2957), - [anon_sym_virtual] = ACTIONS(2957), - [anon_sym_alignas] = ACTIONS(2957), - [anon_sym_explicit] = ACTIONS(2957), - [anon_sym_typename] = ACTIONS(2957), - [anon_sym_template] = ACTIONS(2957), - [anon_sym_operator] = ACTIONS(2957), - [anon_sym_try] = ACTIONS(2957), - [anon_sym_delete] = ACTIONS(2957), - [anon_sym_throw] = ACTIONS(2957), - [anon_sym_namespace] = ACTIONS(2957), - [anon_sym_using] = ACTIONS(2957), - [anon_sym_static_assert] = ACTIONS(2957), - [anon_sym_concept] = ACTIONS(2957), - [anon_sym_co_return] = ACTIONS(2957), - [anon_sym_co_yield] = ACTIONS(2957), - [anon_sym_R_DQUOTE] = ACTIONS(2959), - [anon_sym_LR_DQUOTE] = ACTIONS(2959), - [anon_sym_uR_DQUOTE] = ACTIONS(2959), - [anon_sym_UR_DQUOTE] = ACTIONS(2959), - [anon_sym_u8R_DQUOTE] = ACTIONS(2959), - [anon_sym_co_await] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2957), - [anon_sym_requires] = ACTIONS(2957), - [sym_this] = ACTIONS(2957), + [504] = { + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_include_token1] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token2] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [aux_sym_preproc_else_token1] = ACTIONS(3168), + [aux_sym_preproc_elif_token1] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3170), + [anon_sym_AMP_AMP] = ACTIONS(3170), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3170), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3170), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym___cdecl] = ACTIONS(3168), + [anon_sym___clrcall] = ACTIONS(3168), + [anon_sym___stdcall] = ACTIONS(3168), + [anon_sym___fastcall] = ACTIONS(3168), + [anon_sym___thiscall] = ACTIONS(3168), + [anon_sym___vectorcall] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_goto] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym___alignof__] = ACTIONS(3168), + [anon_sym___alignof] = ACTIONS(3168), + [anon_sym__alignof] = ACTIONS(3168), + [anon_sym_alignof] = ACTIONS(3168), + [anon_sym__Alignof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3170), + [anon_sym_L_SQUOTE] = ACTIONS(3170), + [anon_sym_u_SQUOTE] = ACTIONS(3170), + [anon_sym_U_SQUOTE] = ACTIONS(3170), + [anon_sym_u8_SQUOTE] = ACTIONS(3170), + [anon_sym_SQUOTE] = ACTIONS(3170), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_concept] = ACTIONS(3168), + [anon_sym_co_return] = ACTIONS(3168), + [anon_sym_co_yield] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3170), + [anon_sym_LR_DQUOTE] = ACTIONS(3170), + [anon_sym_uR_DQUOTE] = ACTIONS(3170), + [anon_sym_UR_DQUOTE] = ACTIONS(3170), + [anon_sym_u8R_DQUOTE] = ACTIONS(3170), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [sym_this] = ACTIONS(3168), }, - [444] = { - [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_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym_COLON_COLON] = ACTIONS(2963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), - [anon_sym___declspec] = ACTIONS(2961), - [anon_sym___based] = ACTIONS(2961), - [anon_sym___cdecl] = ACTIONS(2961), - [anon_sym___clrcall] = ACTIONS(2961), - [anon_sym___stdcall] = ACTIONS(2961), - [anon_sym___fastcall] = ACTIONS(2961), - [anon_sym___thiscall] = ACTIONS(2961), - [anon_sym___vectorcall] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_signed] = ACTIONS(2961), - [anon_sym_unsigned] = ACTIONS(2961), - [anon_sym_long] = ACTIONS(2961), - [anon_sym_short] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_static] = ACTIONS(2961), - [anon_sym_register] = ACTIONS(2961), - [anon_sym_inline] = ACTIONS(2961), - [anon_sym___inline] = ACTIONS(2961), - [anon_sym___inline__] = ACTIONS(2961), - [anon_sym___forceinline] = ACTIONS(2961), - [anon_sym_thread_local] = ACTIONS(2961), - [anon_sym___thread] = ACTIONS(2961), - [anon_sym_const] = ACTIONS(2961), - [anon_sym_constexpr] = ACTIONS(2961), - [anon_sym_volatile] = ACTIONS(2961), - [anon_sym_restrict] = ACTIONS(2961), - [anon_sym___restrict__] = ACTIONS(2961), - [anon_sym__Atomic] = ACTIONS(2961), - [anon_sym__Noreturn] = ACTIONS(2961), - [anon_sym_noreturn] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [sym_primitive_type] = ACTIONS(2961), - [anon_sym_enum] = ACTIONS(2961), - [anon_sym_class] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_union] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_else] = ACTIONS(2961), - [anon_sym_switch] = ACTIONS(2961), - [anon_sym_case] = ACTIONS(2961), - [anon_sym_default] = ACTIONS(2961), - [anon_sym_while] = ACTIONS(2961), - [anon_sym_do] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2961), - [anon_sym_break] = ACTIONS(2961), - [anon_sym_continue] = ACTIONS(2961), - [anon_sym_goto] = ACTIONS(2961), - [anon_sym_not] = ACTIONS(2961), - [anon_sym_compl] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_sizeof] = ACTIONS(2961), - [anon_sym___alignof__] = ACTIONS(2961), - [anon_sym___alignof] = ACTIONS(2961), - [anon_sym__alignof] = ACTIONS(2961), - [anon_sym_alignof] = ACTIONS(2961), - [anon_sym__Alignof] = ACTIONS(2961), - [anon_sym_offsetof] = ACTIONS(2961), - [anon_sym__Generic] = ACTIONS(2961), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2963), - [anon_sym_u_SQUOTE] = ACTIONS(2963), - [anon_sym_U_SQUOTE] = ACTIONS(2963), - [anon_sym_u8_SQUOTE] = ACTIONS(2963), - [anon_sym_SQUOTE] = ACTIONS(2963), - [anon_sym_L_DQUOTE] = ACTIONS(2963), - [anon_sym_u_DQUOTE] = ACTIONS(2963), - [anon_sym_U_DQUOTE] = ACTIONS(2963), - [anon_sym_u8_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [anon_sym_NULL] = ACTIONS(2961), - [anon_sym_nullptr] = ACTIONS(2961), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2961), - [anon_sym_decltype] = ACTIONS(2961), - [anon_sym_virtual] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym_explicit] = ACTIONS(2961), - [anon_sym_typename] = ACTIONS(2961), - [anon_sym_template] = ACTIONS(2961), - [anon_sym_operator] = ACTIONS(2961), - [anon_sym_try] = ACTIONS(2961), - [anon_sym_delete] = ACTIONS(2961), - [anon_sym_throw] = ACTIONS(2961), - [anon_sym_namespace] = ACTIONS(2961), - [anon_sym_using] = ACTIONS(2961), - [anon_sym_static_assert] = ACTIONS(2961), - [anon_sym_concept] = ACTIONS(2961), - [anon_sym_co_return] = ACTIONS(2961), - [anon_sym_co_yield] = ACTIONS(2961), - [anon_sym_R_DQUOTE] = ACTIONS(2963), - [anon_sym_LR_DQUOTE] = ACTIONS(2963), - [anon_sym_uR_DQUOTE] = ACTIONS(2963), - [anon_sym_UR_DQUOTE] = ACTIONS(2963), - [anon_sym_u8R_DQUOTE] = ACTIONS(2963), - [anon_sym_co_await] = ACTIONS(2961), - [anon_sym_new] = ACTIONS(2961), - [anon_sym_requires] = ACTIONS(2961), - [sym_this] = ACTIONS(2961), + [505] = { + [sym_identifier] = ACTIONS(3192), + [aux_sym_preproc_include_token1] = ACTIONS(3192), + [aux_sym_preproc_def_token1] = ACTIONS(3192), + [aux_sym_preproc_if_token1] = ACTIONS(3192), + [aux_sym_preproc_if_token2] = ACTIONS(3192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3192), + [aux_sym_preproc_else_token1] = ACTIONS(3192), + [aux_sym_preproc_elif_token1] = ACTIONS(3192), + [sym_preproc_directive] = ACTIONS(3192), + [anon_sym_LPAREN2] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3192), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3192), + [anon_sym_typedef] = ACTIONS(3192), + [anon_sym_extern] = ACTIONS(3192), + [anon_sym___attribute__] = ACTIONS(3192), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3194), + [anon_sym___declspec] = ACTIONS(3192), + [anon_sym___based] = ACTIONS(3192), + [anon_sym___cdecl] = ACTIONS(3192), + [anon_sym___clrcall] = ACTIONS(3192), + [anon_sym___stdcall] = ACTIONS(3192), + [anon_sym___fastcall] = ACTIONS(3192), + [anon_sym___thiscall] = ACTIONS(3192), + [anon_sym___vectorcall] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_signed] = ACTIONS(3192), + [anon_sym_unsigned] = ACTIONS(3192), + [anon_sym_long] = ACTIONS(3192), + [anon_sym_short] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3192), + [anon_sym_register] = ACTIONS(3192), + [anon_sym_inline] = ACTIONS(3192), + [anon_sym___inline] = ACTIONS(3192), + [anon_sym___inline__] = ACTIONS(3192), + [anon_sym___forceinline] = ACTIONS(3192), + [anon_sym_thread_local] = ACTIONS(3192), + [anon_sym___thread] = ACTIONS(3192), + [anon_sym_const] = ACTIONS(3192), + [anon_sym_constexpr] = ACTIONS(3192), + [anon_sym_volatile] = ACTIONS(3192), + [anon_sym_restrict] = ACTIONS(3192), + [anon_sym___restrict__] = ACTIONS(3192), + [anon_sym__Atomic] = ACTIONS(3192), + [anon_sym__Noreturn] = ACTIONS(3192), + [anon_sym_noreturn] = ACTIONS(3192), + [anon_sym_mutable] = ACTIONS(3192), + [anon_sym_constinit] = ACTIONS(3192), + [anon_sym_consteval] = ACTIONS(3192), + [sym_primitive_type] = ACTIONS(3192), + [anon_sym_enum] = ACTIONS(3192), + [anon_sym_class] = ACTIONS(3192), + [anon_sym_struct] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3192), + [anon_sym_if] = ACTIONS(3192), + [anon_sym_switch] = ACTIONS(3192), + [anon_sym_case] = ACTIONS(3192), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_while] = ACTIONS(3192), + [anon_sym_do] = ACTIONS(3192), + [anon_sym_for] = ACTIONS(3192), + [anon_sym_return] = ACTIONS(3192), + [anon_sym_break] = ACTIONS(3192), + [anon_sym_continue] = ACTIONS(3192), + [anon_sym_goto] = ACTIONS(3192), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_sizeof] = ACTIONS(3192), + [anon_sym___alignof__] = ACTIONS(3192), + [anon_sym___alignof] = ACTIONS(3192), + [anon_sym__alignof] = ACTIONS(3192), + [anon_sym_alignof] = ACTIONS(3192), + [anon_sym__Alignof] = ACTIONS(3192), + [anon_sym_offsetof] = ACTIONS(3192), + [anon_sym__Generic] = ACTIONS(3192), + [anon_sym_asm] = ACTIONS(3192), + [anon_sym___asm__] = ACTIONS(3192), + [sym_number_literal] = ACTIONS(3194), + [anon_sym_L_SQUOTE] = ACTIONS(3194), + [anon_sym_u_SQUOTE] = ACTIONS(3194), + [anon_sym_U_SQUOTE] = ACTIONS(3194), + [anon_sym_u8_SQUOTE] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3194), + [anon_sym_L_DQUOTE] = ACTIONS(3194), + [anon_sym_u_DQUOTE] = ACTIONS(3194), + [anon_sym_U_DQUOTE] = ACTIONS(3194), + [anon_sym_u8_DQUOTE] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(3194), + [sym_true] = ACTIONS(3192), + [sym_false] = ACTIONS(3192), + [anon_sym_NULL] = ACTIONS(3192), + [anon_sym_nullptr] = ACTIONS(3192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3192), + [anon_sym_decltype] = ACTIONS(3192), + [anon_sym_virtual] = ACTIONS(3192), + [anon_sym_alignas] = ACTIONS(3192), + [anon_sym_explicit] = ACTIONS(3192), + [anon_sym_typename] = ACTIONS(3192), + [anon_sym_template] = ACTIONS(3192), + [anon_sym_operator] = ACTIONS(3192), + [anon_sym_try] = ACTIONS(3192), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_throw] = ACTIONS(3192), + [anon_sym_namespace] = ACTIONS(3192), + [anon_sym_using] = ACTIONS(3192), + [anon_sym_static_assert] = ACTIONS(3192), + [anon_sym_concept] = ACTIONS(3192), + [anon_sym_co_return] = ACTIONS(3192), + [anon_sym_co_yield] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3192), + [anon_sym_new] = ACTIONS(3192), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3192), }, - [445] = { - [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_extern] = ACTIONS(2965), - [anon_sym___attribute__] = ACTIONS(2965), - [anon_sym_COLON_COLON] = ACTIONS(2967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), - [anon_sym___declspec] = ACTIONS(2965), - [anon_sym___based] = ACTIONS(2965), - [anon_sym___cdecl] = ACTIONS(2965), - [anon_sym___clrcall] = ACTIONS(2965), - [anon_sym___stdcall] = ACTIONS(2965), - [anon_sym___fastcall] = ACTIONS(2965), - [anon_sym___thiscall] = ACTIONS(2965), - [anon_sym___vectorcall] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_signed] = ACTIONS(2965), - [anon_sym_unsigned] = ACTIONS(2965), - [anon_sym_long] = ACTIONS(2965), - [anon_sym_short] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2965), - [anon_sym_static] = ACTIONS(2965), - [anon_sym_register] = ACTIONS(2965), - [anon_sym_inline] = ACTIONS(2965), - [anon_sym___inline] = ACTIONS(2965), - [anon_sym___inline__] = ACTIONS(2965), - [anon_sym___forceinline] = ACTIONS(2965), - [anon_sym_thread_local] = ACTIONS(2965), - [anon_sym___thread] = ACTIONS(2965), - [anon_sym_const] = ACTIONS(2965), - [anon_sym_constexpr] = ACTIONS(2965), - [anon_sym_volatile] = ACTIONS(2965), - [anon_sym_restrict] = ACTIONS(2965), - [anon_sym___restrict__] = ACTIONS(2965), - [anon_sym__Atomic] = ACTIONS(2965), - [anon_sym__Noreturn] = ACTIONS(2965), - [anon_sym_noreturn] = ACTIONS(2965), - [anon_sym_mutable] = ACTIONS(2965), - [anon_sym_constinit] = ACTIONS(2965), - [anon_sym_consteval] = ACTIONS(2965), - [sym_primitive_type] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2965), - [anon_sym_class] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_union] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_else] = ACTIONS(2965), - [anon_sym_switch] = ACTIONS(2965), - [anon_sym_case] = ACTIONS(2965), - [anon_sym_default] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2965), - [anon_sym_do] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2965), - [anon_sym_return] = ACTIONS(2965), - [anon_sym_break] = ACTIONS(2965), - [anon_sym_continue] = ACTIONS(2965), - [anon_sym_goto] = ACTIONS(2965), - [anon_sym_not] = ACTIONS(2965), - [anon_sym_compl] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_sizeof] = ACTIONS(2965), - [anon_sym___alignof__] = ACTIONS(2965), - [anon_sym___alignof] = ACTIONS(2965), - [anon_sym__alignof] = ACTIONS(2965), - [anon_sym_alignof] = ACTIONS(2965), - [anon_sym__Alignof] = ACTIONS(2965), - [anon_sym_offsetof] = ACTIONS(2965), - [anon_sym__Generic] = ACTIONS(2965), - [anon_sym_asm] = ACTIONS(2965), - [anon_sym___asm__] = ACTIONS(2965), - [sym_number_literal] = ACTIONS(2967), - [anon_sym_L_SQUOTE] = ACTIONS(2967), - [anon_sym_u_SQUOTE] = ACTIONS(2967), - [anon_sym_U_SQUOTE] = ACTIONS(2967), - [anon_sym_u8_SQUOTE] = ACTIONS(2967), - [anon_sym_SQUOTE] = ACTIONS(2967), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [anon_sym_NULL] = ACTIONS(2965), - [anon_sym_nullptr] = ACTIONS(2965), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2965), - [anon_sym_decltype] = ACTIONS(2965), - [anon_sym_virtual] = ACTIONS(2965), - [anon_sym_alignas] = ACTIONS(2965), - [anon_sym_explicit] = ACTIONS(2965), - [anon_sym_typename] = ACTIONS(2965), - [anon_sym_template] = ACTIONS(2965), - [anon_sym_operator] = ACTIONS(2965), - [anon_sym_try] = ACTIONS(2965), - [anon_sym_delete] = ACTIONS(2965), - [anon_sym_throw] = ACTIONS(2965), - [anon_sym_namespace] = ACTIONS(2965), - [anon_sym_using] = ACTIONS(2965), - [anon_sym_static_assert] = ACTIONS(2965), - [anon_sym_concept] = ACTIONS(2965), - [anon_sym_co_return] = ACTIONS(2965), - [anon_sym_co_yield] = ACTIONS(2965), - [anon_sym_R_DQUOTE] = ACTIONS(2967), - [anon_sym_LR_DQUOTE] = ACTIONS(2967), - [anon_sym_uR_DQUOTE] = ACTIONS(2967), - [anon_sym_UR_DQUOTE] = ACTIONS(2967), - [anon_sym_u8R_DQUOTE] = ACTIONS(2967), - [anon_sym_co_await] = ACTIONS(2965), - [anon_sym_new] = ACTIONS(2965), - [anon_sym_requires] = ACTIONS(2965), - [sym_this] = ACTIONS(2965), + [506] = { + [sym_identifier] = ACTIONS(3188), + [aux_sym_preproc_include_token1] = ACTIONS(3188), + [aux_sym_preproc_def_token1] = ACTIONS(3188), + [aux_sym_preproc_if_token1] = ACTIONS(3188), + [aux_sym_preproc_if_token2] = ACTIONS(3188), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3188), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3188), + [aux_sym_preproc_else_token1] = ACTIONS(3188), + [aux_sym_preproc_elif_token1] = ACTIONS(3188), + [sym_preproc_directive] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(3190), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_AMP_AMP] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3190), + [anon_sym___extension__] = ACTIONS(3188), + [anon_sym_typedef] = ACTIONS(3188), + [anon_sym_extern] = ACTIONS(3188), + [anon_sym___attribute__] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3190), + [anon_sym___declspec] = ACTIONS(3188), + [anon_sym___based] = ACTIONS(3188), + [anon_sym___cdecl] = ACTIONS(3188), + [anon_sym___clrcall] = ACTIONS(3188), + [anon_sym___stdcall] = ACTIONS(3188), + [anon_sym___fastcall] = ACTIONS(3188), + [anon_sym___thiscall] = ACTIONS(3188), + [anon_sym___vectorcall] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_signed] = ACTIONS(3188), + [anon_sym_unsigned] = ACTIONS(3188), + [anon_sym_long] = ACTIONS(3188), + [anon_sym_short] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_register] = ACTIONS(3188), + [anon_sym_inline] = ACTIONS(3188), + [anon_sym___inline] = ACTIONS(3188), + [anon_sym___inline__] = ACTIONS(3188), + [anon_sym___forceinline] = ACTIONS(3188), + [anon_sym_thread_local] = ACTIONS(3188), + [anon_sym___thread] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_constexpr] = ACTIONS(3188), + [anon_sym_volatile] = ACTIONS(3188), + [anon_sym_restrict] = ACTIONS(3188), + [anon_sym___restrict__] = ACTIONS(3188), + [anon_sym__Atomic] = ACTIONS(3188), + [anon_sym__Noreturn] = ACTIONS(3188), + [anon_sym_noreturn] = ACTIONS(3188), + [anon_sym_mutable] = ACTIONS(3188), + [anon_sym_constinit] = ACTIONS(3188), + [anon_sym_consteval] = ACTIONS(3188), + [sym_primitive_type] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_struct] = ACTIONS(3188), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3188), + [anon_sym_case] = ACTIONS(3188), + [anon_sym_default] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_break] = ACTIONS(3188), + [anon_sym_continue] = ACTIONS(3188), + [anon_sym_goto] = ACTIONS(3188), + [anon_sym_not] = ACTIONS(3188), + [anon_sym_compl] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3190), + [anon_sym_PLUS_PLUS] = ACTIONS(3190), + [anon_sym_sizeof] = ACTIONS(3188), + [anon_sym___alignof__] = ACTIONS(3188), + [anon_sym___alignof] = ACTIONS(3188), + [anon_sym__alignof] = ACTIONS(3188), + [anon_sym_alignof] = ACTIONS(3188), + [anon_sym__Alignof] = ACTIONS(3188), + [anon_sym_offsetof] = ACTIONS(3188), + [anon_sym__Generic] = ACTIONS(3188), + [anon_sym_asm] = ACTIONS(3188), + [anon_sym___asm__] = ACTIONS(3188), + [sym_number_literal] = ACTIONS(3190), + [anon_sym_L_SQUOTE] = ACTIONS(3190), + [anon_sym_u_SQUOTE] = ACTIONS(3190), + [anon_sym_U_SQUOTE] = ACTIONS(3190), + [anon_sym_u8_SQUOTE] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3190), + [anon_sym_L_DQUOTE] = ACTIONS(3190), + [anon_sym_u_DQUOTE] = ACTIONS(3190), + [anon_sym_U_DQUOTE] = ACTIONS(3190), + [anon_sym_u8_DQUOTE] = ACTIONS(3190), + [anon_sym_DQUOTE] = ACTIONS(3190), + [sym_true] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [anon_sym_NULL] = ACTIONS(3188), + [anon_sym_nullptr] = ACTIONS(3188), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3188), + [anon_sym_decltype] = ACTIONS(3188), + [anon_sym_virtual] = ACTIONS(3188), + [anon_sym_alignas] = ACTIONS(3188), + [anon_sym_explicit] = ACTIONS(3188), + [anon_sym_typename] = ACTIONS(3188), + [anon_sym_template] = ACTIONS(3188), + [anon_sym_operator] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_throw] = ACTIONS(3188), + [anon_sym_namespace] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3188), + [anon_sym_static_assert] = ACTIONS(3188), + [anon_sym_concept] = ACTIONS(3188), + [anon_sym_co_return] = ACTIONS(3188), + [anon_sym_co_yield] = ACTIONS(3188), + [anon_sym_R_DQUOTE] = ACTIONS(3190), + [anon_sym_LR_DQUOTE] = ACTIONS(3190), + [anon_sym_uR_DQUOTE] = ACTIONS(3190), + [anon_sym_UR_DQUOTE] = ACTIONS(3190), + [anon_sym_u8R_DQUOTE] = ACTIONS(3190), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_requires] = ACTIONS(3188), + [sym_this] = ACTIONS(3188), }, - [446] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [507] = { + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_include_token1] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token2] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym___cdecl] = ACTIONS(2138), + [anon_sym___clrcall] = ACTIONS(2138), + [anon_sym___stdcall] = ACTIONS(2138), + [anon_sym___fastcall] = ACTIONS(2138), + [anon_sym___thiscall] = ACTIONS(2138), + [anon_sym___vectorcall] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_goto] = ACTIONS(2138), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_compl] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_PLUS_PLUS] = ACTIONS(2136), + [anon_sym_sizeof] = ACTIONS(2138), + [anon_sym___alignof__] = ACTIONS(2138), + [anon_sym___alignof] = ACTIONS(2138), + [anon_sym__alignof] = ACTIONS(2138), + [anon_sym_alignof] = ACTIONS(2138), + [anon_sym__Alignof] = ACTIONS(2138), + [anon_sym_offsetof] = ACTIONS(2138), + [anon_sym__Generic] = ACTIONS(2138), + [anon_sym_asm] = ACTIONS(2138), + [anon_sym___asm__] = ACTIONS(2138), + [sym_number_literal] = ACTIONS(2136), + [anon_sym_L_SQUOTE] = ACTIONS(2136), + [anon_sym_u_SQUOTE] = ACTIONS(2136), + [anon_sym_U_SQUOTE] = ACTIONS(2136), + [anon_sym_u8_SQUOTE] = ACTIONS(2136), + [anon_sym_SQUOTE] = ACTIONS(2136), + [anon_sym_L_DQUOTE] = ACTIONS(2136), + [anon_sym_u_DQUOTE] = ACTIONS(2136), + [anon_sym_U_DQUOTE] = ACTIONS(2136), + [anon_sym_u8_DQUOTE] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2136), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [anon_sym_NULL] = ACTIONS(2138), + [anon_sym_nullptr] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), + [anon_sym_concept] = ACTIONS(2138), + [anon_sym_co_return] = ACTIONS(2138), + [anon_sym_co_yield] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + [anon_sym_R_DQUOTE] = ACTIONS(2136), + [anon_sym_LR_DQUOTE] = ACTIONS(2136), + [anon_sym_uR_DQUOTE] = ACTIONS(2136), + [anon_sym_UR_DQUOTE] = ACTIONS(2136), + [anon_sym_u8R_DQUOTE] = ACTIONS(2136), + [anon_sym_co_await] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_requires] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), }, - [447] = { - [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_extern] = ACTIONS(2973), - [anon_sym___attribute__] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), - [anon_sym___declspec] = ACTIONS(2973), - [anon_sym___based] = ACTIONS(2973), - [anon_sym___cdecl] = ACTIONS(2973), - [anon_sym___clrcall] = ACTIONS(2973), - [anon_sym___stdcall] = ACTIONS(2973), - [anon_sym___fastcall] = ACTIONS(2973), - [anon_sym___thiscall] = ACTIONS(2973), - [anon_sym___vectorcall] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_signed] = ACTIONS(2973), - [anon_sym_unsigned] = ACTIONS(2973), - [anon_sym_long] = ACTIONS(2973), - [anon_sym_short] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_static] = ACTIONS(2973), - [anon_sym_register] = ACTIONS(2973), - [anon_sym_inline] = ACTIONS(2973), - [anon_sym___inline] = ACTIONS(2973), - [anon_sym___inline__] = ACTIONS(2973), - [anon_sym___forceinline] = ACTIONS(2973), - [anon_sym_thread_local] = ACTIONS(2973), - [anon_sym___thread] = ACTIONS(2973), - [anon_sym_const] = ACTIONS(2973), - [anon_sym_constexpr] = ACTIONS(2973), - [anon_sym_volatile] = ACTIONS(2973), - [anon_sym_restrict] = ACTIONS(2973), - [anon_sym___restrict__] = ACTIONS(2973), - [anon_sym__Atomic] = ACTIONS(2973), - [anon_sym__Noreturn] = ACTIONS(2973), - [anon_sym_noreturn] = ACTIONS(2973), - [anon_sym_mutable] = ACTIONS(2973), - [anon_sym_constinit] = ACTIONS(2973), - [anon_sym_consteval] = ACTIONS(2973), - [sym_primitive_type] = ACTIONS(2973), - [anon_sym_enum] = ACTIONS(2973), - [anon_sym_class] = ACTIONS(2973), - [anon_sym_struct] = ACTIONS(2973), - [anon_sym_union] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_else] = ACTIONS(2973), - [anon_sym_switch] = ACTIONS(2973), - [anon_sym_case] = ACTIONS(2973), - [anon_sym_default] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_break] = ACTIONS(2973), - [anon_sym_continue] = ACTIONS(2973), - [anon_sym_goto] = ACTIONS(2973), - [anon_sym_not] = ACTIONS(2973), - [anon_sym_compl] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2975), - [anon_sym_PLUS_PLUS] = ACTIONS(2975), - [anon_sym_sizeof] = ACTIONS(2973), - [anon_sym___alignof__] = ACTIONS(2973), - [anon_sym___alignof] = ACTIONS(2973), - [anon_sym__alignof] = ACTIONS(2973), - [anon_sym_alignof] = ACTIONS(2973), - [anon_sym__Alignof] = ACTIONS(2973), - [anon_sym_offsetof] = ACTIONS(2973), - [anon_sym__Generic] = ACTIONS(2973), - [anon_sym_asm] = ACTIONS(2973), - [anon_sym___asm__] = ACTIONS(2973), - [sym_number_literal] = ACTIONS(2975), - [anon_sym_L_SQUOTE] = ACTIONS(2975), - [anon_sym_u_SQUOTE] = ACTIONS(2975), - [anon_sym_U_SQUOTE] = ACTIONS(2975), - [anon_sym_u8_SQUOTE] = ACTIONS(2975), - [anon_sym_SQUOTE] = ACTIONS(2975), - [anon_sym_L_DQUOTE] = ACTIONS(2975), - [anon_sym_u_DQUOTE] = ACTIONS(2975), - [anon_sym_U_DQUOTE] = ACTIONS(2975), - [anon_sym_u8_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE] = ACTIONS(2975), - [sym_true] = ACTIONS(2973), - [sym_false] = ACTIONS(2973), - [anon_sym_NULL] = ACTIONS(2973), - [anon_sym_nullptr] = ACTIONS(2973), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2973), - [anon_sym_decltype] = ACTIONS(2973), - [anon_sym_virtual] = ACTIONS(2973), - [anon_sym_alignas] = ACTIONS(2973), - [anon_sym_explicit] = ACTIONS(2973), - [anon_sym_typename] = ACTIONS(2973), - [anon_sym_template] = ACTIONS(2973), - [anon_sym_operator] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_throw] = ACTIONS(2973), - [anon_sym_namespace] = ACTIONS(2973), - [anon_sym_using] = ACTIONS(2973), - [anon_sym_static_assert] = ACTIONS(2973), - [anon_sym_concept] = ACTIONS(2973), - [anon_sym_co_return] = ACTIONS(2973), - [anon_sym_co_yield] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_requires] = ACTIONS(2973), - [sym_this] = ACTIONS(2973), + [508] = { + [sym_identifier] = ACTIONS(2134), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token2] = ACTIONS(2134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), + [sym_preproc_directive] = ACTIONS(2134), + [anon_sym_LPAREN2] = ACTIONS(2132), + [anon_sym_BANG] = ACTIONS(2132), + [anon_sym_TILDE] = ACTIONS(2132), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym___extension__] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym___attribute__] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2134), + [anon_sym___based] = ACTIONS(2134), + [anon_sym___cdecl] = ACTIONS(2134), + [anon_sym___clrcall] = ACTIONS(2134), + [anon_sym___stdcall] = ACTIONS(2134), + [anon_sym___fastcall] = ACTIONS(2134), + [anon_sym___thiscall] = ACTIONS(2134), + [anon_sym___vectorcall] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2134), + [anon_sym_unsigned] = ACTIONS(2134), + [anon_sym_long] = ACTIONS(2134), + [anon_sym_short] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_register] = ACTIONS(2134), + [anon_sym_inline] = ACTIONS(2134), + [anon_sym___inline] = ACTIONS(2134), + [anon_sym___inline__] = ACTIONS(2134), + [anon_sym___forceinline] = ACTIONS(2134), + [anon_sym_thread_local] = ACTIONS(2134), + [anon_sym___thread] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_constexpr] = ACTIONS(2134), + [anon_sym_volatile] = ACTIONS(2134), + [anon_sym_restrict] = ACTIONS(2134), + [anon_sym___restrict__] = ACTIONS(2134), + [anon_sym__Atomic] = ACTIONS(2134), + [anon_sym__Noreturn] = ACTIONS(2134), + [anon_sym_noreturn] = ACTIONS(2134), + [anon_sym_mutable] = ACTIONS(2134), + [anon_sym_constinit] = ACTIONS(2134), + [anon_sym_consteval] = ACTIONS(2134), + [sym_primitive_type] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_struct] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_else] = ACTIONS(2134), + [anon_sym_switch] = ACTIONS(2134), + [anon_sym_case] = ACTIONS(2134), + [anon_sym_default] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2134), + [anon_sym_not] = ACTIONS(2134), + [anon_sym_compl] = ACTIONS(2134), + [anon_sym_DASH_DASH] = ACTIONS(2132), + [anon_sym_PLUS_PLUS] = ACTIONS(2132), + [anon_sym_sizeof] = ACTIONS(2134), + [anon_sym___alignof__] = ACTIONS(2134), + [anon_sym___alignof] = ACTIONS(2134), + [anon_sym__alignof] = ACTIONS(2134), + [anon_sym_alignof] = ACTIONS(2134), + [anon_sym__Alignof] = ACTIONS(2134), + [anon_sym_offsetof] = ACTIONS(2134), + [anon_sym__Generic] = ACTIONS(2134), + [anon_sym_asm] = ACTIONS(2134), + [anon_sym___asm__] = ACTIONS(2134), + [sym_number_literal] = ACTIONS(2132), + [anon_sym_L_SQUOTE] = ACTIONS(2132), + [anon_sym_u_SQUOTE] = ACTIONS(2132), + [anon_sym_U_SQUOTE] = ACTIONS(2132), + [anon_sym_u8_SQUOTE] = ACTIONS(2132), + [anon_sym_SQUOTE] = ACTIONS(2132), + [anon_sym_L_DQUOTE] = ACTIONS(2132), + [anon_sym_u_DQUOTE] = ACTIONS(2132), + [anon_sym_U_DQUOTE] = ACTIONS(2132), + [anon_sym_u8_DQUOTE] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(2132), + [sym_true] = ACTIONS(2134), + [sym_false] = ACTIONS(2134), + [anon_sym_NULL] = ACTIONS(2134), + [anon_sym_nullptr] = ACTIONS(2134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2134), + [anon_sym_decltype] = ACTIONS(2134), + [anon_sym_virtual] = ACTIONS(2134), + [anon_sym_alignas] = ACTIONS(2134), + [anon_sym_explicit] = ACTIONS(2134), + [anon_sym_typename] = ACTIONS(2134), + [anon_sym_template] = ACTIONS(2134), + [anon_sym_operator] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_delete] = ACTIONS(2134), + [anon_sym_throw] = ACTIONS(2134), + [anon_sym_namespace] = ACTIONS(2134), + [anon_sym_using] = ACTIONS(2134), + [anon_sym_static_assert] = ACTIONS(2134), + [anon_sym_concept] = ACTIONS(2134), + [anon_sym_co_return] = ACTIONS(2134), + [anon_sym_co_yield] = ACTIONS(2134), + [anon_sym_catch] = ACTIONS(2134), + [anon_sym_R_DQUOTE] = ACTIONS(2132), + [anon_sym_LR_DQUOTE] = ACTIONS(2132), + [anon_sym_uR_DQUOTE] = ACTIONS(2132), + [anon_sym_UR_DQUOTE] = ACTIONS(2132), + [anon_sym_u8R_DQUOTE] = ACTIONS(2132), + [anon_sym_co_await] = ACTIONS(2134), + [anon_sym_new] = ACTIONS(2134), + [anon_sym_requires] = ACTIONS(2134), + [sym_this] = ACTIONS(2134), }, - [448] = { - [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_extern] = ACTIONS(2977), - [anon_sym___attribute__] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2979), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), - [anon_sym___declspec] = ACTIONS(2977), - [anon_sym___based] = ACTIONS(2977), - [anon_sym___cdecl] = ACTIONS(2977), - [anon_sym___clrcall] = ACTIONS(2977), - [anon_sym___stdcall] = ACTIONS(2977), - [anon_sym___fastcall] = ACTIONS(2977), - [anon_sym___thiscall] = ACTIONS(2977), - [anon_sym___vectorcall] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_signed] = ACTIONS(2977), - [anon_sym_unsigned] = ACTIONS(2977), - [anon_sym_long] = ACTIONS(2977), - [anon_sym_short] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_static] = ACTIONS(2977), - [anon_sym_register] = ACTIONS(2977), - [anon_sym_inline] = ACTIONS(2977), - [anon_sym___inline] = ACTIONS(2977), - [anon_sym___inline__] = ACTIONS(2977), - [anon_sym___forceinline] = ACTIONS(2977), - [anon_sym_thread_local] = ACTIONS(2977), - [anon_sym___thread] = ACTIONS(2977), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_constexpr] = ACTIONS(2977), - [anon_sym_volatile] = ACTIONS(2977), - [anon_sym_restrict] = ACTIONS(2977), - [anon_sym___restrict__] = ACTIONS(2977), - [anon_sym__Atomic] = ACTIONS(2977), - [anon_sym__Noreturn] = ACTIONS(2977), - [anon_sym_noreturn] = ACTIONS(2977), - [anon_sym_mutable] = ACTIONS(2977), - [anon_sym_constinit] = ACTIONS(2977), - [anon_sym_consteval] = ACTIONS(2977), - [sym_primitive_type] = ACTIONS(2977), - [anon_sym_enum] = ACTIONS(2977), - [anon_sym_class] = ACTIONS(2977), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_union] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_else] = ACTIONS(2977), - [anon_sym_switch] = ACTIONS(2977), - [anon_sym_case] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_break] = ACTIONS(2977), - [anon_sym_continue] = ACTIONS(2977), - [anon_sym_goto] = ACTIONS(2977), - [anon_sym_not] = ACTIONS(2977), - [anon_sym_compl] = ACTIONS(2977), - [anon_sym_DASH_DASH] = ACTIONS(2979), - [anon_sym_PLUS_PLUS] = ACTIONS(2979), - [anon_sym_sizeof] = ACTIONS(2977), - [anon_sym___alignof__] = ACTIONS(2977), - [anon_sym___alignof] = ACTIONS(2977), - [anon_sym__alignof] = ACTIONS(2977), - [anon_sym_alignof] = ACTIONS(2977), - [anon_sym__Alignof] = ACTIONS(2977), - [anon_sym_offsetof] = ACTIONS(2977), - [anon_sym__Generic] = ACTIONS(2977), - [anon_sym_asm] = ACTIONS(2977), - [anon_sym___asm__] = ACTIONS(2977), - [sym_number_literal] = ACTIONS(2979), - [anon_sym_L_SQUOTE] = ACTIONS(2979), - [anon_sym_u_SQUOTE] = ACTIONS(2979), - [anon_sym_U_SQUOTE] = ACTIONS(2979), - [anon_sym_u8_SQUOTE] = ACTIONS(2979), - [anon_sym_SQUOTE] = ACTIONS(2979), - [anon_sym_L_DQUOTE] = ACTIONS(2979), - [anon_sym_u_DQUOTE] = ACTIONS(2979), - [anon_sym_U_DQUOTE] = ACTIONS(2979), - [anon_sym_u8_DQUOTE] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym_true] = ACTIONS(2977), - [sym_false] = ACTIONS(2977), - [anon_sym_NULL] = ACTIONS(2977), - [anon_sym_nullptr] = ACTIONS(2977), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2977), - [anon_sym_decltype] = ACTIONS(2977), - [anon_sym_virtual] = ACTIONS(2977), - [anon_sym_alignas] = ACTIONS(2977), - [anon_sym_explicit] = ACTIONS(2977), - [anon_sym_typename] = ACTIONS(2977), - [anon_sym_template] = ACTIONS(2977), - [anon_sym_operator] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_delete] = ACTIONS(2977), - [anon_sym_throw] = ACTIONS(2977), - [anon_sym_namespace] = ACTIONS(2977), - [anon_sym_using] = ACTIONS(2977), - [anon_sym_static_assert] = ACTIONS(2977), - [anon_sym_concept] = ACTIONS(2977), - [anon_sym_co_return] = ACTIONS(2977), - [anon_sym_co_yield] = ACTIONS(2977), - [anon_sym_R_DQUOTE] = ACTIONS(2979), - [anon_sym_LR_DQUOTE] = ACTIONS(2979), - [anon_sym_uR_DQUOTE] = ACTIONS(2979), - [anon_sym_UR_DQUOTE] = ACTIONS(2979), - [anon_sym_u8R_DQUOTE] = ACTIONS(2979), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_requires] = ACTIONS(2977), - [sym_this] = ACTIONS(2977), + [509] = { + [sym_identifier] = ACTIONS(3180), + [aux_sym_preproc_include_token1] = ACTIONS(3180), + [aux_sym_preproc_def_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token2] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3180), + [aux_sym_preproc_else_token1] = ACTIONS(3180), + [aux_sym_preproc_elif_token1] = ACTIONS(3180), + [sym_preproc_directive] = ACTIONS(3180), + [anon_sym_LPAREN2] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_PLUS] = ACTIONS(3180), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym___extension__] = ACTIONS(3180), + [anon_sym_typedef] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(3180), + [anon_sym___attribute__] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3182), + [anon_sym___declspec] = ACTIONS(3180), + [anon_sym___based] = ACTIONS(3180), + [anon_sym___cdecl] = ACTIONS(3180), + [anon_sym___clrcall] = ACTIONS(3180), + [anon_sym___stdcall] = ACTIONS(3180), + [anon_sym___fastcall] = ACTIONS(3180), + [anon_sym___thiscall] = ACTIONS(3180), + [anon_sym___vectorcall] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_signed] = ACTIONS(3180), + [anon_sym_unsigned] = ACTIONS(3180), + [anon_sym_long] = ACTIONS(3180), + [anon_sym_short] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_register] = ACTIONS(3180), + [anon_sym_inline] = ACTIONS(3180), + [anon_sym___inline] = ACTIONS(3180), + [anon_sym___inline__] = ACTIONS(3180), + [anon_sym___forceinline] = ACTIONS(3180), + [anon_sym_thread_local] = ACTIONS(3180), + [anon_sym___thread] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym___restrict__] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym__Noreturn] = ACTIONS(3180), + [anon_sym_noreturn] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3180), + [anon_sym_union] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3180), + [anon_sym_case] = ACTIONS(3180), + [anon_sym_default] = ACTIONS(3180), + [anon_sym_while] = ACTIONS(3180), + [anon_sym_do] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_break] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(3180), + [anon_sym_goto] = ACTIONS(3180), + [anon_sym_not] = ACTIONS(3180), + [anon_sym_compl] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_sizeof] = ACTIONS(3180), + [anon_sym___alignof__] = ACTIONS(3180), + [anon_sym___alignof] = ACTIONS(3180), + [anon_sym__alignof] = ACTIONS(3180), + [anon_sym_alignof] = ACTIONS(3180), + [anon_sym__Alignof] = ACTIONS(3180), + [anon_sym_offsetof] = ACTIONS(3180), + [anon_sym__Generic] = ACTIONS(3180), + [anon_sym_asm] = ACTIONS(3180), + [anon_sym___asm__] = ACTIONS(3180), + [sym_number_literal] = ACTIONS(3182), + [anon_sym_L_SQUOTE] = ACTIONS(3182), + [anon_sym_u_SQUOTE] = ACTIONS(3182), + [anon_sym_U_SQUOTE] = ACTIONS(3182), + [anon_sym_u8_SQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_L_DQUOTE] = ACTIONS(3182), + [anon_sym_u_DQUOTE] = ACTIONS(3182), + [anon_sym_U_DQUOTE] = ACTIONS(3182), + [anon_sym_u8_DQUOTE] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3180), + [anon_sym_nullptr] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3180), + [anon_sym_decltype] = ACTIONS(3180), + [anon_sym_virtual] = ACTIONS(3180), + [anon_sym_alignas] = ACTIONS(3180), + [anon_sym_explicit] = ACTIONS(3180), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(3180), + [anon_sym_operator] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3180), + [anon_sym_delete] = ACTIONS(3180), + [anon_sym_throw] = ACTIONS(3180), + [anon_sym_namespace] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_static_assert] = ACTIONS(3180), + [anon_sym_concept] = ACTIONS(3180), + [anon_sym_co_return] = ACTIONS(3180), + [anon_sym_co_yield] = ACTIONS(3180), + [anon_sym_R_DQUOTE] = ACTIONS(3182), + [anon_sym_LR_DQUOTE] = ACTIONS(3182), + [anon_sym_uR_DQUOTE] = ACTIONS(3182), + [anon_sym_UR_DQUOTE] = ACTIONS(3182), + [anon_sym_u8R_DQUOTE] = ACTIONS(3182), + [anon_sym_co_await] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3180), + [anon_sym_requires] = ACTIONS(3180), + [sym_this] = ACTIONS(3180), }, - [449] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [510] = { + [ts_builtin_sym_end] = ACTIONS(2136), + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_include_token1] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2828), + [anon_sym_RPAREN] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2828), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym___cdecl] = ACTIONS(2138), + [anon_sym___clrcall] = ACTIONS(2138), + [anon_sym___stdcall] = ACTIONS(2138), + [anon_sym___fastcall] = ACTIONS(2138), + [anon_sym___thiscall] = ACTIONS(2138), + [anon_sym___vectorcall] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_goto] = ACTIONS(2138), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_compl] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_PLUS_PLUS] = ACTIONS(2136), + [anon_sym_sizeof] = ACTIONS(2138), + [anon_sym___alignof__] = ACTIONS(2138), + [anon_sym___alignof] = ACTIONS(2138), + [anon_sym__alignof] = ACTIONS(2138), + [anon_sym_alignof] = ACTIONS(2138), + [anon_sym__Alignof] = ACTIONS(2138), + [anon_sym_offsetof] = ACTIONS(2138), + [anon_sym__Generic] = ACTIONS(2138), + [anon_sym_asm] = ACTIONS(2138), + [anon_sym___asm__] = ACTIONS(2138), + [sym_number_literal] = ACTIONS(2136), + [anon_sym_L_SQUOTE] = ACTIONS(2136), + [anon_sym_u_SQUOTE] = ACTIONS(2136), + [anon_sym_U_SQUOTE] = ACTIONS(2136), + [anon_sym_u8_SQUOTE] = ACTIONS(2136), + [anon_sym_SQUOTE] = ACTIONS(2136), + [anon_sym_L_DQUOTE] = ACTIONS(2136), + [anon_sym_u_DQUOTE] = ACTIONS(2136), + [anon_sym_U_DQUOTE] = ACTIONS(2136), + [anon_sym_u8_DQUOTE] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2136), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [anon_sym_NULL] = ACTIONS(2138), + [anon_sym_nullptr] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), + [anon_sym_concept] = ACTIONS(2138), + [anon_sym_co_return] = ACTIONS(2138), + [anon_sym_co_yield] = ACTIONS(2138), + [anon_sym_R_DQUOTE] = ACTIONS(2136), + [anon_sym_LR_DQUOTE] = ACTIONS(2136), + [anon_sym_uR_DQUOTE] = ACTIONS(2136), + [anon_sym_UR_DQUOTE] = ACTIONS(2136), + [anon_sym_u8R_DQUOTE] = ACTIONS(2136), + [anon_sym_co_await] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_requires] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), }, - [450] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [511] = { + [sym_identifier] = ACTIONS(3172), + [aux_sym_preproc_include_token1] = ACTIONS(3172), + [aux_sym_preproc_def_token1] = ACTIONS(3172), + [aux_sym_preproc_if_token1] = ACTIONS(3172), + [aux_sym_preproc_if_token2] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3172), + [aux_sym_preproc_else_token1] = ACTIONS(3172), + [aux_sym_preproc_elif_token1] = ACTIONS(3172), + [sym_preproc_directive] = ACTIONS(3172), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3172), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_SEMI] = ACTIONS(3174), + [anon_sym___extension__] = ACTIONS(3172), + [anon_sym_typedef] = ACTIONS(3172), + [anon_sym_extern] = ACTIONS(3172), + [anon_sym___attribute__] = ACTIONS(3172), + [anon_sym_COLON_COLON] = ACTIONS(3174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3174), + [anon_sym___declspec] = ACTIONS(3172), + [anon_sym___based] = ACTIONS(3172), + [anon_sym___cdecl] = ACTIONS(3172), + [anon_sym___clrcall] = ACTIONS(3172), + [anon_sym___stdcall] = ACTIONS(3172), + [anon_sym___fastcall] = ACTIONS(3172), + [anon_sym___thiscall] = ACTIONS(3172), + [anon_sym___vectorcall] = ACTIONS(3172), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_signed] = ACTIONS(3172), + [anon_sym_unsigned] = ACTIONS(3172), + [anon_sym_long] = ACTIONS(3172), + [anon_sym_short] = ACTIONS(3172), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3172), + [anon_sym_register] = ACTIONS(3172), + [anon_sym_inline] = ACTIONS(3172), + [anon_sym___inline] = ACTIONS(3172), + [anon_sym___inline__] = ACTIONS(3172), + [anon_sym___forceinline] = ACTIONS(3172), + [anon_sym_thread_local] = ACTIONS(3172), + [anon_sym___thread] = ACTIONS(3172), + [anon_sym_const] = ACTIONS(3172), + [anon_sym_constexpr] = ACTIONS(3172), + [anon_sym_volatile] = ACTIONS(3172), + [anon_sym_restrict] = ACTIONS(3172), + [anon_sym___restrict__] = ACTIONS(3172), + [anon_sym__Atomic] = ACTIONS(3172), + [anon_sym__Noreturn] = ACTIONS(3172), + [anon_sym_noreturn] = ACTIONS(3172), + [anon_sym_mutable] = ACTIONS(3172), + [anon_sym_constinit] = ACTIONS(3172), + [anon_sym_consteval] = ACTIONS(3172), + [sym_primitive_type] = ACTIONS(3172), + [anon_sym_enum] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3172), + [anon_sym_union] = ACTIONS(3172), + [anon_sym_if] = ACTIONS(3172), + [anon_sym_switch] = ACTIONS(3172), + [anon_sym_case] = ACTIONS(3172), + [anon_sym_default] = ACTIONS(3172), + [anon_sym_while] = ACTIONS(3172), + [anon_sym_do] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_return] = ACTIONS(3172), + [anon_sym_break] = ACTIONS(3172), + [anon_sym_continue] = ACTIONS(3172), + [anon_sym_goto] = ACTIONS(3172), + [anon_sym_not] = ACTIONS(3172), + [anon_sym_compl] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_sizeof] = ACTIONS(3172), + [anon_sym___alignof__] = ACTIONS(3172), + [anon_sym___alignof] = ACTIONS(3172), + [anon_sym__alignof] = ACTIONS(3172), + [anon_sym_alignof] = ACTIONS(3172), + [anon_sym__Alignof] = ACTIONS(3172), + [anon_sym_offsetof] = ACTIONS(3172), + [anon_sym__Generic] = ACTIONS(3172), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3174), + [anon_sym_u_SQUOTE] = ACTIONS(3174), + [anon_sym_U_SQUOTE] = ACTIONS(3174), + [anon_sym_u8_SQUOTE] = ACTIONS(3174), + [anon_sym_SQUOTE] = ACTIONS(3174), + [anon_sym_L_DQUOTE] = ACTIONS(3174), + [anon_sym_u_DQUOTE] = ACTIONS(3174), + [anon_sym_U_DQUOTE] = ACTIONS(3174), + [anon_sym_u8_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3172), + [anon_sym_nullptr] = ACTIONS(3172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3172), + [anon_sym_decltype] = ACTIONS(3172), + [anon_sym_virtual] = ACTIONS(3172), + [anon_sym_alignas] = ACTIONS(3172), + [anon_sym_explicit] = ACTIONS(3172), + [anon_sym_typename] = ACTIONS(3172), + [anon_sym_template] = ACTIONS(3172), + [anon_sym_operator] = ACTIONS(3172), + [anon_sym_try] = ACTIONS(3172), + [anon_sym_delete] = ACTIONS(3172), + [anon_sym_throw] = ACTIONS(3172), + [anon_sym_namespace] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3172), + [anon_sym_static_assert] = ACTIONS(3172), + [anon_sym_concept] = ACTIONS(3172), + [anon_sym_co_return] = ACTIONS(3172), + [anon_sym_co_yield] = ACTIONS(3172), + [anon_sym_R_DQUOTE] = ACTIONS(3174), + [anon_sym_LR_DQUOTE] = ACTIONS(3174), + [anon_sym_uR_DQUOTE] = ACTIONS(3174), + [anon_sym_UR_DQUOTE] = ACTIONS(3174), + [anon_sym_u8R_DQUOTE] = ACTIONS(3174), + [anon_sym_co_await] = ACTIONS(3172), + [anon_sym_new] = ACTIONS(3172), + [anon_sym_requires] = ACTIONS(3172), + [sym_this] = ACTIONS(3172), }, - [451] = { - [sym_identifier] = ACTIONS(2981), - [aux_sym_preproc_include_token1] = ACTIONS(2981), - [aux_sym_preproc_def_token1] = ACTIONS(2981), - [aux_sym_preproc_if_token1] = ACTIONS(2981), - [aux_sym_preproc_if_token2] = ACTIONS(2981), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2981), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2981), - [aux_sym_preproc_else_token1] = ACTIONS(2981), - [aux_sym_preproc_elif_token1] = ACTIONS(2981), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2981), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2981), - [sym_preproc_directive] = ACTIONS(2981), - [anon_sym_LPAREN2] = ACTIONS(2983), - [anon_sym_BANG] = ACTIONS(2983), - [anon_sym_TILDE] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_AMP_AMP] = ACTIONS(2983), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_SEMI] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(2981), - [anon_sym_typedef] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym___attribute__] = ACTIONS(2981), - [anon_sym_COLON_COLON] = ACTIONS(2983), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), - [anon_sym___declspec] = ACTIONS(2981), - [anon_sym___based] = ACTIONS(2981), - [anon_sym___cdecl] = ACTIONS(2981), - [anon_sym___clrcall] = ACTIONS(2981), - [anon_sym___stdcall] = ACTIONS(2981), - [anon_sym___fastcall] = ACTIONS(2981), - [anon_sym___thiscall] = ACTIONS(2981), - [anon_sym___vectorcall] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_signed] = ACTIONS(2981), - [anon_sym_unsigned] = ACTIONS(2981), - [anon_sym_long] = ACTIONS(2981), - [anon_sym_short] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_static] = ACTIONS(2981), - [anon_sym_register] = ACTIONS(2981), - [anon_sym_inline] = ACTIONS(2981), - [anon_sym___inline] = ACTIONS(2981), - [anon_sym___inline__] = ACTIONS(2981), - [anon_sym___forceinline] = ACTIONS(2981), - [anon_sym_thread_local] = ACTIONS(2981), - [anon_sym___thread] = ACTIONS(2981), - [anon_sym_const] = ACTIONS(2981), - [anon_sym_constexpr] = ACTIONS(2981), - [anon_sym_volatile] = ACTIONS(2981), - [anon_sym_restrict] = ACTIONS(2981), - [anon_sym___restrict__] = ACTIONS(2981), - [anon_sym__Atomic] = ACTIONS(2981), - [anon_sym__Noreturn] = ACTIONS(2981), - [anon_sym_noreturn] = ACTIONS(2981), - [anon_sym_mutable] = ACTIONS(2981), - [anon_sym_constinit] = ACTIONS(2981), - [anon_sym_consteval] = ACTIONS(2981), - [sym_primitive_type] = ACTIONS(2981), - [anon_sym_enum] = ACTIONS(2981), - [anon_sym_class] = ACTIONS(2981), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_union] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_else] = ACTIONS(2981), - [anon_sym_switch] = ACTIONS(2981), - [anon_sym_case] = ACTIONS(2981), - [anon_sym_default] = ACTIONS(2981), - [anon_sym_while] = ACTIONS(2981), - [anon_sym_do] = ACTIONS(2981), - [anon_sym_for] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_goto] = ACTIONS(2981), - [anon_sym_not] = ACTIONS(2981), - [anon_sym_compl] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_sizeof] = ACTIONS(2981), - [anon_sym___alignof__] = ACTIONS(2981), - [anon_sym___alignof] = ACTIONS(2981), - [anon_sym__alignof] = ACTIONS(2981), - [anon_sym_alignof] = ACTIONS(2981), - [anon_sym__Alignof] = ACTIONS(2981), - [anon_sym_offsetof] = ACTIONS(2981), - [anon_sym__Generic] = ACTIONS(2981), - [anon_sym_asm] = ACTIONS(2981), - [anon_sym___asm__] = ACTIONS(2981), - [sym_number_literal] = ACTIONS(2983), - [anon_sym_L_SQUOTE] = ACTIONS(2983), - [anon_sym_u_SQUOTE] = ACTIONS(2983), - [anon_sym_U_SQUOTE] = ACTIONS(2983), - [anon_sym_u8_SQUOTE] = ACTIONS(2983), - [anon_sym_SQUOTE] = ACTIONS(2983), - [anon_sym_L_DQUOTE] = ACTIONS(2983), - [anon_sym_u_DQUOTE] = ACTIONS(2983), - [anon_sym_U_DQUOTE] = ACTIONS(2983), - [anon_sym_u8_DQUOTE] = ACTIONS(2983), - [anon_sym_DQUOTE] = ACTIONS(2983), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [anon_sym_NULL] = ACTIONS(2981), - [anon_sym_nullptr] = ACTIONS(2981), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2981), - [anon_sym_decltype] = ACTIONS(2981), - [anon_sym_virtual] = ACTIONS(2981), - [anon_sym_alignas] = ACTIONS(2981), - [anon_sym_explicit] = ACTIONS(2981), - [anon_sym_typename] = ACTIONS(2981), - [anon_sym_template] = ACTIONS(2981), - [anon_sym_operator] = ACTIONS(2981), - [anon_sym_try] = ACTIONS(2981), - [anon_sym_delete] = ACTIONS(2981), - [anon_sym_throw] = ACTIONS(2981), - [anon_sym_namespace] = ACTIONS(2981), - [anon_sym_using] = ACTIONS(2981), - [anon_sym_static_assert] = ACTIONS(2981), - [anon_sym_concept] = ACTIONS(2981), - [anon_sym_co_return] = ACTIONS(2981), - [anon_sym_co_yield] = ACTIONS(2981), - [anon_sym_R_DQUOTE] = ACTIONS(2983), - [anon_sym_LR_DQUOTE] = ACTIONS(2983), - [anon_sym_uR_DQUOTE] = ACTIONS(2983), - [anon_sym_UR_DQUOTE] = ACTIONS(2983), - [anon_sym_u8R_DQUOTE] = ACTIONS(2983), - [anon_sym_co_await] = ACTIONS(2981), - [anon_sym_new] = ACTIONS(2981), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2981), + [512] = { + [sym_identifier] = ACTIONS(2752), + [aux_sym_preproc_include_token1] = ACTIONS(2752), + [aux_sym_preproc_def_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token2] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2752), + [sym_preproc_directive] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_BANG] = ACTIONS(2754), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym___extension__] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym___attribute__] = ACTIONS(2752), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2754), + [anon_sym___declspec] = ACTIONS(2752), + [anon_sym___based] = ACTIONS(2752), + [anon_sym___cdecl] = ACTIONS(2752), + [anon_sym___clrcall] = ACTIONS(2752), + [anon_sym___stdcall] = ACTIONS(2752), + [anon_sym___fastcall] = ACTIONS(2752), + [anon_sym___thiscall] = ACTIONS(2752), + [anon_sym___vectorcall] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_signed] = ACTIONS(2752), + [anon_sym_unsigned] = ACTIONS(2752), + [anon_sym_long] = ACTIONS(2752), + [anon_sym_short] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_register] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym___inline] = ACTIONS(2752), + [anon_sym___inline__] = ACTIONS(2752), + [anon_sym___forceinline] = ACTIONS(2752), + [anon_sym_thread_local] = ACTIONS(2752), + [anon_sym___thread] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_constexpr] = ACTIONS(2752), + [anon_sym_volatile] = ACTIONS(2752), + [anon_sym_restrict] = ACTIONS(2752), + [anon_sym___restrict__] = ACTIONS(2752), + [anon_sym__Atomic] = ACTIONS(2752), + [anon_sym__Noreturn] = ACTIONS(2752), + [anon_sym_noreturn] = ACTIONS(2752), + [anon_sym_mutable] = ACTIONS(2752), + [anon_sym_constinit] = ACTIONS(2752), + [anon_sym_consteval] = ACTIONS(2752), + [sym_primitive_type] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_class] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_else] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2752), + [anon_sym_case] = ACTIONS(2752), + [anon_sym_default] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_goto] = ACTIONS(2752), + [anon_sym_not] = ACTIONS(2752), + [anon_sym_compl] = ACTIONS(2752), + [anon_sym_DASH_DASH] = ACTIONS(2754), + [anon_sym_PLUS_PLUS] = ACTIONS(2754), + [anon_sym_sizeof] = ACTIONS(2752), + [anon_sym___alignof__] = ACTIONS(2752), + [anon_sym___alignof] = ACTIONS(2752), + [anon_sym__alignof] = ACTIONS(2752), + [anon_sym_alignof] = ACTIONS(2752), + [anon_sym__Alignof] = ACTIONS(2752), + [anon_sym_offsetof] = ACTIONS(2752), + [anon_sym__Generic] = ACTIONS(2752), + [anon_sym_asm] = ACTIONS(2752), + [anon_sym___asm__] = ACTIONS(2752), + [sym_number_literal] = ACTIONS(2754), + [anon_sym_L_SQUOTE] = ACTIONS(2754), + [anon_sym_u_SQUOTE] = ACTIONS(2754), + [anon_sym_U_SQUOTE] = ACTIONS(2754), + [anon_sym_u8_SQUOTE] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_L_DQUOTE] = ACTIONS(2754), + [anon_sym_u_DQUOTE] = ACTIONS(2754), + [anon_sym_U_DQUOTE] = ACTIONS(2754), + [anon_sym_u8_DQUOTE] = ACTIONS(2754), + [anon_sym_DQUOTE] = ACTIONS(2754), + [sym_true] = ACTIONS(2752), + [sym_false] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_nullptr] = ACTIONS(2752), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2752), + [anon_sym_decltype] = ACTIONS(2752), + [anon_sym_virtual] = ACTIONS(2752), + [anon_sym_alignas] = ACTIONS(2752), + [anon_sym_explicit] = ACTIONS(2752), + [anon_sym_typename] = ACTIONS(2752), + [anon_sym_template] = ACTIONS(2752), + [anon_sym_operator] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_delete] = ACTIONS(2752), + [anon_sym_throw] = ACTIONS(2752), + [anon_sym_namespace] = ACTIONS(2752), + [anon_sym_using] = ACTIONS(2752), + [anon_sym_static_assert] = ACTIONS(2752), + [anon_sym_concept] = ACTIONS(2752), + [anon_sym_co_return] = ACTIONS(2752), + [anon_sym_co_yield] = ACTIONS(2752), + [anon_sym_catch] = ACTIONS(2752), + [anon_sym_R_DQUOTE] = ACTIONS(2754), + [anon_sym_LR_DQUOTE] = ACTIONS(2754), + [anon_sym_uR_DQUOTE] = ACTIONS(2754), + [anon_sym_UR_DQUOTE] = ACTIONS(2754), + [anon_sym_u8R_DQUOTE] = ACTIONS(2754), + [anon_sym_co_await] = ACTIONS(2752), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_requires] = ACTIONS(2752), + [sym_this] = ACTIONS(2752), }, - [452] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [513] = { + [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), + [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_extern] = ACTIONS(3119), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3119), + [anon_sym_constinit] = ACTIONS(3119), + [anon_sym_consteval] = 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), + [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(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(3119), + [anon_sym_decltype] = ACTIONS(3119), + [anon_sym_virtual] = ACTIONS(3119), + [anon_sym_alignas] = 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_using] = 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), }, - [453] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [514] = { + [sym_identifier] = ACTIONS(2884), + [aux_sym_preproc_include_token1] = ACTIONS(2884), + [aux_sym_preproc_def_token1] = ACTIONS(2884), + [aux_sym_preproc_if_token1] = ACTIONS(2884), + [aux_sym_preproc_if_token2] = ACTIONS(2884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2884), + [aux_sym_preproc_else_token1] = ACTIONS(2884), + [aux_sym_preproc_elif_token1] = ACTIONS(2884), + [sym_preproc_directive] = ACTIONS(2884), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_STAR] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_SEMI] = ACTIONS(2886), + [anon_sym___extension__] = ACTIONS(2884), + [anon_sym_typedef] = ACTIONS(2884), + [anon_sym_extern] = ACTIONS(2884), + [anon_sym___attribute__] = ACTIONS(2884), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2886), + [anon_sym___declspec] = ACTIONS(2884), + [anon_sym___based] = ACTIONS(2884), + [anon_sym___cdecl] = ACTIONS(2884), + [anon_sym___clrcall] = ACTIONS(2884), + [anon_sym___stdcall] = ACTIONS(2884), + [anon_sym___fastcall] = ACTIONS(2884), + [anon_sym___thiscall] = ACTIONS(2884), + [anon_sym___vectorcall] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_signed] = ACTIONS(2884), + [anon_sym_unsigned] = ACTIONS(2884), + [anon_sym_long] = ACTIONS(2884), + [anon_sym_short] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(2884), + [anon_sym_register] = ACTIONS(2884), + [anon_sym_inline] = ACTIONS(2884), + [anon_sym___inline] = ACTIONS(2884), + [anon_sym___inline__] = ACTIONS(2884), + [anon_sym___forceinline] = ACTIONS(2884), + [anon_sym_thread_local] = ACTIONS(2884), + [anon_sym___thread] = ACTIONS(2884), + [anon_sym_const] = ACTIONS(2884), + [anon_sym_constexpr] = ACTIONS(2884), + [anon_sym_volatile] = ACTIONS(2884), + [anon_sym_restrict] = ACTIONS(2884), + [anon_sym___restrict__] = ACTIONS(2884), + [anon_sym__Atomic] = ACTIONS(2884), + [anon_sym__Noreturn] = ACTIONS(2884), + [anon_sym_noreturn] = ACTIONS(2884), + [anon_sym_mutable] = ACTIONS(2884), + [anon_sym_constinit] = ACTIONS(2884), + [anon_sym_consteval] = ACTIONS(2884), + [sym_primitive_type] = ACTIONS(2884), + [anon_sym_enum] = ACTIONS(2884), + [anon_sym_class] = ACTIONS(2884), + [anon_sym_struct] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_switch] = ACTIONS(2884), + [anon_sym_case] = ACTIONS(2884), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_break] = ACTIONS(2884), + [anon_sym_continue] = ACTIONS(2884), + [anon_sym_goto] = ACTIONS(2884), + [anon_sym_not] = ACTIONS(2884), + [anon_sym_compl] = ACTIONS(2884), + [anon_sym_DASH_DASH] = ACTIONS(2886), + [anon_sym_PLUS_PLUS] = ACTIONS(2886), + [anon_sym_sizeof] = ACTIONS(2884), + [anon_sym___alignof__] = ACTIONS(2884), + [anon_sym___alignof] = ACTIONS(2884), + [anon_sym__alignof] = ACTIONS(2884), + [anon_sym_alignof] = ACTIONS(2884), + [anon_sym__Alignof] = ACTIONS(2884), + [anon_sym_offsetof] = ACTIONS(2884), + [anon_sym__Generic] = ACTIONS(2884), + [anon_sym_asm] = ACTIONS(2884), + [anon_sym___asm__] = ACTIONS(2884), + [sym_number_literal] = ACTIONS(2886), + [anon_sym_L_SQUOTE] = ACTIONS(2886), + [anon_sym_u_SQUOTE] = ACTIONS(2886), + [anon_sym_U_SQUOTE] = ACTIONS(2886), + [anon_sym_u8_SQUOTE] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_L_DQUOTE] = ACTIONS(2886), + [anon_sym_u_DQUOTE] = ACTIONS(2886), + [anon_sym_U_DQUOTE] = ACTIONS(2886), + [anon_sym_u8_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [sym_true] = ACTIONS(2884), + [sym_false] = ACTIONS(2884), + [anon_sym_NULL] = ACTIONS(2884), + [anon_sym_nullptr] = ACTIONS(2884), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2884), + [anon_sym_decltype] = ACTIONS(2884), + [anon_sym_virtual] = ACTIONS(2884), + [anon_sym_alignas] = ACTIONS(2884), + [anon_sym_explicit] = ACTIONS(2884), + [anon_sym_typename] = ACTIONS(2884), + [anon_sym_template] = ACTIONS(2884), + [anon_sym_operator] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_delete] = ACTIONS(2884), + [anon_sym_throw] = ACTIONS(2884), + [anon_sym_namespace] = ACTIONS(2884), + [anon_sym_using] = ACTIONS(2884), + [anon_sym_static_assert] = ACTIONS(2884), + [anon_sym_concept] = ACTIONS(2884), + [anon_sym_co_return] = ACTIONS(2884), + [anon_sym_co_yield] = ACTIONS(2884), + [anon_sym_R_DQUOTE] = ACTIONS(2886), + [anon_sym_LR_DQUOTE] = ACTIONS(2886), + [anon_sym_uR_DQUOTE] = ACTIONS(2886), + [anon_sym_UR_DQUOTE] = ACTIONS(2886), + [anon_sym_u8R_DQUOTE] = ACTIONS(2886), + [anon_sym_co_await] = ACTIONS(2884), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_requires] = ACTIONS(2884), + [sym_this] = ACTIONS(2884), }, - [454] = { - [sym_identifier] = ACTIONS(2985), - [aux_sym_preproc_include_token1] = ACTIONS(2985), - [aux_sym_preproc_def_token1] = ACTIONS(2985), - [aux_sym_preproc_if_token1] = ACTIONS(2985), - [aux_sym_preproc_if_token2] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2985), - [aux_sym_preproc_else_token1] = ACTIONS(2985), - [aux_sym_preproc_elif_token1] = ACTIONS(2985), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2985), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2985), - [sym_preproc_directive] = ACTIONS(2985), - [anon_sym_LPAREN2] = ACTIONS(2987), - [anon_sym_BANG] = ACTIONS(2987), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym___extension__] = ACTIONS(2985), - [anon_sym_typedef] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym___attribute__] = ACTIONS(2985), - [anon_sym_COLON_COLON] = ACTIONS(2987), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), - [anon_sym___declspec] = ACTIONS(2985), - [anon_sym___based] = ACTIONS(2985), - [anon_sym___cdecl] = ACTIONS(2985), - [anon_sym___clrcall] = ACTIONS(2985), - [anon_sym___stdcall] = ACTIONS(2985), - [anon_sym___fastcall] = ACTIONS(2985), - [anon_sym___thiscall] = ACTIONS(2985), - [anon_sym___vectorcall] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_signed] = ACTIONS(2985), - [anon_sym_unsigned] = ACTIONS(2985), - [anon_sym_long] = ACTIONS(2985), - [anon_sym_short] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_register] = ACTIONS(2985), - [anon_sym_inline] = ACTIONS(2985), - [anon_sym___inline] = ACTIONS(2985), - [anon_sym___inline__] = ACTIONS(2985), - [anon_sym___forceinline] = ACTIONS(2985), - [anon_sym_thread_local] = ACTIONS(2985), - [anon_sym___thread] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_constexpr] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_restrict] = ACTIONS(2985), - [anon_sym___restrict__] = ACTIONS(2985), - [anon_sym__Atomic] = ACTIONS(2985), - [anon_sym__Noreturn] = ACTIONS(2985), - [anon_sym_noreturn] = ACTIONS(2985), - [anon_sym_mutable] = ACTIONS(2985), - [anon_sym_constinit] = ACTIONS(2985), - [anon_sym_consteval] = ACTIONS(2985), - [sym_primitive_type] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_class] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_union] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_switch] = ACTIONS(2985), - [anon_sym_case] = ACTIONS(2985), - [anon_sym_default] = ACTIONS(2985), - [anon_sym_while] = ACTIONS(2985), - [anon_sym_do] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym_not] = ACTIONS(2985), - [anon_sym_compl] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_sizeof] = ACTIONS(2985), - [anon_sym___alignof__] = ACTIONS(2985), - [anon_sym___alignof] = ACTIONS(2985), - [anon_sym__alignof] = ACTIONS(2985), - [anon_sym_alignof] = ACTIONS(2985), - [anon_sym__Alignof] = ACTIONS(2985), - [anon_sym_offsetof] = ACTIONS(2985), - [anon_sym__Generic] = ACTIONS(2985), - [anon_sym_asm] = ACTIONS(2985), - [anon_sym___asm__] = ACTIONS(2985), - [sym_number_literal] = ACTIONS(2987), - [anon_sym_L_SQUOTE] = ACTIONS(2987), - [anon_sym_u_SQUOTE] = ACTIONS(2987), - [anon_sym_U_SQUOTE] = ACTIONS(2987), - [anon_sym_u8_SQUOTE] = ACTIONS(2987), - [anon_sym_SQUOTE] = ACTIONS(2987), - [anon_sym_L_DQUOTE] = ACTIONS(2987), - [anon_sym_u_DQUOTE] = ACTIONS(2987), - [anon_sym_U_DQUOTE] = ACTIONS(2987), - [anon_sym_u8_DQUOTE] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [anon_sym_NULL] = ACTIONS(2985), - [anon_sym_nullptr] = ACTIONS(2985), + [515] = { + [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), + [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_extern] = ACTIONS(3115), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3115), + [anon_sym_constinit] = ACTIONS(3115), + [anon_sym_consteval] = 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), + [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(2985), - [anon_sym_decltype] = ACTIONS(2985), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_alignas] = ACTIONS(2985), - [anon_sym_explicit] = ACTIONS(2985), - [anon_sym_typename] = ACTIONS(2985), - [anon_sym_template] = ACTIONS(2985), - [anon_sym_operator] = ACTIONS(2985), - [anon_sym_try] = ACTIONS(2985), - [anon_sym_delete] = ACTIONS(2985), - [anon_sym_throw] = ACTIONS(2985), - [anon_sym_namespace] = ACTIONS(2985), - [anon_sym_using] = ACTIONS(2985), - [anon_sym_static_assert] = ACTIONS(2985), - [anon_sym_concept] = ACTIONS(2985), - [anon_sym_co_return] = ACTIONS(2985), - [anon_sym_co_yield] = ACTIONS(2985), - [anon_sym_R_DQUOTE] = ACTIONS(2987), - [anon_sym_LR_DQUOTE] = ACTIONS(2987), - [anon_sym_uR_DQUOTE] = ACTIONS(2987), - [anon_sym_UR_DQUOTE] = ACTIONS(2987), - [anon_sym_u8R_DQUOTE] = ACTIONS(2987), - [anon_sym_co_await] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_requires] = ACTIONS(2985), - [sym_this] = ACTIONS(2985), + [sym_auto] = ACTIONS(3115), + [anon_sym_decltype] = ACTIONS(3115), + [anon_sym_virtual] = ACTIONS(3115), + [anon_sym_alignas] = 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_using] = 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), }, - [455] = { - [sym_identifier] = ACTIONS(2989), - [aux_sym_preproc_include_token1] = ACTIONS(2989), - [aux_sym_preproc_def_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token2] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), - [aux_sym_preproc_else_token1] = ACTIONS(2989), - [aux_sym_preproc_elif_token1] = ACTIONS(2989), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2989), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2989), - [sym_preproc_directive] = ACTIONS(2989), - [anon_sym_LPAREN2] = ACTIONS(2991), - [anon_sym_BANG] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym___extension__] = ACTIONS(2989), - [anon_sym_typedef] = ACTIONS(2989), - [anon_sym_extern] = ACTIONS(2989), - [anon_sym___attribute__] = ACTIONS(2989), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), - [anon_sym___declspec] = ACTIONS(2989), - [anon_sym___based] = ACTIONS(2989), - [anon_sym___cdecl] = ACTIONS(2989), - [anon_sym___clrcall] = ACTIONS(2989), - [anon_sym___stdcall] = ACTIONS(2989), - [anon_sym___fastcall] = ACTIONS(2989), - [anon_sym___thiscall] = ACTIONS(2989), - [anon_sym___vectorcall] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_signed] = ACTIONS(2989), - [anon_sym_unsigned] = ACTIONS(2989), - [anon_sym_long] = ACTIONS(2989), - [anon_sym_short] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_register] = ACTIONS(2989), - [anon_sym_inline] = ACTIONS(2989), - [anon_sym___inline] = ACTIONS(2989), - [anon_sym___inline__] = ACTIONS(2989), - [anon_sym___forceinline] = ACTIONS(2989), - [anon_sym_thread_local] = ACTIONS(2989), - [anon_sym___thread] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_constexpr] = ACTIONS(2989), - [anon_sym_volatile] = ACTIONS(2989), - [anon_sym_restrict] = ACTIONS(2989), - [anon_sym___restrict__] = ACTIONS(2989), - [anon_sym__Atomic] = ACTIONS(2989), - [anon_sym__Noreturn] = ACTIONS(2989), - [anon_sym_noreturn] = ACTIONS(2989), - [anon_sym_mutable] = ACTIONS(2989), - [anon_sym_constinit] = ACTIONS(2989), - [anon_sym_consteval] = ACTIONS(2989), - [sym_primitive_type] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_class] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_else] = ACTIONS(2989), - [anon_sym_switch] = ACTIONS(2989), - [anon_sym_case] = ACTIONS(2989), - [anon_sym_default] = ACTIONS(2989), - [anon_sym_while] = ACTIONS(2989), - [anon_sym_do] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_goto] = ACTIONS(2989), - [anon_sym_not] = ACTIONS(2989), - [anon_sym_compl] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_sizeof] = ACTIONS(2989), - [anon_sym___alignof__] = ACTIONS(2989), - [anon_sym___alignof] = ACTIONS(2989), - [anon_sym__alignof] = ACTIONS(2989), - [anon_sym_alignof] = ACTIONS(2989), - [anon_sym__Alignof] = ACTIONS(2989), - [anon_sym_offsetof] = ACTIONS(2989), - [anon_sym__Generic] = ACTIONS(2989), - [anon_sym_asm] = ACTIONS(2989), - [anon_sym___asm__] = ACTIONS(2989), - [sym_number_literal] = ACTIONS(2991), - [anon_sym_L_SQUOTE] = ACTIONS(2991), - [anon_sym_u_SQUOTE] = ACTIONS(2991), - [anon_sym_U_SQUOTE] = ACTIONS(2991), - [anon_sym_u8_SQUOTE] = ACTIONS(2991), - [anon_sym_SQUOTE] = ACTIONS(2991), - [anon_sym_L_DQUOTE] = ACTIONS(2991), - [anon_sym_u_DQUOTE] = ACTIONS(2991), - [anon_sym_U_DQUOTE] = ACTIONS(2991), - [anon_sym_u8_DQUOTE] = ACTIONS(2991), - [anon_sym_DQUOTE] = ACTIONS(2991), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [anon_sym_NULL] = ACTIONS(2989), - [anon_sym_nullptr] = ACTIONS(2989), + [516] = { + [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), + [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_extern] = ACTIONS(3111), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3111), + [anon_sym_constinit] = ACTIONS(3111), + [anon_sym_consteval] = 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), + [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(2989), - [anon_sym_decltype] = ACTIONS(2989), - [anon_sym_virtual] = ACTIONS(2989), - [anon_sym_alignas] = ACTIONS(2989), - [anon_sym_explicit] = ACTIONS(2989), - [anon_sym_typename] = ACTIONS(2989), - [anon_sym_template] = ACTIONS(2989), - [anon_sym_operator] = ACTIONS(2989), - [anon_sym_try] = ACTIONS(2989), - [anon_sym_delete] = ACTIONS(2989), - [anon_sym_throw] = ACTIONS(2989), - [anon_sym_namespace] = ACTIONS(2989), - [anon_sym_using] = ACTIONS(2989), - [anon_sym_static_assert] = ACTIONS(2989), - [anon_sym_concept] = ACTIONS(2989), - [anon_sym_co_return] = ACTIONS(2989), - [anon_sym_co_yield] = ACTIONS(2989), - [anon_sym_R_DQUOTE] = ACTIONS(2991), - [anon_sym_LR_DQUOTE] = ACTIONS(2991), - [anon_sym_uR_DQUOTE] = ACTIONS(2991), - [anon_sym_UR_DQUOTE] = ACTIONS(2991), - [anon_sym_u8R_DQUOTE] = ACTIONS(2991), - [anon_sym_co_await] = ACTIONS(2989), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_requires] = ACTIONS(2989), - [sym_this] = ACTIONS(2989), + [sym_auto] = ACTIONS(3111), + [anon_sym_decltype] = ACTIONS(3111), + [anon_sym_virtual] = ACTIONS(3111), + [anon_sym_alignas] = 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_using] = 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), }, - [456] = { - [sym_identifier] = ACTIONS(2993), - [aux_sym_preproc_include_token1] = ACTIONS(2993), - [aux_sym_preproc_def_token1] = ACTIONS(2993), - [aux_sym_preproc_if_token1] = ACTIONS(2993), - [aux_sym_preproc_if_token2] = ACTIONS(2993), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2993), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2993), - [aux_sym_preproc_else_token1] = ACTIONS(2993), - [aux_sym_preproc_elif_token1] = ACTIONS(2993), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2993), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2993), - [sym_preproc_directive] = ACTIONS(2993), - [anon_sym_LPAREN2] = ACTIONS(2995), - [anon_sym_BANG] = ACTIONS(2995), - [anon_sym_TILDE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_AMP_AMP] = ACTIONS(2995), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_SEMI] = ACTIONS(2995), - [anon_sym___extension__] = ACTIONS(2993), - [anon_sym_typedef] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(2993), - [anon_sym___attribute__] = ACTIONS(2993), - [anon_sym_COLON_COLON] = ACTIONS(2995), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2995), - [anon_sym___declspec] = ACTIONS(2993), - [anon_sym___based] = ACTIONS(2993), - [anon_sym___cdecl] = ACTIONS(2993), - [anon_sym___clrcall] = ACTIONS(2993), - [anon_sym___stdcall] = ACTIONS(2993), - [anon_sym___fastcall] = ACTIONS(2993), - [anon_sym___thiscall] = ACTIONS(2993), - [anon_sym___vectorcall] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_signed] = ACTIONS(2993), - [anon_sym_unsigned] = ACTIONS(2993), - [anon_sym_long] = ACTIONS(2993), - [anon_sym_short] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_static] = ACTIONS(2993), - [anon_sym_register] = ACTIONS(2993), - [anon_sym_inline] = ACTIONS(2993), - [anon_sym___inline] = ACTIONS(2993), - [anon_sym___inline__] = ACTIONS(2993), - [anon_sym___forceinline] = ACTIONS(2993), - [anon_sym_thread_local] = ACTIONS(2993), - [anon_sym___thread] = ACTIONS(2993), - [anon_sym_const] = ACTIONS(2993), - [anon_sym_constexpr] = ACTIONS(2993), - [anon_sym_volatile] = ACTIONS(2993), - [anon_sym_restrict] = ACTIONS(2993), - [anon_sym___restrict__] = ACTIONS(2993), - [anon_sym__Atomic] = ACTIONS(2993), - [anon_sym__Noreturn] = ACTIONS(2993), - [anon_sym_noreturn] = ACTIONS(2993), - [anon_sym_mutable] = ACTIONS(2993), - [anon_sym_constinit] = ACTIONS(2993), - [anon_sym_consteval] = ACTIONS(2993), - [sym_primitive_type] = ACTIONS(2993), - [anon_sym_enum] = ACTIONS(2993), - [anon_sym_class] = ACTIONS(2993), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_union] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_else] = ACTIONS(2993), - [anon_sym_switch] = ACTIONS(2993), - [anon_sym_case] = ACTIONS(2993), - [anon_sym_default] = ACTIONS(2993), - [anon_sym_while] = ACTIONS(2993), - [anon_sym_do] = ACTIONS(2993), - [anon_sym_for] = ACTIONS(2993), - [anon_sym_return] = ACTIONS(2993), - [anon_sym_break] = ACTIONS(2993), - [anon_sym_continue] = ACTIONS(2993), - [anon_sym_goto] = ACTIONS(2993), - [anon_sym_not] = ACTIONS(2993), - [anon_sym_compl] = ACTIONS(2993), - [anon_sym_DASH_DASH] = ACTIONS(2995), - [anon_sym_PLUS_PLUS] = ACTIONS(2995), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2993), - [anon_sym___alignof] = ACTIONS(2993), - [anon_sym__alignof] = ACTIONS(2993), - [anon_sym_alignof] = ACTIONS(2993), - [anon_sym__Alignof] = ACTIONS(2993), - [anon_sym_offsetof] = ACTIONS(2993), - [anon_sym__Generic] = ACTIONS(2993), - [anon_sym_asm] = ACTIONS(2993), - [anon_sym___asm__] = ACTIONS(2993), - [sym_number_literal] = ACTIONS(2995), - [anon_sym_L_SQUOTE] = ACTIONS(2995), - [anon_sym_u_SQUOTE] = ACTIONS(2995), - [anon_sym_U_SQUOTE] = ACTIONS(2995), - [anon_sym_u8_SQUOTE] = ACTIONS(2995), - [anon_sym_SQUOTE] = ACTIONS(2995), - [anon_sym_L_DQUOTE] = ACTIONS(2995), - [anon_sym_u_DQUOTE] = ACTIONS(2995), - [anon_sym_U_DQUOTE] = ACTIONS(2995), - [anon_sym_u8_DQUOTE] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2995), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [anon_sym_NULL] = ACTIONS(2993), - [anon_sym_nullptr] = ACTIONS(2993), + [517] = { + [sym_identifier] = ACTIONS(3107), + [aux_sym_preproc_include_token1] = ACTIONS(3107), + [aux_sym_preproc_def_token1] = ACTIONS(3107), + [aux_sym_preproc_if_token1] = ACTIONS(3107), + [aux_sym_preproc_if_token2] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3107), + [aux_sym_preproc_else_token1] = ACTIONS(3107), + [aux_sym_preproc_elif_token1] = ACTIONS(3107), + [sym_preproc_directive] = ACTIONS(3107), + [anon_sym_LPAREN2] = ACTIONS(3109), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym___extension__] = ACTIONS(3107), + [anon_sym_typedef] = ACTIONS(3107), + [anon_sym_extern] = ACTIONS(3107), + [anon_sym___attribute__] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), + [anon_sym___declspec] = ACTIONS(3107), + [anon_sym___based] = ACTIONS(3107), + [anon_sym___cdecl] = ACTIONS(3107), + [anon_sym___clrcall] = ACTIONS(3107), + [anon_sym___stdcall] = ACTIONS(3107), + [anon_sym___fastcall] = ACTIONS(3107), + [anon_sym___thiscall] = ACTIONS(3107), + [anon_sym___vectorcall] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_signed] = ACTIONS(3107), + [anon_sym_unsigned] = ACTIONS(3107), + [anon_sym_long] = ACTIONS(3107), + [anon_sym_short] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_register] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym___inline] = ACTIONS(3107), + [anon_sym___inline__] = ACTIONS(3107), + [anon_sym___forceinline] = ACTIONS(3107), + [anon_sym_thread_local] = ACTIONS(3107), + [anon_sym___thread] = ACTIONS(3107), + [anon_sym_const] = ACTIONS(3107), + [anon_sym_constexpr] = ACTIONS(3107), + [anon_sym_volatile] = ACTIONS(3107), + [anon_sym_restrict] = ACTIONS(3107), + [anon_sym___restrict__] = ACTIONS(3107), + [anon_sym__Atomic] = ACTIONS(3107), + [anon_sym__Noreturn] = ACTIONS(3107), + [anon_sym_noreturn] = ACTIONS(3107), + [anon_sym_mutable] = ACTIONS(3107), + [anon_sym_constinit] = ACTIONS(3107), + [anon_sym_consteval] = ACTIONS(3107), + [sym_primitive_type] = ACTIONS(3107), + [anon_sym_enum] = ACTIONS(3107), + [anon_sym_class] = ACTIONS(3107), + [anon_sym_struct] = ACTIONS(3107), + [anon_sym_union] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_switch] = ACTIONS(3107), + [anon_sym_case] = ACTIONS(3107), + [anon_sym_default] = ACTIONS(3107), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_do] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_goto] = ACTIONS(3107), + [anon_sym_not] = ACTIONS(3107), + [anon_sym_compl] = ACTIONS(3107), + [anon_sym_DASH_DASH] = ACTIONS(3109), + [anon_sym_PLUS_PLUS] = ACTIONS(3109), + [anon_sym_sizeof] = ACTIONS(3107), + [anon_sym___alignof__] = ACTIONS(3107), + [anon_sym___alignof] = ACTIONS(3107), + [anon_sym__alignof] = ACTIONS(3107), + [anon_sym_alignof] = ACTIONS(3107), + [anon_sym__Alignof] = ACTIONS(3107), + [anon_sym_offsetof] = ACTIONS(3107), + [anon_sym__Generic] = ACTIONS(3107), + [anon_sym_asm] = ACTIONS(3107), + [anon_sym___asm__] = ACTIONS(3107), + [sym_number_literal] = ACTIONS(3109), + [anon_sym_L_SQUOTE] = ACTIONS(3109), + [anon_sym_u_SQUOTE] = ACTIONS(3109), + [anon_sym_U_SQUOTE] = ACTIONS(3109), + [anon_sym_u8_SQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3109), + [anon_sym_L_DQUOTE] = ACTIONS(3109), + [anon_sym_u_DQUOTE] = ACTIONS(3109), + [anon_sym_U_DQUOTE] = ACTIONS(3109), + [anon_sym_u8_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [sym_true] = ACTIONS(3107), + [sym_false] = ACTIONS(3107), + [anon_sym_NULL] = ACTIONS(3107), + [anon_sym_nullptr] = ACTIONS(3107), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2993), - [anon_sym_decltype] = ACTIONS(2993), - [anon_sym_virtual] = ACTIONS(2993), - [anon_sym_alignas] = ACTIONS(2993), - [anon_sym_explicit] = ACTIONS(2993), - [anon_sym_typename] = ACTIONS(2993), - [anon_sym_template] = ACTIONS(2993), - [anon_sym_operator] = ACTIONS(2993), - [anon_sym_try] = ACTIONS(2993), - [anon_sym_delete] = ACTIONS(2993), - [anon_sym_throw] = ACTIONS(2993), - [anon_sym_namespace] = ACTIONS(2993), - [anon_sym_using] = ACTIONS(2993), - [anon_sym_static_assert] = ACTIONS(2993), - [anon_sym_concept] = ACTIONS(2993), - [anon_sym_co_return] = ACTIONS(2993), - [anon_sym_co_yield] = ACTIONS(2993), - [anon_sym_R_DQUOTE] = ACTIONS(2995), - [anon_sym_LR_DQUOTE] = ACTIONS(2995), - [anon_sym_uR_DQUOTE] = ACTIONS(2995), - [anon_sym_UR_DQUOTE] = ACTIONS(2995), - [anon_sym_u8R_DQUOTE] = ACTIONS(2995), - [anon_sym_co_await] = ACTIONS(2993), - [anon_sym_new] = ACTIONS(2993), - [anon_sym_requires] = ACTIONS(2993), - [sym_this] = ACTIONS(2993), + [sym_auto] = ACTIONS(3107), + [anon_sym_decltype] = ACTIONS(3107), + [anon_sym_virtual] = ACTIONS(3107), + [anon_sym_alignas] = ACTIONS(3107), + [anon_sym_explicit] = ACTIONS(3107), + [anon_sym_typename] = ACTIONS(3107), + [anon_sym_template] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_delete] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_namespace] = ACTIONS(3107), + [anon_sym_using] = ACTIONS(3107), + [anon_sym_static_assert] = ACTIONS(3107), + [anon_sym_concept] = ACTIONS(3107), + [anon_sym_co_return] = ACTIONS(3107), + [anon_sym_co_yield] = ACTIONS(3107), + [anon_sym_R_DQUOTE] = ACTIONS(3109), + [anon_sym_LR_DQUOTE] = ACTIONS(3109), + [anon_sym_uR_DQUOTE] = ACTIONS(3109), + [anon_sym_UR_DQUOTE] = ACTIONS(3109), + [anon_sym_u8R_DQUOTE] = ACTIONS(3109), + [anon_sym_co_await] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3107), + [anon_sym_requires] = ACTIONS(3107), + [sym_this] = ACTIONS(3107), }, - [457] = { - [sym__expression] = STATE(5065), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9209), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2848), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(2997), - [anon_sym___extension__] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym___attribute__] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2855), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), - [anon_sym___declspec] = ACTIONS(2853), - [anon_sym_signed] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym___inline] = ACTIONS(2853), - [anon_sym___inline__] = ACTIONS(2853), - [anon_sym___forceinline] = ACTIONS(2853), - [anon_sym_thread_local] = ACTIONS(2853), - [anon_sym___thread] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_constexpr] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym___restrict__] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym__Noreturn] = ACTIONS(2853), - [anon_sym_noreturn] = ACTIONS(2853), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_constinit] = ACTIONS(2853), - [anon_sym_consteval] = ACTIONS(2853), - [sym_primitive_type] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [518] = { + [sym_identifier] = ACTIONS(3099), + [aux_sym_preproc_include_token1] = ACTIONS(3099), + [aux_sym_preproc_def_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token2] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), + [aux_sym_preproc_else_token1] = ACTIONS(3099), + [aux_sym_preproc_elif_token1] = ACTIONS(3099), + [sym_preproc_directive] = ACTIONS(3099), + [anon_sym_LPAREN2] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym___extension__] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym___attribute__] = ACTIONS(3099), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), + [anon_sym___declspec] = ACTIONS(3099), + [anon_sym___based] = ACTIONS(3099), + [anon_sym___cdecl] = ACTIONS(3099), + [anon_sym___clrcall] = ACTIONS(3099), + [anon_sym___stdcall] = ACTIONS(3099), + [anon_sym___fastcall] = ACTIONS(3099), + [anon_sym___thiscall] = ACTIONS(3099), + [anon_sym___vectorcall] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3099), + [anon_sym_unsigned] = ACTIONS(3099), + [anon_sym_long] = ACTIONS(3099), + [anon_sym_short] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_register] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym___inline] = ACTIONS(3099), + [anon_sym___inline__] = ACTIONS(3099), + [anon_sym___forceinline] = ACTIONS(3099), + [anon_sym_thread_local] = ACTIONS(3099), + [anon_sym___thread] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_constexpr] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_restrict] = ACTIONS(3099), + [anon_sym___restrict__] = ACTIONS(3099), + [anon_sym__Atomic] = ACTIONS(3099), + [anon_sym__Noreturn] = ACTIONS(3099), + [anon_sym_noreturn] = ACTIONS(3099), + [anon_sym_mutable] = ACTIONS(3099), + [anon_sym_constinit] = ACTIONS(3099), + [anon_sym_consteval] = ACTIONS(3099), + [sym_primitive_type] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3099), + [anon_sym_case] = ACTIONS(3099), + [anon_sym_default] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_do] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym_not] = ACTIONS(3099), + [anon_sym_compl] = ACTIONS(3099), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym___alignof__] = ACTIONS(3099), + [anon_sym___alignof] = ACTIONS(3099), + [anon_sym__alignof] = ACTIONS(3099), + [anon_sym_alignof] = ACTIONS(3099), + [anon_sym__Alignof] = ACTIONS(3099), + [anon_sym_offsetof] = ACTIONS(3099), + [anon_sym__Generic] = ACTIONS(3099), + [anon_sym_asm] = ACTIONS(3099), + [anon_sym___asm__] = ACTIONS(3099), + [sym_number_literal] = ACTIONS(3101), + [anon_sym_L_SQUOTE] = ACTIONS(3101), + [anon_sym_u_SQUOTE] = ACTIONS(3101), + [anon_sym_U_SQUOTE] = ACTIONS(3101), + [anon_sym_u8_SQUOTE] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3101), + [anon_sym_L_DQUOTE] = ACTIONS(3101), + [anon_sym_u_DQUOTE] = ACTIONS(3101), + [anon_sym_U_DQUOTE] = ACTIONS(3101), + [anon_sym_u8_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [anon_sym_NULL] = ACTIONS(3099), + [anon_sym_nullptr] = ACTIONS(3099), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2853), - [anon_sym_decltype] = ACTIONS(2863), - [anon_sym_virtual] = ACTIONS(2853), - [anon_sym_alignas] = ACTIONS(2853), - [anon_sym_typename] = ACTIONS(2853), - [anon_sym_template] = ACTIONS(2866), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_alignas] = ACTIONS(3099), + [anon_sym_explicit] = ACTIONS(3099), + [anon_sym_typename] = ACTIONS(3099), + [anon_sym_template] = ACTIONS(3099), + [anon_sym_operator] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_throw] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_static_assert] = ACTIONS(3099), + [anon_sym_concept] = ACTIONS(3099), + [anon_sym_co_return] = ACTIONS(3099), + [anon_sym_co_yield] = ACTIONS(3099), + [anon_sym_R_DQUOTE] = ACTIONS(3101), + [anon_sym_LR_DQUOTE] = ACTIONS(3101), + [anon_sym_uR_DQUOTE] = ACTIONS(3101), + [anon_sym_UR_DQUOTE] = ACTIONS(3101), + [anon_sym_u8R_DQUOTE] = ACTIONS(3101), + [anon_sym_co_await] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_requires] = ACTIONS(3099), + [sym_this] = ACTIONS(3099), }, - [458] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [519] = { + [sym_identifier] = ACTIONS(3091), + [aux_sym_preproc_include_token1] = ACTIONS(3091), + [aux_sym_preproc_def_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token2] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), + [aux_sym_preproc_else_token1] = ACTIONS(3091), + [aux_sym_preproc_elif_token1] = ACTIONS(3091), + [sym_preproc_directive] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym___based] = ACTIONS(3091), + [anon_sym___cdecl] = ACTIONS(3091), + [anon_sym___clrcall] = ACTIONS(3091), + [anon_sym___stdcall] = ACTIONS(3091), + [anon_sym___fastcall] = ACTIONS(3091), + [anon_sym___thiscall] = ACTIONS(3091), + [anon_sym___vectorcall] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_switch] = ACTIONS(3091), + [anon_sym_case] = ACTIONS(3091), + [anon_sym_default] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_goto] = ACTIONS(3091), + [anon_sym_not] = ACTIONS(3091), + [anon_sym_compl] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3093), + [anon_sym_sizeof] = ACTIONS(3091), + [anon_sym___alignof__] = ACTIONS(3091), + [anon_sym___alignof] = ACTIONS(3091), + [anon_sym__alignof] = ACTIONS(3091), + [anon_sym_alignof] = ACTIONS(3091), + [anon_sym__Alignof] = ACTIONS(3091), + [anon_sym_offsetof] = ACTIONS(3091), + [anon_sym__Generic] = ACTIONS(3091), + [anon_sym_asm] = ACTIONS(3091), + [anon_sym___asm__] = ACTIONS(3091), + [sym_number_literal] = ACTIONS(3093), + [anon_sym_L_SQUOTE] = ACTIONS(3093), + [anon_sym_u_SQUOTE] = ACTIONS(3093), + [anon_sym_U_SQUOTE] = ACTIONS(3093), + [anon_sym_u8_SQUOTE] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_L_DQUOTE] = ACTIONS(3093), + [anon_sym_u_DQUOTE] = ACTIONS(3093), + [anon_sym_U_DQUOTE] = ACTIONS(3093), + [anon_sym_u8_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [anon_sym_NULL] = ACTIONS(3091), + [anon_sym_nullptr] = ACTIONS(3091), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym_explicit] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_operator] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_delete] = ACTIONS(3091), + [anon_sym_throw] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_static_assert] = ACTIONS(3091), + [anon_sym_concept] = ACTIONS(3091), + [anon_sym_co_return] = ACTIONS(3091), + [anon_sym_co_yield] = ACTIONS(3091), + [anon_sym_R_DQUOTE] = ACTIONS(3093), + [anon_sym_LR_DQUOTE] = ACTIONS(3093), + [anon_sym_uR_DQUOTE] = ACTIONS(3093), + [anon_sym_UR_DQUOTE] = ACTIONS(3093), + [anon_sym_u8R_DQUOTE] = ACTIONS(3093), + [anon_sym_co_await] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_requires] = ACTIONS(3091), + [sym_this] = ACTIONS(3091), }, - [459] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), - }, - [460] = { - [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_extern] = ACTIONS(2999), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(2999), - [anon_sym_constinit] = ACTIONS(2999), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(2999), - [anon_sym_alignas] = 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_using] = 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), + [520] = { + [sym_else_clause] = STATE(712), + [sym_identifier] = ACTIONS(2758), + [aux_sym_preproc_include_token1] = ACTIONS(2758), + [aux_sym_preproc_def_token1] = ACTIONS(2758), + [aux_sym_preproc_if_token1] = ACTIONS(2758), + [aux_sym_preproc_if_token2] = ACTIONS(2758), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2758), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2758), + [sym_preproc_directive] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2760), + [anon_sym_BANG] = ACTIONS(2760), + [anon_sym_TILDE] = ACTIONS(2760), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_STAR] = ACTIONS(2760), + [anon_sym_AMP_AMP] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym___extension__] = ACTIONS(2758), + [anon_sym_typedef] = ACTIONS(2758), + [anon_sym_extern] = ACTIONS(2758), + [anon_sym___attribute__] = ACTIONS(2758), + [anon_sym_COLON_COLON] = ACTIONS(2760), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2760), + [anon_sym___declspec] = ACTIONS(2758), + [anon_sym___based] = ACTIONS(2758), + [anon_sym___cdecl] = ACTIONS(2758), + [anon_sym___clrcall] = ACTIONS(2758), + [anon_sym___stdcall] = ACTIONS(2758), + [anon_sym___fastcall] = ACTIONS(2758), + [anon_sym___thiscall] = ACTIONS(2758), + [anon_sym___vectorcall] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2760), + [anon_sym_signed] = ACTIONS(2758), + [anon_sym_unsigned] = ACTIONS(2758), + [anon_sym_long] = ACTIONS(2758), + [anon_sym_short] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_static] = ACTIONS(2758), + [anon_sym_register] = ACTIONS(2758), + [anon_sym_inline] = ACTIONS(2758), + [anon_sym___inline] = ACTIONS(2758), + [anon_sym___inline__] = ACTIONS(2758), + [anon_sym___forceinline] = ACTIONS(2758), + [anon_sym_thread_local] = ACTIONS(2758), + [anon_sym___thread] = ACTIONS(2758), + [anon_sym_const] = ACTIONS(2758), + [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_mutable] = ACTIONS(2758), + [anon_sym_constinit] = ACTIONS(2758), + [anon_sym_consteval] = ACTIONS(2758), + [sym_primitive_type] = ACTIONS(2758), + [anon_sym_enum] = ACTIONS(2758), + [anon_sym_class] = ACTIONS(2758), + [anon_sym_struct] = ACTIONS(2758), + [anon_sym_union] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_else] = ACTIONS(3409), + [anon_sym_switch] = ACTIONS(2758), + [anon_sym_case] = ACTIONS(2758), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_break] = ACTIONS(2758), + [anon_sym_continue] = ACTIONS(2758), + [anon_sym_goto] = ACTIONS(2758), + [anon_sym_not] = ACTIONS(2758), + [anon_sym_compl] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2760), + [anon_sym_PLUS_PLUS] = ACTIONS(2760), + [anon_sym_sizeof] = ACTIONS(2758), + [anon_sym___alignof__] = ACTIONS(2758), + [anon_sym___alignof] = ACTIONS(2758), + [anon_sym__alignof] = ACTIONS(2758), + [anon_sym_alignof] = ACTIONS(2758), + [anon_sym__Alignof] = ACTIONS(2758), + [anon_sym_offsetof] = ACTIONS(2758), + [anon_sym__Generic] = ACTIONS(2758), + [anon_sym_asm] = ACTIONS(2758), + [anon_sym___asm__] = ACTIONS(2758), + [sym_number_literal] = ACTIONS(2760), + [anon_sym_L_SQUOTE] = ACTIONS(2760), + [anon_sym_u_SQUOTE] = ACTIONS(2760), + [anon_sym_U_SQUOTE] = ACTIONS(2760), + [anon_sym_u8_SQUOTE] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_L_DQUOTE] = ACTIONS(2760), + [anon_sym_u_DQUOTE] = ACTIONS(2760), + [anon_sym_U_DQUOTE] = ACTIONS(2760), + [anon_sym_u8_DQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2760), + [sym_true] = ACTIONS(2758), + [sym_false] = ACTIONS(2758), + [anon_sym_NULL] = ACTIONS(2758), + [anon_sym_nullptr] = ACTIONS(2758), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2758), + [anon_sym_decltype] = ACTIONS(2758), + [anon_sym_virtual] = ACTIONS(2758), + [anon_sym_alignas] = ACTIONS(2758), + [anon_sym_explicit] = ACTIONS(2758), + [anon_sym_typename] = ACTIONS(2758), + [anon_sym_template] = ACTIONS(2758), + [anon_sym_operator] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_delete] = ACTIONS(2758), + [anon_sym_throw] = ACTIONS(2758), + [anon_sym_namespace] = ACTIONS(2758), + [anon_sym_using] = ACTIONS(2758), + [anon_sym_static_assert] = ACTIONS(2758), + [anon_sym_concept] = ACTIONS(2758), + [anon_sym_co_return] = ACTIONS(2758), + [anon_sym_co_yield] = ACTIONS(2758), + [anon_sym_R_DQUOTE] = ACTIONS(2760), + [anon_sym_LR_DQUOTE] = ACTIONS(2760), + [anon_sym_uR_DQUOTE] = ACTIONS(2760), + [anon_sym_UR_DQUOTE] = ACTIONS(2760), + [anon_sym_u8R_DQUOTE] = ACTIONS(2760), + [anon_sym_co_await] = ACTIONS(2758), + [anon_sym_new] = ACTIONS(2758), + [anon_sym_requires] = ACTIONS(2758), + [sym_this] = ACTIONS(2758), }, - [461] = { - [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_extern] = ACTIONS(3003), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3003), - [anon_sym_constinit] = ACTIONS(3003), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3003), - [anon_sym_alignas] = 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_using] = 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), + [521] = { + [sym_identifier] = ACTIONS(3063), + [aux_sym_preproc_include_token1] = ACTIONS(3063), + [aux_sym_preproc_def_token1] = ACTIONS(3063), + [aux_sym_preproc_if_token1] = ACTIONS(3063), + [aux_sym_preproc_if_token2] = ACTIONS(3063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), + [aux_sym_preproc_else_token1] = ACTIONS(3063), + [aux_sym_preproc_elif_token1] = ACTIONS(3063), + [sym_preproc_directive] = ACTIONS(3063), + [anon_sym_LPAREN2] = ACTIONS(3065), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_TILDE] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym___extension__] = ACTIONS(3063), + [anon_sym_typedef] = ACTIONS(3063), + [anon_sym_extern] = ACTIONS(3063), + [anon_sym___attribute__] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(3065), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), + [anon_sym___declspec] = ACTIONS(3063), + [anon_sym___based] = ACTIONS(3063), + [anon_sym___cdecl] = ACTIONS(3063), + [anon_sym___clrcall] = ACTIONS(3063), + [anon_sym___stdcall] = ACTIONS(3063), + [anon_sym___fastcall] = ACTIONS(3063), + [anon_sym___thiscall] = ACTIONS(3063), + [anon_sym___vectorcall] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_signed] = ACTIONS(3063), + [anon_sym_unsigned] = ACTIONS(3063), + [anon_sym_long] = ACTIONS(3063), + [anon_sym_short] = ACTIONS(3063), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_static] = ACTIONS(3063), + [anon_sym_register] = ACTIONS(3063), + [anon_sym_inline] = ACTIONS(3063), + [anon_sym___inline] = ACTIONS(3063), + [anon_sym___inline__] = ACTIONS(3063), + [anon_sym___forceinline] = ACTIONS(3063), + [anon_sym_thread_local] = ACTIONS(3063), + [anon_sym___thread] = ACTIONS(3063), + [anon_sym_const] = ACTIONS(3063), + [anon_sym_constexpr] = ACTIONS(3063), + [anon_sym_volatile] = ACTIONS(3063), + [anon_sym_restrict] = ACTIONS(3063), + [anon_sym___restrict__] = ACTIONS(3063), + [anon_sym__Atomic] = ACTIONS(3063), + [anon_sym__Noreturn] = ACTIONS(3063), + [anon_sym_noreturn] = ACTIONS(3063), + [anon_sym_mutable] = ACTIONS(3063), + [anon_sym_constinit] = ACTIONS(3063), + [anon_sym_consteval] = ACTIONS(3063), + [sym_primitive_type] = ACTIONS(3063), + [anon_sym_enum] = ACTIONS(3063), + [anon_sym_class] = ACTIONS(3063), + [anon_sym_struct] = ACTIONS(3063), + [anon_sym_union] = ACTIONS(3063), + [anon_sym_if] = ACTIONS(3063), + [anon_sym_switch] = ACTIONS(3063), + [anon_sym_case] = ACTIONS(3063), + [anon_sym_default] = ACTIONS(3063), + [anon_sym_while] = ACTIONS(3063), + [anon_sym_do] = ACTIONS(3063), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(3063), + [anon_sym_break] = ACTIONS(3063), + [anon_sym_continue] = ACTIONS(3063), + [anon_sym_goto] = ACTIONS(3063), + [anon_sym_not] = ACTIONS(3063), + [anon_sym_compl] = ACTIONS(3063), + [anon_sym_DASH_DASH] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_sizeof] = ACTIONS(3063), + [anon_sym___alignof__] = ACTIONS(3063), + [anon_sym___alignof] = ACTIONS(3063), + [anon_sym__alignof] = ACTIONS(3063), + [anon_sym_alignof] = ACTIONS(3063), + [anon_sym__Alignof] = ACTIONS(3063), + [anon_sym_offsetof] = ACTIONS(3063), + [anon_sym__Generic] = ACTIONS(3063), + [anon_sym_asm] = ACTIONS(3063), + [anon_sym___asm__] = ACTIONS(3063), + [sym_number_literal] = ACTIONS(3065), + [anon_sym_L_SQUOTE] = ACTIONS(3065), + [anon_sym_u_SQUOTE] = ACTIONS(3065), + [anon_sym_U_SQUOTE] = ACTIONS(3065), + [anon_sym_u8_SQUOTE] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3065), + [anon_sym_L_DQUOTE] = ACTIONS(3065), + [anon_sym_u_DQUOTE] = ACTIONS(3065), + [anon_sym_U_DQUOTE] = ACTIONS(3065), + [anon_sym_u8_DQUOTE] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [sym_true] = ACTIONS(3063), + [sym_false] = ACTIONS(3063), + [anon_sym_NULL] = ACTIONS(3063), + [anon_sym_nullptr] = ACTIONS(3063), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3063), + [anon_sym_decltype] = ACTIONS(3063), + [anon_sym_virtual] = ACTIONS(3063), + [anon_sym_alignas] = ACTIONS(3063), + [anon_sym_explicit] = ACTIONS(3063), + [anon_sym_typename] = ACTIONS(3063), + [anon_sym_template] = ACTIONS(3063), + [anon_sym_operator] = ACTIONS(3063), + [anon_sym_try] = ACTIONS(3063), + [anon_sym_delete] = ACTIONS(3063), + [anon_sym_throw] = ACTIONS(3063), + [anon_sym_namespace] = ACTIONS(3063), + [anon_sym_using] = ACTIONS(3063), + [anon_sym_static_assert] = ACTIONS(3063), + [anon_sym_concept] = ACTIONS(3063), + [anon_sym_co_return] = ACTIONS(3063), + [anon_sym_co_yield] = ACTIONS(3063), + [anon_sym_R_DQUOTE] = ACTIONS(3065), + [anon_sym_LR_DQUOTE] = ACTIONS(3065), + [anon_sym_uR_DQUOTE] = ACTIONS(3065), + [anon_sym_UR_DQUOTE] = ACTIONS(3065), + [anon_sym_u8R_DQUOTE] = ACTIONS(3065), + [anon_sym_co_await] = ACTIONS(3063), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_requires] = ACTIONS(3063), + [sym_this] = ACTIONS(3063), }, - [462] = { - [sym__expression] = STATE(5074), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9202), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym___extension__] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym___attribute__] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2797), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2800), - [anon_sym___declspec] = 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(1376), - [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_mutable] = ACTIONS(2795), - [anon_sym_constinit] = ACTIONS(2795), - [anon_sym_consteval] = ACTIONS(2795), - [sym_primitive_type] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_union] = ACTIONS(2795), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2795), - [anon_sym_decltype] = ACTIONS(2805), - [anon_sym_virtual] = ACTIONS(2795), - [anon_sym_alignas] = ACTIONS(2795), - [anon_sym_typename] = ACTIONS(2795), - [anon_sym_template] = ACTIONS(2808), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [522] = { + [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), + [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_extern] = ACTIONS(3131), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3131), + [anon_sym_constinit] = ACTIONS(3131), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3131), + [anon_sym_alignas] = 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_using] = 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), }, - [463] = { - [sym__expression] = STATE(5076), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9200), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(3009), - [anon_sym___extension__] = ACTIONS(2818), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym___attribute__] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), - [anon_sym___declspec] = ACTIONS(2818), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym___inline] = ACTIONS(2818), - [anon_sym___inline__] = ACTIONS(2818), - [anon_sym___forceinline] = ACTIONS(2818), - [anon_sym_thread_local] = ACTIONS(2818), - [anon_sym___thread] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_restrict] = ACTIONS(2818), - [anon_sym___restrict__] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [anon_sym__Noreturn] = ACTIONS(2818), - [anon_sym_noreturn] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [anon_sym_constinit] = ACTIONS(2818), - [anon_sym_consteval] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2825), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2818), - [anon_sym_decltype] = ACTIONS(2828), - [anon_sym_virtual] = ACTIONS(2818), - [anon_sym_alignas] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_template] = ACTIONS(2831), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [523] = { + [sym_identifier] = ACTIONS(3216), + [aux_sym_preproc_include_token1] = ACTIONS(3216), + [aux_sym_preproc_def_token1] = ACTIONS(3216), + [aux_sym_preproc_if_token1] = ACTIONS(3216), + [aux_sym_preproc_if_token2] = ACTIONS(3216), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3216), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3216), + [aux_sym_preproc_else_token1] = ACTIONS(3216), + [aux_sym_preproc_elif_token1] = ACTIONS(3216), + [sym_preproc_directive] = ACTIONS(3216), + [anon_sym_LPAREN2] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym___extension__] = ACTIONS(3216), + [anon_sym_typedef] = ACTIONS(3216), + [anon_sym_extern] = ACTIONS(3216), + [anon_sym___attribute__] = ACTIONS(3216), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3218), + [anon_sym___declspec] = ACTIONS(3216), + [anon_sym___based] = ACTIONS(3216), + [anon_sym___cdecl] = ACTIONS(3216), + [anon_sym___clrcall] = ACTIONS(3216), + [anon_sym___stdcall] = ACTIONS(3216), + [anon_sym___fastcall] = ACTIONS(3216), + [anon_sym___thiscall] = ACTIONS(3216), + [anon_sym___vectorcall] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_signed] = ACTIONS(3216), + [anon_sym_unsigned] = ACTIONS(3216), + [anon_sym_long] = ACTIONS(3216), + [anon_sym_short] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_static] = ACTIONS(3216), + [anon_sym_register] = ACTIONS(3216), + [anon_sym_inline] = ACTIONS(3216), + [anon_sym___inline] = ACTIONS(3216), + [anon_sym___inline__] = ACTIONS(3216), + [anon_sym___forceinline] = ACTIONS(3216), + [anon_sym_thread_local] = ACTIONS(3216), + [anon_sym___thread] = ACTIONS(3216), + [anon_sym_const] = ACTIONS(3216), + [anon_sym_constexpr] = ACTIONS(3216), + [anon_sym_volatile] = ACTIONS(3216), + [anon_sym_restrict] = ACTIONS(3216), + [anon_sym___restrict__] = ACTIONS(3216), + [anon_sym__Atomic] = ACTIONS(3216), + [anon_sym__Noreturn] = ACTIONS(3216), + [anon_sym_noreturn] = ACTIONS(3216), + [anon_sym_mutable] = ACTIONS(3216), + [anon_sym_constinit] = ACTIONS(3216), + [anon_sym_consteval] = ACTIONS(3216), + [sym_primitive_type] = ACTIONS(3216), + [anon_sym_enum] = ACTIONS(3216), + [anon_sym_class] = ACTIONS(3216), + [anon_sym_struct] = ACTIONS(3216), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_if] = ACTIONS(3216), + [anon_sym_switch] = ACTIONS(3216), + [anon_sym_case] = ACTIONS(3216), + [anon_sym_default] = ACTIONS(3216), + [anon_sym_while] = ACTIONS(3216), + [anon_sym_do] = ACTIONS(3216), + [anon_sym_for] = ACTIONS(3216), + [anon_sym_return] = ACTIONS(3216), + [anon_sym_break] = ACTIONS(3216), + [anon_sym_continue] = ACTIONS(3216), + [anon_sym_goto] = ACTIONS(3216), + [anon_sym_not] = ACTIONS(3216), + [anon_sym_compl] = ACTIONS(3216), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_sizeof] = ACTIONS(3216), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3216), + [anon_sym__Generic] = ACTIONS(3216), + [anon_sym_asm] = ACTIONS(3216), + [anon_sym___asm__] = ACTIONS(3216), + [sym_number_literal] = ACTIONS(3218), + [anon_sym_L_SQUOTE] = ACTIONS(3218), + [anon_sym_u_SQUOTE] = ACTIONS(3218), + [anon_sym_U_SQUOTE] = ACTIONS(3218), + [anon_sym_u8_SQUOTE] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3218), + [anon_sym_L_DQUOTE] = ACTIONS(3218), + [anon_sym_u_DQUOTE] = ACTIONS(3218), + [anon_sym_U_DQUOTE] = ACTIONS(3218), + [anon_sym_u8_DQUOTE] = ACTIONS(3218), + [anon_sym_DQUOTE] = ACTIONS(3218), + [sym_true] = ACTIONS(3216), + [sym_false] = ACTIONS(3216), + [anon_sym_NULL] = ACTIONS(3216), + [anon_sym_nullptr] = ACTIONS(3216), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3216), + [anon_sym_decltype] = ACTIONS(3216), + [anon_sym_virtual] = ACTIONS(3216), + [anon_sym_alignas] = ACTIONS(3216), + [anon_sym_explicit] = ACTIONS(3216), + [anon_sym_typename] = ACTIONS(3216), + [anon_sym_template] = ACTIONS(3216), + [anon_sym_operator] = ACTIONS(3216), + [anon_sym_try] = ACTIONS(3216), + [anon_sym_delete] = ACTIONS(3216), + [anon_sym_throw] = ACTIONS(3216), + [anon_sym_namespace] = ACTIONS(3216), + [anon_sym_using] = ACTIONS(3216), + [anon_sym_static_assert] = ACTIONS(3216), + [anon_sym_concept] = ACTIONS(3216), + [anon_sym_co_return] = ACTIONS(3216), + [anon_sym_co_yield] = ACTIONS(3216), + [anon_sym_R_DQUOTE] = ACTIONS(3218), + [anon_sym_LR_DQUOTE] = ACTIONS(3218), + [anon_sym_uR_DQUOTE] = ACTIONS(3218), + [anon_sym_UR_DQUOTE] = ACTIONS(3218), + [anon_sym_u8R_DQUOTE] = ACTIONS(3218), + [anon_sym_co_await] = ACTIONS(3216), + [anon_sym_new] = ACTIONS(3216), + [anon_sym_requires] = ACTIONS(3216), + [sym_this] = ACTIONS(3216), }, - [464] = { - [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_extern] = ACTIONS(3011), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3011), - [anon_sym_constinit] = ACTIONS(3011), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3011), - [anon_sym_alignas] = 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_using] = 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), + [524] = { + [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), + [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_extern] = ACTIONS(3127), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3127), + [anon_sym_constinit] = ACTIONS(3127), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3127), + [anon_sym_alignas] = 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_using] = 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), }, - [465] = { - [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_extern] = ACTIONS(3015), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3015), - [anon_sym_constinit] = ACTIONS(3015), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3015), - [anon_sym_alignas] = 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_using] = 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), + [525] = { + [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), + [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_extern] = ACTIONS(3059), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3059), + [anon_sym_constinit] = ACTIONS(3059), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3059), + [anon_sym_alignas] = 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_using] = 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), }, - [466] = { - [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_extern] = ACTIONS(3019), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3019), - [anon_sym_constinit] = ACTIONS(3019), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3019), - [anon_sym_alignas] = 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_using] = 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), + [526] = { + [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), + [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_extern] = ACTIONS(3055), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3055), + [anon_sym_constinit] = ACTIONS(3055), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3055), + [anon_sym_alignas] = 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_using] = 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), }, - [467] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [527] = { + [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), + [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_extern] = ACTIONS(3123), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3123), + [anon_sym_constinit] = ACTIONS(3123), + [anon_sym_consteval] = 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), + [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(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(3123), + [anon_sym_decltype] = ACTIONS(3123), + [anon_sym_virtual] = ACTIONS(3123), + [anon_sym_alignas] = 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_using] = 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), }, - [468] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [528] = { + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_include_token1] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token2] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [aux_sym_preproc_else_token1] = ACTIONS(3103), + [aux_sym_preproc_elif_token1] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym___cdecl] = ACTIONS(3103), + [anon_sym___clrcall] = ACTIONS(3103), + [anon_sym___stdcall] = ACTIONS(3103), + [anon_sym___fastcall] = ACTIONS(3103), + [anon_sym___thiscall] = ACTIONS(3103), + [anon_sym___vectorcall] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3103), + [anon_sym_case] = ACTIONS(3103), + [anon_sym_default] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_do] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_compl] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_sizeof] = ACTIONS(3103), + [anon_sym___alignof__] = ACTIONS(3103), + [anon_sym___alignof] = ACTIONS(3103), + [anon_sym__alignof] = ACTIONS(3103), + [anon_sym_alignof] = ACTIONS(3103), + [anon_sym__Alignof] = ACTIONS(3103), + [anon_sym_offsetof] = ACTIONS(3103), + [anon_sym__Generic] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym___asm__] = ACTIONS(3103), + [sym_number_literal] = ACTIONS(3105), + [anon_sym_L_SQUOTE] = ACTIONS(3105), + [anon_sym_u_SQUOTE] = ACTIONS(3105), + [anon_sym_U_SQUOTE] = ACTIONS(3105), + [anon_sym_u8_SQUOTE] = ACTIONS(3105), + [anon_sym_SQUOTE] = ACTIONS(3105), + [anon_sym_L_DQUOTE] = ACTIONS(3105), + [anon_sym_u_DQUOTE] = ACTIONS(3105), + [anon_sym_U_DQUOTE] = ACTIONS(3105), + [anon_sym_u8_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [sym_true] = ACTIONS(3103), + [sym_false] = ACTIONS(3103), + [anon_sym_NULL] = ACTIONS(3103), + [anon_sym_nullptr] = ACTIONS(3103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_delete] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + [anon_sym_concept] = ACTIONS(3103), + [anon_sym_co_return] = ACTIONS(3103), + [anon_sym_co_yield] = ACTIONS(3103), + [anon_sym_R_DQUOTE] = ACTIONS(3105), + [anon_sym_LR_DQUOTE] = ACTIONS(3105), + [anon_sym_uR_DQUOTE] = ACTIONS(3105), + [anon_sym_UR_DQUOTE] = ACTIONS(3105), + [anon_sym_u8R_DQUOTE] = ACTIONS(3105), + [anon_sym_co_await] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(3103), + [sym_this] = ACTIONS(3103), }, - [469] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [529] = { + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_include_token1] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token2] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [aux_sym_preproc_else_token1] = ACTIONS(3103), + [aux_sym_preproc_elif_token1] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym___cdecl] = ACTIONS(3103), + [anon_sym___clrcall] = ACTIONS(3103), + [anon_sym___stdcall] = ACTIONS(3103), + [anon_sym___fastcall] = ACTIONS(3103), + [anon_sym___thiscall] = ACTIONS(3103), + [anon_sym___vectorcall] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3103), + [anon_sym_case] = ACTIONS(3103), + [anon_sym_default] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_do] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_compl] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_sizeof] = ACTIONS(3103), + [anon_sym___alignof__] = ACTIONS(3103), + [anon_sym___alignof] = ACTIONS(3103), + [anon_sym__alignof] = ACTIONS(3103), + [anon_sym_alignof] = ACTIONS(3103), + [anon_sym__Alignof] = ACTIONS(3103), + [anon_sym_offsetof] = ACTIONS(3103), + [anon_sym__Generic] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym___asm__] = ACTIONS(3103), + [sym_number_literal] = ACTIONS(3105), + [anon_sym_L_SQUOTE] = ACTIONS(3105), + [anon_sym_u_SQUOTE] = ACTIONS(3105), + [anon_sym_U_SQUOTE] = ACTIONS(3105), + [anon_sym_u8_SQUOTE] = ACTIONS(3105), + [anon_sym_SQUOTE] = ACTIONS(3105), + [anon_sym_L_DQUOTE] = ACTIONS(3105), + [anon_sym_u_DQUOTE] = ACTIONS(3105), + [anon_sym_U_DQUOTE] = ACTIONS(3105), + [anon_sym_u8_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [sym_true] = ACTIONS(3103), + [sym_false] = ACTIONS(3103), + [anon_sym_NULL] = ACTIONS(3103), + [anon_sym_nullptr] = ACTIONS(3103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), - }, - [470] = { - [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_extern] = ACTIONS(3023), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3023), - [anon_sym_constinit] = ACTIONS(3023), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3023), - [anon_sym_alignas] = 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_using] = 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), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_delete] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + [anon_sym_concept] = ACTIONS(3103), + [anon_sym_co_return] = ACTIONS(3103), + [anon_sym_co_yield] = ACTIONS(3103), + [anon_sym_R_DQUOTE] = ACTIONS(3105), + [anon_sym_LR_DQUOTE] = ACTIONS(3105), + [anon_sym_uR_DQUOTE] = ACTIONS(3105), + [anon_sym_UR_DQUOTE] = ACTIONS(3105), + [anon_sym_u8R_DQUOTE] = ACTIONS(3105), + [anon_sym_co_await] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(3103), + [sym_this] = ACTIONS(3103), }, - [471] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [530] = { + [sym_identifier] = ACTIONS(3095), + [aux_sym_preproc_include_token1] = ACTIONS(3095), + [aux_sym_preproc_def_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token2] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), + [aux_sym_preproc_else_token1] = ACTIONS(3095), + [aux_sym_preproc_elif_token1] = ACTIONS(3095), + [sym_preproc_directive] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_AMP_AMP] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(3095), + [anon_sym___attribute__] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), + [anon_sym___declspec] = ACTIONS(3095), + [anon_sym___based] = ACTIONS(3095), + [anon_sym___cdecl] = ACTIONS(3095), + [anon_sym___clrcall] = ACTIONS(3095), + [anon_sym___stdcall] = ACTIONS(3095), + [anon_sym___fastcall] = ACTIONS(3095), + [anon_sym___thiscall] = ACTIONS(3095), + [anon_sym___vectorcall] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3095), + [anon_sym_unsigned] = ACTIONS(3095), + [anon_sym_long] = ACTIONS(3095), + [anon_sym_short] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_register] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym___inline] = ACTIONS(3095), + [anon_sym___inline__] = ACTIONS(3095), + [anon_sym___forceinline] = ACTIONS(3095), + [anon_sym_thread_local] = ACTIONS(3095), + [anon_sym___thread] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_constexpr] = ACTIONS(3095), + [anon_sym_volatile] = ACTIONS(3095), + [anon_sym_restrict] = ACTIONS(3095), + [anon_sym___restrict__] = ACTIONS(3095), + [anon_sym__Atomic] = ACTIONS(3095), + [anon_sym__Noreturn] = ACTIONS(3095), + [anon_sym_noreturn] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [sym_primitive_type] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3095), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_switch] = ACTIONS(3095), + [anon_sym_case] = ACTIONS(3095), + [anon_sym_default] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_break] = ACTIONS(3095), + [anon_sym_continue] = ACTIONS(3095), + [anon_sym_goto] = ACTIONS(3095), + [anon_sym_not] = ACTIONS(3095), + [anon_sym_compl] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3097), + [anon_sym_PLUS_PLUS] = ACTIONS(3097), + [anon_sym_sizeof] = ACTIONS(3095), + [anon_sym___alignof__] = ACTIONS(3095), + [anon_sym___alignof] = ACTIONS(3095), + [anon_sym__alignof] = ACTIONS(3095), + [anon_sym_alignof] = ACTIONS(3095), + [anon_sym__Alignof] = ACTIONS(3095), + [anon_sym_offsetof] = ACTIONS(3095), + [anon_sym__Generic] = ACTIONS(3095), + [anon_sym_asm] = ACTIONS(3095), + [anon_sym___asm__] = ACTIONS(3095), + [sym_number_literal] = ACTIONS(3097), + [anon_sym_L_SQUOTE] = ACTIONS(3097), + [anon_sym_u_SQUOTE] = ACTIONS(3097), + [anon_sym_U_SQUOTE] = ACTIONS(3097), + [anon_sym_u8_SQUOTE] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(3097), + [anon_sym_u_DQUOTE] = ACTIONS(3097), + [anon_sym_U_DQUOTE] = ACTIONS(3097), + [anon_sym_u8_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE] = ACTIONS(3097), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [anon_sym_NULL] = ACTIONS(3095), + [anon_sym_nullptr] = ACTIONS(3095), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_virtual] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym_explicit] = ACTIONS(3095), + [anon_sym_typename] = ACTIONS(3095), + [anon_sym_template] = ACTIONS(3095), + [anon_sym_operator] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_delete] = ACTIONS(3095), + [anon_sym_throw] = ACTIONS(3095), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_using] = ACTIONS(3095), + [anon_sym_static_assert] = ACTIONS(3095), + [anon_sym_concept] = ACTIONS(3095), + [anon_sym_co_return] = ACTIONS(3095), + [anon_sym_co_yield] = ACTIONS(3095), + [anon_sym_R_DQUOTE] = ACTIONS(3097), + [anon_sym_LR_DQUOTE] = ACTIONS(3097), + [anon_sym_uR_DQUOTE] = ACTIONS(3097), + [anon_sym_UR_DQUOTE] = ACTIONS(3097), + [anon_sym_u8R_DQUOTE] = ACTIONS(3097), + [anon_sym_co_await] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_requires] = ACTIONS(3095), + [sym_this] = ACTIONS(3095), }, - [472] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [531] = { + [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), + [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_extern] = ACTIONS(3067), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3067), + [anon_sym_constinit] = ACTIONS(3067), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3067), + [anon_sym_alignas] = 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_using] = 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), }, - [473] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [532] = { + [sym_identifier] = ACTIONS(3087), + [aux_sym_preproc_include_token1] = ACTIONS(3087), + [aux_sym_preproc_def_token1] = ACTIONS(3087), + [aux_sym_preproc_if_token1] = ACTIONS(3087), + [aux_sym_preproc_if_token2] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), + [aux_sym_preproc_else_token1] = ACTIONS(3087), + [aux_sym_preproc_elif_token1] = ACTIONS(3087), + [sym_preproc_directive] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_BANG] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3089), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym___cdecl] = ACTIONS(3087), + [anon_sym___clrcall] = ACTIONS(3087), + [anon_sym___stdcall] = ACTIONS(3087), + [anon_sym___fastcall] = ACTIONS(3087), + [anon_sym___thiscall] = ACTIONS(3087), + [anon_sym___vectorcall] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3087), + [anon_sym_unsigned] = ACTIONS(3087), + [anon_sym_long] = ACTIONS(3087), + [anon_sym_short] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_register] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym___inline] = ACTIONS(3087), + [anon_sym___inline__] = ACTIONS(3087), + [anon_sym___forceinline] = ACTIONS(3087), + [anon_sym_thread_local] = ACTIONS(3087), + [anon_sym___thread] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_constexpr] = ACTIONS(3087), + [anon_sym_volatile] = ACTIONS(3087), + [anon_sym_restrict] = ACTIONS(3087), + [anon_sym___restrict__] = ACTIONS(3087), + [anon_sym__Atomic] = ACTIONS(3087), + [anon_sym__Noreturn] = ACTIONS(3087), + [anon_sym_noreturn] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [sym_primitive_type] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_switch] = ACTIONS(3087), + [anon_sym_case] = ACTIONS(3087), + [anon_sym_default] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3087), + [anon_sym_do] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_goto] = ACTIONS(3087), + [anon_sym_not] = ACTIONS(3087), + [anon_sym_compl] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_sizeof] = ACTIONS(3087), + [anon_sym___alignof__] = ACTIONS(3087), + [anon_sym___alignof] = ACTIONS(3087), + [anon_sym__alignof] = ACTIONS(3087), + [anon_sym_alignof] = ACTIONS(3087), + [anon_sym__Alignof] = ACTIONS(3087), + [anon_sym_offsetof] = ACTIONS(3087), + [anon_sym__Generic] = ACTIONS(3087), + [anon_sym_asm] = ACTIONS(3087), + [anon_sym___asm__] = ACTIONS(3087), + [sym_number_literal] = ACTIONS(3089), + [anon_sym_L_SQUOTE] = ACTIONS(3089), + [anon_sym_u_SQUOTE] = ACTIONS(3089), + [anon_sym_U_SQUOTE] = ACTIONS(3089), + [anon_sym_u8_SQUOTE] = ACTIONS(3089), + [anon_sym_SQUOTE] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(3089), + [anon_sym_u_DQUOTE] = ACTIONS(3089), + [anon_sym_U_DQUOTE] = ACTIONS(3089), + [anon_sym_u8_DQUOTE] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [anon_sym_NULL] = ACTIONS(3087), + [anon_sym_nullptr] = ACTIONS(3087), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym_explicit] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_try] = ACTIONS(3087), + [anon_sym_delete] = ACTIONS(3087), + [anon_sym_throw] = ACTIONS(3087), + [anon_sym_namespace] = ACTIONS(3087), + [anon_sym_using] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), + [anon_sym_concept] = ACTIONS(3087), + [anon_sym_co_return] = ACTIONS(3087), + [anon_sym_co_yield] = ACTIONS(3087), + [anon_sym_R_DQUOTE] = ACTIONS(3089), + [anon_sym_LR_DQUOTE] = ACTIONS(3089), + [anon_sym_uR_DQUOTE] = ACTIONS(3089), + [anon_sym_UR_DQUOTE] = ACTIONS(3089), + [anon_sym_u8R_DQUOTE] = ACTIONS(3089), + [anon_sym_co_await] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_requires] = ACTIONS(3087), + [sym_this] = ACTIONS(3087), }, - [474] = { - [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_extern] = ACTIONS(3027), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3027), - [anon_sym_alignas] = 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_using] = 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), + [533] = { + [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), + [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_extern] = ACTIONS(3051), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3051), + [anon_sym_constinit] = ACTIONS(3051), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3051), + [anon_sym_alignas] = 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_using] = 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), }, - [475] = { - [sym_identifier] = ACTIONS(3031), - [aux_sym_preproc_include_token1] = ACTIONS(3031), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token2] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3031), - [aux_sym_preproc_else_token1] = ACTIONS(3031), - [aux_sym_preproc_elif_token1] = ACTIONS(3031), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3031), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3031), - [sym_preproc_directive] = ACTIONS(3031), - [anon_sym_LPAREN2] = ACTIONS(3033), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym___extension__] = ACTIONS(3031), - [anon_sym_typedef] = ACTIONS(3031), - [anon_sym_extern] = ACTIONS(3031), - [anon_sym___attribute__] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3033), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3033), - [anon_sym___declspec] = ACTIONS(3031), - [anon_sym___based] = ACTIONS(3031), - [anon_sym___cdecl] = ACTIONS(3031), - [anon_sym___clrcall] = ACTIONS(3031), - [anon_sym___stdcall] = ACTIONS(3031), - [anon_sym___fastcall] = ACTIONS(3031), - [anon_sym___thiscall] = ACTIONS(3031), - [anon_sym___vectorcall] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_signed] = ACTIONS(3031), - [anon_sym_unsigned] = ACTIONS(3031), - [anon_sym_long] = ACTIONS(3031), - [anon_sym_short] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_static] = ACTIONS(3031), - [anon_sym_register] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym___inline] = ACTIONS(3031), - [anon_sym___inline__] = ACTIONS(3031), - [anon_sym___forceinline] = ACTIONS(3031), - [anon_sym_thread_local] = ACTIONS(3031), - [anon_sym___thread] = ACTIONS(3031), - [anon_sym_const] = ACTIONS(3031), - [anon_sym_constexpr] = ACTIONS(3031), - [anon_sym_volatile] = ACTIONS(3031), - [anon_sym_restrict] = ACTIONS(3031), - [anon_sym___restrict__] = ACTIONS(3031), - [anon_sym__Atomic] = ACTIONS(3031), - [anon_sym__Noreturn] = ACTIONS(3031), - [anon_sym_noreturn] = ACTIONS(3031), - [anon_sym_mutable] = ACTIONS(3031), - [anon_sym_constinit] = ACTIONS(3031), - [anon_sym_consteval] = ACTIONS(3031), - [sym_primitive_type] = ACTIONS(3031), - [anon_sym_enum] = ACTIONS(3031), - [anon_sym_class] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_union] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_switch] = ACTIONS(3031), - [anon_sym_case] = ACTIONS(3031), - [anon_sym_default] = ACTIONS(3031), - [anon_sym_while] = ACTIONS(3031), - [anon_sym_do] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_goto] = ACTIONS(3031), - [anon_sym_not] = ACTIONS(3031), - [anon_sym_compl] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3033), - [anon_sym_PLUS_PLUS] = ACTIONS(3033), - [anon_sym_sizeof] = ACTIONS(3031), - [anon_sym___alignof__] = ACTIONS(3031), - [anon_sym___alignof] = ACTIONS(3031), - [anon_sym__alignof] = ACTIONS(3031), - [anon_sym_alignof] = ACTIONS(3031), - [anon_sym__Alignof] = ACTIONS(3031), - [anon_sym_offsetof] = ACTIONS(3031), - [anon_sym__Generic] = ACTIONS(3031), - [anon_sym_asm] = ACTIONS(3031), - [anon_sym___asm__] = ACTIONS(3031), - [sym_number_literal] = ACTIONS(3033), - [anon_sym_L_SQUOTE] = ACTIONS(3033), - [anon_sym_u_SQUOTE] = ACTIONS(3033), - [anon_sym_U_SQUOTE] = ACTIONS(3033), - [anon_sym_u8_SQUOTE] = ACTIONS(3033), - [anon_sym_SQUOTE] = ACTIONS(3033), - [anon_sym_L_DQUOTE] = ACTIONS(3033), - [anon_sym_u_DQUOTE] = ACTIONS(3033), - [anon_sym_U_DQUOTE] = ACTIONS(3033), - [anon_sym_u8_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [anon_sym_NULL] = ACTIONS(3031), - [anon_sym_nullptr] = ACTIONS(3031), + [534] = { + [sym_identifier] = ACTIONS(3083), + [aux_sym_preproc_include_token1] = ACTIONS(3083), + [aux_sym_preproc_def_token1] = ACTIONS(3083), + [aux_sym_preproc_if_token1] = ACTIONS(3083), + [aux_sym_preproc_if_token2] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), + [aux_sym_preproc_else_token1] = ACTIONS(3083), + [aux_sym_preproc_elif_token1] = ACTIONS(3083), + [sym_preproc_directive] = ACTIONS(3083), + [anon_sym_LPAREN2] = ACTIONS(3085), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(3083), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym___extension__] = ACTIONS(3083), + [anon_sym_typedef] = ACTIONS(3083), + [anon_sym_extern] = ACTIONS(3083), + [anon_sym___attribute__] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3085), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), + [anon_sym___declspec] = ACTIONS(3083), + [anon_sym___based] = ACTIONS(3083), + [anon_sym___cdecl] = ACTIONS(3083), + [anon_sym___clrcall] = ACTIONS(3083), + [anon_sym___stdcall] = ACTIONS(3083), + [anon_sym___fastcall] = ACTIONS(3083), + [anon_sym___thiscall] = ACTIONS(3083), + [anon_sym___vectorcall] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3083), + [anon_sym_unsigned] = ACTIONS(3083), + [anon_sym_long] = ACTIONS(3083), + [anon_sym_short] = ACTIONS(3083), + [anon_sym_LBRACK] = ACTIONS(3083), + [anon_sym_static] = ACTIONS(3083), + [anon_sym_register] = ACTIONS(3083), + [anon_sym_inline] = ACTIONS(3083), + [anon_sym___inline] = ACTIONS(3083), + [anon_sym___inline__] = ACTIONS(3083), + [anon_sym___forceinline] = ACTIONS(3083), + [anon_sym_thread_local] = ACTIONS(3083), + [anon_sym___thread] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3083), + [anon_sym_constexpr] = ACTIONS(3083), + [anon_sym_volatile] = ACTIONS(3083), + [anon_sym_restrict] = ACTIONS(3083), + [anon_sym___restrict__] = ACTIONS(3083), + [anon_sym__Atomic] = ACTIONS(3083), + [anon_sym__Noreturn] = ACTIONS(3083), + [anon_sym_noreturn] = ACTIONS(3083), + [anon_sym_mutable] = ACTIONS(3083), + [anon_sym_constinit] = ACTIONS(3083), + [anon_sym_consteval] = ACTIONS(3083), + [sym_primitive_type] = ACTIONS(3083), + [anon_sym_enum] = ACTIONS(3083), + [anon_sym_class] = ACTIONS(3083), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_switch] = ACTIONS(3083), + [anon_sym_case] = ACTIONS(3083), + [anon_sym_default] = ACTIONS(3083), + [anon_sym_while] = ACTIONS(3083), + [anon_sym_do] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3083), + [anon_sym_return] = ACTIONS(3083), + [anon_sym_break] = ACTIONS(3083), + [anon_sym_continue] = ACTIONS(3083), + [anon_sym_goto] = ACTIONS(3083), + [anon_sym_not] = ACTIONS(3083), + [anon_sym_compl] = ACTIONS(3083), + [anon_sym_DASH_DASH] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_sizeof] = ACTIONS(3083), + [anon_sym___alignof__] = ACTIONS(3083), + [anon_sym___alignof] = ACTIONS(3083), + [anon_sym__alignof] = ACTIONS(3083), + [anon_sym_alignof] = ACTIONS(3083), + [anon_sym__Alignof] = ACTIONS(3083), + [anon_sym_offsetof] = ACTIONS(3083), + [anon_sym__Generic] = ACTIONS(3083), + [anon_sym_asm] = ACTIONS(3083), + [anon_sym___asm__] = ACTIONS(3083), + [sym_number_literal] = ACTIONS(3085), + [anon_sym_L_SQUOTE] = ACTIONS(3085), + [anon_sym_u_SQUOTE] = ACTIONS(3085), + [anon_sym_U_SQUOTE] = ACTIONS(3085), + [anon_sym_u8_SQUOTE] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(3085), + [anon_sym_L_DQUOTE] = ACTIONS(3085), + [anon_sym_u_DQUOTE] = ACTIONS(3085), + [anon_sym_U_DQUOTE] = ACTIONS(3085), + [anon_sym_u8_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [sym_true] = ACTIONS(3083), + [sym_false] = ACTIONS(3083), + [anon_sym_NULL] = ACTIONS(3083), + [anon_sym_nullptr] = ACTIONS(3083), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3031), - [anon_sym_decltype] = ACTIONS(3031), - [anon_sym_virtual] = ACTIONS(3031), - [anon_sym_alignas] = ACTIONS(3031), - [anon_sym_explicit] = ACTIONS(3031), - [anon_sym_typename] = ACTIONS(3031), - [anon_sym_template] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3031), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_throw] = ACTIONS(3031), - [anon_sym_namespace] = ACTIONS(3031), - [anon_sym_using] = ACTIONS(3031), - [anon_sym_static_assert] = ACTIONS(3031), - [anon_sym_concept] = ACTIONS(3031), - [anon_sym_co_return] = ACTIONS(3031), - [anon_sym_co_yield] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3031), - [anon_sym_new] = ACTIONS(3031), - [anon_sym_requires] = ACTIONS(3031), - [sym_this] = ACTIONS(3031), + [sym_auto] = ACTIONS(3083), + [anon_sym_decltype] = ACTIONS(3083), + [anon_sym_virtual] = ACTIONS(3083), + [anon_sym_alignas] = ACTIONS(3083), + [anon_sym_explicit] = ACTIONS(3083), + [anon_sym_typename] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3083), + [anon_sym_operator] = ACTIONS(3083), + [anon_sym_try] = ACTIONS(3083), + [anon_sym_delete] = ACTIONS(3083), + [anon_sym_throw] = ACTIONS(3083), + [anon_sym_namespace] = ACTIONS(3083), + [anon_sym_using] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3083), + [anon_sym_concept] = ACTIONS(3083), + [anon_sym_co_return] = ACTIONS(3083), + [anon_sym_co_yield] = ACTIONS(3083), + [anon_sym_R_DQUOTE] = ACTIONS(3085), + [anon_sym_LR_DQUOTE] = ACTIONS(3085), + [anon_sym_uR_DQUOTE] = ACTIONS(3085), + [anon_sym_UR_DQUOTE] = ACTIONS(3085), + [anon_sym_u8R_DQUOTE] = ACTIONS(3085), + [anon_sym_co_await] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_requires] = ACTIONS(3083), + [sym_this] = ACTIONS(3083), }, - [476] = { - [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), + [535] = { + [sym_identifier] = ACTIONS(3079), + [aux_sym_preproc_include_token1] = ACTIONS(3079), + [aux_sym_preproc_def_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token2] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), + [aux_sym_preproc_else_token1] = ACTIONS(3079), + [aux_sym_preproc_elif_token1] = ACTIONS(3079), + [sym_preproc_directive] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym___extension__] = ACTIONS(3079), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym___based] = ACTIONS(3079), + [anon_sym___cdecl] = ACTIONS(3079), + [anon_sym___clrcall] = ACTIONS(3079), + [anon_sym___stdcall] = ACTIONS(3079), + [anon_sym___fastcall] = ACTIONS(3079), + [anon_sym___thiscall] = ACTIONS(3079), + [anon_sym___vectorcall] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym___inline] = ACTIONS(3079), + [anon_sym___inline__] = ACTIONS(3079), + [anon_sym___forceinline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym___thread] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3079), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_goto] = ACTIONS(3079), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_compl] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3079), + [anon_sym___alignof__] = ACTIONS(3079), + [anon_sym___alignof] = ACTIONS(3079), + [anon_sym__alignof] = ACTIONS(3079), + [anon_sym_alignof] = ACTIONS(3079), + [anon_sym__Alignof] = ACTIONS(3079), + [anon_sym_offsetof] = ACTIONS(3079), + [anon_sym__Generic] = ACTIONS(3079), + [anon_sym_asm] = ACTIONS(3079), + [anon_sym___asm__] = ACTIONS(3079), + [sym_number_literal] = ACTIONS(3081), + [anon_sym_L_SQUOTE] = ACTIONS(3081), + [anon_sym_u_SQUOTE] = ACTIONS(3081), + [anon_sym_U_SQUOTE] = ACTIONS(3081), + [anon_sym_u8_SQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_L_DQUOTE] = ACTIONS(3081), + [anon_sym_u_DQUOTE] = ACTIONS(3081), + [anon_sym_U_DQUOTE] = ACTIONS(3081), + [anon_sym_u8_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [anon_sym_NULL] = ACTIONS(3079), + [anon_sym_nullptr] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_alignas] = ACTIONS(3079), + [anon_sym_explicit] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_static_assert] = ACTIONS(3079), + [anon_sym_concept] = ACTIONS(3079), + [anon_sym_co_return] = ACTIONS(3079), + [anon_sym_co_yield] = ACTIONS(3079), + [anon_sym_R_DQUOTE] = ACTIONS(3081), + [anon_sym_LR_DQUOTE] = ACTIONS(3081), + [anon_sym_uR_DQUOTE] = ACTIONS(3081), + [anon_sym_UR_DQUOTE] = ACTIONS(3081), + [anon_sym_u8R_DQUOTE] = ACTIONS(3081), + [anon_sym_co_await] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_requires] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), + }, + [536] = { + [sym_identifier] = ACTIONS(3035), + [aux_sym_preproc_include_token1] = ACTIONS(3035), + [aux_sym_preproc_def_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token2] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), + [aux_sym_preproc_else_token1] = ACTIONS(3035), + [aux_sym_preproc_elif_token1] = ACTIONS(3035), + [sym_preproc_directive] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_BANG] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(3037), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP_AMP] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_SEMI] = ACTIONS(3037), + [anon_sym___extension__] = ACTIONS(3035), + [anon_sym_typedef] = ACTIONS(3035), + [anon_sym_extern] = ACTIONS(3035), + [anon_sym___attribute__] = ACTIONS(3035), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), + [anon_sym___declspec] = ACTIONS(3035), + [anon_sym___based] = ACTIONS(3035), + [anon_sym___cdecl] = ACTIONS(3035), + [anon_sym___clrcall] = ACTIONS(3035), + [anon_sym___stdcall] = ACTIONS(3035), + [anon_sym___fastcall] = ACTIONS(3035), + [anon_sym___thiscall] = ACTIONS(3035), + [anon_sym___vectorcall] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3037), + [anon_sym_signed] = ACTIONS(3035), + [anon_sym_unsigned] = ACTIONS(3035), + [anon_sym_long] = ACTIONS(3035), + [anon_sym_short] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_static] = ACTIONS(3035), + [anon_sym_register] = ACTIONS(3035), + [anon_sym_inline] = ACTIONS(3035), + [anon_sym___inline] = ACTIONS(3035), + [anon_sym___inline__] = ACTIONS(3035), + [anon_sym___forceinline] = ACTIONS(3035), + [anon_sym_thread_local] = ACTIONS(3035), + [anon_sym___thread] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_constexpr] = ACTIONS(3035), + [anon_sym_volatile] = ACTIONS(3035), + [anon_sym_restrict] = ACTIONS(3035), + [anon_sym___restrict__] = ACTIONS(3035), + [anon_sym__Atomic] = ACTIONS(3035), + [anon_sym__Noreturn] = ACTIONS(3035), + [anon_sym_noreturn] = ACTIONS(3035), + [anon_sym_mutable] = ACTIONS(3035), + [anon_sym_constinit] = ACTIONS(3035), + [anon_sym_consteval] = ACTIONS(3035), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_class] = ACTIONS(3035), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_switch] = ACTIONS(3035), + [anon_sym_case] = ACTIONS(3035), + [anon_sym_default] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_break] = ACTIONS(3035), + [anon_sym_continue] = ACTIONS(3035), + [anon_sym_goto] = ACTIONS(3035), + [anon_sym_not] = ACTIONS(3035), + [anon_sym_compl] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3037), + [anon_sym_PLUS_PLUS] = ACTIONS(3037), + [anon_sym_sizeof] = ACTIONS(3035), + [anon_sym___alignof__] = ACTIONS(3035), + [anon_sym___alignof] = ACTIONS(3035), + [anon_sym__alignof] = ACTIONS(3035), + [anon_sym_alignof] = ACTIONS(3035), + [anon_sym__Alignof] = ACTIONS(3035), + [anon_sym_offsetof] = ACTIONS(3035), + [anon_sym__Generic] = ACTIONS(3035), + [anon_sym_asm] = ACTIONS(3035), + [anon_sym___asm__] = ACTIONS(3035), + [sym_number_literal] = ACTIONS(3037), + [anon_sym_L_SQUOTE] = ACTIONS(3037), + [anon_sym_u_SQUOTE] = ACTIONS(3037), + [anon_sym_U_SQUOTE] = ACTIONS(3037), + [anon_sym_u8_SQUOTE] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_L_DQUOTE] = ACTIONS(3037), + [anon_sym_u_DQUOTE] = ACTIONS(3037), + [anon_sym_U_DQUOTE] = ACTIONS(3037), + [anon_sym_u8_DQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE] = ACTIONS(3037), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [anon_sym_NULL] = ACTIONS(3035), + [anon_sym_nullptr] = ACTIONS(3035), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3035), + [anon_sym_decltype] = ACTIONS(3035), + [anon_sym_virtual] = ACTIONS(3035), + [anon_sym_alignas] = ACTIONS(3035), + [anon_sym_explicit] = ACTIONS(3035), + [anon_sym_typename] = ACTIONS(3035), + [anon_sym_template] = ACTIONS(3035), + [anon_sym_operator] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_delete] = ACTIONS(3035), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_namespace] = ACTIONS(3035), + [anon_sym_using] = ACTIONS(3035), + [anon_sym_static_assert] = ACTIONS(3035), + [anon_sym_concept] = ACTIONS(3035), + [anon_sym_co_return] = ACTIONS(3035), + [anon_sym_co_yield] = ACTIONS(3035), + [anon_sym_R_DQUOTE] = ACTIONS(3037), + [anon_sym_LR_DQUOTE] = ACTIONS(3037), + [anon_sym_uR_DQUOTE] = ACTIONS(3037), + [anon_sym_UR_DQUOTE] = ACTIONS(3037), + [anon_sym_u8R_DQUOTE] = ACTIONS(3037), + [anon_sym_co_await] = ACTIONS(3035), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(3035), + [sym_this] = ACTIONS(3035), + }, + [537] = { + [sym_identifier] = ACTIONS(3035), + [aux_sym_preproc_include_token1] = ACTIONS(3035), + [aux_sym_preproc_def_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token2] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), + [aux_sym_preproc_else_token1] = ACTIONS(3035), + [aux_sym_preproc_elif_token1] = ACTIONS(3035), + [sym_preproc_directive] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_BANG] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(3037), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP_AMP] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_SEMI] = ACTIONS(3037), + [anon_sym___extension__] = ACTIONS(3035), + [anon_sym_typedef] = ACTIONS(3035), + [anon_sym_extern] = ACTIONS(3035), + [anon_sym___attribute__] = ACTIONS(3035), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), + [anon_sym___declspec] = ACTIONS(3035), + [anon_sym___based] = ACTIONS(3035), + [anon_sym___cdecl] = ACTIONS(3035), + [anon_sym___clrcall] = ACTIONS(3035), + [anon_sym___stdcall] = ACTIONS(3035), + [anon_sym___fastcall] = ACTIONS(3035), + [anon_sym___thiscall] = ACTIONS(3035), + [anon_sym___vectorcall] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3037), + [anon_sym_signed] = ACTIONS(3035), + [anon_sym_unsigned] = ACTIONS(3035), + [anon_sym_long] = ACTIONS(3035), + [anon_sym_short] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_static] = ACTIONS(3035), + [anon_sym_register] = ACTIONS(3035), + [anon_sym_inline] = ACTIONS(3035), + [anon_sym___inline] = ACTIONS(3035), + [anon_sym___inline__] = ACTIONS(3035), + [anon_sym___forceinline] = ACTIONS(3035), + [anon_sym_thread_local] = ACTIONS(3035), + [anon_sym___thread] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_constexpr] = ACTIONS(3035), + [anon_sym_volatile] = ACTIONS(3035), + [anon_sym_restrict] = ACTIONS(3035), + [anon_sym___restrict__] = ACTIONS(3035), + [anon_sym__Atomic] = ACTIONS(3035), + [anon_sym__Noreturn] = ACTIONS(3035), + [anon_sym_noreturn] = ACTIONS(3035), + [anon_sym_mutable] = ACTIONS(3035), + [anon_sym_constinit] = ACTIONS(3035), + [anon_sym_consteval] = ACTIONS(3035), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_class] = ACTIONS(3035), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_switch] = ACTIONS(3035), + [anon_sym_case] = ACTIONS(3035), + [anon_sym_default] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_break] = ACTIONS(3035), + [anon_sym_continue] = ACTIONS(3035), + [anon_sym_goto] = ACTIONS(3035), + [anon_sym_not] = ACTIONS(3035), + [anon_sym_compl] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3037), + [anon_sym_PLUS_PLUS] = ACTIONS(3037), + [anon_sym_sizeof] = ACTIONS(3035), + [anon_sym___alignof__] = ACTIONS(3035), + [anon_sym___alignof] = ACTIONS(3035), + [anon_sym__alignof] = ACTIONS(3035), + [anon_sym_alignof] = ACTIONS(3035), + [anon_sym__Alignof] = ACTIONS(3035), + [anon_sym_offsetof] = ACTIONS(3035), + [anon_sym__Generic] = ACTIONS(3035), + [anon_sym_asm] = ACTIONS(3035), + [anon_sym___asm__] = ACTIONS(3035), + [sym_number_literal] = ACTIONS(3037), + [anon_sym_L_SQUOTE] = ACTIONS(3037), + [anon_sym_u_SQUOTE] = ACTIONS(3037), + [anon_sym_U_SQUOTE] = ACTIONS(3037), + [anon_sym_u8_SQUOTE] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_L_DQUOTE] = ACTIONS(3037), + [anon_sym_u_DQUOTE] = ACTIONS(3037), + [anon_sym_U_DQUOTE] = ACTIONS(3037), + [anon_sym_u8_DQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE] = ACTIONS(3037), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [anon_sym_NULL] = ACTIONS(3035), + [anon_sym_nullptr] = ACTIONS(3035), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3035), + [anon_sym_decltype] = ACTIONS(3035), + [anon_sym_virtual] = ACTIONS(3035), + [anon_sym_alignas] = ACTIONS(3035), + [anon_sym_explicit] = ACTIONS(3035), + [anon_sym_typename] = ACTIONS(3035), + [anon_sym_template] = ACTIONS(3035), + [anon_sym_operator] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_delete] = ACTIONS(3035), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_namespace] = ACTIONS(3035), + [anon_sym_using] = ACTIONS(3035), + [anon_sym_static_assert] = ACTIONS(3035), + [anon_sym_concept] = ACTIONS(3035), + [anon_sym_co_return] = ACTIONS(3035), + [anon_sym_co_yield] = ACTIONS(3035), + [anon_sym_R_DQUOTE] = ACTIONS(3037), + [anon_sym_LR_DQUOTE] = ACTIONS(3037), + [anon_sym_uR_DQUOTE] = ACTIONS(3037), + [anon_sym_UR_DQUOTE] = ACTIONS(3037), + [anon_sym_u8R_DQUOTE] = ACTIONS(3037), + [anon_sym_co_await] = ACTIONS(3035), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(3035), + [sym_this] = ACTIONS(3035), + }, + [538] = { + [sym_identifier] = ACTIONS(3047), + [aux_sym_preproc_include_token1] = ACTIONS(3047), + [aux_sym_preproc_def_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token2] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3047), + [aux_sym_preproc_else_token1] = ACTIONS(3047), + [aux_sym_preproc_elif_token1] = ACTIONS(3047), + [sym_preproc_directive] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3047), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym___extension__] = ACTIONS(3047), + [anon_sym_typedef] = ACTIONS(3047), + [anon_sym_extern] = ACTIONS(3047), + [anon_sym___attribute__] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3049), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3049), + [anon_sym___declspec] = ACTIONS(3047), + [anon_sym___based] = ACTIONS(3047), + [anon_sym___cdecl] = ACTIONS(3047), + [anon_sym___clrcall] = ACTIONS(3047), + [anon_sym___stdcall] = ACTIONS(3047), + [anon_sym___fastcall] = ACTIONS(3047), + [anon_sym___thiscall] = ACTIONS(3047), + [anon_sym___vectorcall] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_signed] = ACTIONS(3047), + [anon_sym_unsigned] = ACTIONS(3047), + [anon_sym_long] = ACTIONS(3047), + [anon_sym_short] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_static] = ACTIONS(3047), + [anon_sym_register] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym___inline] = ACTIONS(3047), + [anon_sym___inline__] = ACTIONS(3047), + [anon_sym___forceinline] = ACTIONS(3047), + [anon_sym_thread_local] = ACTIONS(3047), + [anon_sym___thread] = ACTIONS(3047), + [anon_sym_const] = ACTIONS(3047), + [anon_sym_constexpr] = ACTIONS(3047), + [anon_sym_volatile] = ACTIONS(3047), + [anon_sym_restrict] = ACTIONS(3047), + [anon_sym___restrict__] = ACTIONS(3047), + [anon_sym__Atomic] = ACTIONS(3047), + [anon_sym__Noreturn] = ACTIONS(3047), + [anon_sym_noreturn] = ACTIONS(3047), + [anon_sym_mutable] = ACTIONS(3047), + [anon_sym_constinit] = ACTIONS(3047), + [anon_sym_consteval] = ACTIONS(3047), + [sym_primitive_type] = ACTIONS(3047), + [anon_sym_enum] = ACTIONS(3047), + [anon_sym_class] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_union] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_switch] = ACTIONS(3047), + [anon_sym_case] = ACTIONS(3047), + [anon_sym_default] = ACTIONS(3047), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_do] = ACTIONS(3047), + [anon_sym_for] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_goto] = ACTIONS(3047), + [anon_sym_not] = ACTIONS(3047), + [anon_sym_compl] = ACTIONS(3047), + [anon_sym_DASH_DASH] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_sizeof] = ACTIONS(3047), + [anon_sym___alignof__] = ACTIONS(3047), + [anon_sym___alignof] = ACTIONS(3047), + [anon_sym__alignof] = ACTIONS(3047), + [anon_sym_alignof] = ACTIONS(3047), + [anon_sym__Alignof] = ACTIONS(3047), + [anon_sym_offsetof] = ACTIONS(3047), + [anon_sym__Generic] = ACTIONS(3047), + [anon_sym_asm] = ACTIONS(3047), + [anon_sym___asm__] = ACTIONS(3047), + [sym_number_literal] = ACTIONS(3049), + [anon_sym_L_SQUOTE] = ACTIONS(3049), + [anon_sym_u_SQUOTE] = ACTIONS(3049), + [anon_sym_U_SQUOTE] = ACTIONS(3049), + [anon_sym_u8_SQUOTE] = ACTIONS(3049), + [anon_sym_SQUOTE] = ACTIONS(3049), + [anon_sym_L_DQUOTE] = ACTIONS(3049), + [anon_sym_u_DQUOTE] = ACTIONS(3049), + [anon_sym_U_DQUOTE] = ACTIONS(3049), + [anon_sym_u8_DQUOTE] = ACTIONS(3049), + [anon_sym_DQUOTE] = ACTIONS(3049), + [sym_true] = ACTIONS(3047), + [sym_false] = ACTIONS(3047), + [anon_sym_NULL] = ACTIONS(3047), + [anon_sym_nullptr] = ACTIONS(3047), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3047), + [anon_sym_decltype] = ACTIONS(3047), + [anon_sym_virtual] = ACTIONS(3047), + [anon_sym_alignas] = ACTIONS(3047), + [anon_sym_explicit] = ACTIONS(3047), + [anon_sym_typename] = ACTIONS(3047), + [anon_sym_template] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_delete] = ACTIONS(3047), + [anon_sym_throw] = ACTIONS(3047), + [anon_sym_namespace] = ACTIONS(3047), + [anon_sym_using] = ACTIONS(3047), + [anon_sym_static_assert] = ACTIONS(3047), + [anon_sym_concept] = ACTIONS(3047), + [anon_sym_co_return] = ACTIONS(3047), + [anon_sym_co_yield] = ACTIONS(3047), + [anon_sym_R_DQUOTE] = ACTIONS(3049), + [anon_sym_LR_DQUOTE] = ACTIONS(3049), + [anon_sym_uR_DQUOTE] = ACTIONS(3049), + [anon_sym_UR_DQUOTE] = ACTIONS(3049), + [anon_sym_u8R_DQUOTE] = ACTIONS(3049), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_requires] = ACTIONS(3047), + [sym_this] = ACTIONS(3047), + }, + [539] = { + [sym_identifier] = ACTIONS(2993), + [aux_sym_preproc_include_token1] = ACTIONS(2993), + [aux_sym_preproc_def_token1] = ACTIONS(2993), + [aux_sym_preproc_if_token1] = ACTIONS(2993), + [aux_sym_preproc_if_token2] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2993), + [aux_sym_preproc_else_token1] = ACTIONS(2993), + [aux_sym_preproc_elif_token1] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_TILDE] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym___extension__] = ACTIONS(2993), + [anon_sym_typedef] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2993), + [anon_sym___attribute__] = ACTIONS(2993), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2995), + [anon_sym___declspec] = ACTIONS(2993), + [anon_sym___based] = ACTIONS(2993), + [anon_sym___cdecl] = ACTIONS(2993), + [anon_sym___clrcall] = ACTIONS(2993), + [anon_sym___stdcall] = ACTIONS(2993), + [anon_sym___fastcall] = ACTIONS(2993), + [anon_sym___thiscall] = ACTIONS(2993), + [anon_sym___vectorcall] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_signed] = ACTIONS(2993), + [anon_sym_unsigned] = ACTIONS(2993), + [anon_sym_long] = ACTIONS(2993), + [anon_sym_short] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_static] = ACTIONS(2993), + [anon_sym_register] = ACTIONS(2993), + [anon_sym_inline] = ACTIONS(2993), + [anon_sym___inline] = ACTIONS(2993), + [anon_sym___inline__] = ACTIONS(2993), + [anon_sym___forceinline] = ACTIONS(2993), + [anon_sym_thread_local] = ACTIONS(2993), + [anon_sym___thread] = ACTIONS(2993), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_constexpr] = ACTIONS(2993), + [anon_sym_volatile] = ACTIONS(2993), + [anon_sym_restrict] = ACTIONS(2993), + [anon_sym___restrict__] = ACTIONS(2993), + [anon_sym__Atomic] = ACTIONS(2993), + [anon_sym__Noreturn] = ACTIONS(2993), + [anon_sym_noreturn] = ACTIONS(2993), + [anon_sym_mutable] = ACTIONS(2993), + [anon_sym_constinit] = ACTIONS(2993), + [anon_sym_consteval] = ACTIONS(2993), + [sym_primitive_type] = ACTIONS(2993), + [anon_sym_enum] = ACTIONS(2993), + [anon_sym_class] = ACTIONS(2993), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_union] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_switch] = ACTIONS(2993), + [anon_sym_case] = ACTIONS(2993), + [anon_sym_default] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_goto] = ACTIONS(2993), + [anon_sym_not] = ACTIONS(2993), + [anon_sym_compl] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2993), + [anon_sym___alignof] = ACTIONS(2993), + [anon_sym__alignof] = ACTIONS(2993), + [anon_sym_alignof] = ACTIONS(2993), + [anon_sym__Alignof] = ACTIONS(2993), + [anon_sym_offsetof] = ACTIONS(2993), + [anon_sym__Generic] = ACTIONS(2993), + [anon_sym_asm] = ACTIONS(2993), + [anon_sym___asm__] = ACTIONS(2993), + [sym_number_literal] = ACTIONS(2995), + [anon_sym_L_SQUOTE] = ACTIONS(2995), + [anon_sym_u_SQUOTE] = ACTIONS(2995), + [anon_sym_U_SQUOTE] = ACTIONS(2995), + [anon_sym_u8_SQUOTE] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_L_DQUOTE] = ACTIONS(2995), + [anon_sym_u_DQUOTE] = ACTIONS(2995), + [anon_sym_U_DQUOTE] = ACTIONS(2995), + [anon_sym_u8_DQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [anon_sym_NULL] = ACTIONS(2993), + [anon_sym_nullptr] = ACTIONS(2993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2993), + [anon_sym_decltype] = ACTIONS(2993), + [anon_sym_virtual] = ACTIONS(2993), + [anon_sym_alignas] = ACTIONS(2993), + [anon_sym_explicit] = ACTIONS(2993), + [anon_sym_typename] = ACTIONS(2993), + [anon_sym_template] = ACTIONS(2993), + [anon_sym_operator] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_delete] = ACTIONS(2993), + [anon_sym_throw] = ACTIONS(2993), + [anon_sym_namespace] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(2993), + [anon_sym_static_assert] = ACTIONS(2993), + [anon_sym_concept] = ACTIONS(2993), + [anon_sym_co_return] = ACTIONS(2993), + [anon_sym_co_yield] = ACTIONS(2993), + [anon_sym_R_DQUOTE] = ACTIONS(2995), + [anon_sym_LR_DQUOTE] = ACTIONS(2995), + [anon_sym_uR_DQUOTE] = ACTIONS(2995), + [anon_sym_UR_DQUOTE] = ACTIONS(2995), + [anon_sym_u8R_DQUOTE] = ACTIONS(2995), + [anon_sym_co_await] = ACTIONS(2993), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_requires] = ACTIONS(2993), + [sym_this] = ACTIONS(2993), + }, + [540] = { + [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), + [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_extern] = ACTIONS(3027), [anon_sym___attribute__] = ACTIONS(3027), [anon_sym_COLON_COLON] = ACTIONS(3029), @@ -125101,7 +129842,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(3027), [anon_sym_union] = ACTIONS(3027), [anon_sym_if] = ACTIONS(3027), - [anon_sym_else] = ACTIONS(3027), [anon_sym_switch] = ACTIONS(3027), [anon_sym_case] = ACTIONS(3027), [anon_sym_default] = ACTIONS(3027), @@ -125169,16546 +129909,6079 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3027), [sym_this] = ACTIONS(3027), }, - [477] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [541] = { + [sym_identifier] = ACTIONS(3021), + [aux_sym_preproc_include_token1] = ACTIONS(3021), + [aux_sym_preproc_def_token1] = ACTIONS(3021), + [aux_sym_preproc_if_token1] = ACTIONS(3021), + [aux_sym_preproc_if_token2] = ACTIONS(3021), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3021), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3021), + [aux_sym_preproc_else_token1] = ACTIONS(3021), + [aux_sym_preproc_elif_token1] = ACTIONS(3021), + [sym_preproc_directive] = ACTIONS(3021), + [anon_sym_LPAREN2] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3021), + [anon_sym_PLUS] = ACTIONS(3021), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3021), + [anon_sym_SEMI] = ACTIONS(3023), + [anon_sym___extension__] = ACTIONS(3021), + [anon_sym_typedef] = ACTIONS(3021), + [anon_sym_extern] = ACTIONS(3021), + [anon_sym___attribute__] = ACTIONS(3021), + [anon_sym_COLON_COLON] = ACTIONS(3023), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3023), + [anon_sym___declspec] = ACTIONS(3021), + [anon_sym___based] = ACTIONS(3021), + [anon_sym___cdecl] = ACTIONS(3021), + [anon_sym___clrcall] = ACTIONS(3021), + [anon_sym___stdcall] = ACTIONS(3021), + [anon_sym___fastcall] = ACTIONS(3021), + [anon_sym___thiscall] = ACTIONS(3021), + [anon_sym___vectorcall] = ACTIONS(3021), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_signed] = ACTIONS(3021), + [anon_sym_unsigned] = ACTIONS(3021), + [anon_sym_long] = ACTIONS(3021), + [anon_sym_short] = ACTIONS(3021), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_static] = ACTIONS(3021), + [anon_sym_register] = ACTIONS(3021), + [anon_sym_inline] = ACTIONS(3021), + [anon_sym___inline] = ACTIONS(3021), + [anon_sym___inline__] = ACTIONS(3021), + [anon_sym___forceinline] = ACTIONS(3021), + [anon_sym_thread_local] = ACTIONS(3021), + [anon_sym___thread] = ACTIONS(3021), + [anon_sym_const] = ACTIONS(3021), + [anon_sym_constexpr] = ACTIONS(3021), + [anon_sym_volatile] = ACTIONS(3021), + [anon_sym_restrict] = ACTIONS(3021), + [anon_sym___restrict__] = ACTIONS(3021), + [anon_sym__Atomic] = ACTIONS(3021), + [anon_sym__Noreturn] = ACTIONS(3021), + [anon_sym_noreturn] = ACTIONS(3021), + [anon_sym_mutable] = ACTIONS(3021), + [anon_sym_constinit] = ACTIONS(3021), + [anon_sym_consteval] = ACTIONS(3021), + [sym_primitive_type] = ACTIONS(3021), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3021), + [anon_sym_struct] = ACTIONS(3021), + [anon_sym_union] = ACTIONS(3021), + [anon_sym_if] = ACTIONS(3021), + [anon_sym_switch] = ACTIONS(3021), + [anon_sym_case] = ACTIONS(3021), + [anon_sym_default] = ACTIONS(3021), + [anon_sym_while] = ACTIONS(3021), + [anon_sym_do] = ACTIONS(3021), + [anon_sym_for] = ACTIONS(3021), + [anon_sym_return] = ACTIONS(3021), + [anon_sym_break] = ACTIONS(3021), + [anon_sym_continue] = ACTIONS(3021), + [anon_sym_goto] = ACTIONS(3021), + [anon_sym_not] = ACTIONS(3021), + [anon_sym_compl] = ACTIONS(3021), + [anon_sym_DASH_DASH] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(3023), + [anon_sym_sizeof] = ACTIONS(3021), + [anon_sym___alignof__] = ACTIONS(3021), + [anon_sym___alignof] = ACTIONS(3021), + [anon_sym__alignof] = ACTIONS(3021), + [anon_sym_alignof] = ACTIONS(3021), + [anon_sym__Alignof] = ACTIONS(3021), + [anon_sym_offsetof] = ACTIONS(3021), + [anon_sym__Generic] = ACTIONS(3021), + [anon_sym_asm] = ACTIONS(3021), + [anon_sym___asm__] = ACTIONS(3021), + [sym_number_literal] = ACTIONS(3023), + [anon_sym_L_SQUOTE] = ACTIONS(3023), + [anon_sym_u_SQUOTE] = ACTIONS(3023), + [anon_sym_U_SQUOTE] = ACTIONS(3023), + [anon_sym_u8_SQUOTE] = ACTIONS(3023), + [anon_sym_SQUOTE] = ACTIONS(3023), + [anon_sym_L_DQUOTE] = ACTIONS(3023), + [anon_sym_u_DQUOTE] = ACTIONS(3023), + [anon_sym_U_DQUOTE] = ACTIONS(3023), + [anon_sym_u8_DQUOTE] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(3023), + [sym_true] = ACTIONS(3021), + [sym_false] = ACTIONS(3021), + [anon_sym_NULL] = ACTIONS(3021), + [anon_sym_nullptr] = ACTIONS(3021), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3021), + [anon_sym_decltype] = ACTIONS(3021), + [anon_sym_virtual] = ACTIONS(3021), + [anon_sym_alignas] = ACTIONS(3021), + [anon_sym_explicit] = ACTIONS(3021), + [anon_sym_typename] = ACTIONS(3021), + [anon_sym_template] = ACTIONS(3021), + [anon_sym_operator] = ACTIONS(3021), + [anon_sym_try] = ACTIONS(3021), + [anon_sym_delete] = ACTIONS(3021), + [anon_sym_throw] = ACTIONS(3021), + [anon_sym_namespace] = ACTIONS(3021), + [anon_sym_using] = ACTIONS(3021), + [anon_sym_static_assert] = ACTIONS(3021), + [anon_sym_concept] = ACTIONS(3021), + [anon_sym_co_return] = ACTIONS(3021), + [anon_sym_co_yield] = ACTIONS(3021), + [anon_sym_R_DQUOTE] = ACTIONS(3023), + [anon_sym_LR_DQUOTE] = ACTIONS(3023), + [anon_sym_uR_DQUOTE] = ACTIONS(3023), + [anon_sym_UR_DQUOTE] = ACTIONS(3023), + [anon_sym_u8R_DQUOTE] = ACTIONS(3023), + [anon_sym_co_await] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3021), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3021), }, - [478] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [542] = { + [sym_identifier] = ACTIONS(3017), + [aux_sym_preproc_include_token1] = ACTIONS(3017), + [aux_sym_preproc_def_token1] = ACTIONS(3017), + [aux_sym_preproc_if_token1] = ACTIONS(3017), + [aux_sym_preproc_if_token2] = ACTIONS(3017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3017), + [aux_sym_preproc_else_token1] = ACTIONS(3017), + [aux_sym_preproc_elif_token1] = ACTIONS(3017), + [sym_preproc_directive] = ACTIONS(3017), + [anon_sym_LPAREN2] = ACTIONS(3019), + [anon_sym_BANG] = ACTIONS(3019), + [anon_sym_TILDE] = ACTIONS(3019), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_AMP] = ACTIONS(3017), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym___extension__] = ACTIONS(3017), + [anon_sym_typedef] = ACTIONS(3017), + [anon_sym_extern] = ACTIONS(3017), + [anon_sym___attribute__] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(3019), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3019), + [anon_sym___declspec] = ACTIONS(3017), + [anon_sym___based] = ACTIONS(3017), + [anon_sym___cdecl] = ACTIONS(3017), + [anon_sym___clrcall] = ACTIONS(3017), + [anon_sym___stdcall] = ACTIONS(3017), + [anon_sym___fastcall] = ACTIONS(3017), + [anon_sym___thiscall] = ACTIONS(3017), + [anon_sym___vectorcall] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3019), + [anon_sym_signed] = ACTIONS(3017), + [anon_sym_unsigned] = ACTIONS(3017), + [anon_sym_long] = ACTIONS(3017), + [anon_sym_short] = ACTIONS(3017), + [anon_sym_LBRACK] = ACTIONS(3017), + [anon_sym_static] = ACTIONS(3017), + [anon_sym_register] = ACTIONS(3017), + [anon_sym_inline] = ACTIONS(3017), + [anon_sym___inline] = ACTIONS(3017), + [anon_sym___inline__] = ACTIONS(3017), + [anon_sym___forceinline] = ACTIONS(3017), + [anon_sym_thread_local] = ACTIONS(3017), + [anon_sym___thread] = ACTIONS(3017), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_constexpr] = ACTIONS(3017), + [anon_sym_volatile] = ACTIONS(3017), + [anon_sym_restrict] = ACTIONS(3017), + [anon_sym___restrict__] = ACTIONS(3017), + [anon_sym__Atomic] = ACTIONS(3017), + [anon_sym__Noreturn] = ACTIONS(3017), + [anon_sym_noreturn] = ACTIONS(3017), + [anon_sym_mutable] = ACTIONS(3017), + [anon_sym_constinit] = ACTIONS(3017), + [anon_sym_consteval] = ACTIONS(3017), + [sym_primitive_type] = ACTIONS(3017), + [anon_sym_enum] = ACTIONS(3017), + [anon_sym_class] = ACTIONS(3017), + [anon_sym_struct] = ACTIONS(3017), + [anon_sym_union] = ACTIONS(3017), + [anon_sym_if] = ACTIONS(3017), + [anon_sym_switch] = ACTIONS(3017), + [anon_sym_case] = ACTIONS(3017), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3017), + [anon_sym_do] = ACTIONS(3017), + [anon_sym_for] = ACTIONS(3017), + [anon_sym_return] = ACTIONS(3017), + [anon_sym_break] = ACTIONS(3017), + [anon_sym_continue] = ACTIONS(3017), + [anon_sym_goto] = ACTIONS(3017), + [anon_sym_not] = ACTIONS(3017), + [anon_sym_compl] = ACTIONS(3017), + [anon_sym_DASH_DASH] = ACTIONS(3019), + [anon_sym_PLUS_PLUS] = ACTIONS(3019), + [anon_sym_sizeof] = ACTIONS(3017), + [anon_sym___alignof__] = ACTIONS(3017), + [anon_sym___alignof] = ACTIONS(3017), + [anon_sym__alignof] = ACTIONS(3017), + [anon_sym_alignof] = ACTIONS(3017), + [anon_sym__Alignof] = ACTIONS(3017), + [anon_sym_offsetof] = ACTIONS(3017), + [anon_sym__Generic] = ACTIONS(3017), + [anon_sym_asm] = ACTIONS(3017), + [anon_sym___asm__] = ACTIONS(3017), + [sym_number_literal] = ACTIONS(3019), + [anon_sym_L_SQUOTE] = ACTIONS(3019), + [anon_sym_u_SQUOTE] = ACTIONS(3019), + [anon_sym_U_SQUOTE] = ACTIONS(3019), + [anon_sym_u8_SQUOTE] = ACTIONS(3019), + [anon_sym_SQUOTE] = ACTIONS(3019), + [anon_sym_L_DQUOTE] = ACTIONS(3019), + [anon_sym_u_DQUOTE] = ACTIONS(3019), + [anon_sym_U_DQUOTE] = ACTIONS(3019), + [anon_sym_u8_DQUOTE] = ACTIONS(3019), + [anon_sym_DQUOTE] = ACTIONS(3019), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [anon_sym_NULL] = ACTIONS(3017), + [anon_sym_nullptr] = ACTIONS(3017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3017), + [anon_sym_decltype] = ACTIONS(3017), + [anon_sym_virtual] = ACTIONS(3017), + [anon_sym_alignas] = ACTIONS(3017), + [anon_sym_explicit] = ACTIONS(3017), + [anon_sym_typename] = ACTIONS(3017), + [anon_sym_template] = ACTIONS(3017), + [anon_sym_operator] = ACTIONS(3017), + [anon_sym_try] = ACTIONS(3017), + [anon_sym_delete] = ACTIONS(3017), + [anon_sym_throw] = ACTIONS(3017), + [anon_sym_namespace] = ACTIONS(3017), + [anon_sym_using] = ACTIONS(3017), + [anon_sym_static_assert] = ACTIONS(3017), + [anon_sym_concept] = ACTIONS(3017), + [anon_sym_co_return] = ACTIONS(3017), + [anon_sym_co_yield] = ACTIONS(3017), + [anon_sym_R_DQUOTE] = ACTIONS(3019), + [anon_sym_LR_DQUOTE] = ACTIONS(3019), + [anon_sym_uR_DQUOTE] = ACTIONS(3019), + [anon_sym_UR_DQUOTE] = ACTIONS(3019), + [anon_sym_u8R_DQUOTE] = ACTIONS(3019), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3017), + [anon_sym_requires] = ACTIONS(3017), + [sym_this] = ACTIONS(3017), }, - [479] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [543] = { + [sym_identifier] = ACTIONS(3043), + [aux_sym_preproc_include_token1] = ACTIONS(3043), + [aux_sym_preproc_def_token1] = ACTIONS(3043), + [aux_sym_preproc_if_token1] = ACTIONS(3043), + [aux_sym_preproc_if_token2] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3043), + [aux_sym_preproc_else_token1] = ACTIONS(3043), + [aux_sym_preproc_elif_token1] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym___extension__] = ACTIONS(3043), + [anon_sym_typedef] = ACTIONS(3043), + [anon_sym_extern] = ACTIONS(3043), + [anon_sym___attribute__] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3045), + [anon_sym___declspec] = ACTIONS(3043), + [anon_sym___based] = ACTIONS(3043), + [anon_sym___cdecl] = ACTIONS(3043), + [anon_sym___clrcall] = ACTIONS(3043), + [anon_sym___stdcall] = ACTIONS(3043), + [anon_sym___fastcall] = ACTIONS(3043), + [anon_sym___thiscall] = ACTIONS(3043), + [anon_sym___vectorcall] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_signed] = ACTIONS(3043), + [anon_sym_unsigned] = ACTIONS(3043), + [anon_sym_long] = ACTIONS(3043), + [anon_sym_short] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_static] = ACTIONS(3043), + [anon_sym_register] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym___inline] = ACTIONS(3043), + [anon_sym___inline__] = ACTIONS(3043), + [anon_sym___forceinline] = ACTIONS(3043), + [anon_sym_thread_local] = ACTIONS(3043), + [anon_sym___thread] = ACTIONS(3043), + [anon_sym_const] = ACTIONS(3043), + [anon_sym_constexpr] = ACTIONS(3043), + [anon_sym_volatile] = ACTIONS(3043), + [anon_sym_restrict] = ACTIONS(3043), + [anon_sym___restrict__] = ACTIONS(3043), + [anon_sym__Atomic] = ACTIONS(3043), + [anon_sym__Noreturn] = ACTIONS(3043), + [anon_sym_noreturn] = ACTIONS(3043), + [anon_sym_mutable] = ACTIONS(3043), + [anon_sym_constinit] = ACTIONS(3043), + [anon_sym_consteval] = ACTIONS(3043), + [sym_primitive_type] = ACTIONS(3043), + [anon_sym_enum] = ACTIONS(3043), + [anon_sym_class] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3043), + [anon_sym_union] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_switch] = ACTIONS(3043), + [anon_sym_case] = ACTIONS(3043), + [anon_sym_default] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_do] = ACTIONS(3043), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_goto] = ACTIONS(3043), + [anon_sym_not] = ACTIONS(3043), + [anon_sym_compl] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_sizeof] = ACTIONS(3043), + [anon_sym___alignof__] = ACTIONS(3043), + [anon_sym___alignof] = ACTIONS(3043), + [anon_sym__alignof] = ACTIONS(3043), + [anon_sym_alignof] = ACTIONS(3043), + [anon_sym__Alignof] = ACTIONS(3043), + [anon_sym_offsetof] = ACTIONS(3043), + [anon_sym__Generic] = ACTIONS(3043), + [anon_sym_asm] = ACTIONS(3043), + [anon_sym___asm__] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(3045), + [anon_sym_L_SQUOTE] = ACTIONS(3045), + [anon_sym_u_SQUOTE] = ACTIONS(3045), + [anon_sym_U_SQUOTE] = ACTIONS(3045), + [anon_sym_u8_SQUOTE] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_L_DQUOTE] = ACTIONS(3045), + [anon_sym_u_DQUOTE] = ACTIONS(3045), + [anon_sym_U_DQUOTE] = ACTIONS(3045), + [anon_sym_u8_DQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [sym_true] = ACTIONS(3043), + [sym_false] = ACTIONS(3043), + [anon_sym_NULL] = ACTIONS(3043), + [anon_sym_nullptr] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3043), + [anon_sym_decltype] = ACTIONS(3043), + [anon_sym_virtual] = ACTIONS(3043), + [anon_sym_alignas] = ACTIONS(3043), + [anon_sym_explicit] = ACTIONS(3043), + [anon_sym_typename] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_delete] = ACTIONS(3043), + [anon_sym_throw] = ACTIONS(3043), + [anon_sym_namespace] = ACTIONS(3043), + [anon_sym_using] = ACTIONS(3043), + [anon_sym_static_assert] = ACTIONS(3043), + [anon_sym_concept] = ACTIONS(3043), + [anon_sym_co_return] = ACTIONS(3043), + [anon_sym_co_yield] = ACTIONS(3043), + [anon_sym_R_DQUOTE] = ACTIONS(3045), + [anon_sym_LR_DQUOTE] = ACTIONS(3045), + [anon_sym_uR_DQUOTE] = ACTIONS(3045), + [anon_sym_UR_DQUOTE] = ACTIONS(3045), + [anon_sym_u8R_DQUOTE] = ACTIONS(3045), + [anon_sym_co_await] = ACTIONS(3043), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_requires] = ACTIONS(3043), + [sym_this] = ACTIONS(3043), }, - [480] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [544] = { + [sym_identifier] = ACTIONS(3009), + [aux_sym_preproc_include_token1] = ACTIONS(3009), + [aux_sym_preproc_def_token1] = ACTIONS(3009), + [aux_sym_preproc_if_token1] = ACTIONS(3009), + [aux_sym_preproc_if_token2] = ACTIONS(3009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3009), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3009), + [aux_sym_preproc_else_token1] = ACTIONS(3009), + [aux_sym_preproc_elif_token1] = ACTIONS(3009), + [sym_preproc_directive] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(3011), + [anon_sym_BANG] = ACTIONS(3011), + [anon_sym_TILDE] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_AMP_AMP] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym___extension__] = ACTIONS(3009), + [anon_sym_typedef] = ACTIONS(3009), + [anon_sym_extern] = ACTIONS(3009), + [anon_sym___attribute__] = ACTIONS(3009), + [anon_sym_COLON_COLON] = ACTIONS(3011), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3011), + [anon_sym___declspec] = ACTIONS(3009), + [anon_sym___based] = ACTIONS(3009), + [anon_sym___cdecl] = ACTIONS(3009), + [anon_sym___clrcall] = ACTIONS(3009), + [anon_sym___stdcall] = ACTIONS(3009), + [anon_sym___fastcall] = ACTIONS(3009), + [anon_sym___thiscall] = ACTIONS(3009), + [anon_sym___vectorcall] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_signed] = ACTIONS(3009), + [anon_sym_unsigned] = ACTIONS(3009), + [anon_sym_long] = ACTIONS(3009), + [anon_sym_short] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_static] = ACTIONS(3009), + [anon_sym_register] = ACTIONS(3009), + [anon_sym_inline] = ACTIONS(3009), + [anon_sym___inline] = ACTIONS(3009), + [anon_sym___inline__] = ACTIONS(3009), + [anon_sym___forceinline] = ACTIONS(3009), + [anon_sym_thread_local] = ACTIONS(3009), + [anon_sym___thread] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3009), + [anon_sym_constexpr] = ACTIONS(3009), + [anon_sym_volatile] = ACTIONS(3009), + [anon_sym_restrict] = ACTIONS(3009), + [anon_sym___restrict__] = ACTIONS(3009), + [anon_sym__Atomic] = ACTIONS(3009), + [anon_sym__Noreturn] = ACTIONS(3009), + [anon_sym_noreturn] = ACTIONS(3009), + [anon_sym_mutable] = ACTIONS(3009), + [anon_sym_constinit] = ACTIONS(3009), + [anon_sym_consteval] = ACTIONS(3009), + [sym_primitive_type] = ACTIONS(3009), + [anon_sym_enum] = ACTIONS(3009), + [anon_sym_class] = ACTIONS(3009), + [anon_sym_struct] = ACTIONS(3009), + [anon_sym_union] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_switch] = ACTIONS(3009), + [anon_sym_case] = ACTIONS(3009), + [anon_sym_default] = ACTIONS(3009), + [anon_sym_while] = ACTIONS(3009), + [anon_sym_do] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_break] = ACTIONS(3009), + [anon_sym_continue] = ACTIONS(3009), + [anon_sym_goto] = ACTIONS(3009), + [anon_sym_not] = ACTIONS(3009), + [anon_sym_compl] = ACTIONS(3009), + [anon_sym_DASH_DASH] = ACTIONS(3011), + [anon_sym_PLUS_PLUS] = ACTIONS(3011), + [anon_sym_sizeof] = ACTIONS(3009), + [anon_sym___alignof__] = ACTIONS(3009), + [anon_sym___alignof] = ACTIONS(3009), + [anon_sym__alignof] = ACTIONS(3009), + [anon_sym_alignof] = ACTIONS(3009), + [anon_sym__Alignof] = ACTIONS(3009), + [anon_sym_offsetof] = ACTIONS(3009), + [anon_sym__Generic] = ACTIONS(3009), + [anon_sym_asm] = ACTIONS(3009), + [anon_sym___asm__] = ACTIONS(3009), + [sym_number_literal] = ACTIONS(3011), + [anon_sym_L_SQUOTE] = ACTIONS(3011), + [anon_sym_u_SQUOTE] = ACTIONS(3011), + [anon_sym_U_SQUOTE] = ACTIONS(3011), + [anon_sym_u8_SQUOTE] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_L_DQUOTE] = ACTIONS(3011), + [anon_sym_u_DQUOTE] = ACTIONS(3011), + [anon_sym_U_DQUOTE] = ACTIONS(3011), + [anon_sym_u8_DQUOTE] = ACTIONS(3011), + [anon_sym_DQUOTE] = ACTIONS(3011), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3009), + [anon_sym_nullptr] = ACTIONS(3009), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3009), + [anon_sym_decltype] = ACTIONS(3009), + [anon_sym_virtual] = ACTIONS(3009), + [anon_sym_alignas] = ACTIONS(3009), + [anon_sym_explicit] = ACTIONS(3009), + [anon_sym_typename] = ACTIONS(3009), + [anon_sym_template] = ACTIONS(3009), + [anon_sym_operator] = ACTIONS(3009), + [anon_sym_try] = ACTIONS(3009), + [anon_sym_delete] = ACTIONS(3009), + [anon_sym_throw] = ACTIONS(3009), + [anon_sym_namespace] = ACTIONS(3009), + [anon_sym_using] = ACTIONS(3009), + [anon_sym_static_assert] = ACTIONS(3009), + [anon_sym_concept] = ACTIONS(3009), + [anon_sym_co_return] = ACTIONS(3009), + [anon_sym_co_yield] = ACTIONS(3009), + [anon_sym_R_DQUOTE] = ACTIONS(3011), + [anon_sym_LR_DQUOTE] = ACTIONS(3011), + [anon_sym_uR_DQUOTE] = ACTIONS(3011), + [anon_sym_UR_DQUOTE] = ACTIONS(3011), + [anon_sym_u8R_DQUOTE] = ACTIONS(3011), + [anon_sym_co_await] = ACTIONS(3009), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(3009), + [sym_this] = ACTIONS(3009), }, - [481] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [545] = { + [sym_identifier] = ACTIONS(3039), + [aux_sym_preproc_include_token1] = ACTIONS(3039), + [aux_sym_preproc_def_token1] = ACTIONS(3039), + [aux_sym_preproc_if_token1] = ACTIONS(3039), + [aux_sym_preproc_if_token2] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3039), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3039), + [sym_preproc_directive] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3041), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_AMP_AMP] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_SEMI] = ACTIONS(3041), + [anon_sym___extension__] = ACTIONS(3039), + [anon_sym_typedef] = ACTIONS(3039), + [anon_sym_extern] = ACTIONS(3039), + [anon_sym___attribute__] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3041), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3041), + [anon_sym___declspec] = ACTIONS(3039), + [anon_sym___based] = ACTIONS(3039), + [anon_sym___cdecl] = ACTIONS(3039), + [anon_sym___clrcall] = ACTIONS(3039), + [anon_sym___stdcall] = ACTIONS(3039), + [anon_sym___fastcall] = ACTIONS(3039), + [anon_sym___thiscall] = ACTIONS(3039), + [anon_sym___vectorcall] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(3041), + [anon_sym_signed] = ACTIONS(3039), + [anon_sym_unsigned] = ACTIONS(3039), + [anon_sym_long] = ACTIONS(3039), + [anon_sym_short] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_static] = ACTIONS(3039), + [anon_sym_register] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym___inline] = ACTIONS(3039), + [anon_sym___inline__] = ACTIONS(3039), + [anon_sym___forceinline] = ACTIONS(3039), + [anon_sym_thread_local] = ACTIONS(3039), + [anon_sym___thread] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(3039), + [anon_sym_constexpr] = ACTIONS(3039), + [anon_sym_volatile] = ACTIONS(3039), + [anon_sym_restrict] = ACTIONS(3039), + [anon_sym___restrict__] = ACTIONS(3039), + [anon_sym__Atomic] = ACTIONS(3039), + [anon_sym__Noreturn] = ACTIONS(3039), + [anon_sym_noreturn] = ACTIONS(3039), + [anon_sym_mutable] = ACTIONS(3039), + [anon_sym_constinit] = ACTIONS(3039), + [anon_sym_consteval] = ACTIONS(3039), + [sym_primitive_type] = ACTIONS(3039), + [anon_sym_enum] = ACTIONS(3039), + [anon_sym_class] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3039), + [anon_sym_union] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_switch] = ACTIONS(3039), + [anon_sym_case] = ACTIONS(3039), + [anon_sym_default] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_goto] = ACTIONS(3039), + [anon_sym_not] = ACTIONS(3039), + [anon_sym_compl] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3039), + [anon_sym___alignof__] = ACTIONS(3039), + [anon_sym___alignof] = ACTIONS(3039), + [anon_sym__alignof] = ACTIONS(3039), + [anon_sym_alignof] = ACTIONS(3039), + [anon_sym__Alignof] = ACTIONS(3039), + [anon_sym_offsetof] = ACTIONS(3039), + [anon_sym__Generic] = ACTIONS(3039), + [anon_sym_asm] = ACTIONS(3039), + [anon_sym___asm__] = ACTIONS(3039), + [sym_number_literal] = ACTIONS(3041), + [anon_sym_L_SQUOTE] = ACTIONS(3041), + [anon_sym_u_SQUOTE] = ACTIONS(3041), + [anon_sym_U_SQUOTE] = ACTIONS(3041), + [anon_sym_u8_SQUOTE] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_L_DQUOTE] = ACTIONS(3041), + [anon_sym_u_DQUOTE] = ACTIONS(3041), + [anon_sym_U_DQUOTE] = ACTIONS(3041), + [anon_sym_u8_DQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(3041), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [anon_sym_NULL] = ACTIONS(3039), + [anon_sym_nullptr] = ACTIONS(3039), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3039), + [anon_sym_decltype] = ACTIONS(3039), + [anon_sym_virtual] = ACTIONS(3039), + [anon_sym_alignas] = ACTIONS(3039), + [anon_sym_explicit] = ACTIONS(3039), + [anon_sym_typename] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3039), + [anon_sym_operator] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_delete] = ACTIONS(3039), + [anon_sym_throw] = ACTIONS(3039), + [anon_sym_namespace] = ACTIONS(3039), + [anon_sym_using] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3039), + [anon_sym_concept] = ACTIONS(3039), + [anon_sym_co_return] = ACTIONS(3039), + [anon_sym_co_yield] = ACTIONS(3039), + [anon_sym_R_DQUOTE] = ACTIONS(3041), + [anon_sym_LR_DQUOTE] = ACTIONS(3041), + [anon_sym_uR_DQUOTE] = ACTIONS(3041), + [anon_sym_UR_DQUOTE] = ACTIONS(3041), + [anon_sym_u8R_DQUOTE] = ACTIONS(3041), + [anon_sym_co_await] = ACTIONS(3039), + [anon_sym_new] = ACTIONS(3039), + [anon_sym_requires] = ACTIONS(3039), + [sym_this] = ACTIONS(3039), }, - [482] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [546] = { + [sym_identifier] = ACTIONS(3031), + [aux_sym_preproc_include_token1] = ACTIONS(3031), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token2] = ACTIONS(3031), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3031), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3031), + [aux_sym_preproc_else_token1] = ACTIONS(3031), + [aux_sym_preproc_elif_token1] = ACTIONS(3031), + [sym_preproc_directive] = ACTIONS(3031), + [anon_sym_LPAREN2] = ACTIONS(3033), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_TILDE] = ACTIONS(3033), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_STAR] = ACTIONS(3033), + [anon_sym_AMP_AMP] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_SEMI] = ACTIONS(3033), + [anon_sym___extension__] = ACTIONS(3031), + [anon_sym_typedef] = ACTIONS(3031), + [anon_sym_extern] = ACTIONS(3031), + [anon_sym___attribute__] = ACTIONS(3031), + [anon_sym_COLON_COLON] = ACTIONS(3033), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3033), + [anon_sym___declspec] = ACTIONS(3031), + [anon_sym___based] = ACTIONS(3031), + [anon_sym___cdecl] = ACTIONS(3031), + [anon_sym___clrcall] = ACTIONS(3031), + [anon_sym___stdcall] = ACTIONS(3031), + [anon_sym___fastcall] = ACTIONS(3031), + [anon_sym___thiscall] = ACTIONS(3031), + [anon_sym___vectorcall] = ACTIONS(3031), + [anon_sym_LBRACE] = ACTIONS(3033), + [anon_sym_signed] = ACTIONS(3031), + [anon_sym_unsigned] = ACTIONS(3031), + [anon_sym_long] = ACTIONS(3031), + [anon_sym_short] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_static] = ACTIONS(3031), + [anon_sym_register] = ACTIONS(3031), + [anon_sym_inline] = ACTIONS(3031), + [anon_sym___inline] = ACTIONS(3031), + [anon_sym___inline__] = ACTIONS(3031), + [anon_sym___forceinline] = ACTIONS(3031), + [anon_sym_thread_local] = ACTIONS(3031), + [anon_sym___thread] = ACTIONS(3031), + [anon_sym_const] = ACTIONS(3031), + [anon_sym_constexpr] = ACTIONS(3031), + [anon_sym_volatile] = ACTIONS(3031), + [anon_sym_restrict] = ACTIONS(3031), + [anon_sym___restrict__] = ACTIONS(3031), + [anon_sym__Atomic] = ACTIONS(3031), + [anon_sym__Noreturn] = ACTIONS(3031), + [anon_sym_noreturn] = ACTIONS(3031), + [anon_sym_mutable] = ACTIONS(3031), + [anon_sym_constinit] = ACTIONS(3031), + [anon_sym_consteval] = ACTIONS(3031), + [sym_primitive_type] = ACTIONS(3031), + [anon_sym_enum] = ACTIONS(3031), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3031), + [anon_sym_union] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_switch] = ACTIONS(3031), + [anon_sym_case] = ACTIONS(3031), + [anon_sym_default] = ACTIONS(3031), + [anon_sym_while] = ACTIONS(3031), + [anon_sym_do] = ACTIONS(3031), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_break] = ACTIONS(3031), + [anon_sym_continue] = ACTIONS(3031), + [anon_sym_goto] = ACTIONS(3031), + [anon_sym_not] = ACTIONS(3031), + [anon_sym_compl] = ACTIONS(3031), + [anon_sym_DASH_DASH] = ACTIONS(3033), + [anon_sym_PLUS_PLUS] = ACTIONS(3033), + [anon_sym_sizeof] = ACTIONS(3031), + [anon_sym___alignof__] = ACTIONS(3031), + [anon_sym___alignof] = ACTIONS(3031), + [anon_sym__alignof] = ACTIONS(3031), + [anon_sym_alignof] = ACTIONS(3031), + [anon_sym__Alignof] = ACTIONS(3031), + [anon_sym_offsetof] = ACTIONS(3031), + [anon_sym__Generic] = ACTIONS(3031), + [anon_sym_asm] = ACTIONS(3031), + [anon_sym___asm__] = ACTIONS(3031), + [sym_number_literal] = ACTIONS(3033), + [anon_sym_L_SQUOTE] = ACTIONS(3033), + [anon_sym_u_SQUOTE] = ACTIONS(3033), + [anon_sym_U_SQUOTE] = ACTIONS(3033), + [anon_sym_u8_SQUOTE] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3033), + [anon_sym_L_DQUOTE] = ACTIONS(3033), + [anon_sym_u_DQUOTE] = ACTIONS(3033), + [anon_sym_U_DQUOTE] = ACTIONS(3033), + [anon_sym_u8_DQUOTE] = ACTIONS(3033), + [anon_sym_DQUOTE] = ACTIONS(3033), + [sym_true] = ACTIONS(3031), + [sym_false] = ACTIONS(3031), + [anon_sym_NULL] = ACTIONS(3031), + [anon_sym_nullptr] = ACTIONS(3031), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(3031), + [anon_sym_decltype] = ACTIONS(3031), + [anon_sym_virtual] = ACTIONS(3031), + [anon_sym_alignas] = ACTIONS(3031), + [anon_sym_explicit] = ACTIONS(3031), + [anon_sym_typename] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3031), + [anon_sym_operator] = ACTIONS(3031), + [anon_sym_try] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_throw] = ACTIONS(3031), + [anon_sym_namespace] = ACTIONS(3031), + [anon_sym_using] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3031), + [anon_sym_concept] = ACTIONS(3031), + [anon_sym_co_return] = ACTIONS(3031), + [anon_sym_co_yield] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(3033), + [anon_sym_LR_DQUOTE] = ACTIONS(3033), + [anon_sym_uR_DQUOTE] = ACTIONS(3033), + [anon_sym_UR_DQUOTE] = ACTIONS(3033), + [anon_sym_u8R_DQUOTE] = ACTIONS(3033), + [anon_sym_co_await] = ACTIONS(3031), + [anon_sym_new] = ACTIONS(3031), + [anon_sym_requires] = ACTIONS(3031), + [sym_this] = ACTIONS(3031), }, - [483] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [547] = { + [sym_identifier] = ACTIONS(3013), + [aux_sym_preproc_include_token1] = ACTIONS(3013), + [aux_sym_preproc_def_token1] = ACTIONS(3013), + [aux_sym_preproc_if_token1] = ACTIONS(3013), + [aux_sym_preproc_if_token2] = ACTIONS(3013), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3013), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3013), + [aux_sym_preproc_else_token1] = ACTIONS(3013), + [aux_sym_preproc_elif_token1] = ACTIONS(3013), + [sym_preproc_directive] = ACTIONS(3013), + [anon_sym_LPAREN2] = ACTIONS(3015), + [anon_sym_BANG] = ACTIONS(3015), + [anon_sym_TILDE] = ACTIONS(3015), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_SEMI] = ACTIONS(3015), + [anon_sym___extension__] = ACTIONS(3013), + [anon_sym_typedef] = ACTIONS(3013), + [anon_sym_extern] = ACTIONS(3013), + [anon_sym___attribute__] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(3015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3015), + [anon_sym___declspec] = ACTIONS(3013), + [anon_sym___based] = ACTIONS(3013), + [anon_sym___cdecl] = ACTIONS(3013), + [anon_sym___clrcall] = ACTIONS(3013), + [anon_sym___stdcall] = ACTIONS(3013), + [anon_sym___fastcall] = ACTIONS(3013), + [anon_sym___thiscall] = ACTIONS(3013), + [anon_sym___vectorcall] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3015), + [anon_sym_signed] = ACTIONS(3013), + [anon_sym_unsigned] = ACTIONS(3013), + [anon_sym_long] = ACTIONS(3013), + [anon_sym_short] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_static] = ACTIONS(3013), + [anon_sym_register] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym___inline] = ACTIONS(3013), + [anon_sym___inline__] = ACTIONS(3013), + [anon_sym___forceinline] = ACTIONS(3013), + [anon_sym_thread_local] = ACTIONS(3013), + [anon_sym___thread] = ACTIONS(3013), + [anon_sym_const] = ACTIONS(3013), + [anon_sym_constexpr] = ACTIONS(3013), + [anon_sym_volatile] = ACTIONS(3013), + [anon_sym_restrict] = ACTIONS(3013), + [anon_sym___restrict__] = ACTIONS(3013), + [anon_sym__Atomic] = ACTIONS(3013), + [anon_sym__Noreturn] = ACTIONS(3013), + [anon_sym_noreturn] = ACTIONS(3013), + [anon_sym_mutable] = ACTIONS(3013), + [anon_sym_constinit] = ACTIONS(3013), + [anon_sym_consteval] = ACTIONS(3013), + [sym_primitive_type] = ACTIONS(3013), + [anon_sym_enum] = ACTIONS(3013), + [anon_sym_class] = ACTIONS(3013), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3013), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_while] = ACTIONS(3013), + [anon_sym_do] = ACTIONS(3013), + [anon_sym_for] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_goto] = ACTIONS(3013), + [anon_sym_not] = ACTIONS(3013), + [anon_sym_compl] = ACTIONS(3013), + [anon_sym_DASH_DASH] = ACTIONS(3015), + [anon_sym_PLUS_PLUS] = ACTIONS(3015), + [anon_sym_sizeof] = ACTIONS(3013), + [anon_sym___alignof__] = ACTIONS(3013), + [anon_sym___alignof] = ACTIONS(3013), + [anon_sym__alignof] = ACTIONS(3013), + [anon_sym_alignof] = ACTIONS(3013), + [anon_sym__Alignof] = ACTIONS(3013), + [anon_sym_offsetof] = ACTIONS(3013), + [anon_sym__Generic] = ACTIONS(3013), + [anon_sym_asm] = ACTIONS(3013), + [anon_sym___asm__] = ACTIONS(3013), + [sym_number_literal] = ACTIONS(3015), + [anon_sym_L_SQUOTE] = ACTIONS(3015), + [anon_sym_u_SQUOTE] = ACTIONS(3015), + [anon_sym_U_SQUOTE] = ACTIONS(3015), + [anon_sym_u8_SQUOTE] = ACTIONS(3015), + [anon_sym_SQUOTE] = ACTIONS(3015), + [anon_sym_L_DQUOTE] = ACTIONS(3015), + [anon_sym_u_DQUOTE] = ACTIONS(3015), + [anon_sym_U_DQUOTE] = ACTIONS(3015), + [anon_sym_u8_DQUOTE] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [anon_sym_NULL] = ACTIONS(3013), + [anon_sym_nullptr] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3013), + [anon_sym_decltype] = ACTIONS(3013), + [anon_sym_virtual] = ACTIONS(3013), + [anon_sym_alignas] = ACTIONS(3013), + [anon_sym_explicit] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3013), + [anon_sym_template] = ACTIONS(3013), + [anon_sym_operator] = ACTIONS(3013), + [anon_sym_try] = ACTIONS(3013), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_throw] = ACTIONS(3013), + [anon_sym_namespace] = ACTIONS(3013), + [anon_sym_using] = ACTIONS(3013), + [anon_sym_static_assert] = ACTIONS(3013), + [anon_sym_concept] = ACTIONS(3013), + [anon_sym_co_return] = ACTIONS(3013), + [anon_sym_co_yield] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3013), + [anon_sym_new] = ACTIONS(3013), + [anon_sym_requires] = ACTIONS(3013), + [sym_this] = ACTIONS(3013), }, - [484] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [548] = { + [sym_else_clause] = STATE(642), + [sym_identifier] = ACTIONS(2758), + [aux_sym_preproc_include_token1] = ACTIONS(2758), + [aux_sym_preproc_def_token1] = ACTIONS(2758), + [aux_sym_preproc_if_token1] = ACTIONS(2758), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2758), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2758), + [sym_preproc_directive] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2760), + [anon_sym_BANG] = ACTIONS(2760), + [anon_sym_TILDE] = ACTIONS(2760), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_STAR] = ACTIONS(2760), + [anon_sym_AMP_AMP] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym___extension__] = ACTIONS(2758), + [anon_sym_typedef] = ACTIONS(2758), + [anon_sym_extern] = ACTIONS(2758), + [anon_sym___attribute__] = ACTIONS(2758), + [anon_sym_COLON_COLON] = ACTIONS(2760), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2760), + [anon_sym___declspec] = ACTIONS(2758), + [anon_sym___based] = ACTIONS(2758), + [anon_sym___cdecl] = ACTIONS(2758), + [anon_sym___clrcall] = ACTIONS(2758), + [anon_sym___stdcall] = ACTIONS(2758), + [anon_sym___fastcall] = ACTIONS(2758), + [anon_sym___thiscall] = ACTIONS(2758), + [anon_sym___vectorcall] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2760), + [anon_sym_RBRACE] = ACTIONS(2760), + [anon_sym_signed] = ACTIONS(2758), + [anon_sym_unsigned] = ACTIONS(2758), + [anon_sym_long] = ACTIONS(2758), + [anon_sym_short] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_static] = ACTIONS(2758), + [anon_sym_register] = ACTIONS(2758), + [anon_sym_inline] = ACTIONS(2758), + [anon_sym___inline] = ACTIONS(2758), + [anon_sym___inline__] = ACTIONS(2758), + [anon_sym___forceinline] = ACTIONS(2758), + [anon_sym_thread_local] = ACTIONS(2758), + [anon_sym___thread] = ACTIONS(2758), + [anon_sym_const] = ACTIONS(2758), + [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_mutable] = ACTIONS(2758), + [anon_sym_constinit] = ACTIONS(2758), + [anon_sym_consteval] = ACTIONS(2758), + [sym_primitive_type] = ACTIONS(2758), + [anon_sym_enum] = ACTIONS(2758), + [anon_sym_class] = ACTIONS(2758), + [anon_sym_struct] = ACTIONS(2758), + [anon_sym_union] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_else] = ACTIONS(3411), + [anon_sym_switch] = ACTIONS(2758), + [anon_sym_case] = ACTIONS(2758), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_break] = ACTIONS(2758), + [anon_sym_continue] = ACTIONS(2758), + [anon_sym_goto] = ACTIONS(2758), + [anon_sym_not] = ACTIONS(2758), + [anon_sym_compl] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2760), + [anon_sym_PLUS_PLUS] = ACTIONS(2760), + [anon_sym_sizeof] = ACTIONS(2758), + [anon_sym___alignof__] = ACTIONS(2758), + [anon_sym___alignof] = ACTIONS(2758), + [anon_sym__alignof] = ACTIONS(2758), + [anon_sym_alignof] = ACTIONS(2758), + [anon_sym__Alignof] = ACTIONS(2758), + [anon_sym_offsetof] = ACTIONS(2758), + [anon_sym__Generic] = ACTIONS(2758), + [anon_sym_asm] = ACTIONS(2758), + [anon_sym___asm__] = ACTIONS(2758), + [sym_number_literal] = ACTIONS(2760), + [anon_sym_L_SQUOTE] = ACTIONS(2760), + [anon_sym_u_SQUOTE] = ACTIONS(2760), + [anon_sym_U_SQUOTE] = ACTIONS(2760), + [anon_sym_u8_SQUOTE] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_L_DQUOTE] = ACTIONS(2760), + [anon_sym_u_DQUOTE] = ACTIONS(2760), + [anon_sym_U_DQUOTE] = ACTIONS(2760), + [anon_sym_u8_DQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2760), + [sym_true] = ACTIONS(2758), + [sym_false] = ACTIONS(2758), + [anon_sym_NULL] = ACTIONS(2758), + [anon_sym_nullptr] = ACTIONS(2758), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2758), + [anon_sym_decltype] = ACTIONS(2758), + [anon_sym_virtual] = ACTIONS(2758), + [anon_sym_alignas] = ACTIONS(2758), + [anon_sym_explicit] = ACTIONS(2758), + [anon_sym_typename] = ACTIONS(2758), + [anon_sym_template] = ACTIONS(2758), + [anon_sym_operator] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_delete] = ACTIONS(2758), + [anon_sym_throw] = ACTIONS(2758), + [anon_sym_namespace] = ACTIONS(2758), + [anon_sym_using] = ACTIONS(2758), + [anon_sym_static_assert] = ACTIONS(2758), + [anon_sym_concept] = ACTIONS(2758), + [anon_sym_co_return] = ACTIONS(2758), + [anon_sym_co_yield] = ACTIONS(2758), + [anon_sym_R_DQUOTE] = ACTIONS(2760), + [anon_sym_LR_DQUOTE] = ACTIONS(2760), + [anon_sym_uR_DQUOTE] = ACTIONS(2760), + [anon_sym_UR_DQUOTE] = ACTIONS(2760), + [anon_sym_u8R_DQUOTE] = ACTIONS(2760), + [anon_sym_co_await] = ACTIONS(2758), + [anon_sym_new] = ACTIONS(2758), + [anon_sym_requires] = ACTIONS(2758), + [sym_this] = ACTIONS(2758), }, - [485] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [549] = { + [sym_else_clause] = STATE(726), + [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_extern] = 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___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_mutable] = ACTIONS(2735), + [anon_sym_constinit] = ACTIONS(2735), + [anon_sym_consteval] = 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(3409), + [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_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), + [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_virtual] = ACTIONS(2735), + [anon_sym_alignas] = 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_using] = 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), }, - [486] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [550] = { + [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), + [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_extern] = ACTIONS(3071), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3071), + [anon_sym_constinit] = ACTIONS(3071), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3071), + [anon_sym_alignas] = 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_using] = 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), }, - [487] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [551] = { + [sym_identifier] = ACTIONS(3005), + [aux_sym_preproc_include_token1] = ACTIONS(3005), + [aux_sym_preproc_def_token1] = ACTIONS(3005), + [aux_sym_preproc_if_token1] = ACTIONS(3005), + [aux_sym_preproc_if_token2] = ACTIONS(3005), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3005), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3005), + [aux_sym_preproc_else_token1] = ACTIONS(3005), + [aux_sym_preproc_elif_token1] = ACTIONS(3005), + [sym_preproc_directive] = ACTIONS(3005), + [anon_sym_LPAREN2] = ACTIONS(3007), + [anon_sym_BANG] = ACTIONS(3007), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3007), + [anon_sym_AMP_AMP] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_SEMI] = ACTIONS(3007), + [anon_sym___extension__] = ACTIONS(3005), + [anon_sym_typedef] = ACTIONS(3005), + [anon_sym_extern] = ACTIONS(3005), + [anon_sym___attribute__] = ACTIONS(3005), + [anon_sym_COLON_COLON] = ACTIONS(3007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3007), + [anon_sym___declspec] = ACTIONS(3005), + [anon_sym___based] = ACTIONS(3005), + [anon_sym___cdecl] = ACTIONS(3005), + [anon_sym___clrcall] = ACTIONS(3005), + [anon_sym___stdcall] = ACTIONS(3005), + [anon_sym___fastcall] = ACTIONS(3005), + [anon_sym___thiscall] = ACTIONS(3005), + [anon_sym___vectorcall] = ACTIONS(3005), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_signed] = ACTIONS(3005), + [anon_sym_unsigned] = ACTIONS(3005), + [anon_sym_long] = ACTIONS(3005), + [anon_sym_short] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_static] = ACTIONS(3005), + [anon_sym_register] = ACTIONS(3005), + [anon_sym_inline] = ACTIONS(3005), + [anon_sym___inline] = ACTIONS(3005), + [anon_sym___inline__] = ACTIONS(3005), + [anon_sym___forceinline] = ACTIONS(3005), + [anon_sym_thread_local] = ACTIONS(3005), + [anon_sym___thread] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3005), + [anon_sym_constexpr] = ACTIONS(3005), + [anon_sym_volatile] = ACTIONS(3005), + [anon_sym_restrict] = ACTIONS(3005), + [anon_sym___restrict__] = ACTIONS(3005), + [anon_sym__Atomic] = ACTIONS(3005), + [anon_sym__Noreturn] = ACTIONS(3005), + [anon_sym_noreturn] = ACTIONS(3005), + [anon_sym_mutable] = ACTIONS(3005), + [anon_sym_constinit] = ACTIONS(3005), + [anon_sym_consteval] = ACTIONS(3005), + [sym_primitive_type] = ACTIONS(3005), + [anon_sym_enum] = ACTIONS(3005), + [anon_sym_class] = ACTIONS(3005), + [anon_sym_struct] = ACTIONS(3005), + [anon_sym_union] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_switch] = ACTIONS(3005), + [anon_sym_case] = ACTIONS(3005), + [anon_sym_default] = ACTIONS(3005), + [anon_sym_while] = ACTIONS(3005), + [anon_sym_do] = ACTIONS(3005), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_break] = ACTIONS(3005), + [anon_sym_continue] = ACTIONS(3005), + [anon_sym_goto] = ACTIONS(3005), + [anon_sym_not] = ACTIONS(3005), + [anon_sym_compl] = ACTIONS(3005), + [anon_sym_DASH_DASH] = ACTIONS(3007), + [anon_sym_PLUS_PLUS] = ACTIONS(3007), + [anon_sym_sizeof] = ACTIONS(3005), + [anon_sym___alignof__] = ACTIONS(3005), + [anon_sym___alignof] = ACTIONS(3005), + [anon_sym__alignof] = ACTIONS(3005), + [anon_sym_alignof] = ACTIONS(3005), + [anon_sym__Alignof] = ACTIONS(3005), + [anon_sym_offsetof] = ACTIONS(3005), + [anon_sym__Generic] = ACTIONS(3005), + [anon_sym_asm] = ACTIONS(3005), + [anon_sym___asm__] = ACTIONS(3005), + [sym_number_literal] = ACTIONS(3007), + [anon_sym_L_SQUOTE] = ACTIONS(3007), + [anon_sym_u_SQUOTE] = ACTIONS(3007), + [anon_sym_U_SQUOTE] = ACTIONS(3007), + [anon_sym_u8_SQUOTE] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3005), + [sym_false] = ACTIONS(3005), + [anon_sym_NULL] = ACTIONS(3005), + [anon_sym_nullptr] = ACTIONS(3005), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3005), + [anon_sym_decltype] = ACTIONS(3005), + [anon_sym_virtual] = ACTIONS(3005), + [anon_sym_alignas] = ACTIONS(3005), + [anon_sym_explicit] = ACTIONS(3005), + [anon_sym_typename] = ACTIONS(3005), + [anon_sym_template] = ACTIONS(3005), + [anon_sym_operator] = ACTIONS(3005), + [anon_sym_try] = ACTIONS(3005), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_throw] = ACTIONS(3005), + [anon_sym_namespace] = ACTIONS(3005), + [anon_sym_using] = ACTIONS(3005), + [anon_sym_static_assert] = ACTIONS(3005), + [anon_sym_concept] = ACTIONS(3005), + [anon_sym_co_return] = ACTIONS(3005), + [anon_sym_co_yield] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(3007), + [anon_sym_LR_DQUOTE] = ACTIONS(3007), + [anon_sym_uR_DQUOTE] = ACTIONS(3007), + [anon_sym_UR_DQUOTE] = ACTIONS(3007), + [anon_sym_u8R_DQUOTE] = ACTIONS(3007), + [anon_sym_co_await] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3005), + [anon_sym_requires] = ACTIONS(3005), + [sym_this] = ACTIONS(3005), }, - [488] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [552] = { + [sym_identifier] = ACTIONS(3001), + [aux_sym_preproc_include_token1] = ACTIONS(3001), + [aux_sym_preproc_def_token1] = ACTIONS(3001), + [aux_sym_preproc_if_token1] = ACTIONS(3001), + [aux_sym_preproc_if_token2] = ACTIONS(3001), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3001), + [aux_sym_preproc_else_token1] = ACTIONS(3001), + [aux_sym_preproc_elif_token1] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3001), + [anon_sym_LPAREN2] = ACTIONS(3003), + [anon_sym_BANG] = ACTIONS(3003), + [anon_sym_TILDE] = ACTIONS(3003), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3003), + [anon_sym_AMP_AMP] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_SEMI] = ACTIONS(3003), + [anon_sym___extension__] = ACTIONS(3001), + [anon_sym_typedef] = ACTIONS(3001), + [anon_sym_extern] = ACTIONS(3001), + [anon_sym___attribute__] = ACTIONS(3001), + [anon_sym_COLON_COLON] = ACTIONS(3003), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3003), + [anon_sym___declspec] = ACTIONS(3001), + [anon_sym___based] = ACTIONS(3001), + [anon_sym___cdecl] = ACTIONS(3001), + [anon_sym___clrcall] = ACTIONS(3001), + [anon_sym___stdcall] = ACTIONS(3001), + [anon_sym___fastcall] = ACTIONS(3001), + [anon_sym___thiscall] = ACTIONS(3001), + [anon_sym___vectorcall] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_signed] = ACTIONS(3001), + [anon_sym_unsigned] = ACTIONS(3001), + [anon_sym_long] = ACTIONS(3001), + [anon_sym_short] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_static] = ACTIONS(3001), + [anon_sym_register] = ACTIONS(3001), + [anon_sym_inline] = ACTIONS(3001), + [anon_sym___inline] = ACTIONS(3001), + [anon_sym___inline__] = ACTIONS(3001), + [anon_sym___forceinline] = ACTIONS(3001), + [anon_sym_thread_local] = ACTIONS(3001), + [anon_sym___thread] = ACTIONS(3001), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_constexpr] = ACTIONS(3001), + [anon_sym_volatile] = ACTIONS(3001), + [anon_sym_restrict] = ACTIONS(3001), + [anon_sym___restrict__] = ACTIONS(3001), + [anon_sym__Atomic] = ACTIONS(3001), + [anon_sym__Noreturn] = ACTIONS(3001), + [anon_sym_noreturn] = ACTIONS(3001), + [anon_sym_mutable] = ACTIONS(3001), + [anon_sym_constinit] = ACTIONS(3001), + [anon_sym_consteval] = ACTIONS(3001), + [sym_primitive_type] = ACTIONS(3001), + [anon_sym_enum] = ACTIONS(3001), + [anon_sym_class] = ACTIONS(3001), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_union] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_switch] = ACTIONS(3001), + [anon_sym_case] = ACTIONS(3001), + [anon_sym_default] = ACTIONS(3001), + [anon_sym_while] = ACTIONS(3001), + [anon_sym_do] = ACTIONS(3001), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_break] = ACTIONS(3001), + [anon_sym_continue] = ACTIONS(3001), + [anon_sym_goto] = ACTIONS(3001), + [anon_sym_not] = ACTIONS(3001), + [anon_sym_compl] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3003), + [anon_sym_PLUS_PLUS] = ACTIONS(3003), + [anon_sym_sizeof] = ACTIONS(3001), + [anon_sym___alignof__] = ACTIONS(3001), + [anon_sym___alignof] = ACTIONS(3001), + [anon_sym__alignof] = ACTIONS(3001), + [anon_sym_alignof] = ACTIONS(3001), + [anon_sym__Alignof] = ACTIONS(3001), + [anon_sym_offsetof] = ACTIONS(3001), + [anon_sym__Generic] = ACTIONS(3001), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3003), + [anon_sym_u_SQUOTE] = ACTIONS(3003), + [anon_sym_U_SQUOTE] = ACTIONS(3003), + [anon_sym_u8_SQUOTE] = ACTIONS(3003), + [anon_sym_SQUOTE] = ACTIONS(3003), + [anon_sym_L_DQUOTE] = ACTIONS(3003), + [anon_sym_u_DQUOTE] = ACTIONS(3003), + [anon_sym_U_DQUOTE] = ACTIONS(3003), + [anon_sym_u8_DQUOTE] = ACTIONS(3003), + [anon_sym_DQUOTE] = ACTIONS(3003), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [anon_sym_NULL] = ACTIONS(3001), + [anon_sym_nullptr] = ACTIONS(3001), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3001), + [anon_sym_decltype] = ACTIONS(3001), + [anon_sym_virtual] = ACTIONS(3001), + [anon_sym_alignas] = ACTIONS(3001), + [anon_sym_explicit] = ACTIONS(3001), + [anon_sym_typename] = ACTIONS(3001), + [anon_sym_template] = ACTIONS(3001), + [anon_sym_operator] = ACTIONS(3001), + [anon_sym_try] = ACTIONS(3001), + [anon_sym_delete] = ACTIONS(3001), + [anon_sym_throw] = ACTIONS(3001), + [anon_sym_namespace] = ACTIONS(3001), + [anon_sym_using] = ACTIONS(3001), + [anon_sym_static_assert] = ACTIONS(3001), + [anon_sym_concept] = ACTIONS(3001), + [anon_sym_co_return] = ACTIONS(3001), + [anon_sym_co_yield] = ACTIONS(3001), + [anon_sym_R_DQUOTE] = ACTIONS(3003), + [anon_sym_LR_DQUOTE] = ACTIONS(3003), + [anon_sym_uR_DQUOTE] = ACTIONS(3003), + [anon_sym_UR_DQUOTE] = ACTIONS(3003), + [anon_sym_u8R_DQUOTE] = ACTIONS(3003), + [anon_sym_co_await] = ACTIONS(3001), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_requires] = ACTIONS(3001), + [sym_this] = ACTIONS(3001), }, - [489] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [553] = { + [sym_else_clause] = STATE(605), + [ts_builtin_sym_end] = ACTIONS(2760), + [sym_identifier] = ACTIONS(2758), + [aux_sym_preproc_include_token1] = ACTIONS(2758), + [aux_sym_preproc_def_token1] = ACTIONS(2758), + [aux_sym_preproc_if_token1] = ACTIONS(2758), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2758), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2758), + [sym_preproc_directive] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2760), + [anon_sym_BANG] = ACTIONS(2760), + [anon_sym_TILDE] = ACTIONS(2760), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_STAR] = ACTIONS(2760), + [anon_sym_AMP_AMP] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym___extension__] = ACTIONS(2758), + [anon_sym_typedef] = ACTIONS(2758), + [anon_sym_extern] = ACTIONS(2758), + [anon_sym___attribute__] = ACTIONS(2758), + [anon_sym_COLON_COLON] = ACTIONS(2760), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2760), + [anon_sym___declspec] = ACTIONS(2758), + [anon_sym___based] = ACTIONS(2758), + [anon_sym___cdecl] = ACTIONS(2758), + [anon_sym___clrcall] = ACTIONS(2758), + [anon_sym___stdcall] = ACTIONS(2758), + [anon_sym___fastcall] = ACTIONS(2758), + [anon_sym___thiscall] = ACTIONS(2758), + [anon_sym___vectorcall] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2760), + [anon_sym_signed] = ACTIONS(2758), + [anon_sym_unsigned] = ACTIONS(2758), + [anon_sym_long] = ACTIONS(2758), + [anon_sym_short] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_static] = ACTIONS(2758), + [anon_sym_register] = ACTIONS(2758), + [anon_sym_inline] = ACTIONS(2758), + [anon_sym___inline] = ACTIONS(2758), + [anon_sym___inline__] = ACTIONS(2758), + [anon_sym___forceinline] = ACTIONS(2758), + [anon_sym_thread_local] = ACTIONS(2758), + [anon_sym___thread] = ACTIONS(2758), + [anon_sym_const] = ACTIONS(2758), + [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_mutable] = ACTIONS(2758), + [anon_sym_constinit] = ACTIONS(2758), + [anon_sym_consteval] = ACTIONS(2758), + [sym_primitive_type] = ACTIONS(2758), + [anon_sym_enum] = ACTIONS(2758), + [anon_sym_class] = ACTIONS(2758), + [anon_sym_struct] = ACTIONS(2758), + [anon_sym_union] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_else] = ACTIONS(3413), + [anon_sym_switch] = ACTIONS(2758), + [anon_sym_case] = ACTIONS(2758), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_break] = ACTIONS(2758), + [anon_sym_continue] = ACTIONS(2758), + [anon_sym_goto] = ACTIONS(2758), + [anon_sym_not] = ACTIONS(2758), + [anon_sym_compl] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2760), + [anon_sym_PLUS_PLUS] = ACTIONS(2760), + [anon_sym_sizeof] = ACTIONS(2758), + [anon_sym___alignof__] = ACTIONS(2758), + [anon_sym___alignof] = ACTIONS(2758), + [anon_sym__alignof] = ACTIONS(2758), + [anon_sym_alignof] = ACTIONS(2758), + [anon_sym__Alignof] = ACTIONS(2758), + [anon_sym_offsetof] = ACTIONS(2758), + [anon_sym__Generic] = ACTIONS(2758), + [anon_sym_asm] = ACTIONS(2758), + [anon_sym___asm__] = ACTIONS(2758), + [sym_number_literal] = ACTIONS(2760), + [anon_sym_L_SQUOTE] = ACTIONS(2760), + [anon_sym_u_SQUOTE] = ACTIONS(2760), + [anon_sym_U_SQUOTE] = ACTIONS(2760), + [anon_sym_u8_SQUOTE] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_L_DQUOTE] = ACTIONS(2760), + [anon_sym_u_DQUOTE] = ACTIONS(2760), + [anon_sym_U_DQUOTE] = ACTIONS(2760), + [anon_sym_u8_DQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2760), + [sym_true] = ACTIONS(2758), + [sym_false] = ACTIONS(2758), + [anon_sym_NULL] = ACTIONS(2758), + [anon_sym_nullptr] = ACTIONS(2758), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2758), + [anon_sym_decltype] = ACTIONS(2758), + [anon_sym_virtual] = ACTIONS(2758), + [anon_sym_alignas] = ACTIONS(2758), + [anon_sym_explicit] = ACTIONS(2758), + [anon_sym_typename] = ACTIONS(2758), + [anon_sym_template] = ACTIONS(2758), + [anon_sym_operator] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_delete] = ACTIONS(2758), + [anon_sym_throw] = ACTIONS(2758), + [anon_sym_namespace] = ACTIONS(2758), + [anon_sym_using] = ACTIONS(2758), + [anon_sym_static_assert] = ACTIONS(2758), + [anon_sym_concept] = ACTIONS(2758), + [anon_sym_co_return] = ACTIONS(2758), + [anon_sym_co_yield] = ACTIONS(2758), + [anon_sym_R_DQUOTE] = ACTIONS(2760), + [anon_sym_LR_DQUOTE] = ACTIONS(2760), + [anon_sym_uR_DQUOTE] = ACTIONS(2760), + [anon_sym_UR_DQUOTE] = ACTIONS(2760), + [anon_sym_u8R_DQUOTE] = ACTIONS(2760), + [anon_sym_co_await] = ACTIONS(2758), + [anon_sym_new] = ACTIONS(2758), + [anon_sym_requires] = ACTIONS(2758), + [sym_this] = ACTIONS(2758), }, - [490] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [554] = { + [sym_else_clause] = STATE(604), + [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_extern] = 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___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_mutable] = ACTIONS(2735), + [anon_sym_constinit] = ACTIONS(2735), + [anon_sym_consteval] = 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(3413), + [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_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), + [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_virtual] = ACTIONS(2735), + [anon_sym_alignas] = 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_using] = 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), }, - [491] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [555] = { + [sym_identifier] = ACTIONS(2997), + [aux_sym_preproc_include_token1] = ACTIONS(2997), + [aux_sym_preproc_def_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token2] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2997), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2997), + [sym_preproc_directive] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(2999), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(2999), + [anon_sym___extension__] = ACTIONS(2997), + [anon_sym_typedef] = ACTIONS(2997), + [anon_sym_extern] = ACTIONS(2997), + [anon_sym___attribute__] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2999), + [anon_sym___declspec] = ACTIONS(2997), + [anon_sym___based] = ACTIONS(2997), + [anon_sym___cdecl] = ACTIONS(2997), + [anon_sym___clrcall] = ACTIONS(2997), + [anon_sym___stdcall] = ACTIONS(2997), + [anon_sym___fastcall] = ACTIONS(2997), + [anon_sym___thiscall] = ACTIONS(2997), + [anon_sym___vectorcall] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_signed] = ACTIONS(2997), + [anon_sym_unsigned] = ACTIONS(2997), + [anon_sym_long] = ACTIONS(2997), + [anon_sym_short] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(2997), + [anon_sym_register] = ACTIONS(2997), + [anon_sym_inline] = ACTIONS(2997), + [anon_sym___inline] = ACTIONS(2997), + [anon_sym___inline__] = ACTIONS(2997), + [anon_sym___forceinline] = ACTIONS(2997), + [anon_sym_thread_local] = ACTIONS(2997), + [anon_sym___thread] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_volatile] = ACTIONS(2997), + [anon_sym_restrict] = ACTIONS(2997), + [anon_sym___restrict__] = ACTIONS(2997), + [anon_sym__Atomic] = ACTIONS(2997), + [anon_sym__Noreturn] = ACTIONS(2997), + [anon_sym_noreturn] = ACTIONS(2997), + [anon_sym_mutable] = ACTIONS(2997), + [anon_sym_constinit] = ACTIONS(2997), + [anon_sym_consteval] = ACTIONS(2997), + [sym_primitive_type] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_class] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_switch] = ACTIONS(2997), + [anon_sym_case] = ACTIONS(2997), + [anon_sym_default] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_goto] = ACTIONS(2997), + [anon_sym_not] = ACTIONS(2997), + [anon_sym_compl] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_sizeof] = ACTIONS(2997), + [anon_sym___alignof__] = ACTIONS(2997), + [anon_sym___alignof] = ACTIONS(2997), + [anon_sym__alignof] = ACTIONS(2997), + [anon_sym_alignof] = ACTIONS(2997), + [anon_sym__Alignof] = ACTIONS(2997), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2997), + [anon_sym_asm] = ACTIONS(2997), + [anon_sym___asm__] = ACTIONS(2997), + [sym_number_literal] = ACTIONS(2999), + [anon_sym_L_SQUOTE] = ACTIONS(2999), + [anon_sym_u_SQUOTE] = ACTIONS(2999), + [anon_sym_U_SQUOTE] = ACTIONS(2999), + [anon_sym_u8_SQUOTE] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_L_DQUOTE] = ACTIONS(2999), + [anon_sym_u_DQUOTE] = ACTIONS(2999), + [anon_sym_U_DQUOTE] = ACTIONS(2999), + [anon_sym_u8_DQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE] = ACTIONS(2999), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [anon_sym_NULL] = ACTIONS(2997), + [anon_sym_nullptr] = ACTIONS(2997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2997), + [anon_sym_decltype] = ACTIONS(2997), + [anon_sym_virtual] = ACTIONS(2997), + [anon_sym_alignas] = ACTIONS(2997), + [anon_sym_explicit] = ACTIONS(2997), + [anon_sym_typename] = ACTIONS(2997), + [anon_sym_template] = ACTIONS(2997), + [anon_sym_operator] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_delete] = ACTIONS(2997), + [anon_sym_throw] = ACTIONS(2997), + [anon_sym_namespace] = ACTIONS(2997), + [anon_sym_using] = ACTIONS(2997), + [anon_sym_static_assert] = ACTIONS(2997), + [anon_sym_concept] = ACTIONS(2997), + [anon_sym_co_return] = ACTIONS(2997), + [anon_sym_co_yield] = ACTIONS(2997), + [anon_sym_R_DQUOTE] = ACTIONS(2999), + [anon_sym_LR_DQUOTE] = ACTIONS(2999), + [anon_sym_uR_DQUOTE] = ACTIONS(2999), + [anon_sym_UR_DQUOTE] = ACTIONS(2999), + [anon_sym_u8R_DQUOTE] = ACTIONS(2999), + [anon_sym_co_await] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_requires] = ACTIONS(2997), + [sym_this] = ACTIONS(2997), }, - [492] = { - [sym_identifier] = ACTIONS(3035), - [aux_sym_preproc_include_token1] = ACTIONS(3035), - [aux_sym_preproc_def_token1] = ACTIONS(3035), - [aux_sym_preproc_if_token1] = ACTIONS(3035), - [aux_sym_preproc_if_token2] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), - [aux_sym_preproc_else_token1] = ACTIONS(3035), - [aux_sym_preproc_elif_token1] = ACTIONS(3035), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3035), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3035), - [sym_preproc_directive] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym___extension__] = ACTIONS(3035), - [anon_sym_typedef] = ACTIONS(3035), - [anon_sym_extern] = ACTIONS(3035), - [anon_sym___attribute__] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3037), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), - [anon_sym___declspec] = ACTIONS(3035), - [anon_sym___based] = ACTIONS(3035), - [anon_sym___cdecl] = ACTIONS(3035), - [anon_sym___clrcall] = ACTIONS(3035), - [anon_sym___stdcall] = ACTIONS(3035), - [anon_sym___fastcall] = ACTIONS(3035), - [anon_sym___thiscall] = ACTIONS(3035), - [anon_sym___vectorcall] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_signed] = ACTIONS(3035), - [anon_sym_unsigned] = ACTIONS(3035), - [anon_sym_long] = ACTIONS(3035), - [anon_sym_short] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_static] = ACTIONS(3035), - [anon_sym_register] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym___inline] = ACTIONS(3035), - [anon_sym___inline__] = ACTIONS(3035), - [anon_sym___forceinline] = ACTIONS(3035), - [anon_sym_thread_local] = ACTIONS(3035), - [anon_sym___thread] = ACTIONS(3035), - [anon_sym_const] = ACTIONS(3035), - [anon_sym_constexpr] = ACTIONS(3035), - [anon_sym_volatile] = ACTIONS(3035), - [anon_sym_restrict] = ACTIONS(3035), - [anon_sym___restrict__] = ACTIONS(3035), - [anon_sym__Atomic] = ACTIONS(3035), - [anon_sym__Noreturn] = ACTIONS(3035), - [anon_sym_noreturn] = ACTIONS(3035), - [anon_sym_mutable] = ACTIONS(3035), - [anon_sym_constinit] = ACTIONS(3035), - [anon_sym_consteval] = ACTIONS(3035), - [sym_primitive_type] = ACTIONS(3035), - [anon_sym_enum] = ACTIONS(3035), - [anon_sym_class] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_union] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_switch] = ACTIONS(3035), - [anon_sym_case] = ACTIONS(3035), - [anon_sym_default] = ACTIONS(3035), - [anon_sym_while] = ACTIONS(3035), - [anon_sym_do] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_goto] = ACTIONS(3035), - [anon_sym_not] = ACTIONS(3035), - [anon_sym_compl] = ACTIONS(3035), - [anon_sym_DASH_DASH] = ACTIONS(3037), - [anon_sym_PLUS_PLUS] = ACTIONS(3037), - [anon_sym_sizeof] = ACTIONS(3035), - [anon_sym___alignof__] = ACTIONS(3035), - [anon_sym___alignof] = ACTIONS(3035), - [anon_sym__alignof] = ACTIONS(3035), - [anon_sym_alignof] = ACTIONS(3035), - [anon_sym__Alignof] = ACTIONS(3035), - [anon_sym_offsetof] = ACTIONS(3035), - [anon_sym__Generic] = ACTIONS(3035), - [anon_sym_asm] = ACTIONS(3035), - [anon_sym___asm__] = ACTIONS(3035), - [sym_number_literal] = ACTIONS(3037), - [anon_sym_L_SQUOTE] = ACTIONS(3037), - [anon_sym_u_SQUOTE] = ACTIONS(3037), - [anon_sym_U_SQUOTE] = ACTIONS(3037), - [anon_sym_u8_SQUOTE] = ACTIONS(3037), - [anon_sym_SQUOTE] = ACTIONS(3037), - [anon_sym_L_DQUOTE] = ACTIONS(3037), - [anon_sym_u_DQUOTE] = ACTIONS(3037), - [anon_sym_U_DQUOTE] = ACTIONS(3037), - [anon_sym_u8_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [sym_true] = ACTIONS(3035), - [sym_false] = ACTIONS(3035), - [anon_sym_NULL] = ACTIONS(3035), - [anon_sym_nullptr] = ACTIONS(3035), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3035), - [anon_sym_decltype] = ACTIONS(3035), - [anon_sym_virtual] = ACTIONS(3035), - [anon_sym_alignas] = ACTIONS(3035), - [anon_sym_explicit] = ACTIONS(3035), - [anon_sym_typename] = ACTIONS(3035), - [anon_sym_template] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_try] = ACTIONS(3035), - [anon_sym_delete] = ACTIONS(3035), - [anon_sym_throw] = ACTIONS(3035), - [anon_sym_namespace] = ACTIONS(3035), - [anon_sym_using] = ACTIONS(3035), - [anon_sym_static_assert] = ACTIONS(3035), - [anon_sym_concept] = ACTIONS(3035), - [anon_sym_co_return] = ACTIONS(3035), - [anon_sym_co_yield] = ACTIONS(3035), - [anon_sym_R_DQUOTE] = ACTIONS(3037), - [anon_sym_LR_DQUOTE] = ACTIONS(3037), - [anon_sym_uR_DQUOTE] = ACTIONS(3037), - [anon_sym_UR_DQUOTE] = ACTIONS(3037), - [anon_sym_u8R_DQUOTE] = ACTIONS(3037), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(3035), - [sym_this] = ACTIONS(3035), + [556] = { + [sym_identifier] = ACTIONS(2752), + [aux_sym_preproc_include_token1] = ACTIONS(2752), + [aux_sym_preproc_def_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2752), + [sym_preproc_directive] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_BANG] = ACTIONS(2754), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym___extension__] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym___attribute__] = ACTIONS(2752), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2754), + [anon_sym___declspec] = ACTIONS(2752), + [anon_sym___based] = ACTIONS(2752), + [anon_sym___cdecl] = ACTIONS(2752), + [anon_sym___clrcall] = ACTIONS(2752), + [anon_sym___stdcall] = ACTIONS(2752), + [anon_sym___fastcall] = ACTIONS(2752), + [anon_sym___thiscall] = ACTIONS(2752), + [anon_sym___vectorcall] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_RBRACE] = ACTIONS(2754), + [anon_sym_signed] = ACTIONS(2752), + [anon_sym_unsigned] = ACTIONS(2752), + [anon_sym_long] = ACTIONS(2752), + [anon_sym_short] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_register] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym___inline] = ACTIONS(2752), + [anon_sym___inline__] = ACTIONS(2752), + [anon_sym___forceinline] = ACTIONS(2752), + [anon_sym_thread_local] = ACTIONS(2752), + [anon_sym___thread] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_constexpr] = ACTIONS(2752), + [anon_sym_volatile] = ACTIONS(2752), + [anon_sym_restrict] = ACTIONS(2752), + [anon_sym___restrict__] = ACTIONS(2752), + [anon_sym__Atomic] = ACTIONS(2752), + [anon_sym__Noreturn] = ACTIONS(2752), + [anon_sym_noreturn] = ACTIONS(2752), + [anon_sym_mutable] = ACTIONS(2752), + [anon_sym_constinit] = ACTIONS(2752), + [anon_sym_consteval] = ACTIONS(2752), + [sym_primitive_type] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_class] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_else] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2752), + [anon_sym_case] = ACTIONS(2752), + [anon_sym_default] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_goto] = ACTIONS(2752), + [anon_sym_not] = ACTIONS(2752), + [anon_sym_compl] = ACTIONS(2752), + [anon_sym_DASH_DASH] = ACTIONS(2754), + [anon_sym_PLUS_PLUS] = ACTIONS(2754), + [anon_sym_sizeof] = ACTIONS(2752), + [anon_sym___alignof__] = ACTIONS(2752), + [anon_sym___alignof] = ACTIONS(2752), + [anon_sym__alignof] = ACTIONS(2752), + [anon_sym_alignof] = ACTIONS(2752), + [anon_sym__Alignof] = ACTIONS(2752), + [anon_sym_offsetof] = ACTIONS(2752), + [anon_sym__Generic] = ACTIONS(2752), + [anon_sym_asm] = ACTIONS(2752), + [anon_sym___asm__] = ACTIONS(2752), + [sym_number_literal] = ACTIONS(2754), + [anon_sym_L_SQUOTE] = ACTIONS(2754), + [anon_sym_u_SQUOTE] = ACTIONS(2754), + [anon_sym_U_SQUOTE] = ACTIONS(2754), + [anon_sym_u8_SQUOTE] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_L_DQUOTE] = ACTIONS(2754), + [anon_sym_u_DQUOTE] = ACTIONS(2754), + [anon_sym_U_DQUOTE] = ACTIONS(2754), + [anon_sym_u8_DQUOTE] = ACTIONS(2754), + [anon_sym_DQUOTE] = ACTIONS(2754), + [sym_true] = ACTIONS(2752), + [sym_false] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_nullptr] = ACTIONS(2752), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2752), + [anon_sym_decltype] = ACTIONS(2752), + [anon_sym_virtual] = ACTIONS(2752), + [anon_sym_alignas] = ACTIONS(2752), + [anon_sym_explicit] = ACTIONS(2752), + [anon_sym_typename] = ACTIONS(2752), + [anon_sym_template] = ACTIONS(2752), + [anon_sym_operator] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_delete] = ACTIONS(2752), + [anon_sym_throw] = ACTIONS(2752), + [anon_sym_namespace] = ACTIONS(2752), + [anon_sym_using] = ACTIONS(2752), + [anon_sym_static_assert] = ACTIONS(2752), + [anon_sym_concept] = ACTIONS(2752), + [anon_sym_co_return] = ACTIONS(2752), + [anon_sym_co_yield] = ACTIONS(2752), + [anon_sym_catch] = ACTIONS(2752), + [anon_sym_R_DQUOTE] = ACTIONS(2754), + [anon_sym_LR_DQUOTE] = ACTIONS(2754), + [anon_sym_uR_DQUOTE] = ACTIONS(2754), + [anon_sym_UR_DQUOTE] = ACTIONS(2754), + [anon_sym_u8R_DQUOTE] = ACTIONS(2754), + [anon_sym_co_await] = ACTIONS(2752), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_requires] = ACTIONS(2752), + [sym_this] = ACTIONS(2752), }, - [493] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [557] = { + [ts_builtin_sym_end] = ACTIONS(2754), + [sym_identifier] = ACTIONS(2752), + [aux_sym_preproc_include_token1] = ACTIONS(2752), + [aux_sym_preproc_def_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2752), + [sym_preproc_directive] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_BANG] = ACTIONS(2754), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym___extension__] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym___attribute__] = ACTIONS(2752), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2754), + [anon_sym___declspec] = ACTIONS(2752), + [anon_sym___based] = ACTIONS(2752), + [anon_sym___cdecl] = ACTIONS(2752), + [anon_sym___clrcall] = ACTIONS(2752), + [anon_sym___stdcall] = ACTIONS(2752), + [anon_sym___fastcall] = ACTIONS(2752), + [anon_sym___thiscall] = ACTIONS(2752), + [anon_sym___vectorcall] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_signed] = ACTIONS(2752), + [anon_sym_unsigned] = ACTIONS(2752), + [anon_sym_long] = ACTIONS(2752), + [anon_sym_short] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_register] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym___inline] = ACTIONS(2752), + [anon_sym___inline__] = ACTIONS(2752), + [anon_sym___forceinline] = ACTIONS(2752), + [anon_sym_thread_local] = ACTIONS(2752), + [anon_sym___thread] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_constexpr] = ACTIONS(2752), + [anon_sym_volatile] = ACTIONS(2752), + [anon_sym_restrict] = ACTIONS(2752), + [anon_sym___restrict__] = ACTIONS(2752), + [anon_sym__Atomic] = ACTIONS(2752), + [anon_sym__Noreturn] = ACTIONS(2752), + [anon_sym_noreturn] = ACTIONS(2752), + [anon_sym_mutable] = ACTIONS(2752), + [anon_sym_constinit] = ACTIONS(2752), + [anon_sym_consteval] = ACTIONS(2752), + [sym_primitive_type] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_class] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_else] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2752), + [anon_sym_case] = ACTIONS(2752), + [anon_sym_default] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_goto] = ACTIONS(2752), + [anon_sym_not] = ACTIONS(2752), + [anon_sym_compl] = ACTIONS(2752), + [anon_sym_DASH_DASH] = ACTIONS(2754), + [anon_sym_PLUS_PLUS] = ACTIONS(2754), + [anon_sym_sizeof] = ACTIONS(2752), + [anon_sym___alignof__] = ACTIONS(2752), + [anon_sym___alignof] = ACTIONS(2752), + [anon_sym__alignof] = ACTIONS(2752), + [anon_sym_alignof] = ACTIONS(2752), + [anon_sym__Alignof] = ACTIONS(2752), + [anon_sym_offsetof] = ACTIONS(2752), + [anon_sym__Generic] = ACTIONS(2752), + [anon_sym_asm] = ACTIONS(2752), + [anon_sym___asm__] = ACTIONS(2752), + [sym_number_literal] = ACTIONS(2754), + [anon_sym_L_SQUOTE] = ACTIONS(2754), + [anon_sym_u_SQUOTE] = ACTIONS(2754), + [anon_sym_U_SQUOTE] = ACTIONS(2754), + [anon_sym_u8_SQUOTE] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_L_DQUOTE] = ACTIONS(2754), + [anon_sym_u_DQUOTE] = ACTIONS(2754), + [anon_sym_U_DQUOTE] = ACTIONS(2754), + [anon_sym_u8_DQUOTE] = ACTIONS(2754), + [anon_sym_DQUOTE] = ACTIONS(2754), + [sym_true] = ACTIONS(2752), + [sym_false] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_nullptr] = ACTIONS(2752), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2752), + [anon_sym_decltype] = ACTIONS(2752), + [anon_sym_virtual] = ACTIONS(2752), + [anon_sym_alignas] = ACTIONS(2752), + [anon_sym_explicit] = ACTIONS(2752), + [anon_sym_typename] = ACTIONS(2752), + [anon_sym_template] = ACTIONS(2752), + [anon_sym_operator] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_delete] = ACTIONS(2752), + [anon_sym_throw] = ACTIONS(2752), + [anon_sym_namespace] = ACTIONS(2752), + [anon_sym_using] = ACTIONS(2752), + [anon_sym_static_assert] = ACTIONS(2752), + [anon_sym_concept] = ACTIONS(2752), + [anon_sym_co_return] = ACTIONS(2752), + [anon_sym_co_yield] = ACTIONS(2752), + [anon_sym_catch] = ACTIONS(2752), + [anon_sym_R_DQUOTE] = ACTIONS(2754), + [anon_sym_LR_DQUOTE] = ACTIONS(2754), + [anon_sym_uR_DQUOTE] = ACTIONS(2754), + [anon_sym_UR_DQUOTE] = ACTIONS(2754), + [anon_sym_u8R_DQUOTE] = ACTIONS(2754), + [anon_sym_co_await] = ACTIONS(2752), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_requires] = ACTIONS(2752), + [sym_this] = ACTIONS(2752), }, - [494] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [558] = { + [sym_identifier] = ACTIONS(2989), + [aux_sym_preproc_include_token1] = ACTIONS(2989), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token2] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2989), + [sym_preproc_directive] = ACTIONS(2989), + [anon_sym_LPAREN2] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_SEMI] = ACTIONS(2991), + [anon_sym___extension__] = ACTIONS(2989), + [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_extern] = ACTIONS(2989), + [anon_sym___attribute__] = ACTIONS(2989), + [anon_sym_COLON_COLON] = ACTIONS(2991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), + [anon_sym___declspec] = ACTIONS(2989), + [anon_sym___based] = ACTIONS(2989), + [anon_sym___cdecl] = ACTIONS(2989), + [anon_sym___clrcall] = ACTIONS(2989), + [anon_sym___stdcall] = ACTIONS(2989), + [anon_sym___fastcall] = ACTIONS(2989), + [anon_sym___thiscall] = ACTIONS(2989), + [anon_sym___vectorcall] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_signed] = ACTIONS(2989), + [anon_sym_unsigned] = ACTIONS(2989), + [anon_sym_long] = ACTIONS(2989), + [anon_sym_short] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2989), + [anon_sym_static] = ACTIONS(2989), + [anon_sym_register] = ACTIONS(2989), + [anon_sym_inline] = ACTIONS(2989), + [anon_sym___inline] = ACTIONS(2989), + [anon_sym___inline__] = ACTIONS(2989), + [anon_sym___forceinline] = ACTIONS(2989), + [anon_sym_thread_local] = ACTIONS(2989), + [anon_sym___thread] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_constexpr] = ACTIONS(2989), + [anon_sym_volatile] = ACTIONS(2989), + [anon_sym_restrict] = ACTIONS(2989), + [anon_sym___restrict__] = ACTIONS(2989), + [anon_sym__Atomic] = ACTIONS(2989), + [anon_sym__Noreturn] = ACTIONS(2989), + [anon_sym_noreturn] = ACTIONS(2989), + [anon_sym_mutable] = ACTIONS(2989), + [anon_sym_constinit] = ACTIONS(2989), + [anon_sym_consteval] = ACTIONS(2989), + [sym_primitive_type] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_class] = ACTIONS(2989), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_union] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_switch] = ACTIONS(2989), + [anon_sym_case] = ACTIONS(2989), + [anon_sym_default] = ACTIONS(2989), + [anon_sym_while] = ACTIONS(2989), + [anon_sym_do] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_goto] = ACTIONS(2989), + [anon_sym_not] = ACTIONS(2989), + [anon_sym_compl] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_sizeof] = ACTIONS(2989), + [anon_sym___alignof__] = ACTIONS(2989), + [anon_sym___alignof] = ACTIONS(2989), + [anon_sym__alignof] = ACTIONS(2989), + [anon_sym_alignof] = ACTIONS(2989), + [anon_sym__Alignof] = ACTIONS(2989), + [anon_sym_offsetof] = ACTIONS(2989), + [anon_sym__Generic] = ACTIONS(2989), + [anon_sym_asm] = ACTIONS(2989), + [anon_sym___asm__] = ACTIONS(2989), + [sym_number_literal] = ACTIONS(2991), + [anon_sym_L_SQUOTE] = ACTIONS(2991), + [anon_sym_u_SQUOTE] = ACTIONS(2991), + [anon_sym_U_SQUOTE] = ACTIONS(2991), + [anon_sym_u8_SQUOTE] = ACTIONS(2991), + [anon_sym_SQUOTE] = ACTIONS(2991), + [anon_sym_L_DQUOTE] = ACTIONS(2991), + [anon_sym_u_DQUOTE] = ACTIONS(2991), + [anon_sym_U_DQUOTE] = ACTIONS(2991), + [anon_sym_u8_DQUOTE] = ACTIONS(2991), + [anon_sym_DQUOTE] = ACTIONS(2991), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [anon_sym_NULL] = ACTIONS(2989), + [anon_sym_nullptr] = ACTIONS(2989), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), - }, - [495] = { - [sym__expression] = STATE(5178), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9653), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2848), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(3039), - [anon_sym___extension__] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym___attribute__] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2855), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), - [anon_sym___declspec] = ACTIONS(2853), - [anon_sym_signed] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym___inline] = ACTIONS(2853), - [anon_sym___inline__] = ACTIONS(2853), - [anon_sym___forceinline] = ACTIONS(2853), - [anon_sym_thread_local] = ACTIONS(2853), - [anon_sym___thread] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_constexpr] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym___restrict__] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym__Noreturn] = ACTIONS(2853), - [anon_sym_noreturn] = ACTIONS(2853), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_constinit] = ACTIONS(2853), - [anon_sym_consteval] = ACTIONS(2853), - [sym_primitive_type] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2853), - [anon_sym_decltype] = ACTIONS(2863), - [anon_sym_virtual] = ACTIONS(2853), - [anon_sym_alignas] = ACTIONS(2853), - [anon_sym_typename] = ACTIONS(2853), - [anon_sym_template] = ACTIONS(2866), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2989), + [anon_sym_decltype] = ACTIONS(2989), + [anon_sym_virtual] = ACTIONS(2989), + [anon_sym_alignas] = ACTIONS(2989), + [anon_sym_explicit] = ACTIONS(2989), + [anon_sym_typename] = ACTIONS(2989), + [anon_sym_template] = ACTIONS(2989), + [anon_sym_operator] = ACTIONS(2989), + [anon_sym_try] = ACTIONS(2989), + [anon_sym_delete] = ACTIONS(2989), + [anon_sym_throw] = ACTIONS(2989), + [anon_sym_namespace] = ACTIONS(2989), + [anon_sym_using] = ACTIONS(2989), + [anon_sym_static_assert] = ACTIONS(2989), + [anon_sym_concept] = ACTIONS(2989), + [anon_sym_co_return] = ACTIONS(2989), + [anon_sym_co_yield] = ACTIONS(2989), + [anon_sym_R_DQUOTE] = ACTIONS(2991), + [anon_sym_LR_DQUOTE] = ACTIONS(2991), + [anon_sym_uR_DQUOTE] = ACTIONS(2991), + [anon_sym_UR_DQUOTE] = ACTIONS(2991), + [anon_sym_u8R_DQUOTE] = ACTIONS(2991), + [anon_sym_co_await] = ACTIONS(2989), + [anon_sym_new] = ACTIONS(2989), + [anon_sym_requires] = ACTIONS(2989), + [sym_this] = ACTIONS(2989), }, - [496] = { - [sym__expression] = STATE(5218), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9108), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym___extension__] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym___attribute__] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2797), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2800), - [anon_sym___declspec] = 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(1376), - [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_mutable] = ACTIONS(2795), - [anon_sym_constinit] = ACTIONS(2795), - [anon_sym_consteval] = ACTIONS(2795), - [sym_primitive_type] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_union] = ACTIONS(2795), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2795), - [anon_sym_decltype] = ACTIONS(2805), - [anon_sym_virtual] = ACTIONS(2795), - [anon_sym_alignas] = ACTIONS(2795), - [anon_sym_typename] = ACTIONS(2795), - [anon_sym_template] = ACTIONS(2808), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [559] = { + [sym_catch_clause] = STATE(393), + [aux_sym_constructor_try_statement_repeat1] = STATE(393), + [ts_builtin_sym_end] = ACTIONS(2257), + [sym_identifier] = ACTIONS(2255), + [aux_sym_preproc_include_token1] = ACTIONS(2255), + [aux_sym_preproc_def_token1] = ACTIONS(2255), + [aux_sym_preproc_if_token1] = ACTIONS(2255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2255), + [sym_preproc_directive] = ACTIONS(2255), + [anon_sym_LPAREN2] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_AMP_AMP] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym___extension__] = ACTIONS(2255), + [anon_sym_typedef] = ACTIONS(2255), + [anon_sym_extern] = ACTIONS(2255), + [anon_sym___attribute__] = ACTIONS(2255), + [anon_sym_COLON_COLON] = ACTIONS(2257), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2257), + [anon_sym___declspec] = ACTIONS(2255), + [anon_sym___based] = ACTIONS(2255), + [anon_sym___cdecl] = ACTIONS(2255), + [anon_sym___clrcall] = ACTIONS(2255), + [anon_sym___stdcall] = ACTIONS(2255), + [anon_sym___fastcall] = ACTIONS(2255), + [anon_sym___thiscall] = ACTIONS(2255), + [anon_sym___vectorcall] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2257), + [anon_sym_signed] = ACTIONS(2255), + [anon_sym_unsigned] = ACTIONS(2255), + [anon_sym_long] = ACTIONS(2255), + [anon_sym_short] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_register] = ACTIONS(2255), + [anon_sym_inline] = ACTIONS(2255), + [anon_sym___inline] = ACTIONS(2255), + [anon_sym___inline__] = ACTIONS(2255), + [anon_sym___forceinline] = ACTIONS(2255), + [anon_sym_thread_local] = ACTIONS(2255), + [anon_sym___thread] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_constexpr] = ACTIONS(2255), + [anon_sym_volatile] = ACTIONS(2255), + [anon_sym_restrict] = ACTIONS(2255), + [anon_sym___restrict__] = ACTIONS(2255), + [anon_sym__Atomic] = ACTIONS(2255), + [anon_sym__Noreturn] = ACTIONS(2255), + [anon_sym_noreturn] = ACTIONS(2255), + [anon_sym_mutable] = ACTIONS(2255), + [anon_sym_constinit] = ACTIONS(2255), + [anon_sym_consteval] = ACTIONS(2255), + [sym_primitive_type] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [anon_sym_class] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(2255), + [anon_sym_union] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_switch] = ACTIONS(2255), + [anon_sym_case] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2255), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_goto] = ACTIONS(2255), + [anon_sym_not] = ACTIONS(2255), + [anon_sym_compl] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_sizeof] = ACTIONS(2255), + [anon_sym___alignof__] = ACTIONS(2255), + [anon_sym___alignof] = ACTIONS(2255), + [anon_sym__alignof] = ACTIONS(2255), + [anon_sym_alignof] = ACTIONS(2255), + [anon_sym__Alignof] = ACTIONS(2255), + [anon_sym_offsetof] = ACTIONS(2255), + [anon_sym__Generic] = ACTIONS(2255), + [anon_sym_asm] = ACTIONS(2255), + [anon_sym___asm__] = ACTIONS(2255), + [sym_number_literal] = ACTIONS(2257), + [anon_sym_L_SQUOTE] = ACTIONS(2257), + [anon_sym_u_SQUOTE] = ACTIONS(2257), + [anon_sym_U_SQUOTE] = ACTIONS(2257), + [anon_sym_u8_SQUOTE] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2257), + [anon_sym_L_DQUOTE] = ACTIONS(2257), + [anon_sym_u_DQUOTE] = ACTIONS(2257), + [anon_sym_U_DQUOTE] = ACTIONS(2257), + [anon_sym_u8_DQUOTE] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2257), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), + [anon_sym_NULL] = ACTIONS(2255), + [anon_sym_nullptr] = ACTIONS(2255), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2255), + [anon_sym_decltype] = ACTIONS(2255), + [anon_sym_virtual] = ACTIONS(2255), + [anon_sym_alignas] = ACTIONS(2255), + [anon_sym_explicit] = ACTIONS(2255), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(2255), + [anon_sym_operator] = ACTIONS(2255), + [anon_sym_try] = ACTIONS(2255), + [anon_sym_delete] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(2255), + [anon_sym_namespace] = ACTIONS(2255), + [anon_sym_using] = ACTIONS(2255), + [anon_sym_static_assert] = ACTIONS(2255), + [anon_sym_concept] = ACTIONS(2255), + [anon_sym_co_return] = ACTIONS(2255), + [anon_sym_co_yield] = ACTIONS(2255), + [anon_sym_catch] = ACTIONS(3225), + [anon_sym_R_DQUOTE] = ACTIONS(2257), + [anon_sym_LR_DQUOTE] = ACTIONS(2257), + [anon_sym_uR_DQUOTE] = ACTIONS(2257), + [anon_sym_UR_DQUOTE] = ACTIONS(2257), + [anon_sym_u8R_DQUOTE] = ACTIONS(2257), + [anon_sym_co_await] = ACTIONS(2255), + [anon_sym_new] = ACTIONS(2255), + [anon_sym_requires] = ACTIONS(2255), + [sym_this] = ACTIONS(2255), }, - [497] = { - [sym__expression] = STATE(5217), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9109), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym___extension__] = ACTIONS(2818), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym___attribute__] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), - [anon_sym___declspec] = ACTIONS(2818), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym___inline] = ACTIONS(2818), - [anon_sym___inline__] = ACTIONS(2818), - [anon_sym___forceinline] = ACTIONS(2818), - [anon_sym_thread_local] = ACTIONS(2818), - [anon_sym___thread] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_restrict] = ACTIONS(2818), - [anon_sym___restrict__] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [anon_sym__Noreturn] = ACTIONS(2818), - [anon_sym_noreturn] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [anon_sym_constinit] = ACTIONS(2818), - [anon_sym_consteval] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2825), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [560] = { + [sym_identifier] = ACTIONS(2981), + [aux_sym_preproc_include_token1] = ACTIONS(2981), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token2] = ACTIONS(2981), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2981), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2981), + [aux_sym_preproc_else_token1] = ACTIONS(2981), + [aux_sym_preproc_elif_token1] = ACTIONS(2981), + [sym_preproc_directive] = ACTIONS(2981), + [anon_sym_LPAREN2] = ACTIONS(2983), + [anon_sym_BANG] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym___extension__] = ACTIONS(2981), + [anon_sym_typedef] = ACTIONS(2981), + [anon_sym_extern] = ACTIONS(2981), + [anon_sym___attribute__] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(2983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), + [anon_sym___declspec] = ACTIONS(2981), + [anon_sym___based] = ACTIONS(2981), + [anon_sym___cdecl] = ACTIONS(2981), + [anon_sym___clrcall] = ACTIONS(2981), + [anon_sym___stdcall] = ACTIONS(2981), + [anon_sym___fastcall] = ACTIONS(2981), + [anon_sym___thiscall] = ACTIONS(2981), + [anon_sym___vectorcall] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_signed] = ACTIONS(2981), + [anon_sym_unsigned] = ACTIONS(2981), + [anon_sym_long] = ACTIONS(2981), + [anon_sym_short] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_static] = ACTIONS(2981), + [anon_sym_register] = ACTIONS(2981), + [anon_sym_inline] = ACTIONS(2981), + [anon_sym___inline] = ACTIONS(2981), + [anon_sym___inline__] = ACTIONS(2981), + [anon_sym___forceinline] = ACTIONS(2981), + [anon_sym_thread_local] = ACTIONS(2981), + [anon_sym___thread] = ACTIONS(2981), + [anon_sym_const] = ACTIONS(2981), + [anon_sym_constexpr] = ACTIONS(2981), + [anon_sym_volatile] = ACTIONS(2981), + [anon_sym_restrict] = ACTIONS(2981), + [anon_sym___restrict__] = ACTIONS(2981), + [anon_sym__Atomic] = ACTIONS(2981), + [anon_sym__Noreturn] = ACTIONS(2981), + [anon_sym_noreturn] = ACTIONS(2981), + [anon_sym_mutable] = ACTIONS(2981), + [anon_sym_constinit] = ACTIONS(2981), + [anon_sym_consteval] = ACTIONS(2981), + [sym_primitive_type] = ACTIONS(2981), + [anon_sym_enum] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(2981), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_union] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_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), + [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(2818), - [anon_sym_decltype] = ACTIONS(2828), - [anon_sym_virtual] = ACTIONS(2818), - [anon_sym_alignas] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_template] = ACTIONS(2831), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2981), + [anon_sym_decltype] = ACTIONS(2981), + [anon_sym_virtual] = ACTIONS(2981), + [anon_sym_alignas] = ACTIONS(2981), + [anon_sym_explicit] = ACTIONS(2981), + [anon_sym_typename] = ACTIONS(2981), + [anon_sym_template] = ACTIONS(2981), + [anon_sym_operator] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2981), + [anon_sym_delete] = ACTIONS(2981), + [anon_sym_throw] = ACTIONS(2981), + [anon_sym_namespace] = ACTIONS(2981), + [anon_sym_using] = ACTIONS(2981), + [anon_sym_static_assert] = ACTIONS(2981), + [anon_sym_concept] = ACTIONS(2981), + [anon_sym_co_return] = ACTIONS(2981), + [anon_sym_co_yield] = ACTIONS(2981), + [anon_sym_R_DQUOTE] = ACTIONS(2983), + [anon_sym_LR_DQUOTE] = ACTIONS(2983), + [anon_sym_uR_DQUOTE] = ACTIONS(2983), + [anon_sym_UR_DQUOTE] = ACTIONS(2983), + [anon_sym_u8R_DQUOTE] = ACTIONS(2983), + [anon_sym_co_await] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2981), + [anon_sym_requires] = ACTIONS(2981), + [sym_this] = ACTIONS(2981), }, - [498] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [561] = { + [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), + [sym_preproc_directive] = ACTIONS(2977), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_BANG] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym___extension__] = ACTIONS(2977), + [anon_sym_typedef] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2977), + [anon_sym___attribute__] = ACTIONS(2977), + [anon_sym_COLON_COLON] = ACTIONS(2979), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), + [anon_sym___declspec] = ACTIONS(2977), + [anon_sym___based] = ACTIONS(2977), + [anon_sym___cdecl] = ACTIONS(2977), + [anon_sym___clrcall] = ACTIONS(2977), + [anon_sym___stdcall] = ACTIONS(2977), + [anon_sym___fastcall] = ACTIONS(2977), + [anon_sym___thiscall] = ACTIONS(2977), + [anon_sym___vectorcall] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_signed] = ACTIONS(2977), + [anon_sym_unsigned] = ACTIONS(2977), + [anon_sym_long] = ACTIONS(2977), + [anon_sym_short] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2977), + [anon_sym_register] = ACTIONS(2977), + [anon_sym_inline] = ACTIONS(2977), + [anon_sym___inline] = ACTIONS(2977), + [anon_sym___inline__] = ACTIONS(2977), + [anon_sym___forceinline] = ACTIONS(2977), + [anon_sym_thread_local] = ACTIONS(2977), + [anon_sym___thread] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_constexpr] = ACTIONS(2977), + [anon_sym_volatile] = ACTIONS(2977), + [anon_sym_restrict] = ACTIONS(2977), + [anon_sym___restrict__] = ACTIONS(2977), + [anon_sym__Atomic] = ACTIONS(2977), + [anon_sym__Noreturn] = ACTIONS(2977), + [anon_sym_noreturn] = ACTIONS(2977), + [anon_sym_mutable] = ACTIONS(2977), + [anon_sym_constinit] = ACTIONS(2977), + [anon_sym_consteval] = ACTIONS(2977), + [sym_primitive_type] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_union] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_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), + [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(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2977), + [anon_sym_decltype] = ACTIONS(2977), + [anon_sym_virtual] = ACTIONS(2977), + [anon_sym_alignas] = ACTIONS(2977), + [anon_sym_explicit] = ACTIONS(2977), + [anon_sym_typename] = ACTIONS(2977), + [anon_sym_template] = ACTIONS(2977), + [anon_sym_operator] = ACTIONS(2977), + [anon_sym_try] = ACTIONS(2977), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_throw] = ACTIONS(2977), + [anon_sym_namespace] = ACTIONS(2977), + [anon_sym_using] = ACTIONS(2977), + [anon_sym_static_assert] = ACTIONS(2977), + [anon_sym_concept] = ACTIONS(2977), + [anon_sym_co_return] = ACTIONS(2977), + [anon_sym_co_yield] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2979), + [anon_sym_LR_DQUOTE] = ACTIONS(2979), + [anon_sym_uR_DQUOTE] = ACTIONS(2979), + [anon_sym_UR_DQUOTE] = ACTIONS(2979), + [anon_sym_u8R_DQUOTE] = ACTIONS(2979), + [anon_sym_co_await] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(2977), + [anon_sym_requires] = ACTIONS(2977), + [sym_this] = ACTIONS(2977), }, - [499] = { - [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_extern] = ACTIONS(3045), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3045), - [anon_sym_constinit] = ACTIONS(3045), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3045), - [anon_sym_alignas] = 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_using] = 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), + [562] = { + [sym_identifier] = ACTIONS(3212), + [aux_sym_preproc_include_token1] = ACTIONS(3212), + [aux_sym_preproc_def_token1] = ACTIONS(3212), + [aux_sym_preproc_if_token1] = ACTIONS(3212), + [aux_sym_preproc_if_token2] = ACTIONS(3212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3212), + [aux_sym_preproc_else_token1] = ACTIONS(3212), + [aux_sym_preproc_elif_token1] = ACTIONS(3212), + [sym_preproc_directive] = ACTIONS(3212), + [anon_sym_LPAREN2] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3214), + [anon_sym_AMP_AMP] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_SEMI] = ACTIONS(3214), + [anon_sym___extension__] = ACTIONS(3212), + [anon_sym_typedef] = ACTIONS(3212), + [anon_sym_extern] = ACTIONS(3212), + [anon_sym___attribute__] = ACTIONS(3212), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3214), + [anon_sym___declspec] = ACTIONS(3212), + [anon_sym___based] = ACTIONS(3212), + [anon_sym___cdecl] = ACTIONS(3212), + [anon_sym___clrcall] = ACTIONS(3212), + [anon_sym___stdcall] = ACTIONS(3212), + [anon_sym___fastcall] = ACTIONS(3212), + [anon_sym___thiscall] = ACTIONS(3212), + [anon_sym___vectorcall] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_signed] = ACTIONS(3212), + [anon_sym_unsigned] = ACTIONS(3212), + [anon_sym_long] = ACTIONS(3212), + [anon_sym_short] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_static] = ACTIONS(3212), + [anon_sym_register] = ACTIONS(3212), + [anon_sym_inline] = ACTIONS(3212), + [anon_sym___inline] = ACTIONS(3212), + [anon_sym___inline__] = ACTIONS(3212), + [anon_sym___forceinline] = ACTIONS(3212), + [anon_sym_thread_local] = ACTIONS(3212), + [anon_sym___thread] = ACTIONS(3212), + [anon_sym_const] = ACTIONS(3212), + [anon_sym_constexpr] = ACTIONS(3212), + [anon_sym_volatile] = ACTIONS(3212), + [anon_sym_restrict] = ACTIONS(3212), + [anon_sym___restrict__] = ACTIONS(3212), + [anon_sym__Atomic] = ACTIONS(3212), + [anon_sym__Noreturn] = ACTIONS(3212), + [anon_sym_noreturn] = ACTIONS(3212), + [anon_sym_mutable] = ACTIONS(3212), + [anon_sym_constinit] = ACTIONS(3212), + [anon_sym_consteval] = ACTIONS(3212), + [sym_primitive_type] = ACTIONS(3212), + [anon_sym_enum] = ACTIONS(3212), + [anon_sym_class] = ACTIONS(3212), + [anon_sym_struct] = ACTIONS(3212), + [anon_sym_union] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_switch] = ACTIONS(3212), + [anon_sym_case] = ACTIONS(3212), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_break] = ACTIONS(3212), + [anon_sym_continue] = ACTIONS(3212), + [anon_sym_goto] = ACTIONS(3212), + [anon_sym_not] = ACTIONS(3212), + [anon_sym_compl] = ACTIONS(3212), + [anon_sym_DASH_DASH] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3214), + [anon_sym_sizeof] = ACTIONS(3212), + [anon_sym___alignof__] = ACTIONS(3212), + [anon_sym___alignof] = ACTIONS(3212), + [anon_sym__alignof] = ACTIONS(3212), + [anon_sym_alignof] = ACTIONS(3212), + [anon_sym__Alignof] = ACTIONS(3212), + [anon_sym_offsetof] = ACTIONS(3212), + [anon_sym__Generic] = ACTIONS(3212), + [anon_sym_asm] = ACTIONS(3212), + [anon_sym___asm__] = ACTIONS(3212), + [sym_number_literal] = ACTIONS(3214), + [anon_sym_L_SQUOTE] = ACTIONS(3214), + [anon_sym_u_SQUOTE] = ACTIONS(3214), + [anon_sym_U_SQUOTE] = ACTIONS(3214), + [anon_sym_u8_SQUOTE] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3214), + [anon_sym_L_DQUOTE] = ACTIONS(3214), + [anon_sym_u_DQUOTE] = ACTIONS(3214), + [anon_sym_U_DQUOTE] = ACTIONS(3214), + [anon_sym_u8_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE] = ACTIONS(3214), + [sym_true] = ACTIONS(3212), + [sym_false] = ACTIONS(3212), + [anon_sym_NULL] = ACTIONS(3212), + [anon_sym_nullptr] = ACTIONS(3212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3212), + [anon_sym_decltype] = ACTIONS(3212), + [anon_sym_virtual] = ACTIONS(3212), + [anon_sym_alignas] = ACTIONS(3212), + [anon_sym_explicit] = ACTIONS(3212), + [anon_sym_typename] = ACTIONS(3212), + [anon_sym_template] = ACTIONS(3212), + [anon_sym_operator] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_delete] = ACTIONS(3212), + [anon_sym_throw] = ACTIONS(3212), + [anon_sym_namespace] = ACTIONS(3212), + [anon_sym_using] = ACTIONS(3212), + [anon_sym_static_assert] = ACTIONS(3212), + [anon_sym_concept] = ACTIONS(3212), + [anon_sym_co_return] = ACTIONS(3212), + [anon_sym_co_yield] = ACTIONS(3212), + [anon_sym_R_DQUOTE] = ACTIONS(3214), + [anon_sym_LR_DQUOTE] = ACTIONS(3214), + [anon_sym_uR_DQUOTE] = ACTIONS(3214), + [anon_sym_UR_DQUOTE] = ACTIONS(3214), + [anon_sym_u8R_DQUOTE] = ACTIONS(3214), + [anon_sym_co_await] = ACTIONS(3212), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_requires] = ACTIONS(3212), + [sym_this] = ACTIONS(3212), }, - [500] = { - [sym_identifier] = ACTIONS(3049), - [aux_sym_preproc_include_token1] = ACTIONS(3049), - [aux_sym_preproc_def_token1] = ACTIONS(3049), - [aux_sym_preproc_if_token1] = ACTIONS(3049), - [aux_sym_preproc_if_token2] = ACTIONS(3049), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3049), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3049), - [aux_sym_preproc_else_token1] = ACTIONS(3049), - [aux_sym_preproc_elif_token1] = ACTIONS(3049), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3049), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3049), - [sym_preproc_directive] = ACTIONS(3049), - [anon_sym_LPAREN2] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_SEMI] = ACTIONS(3051), - [anon_sym___extension__] = ACTIONS(3049), - [anon_sym_typedef] = ACTIONS(3049), - [anon_sym_extern] = ACTIONS(3049), - [anon_sym___attribute__] = ACTIONS(3049), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3051), - [anon_sym___declspec] = ACTIONS(3049), - [anon_sym___based] = ACTIONS(3049), - [anon_sym___cdecl] = ACTIONS(3049), - [anon_sym___clrcall] = ACTIONS(3049), - [anon_sym___stdcall] = ACTIONS(3049), - [anon_sym___fastcall] = ACTIONS(3049), - [anon_sym___thiscall] = ACTIONS(3049), - [anon_sym___vectorcall] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_signed] = ACTIONS(3049), - [anon_sym_unsigned] = ACTIONS(3049), - [anon_sym_long] = ACTIONS(3049), - [anon_sym_short] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_static] = ACTIONS(3049), - [anon_sym_register] = ACTIONS(3049), - [anon_sym_inline] = ACTIONS(3049), - [anon_sym___inline] = ACTIONS(3049), - [anon_sym___inline__] = ACTIONS(3049), - [anon_sym___forceinline] = ACTIONS(3049), - [anon_sym_thread_local] = ACTIONS(3049), - [anon_sym___thread] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_constexpr] = ACTIONS(3049), - [anon_sym_volatile] = ACTIONS(3049), - [anon_sym_restrict] = ACTIONS(3049), - [anon_sym___restrict__] = ACTIONS(3049), - [anon_sym__Atomic] = ACTIONS(3049), - [anon_sym__Noreturn] = ACTIONS(3049), - [anon_sym_noreturn] = ACTIONS(3049), - [anon_sym_mutable] = ACTIONS(3049), - [anon_sym_constinit] = ACTIONS(3049), - [anon_sym_consteval] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3049), - [anon_sym_enum] = ACTIONS(3049), - [anon_sym_class] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_union] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3049), - [anon_sym_switch] = ACTIONS(3049), - [anon_sym_case] = ACTIONS(3049), - [anon_sym_default] = ACTIONS(3049), - [anon_sym_while] = ACTIONS(3049), - [anon_sym_do] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3049), - [anon_sym_return] = ACTIONS(3049), - [anon_sym_break] = ACTIONS(3049), - [anon_sym_continue] = ACTIONS(3049), - [anon_sym_goto] = ACTIONS(3049), - [anon_sym_not] = ACTIONS(3049), - [anon_sym_compl] = ACTIONS(3049), - [anon_sym_DASH_DASH] = ACTIONS(3051), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_sizeof] = ACTIONS(3049), - [anon_sym___alignof__] = ACTIONS(3049), - [anon_sym___alignof] = ACTIONS(3049), - [anon_sym__alignof] = ACTIONS(3049), - [anon_sym_alignof] = ACTIONS(3049), - [anon_sym__Alignof] = ACTIONS(3049), - [anon_sym_offsetof] = ACTIONS(3049), - [anon_sym__Generic] = ACTIONS(3049), - [anon_sym_asm] = ACTIONS(3049), - [anon_sym___asm__] = ACTIONS(3049), - [sym_number_literal] = ACTIONS(3051), - [anon_sym_L_SQUOTE] = ACTIONS(3051), - [anon_sym_u_SQUOTE] = ACTIONS(3051), - [anon_sym_U_SQUOTE] = ACTIONS(3051), - [anon_sym_u8_SQUOTE] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3051), - [anon_sym_L_DQUOTE] = ACTIONS(3051), - [anon_sym_u_DQUOTE] = ACTIONS(3051), - [anon_sym_U_DQUOTE] = ACTIONS(3051), - [anon_sym_u8_DQUOTE] = ACTIONS(3051), - [anon_sym_DQUOTE] = ACTIONS(3051), - [sym_true] = ACTIONS(3049), - [sym_false] = ACTIONS(3049), - [anon_sym_NULL] = ACTIONS(3049), - [anon_sym_nullptr] = ACTIONS(3049), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3049), - [anon_sym_decltype] = ACTIONS(3049), - [anon_sym_virtual] = ACTIONS(3049), - [anon_sym_alignas] = ACTIONS(3049), - [anon_sym_explicit] = ACTIONS(3049), - [anon_sym_typename] = ACTIONS(3049), - [anon_sym_template] = ACTIONS(3049), - [anon_sym_operator] = ACTIONS(3049), - [anon_sym_try] = ACTIONS(3049), - [anon_sym_delete] = ACTIONS(3049), - [anon_sym_throw] = ACTIONS(3049), - [anon_sym_namespace] = ACTIONS(3049), - [anon_sym_using] = ACTIONS(3049), - [anon_sym_static_assert] = ACTIONS(3049), - [anon_sym_concept] = ACTIONS(3049), - [anon_sym_co_return] = ACTIONS(3049), - [anon_sym_co_yield] = ACTIONS(3049), - [anon_sym_R_DQUOTE] = ACTIONS(3051), - [anon_sym_LR_DQUOTE] = ACTIONS(3051), - [anon_sym_uR_DQUOTE] = ACTIONS(3051), - [anon_sym_UR_DQUOTE] = ACTIONS(3051), - [anon_sym_u8R_DQUOTE] = ACTIONS(3051), - [anon_sym_co_await] = ACTIONS(3049), - [anon_sym_new] = ACTIONS(3049), - [anon_sym_requires] = ACTIONS(3049), - [sym_this] = ACTIONS(3049), + [563] = { + [sym_identifier] = ACTIONS(3208), + [aux_sym_preproc_include_token1] = ACTIONS(3208), + [aux_sym_preproc_def_token1] = ACTIONS(3208), + [aux_sym_preproc_if_token1] = ACTIONS(3208), + [aux_sym_preproc_if_token2] = ACTIONS(3208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3208), + [aux_sym_preproc_else_token1] = ACTIONS(3208), + [aux_sym_preproc_elif_token1] = ACTIONS(3208), + [sym_preproc_directive] = ACTIONS(3208), + [anon_sym_LPAREN2] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_AMP_AMP] = ACTIONS(3210), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym_SEMI] = ACTIONS(3210), + [anon_sym___extension__] = ACTIONS(3208), + [anon_sym_typedef] = ACTIONS(3208), + [anon_sym_extern] = ACTIONS(3208), + [anon_sym___attribute__] = ACTIONS(3208), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3210), + [anon_sym___declspec] = ACTIONS(3208), + [anon_sym___based] = ACTIONS(3208), + [anon_sym___cdecl] = ACTIONS(3208), + [anon_sym___clrcall] = ACTIONS(3208), + [anon_sym___stdcall] = ACTIONS(3208), + [anon_sym___fastcall] = ACTIONS(3208), + [anon_sym___thiscall] = ACTIONS(3208), + [anon_sym___vectorcall] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_signed] = ACTIONS(3208), + [anon_sym_unsigned] = ACTIONS(3208), + [anon_sym_long] = ACTIONS(3208), + [anon_sym_short] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_static] = ACTIONS(3208), + [anon_sym_register] = ACTIONS(3208), + [anon_sym_inline] = ACTIONS(3208), + [anon_sym___inline] = ACTIONS(3208), + [anon_sym___inline__] = ACTIONS(3208), + [anon_sym___forceinline] = ACTIONS(3208), + [anon_sym_thread_local] = ACTIONS(3208), + [anon_sym___thread] = ACTIONS(3208), + [anon_sym_const] = ACTIONS(3208), + [anon_sym_constexpr] = ACTIONS(3208), + [anon_sym_volatile] = ACTIONS(3208), + [anon_sym_restrict] = ACTIONS(3208), + [anon_sym___restrict__] = ACTIONS(3208), + [anon_sym__Atomic] = ACTIONS(3208), + [anon_sym__Noreturn] = ACTIONS(3208), + [anon_sym_noreturn] = ACTIONS(3208), + [anon_sym_mutable] = ACTIONS(3208), + [anon_sym_constinit] = ACTIONS(3208), + [anon_sym_consteval] = ACTIONS(3208), + [sym_primitive_type] = ACTIONS(3208), + [anon_sym_enum] = ACTIONS(3208), + [anon_sym_class] = ACTIONS(3208), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3208), + [anon_sym_if] = ACTIONS(3208), + [anon_sym_switch] = ACTIONS(3208), + [anon_sym_case] = ACTIONS(3208), + [anon_sym_default] = ACTIONS(3208), + [anon_sym_while] = ACTIONS(3208), + [anon_sym_do] = ACTIONS(3208), + [anon_sym_for] = ACTIONS(3208), + [anon_sym_return] = ACTIONS(3208), + [anon_sym_break] = ACTIONS(3208), + [anon_sym_continue] = ACTIONS(3208), + [anon_sym_goto] = ACTIONS(3208), + [anon_sym_not] = ACTIONS(3208), + [anon_sym_compl] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3210), + [anon_sym_sizeof] = ACTIONS(3208), + [anon_sym___alignof__] = ACTIONS(3208), + [anon_sym___alignof] = ACTIONS(3208), + [anon_sym__alignof] = ACTIONS(3208), + [anon_sym_alignof] = ACTIONS(3208), + [anon_sym__Alignof] = ACTIONS(3208), + [anon_sym_offsetof] = ACTIONS(3208), + [anon_sym__Generic] = ACTIONS(3208), + [anon_sym_asm] = ACTIONS(3208), + [anon_sym___asm__] = ACTIONS(3208), + [sym_number_literal] = ACTIONS(3210), + [anon_sym_L_SQUOTE] = ACTIONS(3210), + [anon_sym_u_SQUOTE] = ACTIONS(3210), + [anon_sym_U_SQUOTE] = ACTIONS(3210), + [anon_sym_u8_SQUOTE] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3210), + [anon_sym_L_DQUOTE] = ACTIONS(3210), + [anon_sym_u_DQUOTE] = ACTIONS(3210), + [anon_sym_U_DQUOTE] = ACTIONS(3210), + [anon_sym_u8_DQUOTE] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(3210), + [sym_true] = ACTIONS(3208), + [sym_false] = ACTIONS(3208), + [anon_sym_NULL] = ACTIONS(3208), + [anon_sym_nullptr] = ACTIONS(3208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3208), + [anon_sym_decltype] = ACTIONS(3208), + [anon_sym_virtual] = ACTIONS(3208), + [anon_sym_alignas] = ACTIONS(3208), + [anon_sym_explicit] = ACTIONS(3208), + [anon_sym_typename] = ACTIONS(3208), + [anon_sym_template] = ACTIONS(3208), + [anon_sym_operator] = ACTIONS(3208), + [anon_sym_try] = ACTIONS(3208), + [anon_sym_delete] = ACTIONS(3208), + [anon_sym_throw] = ACTIONS(3208), + [anon_sym_namespace] = ACTIONS(3208), + [anon_sym_using] = ACTIONS(3208), + [anon_sym_static_assert] = ACTIONS(3208), + [anon_sym_concept] = ACTIONS(3208), + [anon_sym_co_return] = ACTIONS(3208), + [anon_sym_co_yield] = ACTIONS(3208), + [anon_sym_R_DQUOTE] = ACTIONS(3210), + [anon_sym_LR_DQUOTE] = ACTIONS(3210), + [anon_sym_uR_DQUOTE] = ACTIONS(3210), + [anon_sym_UR_DQUOTE] = ACTIONS(3210), + [anon_sym_u8R_DQUOTE] = ACTIONS(3210), + [anon_sym_co_await] = ACTIONS(3208), + [anon_sym_new] = ACTIONS(3208), + [anon_sym_requires] = ACTIONS(3208), + [sym_this] = ACTIONS(3208), }, - [501] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [564] = { + [sym_identifier] = ACTIONS(2969), + [aux_sym_preproc_include_token1] = ACTIONS(2969), + [aux_sym_preproc_def_token1] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(2969), + [aux_sym_preproc_if_token2] = ACTIONS(2969), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), + [aux_sym_preproc_else_token1] = ACTIONS(2969), + [aux_sym_preproc_elif_token1] = ACTIONS(2969), + [sym_preproc_directive] = ACTIONS(2969), + [anon_sym_LPAREN2] = ACTIONS(2971), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2969), + [anon_sym_SEMI] = ACTIONS(2971), + [anon_sym___extension__] = ACTIONS(2969), + [anon_sym_typedef] = ACTIONS(2969), + [anon_sym_extern] = ACTIONS(2969), + [anon_sym___attribute__] = ACTIONS(2969), + [anon_sym_COLON_COLON] = ACTIONS(2971), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), + [anon_sym___declspec] = ACTIONS(2969), + [anon_sym___based] = ACTIONS(2969), + [anon_sym___cdecl] = ACTIONS(2969), + [anon_sym___clrcall] = ACTIONS(2969), + [anon_sym___stdcall] = ACTIONS(2969), + [anon_sym___fastcall] = ACTIONS(2969), + [anon_sym___thiscall] = ACTIONS(2969), + [anon_sym___vectorcall] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_signed] = ACTIONS(2969), + [anon_sym_unsigned] = ACTIONS(2969), + [anon_sym_long] = ACTIONS(2969), + [anon_sym_short] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(2969), + [anon_sym_register] = ACTIONS(2969), + [anon_sym_inline] = ACTIONS(2969), + [anon_sym___inline] = ACTIONS(2969), + [anon_sym___inline__] = ACTIONS(2969), + [anon_sym___forceinline] = ACTIONS(2969), + [anon_sym_thread_local] = ACTIONS(2969), + [anon_sym___thread] = ACTIONS(2969), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_constexpr] = ACTIONS(2969), + [anon_sym_volatile] = ACTIONS(2969), + [anon_sym_restrict] = ACTIONS(2969), + [anon_sym___restrict__] = ACTIONS(2969), + [anon_sym__Atomic] = ACTIONS(2969), + [anon_sym__Noreturn] = ACTIONS(2969), + [anon_sym_noreturn] = ACTIONS(2969), + [anon_sym_mutable] = ACTIONS(2969), + [anon_sym_constinit] = ACTIONS(2969), + [anon_sym_consteval] = ACTIONS(2969), + [sym_primitive_type] = ACTIONS(2969), + [anon_sym_enum] = ACTIONS(2969), + [anon_sym_class] = ACTIONS(2969), + [anon_sym_struct] = ACTIONS(2969), + [anon_sym_union] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_switch] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2969), + [anon_sym_default] = ACTIONS(2969), + [anon_sym_while] = ACTIONS(2969), + [anon_sym_do] = ACTIONS(2969), + [anon_sym_for] = ACTIONS(2969), + [anon_sym_return] = ACTIONS(2969), + [anon_sym_break] = ACTIONS(2969), + [anon_sym_continue] = ACTIONS(2969), + [anon_sym_goto] = ACTIONS(2969), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(2971), + [anon_sym_PLUS_PLUS] = ACTIONS(2971), + [anon_sym_sizeof] = ACTIONS(2969), + [anon_sym___alignof__] = ACTIONS(2969), + [anon_sym___alignof] = ACTIONS(2969), + [anon_sym__alignof] = ACTIONS(2969), + [anon_sym_alignof] = ACTIONS(2969), + [anon_sym__Alignof] = ACTIONS(2969), + [anon_sym_offsetof] = ACTIONS(2969), + [anon_sym__Generic] = ACTIONS(2969), + [anon_sym_asm] = ACTIONS(2969), + [anon_sym___asm__] = ACTIONS(2969), + [sym_number_literal] = ACTIONS(2971), + [anon_sym_L_SQUOTE] = ACTIONS(2971), + [anon_sym_u_SQUOTE] = ACTIONS(2971), + [anon_sym_U_SQUOTE] = ACTIONS(2971), + [anon_sym_u8_SQUOTE] = ACTIONS(2971), + [anon_sym_SQUOTE] = ACTIONS(2971), + [anon_sym_L_DQUOTE] = ACTIONS(2971), + [anon_sym_u_DQUOTE] = ACTIONS(2971), + [anon_sym_U_DQUOTE] = ACTIONS(2971), + [anon_sym_u8_DQUOTE] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [sym_true] = ACTIONS(2969), + [sym_false] = ACTIONS(2969), + [anon_sym_NULL] = ACTIONS(2969), + [anon_sym_nullptr] = ACTIONS(2969), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2969), + [anon_sym_decltype] = ACTIONS(2969), + [anon_sym_virtual] = ACTIONS(2969), + [anon_sym_alignas] = ACTIONS(2969), + [anon_sym_explicit] = ACTIONS(2969), + [anon_sym_typename] = ACTIONS(2969), + [anon_sym_template] = ACTIONS(2969), + [anon_sym_operator] = ACTIONS(2969), + [anon_sym_try] = ACTIONS(2969), + [anon_sym_delete] = ACTIONS(2969), + [anon_sym_throw] = ACTIONS(2969), + [anon_sym_namespace] = ACTIONS(2969), + [anon_sym_using] = ACTIONS(2969), + [anon_sym_static_assert] = ACTIONS(2969), + [anon_sym_concept] = ACTIONS(2969), + [anon_sym_co_return] = ACTIONS(2969), + [anon_sym_co_yield] = ACTIONS(2969), + [anon_sym_R_DQUOTE] = ACTIONS(2971), + [anon_sym_LR_DQUOTE] = ACTIONS(2971), + [anon_sym_uR_DQUOTE] = ACTIONS(2971), + [anon_sym_UR_DQUOTE] = ACTIONS(2971), + [anon_sym_u8R_DQUOTE] = ACTIONS(2971), + [anon_sym_co_await] = ACTIONS(2969), + [anon_sym_new] = ACTIONS(2969), + [anon_sym_requires] = ACTIONS(2969), + [sym_this] = ACTIONS(2969), }, - [502] = { - [sym_identifier] = ACTIONS(3053), - [aux_sym_preproc_include_token1] = ACTIONS(3053), - [aux_sym_preproc_def_token1] = ACTIONS(3053), - [aux_sym_preproc_if_token1] = ACTIONS(3053), - [aux_sym_preproc_if_token2] = ACTIONS(3053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3053), - [aux_sym_preproc_else_token1] = ACTIONS(3053), - [aux_sym_preproc_elif_token1] = ACTIONS(3053), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3053), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3053), - [sym_preproc_directive] = ACTIONS(3053), - [anon_sym_LPAREN2] = ACTIONS(3055), - [anon_sym_BANG] = ACTIONS(3055), - [anon_sym_TILDE] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_AMP_AMP] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym___extension__] = ACTIONS(3053), - [anon_sym_typedef] = ACTIONS(3053), - [anon_sym_extern] = ACTIONS(3053), - [anon_sym___attribute__] = ACTIONS(3053), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3055), - [anon_sym___declspec] = ACTIONS(3053), - [anon_sym___based] = ACTIONS(3053), - [anon_sym___cdecl] = ACTIONS(3053), - [anon_sym___clrcall] = ACTIONS(3053), - [anon_sym___stdcall] = ACTIONS(3053), - [anon_sym___fastcall] = ACTIONS(3053), - [anon_sym___thiscall] = ACTIONS(3053), - [anon_sym___vectorcall] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3055), - [anon_sym_signed] = ACTIONS(3053), - [anon_sym_unsigned] = ACTIONS(3053), - [anon_sym_long] = ACTIONS(3053), - [anon_sym_short] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_static] = ACTIONS(3053), - [anon_sym_register] = ACTIONS(3053), - [anon_sym_inline] = ACTIONS(3053), - [anon_sym___inline] = ACTIONS(3053), - [anon_sym___inline__] = ACTIONS(3053), - [anon_sym___forceinline] = ACTIONS(3053), - [anon_sym_thread_local] = ACTIONS(3053), - [anon_sym___thread] = ACTIONS(3053), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_constexpr] = ACTIONS(3053), - [anon_sym_volatile] = ACTIONS(3053), - [anon_sym_restrict] = ACTIONS(3053), - [anon_sym___restrict__] = ACTIONS(3053), - [anon_sym__Atomic] = ACTIONS(3053), - [anon_sym__Noreturn] = ACTIONS(3053), - [anon_sym_noreturn] = ACTIONS(3053), - [anon_sym_mutable] = ACTIONS(3053), - [anon_sym_constinit] = ACTIONS(3053), - [anon_sym_consteval] = ACTIONS(3053), - [sym_primitive_type] = ACTIONS(3053), - [anon_sym_enum] = ACTIONS(3053), - [anon_sym_class] = ACTIONS(3053), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_union] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_else] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3053), - [anon_sym_case] = ACTIONS(3053), - [anon_sym_default] = ACTIONS(3053), - [anon_sym_while] = ACTIONS(3053), - [anon_sym_do] = ACTIONS(3053), - [anon_sym_for] = ACTIONS(3053), - [anon_sym_return] = ACTIONS(3053), - [anon_sym_break] = ACTIONS(3053), - [anon_sym_continue] = ACTIONS(3053), - [anon_sym_goto] = ACTIONS(3053), - [anon_sym_not] = ACTIONS(3053), - [anon_sym_compl] = ACTIONS(3053), - [anon_sym_DASH_DASH] = ACTIONS(3055), - [anon_sym_PLUS_PLUS] = ACTIONS(3055), - [anon_sym_sizeof] = ACTIONS(3053), - [anon_sym___alignof__] = ACTIONS(3053), - [anon_sym___alignof] = ACTIONS(3053), - [anon_sym__alignof] = ACTIONS(3053), - [anon_sym_alignof] = ACTIONS(3053), - [anon_sym__Alignof] = ACTIONS(3053), - [anon_sym_offsetof] = ACTIONS(3053), - [anon_sym__Generic] = ACTIONS(3053), - [anon_sym_asm] = ACTIONS(3053), - [anon_sym___asm__] = ACTIONS(3053), - [sym_number_literal] = ACTIONS(3055), - [anon_sym_L_SQUOTE] = ACTIONS(3055), - [anon_sym_u_SQUOTE] = ACTIONS(3055), - [anon_sym_U_SQUOTE] = ACTIONS(3055), - [anon_sym_u8_SQUOTE] = ACTIONS(3055), - [anon_sym_SQUOTE] = ACTIONS(3055), - [anon_sym_L_DQUOTE] = ACTIONS(3055), - [anon_sym_u_DQUOTE] = ACTIONS(3055), - [anon_sym_U_DQUOTE] = ACTIONS(3055), - [anon_sym_u8_DQUOTE] = ACTIONS(3055), - [anon_sym_DQUOTE] = ACTIONS(3055), - [sym_true] = ACTIONS(3053), - [sym_false] = ACTIONS(3053), - [anon_sym_NULL] = ACTIONS(3053), - [anon_sym_nullptr] = ACTIONS(3053), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3053), - [anon_sym_decltype] = ACTIONS(3053), - [anon_sym_virtual] = ACTIONS(3053), - [anon_sym_alignas] = ACTIONS(3053), - [anon_sym_explicit] = ACTIONS(3053), - [anon_sym_typename] = ACTIONS(3053), - [anon_sym_template] = ACTIONS(3053), - [anon_sym_operator] = ACTIONS(3053), - [anon_sym_try] = ACTIONS(3053), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_throw] = ACTIONS(3053), - [anon_sym_namespace] = ACTIONS(3053), - [anon_sym_using] = ACTIONS(3053), - [anon_sym_static_assert] = ACTIONS(3053), - [anon_sym_concept] = ACTIONS(3053), - [anon_sym_co_return] = ACTIONS(3053), - [anon_sym_co_yield] = ACTIONS(3053), - [anon_sym_R_DQUOTE] = ACTIONS(3055), - [anon_sym_LR_DQUOTE] = ACTIONS(3055), - [anon_sym_uR_DQUOTE] = ACTIONS(3055), - [anon_sym_UR_DQUOTE] = ACTIONS(3055), - [anon_sym_u8R_DQUOTE] = ACTIONS(3055), - [anon_sym_co_await] = ACTIONS(3053), - [anon_sym_new] = ACTIONS(3053), - [anon_sym_requires] = ACTIONS(3053), - [sym_this] = ACTIONS(3053), + [565] = { + [sym_identifier] = ACTIONS(2965), + [aux_sym_preproc_include_token1] = ACTIONS(2965), + [aux_sym_preproc_def_token1] = ACTIONS(2965), + [aux_sym_preproc_if_token1] = ACTIONS(2965), + [aux_sym_preproc_if_token2] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), + [aux_sym_preproc_else_token1] = ACTIONS(2965), + [aux_sym_preproc_elif_token1] = ACTIONS(2965), + [sym_preproc_directive] = ACTIONS(2965), + [anon_sym_LPAREN2] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_PLUS] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_SEMI] = ACTIONS(2967), + [anon_sym___extension__] = ACTIONS(2965), + [anon_sym_typedef] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2965), + [anon_sym___attribute__] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(2967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), + [anon_sym___declspec] = ACTIONS(2965), + [anon_sym___based] = ACTIONS(2965), + [anon_sym___cdecl] = ACTIONS(2965), + [anon_sym___clrcall] = ACTIONS(2965), + [anon_sym___stdcall] = ACTIONS(2965), + [anon_sym___fastcall] = ACTIONS(2965), + [anon_sym___thiscall] = ACTIONS(2965), + [anon_sym___vectorcall] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_signed] = ACTIONS(2965), + [anon_sym_unsigned] = ACTIONS(2965), + [anon_sym_long] = ACTIONS(2965), + [anon_sym_short] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_static] = ACTIONS(2965), + [anon_sym_register] = ACTIONS(2965), + [anon_sym_inline] = ACTIONS(2965), + [anon_sym___inline] = ACTIONS(2965), + [anon_sym___inline__] = ACTIONS(2965), + [anon_sym___forceinline] = ACTIONS(2965), + [anon_sym_thread_local] = ACTIONS(2965), + [anon_sym___thread] = ACTIONS(2965), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_constexpr] = ACTIONS(2965), + [anon_sym_volatile] = ACTIONS(2965), + [anon_sym_restrict] = ACTIONS(2965), + [anon_sym___restrict__] = ACTIONS(2965), + [anon_sym__Atomic] = ACTIONS(2965), + [anon_sym__Noreturn] = ACTIONS(2965), + [anon_sym_noreturn] = ACTIONS(2965), + [anon_sym_mutable] = ACTIONS(2965), + [anon_sym_constinit] = ACTIONS(2965), + [anon_sym_consteval] = ACTIONS(2965), + [sym_primitive_type] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_class] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_union] = ACTIONS(2965), + [anon_sym_if] = ACTIONS(2965), + [anon_sym_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), + [sym_number_literal] = ACTIONS(2967), + [anon_sym_L_SQUOTE] = ACTIONS(2967), + [anon_sym_u_SQUOTE] = ACTIONS(2967), + [anon_sym_U_SQUOTE] = ACTIONS(2967), + [anon_sym_u8_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2967), + [anon_sym_L_DQUOTE] = ACTIONS(2967), + [anon_sym_u_DQUOTE] = ACTIONS(2967), + [anon_sym_U_DQUOTE] = ACTIONS(2967), + [anon_sym_u8_DQUOTE] = ACTIONS(2967), + [anon_sym_DQUOTE] = ACTIONS(2967), + [sym_true] = ACTIONS(2965), + [sym_false] = ACTIONS(2965), + [anon_sym_NULL] = ACTIONS(2965), + [anon_sym_nullptr] = ACTIONS(2965), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2965), + [anon_sym_decltype] = ACTIONS(2965), + [anon_sym_virtual] = ACTIONS(2965), + [anon_sym_alignas] = ACTIONS(2965), + [anon_sym_explicit] = ACTIONS(2965), + [anon_sym_typename] = ACTIONS(2965), + [anon_sym_template] = ACTIONS(2965), + [anon_sym_operator] = ACTIONS(2965), + [anon_sym_try] = ACTIONS(2965), + [anon_sym_delete] = ACTIONS(2965), + [anon_sym_throw] = ACTIONS(2965), + [anon_sym_namespace] = ACTIONS(2965), + [anon_sym_using] = ACTIONS(2965), + [anon_sym_static_assert] = ACTIONS(2965), + [anon_sym_concept] = ACTIONS(2965), + [anon_sym_co_return] = ACTIONS(2965), + [anon_sym_co_yield] = ACTIONS(2965), + [anon_sym_R_DQUOTE] = ACTIONS(2967), + [anon_sym_LR_DQUOTE] = ACTIONS(2967), + [anon_sym_uR_DQUOTE] = ACTIONS(2967), + [anon_sym_UR_DQUOTE] = ACTIONS(2967), + [anon_sym_u8R_DQUOTE] = ACTIONS(2967), + [anon_sym_co_await] = ACTIONS(2965), + [anon_sym_new] = ACTIONS(2965), + [anon_sym_requires] = ACTIONS(2965), + [sym_this] = ACTIONS(2965), }, - [503] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [566] = { + [sym_identifier] = ACTIONS(2957), + [aux_sym_preproc_include_token1] = ACTIONS(2957), + [aux_sym_preproc_def_token1] = ACTIONS(2957), + [aux_sym_preproc_if_token1] = ACTIONS(2957), + [aux_sym_preproc_if_token2] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2957), + [aux_sym_preproc_else_token1] = ACTIONS(2957), + [aux_sym_preproc_elif_token1] = ACTIONS(2957), + [sym_preproc_directive] = ACTIONS(2957), + [anon_sym_LPAREN2] = ACTIONS(2959), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2959), + [anon_sym___extension__] = ACTIONS(2957), + [anon_sym_typedef] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym___attribute__] = ACTIONS(2957), + [anon_sym_COLON_COLON] = ACTIONS(2959), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), + [anon_sym___declspec] = ACTIONS(2957), + [anon_sym___based] = ACTIONS(2957), + [anon_sym___cdecl] = ACTIONS(2957), + [anon_sym___clrcall] = ACTIONS(2957), + [anon_sym___stdcall] = ACTIONS(2957), + [anon_sym___fastcall] = ACTIONS(2957), + [anon_sym___thiscall] = ACTIONS(2957), + [anon_sym___vectorcall] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_signed] = ACTIONS(2957), + [anon_sym_unsigned] = ACTIONS(2957), + [anon_sym_long] = ACTIONS(2957), + [anon_sym_short] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_static] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_inline] = ACTIONS(2957), + [anon_sym___inline] = ACTIONS(2957), + [anon_sym___inline__] = ACTIONS(2957), + [anon_sym___forceinline] = ACTIONS(2957), + [anon_sym_thread_local] = ACTIONS(2957), + [anon_sym___thread] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_constexpr] = ACTIONS(2957), + [anon_sym_volatile] = ACTIONS(2957), + [anon_sym_restrict] = ACTIONS(2957), + [anon_sym___restrict__] = ACTIONS(2957), + [anon_sym__Atomic] = ACTIONS(2957), + [anon_sym__Noreturn] = ACTIONS(2957), + [anon_sym_noreturn] = ACTIONS(2957), + [anon_sym_mutable] = ACTIONS(2957), + [anon_sym_constinit] = ACTIONS(2957), + [anon_sym_consteval] = ACTIONS(2957), + [sym_primitive_type] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [anon_sym_class] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_union] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_switch] = ACTIONS(2957), + [anon_sym_case] = ACTIONS(2957), + [anon_sym_default] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_goto] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [anon_sym_compl] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_sizeof] = ACTIONS(2957), + [anon_sym___alignof__] = ACTIONS(2957), + [anon_sym___alignof] = ACTIONS(2957), + [anon_sym__alignof] = ACTIONS(2957), + [anon_sym_alignof] = ACTIONS(2957), + [anon_sym__Alignof] = ACTIONS(2957), + [anon_sym_offsetof] = ACTIONS(2957), + [anon_sym__Generic] = ACTIONS(2957), + [anon_sym_asm] = ACTIONS(2957), + [anon_sym___asm__] = ACTIONS(2957), + [sym_number_literal] = ACTIONS(2959), + [anon_sym_L_SQUOTE] = ACTIONS(2959), + [anon_sym_u_SQUOTE] = ACTIONS(2959), + [anon_sym_U_SQUOTE] = ACTIONS(2959), + [anon_sym_u8_SQUOTE] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2959), + [anon_sym_L_DQUOTE] = ACTIONS(2959), + [anon_sym_u_DQUOTE] = ACTIONS(2959), + [anon_sym_U_DQUOTE] = ACTIONS(2959), + [anon_sym_u8_DQUOTE] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [anon_sym_NULL] = ACTIONS(2957), + [anon_sym_nullptr] = ACTIONS(2957), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), - }, - [504] = { - [sym_identifier] = ACTIONS(3057), - [aux_sym_preproc_include_token1] = ACTIONS(3057), - [aux_sym_preproc_def_token1] = ACTIONS(3057), - [aux_sym_preproc_if_token1] = ACTIONS(3057), - [aux_sym_preproc_if_token2] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3057), - [aux_sym_preproc_else_token1] = ACTIONS(3057), - [aux_sym_preproc_elif_token1] = ACTIONS(3057), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3057), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3057), - [sym_preproc_directive] = ACTIONS(3057), - [anon_sym_LPAREN2] = ACTIONS(3059), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_SEMI] = ACTIONS(3059), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3057), - [anon_sym_extern] = ACTIONS(3057), - [anon_sym___attribute__] = ACTIONS(3057), - [anon_sym_COLON_COLON] = ACTIONS(3059), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3059), - [anon_sym___declspec] = ACTIONS(3057), - [anon_sym___based] = ACTIONS(3057), - [anon_sym___cdecl] = ACTIONS(3057), - [anon_sym___clrcall] = ACTIONS(3057), - [anon_sym___stdcall] = ACTIONS(3057), - [anon_sym___fastcall] = ACTIONS(3057), - [anon_sym___thiscall] = ACTIONS(3057), - [anon_sym___vectorcall] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_signed] = ACTIONS(3057), - [anon_sym_unsigned] = ACTIONS(3057), - [anon_sym_long] = ACTIONS(3057), - [anon_sym_short] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_register] = ACTIONS(3057), - [anon_sym_inline] = ACTIONS(3057), - [anon_sym___inline] = ACTIONS(3057), - [anon_sym___inline__] = ACTIONS(3057), - [anon_sym___forceinline] = ACTIONS(3057), - [anon_sym_thread_local] = ACTIONS(3057), - [anon_sym___thread] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_constexpr] = ACTIONS(3057), - [anon_sym_volatile] = ACTIONS(3057), - [anon_sym_restrict] = ACTIONS(3057), - [anon_sym___restrict__] = ACTIONS(3057), - [anon_sym__Atomic] = ACTIONS(3057), - [anon_sym__Noreturn] = ACTIONS(3057), - [anon_sym_noreturn] = ACTIONS(3057), - [anon_sym_mutable] = ACTIONS(3057), - [anon_sym_constinit] = ACTIONS(3057), - [anon_sym_consteval] = ACTIONS(3057), - [sym_primitive_type] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_class] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_else] = ACTIONS(3057), - [anon_sym_switch] = ACTIONS(3057), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3057), - [anon_sym_while] = ACTIONS(3057), - [anon_sym_do] = ACTIONS(3057), - [anon_sym_for] = ACTIONS(3057), - [anon_sym_return] = ACTIONS(3057), - [anon_sym_break] = ACTIONS(3057), - [anon_sym_continue] = ACTIONS(3057), - [anon_sym_goto] = ACTIONS(3057), - [anon_sym_not] = ACTIONS(3057), - [anon_sym_compl] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_sizeof] = ACTIONS(3057), - [anon_sym___alignof__] = ACTIONS(3057), - [anon_sym___alignof] = ACTIONS(3057), - [anon_sym__alignof] = ACTIONS(3057), - [anon_sym_alignof] = ACTIONS(3057), - [anon_sym__Alignof] = ACTIONS(3057), - [anon_sym_offsetof] = ACTIONS(3057), - [anon_sym__Generic] = ACTIONS(3057), - [anon_sym_asm] = ACTIONS(3057), - [anon_sym___asm__] = ACTIONS(3057), - [sym_number_literal] = ACTIONS(3059), - [anon_sym_L_SQUOTE] = ACTIONS(3059), - [anon_sym_u_SQUOTE] = ACTIONS(3059), - [anon_sym_U_SQUOTE] = ACTIONS(3059), - [anon_sym_u8_SQUOTE] = ACTIONS(3059), - [anon_sym_SQUOTE] = ACTIONS(3059), - [anon_sym_L_DQUOTE] = ACTIONS(3059), - [anon_sym_u_DQUOTE] = ACTIONS(3059), - [anon_sym_U_DQUOTE] = ACTIONS(3059), - [anon_sym_u8_DQUOTE] = ACTIONS(3059), - [anon_sym_DQUOTE] = ACTIONS(3059), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [anon_sym_NULL] = ACTIONS(3057), - [anon_sym_nullptr] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3057), - [anon_sym_decltype] = ACTIONS(3057), - [anon_sym_virtual] = ACTIONS(3057), - [anon_sym_alignas] = ACTIONS(3057), - [anon_sym_explicit] = ACTIONS(3057), - [anon_sym_typename] = ACTIONS(3057), - [anon_sym_template] = ACTIONS(3057), - [anon_sym_operator] = ACTIONS(3057), - [anon_sym_try] = ACTIONS(3057), - [anon_sym_delete] = ACTIONS(3057), - [anon_sym_throw] = ACTIONS(3057), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_using] = ACTIONS(3057), - [anon_sym_static_assert] = ACTIONS(3057), - [anon_sym_concept] = ACTIONS(3057), - [anon_sym_co_return] = ACTIONS(3057), - [anon_sym_co_yield] = ACTIONS(3057), - [anon_sym_R_DQUOTE] = ACTIONS(3059), - [anon_sym_LR_DQUOTE] = ACTIONS(3059), - [anon_sym_uR_DQUOTE] = ACTIONS(3059), - [anon_sym_UR_DQUOTE] = ACTIONS(3059), - [anon_sym_u8R_DQUOTE] = ACTIONS(3059), - [anon_sym_co_await] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(3057), - [sym_this] = ACTIONS(3057), + [sym_auto] = ACTIONS(2957), + [anon_sym_decltype] = ACTIONS(2957), + [anon_sym_virtual] = ACTIONS(2957), + [anon_sym_alignas] = ACTIONS(2957), + [anon_sym_explicit] = ACTIONS(2957), + [anon_sym_typename] = ACTIONS(2957), + [anon_sym_template] = ACTIONS(2957), + [anon_sym_operator] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_delete] = ACTIONS(2957), + [anon_sym_throw] = ACTIONS(2957), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_using] = ACTIONS(2957), + [anon_sym_static_assert] = ACTIONS(2957), + [anon_sym_concept] = ACTIONS(2957), + [anon_sym_co_return] = ACTIONS(2957), + [anon_sym_co_yield] = ACTIONS(2957), + [anon_sym_R_DQUOTE] = ACTIONS(2959), + [anon_sym_LR_DQUOTE] = ACTIONS(2959), + [anon_sym_uR_DQUOTE] = ACTIONS(2959), + [anon_sym_UR_DQUOTE] = ACTIONS(2959), + [anon_sym_u8R_DQUOTE] = ACTIONS(2959), + [anon_sym_co_await] = ACTIONS(2957), + [anon_sym_new] = ACTIONS(2957), + [anon_sym_requires] = ACTIONS(2957), + [sym_this] = ACTIONS(2957), }, - [505] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [567] = { + [sym_identifier] = ACTIONS(3184), + [aux_sym_preproc_include_token1] = ACTIONS(3184), + [aux_sym_preproc_def_token1] = ACTIONS(3184), + [aux_sym_preproc_if_token1] = ACTIONS(3184), + [aux_sym_preproc_if_token2] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3184), + [aux_sym_preproc_else_token1] = ACTIONS(3184), + [aux_sym_preproc_elif_token1] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym___extension__] = ACTIONS(3184), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym___attribute__] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3186), + [anon_sym___declspec] = ACTIONS(3184), + [anon_sym___based] = ACTIONS(3184), + [anon_sym___cdecl] = ACTIONS(3184), + [anon_sym___clrcall] = ACTIONS(3184), + [anon_sym___stdcall] = ACTIONS(3184), + [anon_sym___fastcall] = ACTIONS(3184), + [anon_sym___thiscall] = ACTIONS(3184), + [anon_sym___vectorcall] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_signed] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym___inline] = ACTIONS(3184), + [anon_sym___inline__] = ACTIONS(3184), + [anon_sym___forceinline] = ACTIONS(3184), + [anon_sym_thread_local] = ACTIONS(3184), + [anon_sym___thread] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym___restrict__] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym__Noreturn] = ACTIONS(3184), + [anon_sym_noreturn] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_constinit] = ACTIONS(3184), + [anon_sym_consteval] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_class] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3184), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_goto] = ACTIONS(3184), + [anon_sym_not] = ACTIONS(3184), + [anon_sym_compl] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_sizeof] = ACTIONS(3184), + [anon_sym___alignof__] = ACTIONS(3184), + [anon_sym___alignof] = ACTIONS(3184), + [anon_sym__alignof] = ACTIONS(3184), + [anon_sym_alignof] = ACTIONS(3184), + [anon_sym__Alignof] = ACTIONS(3184), + [anon_sym_offsetof] = ACTIONS(3184), + [anon_sym__Generic] = ACTIONS(3184), + [anon_sym_asm] = ACTIONS(3184), + [anon_sym___asm__] = ACTIONS(3184), + [sym_number_literal] = ACTIONS(3186), + [anon_sym_L_SQUOTE] = ACTIONS(3186), + [anon_sym_u_SQUOTE] = ACTIONS(3186), + [anon_sym_U_SQUOTE] = ACTIONS(3186), + [anon_sym_u8_SQUOTE] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_L_DQUOTE] = ACTIONS(3186), + [anon_sym_u_DQUOTE] = ACTIONS(3186), + [anon_sym_U_DQUOTE] = ACTIONS(3186), + [anon_sym_u8_DQUOTE] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [anon_sym_NULL] = ACTIONS(3184), + [anon_sym_nullptr] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3184), + [anon_sym_virtual] = ACTIONS(3184), + [anon_sym_alignas] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [anon_sym_template] = ACTIONS(3184), + [anon_sym_operator] = ACTIONS(3184), + [anon_sym_try] = ACTIONS(3184), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_throw] = ACTIONS(3184), + [anon_sym_namespace] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_static_assert] = ACTIONS(3184), + [anon_sym_concept] = ACTIONS(3184), + [anon_sym_co_return] = ACTIONS(3184), + [anon_sym_co_yield] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_requires] = ACTIONS(3184), + [sym_this] = ACTIONS(3184), }, - [506] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [568] = { + [sym_identifier] = ACTIONS(3176), + [aux_sym_preproc_include_token1] = ACTIONS(3176), + [aux_sym_preproc_def_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token2] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), + [aux_sym_preproc_else_token1] = ACTIONS(3176), + [aux_sym_preproc_elif_token1] = ACTIONS(3176), + [sym_preproc_directive] = ACTIONS(3176), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym___extension__] = ACTIONS(3176), + [anon_sym_typedef] = ACTIONS(3176), + [anon_sym_extern] = ACTIONS(3176), + [anon_sym___attribute__] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(3178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), + [anon_sym___declspec] = ACTIONS(3176), + [anon_sym___based] = ACTIONS(3176), + [anon_sym___cdecl] = ACTIONS(3176), + [anon_sym___clrcall] = ACTIONS(3176), + [anon_sym___stdcall] = ACTIONS(3176), + [anon_sym___fastcall] = ACTIONS(3176), + [anon_sym___thiscall] = ACTIONS(3176), + [anon_sym___vectorcall] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_signed] = ACTIONS(3176), + [anon_sym_unsigned] = ACTIONS(3176), + [anon_sym_long] = ACTIONS(3176), + [anon_sym_short] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_register] = ACTIONS(3176), + [anon_sym_inline] = ACTIONS(3176), + [anon_sym___inline] = ACTIONS(3176), + [anon_sym___inline__] = ACTIONS(3176), + [anon_sym___forceinline] = ACTIONS(3176), + [anon_sym_thread_local] = ACTIONS(3176), + [anon_sym___thread] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_constexpr] = ACTIONS(3176), + [anon_sym_volatile] = ACTIONS(3176), + [anon_sym_restrict] = ACTIONS(3176), + [anon_sym___restrict__] = ACTIONS(3176), + [anon_sym__Atomic] = ACTIONS(3176), + [anon_sym__Noreturn] = ACTIONS(3176), + [anon_sym_noreturn] = ACTIONS(3176), + [anon_sym_mutable] = ACTIONS(3176), + [anon_sym_constinit] = ACTIONS(3176), + [anon_sym_consteval] = ACTIONS(3176), + [sym_primitive_type] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_case] = ACTIONS(3176), + [anon_sym_default] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_goto] = ACTIONS(3176), + [anon_sym_not] = ACTIONS(3176), + [anon_sym_compl] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_sizeof] = ACTIONS(3176), + [anon_sym___alignof__] = ACTIONS(3176), + [anon_sym___alignof] = ACTIONS(3176), + [anon_sym__alignof] = ACTIONS(3176), + [anon_sym_alignof] = ACTIONS(3176), + [anon_sym__Alignof] = ACTIONS(3176), + [anon_sym_offsetof] = ACTIONS(3176), + [anon_sym__Generic] = ACTIONS(3176), + [anon_sym_asm] = ACTIONS(3176), + [anon_sym___asm__] = ACTIONS(3176), + [sym_number_literal] = ACTIONS(3178), + [anon_sym_L_SQUOTE] = ACTIONS(3178), + [anon_sym_u_SQUOTE] = ACTIONS(3178), + [anon_sym_U_SQUOTE] = ACTIONS(3178), + [anon_sym_u8_SQUOTE] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3178), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [anon_sym_NULL] = ACTIONS(3176), + [anon_sym_nullptr] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3176), + [anon_sym_virtual] = ACTIONS(3176), + [anon_sym_alignas] = ACTIONS(3176), + [anon_sym_explicit] = ACTIONS(3176), + [anon_sym_typename] = ACTIONS(3176), + [anon_sym_template] = ACTIONS(3176), + [anon_sym_operator] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_static_assert] = ACTIONS(3176), + [anon_sym_concept] = ACTIONS(3176), + [anon_sym_co_return] = ACTIONS(3176), + [anon_sym_co_yield] = ACTIONS(3176), + [anon_sym_R_DQUOTE] = ACTIONS(3178), + [anon_sym_LR_DQUOTE] = ACTIONS(3178), + [anon_sym_uR_DQUOTE] = ACTIONS(3178), + [anon_sym_UR_DQUOTE] = ACTIONS(3178), + [anon_sym_u8R_DQUOTE] = ACTIONS(3178), + [anon_sym_co_await] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_requires] = ACTIONS(3176), + [sym_this] = ACTIONS(3176), }, - [507] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [569] = { + [sym_identifier] = ACTIONS(3164), + [aux_sym_preproc_include_token1] = ACTIONS(3164), + [aux_sym_preproc_def_token1] = ACTIONS(3164), + [aux_sym_preproc_if_token1] = ACTIONS(3164), + [aux_sym_preproc_if_token2] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3164), + [aux_sym_preproc_else_token1] = ACTIONS(3164), + [aux_sym_preproc_elif_token1] = ACTIONS(3164), + [sym_preproc_directive] = ACTIONS(3164), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3164), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3164), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym___extension__] = ACTIONS(3164), + [anon_sym_typedef] = ACTIONS(3164), + [anon_sym_extern] = ACTIONS(3164), + [anon_sym___attribute__] = ACTIONS(3164), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3164), + [anon_sym___based] = ACTIONS(3164), + [anon_sym___cdecl] = ACTIONS(3164), + [anon_sym___clrcall] = ACTIONS(3164), + [anon_sym___stdcall] = ACTIONS(3164), + [anon_sym___fastcall] = ACTIONS(3164), + [anon_sym___thiscall] = ACTIONS(3164), + [anon_sym___vectorcall] = ACTIONS(3164), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_signed] = ACTIONS(3164), + [anon_sym_unsigned] = ACTIONS(3164), + [anon_sym_long] = ACTIONS(3164), + [anon_sym_short] = ACTIONS(3164), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_static] = ACTIONS(3164), + [anon_sym_register] = ACTIONS(3164), + [anon_sym_inline] = ACTIONS(3164), + [anon_sym___inline] = ACTIONS(3164), + [anon_sym___inline__] = ACTIONS(3164), + [anon_sym___forceinline] = ACTIONS(3164), + [anon_sym_thread_local] = ACTIONS(3164), + [anon_sym___thread] = ACTIONS(3164), + [anon_sym_const] = ACTIONS(3164), + [anon_sym_constexpr] = ACTIONS(3164), + [anon_sym_volatile] = ACTIONS(3164), + [anon_sym_restrict] = ACTIONS(3164), + [anon_sym___restrict__] = ACTIONS(3164), + [anon_sym__Atomic] = ACTIONS(3164), + [anon_sym__Noreturn] = ACTIONS(3164), + [anon_sym_noreturn] = ACTIONS(3164), + [anon_sym_mutable] = ACTIONS(3164), + [anon_sym_constinit] = ACTIONS(3164), + [anon_sym_consteval] = ACTIONS(3164), + [sym_primitive_type] = ACTIONS(3164), + [anon_sym_enum] = ACTIONS(3164), + [anon_sym_class] = ACTIONS(3164), + [anon_sym_struct] = ACTIONS(3164), + [anon_sym_union] = ACTIONS(3164), + [anon_sym_if] = ACTIONS(3164), + [anon_sym_switch] = ACTIONS(3164), + [anon_sym_case] = ACTIONS(3164), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_while] = ACTIONS(3164), + [anon_sym_do] = ACTIONS(3164), + [anon_sym_for] = ACTIONS(3164), + [anon_sym_return] = ACTIONS(3164), + [anon_sym_break] = ACTIONS(3164), + [anon_sym_continue] = ACTIONS(3164), + [anon_sym_goto] = ACTIONS(3164), + [anon_sym_not] = ACTIONS(3164), + [anon_sym_compl] = ACTIONS(3164), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3164), + [anon_sym___alignof] = ACTIONS(3164), + [anon_sym__alignof] = ACTIONS(3164), + [anon_sym_alignof] = ACTIONS(3164), + [anon_sym__Alignof] = ACTIONS(3164), + [anon_sym_offsetof] = ACTIONS(3164), + [anon_sym__Generic] = ACTIONS(3164), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3166), + [anon_sym_u_SQUOTE] = ACTIONS(3166), + [anon_sym_U_SQUOTE] = ACTIONS(3166), + [anon_sym_u8_SQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_L_DQUOTE] = ACTIONS(3166), + [anon_sym_u_DQUOTE] = ACTIONS(3166), + [anon_sym_U_DQUOTE] = ACTIONS(3166), + [anon_sym_u8_DQUOTE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [sym_true] = ACTIONS(3164), + [sym_false] = ACTIONS(3164), + [anon_sym_NULL] = ACTIONS(3164), + [anon_sym_nullptr] = ACTIONS(3164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3164), + [anon_sym_decltype] = ACTIONS(3164), + [anon_sym_virtual] = ACTIONS(3164), + [anon_sym_alignas] = ACTIONS(3164), + [anon_sym_explicit] = ACTIONS(3164), + [anon_sym_typename] = ACTIONS(3164), + [anon_sym_template] = ACTIONS(3164), + [anon_sym_operator] = ACTIONS(3164), + [anon_sym_try] = ACTIONS(3164), + [anon_sym_delete] = ACTIONS(3164), + [anon_sym_throw] = ACTIONS(3164), + [anon_sym_namespace] = ACTIONS(3164), + [anon_sym_using] = ACTIONS(3164), + [anon_sym_static_assert] = ACTIONS(3164), + [anon_sym_concept] = ACTIONS(3164), + [anon_sym_co_return] = ACTIONS(3164), + [anon_sym_co_yield] = ACTIONS(3164), + [anon_sym_R_DQUOTE] = ACTIONS(3166), + [anon_sym_LR_DQUOTE] = ACTIONS(3166), + [anon_sym_uR_DQUOTE] = ACTIONS(3166), + [anon_sym_UR_DQUOTE] = ACTIONS(3166), + [anon_sym_u8R_DQUOTE] = ACTIONS(3166), + [anon_sym_co_await] = ACTIONS(3164), + [anon_sym_new] = ACTIONS(3164), + [anon_sym_requires] = ACTIONS(3164), + [sym_this] = ACTIONS(3164), }, - [508] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [570] = { + [sym_identifier] = ACTIONS(3160), + [aux_sym_preproc_include_token1] = ACTIONS(3160), + [aux_sym_preproc_def_token1] = ACTIONS(3160), + [aux_sym_preproc_if_token1] = ACTIONS(3160), + [aux_sym_preproc_if_token2] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), + [aux_sym_preproc_else_token1] = ACTIONS(3160), + [aux_sym_preproc_elif_token1] = ACTIONS(3160), + [sym_preproc_directive] = ACTIONS(3160), + [anon_sym_LPAREN2] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym___extension__] = ACTIONS(3160), + [anon_sym_typedef] = ACTIONS(3160), + [anon_sym_extern] = ACTIONS(3160), + [anon_sym___attribute__] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), + [anon_sym___declspec] = ACTIONS(3160), + [anon_sym___based] = ACTIONS(3160), + [anon_sym___cdecl] = ACTIONS(3160), + [anon_sym___clrcall] = ACTIONS(3160), + [anon_sym___stdcall] = ACTIONS(3160), + [anon_sym___fastcall] = ACTIONS(3160), + [anon_sym___thiscall] = ACTIONS(3160), + [anon_sym___vectorcall] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_signed] = ACTIONS(3160), + [anon_sym_unsigned] = ACTIONS(3160), + [anon_sym_long] = ACTIONS(3160), + [anon_sym_short] = ACTIONS(3160), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_static] = ACTIONS(3160), + [anon_sym_register] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym___inline] = ACTIONS(3160), + [anon_sym___inline__] = ACTIONS(3160), + [anon_sym___forceinline] = ACTIONS(3160), + [anon_sym_thread_local] = ACTIONS(3160), + [anon_sym___thread] = ACTIONS(3160), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_constexpr] = ACTIONS(3160), + [anon_sym_volatile] = ACTIONS(3160), + [anon_sym_restrict] = ACTIONS(3160), + [anon_sym___restrict__] = ACTIONS(3160), + [anon_sym__Atomic] = ACTIONS(3160), + [anon_sym__Noreturn] = ACTIONS(3160), + [anon_sym_noreturn] = ACTIONS(3160), + [anon_sym_mutable] = ACTIONS(3160), + [anon_sym_constinit] = ACTIONS(3160), + [anon_sym_consteval] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), + [anon_sym_class] = ACTIONS(3160), + [anon_sym_struct] = ACTIONS(3160), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_switch] = ACTIONS(3160), + [anon_sym_case] = ACTIONS(3160), + [anon_sym_default] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_do] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_goto] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3160), + [anon_sym_compl] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3160), + [anon_sym___alignof__] = ACTIONS(3160), + [anon_sym___alignof] = ACTIONS(3160), + [anon_sym__alignof] = ACTIONS(3160), + [anon_sym_alignof] = ACTIONS(3160), + [anon_sym__Alignof] = ACTIONS(3160), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3160), + [anon_sym_asm] = ACTIONS(3160), + [anon_sym___asm__] = ACTIONS(3160), + [sym_number_literal] = ACTIONS(3162), + [anon_sym_L_SQUOTE] = ACTIONS(3162), + [anon_sym_u_SQUOTE] = ACTIONS(3162), + [anon_sym_U_SQUOTE] = ACTIONS(3162), + [anon_sym_u8_SQUOTE] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3162), + [anon_sym_L_DQUOTE] = ACTIONS(3162), + [anon_sym_u_DQUOTE] = ACTIONS(3162), + [anon_sym_U_DQUOTE] = ACTIONS(3162), + [anon_sym_u8_DQUOTE] = ACTIONS(3162), + [anon_sym_DQUOTE] = ACTIONS(3162), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [anon_sym_NULL] = ACTIONS(3160), + [anon_sym_nullptr] = ACTIONS(3160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3160), + [anon_sym_decltype] = ACTIONS(3160), + [anon_sym_virtual] = ACTIONS(3160), + [anon_sym_alignas] = ACTIONS(3160), + [anon_sym_explicit] = ACTIONS(3160), + [anon_sym_typename] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_delete] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_namespace] = ACTIONS(3160), + [anon_sym_using] = ACTIONS(3160), + [anon_sym_static_assert] = ACTIONS(3160), + [anon_sym_concept] = ACTIONS(3160), + [anon_sym_co_return] = ACTIONS(3160), + [anon_sym_co_yield] = ACTIONS(3160), + [anon_sym_R_DQUOTE] = ACTIONS(3162), + [anon_sym_LR_DQUOTE] = ACTIONS(3162), + [anon_sym_uR_DQUOTE] = ACTIONS(3162), + [anon_sym_UR_DQUOTE] = ACTIONS(3162), + [anon_sym_u8R_DQUOTE] = ACTIONS(3162), + [anon_sym_co_await] = ACTIONS(3160), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_requires] = ACTIONS(3160), + [sym_this] = ACTIONS(3160), }, - [509] = { - [sym_identifier] = ACTIONS(3061), - [aux_sym_preproc_include_token1] = ACTIONS(3061), - [aux_sym_preproc_def_token1] = ACTIONS(3061), - [aux_sym_preproc_if_token1] = ACTIONS(3061), - [aux_sym_preproc_if_token2] = ACTIONS(3061), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3061), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3061), - [aux_sym_preproc_else_token1] = ACTIONS(3061), - [aux_sym_preproc_elif_token1] = ACTIONS(3061), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3061), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3061), - [sym_preproc_directive] = ACTIONS(3061), - [anon_sym_LPAREN2] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3063), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3063), - [anon_sym_AMP_AMP] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_SEMI] = ACTIONS(3063), - [anon_sym___extension__] = ACTIONS(3061), - [anon_sym_typedef] = ACTIONS(3061), - [anon_sym_extern] = ACTIONS(3061), - [anon_sym___attribute__] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3063), - [anon_sym___declspec] = ACTIONS(3061), - [anon_sym___based] = ACTIONS(3061), - [anon_sym___cdecl] = ACTIONS(3061), - [anon_sym___clrcall] = ACTIONS(3061), - [anon_sym___stdcall] = ACTIONS(3061), - [anon_sym___fastcall] = ACTIONS(3061), - [anon_sym___thiscall] = ACTIONS(3061), - [anon_sym___vectorcall] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3063), - [anon_sym_signed] = ACTIONS(3061), - [anon_sym_unsigned] = ACTIONS(3061), - [anon_sym_long] = ACTIONS(3061), - [anon_sym_short] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3061), - [anon_sym_static] = ACTIONS(3061), - [anon_sym_register] = ACTIONS(3061), - [anon_sym_inline] = ACTIONS(3061), - [anon_sym___inline] = ACTIONS(3061), - [anon_sym___inline__] = ACTIONS(3061), - [anon_sym___forceinline] = ACTIONS(3061), - [anon_sym_thread_local] = ACTIONS(3061), - [anon_sym___thread] = ACTIONS(3061), - [anon_sym_const] = ACTIONS(3061), - [anon_sym_constexpr] = ACTIONS(3061), - [anon_sym_volatile] = ACTIONS(3061), - [anon_sym_restrict] = ACTIONS(3061), - [anon_sym___restrict__] = ACTIONS(3061), - [anon_sym__Atomic] = ACTIONS(3061), - [anon_sym__Noreturn] = ACTIONS(3061), - [anon_sym_noreturn] = ACTIONS(3061), - [anon_sym_mutable] = ACTIONS(3061), - [anon_sym_constinit] = ACTIONS(3061), - [anon_sym_consteval] = ACTIONS(3061), - [sym_primitive_type] = ACTIONS(3061), - [anon_sym_enum] = ACTIONS(3061), - [anon_sym_class] = ACTIONS(3061), - [anon_sym_struct] = ACTIONS(3061), - [anon_sym_union] = ACTIONS(3061), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_else] = ACTIONS(3061), - [anon_sym_switch] = ACTIONS(3061), - [anon_sym_case] = ACTIONS(3061), - [anon_sym_default] = ACTIONS(3061), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_do] = ACTIONS(3061), - [anon_sym_for] = ACTIONS(3061), - [anon_sym_return] = ACTIONS(3061), - [anon_sym_break] = ACTIONS(3061), - [anon_sym_continue] = ACTIONS(3061), - [anon_sym_goto] = ACTIONS(3061), - [anon_sym_not] = ACTIONS(3061), - [anon_sym_compl] = ACTIONS(3061), - [anon_sym_DASH_DASH] = ACTIONS(3063), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_sizeof] = ACTIONS(3061), - [anon_sym___alignof__] = ACTIONS(3061), - [anon_sym___alignof] = ACTIONS(3061), - [anon_sym__alignof] = ACTIONS(3061), - [anon_sym_alignof] = ACTIONS(3061), - [anon_sym__Alignof] = ACTIONS(3061), - [anon_sym_offsetof] = ACTIONS(3061), - [anon_sym__Generic] = ACTIONS(3061), - [anon_sym_asm] = ACTIONS(3061), - [anon_sym___asm__] = ACTIONS(3061), - [sym_number_literal] = ACTIONS(3063), - [anon_sym_L_SQUOTE] = ACTIONS(3063), - [anon_sym_u_SQUOTE] = ACTIONS(3063), - [anon_sym_U_SQUOTE] = ACTIONS(3063), - [anon_sym_u8_SQUOTE] = ACTIONS(3063), - [anon_sym_SQUOTE] = ACTIONS(3063), - [anon_sym_L_DQUOTE] = ACTIONS(3063), - [anon_sym_u_DQUOTE] = ACTIONS(3063), - [anon_sym_U_DQUOTE] = ACTIONS(3063), - [anon_sym_u8_DQUOTE] = ACTIONS(3063), - [anon_sym_DQUOTE] = ACTIONS(3063), - [sym_true] = ACTIONS(3061), - [sym_false] = ACTIONS(3061), - [anon_sym_NULL] = ACTIONS(3061), - [anon_sym_nullptr] = ACTIONS(3061), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3061), - [anon_sym_decltype] = ACTIONS(3061), - [anon_sym_virtual] = ACTIONS(3061), - [anon_sym_alignas] = ACTIONS(3061), - [anon_sym_explicit] = ACTIONS(3061), - [anon_sym_typename] = ACTIONS(3061), - [anon_sym_template] = ACTIONS(3061), - [anon_sym_operator] = ACTIONS(3061), - [anon_sym_try] = ACTIONS(3061), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_throw] = ACTIONS(3061), - [anon_sym_namespace] = ACTIONS(3061), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_static_assert] = ACTIONS(3061), - [anon_sym_concept] = ACTIONS(3061), - [anon_sym_co_return] = ACTIONS(3061), - [anon_sym_co_yield] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(3063), - [anon_sym_LR_DQUOTE] = ACTIONS(3063), - [anon_sym_uR_DQUOTE] = ACTIONS(3063), - [anon_sym_UR_DQUOTE] = ACTIONS(3063), - [anon_sym_u8R_DQUOTE] = ACTIONS(3063), - [anon_sym_co_await] = ACTIONS(3061), - [anon_sym_new] = ACTIONS(3061), - [anon_sym_requires] = ACTIONS(3061), - [sym_this] = ACTIONS(3061), + [571] = { + [sym_else_clause] = STATE(746), + [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_extern] = 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___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_mutable] = ACTIONS(2735), + [anon_sym_constinit] = ACTIONS(2735), + [anon_sym_consteval] = 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(3411), + [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_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), + [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_virtual] = ACTIONS(2735), + [anon_sym_alignas] = 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_using] = 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), }, - [510] = { - [sym_identifier] = ACTIONS(3065), - [aux_sym_preproc_include_token1] = ACTIONS(3065), - [aux_sym_preproc_def_token1] = ACTIONS(3065), - [aux_sym_preproc_if_token1] = ACTIONS(3065), - [aux_sym_preproc_if_token2] = ACTIONS(3065), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3065), - [aux_sym_preproc_else_token1] = ACTIONS(3065), - [aux_sym_preproc_elif_token1] = ACTIONS(3065), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3065), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3065), - [sym_preproc_directive] = ACTIONS(3065), - [anon_sym_LPAREN2] = ACTIONS(3067), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP_AMP] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym___extension__] = ACTIONS(3065), - [anon_sym_typedef] = ACTIONS(3065), - [anon_sym_extern] = ACTIONS(3065), - [anon_sym___attribute__] = ACTIONS(3065), - [anon_sym_COLON_COLON] = ACTIONS(3067), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3067), - [anon_sym___declspec] = ACTIONS(3065), - [anon_sym___based] = ACTIONS(3065), - [anon_sym___cdecl] = ACTIONS(3065), - [anon_sym___clrcall] = ACTIONS(3065), - [anon_sym___stdcall] = ACTIONS(3065), - [anon_sym___fastcall] = ACTIONS(3065), - [anon_sym___thiscall] = ACTIONS(3065), - [anon_sym___vectorcall] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_signed] = ACTIONS(3065), - [anon_sym_unsigned] = ACTIONS(3065), - [anon_sym_long] = ACTIONS(3065), - [anon_sym_short] = ACTIONS(3065), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(3065), - [anon_sym_register] = ACTIONS(3065), - [anon_sym_inline] = ACTIONS(3065), - [anon_sym___inline] = ACTIONS(3065), - [anon_sym___inline__] = ACTIONS(3065), - [anon_sym___forceinline] = ACTIONS(3065), - [anon_sym_thread_local] = ACTIONS(3065), - [anon_sym___thread] = ACTIONS(3065), - [anon_sym_const] = ACTIONS(3065), - [anon_sym_constexpr] = ACTIONS(3065), - [anon_sym_volatile] = ACTIONS(3065), - [anon_sym_restrict] = ACTIONS(3065), - [anon_sym___restrict__] = ACTIONS(3065), - [anon_sym__Atomic] = ACTIONS(3065), - [anon_sym__Noreturn] = ACTIONS(3065), - [anon_sym_noreturn] = ACTIONS(3065), - [anon_sym_mutable] = ACTIONS(3065), - [anon_sym_constinit] = ACTIONS(3065), - [anon_sym_consteval] = ACTIONS(3065), - [sym_primitive_type] = ACTIONS(3065), - [anon_sym_enum] = ACTIONS(3065), - [anon_sym_class] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(3065), - [anon_sym_union] = ACTIONS(3065), - [anon_sym_if] = ACTIONS(3065), - [anon_sym_else] = ACTIONS(3065), - [anon_sym_switch] = ACTIONS(3065), - [anon_sym_case] = ACTIONS(3065), - [anon_sym_default] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3065), - [anon_sym_do] = ACTIONS(3065), - [anon_sym_for] = ACTIONS(3065), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_break] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(3065), - [anon_sym_goto] = ACTIONS(3065), - [anon_sym_not] = ACTIONS(3065), - [anon_sym_compl] = ACTIONS(3065), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_sizeof] = ACTIONS(3065), - [anon_sym___alignof__] = ACTIONS(3065), - [anon_sym___alignof] = ACTIONS(3065), - [anon_sym__alignof] = ACTIONS(3065), - [anon_sym_alignof] = ACTIONS(3065), - [anon_sym__Alignof] = ACTIONS(3065), - [anon_sym_offsetof] = ACTIONS(3065), - [anon_sym__Generic] = ACTIONS(3065), - [anon_sym_asm] = ACTIONS(3065), - [anon_sym___asm__] = ACTIONS(3065), - [sym_number_literal] = ACTIONS(3067), - [anon_sym_L_SQUOTE] = ACTIONS(3067), - [anon_sym_u_SQUOTE] = ACTIONS(3067), - [anon_sym_U_SQUOTE] = ACTIONS(3067), - [anon_sym_u8_SQUOTE] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3067), - [anon_sym_L_DQUOTE] = ACTIONS(3067), - [anon_sym_u_DQUOTE] = ACTIONS(3067), - [anon_sym_U_DQUOTE] = ACTIONS(3067), - [anon_sym_u8_DQUOTE] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(3067), - [sym_true] = ACTIONS(3065), - [sym_false] = ACTIONS(3065), - [anon_sym_NULL] = ACTIONS(3065), - [anon_sym_nullptr] = ACTIONS(3065), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3065), - [anon_sym_decltype] = ACTIONS(3065), - [anon_sym_virtual] = ACTIONS(3065), - [anon_sym_alignas] = ACTIONS(3065), - [anon_sym_explicit] = ACTIONS(3065), - [anon_sym_typename] = ACTIONS(3065), - [anon_sym_template] = ACTIONS(3065), - [anon_sym_operator] = ACTIONS(3065), - [anon_sym_try] = ACTIONS(3065), - [anon_sym_delete] = ACTIONS(3065), - [anon_sym_throw] = ACTIONS(3065), - [anon_sym_namespace] = ACTIONS(3065), - [anon_sym_using] = ACTIONS(3065), - [anon_sym_static_assert] = ACTIONS(3065), - [anon_sym_concept] = ACTIONS(3065), - [anon_sym_co_return] = ACTIONS(3065), - [anon_sym_co_yield] = ACTIONS(3065), - [anon_sym_R_DQUOTE] = ACTIONS(3067), - [anon_sym_LR_DQUOTE] = ACTIONS(3067), - [anon_sym_uR_DQUOTE] = ACTIONS(3067), - [anon_sym_UR_DQUOTE] = ACTIONS(3067), - [anon_sym_u8R_DQUOTE] = ACTIONS(3067), - [anon_sym_co_await] = ACTIONS(3065), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(3065), - [sym_this] = ACTIONS(3065), + [572] = { + [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), + [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_extern] = ACTIONS(3075), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3075), + [anon_sym_constinit] = ACTIONS(3075), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3075), + [anon_sym_alignas] = 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_using] = 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), }, - [511] = { - [sym__expression] = STATE(5105), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9699), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym___extension__] = ACTIONS(2818), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym___attribute__] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), - [anon_sym___declspec] = ACTIONS(2818), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym___inline] = ACTIONS(2818), - [anon_sym___inline__] = ACTIONS(2818), - [anon_sym___forceinline] = ACTIONS(2818), - [anon_sym_thread_local] = ACTIONS(2818), - [anon_sym___thread] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_restrict] = ACTIONS(2818), - [anon_sym___restrict__] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [anon_sym__Noreturn] = ACTIONS(2818), - [anon_sym_noreturn] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [anon_sym_constinit] = ACTIONS(2818), - [anon_sym_consteval] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2825), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [573] = { + [sym_identifier] = ACTIONS(2961), + [aux_sym_preproc_include_token1] = ACTIONS(2961), + [aux_sym_preproc_def_token1] = ACTIONS(2961), + [aux_sym_preproc_if_token1] = ACTIONS(2961), + [aux_sym_preproc_if_token2] = ACTIONS(2961), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2961), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2961), + [aux_sym_preproc_else_token1] = ACTIONS(2961), + [aux_sym_preproc_elif_token1] = ACTIONS(2961), + [sym_preproc_directive] = ACTIONS(2961), + [anon_sym_LPAREN2] = ACTIONS(2963), + [anon_sym_BANG] = ACTIONS(2963), + [anon_sym_TILDE] = ACTIONS(2963), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_AMP_AMP] = ACTIONS(2963), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2963), + [anon_sym___extension__] = ACTIONS(2961), + [anon_sym_typedef] = ACTIONS(2961), + [anon_sym_extern] = ACTIONS(2961), + [anon_sym___attribute__] = ACTIONS(2961), + [anon_sym_COLON_COLON] = ACTIONS(2963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), + [anon_sym___declspec] = ACTIONS(2961), + [anon_sym___based] = ACTIONS(2961), + [anon_sym___cdecl] = ACTIONS(2961), + [anon_sym___clrcall] = ACTIONS(2961), + [anon_sym___stdcall] = ACTIONS(2961), + [anon_sym___fastcall] = ACTIONS(2961), + [anon_sym___thiscall] = ACTIONS(2961), + [anon_sym___vectorcall] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2963), + [anon_sym_signed] = ACTIONS(2961), + [anon_sym_unsigned] = ACTIONS(2961), + [anon_sym_long] = ACTIONS(2961), + [anon_sym_short] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_static] = ACTIONS(2961), + [anon_sym_register] = ACTIONS(2961), + [anon_sym_inline] = ACTIONS(2961), + [anon_sym___inline] = ACTIONS(2961), + [anon_sym___inline__] = ACTIONS(2961), + [anon_sym___forceinline] = ACTIONS(2961), + [anon_sym_thread_local] = ACTIONS(2961), + [anon_sym___thread] = ACTIONS(2961), + [anon_sym_const] = ACTIONS(2961), + [anon_sym_constexpr] = ACTIONS(2961), + [anon_sym_volatile] = ACTIONS(2961), + [anon_sym_restrict] = ACTIONS(2961), + [anon_sym___restrict__] = ACTIONS(2961), + [anon_sym__Atomic] = ACTIONS(2961), + [anon_sym__Noreturn] = ACTIONS(2961), + [anon_sym_noreturn] = ACTIONS(2961), + [anon_sym_mutable] = ACTIONS(2961), + [anon_sym_constinit] = ACTIONS(2961), + [anon_sym_consteval] = ACTIONS(2961), + [sym_primitive_type] = ACTIONS(2961), + [anon_sym_enum] = ACTIONS(2961), + [anon_sym_class] = ACTIONS(2961), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_union] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_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), + [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(2818), - [anon_sym_decltype] = ACTIONS(2828), - [anon_sym_virtual] = ACTIONS(2818), - [anon_sym_alignas] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_template] = ACTIONS(2831), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2961), + [anon_sym_decltype] = ACTIONS(2961), + [anon_sym_virtual] = ACTIONS(2961), + [anon_sym_alignas] = ACTIONS(2961), + [anon_sym_explicit] = ACTIONS(2961), + [anon_sym_typename] = ACTIONS(2961), + [anon_sym_template] = ACTIONS(2961), + [anon_sym_operator] = ACTIONS(2961), + [anon_sym_try] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2961), + [anon_sym_throw] = ACTIONS(2961), + [anon_sym_namespace] = ACTIONS(2961), + [anon_sym_using] = ACTIONS(2961), + [anon_sym_static_assert] = ACTIONS(2961), + [anon_sym_concept] = ACTIONS(2961), + [anon_sym_co_return] = ACTIONS(2961), + [anon_sym_co_yield] = ACTIONS(2961), + [anon_sym_R_DQUOTE] = ACTIONS(2963), + [anon_sym_LR_DQUOTE] = ACTIONS(2963), + [anon_sym_uR_DQUOTE] = ACTIONS(2963), + [anon_sym_UR_DQUOTE] = ACTIONS(2963), + [anon_sym_u8R_DQUOTE] = ACTIONS(2963), + [anon_sym_co_await] = ACTIONS(2961), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2961), + [sym_this] = ACTIONS(2961), }, - [512] = { - [sym__expression] = STATE(5067), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9695), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(3071), - [anon_sym___extension__] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym___attribute__] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2797), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2800), - [anon_sym___declspec] = 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(1376), - [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_mutable] = ACTIONS(2795), - [anon_sym_constinit] = ACTIONS(2795), - [anon_sym_consteval] = ACTIONS(2795), - [sym_primitive_type] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_union] = ACTIONS(2795), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2795), - [anon_sym_decltype] = ACTIONS(2805), - [anon_sym_virtual] = ACTIONS(2795), - [anon_sym_alignas] = ACTIONS(2795), - [anon_sym_typename] = ACTIONS(2795), - [anon_sym_template] = ACTIONS(2808), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [574] = { + [sym_identifier] = ACTIONS(2134), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), + [sym_preproc_directive] = ACTIONS(2134), + [anon_sym_LPAREN2] = ACTIONS(2132), + [anon_sym_BANG] = ACTIONS(2132), + [anon_sym_TILDE] = ACTIONS(2132), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym___extension__] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym___attribute__] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2134), + [anon_sym___based] = ACTIONS(2134), + [anon_sym___cdecl] = ACTIONS(2134), + [anon_sym___clrcall] = ACTIONS(2134), + [anon_sym___stdcall] = ACTIONS(2134), + [anon_sym___fastcall] = ACTIONS(2134), + [anon_sym___thiscall] = ACTIONS(2134), + [anon_sym___vectorcall] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_RBRACE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2134), + [anon_sym_unsigned] = ACTIONS(2134), + [anon_sym_long] = ACTIONS(2134), + [anon_sym_short] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_register] = ACTIONS(2134), + [anon_sym_inline] = ACTIONS(2134), + [anon_sym___inline] = ACTIONS(2134), + [anon_sym___inline__] = ACTIONS(2134), + [anon_sym___forceinline] = ACTIONS(2134), + [anon_sym_thread_local] = ACTIONS(2134), + [anon_sym___thread] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_constexpr] = ACTIONS(2134), + [anon_sym_volatile] = ACTIONS(2134), + [anon_sym_restrict] = ACTIONS(2134), + [anon_sym___restrict__] = ACTIONS(2134), + [anon_sym__Atomic] = ACTIONS(2134), + [anon_sym__Noreturn] = ACTIONS(2134), + [anon_sym_noreturn] = ACTIONS(2134), + [anon_sym_mutable] = ACTIONS(2134), + [anon_sym_constinit] = ACTIONS(2134), + [anon_sym_consteval] = ACTIONS(2134), + [sym_primitive_type] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_struct] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_else] = ACTIONS(2134), + [anon_sym_switch] = ACTIONS(2134), + [anon_sym_case] = ACTIONS(2134), + [anon_sym_default] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2134), + [anon_sym_not] = ACTIONS(2134), + [anon_sym_compl] = ACTIONS(2134), + [anon_sym_DASH_DASH] = ACTIONS(2132), + [anon_sym_PLUS_PLUS] = ACTIONS(2132), + [anon_sym_sizeof] = ACTIONS(2134), + [anon_sym___alignof__] = ACTIONS(2134), + [anon_sym___alignof] = ACTIONS(2134), + [anon_sym__alignof] = ACTIONS(2134), + [anon_sym_alignof] = ACTIONS(2134), + [anon_sym__Alignof] = ACTIONS(2134), + [anon_sym_offsetof] = ACTIONS(2134), + [anon_sym__Generic] = ACTIONS(2134), + [anon_sym_asm] = ACTIONS(2134), + [anon_sym___asm__] = ACTIONS(2134), + [sym_number_literal] = ACTIONS(2132), + [anon_sym_L_SQUOTE] = ACTIONS(2132), + [anon_sym_u_SQUOTE] = ACTIONS(2132), + [anon_sym_U_SQUOTE] = ACTIONS(2132), + [anon_sym_u8_SQUOTE] = ACTIONS(2132), + [anon_sym_SQUOTE] = ACTIONS(2132), + [anon_sym_L_DQUOTE] = ACTIONS(2132), + [anon_sym_u_DQUOTE] = ACTIONS(2132), + [anon_sym_U_DQUOTE] = ACTIONS(2132), + [anon_sym_u8_DQUOTE] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(2132), + [sym_true] = ACTIONS(2134), + [sym_false] = ACTIONS(2134), + [anon_sym_NULL] = ACTIONS(2134), + [anon_sym_nullptr] = ACTIONS(2134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2134), + [anon_sym_decltype] = ACTIONS(2134), + [anon_sym_virtual] = ACTIONS(2134), + [anon_sym_alignas] = ACTIONS(2134), + [anon_sym_explicit] = ACTIONS(2134), + [anon_sym_typename] = ACTIONS(2134), + [anon_sym_template] = ACTIONS(2134), + [anon_sym_operator] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_delete] = ACTIONS(2134), + [anon_sym_throw] = ACTIONS(2134), + [anon_sym_namespace] = ACTIONS(2134), + [anon_sym_using] = ACTIONS(2134), + [anon_sym_static_assert] = ACTIONS(2134), + [anon_sym_concept] = ACTIONS(2134), + [anon_sym_co_return] = ACTIONS(2134), + [anon_sym_co_yield] = ACTIONS(2134), + [anon_sym_catch] = ACTIONS(2134), + [anon_sym_R_DQUOTE] = ACTIONS(2132), + [anon_sym_LR_DQUOTE] = ACTIONS(2132), + [anon_sym_uR_DQUOTE] = ACTIONS(2132), + [anon_sym_UR_DQUOTE] = ACTIONS(2132), + [anon_sym_u8R_DQUOTE] = ACTIONS(2132), + [anon_sym_co_await] = ACTIONS(2134), + [anon_sym_new] = ACTIONS(2134), + [anon_sym_requires] = ACTIONS(2134), + [sym_this] = ACTIONS(2134), }, - [513] = { - [sym_identifier] = ACTIONS(3073), - [aux_sym_preproc_include_token1] = ACTIONS(3073), - [aux_sym_preproc_def_token1] = ACTIONS(3073), - [aux_sym_preproc_if_token1] = ACTIONS(3073), - [aux_sym_preproc_if_token2] = ACTIONS(3073), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3073), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3073), - [aux_sym_preproc_else_token1] = ACTIONS(3073), - [aux_sym_preproc_elif_token1] = ACTIONS(3073), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3073), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3073), - [sym_preproc_directive] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3075), - [anon_sym_TILDE] = ACTIONS(3075), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_AMP_AMP] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_SEMI] = ACTIONS(3075), - [anon_sym___extension__] = ACTIONS(3073), - [anon_sym_typedef] = ACTIONS(3073), - [anon_sym_extern] = ACTIONS(3073), - [anon_sym___attribute__] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3075), - [anon_sym___declspec] = ACTIONS(3073), - [anon_sym___based] = ACTIONS(3073), - [anon_sym___cdecl] = ACTIONS(3073), - [anon_sym___clrcall] = ACTIONS(3073), - [anon_sym___stdcall] = ACTIONS(3073), - [anon_sym___fastcall] = ACTIONS(3073), - [anon_sym___thiscall] = ACTIONS(3073), - [anon_sym___vectorcall] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_signed] = ACTIONS(3073), - [anon_sym_unsigned] = ACTIONS(3073), - [anon_sym_long] = ACTIONS(3073), - [anon_sym_short] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_register] = ACTIONS(3073), - [anon_sym_inline] = ACTIONS(3073), - [anon_sym___inline] = ACTIONS(3073), - [anon_sym___inline__] = ACTIONS(3073), - [anon_sym___forceinline] = ACTIONS(3073), - [anon_sym_thread_local] = ACTIONS(3073), - [anon_sym___thread] = ACTIONS(3073), - [anon_sym_const] = ACTIONS(3073), - [anon_sym_constexpr] = ACTIONS(3073), - [anon_sym_volatile] = ACTIONS(3073), - [anon_sym_restrict] = ACTIONS(3073), - [anon_sym___restrict__] = ACTIONS(3073), - [anon_sym__Atomic] = ACTIONS(3073), - [anon_sym__Noreturn] = ACTIONS(3073), - [anon_sym_noreturn] = ACTIONS(3073), - [anon_sym_mutable] = ACTIONS(3073), - [anon_sym_constinit] = ACTIONS(3073), - [anon_sym_consteval] = ACTIONS(3073), - [sym_primitive_type] = ACTIONS(3073), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3073), - [anon_sym_struct] = ACTIONS(3073), - [anon_sym_union] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3073), - [anon_sym_switch] = ACTIONS(3073), - [anon_sym_case] = ACTIONS(3073), - [anon_sym_default] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_break] = ACTIONS(3073), - [anon_sym_continue] = ACTIONS(3073), - [anon_sym_goto] = ACTIONS(3073), - [anon_sym_not] = ACTIONS(3073), - [anon_sym_compl] = ACTIONS(3073), - [anon_sym_DASH_DASH] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(3075), - [anon_sym_sizeof] = ACTIONS(3073), - [anon_sym___alignof__] = ACTIONS(3073), - [anon_sym___alignof] = ACTIONS(3073), - [anon_sym__alignof] = ACTIONS(3073), - [anon_sym_alignof] = ACTIONS(3073), - [anon_sym__Alignof] = ACTIONS(3073), - [anon_sym_offsetof] = ACTIONS(3073), - [anon_sym__Generic] = ACTIONS(3073), - [anon_sym_asm] = ACTIONS(3073), - [anon_sym___asm__] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(3075), - [anon_sym_L_SQUOTE] = ACTIONS(3075), - [anon_sym_u_SQUOTE] = ACTIONS(3075), - [anon_sym_U_SQUOTE] = ACTIONS(3075), - [anon_sym_u8_SQUOTE] = ACTIONS(3075), - [anon_sym_SQUOTE] = ACTIONS(3075), - [anon_sym_L_DQUOTE] = ACTIONS(3075), - [anon_sym_u_DQUOTE] = ACTIONS(3075), - [anon_sym_U_DQUOTE] = ACTIONS(3075), - [anon_sym_u8_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE] = ACTIONS(3075), - [sym_true] = ACTIONS(3073), - [sym_false] = ACTIONS(3073), - [anon_sym_NULL] = ACTIONS(3073), - [anon_sym_nullptr] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3073), - [anon_sym_decltype] = ACTIONS(3073), - [anon_sym_virtual] = ACTIONS(3073), - [anon_sym_alignas] = ACTIONS(3073), - [anon_sym_explicit] = ACTIONS(3073), - [anon_sym_typename] = ACTIONS(3073), - [anon_sym_template] = ACTIONS(3073), - [anon_sym_operator] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_delete] = ACTIONS(3073), - [anon_sym_throw] = ACTIONS(3073), - [anon_sym_namespace] = ACTIONS(3073), - [anon_sym_using] = ACTIONS(3073), - [anon_sym_static_assert] = ACTIONS(3073), - [anon_sym_concept] = ACTIONS(3073), - [anon_sym_co_return] = ACTIONS(3073), - [anon_sym_co_yield] = ACTIONS(3073), - [anon_sym_R_DQUOTE] = ACTIONS(3075), - [anon_sym_LR_DQUOTE] = ACTIONS(3075), - [anon_sym_uR_DQUOTE] = ACTIONS(3075), - [anon_sym_UR_DQUOTE] = ACTIONS(3075), - [anon_sym_u8R_DQUOTE] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3073), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_requires] = ACTIONS(3073), - [sym_this] = ACTIONS(3073), + [575] = { + [sym_identifier] = ACTIONS(3202), + [aux_sym_preproc_include_token1] = ACTIONS(3202), + [aux_sym_preproc_def_token1] = ACTIONS(3202), + [aux_sym_preproc_if_token1] = ACTIONS(3202), + [aux_sym_preproc_if_token2] = ACTIONS(3202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3202), + [aux_sym_preproc_else_token1] = ACTIONS(3202), + [aux_sym_preproc_elif_token1] = ACTIONS(3202), + [sym_preproc_directive] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym___extension__] = ACTIONS(3202), + [anon_sym_typedef] = ACTIONS(3202), + [anon_sym_extern] = ACTIONS(3202), + [anon_sym___attribute__] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3204), + [anon_sym___declspec] = ACTIONS(3202), + [anon_sym___based] = ACTIONS(3202), + [anon_sym___cdecl] = ACTIONS(3202), + [anon_sym___clrcall] = ACTIONS(3202), + [anon_sym___stdcall] = ACTIONS(3202), + [anon_sym___fastcall] = ACTIONS(3202), + [anon_sym___thiscall] = ACTIONS(3202), + [anon_sym___vectorcall] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_signed] = ACTIONS(3202), + [anon_sym_unsigned] = ACTIONS(3202), + [anon_sym_long] = ACTIONS(3202), + [anon_sym_short] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_register] = ACTIONS(3202), + [anon_sym_inline] = ACTIONS(3202), + [anon_sym___inline] = ACTIONS(3202), + [anon_sym___inline__] = ACTIONS(3202), + [anon_sym___forceinline] = ACTIONS(3202), + [anon_sym_thread_local] = ACTIONS(3202), + [anon_sym___thread] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_constexpr] = ACTIONS(3202), + [anon_sym_volatile] = ACTIONS(3202), + [anon_sym_restrict] = ACTIONS(3202), + [anon_sym___restrict__] = ACTIONS(3202), + [anon_sym__Atomic] = ACTIONS(3202), + [anon_sym__Noreturn] = ACTIONS(3202), + [anon_sym_noreturn] = ACTIONS(3202), + [anon_sym_mutable] = ACTIONS(3202), + [anon_sym_constinit] = ACTIONS(3202), + [anon_sym_consteval] = ACTIONS(3202), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_union] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_case] = ACTIONS(3202), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_goto] = ACTIONS(3202), + [anon_sym_not] = ACTIONS(3202), + [anon_sym_compl] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3204), + [anon_sym_PLUS_PLUS] = ACTIONS(3204), + [anon_sym_sizeof] = ACTIONS(3202), + [anon_sym___alignof__] = ACTIONS(3202), + [anon_sym___alignof] = ACTIONS(3202), + [anon_sym__alignof] = ACTIONS(3202), + [anon_sym_alignof] = ACTIONS(3202), + [anon_sym__Alignof] = ACTIONS(3202), + [anon_sym_offsetof] = ACTIONS(3202), + [anon_sym__Generic] = ACTIONS(3202), + [anon_sym_asm] = ACTIONS(3202), + [anon_sym___asm__] = ACTIONS(3202), + [sym_number_literal] = ACTIONS(3204), + [anon_sym_L_SQUOTE] = ACTIONS(3204), + [anon_sym_u_SQUOTE] = ACTIONS(3204), + [anon_sym_U_SQUOTE] = ACTIONS(3204), + [anon_sym_u8_SQUOTE] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3204), + [anon_sym_L_DQUOTE] = ACTIONS(3204), + [anon_sym_u_DQUOTE] = ACTIONS(3204), + [anon_sym_U_DQUOTE] = ACTIONS(3204), + [anon_sym_u8_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(3204), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [anon_sym_NULL] = ACTIONS(3202), + [anon_sym_nullptr] = ACTIONS(3202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3202), + [anon_sym_decltype] = ACTIONS(3202), + [anon_sym_virtual] = ACTIONS(3202), + [anon_sym_alignas] = ACTIONS(3202), + [anon_sym_explicit] = ACTIONS(3202), + [anon_sym_typename] = ACTIONS(3202), + [anon_sym_template] = ACTIONS(3202), + [anon_sym_operator] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(3202), + [anon_sym_throw] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_using] = ACTIONS(3202), + [anon_sym_static_assert] = ACTIONS(3202), + [anon_sym_concept] = ACTIONS(3202), + [anon_sym_co_return] = ACTIONS(3202), + [anon_sym_co_yield] = ACTIONS(3202), + [anon_sym_R_DQUOTE] = ACTIONS(3204), + [anon_sym_LR_DQUOTE] = ACTIONS(3204), + [anon_sym_uR_DQUOTE] = ACTIONS(3204), + [anon_sym_UR_DQUOTE] = ACTIONS(3204), + [anon_sym_u8R_DQUOTE] = ACTIONS(3204), + [anon_sym_co_await] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_requires] = ACTIONS(3202), + [sym_this] = ACTIONS(3202), }, - [514] = { - [sym_identifier] = ACTIONS(3077), - [aux_sym_preproc_include_token1] = ACTIONS(3077), - [aux_sym_preproc_def_token1] = ACTIONS(3077), - [aux_sym_preproc_if_token1] = ACTIONS(3077), - [aux_sym_preproc_if_token2] = ACTIONS(3077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3077), - [aux_sym_preproc_else_token1] = ACTIONS(3077), - [aux_sym_preproc_elif_token1] = ACTIONS(3077), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3077), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3077), - [sym_preproc_directive] = ACTIONS(3077), - [anon_sym_LPAREN2] = ACTIONS(3079), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_SEMI] = ACTIONS(3079), - [anon_sym___extension__] = ACTIONS(3077), - [anon_sym_typedef] = ACTIONS(3077), - [anon_sym_extern] = ACTIONS(3077), - [anon_sym___attribute__] = ACTIONS(3077), - [anon_sym_COLON_COLON] = ACTIONS(3079), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3079), - [anon_sym___declspec] = ACTIONS(3077), - [anon_sym___based] = ACTIONS(3077), - [anon_sym___cdecl] = ACTIONS(3077), - [anon_sym___clrcall] = ACTIONS(3077), - [anon_sym___stdcall] = ACTIONS(3077), - [anon_sym___fastcall] = ACTIONS(3077), - [anon_sym___thiscall] = ACTIONS(3077), - [anon_sym___vectorcall] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_signed] = ACTIONS(3077), - [anon_sym_unsigned] = ACTIONS(3077), - [anon_sym_long] = ACTIONS(3077), - [anon_sym_short] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3077), - [anon_sym_static] = ACTIONS(3077), - [anon_sym_register] = ACTIONS(3077), - [anon_sym_inline] = ACTIONS(3077), - [anon_sym___inline] = ACTIONS(3077), - [anon_sym___inline__] = ACTIONS(3077), - [anon_sym___forceinline] = ACTIONS(3077), - [anon_sym_thread_local] = ACTIONS(3077), - [anon_sym___thread] = ACTIONS(3077), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_constexpr] = ACTIONS(3077), - [anon_sym_volatile] = ACTIONS(3077), - [anon_sym_restrict] = ACTIONS(3077), - [anon_sym___restrict__] = ACTIONS(3077), - [anon_sym__Atomic] = ACTIONS(3077), - [anon_sym__Noreturn] = ACTIONS(3077), - [anon_sym_noreturn] = ACTIONS(3077), - [anon_sym_mutable] = ACTIONS(3077), - [anon_sym_constinit] = ACTIONS(3077), - [anon_sym_consteval] = ACTIONS(3077), - [sym_primitive_type] = ACTIONS(3077), - [anon_sym_enum] = ACTIONS(3077), - [anon_sym_class] = ACTIONS(3077), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_if] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3077), - [anon_sym_switch] = ACTIONS(3077), - [anon_sym_case] = ACTIONS(3077), - [anon_sym_default] = ACTIONS(3077), - [anon_sym_while] = ACTIONS(3077), - [anon_sym_do] = ACTIONS(3077), - [anon_sym_for] = ACTIONS(3077), - [anon_sym_return] = ACTIONS(3077), - [anon_sym_break] = ACTIONS(3077), - [anon_sym_continue] = ACTIONS(3077), - [anon_sym_goto] = ACTIONS(3077), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3079), - [anon_sym_PLUS_PLUS] = ACTIONS(3079), - [anon_sym_sizeof] = ACTIONS(3077), - [anon_sym___alignof__] = ACTIONS(3077), - [anon_sym___alignof] = ACTIONS(3077), - [anon_sym__alignof] = ACTIONS(3077), - [anon_sym_alignof] = ACTIONS(3077), - [anon_sym__Alignof] = ACTIONS(3077), - [anon_sym_offsetof] = ACTIONS(3077), - [anon_sym__Generic] = ACTIONS(3077), - [anon_sym_asm] = ACTIONS(3077), - [anon_sym___asm__] = ACTIONS(3077), - [sym_number_literal] = ACTIONS(3079), - [anon_sym_L_SQUOTE] = ACTIONS(3079), - [anon_sym_u_SQUOTE] = ACTIONS(3079), - [anon_sym_U_SQUOTE] = ACTIONS(3079), - [anon_sym_u8_SQUOTE] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3079), - [anon_sym_L_DQUOTE] = ACTIONS(3079), - [anon_sym_u_DQUOTE] = ACTIONS(3079), - [anon_sym_U_DQUOTE] = ACTIONS(3079), - [anon_sym_u8_DQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [sym_true] = ACTIONS(3077), - [sym_false] = ACTIONS(3077), - [anon_sym_NULL] = ACTIONS(3077), - [anon_sym_nullptr] = ACTIONS(3077), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3077), - [anon_sym_decltype] = ACTIONS(3077), - [anon_sym_virtual] = ACTIONS(3077), - [anon_sym_alignas] = ACTIONS(3077), - [anon_sym_explicit] = ACTIONS(3077), - [anon_sym_typename] = ACTIONS(3077), - [anon_sym_template] = ACTIONS(3077), - [anon_sym_operator] = ACTIONS(3077), - [anon_sym_try] = ACTIONS(3077), - [anon_sym_delete] = ACTIONS(3077), - [anon_sym_throw] = ACTIONS(3077), - [anon_sym_namespace] = ACTIONS(3077), - [anon_sym_using] = ACTIONS(3077), - [anon_sym_static_assert] = ACTIONS(3077), - [anon_sym_concept] = ACTIONS(3077), - [anon_sym_co_return] = ACTIONS(3077), - [anon_sym_co_yield] = ACTIONS(3077), - [anon_sym_R_DQUOTE] = ACTIONS(3079), - [anon_sym_LR_DQUOTE] = ACTIONS(3079), - [anon_sym_uR_DQUOTE] = ACTIONS(3079), - [anon_sym_UR_DQUOTE] = ACTIONS(3079), - [anon_sym_u8R_DQUOTE] = ACTIONS(3079), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_requires] = ACTIONS(3077), - [sym_this] = ACTIONS(3077), + [576] = { + [sym_identifier] = ACTIONS(3198), + [aux_sym_preproc_include_token1] = ACTIONS(3198), + [aux_sym_preproc_def_token1] = ACTIONS(3198), + [aux_sym_preproc_if_token1] = ACTIONS(3198), + [aux_sym_preproc_if_token2] = ACTIONS(3198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3198), + [aux_sym_preproc_else_token1] = ACTIONS(3198), + [aux_sym_preproc_elif_token1] = ACTIONS(3198), + [sym_preproc_directive] = ACTIONS(3198), + [anon_sym_LPAREN2] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym___extension__] = ACTIONS(3198), + [anon_sym_typedef] = ACTIONS(3198), + [anon_sym_extern] = ACTIONS(3198), + [anon_sym___attribute__] = ACTIONS(3198), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3200), + [anon_sym___declspec] = ACTIONS(3198), + [anon_sym___based] = ACTIONS(3198), + [anon_sym___cdecl] = ACTIONS(3198), + [anon_sym___clrcall] = ACTIONS(3198), + [anon_sym___stdcall] = ACTIONS(3198), + [anon_sym___fastcall] = ACTIONS(3198), + [anon_sym___thiscall] = ACTIONS(3198), + [anon_sym___vectorcall] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_signed] = ACTIONS(3198), + [anon_sym_unsigned] = ACTIONS(3198), + [anon_sym_long] = ACTIONS(3198), + [anon_sym_short] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_register] = ACTIONS(3198), + [anon_sym_inline] = ACTIONS(3198), + [anon_sym___inline] = ACTIONS(3198), + [anon_sym___inline__] = ACTIONS(3198), + [anon_sym___forceinline] = ACTIONS(3198), + [anon_sym_thread_local] = ACTIONS(3198), + [anon_sym___thread] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_constexpr] = ACTIONS(3198), + [anon_sym_volatile] = ACTIONS(3198), + [anon_sym_restrict] = ACTIONS(3198), + [anon_sym___restrict__] = ACTIONS(3198), + [anon_sym__Atomic] = ACTIONS(3198), + [anon_sym__Noreturn] = ACTIONS(3198), + [anon_sym_noreturn] = ACTIONS(3198), + [anon_sym_mutable] = ACTIONS(3198), + [anon_sym_constinit] = ACTIONS(3198), + [anon_sym_consteval] = ACTIONS(3198), + [sym_primitive_type] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_goto] = ACTIONS(3198), + [anon_sym_not] = ACTIONS(3198), + [anon_sym_compl] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_sizeof] = ACTIONS(3198), + [anon_sym___alignof__] = ACTIONS(3198), + [anon_sym___alignof] = ACTIONS(3198), + [anon_sym__alignof] = ACTIONS(3198), + [anon_sym_alignof] = ACTIONS(3198), + [anon_sym__Alignof] = ACTIONS(3198), + [anon_sym_offsetof] = ACTIONS(3198), + [anon_sym__Generic] = ACTIONS(3198), + [anon_sym_asm] = ACTIONS(3198), + [anon_sym___asm__] = ACTIONS(3198), + [sym_number_literal] = ACTIONS(3200), + [anon_sym_L_SQUOTE] = ACTIONS(3200), + [anon_sym_u_SQUOTE] = ACTIONS(3200), + [anon_sym_U_SQUOTE] = ACTIONS(3200), + [anon_sym_u8_SQUOTE] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3200), + [anon_sym_L_DQUOTE] = ACTIONS(3200), + [anon_sym_u_DQUOTE] = ACTIONS(3200), + [anon_sym_U_DQUOTE] = ACTIONS(3200), + [anon_sym_u8_DQUOTE] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(3200), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [anon_sym_NULL] = ACTIONS(3198), + [anon_sym_nullptr] = ACTIONS(3198), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3198), + [anon_sym_decltype] = ACTIONS(3198), + [anon_sym_virtual] = ACTIONS(3198), + [anon_sym_alignas] = ACTIONS(3198), + [anon_sym_explicit] = ACTIONS(3198), + [anon_sym_typename] = ACTIONS(3198), + [anon_sym_template] = ACTIONS(3198), + [anon_sym_operator] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_static_assert] = ACTIONS(3198), + [anon_sym_concept] = ACTIONS(3198), + [anon_sym_co_return] = ACTIONS(3198), + [anon_sym_co_yield] = ACTIONS(3198), + [anon_sym_R_DQUOTE] = ACTIONS(3200), + [anon_sym_LR_DQUOTE] = ACTIONS(3200), + [anon_sym_uR_DQUOTE] = ACTIONS(3200), + [anon_sym_UR_DQUOTE] = ACTIONS(3200), + [anon_sym_u8R_DQUOTE] = ACTIONS(3200), + [anon_sym_co_await] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), }, - [515] = { - [sym__expression] = STATE(5197), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8951), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(2848), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(3081), - [anon_sym___extension__] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym___attribute__] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2855), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), - [anon_sym___declspec] = ACTIONS(2853), - [anon_sym_signed] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym___inline] = ACTIONS(2853), - [anon_sym___inline__] = ACTIONS(2853), - [anon_sym___forceinline] = ACTIONS(2853), - [anon_sym_thread_local] = ACTIONS(2853), - [anon_sym___thread] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_constexpr] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym___restrict__] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym__Noreturn] = ACTIONS(2853), - [anon_sym_noreturn] = ACTIONS(2853), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_constinit] = ACTIONS(2853), - [anon_sym_consteval] = ACTIONS(2853), - [sym_primitive_type] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2853), - [anon_sym_decltype] = ACTIONS(2863), - [anon_sym_virtual] = ACTIONS(2853), - [anon_sym_alignas] = ACTIONS(2853), - [anon_sym_typename] = ACTIONS(2853), - [anon_sym_template] = ACTIONS(2866), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [577] = { + [sym_catch_clause] = STATE(393), + [aux_sym_constructor_try_statement_repeat1] = STATE(393), + [ts_builtin_sym_end] = ACTIONS(2251), + [sym_identifier] = ACTIONS(2249), + [aux_sym_preproc_include_token1] = ACTIONS(2249), + [aux_sym_preproc_def_token1] = ACTIONS(2249), + [aux_sym_preproc_if_token1] = ACTIONS(2249), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2249), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2249), + [sym_preproc_directive] = ACTIONS(2249), + [anon_sym_LPAREN2] = ACTIONS(2251), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_TILDE] = ACTIONS(2251), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(2251), + [anon_sym_AMP_AMP] = ACTIONS(2251), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym___extension__] = ACTIONS(2249), + [anon_sym_typedef] = ACTIONS(2249), + [anon_sym_extern] = ACTIONS(2249), + [anon_sym___attribute__] = ACTIONS(2249), + [anon_sym_COLON_COLON] = ACTIONS(2251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2251), + [anon_sym___declspec] = ACTIONS(2249), + [anon_sym___based] = ACTIONS(2249), + [anon_sym___cdecl] = ACTIONS(2249), + [anon_sym___clrcall] = ACTIONS(2249), + [anon_sym___stdcall] = ACTIONS(2249), + [anon_sym___fastcall] = ACTIONS(2249), + [anon_sym___thiscall] = ACTIONS(2249), + [anon_sym___vectorcall] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_signed] = ACTIONS(2249), + [anon_sym_unsigned] = ACTIONS(2249), + [anon_sym_long] = ACTIONS(2249), + [anon_sym_short] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_register] = ACTIONS(2249), + [anon_sym_inline] = ACTIONS(2249), + [anon_sym___inline] = ACTIONS(2249), + [anon_sym___inline__] = ACTIONS(2249), + [anon_sym___forceinline] = ACTIONS(2249), + [anon_sym_thread_local] = ACTIONS(2249), + [anon_sym___thread] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_constexpr] = ACTIONS(2249), + [anon_sym_volatile] = ACTIONS(2249), + [anon_sym_restrict] = ACTIONS(2249), + [anon_sym___restrict__] = ACTIONS(2249), + [anon_sym__Atomic] = ACTIONS(2249), + [anon_sym__Noreturn] = ACTIONS(2249), + [anon_sym_noreturn] = ACTIONS(2249), + [anon_sym_mutable] = ACTIONS(2249), + [anon_sym_constinit] = ACTIONS(2249), + [anon_sym_consteval] = ACTIONS(2249), + [sym_primitive_type] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_switch] = ACTIONS(2249), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_goto] = ACTIONS(2249), + [anon_sym_not] = ACTIONS(2249), + [anon_sym_compl] = ACTIONS(2249), + [anon_sym_DASH_DASH] = ACTIONS(2251), + [anon_sym_PLUS_PLUS] = ACTIONS(2251), + [anon_sym_sizeof] = ACTIONS(2249), + [anon_sym___alignof__] = ACTIONS(2249), + [anon_sym___alignof] = ACTIONS(2249), + [anon_sym__alignof] = ACTIONS(2249), + [anon_sym_alignof] = ACTIONS(2249), + [anon_sym__Alignof] = ACTIONS(2249), + [anon_sym_offsetof] = ACTIONS(2249), + [anon_sym__Generic] = ACTIONS(2249), + [anon_sym_asm] = ACTIONS(2249), + [anon_sym___asm__] = ACTIONS(2249), + [sym_number_literal] = ACTIONS(2251), + [anon_sym_L_SQUOTE] = ACTIONS(2251), + [anon_sym_u_SQUOTE] = ACTIONS(2251), + [anon_sym_U_SQUOTE] = ACTIONS(2251), + [anon_sym_u8_SQUOTE] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_L_DQUOTE] = ACTIONS(2251), + [anon_sym_u_DQUOTE] = ACTIONS(2251), + [anon_sym_U_DQUOTE] = ACTIONS(2251), + [anon_sym_u8_DQUOTE] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(2251), + [sym_true] = ACTIONS(2249), + [sym_false] = ACTIONS(2249), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2249), + [anon_sym_decltype] = ACTIONS(2249), + [anon_sym_virtual] = ACTIONS(2249), + [anon_sym_alignas] = ACTIONS(2249), + [anon_sym_explicit] = ACTIONS(2249), + [anon_sym_typename] = ACTIONS(2249), + [anon_sym_template] = ACTIONS(2249), + [anon_sym_operator] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_delete] = ACTIONS(2249), + [anon_sym_throw] = ACTIONS(2249), + [anon_sym_namespace] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [anon_sym_static_assert] = ACTIONS(2249), + [anon_sym_concept] = ACTIONS(2249), + [anon_sym_co_return] = ACTIONS(2249), + [anon_sym_co_yield] = ACTIONS(2249), + [anon_sym_catch] = ACTIONS(3225), + [anon_sym_R_DQUOTE] = ACTIONS(2251), + [anon_sym_LR_DQUOTE] = ACTIONS(2251), + [anon_sym_uR_DQUOTE] = ACTIONS(2251), + [anon_sym_UR_DQUOTE] = ACTIONS(2251), + [anon_sym_u8R_DQUOTE] = ACTIONS(2251), + [anon_sym_co_await] = ACTIONS(2249), + [anon_sym_new] = ACTIONS(2249), + [anon_sym_requires] = ACTIONS(2249), + [sym_this] = ACTIONS(2249), }, - [516] = { - [sym_identifier] = ACTIONS(3083), - [aux_sym_preproc_include_token1] = ACTIONS(3083), - [aux_sym_preproc_def_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token2] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), - [aux_sym_preproc_else_token1] = ACTIONS(3083), - [aux_sym_preproc_elif_token1] = ACTIONS(3083), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3083), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3083), - [sym_preproc_directive] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym___extension__] = ACTIONS(3083), - [anon_sym_typedef] = ACTIONS(3083), - [anon_sym_extern] = ACTIONS(3083), - [anon_sym___attribute__] = ACTIONS(3083), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), - [anon_sym___declspec] = ACTIONS(3083), - [anon_sym___based] = ACTIONS(3083), - [anon_sym___cdecl] = ACTIONS(3083), - [anon_sym___clrcall] = ACTIONS(3083), - [anon_sym___stdcall] = ACTIONS(3083), - [anon_sym___fastcall] = ACTIONS(3083), - [anon_sym___thiscall] = ACTIONS(3083), - [anon_sym___vectorcall] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_signed] = ACTIONS(3083), - [anon_sym_unsigned] = ACTIONS(3083), - [anon_sym_long] = ACTIONS(3083), - [anon_sym_short] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_static] = ACTIONS(3083), - [anon_sym_register] = ACTIONS(3083), - [anon_sym_inline] = ACTIONS(3083), - [anon_sym___inline] = ACTIONS(3083), - [anon_sym___inline__] = ACTIONS(3083), - [anon_sym___forceinline] = ACTIONS(3083), - [anon_sym_thread_local] = ACTIONS(3083), - [anon_sym___thread] = ACTIONS(3083), - [anon_sym_const] = ACTIONS(3083), - [anon_sym_constexpr] = ACTIONS(3083), - [anon_sym_volatile] = ACTIONS(3083), - [anon_sym_restrict] = ACTIONS(3083), - [anon_sym___restrict__] = ACTIONS(3083), - [anon_sym__Atomic] = ACTIONS(3083), - [anon_sym__Noreturn] = ACTIONS(3083), - [anon_sym_noreturn] = ACTIONS(3083), - [anon_sym_mutable] = ACTIONS(3083), - [anon_sym_constinit] = ACTIONS(3083), - [anon_sym_consteval] = ACTIONS(3083), - [sym_primitive_type] = ACTIONS(3083), - [anon_sym_enum] = ACTIONS(3083), - [anon_sym_class] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_else] = ACTIONS(3083), - [anon_sym_switch] = ACTIONS(3083), - [anon_sym_case] = ACTIONS(3083), - [anon_sym_default] = ACTIONS(3083), - [anon_sym_while] = ACTIONS(3083), - [anon_sym_do] = ACTIONS(3083), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_break] = ACTIONS(3083), - [anon_sym_continue] = ACTIONS(3083), - [anon_sym_goto] = ACTIONS(3083), - [anon_sym_not] = ACTIONS(3083), - [anon_sym_compl] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3083), - [anon_sym___alignof__] = ACTIONS(3083), - [anon_sym___alignof] = ACTIONS(3083), - [anon_sym__alignof] = ACTIONS(3083), - [anon_sym_alignof] = ACTIONS(3083), - [anon_sym__Alignof] = ACTIONS(3083), - [anon_sym_offsetof] = ACTIONS(3083), - [anon_sym__Generic] = ACTIONS(3083), - [anon_sym_asm] = ACTIONS(3083), - [anon_sym___asm__] = ACTIONS(3083), - [sym_number_literal] = ACTIONS(3085), - [anon_sym_L_SQUOTE] = ACTIONS(3085), - [anon_sym_u_SQUOTE] = ACTIONS(3085), - [anon_sym_U_SQUOTE] = ACTIONS(3085), - [anon_sym_u8_SQUOTE] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3085), - [anon_sym_L_DQUOTE] = ACTIONS(3085), - [anon_sym_u_DQUOTE] = ACTIONS(3085), - [anon_sym_U_DQUOTE] = ACTIONS(3085), - [anon_sym_u8_DQUOTE] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(3085), - [sym_true] = ACTIONS(3083), - [sym_false] = ACTIONS(3083), - [anon_sym_NULL] = ACTIONS(3083), - [anon_sym_nullptr] = ACTIONS(3083), + [578] = { + [sym_identifier] = ACTIONS(2973), + [aux_sym_preproc_include_token1] = ACTIONS(2973), + [aux_sym_preproc_def_token1] = ACTIONS(2973), + [aux_sym_preproc_if_token1] = ACTIONS(2973), + [aux_sym_preproc_if_token2] = ACTIONS(2973), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2973), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2973), + [aux_sym_preproc_else_token1] = ACTIONS(2973), + [aux_sym_preproc_elif_token1] = ACTIONS(2973), + [sym_preproc_directive] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(2975), + [anon_sym_TILDE] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2975), + [anon_sym_AMP_AMP] = ACTIONS(2975), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym___extension__] = ACTIONS(2973), + [anon_sym_typedef] = ACTIONS(2973), + [anon_sym_extern] = ACTIONS(2973), + [anon_sym___attribute__] = ACTIONS(2973), + [anon_sym_COLON_COLON] = ACTIONS(2975), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), + [anon_sym___declspec] = ACTIONS(2973), + [anon_sym___based] = ACTIONS(2973), + [anon_sym___cdecl] = ACTIONS(2973), + [anon_sym___clrcall] = ACTIONS(2973), + [anon_sym___stdcall] = ACTIONS(2973), + [anon_sym___fastcall] = ACTIONS(2973), + [anon_sym___thiscall] = ACTIONS(2973), + [anon_sym___vectorcall] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2975), + [anon_sym_signed] = ACTIONS(2973), + [anon_sym_unsigned] = ACTIONS(2973), + [anon_sym_long] = ACTIONS(2973), + [anon_sym_short] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_static] = ACTIONS(2973), + [anon_sym_register] = ACTIONS(2973), + [anon_sym_inline] = ACTIONS(2973), + [anon_sym___inline] = ACTIONS(2973), + [anon_sym___inline__] = ACTIONS(2973), + [anon_sym___forceinline] = ACTIONS(2973), + [anon_sym_thread_local] = ACTIONS(2973), + [anon_sym___thread] = ACTIONS(2973), + [anon_sym_const] = ACTIONS(2973), + [anon_sym_constexpr] = ACTIONS(2973), + [anon_sym_volatile] = ACTIONS(2973), + [anon_sym_restrict] = ACTIONS(2973), + [anon_sym___restrict__] = ACTIONS(2973), + [anon_sym__Atomic] = ACTIONS(2973), + [anon_sym__Noreturn] = ACTIONS(2973), + [anon_sym_noreturn] = ACTIONS(2973), + [anon_sym_mutable] = ACTIONS(2973), + [anon_sym_constinit] = ACTIONS(2973), + [anon_sym_consteval] = ACTIONS(2973), + [sym_primitive_type] = ACTIONS(2973), + [anon_sym_enum] = ACTIONS(2973), + [anon_sym_class] = ACTIONS(2973), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_union] = ACTIONS(2973), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_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), + [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(3083), - [anon_sym_decltype] = ACTIONS(3083), - [anon_sym_virtual] = ACTIONS(3083), - [anon_sym_alignas] = ACTIONS(3083), - [anon_sym_explicit] = ACTIONS(3083), - [anon_sym_typename] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3083), - [anon_sym_operator] = ACTIONS(3083), - [anon_sym_try] = ACTIONS(3083), - [anon_sym_delete] = ACTIONS(3083), - [anon_sym_throw] = ACTIONS(3083), - [anon_sym_namespace] = ACTIONS(3083), - [anon_sym_using] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3083), - [anon_sym_concept] = ACTIONS(3083), - [anon_sym_co_return] = ACTIONS(3083), - [anon_sym_co_yield] = ACTIONS(3083), - [anon_sym_R_DQUOTE] = ACTIONS(3085), - [anon_sym_LR_DQUOTE] = ACTIONS(3085), - [anon_sym_uR_DQUOTE] = ACTIONS(3085), - [anon_sym_UR_DQUOTE] = ACTIONS(3085), - [anon_sym_u8R_DQUOTE] = ACTIONS(3085), - [anon_sym_co_await] = ACTIONS(3083), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_requires] = ACTIONS(3083), - [sym_this] = ACTIONS(3083), + [sym_auto] = ACTIONS(2973), + [anon_sym_decltype] = ACTIONS(2973), + [anon_sym_virtual] = ACTIONS(2973), + [anon_sym_alignas] = ACTIONS(2973), + [anon_sym_explicit] = ACTIONS(2973), + [anon_sym_typename] = ACTIONS(2973), + [anon_sym_template] = ACTIONS(2973), + [anon_sym_operator] = ACTIONS(2973), + [anon_sym_try] = ACTIONS(2973), + [anon_sym_delete] = ACTIONS(2973), + [anon_sym_throw] = ACTIONS(2973), + [anon_sym_namespace] = ACTIONS(2973), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_static_assert] = ACTIONS(2973), + [anon_sym_concept] = ACTIONS(2973), + [anon_sym_co_return] = ACTIONS(2973), + [anon_sym_co_yield] = ACTIONS(2973), + [anon_sym_R_DQUOTE] = ACTIONS(2975), + [anon_sym_LR_DQUOTE] = ACTIONS(2975), + [anon_sym_uR_DQUOTE] = ACTIONS(2975), + [anon_sym_UR_DQUOTE] = ACTIONS(2975), + [anon_sym_u8R_DQUOTE] = ACTIONS(2975), + [anon_sym_co_await] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(2973), + [anon_sym_requires] = ACTIONS(2973), + [sym_this] = ACTIONS(2973), }, - [517] = { - [sym_identifier] = ACTIONS(3087), - [aux_sym_preproc_include_token1] = ACTIONS(3087), - [aux_sym_preproc_def_token1] = ACTIONS(3087), - [aux_sym_preproc_if_token1] = ACTIONS(3087), - [aux_sym_preproc_if_token2] = ACTIONS(3087), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), - [aux_sym_preproc_else_token1] = ACTIONS(3087), - [aux_sym_preproc_elif_token1] = ACTIONS(3087), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3087), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3087), - [sym_preproc_directive] = ACTIONS(3087), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_SEMI] = ACTIONS(3089), - [anon_sym___extension__] = ACTIONS(3087), - [anon_sym_typedef] = ACTIONS(3087), - [anon_sym_extern] = ACTIONS(3087), - [anon_sym___attribute__] = ACTIONS(3087), - [anon_sym_COLON_COLON] = ACTIONS(3089), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), - [anon_sym___declspec] = ACTIONS(3087), - [anon_sym___based] = ACTIONS(3087), - [anon_sym___cdecl] = ACTIONS(3087), - [anon_sym___clrcall] = ACTIONS(3087), - [anon_sym___stdcall] = ACTIONS(3087), - [anon_sym___fastcall] = ACTIONS(3087), - [anon_sym___thiscall] = ACTIONS(3087), - [anon_sym___vectorcall] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_signed] = ACTIONS(3087), - [anon_sym_unsigned] = ACTIONS(3087), - [anon_sym_long] = ACTIONS(3087), - [anon_sym_short] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_register] = ACTIONS(3087), - [anon_sym_inline] = ACTIONS(3087), - [anon_sym___inline] = ACTIONS(3087), - [anon_sym___inline__] = ACTIONS(3087), - [anon_sym___forceinline] = ACTIONS(3087), - [anon_sym_thread_local] = ACTIONS(3087), - [anon_sym___thread] = ACTIONS(3087), - [anon_sym_const] = ACTIONS(3087), - [anon_sym_constexpr] = ACTIONS(3087), - [anon_sym_volatile] = ACTIONS(3087), - [anon_sym_restrict] = ACTIONS(3087), - [anon_sym___restrict__] = ACTIONS(3087), - [anon_sym__Atomic] = ACTIONS(3087), - [anon_sym__Noreturn] = ACTIONS(3087), - [anon_sym_noreturn] = ACTIONS(3087), - [anon_sym_mutable] = ACTIONS(3087), - [anon_sym_constinit] = ACTIONS(3087), - [anon_sym_consteval] = ACTIONS(3087), - [sym_primitive_type] = ACTIONS(3087), - [anon_sym_enum] = ACTIONS(3087), - [anon_sym_class] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_union] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_else] = ACTIONS(3087), - [anon_sym_switch] = ACTIONS(3087), - [anon_sym_case] = ACTIONS(3087), - [anon_sym_default] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_goto] = ACTIONS(3087), - [anon_sym_not] = ACTIONS(3087), - [anon_sym_compl] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_sizeof] = ACTIONS(3087), - [anon_sym___alignof__] = ACTIONS(3087), - [anon_sym___alignof] = ACTIONS(3087), - [anon_sym__alignof] = ACTIONS(3087), - [anon_sym_alignof] = ACTIONS(3087), - [anon_sym__Alignof] = ACTIONS(3087), - [anon_sym_offsetof] = ACTIONS(3087), - [anon_sym__Generic] = ACTIONS(3087), - [anon_sym_asm] = ACTIONS(3087), - [anon_sym___asm__] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(3089), - [anon_sym_L_SQUOTE] = ACTIONS(3089), - [anon_sym_u_SQUOTE] = ACTIONS(3089), - [anon_sym_U_SQUOTE] = ACTIONS(3089), - [anon_sym_u8_SQUOTE] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_L_DQUOTE] = ACTIONS(3089), - [anon_sym_u_DQUOTE] = ACTIONS(3089), - [anon_sym_U_DQUOTE] = ACTIONS(3089), - [anon_sym_u8_DQUOTE] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(3089), - [sym_true] = ACTIONS(3087), - [sym_false] = ACTIONS(3087), - [anon_sym_NULL] = ACTIONS(3087), - [anon_sym_nullptr] = ACTIONS(3087), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3087), - [anon_sym_decltype] = ACTIONS(3087), - [anon_sym_virtual] = ACTIONS(3087), - [anon_sym_alignas] = ACTIONS(3087), - [anon_sym_explicit] = ACTIONS(3087), - [anon_sym_typename] = ACTIONS(3087), - [anon_sym_template] = ACTIONS(3087), - [anon_sym_operator] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_delete] = ACTIONS(3087), - [anon_sym_throw] = ACTIONS(3087), - [anon_sym_namespace] = ACTIONS(3087), - [anon_sym_using] = ACTIONS(3087), - [anon_sym_static_assert] = ACTIONS(3087), - [anon_sym_concept] = ACTIONS(3087), - [anon_sym_co_return] = ACTIONS(3087), - [anon_sym_co_yield] = ACTIONS(3087), - [anon_sym_R_DQUOTE] = ACTIONS(3089), - [anon_sym_LR_DQUOTE] = ACTIONS(3089), - [anon_sym_uR_DQUOTE] = ACTIONS(3089), - [anon_sym_UR_DQUOTE] = ACTIONS(3089), - [anon_sym_u8R_DQUOTE] = ACTIONS(3089), - [anon_sym_co_await] = ACTIONS(3087), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_requires] = ACTIONS(3087), - [sym_this] = ACTIONS(3087), + [579] = { + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_include_token1] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym___cdecl] = ACTIONS(2138), + [anon_sym___clrcall] = ACTIONS(2138), + [anon_sym___stdcall] = ACTIONS(2138), + [anon_sym___fastcall] = ACTIONS(2138), + [anon_sym___thiscall] = ACTIONS(2138), + [anon_sym___vectorcall] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_goto] = ACTIONS(2138), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_compl] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_PLUS_PLUS] = ACTIONS(2136), + [anon_sym_sizeof] = ACTIONS(2138), + [anon_sym___alignof__] = ACTIONS(2138), + [anon_sym___alignof] = ACTIONS(2138), + [anon_sym__alignof] = ACTIONS(2138), + [anon_sym_alignof] = ACTIONS(2138), + [anon_sym__Alignof] = ACTIONS(2138), + [anon_sym_offsetof] = ACTIONS(2138), + [anon_sym__Generic] = ACTIONS(2138), + [anon_sym_asm] = ACTIONS(2138), + [anon_sym___asm__] = ACTIONS(2138), + [sym_number_literal] = ACTIONS(2136), + [anon_sym_L_SQUOTE] = ACTIONS(2136), + [anon_sym_u_SQUOTE] = ACTIONS(2136), + [anon_sym_U_SQUOTE] = ACTIONS(2136), + [anon_sym_u8_SQUOTE] = ACTIONS(2136), + [anon_sym_SQUOTE] = ACTIONS(2136), + [anon_sym_L_DQUOTE] = ACTIONS(2136), + [anon_sym_u_DQUOTE] = ACTIONS(2136), + [anon_sym_U_DQUOTE] = ACTIONS(2136), + [anon_sym_u8_DQUOTE] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2136), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [anon_sym_NULL] = ACTIONS(2138), + [anon_sym_nullptr] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), + [anon_sym_concept] = ACTIONS(2138), + [anon_sym_co_return] = ACTIONS(2138), + [anon_sym_co_yield] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + [anon_sym_R_DQUOTE] = ACTIONS(2136), + [anon_sym_LR_DQUOTE] = ACTIONS(2136), + [anon_sym_uR_DQUOTE] = ACTIONS(2136), + [anon_sym_UR_DQUOTE] = ACTIONS(2136), + [anon_sym_u8R_DQUOTE] = ACTIONS(2136), + [anon_sym_co_await] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_requires] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), }, - [518] = { - [sym_identifier] = ACTIONS(3091), - [aux_sym_preproc_include_token1] = ACTIONS(3091), - [aux_sym_preproc_def_token1] = ACTIONS(3091), - [aux_sym_preproc_if_token1] = ACTIONS(3091), - [aux_sym_preproc_if_token2] = ACTIONS(3091), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), - [aux_sym_preproc_else_token1] = ACTIONS(3091), - [aux_sym_preproc_elif_token1] = ACTIONS(3091), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3091), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3091), - [sym_preproc_directive] = ACTIONS(3091), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3091), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3091), - [anon_sym_SEMI] = ACTIONS(3093), - [anon_sym___extension__] = ACTIONS(3091), - [anon_sym_typedef] = ACTIONS(3091), - [anon_sym_extern] = ACTIONS(3091), - [anon_sym___attribute__] = ACTIONS(3091), - [anon_sym_COLON_COLON] = ACTIONS(3093), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), - [anon_sym___declspec] = ACTIONS(3091), - [anon_sym___based] = ACTIONS(3091), - [anon_sym___cdecl] = ACTIONS(3091), - [anon_sym___clrcall] = ACTIONS(3091), - [anon_sym___stdcall] = ACTIONS(3091), - [anon_sym___fastcall] = ACTIONS(3091), - [anon_sym___thiscall] = ACTIONS(3091), - [anon_sym___vectorcall] = ACTIONS(3091), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_signed] = ACTIONS(3091), - [anon_sym_unsigned] = ACTIONS(3091), - [anon_sym_long] = ACTIONS(3091), - [anon_sym_short] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_register] = ACTIONS(3091), - [anon_sym_inline] = ACTIONS(3091), - [anon_sym___inline] = ACTIONS(3091), - [anon_sym___inline__] = ACTIONS(3091), - [anon_sym___forceinline] = ACTIONS(3091), - [anon_sym_thread_local] = ACTIONS(3091), - [anon_sym___thread] = ACTIONS(3091), - [anon_sym_const] = ACTIONS(3091), - [anon_sym_constexpr] = ACTIONS(3091), - [anon_sym_volatile] = ACTIONS(3091), - [anon_sym_restrict] = ACTIONS(3091), - [anon_sym___restrict__] = ACTIONS(3091), - [anon_sym__Atomic] = ACTIONS(3091), - [anon_sym__Noreturn] = ACTIONS(3091), - [anon_sym_noreturn] = ACTIONS(3091), - [anon_sym_mutable] = ACTIONS(3091), - [anon_sym_constinit] = ACTIONS(3091), - [anon_sym_consteval] = ACTIONS(3091), - [sym_primitive_type] = ACTIONS(3091), - [anon_sym_enum] = ACTIONS(3091), - [anon_sym_class] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(3091), - [anon_sym_union] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3091), - [anon_sym_switch] = ACTIONS(3091), - [anon_sym_case] = ACTIONS(3091), - [anon_sym_default] = ACTIONS(3091), - [anon_sym_while] = ACTIONS(3091), - [anon_sym_do] = ACTIONS(3091), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_break] = ACTIONS(3091), - [anon_sym_continue] = ACTIONS(3091), - [anon_sym_goto] = ACTIONS(3091), - [anon_sym_not] = ACTIONS(3091), - [anon_sym_compl] = ACTIONS(3091), - [anon_sym_DASH_DASH] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3093), - [anon_sym_sizeof] = ACTIONS(3091), - [anon_sym___alignof__] = ACTIONS(3091), - [anon_sym___alignof] = ACTIONS(3091), - [anon_sym__alignof] = ACTIONS(3091), - [anon_sym_alignof] = ACTIONS(3091), - [anon_sym__Alignof] = ACTIONS(3091), - [anon_sym_offsetof] = ACTIONS(3091), - [anon_sym__Generic] = ACTIONS(3091), - [anon_sym_asm] = ACTIONS(3091), - [anon_sym___asm__] = ACTIONS(3091), - [sym_number_literal] = ACTIONS(3093), - [anon_sym_L_SQUOTE] = ACTIONS(3093), - [anon_sym_u_SQUOTE] = ACTIONS(3093), - [anon_sym_U_SQUOTE] = ACTIONS(3093), - [anon_sym_u8_SQUOTE] = ACTIONS(3093), - [anon_sym_SQUOTE] = ACTIONS(3093), - [anon_sym_L_DQUOTE] = ACTIONS(3093), - [anon_sym_u_DQUOTE] = ACTIONS(3093), - [anon_sym_U_DQUOTE] = ACTIONS(3093), - [anon_sym_u8_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [sym_true] = ACTIONS(3091), - [sym_false] = ACTIONS(3091), - [anon_sym_NULL] = ACTIONS(3091), - [anon_sym_nullptr] = ACTIONS(3091), + [580] = { + [sym_identifier] = ACTIONS(2985), + [aux_sym_preproc_include_token1] = ACTIONS(2985), + [aux_sym_preproc_def_token1] = ACTIONS(2985), + [aux_sym_preproc_if_token1] = ACTIONS(2985), + [aux_sym_preproc_if_token2] = ACTIONS(2985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2985), + [aux_sym_preproc_else_token1] = ACTIONS(2985), + [aux_sym_preproc_elif_token1] = ACTIONS(2985), + [sym_preproc_directive] = ACTIONS(2985), + [anon_sym_LPAREN2] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_AMP_AMP] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym___extension__] = ACTIONS(2985), + [anon_sym_typedef] = ACTIONS(2985), + [anon_sym_extern] = ACTIONS(2985), + [anon_sym___attribute__] = ACTIONS(2985), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), + [anon_sym___declspec] = ACTIONS(2985), + [anon_sym___based] = ACTIONS(2985), + [anon_sym___cdecl] = ACTIONS(2985), + [anon_sym___clrcall] = ACTIONS(2985), + [anon_sym___stdcall] = ACTIONS(2985), + [anon_sym___fastcall] = ACTIONS(2985), + [anon_sym___thiscall] = ACTIONS(2985), + [anon_sym___vectorcall] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_signed] = ACTIONS(2985), + [anon_sym_unsigned] = ACTIONS(2985), + [anon_sym_long] = ACTIONS(2985), + [anon_sym_short] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_static] = ACTIONS(2985), + [anon_sym_register] = ACTIONS(2985), + [anon_sym_inline] = ACTIONS(2985), + [anon_sym___inline] = ACTIONS(2985), + [anon_sym___inline__] = ACTIONS(2985), + [anon_sym___forceinline] = ACTIONS(2985), + [anon_sym_thread_local] = ACTIONS(2985), + [anon_sym___thread] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_constexpr] = ACTIONS(2985), + [anon_sym_volatile] = ACTIONS(2985), + [anon_sym_restrict] = ACTIONS(2985), + [anon_sym___restrict__] = ACTIONS(2985), + [anon_sym__Atomic] = ACTIONS(2985), + [anon_sym__Noreturn] = ACTIONS(2985), + [anon_sym_noreturn] = ACTIONS(2985), + [anon_sym_mutable] = ACTIONS(2985), + [anon_sym_constinit] = ACTIONS(2985), + [anon_sym_consteval] = ACTIONS(2985), + [sym_primitive_type] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_class] = ACTIONS(2985), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_union] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_switch] = ACTIONS(2985), + [anon_sym_case] = ACTIONS(2985), + [anon_sym_default] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_do] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym_not] = ACTIONS(2985), + [anon_sym_compl] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_sizeof] = ACTIONS(2985), + [anon_sym___alignof__] = ACTIONS(2985), + [anon_sym___alignof] = ACTIONS(2985), + [anon_sym__alignof] = ACTIONS(2985), + [anon_sym_alignof] = ACTIONS(2985), + [anon_sym__Alignof] = ACTIONS(2985), + [anon_sym_offsetof] = ACTIONS(2985), + [anon_sym__Generic] = ACTIONS(2985), + [anon_sym_asm] = ACTIONS(2985), + [anon_sym___asm__] = ACTIONS(2985), + [sym_number_literal] = ACTIONS(2987), + [anon_sym_L_SQUOTE] = ACTIONS(2987), + [anon_sym_u_SQUOTE] = ACTIONS(2987), + [anon_sym_U_SQUOTE] = ACTIONS(2987), + [anon_sym_u8_SQUOTE] = ACTIONS(2987), + [anon_sym_SQUOTE] = ACTIONS(2987), + [anon_sym_L_DQUOTE] = ACTIONS(2987), + [anon_sym_u_DQUOTE] = ACTIONS(2987), + [anon_sym_U_DQUOTE] = ACTIONS(2987), + [anon_sym_u8_DQUOTE] = ACTIONS(2987), + [anon_sym_DQUOTE] = ACTIONS(2987), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [anon_sym_NULL] = ACTIONS(2985), + [anon_sym_nullptr] = ACTIONS(2985), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3091), - [anon_sym_decltype] = ACTIONS(3091), - [anon_sym_virtual] = ACTIONS(3091), - [anon_sym_alignas] = ACTIONS(3091), - [anon_sym_explicit] = ACTIONS(3091), - [anon_sym_typename] = ACTIONS(3091), - [anon_sym_template] = ACTIONS(3091), - [anon_sym_operator] = ACTIONS(3091), - [anon_sym_try] = ACTIONS(3091), - [anon_sym_delete] = ACTIONS(3091), - [anon_sym_throw] = ACTIONS(3091), - [anon_sym_namespace] = ACTIONS(3091), - [anon_sym_using] = ACTIONS(3091), - [anon_sym_static_assert] = ACTIONS(3091), - [anon_sym_concept] = ACTIONS(3091), - [anon_sym_co_return] = ACTIONS(3091), - [anon_sym_co_yield] = ACTIONS(3091), - [anon_sym_R_DQUOTE] = ACTIONS(3093), - [anon_sym_LR_DQUOTE] = ACTIONS(3093), - [anon_sym_uR_DQUOTE] = ACTIONS(3093), - [anon_sym_UR_DQUOTE] = ACTIONS(3093), - [anon_sym_u8R_DQUOTE] = ACTIONS(3093), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3091), - [anon_sym_requires] = ACTIONS(3091), - [sym_this] = ACTIONS(3091), + [sym_auto] = ACTIONS(2985), + [anon_sym_decltype] = ACTIONS(2985), + [anon_sym_virtual] = ACTIONS(2985), + [anon_sym_alignas] = ACTIONS(2985), + [anon_sym_explicit] = ACTIONS(2985), + [anon_sym_typename] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(2985), + [anon_sym_operator] = ACTIONS(2985), + [anon_sym_try] = ACTIONS(2985), + [anon_sym_delete] = ACTIONS(2985), + [anon_sym_throw] = ACTIONS(2985), + [anon_sym_namespace] = ACTIONS(2985), + [anon_sym_using] = ACTIONS(2985), + [anon_sym_static_assert] = ACTIONS(2985), + [anon_sym_concept] = ACTIONS(2985), + [anon_sym_co_return] = ACTIONS(2985), + [anon_sym_co_yield] = ACTIONS(2985), + [anon_sym_R_DQUOTE] = ACTIONS(2987), + [anon_sym_LR_DQUOTE] = ACTIONS(2987), + [anon_sym_uR_DQUOTE] = ACTIONS(2987), + [anon_sym_UR_DQUOTE] = ACTIONS(2987), + [anon_sym_u8R_DQUOTE] = ACTIONS(2987), + [anon_sym_co_await] = ACTIONS(2985), + [anon_sym_new] = ACTIONS(2985), + [anon_sym_requires] = ACTIONS(2985), + [sym_this] = ACTIONS(2985), }, - [519] = { - [sym_identifier] = ACTIONS(3095), - [aux_sym_preproc_include_token1] = ACTIONS(3095), - [aux_sym_preproc_def_token1] = ACTIONS(3095), - [aux_sym_preproc_if_token1] = ACTIONS(3095), - [aux_sym_preproc_if_token2] = ACTIONS(3095), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), - [aux_sym_preproc_else_token1] = ACTIONS(3095), - [aux_sym_preproc_elif_token1] = ACTIONS(3095), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3095), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3095), - [sym_preproc_directive] = ACTIONS(3095), - [anon_sym_LPAREN2] = ACTIONS(3097), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym___extension__] = ACTIONS(3095), - [anon_sym_typedef] = ACTIONS(3095), - [anon_sym_extern] = ACTIONS(3095), - [anon_sym___attribute__] = ACTIONS(3095), - [anon_sym_COLON_COLON] = ACTIONS(3097), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), - [anon_sym___declspec] = ACTIONS(3095), - [anon_sym___based] = ACTIONS(3095), - [anon_sym___cdecl] = ACTIONS(3095), - [anon_sym___clrcall] = ACTIONS(3095), - [anon_sym___stdcall] = ACTIONS(3095), - [anon_sym___fastcall] = ACTIONS(3095), - [anon_sym___thiscall] = ACTIONS(3095), - [anon_sym___vectorcall] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_signed] = ACTIONS(3095), - [anon_sym_unsigned] = ACTIONS(3095), - [anon_sym_long] = ACTIONS(3095), - [anon_sym_short] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_register] = ACTIONS(3095), - [anon_sym_inline] = ACTIONS(3095), - [anon_sym___inline] = ACTIONS(3095), - [anon_sym___inline__] = ACTIONS(3095), - [anon_sym___forceinline] = ACTIONS(3095), - [anon_sym_thread_local] = ACTIONS(3095), - [anon_sym___thread] = ACTIONS(3095), - [anon_sym_const] = ACTIONS(3095), - [anon_sym_constexpr] = ACTIONS(3095), - [anon_sym_volatile] = ACTIONS(3095), - [anon_sym_restrict] = ACTIONS(3095), - [anon_sym___restrict__] = ACTIONS(3095), - [anon_sym__Atomic] = ACTIONS(3095), - [anon_sym__Noreturn] = ACTIONS(3095), - [anon_sym_noreturn] = ACTIONS(3095), - [anon_sym_mutable] = ACTIONS(3095), - [anon_sym_constinit] = ACTIONS(3095), - [anon_sym_consteval] = ACTIONS(3095), - [sym_primitive_type] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_union] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3095), - [anon_sym_else] = ACTIONS(3095), - [anon_sym_switch] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_default] = ACTIONS(3095), - [anon_sym_while] = ACTIONS(3095), - [anon_sym_do] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3095), - [anon_sym_return] = ACTIONS(3095), - [anon_sym_break] = ACTIONS(3095), - [anon_sym_continue] = ACTIONS(3095), - [anon_sym_goto] = ACTIONS(3095), - [anon_sym_not] = ACTIONS(3095), - [anon_sym_compl] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_sizeof] = ACTIONS(3095), - [anon_sym___alignof__] = ACTIONS(3095), - [anon_sym___alignof] = ACTIONS(3095), - [anon_sym__alignof] = ACTIONS(3095), - [anon_sym_alignof] = ACTIONS(3095), - [anon_sym__Alignof] = ACTIONS(3095), - [anon_sym_offsetof] = ACTIONS(3095), - [anon_sym__Generic] = ACTIONS(3095), - [anon_sym_asm] = ACTIONS(3095), - [anon_sym___asm__] = ACTIONS(3095), - [sym_number_literal] = ACTIONS(3097), - [anon_sym_L_SQUOTE] = ACTIONS(3097), - [anon_sym_u_SQUOTE] = ACTIONS(3097), - [anon_sym_U_SQUOTE] = ACTIONS(3097), - [anon_sym_u8_SQUOTE] = ACTIONS(3097), - [anon_sym_SQUOTE] = ACTIONS(3097), - [anon_sym_L_DQUOTE] = ACTIONS(3097), - [anon_sym_u_DQUOTE] = ACTIONS(3097), - [anon_sym_U_DQUOTE] = ACTIONS(3097), - [anon_sym_u8_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE] = ACTIONS(3097), - [sym_true] = ACTIONS(3095), - [sym_false] = ACTIONS(3095), - [anon_sym_NULL] = ACTIONS(3095), - [anon_sym_nullptr] = ACTIONS(3095), + [581] = { + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [582] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3095), - [anon_sym_decltype] = ACTIONS(3095), - [anon_sym_virtual] = ACTIONS(3095), - [anon_sym_alignas] = ACTIONS(3095), - [anon_sym_explicit] = ACTIONS(3095), - [anon_sym_typename] = ACTIONS(3095), - [anon_sym_template] = ACTIONS(3095), - [anon_sym_operator] = ACTIONS(3095), - [anon_sym_try] = ACTIONS(3095), - [anon_sym_delete] = ACTIONS(3095), - [anon_sym_throw] = ACTIONS(3095), - [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_using] = ACTIONS(3095), - [anon_sym_static_assert] = ACTIONS(3095), - [anon_sym_concept] = ACTIONS(3095), - [anon_sym_co_return] = ACTIONS(3095), - [anon_sym_co_yield] = ACTIONS(3095), - [anon_sym_R_DQUOTE] = ACTIONS(3097), - [anon_sym_LR_DQUOTE] = ACTIONS(3097), - [anon_sym_uR_DQUOTE] = ACTIONS(3097), - [anon_sym_UR_DQUOTE] = ACTIONS(3097), - [anon_sym_u8R_DQUOTE] = ACTIONS(3097), - [anon_sym_co_await] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_requires] = ACTIONS(3095), - [sym_this] = ACTIONS(3095), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [520] = { - [sym_identifier] = ACTIONS(3099), - [aux_sym_preproc_include_token1] = ACTIONS(3099), - [aux_sym_preproc_def_token1] = ACTIONS(3099), - [aux_sym_preproc_if_token1] = ACTIONS(3099), - [aux_sym_preproc_if_token2] = ACTIONS(3099), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), - [aux_sym_preproc_else_token1] = ACTIONS(3099), - [aux_sym_preproc_elif_token1] = ACTIONS(3099), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3099), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3099), - [sym_preproc_directive] = ACTIONS(3099), - [anon_sym_LPAREN2] = ACTIONS(3101), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3101), - [anon_sym___extension__] = ACTIONS(3099), - [anon_sym_typedef] = ACTIONS(3099), - [anon_sym_extern] = ACTIONS(3099), - [anon_sym___attribute__] = ACTIONS(3099), - [anon_sym_COLON_COLON] = ACTIONS(3101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), - [anon_sym___declspec] = ACTIONS(3099), - [anon_sym___based] = ACTIONS(3099), - [anon_sym___cdecl] = ACTIONS(3099), - [anon_sym___clrcall] = ACTIONS(3099), - [anon_sym___stdcall] = ACTIONS(3099), - [anon_sym___fastcall] = ACTIONS(3099), - [anon_sym___thiscall] = ACTIONS(3099), - [anon_sym___vectorcall] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_signed] = ACTIONS(3099), - [anon_sym_unsigned] = ACTIONS(3099), - [anon_sym_long] = ACTIONS(3099), - [anon_sym_short] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_register] = ACTIONS(3099), - [anon_sym_inline] = ACTIONS(3099), - [anon_sym___inline] = ACTIONS(3099), - [anon_sym___inline__] = ACTIONS(3099), - [anon_sym___forceinline] = ACTIONS(3099), - [anon_sym_thread_local] = ACTIONS(3099), - [anon_sym___thread] = ACTIONS(3099), - [anon_sym_const] = ACTIONS(3099), - [anon_sym_constexpr] = ACTIONS(3099), - [anon_sym_volatile] = ACTIONS(3099), - [anon_sym_restrict] = ACTIONS(3099), - [anon_sym___restrict__] = ACTIONS(3099), - [anon_sym__Atomic] = ACTIONS(3099), - [anon_sym__Noreturn] = ACTIONS(3099), - [anon_sym_noreturn] = ACTIONS(3099), - [anon_sym_mutable] = ACTIONS(3099), - [anon_sym_constinit] = ACTIONS(3099), - [anon_sym_consteval] = ACTIONS(3099), - [sym_primitive_type] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_union] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3099), - [anon_sym_switch] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_default] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_break] = ACTIONS(3099), - [anon_sym_continue] = ACTIONS(3099), - [anon_sym_goto] = ACTIONS(3099), - [anon_sym_not] = ACTIONS(3099), - [anon_sym_compl] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3101), - [anon_sym_sizeof] = ACTIONS(3099), - [anon_sym___alignof__] = ACTIONS(3099), - [anon_sym___alignof] = ACTIONS(3099), - [anon_sym__alignof] = ACTIONS(3099), - [anon_sym_alignof] = ACTIONS(3099), - [anon_sym__Alignof] = ACTIONS(3099), - [anon_sym_offsetof] = ACTIONS(3099), - [anon_sym__Generic] = ACTIONS(3099), - [anon_sym_asm] = ACTIONS(3099), - [anon_sym___asm__] = ACTIONS(3099), - [sym_number_literal] = ACTIONS(3101), - [anon_sym_L_SQUOTE] = ACTIONS(3101), - [anon_sym_u_SQUOTE] = ACTIONS(3101), - [anon_sym_U_SQUOTE] = ACTIONS(3101), - [anon_sym_u8_SQUOTE] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3101), - [anon_sym_L_DQUOTE] = ACTIONS(3101), - [anon_sym_u_DQUOTE] = ACTIONS(3101), - [anon_sym_U_DQUOTE] = ACTIONS(3101), - [anon_sym_u8_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [anon_sym_NULL] = ACTIONS(3099), - [anon_sym_nullptr] = ACTIONS(3099), + [583] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3099), - [anon_sym_decltype] = ACTIONS(3099), - [anon_sym_virtual] = ACTIONS(3099), - [anon_sym_alignas] = ACTIONS(3099), - [anon_sym_explicit] = ACTIONS(3099), - [anon_sym_typename] = ACTIONS(3099), - [anon_sym_template] = ACTIONS(3099), - [anon_sym_operator] = ACTIONS(3099), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_delete] = ACTIONS(3099), - [anon_sym_throw] = ACTIONS(3099), - [anon_sym_namespace] = ACTIONS(3099), - [anon_sym_using] = ACTIONS(3099), - [anon_sym_static_assert] = ACTIONS(3099), - [anon_sym_concept] = ACTIONS(3099), - [anon_sym_co_return] = ACTIONS(3099), - [anon_sym_co_yield] = ACTIONS(3099), - [anon_sym_R_DQUOTE] = ACTIONS(3101), - [anon_sym_LR_DQUOTE] = ACTIONS(3101), - [anon_sym_uR_DQUOTE] = ACTIONS(3101), - [anon_sym_UR_DQUOTE] = ACTIONS(3101), - [anon_sym_u8R_DQUOTE] = ACTIONS(3101), - [anon_sym_co_await] = ACTIONS(3099), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_requires] = ACTIONS(3099), - [sym_this] = ACTIONS(3099), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [521] = { - [sym_identifier] = ACTIONS(3103), - [aux_sym_preproc_include_token1] = ACTIONS(3103), - [aux_sym_preproc_def_token1] = ACTIONS(3103), - [aux_sym_preproc_if_token1] = ACTIONS(3103), - [aux_sym_preproc_if_token2] = ACTIONS(3103), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), - [aux_sym_preproc_else_token1] = ACTIONS(3103), - [aux_sym_preproc_elif_token1] = ACTIONS(3103), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3103), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3103), - [sym_preproc_directive] = ACTIONS(3103), - [anon_sym_LPAREN2] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_AMP_AMP] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_SEMI] = ACTIONS(3105), - [anon_sym___extension__] = ACTIONS(3103), - [anon_sym_typedef] = ACTIONS(3103), - [anon_sym_extern] = ACTIONS(3103), - [anon_sym___attribute__] = ACTIONS(3103), - [anon_sym_COLON_COLON] = ACTIONS(3105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), - [anon_sym___declspec] = ACTIONS(3103), - [anon_sym___based] = ACTIONS(3103), - [anon_sym___cdecl] = ACTIONS(3103), - [anon_sym___clrcall] = ACTIONS(3103), - [anon_sym___stdcall] = ACTIONS(3103), - [anon_sym___fastcall] = ACTIONS(3103), - [anon_sym___thiscall] = ACTIONS(3103), - [anon_sym___vectorcall] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_signed] = ACTIONS(3103), - [anon_sym_unsigned] = ACTIONS(3103), - [anon_sym_long] = ACTIONS(3103), - [anon_sym_short] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_register] = ACTIONS(3103), - [anon_sym_inline] = ACTIONS(3103), - [anon_sym___inline] = ACTIONS(3103), - [anon_sym___inline__] = ACTIONS(3103), - [anon_sym___forceinline] = ACTIONS(3103), - [anon_sym_thread_local] = ACTIONS(3103), - [anon_sym___thread] = ACTIONS(3103), - [anon_sym_const] = ACTIONS(3103), - [anon_sym_constexpr] = ACTIONS(3103), - [anon_sym_volatile] = ACTIONS(3103), - [anon_sym_restrict] = ACTIONS(3103), - [anon_sym___restrict__] = ACTIONS(3103), - [anon_sym__Atomic] = ACTIONS(3103), - [anon_sym__Noreturn] = ACTIONS(3103), - [anon_sym_noreturn] = ACTIONS(3103), - [anon_sym_mutable] = ACTIONS(3103), - [anon_sym_constinit] = ACTIONS(3103), - [anon_sym_consteval] = ACTIONS(3103), - [sym_primitive_type] = ACTIONS(3103), - [anon_sym_enum] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_union] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3103), - [anon_sym_else] = ACTIONS(3103), - [anon_sym_switch] = ACTIONS(3103), - [anon_sym_case] = ACTIONS(3103), - [anon_sym_default] = ACTIONS(3103), - [anon_sym_while] = ACTIONS(3103), - [anon_sym_do] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3103), - [anon_sym_return] = ACTIONS(3103), - [anon_sym_break] = ACTIONS(3103), - [anon_sym_continue] = ACTIONS(3103), - [anon_sym_goto] = ACTIONS(3103), - [anon_sym_not] = ACTIONS(3103), - [anon_sym_compl] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3105), - [anon_sym_sizeof] = ACTIONS(3103), - [anon_sym___alignof__] = ACTIONS(3103), - [anon_sym___alignof] = ACTIONS(3103), - [anon_sym__alignof] = ACTIONS(3103), - [anon_sym_alignof] = ACTIONS(3103), - [anon_sym__Alignof] = ACTIONS(3103), - [anon_sym_offsetof] = ACTIONS(3103), - [anon_sym__Generic] = ACTIONS(3103), - [anon_sym_asm] = ACTIONS(3103), - [anon_sym___asm__] = ACTIONS(3103), - [sym_number_literal] = ACTIONS(3105), - [anon_sym_L_SQUOTE] = ACTIONS(3105), - [anon_sym_u_SQUOTE] = ACTIONS(3105), - [anon_sym_U_SQUOTE] = ACTIONS(3105), - [anon_sym_u8_SQUOTE] = ACTIONS(3105), - [anon_sym_SQUOTE] = ACTIONS(3105), - [anon_sym_L_DQUOTE] = ACTIONS(3105), - [anon_sym_u_DQUOTE] = ACTIONS(3105), - [anon_sym_U_DQUOTE] = ACTIONS(3105), - [anon_sym_u8_DQUOTE] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym_true] = ACTIONS(3103), - [sym_false] = ACTIONS(3103), - [anon_sym_NULL] = ACTIONS(3103), - [anon_sym_nullptr] = ACTIONS(3103), + [584] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3103), - [anon_sym_decltype] = ACTIONS(3103), - [anon_sym_virtual] = ACTIONS(3103), - [anon_sym_alignas] = ACTIONS(3103), - [anon_sym_explicit] = ACTIONS(3103), - [anon_sym_typename] = ACTIONS(3103), - [anon_sym_template] = ACTIONS(3103), - [anon_sym_operator] = ACTIONS(3103), - [anon_sym_try] = ACTIONS(3103), - [anon_sym_delete] = ACTIONS(3103), - [anon_sym_throw] = ACTIONS(3103), - [anon_sym_namespace] = ACTIONS(3103), - [anon_sym_using] = ACTIONS(3103), - [anon_sym_static_assert] = ACTIONS(3103), - [anon_sym_concept] = ACTIONS(3103), - [anon_sym_co_return] = ACTIONS(3103), - [anon_sym_co_yield] = ACTIONS(3103), - [anon_sym_R_DQUOTE] = ACTIONS(3105), - [anon_sym_LR_DQUOTE] = ACTIONS(3105), - [anon_sym_uR_DQUOTE] = ACTIONS(3105), - [anon_sym_UR_DQUOTE] = ACTIONS(3105), - [anon_sym_u8R_DQUOTE] = ACTIONS(3105), - [anon_sym_co_await] = ACTIONS(3103), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_requires] = ACTIONS(3103), - [sym_this] = ACTIONS(3103), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [522] = { - [sym_identifier] = ACTIONS(3107), - [aux_sym_preproc_include_token1] = ACTIONS(3107), - [aux_sym_preproc_def_token1] = ACTIONS(3107), - [aux_sym_preproc_if_token1] = ACTIONS(3107), - [aux_sym_preproc_if_token2] = ACTIONS(3107), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3107), - [aux_sym_preproc_else_token1] = ACTIONS(3107), - [aux_sym_preproc_elif_token1] = ACTIONS(3107), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3107), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3107), - [sym_preproc_directive] = ACTIONS(3107), - [anon_sym_LPAREN2] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3109), - [anon_sym___extension__] = ACTIONS(3107), - [anon_sym_typedef] = ACTIONS(3107), - [anon_sym_extern] = ACTIONS(3107), - [anon_sym___attribute__] = ACTIONS(3107), - [anon_sym_COLON_COLON] = ACTIONS(3109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), - [anon_sym___declspec] = ACTIONS(3107), - [anon_sym___based] = ACTIONS(3107), - [anon_sym___cdecl] = ACTIONS(3107), - [anon_sym___clrcall] = ACTIONS(3107), - [anon_sym___stdcall] = ACTIONS(3107), - [anon_sym___fastcall] = ACTIONS(3107), - [anon_sym___thiscall] = ACTIONS(3107), - [anon_sym___vectorcall] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_signed] = ACTIONS(3107), - [anon_sym_unsigned] = ACTIONS(3107), - [anon_sym_long] = ACTIONS(3107), - [anon_sym_short] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_register] = ACTIONS(3107), - [anon_sym_inline] = ACTIONS(3107), - [anon_sym___inline] = ACTIONS(3107), - [anon_sym___inline__] = ACTIONS(3107), - [anon_sym___forceinline] = ACTIONS(3107), - [anon_sym_thread_local] = ACTIONS(3107), - [anon_sym___thread] = ACTIONS(3107), - [anon_sym_const] = ACTIONS(3107), - [anon_sym_constexpr] = ACTIONS(3107), - [anon_sym_volatile] = ACTIONS(3107), - [anon_sym_restrict] = ACTIONS(3107), - [anon_sym___restrict__] = ACTIONS(3107), - [anon_sym__Atomic] = ACTIONS(3107), - [anon_sym__Noreturn] = ACTIONS(3107), - [anon_sym_noreturn] = ACTIONS(3107), - [anon_sym_mutable] = ACTIONS(3107), - [anon_sym_constinit] = ACTIONS(3107), - [anon_sym_consteval] = ACTIONS(3107), - [sym_primitive_type] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3107), - [anon_sym_union] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3107), - [anon_sym_else] = ACTIONS(3107), - [anon_sym_switch] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_default] = ACTIONS(3107), - [anon_sym_while] = ACTIONS(3107), - [anon_sym_do] = ACTIONS(3107), - [anon_sym_for] = ACTIONS(3107), - [anon_sym_return] = ACTIONS(3107), - [anon_sym_break] = ACTIONS(3107), - [anon_sym_continue] = ACTIONS(3107), - [anon_sym_goto] = ACTIONS(3107), - [anon_sym_not] = ACTIONS(3107), - [anon_sym_compl] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3109), - [anon_sym_sizeof] = ACTIONS(3107), - [anon_sym___alignof__] = ACTIONS(3107), - [anon_sym___alignof] = ACTIONS(3107), - [anon_sym__alignof] = ACTIONS(3107), - [anon_sym_alignof] = ACTIONS(3107), - [anon_sym__Alignof] = ACTIONS(3107), - [anon_sym_offsetof] = ACTIONS(3107), - [anon_sym__Generic] = ACTIONS(3107), - [anon_sym_asm] = ACTIONS(3107), - [anon_sym___asm__] = ACTIONS(3107), - [sym_number_literal] = ACTIONS(3109), - [anon_sym_L_SQUOTE] = ACTIONS(3109), - [anon_sym_u_SQUOTE] = ACTIONS(3109), - [anon_sym_U_SQUOTE] = ACTIONS(3109), - [anon_sym_u8_SQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3109), - [anon_sym_L_DQUOTE] = ACTIONS(3109), - [anon_sym_u_DQUOTE] = ACTIONS(3109), - [anon_sym_U_DQUOTE] = ACTIONS(3109), - [anon_sym_u8_DQUOTE] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(3109), - [sym_true] = ACTIONS(3107), - [sym_false] = ACTIONS(3107), - [anon_sym_NULL] = ACTIONS(3107), - [anon_sym_nullptr] = ACTIONS(3107), + [585] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3107), - [anon_sym_decltype] = ACTIONS(3107), - [anon_sym_virtual] = ACTIONS(3107), - [anon_sym_alignas] = ACTIONS(3107), - [anon_sym_explicit] = ACTIONS(3107), - [anon_sym_typename] = ACTIONS(3107), - [anon_sym_template] = ACTIONS(3107), - [anon_sym_operator] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(3107), - [anon_sym_delete] = ACTIONS(3107), - [anon_sym_throw] = ACTIONS(3107), - [anon_sym_namespace] = ACTIONS(3107), - [anon_sym_using] = ACTIONS(3107), - [anon_sym_static_assert] = ACTIONS(3107), - [anon_sym_concept] = ACTIONS(3107), - [anon_sym_co_return] = ACTIONS(3107), - [anon_sym_co_yield] = ACTIONS(3107), - [anon_sym_R_DQUOTE] = ACTIONS(3109), - [anon_sym_LR_DQUOTE] = ACTIONS(3109), - [anon_sym_uR_DQUOTE] = ACTIONS(3109), - [anon_sym_UR_DQUOTE] = ACTIONS(3109), - [anon_sym_u8R_DQUOTE] = ACTIONS(3109), - [anon_sym_co_await] = ACTIONS(3107), - [anon_sym_new] = ACTIONS(3107), - [anon_sym_requires] = ACTIONS(3107), - [sym_this] = ACTIONS(3107), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [523] = { - [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_extern] = ACTIONS(3111), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3111), - [anon_sym_constinit] = ACTIONS(3111), - [anon_sym_consteval] = 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_else] = 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), - [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), + [586] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3111), - [anon_sym_decltype] = ACTIONS(3111), - [anon_sym_virtual] = ACTIONS(3111), - [anon_sym_alignas] = 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_using] = 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), - }, - [524] = { - [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_extern] = ACTIONS(3115), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3115), - [anon_sym_constinit] = ACTIONS(3115), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3115), - [anon_sym_alignas] = 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_using] = 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), - }, - [525] = { - [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_extern] = ACTIONS(3119), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3119), - [anon_sym_constinit] = ACTIONS(3119), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3119), - [anon_sym_alignas] = 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_using] = 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), - }, - [526] = { - [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_extern] = ACTIONS(3123), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3123), - [anon_sym_constinit] = ACTIONS(3123), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3123), - [anon_sym_alignas] = 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_using] = 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), - }, - [527] = { - [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_extern] = ACTIONS(3123), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3123), - [anon_sym_constinit] = ACTIONS(3123), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3123), - [anon_sym_alignas] = 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_using] = 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), - }, - [528] = { - [sym_type_qualifier] = STATE(4728), - [sym__type_specifier] = STATE(5568), - [sym_sized_type_specifier] = STATE(3614), - [sym_enum_specifier] = STATE(3614), - [sym_struct_specifier] = STATE(3614), - [sym_union_specifier] = STATE(3614), - [sym__expression] = STATE(5012), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_type_descriptor] = STATE(7824), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_placeholder_type_specifier] = STATE(3614), - [sym_decltype_auto] = STATE(3612), - [sym_decltype] = STATE(3593), - [sym_class_specifier] = STATE(3614), - [sym__class_name] = STATE(8694), - [sym_dependent_type] = STATE(3614), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_type_parameter_pack_expansion] = STATE(8059), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6421), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4285), - [aux_sym_type_definition_repeat1] = STATE(4728), - [aux_sym_sized_type_specifier_repeat1] = STATE(3032), - [sym_identifier] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3173), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_GT2] = ACTIONS(3179), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), - }, - [529] = { - [sym_identifier] = ACTIONS(3191), - [aux_sym_preproc_include_token1] = ACTIONS(3191), - [aux_sym_preproc_def_token1] = ACTIONS(3191), - [aux_sym_preproc_if_token1] = ACTIONS(3191), - [aux_sym_preproc_if_token2] = ACTIONS(3191), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3191), - [aux_sym_preproc_else_token1] = ACTIONS(3191), - [aux_sym_preproc_elif_token1] = ACTIONS(3191), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3191), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3191), - [sym_preproc_directive] = ACTIONS(3191), - [anon_sym_LPAREN2] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3191), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym___extension__] = ACTIONS(3191), - [anon_sym_typedef] = ACTIONS(3191), - [anon_sym_extern] = ACTIONS(3191), - [anon_sym___attribute__] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(3193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3193), - [anon_sym___declspec] = ACTIONS(3191), - [anon_sym___based] = ACTIONS(3191), - [anon_sym___cdecl] = ACTIONS(3191), - [anon_sym___clrcall] = ACTIONS(3191), - [anon_sym___stdcall] = ACTIONS(3191), - [anon_sym___fastcall] = ACTIONS(3191), - [anon_sym___thiscall] = ACTIONS(3191), - [anon_sym___vectorcall] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_signed] = ACTIONS(3191), - [anon_sym_unsigned] = ACTIONS(3191), - [anon_sym_long] = ACTIONS(3191), - [anon_sym_short] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_static] = ACTIONS(3191), - [anon_sym_register] = ACTIONS(3191), - [anon_sym_inline] = ACTIONS(3191), - [anon_sym___inline] = ACTIONS(3191), - [anon_sym___inline__] = ACTIONS(3191), - [anon_sym___forceinline] = ACTIONS(3191), - [anon_sym_thread_local] = ACTIONS(3191), - [anon_sym___thread] = ACTIONS(3191), - [anon_sym_const] = ACTIONS(3191), - [anon_sym_constexpr] = ACTIONS(3191), - [anon_sym_volatile] = ACTIONS(3191), - [anon_sym_restrict] = ACTIONS(3191), - [anon_sym___restrict__] = ACTIONS(3191), - [anon_sym__Atomic] = ACTIONS(3191), - [anon_sym__Noreturn] = ACTIONS(3191), - [anon_sym_noreturn] = ACTIONS(3191), - [anon_sym_mutable] = ACTIONS(3191), - [anon_sym_constinit] = ACTIONS(3191), - [anon_sym_consteval] = ACTIONS(3191), - [sym_primitive_type] = ACTIONS(3191), - [anon_sym_enum] = ACTIONS(3191), - [anon_sym_class] = ACTIONS(3191), - [anon_sym_struct] = ACTIONS(3191), - [anon_sym_union] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_switch] = ACTIONS(3191), - [anon_sym_case] = ACTIONS(3191), - [anon_sym_default] = ACTIONS(3191), - [anon_sym_while] = ACTIONS(3191), - [anon_sym_do] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3191), - [anon_sym_return] = ACTIONS(3191), - [anon_sym_break] = ACTIONS(3191), - [anon_sym_continue] = ACTIONS(3191), - [anon_sym_goto] = ACTIONS(3191), - [anon_sym_not] = ACTIONS(3191), - [anon_sym_compl] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_sizeof] = ACTIONS(3191), - [anon_sym___alignof__] = ACTIONS(3191), - [anon_sym___alignof] = ACTIONS(3191), - [anon_sym__alignof] = ACTIONS(3191), - [anon_sym_alignof] = ACTIONS(3191), - [anon_sym__Alignof] = ACTIONS(3191), - [anon_sym_offsetof] = ACTIONS(3191), - [anon_sym__Generic] = ACTIONS(3191), - [anon_sym_asm] = ACTIONS(3191), - [anon_sym___asm__] = ACTIONS(3191), - [sym_number_literal] = ACTIONS(3193), - [anon_sym_L_SQUOTE] = ACTIONS(3193), - [anon_sym_u_SQUOTE] = ACTIONS(3193), - [anon_sym_U_SQUOTE] = ACTIONS(3193), - [anon_sym_u8_SQUOTE] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3193), - [anon_sym_L_DQUOTE] = ACTIONS(3193), - [anon_sym_u_DQUOTE] = ACTIONS(3193), - [anon_sym_U_DQUOTE] = ACTIONS(3193), - [anon_sym_u8_DQUOTE] = ACTIONS(3193), - [anon_sym_DQUOTE] = ACTIONS(3193), - [sym_true] = ACTIONS(3191), - [sym_false] = ACTIONS(3191), - [anon_sym_NULL] = ACTIONS(3191), - [anon_sym_nullptr] = ACTIONS(3191), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3191), - [anon_sym_decltype] = ACTIONS(3191), - [anon_sym_virtual] = ACTIONS(3191), - [anon_sym_alignas] = ACTIONS(3191), - [anon_sym_explicit] = ACTIONS(3191), - [anon_sym_typename] = ACTIONS(3191), - [anon_sym_template] = ACTIONS(3191), - [anon_sym_operator] = ACTIONS(3191), - [anon_sym_try] = ACTIONS(3191), - [anon_sym_delete] = ACTIONS(3191), - [anon_sym_throw] = ACTIONS(3191), - [anon_sym_namespace] = ACTIONS(3191), - [anon_sym_using] = ACTIONS(3191), - [anon_sym_static_assert] = ACTIONS(3191), - [anon_sym_concept] = ACTIONS(3191), - [anon_sym_co_return] = ACTIONS(3191), - [anon_sym_co_yield] = ACTIONS(3191), - [anon_sym_R_DQUOTE] = ACTIONS(3193), - [anon_sym_LR_DQUOTE] = ACTIONS(3193), - [anon_sym_uR_DQUOTE] = ACTIONS(3193), - [anon_sym_UR_DQUOTE] = ACTIONS(3193), - [anon_sym_u8R_DQUOTE] = ACTIONS(3193), - [anon_sym_co_await] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3191), - [anon_sym_requires] = ACTIONS(3191), - [sym_this] = ACTIONS(3191), - }, - [530] = { - [sym_identifier] = ACTIONS(3195), - [aux_sym_preproc_include_token1] = ACTIONS(3195), - [aux_sym_preproc_def_token1] = ACTIONS(3195), - [aux_sym_preproc_if_token1] = ACTIONS(3195), - [aux_sym_preproc_if_token2] = ACTIONS(3195), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3195), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3195), - [aux_sym_preproc_else_token1] = ACTIONS(3195), - [aux_sym_preproc_elif_token1] = ACTIONS(3195), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3195), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3195), - [sym_preproc_directive] = ACTIONS(3195), - [anon_sym_LPAREN2] = ACTIONS(3197), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_SEMI] = ACTIONS(3197), - [anon_sym___extension__] = ACTIONS(3195), - [anon_sym_typedef] = ACTIONS(3195), - [anon_sym_extern] = ACTIONS(3195), - [anon_sym___attribute__] = ACTIONS(3195), - [anon_sym_COLON_COLON] = ACTIONS(3197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3197), - [anon_sym___declspec] = ACTIONS(3195), - [anon_sym___based] = ACTIONS(3195), - [anon_sym___cdecl] = ACTIONS(3195), - [anon_sym___clrcall] = ACTIONS(3195), - [anon_sym___stdcall] = ACTIONS(3195), - [anon_sym___fastcall] = ACTIONS(3195), - [anon_sym___thiscall] = ACTIONS(3195), - [anon_sym___vectorcall] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_signed] = ACTIONS(3195), - [anon_sym_unsigned] = ACTIONS(3195), - [anon_sym_long] = ACTIONS(3195), - [anon_sym_short] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_static] = ACTIONS(3195), - [anon_sym_register] = ACTIONS(3195), - [anon_sym_inline] = ACTIONS(3195), - [anon_sym___inline] = ACTIONS(3195), - [anon_sym___inline__] = ACTIONS(3195), - [anon_sym___forceinline] = ACTIONS(3195), - [anon_sym_thread_local] = ACTIONS(3195), - [anon_sym___thread] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_constexpr] = ACTIONS(3195), - [anon_sym_volatile] = ACTIONS(3195), - [anon_sym_restrict] = ACTIONS(3195), - [anon_sym___restrict__] = ACTIONS(3195), - [anon_sym__Atomic] = ACTIONS(3195), - [anon_sym__Noreturn] = ACTIONS(3195), - [anon_sym_noreturn] = ACTIONS(3195), - [anon_sym_mutable] = ACTIONS(3195), - [anon_sym_constinit] = ACTIONS(3195), - [anon_sym_consteval] = ACTIONS(3195), - [sym_primitive_type] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3195), - [anon_sym_class] = ACTIONS(3195), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_union] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_switch] = ACTIONS(3195), - [anon_sym_case] = ACTIONS(3195), - [anon_sym_default] = ACTIONS(3195), - [anon_sym_while] = ACTIONS(3195), - [anon_sym_do] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_goto] = ACTIONS(3195), - [anon_sym_not] = ACTIONS(3195), - [anon_sym_compl] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_sizeof] = ACTIONS(3195), - [anon_sym___alignof__] = ACTIONS(3195), - [anon_sym___alignof] = ACTIONS(3195), - [anon_sym__alignof] = ACTIONS(3195), - [anon_sym_alignof] = ACTIONS(3195), - [anon_sym__Alignof] = ACTIONS(3195), - [anon_sym_offsetof] = ACTIONS(3195), - [anon_sym__Generic] = ACTIONS(3195), - [anon_sym_asm] = ACTIONS(3195), - [anon_sym___asm__] = ACTIONS(3195), - [sym_number_literal] = ACTIONS(3197), - [anon_sym_L_SQUOTE] = ACTIONS(3197), - [anon_sym_u_SQUOTE] = ACTIONS(3197), - [anon_sym_U_SQUOTE] = ACTIONS(3197), - [anon_sym_u8_SQUOTE] = ACTIONS(3197), - [anon_sym_SQUOTE] = ACTIONS(3197), - [anon_sym_L_DQUOTE] = ACTIONS(3197), - [anon_sym_u_DQUOTE] = ACTIONS(3197), - [anon_sym_U_DQUOTE] = ACTIONS(3197), - [anon_sym_u8_DQUOTE] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3197), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [anon_sym_NULL] = ACTIONS(3195), - [anon_sym_nullptr] = ACTIONS(3195), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3195), - [anon_sym_decltype] = ACTIONS(3195), - [anon_sym_virtual] = ACTIONS(3195), - [anon_sym_alignas] = ACTIONS(3195), - [anon_sym_explicit] = ACTIONS(3195), - [anon_sym_typename] = ACTIONS(3195), - [anon_sym_template] = ACTIONS(3195), - [anon_sym_operator] = ACTIONS(3195), - [anon_sym_try] = ACTIONS(3195), - [anon_sym_delete] = ACTIONS(3195), - [anon_sym_throw] = ACTIONS(3195), - [anon_sym_namespace] = ACTIONS(3195), - [anon_sym_using] = ACTIONS(3195), - [anon_sym_static_assert] = ACTIONS(3195), - [anon_sym_concept] = ACTIONS(3195), - [anon_sym_co_return] = ACTIONS(3195), - [anon_sym_co_yield] = ACTIONS(3195), - [anon_sym_R_DQUOTE] = ACTIONS(3197), - [anon_sym_LR_DQUOTE] = ACTIONS(3197), - [anon_sym_uR_DQUOTE] = ACTIONS(3197), - [anon_sym_UR_DQUOTE] = ACTIONS(3197), - [anon_sym_u8R_DQUOTE] = ACTIONS(3197), - [anon_sym_co_await] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3195), - [anon_sym_requires] = ACTIONS(3195), - [sym_this] = ACTIONS(3195), - }, - [531] = { - [sym_identifier] = ACTIONS(3199), - [aux_sym_preproc_include_token1] = ACTIONS(3199), - [aux_sym_preproc_def_token1] = ACTIONS(3199), - [aux_sym_preproc_if_token1] = ACTIONS(3199), - [aux_sym_preproc_if_token2] = ACTIONS(3199), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3199), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3199), - [aux_sym_preproc_else_token1] = ACTIONS(3199), - [aux_sym_preproc_elif_token1] = ACTIONS(3199), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3199), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3199), - [sym_preproc_directive] = ACTIONS(3199), - [anon_sym_LPAREN2] = ACTIONS(3201), - [anon_sym_BANG] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym___extension__] = ACTIONS(3199), - [anon_sym_typedef] = ACTIONS(3199), - [anon_sym_extern] = ACTIONS(3199), - [anon_sym___attribute__] = ACTIONS(3199), - [anon_sym_COLON_COLON] = ACTIONS(3201), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3201), - [anon_sym___declspec] = ACTIONS(3199), - [anon_sym___based] = ACTIONS(3199), - [anon_sym___cdecl] = ACTIONS(3199), - [anon_sym___clrcall] = ACTIONS(3199), - [anon_sym___stdcall] = ACTIONS(3199), - [anon_sym___fastcall] = ACTIONS(3199), - [anon_sym___thiscall] = ACTIONS(3199), - [anon_sym___vectorcall] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_signed] = ACTIONS(3199), - [anon_sym_unsigned] = ACTIONS(3199), - [anon_sym_long] = ACTIONS(3199), - [anon_sym_short] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_static] = ACTIONS(3199), - [anon_sym_register] = ACTIONS(3199), - [anon_sym_inline] = ACTIONS(3199), - [anon_sym___inline] = ACTIONS(3199), - [anon_sym___inline__] = ACTIONS(3199), - [anon_sym___forceinline] = ACTIONS(3199), - [anon_sym_thread_local] = ACTIONS(3199), - [anon_sym___thread] = ACTIONS(3199), - [anon_sym_const] = ACTIONS(3199), - [anon_sym_constexpr] = ACTIONS(3199), - [anon_sym_volatile] = ACTIONS(3199), - [anon_sym_restrict] = ACTIONS(3199), - [anon_sym___restrict__] = ACTIONS(3199), - [anon_sym__Atomic] = ACTIONS(3199), - [anon_sym__Noreturn] = ACTIONS(3199), - [anon_sym_noreturn] = ACTIONS(3199), - [anon_sym_mutable] = ACTIONS(3199), - [anon_sym_constinit] = ACTIONS(3199), - [anon_sym_consteval] = ACTIONS(3199), - [sym_primitive_type] = ACTIONS(3199), - [anon_sym_enum] = ACTIONS(3199), - [anon_sym_class] = ACTIONS(3199), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_union] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_switch] = ACTIONS(3199), - [anon_sym_case] = ACTIONS(3199), - [anon_sym_default] = ACTIONS(3199), - [anon_sym_while] = ACTIONS(3199), - [anon_sym_do] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3199), - [anon_sym_return] = ACTIONS(3199), - [anon_sym_break] = ACTIONS(3199), - [anon_sym_continue] = ACTIONS(3199), - [anon_sym_goto] = ACTIONS(3199), - [anon_sym_not] = ACTIONS(3199), - [anon_sym_compl] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_sizeof] = ACTIONS(3199), - [anon_sym___alignof__] = ACTIONS(3199), - [anon_sym___alignof] = ACTIONS(3199), - [anon_sym__alignof] = ACTIONS(3199), - [anon_sym_alignof] = ACTIONS(3199), - [anon_sym__Alignof] = ACTIONS(3199), - [anon_sym_offsetof] = ACTIONS(3199), - [anon_sym__Generic] = ACTIONS(3199), - [anon_sym_asm] = ACTIONS(3199), - [anon_sym___asm__] = ACTIONS(3199), - [sym_number_literal] = ACTIONS(3201), - [anon_sym_L_SQUOTE] = ACTIONS(3201), - [anon_sym_u_SQUOTE] = ACTIONS(3201), - [anon_sym_U_SQUOTE] = ACTIONS(3201), - [anon_sym_u8_SQUOTE] = ACTIONS(3201), - [anon_sym_SQUOTE] = ACTIONS(3201), - [anon_sym_L_DQUOTE] = ACTIONS(3201), - [anon_sym_u_DQUOTE] = ACTIONS(3201), - [anon_sym_U_DQUOTE] = ACTIONS(3201), - [anon_sym_u8_DQUOTE] = ACTIONS(3201), - [anon_sym_DQUOTE] = ACTIONS(3201), - [sym_true] = ACTIONS(3199), - [sym_false] = ACTIONS(3199), - [anon_sym_NULL] = ACTIONS(3199), - [anon_sym_nullptr] = ACTIONS(3199), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3199), - [anon_sym_decltype] = ACTIONS(3199), - [anon_sym_virtual] = ACTIONS(3199), - [anon_sym_alignas] = ACTIONS(3199), - [anon_sym_explicit] = ACTIONS(3199), - [anon_sym_typename] = ACTIONS(3199), - [anon_sym_template] = ACTIONS(3199), - [anon_sym_operator] = ACTIONS(3199), - [anon_sym_try] = ACTIONS(3199), - [anon_sym_delete] = ACTIONS(3199), - [anon_sym_throw] = ACTIONS(3199), - [anon_sym_namespace] = ACTIONS(3199), - [anon_sym_using] = ACTIONS(3199), - [anon_sym_static_assert] = ACTIONS(3199), - [anon_sym_concept] = ACTIONS(3199), - [anon_sym_co_return] = ACTIONS(3199), - [anon_sym_co_yield] = ACTIONS(3199), - [anon_sym_R_DQUOTE] = ACTIONS(3201), - [anon_sym_LR_DQUOTE] = ACTIONS(3201), - [anon_sym_uR_DQUOTE] = ACTIONS(3201), - [anon_sym_UR_DQUOTE] = ACTIONS(3201), - [anon_sym_u8R_DQUOTE] = ACTIONS(3201), - [anon_sym_co_await] = ACTIONS(3199), - [anon_sym_new] = ACTIONS(3199), - [anon_sym_requires] = ACTIONS(3199), - [sym_this] = ACTIONS(3199), - }, - [532] = { - [sym_identifier] = ACTIONS(3203), - [aux_sym_preproc_include_token1] = ACTIONS(3203), - [aux_sym_preproc_def_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token2] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3203), - [aux_sym_preproc_else_token1] = ACTIONS(3203), - [aux_sym_preproc_elif_token1] = ACTIONS(3203), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3203), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3203), - [sym_preproc_directive] = ACTIONS(3203), - [anon_sym_LPAREN2] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym___extension__] = ACTIONS(3203), - [anon_sym_typedef] = ACTIONS(3203), - [anon_sym_extern] = ACTIONS(3203), - [anon_sym___attribute__] = ACTIONS(3203), - [anon_sym_COLON_COLON] = ACTIONS(3205), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3205), - [anon_sym___declspec] = ACTIONS(3203), - [anon_sym___based] = ACTIONS(3203), - [anon_sym___cdecl] = ACTIONS(3203), - [anon_sym___clrcall] = ACTIONS(3203), - [anon_sym___stdcall] = ACTIONS(3203), - [anon_sym___fastcall] = ACTIONS(3203), - [anon_sym___thiscall] = ACTIONS(3203), - [anon_sym___vectorcall] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_signed] = ACTIONS(3203), - [anon_sym_unsigned] = ACTIONS(3203), - [anon_sym_long] = ACTIONS(3203), - [anon_sym_short] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_static] = ACTIONS(3203), - [anon_sym_register] = ACTIONS(3203), - [anon_sym_inline] = ACTIONS(3203), - [anon_sym___inline] = ACTIONS(3203), - [anon_sym___inline__] = ACTIONS(3203), - [anon_sym___forceinline] = ACTIONS(3203), - [anon_sym_thread_local] = ACTIONS(3203), - [anon_sym___thread] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_constexpr] = ACTIONS(3203), - [anon_sym_volatile] = ACTIONS(3203), - [anon_sym_restrict] = ACTIONS(3203), - [anon_sym___restrict__] = ACTIONS(3203), - [anon_sym__Atomic] = ACTIONS(3203), - [anon_sym__Noreturn] = ACTIONS(3203), - [anon_sym_noreturn] = ACTIONS(3203), - [anon_sym_mutable] = ACTIONS(3203), - [anon_sym_constinit] = ACTIONS(3203), - [anon_sym_consteval] = ACTIONS(3203), - [sym_primitive_type] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [anon_sym_class] = ACTIONS(3203), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_switch] = ACTIONS(3203), - [anon_sym_case] = ACTIONS(3203), - [anon_sym_default] = ACTIONS(3203), - [anon_sym_while] = ACTIONS(3203), - [anon_sym_do] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_goto] = ACTIONS(3203), - [anon_sym_not] = ACTIONS(3203), - [anon_sym_compl] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_sizeof] = ACTIONS(3203), - [anon_sym___alignof__] = ACTIONS(3203), - [anon_sym___alignof] = ACTIONS(3203), - [anon_sym__alignof] = ACTIONS(3203), - [anon_sym_alignof] = ACTIONS(3203), - [anon_sym__Alignof] = ACTIONS(3203), - [anon_sym_offsetof] = ACTIONS(3203), - [anon_sym__Generic] = ACTIONS(3203), - [anon_sym_asm] = ACTIONS(3203), - [anon_sym___asm__] = ACTIONS(3203), - [sym_number_literal] = ACTIONS(3205), - [anon_sym_L_SQUOTE] = ACTIONS(3205), - [anon_sym_u_SQUOTE] = ACTIONS(3205), - [anon_sym_U_SQUOTE] = ACTIONS(3205), - [anon_sym_u8_SQUOTE] = ACTIONS(3205), - [anon_sym_SQUOTE] = ACTIONS(3205), - [anon_sym_L_DQUOTE] = ACTIONS(3205), - [anon_sym_u_DQUOTE] = ACTIONS(3205), - [anon_sym_U_DQUOTE] = ACTIONS(3205), - [anon_sym_u8_DQUOTE] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(3205), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [anon_sym_NULL] = ACTIONS(3203), - [anon_sym_nullptr] = ACTIONS(3203), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3203), - [anon_sym_decltype] = ACTIONS(3203), - [anon_sym_virtual] = ACTIONS(3203), - [anon_sym_alignas] = ACTIONS(3203), - [anon_sym_explicit] = ACTIONS(3203), - [anon_sym_typename] = ACTIONS(3203), - [anon_sym_template] = ACTIONS(3203), - [anon_sym_operator] = ACTIONS(3203), - [anon_sym_try] = ACTIONS(3203), - [anon_sym_delete] = ACTIONS(3203), - [anon_sym_throw] = ACTIONS(3203), - [anon_sym_namespace] = ACTIONS(3203), - [anon_sym_using] = ACTIONS(3203), - [anon_sym_static_assert] = ACTIONS(3203), - [anon_sym_concept] = ACTIONS(3203), - [anon_sym_co_return] = ACTIONS(3203), - [anon_sym_co_yield] = ACTIONS(3203), - [anon_sym_R_DQUOTE] = ACTIONS(3205), - [anon_sym_LR_DQUOTE] = ACTIONS(3205), - [anon_sym_uR_DQUOTE] = ACTIONS(3205), - [anon_sym_UR_DQUOTE] = ACTIONS(3205), - [anon_sym_u8R_DQUOTE] = ACTIONS(3205), - [anon_sym_co_await] = ACTIONS(3203), - [anon_sym_new] = ACTIONS(3203), - [anon_sym_requires] = ACTIONS(3203), - [sym_this] = ACTIONS(3203), - }, - [533] = { - [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_extern] = ACTIONS(3207), - [anon_sym___attribute__] = ACTIONS(3207), - [anon_sym_COLON_COLON] = ACTIONS(3209), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3209), - [anon_sym___declspec] = ACTIONS(3207), - [anon_sym___based] = ACTIONS(3207), - [anon_sym___cdecl] = ACTIONS(3207), - [anon_sym___clrcall] = ACTIONS(3207), - [anon_sym___stdcall] = ACTIONS(3207), - [anon_sym___fastcall] = ACTIONS(3207), - [anon_sym___thiscall] = ACTIONS(3207), - [anon_sym___vectorcall] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_signed] = ACTIONS(3207), - [anon_sym_unsigned] = ACTIONS(3207), - [anon_sym_long] = ACTIONS(3207), - [anon_sym_short] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_static] = ACTIONS(3207), - [anon_sym_register] = ACTIONS(3207), - [anon_sym_inline] = ACTIONS(3207), - [anon_sym___inline] = ACTIONS(3207), - [anon_sym___inline__] = ACTIONS(3207), - [anon_sym___forceinline] = ACTIONS(3207), - [anon_sym_thread_local] = ACTIONS(3207), - [anon_sym___thread] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_constexpr] = ACTIONS(3207), - [anon_sym_volatile] = ACTIONS(3207), - [anon_sym_restrict] = ACTIONS(3207), - [anon_sym___restrict__] = ACTIONS(3207), - [anon_sym__Atomic] = ACTIONS(3207), - [anon_sym__Noreturn] = ACTIONS(3207), - [anon_sym_noreturn] = ACTIONS(3207), - [anon_sym_mutable] = ACTIONS(3207), - [anon_sym_constinit] = ACTIONS(3207), - [anon_sym_consteval] = ACTIONS(3207), - [sym_primitive_type] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [anon_sym_class] = ACTIONS(3207), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_union] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_switch] = ACTIONS(3207), - [anon_sym_case] = ACTIONS(3207), - [anon_sym_default] = ACTIONS(3207), - [anon_sym_while] = ACTIONS(3207), - [anon_sym_do] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_goto] = ACTIONS(3207), - [anon_sym_not] = ACTIONS(3207), - [anon_sym_compl] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_sizeof] = ACTIONS(3207), - [anon_sym___alignof__] = ACTIONS(3207), - [anon_sym___alignof] = ACTIONS(3207), - [anon_sym__alignof] = ACTIONS(3207), - [anon_sym_alignof] = ACTIONS(3207), - [anon_sym__Alignof] = ACTIONS(3207), - [anon_sym_offsetof] = ACTIONS(3207), - [anon_sym__Generic] = ACTIONS(3207), - [anon_sym_asm] = ACTIONS(3207), - [anon_sym___asm__] = ACTIONS(3207), - [sym_number_literal] = ACTIONS(3209), - [anon_sym_L_SQUOTE] = ACTIONS(3209), - [anon_sym_u_SQUOTE] = ACTIONS(3209), - [anon_sym_U_SQUOTE] = ACTIONS(3209), - [anon_sym_u8_SQUOTE] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3209), - [anon_sym_L_DQUOTE] = ACTIONS(3209), - [anon_sym_u_DQUOTE] = ACTIONS(3209), - [anon_sym_U_DQUOTE] = ACTIONS(3209), - [anon_sym_u8_DQUOTE] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(3209), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [anon_sym_NULL] = ACTIONS(3207), - [anon_sym_nullptr] = ACTIONS(3207), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3207), - [anon_sym_decltype] = ACTIONS(3207), - [anon_sym_virtual] = ACTIONS(3207), - [anon_sym_alignas] = ACTIONS(3207), - [anon_sym_explicit] = ACTIONS(3207), - [anon_sym_typename] = ACTIONS(3207), - [anon_sym_template] = ACTIONS(3207), - [anon_sym_operator] = ACTIONS(3207), - [anon_sym_try] = ACTIONS(3207), - [anon_sym_delete] = ACTIONS(3207), - [anon_sym_throw] = ACTIONS(3207), - [anon_sym_namespace] = ACTIONS(3207), - [anon_sym_using] = ACTIONS(3207), - [anon_sym_static_assert] = ACTIONS(3207), - [anon_sym_concept] = ACTIONS(3207), - [anon_sym_co_return] = ACTIONS(3207), - [anon_sym_co_yield] = ACTIONS(3207), - [anon_sym_R_DQUOTE] = ACTIONS(3209), - [anon_sym_LR_DQUOTE] = ACTIONS(3209), - [anon_sym_uR_DQUOTE] = ACTIONS(3209), - [anon_sym_UR_DQUOTE] = ACTIONS(3209), - [anon_sym_u8R_DQUOTE] = ACTIONS(3209), - [anon_sym_co_await] = ACTIONS(3207), - [anon_sym_new] = ACTIONS(3207), - [anon_sym_requires] = ACTIONS(3207), - [sym_this] = ACTIONS(3207), - }, - [534] = { - [sym_identifier] = ACTIONS(2198), - [aux_sym_preproc_include_token1] = ACTIONS(2198), - [aux_sym_preproc_def_token1] = ACTIONS(2198), - [aux_sym_preproc_if_token1] = ACTIONS(2198), - [aux_sym_preproc_if_token2] = ACTIONS(2198), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2198), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2198), - [aux_sym_preproc_else_token1] = ACTIONS(2198), - [aux_sym_preproc_elif_token1] = ACTIONS(2198), - [sym_preproc_directive] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(2196), - [anon_sym_BANG] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2198), - [anon_sym_PLUS] = ACTIONS(2198), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2196), - [anon_sym___extension__] = ACTIONS(2198), - [anon_sym_typedef] = ACTIONS(2198), - [anon_sym_extern] = ACTIONS(2198), - [anon_sym___attribute__] = ACTIONS(2198), - [anon_sym_COLON_COLON] = ACTIONS(2196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2196), - [anon_sym___declspec] = ACTIONS(2198), - [anon_sym___based] = ACTIONS(2198), - [anon_sym___cdecl] = ACTIONS(2198), - [anon_sym___clrcall] = ACTIONS(2198), - [anon_sym___stdcall] = ACTIONS(2198), - [anon_sym___fastcall] = ACTIONS(2198), - [anon_sym___thiscall] = ACTIONS(2198), - [anon_sym___vectorcall] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2196), - [anon_sym_signed] = ACTIONS(2198), - [anon_sym_unsigned] = ACTIONS(2198), - [anon_sym_long] = ACTIONS(2198), - [anon_sym_short] = ACTIONS(2198), - [anon_sym_LBRACK] = ACTIONS(2198), - [anon_sym_static] = ACTIONS(2198), - [anon_sym_register] = ACTIONS(2198), - [anon_sym_inline] = ACTIONS(2198), - [anon_sym___inline] = ACTIONS(2198), - [anon_sym___inline__] = ACTIONS(2198), - [anon_sym___forceinline] = ACTIONS(2198), - [anon_sym_thread_local] = ACTIONS(2198), - [anon_sym___thread] = ACTIONS(2198), - [anon_sym_const] = ACTIONS(2198), - [anon_sym_constexpr] = ACTIONS(2198), - [anon_sym_volatile] = ACTIONS(2198), - [anon_sym_restrict] = ACTIONS(2198), - [anon_sym___restrict__] = ACTIONS(2198), - [anon_sym__Atomic] = ACTIONS(2198), - [anon_sym__Noreturn] = ACTIONS(2198), - [anon_sym_noreturn] = ACTIONS(2198), - [anon_sym_mutable] = ACTIONS(2198), - [anon_sym_constinit] = ACTIONS(2198), - [anon_sym_consteval] = ACTIONS(2198), - [sym_primitive_type] = ACTIONS(2198), - [anon_sym_enum] = ACTIONS(2198), - [anon_sym_class] = ACTIONS(2198), - [anon_sym_struct] = ACTIONS(2198), - [anon_sym_union] = ACTIONS(2198), - [anon_sym_if] = ACTIONS(2198), - [anon_sym_else] = ACTIONS(2198), - [anon_sym_switch] = ACTIONS(2198), - [anon_sym_case] = ACTIONS(2198), - [anon_sym_default] = ACTIONS(2198), - [anon_sym_while] = ACTIONS(2198), - [anon_sym_do] = ACTIONS(2198), - [anon_sym_for] = ACTIONS(2198), - [anon_sym_return] = ACTIONS(2198), - [anon_sym_break] = ACTIONS(2198), - [anon_sym_continue] = ACTIONS(2198), - [anon_sym_goto] = ACTIONS(2198), - [anon_sym_not] = ACTIONS(2198), - [anon_sym_compl] = ACTIONS(2198), - [anon_sym_DASH_DASH] = ACTIONS(2196), - [anon_sym_PLUS_PLUS] = ACTIONS(2196), - [anon_sym_sizeof] = ACTIONS(2198), - [anon_sym___alignof__] = ACTIONS(2198), - [anon_sym___alignof] = ACTIONS(2198), - [anon_sym__alignof] = ACTIONS(2198), - [anon_sym_alignof] = ACTIONS(2198), - [anon_sym__Alignof] = ACTIONS(2198), - [anon_sym_offsetof] = ACTIONS(2198), - [anon_sym__Generic] = ACTIONS(2198), - [anon_sym_asm] = ACTIONS(2198), - [anon_sym___asm__] = ACTIONS(2198), - [sym_number_literal] = ACTIONS(2196), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2196), - [anon_sym_u_DQUOTE] = ACTIONS(2196), - [anon_sym_U_DQUOTE] = ACTIONS(2196), - [anon_sym_u8_DQUOTE] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2196), - [sym_true] = ACTIONS(2198), - [sym_false] = ACTIONS(2198), - [anon_sym_NULL] = ACTIONS(2198), - [anon_sym_nullptr] = ACTIONS(2198), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2198), - [anon_sym_decltype] = ACTIONS(2198), - [anon_sym_virtual] = ACTIONS(2198), - [anon_sym_alignas] = ACTIONS(2198), - [anon_sym_explicit] = ACTIONS(2198), - [anon_sym_typename] = ACTIONS(2198), - [anon_sym_template] = ACTIONS(2198), - [anon_sym_operator] = ACTIONS(2198), - [anon_sym_try] = ACTIONS(2198), - [anon_sym_delete] = ACTIONS(2198), - [anon_sym_throw] = ACTIONS(2198), - [anon_sym_namespace] = ACTIONS(2198), - [anon_sym_using] = ACTIONS(2198), - [anon_sym_static_assert] = ACTIONS(2198), - [anon_sym_concept] = ACTIONS(2198), - [anon_sym_co_return] = ACTIONS(2198), - [anon_sym_co_yield] = ACTIONS(2198), - [anon_sym_catch] = ACTIONS(2198), - [anon_sym_R_DQUOTE] = ACTIONS(2196), - [anon_sym_LR_DQUOTE] = ACTIONS(2196), - [anon_sym_uR_DQUOTE] = ACTIONS(2196), - [anon_sym_UR_DQUOTE] = ACTIONS(2196), - [anon_sym_u8R_DQUOTE] = ACTIONS(2196), - [anon_sym_co_await] = ACTIONS(2198), - [anon_sym_new] = ACTIONS(2198), - [anon_sym_requires] = ACTIONS(2198), - [sym_this] = ACTIONS(2198), - }, - [535] = { - [sym_type_qualifier] = STATE(4728), - [sym__type_specifier] = STATE(5568), - [sym_sized_type_specifier] = STATE(3614), - [sym_enum_specifier] = STATE(3614), - [sym_struct_specifier] = STATE(3614), - [sym_union_specifier] = STATE(3614), - [sym__expression] = STATE(5021), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_type_descriptor] = STATE(7881), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_placeholder_type_specifier] = STATE(3614), - [sym_decltype_auto] = STATE(3612), - [sym_decltype] = STATE(3593), - [sym_class_specifier] = STATE(3614), - [sym__class_name] = STATE(8694), - [sym_dependent_type] = STATE(3614), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_type_parameter_pack_expansion] = STATE(8106), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6421), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4285), - [aux_sym_type_definition_repeat1] = STATE(4728), - [aux_sym_sized_type_specifier_repeat1] = STATE(3032), - [sym_identifier] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3173), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_GT2] = ACTIONS(3211), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), - }, - [536] = { - [sym_type_qualifier] = STATE(4728), - [sym__type_specifier] = STATE(5568), - [sym_sized_type_specifier] = STATE(3614), - [sym_enum_specifier] = STATE(3614), - [sym_struct_specifier] = STATE(3614), - [sym_union_specifier] = STATE(3614), - [sym__expression] = STATE(4932), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_type_descriptor] = STATE(7615), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_placeholder_type_specifier] = STATE(3614), - [sym_decltype_auto] = STATE(3612), - [sym_decltype] = STATE(3593), - [sym_class_specifier] = STATE(3614), - [sym__class_name] = STATE(8694), - [sym_dependent_type] = STATE(3614), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_type_parameter_pack_expansion] = STATE(8307), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6421), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4285), - [aux_sym_type_definition_repeat1] = STATE(4728), - [aux_sym_sized_type_specifier_repeat1] = STATE(3032), - [sym_identifier] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3173), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_GT2] = ACTIONS(3213), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), - }, - [537] = { - [sym_type_qualifier] = STATE(4728), - [sym__type_specifier] = STATE(5568), - [sym_sized_type_specifier] = STATE(3614), - [sym_enum_specifier] = STATE(3614), - [sym_struct_specifier] = STATE(3614), - [sym_union_specifier] = STATE(3614), - [sym__expression] = STATE(4978), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_type_descriptor] = STATE(7653), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_placeholder_type_specifier] = STATE(3614), - [sym_decltype_auto] = STATE(3612), - [sym_decltype] = STATE(3593), - [sym_class_specifier] = STATE(3614), - [sym__class_name] = STATE(8694), - [sym_dependent_type] = STATE(3614), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_type_parameter_pack_expansion] = STATE(8313), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6421), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4285), - [aux_sym_type_definition_repeat1] = STATE(4728), - [aux_sym_sized_type_specifier_repeat1] = STATE(3032), - [sym_identifier] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3173), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_GT2] = ACTIONS(3215), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), - }, - [538] = { - [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_extern] = ACTIONS(3217), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3217), - [anon_sym_constinit] = ACTIONS(3217), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3217), - [anon_sym_alignas] = 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_using] = 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), - }, - [539] = { - [sym_catch_clause] = STATE(539), - [aux_sym_constructor_try_statement_repeat1] = STATE(539), - [sym_identifier] = ACTIONS(2230), - [aux_sym_preproc_include_token1] = ACTIONS(2230), - [aux_sym_preproc_def_token1] = ACTIONS(2230), - [aux_sym_preproc_if_token1] = ACTIONS(2230), - [aux_sym_preproc_if_token2] = ACTIONS(2230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2230), - [sym_preproc_directive] = ACTIONS(2230), - [anon_sym_LPAREN2] = ACTIONS(2232), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_AMP_AMP] = ACTIONS(2232), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2232), - [anon_sym___extension__] = ACTIONS(2230), - [anon_sym_typedef] = ACTIONS(2230), - [anon_sym_extern] = ACTIONS(2230), - [anon_sym___attribute__] = ACTIONS(2230), - [anon_sym_COLON_COLON] = ACTIONS(2232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2232), - [anon_sym___declspec] = ACTIONS(2230), - [anon_sym___based] = ACTIONS(2230), - [anon_sym___cdecl] = ACTIONS(2230), - [anon_sym___clrcall] = ACTIONS(2230), - [anon_sym___stdcall] = ACTIONS(2230), - [anon_sym___fastcall] = ACTIONS(2230), - [anon_sym___thiscall] = ACTIONS(2230), - [anon_sym___vectorcall] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_signed] = ACTIONS(2230), - [anon_sym_unsigned] = ACTIONS(2230), - [anon_sym_long] = ACTIONS(2230), - [anon_sym_short] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_register] = ACTIONS(2230), - [anon_sym_inline] = ACTIONS(2230), - [anon_sym___inline] = ACTIONS(2230), - [anon_sym___inline__] = ACTIONS(2230), - [anon_sym___forceinline] = ACTIONS(2230), - [anon_sym_thread_local] = ACTIONS(2230), - [anon_sym___thread] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_constexpr] = ACTIONS(2230), - [anon_sym_volatile] = ACTIONS(2230), - [anon_sym_restrict] = ACTIONS(2230), - [anon_sym___restrict__] = ACTIONS(2230), - [anon_sym__Atomic] = ACTIONS(2230), - [anon_sym__Noreturn] = ACTIONS(2230), - [anon_sym_noreturn] = ACTIONS(2230), - [anon_sym_mutable] = ACTIONS(2230), - [anon_sym_constinit] = ACTIONS(2230), - [anon_sym_consteval] = ACTIONS(2230), - [sym_primitive_type] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [anon_sym_class] = ACTIONS(2230), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_union] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_else] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2230), - [anon_sym_case] = ACTIONS(2230), - [anon_sym_default] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_goto] = ACTIONS(2230), - [anon_sym_not] = ACTIONS(2230), - [anon_sym_compl] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2232), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2230), - [anon_sym___alignof] = ACTIONS(2230), - [anon_sym__alignof] = ACTIONS(2230), - [anon_sym_alignof] = ACTIONS(2230), - [anon_sym__Alignof] = ACTIONS(2230), - [anon_sym_offsetof] = ACTIONS(2230), - [anon_sym__Generic] = ACTIONS(2230), - [anon_sym_asm] = ACTIONS(2230), - [anon_sym___asm__] = ACTIONS(2230), - [sym_number_literal] = ACTIONS(2232), - [anon_sym_L_SQUOTE] = ACTIONS(2232), - [anon_sym_u_SQUOTE] = ACTIONS(2232), - [anon_sym_U_SQUOTE] = ACTIONS(2232), - [anon_sym_u8_SQUOTE] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2232), - [anon_sym_L_DQUOTE] = ACTIONS(2232), - [anon_sym_u_DQUOTE] = ACTIONS(2232), - [anon_sym_U_DQUOTE] = ACTIONS(2232), - [anon_sym_u8_DQUOTE] = ACTIONS(2232), - [anon_sym_DQUOTE] = ACTIONS(2232), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [anon_sym_NULL] = ACTIONS(2230), - [anon_sym_nullptr] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2230), - [anon_sym_decltype] = ACTIONS(2230), - [anon_sym_virtual] = ACTIONS(2230), - [anon_sym_alignas] = ACTIONS(2230), - [anon_sym_explicit] = ACTIONS(2230), - [anon_sym_typename] = ACTIONS(2230), - [anon_sym_template] = ACTIONS(2230), - [anon_sym_operator] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_delete] = ACTIONS(2230), - [anon_sym_throw] = ACTIONS(2230), - [anon_sym_namespace] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2230), - [anon_sym_static_assert] = ACTIONS(2230), - [anon_sym_concept] = ACTIONS(2230), - [anon_sym_co_return] = ACTIONS(2230), - [anon_sym_co_yield] = ACTIONS(2230), - [anon_sym_catch] = ACTIONS(3221), - [anon_sym_R_DQUOTE] = ACTIONS(2232), - [anon_sym_LR_DQUOTE] = ACTIONS(2232), - [anon_sym_uR_DQUOTE] = ACTIONS(2232), - [anon_sym_UR_DQUOTE] = ACTIONS(2232), - [anon_sym_u8R_DQUOTE] = ACTIONS(2232), - [anon_sym_co_await] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_requires] = ACTIONS(2230), - [sym_this] = ACTIONS(2230), - }, - [540] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_include_token1] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token2] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [aux_sym_preproc_else_token1] = ACTIONS(2194), - [aux_sym_preproc_elif_token1] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym___cdecl] = ACTIONS(2194), - [anon_sym___clrcall] = ACTIONS(2194), - [anon_sym___stdcall] = ACTIONS(2194), - [anon_sym___fastcall] = ACTIONS(2194), - [anon_sym___thiscall] = ACTIONS(2194), - [anon_sym___vectorcall] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_goto] = ACTIONS(2194), - [anon_sym_not] = ACTIONS(2194), - [anon_sym_compl] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_sizeof] = ACTIONS(2194), - [anon_sym___alignof__] = ACTIONS(2194), - [anon_sym___alignof] = ACTIONS(2194), - [anon_sym__alignof] = ACTIONS(2194), - [anon_sym_alignof] = ACTIONS(2194), - [anon_sym__Alignof] = ACTIONS(2194), - [anon_sym_offsetof] = ACTIONS(2194), - [anon_sym__Generic] = ACTIONS(2194), - [anon_sym_asm] = ACTIONS(2194), - [anon_sym___asm__] = ACTIONS(2194), - [sym_number_literal] = ACTIONS(2192), - [anon_sym_L_SQUOTE] = ACTIONS(2192), - [anon_sym_u_SQUOTE] = ACTIONS(2192), - [anon_sym_U_SQUOTE] = ACTIONS(2192), - [anon_sym_u8_SQUOTE] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_L_DQUOTE] = ACTIONS(2192), - [anon_sym_u_DQUOTE] = ACTIONS(2192), - [anon_sym_U_DQUOTE] = ACTIONS(2192), - [anon_sym_u8_DQUOTE] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [anon_sym_NULL] = ACTIONS(2194), - [anon_sym_nullptr] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_delete] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - [anon_sym_concept] = ACTIONS(2194), - [anon_sym_co_return] = ACTIONS(2194), - [anon_sym_co_yield] = ACTIONS(2194), - [anon_sym_catch] = ACTIONS(2194), - [anon_sym_R_DQUOTE] = ACTIONS(2192), - [anon_sym_LR_DQUOTE] = ACTIONS(2192), - [anon_sym_uR_DQUOTE] = ACTIONS(2192), - [anon_sym_UR_DQUOTE] = ACTIONS(2192), - [anon_sym_u8R_DQUOTE] = ACTIONS(2192), - [anon_sym_co_await] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_requires] = ACTIONS(2194), - [sym_this] = ACTIONS(2194), - }, - [541] = { - [sym_identifier] = ACTIONS(3224), - [aux_sym_preproc_include_token1] = ACTIONS(3224), - [aux_sym_preproc_def_token1] = ACTIONS(3224), - [aux_sym_preproc_if_token1] = ACTIONS(3224), - [aux_sym_preproc_if_token2] = ACTIONS(3224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3224), - [aux_sym_preproc_else_token1] = ACTIONS(3224), - [aux_sym_preproc_elif_token1] = ACTIONS(3224), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3224), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3224), - [sym_preproc_directive] = ACTIONS(3224), - [anon_sym_LPAREN2] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3226), - [anon_sym_AMP_AMP] = ACTIONS(3226), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3226), - [anon_sym___extension__] = ACTIONS(3224), - [anon_sym_typedef] = ACTIONS(3224), - [anon_sym_extern] = ACTIONS(3224), - [anon_sym___attribute__] = ACTIONS(3224), - [anon_sym_COLON_COLON] = ACTIONS(3226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3226), - [anon_sym___declspec] = ACTIONS(3224), - [anon_sym___based] = ACTIONS(3224), - [anon_sym___cdecl] = ACTIONS(3224), - [anon_sym___clrcall] = ACTIONS(3224), - [anon_sym___stdcall] = ACTIONS(3224), - [anon_sym___fastcall] = ACTIONS(3224), - [anon_sym___thiscall] = ACTIONS(3224), - [anon_sym___vectorcall] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_signed] = ACTIONS(3224), - [anon_sym_unsigned] = ACTIONS(3224), - [anon_sym_long] = ACTIONS(3224), - [anon_sym_short] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_register] = ACTIONS(3224), - [anon_sym_inline] = ACTIONS(3224), - [anon_sym___inline] = ACTIONS(3224), - [anon_sym___inline__] = ACTIONS(3224), - [anon_sym___forceinline] = ACTIONS(3224), - [anon_sym_thread_local] = ACTIONS(3224), - [anon_sym___thread] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_constexpr] = ACTIONS(3224), - [anon_sym_volatile] = ACTIONS(3224), - [anon_sym_restrict] = ACTIONS(3224), - [anon_sym___restrict__] = ACTIONS(3224), - [anon_sym__Atomic] = ACTIONS(3224), - [anon_sym__Noreturn] = ACTIONS(3224), - [anon_sym_noreturn] = ACTIONS(3224), - [anon_sym_mutable] = ACTIONS(3224), - [anon_sym_constinit] = ACTIONS(3224), - [anon_sym_consteval] = ACTIONS(3224), - [sym_primitive_type] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_struct] = ACTIONS(3224), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_goto] = ACTIONS(3224), - [anon_sym_not] = ACTIONS(3224), - [anon_sym_compl] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_sizeof] = ACTIONS(3224), - [anon_sym___alignof__] = ACTIONS(3224), - [anon_sym___alignof] = ACTIONS(3224), - [anon_sym__alignof] = ACTIONS(3224), - [anon_sym_alignof] = ACTIONS(3224), - [anon_sym__Alignof] = ACTIONS(3224), - [anon_sym_offsetof] = ACTIONS(3224), - [anon_sym__Generic] = ACTIONS(3224), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3226), - [anon_sym_u_SQUOTE] = ACTIONS(3226), - [anon_sym_U_SQUOTE] = ACTIONS(3226), - [anon_sym_u8_SQUOTE] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [anon_sym_L_DQUOTE] = ACTIONS(3226), - [anon_sym_u_DQUOTE] = ACTIONS(3226), - [anon_sym_U_DQUOTE] = ACTIONS(3226), - [anon_sym_u8_DQUOTE] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [anon_sym_NULL] = ACTIONS(3224), - [anon_sym_nullptr] = ACTIONS(3224), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3224), - [anon_sym_decltype] = ACTIONS(3224), - [anon_sym_virtual] = ACTIONS(3224), - [anon_sym_alignas] = ACTIONS(3224), - [anon_sym_explicit] = ACTIONS(3224), - [anon_sym_typename] = ACTIONS(3224), - [anon_sym_template] = ACTIONS(3224), - [anon_sym_operator] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_using] = ACTIONS(3224), - [anon_sym_static_assert] = ACTIONS(3224), - [anon_sym_concept] = ACTIONS(3224), - [anon_sym_co_return] = ACTIONS(3224), - [anon_sym_co_yield] = ACTIONS(3224), - [anon_sym_R_DQUOTE] = ACTIONS(3226), - [anon_sym_LR_DQUOTE] = ACTIONS(3226), - [anon_sym_uR_DQUOTE] = ACTIONS(3226), - [anon_sym_UR_DQUOTE] = ACTIONS(3226), - [anon_sym_u8R_DQUOTE] = ACTIONS(3226), - [anon_sym_co_await] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_requires] = ACTIONS(3224), - [sym_this] = ACTIONS(3224), - }, - [542] = { - [sym_catch_clause] = STATE(554), - [aux_sym_constructor_try_statement_repeat1] = STATE(554), - [sym_identifier] = ACTIONS(2224), - [aux_sym_preproc_include_token1] = ACTIONS(2224), - [aux_sym_preproc_def_token1] = ACTIONS(2224), - [aux_sym_preproc_if_token1] = ACTIONS(2224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2224), - [sym_preproc_directive] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_AMP_AMP] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym___extension__] = ACTIONS(2224), - [anon_sym_typedef] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym___attribute__] = ACTIONS(2224), - [anon_sym_COLON_COLON] = ACTIONS(2226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2226), - [anon_sym___declspec] = ACTIONS(2224), - [anon_sym___based] = ACTIONS(2224), - [anon_sym___cdecl] = ACTIONS(2224), - [anon_sym___clrcall] = ACTIONS(2224), - [anon_sym___stdcall] = ACTIONS(2224), - [anon_sym___fastcall] = ACTIONS(2224), - [anon_sym___thiscall] = ACTIONS(2224), - [anon_sym___vectorcall] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_signed] = ACTIONS(2224), - [anon_sym_unsigned] = ACTIONS(2224), - [anon_sym_long] = ACTIONS(2224), - [anon_sym_short] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2224), - [anon_sym_register] = ACTIONS(2224), - [anon_sym_inline] = ACTIONS(2224), - [anon_sym___inline] = ACTIONS(2224), - [anon_sym___inline__] = ACTIONS(2224), - [anon_sym___forceinline] = ACTIONS(2224), - [anon_sym_thread_local] = ACTIONS(2224), - [anon_sym___thread] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [anon_sym_constexpr] = ACTIONS(2224), - [anon_sym_volatile] = ACTIONS(2224), - [anon_sym_restrict] = ACTIONS(2224), - [anon_sym___restrict__] = ACTIONS(2224), - [anon_sym__Atomic] = ACTIONS(2224), - [anon_sym__Noreturn] = ACTIONS(2224), - [anon_sym_noreturn] = ACTIONS(2224), - [anon_sym_mutable] = ACTIONS(2224), - [anon_sym_constinit] = ACTIONS(2224), - [anon_sym_consteval] = ACTIONS(2224), - [sym_primitive_type] = ACTIONS(2224), - [anon_sym_enum] = ACTIONS(2224), - [anon_sym_class] = ACTIONS(2224), - [anon_sym_struct] = ACTIONS(2224), - [anon_sym_union] = ACTIONS(2224), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_else] = ACTIONS(2224), - [anon_sym_switch] = ACTIONS(2224), - [anon_sym_case] = ACTIONS(2224), - [anon_sym_default] = ACTIONS(2224), - [anon_sym_while] = ACTIONS(2224), - [anon_sym_do] = ACTIONS(2224), - [anon_sym_for] = ACTIONS(2224), - [anon_sym_return] = ACTIONS(2224), - [anon_sym_break] = ACTIONS(2224), - [anon_sym_continue] = ACTIONS(2224), - [anon_sym_goto] = ACTIONS(2224), - [anon_sym_not] = ACTIONS(2224), - [anon_sym_compl] = ACTIONS(2224), - [anon_sym_DASH_DASH] = ACTIONS(2226), - [anon_sym_PLUS_PLUS] = ACTIONS(2226), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym___alignof__] = ACTIONS(2224), - [anon_sym___alignof] = ACTIONS(2224), - [anon_sym__alignof] = ACTIONS(2224), - [anon_sym_alignof] = ACTIONS(2224), - [anon_sym__Alignof] = ACTIONS(2224), - [anon_sym_offsetof] = ACTIONS(2224), - [anon_sym__Generic] = ACTIONS(2224), - [anon_sym_asm] = ACTIONS(2224), - [anon_sym___asm__] = ACTIONS(2224), - [sym_number_literal] = ACTIONS(2226), - [anon_sym_L_SQUOTE] = ACTIONS(2226), - [anon_sym_u_SQUOTE] = ACTIONS(2226), - [anon_sym_U_SQUOTE] = ACTIONS(2226), - [anon_sym_u8_SQUOTE] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2226), - [anon_sym_L_DQUOTE] = ACTIONS(2226), - [anon_sym_u_DQUOTE] = ACTIONS(2226), - [anon_sym_U_DQUOTE] = ACTIONS(2226), - [anon_sym_u8_DQUOTE] = ACTIONS(2226), - [anon_sym_DQUOTE] = ACTIONS(2226), - [sym_true] = ACTIONS(2224), - [sym_false] = ACTIONS(2224), - [anon_sym_NULL] = ACTIONS(2224), - [anon_sym_nullptr] = ACTIONS(2224), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2224), - [anon_sym_decltype] = ACTIONS(2224), - [anon_sym_virtual] = ACTIONS(2224), - [anon_sym_alignas] = ACTIONS(2224), - [anon_sym_explicit] = ACTIONS(2224), - [anon_sym_typename] = ACTIONS(2224), - [anon_sym_template] = ACTIONS(2224), - [anon_sym_operator] = ACTIONS(2224), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_delete] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2224), - [anon_sym_namespace] = ACTIONS(2224), - [anon_sym_using] = ACTIONS(2224), - [anon_sym_static_assert] = ACTIONS(2224), - [anon_sym_concept] = ACTIONS(2224), - [anon_sym_co_return] = ACTIONS(2224), - [anon_sym_co_yield] = ACTIONS(2224), - [anon_sym_catch] = ACTIONS(3228), - [anon_sym_R_DQUOTE] = ACTIONS(2226), - [anon_sym_LR_DQUOTE] = ACTIONS(2226), - [anon_sym_uR_DQUOTE] = ACTIONS(2226), - [anon_sym_UR_DQUOTE] = ACTIONS(2226), - [anon_sym_u8R_DQUOTE] = ACTIONS(2226), - [anon_sym_co_await] = ACTIONS(2224), - [anon_sym_new] = ACTIONS(2224), - [anon_sym_requires] = ACTIONS(2224), - [sym_this] = ACTIONS(2224), - }, - [543] = { - [sym_identifier] = ACTIONS(3230), - [aux_sym_preproc_include_token1] = ACTIONS(3230), - [aux_sym_preproc_def_token1] = ACTIONS(3230), - [aux_sym_preproc_if_token1] = ACTIONS(3230), - [aux_sym_preproc_if_token2] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3230), - [aux_sym_preproc_else_token1] = ACTIONS(3230), - [aux_sym_preproc_elif_token1] = ACTIONS(3230), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3230), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3230), - [sym_preproc_directive] = ACTIONS(3230), - [anon_sym_LPAREN2] = ACTIONS(3232), - [anon_sym_BANG] = ACTIONS(3232), - [anon_sym_TILDE] = ACTIONS(3232), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(3232), - [anon_sym_AMP_AMP] = ACTIONS(3232), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3232), - [anon_sym___extension__] = ACTIONS(3230), - [anon_sym_typedef] = ACTIONS(3230), - [anon_sym_extern] = ACTIONS(3230), - [anon_sym___attribute__] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3232), - [anon_sym___declspec] = ACTIONS(3230), - [anon_sym___based] = ACTIONS(3230), - [anon_sym___cdecl] = ACTIONS(3230), - [anon_sym___clrcall] = ACTIONS(3230), - [anon_sym___stdcall] = ACTIONS(3230), - [anon_sym___fastcall] = ACTIONS(3230), - [anon_sym___thiscall] = ACTIONS(3230), - [anon_sym___vectorcall] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3232), - [anon_sym_signed] = ACTIONS(3230), - [anon_sym_unsigned] = ACTIONS(3230), - [anon_sym_long] = ACTIONS(3230), - [anon_sym_short] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3230), - [anon_sym_register] = ACTIONS(3230), - [anon_sym_inline] = ACTIONS(3230), - [anon_sym___inline] = ACTIONS(3230), - [anon_sym___inline__] = ACTIONS(3230), - [anon_sym___forceinline] = ACTIONS(3230), - [anon_sym_thread_local] = ACTIONS(3230), - [anon_sym___thread] = ACTIONS(3230), - [anon_sym_const] = ACTIONS(3230), - [anon_sym_constexpr] = ACTIONS(3230), - [anon_sym_volatile] = ACTIONS(3230), - [anon_sym_restrict] = ACTIONS(3230), - [anon_sym___restrict__] = ACTIONS(3230), - [anon_sym__Atomic] = ACTIONS(3230), - [anon_sym__Noreturn] = ACTIONS(3230), - [anon_sym_noreturn] = ACTIONS(3230), - [anon_sym_mutable] = ACTIONS(3230), - [anon_sym_constinit] = ACTIONS(3230), - [anon_sym_consteval] = ACTIONS(3230), - [sym_primitive_type] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3230), - [anon_sym_class] = ACTIONS(3230), - [anon_sym_struct] = ACTIONS(3230), - [anon_sym_union] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_switch] = ACTIONS(3230), - [anon_sym_case] = ACTIONS(3230), - [anon_sym_default] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_do] = ACTIONS(3230), - [anon_sym_for] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_goto] = ACTIONS(3230), - [anon_sym_not] = ACTIONS(3230), - [anon_sym_compl] = ACTIONS(3230), - [anon_sym_DASH_DASH] = ACTIONS(3232), - [anon_sym_PLUS_PLUS] = ACTIONS(3232), - [anon_sym_sizeof] = ACTIONS(3230), - [anon_sym___alignof__] = ACTIONS(3230), - [anon_sym___alignof] = ACTIONS(3230), - [anon_sym__alignof] = ACTIONS(3230), - [anon_sym_alignof] = ACTIONS(3230), - [anon_sym__Alignof] = ACTIONS(3230), - [anon_sym_offsetof] = ACTIONS(3230), - [anon_sym__Generic] = ACTIONS(3230), - [anon_sym_asm] = ACTIONS(3230), - [anon_sym___asm__] = ACTIONS(3230), - [sym_number_literal] = ACTIONS(3232), - [anon_sym_L_SQUOTE] = ACTIONS(3232), - [anon_sym_u_SQUOTE] = ACTIONS(3232), - [anon_sym_U_SQUOTE] = ACTIONS(3232), - [anon_sym_u8_SQUOTE] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3232), - [anon_sym_L_DQUOTE] = ACTIONS(3232), - [anon_sym_u_DQUOTE] = ACTIONS(3232), - [anon_sym_U_DQUOTE] = ACTIONS(3232), - [anon_sym_u8_DQUOTE] = ACTIONS(3232), - [anon_sym_DQUOTE] = ACTIONS(3232), - [sym_true] = ACTIONS(3230), - [sym_false] = ACTIONS(3230), - [anon_sym_NULL] = ACTIONS(3230), - [anon_sym_nullptr] = ACTIONS(3230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3230), - [anon_sym_decltype] = ACTIONS(3230), - [anon_sym_virtual] = ACTIONS(3230), - [anon_sym_alignas] = ACTIONS(3230), - [anon_sym_explicit] = ACTIONS(3230), - [anon_sym_typename] = ACTIONS(3230), - [anon_sym_template] = ACTIONS(3230), - [anon_sym_operator] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_delete] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_namespace] = ACTIONS(3230), - [anon_sym_using] = ACTIONS(3230), - [anon_sym_static_assert] = ACTIONS(3230), - [anon_sym_concept] = ACTIONS(3230), - [anon_sym_co_return] = ACTIONS(3230), - [anon_sym_co_yield] = ACTIONS(3230), - [anon_sym_R_DQUOTE] = ACTIONS(3232), - [anon_sym_LR_DQUOTE] = ACTIONS(3232), - [anon_sym_uR_DQUOTE] = ACTIONS(3232), - [anon_sym_UR_DQUOTE] = ACTIONS(3232), - [anon_sym_u8R_DQUOTE] = ACTIONS(3232), - [anon_sym_co_await] = ACTIONS(3230), - [anon_sym_new] = ACTIONS(3230), - [anon_sym_requires] = ACTIONS(3230), - [sym_this] = ACTIONS(3230), - }, - [544] = { - [sym_identifier] = ACTIONS(3234), - [aux_sym_preproc_include_token1] = ACTIONS(3234), - [aux_sym_preproc_def_token1] = ACTIONS(3234), - [aux_sym_preproc_if_token1] = ACTIONS(3234), - [aux_sym_preproc_if_token2] = ACTIONS(3234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3234), - [aux_sym_preproc_else_token1] = ACTIONS(3234), - [aux_sym_preproc_elif_token1] = ACTIONS(3234), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3234), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3234), - [sym_preproc_directive] = ACTIONS(3234), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3236), - [anon_sym_AMP] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym___extension__] = ACTIONS(3234), - [anon_sym_typedef] = ACTIONS(3234), - [anon_sym_extern] = ACTIONS(3234), - [anon_sym___attribute__] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3236), - [anon_sym___declspec] = ACTIONS(3234), - [anon_sym___based] = ACTIONS(3234), - [anon_sym___cdecl] = ACTIONS(3234), - [anon_sym___clrcall] = ACTIONS(3234), - [anon_sym___stdcall] = ACTIONS(3234), - [anon_sym___fastcall] = ACTIONS(3234), - [anon_sym___thiscall] = ACTIONS(3234), - [anon_sym___vectorcall] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_signed] = ACTIONS(3234), - [anon_sym_unsigned] = ACTIONS(3234), - [anon_sym_long] = ACTIONS(3234), - [anon_sym_short] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_register] = ACTIONS(3234), - [anon_sym_inline] = ACTIONS(3234), - [anon_sym___inline] = ACTIONS(3234), - [anon_sym___inline__] = ACTIONS(3234), - [anon_sym___forceinline] = ACTIONS(3234), - [anon_sym_thread_local] = ACTIONS(3234), - [anon_sym___thread] = ACTIONS(3234), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_constexpr] = ACTIONS(3234), - [anon_sym_volatile] = ACTIONS(3234), - [anon_sym_restrict] = ACTIONS(3234), - [anon_sym___restrict__] = ACTIONS(3234), - [anon_sym__Atomic] = ACTIONS(3234), - [anon_sym__Noreturn] = ACTIONS(3234), - [anon_sym_noreturn] = ACTIONS(3234), - [anon_sym_mutable] = ACTIONS(3234), - [anon_sym_constinit] = ACTIONS(3234), - [anon_sym_consteval] = ACTIONS(3234), - [sym_primitive_type] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_struct] = ACTIONS(3234), - [anon_sym_union] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_case] = ACTIONS(3234), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_goto] = ACTIONS(3234), - [anon_sym_not] = ACTIONS(3234), - [anon_sym_compl] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3236), - [anon_sym_PLUS_PLUS] = ACTIONS(3236), - [anon_sym_sizeof] = ACTIONS(3234), - [anon_sym___alignof__] = ACTIONS(3234), - [anon_sym___alignof] = ACTIONS(3234), - [anon_sym__alignof] = ACTIONS(3234), - [anon_sym_alignof] = ACTIONS(3234), - [anon_sym__Alignof] = ACTIONS(3234), - [anon_sym_offsetof] = ACTIONS(3234), - [anon_sym__Generic] = ACTIONS(3234), - [anon_sym_asm] = ACTIONS(3234), - [anon_sym___asm__] = ACTIONS(3234), - [sym_number_literal] = ACTIONS(3236), - [anon_sym_L_SQUOTE] = ACTIONS(3236), - [anon_sym_u_SQUOTE] = ACTIONS(3236), - [anon_sym_U_SQUOTE] = ACTIONS(3236), - [anon_sym_u8_SQUOTE] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym_L_DQUOTE] = ACTIONS(3236), - [anon_sym_u_DQUOTE] = ACTIONS(3236), - [anon_sym_U_DQUOTE] = ACTIONS(3236), - [anon_sym_u8_DQUOTE] = ACTIONS(3236), - [anon_sym_DQUOTE] = ACTIONS(3236), - [sym_true] = ACTIONS(3234), - [sym_false] = ACTIONS(3234), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3234), - [anon_sym_decltype] = ACTIONS(3234), - [anon_sym_virtual] = ACTIONS(3234), - [anon_sym_alignas] = ACTIONS(3234), - [anon_sym_explicit] = ACTIONS(3234), - [anon_sym_typename] = ACTIONS(3234), - [anon_sym_template] = ACTIONS(3234), - [anon_sym_operator] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_delete] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_namespace] = ACTIONS(3234), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_static_assert] = ACTIONS(3234), - [anon_sym_concept] = ACTIONS(3234), - [anon_sym_co_return] = ACTIONS(3234), - [anon_sym_co_yield] = ACTIONS(3234), - [anon_sym_R_DQUOTE] = ACTIONS(3236), - [anon_sym_LR_DQUOTE] = ACTIONS(3236), - [anon_sym_uR_DQUOTE] = ACTIONS(3236), - [anon_sym_UR_DQUOTE] = ACTIONS(3236), - [anon_sym_u8R_DQUOTE] = ACTIONS(3236), - [anon_sym_co_await] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_requires] = ACTIONS(3234), - [sym_this] = ACTIONS(3234), - }, - [545] = { - [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_extern] = ACTIONS(3238), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3238), - [anon_sym_constinit] = ACTIONS(3238), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3238), - [anon_sym_alignas] = 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_using] = 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), - }, - [546] = { - [sym_catch_clause] = STATE(539), - [aux_sym_constructor_try_statement_repeat1] = STATE(539), - [sym_identifier] = ACTIONS(2224), - [aux_sym_preproc_include_token1] = ACTIONS(2224), - [aux_sym_preproc_def_token1] = ACTIONS(2224), - [aux_sym_preproc_if_token1] = ACTIONS(2224), - [aux_sym_preproc_if_token2] = ACTIONS(2224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2224), - [sym_preproc_directive] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_AMP_AMP] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym___extension__] = ACTIONS(2224), - [anon_sym_typedef] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym___attribute__] = ACTIONS(2224), - [anon_sym_COLON_COLON] = ACTIONS(2226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2226), - [anon_sym___declspec] = ACTIONS(2224), - [anon_sym___based] = ACTIONS(2224), - [anon_sym___cdecl] = ACTIONS(2224), - [anon_sym___clrcall] = ACTIONS(2224), - [anon_sym___stdcall] = ACTIONS(2224), - [anon_sym___fastcall] = ACTIONS(2224), - [anon_sym___thiscall] = ACTIONS(2224), - [anon_sym___vectorcall] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_signed] = ACTIONS(2224), - [anon_sym_unsigned] = ACTIONS(2224), - [anon_sym_long] = ACTIONS(2224), - [anon_sym_short] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2224), - [anon_sym_register] = ACTIONS(2224), - [anon_sym_inline] = ACTIONS(2224), - [anon_sym___inline] = ACTIONS(2224), - [anon_sym___inline__] = ACTIONS(2224), - [anon_sym___forceinline] = ACTIONS(2224), - [anon_sym_thread_local] = ACTIONS(2224), - [anon_sym___thread] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [anon_sym_constexpr] = ACTIONS(2224), - [anon_sym_volatile] = ACTIONS(2224), - [anon_sym_restrict] = ACTIONS(2224), - [anon_sym___restrict__] = ACTIONS(2224), - [anon_sym__Atomic] = ACTIONS(2224), - [anon_sym__Noreturn] = ACTIONS(2224), - [anon_sym_noreturn] = ACTIONS(2224), - [anon_sym_mutable] = ACTIONS(2224), - [anon_sym_constinit] = ACTIONS(2224), - [anon_sym_consteval] = ACTIONS(2224), - [sym_primitive_type] = ACTIONS(2224), - [anon_sym_enum] = ACTIONS(2224), - [anon_sym_class] = ACTIONS(2224), - [anon_sym_struct] = ACTIONS(2224), - [anon_sym_union] = ACTIONS(2224), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_else] = ACTIONS(2224), - [anon_sym_switch] = ACTIONS(2224), - [anon_sym_case] = ACTIONS(2224), - [anon_sym_default] = ACTIONS(2224), - [anon_sym_while] = ACTIONS(2224), - [anon_sym_do] = ACTIONS(2224), - [anon_sym_for] = ACTIONS(2224), - [anon_sym_return] = ACTIONS(2224), - [anon_sym_break] = ACTIONS(2224), - [anon_sym_continue] = ACTIONS(2224), - [anon_sym_goto] = ACTIONS(2224), - [anon_sym_not] = ACTIONS(2224), - [anon_sym_compl] = ACTIONS(2224), - [anon_sym_DASH_DASH] = ACTIONS(2226), - [anon_sym_PLUS_PLUS] = ACTIONS(2226), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym___alignof__] = ACTIONS(2224), - [anon_sym___alignof] = ACTIONS(2224), - [anon_sym__alignof] = ACTIONS(2224), - [anon_sym_alignof] = ACTIONS(2224), - [anon_sym__Alignof] = ACTIONS(2224), - [anon_sym_offsetof] = ACTIONS(2224), - [anon_sym__Generic] = ACTIONS(2224), - [anon_sym_asm] = ACTIONS(2224), - [anon_sym___asm__] = ACTIONS(2224), - [sym_number_literal] = ACTIONS(2226), - [anon_sym_L_SQUOTE] = ACTIONS(2226), - [anon_sym_u_SQUOTE] = ACTIONS(2226), - [anon_sym_U_SQUOTE] = ACTIONS(2226), - [anon_sym_u8_SQUOTE] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2226), - [anon_sym_L_DQUOTE] = ACTIONS(2226), - [anon_sym_u_DQUOTE] = ACTIONS(2226), - [anon_sym_U_DQUOTE] = ACTIONS(2226), - [anon_sym_u8_DQUOTE] = ACTIONS(2226), - [anon_sym_DQUOTE] = ACTIONS(2226), - [sym_true] = ACTIONS(2224), - [sym_false] = ACTIONS(2224), - [anon_sym_NULL] = ACTIONS(2224), - [anon_sym_nullptr] = ACTIONS(2224), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2224), - [anon_sym_decltype] = ACTIONS(2224), - [anon_sym_virtual] = ACTIONS(2224), - [anon_sym_alignas] = ACTIONS(2224), - [anon_sym_explicit] = ACTIONS(2224), - [anon_sym_typename] = ACTIONS(2224), - [anon_sym_template] = ACTIONS(2224), - [anon_sym_operator] = ACTIONS(2224), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_delete] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2224), - [anon_sym_namespace] = ACTIONS(2224), - [anon_sym_using] = ACTIONS(2224), - [anon_sym_static_assert] = ACTIONS(2224), - [anon_sym_concept] = ACTIONS(2224), - [anon_sym_co_return] = ACTIONS(2224), - [anon_sym_co_yield] = ACTIONS(2224), - [anon_sym_catch] = ACTIONS(3242), - [anon_sym_R_DQUOTE] = ACTIONS(2226), - [anon_sym_LR_DQUOTE] = ACTIONS(2226), - [anon_sym_uR_DQUOTE] = ACTIONS(2226), - [anon_sym_UR_DQUOTE] = ACTIONS(2226), - [anon_sym_u8R_DQUOTE] = ACTIONS(2226), - [anon_sym_co_await] = ACTIONS(2224), - [anon_sym_new] = ACTIONS(2224), - [anon_sym_requires] = ACTIONS(2224), - [sym_this] = ACTIONS(2224), - }, - [547] = { - [sym_type_qualifier] = STATE(4728), - [sym__type_specifier] = STATE(5568), - [sym_sized_type_specifier] = STATE(3614), - [sym_enum_specifier] = STATE(3614), - [sym_struct_specifier] = STATE(3614), - [sym_union_specifier] = STATE(3614), - [sym__expression] = STATE(5031), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_type_descriptor] = STATE(7929), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_placeholder_type_specifier] = STATE(3614), - [sym_decltype_auto] = STATE(3612), - [sym_decltype] = STATE(3593), - [sym_class_specifier] = STATE(3614), - [sym__class_name] = STATE(8694), - [sym_dependent_type] = STATE(3614), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_type_parameter_pack_expansion] = STATE(8073), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6421), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4285), - [aux_sym_type_definition_repeat1] = STATE(4728), - [aux_sym_sized_type_specifier_repeat1] = STATE(3032), - [sym_identifier] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3173), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_GT2] = ACTIONS(3244), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), - }, - [548] = { - [sym_type_qualifier] = STATE(4728), - [sym__type_specifier] = STATE(5568), - [sym_sized_type_specifier] = STATE(3614), - [sym_enum_specifier] = STATE(3614), - [sym_struct_specifier] = STATE(3614), - [sym_union_specifier] = STATE(3614), - [sym__expression] = STATE(4994), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_type_descriptor] = STATE(7987), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_placeholder_type_specifier] = STATE(3614), - [sym_decltype_auto] = STATE(3612), - [sym_decltype] = STATE(3593), - [sym_class_specifier] = STATE(3614), - [sym__class_name] = STATE(8694), - [sym_dependent_type] = STATE(3614), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_type_parameter_pack_expansion] = STATE(8032), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6421), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4285), - [aux_sym_type_definition_repeat1] = STATE(4728), - [aux_sym_sized_type_specifier_repeat1] = STATE(3032), - [sym_identifier] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3173), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_GT2] = ACTIONS(3246), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), - }, - [549] = { - [sym_catch_clause] = STATE(549), - [aux_sym_constructor_try_statement_repeat1] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(2232), - [sym_identifier] = ACTIONS(2230), - [aux_sym_preproc_include_token1] = ACTIONS(2230), - [aux_sym_preproc_def_token1] = ACTIONS(2230), - [aux_sym_preproc_if_token1] = ACTIONS(2230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2230), - [sym_preproc_directive] = ACTIONS(2230), - [anon_sym_LPAREN2] = ACTIONS(2232), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_AMP_AMP] = ACTIONS(2232), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2232), - [anon_sym___extension__] = ACTIONS(2230), - [anon_sym_typedef] = ACTIONS(2230), - [anon_sym_extern] = ACTIONS(2230), - [anon_sym___attribute__] = ACTIONS(2230), - [anon_sym_COLON_COLON] = ACTIONS(2232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2232), - [anon_sym___declspec] = ACTIONS(2230), - [anon_sym___based] = ACTIONS(2230), - [anon_sym___cdecl] = ACTIONS(2230), - [anon_sym___clrcall] = ACTIONS(2230), - [anon_sym___stdcall] = ACTIONS(2230), - [anon_sym___fastcall] = ACTIONS(2230), - [anon_sym___thiscall] = ACTIONS(2230), - [anon_sym___vectorcall] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_signed] = ACTIONS(2230), - [anon_sym_unsigned] = ACTIONS(2230), - [anon_sym_long] = ACTIONS(2230), - [anon_sym_short] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_register] = ACTIONS(2230), - [anon_sym_inline] = ACTIONS(2230), - [anon_sym___inline] = ACTIONS(2230), - [anon_sym___inline__] = ACTIONS(2230), - [anon_sym___forceinline] = ACTIONS(2230), - [anon_sym_thread_local] = ACTIONS(2230), - [anon_sym___thread] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_constexpr] = ACTIONS(2230), - [anon_sym_volatile] = ACTIONS(2230), - [anon_sym_restrict] = ACTIONS(2230), - [anon_sym___restrict__] = ACTIONS(2230), - [anon_sym__Atomic] = ACTIONS(2230), - [anon_sym__Noreturn] = ACTIONS(2230), - [anon_sym_noreturn] = ACTIONS(2230), - [anon_sym_mutable] = ACTIONS(2230), - [anon_sym_constinit] = ACTIONS(2230), - [anon_sym_consteval] = ACTIONS(2230), - [sym_primitive_type] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [anon_sym_class] = ACTIONS(2230), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_union] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_else] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2230), - [anon_sym_case] = ACTIONS(2230), - [anon_sym_default] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_goto] = ACTIONS(2230), - [anon_sym_not] = ACTIONS(2230), - [anon_sym_compl] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2232), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2230), - [anon_sym___alignof] = ACTIONS(2230), - [anon_sym__alignof] = ACTIONS(2230), - [anon_sym_alignof] = ACTIONS(2230), - [anon_sym__Alignof] = ACTIONS(2230), - [anon_sym_offsetof] = ACTIONS(2230), - [anon_sym__Generic] = ACTIONS(2230), - [anon_sym_asm] = ACTIONS(2230), - [anon_sym___asm__] = ACTIONS(2230), - [sym_number_literal] = ACTIONS(2232), - [anon_sym_L_SQUOTE] = ACTIONS(2232), - [anon_sym_u_SQUOTE] = ACTIONS(2232), - [anon_sym_U_SQUOTE] = ACTIONS(2232), - [anon_sym_u8_SQUOTE] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2232), - [anon_sym_L_DQUOTE] = ACTIONS(2232), - [anon_sym_u_DQUOTE] = ACTIONS(2232), - [anon_sym_U_DQUOTE] = ACTIONS(2232), - [anon_sym_u8_DQUOTE] = ACTIONS(2232), - [anon_sym_DQUOTE] = ACTIONS(2232), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [anon_sym_NULL] = ACTIONS(2230), - [anon_sym_nullptr] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2230), - [anon_sym_decltype] = ACTIONS(2230), - [anon_sym_virtual] = ACTIONS(2230), - [anon_sym_alignas] = ACTIONS(2230), - [anon_sym_explicit] = ACTIONS(2230), - [anon_sym_typename] = ACTIONS(2230), - [anon_sym_template] = ACTIONS(2230), - [anon_sym_operator] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_delete] = ACTIONS(2230), - [anon_sym_throw] = ACTIONS(2230), - [anon_sym_namespace] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2230), - [anon_sym_static_assert] = ACTIONS(2230), - [anon_sym_concept] = ACTIONS(2230), - [anon_sym_co_return] = ACTIONS(2230), - [anon_sym_co_yield] = ACTIONS(2230), - [anon_sym_catch] = ACTIONS(3248), - [anon_sym_R_DQUOTE] = ACTIONS(2232), - [anon_sym_LR_DQUOTE] = ACTIONS(2232), - [anon_sym_uR_DQUOTE] = ACTIONS(2232), - [anon_sym_UR_DQUOTE] = ACTIONS(2232), - [anon_sym_u8R_DQUOTE] = ACTIONS(2232), - [anon_sym_co_await] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_requires] = ACTIONS(2230), - [sym_this] = ACTIONS(2230), - }, - [550] = { - [sym_identifier] = ACTIONS(3251), - [aux_sym_preproc_include_token1] = ACTIONS(3251), - [aux_sym_preproc_def_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token2] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3251), - [aux_sym_preproc_else_token1] = ACTIONS(3251), - [aux_sym_preproc_elif_token1] = ACTIONS(3251), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3251), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3251), - [sym_preproc_directive] = ACTIONS(3251), - [anon_sym_LPAREN2] = ACTIONS(3253), - [anon_sym_BANG] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_SEMI] = ACTIONS(3253), - [anon_sym___extension__] = ACTIONS(3251), - [anon_sym_typedef] = ACTIONS(3251), - [anon_sym_extern] = ACTIONS(3251), - [anon_sym___attribute__] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(3253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3253), - [anon_sym___declspec] = ACTIONS(3251), - [anon_sym___based] = ACTIONS(3251), - [anon_sym___cdecl] = ACTIONS(3251), - [anon_sym___clrcall] = ACTIONS(3251), - [anon_sym___stdcall] = ACTIONS(3251), - [anon_sym___fastcall] = ACTIONS(3251), - [anon_sym___thiscall] = ACTIONS(3251), - [anon_sym___vectorcall] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_signed] = ACTIONS(3251), - [anon_sym_unsigned] = ACTIONS(3251), - [anon_sym_long] = ACTIONS(3251), - [anon_sym_short] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_register] = ACTIONS(3251), - [anon_sym_inline] = ACTIONS(3251), - [anon_sym___inline] = ACTIONS(3251), - [anon_sym___inline__] = ACTIONS(3251), - [anon_sym___forceinline] = ACTIONS(3251), - [anon_sym_thread_local] = ACTIONS(3251), - [anon_sym___thread] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_constexpr] = ACTIONS(3251), - [anon_sym_volatile] = ACTIONS(3251), - [anon_sym_restrict] = ACTIONS(3251), - [anon_sym___restrict__] = ACTIONS(3251), - [anon_sym__Atomic] = ACTIONS(3251), - [anon_sym__Noreturn] = ACTIONS(3251), - [anon_sym_noreturn] = ACTIONS(3251), - [anon_sym_mutable] = ACTIONS(3251), - [anon_sym_constinit] = ACTIONS(3251), - [anon_sym_consteval] = ACTIONS(3251), - [sym_primitive_type] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_union] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_switch] = ACTIONS(3251), - [anon_sym_case] = ACTIONS(3251), - [anon_sym_default] = ACTIONS(3251), - [anon_sym_while] = ACTIONS(3251), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_goto] = ACTIONS(3251), - [anon_sym_not] = ACTIONS(3251), - [anon_sym_compl] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_PLUS_PLUS] = ACTIONS(3253), - [anon_sym_sizeof] = ACTIONS(3251), - [anon_sym___alignof__] = ACTIONS(3251), - [anon_sym___alignof] = ACTIONS(3251), - [anon_sym__alignof] = ACTIONS(3251), - [anon_sym_alignof] = ACTIONS(3251), - [anon_sym__Alignof] = ACTIONS(3251), - [anon_sym_offsetof] = ACTIONS(3251), - [anon_sym__Generic] = ACTIONS(3251), - [anon_sym_asm] = ACTIONS(3251), - [anon_sym___asm__] = ACTIONS(3251), - [sym_number_literal] = ACTIONS(3253), - [anon_sym_L_SQUOTE] = ACTIONS(3253), - [anon_sym_u_SQUOTE] = ACTIONS(3253), - [anon_sym_U_SQUOTE] = ACTIONS(3253), - [anon_sym_u8_SQUOTE] = ACTIONS(3253), - [anon_sym_SQUOTE] = ACTIONS(3253), - [anon_sym_L_DQUOTE] = ACTIONS(3253), - [anon_sym_u_DQUOTE] = ACTIONS(3253), - [anon_sym_U_DQUOTE] = ACTIONS(3253), - [anon_sym_u8_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [anon_sym_NULL] = ACTIONS(3251), - [anon_sym_nullptr] = ACTIONS(3251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3251), - [anon_sym_decltype] = ACTIONS(3251), - [anon_sym_virtual] = ACTIONS(3251), - [anon_sym_alignas] = ACTIONS(3251), - [anon_sym_explicit] = ACTIONS(3251), - [anon_sym_typename] = ACTIONS(3251), - [anon_sym_template] = ACTIONS(3251), - [anon_sym_operator] = ACTIONS(3251), - [anon_sym_try] = ACTIONS(3251), - [anon_sym_delete] = ACTIONS(3251), - [anon_sym_throw] = ACTIONS(3251), - [anon_sym_namespace] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_static_assert] = ACTIONS(3251), - [anon_sym_concept] = ACTIONS(3251), - [anon_sym_co_return] = ACTIONS(3251), - [anon_sym_co_yield] = ACTIONS(3251), - [anon_sym_R_DQUOTE] = ACTIONS(3253), - [anon_sym_LR_DQUOTE] = ACTIONS(3253), - [anon_sym_uR_DQUOTE] = ACTIONS(3253), - [anon_sym_UR_DQUOTE] = ACTIONS(3253), - [anon_sym_u8R_DQUOTE] = ACTIONS(3253), - [anon_sym_co_await] = ACTIONS(3251), - [anon_sym_new] = ACTIONS(3251), - [anon_sym_requires] = ACTIONS(3251), - [sym_this] = ACTIONS(3251), - }, - [551] = { - [sym_identifier] = ACTIONS(3255), - [aux_sym_preproc_include_token1] = ACTIONS(3255), - [aux_sym_preproc_def_token1] = ACTIONS(3255), - [aux_sym_preproc_if_token1] = ACTIONS(3255), - [aux_sym_preproc_if_token2] = ACTIONS(3255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3255), - [aux_sym_preproc_else_token1] = ACTIONS(3255), - [aux_sym_preproc_elif_token1] = ACTIONS(3255), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3255), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3255), - [sym_preproc_directive] = ACTIONS(3255), - [anon_sym_LPAREN2] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3257), - [anon_sym_AMP_AMP] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3257), - [anon_sym___extension__] = ACTIONS(3255), - [anon_sym_typedef] = ACTIONS(3255), - [anon_sym_extern] = ACTIONS(3255), - [anon_sym___attribute__] = ACTIONS(3255), - [anon_sym_COLON_COLON] = ACTIONS(3257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3257), - [anon_sym___declspec] = ACTIONS(3255), - [anon_sym___based] = ACTIONS(3255), - [anon_sym___cdecl] = ACTIONS(3255), - [anon_sym___clrcall] = ACTIONS(3255), - [anon_sym___stdcall] = ACTIONS(3255), - [anon_sym___fastcall] = ACTIONS(3255), - [anon_sym___thiscall] = ACTIONS(3255), - [anon_sym___vectorcall] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_signed] = ACTIONS(3255), - [anon_sym_unsigned] = ACTIONS(3255), - [anon_sym_long] = ACTIONS(3255), - [anon_sym_short] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_register] = ACTIONS(3255), - [anon_sym_inline] = ACTIONS(3255), - [anon_sym___inline] = ACTIONS(3255), - [anon_sym___inline__] = ACTIONS(3255), - [anon_sym___forceinline] = ACTIONS(3255), - [anon_sym_thread_local] = ACTIONS(3255), - [anon_sym___thread] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_constexpr] = ACTIONS(3255), - [anon_sym_volatile] = ACTIONS(3255), - [anon_sym_restrict] = ACTIONS(3255), - [anon_sym___restrict__] = ACTIONS(3255), - [anon_sym__Atomic] = ACTIONS(3255), - [anon_sym__Noreturn] = ACTIONS(3255), - [anon_sym_noreturn] = ACTIONS(3255), - [anon_sym_mutable] = ACTIONS(3255), - [anon_sym_constinit] = ACTIONS(3255), - [anon_sym_consteval] = ACTIONS(3255), - [sym_primitive_type] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_struct] = ACTIONS(3255), - [anon_sym_union] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_goto] = ACTIONS(3255), - [anon_sym_not] = ACTIONS(3255), - [anon_sym_compl] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_sizeof] = ACTIONS(3255), - [anon_sym___alignof__] = ACTIONS(3255), - [anon_sym___alignof] = ACTIONS(3255), - [anon_sym__alignof] = ACTIONS(3255), - [anon_sym_alignof] = ACTIONS(3255), - [anon_sym__Alignof] = ACTIONS(3255), - [anon_sym_offsetof] = ACTIONS(3255), - [anon_sym__Generic] = ACTIONS(3255), - [anon_sym_asm] = ACTIONS(3255), - [anon_sym___asm__] = ACTIONS(3255), - [sym_number_literal] = ACTIONS(3257), - [anon_sym_L_SQUOTE] = ACTIONS(3257), - [anon_sym_u_SQUOTE] = ACTIONS(3257), - [anon_sym_U_SQUOTE] = ACTIONS(3257), - [anon_sym_u8_SQUOTE] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3257), - [anon_sym_L_DQUOTE] = ACTIONS(3257), - [anon_sym_u_DQUOTE] = ACTIONS(3257), - [anon_sym_U_DQUOTE] = ACTIONS(3257), - [anon_sym_u8_DQUOTE] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3257), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [anon_sym_NULL] = ACTIONS(3255), - [anon_sym_nullptr] = ACTIONS(3255), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3255), - [anon_sym_decltype] = ACTIONS(3255), - [anon_sym_virtual] = ACTIONS(3255), - [anon_sym_alignas] = ACTIONS(3255), - [anon_sym_explicit] = ACTIONS(3255), - [anon_sym_typename] = ACTIONS(3255), - [anon_sym_template] = ACTIONS(3255), - [anon_sym_operator] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_static_assert] = ACTIONS(3255), - [anon_sym_concept] = ACTIONS(3255), - [anon_sym_co_return] = ACTIONS(3255), - [anon_sym_co_yield] = ACTIONS(3255), - [anon_sym_R_DQUOTE] = ACTIONS(3257), - [anon_sym_LR_DQUOTE] = ACTIONS(3257), - [anon_sym_uR_DQUOTE] = ACTIONS(3257), - [anon_sym_UR_DQUOTE] = ACTIONS(3257), - [anon_sym_u8R_DQUOTE] = ACTIONS(3257), - [anon_sym_co_await] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_requires] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - }, - [552] = { - [sym_identifier] = ACTIONS(3259), - [aux_sym_preproc_include_token1] = ACTIONS(3259), - [aux_sym_preproc_def_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token2] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3259), - [aux_sym_preproc_else_token1] = ACTIONS(3259), - [aux_sym_preproc_elif_token1] = ACTIONS(3259), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3259), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3259), - [sym_preproc_directive] = ACTIONS(3259), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(3261), - [anon_sym_TILDE] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3261), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_SEMI] = ACTIONS(3261), - [anon_sym___extension__] = ACTIONS(3259), - [anon_sym_typedef] = ACTIONS(3259), - [anon_sym_extern] = ACTIONS(3259), - [anon_sym___attribute__] = ACTIONS(3259), - [anon_sym_COLON_COLON] = ACTIONS(3261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3261), - [anon_sym___declspec] = ACTIONS(3259), - [anon_sym___based] = ACTIONS(3259), - [anon_sym___cdecl] = ACTIONS(3259), - [anon_sym___clrcall] = ACTIONS(3259), - [anon_sym___stdcall] = ACTIONS(3259), - [anon_sym___fastcall] = ACTIONS(3259), - [anon_sym___thiscall] = ACTIONS(3259), - [anon_sym___vectorcall] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3261), - [anon_sym_signed] = ACTIONS(3259), - [anon_sym_unsigned] = ACTIONS(3259), - [anon_sym_long] = ACTIONS(3259), - [anon_sym_short] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_static] = ACTIONS(3259), - [anon_sym_register] = ACTIONS(3259), - [anon_sym_inline] = ACTIONS(3259), - [anon_sym___inline] = ACTIONS(3259), - [anon_sym___inline__] = ACTIONS(3259), - [anon_sym___forceinline] = ACTIONS(3259), - [anon_sym_thread_local] = ACTIONS(3259), - [anon_sym___thread] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_constexpr] = ACTIONS(3259), - [anon_sym_volatile] = ACTIONS(3259), - [anon_sym_restrict] = ACTIONS(3259), - [anon_sym___restrict__] = ACTIONS(3259), - [anon_sym__Atomic] = ACTIONS(3259), - [anon_sym__Noreturn] = ACTIONS(3259), - [anon_sym_noreturn] = ACTIONS(3259), - [anon_sym_mutable] = ACTIONS(3259), - [anon_sym_constinit] = ACTIONS(3259), - [anon_sym_consteval] = ACTIONS(3259), - [sym_primitive_type] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), - [anon_sym_class] = ACTIONS(3259), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_union] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_switch] = ACTIONS(3259), - [anon_sym_case] = ACTIONS(3259), - [anon_sym_default] = ACTIONS(3259), - [anon_sym_while] = ACTIONS(3259), - [anon_sym_do] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_goto] = ACTIONS(3259), - [anon_sym_not] = ACTIONS(3259), - [anon_sym_compl] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3261), - [anon_sym_PLUS_PLUS] = ACTIONS(3261), - [anon_sym_sizeof] = ACTIONS(3259), - [anon_sym___alignof__] = ACTIONS(3259), - [anon_sym___alignof] = ACTIONS(3259), - [anon_sym__alignof] = ACTIONS(3259), - [anon_sym_alignof] = ACTIONS(3259), - [anon_sym__Alignof] = ACTIONS(3259), - [anon_sym_offsetof] = ACTIONS(3259), - [anon_sym__Generic] = ACTIONS(3259), - [anon_sym_asm] = ACTIONS(3259), - [anon_sym___asm__] = ACTIONS(3259), - [sym_number_literal] = ACTIONS(3261), - [anon_sym_L_SQUOTE] = ACTIONS(3261), - [anon_sym_u_SQUOTE] = ACTIONS(3261), - [anon_sym_U_SQUOTE] = ACTIONS(3261), - [anon_sym_u8_SQUOTE] = ACTIONS(3261), - [anon_sym_SQUOTE] = ACTIONS(3261), - [anon_sym_L_DQUOTE] = ACTIONS(3261), - [anon_sym_u_DQUOTE] = ACTIONS(3261), - [anon_sym_U_DQUOTE] = ACTIONS(3261), - [anon_sym_u8_DQUOTE] = ACTIONS(3261), - [anon_sym_DQUOTE] = ACTIONS(3261), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [anon_sym_NULL] = ACTIONS(3259), - [anon_sym_nullptr] = ACTIONS(3259), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3259), - [anon_sym_decltype] = ACTIONS(3259), - [anon_sym_virtual] = ACTIONS(3259), - [anon_sym_alignas] = ACTIONS(3259), - [anon_sym_explicit] = ACTIONS(3259), - [anon_sym_typename] = ACTIONS(3259), - [anon_sym_template] = ACTIONS(3259), - [anon_sym_operator] = ACTIONS(3259), - [anon_sym_try] = ACTIONS(3259), - [anon_sym_delete] = ACTIONS(3259), - [anon_sym_throw] = ACTIONS(3259), - [anon_sym_namespace] = ACTIONS(3259), - [anon_sym_using] = ACTIONS(3259), - [anon_sym_static_assert] = ACTIONS(3259), - [anon_sym_concept] = ACTIONS(3259), - [anon_sym_co_return] = ACTIONS(3259), - [anon_sym_co_yield] = ACTIONS(3259), - [anon_sym_R_DQUOTE] = ACTIONS(3261), - [anon_sym_LR_DQUOTE] = ACTIONS(3261), - [anon_sym_uR_DQUOTE] = ACTIONS(3261), - [anon_sym_UR_DQUOTE] = ACTIONS(3261), - [anon_sym_u8R_DQUOTE] = ACTIONS(3261), - [anon_sym_co_await] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3259), - [anon_sym_requires] = ACTIONS(3259), - [sym_this] = ACTIONS(3259), - }, - [553] = { - [sym_identifier] = ACTIONS(3263), - [aux_sym_preproc_include_token1] = ACTIONS(3263), - [aux_sym_preproc_def_token1] = ACTIONS(3263), - [aux_sym_preproc_if_token1] = ACTIONS(3263), - [aux_sym_preproc_if_token2] = ACTIONS(3263), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3263), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3263), - [aux_sym_preproc_else_token1] = ACTIONS(3263), - [aux_sym_preproc_elif_token1] = ACTIONS(3263), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3263), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3263), - [sym_preproc_directive] = ACTIONS(3263), - [anon_sym_LPAREN2] = ACTIONS(3265), - [anon_sym_BANG] = ACTIONS(3265), - [anon_sym_TILDE] = ACTIONS(3265), - [anon_sym_DASH] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(3263), - [anon_sym_STAR] = ACTIONS(3265), - [anon_sym_AMP_AMP] = ACTIONS(3265), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_SEMI] = ACTIONS(3265), - [anon_sym___extension__] = ACTIONS(3263), - [anon_sym_typedef] = ACTIONS(3263), - [anon_sym_extern] = ACTIONS(3263), - [anon_sym___attribute__] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(3265), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3265), - [anon_sym___declspec] = ACTIONS(3263), - [anon_sym___based] = ACTIONS(3263), - [anon_sym___cdecl] = ACTIONS(3263), - [anon_sym___clrcall] = ACTIONS(3263), - [anon_sym___stdcall] = ACTIONS(3263), - [anon_sym___fastcall] = ACTIONS(3263), - [anon_sym___thiscall] = ACTIONS(3263), - [anon_sym___vectorcall] = ACTIONS(3263), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_signed] = ACTIONS(3263), - [anon_sym_unsigned] = ACTIONS(3263), - [anon_sym_long] = ACTIONS(3263), - [anon_sym_short] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3263), - [anon_sym_static] = ACTIONS(3263), - [anon_sym_register] = ACTIONS(3263), - [anon_sym_inline] = ACTIONS(3263), - [anon_sym___inline] = ACTIONS(3263), - [anon_sym___inline__] = ACTIONS(3263), - [anon_sym___forceinline] = ACTIONS(3263), - [anon_sym_thread_local] = ACTIONS(3263), - [anon_sym___thread] = ACTIONS(3263), - [anon_sym_const] = ACTIONS(3263), - [anon_sym_constexpr] = ACTIONS(3263), - [anon_sym_volatile] = ACTIONS(3263), - [anon_sym_restrict] = ACTIONS(3263), - [anon_sym___restrict__] = ACTIONS(3263), - [anon_sym__Atomic] = ACTIONS(3263), - [anon_sym__Noreturn] = ACTIONS(3263), - [anon_sym_noreturn] = ACTIONS(3263), - [anon_sym_mutable] = ACTIONS(3263), - [anon_sym_constinit] = ACTIONS(3263), - [anon_sym_consteval] = ACTIONS(3263), - [sym_primitive_type] = ACTIONS(3263), - [anon_sym_enum] = ACTIONS(3263), - [anon_sym_class] = ACTIONS(3263), - [anon_sym_struct] = ACTIONS(3263), - [anon_sym_union] = ACTIONS(3263), - [anon_sym_if] = ACTIONS(3263), - [anon_sym_switch] = ACTIONS(3263), - [anon_sym_case] = ACTIONS(3263), - [anon_sym_default] = ACTIONS(3263), - [anon_sym_while] = ACTIONS(3263), - [anon_sym_do] = ACTIONS(3263), - [anon_sym_for] = ACTIONS(3263), - [anon_sym_return] = ACTIONS(3263), - [anon_sym_break] = ACTIONS(3263), - [anon_sym_continue] = ACTIONS(3263), - [anon_sym_goto] = ACTIONS(3263), - [anon_sym_not] = ACTIONS(3263), - [anon_sym_compl] = ACTIONS(3263), - [anon_sym_DASH_DASH] = ACTIONS(3265), - [anon_sym_PLUS_PLUS] = ACTIONS(3265), - [anon_sym_sizeof] = ACTIONS(3263), - [anon_sym___alignof__] = ACTIONS(3263), - [anon_sym___alignof] = ACTIONS(3263), - [anon_sym__alignof] = ACTIONS(3263), - [anon_sym_alignof] = ACTIONS(3263), - [anon_sym__Alignof] = ACTIONS(3263), - [anon_sym_offsetof] = ACTIONS(3263), - [anon_sym__Generic] = ACTIONS(3263), - [anon_sym_asm] = ACTIONS(3263), - [anon_sym___asm__] = ACTIONS(3263), - [sym_number_literal] = ACTIONS(3265), - [anon_sym_L_SQUOTE] = ACTIONS(3265), - [anon_sym_u_SQUOTE] = ACTIONS(3265), - [anon_sym_U_SQUOTE] = ACTIONS(3265), - [anon_sym_u8_SQUOTE] = ACTIONS(3265), - [anon_sym_SQUOTE] = ACTIONS(3265), - [anon_sym_L_DQUOTE] = ACTIONS(3265), - [anon_sym_u_DQUOTE] = ACTIONS(3265), - [anon_sym_U_DQUOTE] = ACTIONS(3265), - [anon_sym_u8_DQUOTE] = ACTIONS(3265), - [anon_sym_DQUOTE] = ACTIONS(3265), - [sym_true] = ACTIONS(3263), - [sym_false] = ACTIONS(3263), - [anon_sym_NULL] = ACTIONS(3263), - [anon_sym_nullptr] = ACTIONS(3263), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3263), - [anon_sym_decltype] = ACTIONS(3263), - [anon_sym_virtual] = ACTIONS(3263), - [anon_sym_alignas] = ACTIONS(3263), - [anon_sym_explicit] = ACTIONS(3263), - [anon_sym_typename] = ACTIONS(3263), - [anon_sym_template] = ACTIONS(3263), - [anon_sym_operator] = ACTIONS(3263), - [anon_sym_try] = ACTIONS(3263), - [anon_sym_delete] = ACTIONS(3263), - [anon_sym_throw] = ACTIONS(3263), - [anon_sym_namespace] = ACTIONS(3263), - [anon_sym_using] = ACTIONS(3263), - [anon_sym_static_assert] = ACTIONS(3263), - [anon_sym_concept] = ACTIONS(3263), - [anon_sym_co_return] = ACTIONS(3263), - [anon_sym_co_yield] = ACTIONS(3263), - [anon_sym_R_DQUOTE] = ACTIONS(3265), - [anon_sym_LR_DQUOTE] = ACTIONS(3265), - [anon_sym_uR_DQUOTE] = ACTIONS(3265), - [anon_sym_UR_DQUOTE] = ACTIONS(3265), - [anon_sym_u8R_DQUOTE] = ACTIONS(3265), - [anon_sym_co_await] = ACTIONS(3263), - [anon_sym_new] = ACTIONS(3263), - [anon_sym_requires] = ACTIONS(3263), - [sym_this] = ACTIONS(3263), - }, - [554] = { - [sym_catch_clause] = STATE(554), - [aux_sym_constructor_try_statement_repeat1] = STATE(554), - [sym_identifier] = ACTIONS(2230), - [aux_sym_preproc_include_token1] = ACTIONS(2230), - [aux_sym_preproc_def_token1] = ACTIONS(2230), - [aux_sym_preproc_if_token1] = ACTIONS(2230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2230), - [sym_preproc_directive] = ACTIONS(2230), - [anon_sym_LPAREN2] = ACTIONS(2232), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_AMP_AMP] = ACTIONS(2232), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2232), - [anon_sym___extension__] = ACTIONS(2230), - [anon_sym_typedef] = ACTIONS(2230), - [anon_sym_extern] = ACTIONS(2230), - [anon_sym___attribute__] = ACTIONS(2230), - [anon_sym_COLON_COLON] = ACTIONS(2232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2232), - [anon_sym___declspec] = ACTIONS(2230), - [anon_sym___based] = ACTIONS(2230), - [anon_sym___cdecl] = ACTIONS(2230), - [anon_sym___clrcall] = ACTIONS(2230), - [anon_sym___stdcall] = ACTIONS(2230), - [anon_sym___fastcall] = ACTIONS(2230), - [anon_sym___thiscall] = ACTIONS(2230), - [anon_sym___vectorcall] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(2232), - [anon_sym_signed] = ACTIONS(2230), - [anon_sym_unsigned] = ACTIONS(2230), - [anon_sym_long] = ACTIONS(2230), - [anon_sym_short] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_register] = ACTIONS(2230), - [anon_sym_inline] = ACTIONS(2230), - [anon_sym___inline] = ACTIONS(2230), - [anon_sym___inline__] = ACTIONS(2230), - [anon_sym___forceinline] = ACTIONS(2230), - [anon_sym_thread_local] = ACTIONS(2230), - [anon_sym___thread] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_constexpr] = ACTIONS(2230), - [anon_sym_volatile] = ACTIONS(2230), - [anon_sym_restrict] = ACTIONS(2230), - [anon_sym___restrict__] = ACTIONS(2230), - [anon_sym__Atomic] = ACTIONS(2230), - [anon_sym__Noreturn] = ACTIONS(2230), - [anon_sym_noreturn] = ACTIONS(2230), - [anon_sym_mutable] = ACTIONS(2230), - [anon_sym_constinit] = ACTIONS(2230), - [anon_sym_consteval] = ACTIONS(2230), - [sym_primitive_type] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [anon_sym_class] = ACTIONS(2230), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_union] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_else] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2230), - [anon_sym_case] = ACTIONS(2230), - [anon_sym_default] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_goto] = ACTIONS(2230), - [anon_sym_not] = ACTIONS(2230), - [anon_sym_compl] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2232), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2230), - [anon_sym___alignof] = ACTIONS(2230), - [anon_sym__alignof] = ACTIONS(2230), - [anon_sym_alignof] = ACTIONS(2230), - [anon_sym__Alignof] = ACTIONS(2230), - [anon_sym_offsetof] = ACTIONS(2230), - [anon_sym__Generic] = ACTIONS(2230), - [anon_sym_asm] = ACTIONS(2230), - [anon_sym___asm__] = ACTIONS(2230), - [sym_number_literal] = ACTIONS(2232), - [anon_sym_L_SQUOTE] = ACTIONS(2232), - [anon_sym_u_SQUOTE] = ACTIONS(2232), - [anon_sym_U_SQUOTE] = ACTIONS(2232), - [anon_sym_u8_SQUOTE] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2232), - [anon_sym_L_DQUOTE] = ACTIONS(2232), - [anon_sym_u_DQUOTE] = ACTIONS(2232), - [anon_sym_U_DQUOTE] = ACTIONS(2232), - [anon_sym_u8_DQUOTE] = ACTIONS(2232), - [anon_sym_DQUOTE] = ACTIONS(2232), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [anon_sym_NULL] = ACTIONS(2230), - [anon_sym_nullptr] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2230), - [anon_sym_decltype] = ACTIONS(2230), - [anon_sym_virtual] = ACTIONS(2230), - [anon_sym_alignas] = ACTIONS(2230), - [anon_sym_explicit] = ACTIONS(2230), - [anon_sym_typename] = ACTIONS(2230), - [anon_sym_template] = ACTIONS(2230), - [anon_sym_operator] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_delete] = ACTIONS(2230), - [anon_sym_throw] = ACTIONS(2230), - [anon_sym_namespace] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2230), - [anon_sym_static_assert] = ACTIONS(2230), - [anon_sym_concept] = ACTIONS(2230), - [anon_sym_co_return] = ACTIONS(2230), - [anon_sym_co_yield] = ACTIONS(2230), - [anon_sym_catch] = ACTIONS(3267), - [anon_sym_R_DQUOTE] = ACTIONS(2232), - [anon_sym_LR_DQUOTE] = ACTIONS(2232), - [anon_sym_uR_DQUOTE] = ACTIONS(2232), - [anon_sym_UR_DQUOTE] = ACTIONS(2232), - [anon_sym_u8R_DQUOTE] = ACTIONS(2232), - [anon_sym_co_await] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_requires] = ACTIONS(2230), - [sym_this] = ACTIONS(2230), - }, - [555] = { - [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_extern] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3272), - [anon_sym___declspec] = ACTIONS(3270), - [anon_sym___based] = ACTIONS(3270), - [anon_sym___cdecl] = ACTIONS(3270), - [anon_sym___clrcall] = ACTIONS(3270), - [anon_sym___stdcall] = ACTIONS(3270), - [anon_sym___fastcall] = ACTIONS(3270), - [anon_sym___thiscall] = ACTIONS(3270), - [anon_sym___vectorcall] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_signed] = ACTIONS(3270), - [anon_sym_unsigned] = ACTIONS(3270), - [anon_sym_long] = ACTIONS(3270), - [anon_sym_short] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_register] = ACTIONS(3270), - [anon_sym_inline] = ACTIONS(3270), - [anon_sym___inline] = ACTIONS(3270), - [anon_sym___inline__] = ACTIONS(3270), - [anon_sym___forceinline] = ACTIONS(3270), - [anon_sym_thread_local] = ACTIONS(3270), - [anon_sym___thread] = ACTIONS(3270), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [sym_primitive_type] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3270), - [anon_sym_struct] = ACTIONS(3270), - [anon_sym_union] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_switch] = ACTIONS(3270), - [anon_sym_case] = ACTIONS(3270), - [anon_sym_default] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_do] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_goto] = ACTIONS(3270), - [anon_sym_not] = ACTIONS(3270), - [anon_sym_compl] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_sizeof] = ACTIONS(3270), - [anon_sym___alignof__] = ACTIONS(3270), - [anon_sym___alignof] = ACTIONS(3270), - [anon_sym__alignof] = ACTIONS(3270), - [anon_sym_alignof] = ACTIONS(3270), - [anon_sym__Alignof] = ACTIONS(3270), - [anon_sym_offsetof] = ACTIONS(3270), - [anon_sym__Generic] = ACTIONS(3270), - [anon_sym_asm] = ACTIONS(3270), - [anon_sym___asm__] = ACTIONS(3270), - [sym_number_literal] = ACTIONS(3272), - [anon_sym_L_SQUOTE] = ACTIONS(3272), - [anon_sym_u_SQUOTE] = ACTIONS(3272), - [anon_sym_U_SQUOTE] = ACTIONS(3272), - [anon_sym_u8_SQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_L_DQUOTE] = ACTIONS(3272), - [anon_sym_u_DQUOTE] = ACTIONS(3272), - [anon_sym_U_DQUOTE] = ACTIONS(3272), - [anon_sym_u8_DQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [anon_sym_NULL] = ACTIONS(3270), - [anon_sym_nullptr] = ACTIONS(3270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3270), - [anon_sym_decltype] = ACTIONS(3270), - [anon_sym_virtual] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3270), - [anon_sym_explicit] = ACTIONS(3270), - [anon_sym_typename] = ACTIONS(3270), - [anon_sym_template] = ACTIONS(3270), - [anon_sym_operator] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_delete] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_namespace] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3270), - [anon_sym_static_assert] = ACTIONS(3270), - [anon_sym_concept] = ACTIONS(3270), - [anon_sym_co_return] = ACTIONS(3270), - [anon_sym_co_yield] = ACTIONS(3270), - [anon_sym_R_DQUOTE] = ACTIONS(3272), - [anon_sym_LR_DQUOTE] = ACTIONS(3272), - [anon_sym_uR_DQUOTE] = ACTIONS(3272), - [anon_sym_UR_DQUOTE] = ACTIONS(3272), - [anon_sym_u8R_DQUOTE] = ACTIONS(3272), - [anon_sym_co_await] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3270), - [anon_sym_requires] = ACTIONS(3270), - [sym_this] = ACTIONS(3270), - }, - [556] = { - [sym_identifier] = ACTIONS(3274), - [aux_sym_preproc_include_token1] = ACTIONS(3274), - [aux_sym_preproc_def_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token2] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), - [aux_sym_preproc_else_token1] = ACTIONS(3274), - [aux_sym_preproc_elif_token1] = ACTIONS(3274), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3274), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3274), - [sym_preproc_directive] = ACTIONS(3274), - [anon_sym_LPAREN2] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_AMP] = ACTIONS(3274), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym___extension__] = ACTIONS(3274), - [anon_sym_typedef] = ACTIONS(3274), - [anon_sym_extern] = ACTIONS(3274), - [anon_sym___attribute__] = ACTIONS(3274), - [anon_sym_COLON_COLON] = ACTIONS(3276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), - [anon_sym___declspec] = ACTIONS(3274), - [anon_sym___based] = ACTIONS(3274), - [anon_sym___cdecl] = ACTIONS(3274), - [anon_sym___clrcall] = ACTIONS(3274), - [anon_sym___stdcall] = ACTIONS(3274), - [anon_sym___fastcall] = ACTIONS(3274), - [anon_sym___thiscall] = ACTIONS(3274), - [anon_sym___vectorcall] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_signed] = ACTIONS(3274), - [anon_sym_unsigned] = ACTIONS(3274), - [anon_sym_long] = ACTIONS(3274), - [anon_sym_short] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_register] = ACTIONS(3274), - [anon_sym_inline] = ACTIONS(3274), - [anon_sym___inline] = ACTIONS(3274), - [anon_sym___inline__] = ACTIONS(3274), - [anon_sym___forceinline] = ACTIONS(3274), - [anon_sym_thread_local] = ACTIONS(3274), - [anon_sym___thread] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_constexpr] = ACTIONS(3274), - [anon_sym_volatile] = ACTIONS(3274), - [anon_sym_restrict] = ACTIONS(3274), - [anon_sym___restrict__] = ACTIONS(3274), - [anon_sym__Atomic] = ACTIONS(3274), - [anon_sym__Noreturn] = ACTIONS(3274), - [anon_sym_noreturn] = ACTIONS(3274), - [anon_sym_mutable] = ACTIONS(3274), - [anon_sym_constinit] = ACTIONS(3274), - [anon_sym_consteval] = ACTIONS(3274), - [sym_primitive_type] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_union] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_case] = ACTIONS(3274), - [anon_sym_default] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_goto] = ACTIONS(3274), - [anon_sym_not] = ACTIONS(3274), - [anon_sym_compl] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_sizeof] = ACTIONS(3274), - [anon_sym___alignof__] = ACTIONS(3274), - [anon_sym___alignof] = ACTIONS(3274), - [anon_sym__alignof] = ACTIONS(3274), - [anon_sym_alignof] = ACTIONS(3274), - [anon_sym__Alignof] = ACTIONS(3274), - [anon_sym_offsetof] = ACTIONS(3274), - [anon_sym__Generic] = ACTIONS(3274), - [anon_sym_asm] = ACTIONS(3274), - [anon_sym___asm__] = ACTIONS(3274), - [sym_number_literal] = ACTIONS(3276), - [anon_sym_L_SQUOTE] = ACTIONS(3276), - [anon_sym_u_SQUOTE] = ACTIONS(3276), - [anon_sym_U_SQUOTE] = ACTIONS(3276), - [anon_sym_u8_SQUOTE] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3276), - [anon_sym_L_DQUOTE] = ACTIONS(3276), - [anon_sym_u_DQUOTE] = ACTIONS(3276), - [anon_sym_U_DQUOTE] = ACTIONS(3276), - [anon_sym_u8_DQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [anon_sym_NULL] = ACTIONS(3274), - [anon_sym_nullptr] = ACTIONS(3274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3274), - [anon_sym_decltype] = ACTIONS(3274), - [anon_sym_virtual] = ACTIONS(3274), - [anon_sym_alignas] = ACTIONS(3274), - [anon_sym_explicit] = ACTIONS(3274), - [anon_sym_typename] = ACTIONS(3274), - [anon_sym_template] = ACTIONS(3274), - [anon_sym_operator] = ACTIONS(3274), - [anon_sym_try] = ACTIONS(3274), - [anon_sym_delete] = ACTIONS(3274), - [anon_sym_throw] = ACTIONS(3274), - [anon_sym_namespace] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_static_assert] = ACTIONS(3274), - [anon_sym_concept] = ACTIONS(3274), - [anon_sym_co_return] = ACTIONS(3274), - [anon_sym_co_yield] = ACTIONS(3274), - [anon_sym_R_DQUOTE] = ACTIONS(3276), - [anon_sym_LR_DQUOTE] = ACTIONS(3276), - [anon_sym_uR_DQUOTE] = ACTIONS(3276), - [anon_sym_UR_DQUOTE] = ACTIONS(3276), - [anon_sym_u8R_DQUOTE] = ACTIONS(3276), - [anon_sym_co_await] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3274), - [anon_sym_requires] = ACTIONS(3274), - [sym_this] = ACTIONS(3274), - }, - [557] = { - [sym_identifier] = ACTIONS(3278), - [aux_sym_preproc_include_token1] = ACTIONS(3278), - [aux_sym_preproc_def_token1] = ACTIONS(3278), - [aux_sym_preproc_if_token1] = ACTIONS(3278), - [aux_sym_preproc_if_token2] = ACTIONS(3278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3278), - [aux_sym_preproc_else_token1] = ACTIONS(3278), - [aux_sym_preproc_elif_token1] = ACTIONS(3278), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3278), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3278), - [sym_preproc_directive] = ACTIONS(3278), - [anon_sym_LPAREN2] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_AMP] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym___extension__] = ACTIONS(3278), - [anon_sym_typedef] = ACTIONS(3278), - [anon_sym_extern] = ACTIONS(3278), - [anon_sym___attribute__] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3280), - [anon_sym___declspec] = ACTIONS(3278), - [anon_sym___based] = ACTIONS(3278), - [anon_sym___cdecl] = ACTIONS(3278), - [anon_sym___clrcall] = ACTIONS(3278), - [anon_sym___stdcall] = ACTIONS(3278), - [anon_sym___fastcall] = ACTIONS(3278), - [anon_sym___thiscall] = ACTIONS(3278), - [anon_sym___vectorcall] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_signed] = ACTIONS(3278), - [anon_sym_unsigned] = ACTIONS(3278), - [anon_sym_long] = ACTIONS(3278), - [anon_sym_short] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3278), - [anon_sym_static] = ACTIONS(3278), - [anon_sym_register] = ACTIONS(3278), - [anon_sym_inline] = ACTIONS(3278), - [anon_sym___inline] = ACTIONS(3278), - [anon_sym___inline__] = ACTIONS(3278), - [anon_sym___forceinline] = ACTIONS(3278), - [anon_sym_thread_local] = ACTIONS(3278), - [anon_sym___thread] = ACTIONS(3278), - [anon_sym_const] = ACTIONS(3278), - [anon_sym_constexpr] = ACTIONS(3278), - [anon_sym_volatile] = ACTIONS(3278), - [anon_sym_restrict] = ACTIONS(3278), - [anon_sym___restrict__] = ACTIONS(3278), - [anon_sym__Atomic] = ACTIONS(3278), - [anon_sym__Noreturn] = ACTIONS(3278), - [anon_sym_noreturn] = ACTIONS(3278), - [anon_sym_mutable] = ACTIONS(3278), - [anon_sym_constinit] = ACTIONS(3278), - [anon_sym_consteval] = ACTIONS(3278), - [sym_primitive_type] = ACTIONS(3278), - [anon_sym_enum] = ACTIONS(3278), - [anon_sym_class] = ACTIONS(3278), - [anon_sym_struct] = ACTIONS(3278), - [anon_sym_union] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_switch] = ACTIONS(3278), - [anon_sym_case] = ACTIONS(3278), - [anon_sym_default] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_do] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_goto] = ACTIONS(3278), - [anon_sym_not] = ACTIONS(3278), - [anon_sym_compl] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_sizeof] = ACTIONS(3278), - [anon_sym___alignof__] = ACTIONS(3278), - [anon_sym___alignof] = ACTIONS(3278), - [anon_sym__alignof] = ACTIONS(3278), - [anon_sym_alignof] = ACTIONS(3278), - [anon_sym__Alignof] = ACTIONS(3278), - [anon_sym_offsetof] = ACTIONS(3278), - [anon_sym__Generic] = ACTIONS(3278), - [anon_sym_asm] = ACTIONS(3278), - [anon_sym___asm__] = ACTIONS(3278), - [sym_number_literal] = ACTIONS(3280), - [anon_sym_L_SQUOTE] = ACTIONS(3280), - [anon_sym_u_SQUOTE] = ACTIONS(3280), - [anon_sym_U_SQUOTE] = ACTIONS(3280), - [anon_sym_u8_SQUOTE] = ACTIONS(3280), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_L_DQUOTE] = ACTIONS(3280), - [anon_sym_u_DQUOTE] = ACTIONS(3280), - [anon_sym_U_DQUOTE] = ACTIONS(3280), - [anon_sym_u8_DQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [anon_sym_NULL] = ACTIONS(3278), - [anon_sym_nullptr] = ACTIONS(3278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3278), - [anon_sym_decltype] = ACTIONS(3278), - [anon_sym_virtual] = ACTIONS(3278), - [anon_sym_alignas] = ACTIONS(3278), - [anon_sym_explicit] = ACTIONS(3278), - [anon_sym_typename] = ACTIONS(3278), - [anon_sym_template] = ACTIONS(3278), - [anon_sym_operator] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_delete] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_namespace] = ACTIONS(3278), - [anon_sym_using] = ACTIONS(3278), - [anon_sym_static_assert] = ACTIONS(3278), - [anon_sym_concept] = ACTIONS(3278), - [anon_sym_co_return] = ACTIONS(3278), - [anon_sym_co_yield] = ACTIONS(3278), - [anon_sym_R_DQUOTE] = ACTIONS(3280), - [anon_sym_LR_DQUOTE] = ACTIONS(3280), - [anon_sym_uR_DQUOTE] = ACTIONS(3280), - [anon_sym_UR_DQUOTE] = ACTIONS(3280), - [anon_sym_u8R_DQUOTE] = ACTIONS(3280), - [anon_sym_co_await] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3278), - [anon_sym_requires] = ACTIONS(3278), - [sym_this] = ACTIONS(3278), - }, - [558] = { - [sym_identifier] = ACTIONS(3282), - [aux_sym_preproc_include_token1] = ACTIONS(3282), - [aux_sym_preproc_def_token1] = ACTIONS(3282), - [aux_sym_preproc_if_token1] = ACTIONS(3282), - [aux_sym_preproc_if_token2] = ACTIONS(3282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3282), - [aux_sym_preproc_else_token1] = ACTIONS(3282), - [aux_sym_preproc_elif_token1] = ACTIONS(3282), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3282), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3282), - [sym_preproc_directive] = ACTIONS(3282), - [anon_sym_LPAREN2] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3282), - [anon_sym_PLUS] = ACTIONS(3282), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_AMP_AMP] = ACTIONS(3284), - [anon_sym_AMP] = ACTIONS(3282), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym___extension__] = ACTIONS(3282), - [anon_sym_typedef] = ACTIONS(3282), - [anon_sym_extern] = ACTIONS(3282), - [anon_sym___attribute__] = ACTIONS(3282), - [anon_sym_COLON_COLON] = ACTIONS(3284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3284), - [anon_sym___declspec] = ACTIONS(3282), - [anon_sym___based] = ACTIONS(3282), - [anon_sym___cdecl] = ACTIONS(3282), - [anon_sym___clrcall] = ACTIONS(3282), - [anon_sym___stdcall] = ACTIONS(3282), - [anon_sym___fastcall] = ACTIONS(3282), - [anon_sym___thiscall] = ACTIONS(3282), - [anon_sym___vectorcall] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_signed] = ACTIONS(3282), - [anon_sym_unsigned] = ACTIONS(3282), - [anon_sym_long] = ACTIONS(3282), - [anon_sym_short] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_register] = ACTIONS(3282), - [anon_sym_inline] = ACTIONS(3282), - [anon_sym___inline] = ACTIONS(3282), - [anon_sym___inline__] = ACTIONS(3282), - [anon_sym___forceinline] = ACTIONS(3282), - [anon_sym_thread_local] = ACTIONS(3282), - [anon_sym___thread] = ACTIONS(3282), - [anon_sym_const] = ACTIONS(3282), - [anon_sym_constexpr] = ACTIONS(3282), - [anon_sym_volatile] = ACTIONS(3282), - [anon_sym_restrict] = ACTIONS(3282), - [anon_sym___restrict__] = ACTIONS(3282), - [anon_sym__Atomic] = ACTIONS(3282), - [anon_sym__Noreturn] = ACTIONS(3282), - [anon_sym_noreturn] = ACTIONS(3282), - [anon_sym_mutable] = ACTIONS(3282), - [anon_sym_constinit] = ACTIONS(3282), - [anon_sym_consteval] = ACTIONS(3282), - [sym_primitive_type] = ACTIONS(3282), - [anon_sym_enum] = ACTIONS(3282), - [anon_sym_class] = ACTIONS(3282), - [anon_sym_struct] = ACTIONS(3282), - [anon_sym_union] = ACTIONS(3282), - [anon_sym_if] = ACTIONS(3282), - [anon_sym_switch] = ACTIONS(3282), - [anon_sym_case] = ACTIONS(3282), - [anon_sym_default] = ACTIONS(3282), - [anon_sym_while] = ACTIONS(3282), - [anon_sym_do] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3282), - [anon_sym_return] = ACTIONS(3282), - [anon_sym_break] = ACTIONS(3282), - [anon_sym_continue] = ACTIONS(3282), - [anon_sym_goto] = ACTIONS(3282), - [anon_sym_not] = ACTIONS(3282), - [anon_sym_compl] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_sizeof] = ACTIONS(3282), - [anon_sym___alignof__] = ACTIONS(3282), - [anon_sym___alignof] = ACTIONS(3282), - [anon_sym__alignof] = ACTIONS(3282), - [anon_sym_alignof] = ACTIONS(3282), - [anon_sym__Alignof] = ACTIONS(3282), - [anon_sym_offsetof] = ACTIONS(3282), - [anon_sym__Generic] = ACTIONS(3282), - [anon_sym_asm] = ACTIONS(3282), - [anon_sym___asm__] = ACTIONS(3282), - [sym_number_literal] = ACTIONS(3284), - [anon_sym_L_SQUOTE] = ACTIONS(3284), - [anon_sym_u_SQUOTE] = ACTIONS(3284), - [anon_sym_U_SQUOTE] = ACTIONS(3284), - [anon_sym_u8_SQUOTE] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3284), - [anon_sym_L_DQUOTE] = ACTIONS(3284), - [anon_sym_u_DQUOTE] = ACTIONS(3284), - [anon_sym_U_DQUOTE] = ACTIONS(3284), - [anon_sym_u8_DQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [sym_true] = ACTIONS(3282), - [sym_false] = ACTIONS(3282), - [anon_sym_NULL] = ACTIONS(3282), - [anon_sym_nullptr] = ACTIONS(3282), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3282), - [anon_sym_decltype] = ACTIONS(3282), - [anon_sym_virtual] = ACTIONS(3282), - [anon_sym_alignas] = ACTIONS(3282), - [anon_sym_explicit] = ACTIONS(3282), - [anon_sym_typename] = ACTIONS(3282), - [anon_sym_template] = ACTIONS(3282), - [anon_sym_operator] = ACTIONS(3282), - [anon_sym_try] = ACTIONS(3282), - [anon_sym_delete] = ACTIONS(3282), - [anon_sym_throw] = ACTIONS(3282), - [anon_sym_namespace] = ACTIONS(3282), - [anon_sym_using] = ACTIONS(3282), - [anon_sym_static_assert] = ACTIONS(3282), - [anon_sym_concept] = ACTIONS(3282), - [anon_sym_co_return] = ACTIONS(3282), - [anon_sym_co_yield] = ACTIONS(3282), - [anon_sym_R_DQUOTE] = ACTIONS(3284), - [anon_sym_LR_DQUOTE] = ACTIONS(3284), - [anon_sym_uR_DQUOTE] = ACTIONS(3284), - [anon_sym_UR_DQUOTE] = ACTIONS(3284), - [anon_sym_u8R_DQUOTE] = ACTIONS(3284), - [anon_sym_co_await] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3282), - [anon_sym_requires] = ACTIONS(3282), - [sym_this] = ACTIONS(3282), - }, - [559] = { - [sym_identifier] = ACTIONS(3286), - [aux_sym_preproc_include_token1] = ACTIONS(3286), - [aux_sym_preproc_def_token1] = ACTIONS(3286), - [aux_sym_preproc_if_token1] = ACTIONS(3286), - [aux_sym_preproc_if_token2] = ACTIONS(3286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), - [aux_sym_preproc_else_token1] = ACTIONS(3286), - [aux_sym_preproc_elif_token1] = ACTIONS(3286), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3286), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3286), - [sym_preproc_directive] = ACTIONS(3286), - [anon_sym_LPAREN2] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_AMP] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym___extension__] = ACTIONS(3286), - [anon_sym_typedef] = ACTIONS(3286), - [anon_sym_extern] = ACTIONS(3286), - [anon_sym___attribute__] = ACTIONS(3286), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), - [anon_sym___declspec] = ACTIONS(3286), - [anon_sym___based] = ACTIONS(3286), - [anon_sym___cdecl] = ACTIONS(3286), - [anon_sym___clrcall] = ACTIONS(3286), - [anon_sym___stdcall] = ACTIONS(3286), - [anon_sym___fastcall] = ACTIONS(3286), - [anon_sym___thiscall] = ACTIONS(3286), - [anon_sym___vectorcall] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_signed] = ACTIONS(3286), - [anon_sym_unsigned] = ACTIONS(3286), - [anon_sym_long] = ACTIONS(3286), - [anon_sym_short] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3286), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_register] = ACTIONS(3286), - [anon_sym_inline] = ACTIONS(3286), - [anon_sym___inline] = ACTIONS(3286), - [anon_sym___inline__] = ACTIONS(3286), - [anon_sym___forceinline] = ACTIONS(3286), - [anon_sym_thread_local] = ACTIONS(3286), - [anon_sym___thread] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_constexpr] = ACTIONS(3286), - [anon_sym_volatile] = ACTIONS(3286), - [anon_sym_restrict] = ACTIONS(3286), - [anon_sym___restrict__] = ACTIONS(3286), - [anon_sym__Atomic] = ACTIONS(3286), - [anon_sym__Noreturn] = ACTIONS(3286), - [anon_sym_noreturn] = ACTIONS(3286), - [anon_sym_mutable] = ACTIONS(3286), - [anon_sym_constinit] = ACTIONS(3286), - [anon_sym_consteval] = ACTIONS(3286), - [sym_primitive_type] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), - [anon_sym_class] = ACTIONS(3286), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_union] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3286), - [anon_sym_default] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_goto] = ACTIONS(3286), - [anon_sym_not] = ACTIONS(3286), - [anon_sym_compl] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_sizeof] = ACTIONS(3286), - [anon_sym___alignof__] = ACTIONS(3286), - [anon_sym___alignof] = ACTIONS(3286), - [anon_sym__alignof] = ACTIONS(3286), - [anon_sym_alignof] = ACTIONS(3286), - [anon_sym__Alignof] = ACTIONS(3286), - [anon_sym_offsetof] = ACTIONS(3286), - [anon_sym__Generic] = ACTIONS(3286), - [anon_sym_asm] = ACTIONS(3286), - [anon_sym___asm__] = ACTIONS(3286), - [sym_number_literal] = ACTIONS(3288), - [anon_sym_L_SQUOTE] = ACTIONS(3288), - [anon_sym_u_SQUOTE] = ACTIONS(3288), - [anon_sym_U_SQUOTE] = ACTIONS(3288), - [anon_sym_u8_SQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_L_DQUOTE] = ACTIONS(3288), - [anon_sym_u_DQUOTE] = ACTIONS(3288), - [anon_sym_U_DQUOTE] = ACTIONS(3288), - [anon_sym_u8_DQUOTE] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [anon_sym_NULL] = ACTIONS(3286), - [anon_sym_nullptr] = ACTIONS(3286), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3286), - [anon_sym_decltype] = ACTIONS(3286), - [anon_sym_virtual] = ACTIONS(3286), - [anon_sym_alignas] = ACTIONS(3286), - [anon_sym_explicit] = ACTIONS(3286), - [anon_sym_typename] = ACTIONS(3286), - [anon_sym_template] = ACTIONS(3286), - [anon_sym_operator] = ACTIONS(3286), - [anon_sym_try] = ACTIONS(3286), - [anon_sym_delete] = ACTIONS(3286), - [anon_sym_throw] = ACTIONS(3286), - [anon_sym_namespace] = ACTIONS(3286), - [anon_sym_using] = ACTIONS(3286), - [anon_sym_static_assert] = ACTIONS(3286), - [anon_sym_concept] = ACTIONS(3286), - [anon_sym_co_return] = ACTIONS(3286), - [anon_sym_co_yield] = ACTIONS(3286), - [anon_sym_R_DQUOTE] = ACTIONS(3288), - [anon_sym_LR_DQUOTE] = ACTIONS(3288), - [anon_sym_uR_DQUOTE] = ACTIONS(3288), - [anon_sym_UR_DQUOTE] = ACTIONS(3288), - [anon_sym_u8R_DQUOTE] = ACTIONS(3288), - [anon_sym_co_await] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3286), - [anon_sym_requires] = ACTIONS(3286), - [sym_this] = ACTIONS(3286), - }, - [560] = { - [sym_identifier] = ACTIONS(3290), - [aux_sym_preproc_include_token1] = ACTIONS(3290), - [aux_sym_preproc_def_token1] = ACTIONS(3290), - [aux_sym_preproc_if_token1] = ACTIONS(3290), - [aux_sym_preproc_if_token2] = ACTIONS(3290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3290), - [aux_sym_preproc_else_token1] = ACTIONS(3290), - [aux_sym_preproc_elif_token1] = ACTIONS(3290), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3290), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3290), - [sym_preproc_directive] = ACTIONS(3290), - [anon_sym_LPAREN2] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3290), - [anon_sym_PLUS] = ACTIONS(3290), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_AMP] = ACTIONS(3290), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym___extension__] = ACTIONS(3290), - [anon_sym_typedef] = ACTIONS(3290), - [anon_sym_extern] = ACTIONS(3290), - [anon_sym___attribute__] = ACTIONS(3290), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3292), - [anon_sym___declspec] = ACTIONS(3290), - [anon_sym___based] = ACTIONS(3290), - [anon_sym___cdecl] = ACTIONS(3290), - [anon_sym___clrcall] = ACTIONS(3290), - [anon_sym___stdcall] = ACTIONS(3290), - [anon_sym___fastcall] = ACTIONS(3290), - [anon_sym___thiscall] = ACTIONS(3290), - [anon_sym___vectorcall] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_signed] = ACTIONS(3290), - [anon_sym_unsigned] = ACTIONS(3290), - [anon_sym_long] = ACTIONS(3290), - [anon_sym_short] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_static] = ACTIONS(3290), - [anon_sym_register] = ACTIONS(3290), - [anon_sym_inline] = ACTIONS(3290), - [anon_sym___inline] = ACTIONS(3290), - [anon_sym___inline__] = ACTIONS(3290), - [anon_sym___forceinline] = ACTIONS(3290), - [anon_sym_thread_local] = ACTIONS(3290), - [anon_sym___thread] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_constexpr] = ACTIONS(3290), - [anon_sym_volatile] = ACTIONS(3290), - [anon_sym_restrict] = ACTIONS(3290), - [anon_sym___restrict__] = ACTIONS(3290), - [anon_sym__Atomic] = ACTIONS(3290), - [anon_sym__Noreturn] = ACTIONS(3290), - [anon_sym_noreturn] = ACTIONS(3290), - [anon_sym_mutable] = ACTIONS(3290), - [anon_sym_constinit] = ACTIONS(3290), - [anon_sym_consteval] = ACTIONS(3290), - [sym_primitive_type] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), - [anon_sym_class] = ACTIONS(3290), - [anon_sym_struct] = ACTIONS(3290), - [anon_sym_union] = ACTIONS(3290), - [anon_sym_if] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3290), - [anon_sym_case] = ACTIONS(3290), - [anon_sym_default] = ACTIONS(3290), - [anon_sym_while] = ACTIONS(3290), - [anon_sym_do] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3290), - [anon_sym_return] = ACTIONS(3290), - [anon_sym_break] = ACTIONS(3290), - [anon_sym_continue] = ACTIONS(3290), - [anon_sym_goto] = ACTIONS(3290), - [anon_sym_not] = ACTIONS(3290), - [anon_sym_compl] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_sizeof] = ACTIONS(3290), - [anon_sym___alignof__] = ACTIONS(3290), - [anon_sym___alignof] = ACTIONS(3290), - [anon_sym__alignof] = ACTIONS(3290), - [anon_sym_alignof] = ACTIONS(3290), - [anon_sym__Alignof] = ACTIONS(3290), - [anon_sym_offsetof] = ACTIONS(3290), - [anon_sym__Generic] = ACTIONS(3290), - [anon_sym_asm] = ACTIONS(3290), - [anon_sym___asm__] = ACTIONS(3290), - [sym_number_literal] = ACTIONS(3292), - [anon_sym_L_SQUOTE] = ACTIONS(3292), - [anon_sym_u_SQUOTE] = ACTIONS(3292), - [anon_sym_U_SQUOTE] = ACTIONS(3292), - [anon_sym_u8_SQUOTE] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_L_DQUOTE] = ACTIONS(3292), - [anon_sym_u_DQUOTE] = ACTIONS(3292), - [anon_sym_U_DQUOTE] = ACTIONS(3292), - [anon_sym_u8_DQUOTE] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [sym_true] = ACTIONS(3290), - [sym_false] = ACTIONS(3290), - [anon_sym_NULL] = ACTIONS(3290), - [anon_sym_nullptr] = ACTIONS(3290), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3290), - [anon_sym_decltype] = ACTIONS(3290), - [anon_sym_virtual] = ACTIONS(3290), - [anon_sym_alignas] = ACTIONS(3290), - [anon_sym_explicit] = ACTIONS(3290), - [anon_sym_typename] = ACTIONS(3290), - [anon_sym_template] = ACTIONS(3290), - [anon_sym_operator] = ACTIONS(3290), - [anon_sym_try] = ACTIONS(3290), - [anon_sym_delete] = ACTIONS(3290), - [anon_sym_throw] = ACTIONS(3290), - [anon_sym_namespace] = ACTIONS(3290), - [anon_sym_using] = ACTIONS(3290), - [anon_sym_static_assert] = ACTIONS(3290), - [anon_sym_concept] = ACTIONS(3290), - [anon_sym_co_return] = ACTIONS(3290), - [anon_sym_co_yield] = ACTIONS(3290), - [anon_sym_R_DQUOTE] = ACTIONS(3292), - [anon_sym_LR_DQUOTE] = ACTIONS(3292), - [anon_sym_uR_DQUOTE] = ACTIONS(3292), - [anon_sym_UR_DQUOTE] = ACTIONS(3292), - [anon_sym_u8R_DQUOTE] = ACTIONS(3292), - [anon_sym_co_await] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3290), - [anon_sym_requires] = ACTIONS(3290), - [sym_this] = ACTIONS(3290), - }, - [561] = { - [sym_identifier] = ACTIONS(3294), - [aux_sym_preproc_include_token1] = ACTIONS(3294), - [aux_sym_preproc_def_token1] = ACTIONS(3294), - [aux_sym_preproc_if_token1] = ACTIONS(3294), - [aux_sym_preproc_if_token2] = ACTIONS(3294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), - [aux_sym_preproc_else_token1] = ACTIONS(3294), - [aux_sym_preproc_elif_token1] = ACTIONS(3294), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3294), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3294), - [sym_preproc_directive] = ACTIONS(3294), - [anon_sym_LPAREN2] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym___extension__] = ACTIONS(3294), - [anon_sym_typedef] = ACTIONS(3294), - [anon_sym_extern] = ACTIONS(3294), - [anon_sym___attribute__] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), - [anon_sym___declspec] = ACTIONS(3294), - [anon_sym___based] = ACTIONS(3294), - [anon_sym___cdecl] = ACTIONS(3294), - [anon_sym___clrcall] = ACTIONS(3294), - [anon_sym___stdcall] = ACTIONS(3294), - [anon_sym___fastcall] = ACTIONS(3294), - [anon_sym___thiscall] = ACTIONS(3294), - [anon_sym___vectorcall] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_signed] = ACTIONS(3294), - [anon_sym_unsigned] = ACTIONS(3294), - [anon_sym_long] = ACTIONS(3294), - [anon_sym_short] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_register] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym___inline] = ACTIONS(3294), - [anon_sym___inline__] = ACTIONS(3294), - [anon_sym___forceinline] = ACTIONS(3294), - [anon_sym_thread_local] = ACTIONS(3294), - [anon_sym___thread] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_constexpr] = ACTIONS(3294), - [anon_sym_volatile] = ACTIONS(3294), - [anon_sym_restrict] = ACTIONS(3294), - [anon_sym___restrict__] = ACTIONS(3294), - [anon_sym__Atomic] = ACTIONS(3294), - [anon_sym__Noreturn] = ACTIONS(3294), - [anon_sym_noreturn] = ACTIONS(3294), - [anon_sym_mutable] = ACTIONS(3294), - [anon_sym_constinit] = ACTIONS(3294), - [anon_sym_consteval] = ACTIONS(3294), - [sym_primitive_type] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), - [anon_sym_class] = ACTIONS(3294), - [anon_sym_struct] = ACTIONS(3294), - [anon_sym_union] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_switch] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3294), - [anon_sym_default] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_do] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_goto] = ACTIONS(3294), - [anon_sym_not] = ACTIONS(3294), - [anon_sym_compl] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_sizeof] = ACTIONS(3294), - [anon_sym___alignof__] = ACTIONS(3294), - [anon_sym___alignof] = ACTIONS(3294), - [anon_sym__alignof] = ACTIONS(3294), - [anon_sym_alignof] = ACTIONS(3294), - [anon_sym__Alignof] = ACTIONS(3294), - [anon_sym_offsetof] = ACTIONS(3294), - [anon_sym__Generic] = ACTIONS(3294), - [anon_sym_asm] = ACTIONS(3294), - [anon_sym___asm__] = ACTIONS(3294), - [sym_number_literal] = ACTIONS(3296), - [anon_sym_L_SQUOTE] = ACTIONS(3296), - [anon_sym_u_SQUOTE] = ACTIONS(3296), - [anon_sym_U_SQUOTE] = ACTIONS(3296), - [anon_sym_u8_SQUOTE] = ACTIONS(3296), - [anon_sym_SQUOTE] = ACTIONS(3296), - [anon_sym_L_DQUOTE] = ACTIONS(3296), - [anon_sym_u_DQUOTE] = ACTIONS(3296), - [anon_sym_U_DQUOTE] = ACTIONS(3296), - [anon_sym_u8_DQUOTE] = ACTIONS(3296), - [anon_sym_DQUOTE] = ACTIONS(3296), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [anon_sym_NULL] = ACTIONS(3294), - [anon_sym_nullptr] = ACTIONS(3294), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3294), - [anon_sym_decltype] = ACTIONS(3294), - [anon_sym_virtual] = ACTIONS(3294), - [anon_sym_alignas] = ACTIONS(3294), - [anon_sym_explicit] = ACTIONS(3294), - [anon_sym_typename] = ACTIONS(3294), - [anon_sym_template] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_delete] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_namespace] = ACTIONS(3294), - [anon_sym_using] = ACTIONS(3294), - [anon_sym_static_assert] = ACTIONS(3294), - [anon_sym_concept] = ACTIONS(3294), - [anon_sym_co_return] = ACTIONS(3294), - [anon_sym_co_yield] = ACTIONS(3294), - [anon_sym_R_DQUOTE] = ACTIONS(3296), - [anon_sym_LR_DQUOTE] = ACTIONS(3296), - [anon_sym_uR_DQUOTE] = ACTIONS(3296), - [anon_sym_UR_DQUOTE] = ACTIONS(3296), - [anon_sym_u8R_DQUOTE] = ACTIONS(3296), - [anon_sym_co_await] = ACTIONS(3294), - [anon_sym_new] = ACTIONS(3294), - [anon_sym_requires] = ACTIONS(3294), - [sym_this] = ACTIONS(3294), - }, - [562] = { - [sym_identifier] = ACTIONS(3298), - [aux_sym_preproc_include_token1] = ACTIONS(3298), - [aux_sym_preproc_def_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token2] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3298), - [aux_sym_preproc_else_token1] = ACTIONS(3298), - [aux_sym_preproc_elif_token1] = ACTIONS(3298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3298), - [sym_preproc_directive] = ACTIONS(3298), - [anon_sym_LPAREN2] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_STAR] = ACTIONS(3300), - [anon_sym_AMP_AMP] = ACTIONS(3300), - [anon_sym_AMP] = ACTIONS(3298), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym___extension__] = ACTIONS(3298), - [anon_sym_typedef] = ACTIONS(3298), - [anon_sym_extern] = ACTIONS(3298), - [anon_sym___attribute__] = ACTIONS(3298), - [anon_sym_COLON_COLON] = ACTIONS(3300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3300), - [anon_sym___declspec] = ACTIONS(3298), - [anon_sym___based] = ACTIONS(3298), - [anon_sym___cdecl] = ACTIONS(3298), - [anon_sym___clrcall] = ACTIONS(3298), - [anon_sym___stdcall] = ACTIONS(3298), - [anon_sym___fastcall] = ACTIONS(3298), - [anon_sym___thiscall] = ACTIONS(3298), - [anon_sym___vectorcall] = ACTIONS(3298), - [anon_sym_LBRACE] = ACTIONS(3300), - [anon_sym_signed] = ACTIONS(3298), - [anon_sym_unsigned] = ACTIONS(3298), - [anon_sym_long] = ACTIONS(3298), - [anon_sym_short] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3298), - [anon_sym_register] = ACTIONS(3298), - [anon_sym_inline] = ACTIONS(3298), - [anon_sym___inline] = ACTIONS(3298), - [anon_sym___inline__] = ACTIONS(3298), - [anon_sym___forceinline] = ACTIONS(3298), - [anon_sym_thread_local] = ACTIONS(3298), - [anon_sym___thread] = ACTIONS(3298), - [anon_sym_const] = ACTIONS(3298), - [anon_sym_constexpr] = ACTIONS(3298), - [anon_sym_volatile] = ACTIONS(3298), - [anon_sym_restrict] = ACTIONS(3298), - [anon_sym___restrict__] = ACTIONS(3298), - [anon_sym__Atomic] = ACTIONS(3298), - [anon_sym__Noreturn] = ACTIONS(3298), - [anon_sym_noreturn] = ACTIONS(3298), - [anon_sym_mutable] = ACTIONS(3298), - [anon_sym_constinit] = ACTIONS(3298), - [anon_sym_consteval] = ACTIONS(3298), - [sym_primitive_type] = ACTIONS(3298), - [anon_sym_enum] = ACTIONS(3298), - [anon_sym_class] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3298), - [anon_sym_union] = ACTIONS(3298), - [anon_sym_if] = ACTIONS(3298), - [anon_sym_switch] = ACTIONS(3298), - [anon_sym_case] = ACTIONS(3298), - [anon_sym_default] = ACTIONS(3298), - [anon_sym_while] = ACTIONS(3298), - [anon_sym_do] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3298), - [anon_sym_return] = ACTIONS(3298), - [anon_sym_break] = ACTIONS(3298), - [anon_sym_continue] = ACTIONS(3298), - [anon_sym_goto] = ACTIONS(3298), - [anon_sym_not] = ACTIONS(3298), - [anon_sym_compl] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3300), - [anon_sym_sizeof] = ACTIONS(3298), - [anon_sym___alignof__] = ACTIONS(3298), - [anon_sym___alignof] = ACTIONS(3298), - [anon_sym__alignof] = ACTIONS(3298), - [anon_sym_alignof] = ACTIONS(3298), - [anon_sym__Alignof] = ACTIONS(3298), - [anon_sym_offsetof] = ACTIONS(3298), - [anon_sym__Generic] = ACTIONS(3298), - [anon_sym_asm] = ACTIONS(3298), - [anon_sym___asm__] = ACTIONS(3298), - [sym_number_literal] = ACTIONS(3300), - [anon_sym_L_SQUOTE] = ACTIONS(3300), - [anon_sym_u_SQUOTE] = ACTIONS(3300), - [anon_sym_U_SQUOTE] = ACTIONS(3300), - [anon_sym_u8_SQUOTE] = ACTIONS(3300), - [anon_sym_SQUOTE] = ACTIONS(3300), - [anon_sym_L_DQUOTE] = ACTIONS(3300), - [anon_sym_u_DQUOTE] = ACTIONS(3300), - [anon_sym_U_DQUOTE] = ACTIONS(3300), - [anon_sym_u8_DQUOTE] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(3300), - [sym_true] = ACTIONS(3298), - [sym_false] = ACTIONS(3298), - [anon_sym_NULL] = ACTIONS(3298), - [anon_sym_nullptr] = ACTIONS(3298), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3298), - [anon_sym_decltype] = ACTIONS(3298), - [anon_sym_virtual] = ACTIONS(3298), - [anon_sym_alignas] = ACTIONS(3298), - [anon_sym_explicit] = ACTIONS(3298), - [anon_sym_typename] = ACTIONS(3298), - [anon_sym_template] = ACTIONS(3298), - [anon_sym_operator] = ACTIONS(3298), - [anon_sym_try] = ACTIONS(3298), - [anon_sym_delete] = ACTIONS(3298), - [anon_sym_throw] = ACTIONS(3298), - [anon_sym_namespace] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3298), - [anon_sym_static_assert] = ACTIONS(3298), - [anon_sym_concept] = ACTIONS(3298), - [anon_sym_co_return] = ACTIONS(3298), - [anon_sym_co_yield] = ACTIONS(3298), - [anon_sym_R_DQUOTE] = ACTIONS(3300), - [anon_sym_LR_DQUOTE] = ACTIONS(3300), - [anon_sym_uR_DQUOTE] = ACTIONS(3300), - [anon_sym_UR_DQUOTE] = ACTIONS(3300), - [anon_sym_u8R_DQUOTE] = ACTIONS(3300), - [anon_sym_co_await] = ACTIONS(3298), - [anon_sym_new] = ACTIONS(3298), - [anon_sym_requires] = ACTIONS(3298), - [sym_this] = ACTIONS(3298), - }, - [563] = { - [sym_type_qualifier] = STATE(4728), - [sym__type_specifier] = STATE(5568), - [sym_sized_type_specifier] = STATE(3614), - [sym_enum_specifier] = STATE(3614), - [sym_struct_specifier] = STATE(3614), - [sym_union_specifier] = STATE(3614), - [sym__expression] = STATE(5020), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_type_descriptor] = STATE(7657), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_placeholder_type_specifier] = STATE(3614), - [sym_decltype_auto] = STATE(3612), - [sym_decltype] = STATE(3593), - [sym_class_specifier] = STATE(3614), - [sym__class_name] = STATE(8694), - [sym_dependent_type] = STATE(3614), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_type_parameter_pack_expansion] = STATE(8315), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6421), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4285), - [aux_sym_type_definition_repeat1] = STATE(4728), - [aux_sym_sized_type_specifier_repeat1] = STATE(3032), - [sym_identifier] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3173), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_GT2] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), - }, - [564] = { - [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_extern] = ACTIONS(3304), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3304), - [anon_sym_alignas] = 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_using] = 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), - }, - [565] = { - [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_extern] = ACTIONS(3304), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3304), - [anon_sym_alignas] = 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_using] = 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), - }, - [566] = { - [sym_identifier] = ACTIONS(3308), - [aux_sym_preproc_include_token1] = ACTIONS(3308), - [aux_sym_preproc_def_token1] = ACTIONS(3308), - [aux_sym_preproc_if_token1] = ACTIONS(3308), - [aux_sym_preproc_if_token2] = ACTIONS(3308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3308), - [aux_sym_preproc_else_token1] = ACTIONS(3308), - [aux_sym_preproc_elif_token1] = ACTIONS(3308), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3308), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3308), - [sym_preproc_directive] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(3310), - [anon_sym_BANG] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3310), - [anon_sym_DASH] = ACTIONS(3308), - [anon_sym_PLUS] = ACTIONS(3308), - [anon_sym_STAR] = ACTIONS(3310), - [anon_sym_AMP_AMP] = ACTIONS(3310), - [anon_sym_AMP] = ACTIONS(3308), - [anon_sym_SEMI] = ACTIONS(3310), - [anon_sym___extension__] = ACTIONS(3308), - [anon_sym_typedef] = ACTIONS(3308), - [anon_sym_extern] = ACTIONS(3308), - [anon_sym___attribute__] = ACTIONS(3308), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3310), - [anon_sym___declspec] = ACTIONS(3308), - [anon_sym___based] = ACTIONS(3308), - [anon_sym___cdecl] = ACTIONS(3308), - [anon_sym___clrcall] = ACTIONS(3308), - [anon_sym___stdcall] = ACTIONS(3308), - [anon_sym___fastcall] = ACTIONS(3308), - [anon_sym___thiscall] = ACTIONS(3308), - [anon_sym___vectorcall] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(3310), - [anon_sym_signed] = ACTIONS(3308), - [anon_sym_unsigned] = ACTIONS(3308), - [anon_sym_long] = ACTIONS(3308), - [anon_sym_short] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3308), - [anon_sym_static] = ACTIONS(3308), - [anon_sym_register] = ACTIONS(3308), - [anon_sym_inline] = ACTIONS(3308), - [anon_sym___inline] = ACTIONS(3308), - [anon_sym___inline__] = ACTIONS(3308), - [anon_sym___forceinline] = ACTIONS(3308), - [anon_sym_thread_local] = ACTIONS(3308), - [anon_sym___thread] = ACTIONS(3308), - [anon_sym_const] = ACTIONS(3308), - [anon_sym_constexpr] = ACTIONS(3308), - [anon_sym_volatile] = ACTIONS(3308), - [anon_sym_restrict] = ACTIONS(3308), - [anon_sym___restrict__] = ACTIONS(3308), - [anon_sym__Atomic] = ACTIONS(3308), - [anon_sym__Noreturn] = ACTIONS(3308), - [anon_sym_noreturn] = ACTIONS(3308), - [anon_sym_mutable] = ACTIONS(3308), - [anon_sym_constinit] = ACTIONS(3308), - [anon_sym_consteval] = ACTIONS(3308), - [sym_primitive_type] = ACTIONS(3308), - [anon_sym_enum] = ACTIONS(3308), - [anon_sym_class] = ACTIONS(3308), - [anon_sym_struct] = ACTIONS(3308), - [anon_sym_union] = ACTIONS(3308), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_switch] = ACTIONS(3308), - [anon_sym_case] = ACTIONS(3308), - [anon_sym_default] = ACTIONS(3308), - [anon_sym_while] = ACTIONS(3308), - [anon_sym_do] = ACTIONS(3308), - [anon_sym_for] = ACTIONS(3308), - [anon_sym_return] = ACTIONS(3308), - [anon_sym_break] = ACTIONS(3308), - [anon_sym_continue] = ACTIONS(3308), - [anon_sym_goto] = ACTIONS(3308), - [anon_sym_not] = ACTIONS(3308), - [anon_sym_compl] = ACTIONS(3308), - [anon_sym_DASH_DASH] = ACTIONS(3310), - [anon_sym_PLUS_PLUS] = ACTIONS(3310), - [anon_sym_sizeof] = ACTIONS(3308), - [anon_sym___alignof__] = ACTIONS(3308), - [anon_sym___alignof] = ACTIONS(3308), - [anon_sym__alignof] = ACTIONS(3308), - [anon_sym_alignof] = ACTIONS(3308), - [anon_sym__Alignof] = ACTIONS(3308), - [anon_sym_offsetof] = ACTIONS(3308), - [anon_sym__Generic] = ACTIONS(3308), - [anon_sym_asm] = ACTIONS(3308), - [anon_sym___asm__] = ACTIONS(3308), - [sym_number_literal] = ACTIONS(3310), - [anon_sym_L_SQUOTE] = ACTIONS(3310), - [anon_sym_u_SQUOTE] = ACTIONS(3310), - [anon_sym_U_SQUOTE] = ACTIONS(3310), - [anon_sym_u8_SQUOTE] = ACTIONS(3310), - [anon_sym_SQUOTE] = ACTIONS(3310), - [anon_sym_L_DQUOTE] = ACTIONS(3310), - [anon_sym_u_DQUOTE] = ACTIONS(3310), - [anon_sym_U_DQUOTE] = ACTIONS(3310), - [anon_sym_u8_DQUOTE] = ACTIONS(3310), - [anon_sym_DQUOTE] = ACTIONS(3310), - [sym_true] = ACTIONS(3308), - [sym_false] = ACTIONS(3308), - [anon_sym_NULL] = ACTIONS(3308), - [anon_sym_nullptr] = ACTIONS(3308), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3308), - [anon_sym_decltype] = ACTIONS(3308), - [anon_sym_virtual] = ACTIONS(3308), - [anon_sym_alignas] = ACTIONS(3308), - [anon_sym_explicit] = ACTIONS(3308), - [anon_sym_typename] = ACTIONS(3308), - [anon_sym_template] = ACTIONS(3308), - [anon_sym_operator] = ACTIONS(3308), - [anon_sym_try] = ACTIONS(3308), - [anon_sym_delete] = ACTIONS(3308), - [anon_sym_throw] = ACTIONS(3308), - [anon_sym_namespace] = ACTIONS(3308), - [anon_sym_using] = ACTIONS(3308), - [anon_sym_static_assert] = ACTIONS(3308), - [anon_sym_concept] = ACTIONS(3308), - [anon_sym_co_return] = ACTIONS(3308), - [anon_sym_co_yield] = ACTIONS(3308), - [anon_sym_R_DQUOTE] = ACTIONS(3310), - [anon_sym_LR_DQUOTE] = ACTIONS(3310), - [anon_sym_uR_DQUOTE] = ACTIONS(3310), - [anon_sym_UR_DQUOTE] = ACTIONS(3310), - [anon_sym_u8R_DQUOTE] = ACTIONS(3310), - [anon_sym_co_await] = ACTIONS(3308), - [anon_sym_new] = ACTIONS(3308), - [anon_sym_requires] = ACTIONS(3308), - [sym_this] = ACTIONS(3308), - }, - [567] = { - [sym_type_qualifier] = STATE(4728), - [sym__type_specifier] = STATE(5568), - [sym_sized_type_specifier] = STATE(3614), - [sym_enum_specifier] = STATE(3614), - [sym_struct_specifier] = STATE(3614), - [sym_union_specifier] = STATE(3614), - [sym__expression] = STATE(5032), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_type_descriptor] = STATE(7952), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_placeholder_type_specifier] = STATE(3614), - [sym_decltype_auto] = STATE(3612), - [sym_decltype] = STATE(3593), - [sym_class_specifier] = STATE(3614), - [sym__class_name] = STATE(8694), - [sym_dependent_type] = STATE(3614), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_type_parameter_pack_expansion] = STATE(8049), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6421), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4285), - [aux_sym_type_definition_repeat1] = STATE(4728), - [aux_sym_sized_type_specifier_repeat1] = STATE(3032), - [sym_identifier] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3173), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_GT2] = ACTIONS(3312), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), - }, - [568] = { - [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_extern] = ACTIONS(3314), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3314), - [anon_sym_constinit] = ACTIONS(3314), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3314), - [anon_sym_alignas] = 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_using] = 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), - }, - [569] = { - [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_extern] = ACTIONS(3318), - [anon_sym___attribute__] = ACTIONS(3318), - [anon_sym_COLON_COLON] = ACTIONS(3320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3320), - [anon_sym___declspec] = ACTIONS(3318), - [anon_sym___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_mutable] = ACTIONS(3318), - [anon_sym_constinit] = ACTIONS(3318), - [anon_sym_consteval] = ACTIONS(3318), - [sym_primitive_type] = ACTIONS(3318), - [anon_sym_enum] = ACTIONS(3318), - [anon_sym_class] = ACTIONS(3318), - [anon_sym_struct] = ACTIONS(3318), - [anon_sym_union] = ACTIONS(3318), - [anon_sym_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), - [sym_number_literal] = ACTIONS(3320), - [anon_sym_L_SQUOTE] = ACTIONS(3320), - [anon_sym_u_SQUOTE] = ACTIONS(3320), - [anon_sym_U_SQUOTE] = ACTIONS(3320), - [anon_sym_u8_SQUOTE] = ACTIONS(3320), - [anon_sym_SQUOTE] = ACTIONS(3320), - [anon_sym_L_DQUOTE] = ACTIONS(3320), - [anon_sym_u_DQUOTE] = ACTIONS(3320), - [anon_sym_U_DQUOTE] = ACTIONS(3320), - [anon_sym_u8_DQUOTE] = ACTIONS(3320), - [anon_sym_DQUOTE] = ACTIONS(3320), - [sym_true] = ACTIONS(3318), - [sym_false] = ACTIONS(3318), - [anon_sym_NULL] = ACTIONS(3318), - [anon_sym_nullptr] = ACTIONS(3318), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3318), - [anon_sym_decltype] = ACTIONS(3318), - [anon_sym_virtual] = ACTIONS(3318), - [anon_sym_alignas] = ACTIONS(3318), - [anon_sym_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_using] = 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), - }, - [570] = { - [sym_identifier] = ACTIONS(3322), - [aux_sym_preproc_include_token1] = ACTIONS(3322), - [aux_sym_preproc_def_token1] = ACTIONS(3322), - [aux_sym_preproc_if_token1] = ACTIONS(3322), - [aux_sym_preproc_if_token2] = ACTIONS(3322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3322), - [aux_sym_preproc_else_token1] = ACTIONS(3322), - [aux_sym_preproc_elif_token1] = ACTIONS(3322), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3322), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3322), - [sym_preproc_directive] = ACTIONS(3322), - [anon_sym_LPAREN2] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3322), - [anon_sym_PLUS] = ACTIONS(3322), - [anon_sym_STAR] = ACTIONS(3324), - [anon_sym_AMP_AMP] = ACTIONS(3324), - [anon_sym_AMP] = ACTIONS(3322), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym___extension__] = ACTIONS(3322), - [anon_sym_typedef] = ACTIONS(3322), - [anon_sym_extern] = ACTIONS(3322), - [anon_sym___attribute__] = ACTIONS(3322), - [anon_sym_COLON_COLON] = ACTIONS(3324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), - [anon_sym___declspec] = ACTIONS(3322), - [anon_sym___based] = ACTIONS(3322), - [anon_sym___cdecl] = ACTIONS(3322), - [anon_sym___clrcall] = ACTIONS(3322), - [anon_sym___stdcall] = ACTIONS(3322), - [anon_sym___fastcall] = ACTIONS(3322), - [anon_sym___thiscall] = ACTIONS(3322), - [anon_sym___vectorcall] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_signed] = ACTIONS(3322), - [anon_sym_unsigned] = ACTIONS(3322), - [anon_sym_long] = ACTIONS(3322), - [anon_sym_short] = ACTIONS(3322), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_static] = ACTIONS(3322), - [anon_sym_register] = ACTIONS(3322), - [anon_sym_inline] = ACTIONS(3322), - [anon_sym___inline] = ACTIONS(3322), - [anon_sym___inline__] = ACTIONS(3322), - [anon_sym___forceinline] = ACTIONS(3322), - [anon_sym_thread_local] = ACTIONS(3322), - [anon_sym___thread] = ACTIONS(3322), - [anon_sym_const] = ACTIONS(3322), - [anon_sym_constexpr] = ACTIONS(3322), - [anon_sym_volatile] = ACTIONS(3322), - [anon_sym_restrict] = ACTIONS(3322), - [anon_sym___restrict__] = ACTIONS(3322), - [anon_sym__Atomic] = ACTIONS(3322), - [anon_sym__Noreturn] = ACTIONS(3322), - [anon_sym_noreturn] = ACTIONS(3322), - [anon_sym_mutable] = ACTIONS(3322), - [anon_sym_constinit] = ACTIONS(3322), - [anon_sym_consteval] = ACTIONS(3322), - [sym_primitive_type] = ACTIONS(3322), - [anon_sym_enum] = ACTIONS(3322), - [anon_sym_class] = ACTIONS(3322), - [anon_sym_struct] = ACTIONS(3322), - [anon_sym_union] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3322), - [anon_sym_switch] = ACTIONS(3322), - [anon_sym_case] = ACTIONS(3322), - [anon_sym_default] = ACTIONS(3322), - [anon_sym_while] = ACTIONS(3322), - [anon_sym_do] = ACTIONS(3322), - [anon_sym_for] = ACTIONS(3322), - [anon_sym_return] = ACTIONS(3322), - [anon_sym_break] = ACTIONS(3322), - [anon_sym_continue] = ACTIONS(3322), - [anon_sym_goto] = ACTIONS(3322), - [anon_sym_not] = ACTIONS(3322), - [anon_sym_compl] = ACTIONS(3322), - [anon_sym_DASH_DASH] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_sizeof] = ACTIONS(3322), - [anon_sym___alignof__] = ACTIONS(3322), - [anon_sym___alignof] = ACTIONS(3322), - [anon_sym__alignof] = ACTIONS(3322), - [anon_sym_alignof] = ACTIONS(3322), - [anon_sym__Alignof] = ACTIONS(3322), - [anon_sym_offsetof] = ACTIONS(3322), - [anon_sym__Generic] = ACTIONS(3322), - [anon_sym_asm] = ACTIONS(3322), - [anon_sym___asm__] = ACTIONS(3322), - [sym_number_literal] = ACTIONS(3324), - [anon_sym_L_SQUOTE] = ACTIONS(3324), - [anon_sym_u_SQUOTE] = ACTIONS(3324), - [anon_sym_U_SQUOTE] = ACTIONS(3324), - [anon_sym_u8_SQUOTE] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_L_DQUOTE] = ACTIONS(3324), - [anon_sym_u_DQUOTE] = ACTIONS(3324), - [anon_sym_U_DQUOTE] = ACTIONS(3324), - [anon_sym_u8_DQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [anon_sym_NULL] = ACTIONS(3322), - [anon_sym_nullptr] = ACTIONS(3322), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3322), - [anon_sym_decltype] = ACTIONS(3322), - [anon_sym_virtual] = ACTIONS(3322), - [anon_sym_alignas] = ACTIONS(3322), - [anon_sym_explicit] = ACTIONS(3322), - [anon_sym_typename] = ACTIONS(3322), - [anon_sym_template] = ACTIONS(3322), - [anon_sym_operator] = ACTIONS(3322), - [anon_sym_try] = ACTIONS(3322), - [anon_sym_delete] = ACTIONS(3322), - [anon_sym_throw] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_using] = ACTIONS(3322), - [anon_sym_static_assert] = ACTIONS(3322), - [anon_sym_concept] = ACTIONS(3322), - [anon_sym_co_return] = ACTIONS(3322), - [anon_sym_co_yield] = ACTIONS(3322), - [anon_sym_R_DQUOTE] = ACTIONS(3324), - [anon_sym_LR_DQUOTE] = ACTIONS(3324), - [anon_sym_uR_DQUOTE] = ACTIONS(3324), - [anon_sym_UR_DQUOTE] = ACTIONS(3324), - [anon_sym_u8R_DQUOTE] = ACTIONS(3324), - [anon_sym_co_await] = ACTIONS(3322), - [anon_sym_new] = ACTIONS(3322), - [anon_sym_requires] = ACTIONS(3322), - [sym_this] = ACTIONS(3322), - }, - [571] = { - [sym_type_qualifier] = STATE(4728), - [sym__type_specifier] = STATE(5568), - [sym_sized_type_specifier] = STATE(3614), - [sym_enum_specifier] = STATE(3614), - [sym_struct_specifier] = STATE(3614), - [sym_union_specifier] = STATE(3614), - [sym__expression] = STATE(5025), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_type_descriptor] = STATE(7973), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_placeholder_type_specifier] = STATE(3614), - [sym_decltype_auto] = STATE(3612), - [sym_decltype] = STATE(3593), - [sym_class_specifier] = STATE(3614), - [sym__class_name] = STATE(8694), - [sym_dependent_type] = STATE(3614), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_type_parameter_pack_expansion] = STATE(8010), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6421), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4285), - [aux_sym_type_definition_repeat1] = STATE(4728), - [aux_sym_sized_type_specifier_repeat1] = STATE(3032), - [sym_identifier] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3173), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_GT2] = ACTIONS(3326), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), - }, - [572] = { - [sym_identifier] = ACTIONS(3328), - [aux_sym_preproc_include_token1] = ACTIONS(3328), - [aux_sym_preproc_def_token1] = ACTIONS(3328), - [aux_sym_preproc_if_token1] = ACTIONS(3328), - [aux_sym_preproc_if_token2] = ACTIONS(3328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3328), - [aux_sym_preproc_else_token1] = ACTIONS(3328), - [aux_sym_preproc_elif_token1] = ACTIONS(3328), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3328), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3328), - [sym_preproc_directive] = ACTIONS(3328), - [anon_sym_LPAREN2] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_STAR] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym___extension__] = ACTIONS(3328), - [anon_sym_typedef] = ACTIONS(3328), - [anon_sym_extern] = ACTIONS(3328), - [anon_sym___attribute__] = ACTIONS(3328), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3330), - [anon_sym___declspec] = ACTIONS(3328), - [anon_sym___based] = ACTIONS(3328), - [anon_sym___cdecl] = ACTIONS(3328), - [anon_sym___clrcall] = ACTIONS(3328), - [anon_sym___stdcall] = ACTIONS(3328), - [anon_sym___fastcall] = ACTIONS(3328), - [anon_sym___thiscall] = ACTIONS(3328), - [anon_sym___vectorcall] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_signed] = ACTIONS(3328), - [anon_sym_unsigned] = ACTIONS(3328), - [anon_sym_long] = ACTIONS(3328), - [anon_sym_short] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_register] = ACTIONS(3328), - [anon_sym_inline] = ACTIONS(3328), - [anon_sym___inline] = ACTIONS(3328), - [anon_sym___inline__] = ACTIONS(3328), - [anon_sym___forceinline] = ACTIONS(3328), - [anon_sym_thread_local] = ACTIONS(3328), - [anon_sym___thread] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_constexpr] = ACTIONS(3328), - [anon_sym_volatile] = ACTIONS(3328), - [anon_sym_restrict] = ACTIONS(3328), - [anon_sym___restrict__] = ACTIONS(3328), - [anon_sym__Atomic] = ACTIONS(3328), - [anon_sym__Noreturn] = ACTIONS(3328), - [anon_sym_noreturn] = ACTIONS(3328), - [anon_sym_mutable] = ACTIONS(3328), - [anon_sym_constinit] = ACTIONS(3328), - [anon_sym_consteval] = ACTIONS(3328), - [sym_primitive_type] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_struct] = ACTIONS(3328), - [anon_sym_union] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_switch] = ACTIONS(3328), - [anon_sym_case] = ACTIONS(3328), - [anon_sym_default] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_goto] = ACTIONS(3328), - [anon_sym_not] = ACTIONS(3328), - [anon_sym_compl] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_sizeof] = ACTIONS(3328), - [anon_sym___alignof__] = ACTIONS(3328), - [anon_sym___alignof] = ACTIONS(3328), - [anon_sym__alignof] = ACTIONS(3328), - [anon_sym_alignof] = ACTIONS(3328), - [anon_sym__Alignof] = ACTIONS(3328), - [anon_sym_offsetof] = ACTIONS(3328), - [anon_sym__Generic] = ACTIONS(3328), - [anon_sym_asm] = ACTIONS(3328), - [anon_sym___asm__] = ACTIONS(3328), - [sym_number_literal] = ACTIONS(3330), - [anon_sym_L_SQUOTE] = ACTIONS(3330), - [anon_sym_u_SQUOTE] = ACTIONS(3330), - [anon_sym_U_SQUOTE] = ACTIONS(3330), - [anon_sym_u8_SQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_L_DQUOTE] = ACTIONS(3330), - [anon_sym_u_DQUOTE] = ACTIONS(3330), - [anon_sym_U_DQUOTE] = ACTIONS(3330), - [anon_sym_u8_DQUOTE] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [anon_sym_NULL] = ACTIONS(3328), - [anon_sym_nullptr] = ACTIONS(3328), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3328), - [anon_sym_decltype] = ACTIONS(3328), - [anon_sym_virtual] = ACTIONS(3328), - [anon_sym_alignas] = ACTIONS(3328), - [anon_sym_explicit] = ACTIONS(3328), - [anon_sym_typename] = ACTIONS(3328), - [anon_sym_template] = ACTIONS(3328), - [anon_sym_operator] = ACTIONS(3328), - [anon_sym_try] = ACTIONS(3328), - [anon_sym_delete] = ACTIONS(3328), - [anon_sym_throw] = ACTIONS(3328), - [anon_sym_namespace] = ACTIONS(3328), - [anon_sym_using] = ACTIONS(3328), - [anon_sym_static_assert] = ACTIONS(3328), - [anon_sym_concept] = ACTIONS(3328), - [anon_sym_co_return] = ACTIONS(3328), - [anon_sym_co_yield] = ACTIONS(3328), - [anon_sym_R_DQUOTE] = ACTIONS(3330), - [anon_sym_LR_DQUOTE] = ACTIONS(3330), - [anon_sym_uR_DQUOTE] = ACTIONS(3330), - [anon_sym_UR_DQUOTE] = ACTIONS(3330), - [anon_sym_u8R_DQUOTE] = ACTIONS(3330), - [anon_sym_co_await] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3328), - [anon_sym_requires] = ACTIONS(3328), - [sym_this] = ACTIONS(3328), - }, - [573] = { - [sym_identifier] = ACTIONS(3332), - [aux_sym_preproc_include_token1] = ACTIONS(3332), - [aux_sym_preproc_def_token1] = ACTIONS(3332), - [aux_sym_preproc_if_token1] = ACTIONS(3332), - [aux_sym_preproc_if_token2] = ACTIONS(3332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3332), - [aux_sym_preproc_else_token1] = ACTIONS(3332), - [aux_sym_preproc_elif_token1] = ACTIONS(3332), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3332), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3332), - [sym_preproc_directive] = ACTIONS(3332), - [anon_sym_LPAREN2] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_STAR] = ACTIONS(3334), - [anon_sym_AMP_AMP] = ACTIONS(3334), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym___extension__] = ACTIONS(3332), - [anon_sym_typedef] = ACTIONS(3332), - [anon_sym_extern] = ACTIONS(3332), - [anon_sym___attribute__] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3334), - [anon_sym___declspec] = ACTIONS(3332), - [anon_sym___based] = ACTIONS(3332), - [anon_sym___cdecl] = ACTIONS(3332), - [anon_sym___clrcall] = ACTIONS(3332), - [anon_sym___stdcall] = ACTIONS(3332), - [anon_sym___fastcall] = ACTIONS(3332), - [anon_sym___thiscall] = ACTIONS(3332), - [anon_sym___vectorcall] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3332), - [anon_sym_unsigned] = ACTIONS(3332), - [anon_sym_long] = ACTIONS(3332), - [anon_sym_short] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_register] = ACTIONS(3332), - [anon_sym_inline] = ACTIONS(3332), - [anon_sym___inline] = ACTIONS(3332), - [anon_sym___inline__] = ACTIONS(3332), - [anon_sym___forceinline] = ACTIONS(3332), - [anon_sym_thread_local] = ACTIONS(3332), - [anon_sym___thread] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_constexpr] = ACTIONS(3332), - [anon_sym_volatile] = ACTIONS(3332), - [anon_sym_restrict] = ACTIONS(3332), - [anon_sym___restrict__] = ACTIONS(3332), - [anon_sym__Atomic] = ACTIONS(3332), - [anon_sym__Noreturn] = ACTIONS(3332), - [anon_sym_noreturn] = ACTIONS(3332), - [anon_sym_mutable] = ACTIONS(3332), - [anon_sym_constinit] = ACTIONS(3332), - [anon_sym_consteval] = ACTIONS(3332), - [sym_primitive_type] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_struct] = ACTIONS(3332), - [anon_sym_union] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_case] = ACTIONS(3332), - [anon_sym_default] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_goto] = ACTIONS(3332), - [anon_sym_not] = ACTIONS(3332), - [anon_sym_compl] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_sizeof] = ACTIONS(3332), - [anon_sym___alignof__] = ACTIONS(3332), - [anon_sym___alignof] = ACTIONS(3332), - [anon_sym__alignof] = ACTIONS(3332), - [anon_sym_alignof] = ACTIONS(3332), - [anon_sym__Alignof] = ACTIONS(3332), - [anon_sym_offsetof] = ACTIONS(3332), - [anon_sym__Generic] = ACTIONS(3332), - [anon_sym_asm] = ACTIONS(3332), - [anon_sym___asm__] = ACTIONS(3332), - [sym_number_literal] = ACTIONS(3334), - [anon_sym_L_SQUOTE] = ACTIONS(3334), - [anon_sym_u_SQUOTE] = ACTIONS(3334), - [anon_sym_U_SQUOTE] = ACTIONS(3334), - [anon_sym_u8_SQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_L_DQUOTE] = ACTIONS(3334), - [anon_sym_u_DQUOTE] = ACTIONS(3334), - [anon_sym_U_DQUOTE] = ACTIONS(3334), - [anon_sym_u8_DQUOTE] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [anon_sym_NULL] = ACTIONS(3332), - [anon_sym_nullptr] = ACTIONS(3332), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3332), - [anon_sym_decltype] = ACTIONS(3332), - [anon_sym_virtual] = ACTIONS(3332), - [anon_sym_alignas] = ACTIONS(3332), - [anon_sym_explicit] = ACTIONS(3332), - [anon_sym_typename] = ACTIONS(3332), - [anon_sym_template] = ACTIONS(3332), - [anon_sym_operator] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_static_assert] = ACTIONS(3332), - [anon_sym_concept] = ACTIONS(3332), - [anon_sym_co_return] = ACTIONS(3332), - [anon_sym_co_yield] = ACTIONS(3332), - [anon_sym_R_DQUOTE] = ACTIONS(3334), - [anon_sym_LR_DQUOTE] = ACTIONS(3334), - [anon_sym_uR_DQUOTE] = ACTIONS(3334), - [anon_sym_UR_DQUOTE] = ACTIONS(3334), - [anon_sym_u8R_DQUOTE] = ACTIONS(3334), - [anon_sym_co_await] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_requires] = ACTIONS(3332), - [sym_this] = ACTIONS(3332), - }, - [574] = { - [sym_identifier] = ACTIONS(3336), - [aux_sym_preproc_include_token1] = ACTIONS(3336), - [aux_sym_preproc_def_token1] = ACTIONS(3336), - [aux_sym_preproc_if_token1] = ACTIONS(3336), - [aux_sym_preproc_if_token2] = ACTIONS(3336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3336), - [aux_sym_preproc_else_token1] = ACTIONS(3336), - [aux_sym_preproc_elif_token1] = ACTIONS(3336), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3336), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3336), - [sym_preproc_directive] = ACTIONS(3336), - [anon_sym_LPAREN2] = ACTIONS(3338), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3338), - [anon_sym_AMP_AMP] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym___extension__] = ACTIONS(3336), - [anon_sym_typedef] = ACTIONS(3336), - [anon_sym_extern] = ACTIONS(3336), - [anon_sym___attribute__] = ACTIONS(3336), - [anon_sym_COLON_COLON] = ACTIONS(3338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3338), - [anon_sym___declspec] = ACTIONS(3336), - [anon_sym___based] = ACTIONS(3336), - [anon_sym___cdecl] = ACTIONS(3336), - [anon_sym___clrcall] = ACTIONS(3336), - [anon_sym___stdcall] = ACTIONS(3336), - [anon_sym___fastcall] = ACTIONS(3336), - [anon_sym___thiscall] = ACTIONS(3336), - [anon_sym___vectorcall] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_register] = ACTIONS(3336), - [anon_sym_inline] = ACTIONS(3336), - [anon_sym___inline] = ACTIONS(3336), - [anon_sym___inline__] = ACTIONS(3336), - [anon_sym___forceinline] = ACTIONS(3336), - [anon_sym_thread_local] = ACTIONS(3336), - [anon_sym___thread] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_constexpr] = ACTIONS(3336), - [anon_sym_volatile] = ACTIONS(3336), - [anon_sym_restrict] = ACTIONS(3336), - [anon_sym___restrict__] = ACTIONS(3336), - [anon_sym__Atomic] = ACTIONS(3336), - [anon_sym__Noreturn] = ACTIONS(3336), - [anon_sym_noreturn] = ACTIONS(3336), - [anon_sym_mutable] = ACTIONS(3336), - [anon_sym_constinit] = ACTIONS(3336), - [anon_sym_consteval] = ACTIONS(3336), - [sym_primitive_type] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_union] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_goto] = ACTIONS(3336), - [anon_sym_not] = ACTIONS(3336), - [anon_sym_compl] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_sizeof] = ACTIONS(3336), - [anon_sym___alignof__] = ACTIONS(3336), - [anon_sym___alignof] = ACTIONS(3336), - [anon_sym__alignof] = ACTIONS(3336), - [anon_sym_alignof] = ACTIONS(3336), - [anon_sym__Alignof] = ACTIONS(3336), - [anon_sym_offsetof] = ACTIONS(3336), - [anon_sym__Generic] = ACTIONS(3336), - [anon_sym_asm] = ACTIONS(3336), - [anon_sym___asm__] = ACTIONS(3336), - [sym_number_literal] = ACTIONS(3338), - [anon_sym_L_SQUOTE] = ACTIONS(3338), - [anon_sym_u_SQUOTE] = ACTIONS(3338), - [anon_sym_U_SQUOTE] = ACTIONS(3338), - [anon_sym_u8_SQUOTE] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [anon_sym_L_DQUOTE] = ACTIONS(3338), - [anon_sym_u_DQUOTE] = ACTIONS(3338), - [anon_sym_U_DQUOTE] = ACTIONS(3338), - [anon_sym_u8_DQUOTE] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [anon_sym_NULL] = ACTIONS(3336), - [anon_sym_nullptr] = ACTIONS(3336), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3336), - [anon_sym_decltype] = ACTIONS(3336), - [anon_sym_virtual] = ACTIONS(3336), - [anon_sym_alignas] = ACTIONS(3336), - [anon_sym_explicit] = ACTIONS(3336), - [anon_sym_typename] = ACTIONS(3336), - [anon_sym_template] = ACTIONS(3336), - [anon_sym_operator] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_static_assert] = ACTIONS(3336), - [anon_sym_concept] = ACTIONS(3336), - [anon_sym_co_return] = ACTIONS(3336), - [anon_sym_co_yield] = ACTIONS(3336), - [anon_sym_R_DQUOTE] = ACTIONS(3338), - [anon_sym_LR_DQUOTE] = ACTIONS(3338), - [anon_sym_uR_DQUOTE] = ACTIONS(3338), - [anon_sym_UR_DQUOTE] = ACTIONS(3338), - [anon_sym_u8R_DQUOTE] = ACTIONS(3338), - [anon_sym_co_await] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_requires] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - }, - [575] = { - [sym_type_qualifier] = STATE(4728), - [sym__type_specifier] = STATE(5568), - [sym_sized_type_specifier] = STATE(3614), - [sym_enum_specifier] = STATE(3614), - [sym_struct_specifier] = STATE(3614), - [sym_union_specifier] = STATE(3614), - [sym__expression] = STATE(5028), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_type_descriptor] = STATE(7595), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_placeholder_type_specifier] = STATE(3614), - [sym_decltype_auto] = STATE(3612), - [sym_decltype] = STATE(3593), - [sym_class_specifier] = STATE(3614), - [sym__class_name] = STATE(8694), - [sym_dependent_type] = STATE(3614), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_type_parameter_pack_expansion] = STATE(8274), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6421), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4285), - [aux_sym_type_definition_repeat1] = STATE(4728), - [aux_sym_sized_type_specifier_repeat1] = STATE(3032), - [sym_identifier] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3173), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_GT2] = ACTIONS(3340), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), - }, - [576] = { - [sym_identifier] = ACTIONS(3342), - [aux_sym_preproc_include_token1] = ACTIONS(3342), - [aux_sym_preproc_def_token1] = ACTIONS(3342), - [aux_sym_preproc_if_token1] = ACTIONS(3342), - [aux_sym_preproc_if_token2] = ACTIONS(3342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3342), - [aux_sym_preproc_else_token1] = ACTIONS(3342), - [aux_sym_preproc_elif_token1] = ACTIONS(3342), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3342), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3342), - [sym_preproc_directive] = ACTIONS(3342), - [anon_sym_LPAREN2] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3342), - [anon_sym_STAR] = ACTIONS(3344), - [anon_sym_AMP_AMP] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3342), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym___extension__] = ACTIONS(3342), - [anon_sym_typedef] = ACTIONS(3342), - [anon_sym_extern] = ACTIONS(3342), - [anon_sym___attribute__] = ACTIONS(3342), - [anon_sym_COLON_COLON] = ACTIONS(3344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3344), - [anon_sym___declspec] = ACTIONS(3342), - [anon_sym___based] = ACTIONS(3342), - [anon_sym___cdecl] = ACTIONS(3342), - [anon_sym___clrcall] = ACTIONS(3342), - [anon_sym___stdcall] = ACTIONS(3342), - [anon_sym___fastcall] = ACTIONS(3342), - [anon_sym___thiscall] = ACTIONS(3342), - [anon_sym___vectorcall] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_signed] = ACTIONS(3342), - [anon_sym_unsigned] = ACTIONS(3342), - [anon_sym_long] = ACTIONS(3342), - [anon_sym_short] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_static] = ACTIONS(3342), - [anon_sym_register] = ACTIONS(3342), - [anon_sym_inline] = ACTIONS(3342), - [anon_sym___inline] = ACTIONS(3342), - [anon_sym___inline__] = ACTIONS(3342), - [anon_sym___forceinline] = ACTIONS(3342), - [anon_sym_thread_local] = ACTIONS(3342), - [anon_sym___thread] = ACTIONS(3342), - [anon_sym_const] = ACTIONS(3342), - [anon_sym_constexpr] = ACTIONS(3342), - [anon_sym_volatile] = ACTIONS(3342), - [anon_sym_restrict] = ACTIONS(3342), - [anon_sym___restrict__] = ACTIONS(3342), - [anon_sym__Atomic] = ACTIONS(3342), - [anon_sym__Noreturn] = ACTIONS(3342), - [anon_sym_noreturn] = ACTIONS(3342), - [anon_sym_mutable] = ACTIONS(3342), - [anon_sym_constinit] = ACTIONS(3342), - [anon_sym_consteval] = ACTIONS(3342), - [sym_primitive_type] = ACTIONS(3342), - [anon_sym_enum] = ACTIONS(3342), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3342), - [anon_sym_union] = ACTIONS(3342), - [anon_sym_if] = ACTIONS(3342), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3342), - [anon_sym_default] = ACTIONS(3342), - [anon_sym_while] = ACTIONS(3342), - [anon_sym_do] = ACTIONS(3342), - [anon_sym_for] = ACTIONS(3342), - [anon_sym_return] = ACTIONS(3342), - [anon_sym_break] = ACTIONS(3342), - [anon_sym_continue] = ACTIONS(3342), - [anon_sym_goto] = ACTIONS(3342), - [anon_sym_not] = ACTIONS(3342), - [anon_sym_compl] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_sizeof] = ACTIONS(3342), - [anon_sym___alignof__] = ACTIONS(3342), - [anon_sym___alignof] = ACTIONS(3342), - [anon_sym__alignof] = ACTIONS(3342), - [anon_sym_alignof] = ACTIONS(3342), - [anon_sym__Alignof] = ACTIONS(3342), - [anon_sym_offsetof] = ACTIONS(3342), - [anon_sym__Generic] = ACTIONS(3342), - [anon_sym_asm] = ACTIONS(3342), - [anon_sym___asm__] = ACTIONS(3342), - [sym_number_literal] = ACTIONS(3344), - [anon_sym_L_SQUOTE] = ACTIONS(3344), - [anon_sym_u_SQUOTE] = ACTIONS(3344), - [anon_sym_U_SQUOTE] = ACTIONS(3344), - [anon_sym_u8_SQUOTE] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3344), - [anon_sym_L_DQUOTE] = ACTIONS(3344), - [anon_sym_u_DQUOTE] = ACTIONS(3344), - [anon_sym_U_DQUOTE] = ACTIONS(3344), - [anon_sym_u8_DQUOTE] = ACTIONS(3344), - [anon_sym_DQUOTE] = ACTIONS(3344), - [sym_true] = ACTIONS(3342), - [sym_false] = ACTIONS(3342), - [anon_sym_NULL] = ACTIONS(3342), - [anon_sym_nullptr] = ACTIONS(3342), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3342), - [anon_sym_decltype] = ACTIONS(3342), - [anon_sym_virtual] = ACTIONS(3342), - [anon_sym_alignas] = ACTIONS(3342), - [anon_sym_explicit] = ACTIONS(3342), - [anon_sym_typename] = ACTIONS(3342), - [anon_sym_template] = ACTIONS(3342), - [anon_sym_operator] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(3342), - [anon_sym_delete] = ACTIONS(3342), - [anon_sym_throw] = ACTIONS(3342), - [anon_sym_namespace] = ACTIONS(3342), - [anon_sym_using] = ACTIONS(3342), - [anon_sym_static_assert] = ACTIONS(3342), - [anon_sym_concept] = ACTIONS(3342), - [anon_sym_co_return] = ACTIONS(3342), - [anon_sym_co_yield] = ACTIONS(3342), - [anon_sym_R_DQUOTE] = ACTIONS(3344), - [anon_sym_LR_DQUOTE] = ACTIONS(3344), - [anon_sym_uR_DQUOTE] = ACTIONS(3344), - [anon_sym_UR_DQUOTE] = ACTIONS(3344), - [anon_sym_u8R_DQUOTE] = ACTIONS(3344), - [anon_sym_co_await] = ACTIONS(3342), - [anon_sym_new] = ACTIONS(3342), - [anon_sym_requires] = ACTIONS(3342), - [sym_this] = ACTIONS(3342), - }, - [577] = { - [sym_identifier] = ACTIONS(3346), - [aux_sym_preproc_include_token1] = ACTIONS(3346), - [aux_sym_preproc_def_token1] = ACTIONS(3346), - [aux_sym_preproc_if_token1] = ACTIONS(3346), - [aux_sym_preproc_if_token2] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3346), - [aux_sym_preproc_else_token1] = ACTIONS(3346), - [aux_sym_preproc_elif_token1] = ACTIONS(3346), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3346), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3346), - [sym_preproc_directive] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_AMP_AMP] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3348), - [anon_sym___extension__] = ACTIONS(3346), - [anon_sym_typedef] = ACTIONS(3346), - [anon_sym_extern] = ACTIONS(3346), - [anon_sym___attribute__] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3348), - [anon_sym___declspec] = ACTIONS(3346), - [anon_sym___based] = ACTIONS(3346), - [anon_sym___cdecl] = ACTIONS(3346), - [anon_sym___clrcall] = ACTIONS(3346), - [anon_sym___stdcall] = ACTIONS(3346), - [anon_sym___fastcall] = ACTIONS(3346), - [anon_sym___thiscall] = ACTIONS(3346), - [anon_sym___vectorcall] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3348), - [anon_sym_signed] = ACTIONS(3346), - [anon_sym_unsigned] = ACTIONS(3346), - [anon_sym_long] = ACTIONS(3346), - [anon_sym_short] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_register] = ACTIONS(3346), - [anon_sym_inline] = ACTIONS(3346), - [anon_sym___inline] = ACTIONS(3346), - [anon_sym___inline__] = ACTIONS(3346), - [anon_sym___forceinline] = ACTIONS(3346), - [anon_sym_thread_local] = ACTIONS(3346), - [anon_sym___thread] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_constexpr] = ACTIONS(3346), - [anon_sym_volatile] = ACTIONS(3346), - [anon_sym_restrict] = ACTIONS(3346), - [anon_sym___restrict__] = ACTIONS(3346), - [anon_sym__Atomic] = ACTIONS(3346), - [anon_sym__Noreturn] = ACTIONS(3346), - [anon_sym_noreturn] = ACTIONS(3346), - [anon_sym_mutable] = ACTIONS(3346), - [anon_sym_constinit] = ACTIONS(3346), - [anon_sym_consteval] = ACTIONS(3346), - [sym_primitive_type] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_struct] = ACTIONS(3346), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3346), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_goto] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3346), - [anon_sym_compl] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3346), - [anon_sym___alignof__] = ACTIONS(3346), - [anon_sym___alignof] = ACTIONS(3346), - [anon_sym__alignof] = ACTIONS(3346), - [anon_sym_alignof] = ACTIONS(3346), - [anon_sym__Alignof] = ACTIONS(3346), - [anon_sym_offsetof] = ACTIONS(3346), - [anon_sym__Generic] = ACTIONS(3346), - [anon_sym_asm] = ACTIONS(3346), - [anon_sym___asm__] = ACTIONS(3346), - [sym_number_literal] = ACTIONS(3348), - [anon_sym_L_SQUOTE] = ACTIONS(3348), - [anon_sym_u_SQUOTE] = ACTIONS(3348), - [anon_sym_U_SQUOTE] = ACTIONS(3348), - [anon_sym_u8_SQUOTE] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3348), - [anon_sym_L_DQUOTE] = ACTIONS(3348), - [anon_sym_u_DQUOTE] = ACTIONS(3348), - [anon_sym_U_DQUOTE] = ACTIONS(3348), - [anon_sym_u8_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE] = ACTIONS(3348), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [anon_sym_NULL] = ACTIONS(3346), - [anon_sym_nullptr] = ACTIONS(3346), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3346), - [anon_sym_decltype] = ACTIONS(3346), - [anon_sym_virtual] = ACTIONS(3346), - [anon_sym_alignas] = ACTIONS(3346), - [anon_sym_explicit] = ACTIONS(3346), - [anon_sym_typename] = ACTIONS(3346), - [anon_sym_template] = ACTIONS(3346), - [anon_sym_operator] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_static_assert] = ACTIONS(3346), - [anon_sym_concept] = ACTIONS(3346), - [anon_sym_co_return] = ACTIONS(3346), - [anon_sym_co_yield] = ACTIONS(3346), - [anon_sym_R_DQUOTE] = ACTIONS(3348), - [anon_sym_LR_DQUOTE] = ACTIONS(3348), - [anon_sym_uR_DQUOTE] = ACTIONS(3348), - [anon_sym_UR_DQUOTE] = ACTIONS(3348), - [anon_sym_u8R_DQUOTE] = ACTIONS(3348), - [anon_sym_co_await] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_requires] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - }, - [578] = { - [sym_type_qualifier] = STATE(4728), - [sym__type_specifier] = STATE(5568), - [sym_sized_type_specifier] = STATE(3614), - [sym_enum_specifier] = STATE(3614), - [sym_struct_specifier] = STATE(3614), - [sym_union_specifier] = STATE(3614), - [sym__expression] = STATE(4952), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_type_descriptor] = STATE(7950), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_placeholder_type_specifier] = STATE(3614), - [sym_decltype_auto] = STATE(3612), - [sym_decltype] = STATE(3593), - [sym_class_specifier] = STATE(3614), - [sym__class_name] = STATE(8694), - [sym_dependent_type] = STATE(3614), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_type_parameter_pack_expansion] = STATE(8062), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6421), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4285), - [aux_sym_type_definition_repeat1] = STATE(4728), - [aux_sym_sized_type_specifier_repeat1] = STATE(3032), - [sym_identifier] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3173), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_GT2] = ACTIONS(3350), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), - }, - [579] = { - [sym_identifier] = ACTIONS(3352), - [aux_sym_preproc_include_token1] = ACTIONS(3352), - [aux_sym_preproc_def_token1] = ACTIONS(3352), - [aux_sym_preproc_if_token1] = ACTIONS(3352), - [aux_sym_preproc_if_token2] = ACTIONS(3352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3352), - [aux_sym_preproc_else_token1] = ACTIONS(3352), - [aux_sym_preproc_elif_token1] = ACTIONS(3352), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3352), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3352), - [sym_preproc_directive] = ACTIONS(3352), - [anon_sym_LPAREN2] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3352), - [anon_sym_PLUS] = ACTIONS(3352), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_AMP_AMP] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym___extension__] = ACTIONS(3352), - [anon_sym_typedef] = ACTIONS(3352), - [anon_sym_extern] = ACTIONS(3352), - [anon_sym___attribute__] = ACTIONS(3352), - [anon_sym_COLON_COLON] = ACTIONS(3354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3354), - [anon_sym___declspec] = ACTIONS(3352), - [anon_sym___based] = ACTIONS(3352), - [anon_sym___cdecl] = ACTIONS(3352), - [anon_sym___clrcall] = ACTIONS(3352), - [anon_sym___stdcall] = ACTIONS(3352), - [anon_sym___fastcall] = ACTIONS(3352), - [anon_sym___thiscall] = ACTIONS(3352), - [anon_sym___vectorcall] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_signed] = ACTIONS(3352), - [anon_sym_unsigned] = ACTIONS(3352), - [anon_sym_long] = ACTIONS(3352), - [anon_sym_short] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_static] = ACTIONS(3352), - [anon_sym_register] = ACTIONS(3352), - [anon_sym_inline] = ACTIONS(3352), - [anon_sym___inline] = ACTIONS(3352), - [anon_sym___inline__] = ACTIONS(3352), - [anon_sym___forceinline] = ACTIONS(3352), - [anon_sym_thread_local] = ACTIONS(3352), - [anon_sym___thread] = ACTIONS(3352), - [anon_sym_const] = ACTIONS(3352), - [anon_sym_constexpr] = ACTIONS(3352), - [anon_sym_volatile] = ACTIONS(3352), - [anon_sym_restrict] = ACTIONS(3352), - [anon_sym___restrict__] = ACTIONS(3352), - [anon_sym__Atomic] = ACTIONS(3352), - [anon_sym__Noreturn] = ACTIONS(3352), - [anon_sym_noreturn] = ACTIONS(3352), - [anon_sym_mutable] = ACTIONS(3352), - [anon_sym_constinit] = ACTIONS(3352), - [anon_sym_consteval] = ACTIONS(3352), - [sym_primitive_type] = ACTIONS(3352), - [anon_sym_enum] = ACTIONS(3352), - [anon_sym_class] = ACTIONS(3352), - [anon_sym_struct] = ACTIONS(3352), - [anon_sym_union] = ACTIONS(3352), - [anon_sym_if] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3352), - [anon_sym_case] = ACTIONS(3352), - [anon_sym_default] = ACTIONS(3352), - [anon_sym_while] = ACTIONS(3352), - [anon_sym_do] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3352), - [anon_sym_return] = ACTIONS(3352), - [anon_sym_break] = ACTIONS(3352), - [anon_sym_continue] = ACTIONS(3352), - [anon_sym_goto] = ACTIONS(3352), - [anon_sym_not] = ACTIONS(3352), - [anon_sym_compl] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_sizeof] = ACTIONS(3352), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3352), - [anon_sym__Generic] = ACTIONS(3352), - [anon_sym_asm] = ACTIONS(3352), - [anon_sym___asm__] = ACTIONS(3352), - [sym_number_literal] = ACTIONS(3354), - [anon_sym_L_SQUOTE] = ACTIONS(3354), - [anon_sym_u_SQUOTE] = ACTIONS(3354), - [anon_sym_U_SQUOTE] = ACTIONS(3354), - [anon_sym_u8_SQUOTE] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_L_DQUOTE] = ACTIONS(3354), - [anon_sym_u_DQUOTE] = ACTIONS(3354), - [anon_sym_U_DQUOTE] = ACTIONS(3354), - [anon_sym_u8_DQUOTE] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [sym_true] = ACTIONS(3352), - [sym_false] = ACTIONS(3352), - [anon_sym_NULL] = ACTIONS(3352), - [anon_sym_nullptr] = ACTIONS(3352), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3352), - [anon_sym_decltype] = ACTIONS(3352), - [anon_sym_virtual] = ACTIONS(3352), - [anon_sym_alignas] = ACTIONS(3352), - [anon_sym_explicit] = ACTIONS(3352), - [anon_sym_typename] = ACTIONS(3352), - [anon_sym_template] = ACTIONS(3352), - [anon_sym_operator] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3352), - [anon_sym_delete] = ACTIONS(3352), - [anon_sym_throw] = ACTIONS(3352), - [anon_sym_namespace] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3352), - [anon_sym_static_assert] = ACTIONS(3352), - [anon_sym_concept] = ACTIONS(3352), - [anon_sym_co_return] = ACTIONS(3352), - [anon_sym_co_yield] = ACTIONS(3352), - [anon_sym_R_DQUOTE] = ACTIONS(3354), - [anon_sym_LR_DQUOTE] = ACTIONS(3354), - [anon_sym_uR_DQUOTE] = ACTIONS(3354), - [anon_sym_UR_DQUOTE] = ACTIONS(3354), - [anon_sym_u8R_DQUOTE] = ACTIONS(3354), - [anon_sym_co_await] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3352), - [anon_sym_requires] = ACTIONS(3352), - [sym_this] = ACTIONS(3352), - }, - [580] = { - [sym_type_qualifier] = STATE(4728), - [sym__type_specifier] = STATE(5568), - [sym_sized_type_specifier] = STATE(3614), - [sym_enum_specifier] = STATE(3614), - [sym_struct_specifier] = STATE(3614), - [sym_union_specifier] = STATE(3614), - [sym__expression] = STATE(4991), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_type_descriptor] = STATE(7993), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_placeholder_type_specifier] = STATE(3614), - [sym_decltype_auto] = STATE(3612), - [sym_decltype] = STATE(3593), - [sym_class_specifier] = STATE(3614), - [sym__class_name] = STATE(8694), - [sym_dependent_type] = STATE(3614), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_type_parameter_pack_expansion] = STATE(8023), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6421), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4285), - [aux_sym_type_definition_repeat1] = STATE(4728), - [aux_sym_sized_type_specifier_repeat1] = STATE(3032), - [sym_identifier] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3173), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_GT2] = ACTIONS(3356), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), - }, - [581] = { - [sym_identifier] = ACTIONS(3358), - [aux_sym_preproc_include_token1] = ACTIONS(3358), - [aux_sym_preproc_def_token1] = ACTIONS(3358), - [aux_sym_preproc_if_token1] = ACTIONS(3358), - [aux_sym_preproc_if_token2] = ACTIONS(3358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3358), - [aux_sym_preproc_else_token1] = ACTIONS(3358), - [aux_sym_preproc_elif_token1] = ACTIONS(3358), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3358), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3358), - [sym_preproc_directive] = ACTIONS(3358), - [anon_sym_LPAREN2] = ACTIONS(3360), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3360), - [anon_sym___extension__] = ACTIONS(3358), - [anon_sym_typedef] = ACTIONS(3358), - [anon_sym_extern] = ACTIONS(3358), - [anon_sym___attribute__] = ACTIONS(3358), - [anon_sym_COLON_COLON] = ACTIONS(3360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3360), - [anon_sym___declspec] = ACTIONS(3358), - [anon_sym___based] = ACTIONS(3358), - [anon_sym___cdecl] = ACTIONS(3358), - [anon_sym___clrcall] = ACTIONS(3358), - [anon_sym___stdcall] = ACTIONS(3358), - [anon_sym___fastcall] = ACTIONS(3358), - [anon_sym___thiscall] = ACTIONS(3358), - [anon_sym___vectorcall] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_signed] = ACTIONS(3358), - [anon_sym_unsigned] = ACTIONS(3358), - [anon_sym_long] = ACTIONS(3358), - [anon_sym_short] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_register] = ACTIONS(3358), - [anon_sym_inline] = ACTIONS(3358), - [anon_sym___inline] = ACTIONS(3358), - [anon_sym___inline__] = ACTIONS(3358), - [anon_sym___forceinline] = ACTIONS(3358), - [anon_sym_thread_local] = ACTIONS(3358), - [anon_sym___thread] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_constexpr] = ACTIONS(3358), - [anon_sym_volatile] = ACTIONS(3358), - [anon_sym_restrict] = ACTIONS(3358), - [anon_sym___restrict__] = ACTIONS(3358), - [anon_sym__Atomic] = ACTIONS(3358), - [anon_sym__Noreturn] = ACTIONS(3358), - [anon_sym_noreturn] = ACTIONS(3358), - [anon_sym_mutable] = ACTIONS(3358), - [anon_sym_constinit] = ACTIONS(3358), - [anon_sym_consteval] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_struct] = ACTIONS(3358), - [anon_sym_union] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_case] = ACTIONS(3358), - [anon_sym_default] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_goto] = ACTIONS(3358), - [anon_sym_not] = ACTIONS(3358), - [anon_sym_compl] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3360), - [anon_sym_sizeof] = ACTIONS(3358), - [anon_sym___alignof__] = ACTIONS(3358), - [anon_sym___alignof] = ACTIONS(3358), - [anon_sym__alignof] = ACTIONS(3358), - [anon_sym_alignof] = ACTIONS(3358), - [anon_sym__Alignof] = ACTIONS(3358), - [anon_sym_offsetof] = ACTIONS(3358), - [anon_sym__Generic] = ACTIONS(3358), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3360), - [anon_sym_u_SQUOTE] = ACTIONS(3360), - [anon_sym_U_SQUOTE] = ACTIONS(3360), - [anon_sym_u8_SQUOTE] = ACTIONS(3360), - [anon_sym_SQUOTE] = ACTIONS(3360), - [anon_sym_L_DQUOTE] = ACTIONS(3360), - [anon_sym_u_DQUOTE] = ACTIONS(3360), - [anon_sym_U_DQUOTE] = ACTIONS(3360), - [anon_sym_u8_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [anon_sym_NULL] = ACTIONS(3358), - [anon_sym_nullptr] = ACTIONS(3358), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3358), - [anon_sym_decltype] = ACTIONS(3358), - [anon_sym_virtual] = ACTIONS(3358), - [anon_sym_alignas] = ACTIONS(3358), - [anon_sym_explicit] = ACTIONS(3358), - [anon_sym_typename] = ACTIONS(3358), - [anon_sym_template] = ACTIONS(3358), - [anon_sym_operator] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_static_assert] = ACTIONS(3358), - [anon_sym_concept] = ACTIONS(3358), - [anon_sym_co_return] = ACTIONS(3358), - [anon_sym_co_yield] = ACTIONS(3358), - [anon_sym_R_DQUOTE] = ACTIONS(3360), - [anon_sym_LR_DQUOTE] = ACTIONS(3360), - [anon_sym_uR_DQUOTE] = ACTIONS(3360), - [anon_sym_UR_DQUOTE] = ACTIONS(3360), - [anon_sym_u8R_DQUOTE] = ACTIONS(3360), - [anon_sym_co_await] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_requires] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), - }, - [582] = { - [sym_identifier] = ACTIONS(2768), - [aux_sym_preproc_include_token1] = ACTIONS(2768), - [aux_sym_preproc_def_token1] = ACTIONS(2768), - [aux_sym_preproc_if_token1] = ACTIONS(2768), - [aux_sym_preproc_if_token2] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2768), - [aux_sym_preproc_else_token1] = ACTIONS(2768), - [aux_sym_preproc_elif_token1] = ACTIONS(2768), - [sym_preproc_directive] = ACTIONS(2768), - [anon_sym_LPAREN2] = ACTIONS(2770), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_TILDE] = ACTIONS(2770), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_SEMI] = ACTIONS(2770), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym_typedef] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2770), - [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(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(2768), - [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_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = 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_if] = ACTIONS(2768), - [anon_sym_else] = ACTIONS(2768), - [anon_sym_switch] = ACTIONS(2768), - [anon_sym_case] = ACTIONS(2768), - [anon_sym_default] = ACTIONS(2768), - [anon_sym_while] = ACTIONS(2768), - [anon_sym_do] = ACTIONS(2768), - [anon_sym_for] = ACTIONS(2768), - [anon_sym_return] = ACTIONS(2768), - [anon_sym_break] = ACTIONS(2768), - [anon_sym_continue] = ACTIONS(2768), - [anon_sym_goto] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(2768), - [anon_sym_compl] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2770), - [anon_sym_PLUS_PLUS] = ACTIONS(2770), - [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_asm] = ACTIONS(2768), - [anon_sym___asm__] = ACTIONS(2768), - [sym_number_literal] = ACTIONS(2770), - [anon_sym_L_SQUOTE] = ACTIONS(2770), - [anon_sym_u_SQUOTE] = ACTIONS(2770), - [anon_sym_U_SQUOTE] = ACTIONS(2770), - [anon_sym_u8_SQUOTE] = ACTIONS(2770), - [anon_sym_SQUOTE] = ACTIONS(2770), - [anon_sym_L_DQUOTE] = ACTIONS(2770), - [anon_sym_u_DQUOTE] = ACTIONS(2770), - [anon_sym_U_DQUOTE] = ACTIONS(2770), - [anon_sym_u8_DQUOTE] = ACTIONS(2770), - [anon_sym_DQUOTE] = ACTIONS(2770), - [sym_true] = ACTIONS(2768), - [sym_false] = ACTIONS(2768), - [anon_sym_NULL] = ACTIONS(2768), - [anon_sym_nullptr] = ACTIONS(2768), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2768), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym_explicit] = ACTIONS(2768), - [anon_sym_typename] = ACTIONS(2768), - [anon_sym_template] = ACTIONS(2768), - [anon_sym_operator] = ACTIONS(2768), - [anon_sym_try] = ACTIONS(2768), - [anon_sym_delete] = ACTIONS(2768), - [anon_sym_throw] = ACTIONS(2768), - [anon_sym_namespace] = ACTIONS(2768), - [anon_sym_using] = ACTIONS(2768), - [anon_sym_static_assert] = ACTIONS(2768), - [anon_sym_concept] = ACTIONS(2768), - [anon_sym_co_return] = ACTIONS(2768), - [anon_sym_co_yield] = ACTIONS(2768), - [anon_sym_catch] = ACTIONS(2768), - [anon_sym_R_DQUOTE] = ACTIONS(2770), - [anon_sym_LR_DQUOTE] = ACTIONS(2770), - [anon_sym_uR_DQUOTE] = ACTIONS(2770), - [anon_sym_UR_DQUOTE] = ACTIONS(2770), - [anon_sym_u8R_DQUOTE] = ACTIONS(2770), - [anon_sym_co_await] = ACTIONS(2768), - [anon_sym_new] = ACTIONS(2768), - [anon_sym_requires] = ACTIONS(2768), - [sym_this] = ACTIONS(2768), - }, - [583] = { - [sym_identifier] = ACTIONS(3362), - [aux_sym_preproc_include_token1] = ACTIONS(3362), - [aux_sym_preproc_def_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token2] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), - [aux_sym_preproc_else_token1] = ACTIONS(3362), - [aux_sym_preproc_elif_token1] = ACTIONS(3362), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3362), - [sym_preproc_directive] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3362), - [anon_sym_PLUS] = ACTIONS(3362), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym___extension__] = ACTIONS(3362), - [anon_sym_typedef] = ACTIONS(3362), - [anon_sym_extern] = ACTIONS(3362), - [anon_sym___attribute__] = ACTIONS(3362), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), - [anon_sym___declspec] = ACTIONS(3362), - [anon_sym___based] = ACTIONS(3362), - [anon_sym___cdecl] = ACTIONS(3362), - [anon_sym___clrcall] = ACTIONS(3362), - [anon_sym___stdcall] = ACTIONS(3362), - [anon_sym___fastcall] = ACTIONS(3362), - [anon_sym___thiscall] = ACTIONS(3362), - [anon_sym___vectorcall] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_signed] = ACTIONS(3362), - [anon_sym_unsigned] = ACTIONS(3362), - [anon_sym_long] = ACTIONS(3362), - [anon_sym_short] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_register] = ACTIONS(3362), - [anon_sym_inline] = ACTIONS(3362), - [anon_sym___inline] = ACTIONS(3362), - [anon_sym___inline__] = ACTIONS(3362), - [anon_sym___forceinline] = ACTIONS(3362), - [anon_sym_thread_local] = ACTIONS(3362), - [anon_sym___thread] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_constexpr] = ACTIONS(3362), - [anon_sym_volatile] = ACTIONS(3362), - [anon_sym_restrict] = ACTIONS(3362), - [anon_sym___restrict__] = ACTIONS(3362), - [anon_sym__Atomic] = ACTIONS(3362), - [anon_sym__Noreturn] = ACTIONS(3362), - [anon_sym_noreturn] = ACTIONS(3362), - [anon_sym_mutable] = ACTIONS(3362), - [anon_sym_constinit] = ACTIONS(3362), - [anon_sym_consteval] = ACTIONS(3362), - [sym_primitive_type] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3362), - [anon_sym_case] = ACTIONS(3362), - [anon_sym_default] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_do] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_goto] = ACTIONS(3362), - [anon_sym_not] = ACTIONS(3362), - [anon_sym_compl] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_sizeof] = ACTIONS(3362), - [anon_sym___alignof__] = ACTIONS(3362), - [anon_sym___alignof] = ACTIONS(3362), - [anon_sym__alignof] = ACTIONS(3362), - [anon_sym_alignof] = ACTIONS(3362), - [anon_sym__Alignof] = ACTIONS(3362), - [anon_sym_offsetof] = ACTIONS(3362), - [anon_sym__Generic] = ACTIONS(3362), - [anon_sym_asm] = ACTIONS(3362), - [anon_sym___asm__] = ACTIONS(3362), - [sym_number_literal] = ACTIONS(3364), - [anon_sym_L_SQUOTE] = ACTIONS(3364), - [anon_sym_u_SQUOTE] = ACTIONS(3364), - [anon_sym_U_SQUOTE] = ACTIONS(3364), - [anon_sym_u8_SQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_L_DQUOTE] = ACTIONS(3364), - [anon_sym_u_DQUOTE] = ACTIONS(3364), - [anon_sym_U_DQUOTE] = ACTIONS(3364), - [anon_sym_u8_DQUOTE] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [sym_true] = ACTIONS(3362), - [sym_false] = ACTIONS(3362), - [anon_sym_NULL] = ACTIONS(3362), - [anon_sym_nullptr] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3362), - [anon_sym_decltype] = ACTIONS(3362), - [anon_sym_virtual] = ACTIONS(3362), - [anon_sym_alignas] = ACTIONS(3362), - [anon_sym_explicit] = ACTIONS(3362), - [anon_sym_typename] = ACTIONS(3362), - [anon_sym_template] = ACTIONS(3362), - [anon_sym_operator] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [anon_sym_delete] = ACTIONS(3362), - [anon_sym_throw] = ACTIONS(3362), - [anon_sym_namespace] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_static_assert] = ACTIONS(3362), - [anon_sym_concept] = ACTIONS(3362), - [anon_sym_co_return] = ACTIONS(3362), - [anon_sym_co_yield] = ACTIONS(3362), - [anon_sym_R_DQUOTE] = ACTIONS(3364), - [anon_sym_LR_DQUOTE] = ACTIONS(3364), - [anon_sym_uR_DQUOTE] = ACTIONS(3364), - [anon_sym_UR_DQUOTE] = ACTIONS(3364), - [anon_sym_u8R_DQUOTE] = ACTIONS(3364), - [anon_sym_co_await] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3362), - [anon_sym_requires] = ACTIONS(3362), - [sym_this] = ACTIONS(3362), - }, - [584] = { - [sym_identifier] = ACTIONS(3366), - [aux_sym_preproc_include_token1] = ACTIONS(3366), - [aux_sym_preproc_def_token1] = ACTIONS(3366), - [aux_sym_preproc_if_token1] = ACTIONS(3366), - [aux_sym_preproc_if_token2] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3366), - [aux_sym_preproc_else_token1] = ACTIONS(3366), - [aux_sym_preproc_elif_token1] = ACTIONS(3366), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3366), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3366), - [sym_preproc_directive] = ACTIONS(3366), - [anon_sym_LPAREN2] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_AMP_AMP] = ACTIONS(3368), - [anon_sym_AMP] = ACTIONS(3366), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym___extension__] = ACTIONS(3366), - [anon_sym_typedef] = ACTIONS(3366), - [anon_sym_extern] = ACTIONS(3366), - [anon_sym___attribute__] = ACTIONS(3366), - [anon_sym_COLON_COLON] = ACTIONS(3368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3368), - [anon_sym___declspec] = ACTIONS(3366), - [anon_sym___based] = ACTIONS(3366), - [anon_sym___cdecl] = ACTIONS(3366), - [anon_sym___clrcall] = ACTIONS(3366), - [anon_sym___stdcall] = ACTIONS(3366), - [anon_sym___fastcall] = ACTIONS(3366), - [anon_sym___thiscall] = ACTIONS(3366), - [anon_sym___vectorcall] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_signed] = ACTIONS(3366), - [anon_sym_unsigned] = ACTIONS(3366), - [anon_sym_long] = ACTIONS(3366), - [anon_sym_short] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_register] = ACTIONS(3366), - [anon_sym_inline] = ACTIONS(3366), - [anon_sym___inline] = ACTIONS(3366), - [anon_sym___inline__] = ACTIONS(3366), - [anon_sym___forceinline] = ACTIONS(3366), - [anon_sym_thread_local] = ACTIONS(3366), - [anon_sym___thread] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_constexpr] = ACTIONS(3366), - [anon_sym_volatile] = ACTIONS(3366), - [anon_sym_restrict] = ACTIONS(3366), - [anon_sym___restrict__] = ACTIONS(3366), - [anon_sym__Atomic] = ACTIONS(3366), - [anon_sym__Noreturn] = ACTIONS(3366), - [anon_sym_noreturn] = ACTIONS(3366), - [anon_sym_mutable] = ACTIONS(3366), - [anon_sym_constinit] = ACTIONS(3366), - [anon_sym_consteval] = ACTIONS(3366), - [sym_primitive_type] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_struct] = ACTIONS(3366), - [anon_sym_union] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_case] = ACTIONS(3366), - [anon_sym_default] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_goto] = ACTIONS(3366), - [anon_sym_not] = ACTIONS(3366), - [anon_sym_compl] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_sizeof] = ACTIONS(3366), - [anon_sym___alignof__] = ACTIONS(3366), - [anon_sym___alignof] = ACTIONS(3366), - [anon_sym__alignof] = ACTIONS(3366), - [anon_sym_alignof] = ACTIONS(3366), - [anon_sym__Alignof] = ACTIONS(3366), - [anon_sym_offsetof] = ACTIONS(3366), - [anon_sym__Generic] = ACTIONS(3366), - [anon_sym_asm] = ACTIONS(3366), - [anon_sym___asm__] = ACTIONS(3366), - [sym_number_literal] = ACTIONS(3368), - [anon_sym_L_SQUOTE] = ACTIONS(3368), - [anon_sym_u_SQUOTE] = ACTIONS(3368), - [anon_sym_U_SQUOTE] = ACTIONS(3368), - [anon_sym_u8_SQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_L_DQUOTE] = ACTIONS(3368), - [anon_sym_u_DQUOTE] = ACTIONS(3368), - [anon_sym_U_DQUOTE] = ACTIONS(3368), - [anon_sym_u8_DQUOTE] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3366), - [anon_sym_nullptr] = ACTIONS(3366), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3366), - [anon_sym_decltype] = ACTIONS(3366), - [anon_sym_virtual] = ACTIONS(3366), - [anon_sym_alignas] = ACTIONS(3366), - [anon_sym_explicit] = ACTIONS(3366), - [anon_sym_typename] = ACTIONS(3366), - [anon_sym_template] = ACTIONS(3366), - [anon_sym_operator] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_static_assert] = ACTIONS(3366), - [anon_sym_concept] = ACTIONS(3366), - [anon_sym_co_return] = ACTIONS(3366), - [anon_sym_co_yield] = ACTIONS(3366), - [anon_sym_R_DQUOTE] = ACTIONS(3368), - [anon_sym_LR_DQUOTE] = ACTIONS(3368), - [anon_sym_uR_DQUOTE] = ACTIONS(3368), - [anon_sym_UR_DQUOTE] = ACTIONS(3368), - [anon_sym_u8R_DQUOTE] = ACTIONS(3368), - [anon_sym_co_await] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_requires] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), - }, - [585] = { - [sym_identifier] = ACTIONS(3370), - [aux_sym_preproc_include_token1] = ACTIONS(3370), - [aux_sym_preproc_def_token1] = ACTIONS(3370), - [aux_sym_preproc_if_token1] = ACTIONS(3370), - [aux_sym_preproc_if_token2] = ACTIONS(3370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3370), - [aux_sym_preproc_else_token1] = ACTIONS(3370), - [aux_sym_preproc_elif_token1] = ACTIONS(3370), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3370), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3370), - [sym_preproc_directive] = ACTIONS(3370), - [anon_sym_LPAREN2] = ACTIONS(3372), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(3372), - [anon_sym_DASH] = ACTIONS(3370), - [anon_sym_PLUS] = ACTIONS(3370), - [anon_sym_STAR] = ACTIONS(3372), - [anon_sym_AMP_AMP] = ACTIONS(3372), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_SEMI] = ACTIONS(3372), - [anon_sym___extension__] = ACTIONS(3370), - [anon_sym_typedef] = ACTIONS(3370), - [anon_sym_extern] = ACTIONS(3370), - [anon_sym___attribute__] = ACTIONS(3370), - [anon_sym_COLON_COLON] = ACTIONS(3372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3372), - [anon_sym___declspec] = ACTIONS(3370), - [anon_sym___based] = ACTIONS(3370), - [anon_sym___cdecl] = ACTIONS(3370), - [anon_sym___clrcall] = ACTIONS(3370), - [anon_sym___stdcall] = ACTIONS(3370), - [anon_sym___fastcall] = ACTIONS(3370), - [anon_sym___thiscall] = ACTIONS(3370), - [anon_sym___vectorcall] = ACTIONS(3370), - [anon_sym_LBRACE] = ACTIONS(3372), - [anon_sym_signed] = ACTIONS(3370), - [anon_sym_unsigned] = ACTIONS(3370), - [anon_sym_long] = ACTIONS(3370), - [anon_sym_short] = ACTIONS(3370), - [anon_sym_LBRACK] = ACTIONS(3370), - [anon_sym_static] = ACTIONS(3370), - [anon_sym_register] = ACTIONS(3370), - [anon_sym_inline] = ACTIONS(3370), - [anon_sym___inline] = ACTIONS(3370), - [anon_sym___inline__] = ACTIONS(3370), - [anon_sym___forceinline] = ACTIONS(3370), - [anon_sym_thread_local] = ACTIONS(3370), - [anon_sym___thread] = ACTIONS(3370), - [anon_sym_const] = ACTIONS(3370), - [anon_sym_constexpr] = ACTIONS(3370), - [anon_sym_volatile] = ACTIONS(3370), - [anon_sym_restrict] = ACTIONS(3370), - [anon_sym___restrict__] = ACTIONS(3370), - [anon_sym__Atomic] = ACTIONS(3370), - [anon_sym__Noreturn] = ACTIONS(3370), - [anon_sym_noreturn] = ACTIONS(3370), - [anon_sym_mutable] = ACTIONS(3370), - [anon_sym_constinit] = ACTIONS(3370), - [anon_sym_consteval] = ACTIONS(3370), - [sym_primitive_type] = ACTIONS(3370), - [anon_sym_enum] = ACTIONS(3370), - [anon_sym_class] = ACTIONS(3370), - [anon_sym_struct] = ACTIONS(3370), - [anon_sym_union] = ACTIONS(3370), - [anon_sym_if] = ACTIONS(3370), - [anon_sym_switch] = ACTIONS(3370), - [anon_sym_case] = ACTIONS(3370), - [anon_sym_default] = ACTIONS(3370), - [anon_sym_while] = ACTIONS(3370), - [anon_sym_do] = ACTIONS(3370), - [anon_sym_for] = ACTIONS(3370), - [anon_sym_return] = ACTIONS(3370), - [anon_sym_break] = ACTIONS(3370), - [anon_sym_continue] = ACTIONS(3370), - [anon_sym_goto] = ACTIONS(3370), - [anon_sym_not] = ACTIONS(3370), - [anon_sym_compl] = ACTIONS(3370), - [anon_sym_DASH_DASH] = ACTIONS(3372), - [anon_sym_PLUS_PLUS] = ACTIONS(3372), - [anon_sym_sizeof] = ACTIONS(3370), - [anon_sym___alignof__] = ACTIONS(3370), - [anon_sym___alignof] = ACTIONS(3370), - [anon_sym__alignof] = ACTIONS(3370), - [anon_sym_alignof] = ACTIONS(3370), - [anon_sym__Alignof] = ACTIONS(3370), - [anon_sym_offsetof] = ACTIONS(3370), - [anon_sym__Generic] = ACTIONS(3370), - [anon_sym_asm] = ACTIONS(3370), - [anon_sym___asm__] = ACTIONS(3370), - [sym_number_literal] = ACTIONS(3372), - [anon_sym_L_SQUOTE] = ACTIONS(3372), - [anon_sym_u_SQUOTE] = ACTIONS(3372), - [anon_sym_U_SQUOTE] = ACTIONS(3372), - [anon_sym_u8_SQUOTE] = ACTIONS(3372), - [anon_sym_SQUOTE] = ACTIONS(3372), - [anon_sym_L_DQUOTE] = ACTIONS(3372), - [anon_sym_u_DQUOTE] = ACTIONS(3372), - [anon_sym_U_DQUOTE] = ACTIONS(3372), - [anon_sym_u8_DQUOTE] = ACTIONS(3372), - [anon_sym_DQUOTE] = ACTIONS(3372), - [sym_true] = ACTIONS(3370), - [sym_false] = ACTIONS(3370), - [anon_sym_NULL] = ACTIONS(3370), - [anon_sym_nullptr] = ACTIONS(3370), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3370), - [anon_sym_virtual] = ACTIONS(3370), - [anon_sym_alignas] = ACTIONS(3370), - [anon_sym_explicit] = ACTIONS(3370), - [anon_sym_typename] = ACTIONS(3370), - [anon_sym_template] = ACTIONS(3370), - [anon_sym_operator] = ACTIONS(3370), - [anon_sym_try] = ACTIONS(3370), - [anon_sym_delete] = ACTIONS(3370), - [anon_sym_throw] = ACTIONS(3370), - [anon_sym_namespace] = ACTIONS(3370), - [anon_sym_using] = ACTIONS(3370), - [anon_sym_static_assert] = ACTIONS(3370), - [anon_sym_concept] = ACTIONS(3370), - [anon_sym_co_return] = ACTIONS(3370), - [anon_sym_co_yield] = ACTIONS(3370), - [anon_sym_R_DQUOTE] = ACTIONS(3372), - [anon_sym_LR_DQUOTE] = ACTIONS(3372), - [anon_sym_uR_DQUOTE] = ACTIONS(3372), - [anon_sym_UR_DQUOTE] = ACTIONS(3372), - [anon_sym_u8R_DQUOTE] = ACTIONS(3372), - [anon_sym_co_await] = ACTIONS(3370), - [anon_sym_new] = ACTIONS(3370), - [anon_sym_requires] = ACTIONS(3370), - [sym_this] = ACTIONS(3370), - }, - [586] = { - [sym_identifier] = ACTIONS(3374), - [aux_sym_preproc_include_token1] = ACTIONS(3374), - [aux_sym_preproc_def_token1] = ACTIONS(3374), - [aux_sym_preproc_if_token1] = ACTIONS(3374), - [aux_sym_preproc_if_token2] = ACTIONS(3374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3374), - [aux_sym_preproc_else_token1] = ACTIONS(3374), - [aux_sym_preproc_elif_token1] = ACTIONS(3374), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3374), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3374), - [sym_preproc_directive] = ACTIONS(3374), - [anon_sym_LPAREN2] = ACTIONS(3376), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3374), - [anon_sym_PLUS] = ACTIONS(3374), - [anon_sym_STAR] = ACTIONS(3376), - [anon_sym_AMP_AMP] = ACTIONS(3376), - [anon_sym_AMP] = ACTIONS(3374), - [anon_sym_SEMI] = ACTIONS(3376), - [anon_sym___extension__] = ACTIONS(3374), - [anon_sym_typedef] = ACTIONS(3374), - [anon_sym_extern] = ACTIONS(3374), - [anon_sym___attribute__] = ACTIONS(3374), - [anon_sym_COLON_COLON] = ACTIONS(3376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3376), - [anon_sym___declspec] = ACTIONS(3374), - [anon_sym___based] = ACTIONS(3374), - [anon_sym___cdecl] = ACTIONS(3374), - [anon_sym___clrcall] = ACTIONS(3374), - [anon_sym___stdcall] = ACTIONS(3374), - [anon_sym___fastcall] = ACTIONS(3374), - [anon_sym___thiscall] = ACTIONS(3374), - [anon_sym___vectorcall] = ACTIONS(3374), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_signed] = ACTIONS(3374), - [anon_sym_unsigned] = ACTIONS(3374), - [anon_sym_long] = ACTIONS(3374), - [anon_sym_short] = ACTIONS(3374), - [anon_sym_LBRACK] = ACTIONS(3374), - [anon_sym_static] = ACTIONS(3374), - [anon_sym_register] = ACTIONS(3374), - [anon_sym_inline] = ACTIONS(3374), - [anon_sym___inline] = ACTIONS(3374), - [anon_sym___inline__] = ACTIONS(3374), - [anon_sym___forceinline] = ACTIONS(3374), - [anon_sym_thread_local] = ACTIONS(3374), - [anon_sym___thread] = ACTIONS(3374), - [anon_sym_const] = ACTIONS(3374), - [anon_sym_constexpr] = ACTIONS(3374), - [anon_sym_volatile] = ACTIONS(3374), - [anon_sym_restrict] = ACTIONS(3374), - [anon_sym___restrict__] = ACTIONS(3374), - [anon_sym__Atomic] = ACTIONS(3374), - [anon_sym__Noreturn] = ACTIONS(3374), - [anon_sym_noreturn] = ACTIONS(3374), - [anon_sym_mutable] = ACTIONS(3374), - [anon_sym_constinit] = ACTIONS(3374), - [anon_sym_consteval] = ACTIONS(3374), - [sym_primitive_type] = ACTIONS(3374), - [anon_sym_enum] = ACTIONS(3374), - [anon_sym_class] = ACTIONS(3374), - [anon_sym_struct] = ACTIONS(3374), - [anon_sym_union] = ACTIONS(3374), - [anon_sym_if] = ACTIONS(3374), - [anon_sym_switch] = ACTIONS(3374), - [anon_sym_case] = ACTIONS(3374), - [anon_sym_default] = ACTIONS(3374), - [anon_sym_while] = ACTIONS(3374), - [anon_sym_do] = ACTIONS(3374), - [anon_sym_for] = ACTIONS(3374), - [anon_sym_return] = ACTIONS(3374), - [anon_sym_break] = ACTIONS(3374), - [anon_sym_continue] = ACTIONS(3374), - [anon_sym_goto] = ACTIONS(3374), - [anon_sym_not] = ACTIONS(3374), - [anon_sym_compl] = ACTIONS(3374), - [anon_sym_DASH_DASH] = ACTIONS(3376), - [anon_sym_PLUS_PLUS] = ACTIONS(3376), - [anon_sym_sizeof] = ACTIONS(3374), - [anon_sym___alignof__] = ACTIONS(3374), - [anon_sym___alignof] = ACTIONS(3374), - [anon_sym__alignof] = ACTIONS(3374), - [anon_sym_alignof] = ACTIONS(3374), - [anon_sym__Alignof] = ACTIONS(3374), - [anon_sym_offsetof] = ACTIONS(3374), - [anon_sym__Generic] = ACTIONS(3374), - [anon_sym_asm] = ACTIONS(3374), - [anon_sym___asm__] = ACTIONS(3374), - [sym_number_literal] = ACTIONS(3376), - [anon_sym_L_SQUOTE] = ACTIONS(3376), - [anon_sym_u_SQUOTE] = ACTIONS(3376), - [anon_sym_U_SQUOTE] = ACTIONS(3376), - [anon_sym_u8_SQUOTE] = ACTIONS(3376), - [anon_sym_SQUOTE] = ACTIONS(3376), - [anon_sym_L_DQUOTE] = ACTIONS(3376), - [anon_sym_u_DQUOTE] = ACTIONS(3376), - [anon_sym_U_DQUOTE] = ACTIONS(3376), - [anon_sym_u8_DQUOTE] = ACTIONS(3376), - [anon_sym_DQUOTE] = ACTIONS(3376), - [sym_true] = ACTIONS(3374), - [sym_false] = ACTIONS(3374), - [anon_sym_NULL] = ACTIONS(3374), - [anon_sym_nullptr] = ACTIONS(3374), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3374), - [anon_sym_decltype] = ACTIONS(3374), - [anon_sym_virtual] = ACTIONS(3374), - [anon_sym_alignas] = ACTIONS(3374), - [anon_sym_explicit] = ACTIONS(3374), - [anon_sym_typename] = ACTIONS(3374), - [anon_sym_template] = ACTIONS(3374), - [anon_sym_operator] = ACTIONS(3374), - [anon_sym_try] = ACTIONS(3374), - [anon_sym_delete] = ACTIONS(3374), - [anon_sym_throw] = ACTIONS(3374), - [anon_sym_namespace] = ACTIONS(3374), - [anon_sym_using] = ACTIONS(3374), - [anon_sym_static_assert] = ACTIONS(3374), - [anon_sym_concept] = ACTIONS(3374), - [anon_sym_co_return] = ACTIONS(3374), - [anon_sym_co_yield] = ACTIONS(3374), - [anon_sym_R_DQUOTE] = ACTIONS(3376), - [anon_sym_LR_DQUOTE] = ACTIONS(3376), - [anon_sym_uR_DQUOTE] = ACTIONS(3376), - [anon_sym_UR_DQUOTE] = ACTIONS(3376), - [anon_sym_u8R_DQUOTE] = ACTIONS(3376), - [anon_sym_co_await] = ACTIONS(3374), - [anon_sym_new] = ACTIONS(3374), - [anon_sym_requires] = ACTIONS(3374), - [sym_this] = ACTIONS(3374), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, [587] = { - [sym_type_qualifier] = STATE(4728), - [sym__type_specifier] = STATE(5568), - [sym_sized_type_specifier] = STATE(3614), - [sym_enum_specifier] = STATE(3614), - [sym_struct_specifier] = STATE(3614), - [sym_union_specifier] = STATE(3614), - [sym__expression] = STATE(4972), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_type_descriptor] = STATE(7861), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_placeholder_type_specifier] = STATE(3614), - [sym_decltype_auto] = STATE(3612), - [sym_decltype] = STATE(3593), - [sym_class_specifier] = STATE(3614), - [sym__class_name] = STATE(8694), - [sym_dependent_type] = STATE(3614), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_type_parameter_pack_expansion] = STATE(8385), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6421), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4285), - [aux_sym_type_definition_repeat1] = STATE(4728), - [aux_sym_sized_type_specifier_repeat1] = STATE(3032), - [sym_identifier] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3173), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_GT2] = ACTIONS(3378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), - }, - [588] = { - [sym_identifier] = ACTIONS(3380), - [aux_sym_preproc_include_token1] = ACTIONS(3380), - [aux_sym_preproc_def_token1] = ACTIONS(3380), - [aux_sym_preproc_if_token1] = ACTIONS(3380), - [aux_sym_preproc_if_token2] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), - [aux_sym_preproc_else_token1] = ACTIONS(3380), - [aux_sym_preproc_elif_token1] = ACTIONS(3380), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3380), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3380), - [sym_preproc_directive] = ACTIONS(3380), - [anon_sym_LPAREN2] = ACTIONS(3382), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_TILDE] = ACTIONS(3382), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_AMP_AMP] = ACTIONS(3382), - [anon_sym_AMP] = ACTIONS(3380), - [anon_sym_SEMI] = ACTIONS(3382), - [anon_sym___extension__] = ACTIONS(3380), - [anon_sym_typedef] = ACTIONS(3380), - [anon_sym_extern] = ACTIONS(3380), - [anon_sym___attribute__] = ACTIONS(3380), - [anon_sym_COLON_COLON] = ACTIONS(3382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), - [anon_sym___declspec] = ACTIONS(3380), - [anon_sym___based] = ACTIONS(3380), - [anon_sym___cdecl] = ACTIONS(3380), - [anon_sym___clrcall] = ACTIONS(3380), - [anon_sym___stdcall] = ACTIONS(3380), - [anon_sym___fastcall] = ACTIONS(3380), - [anon_sym___thiscall] = ACTIONS(3380), - [anon_sym___vectorcall] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3382), - [anon_sym_signed] = ACTIONS(3380), - [anon_sym_unsigned] = ACTIONS(3380), - [anon_sym_long] = ACTIONS(3380), - [anon_sym_short] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_register] = ACTIONS(3380), - [anon_sym_inline] = ACTIONS(3380), - [anon_sym___inline] = ACTIONS(3380), - [anon_sym___inline__] = ACTIONS(3380), - [anon_sym___forceinline] = ACTIONS(3380), - [anon_sym_thread_local] = ACTIONS(3380), - [anon_sym___thread] = ACTIONS(3380), - [anon_sym_const] = ACTIONS(3380), - [anon_sym_constexpr] = ACTIONS(3380), - [anon_sym_volatile] = ACTIONS(3380), - [anon_sym_restrict] = ACTIONS(3380), - [anon_sym___restrict__] = ACTIONS(3380), - [anon_sym__Atomic] = ACTIONS(3380), - [anon_sym__Noreturn] = ACTIONS(3380), - [anon_sym_noreturn] = ACTIONS(3380), - [anon_sym_mutable] = ACTIONS(3380), - [anon_sym_constinit] = ACTIONS(3380), - [anon_sym_consteval] = ACTIONS(3380), - [sym_primitive_type] = ACTIONS(3380), - [anon_sym_enum] = ACTIONS(3380), - [anon_sym_class] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(3380), - [anon_sym_union] = ACTIONS(3380), - [anon_sym_if] = ACTIONS(3380), - [anon_sym_switch] = ACTIONS(3380), - [anon_sym_case] = ACTIONS(3380), - [anon_sym_default] = ACTIONS(3380), - [anon_sym_while] = ACTIONS(3380), - [anon_sym_do] = ACTIONS(3380), - [anon_sym_for] = ACTIONS(3380), - [anon_sym_return] = ACTIONS(3380), - [anon_sym_break] = ACTIONS(3380), - [anon_sym_continue] = ACTIONS(3380), - [anon_sym_goto] = ACTIONS(3380), - [anon_sym_not] = ACTIONS(3380), - [anon_sym_compl] = ACTIONS(3380), - [anon_sym_DASH_DASH] = ACTIONS(3382), - [anon_sym_PLUS_PLUS] = ACTIONS(3382), - [anon_sym_sizeof] = ACTIONS(3380), - [anon_sym___alignof__] = ACTIONS(3380), - [anon_sym___alignof] = ACTIONS(3380), - [anon_sym__alignof] = ACTIONS(3380), - [anon_sym_alignof] = ACTIONS(3380), - [anon_sym__Alignof] = ACTIONS(3380), - [anon_sym_offsetof] = ACTIONS(3380), - [anon_sym__Generic] = ACTIONS(3380), - [anon_sym_asm] = ACTIONS(3380), - [anon_sym___asm__] = ACTIONS(3380), - [sym_number_literal] = ACTIONS(3382), - [anon_sym_L_SQUOTE] = ACTIONS(3382), - [anon_sym_u_SQUOTE] = ACTIONS(3382), - [anon_sym_U_SQUOTE] = ACTIONS(3382), - [anon_sym_u8_SQUOTE] = ACTIONS(3382), - [anon_sym_SQUOTE] = ACTIONS(3382), - [anon_sym_L_DQUOTE] = ACTIONS(3382), - [anon_sym_u_DQUOTE] = ACTIONS(3382), - [anon_sym_U_DQUOTE] = ACTIONS(3382), - [anon_sym_u8_DQUOTE] = ACTIONS(3382), - [anon_sym_DQUOTE] = ACTIONS(3382), - [sym_true] = ACTIONS(3380), - [sym_false] = ACTIONS(3380), - [anon_sym_NULL] = ACTIONS(3380), - [anon_sym_nullptr] = ACTIONS(3380), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3380), - [anon_sym_decltype] = ACTIONS(3380), - [anon_sym_virtual] = ACTIONS(3380), - [anon_sym_alignas] = ACTIONS(3380), - [anon_sym_explicit] = ACTIONS(3380), - [anon_sym_typename] = ACTIONS(3380), - [anon_sym_template] = ACTIONS(3380), - [anon_sym_operator] = ACTIONS(3380), - [anon_sym_try] = ACTIONS(3380), - [anon_sym_delete] = ACTIONS(3380), - [anon_sym_throw] = ACTIONS(3380), - [anon_sym_namespace] = ACTIONS(3380), - [anon_sym_using] = ACTIONS(3380), - [anon_sym_static_assert] = ACTIONS(3380), - [anon_sym_concept] = ACTIONS(3380), - [anon_sym_co_return] = ACTIONS(3380), - [anon_sym_co_yield] = ACTIONS(3380), - [anon_sym_R_DQUOTE] = ACTIONS(3382), - [anon_sym_LR_DQUOTE] = ACTIONS(3382), - [anon_sym_uR_DQUOTE] = ACTIONS(3382), - [anon_sym_UR_DQUOTE] = ACTIONS(3382), - [anon_sym_u8R_DQUOTE] = ACTIONS(3382), - [anon_sym_co_await] = ACTIONS(3380), - [anon_sym_new] = ACTIONS(3380), - [anon_sym_requires] = ACTIONS(3380), - [sym_this] = ACTIONS(3380), - }, - [589] = { - [sym_identifier] = ACTIONS(3384), - [aux_sym_preproc_include_token1] = ACTIONS(3384), - [aux_sym_preproc_def_token1] = ACTIONS(3384), - [aux_sym_preproc_if_token1] = ACTIONS(3384), - [aux_sym_preproc_if_token2] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), - [aux_sym_preproc_else_token1] = ACTIONS(3384), - [aux_sym_preproc_elif_token1] = ACTIONS(3384), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3384), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3384), - [sym_preproc_directive] = ACTIONS(3384), - [anon_sym_LPAREN2] = ACTIONS(3386), - [anon_sym_BANG] = ACTIONS(3386), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3384), - [anon_sym_PLUS] = ACTIONS(3384), - [anon_sym_STAR] = ACTIONS(3386), - [anon_sym_AMP_AMP] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3384), - [anon_sym_SEMI] = ACTIONS(3386), - [anon_sym___extension__] = ACTIONS(3384), - [anon_sym_typedef] = ACTIONS(3384), - [anon_sym_extern] = ACTIONS(3384), - [anon_sym___attribute__] = ACTIONS(3384), - [anon_sym_COLON_COLON] = ACTIONS(3386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3386), - [anon_sym___declspec] = ACTIONS(3384), - [anon_sym___based] = ACTIONS(3384), - [anon_sym___cdecl] = ACTIONS(3384), - [anon_sym___clrcall] = ACTIONS(3384), - [anon_sym___stdcall] = ACTIONS(3384), - [anon_sym___fastcall] = ACTIONS(3384), - [anon_sym___thiscall] = ACTIONS(3384), - [anon_sym___vectorcall] = ACTIONS(3384), - [anon_sym_LBRACE] = ACTIONS(3386), - [anon_sym_signed] = ACTIONS(3384), - [anon_sym_unsigned] = ACTIONS(3384), - [anon_sym_long] = ACTIONS(3384), - [anon_sym_short] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_static] = ACTIONS(3384), - [anon_sym_register] = ACTIONS(3384), - [anon_sym_inline] = ACTIONS(3384), - [anon_sym___inline] = ACTIONS(3384), - [anon_sym___inline__] = ACTIONS(3384), - [anon_sym___forceinline] = ACTIONS(3384), - [anon_sym_thread_local] = ACTIONS(3384), - [anon_sym___thread] = ACTIONS(3384), - [anon_sym_const] = ACTIONS(3384), - [anon_sym_constexpr] = ACTIONS(3384), - [anon_sym_volatile] = ACTIONS(3384), - [anon_sym_restrict] = ACTIONS(3384), - [anon_sym___restrict__] = ACTIONS(3384), - [anon_sym__Atomic] = ACTIONS(3384), - [anon_sym__Noreturn] = ACTIONS(3384), - [anon_sym_noreturn] = ACTIONS(3384), - [anon_sym_mutable] = ACTIONS(3384), - [anon_sym_constinit] = ACTIONS(3384), - [anon_sym_consteval] = ACTIONS(3384), - [sym_primitive_type] = ACTIONS(3384), - [anon_sym_enum] = ACTIONS(3384), - [anon_sym_class] = ACTIONS(3384), - [anon_sym_struct] = ACTIONS(3384), - [anon_sym_union] = ACTIONS(3384), - [anon_sym_if] = ACTIONS(3384), - [anon_sym_switch] = ACTIONS(3384), - [anon_sym_case] = ACTIONS(3384), - [anon_sym_default] = ACTIONS(3384), - [anon_sym_while] = ACTIONS(3384), - [anon_sym_do] = ACTIONS(3384), - [anon_sym_for] = ACTIONS(3384), - [anon_sym_return] = ACTIONS(3384), - [anon_sym_break] = ACTIONS(3384), - [anon_sym_continue] = ACTIONS(3384), - [anon_sym_goto] = ACTIONS(3384), - [anon_sym_not] = ACTIONS(3384), - [anon_sym_compl] = ACTIONS(3384), - [anon_sym_DASH_DASH] = ACTIONS(3386), - [anon_sym_PLUS_PLUS] = ACTIONS(3386), - [anon_sym_sizeof] = ACTIONS(3384), - [anon_sym___alignof__] = ACTIONS(3384), - [anon_sym___alignof] = ACTIONS(3384), - [anon_sym__alignof] = ACTIONS(3384), - [anon_sym_alignof] = ACTIONS(3384), - [anon_sym__Alignof] = ACTIONS(3384), - [anon_sym_offsetof] = ACTIONS(3384), - [anon_sym__Generic] = ACTIONS(3384), - [anon_sym_asm] = ACTIONS(3384), - [anon_sym___asm__] = ACTIONS(3384), - [sym_number_literal] = ACTIONS(3386), - [anon_sym_L_SQUOTE] = ACTIONS(3386), - [anon_sym_u_SQUOTE] = ACTIONS(3386), - [anon_sym_U_SQUOTE] = ACTIONS(3386), - [anon_sym_u8_SQUOTE] = ACTIONS(3386), - [anon_sym_SQUOTE] = ACTIONS(3386), - [anon_sym_L_DQUOTE] = ACTIONS(3386), - [anon_sym_u_DQUOTE] = ACTIONS(3386), - [anon_sym_U_DQUOTE] = ACTIONS(3386), - [anon_sym_u8_DQUOTE] = ACTIONS(3386), - [anon_sym_DQUOTE] = ACTIONS(3386), - [sym_true] = ACTIONS(3384), - [sym_false] = ACTIONS(3384), - [anon_sym_NULL] = ACTIONS(3384), - [anon_sym_nullptr] = ACTIONS(3384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3384), - [anon_sym_decltype] = ACTIONS(3384), - [anon_sym_virtual] = ACTIONS(3384), - [anon_sym_alignas] = ACTIONS(3384), - [anon_sym_explicit] = ACTIONS(3384), - [anon_sym_typename] = ACTIONS(3384), - [anon_sym_template] = ACTIONS(3384), - [anon_sym_operator] = ACTIONS(3384), - [anon_sym_try] = ACTIONS(3384), - [anon_sym_delete] = ACTIONS(3384), - [anon_sym_throw] = ACTIONS(3384), - [anon_sym_namespace] = ACTIONS(3384), - [anon_sym_using] = ACTIONS(3384), - [anon_sym_static_assert] = ACTIONS(3384), - [anon_sym_concept] = ACTIONS(3384), - [anon_sym_co_return] = ACTIONS(3384), - [anon_sym_co_yield] = ACTIONS(3384), - [anon_sym_R_DQUOTE] = ACTIONS(3386), - [anon_sym_LR_DQUOTE] = ACTIONS(3386), - [anon_sym_uR_DQUOTE] = ACTIONS(3386), - [anon_sym_UR_DQUOTE] = ACTIONS(3386), - [anon_sym_u8R_DQUOTE] = ACTIONS(3386), - [anon_sym_co_await] = ACTIONS(3384), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3384), - [sym_this] = ACTIONS(3384), - }, - [590] = { - [sym_identifier] = ACTIONS(3388), - [aux_sym_preproc_include_token1] = ACTIONS(3388), - [aux_sym_preproc_def_token1] = ACTIONS(3388), - [aux_sym_preproc_if_token1] = ACTIONS(3388), - [aux_sym_preproc_if_token2] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3388), - [aux_sym_preproc_else_token1] = ACTIONS(3388), - [aux_sym_preproc_elif_token1] = ACTIONS(3388), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3388), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3388), - [sym_preproc_directive] = ACTIONS(3388), - [anon_sym_LPAREN2] = ACTIONS(3390), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_TILDE] = ACTIONS(3390), - [anon_sym_DASH] = ACTIONS(3388), - [anon_sym_PLUS] = ACTIONS(3388), - [anon_sym_STAR] = ACTIONS(3390), - [anon_sym_AMP_AMP] = ACTIONS(3390), - [anon_sym_AMP] = ACTIONS(3388), - [anon_sym_SEMI] = ACTIONS(3390), - [anon_sym___extension__] = ACTIONS(3388), - [anon_sym_typedef] = ACTIONS(3388), - [anon_sym_extern] = ACTIONS(3388), - [anon_sym___attribute__] = ACTIONS(3388), - [anon_sym_COLON_COLON] = ACTIONS(3390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3390), - [anon_sym___declspec] = ACTIONS(3388), - [anon_sym___based] = ACTIONS(3388), - [anon_sym___cdecl] = ACTIONS(3388), - [anon_sym___clrcall] = ACTIONS(3388), - [anon_sym___stdcall] = ACTIONS(3388), - [anon_sym___fastcall] = ACTIONS(3388), - [anon_sym___thiscall] = ACTIONS(3388), - [anon_sym___vectorcall] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(3390), - [anon_sym_signed] = ACTIONS(3388), - [anon_sym_unsigned] = ACTIONS(3388), - [anon_sym_long] = ACTIONS(3388), - [anon_sym_short] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3388), - [anon_sym_static] = ACTIONS(3388), - [anon_sym_register] = ACTIONS(3388), - [anon_sym_inline] = ACTIONS(3388), - [anon_sym___inline] = ACTIONS(3388), - [anon_sym___inline__] = ACTIONS(3388), - [anon_sym___forceinline] = ACTIONS(3388), - [anon_sym_thread_local] = ACTIONS(3388), - [anon_sym___thread] = ACTIONS(3388), - [anon_sym_const] = ACTIONS(3388), - [anon_sym_constexpr] = ACTIONS(3388), - [anon_sym_volatile] = ACTIONS(3388), - [anon_sym_restrict] = ACTIONS(3388), - [anon_sym___restrict__] = ACTIONS(3388), - [anon_sym__Atomic] = ACTIONS(3388), - [anon_sym__Noreturn] = ACTIONS(3388), - [anon_sym_noreturn] = ACTIONS(3388), - [anon_sym_mutable] = ACTIONS(3388), - [anon_sym_constinit] = ACTIONS(3388), - [anon_sym_consteval] = ACTIONS(3388), - [sym_primitive_type] = ACTIONS(3388), - [anon_sym_enum] = ACTIONS(3388), - [anon_sym_class] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(3388), - [anon_sym_union] = ACTIONS(3388), - [anon_sym_if] = ACTIONS(3388), - [anon_sym_switch] = ACTIONS(3388), - [anon_sym_case] = ACTIONS(3388), - [anon_sym_default] = ACTIONS(3388), - [anon_sym_while] = ACTIONS(3388), - [anon_sym_do] = ACTIONS(3388), - [anon_sym_for] = ACTIONS(3388), - [anon_sym_return] = ACTIONS(3388), - [anon_sym_break] = ACTIONS(3388), - [anon_sym_continue] = ACTIONS(3388), - [anon_sym_goto] = ACTIONS(3388), - [anon_sym_not] = ACTIONS(3388), - [anon_sym_compl] = ACTIONS(3388), - [anon_sym_DASH_DASH] = ACTIONS(3390), - [anon_sym_PLUS_PLUS] = ACTIONS(3390), - [anon_sym_sizeof] = ACTIONS(3388), - [anon_sym___alignof__] = ACTIONS(3388), - [anon_sym___alignof] = ACTIONS(3388), - [anon_sym__alignof] = ACTIONS(3388), - [anon_sym_alignof] = ACTIONS(3388), - [anon_sym__Alignof] = ACTIONS(3388), - [anon_sym_offsetof] = ACTIONS(3388), - [anon_sym__Generic] = ACTIONS(3388), - [anon_sym_asm] = ACTIONS(3388), - [anon_sym___asm__] = ACTIONS(3388), - [sym_number_literal] = ACTIONS(3390), - [anon_sym_L_SQUOTE] = ACTIONS(3390), - [anon_sym_u_SQUOTE] = ACTIONS(3390), - [anon_sym_U_SQUOTE] = ACTIONS(3390), - [anon_sym_u8_SQUOTE] = ACTIONS(3390), - [anon_sym_SQUOTE] = ACTIONS(3390), - [anon_sym_L_DQUOTE] = ACTIONS(3390), - [anon_sym_u_DQUOTE] = ACTIONS(3390), - [anon_sym_U_DQUOTE] = ACTIONS(3390), - [anon_sym_u8_DQUOTE] = ACTIONS(3390), - [anon_sym_DQUOTE] = ACTIONS(3390), - [sym_true] = ACTIONS(3388), - [sym_false] = ACTIONS(3388), - [anon_sym_NULL] = ACTIONS(3388), - [anon_sym_nullptr] = ACTIONS(3388), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3388), - [anon_sym_decltype] = ACTIONS(3388), - [anon_sym_virtual] = ACTIONS(3388), - [anon_sym_alignas] = ACTIONS(3388), - [anon_sym_explicit] = ACTIONS(3388), - [anon_sym_typename] = ACTIONS(3388), - [anon_sym_template] = ACTIONS(3388), - [anon_sym_operator] = ACTIONS(3388), - [anon_sym_try] = ACTIONS(3388), - [anon_sym_delete] = ACTIONS(3388), - [anon_sym_throw] = ACTIONS(3388), - [anon_sym_namespace] = ACTIONS(3388), - [anon_sym_using] = ACTIONS(3388), - [anon_sym_static_assert] = ACTIONS(3388), - [anon_sym_concept] = ACTIONS(3388), - [anon_sym_co_return] = ACTIONS(3388), - [anon_sym_co_yield] = ACTIONS(3388), - [anon_sym_R_DQUOTE] = ACTIONS(3390), - [anon_sym_LR_DQUOTE] = ACTIONS(3390), - [anon_sym_uR_DQUOTE] = ACTIONS(3390), - [anon_sym_UR_DQUOTE] = ACTIONS(3390), - [anon_sym_u8R_DQUOTE] = ACTIONS(3390), - [anon_sym_co_await] = ACTIONS(3388), - [anon_sym_new] = ACTIONS(3388), - [anon_sym_requires] = ACTIONS(3388), - [sym_this] = ACTIONS(3388), - }, - [591] = { - [sym_identifier] = ACTIONS(3392), - [aux_sym_preproc_include_token1] = ACTIONS(3392), - [aux_sym_preproc_def_token1] = ACTIONS(3392), - [aux_sym_preproc_if_token1] = ACTIONS(3392), - [aux_sym_preproc_if_token2] = ACTIONS(3392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3392), - [aux_sym_preproc_else_token1] = ACTIONS(3392), - [aux_sym_preproc_elif_token1] = ACTIONS(3392), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3392), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3392), - [sym_preproc_directive] = ACTIONS(3392), - [anon_sym_LPAREN2] = ACTIONS(3394), - [anon_sym_BANG] = ACTIONS(3394), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3392), - [anon_sym_PLUS] = ACTIONS(3392), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3392), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym___extension__] = ACTIONS(3392), - [anon_sym_typedef] = ACTIONS(3392), - [anon_sym_extern] = ACTIONS(3392), - [anon_sym___attribute__] = ACTIONS(3392), - [anon_sym_COLON_COLON] = ACTIONS(3394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), - [anon_sym___declspec] = ACTIONS(3392), - [anon_sym___based] = ACTIONS(3392), - [anon_sym___cdecl] = ACTIONS(3392), - [anon_sym___clrcall] = ACTIONS(3392), - [anon_sym___stdcall] = ACTIONS(3392), - [anon_sym___fastcall] = ACTIONS(3392), - [anon_sym___thiscall] = ACTIONS(3392), - [anon_sym___vectorcall] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(3394), - [anon_sym_signed] = ACTIONS(3392), - [anon_sym_unsigned] = ACTIONS(3392), - [anon_sym_long] = ACTIONS(3392), - [anon_sym_short] = ACTIONS(3392), - [anon_sym_LBRACK] = ACTIONS(3392), - [anon_sym_static] = ACTIONS(3392), - [anon_sym_register] = ACTIONS(3392), - [anon_sym_inline] = ACTIONS(3392), - [anon_sym___inline] = ACTIONS(3392), - [anon_sym___inline__] = ACTIONS(3392), - [anon_sym___forceinline] = ACTIONS(3392), - [anon_sym_thread_local] = ACTIONS(3392), - [anon_sym___thread] = ACTIONS(3392), - [anon_sym_const] = ACTIONS(3392), - [anon_sym_constexpr] = ACTIONS(3392), - [anon_sym_volatile] = ACTIONS(3392), - [anon_sym_restrict] = ACTIONS(3392), - [anon_sym___restrict__] = ACTIONS(3392), - [anon_sym__Atomic] = ACTIONS(3392), - [anon_sym__Noreturn] = ACTIONS(3392), - [anon_sym_noreturn] = ACTIONS(3392), - [anon_sym_mutable] = ACTIONS(3392), - [anon_sym_constinit] = ACTIONS(3392), - [anon_sym_consteval] = ACTIONS(3392), - [sym_primitive_type] = ACTIONS(3392), - [anon_sym_enum] = ACTIONS(3392), - [anon_sym_class] = ACTIONS(3392), - [anon_sym_struct] = ACTIONS(3392), - [anon_sym_union] = ACTIONS(3392), - [anon_sym_if] = ACTIONS(3392), - [anon_sym_switch] = ACTIONS(3392), - [anon_sym_case] = ACTIONS(3392), - [anon_sym_default] = ACTIONS(3392), - [anon_sym_while] = ACTIONS(3392), - [anon_sym_do] = ACTIONS(3392), - [anon_sym_for] = ACTIONS(3392), - [anon_sym_return] = ACTIONS(3392), - [anon_sym_break] = ACTIONS(3392), - [anon_sym_continue] = ACTIONS(3392), - [anon_sym_goto] = ACTIONS(3392), - [anon_sym_not] = ACTIONS(3392), - [anon_sym_compl] = ACTIONS(3392), - [anon_sym_DASH_DASH] = ACTIONS(3394), - [anon_sym_PLUS_PLUS] = ACTIONS(3394), - [anon_sym_sizeof] = ACTIONS(3392), - [anon_sym___alignof__] = ACTIONS(3392), - [anon_sym___alignof] = ACTIONS(3392), - [anon_sym__alignof] = ACTIONS(3392), - [anon_sym_alignof] = ACTIONS(3392), - [anon_sym__Alignof] = ACTIONS(3392), - [anon_sym_offsetof] = ACTIONS(3392), - [anon_sym__Generic] = ACTIONS(3392), - [anon_sym_asm] = ACTIONS(3392), - [anon_sym___asm__] = ACTIONS(3392), - [sym_number_literal] = ACTIONS(3394), - [anon_sym_L_SQUOTE] = ACTIONS(3394), - [anon_sym_u_SQUOTE] = ACTIONS(3394), - [anon_sym_U_SQUOTE] = ACTIONS(3394), - [anon_sym_u8_SQUOTE] = ACTIONS(3394), - [anon_sym_SQUOTE] = ACTIONS(3394), - [anon_sym_L_DQUOTE] = ACTIONS(3394), - [anon_sym_u_DQUOTE] = ACTIONS(3394), - [anon_sym_U_DQUOTE] = ACTIONS(3394), - [anon_sym_u8_DQUOTE] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [sym_true] = ACTIONS(3392), - [sym_false] = ACTIONS(3392), - [anon_sym_NULL] = ACTIONS(3392), - [anon_sym_nullptr] = ACTIONS(3392), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3392), - [anon_sym_decltype] = ACTIONS(3392), - [anon_sym_virtual] = ACTIONS(3392), - [anon_sym_alignas] = ACTIONS(3392), - [anon_sym_explicit] = ACTIONS(3392), - [anon_sym_typename] = ACTIONS(3392), - [anon_sym_template] = ACTIONS(3392), - [anon_sym_operator] = ACTIONS(3392), - [anon_sym_try] = ACTIONS(3392), - [anon_sym_delete] = ACTIONS(3392), - [anon_sym_throw] = ACTIONS(3392), - [anon_sym_namespace] = ACTIONS(3392), - [anon_sym_using] = ACTIONS(3392), - [anon_sym_static_assert] = ACTIONS(3392), - [anon_sym_concept] = ACTIONS(3392), - [anon_sym_co_return] = ACTIONS(3392), - [anon_sym_co_yield] = ACTIONS(3392), - [anon_sym_R_DQUOTE] = ACTIONS(3394), - [anon_sym_LR_DQUOTE] = ACTIONS(3394), - [anon_sym_uR_DQUOTE] = ACTIONS(3394), - [anon_sym_UR_DQUOTE] = ACTIONS(3394), - [anon_sym_u8R_DQUOTE] = ACTIONS(3394), - [anon_sym_co_await] = ACTIONS(3392), - [anon_sym_new] = ACTIONS(3392), - [anon_sym_requires] = ACTIONS(3392), - [sym_this] = ACTIONS(3392), - }, - [592] = { - [sym_identifier] = ACTIONS(3396), - [aux_sym_preproc_include_token1] = ACTIONS(3396), - [aux_sym_preproc_def_token1] = ACTIONS(3396), - [aux_sym_preproc_if_token1] = ACTIONS(3396), - [aux_sym_preproc_if_token2] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3396), - [aux_sym_preproc_else_token1] = ACTIONS(3396), - [aux_sym_preproc_elif_token1] = ACTIONS(3396), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3396), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3396), - [sym_preproc_directive] = ACTIONS(3396), - [anon_sym_LPAREN2] = ACTIONS(3398), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3396), - [anon_sym_PLUS] = ACTIONS(3396), - [anon_sym_STAR] = ACTIONS(3398), - [anon_sym_AMP_AMP] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_SEMI] = ACTIONS(3398), - [anon_sym___extension__] = ACTIONS(3396), - [anon_sym_typedef] = ACTIONS(3396), - [anon_sym_extern] = ACTIONS(3396), - [anon_sym___attribute__] = ACTIONS(3396), - [anon_sym_COLON_COLON] = ACTIONS(3398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3398), - [anon_sym___declspec] = ACTIONS(3396), - [anon_sym___based] = ACTIONS(3396), - [anon_sym___cdecl] = ACTIONS(3396), - [anon_sym___clrcall] = ACTIONS(3396), - [anon_sym___stdcall] = ACTIONS(3396), - [anon_sym___fastcall] = ACTIONS(3396), - [anon_sym___thiscall] = ACTIONS(3396), - [anon_sym___vectorcall] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(3398), - [anon_sym_signed] = ACTIONS(3396), - [anon_sym_unsigned] = ACTIONS(3396), - [anon_sym_long] = ACTIONS(3396), - [anon_sym_short] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_static] = ACTIONS(3396), - [anon_sym_register] = ACTIONS(3396), - [anon_sym_inline] = ACTIONS(3396), - [anon_sym___inline] = ACTIONS(3396), - [anon_sym___inline__] = ACTIONS(3396), - [anon_sym___forceinline] = ACTIONS(3396), - [anon_sym_thread_local] = ACTIONS(3396), - [anon_sym___thread] = ACTIONS(3396), - [anon_sym_const] = ACTIONS(3396), - [anon_sym_constexpr] = ACTIONS(3396), - [anon_sym_volatile] = ACTIONS(3396), - [anon_sym_restrict] = ACTIONS(3396), - [anon_sym___restrict__] = ACTIONS(3396), - [anon_sym__Atomic] = ACTIONS(3396), - [anon_sym__Noreturn] = ACTIONS(3396), - [anon_sym_noreturn] = ACTIONS(3396), - [anon_sym_mutable] = ACTIONS(3396), - [anon_sym_constinit] = ACTIONS(3396), - [anon_sym_consteval] = ACTIONS(3396), - [sym_primitive_type] = ACTIONS(3396), - [anon_sym_enum] = ACTIONS(3396), - [anon_sym_class] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(3396), - [anon_sym_union] = ACTIONS(3396), - [anon_sym_if] = ACTIONS(3396), - [anon_sym_switch] = ACTIONS(3396), - [anon_sym_case] = ACTIONS(3396), - [anon_sym_default] = ACTIONS(3396), - [anon_sym_while] = ACTIONS(3396), - [anon_sym_do] = ACTIONS(3396), - [anon_sym_for] = ACTIONS(3396), - [anon_sym_return] = ACTIONS(3396), - [anon_sym_break] = ACTIONS(3396), - [anon_sym_continue] = ACTIONS(3396), - [anon_sym_goto] = ACTIONS(3396), - [anon_sym_not] = ACTIONS(3396), - [anon_sym_compl] = ACTIONS(3396), - [anon_sym_DASH_DASH] = ACTIONS(3398), - [anon_sym_PLUS_PLUS] = ACTIONS(3398), - [anon_sym_sizeof] = ACTIONS(3396), - [anon_sym___alignof__] = ACTIONS(3396), - [anon_sym___alignof] = ACTIONS(3396), - [anon_sym__alignof] = ACTIONS(3396), - [anon_sym_alignof] = ACTIONS(3396), - [anon_sym__Alignof] = ACTIONS(3396), - [anon_sym_offsetof] = ACTIONS(3396), - [anon_sym__Generic] = ACTIONS(3396), - [anon_sym_asm] = ACTIONS(3396), - [anon_sym___asm__] = ACTIONS(3396), - [sym_number_literal] = ACTIONS(3398), - [anon_sym_L_SQUOTE] = ACTIONS(3398), - [anon_sym_u_SQUOTE] = ACTIONS(3398), - [anon_sym_U_SQUOTE] = ACTIONS(3398), - [anon_sym_u8_SQUOTE] = ACTIONS(3398), - [anon_sym_SQUOTE] = ACTIONS(3398), - [anon_sym_L_DQUOTE] = ACTIONS(3398), - [anon_sym_u_DQUOTE] = ACTIONS(3398), - [anon_sym_U_DQUOTE] = ACTIONS(3398), - [anon_sym_u8_DQUOTE] = ACTIONS(3398), - [anon_sym_DQUOTE] = ACTIONS(3398), - [sym_true] = ACTIONS(3396), - [sym_false] = ACTIONS(3396), - [anon_sym_NULL] = ACTIONS(3396), - [anon_sym_nullptr] = ACTIONS(3396), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3396), - [anon_sym_decltype] = ACTIONS(3396), - [anon_sym_virtual] = ACTIONS(3396), - [anon_sym_alignas] = ACTIONS(3396), - [anon_sym_explicit] = ACTIONS(3396), - [anon_sym_typename] = ACTIONS(3396), - [anon_sym_template] = ACTIONS(3396), - [anon_sym_operator] = ACTIONS(3396), - [anon_sym_try] = ACTIONS(3396), - [anon_sym_delete] = ACTIONS(3396), - [anon_sym_throw] = ACTIONS(3396), - [anon_sym_namespace] = ACTIONS(3396), - [anon_sym_using] = ACTIONS(3396), - [anon_sym_static_assert] = ACTIONS(3396), - [anon_sym_concept] = ACTIONS(3396), - [anon_sym_co_return] = ACTIONS(3396), - [anon_sym_co_yield] = ACTIONS(3396), - [anon_sym_R_DQUOTE] = ACTIONS(3398), - [anon_sym_LR_DQUOTE] = ACTIONS(3398), - [anon_sym_uR_DQUOTE] = ACTIONS(3398), - [anon_sym_UR_DQUOTE] = ACTIONS(3398), - [anon_sym_u8R_DQUOTE] = ACTIONS(3398), - [anon_sym_co_await] = ACTIONS(3396), - [anon_sym_new] = ACTIONS(3396), - [anon_sym_requires] = ACTIONS(3396), - [sym_this] = ACTIONS(3396), - }, - [593] = { - [sym_identifier] = ACTIONS(3400), - [aux_sym_preproc_include_token1] = ACTIONS(3400), - [aux_sym_preproc_def_token1] = ACTIONS(3400), - [aux_sym_preproc_if_token1] = ACTIONS(3400), - [aux_sym_preproc_if_token2] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3400), - [aux_sym_preproc_else_token1] = ACTIONS(3400), - [aux_sym_preproc_elif_token1] = ACTIONS(3400), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3400), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3400), - [sym_preproc_directive] = ACTIONS(3400), - [anon_sym_LPAREN2] = ACTIONS(3402), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_TILDE] = ACTIONS(3402), - [anon_sym_DASH] = ACTIONS(3400), - [anon_sym_PLUS] = ACTIONS(3400), - [anon_sym_STAR] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3400), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym___extension__] = ACTIONS(3400), - [anon_sym_typedef] = ACTIONS(3400), - [anon_sym_extern] = ACTIONS(3400), - [anon_sym___attribute__] = ACTIONS(3400), - [anon_sym_COLON_COLON] = ACTIONS(3402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3402), - [anon_sym___declspec] = ACTIONS(3400), - [anon_sym___based] = ACTIONS(3400), - [anon_sym___cdecl] = ACTIONS(3400), - [anon_sym___clrcall] = ACTIONS(3400), - [anon_sym___stdcall] = ACTIONS(3400), - [anon_sym___fastcall] = ACTIONS(3400), - [anon_sym___thiscall] = ACTIONS(3400), - [anon_sym___vectorcall] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3402), - [anon_sym_signed] = ACTIONS(3400), - [anon_sym_unsigned] = ACTIONS(3400), - [anon_sym_long] = ACTIONS(3400), - [anon_sym_short] = ACTIONS(3400), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_static] = ACTIONS(3400), - [anon_sym_register] = ACTIONS(3400), - [anon_sym_inline] = ACTIONS(3400), - [anon_sym___inline] = ACTIONS(3400), - [anon_sym___inline__] = ACTIONS(3400), - [anon_sym___forceinline] = ACTIONS(3400), - [anon_sym_thread_local] = ACTIONS(3400), - [anon_sym___thread] = ACTIONS(3400), - [anon_sym_const] = ACTIONS(3400), - [anon_sym_constexpr] = ACTIONS(3400), - [anon_sym_volatile] = ACTIONS(3400), - [anon_sym_restrict] = ACTIONS(3400), - [anon_sym___restrict__] = ACTIONS(3400), - [anon_sym__Atomic] = ACTIONS(3400), - [anon_sym__Noreturn] = ACTIONS(3400), - [anon_sym_noreturn] = ACTIONS(3400), - [anon_sym_mutable] = ACTIONS(3400), - [anon_sym_constinit] = ACTIONS(3400), - [anon_sym_consteval] = ACTIONS(3400), - [sym_primitive_type] = ACTIONS(3400), - [anon_sym_enum] = ACTIONS(3400), - [anon_sym_class] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3400), - [anon_sym_union] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_switch] = ACTIONS(3400), - [anon_sym_case] = ACTIONS(3400), - [anon_sym_default] = ACTIONS(3400), - [anon_sym_while] = ACTIONS(3400), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3400), - [anon_sym_break] = ACTIONS(3400), - [anon_sym_continue] = ACTIONS(3400), - [anon_sym_goto] = ACTIONS(3400), - [anon_sym_not] = ACTIONS(3400), - [anon_sym_compl] = ACTIONS(3400), - [anon_sym_DASH_DASH] = ACTIONS(3402), - [anon_sym_PLUS_PLUS] = ACTIONS(3402), - [anon_sym_sizeof] = ACTIONS(3400), - [anon_sym___alignof__] = ACTIONS(3400), - [anon_sym___alignof] = ACTIONS(3400), - [anon_sym__alignof] = ACTIONS(3400), - [anon_sym_alignof] = ACTIONS(3400), - [anon_sym__Alignof] = ACTIONS(3400), - [anon_sym_offsetof] = ACTIONS(3400), - [anon_sym__Generic] = ACTIONS(3400), - [anon_sym_asm] = ACTIONS(3400), - [anon_sym___asm__] = ACTIONS(3400), - [sym_number_literal] = ACTIONS(3402), - [anon_sym_L_SQUOTE] = ACTIONS(3402), - [anon_sym_u_SQUOTE] = ACTIONS(3402), - [anon_sym_U_SQUOTE] = ACTIONS(3402), - [anon_sym_u8_SQUOTE] = ACTIONS(3402), - [anon_sym_SQUOTE] = ACTIONS(3402), - [anon_sym_L_DQUOTE] = ACTIONS(3402), - [anon_sym_u_DQUOTE] = ACTIONS(3402), - [anon_sym_U_DQUOTE] = ACTIONS(3402), - [anon_sym_u8_DQUOTE] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [sym_true] = ACTIONS(3400), - [sym_false] = ACTIONS(3400), - [anon_sym_NULL] = ACTIONS(3400), - [anon_sym_nullptr] = ACTIONS(3400), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3400), - [anon_sym_decltype] = ACTIONS(3400), - [anon_sym_virtual] = ACTIONS(3400), - [anon_sym_alignas] = ACTIONS(3400), - [anon_sym_explicit] = ACTIONS(3400), - [anon_sym_typename] = ACTIONS(3400), - [anon_sym_template] = ACTIONS(3400), - [anon_sym_operator] = ACTIONS(3400), - [anon_sym_try] = ACTIONS(3400), - [anon_sym_delete] = ACTIONS(3400), - [anon_sym_throw] = ACTIONS(3400), - [anon_sym_namespace] = ACTIONS(3400), - [anon_sym_using] = ACTIONS(3400), - [anon_sym_static_assert] = ACTIONS(3400), - [anon_sym_concept] = ACTIONS(3400), - [anon_sym_co_return] = ACTIONS(3400), - [anon_sym_co_yield] = ACTIONS(3400), - [anon_sym_R_DQUOTE] = ACTIONS(3402), - [anon_sym_LR_DQUOTE] = ACTIONS(3402), - [anon_sym_uR_DQUOTE] = ACTIONS(3402), - [anon_sym_UR_DQUOTE] = ACTIONS(3402), - [anon_sym_u8R_DQUOTE] = ACTIONS(3402), - [anon_sym_co_await] = ACTIONS(3400), - [anon_sym_new] = ACTIONS(3400), - [anon_sym_requires] = ACTIONS(3400), - [sym_this] = ACTIONS(3400), - }, - [594] = { - [sym_type_qualifier] = STATE(4728), - [sym__type_specifier] = STATE(5568), - [sym_sized_type_specifier] = STATE(3614), - [sym_enum_specifier] = STATE(3614), - [sym_struct_specifier] = STATE(3614), - [sym_union_specifier] = STATE(3614), - [sym__expression] = STATE(5001), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_type_descriptor] = STATE(7713), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_placeholder_type_specifier] = STATE(3614), - [sym_decltype_auto] = STATE(3612), - [sym_decltype] = STATE(3593), - [sym_class_specifier] = STATE(3614), - [sym__class_name] = STATE(8694), - [sym_dependent_type] = STATE(3614), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_type_parameter_pack_expansion] = STATE(8205), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6421), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4285), - [aux_sym_type_definition_repeat1] = STATE(4728), - [aux_sym_sized_type_specifier_repeat1] = STATE(3032), - [sym_identifier] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3173), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_GT2] = ACTIONS(3404), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), - }, - [595] = { - [sym_identifier] = ACTIONS(3406), - [aux_sym_preproc_include_token1] = ACTIONS(3406), - [aux_sym_preproc_def_token1] = ACTIONS(3406), - [aux_sym_preproc_if_token1] = ACTIONS(3406), - [aux_sym_preproc_if_token2] = ACTIONS(3406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3406), - [aux_sym_preproc_else_token1] = ACTIONS(3406), - [aux_sym_preproc_elif_token1] = ACTIONS(3406), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3406), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3406), - [sym_preproc_directive] = ACTIONS(3406), - [anon_sym_LPAREN2] = ACTIONS(3408), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_TILDE] = ACTIONS(3408), - [anon_sym_DASH] = ACTIONS(3406), - [anon_sym_PLUS] = ACTIONS(3406), - [anon_sym_STAR] = ACTIONS(3408), - [anon_sym_AMP_AMP] = ACTIONS(3408), - [anon_sym_AMP] = ACTIONS(3406), - [anon_sym_SEMI] = ACTIONS(3408), - [anon_sym___extension__] = ACTIONS(3406), - [anon_sym_typedef] = ACTIONS(3406), - [anon_sym_extern] = ACTIONS(3406), - [anon_sym___attribute__] = ACTIONS(3406), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3408), - [anon_sym___declspec] = ACTIONS(3406), - [anon_sym___based] = ACTIONS(3406), - [anon_sym___cdecl] = ACTIONS(3406), - [anon_sym___clrcall] = ACTIONS(3406), - [anon_sym___stdcall] = ACTIONS(3406), - [anon_sym___fastcall] = ACTIONS(3406), - [anon_sym___thiscall] = ACTIONS(3406), - [anon_sym___vectorcall] = ACTIONS(3406), - [anon_sym_LBRACE] = ACTIONS(3408), - [anon_sym_signed] = ACTIONS(3406), - [anon_sym_unsigned] = ACTIONS(3406), - [anon_sym_long] = ACTIONS(3406), - [anon_sym_short] = ACTIONS(3406), - [anon_sym_LBRACK] = ACTIONS(3406), - [anon_sym_static] = ACTIONS(3406), - [anon_sym_register] = ACTIONS(3406), - [anon_sym_inline] = ACTIONS(3406), - [anon_sym___inline] = ACTIONS(3406), - [anon_sym___inline__] = ACTIONS(3406), - [anon_sym___forceinline] = ACTIONS(3406), - [anon_sym_thread_local] = ACTIONS(3406), - [anon_sym___thread] = ACTIONS(3406), - [anon_sym_const] = ACTIONS(3406), - [anon_sym_constexpr] = ACTIONS(3406), - [anon_sym_volatile] = ACTIONS(3406), - [anon_sym_restrict] = ACTIONS(3406), - [anon_sym___restrict__] = ACTIONS(3406), - [anon_sym__Atomic] = ACTIONS(3406), - [anon_sym__Noreturn] = ACTIONS(3406), - [anon_sym_noreturn] = ACTIONS(3406), - [anon_sym_mutable] = ACTIONS(3406), - [anon_sym_constinit] = ACTIONS(3406), - [anon_sym_consteval] = ACTIONS(3406), - [sym_primitive_type] = ACTIONS(3406), - [anon_sym_enum] = ACTIONS(3406), - [anon_sym_class] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3406), - [anon_sym_union] = ACTIONS(3406), - [anon_sym_if] = ACTIONS(3406), - [anon_sym_switch] = ACTIONS(3406), - [anon_sym_case] = ACTIONS(3406), - [anon_sym_default] = ACTIONS(3406), - [anon_sym_while] = ACTIONS(3406), - [anon_sym_do] = ACTIONS(3406), - [anon_sym_for] = ACTIONS(3406), - [anon_sym_return] = ACTIONS(3406), - [anon_sym_break] = ACTIONS(3406), - [anon_sym_continue] = ACTIONS(3406), - [anon_sym_goto] = ACTIONS(3406), - [anon_sym_not] = ACTIONS(3406), - [anon_sym_compl] = ACTIONS(3406), - [anon_sym_DASH_DASH] = ACTIONS(3408), - [anon_sym_PLUS_PLUS] = ACTIONS(3408), - [anon_sym_sizeof] = ACTIONS(3406), - [anon_sym___alignof__] = ACTIONS(3406), - [anon_sym___alignof] = ACTIONS(3406), - [anon_sym__alignof] = ACTIONS(3406), - [anon_sym_alignof] = ACTIONS(3406), - [anon_sym__Alignof] = ACTIONS(3406), - [anon_sym_offsetof] = ACTIONS(3406), - [anon_sym__Generic] = ACTIONS(3406), - [anon_sym_asm] = ACTIONS(3406), - [anon_sym___asm__] = ACTIONS(3406), - [sym_number_literal] = ACTIONS(3408), - [anon_sym_L_SQUOTE] = ACTIONS(3408), - [anon_sym_u_SQUOTE] = ACTIONS(3408), - [anon_sym_U_SQUOTE] = ACTIONS(3408), - [anon_sym_u8_SQUOTE] = ACTIONS(3408), - [anon_sym_SQUOTE] = ACTIONS(3408), - [anon_sym_L_DQUOTE] = ACTIONS(3408), - [anon_sym_u_DQUOTE] = ACTIONS(3408), - [anon_sym_U_DQUOTE] = ACTIONS(3408), - [anon_sym_u8_DQUOTE] = ACTIONS(3408), - [anon_sym_DQUOTE] = ACTIONS(3408), - [sym_true] = ACTIONS(3406), - [sym_false] = ACTIONS(3406), - [anon_sym_NULL] = ACTIONS(3406), - [anon_sym_nullptr] = ACTIONS(3406), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3406), - [anon_sym_decltype] = ACTIONS(3406), - [anon_sym_virtual] = ACTIONS(3406), - [anon_sym_alignas] = ACTIONS(3406), - [anon_sym_explicit] = ACTIONS(3406), - [anon_sym_typename] = ACTIONS(3406), - [anon_sym_template] = ACTIONS(3406), - [anon_sym_operator] = ACTIONS(3406), - [anon_sym_try] = ACTIONS(3406), - [anon_sym_delete] = ACTIONS(3406), - [anon_sym_throw] = ACTIONS(3406), - [anon_sym_namespace] = ACTIONS(3406), - [anon_sym_using] = ACTIONS(3406), - [anon_sym_static_assert] = ACTIONS(3406), - [anon_sym_concept] = ACTIONS(3406), - [anon_sym_co_return] = ACTIONS(3406), - [anon_sym_co_yield] = ACTIONS(3406), - [anon_sym_R_DQUOTE] = ACTIONS(3408), - [anon_sym_LR_DQUOTE] = ACTIONS(3408), - [anon_sym_uR_DQUOTE] = ACTIONS(3408), - [anon_sym_UR_DQUOTE] = ACTIONS(3408), - [anon_sym_u8R_DQUOTE] = ACTIONS(3408), - [anon_sym_co_await] = ACTIONS(3406), - [anon_sym_new] = ACTIONS(3406), - [anon_sym_requires] = ACTIONS(3406), - [sym_this] = ACTIONS(3406), - }, - [596] = { - [sym_identifier] = ACTIONS(3410), - [aux_sym_preproc_include_token1] = ACTIONS(3410), - [aux_sym_preproc_def_token1] = ACTIONS(3410), - [aux_sym_preproc_if_token1] = ACTIONS(3410), - [aux_sym_preproc_if_token2] = ACTIONS(3410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3410), - [aux_sym_preproc_else_token1] = ACTIONS(3410), - [aux_sym_preproc_elif_token1] = ACTIONS(3410), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3410), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3410), - [sym_preproc_directive] = ACTIONS(3410), - [anon_sym_LPAREN2] = ACTIONS(3412), - [anon_sym_BANG] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3412), - [anon_sym_DASH] = ACTIONS(3410), - [anon_sym_PLUS] = ACTIONS(3410), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3410), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym___extension__] = ACTIONS(3410), - [anon_sym_typedef] = ACTIONS(3410), - [anon_sym_extern] = ACTIONS(3410), - [anon_sym___attribute__] = ACTIONS(3410), - [anon_sym_COLON_COLON] = ACTIONS(3412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), - [anon_sym___declspec] = ACTIONS(3410), - [anon_sym___based] = ACTIONS(3410), - [anon_sym___cdecl] = ACTIONS(3410), - [anon_sym___clrcall] = ACTIONS(3410), - [anon_sym___stdcall] = ACTIONS(3410), - [anon_sym___fastcall] = ACTIONS(3410), - [anon_sym___thiscall] = ACTIONS(3410), - [anon_sym___vectorcall] = ACTIONS(3410), - [anon_sym_LBRACE] = ACTIONS(3412), - [anon_sym_signed] = ACTIONS(3410), - [anon_sym_unsigned] = ACTIONS(3410), - [anon_sym_long] = ACTIONS(3410), - [anon_sym_short] = ACTIONS(3410), - [anon_sym_LBRACK] = ACTIONS(3410), - [anon_sym_static] = ACTIONS(3410), - [anon_sym_register] = ACTIONS(3410), - [anon_sym_inline] = ACTIONS(3410), - [anon_sym___inline] = ACTIONS(3410), - [anon_sym___inline__] = ACTIONS(3410), - [anon_sym___forceinline] = ACTIONS(3410), - [anon_sym_thread_local] = ACTIONS(3410), - [anon_sym___thread] = ACTIONS(3410), - [anon_sym_const] = ACTIONS(3410), - [anon_sym_constexpr] = ACTIONS(3410), - [anon_sym_volatile] = ACTIONS(3410), - [anon_sym_restrict] = ACTIONS(3410), - [anon_sym___restrict__] = ACTIONS(3410), - [anon_sym__Atomic] = ACTIONS(3410), - [anon_sym__Noreturn] = ACTIONS(3410), - [anon_sym_noreturn] = ACTIONS(3410), - [anon_sym_mutable] = ACTIONS(3410), - [anon_sym_constinit] = ACTIONS(3410), - [anon_sym_consteval] = ACTIONS(3410), - [sym_primitive_type] = ACTIONS(3410), - [anon_sym_enum] = ACTIONS(3410), - [anon_sym_class] = ACTIONS(3410), - [anon_sym_struct] = ACTIONS(3410), - [anon_sym_union] = ACTIONS(3410), - [anon_sym_if] = ACTIONS(3410), - [anon_sym_switch] = ACTIONS(3410), - [anon_sym_case] = ACTIONS(3410), - [anon_sym_default] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(3410), - [anon_sym_do] = ACTIONS(3410), - [anon_sym_for] = ACTIONS(3410), - [anon_sym_return] = ACTIONS(3410), - [anon_sym_break] = ACTIONS(3410), - [anon_sym_continue] = ACTIONS(3410), - [anon_sym_goto] = ACTIONS(3410), - [anon_sym_not] = ACTIONS(3410), - [anon_sym_compl] = ACTIONS(3410), - [anon_sym_DASH_DASH] = ACTIONS(3412), - [anon_sym_PLUS_PLUS] = ACTIONS(3412), - [anon_sym_sizeof] = ACTIONS(3410), - [anon_sym___alignof__] = ACTIONS(3410), - [anon_sym___alignof] = ACTIONS(3410), - [anon_sym__alignof] = ACTIONS(3410), - [anon_sym_alignof] = ACTIONS(3410), - [anon_sym__Alignof] = ACTIONS(3410), - [anon_sym_offsetof] = ACTIONS(3410), - [anon_sym__Generic] = ACTIONS(3410), - [anon_sym_asm] = ACTIONS(3410), - [anon_sym___asm__] = ACTIONS(3410), - [sym_number_literal] = ACTIONS(3412), - [anon_sym_L_SQUOTE] = ACTIONS(3412), - [anon_sym_u_SQUOTE] = ACTIONS(3412), - [anon_sym_U_SQUOTE] = ACTIONS(3412), - [anon_sym_u8_SQUOTE] = ACTIONS(3412), - [anon_sym_SQUOTE] = ACTIONS(3412), - [anon_sym_L_DQUOTE] = ACTIONS(3412), - [anon_sym_u_DQUOTE] = ACTIONS(3412), - [anon_sym_U_DQUOTE] = ACTIONS(3412), - [anon_sym_u8_DQUOTE] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [sym_true] = ACTIONS(3410), - [sym_false] = ACTIONS(3410), - [anon_sym_NULL] = ACTIONS(3410), - [anon_sym_nullptr] = ACTIONS(3410), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3410), - [anon_sym_decltype] = ACTIONS(3410), - [anon_sym_virtual] = ACTIONS(3410), - [anon_sym_alignas] = ACTIONS(3410), - [anon_sym_explicit] = ACTIONS(3410), - [anon_sym_typename] = ACTIONS(3410), - [anon_sym_template] = ACTIONS(3410), - [anon_sym_operator] = ACTIONS(3410), - [anon_sym_try] = ACTIONS(3410), - [anon_sym_delete] = ACTIONS(3410), - [anon_sym_throw] = ACTIONS(3410), - [anon_sym_namespace] = ACTIONS(3410), - [anon_sym_using] = ACTIONS(3410), - [anon_sym_static_assert] = ACTIONS(3410), - [anon_sym_concept] = ACTIONS(3410), - [anon_sym_co_return] = ACTIONS(3410), - [anon_sym_co_yield] = ACTIONS(3410), - [anon_sym_R_DQUOTE] = ACTIONS(3412), - [anon_sym_LR_DQUOTE] = ACTIONS(3412), - [anon_sym_uR_DQUOTE] = ACTIONS(3412), - [anon_sym_UR_DQUOTE] = ACTIONS(3412), - [anon_sym_u8R_DQUOTE] = ACTIONS(3412), - [anon_sym_co_await] = ACTIONS(3410), - [anon_sym_new] = ACTIONS(3410), - [anon_sym_requires] = ACTIONS(3410), - [sym_this] = ACTIONS(3410), - }, - [597] = { - [sym_identifier] = ACTIONS(3414), - [aux_sym_preproc_include_token1] = ACTIONS(3414), - [aux_sym_preproc_def_token1] = ACTIONS(3414), - [aux_sym_preproc_if_token1] = ACTIONS(3414), - [aux_sym_preproc_if_token2] = ACTIONS(3414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3414), - [aux_sym_preproc_else_token1] = ACTIONS(3414), - [aux_sym_preproc_elif_token1] = ACTIONS(3414), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3414), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3414), - [sym_preproc_directive] = ACTIONS(3414), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(3416), - [anon_sym_TILDE] = ACTIONS(3416), - [anon_sym_DASH] = ACTIONS(3414), - [anon_sym_PLUS] = ACTIONS(3414), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3416), - [anon_sym___extension__] = ACTIONS(3414), - [anon_sym_typedef] = ACTIONS(3414), - [anon_sym_extern] = ACTIONS(3414), - [anon_sym___attribute__] = ACTIONS(3414), - [anon_sym_COLON_COLON] = ACTIONS(3416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3416), - [anon_sym___declspec] = ACTIONS(3414), - [anon_sym___based] = ACTIONS(3414), - [anon_sym___cdecl] = ACTIONS(3414), - [anon_sym___clrcall] = ACTIONS(3414), - [anon_sym___stdcall] = ACTIONS(3414), - [anon_sym___fastcall] = ACTIONS(3414), - [anon_sym___thiscall] = ACTIONS(3414), - [anon_sym___vectorcall] = ACTIONS(3414), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_signed] = ACTIONS(3414), - [anon_sym_unsigned] = ACTIONS(3414), - [anon_sym_long] = ACTIONS(3414), - [anon_sym_short] = ACTIONS(3414), - [anon_sym_LBRACK] = ACTIONS(3414), - [anon_sym_static] = ACTIONS(3414), - [anon_sym_register] = ACTIONS(3414), - [anon_sym_inline] = ACTIONS(3414), - [anon_sym___inline] = ACTIONS(3414), - [anon_sym___inline__] = ACTIONS(3414), - [anon_sym___forceinline] = ACTIONS(3414), - [anon_sym_thread_local] = ACTIONS(3414), - [anon_sym___thread] = ACTIONS(3414), - [anon_sym_const] = ACTIONS(3414), - [anon_sym_constexpr] = ACTIONS(3414), - [anon_sym_volatile] = ACTIONS(3414), - [anon_sym_restrict] = ACTIONS(3414), - [anon_sym___restrict__] = ACTIONS(3414), - [anon_sym__Atomic] = ACTIONS(3414), - [anon_sym__Noreturn] = ACTIONS(3414), - [anon_sym_noreturn] = ACTIONS(3414), - [anon_sym_mutable] = ACTIONS(3414), - [anon_sym_constinit] = ACTIONS(3414), - [anon_sym_consteval] = ACTIONS(3414), - [sym_primitive_type] = ACTIONS(3414), - [anon_sym_enum] = ACTIONS(3414), - [anon_sym_class] = ACTIONS(3414), - [anon_sym_struct] = ACTIONS(3414), - [anon_sym_union] = ACTIONS(3414), - [anon_sym_if] = ACTIONS(3414), - [anon_sym_switch] = ACTIONS(3414), - [anon_sym_case] = ACTIONS(3414), - [anon_sym_default] = ACTIONS(3414), - [anon_sym_while] = ACTIONS(3414), - [anon_sym_do] = ACTIONS(3414), - [anon_sym_for] = ACTIONS(3414), - [anon_sym_return] = ACTIONS(3414), - [anon_sym_break] = ACTIONS(3414), - [anon_sym_continue] = ACTIONS(3414), - [anon_sym_goto] = ACTIONS(3414), - [anon_sym_not] = ACTIONS(3414), - [anon_sym_compl] = ACTIONS(3414), - [anon_sym_DASH_DASH] = ACTIONS(3416), - [anon_sym_PLUS_PLUS] = ACTIONS(3416), - [anon_sym_sizeof] = ACTIONS(3414), - [anon_sym___alignof__] = ACTIONS(3414), - [anon_sym___alignof] = ACTIONS(3414), - [anon_sym__alignof] = ACTIONS(3414), - [anon_sym_alignof] = ACTIONS(3414), - [anon_sym__Alignof] = ACTIONS(3414), - [anon_sym_offsetof] = ACTIONS(3414), - [anon_sym__Generic] = ACTIONS(3414), - [anon_sym_asm] = ACTIONS(3414), - [anon_sym___asm__] = ACTIONS(3414), - [sym_number_literal] = ACTIONS(3416), - [anon_sym_L_SQUOTE] = ACTIONS(3416), - [anon_sym_u_SQUOTE] = ACTIONS(3416), - [anon_sym_U_SQUOTE] = ACTIONS(3416), - [anon_sym_u8_SQUOTE] = ACTIONS(3416), - [anon_sym_SQUOTE] = ACTIONS(3416), - [anon_sym_L_DQUOTE] = ACTIONS(3416), - [anon_sym_u_DQUOTE] = ACTIONS(3416), - [anon_sym_U_DQUOTE] = ACTIONS(3416), - [anon_sym_u8_DQUOTE] = ACTIONS(3416), - [anon_sym_DQUOTE] = ACTIONS(3416), - [sym_true] = ACTIONS(3414), - [sym_false] = ACTIONS(3414), - [anon_sym_NULL] = ACTIONS(3414), - [anon_sym_nullptr] = ACTIONS(3414), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3414), - [anon_sym_decltype] = ACTIONS(3414), - [anon_sym_virtual] = ACTIONS(3414), - [anon_sym_alignas] = ACTIONS(3414), - [anon_sym_explicit] = ACTIONS(3414), - [anon_sym_typename] = ACTIONS(3414), - [anon_sym_template] = ACTIONS(3414), - [anon_sym_operator] = ACTIONS(3414), - [anon_sym_try] = ACTIONS(3414), - [anon_sym_delete] = ACTIONS(3414), - [anon_sym_throw] = ACTIONS(3414), - [anon_sym_namespace] = ACTIONS(3414), - [anon_sym_using] = ACTIONS(3414), - [anon_sym_static_assert] = ACTIONS(3414), - [anon_sym_concept] = ACTIONS(3414), - [anon_sym_co_return] = ACTIONS(3414), - [anon_sym_co_yield] = ACTIONS(3414), - [anon_sym_R_DQUOTE] = ACTIONS(3416), - [anon_sym_LR_DQUOTE] = ACTIONS(3416), - [anon_sym_uR_DQUOTE] = ACTIONS(3416), - [anon_sym_UR_DQUOTE] = ACTIONS(3416), - [anon_sym_u8R_DQUOTE] = ACTIONS(3416), - [anon_sym_co_await] = ACTIONS(3414), - [anon_sym_new] = ACTIONS(3414), - [anon_sym_requires] = ACTIONS(3414), - [sym_this] = ACTIONS(3414), - }, - [598] = { - [sym_identifier] = ACTIONS(3418), - [aux_sym_preproc_include_token1] = ACTIONS(3418), - [aux_sym_preproc_def_token1] = ACTIONS(3418), - [aux_sym_preproc_if_token1] = ACTIONS(3418), - [aux_sym_preproc_if_token2] = ACTIONS(3418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3418), - [aux_sym_preproc_else_token1] = ACTIONS(3418), - [aux_sym_preproc_elif_token1] = ACTIONS(3418), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3418), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3418), - [sym_preproc_directive] = ACTIONS(3418), - [anon_sym_LPAREN2] = ACTIONS(3420), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_TILDE] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3418), - [anon_sym_PLUS] = ACTIONS(3418), - [anon_sym_STAR] = ACTIONS(3420), - [anon_sym_AMP_AMP] = ACTIONS(3420), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_SEMI] = ACTIONS(3420), - [anon_sym___extension__] = ACTIONS(3418), - [anon_sym_typedef] = ACTIONS(3418), - [anon_sym_extern] = ACTIONS(3418), - [anon_sym___attribute__] = ACTIONS(3418), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3420), - [anon_sym___declspec] = ACTIONS(3418), - [anon_sym___based] = ACTIONS(3418), - [anon_sym___cdecl] = ACTIONS(3418), - [anon_sym___clrcall] = ACTIONS(3418), - [anon_sym___stdcall] = ACTIONS(3418), - [anon_sym___fastcall] = ACTIONS(3418), - [anon_sym___thiscall] = ACTIONS(3418), - [anon_sym___vectorcall] = ACTIONS(3418), - [anon_sym_LBRACE] = ACTIONS(3420), - [anon_sym_signed] = ACTIONS(3418), - [anon_sym_unsigned] = ACTIONS(3418), - [anon_sym_long] = ACTIONS(3418), - [anon_sym_short] = ACTIONS(3418), - [anon_sym_LBRACK] = ACTIONS(3418), - [anon_sym_static] = ACTIONS(3418), - [anon_sym_register] = ACTIONS(3418), - [anon_sym_inline] = ACTIONS(3418), - [anon_sym___inline] = ACTIONS(3418), - [anon_sym___inline__] = ACTIONS(3418), - [anon_sym___forceinline] = ACTIONS(3418), - [anon_sym_thread_local] = ACTIONS(3418), - [anon_sym___thread] = ACTIONS(3418), - [anon_sym_const] = ACTIONS(3418), - [anon_sym_constexpr] = ACTIONS(3418), - [anon_sym_volatile] = ACTIONS(3418), - [anon_sym_restrict] = ACTIONS(3418), - [anon_sym___restrict__] = ACTIONS(3418), - [anon_sym__Atomic] = ACTIONS(3418), - [anon_sym__Noreturn] = ACTIONS(3418), - [anon_sym_noreturn] = ACTIONS(3418), - [anon_sym_mutable] = ACTIONS(3418), - [anon_sym_constinit] = ACTIONS(3418), - [anon_sym_consteval] = ACTIONS(3418), - [sym_primitive_type] = ACTIONS(3418), - [anon_sym_enum] = ACTIONS(3418), - [anon_sym_class] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(3418), - [anon_sym_union] = ACTIONS(3418), - [anon_sym_if] = ACTIONS(3418), - [anon_sym_switch] = ACTIONS(3418), - [anon_sym_case] = ACTIONS(3418), - [anon_sym_default] = ACTIONS(3418), - [anon_sym_while] = ACTIONS(3418), - [anon_sym_do] = ACTIONS(3418), - [anon_sym_for] = ACTIONS(3418), - [anon_sym_return] = ACTIONS(3418), - [anon_sym_break] = ACTIONS(3418), - [anon_sym_continue] = ACTIONS(3418), - [anon_sym_goto] = ACTIONS(3418), - [anon_sym_not] = ACTIONS(3418), - [anon_sym_compl] = ACTIONS(3418), - [anon_sym_DASH_DASH] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3420), - [anon_sym_sizeof] = ACTIONS(3418), - [anon_sym___alignof__] = ACTIONS(3418), - [anon_sym___alignof] = ACTIONS(3418), - [anon_sym__alignof] = ACTIONS(3418), - [anon_sym_alignof] = ACTIONS(3418), - [anon_sym__Alignof] = ACTIONS(3418), - [anon_sym_offsetof] = ACTIONS(3418), - [anon_sym__Generic] = ACTIONS(3418), - [anon_sym_asm] = ACTIONS(3418), - [anon_sym___asm__] = ACTIONS(3418), - [sym_number_literal] = ACTIONS(3420), - [anon_sym_L_SQUOTE] = ACTIONS(3420), - [anon_sym_u_SQUOTE] = ACTIONS(3420), - [anon_sym_U_SQUOTE] = ACTIONS(3420), - [anon_sym_u8_SQUOTE] = ACTIONS(3420), - [anon_sym_SQUOTE] = ACTIONS(3420), - [anon_sym_L_DQUOTE] = ACTIONS(3420), - [anon_sym_u_DQUOTE] = ACTIONS(3420), - [anon_sym_U_DQUOTE] = ACTIONS(3420), - [anon_sym_u8_DQUOTE] = ACTIONS(3420), - [anon_sym_DQUOTE] = ACTIONS(3420), - [sym_true] = ACTIONS(3418), - [sym_false] = ACTIONS(3418), - [anon_sym_NULL] = ACTIONS(3418), - [anon_sym_nullptr] = ACTIONS(3418), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3418), - [anon_sym_decltype] = ACTIONS(3418), - [anon_sym_virtual] = ACTIONS(3418), - [anon_sym_alignas] = ACTIONS(3418), - [anon_sym_explicit] = ACTIONS(3418), - [anon_sym_typename] = ACTIONS(3418), - [anon_sym_template] = ACTIONS(3418), - [anon_sym_operator] = ACTIONS(3418), - [anon_sym_try] = ACTIONS(3418), - [anon_sym_delete] = ACTIONS(3418), - [anon_sym_throw] = ACTIONS(3418), - [anon_sym_namespace] = ACTIONS(3418), - [anon_sym_using] = ACTIONS(3418), - [anon_sym_static_assert] = ACTIONS(3418), - [anon_sym_concept] = ACTIONS(3418), - [anon_sym_co_return] = ACTIONS(3418), - [anon_sym_co_yield] = ACTIONS(3418), - [anon_sym_R_DQUOTE] = ACTIONS(3420), - [anon_sym_LR_DQUOTE] = ACTIONS(3420), - [anon_sym_uR_DQUOTE] = ACTIONS(3420), - [anon_sym_UR_DQUOTE] = ACTIONS(3420), - [anon_sym_u8R_DQUOTE] = ACTIONS(3420), - [anon_sym_co_await] = ACTIONS(3418), - [anon_sym_new] = ACTIONS(3418), - [anon_sym_requires] = ACTIONS(3418), - [sym_this] = ACTIONS(3418), - }, - [599] = { - [sym_identifier] = ACTIONS(3422), - [aux_sym_preproc_include_token1] = ACTIONS(3422), - [aux_sym_preproc_def_token1] = ACTIONS(3422), - [aux_sym_preproc_if_token1] = ACTIONS(3422), - [aux_sym_preproc_if_token2] = ACTIONS(3422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3422), - [aux_sym_preproc_else_token1] = ACTIONS(3422), - [aux_sym_preproc_elif_token1] = ACTIONS(3422), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3422), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3422), - [sym_preproc_directive] = ACTIONS(3422), - [anon_sym_LPAREN2] = ACTIONS(3424), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3424), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_STAR] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym___extension__] = ACTIONS(3422), - [anon_sym_typedef] = ACTIONS(3422), - [anon_sym_extern] = ACTIONS(3422), - [anon_sym___attribute__] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3424), - [anon_sym___declspec] = ACTIONS(3422), - [anon_sym___based] = ACTIONS(3422), - [anon_sym___cdecl] = ACTIONS(3422), - [anon_sym___clrcall] = ACTIONS(3422), - [anon_sym___stdcall] = ACTIONS(3422), - [anon_sym___fastcall] = ACTIONS(3422), - [anon_sym___thiscall] = ACTIONS(3422), - [anon_sym___vectorcall] = ACTIONS(3422), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_signed] = ACTIONS(3422), - [anon_sym_unsigned] = ACTIONS(3422), - [anon_sym_long] = ACTIONS(3422), - [anon_sym_short] = ACTIONS(3422), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_static] = ACTIONS(3422), - [anon_sym_register] = ACTIONS(3422), - [anon_sym_inline] = ACTIONS(3422), - [anon_sym___inline] = ACTIONS(3422), - [anon_sym___inline__] = ACTIONS(3422), - [anon_sym___forceinline] = ACTIONS(3422), - [anon_sym_thread_local] = ACTIONS(3422), - [anon_sym___thread] = ACTIONS(3422), - [anon_sym_const] = ACTIONS(3422), - [anon_sym_constexpr] = ACTIONS(3422), - [anon_sym_volatile] = ACTIONS(3422), - [anon_sym_restrict] = ACTIONS(3422), - [anon_sym___restrict__] = ACTIONS(3422), - [anon_sym__Atomic] = ACTIONS(3422), - [anon_sym__Noreturn] = ACTIONS(3422), - [anon_sym_noreturn] = ACTIONS(3422), - [anon_sym_mutable] = ACTIONS(3422), - [anon_sym_constinit] = ACTIONS(3422), - [anon_sym_consteval] = ACTIONS(3422), - [sym_primitive_type] = ACTIONS(3422), - [anon_sym_enum] = ACTIONS(3422), - [anon_sym_class] = ACTIONS(3422), - [anon_sym_struct] = ACTIONS(3422), - [anon_sym_union] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3422), - [anon_sym_switch] = ACTIONS(3422), - [anon_sym_case] = ACTIONS(3422), - [anon_sym_default] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_do] = ACTIONS(3422), - [anon_sym_for] = ACTIONS(3422), - [anon_sym_return] = ACTIONS(3422), - [anon_sym_break] = ACTIONS(3422), - [anon_sym_continue] = ACTIONS(3422), - [anon_sym_goto] = ACTIONS(3422), - [anon_sym_not] = ACTIONS(3422), - [anon_sym_compl] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3422), - [anon_sym___alignof__] = ACTIONS(3422), - [anon_sym___alignof] = ACTIONS(3422), - [anon_sym__alignof] = ACTIONS(3422), - [anon_sym_alignof] = ACTIONS(3422), - [anon_sym__Alignof] = ACTIONS(3422), - [anon_sym_offsetof] = ACTIONS(3422), - [anon_sym__Generic] = ACTIONS(3422), - [anon_sym_asm] = ACTIONS(3422), - [anon_sym___asm__] = ACTIONS(3422), - [sym_number_literal] = ACTIONS(3424), - [anon_sym_L_SQUOTE] = ACTIONS(3424), - [anon_sym_u_SQUOTE] = ACTIONS(3424), - [anon_sym_U_SQUOTE] = ACTIONS(3424), - [anon_sym_u8_SQUOTE] = ACTIONS(3424), - [anon_sym_SQUOTE] = ACTIONS(3424), - [anon_sym_L_DQUOTE] = ACTIONS(3424), - [anon_sym_u_DQUOTE] = ACTIONS(3424), - [anon_sym_U_DQUOTE] = ACTIONS(3424), - [anon_sym_u8_DQUOTE] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [sym_true] = ACTIONS(3422), - [sym_false] = ACTIONS(3422), - [anon_sym_NULL] = ACTIONS(3422), - [anon_sym_nullptr] = ACTIONS(3422), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3422), - [anon_sym_decltype] = ACTIONS(3422), - [anon_sym_virtual] = ACTIONS(3422), - [anon_sym_alignas] = ACTIONS(3422), - [anon_sym_explicit] = ACTIONS(3422), - [anon_sym_typename] = ACTIONS(3422), - [anon_sym_template] = ACTIONS(3422), - [anon_sym_operator] = ACTIONS(3422), - [anon_sym_try] = ACTIONS(3422), - [anon_sym_delete] = ACTIONS(3422), - [anon_sym_throw] = ACTIONS(3422), - [anon_sym_namespace] = ACTIONS(3422), - [anon_sym_using] = ACTIONS(3422), - [anon_sym_static_assert] = ACTIONS(3422), - [anon_sym_concept] = ACTIONS(3422), - [anon_sym_co_return] = ACTIONS(3422), - [anon_sym_co_yield] = ACTIONS(3422), - [anon_sym_R_DQUOTE] = ACTIONS(3424), - [anon_sym_LR_DQUOTE] = ACTIONS(3424), - [anon_sym_uR_DQUOTE] = ACTIONS(3424), - [anon_sym_UR_DQUOTE] = ACTIONS(3424), - [anon_sym_u8R_DQUOTE] = ACTIONS(3424), - [anon_sym_co_await] = ACTIONS(3422), - [anon_sym_new] = ACTIONS(3422), - [anon_sym_requires] = ACTIONS(3422), - [sym_this] = ACTIONS(3422), - }, - [600] = { - [sym_else_clause] = STATE(757), [sym_identifier] = ACTIONS(2762), [aux_sym_preproc_include_token1] = ACTIONS(2762), [aux_sym_preproc_def_token1] = ACTIONS(2762), [aux_sym_preproc_if_token1] = ACTIONS(2762), - [aux_sym_preproc_if_token2] = ACTIONS(2762), [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), - [aux_sym_preproc_else_token1] = ACTIONS(2762), - [aux_sym_preproc_elif_token1] = ACTIONS(2762), [sym_preproc_directive] = ACTIONS(2762), [anon_sym_LPAREN2] = ACTIONS(2764), [anon_sym_BANG] = ACTIONS(2764), @@ -141734,6 +136007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2762), [anon_sym___vectorcall] = ACTIONS(2762), [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), [anon_sym_signed] = ACTIONS(2762), [anon_sym_unsigned] = ACTIONS(2762), [anon_sym_long] = ACTIONS(2762), @@ -141764,7 +136038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2762), [anon_sym_union] = ACTIONS(2762), [anon_sym_if] = ACTIONS(2762), - [anon_sym_else] = ACTIONS(3426), + [anon_sym_else] = ACTIONS(2762), [anon_sym_switch] = ACTIONS(2762), [anon_sym_case] = ACTIONS(2762), [anon_sym_default] = ACTIONS(2762), @@ -141832,2368 +136106,2190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2762), [sym_this] = ACTIONS(2762), }, - [601] = { - [sym_identifier] = ACTIONS(3428), - [aux_sym_preproc_include_token1] = ACTIONS(3428), - [aux_sym_preproc_def_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3428), - [aux_sym_preproc_else_token1] = ACTIONS(3428), - [aux_sym_preproc_elif_token1] = ACTIONS(3428), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3428), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3428), - [sym_preproc_directive] = ACTIONS(3428), - [anon_sym_LPAREN2] = ACTIONS(3430), - [anon_sym_BANG] = ACTIONS(3430), - [anon_sym_TILDE] = ACTIONS(3430), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_STAR] = ACTIONS(3430), - [anon_sym_AMP_AMP] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_SEMI] = ACTIONS(3430), - [anon_sym___extension__] = ACTIONS(3428), - [anon_sym_typedef] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym___attribute__] = ACTIONS(3428), - [anon_sym_COLON_COLON] = ACTIONS(3430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3430), - [anon_sym___declspec] = ACTIONS(3428), - [anon_sym___based] = ACTIONS(3428), - [anon_sym___cdecl] = ACTIONS(3428), - [anon_sym___clrcall] = ACTIONS(3428), - [anon_sym___stdcall] = ACTIONS(3428), - [anon_sym___fastcall] = ACTIONS(3428), - [anon_sym___thiscall] = ACTIONS(3428), - [anon_sym___vectorcall] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3430), - [anon_sym_signed] = ACTIONS(3428), - [anon_sym_unsigned] = ACTIONS(3428), - [anon_sym_long] = ACTIONS(3428), - [anon_sym_short] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_register] = ACTIONS(3428), - [anon_sym_inline] = ACTIONS(3428), - [anon_sym___inline] = ACTIONS(3428), - [anon_sym___inline__] = ACTIONS(3428), - [anon_sym___forceinline] = ACTIONS(3428), - [anon_sym_thread_local] = ACTIONS(3428), - [anon_sym___thread] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_constexpr] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_restrict] = ACTIONS(3428), - [anon_sym___restrict__] = ACTIONS(3428), - [anon_sym__Atomic] = ACTIONS(3428), - [anon_sym__Noreturn] = ACTIONS(3428), - [anon_sym_noreturn] = ACTIONS(3428), - [anon_sym_mutable] = ACTIONS(3428), - [anon_sym_constinit] = ACTIONS(3428), - [anon_sym_consteval] = ACTIONS(3428), - [sym_primitive_type] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_union] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_switch] = ACTIONS(3428), - [anon_sym_case] = ACTIONS(3428), - [anon_sym_default] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_break] = ACTIONS(3428), - [anon_sym_continue] = ACTIONS(3428), - [anon_sym_goto] = ACTIONS(3428), - [anon_sym_not] = ACTIONS(3428), - [anon_sym_compl] = ACTIONS(3428), - [anon_sym_DASH_DASH] = ACTIONS(3430), - [anon_sym_PLUS_PLUS] = ACTIONS(3430), - [anon_sym_sizeof] = ACTIONS(3428), - [anon_sym___alignof__] = ACTIONS(3428), - [anon_sym___alignof] = ACTIONS(3428), - [anon_sym__alignof] = ACTIONS(3428), - [anon_sym_alignof] = ACTIONS(3428), - [anon_sym__Alignof] = ACTIONS(3428), - [anon_sym_offsetof] = ACTIONS(3428), - [anon_sym__Generic] = ACTIONS(3428), - [anon_sym_asm] = ACTIONS(3428), - [anon_sym___asm__] = ACTIONS(3428), - [sym_number_literal] = ACTIONS(3430), - [anon_sym_L_SQUOTE] = ACTIONS(3430), - [anon_sym_u_SQUOTE] = ACTIONS(3430), - [anon_sym_U_SQUOTE] = ACTIONS(3430), - [anon_sym_u8_SQUOTE] = ACTIONS(3430), - [anon_sym_SQUOTE] = ACTIONS(3430), - [anon_sym_L_DQUOTE] = ACTIONS(3430), - [anon_sym_u_DQUOTE] = ACTIONS(3430), - [anon_sym_U_DQUOTE] = ACTIONS(3430), - [anon_sym_u8_DQUOTE] = ACTIONS(3430), - [anon_sym_DQUOTE] = ACTIONS(3430), - [sym_true] = ACTIONS(3428), - [sym_false] = ACTIONS(3428), - [anon_sym_NULL] = ACTIONS(3428), - [anon_sym_nullptr] = ACTIONS(3428), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3428), - [anon_sym_decltype] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_alignas] = ACTIONS(3428), - [anon_sym_explicit] = ACTIONS(3428), - [anon_sym_typename] = ACTIONS(3428), - [anon_sym_template] = ACTIONS(3428), - [anon_sym_operator] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_delete] = ACTIONS(3428), - [anon_sym_throw] = ACTIONS(3428), - [anon_sym_namespace] = ACTIONS(3428), - [anon_sym_using] = ACTIONS(3428), - [anon_sym_static_assert] = ACTIONS(3428), - [anon_sym_concept] = ACTIONS(3428), - [anon_sym_co_return] = ACTIONS(3428), - [anon_sym_co_yield] = ACTIONS(3428), - [anon_sym_R_DQUOTE] = ACTIONS(3430), - [anon_sym_LR_DQUOTE] = ACTIONS(3430), - [anon_sym_uR_DQUOTE] = ACTIONS(3430), - [anon_sym_UR_DQUOTE] = ACTIONS(3430), - [anon_sym_u8R_DQUOTE] = ACTIONS(3430), - [anon_sym_co_await] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_requires] = ACTIONS(3428), - [sym_this] = ACTIONS(3428), + [588] = { + [sym_identifier] = ACTIONS(2844), + [aux_sym_preproc_include_token1] = ACTIONS(2844), + [aux_sym_preproc_def_token1] = ACTIONS(2844), + [aux_sym_preproc_if_token1] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2844), + [sym_preproc_directive] = ACTIONS(2844), + [anon_sym_LPAREN2] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_PLUS] = ACTIONS(2844), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_AMP_AMP] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym___extension__] = ACTIONS(2844), + [anon_sym_typedef] = ACTIONS(2844), + [anon_sym_extern] = ACTIONS(2844), + [anon_sym___attribute__] = ACTIONS(2844), + [anon_sym_COLON_COLON] = ACTIONS(2846), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2846), + [anon_sym___declspec] = ACTIONS(2844), + [anon_sym___based] = ACTIONS(2844), + [anon_sym___cdecl] = ACTIONS(2844), + [anon_sym___clrcall] = ACTIONS(2844), + [anon_sym___stdcall] = ACTIONS(2844), + [anon_sym___fastcall] = ACTIONS(2844), + [anon_sym___thiscall] = ACTIONS(2844), + [anon_sym___vectorcall] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_RBRACE] = ACTIONS(2846), + [anon_sym_signed] = ACTIONS(2844), + [anon_sym_unsigned] = ACTIONS(2844), + [anon_sym_long] = ACTIONS(2844), + [anon_sym_short] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_register] = ACTIONS(2844), + [anon_sym_inline] = ACTIONS(2844), + [anon_sym___inline] = ACTIONS(2844), + [anon_sym___inline__] = ACTIONS(2844), + [anon_sym___forceinline] = ACTIONS(2844), + [anon_sym_thread_local] = ACTIONS(2844), + [anon_sym___thread] = ACTIONS(2844), + [anon_sym_const] = ACTIONS(2844), + [anon_sym_constexpr] = ACTIONS(2844), + [anon_sym_volatile] = ACTIONS(2844), + [anon_sym_restrict] = ACTIONS(2844), + [anon_sym___restrict__] = ACTIONS(2844), + [anon_sym__Atomic] = ACTIONS(2844), + [anon_sym__Noreturn] = ACTIONS(2844), + [anon_sym_noreturn] = ACTIONS(2844), + [anon_sym_mutable] = ACTIONS(2844), + [anon_sym_constinit] = ACTIONS(2844), + [anon_sym_consteval] = ACTIONS(2844), + [sym_primitive_type] = ACTIONS(2844), + [anon_sym_enum] = ACTIONS(2844), + [anon_sym_class] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2844), + [anon_sym_union] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_else] = ACTIONS(2844), + [anon_sym_switch] = ACTIONS(2844), + [anon_sym_case] = ACTIONS(2844), + [anon_sym_default] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_break] = ACTIONS(2844), + [anon_sym_continue] = ACTIONS(2844), + [anon_sym_goto] = ACTIONS(2844), + [anon_sym_not] = ACTIONS(2844), + [anon_sym_compl] = ACTIONS(2844), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_sizeof] = ACTIONS(2844), + [anon_sym___alignof__] = ACTIONS(2844), + [anon_sym___alignof] = ACTIONS(2844), + [anon_sym__alignof] = ACTIONS(2844), + [anon_sym_alignof] = ACTIONS(2844), + [anon_sym__Alignof] = ACTIONS(2844), + [anon_sym_offsetof] = ACTIONS(2844), + [anon_sym__Generic] = ACTIONS(2844), + [anon_sym_asm] = ACTIONS(2844), + [anon_sym___asm__] = ACTIONS(2844), + [sym_number_literal] = ACTIONS(2846), + [anon_sym_L_SQUOTE] = ACTIONS(2846), + [anon_sym_u_SQUOTE] = ACTIONS(2846), + [anon_sym_U_SQUOTE] = ACTIONS(2846), + [anon_sym_u8_SQUOTE] = ACTIONS(2846), + [anon_sym_SQUOTE] = ACTIONS(2846), + [anon_sym_L_DQUOTE] = ACTIONS(2846), + [anon_sym_u_DQUOTE] = ACTIONS(2846), + [anon_sym_U_DQUOTE] = ACTIONS(2846), + [anon_sym_u8_DQUOTE] = ACTIONS(2846), + [anon_sym_DQUOTE] = ACTIONS(2846), + [sym_true] = ACTIONS(2844), + [sym_false] = ACTIONS(2844), + [anon_sym_NULL] = ACTIONS(2844), + [anon_sym_nullptr] = ACTIONS(2844), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2844), + [anon_sym_decltype] = ACTIONS(2844), + [anon_sym_virtual] = ACTIONS(2844), + [anon_sym_alignas] = ACTIONS(2844), + [anon_sym_explicit] = ACTIONS(2844), + [anon_sym_typename] = ACTIONS(2844), + [anon_sym_template] = ACTIONS(2844), + [anon_sym_operator] = ACTIONS(2844), + [anon_sym_try] = ACTIONS(2844), + [anon_sym_delete] = ACTIONS(2844), + [anon_sym_throw] = ACTIONS(2844), + [anon_sym_namespace] = ACTIONS(2844), + [anon_sym_using] = ACTIONS(2844), + [anon_sym_static_assert] = ACTIONS(2844), + [anon_sym_concept] = ACTIONS(2844), + [anon_sym_co_return] = ACTIONS(2844), + [anon_sym_co_yield] = ACTIONS(2844), + [anon_sym_R_DQUOTE] = ACTIONS(2846), + [anon_sym_LR_DQUOTE] = ACTIONS(2846), + [anon_sym_uR_DQUOTE] = ACTIONS(2846), + [anon_sym_UR_DQUOTE] = ACTIONS(2846), + [anon_sym_u8R_DQUOTE] = ACTIONS(2846), + [anon_sym_co_await] = ACTIONS(2844), + [anon_sym_new] = ACTIONS(2844), + [anon_sym_requires] = ACTIONS(2844), + [sym_this] = ACTIONS(2844), }, - [602] = { - [sym_identifier] = ACTIONS(3432), - [aux_sym_preproc_include_token1] = ACTIONS(3432), - [aux_sym_preproc_def_token1] = ACTIONS(3432), - [aux_sym_preproc_if_token1] = ACTIONS(3432), - [aux_sym_preproc_if_token2] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [aux_sym_preproc_else_token1] = ACTIONS(3432), - [aux_sym_preproc_elif_token1] = ACTIONS(3432), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3432), - [sym_preproc_directive] = ACTIONS(3432), - [anon_sym_LPAREN2] = ACTIONS(3434), - [anon_sym_BANG] = ACTIONS(3434), - [anon_sym_TILDE] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(3434), - [anon_sym_AMP_AMP] = ACTIONS(3434), - [anon_sym_AMP] = ACTIONS(3432), - [anon_sym_SEMI] = ACTIONS(3434), - [anon_sym___extension__] = ACTIONS(3432), - [anon_sym_typedef] = ACTIONS(3432), - [anon_sym_extern] = ACTIONS(3432), - [anon_sym___attribute__] = ACTIONS(3432), - [anon_sym_COLON_COLON] = ACTIONS(3434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3434), - [anon_sym___declspec] = ACTIONS(3432), - [anon_sym___based] = ACTIONS(3432), - [anon_sym___cdecl] = ACTIONS(3432), - [anon_sym___clrcall] = ACTIONS(3432), - [anon_sym___stdcall] = ACTIONS(3432), - [anon_sym___fastcall] = ACTIONS(3432), - [anon_sym___thiscall] = ACTIONS(3432), - [anon_sym___vectorcall] = ACTIONS(3432), - [anon_sym_LBRACE] = ACTIONS(3434), - [anon_sym_signed] = ACTIONS(3432), - [anon_sym_unsigned] = ACTIONS(3432), - [anon_sym_long] = ACTIONS(3432), - [anon_sym_short] = ACTIONS(3432), - [anon_sym_LBRACK] = ACTIONS(3432), - [anon_sym_static] = ACTIONS(3432), - [anon_sym_register] = ACTIONS(3432), - [anon_sym_inline] = ACTIONS(3432), - [anon_sym___inline] = ACTIONS(3432), - [anon_sym___inline__] = ACTIONS(3432), - [anon_sym___forceinline] = ACTIONS(3432), - [anon_sym_thread_local] = ACTIONS(3432), - [anon_sym___thread] = ACTIONS(3432), - [anon_sym_const] = ACTIONS(3432), - [anon_sym_constexpr] = ACTIONS(3432), - [anon_sym_volatile] = ACTIONS(3432), - [anon_sym_restrict] = ACTIONS(3432), - [anon_sym___restrict__] = ACTIONS(3432), - [anon_sym__Atomic] = ACTIONS(3432), - [anon_sym__Noreturn] = ACTIONS(3432), - [anon_sym_noreturn] = ACTIONS(3432), - [anon_sym_mutable] = ACTIONS(3432), - [anon_sym_constinit] = ACTIONS(3432), - [anon_sym_consteval] = ACTIONS(3432), - [sym_primitive_type] = ACTIONS(3432), - [anon_sym_enum] = ACTIONS(3432), - [anon_sym_class] = ACTIONS(3432), - [anon_sym_struct] = ACTIONS(3432), - [anon_sym_union] = ACTIONS(3432), - [anon_sym_if] = ACTIONS(3432), - [anon_sym_switch] = ACTIONS(3432), - [anon_sym_case] = ACTIONS(3432), - [anon_sym_default] = ACTIONS(3432), - [anon_sym_while] = ACTIONS(3432), - [anon_sym_do] = ACTIONS(3432), - [anon_sym_for] = ACTIONS(3432), - [anon_sym_return] = ACTIONS(3432), - [anon_sym_break] = ACTIONS(3432), - [anon_sym_continue] = ACTIONS(3432), - [anon_sym_goto] = ACTIONS(3432), - [anon_sym_not] = ACTIONS(3432), - [anon_sym_compl] = ACTIONS(3432), - [anon_sym_DASH_DASH] = ACTIONS(3434), - [anon_sym_PLUS_PLUS] = ACTIONS(3434), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym___alignof__] = ACTIONS(3432), - [anon_sym___alignof] = ACTIONS(3432), - [anon_sym__alignof] = ACTIONS(3432), - [anon_sym_alignof] = ACTIONS(3432), - [anon_sym__Alignof] = ACTIONS(3432), - [anon_sym_offsetof] = ACTIONS(3432), - [anon_sym__Generic] = ACTIONS(3432), - [anon_sym_asm] = ACTIONS(3432), - [anon_sym___asm__] = ACTIONS(3432), - [sym_number_literal] = ACTIONS(3434), - [anon_sym_L_SQUOTE] = ACTIONS(3434), - [anon_sym_u_SQUOTE] = ACTIONS(3434), - [anon_sym_U_SQUOTE] = ACTIONS(3434), - [anon_sym_u8_SQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3434), - [anon_sym_L_DQUOTE] = ACTIONS(3434), - [anon_sym_u_DQUOTE] = ACTIONS(3434), - [anon_sym_U_DQUOTE] = ACTIONS(3434), - [anon_sym_u8_DQUOTE] = ACTIONS(3434), - [anon_sym_DQUOTE] = ACTIONS(3434), - [sym_true] = ACTIONS(3432), - [sym_false] = ACTIONS(3432), - [anon_sym_NULL] = ACTIONS(3432), - [anon_sym_nullptr] = ACTIONS(3432), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3432), - [anon_sym_decltype] = ACTIONS(3432), - [anon_sym_virtual] = ACTIONS(3432), - [anon_sym_alignas] = ACTIONS(3432), - [anon_sym_explicit] = ACTIONS(3432), - [anon_sym_typename] = ACTIONS(3432), - [anon_sym_template] = ACTIONS(3432), - [anon_sym_operator] = ACTIONS(3432), - [anon_sym_try] = ACTIONS(3432), - [anon_sym_delete] = ACTIONS(3432), - [anon_sym_throw] = ACTIONS(3432), - [anon_sym_namespace] = ACTIONS(3432), - [anon_sym_using] = ACTIONS(3432), - [anon_sym_static_assert] = ACTIONS(3432), - [anon_sym_concept] = ACTIONS(3432), - [anon_sym_co_return] = ACTIONS(3432), - [anon_sym_co_yield] = ACTIONS(3432), - [anon_sym_R_DQUOTE] = ACTIONS(3434), - [anon_sym_LR_DQUOTE] = ACTIONS(3434), - [anon_sym_uR_DQUOTE] = ACTIONS(3434), - [anon_sym_UR_DQUOTE] = ACTIONS(3434), - [anon_sym_u8R_DQUOTE] = ACTIONS(3434), - [anon_sym_co_await] = ACTIONS(3432), - [anon_sym_new] = ACTIONS(3432), - [anon_sym_requires] = ACTIONS(3432), - [sym_this] = ACTIONS(3432), - }, - [603] = { - [sym_identifier] = ACTIONS(3436), - [aux_sym_preproc_include_token1] = ACTIONS(3436), - [aux_sym_preproc_def_token1] = ACTIONS(3436), - [aux_sym_preproc_if_token1] = ACTIONS(3436), - [aux_sym_preproc_if_token2] = ACTIONS(3436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3436), - [aux_sym_preproc_else_token1] = ACTIONS(3436), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3436), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3436), - [sym_preproc_directive] = ACTIONS(3436), - [anon_sym_LPAREN2] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3438), - [anon_sym_TILDE] = ACTIONS(3438), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_AMP] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym___extension__] = ACTIONS(3436), - [anon_sym_typedef] = ACTIONS(3436), - [anon_sym_extern] = ACTIONS(3436), - [anon_sym___attribute__] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3438), - [anon_sym___declspec] = ACTIONS(3436), - [anon_sym___based] = ACTIONS(3436), - [anon_sym___cdecl] = ACTIONS(3436), - [anon_sym___clrcall] = ACTIONS(3436), - [anon_sym___stdcall] = ACTIONS(3436), - [anon_sym___fastcall] = ACTIONS(3436), - [anon_sym___thiscall] = ACTIONS(3436), - [anon_sym___vectorcall] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_signed] = ACTIONS(3436), - [anon_sym_unsigned] = ACTIONS(3436), - [anon_sym_long] = ACTIONS(3436), - [anon_sym_short] = ACTIONS(3436), - [anon_sym_LBRACK] = ACTIONS(3436), - [anon_sym_static] = ACTIONS(3436), - [anon_sym_register] = ACTIONS(3436), - [anon_sym_inline] = ACTIONS(3436), - [anon_sym___inline] = ACTIONS(3436), - [anon_sym___inline__] = ACTIONS(3436), - [anon_sym___forceinline] = ACTIONS(3436), - [anon_sym_thread_local] = ACTIONS(3436), - [anon_sym___thread] = ACTIONS(3436), - [anon_sym_const] = ACTIONS(3436), - [anon_sym_constexpr] = ACTIONS(3436), - [anon_sym_volatile] = ACTIONS(3436), - [anon_sym_restrict] = ACTIONS(3436), - [anon_sym___restrict__] = ACTIONS(3436), - [anon_sym__Atomic] = ACTIONS(3436), - [anon_sym__Noreturn] = ACTIONS(3436), - [anon_sym_noreturn] = ACTIONS(3436), - [anon_sym_mutable] = ACTIONS(3436), - [anon_sym_constinit] = ACTIONS(3436), - [anon_sym_consteval] = ACTIONS(3436), - [sym_primitive_type] = ACTIONS(3436), - [anon_sym_enum] = ACTIONS(3436), - [anon_sym_class] = ACTIONS(3436), - [anon_sym_struct] = ACTIONS(3436), - [anon_sym_union] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_switch] = ACTIONS(3436), - [anon_sym_case] = ACTIONS(3436), - [anon_sym_default] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_do] = ACTIONS(3436), - [anon_sym_for] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_goto] = ACTIONS(3436), - [anon_sym_not] = ACTIONS(3436), - [anon_sym_compl] = ACTIONS(3436), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_sizeof] = ACTIONS(3436), - [anon_sym___alignof__] = ACTIONS(3436), - [anon_sym___alignof] = ACTIONS(3436), - [anon_sym__alignof] = ACTIONS(3436), - [anon_sym_alignof] = ACTIONS(3436), - [anon_sym__Alignof] = ACTIONS(3436), - [anon_sym_offsetof] = ACTIONS(3436), - [anon_sym__Generic] = ACTIONS(3436), - [anon_sym_asm] = ACTIONS(3436), - [anon_sym___asm__] = ACTIONS(3436), - [sym_number_literal] = ACTIONS(3438), - [anon_sym_L_SQUOTE] = ACTIONS(3438), - [anon_sym_u_SQUOTE] = ACTIONS(3438), - [anon_sym_U_SQUOTE] = ACTIONS(3438), - [anon_sym_u8_SQUOTE] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(3438), - [anon_sym_L_DQUOTE] = ACTIONS(3438), - [anon_sym_u_DQUOTE] = ACTIONS(3438), - [anon_sym_U_DQUOTE] = ACTIONS(3438), - [anon_sym_u8_DQUOTE] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(3438), - [sym_true] = ACTIONS(3436), - [sym_false] = ACTIONS(3436), - [anon_sym_NULL] = ACTIONS(3436), - [anon_sym_nullptr] = ACTIONS(3436), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3436), - [anon_sym_decltype] = ACTIONS(3436), - [anon_sym_virtual] = ACTIONS(3436), - [anon_sym_alignas] = ACTIONS(3436), - [anon_sym_explicit] = ACTIONS(3436), - [anon_sym_typename] = ACTIONS(3436), - [anon_sym_template] = ACTIONS(3436), - [anon_sym_operator] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_delete] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_namespace] = ACTIONS(3436), - [anon_sym_using] = ACTIONS(3436), - [anon_sym_static_assert] = ACTIONS(3436), - [anon_sym_concept] = ACTIONS(3436), - [anon_sym_co_return] = ACTIONS(3436), - [anon_sym_co_yield] = ACTIONS(3436), - [anon_sym_R_DQUOTE] = ACTIONS(3438), - [anon_sym_LR_DQUOTE] = ACTIONS(3438), - [anon_sym_uR_DQUOTE] = ACTIONS(3438), - [anon_sym_UR_DQUOTE] = ACTIONS(3438), - [anon_sym_u8R_DQUOTE] = ACTIONS(3438), - [anon_sym_co_await] = ACTIONS(3436), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_requires] = ACTIONS(3436), - [sym_this] = ACTIONS(3436), - }, - [604] = { - [sym_type_qualifier] = STATE(4728), - [sym__type_specifier] = STATE(5568), - [sym_sized_type_specifier] = STATE(3614), - [sym_enum_specifier] = STATE(3614), - [sym_struct_specifier] = STATE(3614), - [sym_union_specifier] = STATE(3614), - [sym__expression] = STATE(4981), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_type_descriptor] = STATE(7618), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_placeholder_type_specifier] = STATE(3614), - [sym_decltype_auto] = STATE(3612), - [sym_decltype] = STATE(3593), - [sym_class_specifier] = STATE(3614), - [sym__class_name] = STATE(8694), - [sym_dependent_type] = STATE(3614), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_type_parameter_pack_expansion] = STATE(8226), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6421), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4285), - [aux_sym_type_definition_repeat1] = STATE(4728), - [aux_sym_sized_type_specifier_repeat1] = STATE(3032), - [sym_identifier] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3173), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_GT2] = ACTIONS(3440), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), - }, - [605] = { - [sym_catch_clause] = STATE(549), - [aux_sym_constructor_try_statement_repeat1] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(2226), - [sym_identifier] = ACTIONS(2224), - [aux_sym_preproc_include_token1] = ACTIONS(2224), - [aux_sym_preproc_def_token1] = ACTIONS(2224), - [aux_sym_preproc_if_token1] = ACTIONS(2224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2224), - [sym_preproc_directive] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_AMP_AMP] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym___extension__] = ACTIONS(2224), - [anon_sym_typedef] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym___attribute__] = ACTIONS(2224), - [anon_sym_COLON_COLON] = ACTIONS(2226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2226), - [anon_sym___declspec] = ACTIONS(2224), - [anon_sym___based] = ACTIONS(2224), - [anon_sym___cdecl] = ACTIONS(2224), - [anon_sym___clrcall] = ACTIONS(2224), - [anon_sym___stdcall] = ACTIONS(2224), - [anon_sym___fastcall] = ACTIONS(2224), - [anon_sym___thiscall] = ACTIONS(2224), - [anon_sym___vectorcall] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_signed] = ACTIONS(2224), - [anon_sym_unsigned] = ACTIONS(2224), - [anon_sym_long] = ACTIONS(2224), - [anon_sym_short] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2224), - [anon_sym_register] = ACTIONS(2224), - [anon_sym_inline] = ACTIONS(2224), - [anon_sym___inline] = ACTIONS(2224), - [anon_sym___inline__] = ACTIONS(2224), - [anon_sym___forceinline] = ACTIONS(2224), - [anon_sym_thread_local] = ACTIONS(2224), - [anon_sym___thread] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [anon_sym_constexpr] = ACTIONS(2224), - [anon_sym_volatile] = ACTIONS(2224), - [anon_sym_restrict] = ACTIONS(2224), - [anon_sym___restrict__] = ACTIONS(2224), - [anon_sym__Atomic] = ACTIONS(2224), - [anon_sym__Noreturn] = ACTIONS(2224), - [anon_sym_noreturn] = ACTIONS(2224), - [anon_sym_mutable] = ACTIONS(2224), - [anon_sym_constinit] = ACTIONS(2224), - [anon_sym_consteval] = ACTIONS(2224), - [sym_primitive_type] = ACTIONS(2224), - [anon_sym_enum] = ACTIONS(2224), - [anon_sym_class] = ACTIONS(2224), - [anon_sym_struct] = ACTIONS(2224), - [anon_sym_union] = ACTIONS(2224), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_else] = ACTIONS(2224), - [anon_sym_switch] = ACTIONS(2224), - [anon_sym_case] = ACTIONS(2224), - [anon_sym_default] = ACTIONS(2224), - [anon_sym_while] = ACTIONS(2224), - [anon_sym_do] = ACTIONS(2224), - [anon_sym_for] = ACTIONS(2224), - [anon_sym_return] = ACTIONS(2224), - [anon_sym_break] = ACTIONS(2224), - [anon_sym_continue] = ACTIONS(2224), - [anon_sym_goto] = ACTIONS(2224), - [anon_sym_not] = ACTIONS(2224), - [anon_sym_compl] = ACTIONS(2224), - [anon_sym_DASH_DASH] = ACTIONS(2226), - [anon_sym_PLUS_PLUS] = ACTIONS(2226), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym___alignof__] = ACTIONS(2224), - [anon_sym___alignof] = ACTIONS(2224), - [anon_sym__alignof] = ACTIONS(2224), - [anon_sym_alignof] = ACTIONS(2224), - [anon_sym__Alignof] = ACTIONS(2224), - [anon_sym_offsetof] = ACTIONS(2224), - [anon_sym__Generic] = ACTIONS(2224), - [anon_sym_asm] = ACTIONS(2224), - [anon_sym___asm__] = ACTIONS(2224), - [sym_number_literal] = ACTIONS(2226), - [anon_sym_L_SQUOTE] = ACTIONS(2226), - [anon_sym_u_SQUOTE] = ACTIONS(2226), - [anon_sym_U_SQUOTE] = ACTIONS(2226), - [anon_sym_u8_SQUOTE] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2226), - [anon_sym_L_DQUOTE] = ACTIONS(2226), - [anon_sym_u_DQUOTE] = ACTIONS(2226), - [anon_sym_U_DQUOTE] = ACTIONS(2226), - [anon_sym_u8_DQUOTE] = ACTIONS(2226), - [anon_sym_DQUOTE] = ACTIONS(2226), - [sym_true] = ACTIONS(2224), - [sym_false] = ACTIONS(2224), - [anon_sym_NULL] = ACTIONS(2224), - [anon_sym_nullptr] = ACTIONS(2224), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2224), - [anon_sym_decltype] = ACTIONS(2224), - [anon_sym_virtual] = ACTIONS(2224), - [anon_sym_alignas] = ACTIONS(2224), - [anon_sym_explicit] = ACTIONS(2224), - [anon_sym_typename] = ACTIONS(2224), - [anon_sym_template] = ACTIONS(2224), - [anon_sym_operator] = ACTIONS(2224), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_delete] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2224), - [anon_sym_namespace] = ACTIONS(2224), - [anon_sym_using] = ACTIONS(2224), - [anon_sym_static_assert] = ACTIONS(2224), - [anon_sym_concept] = ACTIONS(2224), - [anon_sym_co_return] = ACTIONS(2224), - [anon_sym_co_yield] = ACTIONS(2224), - [anon_sym_catch] = ACTIONS(3442), - [anon_sym_R_DQUOTE] = ACTIONS(2226), - [anon_sym_LR_DQUOTE] = ACTIONS(2226), - [anon_sym_uR_DQUOTE] = ACTIONS(2226), - [anon_sym_UR_DQUOTE] = ACTIONS(2226), - [anon_sym_u8R_DQUOTE] = ACTIONS(2226), - [anon_sym_co_await] = ACTIONS(2224), - [anon_sym_new] = ACTIONS(2224), - [anon_sym_requires] = ACTIONS(2224), - [sym_this] = ACTIONS(2224), + [589] = { + [ts_builtin_sym_end] = ACTIONS(2818), + [sym_identifier] = ACTIONS(2816), + [aux_sym_preproc_include_token1] = ACTIONS(2816), + [aux_sym_preproc_def_token1] = ACTIONS(2816), + [aux_sym_preproc_if_token1] = ACTIONS(2816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2816), + [sym_preproc_directive] = ACTIONS(2816), + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2816), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym___extension__] = ACTIONS(2816), + [anon_sym_typedef] = ACTIONS(2816), + [anon_sym_extern] = ACTIONS(2816), + [anon_sym___attribute__] = ACTIONS(2816), + [anon_sym_COLON_COLON] = ACTIONS(2818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2818), + [anon_sym___declspec] = ACTIONS(2816), + [anon_sym___based] = ACTIONS(2816), + [anon_sym___cdecl] = ACTIONS(2816), + [anon_sym___clrcall] = ACTIONS(2816), + [anon_sym___stdcall] = ACTIONS(2816), + [anon_sym___fastcall] = ACTIONS(2816), + [anon_sym___thiscall] = ACTIONS(2816), + [anon_sym___vectorcall] = ACTIONS(2816), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_signed] = ACTIONS(2816), + [anon_sym_unsigned] = ACTIONS(2816), + [anon_sym_long] = ACTIONS(2816), + [anon_sym_short] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_register] = ACTIONS(2816), + [anon_sym_inline] = ACTIONS(2816), + [anon_sym___inline] = ACTIONS(2816), + [anon_sym___inline__] = ACTIONS(2816), + [anon_sym___forceinline] = ACTIONS(2816), + [anon_sym_thread_local] = ACTIONS(2816), + [anon_sym___thread] = ACTIONS(2816), + [anon_sym_const] = ACTIONS(2816), + [anon_sym_constexpr] = ACTIONS(2816), + [anon_sym_volatile] = ACTIONS(2816), + [anon_sym_restrict] = ACTIONS(2816), + [anon_sym___restrict__] = ACTIONS(2816), + [anon_sym__Atomic] = ACTIONS(2816), + [anon_sym__Noreturn] = ACTIONS(2816), + [anon_sym_noreturn] = ACTIONS(2816), + [anon_sym_mutable] = ACTIONS(2816), + [anon_sym_constinit] = ACTIONS(2816), + [anon_sym_consteval] = ACTIONS(2816), + [sym_primitive_type] = ACTIONS(2816), + [anon_sym_enum] = ACTIONS(2816), + [anon_sym_class] = ACTIONS(2816), + [anon_sym_struct] = ACTIONS(2816), + [anon_sym_union] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_else] = ACTIONS(2816), + [anon_sym_switch] = ACTIONS(2816), + [anon_sym_case] = ACTIONS(2816), + [anon_sym_default] = ACTIONS(2816), + [anon_sym_while] = ACTIONS(2816), + [anon_sym_do] = ACTIONS(2816), + [anon_sym_for] = ACTIONS(2816), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_break] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_goto] = ACTIONS(2816), + [anon_sym_not] = ACTIONS(2816), + [anon_sym_compl] = ACTIONS(2816), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_sizeof] = ACTIONS(2816), + [anon_sym___alignof__] = ACTIONS(2816), + [anon_sym___alignof] = ACTIONS(2816), + [anon_sym__alignof] = ACTIONS(2816), + [anon_sym_alignof] = ACTIONS(2816), + [anon_sym__Alignof] = ACTIONS(2816), + [anon_sym_offsetof] = ACTIONS(2816), + [anon_sym__Generic] = ACTIONS(2816), + [anon_sym_asm] = ACTIONS(2816), + [anon_sym___asm__] = ACTIONS(2816), + [sym_number_literal] = ACTIONS(2818), + [anon_sym_L_SQUOTE] = ACTIONS(2818), + [anon_sym_u_SQUOTE] = ACTIONS(2818), + [anon_sym_U_SQUOTE] = ACTIONS(2818), + [anon_sym_u8_SQUOTE] = ACTIONS(2818), + [anon_sym_SQUOTE] = ACTIONS(2818), + [anon_sym_L_DQUOTE] = ACTIONS(2818), + [anon_sym_u_DQUOTE] = ACTIONS(2818), + [anon_sym_U_DQUOTE] = ACTIONS(2818), + [anon_sym_u8_DQUOTE] = ACTIONS(2818), + [anon_sym_DQUOTE] = ACTIONS(2818), + [sym_true] = ACTIONS(2816), + [sym_false] = ACTIONS(2816), + [anon_sym_NULL] = ACTIONS(2816), + [anon_sym_nullptr] = ACTIONS(2816), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2816), + [anon_sym_decltype] = ACTIONS(2816), + [anon_sym_virtual] = ACTIONS(2816), + [anon_sym_alignas] = ACTIONS(2816), + [anon_sym_explicit] = ACTIONS(2816), + [anon_sym_typename] = ACTIONS(2816), + [anon_sym_template] = ACTIONS(2816), + [anon_sym_operator] = ACTIONS(2816), + [anon_sym_try] = ACTIONS(2816), + [anon_sym_delete] = ACTIONS(2816), + [anon_sym_throw] = ACTIONS(2816), + [anon_sym_namespace] = ACTIONS(2816), + [anon_sym_using] = ACTIONS(2816), + [anon_sym_static_assert] = ACTIONS(2816), + [anon_sym_concept] = ACTIONS(2816), + [anon_sym_co_return] = ACTIONS(2816), + [anon_sym_co_yield] = ACTIONS(2816), + [anon_sym_R_DQUOTE] = ACTIONS(2818), + [anon_sym_LR_DQUOTE] = ACTIONS(2818), + [anon_sym_uR_DQUOTE] = ACTIONS(2818), + [anon_sym_UR_DQUOTE] = ACTIONS(2818), + [anon_sym_u8R_DQUOTE] = ACTIONS(2818), + [anon_sym_co_await] = ACTIONS(2816), + [anon_sym_new] = ACTIONS(2816), + [anon_sym_requires] = ACTIONS(2816), + [sym_this] = ACTIONS(2816), }, - [606] = { - [sym_else_clause] = STATE(696), - [sym_identifier] = ACTIONS(2754), - [aux_sym_preproc_include_token1] = ACTIONS(2754), - [aux_sym_preproc_def_token1] = ACTIONS(2754), - [aux_sym_preproc_if_token1] = ACTIONS(2754), - [aux_sym_preproc_if_token2] = ACTIONS(2754), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2754), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2754), - [aux_sym_preproc_else_token1] = ACTIONS(2754), - [aux_sym_preproc_elif_token1] = ACTIONS(2754), - [sym_preproc_directive] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_TILDE] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym___extension__] = ACTIONS(2754), - [anon_sym_typedef] = ACTIONS(2754), - [anon_sym_extern] = ACTIONS(2754), - [anon_sym___attribute__] = ACTIONS(2754), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2756), - [anon_sym___declspec] = ACTIONS(2754), - [anon_sym___based] = ACTIONS(2754), - [anon_sym___cdecl] = ACTIONS(2754), - [anon_sym___clrcall] = ACTIONS(2754), - [anon_sym___stdcall] = ACTIONS(2754), - [anon_sym___fastcall] = ACTIONS(2754), - [anon_sym___thiscall] = ACTIONS(2754), - [anon_sym___vectorcall] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_signed] = ACTIONS(2754), - [anon_sym_unsigned] = ACTIONS(2754), - [anon_sym_long] = ACTIONS(2754), - [anon_sym_short] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_static] = ACTIONS(2754), - [anon_sym_register] = ACTIONS(2754), - [anon_sym_inline] = ACTIONS(2754), - [anon_sym___inline] = ACTIONS(2754), - [anon_sym___inline__] = ACTIONS(2754), - [anon_sym___forceinline] = ACTIONS(2754), - [anon_sym_thread_local] = ACTIONS(2754), - [anon_sym___thread] = ACTIONS(2754), - [anon_sym_const] = ACTIONS(2754), - [anon_sym_constexpr] = ACTIONS(2754), - [anon_sym_volatile] = ACTIONS(2754), - [anon_sym_restrict] = ACTIONS(2754), - [anon_sym___restrict__] = ACTIONS(2754), - [anon_sym__Atomic] = ACTIONS(2754), - [anon_sym__Noreturn] = ACTIONS(2754), - [anon_sym_noreturn] = ACTIONS(2754), - [anon_sym_mutable] = ACTIONS(2754), - [anon_sym_constinit] = ACTIONS(2754), - [anon_sym_consteval] = ACTIONS(2754), - [sym_primitive_type] = ACTIONS(2754), - [anon_sym_enum] = ACTIONS(2754), - [anon_sym_class] = ACTIONS(2754), - [anon_sym_struct] = ACTIONS(2754), - [anon_sym_union] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_else] = ACTIONS(3426), - [anon_sym_switch] = ACTIONS(2754), - [anon_sym_case] = ACTIONS(2754), - [anon_sym_default] = ACTIONS(2754), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_break] = ACTIONS(2754), - [anon_sym_continue] = ACTIONS(2754), - [anon_sym_goto] = ACTIONS(2754), - [anon_sym_not] = ACTIONS(2754), - [anon_sym_compl] = ACTIONS(2754), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_sizeof] = ACTIONS(2754), - [anon_sym___alignof__] = ACTIONS(2754), - [anon_sym___alignof] = ACTIONS(2754), - [anon_sym__alignof] = ACTIONS(2754), - [anon_sym_alignof] = ACTIONS(2754), - [anon_sym__Alignof] = ACTIONS(2754), - [anon_sym_offsetof] = ACTIONS(2754), - [anon_sym__Generic] = ACTIONS(2754), - [anon_sym_asm] = ACTIONS(2754), - [anon_sym___asm__] = ACTIONS(2754), - [sym_number_literal] = ACTIONS(2756), - [anon_sym_L_SQUOTE] = ACTIONS(2756), - [anon_sym_u_SQUOTE] = ACTIONS(2756), - [anon_sym_U_SQUOTE] = ACTIONS(2756), - [anon_sym_u8_SQUOTE] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_L_DQUOTE] = ACTIONS(2756), - [anon_sym_u_DQUOTE] = ACTIONS(2756), - [anon_sym_U_DQUOTE] = ACTIONS(2756), - [anon_sym_u8_DQUOTE] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [sym_true] = ACTIONS(2754), - [sym_false] = ACTIONS(2754), - [anon_sym_NULL] = ACTIONS(2754), - [anon_sym_nullptr] = ACTIONS(2754), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2754), - [anon_sym_decltype] = ACTIONS(2754), - [anon_sym_virtual] = ACTIONS(2754), - [anon_sym_alignas] = ACTIONS(2754), - [anon_sym_explicit] = ACTIONS(2754), - [anon_sym_typename] = ACTIONS(2754), - [anon_sym_template] = ACTIONS(2754), - [anon_sym_operator] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_delete] = ACTIONS(2754), - [anon_sym_throw] = ACTIONS(2754), - [anon_sym_namespace] = ACTIONS(2754), - [anon_sym_using] = ACTIONS(2754), - [anon_sym_static_assert] = ACTIONS(2754), - [anon_sym_concept] = ACTIONS(2754), - [anon_sym_co_return] = ACTIONS(2754), - [anon_sym_co_yield] = ACTIONS(2754), - [anon_sym_R_DQUOTE] = ACTIONS(2756), - [anon_sym_LR_DQUOTE] = ACTIONS(2756), - [anon_sym_uR_DQUOTE] = ACTIONS(2756), - [anon_sym_UR_DQUOTE] = ACTIONS(2756), - [anon_sym_u8R_DQUOTE] = ACTIONS(2756), - [anon_sym_co_await] = ACTIONS(2754), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_requires] = ACTIONS(2754), - [sym_this] = ACTIONS(2754), + [590] = { + [ts_builtin_sym_end] = ACTIONS(2822), + [sym_identifier] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_AMP_AMP] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym_COLON_COLON] = ACTIONS(2822), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym___based] = ACTIONS(2820), + [anon_sym___cdecl] = ACTIONS(2820), + [anon_sym___clrcall] = ACTIONS(2820), + [anon_sym___stdcall] = ACTIONS(2820), + [anon_sym___fastcall] = ACTIONS(2820), + [anon_sym___thiscall] = ACTIONS(2820), + [anon_sym___vectorcall] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_mutable] = ACTIONS(2820), + [anon_sym_constinit] = ACTIONS(2820), + [anon_sym_consteval] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_class] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_else] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_not] = ACTIONS(2820), + [anon_sym_compl] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2820), + [anon_sym_decltype] = ACTIONS(2820), + [anon_sym_virtual] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym_explicit] = ACTIONS(2820), + [anon_sym_typename] = ACTIONS(2820), + [anon_sym_template] = ACTIONS(2820), + [anon_sym_operator] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(2820), + [anon_sym_delete] = ACTIONS(2820), + [anon_sym_throw] = ACTIONS(2820), + [anon_sym_namespace] = ACTIONS(2820), + [anon_sym_using] = ACTIONS(2820), + [anon_sym_static_assert] = ACTIONS(2820), + [anon_sym_concept] = ACTIONS(2820), + [anon_sym_co_return] = ACTIONS(2820), + [anon_sym_co_yield] = ACTIONS(2820), + [anon_sym_R_DQUOTE] = ACTIONS(2822), + [anon_sym_LR_DQUOTE] = ACTIONS(2822), + [anon_sym_uR_DQUOTE] = ACTIONS(2822), + [anon_sym_UR_DQUOTE] = ACTIONS(2822), + [anon_sym_u8R_DQUOTE] = ACTIONS(2822), + [anon_sym_co_await] = ACTIONS(2820), + [anon_sym_new] = ACTIONS(2820), + [anon_sym_requires] = ACTIONS(2820), + [sym_this] = ACTIONS(2820), }, - [607] = { - [sym_identifier] = ACTIONS(3444), - [aux_sym_preproc_include_token1] = ACTIONS(3444), - [aux_sym_preproc_def_token1] = ACTIONS(3444), - [aux_sym_preproc_if_token1] = ACTIONS(3444), - [aux_sym_preproc_if_token2] = ACTIONS(3444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3444), - [aux_sym_preproc_else_token1] = ACTIONS(3444), - [aux_sym_preproc_elif_token1] = ACTIONS(3444), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3444), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3444), - [sym_preproc_directive] = ACTIONS(3444), - [anon_sym_LPAREN2] = ACTIONS(3446), - [anon_sym_BANG] = ACTIONS(3446), - [anon_sym_TILDE] = ACTIONS(3446), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(3446), - [anon_sym_AMP] = ACTIONS(3444), - [anon_sym_SEMI] = ACTIONS(3446), - [anon_sym___extension__] = ACTIONS(3444), - [anon_sym_typedef] = ACTIONS(3444), - [anon_sym_extern] = ACTIONS(3444), - [anon_sym___attribute__] = ACTIONS(3444), - [anon_sym_COLON_COLON] = ACTIONS(3446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3446), - [anon_sym___declspec] = ACTIONS(3444), - [anon_sym___based] = ACTIONS(3444), - [anon_sym___cdecl] = ACTIONS(3444), - [anon_sym___clrcall] = ACTIONS(3444), - [anon_sym___stdcall] = ACTIONS(3444), - [anon_sym___fastcall] = ACTIONS(3444), - [anon_sym___thiscall] = ACTIONS(3444), - [anon_sym___vectorcall] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3446), - [anon_sym_signed] = ACTIONS(3444), - [anon_sym_unsigned] = ACTIONS(3444), - [anon_sym_long] = ACTIONS(3444), - [anon_sym_short] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3444), - [anon_sym_static] = ACTIONS(3444), - [anon_sym_register] = ACTIONS(3444), - [anon_sym_inline] = ACTIONS(3444), - [anon_sym___inline] = ACTIONS(3444), - [anon_sym___inline__] = ACTIONS(3444), - [anon_sym___forceinline] = ACTIONS(3444), - [anon_sym_thread_local] = ACTIONS(3444), - [anon_sym___thread] = ACTIONS(3444), - [anon_sym_const] = ACTIONS(3444), - [anon_sym_constexpr] = ACTIONS(3444), - [anon_sym_volatile] = ACTIONS(3444), - [anon_sym_restrict] = ACTIONS(3444), - [anon_sym___restrict__] = ACTIONS(3444), - [anon_sym__Atomic] = ACTIONS(3444), - [anon_sym__Noreturn] = ACTIONS(3444), - [anon_sym_noreturn] = ACTIONS(3444), - [anon_sym_mutable] = ACTIONS(3444), - [anon_sym_constinit] = ACTIONS(3444), - [anon_sym_consteval] = ACTIONS(3444), - [sym_primitive_type] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), - [anon_sym_class] = ACTIONS(3444), - [anon_sym_struct] = ACTIONS(3444), - [anon_sym_union] = ACTIONS(3444), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_switch] = ACTIONS(3444), - [anon_sym_case] = ACTIONS(3444), - [anon_sym_default] = ACTIONS(3444), - [anon_sym_while] = ACTIONS(3444), - [anon_sym_do] = ACTIONS(3444), - [anon_sym_for] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3444), - [anon_sym_break] = ACTIONS(3444), - [anon_sym_continue] = ACTIONS(3444), - [anon_sym_goto] = ACTIONS(3444), - [anon_sym_not] = ACTIONS(3444), - [anon_sym_compl] = ACTIONS(3444), - [anon_sym_DASH_DASH] = ACTIONS(3446), - [anon_sym_PLUS_PLUS] = ACTIONS(3446), - [anon_sym_sizeof] = ACTIONS(3444), - [anon_sym___alignof__] = ACTIONS(3444), - [anon_sym___alignof] = ACTIONS(3444), - [anon_sym__alignof] = ACTIONS(3444), - [anon_sym_alignof] = ACTIONS(3444), - [anon_sym__Alignof] = ACTIONS(3444), - [anon_sym_offsetof] = ACTIONS(3444), - [anon_sym__Generic] = ACTIONS(3444), - [anon_sym_asm] = ACTIONS(3444), - [anon_sym___asm__] = ACTIONS(3444), - [sym_number_literal] = ACTIONS(3446), - [anon_sym_L_SQUOTE] = ACTIONS(3446), - [anon_sym_u_SQUOTE] = ACTIONS(3446), - [anon_sym_U_SQUOTE] = ACTIONS(3446), - [anon_sym_u8_SQUOTE] = ACTIONS(3446), - [anon_sym_SQUOTE] = ACTIONS(3446), - [anon_sym_L_DQUOTE] = ACTIONS(3446), - [anon_sym_u_DQUOTE] = ACTIONS(3446), - [anon_sym_U_DQUOTE] = ACTIONS(3446), - [anon_sym_u8_DQUOTE] = ACTIONS(3446), - [anon_sym_DQUOTE] = ACTIONS(3446), - [sym_true] = ACTIONS(3444), - [sym_false] = ACTIONS(3444), - [anon_sym_NULL] = ACTIONS(3444), - [anon_sym_nullptr] = ACTIONS(3444), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3444), - [anon_sym_decltype] = ACTIONS(3444), - [anon_sym_virtual] = ACTIONS(3444), - [anon_sym_alignas] = ACTIONS(3444), - [anon_sym_explicit] = ACTIONS(3444), - [anon_sym_typename] = ACTIONS(3444), - [anon_sym_template] = ACTIONS(3444), - [anon_sym_operator] = ACTIONS(3444), - [anon_sym_try] = ACTIONS(3444), - [anon_sym_delete] = ACTIONS(3444), - [anon_sym_throw] = ACTIONS(3444), - [anon_sym_namespace] = ACTIONS(3444), - [anon_sym_using] = ACTIONS(3444), - [anon_sym_static_assert] = ACTIONS(3444), - [anon_sym_concept] = ACTIONS(3444), - [anon_sym_co_return] = ACTIONS(3444), - [anon_sym_co_yield] = ACTIONS(3444), - [anon_sym_R_DQUOTE] = ACTIONS(3446), - [anon_sym_LR_DQUOTE] = ACTIONS(3446), - [anon_sym_uR_DQUOTE] = ACTIONS(3446), - [anon_sym_UR_DQUOTE] = ACTIONS(3446), - [anon_sym_u8R_DQUOTE] = ACTIONS(3446), - [anon_sym_co_await] = ACTIONS(3444), - [anon_sym_new] = ACTIONS(3444), - [anon_sym_requires] = ACTIONS(3444), - [sym_this] = ACTIONS(3444), + [591] = { + [ts_builtin_sym_end] = ACTIONS(2826), + [sym_identifier] = ACTIONS(2824), + [aux_sym_preproc_include_token1] = ACTIONS(2824), + [aux_sym_preproc_def_token1] = ACTIONS(2824), + [aux_sym_preproc_if_token1] = ACTIONS(2824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2824), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2824), + [sym_preproc_directive] = ACTIONS(2824), + [anon_sym_LPAREN2] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_PLUS] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2826), + [anon_sym_AMP_AMP] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym___extension__] = ACTIONS(2824), + [anon_sym_typedef] = ACTIONS(2824), + [anon_sym_extern] = ACTIONS(2824), + [anon_sym___attribute__] = ACTIONS(2824), + [anon_sym_COLON_COLON] = ACTIONS(2826), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2826), + [anon_sym___declspec] = ACTIONS(2824), + [anon_sym___based] = ACTIONS(2824), + [anon_sym___cdecl] = ACTIONS(2824), + [anon_sym___clrcall] = ACTIONS(2824), + [anon_sym___stdcall] = ACTIONS(2824), + [anon_sym___fastcall] = ACTIONS(2824), + [anon_sym___thiscall] = ACTIONS(2824), + [anon_sym___vectorcall] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_signed] = ACTIONS(2824), + [anon_sym_unsigned] = ACTIONS(2824), + [anon_sym_long] = ACTIONS(2824), + [anon_sym_short] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_register] = ACTIONS(2824), + [anon_sym_inline] = ACTIONS(2824), + [anon_sym___inline] = ACTIONS(2824), + [anon_sym___inline__] = ACTIONS(2824), + [anon_sym___forceinline] = ACTIONS(2824), + [anon_sym_thread_local] = ACTIONS(2824), + [anon_sym___thread] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2824), + [anon_sym_constexpr] = ACTIONS(2824), + [anon_sym_volatile] = ACTIONS(2824), + [anon_sym_restrict] = ACTIONS(2824), + [anon_sym___restrict__] = ACTIONS(2824), + [anon_sym__Atomic] = ACTIONS(2824), + [anon_sym__Noreturn] = ACTIONS(2824), + [anon_sym_noreturn] = ACTIONS(2824), + [anon_sym_mutable] = ACTIONS(2824), + [anon_sym_constinit] = ACTIONS(2824), + [anon_sym_consteval] = ACTIONS(2824), + [sym_primitive_type] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [anon_sym_class] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2824), + [anon_sym_union] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_else] = ACTIONS(2824), + [anon_sym_switch] = ACTIONS(2824), + [anon_sym_case] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_do] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_goto] = ACTIONS(2824), + [anon_sym_not] = ACTIONS(2824), + [anon_sym_compl] = ACTIONS(2824), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_sizeof] = ACTIONS(2824), + [anon_sym___alignof__] = ACTIONS(2824), + [anon_sym___alignof] = ACTIONS(2824), + [anon_sym__alignof] = ACTIONS(2824), + [anon_sym_alignof] = ACTIONS(2824), + [anon_sym__Alignof] = ACTIONS(2824), + [anon_sym_offsetof] = ACTIONS(2824), + [anon_sym__Generic] = ACTIONS(2824), + [anon_sym_asm] = ACTIONS(2824), + [anon_sym___asm__] = ACTIONS(2824), + [sym_number_literal] = ACTIONS(2826), + [anon_sym_L_SQUOTE] = ACTIONS(2826), + [anon_sym_u_SQUOTE] = ACTIONS(2826), + [anon_sym_U_SQUOTE] = ACTIONS(2826), + [anon_sym_u8_SQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_L_DQUOTE] = ACTIONS(2826), + [anon_sym_u_DQUOTE] = ACTIONS(2826), + [anon_sym_U_DQUOTE] = ACTIONS(2826), + [anon_sym_u8_DQUOTE] = ACTIONS(2826), + [anon_sym_DQUOTE] = ACTIONS(2826), + [sym_true] = ACTIONS(2824), + [sym_false] = ACTIONS(2824), + [anon_sym_NULL] = ACTIONS(2824), + [anon_sym_nullptr] = ACTIONS(2824), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2824), + [anon_sym_decltype] = ACTIONS(2824), + [anon_sym_virtual] = ACTIONS(2824), + [anon_sym_alignas] = ACTIONS(2824), + [anon_sym_explicit] = ACTIONS(2824), + [anon_sym_typename] = ACTIONS(2824), + [anon_sym_template] = ACTIONS(2824), + [anon_sym_operator] = ACTIONS(2824), + [anon_sym_try] = ACTIONS(2824), + [anon_sym_delete] = ACTIONS(2824), + [anon_sym_throw] = ACTIONS(2824), + [anon_sym_namespace] = ACTIONS(2824), + [anon_sym_using] = ACTIONS(2824), + [anon_sym_static_assert] = ACTIONS(2824), + [anon_sym_concept] = ACTIONS(2824), + [anon_sym_co_return] = ACTIONS(2824), + [anon_sym_co_yield] = ACTIONS(2824), + [anon_sym_R_DQUOTE] = ACTIONS(2826), + [anon_sym_LR_DQUOTE] = ACTIONS(2826), + [anon_sym_uR_DQUOTE] = ACTIONS(2826), + [anon_sym_UR_DQUOTE] = ACTIONS(2826), + [anon_sym_u8R_DQUOTE] = ACTIONS(2826), + [anon_sym_co_await] = ACTIONS(2824), + [anon_sym_new] = ACTIONS(2824), + [anon_sym_requires] = ACTIONS(2824), + [sym_this] = ACTIONS(2824), }, - [608] = { - [sym_type_qualifier] = STATE(4728), - [sym__type_specifier] = STATE(5568), - [sym_sized_type_specifier] = STATE(3614), - [sym_enum_specifier] = STATE(3614), - [sym_struct_specifier] = STATE(3614), - [sym_union_specifier] = STATE(3614), - [sym__expression] = STATE(4965), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_type_descriptor] = STATE(7977), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_placeholder_type_specifier] = STATE(3614), - [sym_decltype_auto] = STATE(3612), - [sym_decltype] = STATE(3593), - [sym_class_specifier] = STATE(3614), - [sym__class_name] = STATE(8694), - [sym_dependent_type] = STATE(3614), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_type_parameter_pack_expansion] = STATE(8035), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6421), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4285), - [aux_sym_type_definition_repeat1] = STATE(4728), - [aux_sym_sized_type_specifier_repeat1] = STATE(3032), - [sym_identifier] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3173), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_GT2] = ACTIONS(3448), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [592] = { + [ts_builtin_sym_end] = ACTIONS(2772), + [sym_identifier] = ACTIONS(2770), + [aux_sym_preproc_include_token1] = ACTIONS(2770), + [aux_sym_preproc_def_token1] = ACTIONS(2770), + [aux_sym_preproc_if_token1] = ACTIONS(2770), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2770), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2770), + [sym_preproc_directive] = ACTIONS(2770), + [anon_sym_LPAREN2] = ACTIONS(2772), + [anon_sym_BANG] = ACTIONS(2772), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2770), + [anon_sym_PLUS] = ACTIONS(2770), + [anon_sym_STAR] = ACTIONS(2772), + [anon_sym_AMP_AMP] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2770), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym___extension__] = ACTIONS(2770), + [anon_sym_typedef] = ACTIONS(2770), + [anon_sym_extern] = ACTIONS(2770), + [anon_sym___attribute__] = ACTIONS(2770), + [anon_sym_COLON_COLON] = ACTIONS(2772), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2772), + [anon_sym___declspec] = ACTIONS(2770), + [anon_sym___based] = ACTIONS(2770), + [anon_sym___cdecl] = ACTIONS(2770), + [anon_sym___clrcall] = ACTIONS(2770), + [anon_sym___stdcall] = ACTIONS(2770), + [anon_sym___fastcall] = ACTIONS(2770), + [anon_sym___thiscall] = ACTIONS(2770), + [anon_sym___vectorcall] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_signed] = ACTIONS(2770), + [anon_sym_unsigned] = ACTIONS(2770), + [anon_sym_long] = ACTIONS(2770), + [anon_sym_short] = ACTIONS(2770), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym_static] = ACTIONS(2770), + [anon_sym_register] = ACTIONS(2770), + [anon_sym_inline] = ACTIONS(2770), + [anon_sym___inline] = ACTIONS(2770), + [anon_sym___inline__] = ACTIONS(2770), + [anon_sym___forceinline] = ACTIONS(2770), + [anon_sym_thread_local] = ACTIONS(2770), + [anon_sym___thread] = ACTIONS(2770), + [anon_sym_const] = ACTIONS(2770), + [anon_sym_constexpr] = ACTIONS(2770), + [anon_sym_volatile] = ACTIONS(2770), + [anon_sym_restrict] = ACTIONS(2770), + [anon_sym___restrict__] = ACTIONS(2770), + [anon_sym__Atomic] = ACTIONS(2770), + [anon_sym__Noreturn] = ACTIONS(2770), + [anon_sym_noreturn] = ACTIONS(2770), + [anon_sym_mutable] = ACTIONS(2770), + [anon_sym_constinit] = ACTIONS(2770), + [anon_sym_consteval] = ACTIONS(2770), + [sym_primitive_type] = ACTIONS(2770), + [anon_sym_enum] = ACTIONS(2770), + [anon_sym_class] = ACTIONS(2770), + [anon_sym_struct] = ACTIONS(2770), + [anon_sym_union] = ACTIONS(2770), + [anon_sym_if] = ACTIONS(2770), + [anon_sym_else] = ACTIONS(2770), + [anon_sym_switch] = ACTIONS(2770), + [anon_sym_case] = ACTIONS(2770), + [anon_sym_default] = ACTIONS(2770), + [anon_sym_while] = ACTIONS(2770), + [anon_sym_do] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2770), + [anon_sym_return] = ACTIONS(2770), + [anon_sym_break] = ACTIONS(2770), + [anon_sym_continue] = ACTIONS(2770), + [anon_sym_goto] = ACTIONS(2770), + [anon_sym_not] = ACTIONS(2770), + [anon_sym_compl] = ACTIONS(2770), + [anon_sym_DASH_DASH] = ACTIONS(2772), + [anon_sym_PLUS_PLUS] = ACTIONS(2772), + [anon_sym_sizeof] = ACTIONS(2770), + [anon_sym___alignof__] = ACTIONS(2770), + [anon_sym___alignof] = ACTIONS(2770), + [anon_sym__alignof] = ACTIONS(2770), + [anon_sym_alignof] = ACTIONS(2770), + [anon_sym__Alignof] = ACTIONS(2770), + [anon_sym_offsetof] = ACTIONS(2770), + [anon_sym__Generic] = ACTIONS(2770), + [anon_sym_asm] = ACTIONS(2770), + [anon_sym___asm__] = ACTIONS(2770), + [sym_number_literal] = ACTIONS(2772), + [anon_sym_L_SQUOTE] = ACTIONS(2772), + [anon_sym_u_SQUOTE] = ACTIONS(2772), + [anon_sym_U_SQUOTE] = ACTIONS(2772), + [anon_sym_u8_SQUOTE] = ACTIONS(2772), + [anon_sym_SQUOTE] = ACTIONS(2772), + [anon_sym_L_DQUOTE] = ACTIONS(2772), + [anon_sym_u_DQUOTE] = ACTIONS(2772), + [anon_sym_U_DQUOTE] = ACTIONS(2772), + [anon_sym_u8_DQUOTE] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2772), + [sym_true] = ACTIONS(2770), + [sym_false] = ACTIONS(2770), + [anon_sym_NULL] = ACTIONS(2770), + [anon_sym_nullptr] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2770), + [anon_sym_decltype] = ACTIONS(2770), + [anon_sym_virtual] = ACTIONS(2770), + [anon_sym_alignas] = ACTIONS(2770), + [anon_sym_explicit] = ACTIONS(2770), + [anon_sym_typename] = ACTIONS(2770), + [anon_sym_template] = ACTIONS(2770), + [anon_sym_operator] = ACTIONS(2770), + [anon_sym_try] = ACTIONS(2770), + [anon_sym_delete] = ACTIONS(2770), + [anon_sym_throw] = ACTIONS(2770), + [anon_sym_namespace] = ACTIONS(2770), + [anon_sym_using] = ACTIONS(2770), + [anon_sym_static_assert] = ACTIONS(2770), + [anon_sym_concept] = ACTIONS(2770), + [anon_sym_co_return] = ACTIONS(2770), + [anon_sym_co_yield] = ACTIONS(2770), + [anon_sym_R_DQUOTE] = ACTIONS(2772), + [anon_sym_LR_DQUOTE] = ACTIONS(2772), + [anon_sym_uR_DQUOTE] = ACTIONS(2772), + [anon_sym_UR_DQUOTE] = ACTIONS(2772), + [anon_sym_u8R_DQUOTE] = ACTIONS(2772), + [anon_sym_co_await] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2770), + [anon_sym_requires] = ACTIONS(2770), + [sym_this] = ACTIONS(2770), }, - [609] = { - [sym_identifier] = ACTIONS(3450), - [aux_sym_preproc_include_token1] = ACTIONS(3450), - [aux_sym_preproc_def_token1] = ACTIONS(3450), - [aux_sym_preproc_if_token1] = ACTIONS(3450), - [aux_sym_preproc_if_token2] = ACTIONS(3450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3450), - [aux_sym_preproc_else_token1] = ACTIONS(3450), - [aux_sym_preproc_elif_token1] = ACTIONS(3450), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3450), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3450), - [sym_preproc_directive] = ACTIONS(3450), - [anon_sym_LPAREN2] = ACTIONS(3452), - [anon_sym_BANG] = ACTIONS(3452), - [anon_sym_TILDE] = ACTIONS(3452), - [anon_sym_DASH] = ACTIONS(3450), - [anon_sym_PLUS] = ACTIONS(3450), - [anon_sym_STAR] = ACTIONS(3452), - [anon_sym_AMP_AMP] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3450), - [anon_sym_SEMI] = ACTIONS(3452), - [anon_sym___extension__] = ACTIONS(3450), - [anon_sym_typedef] = ACTIONS(3450), - [anon_sym_extern] = ACTIONS(3450), - [anon_sym___attribute__] = ACTIONS(3450), - [anon_sym_COLON_COLON] = ACTIONS(3452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3452), - [anon_sym___declspec] = ACTIONS(3450), - [anon_sym___based] = ACTIONS(3450), - [anon_sym___cdecl] = ACTIONS(3450), - [anon_sym___clrcall] = ACTIONS(3450), - [anon_sym___stdcall] = ACTIONS(3450), - [anon_sym___fastcall] = ACTIONS(3450), - [anon_sym___thiscall] = ACTIONS(3450), - [anon_sym___vectorcall] = ACTIONS(3450), - [anon_sym_LBRACE] = ACTIONS(3452), - [anon_sym_signed] = ACTIONS(3450), - [anon_sym_unsigned] = ACTIONS(3450), - [anon_sym_long] = ACTIONS(3450), - [anon_sym_short] = ACTIONS(3450), - [anon_sym_LBRACK] = ACTIONS(3450), - [anon_sym_static] = ACTIONS(3450), - [anon_sym_register] = ACTIONS(3450), - [anon_sym_inline] = ACTIONS(3450), - [anon_sym___inline] = ACTIONS(3450), - [anon_sym___inline__] = ACTIONS(3450), - [anon_sym___forceinline] = ACTIONS(3450), - [anon_sym_thread_local] = ACTIONS(3450), - [anon_sym___thread] = ACTIONS(3450), - [anon_sym_const] = ACTIONS(3450), - [anon_sym_constexpr] = ACTIONS(3450), - [anon_sym_volatile] = ACTIONS(3450), - [anon_sym_restrict] = ACTIONS(3450), - [anon_sym___restrict__] = ACTIONS(3450), - [anon_sym__Atomic] = ACTIONS(3450), - [anon_sym__Noreturn] = ACTIONS(3450), - [anon_sym_noreturn] = ACTIONS(3450), - [anon_sym_mutable] = ACTIONS(3450), - [anon_sym_constinit] = ACTIONS(3450), - [anon_sym_consteval] = ACTIONS(3450), - [sym_primitive_type] = ACTIONS(3450), - [anon_sym_enum] = ACTIONS(3450), - [anon_sym_class] = ACTIONS(3450), - [anon_sym_struct] = ACTIONS(3450), - [anon_sym_union] = ACTIONS(3450), - [anon_sym_if] = ACTIONS(3450), - [anon_sym_switch] = ACTIONS(3450), - [anon_sym_case] = ACTIONS(3450), - [anon_sym_default] = ACTIONS(3450), - [anon_sym_while] = ACTIONS(3450), - [anon_sym_do] = ACTIONS(3450), - [anon_sym_for] = ACTIONS(3450), - [anon_sym_return] = ACTIONS(3450), - [anon_sym_break] = ACTIONS(3450), - [anon_sym_continue] = ACTIONS(3450), - [anon_sym_goto] = ACTIONS(3450), - [anon_sym_not] = ACTIONS(3450), - [anon_sym_compl] = ACTIONS(3450), - [anon_sym_DASH_DASH] = ACTIONS(3452), - [anon_sym_PLUS_PLUS] = ACTIONS(3452), - [anon_sym_sizeof] = ACTIONS(3450), - [anon_sym___alignof__] = ACTIONS(3450), - [anon_sym___alignof] = ACTIONS(3450), - [anon_sym__alignof] = ACTIONS(3450), - [anon_sym_alignof] = ACTIONS(3450), - [anon_sym__Alignof] = ACTIONS(3450), - [anon_sym_offsetof] = ACTIONS(3450), - [anon_sym__Generic] = ACTIONS(3450), - [anon_sym_asm] = ACTIONS(3450), - [anon_sym___asm__] = ACTIONS(3450), - [sym_number_literal] = ACTIONS(3452), - [anon_sym_L_SQUOTE] = ACTIONS(3452), - [anon_sym_u_SQUOTE] = ACTIONS(3452), - [anon_sym_U_SQUOTE] = ACTIONS(3452), - [anon_sym_u8_SQUOTE] = ACTIONS(3452), - [anon_sym_SQUOTE] = ACTIONS(3452), - [anon_sym_L_DQUOTE] = ACTIONS(3452), - [anon_sym_u_DQUOTE] = ACTIONS(3452), - [anon_sym_U_DQUOTE] = ACTIONS(3452), - [anon_sym_u8_DQUOTE] = ACTIONS(3452), - [anon_sym_DQUOTE] = ACTIONS(3452), - [sym_true] = ACTIONS(3450), - [sym_false] = ACTIONS(3450), - [anon_sym_NULL] = ACTIONS(3450), - [anon_sym_nullptr] = ACTIONS(3450), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3450), - [anon_sym_decltype] = ACTIONS(3450), - [anon_sym_virtual] = ACTIONS(3450), - [anon_sym_alignas] = ACTIONS(3450), - [anon_sym_explicit] = ACTIONS(3450), - [anon_sym_typename] = ACTIONS(3450), - [anon_sym_template] = ACTIONS(3450), - [anon_sym_operator] = ACTIONS(3450), - [anon_sym_try] = ACTIONS(3450), - [anon_sym_delete] = ACTIONS(3450), - [anon_sym_throw] = ACTIONS(3450), - [anon_sym_namespace] = ACTIONS(3450), - [anon_sym_using] = ACTIONS(3450), - [anon_sym_static_assert] = ACTIONS(3450), - [anon_sym_concept] = ACTIONS(3450), - [anon_sym_co_return] = ACTIONS(3450), - [anon_sym_co_yield] = ACTIONS(3450), - [anon_sym_R_DQUOTE] = ACTIONS(3452), - [anon_sym_LR_DQUOTE] = ACTIONS(3452), - [anon_sym_uR_DQUOTE] = ACTIONS(3452), - [anon_sym_UR_DQUOTE] = ACTIONS(3452), - [anon_sym_u8R_DQUOTE] = ACTIONS(3452), - [anon_sym_co_await] = ACTIONS(3450), - [anon_sym_new] = ACTIONS(3450), - [anon_sym_requires] = ACTIONS(3450), - [sym_this] = ACTIONS(3450), + [593] = { + [ts_builtin_sym_end] = ACTIONS(2882), + [sym_identifier] = ACTIONS(2880), + [aux_sym_preproc_include_token1] = ACTIONS(2880), + [aux_sym_preproc_def_token1] = ACTIONS(2880), + [aux_sym_preproc_if_token1] = ACTIONS(2880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2880), + [sym_preproc_directive] = ACTIONS(2880), + [anon_sym_LPAREN2] = ACTIONS(2882), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_SEMI] = ACTIONS(2882), + [anon_sym___extension__] = ACTIONS(2880), + [anon_sym_typedef] = ACTIONS(2880), + [anon_sym_extern] = ACTIONS(2880), + [anon_sym___attribute__] = ACTIONS(2880), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2882), + [anon_sym___declspec] = ACTIONS(2880), + [anon_sym___based] = ACTIONS(2880), + [anon_sym___cdecl] = ACTIONS(2880), + [anon_sym___clrcall] = ACTIONS(2880), + [anon_sym___stdcall] = ACTIONS(2880), + [anon_sym___fastcall] = ACTIONS(2880), + [anon_sym___thiscall] = ACTIONS(2880), + [anon_sym___vectorcall] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_signed] = ACTIONS(2880), + [anon_sym_unsigned] = ACTIONS(2880), + [anon_sym_long] = ACTIONS(2880), + [anon_sym_short] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_static] = ACTIONS(2880), + [anon_sym_register] = ACTIONS(2880), + [anon_sym_inline] = ACTIONS(2880), + [anon_sym___inline] = ACTIONS(2880), + [anon_sym___inline__] = ACTIONS(2880), + [anon_sym___forceinline] = ACTIONS(2880), + [anon_sym_thread_local] = ACTIONS(2880), + [anon_sym___thread] = ACTIONS(2880), + [anon_sym_const] = ACTIONS(2880), + [anon_sym_constexpr] = ACTIONS(2880), + [anon_sym_volatile] = ACTIONS(2880), + [anon_sym_restrict] = ACTIONS(2880), + [anon_sym___restrict__] = ACTIONS(2880), + [anon_sym__Atomic] = ACTIONS(2880), + [anon_sym__Noreturn] = ACTIONS(2880), + [anon_sym_noreturn] = ACTIONS(2880), + [anon_sym_mutable] = ACTIONS(2880), + [anon_sym_constinit] = ACTIONS(2880), + [anon_sym_consteval] = ACTIONS(2880), + [sym_primitive_type] = ACTIONS(2880), + [anon_sym_enum] = ACTIONS(2880), + [anon_sym_class] = ACTIONS(2880), + [anon_sym_struct] = ACTIONS(2880), + [anon_sym_union] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_else] = ACTIONS(2880), + [anon_sym_switch] = ACTIONS(2880), + [anon_sym_case] = ACTIONS(2880), + [anon_sym_default] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_break] = ACTIONS(2880), + [anon_sym_continue] = ACTIONS(2880), + [anon_sym_goto] = ACTIONS(2880), + [anon_sym_not] = ACTIONS(2880), + [anon_sym_compl] = ACTIONS(2880), + [anon_sym_DASH_DASH] = ACTIONS(2882), + [anon_sym_PLUS_PLUS] = ACTIONS(2882), + [anon_sym_sizeof] = ACTIONS(2880), + [anon_sym___alignof__] = ACTIONS(2880), + [anon_sym___alignof] = ACTIONS(2880), + [anon_sym__alignof] = ACTIONS(2880), + [anon_sym_alignof] = ACTIONS(2880), + [anon_sym__Alignof] = ACTIONS(2880), + [anon_sym_offsetof] = ACTIONS(2880), + [anon_sym__Generic] = ACTIONS(2880), + [anon_sym_asm] = ACTIONS(2880), + [anon_sym___asm__] = ACTIONS(2880), + [sym_number_literal] = ACTIONS(2882), + [anon_sym_L_SQUOTE] = ACTIONS(2882), + [anon_sym_u_SQUOTE] = ACTIONS(2882), + [anon_sym_U_SQUOTE] = ACTIONS(2882), + [anon_sym_u8_SQUOTE] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_L_DQUOTE] = ACTIONS(2882), + [anon_sym_u_DQUOTE] = ACTIONS(2882), + [anon_sym_U_DQUOTE] = ACTIONS(2882), + [anon_sym_u8_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE] = ACTIONS(2882), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [anon_sym_NULL] = ACTIONS(2880), + [anon_sym_nullptr] = ACTIONS(2880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2880), + [anon_sym_decltype] = ACTIONS(2880), + [anon_sym_virtual] = ACTIONS(2880), + [anon_sym_alignas] = ACTIONS(2880), + [anon_sym_explicit] = ACTIONS(2880), + [anon_sym_typename] = ACTIONS(2880), + [anon_sym_template] = ACTIONS(2880), + [anon_sym_operator] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_delete] = ACTIONS(2880), + [anon_sym_throw] = ACTIONS(2880), + [anon_sym_namespace] = ACTIONS(2880), + [anon_sym_using] = ACTIONS(2880), + [anon_sym_static_assert] = ACTIONS(2880), + [anon_sym_concept] = ACTIONS(2880), + [anon_sym_co_return] = ACTIONS(2880), + [anon_sym_co_yield] = ACTIONS(2880), + [anon_sym_R_DQUOTE] = ACTIONS(2882), + [anon_sym_LR_DQUOTE] = ACTIONS(2882), + [anon_sym_uR_DQUOTE] = ACTIONS(2882), + [anon_sym_UR_DQUOTE] = ACTIONS(2882), + [anon_sym_u8R_DQUOTE] = ACTIONS(2882), + [anon_sym_co_await] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_requires] = ACTIONS(2880), + [sym_this] = ACTIONS(2880), }, - [610] = { - [sym_identifier] = ACTIONS(3454), - [aux_sym_preproc_include_token1] = ACTIONS(3454), - [aux_sym_preproc_def_token1] = ACTIONS(3454), - [aux_sym_preproc_if_token1] = ACTIONS(3454), - [aux_sym_preproc_if_token2] = ACTIONS(3454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3454), - [aux_sym_preproc_else_token1] = ACTIONS(3454), - [aux_sym_preproc_elif_token1] = ACTIONS(3454), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3454), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3454), - [sym_preproc_directive] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3456), - [anon_sym_BANG] = ACTIONS(3456), - [anon_sym_TILDE] = ACTIONS(3456), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_STAR] = ACTIONS(3456), - [anon_sym_AMP_AMP] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3456), - [anon_sym___extension__] = ACTIONS(3454), - [anon_sym_typedef] = ACTIONS(3454), - [anon_sym_extern] = ACTIONS(3454), - [anon_sym___attribute__] = ACTIONS(3454), - [anon_sym_COLON_COLON] = ACTIONS(3456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3456), - [anon_sym___declspec] = ACTIONS(3454), - [anon_sym___based] = ACTIONS(3454), - [anon_sym___cdecl] = ACTIONS(3454), - [anon_sym___clrcall] = ACTIONS(3454), - [anon_sym___stdcall] = ACTIONS(3454), - [anon_sym___fastcall] = ACTIONS(3454), - [anon_sym___thiscall] = ACTIONS(3454), - [anon_sym___vectorcall] = ACTIONS(3454), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_signed] = ACTIONS(3454), - [anon_sym_unsigned] = ACTIONS(3454), - [anon_sym_long] = ACTIONS(3454), - [anon_sym_short] = ACTIONS(3454), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3454), - [anon_sym_register] = ACTIONS(3454), - [anon_sym_inline] = ACTIONS(3454), - [anon_sym___inline] = ACTIONS(3454), - [anon_sym___inline__] = ACTIONS(3454), - [anon_sym___forceinline] = ACTIONS(3454), - [anon_sym_thread_local] = ACTIONS(3454), - [anon_sym___thread] = ACTIONS(3454), - [anon_sym_const] = ACTIONS(3454), - [anon_sym_constexpr] = ACTIONS(3454), - [anon_sym_volatile] = ACTIONS(3454), - [anon_sym_restrict] = ACTIONS(3454), - [anon_sym___restrict__] = ACTIONS(3454), - [anon_sym__Atomic] = ACTIONS(3454), - [anon_sym__Noreturn] = ACTIONS(3454), - [anon_sym_noreturn] = ACTIONS(3454), - [anon_sym_mutable] = ACTIONS(3454), - [anon_sym_constinit] = ACTIONS(3454), - [anon_sym_consteval] = ACTIONS(3454), - [sym_primitive_type] = ACTIONS(3454), - [anon_sym_enum] = ACTIONS(3454), - [anon_sym_class] = ACTIONS(3454), - [anon_sym_struct] = ACTIONS(3454), - [anon_sym_union] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_switch] = ACTIONS(3454), - [anon_sym_case] = ACTIONS(3454), - [anon_sym_default] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_break] = ACTIONS(3454), - [anon_sym_continue] = ACTIONS(3454), - [anon_sym_goto] = ACTIONS(3454), - [anon_sym_not] = ACTIONS(3454), - [anon_sym_compl] = ACTIONS(3454), - [anon_sym_DASH_DASH] = ACTIONS(3456), - [anon_sym_PLUS_PLUS] = ACTIONS(3456), - [anon_sym_sizeof] = ACTIONS(3454), - [anon_sym___alignof__] = ACTIONS(3454), - [anon_sym___alignof] = ACTIONS(3454), - [anon_sym__alignof] = ACTIONS(3454), - [anon_sym_alignof] = ACTIONS(3454), - [anon_sym__Alignof] = ACTIONS(3454), - [anon_sym_offsetof] = ACTIONS(3454), - [anon_sym__Generic] = ACTIONS(3454), - [anon_sym_asm] = ACTIONS(3454), - [anon_sym___asm__] = ACTIONS(3454), - [sym_number_literal] = ACTIONS(3456), - [anon_sym_L_SQUOTE] = ACTIONS(3456), - [anon_sym_u_SQUOTE] = ACTIONS(3456), - [anon_sym_U_SQUOTE] = ACTIONS(3456), - [anon_sym_u8_SQUOTE] = ACTIONS(3456), - [anon_sym_SQUOTE] = ACTIONS(3456), - [anon_sym_L_DQUOTE] = ACTIONS(3456), - [anon_sym_u_DQUOTE] = ACTIONS(3456), - [anon_sym_U_DQUOTE] = ACTIONS(3456), - [anon_sym_u8_DQUOTE] = ACTIONS(3456), - [anon_sym_DQUOTE] = ACTIONS(3456), - [sym_true] = ACTIONS(3454), - [sym_false] = ACTIONS(3454), - [anon_sym_NULL] = ACTIONS(3454), - [anon_sym_nullptr] = ACTIONS(3454), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3454), - [anon_sym_decltype] = ACTIONS(3454), - [anon_sym_virtual] = ACTIONS(3454), - [anon_sym_alignas] = ACTIONS(3454), - [anon_sym_explicit] = ACTIONS(3454), - [anon_sym_typename] = ACTIONS(3454), - [anon_sym_template] = ACTIONS(3454), - [anon_sym_operator] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_delete] = ACTIONS(3454), - [anon_sym_throw] = ACTIONS(3454), - [anon_sym_namespace] = ACTIONS(3454), - [anon_sym_using] = ACTIONS(3454), - [anon_sym_static_assert] = ACTIONS(3454), - [anon_sym_concept] = ACTIONS(3454), - [anon_sym_co_return] = ACTIONS(3454), - [anon_sym_co_yield] = ACTIONS(3454), - [anon_sym_R_DQUOTE] = ACTIONS(3456), - [anon_sym_LR_DQUOTE] = ACTIONS(3456), - [anon_sym_uR_DQUOTE] = ACTIONS(3456), - [anon_sym_UR_DQUOTE] = ACTIONS(3456), - [anon_sym_u8R_DQUOTE] = ACTIONS(3456), - [anon_sym_co_await] = ACTIONS(3454), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_requires] = ACTIONS(3454), - [sym_this] = ACTIONS(3454), + [594] = { + [sym_identifier] = ACTIONS(2786), + [aux_sym_preproc_include_token1] = ACTIONS(2786), + [aux_sym_preproc_def_token1] = ACTIONS(2786), + [aux_sym_preproc_if_token1] = ACTIONS(2786), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2786), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2786), + [sym_preproc_directive] = ACTIONS(2786), + [anon_sym_LPAREN2] = ACTIONS(2788), + [anon_sym_BANG] = ACTIONS(2788), + [anon_sym_TILDE] = ACTIONS(2788), + [anon_sym_DASH] = ACTIONS(2786), + [anon_sym_PLUS] = ACTIONS(2786), + [anon_sym_STAR] = ACTIONS(2788), + [anon_sym_AMP_AMP] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym___extension__] = ACTIONS(2786), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_extern] = ACTIONS(2786), + [anon_sym___attribute__] = ACTIONS(2786), + [anon_sym_COLON_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2788), + [anon_sym___declspec] = ACTIONS(2786), + [anon_sym___based] = ACTIONS(2786), + [anon_sym___cdecl] = ACTIONS(2786), + [anon_sym___clrcall] = ACTIONS(2786), + [anon_sym___stdcall] = ACTIONS(2786), + [anon_sym___fastcall] = ACTIONS(2786), + [anon_sym___thiscall] = ACTIONS(2786), + [anon_sym___vectorcall] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2788), + [anon_sym_RBRACE] = ACTIONS(2788), + [anon_sym_signed] = ACTIONS(2786), + [anon_sym_unsigned] = ACTIONS(2786), + [anon_sym_long] = ACTIONS(2786), + [anon_sym_short] = ACTIONS(2786), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_static] = ACTIONS(2786), + [anon_sym_register] = ACTIONS(2786), + [anon_sym_inline] = ACTIONS(2786), + [anon_sym___inline] = ACTIONS(2786), + [anon_sym___inline__] = ACTIONS(2786), + [anon_sym___forceinline] = ACTIONS(2786), + [anon_sym_thread_local] = ACTIONS(2786), + [anon_sym___thread] = ACTIONS(2786), + [anon_sym_const] = ACTIONS(2786), + [anon_sym_constexpr] = ACTIONS(2786), + [anon_sym_volatile] = ACTIONS(2786), + [anon_sym_restrict] = ACTIONS(2786), + [anon_sym___restrict__] = ACTIONS(2786), + [anon_sym__Atomic] = ACTIONS(2786), + [anon_sym__Noreturn] = ACTIONS(2786), + [anon_sym_noreturn] = ACTIONS(2786), + [anon_sym_mutable] = ACTIONS(2786), + [anon_sym_constinit] = ACTIONS(2786), + [anon_sym_consteval] = ACTIONS(2786), + [sym_primitive_type] = ACTIONS(2786), + [anon_sym_enum] = ACTIONS(2786), + [anon_sym_class] = ACTIONS(2786), + [anon_sym_struct] = ACTIONS(2786), + [anon_sym_union] = ACTIONS(2786), + [anon_sym_if] = ACTIONS(2786), + [anon_sym_else] = ACTIONS(2786), + [anon_sym_switch] = ACTIONS(2786), + [anon_sym_case] = ACTIONS(2786), + [anon_sym_default] = ACTIONS(2786), + [anon_sym_while] = ACTIONS(2786), + [anon_sym_do] = ACTIONS(2786), + [anon_sym_for] = ACTIONS(2786), + [anon_sym_return] = ACTIONS(2786), + [anon_sym_break] = ACTIONS(2786), + [anon_sym_continue] = ACTIONS(2786), + [anon_sym_goto] = ACTIONS(2786), + [anon_sym_not] = ACTIONS(2786), + [anon_sym_compl] = ACTIONS(2786), + [anon_sym_DASH_DASH] = ACTIONS(2788), + [anon_sym_PLUS_PLUS] = ACTIONS(2788), + [anon_sym_sizeof] = ACTIONS(2786), + [anon_sym___alignof__] = ACTIONS(2786), + [anon_sym___alignof] = ACTIONS(2786), + [anon_sym__alignof] = ACTIONS(2786), + [anon_sym_alignof] = ACTIONS(2786), + [anon_sym__Alignof] = ACTIONS(2786), + [anon_sym_offsetof] = ACTIONS(2786), + [anon_sym__Generic] = ACTIONS(2786), + [anon_sym_asm] = ACTIONS(2786), + [anon_sym___asm__] = ACTIONS(2786), + [sym_number_literal] = ACTIONS(2788), + [anon_sym_L_SQUOTE] = ACTIONS(2788), + [anon_sym_u_SQUOTE] = ACTIONS(2788), + [anon_sym_U_SQUOTE] = ACTIONS(2788), + [anon_sym_u8_SQUOTE] = ACTIONS(2788), + [anon_sym_SQUOTE] = ACTIONS(2788), + [anon_sym_L_DQUOTE] = ACTIONS(2788), + [anon_sym_u_DQUOTE] = ACTIONS(2788), + [anon_sym_U_DQUOTE] = ACTIONS(2788), + [anon_sym_u8_DQUOTE] = ACTIONS(2788), + [anon_sym_DQUOTE] = ACTIONS(2788), + [sym_true] = ACTIONS(2786), + [sym_false] = ACTIONS(2786), + [anon_sym_NULL] = ACTIONS(2786), + [anon_sym_nullptr] = ACTIONS(2786), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2786), + [anon_sym_decltype] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(2786), + [anon_sym_alignas] = ACTIONS(2786), + [anon_sym_explicit] = ACTIONS(2786), + [anon_sym_typename] = ACTIONS(2786), + [anon_sym_template] = ACTIONS(2786), + [anon_sym_operator] = ACTIONS(2786), + [anon_sym_try] = ACTIONS(2786), + [anon_sym_delete] = ACTIONS(2786), + [anon_sym_throw] = ACTIONS(2786), + [anon_sym_namespace] = ACTIONS(2786), + [anon_sym_using] = ACTIONS(2786), + [anon_sym_static_assert] = ACTIONS(2786), + [anon_sym_concept] = ACTIONS(2786), + [anon_sym_co_return] = ACTIONS(2786), + [anon_sym_co_yield] = ACTIONS(2786), + [anon_sym_R_DQUOTE] = ACTIONS(2788), + [anon_sym_LR_DQUOTE] = ACTIONS(2788), + [anon_sym_uR_DQUOTE] = ACTIONS(2788), + [anon_sym_UR_DQUOTE] = ACTIONS(2788), + [anon_sym_u8R_DQUOTE] = ACTIONS(2788), + [anon_sym_co_await] = ACTIONS(2786), + [anon_sym_new] = ACTIONS(2786), + [anon_sym_requires] = ACTIONS(2786), + [sym_this] = ACTIONS(2786), }, - [611] = { - [sym_identifier] = ACTIONS(3458), - [aux_sym_preproc_include_token1] = ACTIONS(3458), - [aux_sym_preproc_def_token1] = ACTIONS(3458), - [aux_sym_preproc_if_token1] = ACTIONS(3458), - [aux_sym_preproc_if_token2] = ACTIONS(3458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3458), - [aux_sym_preproc_else_token1] = ACTIONS(3458), - [aux_sym_preproc_elif_token1] = ACTIONS(3458), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3458), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3458), - [sym_preproc_directive] = ACTIONS(3458), - [anon_sym_LPAREN2] = ACTIONS(3460), - [anon_sym_BANG] = ACTIONS(3460), - [anon_sym_TILDE] = ACTIONS(3460), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_STAR] = ACTIONS(3460), - [anon_sym_AMP_AMP] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(3458), - [anon_sym_SEMI] = ACTIONS(3460), - [anon_sym___extension__] = ACTIONS(3458), - [anon_sym_typedef] = ACTIONS(3458), - [anon_sym_extern] = ACTIONS(3458), - [anon_sym___attribute__] = ACTIONS(3458), - [anon_sym_COLON_COLON] = ACTIONS(3460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3460), - [anon_sym___declspec] = ACTIONS(3458), - [anon_sym___based] = ACTIONS(3458), - [anon_sym___cdecl] = ACTIONS(3458), - [anon_sym___clrcall] = ACTIONS(3458), - [anon_sym___stdcall] = ACTIONS(3458), - [anon_sym___fastcall] = ACTIONS(3458), - [anon_sym___thiscall] = ACTIONS(3458), - [anon_sym___vectorcall] = ACTIONS(3458), - [anon_sym_LBRACE] = ACTIONS(3460), - [anon_sym_signed] = ACTIONS(3458), - [anon_sym_unsigned] = ACTIONS(3458), - [anon_sym_long] = ACTIONS(3458), - [anon_sym_short] = ACTIONS(3458), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_static] = ACTIONS(3458), - [anon_sym_register] = ACTIONS(3458), - [anon_sym_inline] = ACTIONS(3458), - [anon_sym___inline] = ACTIONS(3458), - [anon_sym___inline__] = ACTIONS(3458), - [anon_sym___forceinline] = ACTIONS(3458), - [anon_sym_thread_local] = ACTIONS(3458), - [anon_sym___thread] = ACTIONS(3458), - [anon_sym_const] = ACTIONS(3458), - [anon_sym_constexpr] = ACTIONS(3458), - [anon_sym_volatile] = ACTIONS(3458), - [anon_sym_restrict] = ACTIONS(3458), - [anon_sym___restrict__] = ACTIONS(3458), - [anon_sym__Atomic] = ACTIONS(3458), - [anon_sym__Noreturn] = ACTIONS(3458), - [anon_sym_noreturn] = ACTIONS(3458), - [anon_sym_mutable] = ACTIONS(3458), - [anon_sym_constinit] = ACTIONS(3458), - [anon_sym_consteval] = ACTIONS(3458), - [sym_primitive_type] = ACTIONS(3458), - [anon_sym_enum] = ACTIONS(3458), - [anon_sym_class] = ACTIONS(3458), - [anon_sym_struct] = ACTIONS(3458), - [anon_sym_union] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_switch] = ACTIONS(3458), - [anon_sym_case] = ACTIONS(3458), - [anon_sym_default] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_break] = ACTIONS(3458), - [anon_sym_continue] = ACTIONS(3458), - [anon_sym_goto] = ACTIONS(3458), - [anon_sym_not] = ACTIONS(3458), - [anon_sym_compl] = ACTIONS(3458), - [anon_sym_DASH_DASH] = ACTIONS(3460), - [anon_sym_PLUS_PLUS] = ACTIONS(3460), - [anon_sym_sizeof] = ACTIONS(3458), - [anon_sym___alignof__] = ACTIONS(3458), - [anon_sym___alignof] = ACTIONS(3458), - [anon_sym__alignof] = ACTIONS(3458), - [anon_sym_alignof] = ACTIONS(3458), - [anon_sym__Alignof] = ACTIONS(3458), - [anon_sym_offsetof] = ACTIONS(3458), - [anon_sym__Generic] = ACTIONS(3458), - [anon_sym_asm] = ACTIONS(3458), - [anon_sym___asm__] = ACTIONS(3458), - [sym_number_literal] = ACTIONS(3460), - [anon_sym_L_SQUOTE] = ACTIONS(3460), - [anon_sym_u_SQUOTE] = ACTIONS(3460), - [anon_sym_U_SQUOTE] = ACTIONS(3460), - [anon_sym_u8_SQUOTE] = ACTIONS(3460), - [anon_sym_SQUOTE] = ACTIONS(3460), - [anon_sym_L_DQUOTE] = ACTIONS(3460), - [anon_sym_u_DQUOTE] = ACTIONS(3460), - [anon_sym_U_DQUOTE] = ACTIONS(3460), - [anon_sym_u8_DQUOTE] = ACTIONS(3460), - [anon_sym_DQUOTE] = ACTIONS(3460), - [sym_true] = ACTIONS(3458), - [sym_false] = ACTIONS(3458), - [anon_sym_NULL] = ACTIONS(3458), - [anon_sym_nullptr] = ACTIONS(3458), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3458), - [anon_sym_decltype] = ACTIONS(3458), - [anon_sym_virtual] = ACTIONS(3458), - [anon_sym_alignas] = ACTIONS(3458), - [anon_sym_explicit] = ACTIONS(3458), - [anon_sym_typename] = ACTIONS(3458), - [anon_sym_template] = ACTIONS(3458), - [anon_sym_operator] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_delete] = ACTIONS(3458), - [anon_sym_throw] = ACTIONS(3458), - [anon_sym_namespace] = ACTIONS(3458), - [anon_sym_using] = ACTIONS(3458), - [anon_sym_static_assert] = ACTIONS(3458), - [anon_sym_concept] = ACTIONS(3458), - [anon_sym_co_return] = ACTIONS(3458), - [anon_sym_co_yield] = ACTIONS(3458), - [anon_sym_R_DQUOTE] = ACTIONS(3460), - [anon_sym_LR_DQUOTE] = ACTIONS(3460), - [anon_sym_uR_DQUOTE] = ACTIONS(3460), - [anon_sym_UR_DQUOTE] = ACTIONS(3460), - [anon_sym_u8R_DQUOTE] = ACTIONS(3460), - [anon_sym_co_await] = ACTIONS(3458), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_requires] = ACTIONS(3458), - [sym_this] = ACTIONS(3458), + [595] = { + [ts_builtin_sym_end] = ACTIONS(2806), + [sym_identifier] = ACTIONS(2804), + [aux_sym_preproc_include_token1] = ACTIONS(2804), + [aux_sym_preproc_def_token1] = ACTIONS(2804), + [aux_sym_preproc_if_token1] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2804), + [sym_preproc_directive] = ACTIONS(2804), + [anon_sym_LPAREN2] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2806), + [anon_sym_DASH] = ACTIONS(2804), + [anon_sym_PLUS] = ACTIONS(2804), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_AMP_AMP] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym___extension__] = ACTIONS(2804), + [anon_sym_typedef] = ACTIONS(2804), + [anon_sym_extern] = ACTIONS(2804), + [anon_sym___attribute__] = ACTIONS(2804), + [anon_sym_COLON_COLON] = ACTIONS(2806), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2806), + [anon_sym___declspec] = ACTIONS(2804), + [anon_sym___based] = ACTIONS(2804), + [anon_sym___cdecl] = ACTIONS(2804), + [anon_sym___clrcall] = ACTIONS(2804), + [anon_sym___stdcall] = ACTIONS(2804), + [anon_sym___fastcall] = ACTIONS(2804), + [anon_sym___thiscall] = ACTIONS(2804), + [anon_sym___vectorcall] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_signed] = ACTIONS(2804), + [anon_sym_unsigned] = ACTIONS(2804), + [anon_sym_long] = ACTIONS(2804), + [anon_sym_short] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2804), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_register] = ACTIONS(2804), + [anon_sym_inline] = ACTIONS(2804), + [anon_sym___inline] = ACTIONS(2804), + [anon_sym___inline__] = ACTIONS(2804), + [anon_sym___forceinline] = ACTIONS(2804), + [anon_sym_thread_local] = ACTIONS(2804), + [anon_sym___thread] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_constexpr] = ACTIONS(2804), + [anon_sym_volatile] = ACTIONS(2804), + [anon_sym_restrict] = ACTIONS(2804), + [anon_sym___restrict__] = ACTIONS(2804), + [anon_sym__Atomic] = ACTIONS(2804), + [anon_sym__Noreturn] = ACTIONS(2804), + [anon_sym_noreturn] = ACTIONS(2804), + [anon_sym_mutable] = ACTIONS(2804), + [anon_sym_constinit] = ACTIONS(2804), + [anon_sym_consteval] = ACTIONS(2804), + [sym_primitive_type] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [anon_sym_class] = ACTIONS(2804), + [anon_sym_struct] = ACTIONS(2804), + [anon_sym_union] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2804), + [anon_sym_else] = ACTIONS(2804), + [anon_sym_switch] = ACTIONS(2804), + [anon_sym_case] = ACTIONS(2804), + [anon_sym_default] = ACTIONS(2804), + [anon_sym_while] = ACTIONS(2804), + [anon_sym_do] = ACTIONS(2804), + [anon_sym_for] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2804), + [anon_sym_break] = ACTIONS(2804), + [anon_sym_continue] = ACTIONS(2804), + [anon_sym_goto] = ACTIONS(2804), + [anon_sym_not] = ACTIONS(2804), + [anon_sym_compl] = ACTIONS(2804), + [anon_sym_DASH_DASH] = ACTIONS(2806), + [anon_sym_PLUS_PLUS] = ACTIONS(2806), + [anon_sym_sizeof] = ACTIONS(2804), + [anon_sym___alignof__] = ACTIONS(2804), + [anon_sym___alignof] = ACTIONS(2804), + [anon_sym__alignof] = ACTIONS(2804), + [anon_sym_alignof] = ACTIONS(2804), + [anon_sym__Alignof] = ACTIONS(2804), + [anon_sym_offsetof] = ACTIONS(2804), + [anon_sym__Generic] = ACTIONS(2804), + [anon_sym_asm] = ACTIONS(2804), + [anon_sym___asm__] = ACTIONS(2804), + [sym_number_literal] = ACTIONS(2806), + [anon_sym_L_SQUOTE] = ACTIONS(2806), + [anon_sym_u_SQUOTE] = ACTIONS(2806), + [anon_sym_U_SQUOTE] = ACTIONS(2806), + [anon_sym_u8_SQUOTE] = ACTIONS(2806), + [anon_sym_SQUOTE] = ACTIONS(2806), + [anon_sym_L_DQUOTE] = ACTIONS(2806), + [anon_sym_u_DQUOTE] = ACTIONS(2806), + [anon_sym_U_DQUOTE] = ACTIONS(2806), + [anon_sym_u8_DQUOTE] = ACTIONS(2806), + [anon_sym_DQUOTE] = ACTIONS(2806), + [sym_true] = ACTIONS(2804), + [sym_false] = ACTIONS(2804), + [anon_sym_NULL] = ACTIONS(2804), + [anon_sym_nullptr] = ACTIONS(2804), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2804), + [anon_sym_decltype] = ACTIONS(2804), + [anon_sym_virtual] = ACTIONS(2804), + [anon_sym_alignas] = ACTIONS(2804), + [anon_sym_explicit] = ACTIONS(2804), + [anon_sym_typename] = ACTIONS(2804), + [anon_sym_template] = ACTIONS(2804), + [anon_sym_operator] = ACTIONS(2804), + [anon_sym_try] = ACTIONS(2804), + [anon_sym_delete] = ACTIONS(2804), + [anon_sym_throw] = ACTIONS(2804), + [anon_sym_namespace] = ACTIONS(2804), + [anon_sym_using] = ACTIONS(2804), + [anon_sym_static_assert] = ACTIONS(2804), + [anon_sym_concept] = ACTIONS(2804), + [anon_sym_co_return] = ACTIONS(2804), + [anon_sym_co_yield] = ACTIONS(2804), + [anon_sym_R_DQUOTE] = ACTIONS(2806), + [anon_sym_LR_DQUOTE] = ACTIONS(2806), + [anon_sym_uR_DQUOTE] = ACTIONS(2806), + [anon_sym_UR_DQUOTE] = ACTIONS(2806), + [anon_sym_u8R_DQUOTE] = ACTIONS(2806), + [anon_sym_co_await] = ACTIONS(2804), + [anon_sym_new] = ACTIONS(2804), + [anon_sym_requires] = ACTIONS(2804), + [sym_this] = ACTIONS(2804), }, - [612] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [596] = { + [ts_builtin_sym_end] = ACTIONS(2780), + [sym_identifier] = ACTIONS(2778), + [aux_sym_preproc_include_token1] = ACTIONS(2778), + [aux_sym_preproc_def_token1] = ACTIONS(2778), + [aux_sym_preproc_if_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2778), + [anon_sym_LPAREN2] = ACTIONS(2780), + [anon_sym_BANG] = ACTIONS(2780), + [anon_sym_TILDE] = ACTIONS(2780), + [anon_sym_DASH] = ACTIONS(2778), + [anon_sym_PLUS] = ACTIONS(2778), + [anon_sym_STAR] = ACTIONS(2780), + [anon_sym_AMP_AMP] = ACTIONS(2780), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym___extension__] = ACTIONS(2778), + [anon_sym_typedef] = ACTIONS(2778), + [anon_sym_extern] = ACTIONS(2778), + [anon_sym___attribute__] = ACTIONS(2778), + [anon_sym_COLON_COLON] = ACTIONS(2780), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), + [anon_sym___declspec] = ACTIONS(2778), + [anon_sym___based] = ACTIONS(2778), + [anon_sym___cdecl] = ACTIONS(2778), + [anon_sym___clrcall] = ACTIONS(2778), + [anon_sym___stdcall] = ACTIONS(2778), + [anon_sym___fastcall] = ACTIONS(2778), + [anon_sym___thiscall] = ACTIONS(2778), + [anon_sym___vectorcall] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2780), + [anon_sym_signed] = ACTIONS(2778), + [anon_sym_unsigned] = ACTIONS(2778), + [anon_sym_long] = ACTIONS(2778), + [anon_sym_short] = ACTIONS(2778), + [anon_sym_LBRACK] = ACTIONS(2778), + [anon_sym_static] = ACTIONS(2778), + [anon_sym_register] = ACTIONS(2778), + [anon_sym_inline] = ACTIONS(2778), + [anon_sym___inline] = ACTIONS(2778), + [anon_sym___inline__] = ACTIONS(2778), + [anon_sym___forceinline] = ACTIONS(2778), + [anon_sym_thread_local] = ACTIONS(2778), + [anon_sym___thread] = ACTIONS(2778), + [anon_sym_const] = ACTIONS(2778), + [anon_sym_constexpr] = ACTIONS(2778), + [anon_sym_volatile] = ACTIONS(2778), + [anon_sym_restrict] = ACTIONS(2778), + [anon_sym___restrict__] = ACTIONS(2778), + [anon_sym__Atomic] = ACTIONS(2778), + [anon_sym__Noreturn] = ACTIONS(2778), + [anon_sym_noreturn] = ACTIONS(2778), + [anon_sym_mutable] = ACTIONS(2778), + [anon_sym_constinit] = ACTIONS(2778), + [anon_sym_consteval] = ACTIONS(2778), + [sym_primitive_type] = ACTIONS(2778), + [anon_sym_enum] = ACTIONS(2778), + [anon_sym_class] = ACTIONS(2778), + [anon_sym_struct] = ACTIONS(2778), + [anon_sym_union] = ACTIONS(2778), + [anon_sym_if] = ACTIONS(2778), + [anon_sym_else] = ACTIONS(2778), + [anon_sym_switch] = ACTIONS(2778), + [anon_sym_case] = ACTIONS(2778), + [anon_sym_default] = ACTIONS(2778), + [anon_sym_while] = ACTIONS(2778), + [anon_sym_do] = ACTIONS(2778), + [anon_sym_for] = ACTIONS(2778), + [anon_sym_return] = ACTIONS(2778), + [anon_sym_break] = ACTIONS(2778), + [anon_sym_continue] = ACTIONS(2778), + [anon_sym_goto] = ACTIONS(2778), + [anon_sym_not] = ACTIONS(2778), + [anon_sym_compl] = ACTIONS(2778), + [anon_sym_DASH_DASH] = ACTIONS(2780), + [anon_sym_PLUS_PLUS] = ACTIONS(2780), + [anon_sym_sizeof] = ACTIONS(2778), + [anon_sym___alignof__] = ACTIONS(2778), + [anon_sym___alignof] = ACTIONS(2778), + [anon_sym__alignof] = ACTIONS(2778), + [anon_sym_alignof] = ACTIONS(2778), + [anon_sym__Alignof] = ACTIONS(2778), + [anon_sym_offsetof] = ACTIONS(2778), + [anon_sym__Generic] = ACTIONS(2778), + [anon_sym_asm] = ACTIONS(2778), + [anon_sym___asm__] = ACTIONS(2778), + [sym_number_literal] = ACTIONS(2780), + [anon_sym_L_SQUOTE] = ACTIONS(2780), + [anon_sym_u_SQUOTE] = ACTIONS(2780), + [anon_sym_U_SQUOTE] = ACTIONS(2780), + [anon_sym_u8_SQUOTE] = ACTIONS(2780), + [anon_sym_SQUOTE] = ACTIONS(2780), + [anon_sym_L_DQUOTE] = ACTIONS(2780), + [anon_sym_u_DQUOTE] = ACTIONS(2780), + [anon_sym_U_DQUOTE] = ACTIONS(2780), + [anon_sym_u8_DQUOTE] = ACTIONS(2780), + [anon_sym_DQUOTE] = ACTIONS(2780), + [sym_true] = ACTIONS(2778), + [sym_false] = ACTIONS(2778), + [anon_sym_NULL] = ACTIONS(2778), + [anon_sym_nullptr] = ACTIONS(2778), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2778), + [anon_sym_virtual] = ACTIONS(2778), + [anon_sym_alignas] = ACTIONS(2778), + [anon_sym_explicit] = ACTIONS(2778), + [anon_sym_typename] = ACTIONS(2778), + [anon_sym_template] = ACTIONS(2778), + [anon_sym_operator] = ACTIONS(2778), + [anon_sym_try] = ACTIONS(2778), + [anon_sym_delete] = ACTIONS(2778), + [anon_sym_throw] = ACTIONS(2778), + [anon_sym_namespace] = ACTIONS(2778), + [anon_sym_using] = ACTIONS(2778), + [anon_sym_static_assert] = ACTIONS(2778), + [anon_sym_concept] = ACTIONS(2778), + [anon_sym_co_return] = ACTIONS(2778), + [anon_sym_co_yield] = ACTIONS(2778), + [anon_sym_R_DQUOTE] = ACTIONS(2780), + [anon_sym_LR_DQUOTE] = ACTIONS(2780), + [anon_sym_uR_DQUOTE] = ACTIONS(2780), + [anon_sym_UR_DQUOTE] = ACTIONS(2780), + [anon_sym_u8R_DQUOTE] = ACTIONS(2780), + [anon_sym_co_await] = ACTIONS(2778), + [anon_sym_new] = ACTIONS(2778), + [anon_sym_requires] = ACTIONS(2778), + [sym_this] = ACTIONS(2778), }, - [613] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [597] = { + [ts_builtin_sym_end] = ACTIONS(2866), + [sym_identifier] = ACTIONS(2864), + [aux_sym_preproc_include_token1] = ACTIONS(2864), + [aux_sym_preproc_def_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token1] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2864), + [sym_preproc_directive] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_AMP_AMP] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym___extension__] = ACTIONS(2864), + [anon_sym_typedef] = ACTIONS(2864), + [anon_sym_extern] = ACTIONS(2864), + [anon_sym___attribute__] = ACTIONS(2864), + [anon_sym_COLON_COLON] = ACTIONS(2866), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2866), + [anon_sym___declspec] = ACTIONS(2864), + [anon_sym___based] = ACTIONS(2864), + [anon_sym___cdecl] = ACTIONS(2864), + [anon_sym___clrcall] = ACTIONS(2864), + [anon_sym___stdcall] = ACTIONS(2864), + [anon_sym___fastcall] = ACTIONS(2864), + [anon_sym___thiscall] = ACTIONS(2864), + [anon_sym___vectorcall] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_signed] = ACTIONS(2864), + [anon_sym_unsigned] = ACTIONS(2864), + [anon_sym_long] = ACTIONS(2864), + [anon_sym_short] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_register] = ACTIONS(2864), + [anon_sym_inline] = ACTIONS(2864), + [anon_sym___inline] = ACTIONS(2864), + [anon_sym___inline__] = ACTIONS(2864), + [anon_sym___forceinline] = ACTIONS(2864), + [anon_sym_thread_local] = ACTIONS(2864), + [anon_sym___thread] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym___restrict__] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym__Noreturn] = ACTIONS(2864), + [anon_sym_noreturn] = ACTIONS(2864), + [anon_sym_mutable] = ACTIONS(2864), + [anon_sym_constinit] = ACTIONS(2864), + [anon_sym_consteval] = ACTIONS(2864), + [sym_primitive_type] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [anon_sym_class] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2864), + [anon_sym_union] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_else] = ACTIONS(2864), + [anon_sym_switch] = ACTIONS(2864), + [anon_sym_case] = ACTIONS(2864), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_goto] = ACTIONS(2864), + [anon_sym_not] = ACTIONS(2864), + [anon_sym_compl] = ACTIONS(2864), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_sizeof] = ACTIONS(2864), + [anon_sym___alignof__] = ACTIONS(2864), + [anon_sym___alignof] = ACTIONS(2864), + [anon_sym__alignof] = ACTIONS(2864), + [anon_sym_alignof] = ACTIONS(2864), + [anon_sym__Alignof] = ACTIONS(2864), + [anon_sym_offsetof] = ACTIONS(2864), + [anon_sym__Generic] = ACTIONS(2864), + [anon_sym_asm] = ACTIONS(2864), + [anon_sym___asm__] = ACTIONS(2864), + [sym_number_literal] = ACTIONS(2866), + [anon_sym_L_SQUOTE] = ACTIONS(2866), + [anon_sym_u_SQUOTE] = ACTIONS(2866), + [anon_sym_U_SQUOTE] = ACTIONS(2866), + [anon_sym_u8_SQUOTE] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_L_DQUOTE] = ACTIONS(2866), + [anon_sym_u_DQUOTE] = ACTIONS(2866), + [anon_sym_U_DQUOTE] = ACTIONS(2866), + [anon_sym_u8_DQUOTE] = ACTIONS(2866), + [anon_sym_DQUOTE] = ACTIONS(2866), + [sym_true] = ACTIONS(2864), + [sym_false] = ACTIONS(2864), + [anon_sym_NULL] = ACTIONS(2864), + [anon_sym_nullptr] = ACTIONS(2864), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2864), + [anon_sym_decltype] = ACTIONS(2864), + [anon_sym_virtual] = ACTIONS(2864), + [anon_sym_alignas] = ACTIONS(2864), + [anon_sym_explicit] = ACTIONS(2864), + [anon_sym_typename] = ACTIONS(2864), + [anon_sym_template] = ACTIONS(2864), + [anon_sym_operator] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_delete] = ACTIONS(2864), + [anon_sym_throw] = ACTIONS(2864), + [anon_sym_namespace] = ACTIONS(2864), + [anon_sym_using] = ACTIONS(2864), + [anon_sym_static_assert] = ACTIONS(2864), + [anon_sym_concept] = ACTIONS(2864), + [anon_sym_co_return] = ACTIONS(2864), + [anon_sym_co_yield] = ACTIONS(2864), + [anon_sym_R_DQUOTE] = ACTIONS(2866), + [anon_sym_LR_DQUOTE] = ACTIONS(2866), + [anon_sym_uR_DQUOTE] = ACTIONS(2866), + [anon_sym_UR_DQUOTE] = ACTIONS(2866), + [anon_sym_u8R_DQUOTE] = ACTIONS(2866), + [anon_sym_co_await] = ACTIONS(2864), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_requires] = ACTIONS(2864), + [sym_this] = ACTIONS(2864), }, - [614] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [598] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [615] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [599] = { + [ts_builtin_sym_end] = ACTIONS(2814), + [sym_identifier] = ACTIONS(2812), + [aux_sym_preproc_include_token1] = ACTIONS(2812), + [aux_sym_preproc_def_token1] = ACTIONS(2812), + [aux_sym_preproc_if_token1] = ACTIONS(2812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2812), + [sym_preproc_directive] = ACTIONS(2812), + [anon_sym_LPAREN2] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_TILDE] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_AMP_AMP] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym___extension__] = ACTIONS(2812), + [anon_sym_typedef] = ACTIONS(2812), + [anon_sym_extern] = ACTIONS(2812), + [anon_sym___attribute__] = ACTIONS(2812), + [anon_sym_COLON_COLON] = ACTIONS(2814), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2814), + [anon_sym___declspec] = ACTIONS(2812), + [anon_sym___based] = ACTIONS(2812), + [anon_sym___cdecl] = ACTIONS(2812), + [anon_sym___clrcall] = ACTIONS(2812), + [anon_sym___stdcall] = ACTIONS(2812), + [anon_sym___fastcall] = ACTIONS(2812), + [anon_sym___thiscall] = ACTIONS(2812), + [anon_sym___vectorcall] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_signed] = ACTIONS(2812), + [anon_sym_unsigned] = ACTIONS(2812), + [anon_sym_long] = ACTIONS(2812), + [anon_sym_short] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_register] = ACTIONS(2812), + [anon_sym_inline] = ACTIONS(2812), + [anon_sym___inline] = ACTIONS(2812), + [anon_sym___inline__] = ACTIONS(2812), + [anon_sym___forceinline] = ACTIONS(2812), + [anon_sym_thread_local] = ACTIONS(2812), + [anon_sym___thread] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_constexpr] = ACTIONS(2812), + [anon_sym_volatile] = ACTIONS(2812), + [anon_sym_restrict] = ACTIONS(2812), + [anon_sym___restrict__] = ACTIONS(2812), + [anon_sym__Atomic] = ACTIONS(2812), + [anon_sym__Noreturn] = ACTIONS(2812), + [anon_sym_noreturn] = ACTIONS(2812), + [anon_sym_mutable] = ACTIONS(2812), + [anon_sym_constinit] = ACTIONS(2812), + [anon_sym_consteval] = ACTIONS(2812), + [sym_primitive_type] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_class] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_union] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_else] = ACTIONS(2812), + [anon_sym_switch] = ACTIONS(2812), + [anon_sym_case] = ACTIONS(2812), + [anon_sym_default] = ACTIONS(2812), + [anon_sym_while] = ACTIONS(2812), + [anon_sym_do] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_goto] = ACTIONS(2812), + [anon_sym_not] = ACTIONS(2812), + [anon_sym_compl] = ACTIONS(2812), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_sizeof] = ACTIONS(2812), + [anon_sym___alignof__] = ACTIONS(2812), + [anon_sym___alignof] = ACTIONS(2812), + [anon_sym__alignof] = ACTIONS(2812), + [anon_sym_alignof] = ACTIONS(2812), + [anon_sym__Alignof] = ACTIONS(2812), + [anon_sym_offsetof] = ACTIONS(2812), + [anon_sym__Generic] = ACTIONS(2812), + [anon_sym_asm] = ACTIONS(2812), + [anon_sym___asm__] = ACTIONS(2812), + [sym_number_literal] = ACTIONS(2814), + [anon_sym_L_SQUOTE] = ACTIONS(2814), + [anon_sym_u_SQUOTE] = ACTIONS(2814), + [anon_sym_U_SQUOTE] = ACTIONS(2814), + [anon_sym_u8_SQUOTE] = ACTIONS(2814), + [anon_sym_SQUOTE] = ACTIONS(2814), + [anon_sym_L_DQUOTE] = ACTIONS(2814), + [anon_sym_u_DQUOTE] = ACTIONS(2814), + [anon_sym_U_DQUOTE] = ACTIONS(2814), + [anon_sym_u8_DQUOTE] = ACTIONS(2814), + [anon_sym_DQUOTE] = ACTIONS(2814), + [sym_true] = ACTIONS(2812), + [sym_false] = ACTIONS(2812), + [anon_sym_NULL] = ACTIONS(2812), + [anon_sym_nullptr] = ACTIONS(2812), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2812), + [anon_sym_decltype] = ACTIONS(2812), + [anon_sym_virtual] = ACTIONS(2812), + [anon_sym_alignas] = ACTIONS(2812), + [anon_sym_explicit] = ACTIONS(2812), + [anon_sym_typename] = ACTIONS(2812), + [anon_sym_template] = ACTIONS(2812), + [anon_sym_operator] = ACTIONS(2812), + [anon_sym_try] = ACTIONS(2812), + [anon_sym_delete] = ACTIONS(2812), + [anon_sym_throw] = ACTIONS(2812), + [anon_sym_namespace] = ACTIONS(2812), + [anon_sym_using] = ACTIONS(2812), + [anon_sym_static_assert] = ACTIONS(2812), + [anon_sym_concept] = ACTIONS(2812), + [anon_sym_co_return] = ACTIONS(2812), + [anon_sym_co_yield] = ACTIONS(2812), + [anon_sym_R_DQUOTE] = ACTIONS(2814), + [anon_sym_LR_DQUOTE] = ACTIONS(2814), + [anon_sym_uR_DQUOTE] = ACTIONS(2814), + [anon_sym_UR_DQUOTE] = ACTIONS(2814), + [anon_sym_u8R_DQUOTE] = ACTIONS(2814), + [anon_sym_co_await] = ACTIONS(2812), + [anon_sym_new] = ACTIONS(2812), + [anon_sym_requires] = ACTIONS(2812), + [sym_this] = ACTIONS(2812), }, - [616] = { - [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), - [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_extern] = ACTIONS(3019), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3019), - [anon_sym_constinit] = ACTIONS(3019), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3019), - [anon_sym_alignas] = 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_using] = 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), + [600] = { + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_include_token1] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2828), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym___cdecl] = ACTIONS(2138), + [anon_sym___clrcall] = ACTIONS(2138), + [anon_sym___stdcall] = ACTIONS(2138), + [anon_sym___fastcall] = ACTIONS(2138), + [anon_sym___thiscall] = ACTIONS(2138), + [anon_sym___vectorcall] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_goto] = ACTIONS(2138), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_compl] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_PLUS_PLUS] = ACTIONS(2136), + [anon_sym_sizeof] = ACTIONS(2138), + [anon_sym___alignof__] = ACTIONS(2138), + [anon_sym___alignof] = ACTIONS(2138), + [anon_sym__alignof] = ACTIONS(2138), + [anon_sym_alignof] = ACTIONS(2138), + [anon_sym__Alignof] = ACTIONS(2138), + [anon_sym_offsetof] = ACTIONS(2138), + [anon_sym__Generic] = ACTIONS(2138), + [anon_sym_asm] = ACTIONS(2138), + [anon_sym___asm__] = ACTIONS(2138), + [sym_number_literal] = ACTIONS(2136), + [anon_sym_L_SQUOTE] = ACTIONS(2136), + [anon_sym_u_SQUOTE] = ACTIONS(2136), + [anon_sym_U_SQUOTE] = ACTIONS(2136), + [anon_sym_u8_SQUOTE] = ACTIONS(2136), + [anon_sym_SQUOTE] = ACTIONS(2136), + [anon_sym_L_DQUOTE] = ACTIONS(2136), + [anon_sym_u_DQUOTE] = ACTIONS(2136), + [anon_sym_U_DQUOTE] = ACTIONS(2136), + [anon_sym_u8_DQUOTE] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2136), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [anon_sym_NULL] = ACTIONS(2138), + [anon_sym_nullptr] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), + [anon_sym_concept] = ACTIONS(2138), + [anon_sym_co_return] = ACTIONS(2138), + [anon_sym_co_yield] = ACTIONS(2138), + [anon_sym_R_DQUOTE] = ACTIONS(2136), + [anon_sym_LR_DQUOTE] = ACTIONS(2136), + [anon_sym_uR_DQUOTE] = ACTIONS(2136), + [anon_sym_UR_DQUOTE] = ACTIONS(2136), + [anon_sym_u8R_DQUOTE] = ACTIONS(2136), + [anon_sym_co_await] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_requires] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), }, - [617] = { - [sym_preproc_def] = STATE(1130), - [sym_preproc_function_def] = STATE(1130), - [sym_preproc_call] = STATE(1130), - [sym_preproc_if_in_field_declaration_list] = STATE(1130), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1130), - [sym_preproc_else_in_field_declaration_list] = STATE(9452), - [sym_preproc_elif_in_field_declaration_list] = STATE(9452), - [sym_type_definition] = STATE(1130), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6371), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6947), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1130), - [sym_field_declaration] = STATE(1130), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2398), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1130), - [sym_operator_cast] = STATE(7504), - [sym_inline_method_definition] = STATE(1130), - [sym__constructor_specifiers] = STATE(2398), - [sym_operator_cast_definition] = STATE(1130), - [sym_operator_cast_declaration] = STATE(1130), - [sym_constructor_or_destructor_definition] = STATE(1130), - [sym_constructor_or_destructor_declaration] = STATE(1130), - [sym_friend_declaration] = STATE(1130), - [sym_access_specifier] = STATE(9393), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1130), - [sym_alias_declaration] = STATE(1130), - [sym_static_assert_declaration] = STATE(1130), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7504), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1130), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2398), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3462), - [aux_sym_preproc_if_token1] = ACTIONS(3464), - [aux_sym_preproc_if_token2] = ACTIONS(3466), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3468), - [aux_sym_preproc_else_token1] = ACTIONS(2697), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3472), - [anon_sym_typedef] = ACTIONS(3474), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3476), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3478), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3480), - [anon_sym_static_assert] = ACTIONS(3482), + [601] = { + [sym_preproc_def] = STATE(601), + [sym_preproc_function_def] = STATE(601), + [sym_preproc_call] = STATE(601), + [sym_preproc_if_in_field_declaration_list] = STATE(601), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(601), + [sym_type_definition] = STATE(601), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5209), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5775), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(601), + [sym_field_declaration] = STATE(601), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1795), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(601), + [sym_operator_cast] = STATE(6107), + [sym_inline_method_definition] = STATE(601), + [sym__constructor_specifiers] = STATE(1795), + [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_access_specifier] = STATE(7215), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(601), + [sym_alias_declaration] = STATE(601), + [sym_static_assert_declaration] = STATE(601), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6107), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(601), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1795), + [sym_identifier] = ACTIONS(3283), + [aux_sym_preproc_def_token1] = ACTIONS(3415), + [aux_sym_preproc_if_token1] = ACTIONS(3418), + [aux_sym_preproc_if_token2] = ACTIONS(3292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3421), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3421), + [aux_sym_preproc_else_token1] = ACTIONS(3292), + [aux_sym_preproc_elif_token1] = ACTIONS(3292), + [sym_preproc_directive] = ACTIONS(3424), + [anon_sym_LPAREN2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_AMP_AMP] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym___extension__] = ACTIONS(3427), + [anon_sym_typedef] = ACTIONS(3430), + [anon_sym_extern] = ACTIONS(3321), + [anon_sym___attribute__] = ACTIONS(3324), + [anon_sym_COLON_COLON] = ACTIONS(3327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3330), + [anon_sym___declspec] = ACTIONS(3333), + [anon_sym___based] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3339), + [anon_sym_unsigned] = ACTIONS(3339), + [anon_sym_long] = ACTIONS(3339), + [anon_sym_short] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3321), + [anon_sym_register] = ACTIONS(3321), + [anon_sym_inline] = ACTIONS(3321), + [anon_sym___inline] = ACTIONS(3321), + [anon_sym___inline__] = ACTIONS(3321), + [anon_sym___forceinline] = ACTIONS(3321), + [anon_sym_thread_local] = ACTIONS(3321), + [anon_sym___thread] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3345), + [anon_sym_constexpr] = ACTIONS(3345), + [anon_sym_volatile] = ACTIONS(3345), + [anon_sym_restrict] = ACTIONS(3345), + [anon_sym___restrict__] = ACTIONS(3345), + [anon_sym__Atomic] = ACTIONS(3345), + [anon_sym__Noreturn] = ACTIONS(3345), + [anon_sym_noreturn] = ACTIONS(3345), + [anon_sym_mutable] = ACTIONS(3345), + [anon_sym_constinit] = ACTIONS(3345), + [anon_sym_consteval] = ACTIONS(3345), + [sym_primitive_type] = ACTIONS(3348), + [anon_sym_enum] = ACTIONS(3351), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3357), + [anon_sym_union] = ACTIONS(3360), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3363), + [anon_sym_decltype] = ACTIONS(3366), + [anon_sym_virtual] = ACTIONS(3369), + [anon_sym_alignas] = ACTIONS(3372), + [anon_sym_explicit] = ACTIONS(3375), + [anon_sym_typename] = ACTIONS(3378), + [anon_sym_template] = ACTIONS(3433), + [anon_sym_operator] = ACTIONS(3384), + [anon_sym_friend] = ACTIONS(3436), + [anon_sym_public] = ACTIONS(3390), + [anon_sym_private] = ACTIONS(3390), + [anon_sym_protected] = ACTIONS(3390), + [anon_sym_using] = ACTIONS(3439), + [anon_sym_static_assert] = ACTIONS(3442), }, - [618] = { - [sym_identifier] = ACTIONS(2853), - [aux_sym_preproc_include_token1] = ACTIONS(2853), - [aux_sym_preproc_def_token1] = ACTIONS(2853), - [aux_sym_preproc_if_token1] = ACTIONS(2853), - [aux_sym_preproc_if_token2] = ACTIONS(2853), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2853), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2853), - [aux_sym_preproc_else_token1] = ACTIONS(2853), - [aux_sym_preproc_elif_token1] = ACTIONS(2853), - [sym_preproc_directive] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), + [602] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), + }, + [603] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), + }, + [604] = { + [ts_builtin_sym_end] = ACTIONS(2858), + [sym_identifier] = ACTIONS(2856), + [aux_sym_preproc_include_token1] = ACTIONS(2856), + [aux_sym_preproc_def_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token1] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2856), + [sym_preproc_directive] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), [anon_sym_STAR] = ACTIONS(2858), [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_AMP] = ACTIONS(2856), [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym___extension__] = ACTIONS(2853), - [anon_sym_typedef] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym___attribute__] = ACTIONS(2853), + [anon_sym___extension__] = ACTIONS(2856), + [anon_sym_typedef] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym___attribute__] = ACTIONS(2856), [anon_sym_COLON_COLON] = ACTIONS(2858), [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), - [anon_sym___declspec] = ACTIONS(2853), - [anon_sym___based] = ACTIONS(2853), - [anon_sym___cdecl] = ACTIONS(2853), - [anon_sym___clrcall] = ACTIONS(2853), - [anon_sym___stdcall] = ACTIONS(2853), - [anon_sym___fastcall] = ACTIONS(2853), - [anon_sym___thiscall] = ACTIONS(2853), - [anon_sym___vectorcall] = ACTIONS(2853), + [anon_sym___declspec] = ACTIONS(2856), + [anon_sym___based] = ACTIONS(2856), + [anon_sym___cdecl] = ACTIONS(2856), + [anon_sym___clrcall] = ACTIONS(2856), + [anon_sym___stdcall] = ACTIONS(2856), + [anon_sym___fastcall] = ACTIONS(2856), + [anon_sym___thiscall] = ACTIONS(2856), + [anon_sym___vectorcall] = ACTIONS(2856), [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_signed] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym___inline] = ACTIONS(2853), - [anon_sym___inline__] = ACTIONS(2853), - [anon_sym___forceinline] = ACTIONS(2853), - [anon_sym_thread_local] = ACTIONS(2853), - [anon_sym___thread] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_constexpr] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym___restrict__] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym__Noreturn] = ACTIONS(2853), - [anon_sym_noreturn] = ACTIONS(2853), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_constinit] = ACTIONS(2853), - [anon_sym_consteval] = ACTIONS(2853), - [sym_primitive_type] = ACTIONS(2853), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_else] = ACTIONS(2853), - [anon_sym_switch] = ACTIONS(2853), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_default] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_do] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_goto] = ACTIONS(2853), - [anon_sym_not] = ACTIONS(2853), - [anon_sym_compl] = ACTIONS(2853), + [anon_sym_signed] = ACTIONS(2856), + [anon_sym_unsigned] = ACTIONS(2856), + [anon_sym_long] = ACTIONS(2856), + [anon_sym_short] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_register] = ACTIONS(2856), + [anon_sym_inline] = ACTIONS(2856), + [anon_sym___inline] = ACTIONS(2856), + [anon_sym___inline__] = ACTIONS(2856), + [anon_sym___forceinline] = ACTIONS(2856), + [anon_sym_thread_local] = ACTIONS(2856), + [anon_sym___thread] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_constexpr] = ACTIONS(2856), + [anon_sym_volatile] = ACTIONS(2856), + [anon_sym_restrict] = ACTIONS(2856), + [anon_sym___restrict__] = ACTIONS(2856), + [anon_sym__Atomic] = ACTIONS(2856), + [anon_sym__Noreturn] = ACTIONS(2856), + [anon_sym_noreturn] = ACTIONS(2856), + [anon_sym_mutable] = ACTIONS(2856), + [anon_sym_constinit] = ACTIONS(2856), + [anon_sym_consteval] = ACTIONS(2856), + [sym_primitive_type] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_class] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_else] = ACTIONS(2856), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_case] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_goto] = ACTIONS(2856), + [anon_sym_not] = ACTIONS(2856), + [anon_sym_compl] = ACTIONS(2856), [anon_sym_DASH_DASH] = ACTIONS(2858), [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_sizeof] = ACTIONS(2853), - [anon_sym___alignof__] = ACTIONS(2853), - [anon_sym___alignof] = ACTIONS(2853), - [anon_sym__alignof] = ACTIONS(2853), - [anon_sym_alignof] = ACTIONS(2853), - [anon_sym__Alignof] = ACTIONS(2853), - [anon_sym_offsetof] = ACTIONS(2853), - [anon_sym__Generic] = ACTIONS(2853), - [anon_sym_asm] = ACTIONS(2853), - [anon_sym___asm__] = ACTIONS(2853), + [anon_sym_sizeof] = ACTIONS(2856), + [anon_sym___alignof__] = ACTIONS(2856), + [anon_sym___alignof] = ACTIONS(2856), + [anon_sym__alignof] = ACTIONS(2856), + [anon_sym_alignof] = ACTIONS(2856), + [anon_sym__Alignof] = ACTIONS(2856), + [anon_sym_offsetof] = ACTIONS(2856), + [anon_sym__Generic] = ACTIONS(2856), + [anon_sym_asm] = ACTIONS(2856), + [anon_sym___asm__] = ACTIONS(2856), [sym_number_literal] = ACTIONS(2858), [anon_sym_L_SQUOTE] = ACTIONS(2858), [anon_sym_u_SQUOTE] = ACTIONS(2858), @@ -144205,15866 +138301,18903 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(2858), [anon_sym_u8_DQUOTE] = ACTIONS(2858), [anon_sym_DQUOTE] = ACTIONS(2858), - [sym_true] = ACTIONS(2853), - [sym_false] = ACTIONS(2853), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2853), - [anon_sym_decltype] = ACTIONS(2853), - [anon_sym_virtual] = ACTIONS(2853), - [anon_sym_alignas] = ACTIONS(2853), - [anon_sym_explicit] = ACTIONS(2853), - [anon_sym_typename] = ACTIONS(2853), - [anon_sym_template] = ACTIONS(2853), - [anon_sym_operator] = ACTIONS(2853), - [anon_sym_try] = ACTIONS(2853), - [anon_sym_delete] = ACTIONS(2853), - [anon_sym_throw] = ACTIONS(2853), - [anon_sym_namespace] = ACTIONS(2853), - [anon_sym_using] = ACTIONS(2853), - [anon_sym_static_assert] = ACTIONS(2853), - [anon_sym_concept] = ACTIONS(2853), - [anon_sym_co_return] = ACTIONS(2853), - [anon_sym_co_yield] = ACTIONS(2853), + [sym_true] = ACTIONS(2856), + [sym_false] = ACTIONS(2856), + [anon_sym_NULL] = ACTIONS(2856), + [anon_sym_nullptr] = ACTIONS(2856), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2856), + [anon_sym_decltype] = ACTIONS(2856), + [anon_sym_virtual] = ACTIONS(2856), + [anon_sym_alignas] = ACTIONS(2856), + [anon_sym_explicit] = ACTIONS(2856), + [anon_sym_typename] = ACTIONS(2856), + [anon_sym_template] = ACTIONS(2856), + [anon_sym_operator] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_delete] = ACTIONS(2856), + [anon_sym_throw] = ACTIONS(2856), + [anon_sym_namespace] = ACTIONS(2856), + [anon_sym_using] = ACTIONS(2856), + [anon_sym_static_assert] = ACTIONS(2856), + [anon_sym_concept] = ACTIONS(2856), + [anon_sym_co_return] = ACTIONS(2856), + [anon_sym_co_yield] = ACTIONS(2856), [anon_sym_R_DQUOTE] = ACTIONS(2858), [anon_sym_LR_DQUOTE] = ACTIONS(2858), [anon_sym_uR_DQUOTE] = ACTIONS(2858), [anon_sym_UR_DQUOTE] = ACTIONS(2858), [anon_sym_u8R_DQUOTE] = ACTIONS(2858), - [anon_sym_co_await] = ACTIONS(2853), - [anon_sym_new] = ACTIONS(2853), - [anon_sym_requires] = ACTIONS(2853), - [sym_this] = ACTIONS(2853), + [anon_sym_co_await] = ACTIONS(2856), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_requires] = ACTIONS(2856), + [sym_this] = ACTIONS(2856), }, - [619] = { - [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), - [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_extern] = ACTIONS(3015), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3015), - [anon_sym_constinit] = ACTIONS(3015), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3015), - [anon_sym_alignas] = 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_using] = 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), + [605] = { + [ts_builtin_sym_end] = ACTIONS(2878), + [sym_identifier] = ACTIONS(2876), + [aux_sym_preproc_include_token1] = ACTIONS(2876), + [aux_sym_preproc_def_token1] = ACTIONS(2876), + [aux_sym_preproc_if_token1] = ACTIONS(2876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2876), + [sym_preproc_directive] = ACTIONS(2876), + [anon_sym_LPAREN2] = ACTIONS(2878), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_TILDE] = ACTIONS(2878), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym___extension__] = ACTIONS(2876), + [anon_sym_typedef] = ACTIONS(2876), + [anon_sym_extern] = ACTIONS(2876), + [anon_sym___attribute__] = ACTIONS(2876), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2878), + [anon_sym___declspec] = ACTIONS(2876), + [anon_sym___based] = ACTIONS(2876), + [anon_sym___cdecl] = ACTIONS(2876), + [anon_sym___clrcall] = ACTIONS(2876), + [anon_sym___stdcall] = ACTIONS(2876), + [anon_sym___fastcall] = ACTIONS(2876), + [anon_sym___thiscall] = ACTIONS(2876), + [anon_sym___vectorcall] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_signed] = ACTIONS(2876), + [anon_sym_unsigned] = ACTIONS(2876), + [anon_sym_long] = ACTIONS(2876), + [anon_sym_short] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_register] = ACTIONS(2876), + [anon_sym_inline] = ACTIONS(2876), + [anon_sym___inline] = ACTIONS(2876), + [anon_sym___inline__] = ACTIONS(2876), + [anon_sym___forceinline] = ACTIONS(2876), + [anon_sym_thread_local] = ACTIONS(2876), + [anon_sym___thread] = ACTIONS(2876), + [anon_sym_const] = ACTIONS(2876), + [anon_sym_constexpr] = ACTIONS(2876), + [anon_sym_volatile] = ACTIONS(2876), + [anon_sym_restrict] = ACTIONS(2876), + [anon_sym___restrict__] = ACTIONS(2876), + [anon_sym__Atomic] = ACTIONS(2876), + [anon_sym__Noreturn] = ACTIONS(2876), + [anon_sym_noreturn] = ACTIONS(2876), + [anon_sym_mutable] = ACTIONS(2876), + [anon_sym_constinit] = ACTIONS(2876), + [anon_sym_consteval] = ACTIONS(2876), + [sym_primitive_type] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), + [anon_sym_class] = ACTIONS(2876), + [anon_sym_struct] = ACTIONS(2876), + [anon_sym_union] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_else] = ACTIONS(2876), + [anon_sym_switch] = ACTIONS(2876), + [anon_sym_case] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_goto] = ACTIONS(2876), + [anon_sym_not] = ACTIONS(2876), + [anon_sym_compl] = ACTIONS(2876), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_sizeof] = ACTIONS(2876), + [anon_sym___alignof__] = ACTIONS(2876), + [anon_sym___alignof] = ACTIONS(2876), + [anon_sym__alignof] = ACTIONS(2876), + [anon_sym_alignof] = ACTIONS(2876), + [anon_sym__Alignof] = ACTIONS(2876), + [anon_sym_offsetof] = ACTIONS(2876), + [anon_sym__Generic] = ACTIONS(2876), + [anon_sym_asm] = ACTIONS(2876), + [anon_sym___asm__] = ACTIONS(2876), + [sym_number_literal] = ACTIONS(2878), + [anon_sym_L_SQUOTE] = ACTIONS(2878), + [anon_sym_u_SQUOTE] = ACTIONS(2878), + [anon_sym_U_SQUOTE] = ACTIONS(2878), + [anon_sym_u8_SQUOTE] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_L_DQUOTE] = ACTIONS(2878), + [anon_sym_u_DQUOTE] = ACTIONS(2878), + [anon_sym_U_DQUOTE] = ACTIONS(2878), + [anon_sym_u8_DQUOTE] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [sym_true] = ACTIONS(2876), + [sym_false] = ACTIONS(2876), + [anon_sym_NULL] = ACTIONS(2876), + [anon_sym_nullptr] = ACTIONS(2876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2876), + [anon_sym_decltype] = ACTIONS(2876), + [anon_sym_virtual] = ACTIONS(2876), + [anon_sym_alignas] = ACTIONS(2876), + [anon_sym_explicit] = ACTIONS(2876), + [anon_sym_typename] = ACTIONS(2876), + [anon_sym_template] = ACTIONS(2876), + [anon_sym_operator] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_delete] = ACTIONS(2876), + [anon_sym_throw] = ACTIONS(2876), + [anon_sym_namespace] = ACTIONS(2876), + [anon_sym_using] = ACTIONS(2876), + [anon_sym_static_assert] = ACTIONS(2876), + [anon_sym_concept] = ACTIONS(2876), + [anon_sym_co_return] = ACTIONS(2876), + [anon_sym_co_yield] = ACTIONS(2876), + [anon_sym_R_DQUOTE] = ACTIONS(2878), + [anon_sym_LR_DQUOTE] = ACTIONS(2878), + [anon_sym_uR_DQUOTE] = ACTIONS(2878), + [anon_sym_UR_DQUOTE] = ACTIONS(2878), + [anon_sym_u8R_DQUOTE] = ACTIONS(2878), + [anon_sym_co_await] = ACTIONS(2876), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_requires] = ACTIONS(2876), + [sym_this] = ACTIONS(2876), }, - [620] = { - [sym_identifier] = ACTIONS(2981), - [aux_sym_preproc_include_token1] = ACTIONS(2981), - [aux_sym_preproc_def_token1] = ACTIONS(2981), - [aux_sym_preproc_if_token1] = ACTIONS(2981), - [aux_sym_preproc_if_token2] = ACTIONS(2981), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2981), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2981), - [aux_sym_preproc_else_token1] = ACTIONS(2981), - [aux_sym_preproc_elif_token1] = ACTIONS(2981), - [sym_preproc_directive] = ACTIONS(2981), - [anon_sym_LPAREN2] = ACTIONS(2983), - [anon_sym_BANG] = ACTIONS(2983), - [anon_sym_TILDE] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_AMP_AMP] = ACTIONS(2983), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_SEMI] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(2981), - [anon_sym_typedef] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym___attribute__] = ACTIONS(2981), - [anon_sym_COLON_COLON] = ACTIONS(2983), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), - [anon_sym___declspec] = ACTIONS(2981), - [anon_sym___based] = ACTIONS(2981), - [anon_sym___cdecl] = ACTIONS(2981), - [anon_sym___clrcall] = ACTIONS(2981), - [anon_sym___stdcall] = ACTIONS(2981), - [anon_sym___fastcall] = ACTIONS(2981), - [anon_sym___thiscall] = ACTIONS(2981), - [anon_sym___vectorcall] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_signed] = ACTIONS(2981), - [anon_sym_unsigned] = ACTIONS(2981), - [anon_sym_long] = ACTIONS(2981), - [anon_sym_short] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_static] = ACTIONS(2981), - [anon_sym_register] = ACTIONS(2981), - [anon_sym_inline] = ACTIONS(2981), - [anon_sym___inline] = ACTIONS(2981), - [anon_sym___inline__] = ACTIONS(2981), - [anon_sym___forceinline] = ACTIONS(2981), - [anon_sym_thread_local] = ACTIONS(2981), - [anon_sym___thread] = ACTIONS(2981), - [anon_sym_const] = ACTIONS(2981), - [anon_sym_constexpr] = ACTIONS(2981), - [anon_sym_volatile] = ACTIONS(2981), - [anon_sym_restrict] = ACTIONS(2981), - [anon_sym___restrict__] = ACTIONS(2981), - [anon_sym__Atomic] = ACTIONS(2981), - [anon_sym__Noreturn] = ACTIONS(2981), - [anon_sym_noreturn] = ACTIONS(2981), - [anon_sym_mutable] = ACTIONS(2981), - [anon_sym_constinit] = ACTIONS(2981), - [anon_sym_consteval] = ACTIONS(2981), - [sym_primitive_type] = ACTIONS(2981), - [anon_sym_enum] = ACTIONS(2981), - [anon_sym_class] = ACTIONS(2981), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_union] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_else] = ACTIONS(2981), - [anon_sym_switch] = ACTIONS(2981), - [anon_sym_case] = ACTIONS(2981), - [anon_sym_default] = ACTIONS(2981), - [anon_sym_while] = ACTIONS(2981), - [anon_sym_do] = ACTIONS(2981), - [anon_sym_for] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_goto] = ACTIONS(2981), - [anon_sym_not] = ACTIONS(2981), - [anon_sym_compl] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_sizeof] = ACTIONS(2981), - [anon_sym___alignof__] = ACTIONS(2981), - [anon_sym___alignof] = ACTIONS(2981), - [anon_sym__alignof] = ACTIONS(2981), - [anon_sym_alignof] = ACTIONS(2981), - [anon_sym__Alignof] = ACTIONS(2981), - [anon_sym_offsetof] = ACTIONS(2981), - [anon_sym__Generic] = ACTIONS(2981), - [anon_sym_asm] = ACTIONS(2981), - [anon_sym___asm__] = ACTIONS(2981), - [sym_number_literal] = ACTIONS(2983), - [anon_sym_L_SQUOTE] = ACTIONS(2983), - [anon_sym_u_SQUOTE] = ACTIONS(2983), - [anon_sym_U_SQUOTE] = ACTIONS(2983), - [anon_sym_u8_SQUOTE] = ACTIONS(2983), - [anon_sym_SQUOTE] = ACTIONS(2983), - [anon_sym_L_DQUOTE] = ACTIONS(2983), - [anon_sym_u_DQUOTE] = ACTIONS(2983), - [anon_sym_U_DQUOTE] = ACTIONS(2983), - [anon_sym_u8_DQUOTE] = ACTIONS(2983), - [anon_sym_DQUOTE] = ACTIONS(2983), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [anon_sym_NULL] = ACTIONS(2981), - [anon_sym_nullptr] = ACTIONS(2981), + [606] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2981), - [anon_sym_decltype] = ACTIONS(2981), - [anon_sym_virtual] = ACTIONS(2981), - [anon_sym_alignas] = ACTIONS(2981), - [anon_sym_explicit] = ACTIONS(2981), - [anon_sym_typename] = ACTIONS(2981), - [anon_sym_template] = ACTIONS(2981), - [anon_sym_operator] = ACTIONS(2981), - [anon_sym_try] = ACTIONS(2981), - [anon_sym_delete] = ACTIONS(2981), - [anon_sym_throw] = ACTIONS(2981), - [anon_sym_namespace] = ACTIONS(2981), - [anon_sym_using] = ACTIONS(2981), - [anon_sym_static_assert] = ACTIONS(2981), - [anon_sym_concept] = ACTIONS(2981), - [anon_sym_co_return] = ACTIONS(2981), - [anon_sym_co_yield] = ACTIONS(2981), - [anon_sym_R_DQUOTE] = ACTIONS(2983), - [anon_sym_LR_DQUOTE] = ACTIONS(2983), - [anon_sym_uR_DQUOTE] = ACTIONS(2983), - [anon_sym_UR_DQUOTE] = ACTIONS(2983), - [anon_sym_u8R_DQUOTE] = ACTIONS(2983), - [anon_sym_co_await] = ACTIONS(2981), - [anon_sym_new] = ACTIONS(2981), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2981), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [621] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [607] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [622] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [608] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), - }, - [623] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [624] = { - [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), - [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_extern] = ACTIONS(3045), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3045), - [anon_sym_constinit] = ACTIONS(3045), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3045), - [anon_sym_alignas] = 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_using] = 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), + [609] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [625] = { - [sym_identifier] = ACTIONS(3049), - [aux_sym_preproc_include_token1] = ACTIONS(3049), - [aux_sym_preproc_def_token1] = ACTIONS(3049), - [aux_sym_preproc_if_token1] = ACTIONS(3049), - [aux_sym_preproc_if_token2] = ACTIONS(3049), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3049), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3049), - [aux_sym_preproc_else_token1] = ACTIONS(3049), - [aux_sym_preproc_elif_token1] = ACTIONS(3049), - [sym_preproc_directive] = ACTIONS(3049), - [anon_sym_LPAREN2] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_SEMI] = ACTIONS(3051), - [anon_sym___extension__] = ACTIONS(3049), - [anon_sym_typedef] = ACTIONS(3049), - [anon_sym_extern] = ACTIONS(3049), - [anon_sym___attribute__] = ACTIONS(3049), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3051), - [anon_sym___declspec] = ACTIONS(3049), - [anon_sym___based] = ACTIONS(3049), - [anon_sym___cdecl] = ACTIONS(3049), - [anon_sym___clrcall] = ACTIONS(3049), - [anon_sym___stdcall] = ACTIONS(3049), - [anon_sym___fastcall] = ACTIONS(3049), - [anon_sym___thiscall] = ACTIONS(3049), - [anon_sym___vectorcall] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_signed] = ACTIONS(3049), - [anon_sym_unsigned] = ACTIONS(3049), - [anon_sym_long] = ACTIONS(3049), - [anon_sym_short] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_static] = ACTIONS(3049), - [anon_sym_register] = ACTIONS(3049), - [anon_sym_inline] = ACTIONS(3049), - [anon_sym___inline] = ACTIONS(3049), - [anon_sym___inline__] = ACTIONS(3049), - [anon_sym___forceinline] = ACTIONS(3049), - [anon_sym_thread_local] = ACTIONS(3049), - [anon_sym___thread] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_constexpr] = ACTIONS(3049), - [anon_sym_volatile] = ACTIONS(3049), - [anon_sym_restrict] = ACTIONS(3049), - [anon_sym___restrict__] = ACTIONS(3049), - [anon_sym__Atomic] = ACTIONS(3049), - [anon_sym__Noreturn] = ACTIONS(3049), - [anon_sym_noreturn] = ACTIONS(3049), - [anon_sym_mutable] = ACTIONS(3049), - [anon_sym_constinit] = ACTIONS(3049), - [anon_sym_consteval] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3049), - [anon_sym_enum] = ACTIONS(3049), - [anon_sym_class] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_union] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3049), - [anon_sym_switch] = ACTIONS(3049), - [anon_sym_case] = ACTIONS(3049), - [anon_sym_default] = ACTIONS(3049), - [anon_sym_while] = ACTIONS(3049), - [anon_sym_do] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3049), - [anon_sym_return] = ACTIONS(3049), - [anon_sym_break] = ACTIONS(3049), - [anon_sym_continue] = ACTIONS(3049), - [anon_sym_goto] = ACTIONS(3049), - [anon_sym_not] = ACTIONS(3049), - [anon_sym_compl] = ACTIONS(3049), - [anon_sym_DASH_DASH] = ACTIONS(3051), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_sizeof] = ACTIONS(3049), - [anon_sym___alignof__] = ACTIONS(3049), - [anon_sym___alignof] = ACTIONS(3049), - [anon_sym__alignof] = ACTIONS(3049), - [anon_sym_alignof] = ACTIONS(3049), - [anon_sym__Alignof] = ACTIONS(3049), - [anon_sym_offsetof] = ACTIONS(3049), - [anon_sym__Generic] = ACTIONS(3049), - [anon_sym_asm] = ACTIONS(3049), - [anon_sym___asm__] = ACTIONS(3049), - [sym_number_literal] = ACTIONS(3051), - [anon_sym_L_SQUOTE] = ACTIONS(3051), - [anon_sym_u_SQUOTE] = ACTIONS(3051), - [anon_sym_U_SQUOTE] = ACTIONS(3051), - [anon_sym_u8_SQUOTE] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3051), - [anon_sym_L_DQUOTE] = ACTIONS(3051), - [anon_sym_u_DQUOTE] = ACTIONS(3051), - [anon_sym_U_DQUOTE] = ACTIONS(3051), - [anon_sym_u8_DQUOTE] = ACTIONS(3051), - [anon_sym_DQUOTE] = ACTIONS(3051), - [sym_true] = ACTIONS(3049), - [sym_false] = ACTIONS(3049), - [anon_sym_NULL] = ACTIONS(3049), - [anon_sym_nullptr] = ACTIONS(3049), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3049), - [anon_sym_decltype] = ACTIONS(3049), - [anon_sym_virtual] = ACTIONS(3049), - [anon_sym_alignas] = ACTIONS(3049), - [anon_sym_explicit] = ACTIONS(3049), - [anon_sym_typename] = ACTIONS(3049), - [anon_sym_template] = ACTIONS(3049), - [anon_sym_operator] = ACTIONS(3049), - [anon_sym_try] = ACTIONS(3049), - [anon_sym_delete] = ACTIONS(3049), - [anon_sym_throw] = ACTIONS(3049), - [anon_sym_namespace] = ACTIONS(3049), - [anon_sym_using] = ACTIONS(3049), - [anon_sym_static_assert] = ACTIONS(3049), - [anon_sym_concept] = ACTIONS(3049), - [anon_sym_co_return] = ACTIONS(3049), - [anon_sym_co_yield] = ACTIONS(3049), - [anon_sym_R_DQUOTE] = ACTIONS(3051), - [anon_sym_LR_DQUOTE] = ACTIONS(3051), - [anon_sym_uR_DQUOTE] = ACTIONS(3051), - [anon_sym_UR_DQUOTE] = ACTIONS(3051), - [anon_sym_u8R_DQUOTE] = ACTIONS(3051), - [anon_sym_co_await] = ACTIONS(3049), - [anon_sym_new] = ACTIONS(3049), - [anon_sym_requires] = ACTIONS(3049), - [sym_this] = ACTIONS(3049), + [610] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [626] = { - [sym_identifier] = ACTIONS(3053), - [aux_sym_preproc_include_token1] = ACTIONS(3053), - [aux_sym_preproc_def_token1] = ACTIONS(3053), - [aux_sym_preproc_if_token1] = ACTIONS(3053), - [aux_sym_preproc_if_token2] = ACTIONS(3053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3053), - [aux_sym_preproc_else_token1] = ACTIONS(3053), - [aux_sym_preproc_elif_token1] = ACTIONS(3053), - [sym_preproc_directive] = ACTIONS(3053), - [anon_sym_LPAREN2] = ACTIONS(3055), - [anon_sym_BANG] = ACTIONS(3055), - [anon_sym_TILDE] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_AMP_AMP] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym___extension__] = ACTIONS(3053), - [anon_sym_typedef] = ACTIONS(3053), - [anon_sym_extern] = ACTIONS(3053), - [anon_sym___attribute__] = ACTIONS(3053), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3055), - [anon_sym___declspec] = ACTIONS(3053), - [anon_sym___based] = ACTIONS(3053), - [anon_sym___cdecl] = ACTIONS(3053), - [anon_sym___clrcall] = ACTIONS(3053), - [anon_sym___stdcall] = ACTIONS(3053), - [anon_sym___fastcall] = ACTIONS(3053), - [anon_sym___thiscall] = ACTIONS(3053), - [anon_sym___vectorcall] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3055), - [anon_sym_signed] = ACTIONS(3053), - [anon_sym_unsigned] = ACTIONS(3053), - [anon_sym_long] = ACTIONS(3053), - [anon_sym_short] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_static] = ACTIONS(3053), - [anon_sym_register] = ACTIONS(3053), - [anon_sym_inline] = ACTIONS(3053), - [anon_sym___inline] = ACTIONS(3053), - [anon_sym___inline__] = ACTIONS(3053), - [anon_sym___forceinline] = ACTIONS(3053), - [anon_sym_thread_local] = ACTIONS(3053), - [anon_sym___thread] = ACTIONS(3053), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_constexpr] = ACTIONS(3053), - [anon_sym_volatile] = ACTIONS(3053), - [anon_sym_restrict] = ACTIONS(3053), - [anon_sym___restrict__] = ACTIONS(3053), - [anon_sym__Atomic] = ACTIONS(3053), - [anon_sym__Noreturn] = ACTIONS(3053), - [anon_sym_noreturn] = ACTIONS(3053), - [anon_sym_mutable] = ACTIONS(3053), - [anon_sym_constinit] = ACTIONS(3053), - [anon_sym_consteval] = ACTIONS(3053), - [sym_primitive_type] = ACTIONS(3053), - [anon_sym_enum] = ACTIONS(3053), - [anon_sym_class] = ACTIONS(3053), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_union] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_else] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3053), - [anon_sym_case] = ACTIONS(3053), - [anon_sym_default] = ACTIONS(3053), - [anon_sym_while] = ACTIONS(3053), - [anon_sym_do] = ACTIONS(3053), - [anon_sym_for] = ACTIONS(3053), - [anon_sym_return] = ACTIONS(3053), - [anon_sym_break] = ACTIONS(3053), - [anon_sym_continue] = ACTIONS(3053), - [anon_sym_goto] = ACTIONS(3053), - [anon_sym_not] = ACTIONS(3053), - [anon_sym_compl] = ACTIONS(3053), - [anon_sym_DASH_DASH] = ACTIONS(3055), - [anon_sym_PLUS_PLUS] = ACTIONS(3055), - [anon_sym_sizeof] = ACTIONS(3053), - [anon_sym___alignof__] = ACTIONS(3053), - [anon_sym___alignof] = ACTIONS(3053), - [anon_sym__alignof] = ACTIONS(3053), - [anon_sym_alignof] = ACTIONS(3053), - [anon_sym__Alignof] = ACTIONS(3053), - [anon_sym_offsetof] = ACTIONS(3053), - [anon_sym__Generic] = ACTIONS(3053), - [anon_sym_asm] = ACTIONS(3053), - [anon_sym___asm__] = ACTIONS(3053), - [sym_number_literal] = ACTIONS(3055), - [anon_sym_L_SQUOTE] = ACTIONS(3055), - [anon_sym_u_SQUOTE] = ACTIONS(3055), - [anon_sym_U_SQUOTE] = ACTIONS(3055), - [anon_sym_u8_SQUOTE] = ACTIONS(3055), - [anon_sym_SQUOTE] = ACTIONS(3055), - [anon_sym_L_DQUOTE] = ACTIONS(3055), - [anon_sym_u_DQUOTE] = ACTIONS(3055), - [anon_sym_U_DQUOTE] = ACTIONS(3055), - [anon_sym_u8_DQUOTE] = ACTIONS(3055), - [anon_sym_DQUOTE] = ACTIONS(3055), - [sym_true] = ACTIONS(3053), - [sym_false] = ACTIONS(3053), - [anon_sym_NULL] = ACTIONS(3053), - [anon_sym_nullptr] = ACTIONS(3053), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3053), - [anon_sym_decltype] = ACTIONS(3053), - [anon_sym_virtual] = ACTIONS(3053), - [anon_sym_alignas] = ACTIONS(3053), - [anon_sym_explicit] = ACTIONS(3053), - [anon_sym_typename] = ACTIONS(3053), - [anon_sym_template] = ACTIONS(3053), - [anon_sym_operator] = ACTIONS(3053), - [anon_sym_try] = ACTIONS(3053), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_throw] = ACTIONS(3053), - [anon_sym_namespace] = ACTIONS(3053), - [anon_sym_using] = ACTIONS(3053), - [anon_sym_static_assert] = ACTIONS(3053), - [anon_sym_concept] = ACTIONS(3053), - [anon_sym_co_return] = ACTIONS(3053), - [anon_sym_co_yield] = ACTIONS(3053), - [anon_sym_R_DQUOTE] = ACTIONS(3055), - [anon_sym_LR_DQUOTE] = ACTIONS(3055), - [anon_sym_uR_DQUOTE] = ACTIONS(3055), - [anon_sym_UR_DQUOTE] = ACTIONS(3055), - [anon_sym_u8R_DQUOTE] = ACTIONS(3055), - [anon_sym_co_await] = ACTIONS(3053), - [anon_sym_new] = ACTIONS(3053), - [anon_sym_requires] = ACTIONS(3053), - [sym_this] = ACTIONS(3053), + [611] = { + [sym_identifier] = ACTIONS(2848), + [aux_sym_preproc_include_token1] = ACTIONS(2848), + [aux_sym_preproc_def_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token2] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2848), + [sym_preproc_directive] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_AMP_AMP] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym___extension__] = ACTIONS(2848), + [anon_sym_typedef] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym___attribute__] = ACTIONS(2848), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2850), + [anon_sym___declspec] = ACTIONS(2848), + [anon_sym___based] = ACTIONS(2848), + [anon_sym___cdecl] = ACTIONS(2848), + [anon_sym___clrcall] = ACTIONS(2848), + [anon_sym___stdcall] = ACTIONS(2848), + [anon_sym___fastcall] = ACTIONS(2848), + [anon_sym___thiscall] = ACTIONS(2848), + [anon_sym___vectorcall] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_signed] = ACTIONS(2848), + [anon_sym_unsigned] = ACTIONS(2848), + [anon_sym_long] = ACTIONS(2848), + [anon_sym_short] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_register] = ACTIONS(2848), + [anon_sym_inline] = ACTIONS(2848), + [anon_sym___inline] = ACTIONS(2848), + [anon_sym___inline__] = ACTIONS(2848), + [anon_sym___forceinline] = ACTIONS(2848), + [anon_sym_thread_local] = ACTIONS(2848), + [anon_sym___thread] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_constexpr] = ACTIONS(2848), + [anon_sym_volatile] = ACTIONS(2848), + [anon_sym_restrict] = ACTIONS(2848), + [anon_sym___restrict__] = ACTIONS(2848), + [anon_sym__Atomic] = ACTIONS(2848), + [anon_sym__Noreturn] = ACTIONS(2848), + [anon_sym_noreturn] = ACTIONS(2848), + [anon_sym_mutable] = ACTIONS(2848), + [anon_sym_constinit] = ACTIONS(2848), + [anon_sym_consteval] = ACTIONS(2848), + [sym_primitive_type] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_class] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2848), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_else] = ACTIONS(2848), + [anon_sym_switch] = ACTIONS(2848), + [anon_sym_case] = ACTIONS(2848), + [anon_sym_default] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_goto] = ACTIONS(2848), + [anon_sym_not] = ACTIONS(2848), + [anon_sym_compl] = ACTIONS(2848), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_sizeof] = ACTIONS(2848), + [anon_sym___alignof__] = ACTIONS(2848), + [anon_sym___alignof] = ACTIONS(2848), + [anon_sym__alignof] = ACTIONS(2848), + [anon_sym_alignof] = ACTIONS(2848), + [anon_sym__Alignof] = ACTIONS(2848), + [anon_sym_offsetof] = ACTIONS(2848), + [anon_sym__Generic] = ACTIONS(2848), + [anon_sym_asm] = ACTIONS(2848), + [anon_sym___asm__] = ACTIONS(2848), + [sym_number_literal] = ACTIONS(2850), + [anon_sym_L_SQUOTE] = ACTIONS(2850), + [anon_sym_u_SQUOTE] = ACTIONS(2850), + [anon_sym_U_SQUOTE] = ACTIONS(2850), + [anon_sym_u8_SQUOTE] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_L_DQUOTE] = ACTIONS(2850), + [anon_sym_u_DQUOTE] = ACTIONS(2850), + [anon_sym_U_DQUOTE] = ACTIONS(2850), + [anon_sym_u8_DQUOTE] = ACTIONS(2850), + [anon_sym_DQUOTE] = ACTIONS(2850), + [sym_true] = ACTIONS(2848), + [sym_false] = ACTIONS(2848), + [anon_sym_NULL] = ACTIONS(2848), + [anon_sym_nullptr] = ACTIONS(2848), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2848), + [anon_sym_decltype] = ACTIONS(2848), + [anon_sym_virtual] = ACTIONS(2848), + [anon_sym_alignas] = ACTIONS(2848), + [anon_sym_explicit] = ACTIONS(2848), + [anon_sym_typename] = ACTIONS(2848), + [anon_sym_template] = ACTIONS(2848), + [anon_sym_operator] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_delete] = ACTIONS(2848), + [anon_sym_throw] = ACTIONS(2848), + [anon_sym_namespace] = ACTIONS(2848), + [anon_sym_using] = ACTIONS(2848), + [anon_sym_static_assert] = ACTIONS(2848), + [anon_sym_concept] = ACTIONS(2848), + [anon_sym_co_return] = ACTIONS(2848), + [anon_sym_co_yield] = ACTIONS(2848), + [anon_sym_R_DQUOTE] = ACTIONS(2850), + [anon_sym_LR_DQUOTE] = ACTIONS(2850), + [anon_sym_uR_DQUOTE] = ACTIONS(2850), + [anon_sym_UR_DQUOTE] = ACTIONS(2850), + [anon_sym_u8R_DQUOTE] = ACTIONS(2850), + [anon_sym_co_await] = ACTIONS(2848), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_requires] = ACTIONS(2848), + [sym_this] = ACTIONS(2848), }, - [627] = { - [sym_identifier] = ACTIONS(3087), - [aux_sym_preproc_include_token1] = ACTIONS(3087), - [aux_sym_preproc_def_token1] = ACTIONS(3087), - [aux_sym_preproc_if_token1] = ACTIONS(3087), - [aux_sym_preproc_if_token2] = ACTIONS(3087), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), - [aux_sym_preproc_else_token1] = ACTIONS(3087), - [aux_sym_preproc_elif_token1] = ACTIONS(3087), - [sym_preproc_directive] = ACTIONS(3087), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_SEMI] = ACTIONS(3089), - [anon_sym___extension__] = ACTIONS(3087), - [anon_sym_typedef] = ACTIONS(3087), - [anon_sym_extern] = ACTIONS(3087), - [anon_sym___attribute__] = ACTIONS(3087), - [anon_sym_COLON_COLON] = ACTIONS(3089), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), - [anon_sym___declspec] = ACTIONS(3087), - [anon_sym___based] = ACTIONS(3087), - [anon_sym___cdecl] = ACTIONS(3087), - [anon_sym___clrcall] = ACTIONS(3087), - [anon_sym___stdcall] = ACTIONS(3087), - [anon_sym___fastcall] = ACTIONS(3087), - [anon_sym___thiscall] = ACTIONS(3087), - [anon_sym___vectorcall] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_signed] = ACTIONS(3087), - [anon_sym_unsigned] = ACTIONS(3087), - [anon_sym_long] = ACTIONS(3087), - [anon_sym_short] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_register] = ACTIONS(3087), - [anon_sym_inline] = ACTIONS(3087), - [anon_sym___inline] = ACTIONS(3087), - [anon_sym___inline__] = ACTIONS(3087), - [anon_sym___forceinline] = ACTIONS(3087), - [anon_sym_thread_local] = ACTIONS(3087), - [anon_sym___thread] = ACTIONS(3087), - [anon_sym_const] = ACTIONS(3087), - [anon_sym_constexpr] = ACTIONS(3087), - [anon_sym_volatile] = ACTIONS(3087), - [anon_sym_restrict] = ACTIONS(3087), - [anon_sym___restrict__] = ACTIONS(3087), - [anon_sym__Atomic] = ACTIONS(3087), - [anon_sym__Noreturn] = ACTIONS(3087), - [anon_sym_noreturn] = ACTIONS(3087), - [anon_sym_mutable] = ACTIONS(3087), - [anon_sym_constinit] = ACTIONS(3087), - [anon_sym_consteval] = ACTIONS(3087), - [sym_primitive_type] = ACTIONS(3087), - [anon_sym_enum] = ACTIONS(3087), - [anon_sym_class] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_union] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_else] = ACTIONS(3087), - [anon_sym_switch] = ACTIONS(3087), - [anon_sym_case] = ACTIONS(3087), - [anon_sym_default] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_goto] = ACTIONS(3087), - [anon_sym_not] = ACTIONS(3087), - [anon_sym_compl] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_sizeof] = ACTIONS(3087), - [anon_sym___alignof__] = ACTIONS(3087), - [anon_sym___alignof] = ACTIONS(3087), - [anon_sym__alignof] = ACTIONS(3087), - [anon_sym_alignof] = ACTIONS(3087), - [anon_sym__Alignof] = ACTIONS(3087), - [anon_sym_offsetof] = ACTIONS(3087), - [anon_sym__Generic] = ACTIONS(3087), - [anon_sym_asm] = ACTIONS(3087), - [anon_sym___asm__] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(3089), - [anon_sym_L_SQUOTE] = ACTIONS(3089), - [anon_sym_u_SQUOTE] = ACTIONS(3089), - [anon_sym_U_SQUOTE] = ACTIONS(3089), - [anon_sym_u8_SQUOTE] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_L_DQUOTE] = ACTIONS(3089), - [anon_sym_u_DQUOTE] = ACTIONS(3089), - [anon_sym_U_DQUOTE] = ACTIONS(3089), - [anon_sym_u8_DQUOTE] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(3089), - [sym_true] = ACTIONS(3087), - [sym_false] = ACTIONS(3087), - [anon_sym_NULL] = ACTIONS(3087), - [anon_sym_nullptr] = ACTIONS(3087), + [612] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3087), - [anon_sym_decltype] = ACTIONS(3087), - [anon_sym_virtual] = ACTIONS(3087), - [anon_sym_alignas] = ACTIONS(3087), - [anon_sym_explicit] = ACTIONS(3087), - [anon_sym_typename] = ACTIONS(3087), - [anon_sym_template] = ACTIONS(3087), - [anon_sym_operator] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_delete] = ACTIONS(3087), - [anon_sym_throw] = ACTIONS(3087), - [anon_sym_namespace] = ACTIONS(3087), - [anon_sym_using] = ACTIONS(3087), - [anon_sym_static_assert] = ACTIONS(3087), - [anon_sym_concept] = ACTIONS(3087), - [anon_sym_co_return] = ACTIONS(3087), - [anon_sym_co_yield] = ACTIONS(3087), - [anon_sym_R_DQUOTE] = ACTIONS(3089), - [anon_sym_LR_DQUOTE] = ACTIONS(3089), - [anon_sym_uR_DQUOTE] = ACTIONS(3089), - [anon_sym_UR_DQUOTE] = ACTIONS(3089), - [anon_sym_u8R_DQUOTE] = ACTIONS(3089), - [anon_sym_co_await] = ACTIONS(3087), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_requires] = ACTIONS(3087), - [sym_this] = ACTIONS(3087), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [628] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [613] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [629] = { - [sym_identifier] = ACTIONS(2985), - [aux_sym_preproc_include_token1] = ACTIONS(2985), - [aux_sym_preproc_def_token1] = ACTIONS(2985), - [aux_sym_preproc_if_token1] = ACTIONS(2985), - [aux_sym_preproc_if_token2] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2985), - [aux_sym_preproc_else_token1] = ACTIONS(2985), - [aux_sym_preproc_elif_token1] = ACTIONS(2985), - [sym_preproc_directive] = ACTIONS(2985), - [anon_sym_LPAREN2] = ACTIONS(2987), - [anon_sym_BANG] = ACTIONS(2987), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym___extension__] = ACTIONS(2985), - [anon_sym_typedef] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym___attribute__] = ACTIONS(2985), - [anon_sym_COLON_COLON] = ACTIONS(2987), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), - [anon_sym___declspec] = ACTIONS(2985), - [anon_sym___based] = ACTIONS(2985), - [anon_sym___cdecl] = ACTIONS(2985), - [anon_sym___clrcall] = ACTIONS(2985), - [anon_sym___stdcall] = ACTIONS(2985), - [anon_sym___fastcall] = ACTIONS(2985), - [anon_sym___thiscall] = ACTIONS(2985), - [anon_sym___vectorcall] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_signed] = ACTIONS(2985), - [anon_sym_unsigned] = ACTIONS(2985), - [anon_sym_long] = ACTIONS(2985), - [anon_sym_short] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_register] = ACTIONS(2985), - [anon_sym_inline] = ACTIONS(2985), - [anon_sym___inline] = ACTIONS(2985), - [anon_sym___inline__] = ACTIONS(2985), - [anon_sym___forceinline] = ACTIONS(2985), - [anon_sym_thread_local] = ACTIONS(2985), - [anon_sym___thread] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_constexpr] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_restrict] = ACTIONS(2985), - [anon_sym___restrict__] = ACTIONS(2985), - [anon_sym__Atomic] = ACTIONS(2985), - [anon_sym__Noreturn] = ACTIONS(2985), - [anon_sym_noreturn] = ACTIONS(2985), - [anon_sym_mutable] = ACTIONS(2985), - [anon_sym_constinit] = ACTIONS(2985), - [anon_sym_consteval] = ACTIONS(2985), - [sym_primitive_type] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_class] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_union] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_switch] = ACTIONS(2985), - [anon_sym_case] = ACTIONS(2985), - [anon_sym_default] = ACTIONS(2985), - [anon_sym_while] = ACTIONS(2985), - [anon_sym_do] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym_not] = ACTIONS(2985), - [anon_sym_compl] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_sizeof] = ACTIONS(2985), - [anon_sym___alignof__] = ACTIONS(2985), - [anon_sym___alignof] = ACTIONS(2985), - [anon_sym__alignof] = ACTIONS(2985), - [anon_sym_alignof] = ACTIONS(2985), - [anon_sym__Alignof] = ACTIONS(2985), - [anon_sym_offsetof] = ACTIONS(2985), - [anon_sym__Generic] = ACTIONS(2985), - [anon_sym_asm] = ACTIONS(2985), - [anon_sym___asm__] = ACTIONS(2985), - [sym_number_literal] = ACTIONS(2987), - [anon_sym_L_SQUOTE] = ACTIONS(2987), - [anon_sym_u_SQUOTE] = ACTIONS(2987), - [anon_sym_U_SQUOTE] = ACTIONS(2987), - [anon_sym_u8_SQUOTE] = ACTIONS(2987), - [anon_sym_SQUOTE] = ACTIONS(2987), - [anon_sym_L_DQUOTE] = ACTIONS(2987), - [anon_sym_u_DQUOTE] = ACTIONS(2987), - [anon_sym_U_DQUOTE] = ACTIONS(2987), - [anon_sym_u8_DQUOTE] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [anon_sym_NULL] = ACTIONS(2985), - [anon_sym_nullptr] = ACTIONS(2985), + [614] = { + [ts_builtin_sym_end] = ACTIONS(2832), + [sym_identifier] = ACTIONS(2830), + [aux_sym_preproc_include_token1] = ACTIONS(2830), + [aux_sym_preproc_def_token1] = ACTIONS(2830), + [aux_sym_preproc_if_token1] = ACTIONS(2830), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2830), + [sym_preproc_directive] = ACTIONS(2830), + [anon_sym_LPAREN2] = ACTIONS(2832), + [anon_sym_BANG] = ACTIONS(2832), + [anon_sym_TILDE] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2830), + [anon_sym_PLUS] = ACTIONS(2830), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_AMP_AMP] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2832), + [anon_sym___extension__] = ACTIONS(2830), + [anon_sym_typedef] = ACTIONS(2830), + [anon_sym_extern] = ACTIONS(2830), + [anon_sym___attribute__] = ACTIONS(2830), + [anon_sym_COLON_COLON] = ACTIONS(2832), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2832), + [anon_sym___declspec] = ACTIONS(2830), + [anon_sym___based] = ACTIONS(2830), + [anon_sym___cdecl] = ACTIONS(2830), + [anon_sym___clrcall] = ACTIONS(2830), + [anon_sym___stdcall] = ACTIONS(2830), + [anon_sym___fastcall] = ACTIONS(2830), + [anon_sym___thiscall] = ACTIONS(2830), + [anon_sym___vectorcall] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_signed] = ACTIONS(2830), + [anon_sym_unsigned] = ACTIONS(2830), + [anon_sym_long] = ACTIONS(2830), + [anon_sym_short] = ACTIONS(2830), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2830), + [anon_sym_register] = ACTIONS(2830), + [anon_sym_inline] = ACTIONS(2830), + [anon_sym___inline] = ACTIONS(2830), + [anon_sym___inline__] = ACTIONS(2830), + [anon_sym___forceinline] = ACTIONS(2830), + [anon_sym_thread_local] = ACTIONS(2830), + [anon_sym___thread] = ACTIONS(2830), + [anon_sym_const] = ACTIONS(2830), + [anon_sym_constexpr] = ACTIONS(2830), + [anon_sym_volatile] = ACTIONS(2830), + [anon_sym_restrict] = ACTIONS(2830), + [anon_sym___restrict__] = ACTIONS(2830), + [anon_sym__Atomic] = ACTIONS(2830), + [anon_sym__Noreturn] = ACTIONS(2830), + [anon_sym_noreturn] = ACTIONS(2830), + [anon_sym_mutable] = ACTIONS(2830), + [anon_sym_constinit] = ACTIONS(2830), + [anon_sym_consteval] = ACTIONS(2830), + [sym_primitive_type] = ACTIONS(2830), + [anon_sym_enum] = ACTIONS(2830), + [anon_sym_class] = ACTIONS(2830), + [anon_sym_struct] = ACTIONS(2830), + [anon_sym_union] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2830), + [anon_sym_else] = ACTIONS(2830), + [anon_sym_switch] = ACTIONS(2830), + [anon_sym_case] = ACTIONS(2830), + [anon_sym_default] = ACTIONS(2830), + [anon_sym_while] = ACTIONS(2830), + [anon_sym_do] = ACTIONS(2830), + [anon_sym_for] = ACTIONS(2830), + [anon_sym_return] = ACTIONS(2830), + [anon_sym_break] = ACTIONS(2830), + [anon_sym_continue] = ACTIONS(2830), + [anon_sym_goto] = ACTIONS(2830), + [anon_sym_not] = ACTIONS(2830), + [anon_sym_compl] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_sizeof] = ACTIONS(2830), + [anon_sym___alignof__] = ACTIONS(2830), + [anon_sym___alignof] = ACTIONS(2830), + [anon_sym__alignof] = ACTIONS(2830), + [anon_sym_alignof] = ACTIONS(2830), + [anon_sym__Alignof] = ACTIONS(2830), + [anon_sym_offsetof] = ACTIONS(2830), + [anon_sym__Generic] = ACTIONS(2830), + [anon_sym_asm] = ACTIONS(2830), + [anon_sym___asm__] = ACTIONS(2830), + [sym_number_literal] = ACTIONS(2832), + [anon_sym_L_SQUOTE] = ACTIONS(2832), + [anon_sym_u_SQUOTE] = ACTIONS(2832), + [anon_sym_U_SQUOTE] = ACTIONS(2832), + [anon_sym_u8_SQUOTE] = ACTIONS(2832), + [anon_sym_SQUOTE] = ACTIONS(2832), + [anon_sym_L_DQUOTE] = ACTIONS(2832), + [anon_sym_u_DQUOTE] = ACTIONS(2832), + [anon_sym_U_DQUOTE] = ACTIONS(2832), + [anon_sym_u8_DQUOTE] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [anon_sym_NULL] = ACTIONS(2830), + [anon_sym_nullptr] = ACTIONS(2830), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2830), + [anon_sym_decltype] = ACTIONS(2830), + [anon_sym_virtual] = ACTIONS(2830), + [anon_sym_alignas] = ACTIONS(2830), + [anon_sym_explicit] = ACTIONS(2830), + [anon_sym_typename] = ACTIONS(2830), + [anon_sym_template] = ACTIONS(2830), + [anon_sym_operator] = ACTIONS(2830), + [anon_sym_try] = ACTIONS(2830), + [anon_sym_delete] = ACTIONS(2830), + [anon_sym_throw] = ACTIONS(2830), + [anon_sym_namespace] = ACTIONS(2830), + [anon_sym_using] = ACTIONS(2830), + [anon_sym_static_assert] = ACTIONS(2830), + [anon_sym_concept] = ACTIONS(2830), + [anon_sym_co_return] = ACTIONS(2830), + [anon_sym_co_yield] = ACTIONS(2830), + [anon_sym_R_DQUOTE] = ACTIONS(2832), + [anon_sym_LR_DQUOTE] = ACTIONS(2832), + [anon_sym_uR_DQUOTE] = ACTIONS(2832), + [anon_sym_UR_DQUOTE] = ACTIONS(2832), + [anon_sym_u8R_DQUOTE] = ACTIONS(2832), + [anon_sym_co_await] = ACTIONS(2830), + [anon_sym_new] = ACTIONS(2830), + [anon_sym_requires] = ACTIONS(2830), + [sym_this] = ACTIONS(2830), + }, + [615] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2985), - [anon_sym_decltype] = ACTIONS(2985), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_alignas] = ACTIONS(2985), - [anon_sym_explicit] = ACTIONS(2985), - [anon_sym_typename] = ACTIONS(2985), - [anon_sym_template] = ACTIONS(2985), - [anon_sym_operator] = ACTIONS(2985), - [anon_sym_try] = ACTIONS(2985), - [anon_sym_delete] = ACTIONS(2985), - [anon_sym_throw] = ACTIONS(2985), - [anon_sym_namespace] = ACTIONS(2985), - [anon_sym_using] = ACTIONS(2985), - [anon_sym_static_assert] = ACTIONS(2985), - [anon_sym_concept] = ACTIONS(2985), - [anon_sym_co_return] = ACTIONS(2985), - [anon_sym_co_yield] = ACTIONS(2985), - [anon_sym_R_DQUOTE] = ACTIONS(2987), - [anon_sym_LR_DQUOTE] = ACTIONS(2987), - [anon_sym_uR_DQUOTE] = ACTIONS(2987), - [anon_sym_UR_DQUOTE] = ACTIONS(2987), - [anon_sym_u8R_DQUOTE] = ACTIONS(2987), - [anon_sym_co_await] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_requires] = ACTIONS(2985), - [sym_this] = ACTIONS(2985), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [630] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [616] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [631] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [617] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), + }, + [618] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [619] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [620] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [621] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [622] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [623] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [624] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [625] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [626] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [627] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [628] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [629] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [630] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [631] = { + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [632] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [ts_builtin_sym_end] = ACTIONS(2838), + [sym_identifier] = ACTIONS(2836), + [aux_sym_preproc_include_token1] = ACTIONS(2836), + [aux_sym_preproc_def_token1] = ACTIONS(2836), + [aux_sym_preproc_if_token1] = ACTIONS(2836), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2836), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2836), + [sym_preproc_directive] = ACTIONS(2836), + [anon_sym_LPAREN2] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(2838), + [anon_sym_TILDE] = ACTIONS(2838), + [anon_sym_DASH] = ACTIONS(2836), + [anon_sym_PLUS] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_AMP_AMP] = ACTIONS(2838), + [anon_sym_AMP] = ACTIONS(2836), + [anon_sym_SEMI] = ACTIONS(2838), + [anon_sym___extension__] = ACTIONS(2836), + [anon_sym_typedef] = ACTIONS(2836), + [anon_sym_extern] = ACTIONS(2836), + [anon_sym___attribute__] = ACTIONS(2836), + [anon_sym_COLON_COLON] = ACTIONS(2838), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2838), + [anon_sym___declspec] = ACTIONS(2836), + [anon_sym___based] = ACTIONS(2836), + [anon_sym___cdecl] = ACTIONS(2836), + [anon_sym___clrcall] = ACTIONS(2836), + [anon_sym___stdcall] = ACTIONS(2836), + [anon_sym___fastcall] = ACTIONS(2836), + [anon_sym___thiscall] = ACTIONS(2836), + [anon_sym___vectorcall] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_signed] = ACTIONS(2836), + [anon_sym_unsigned] = ACTIONS(2836), + [anon_sym_long] = ACTIONS(2836), + [anon_sym_short] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_static] = ACTIONS(2836), + [anon_sym_register] = ACTIONS(2836), + [anon_sym_inline] = ACTIONS(2836), + [anon_sym___inline] = ACTIONS(2836), + [anon_sym___inline__] = ACTIONS(2836), + [anon_sym___forceinline] = ACTIONS(2836), + [anon_sym_thread_local] = ACTIONS(2836), + [anon_sym___thread] = ACTIONS(2836), + [anon_sym_const] = ACTIONS(2836), + [anon_sym_constexpr] = ACTIONS(2836), + [anon_sym_volatile] = ACTIONS(2836), + [anon_sym_restrict] = ACTIONS(2836), + [anon_sym___restrict__] = ACTIONS(2836), + [anon_sym__Atomic] = ACTIONS(2836), + [anon_sym__Noreturn] = ACTIONS(2836), + [anon_sym_noreturn] = ACTIONS(2836), + [anon_sym_mutable] = ACTIONS(2836), + [anon_sym_constinit] = ACTIONS(2836), + [anon_sym_consteval] = ACTIONS(2836), + [sym_primitive_type] = ACTIONS(2836), + [anon_sym_enum] = ACTIONS(2836), + [anon_sym_class] = ACTIONS(2836), + [anon_sym_struct] = ACTIONS(2836), + [anon_sym_union] = ACTIONS(2836), + [anon_sym_if] = ACTIONS(2836), + [anon_sym_else] = ACTIONS(2836), + [anon_sym_switch] = ACTIONS(2836), + [anon_sym_case] = ACTIONS(2836), + [anon_sym_default] = ACTIONS(2836), + [anon_sym_while] = ACTIONS(2836), + [anon_sym_do] = ACTIONS(2836), + [anon_sym_for] = ACTIONS(2836), + [anon_sym_return] = ACTIONS(2836), + [anon_sym_break] = ACTIONS(2836), + [anon_sym_continue] = ACTIONS(2836), + [anon_sym_goto] = ACTIONS(2836), + [anon_sym_not] = ACTIONS(2836), + [anon_sym_compl] = ACTIONS(2836), + [anon_sym_DASH_DASH] = ACTIONS(2838), + [anon_sym_PLUS_PLUS] = ACTIONS(2838), + [anon_sym_sizeof] = ACTIONS(2836), + [anon_sym___alignof__] = ACTIONS(2836), + [anon_sym___alignof] = ACTIONS(2836), + [anon_sym__alignof] = ACTIONS(2836), + [anon_sym_alignof] = ACTIONS(2836), + [anon_sym__Alignof] = ACTIONS(2836), + [anon_sym_offsetof] = ACTIONS(2836), + [anon_sym__Generic] = ACTIONS(2836), + [anon_sym_asm] = ACTIONS(2836), + [anon_sym___asm__] = ACTIONS(2836), + [sym_number_literal] = ACTIONS(2838), + [anon_sym_L_SQUOTE] = ACTIONS(2838), + [anon_sym_u_SQUOTE] = ACTIONS(2838), + [anon_sym_U_SQUOTE] = ACTIONS(2838), + [anon_sym_u8_SQUOTE] = ACTIONS(2838), + [anon_sym_SQUOTE] = ACTIONS(2838), + [anon_sym_L_DQUOTE] = ACTIONS(2838), + [anon_sym_u_DQUOTE] = ACTIONS(2838), + [anon_sym_U_DQUOTE] = ACTIONS(2838), + [anon_sym_u8_DQUOTE] = ACTIONS(2838), + [anon_sym_DQUOTE] = ACTIONS(2838), + [sym_true] = ACTIONS(2836), + [sym_false] = ACTIONS(2836), + [anon_sym_NULL] = ACTIONS(2836), + [anon_sym_nullptr] = ACTIONS(2836), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2836), + [anon_sym_decltype] = ACTIONS(2836), + [anon_sym_virtual] = ACTIONS(2836), + [anon_sym_alignas] = ACTIONS(2836), + [anon_sym_explicit] = ACTIONS(2836), + [anon_sym_typename] = ACTIONS(2836), + [anon_sym_template] = ACTIONS(2836), + [anon_sym_operator] = ACTIONS(2836), + [anon_sym_try] = ACTIONS(2836), + [anon_sym_delete] = ACTIONS(2836), + [anon_sym_throw] = ACTIONS(2836), + [anon_sym_namespace] = ACTIONS(2836), + [anon_sym_using] = ACTIONS(2836), + [anon_sym_static_assert] = ACTIONS(2836), + [anon_sym_concept] = ACTIONS(2836), + [anon_sym_co_return] = ACTIONS(2836), + [anon_sym_co_yield] = ACTIONS(2836), + [anon_sym_R_DQUOTE] = ACTIONS(2838), + [anon_sym_LR_DQUOTE] = ACTIONS(2838), + [anon_sym_uR_DQUOTE] = ACTIONS(2838), + [anon_sym_UR_DQUOTE] = ACTIONS(2838), + [anon_sym_u8R_DQUOTE] = ACTIONS(2838), + [anon_sym_co_await] = ACTIONS(2836), + [anon_sym_new] = ACTIONS(2836), + [anon_sym_requires] = ACTIONS(2836), + [sym_this] = ACTIONS(2836), }, [633] = { - [sym_identifier] = ACTIONS(2961), - [aux_sym_preproc_include_token1] = ACTIONS(2961), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token2] = ACTIONS(2961), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2961), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2961), - [aux_sym_preproc_else_token1] = ACTIONS(2961), - [aux_sym_preproc_elif_token1] = ACTIONS(2961), - [sym_preproc_directive] = ACTIONS(2961), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_SEMI] = ACTIONS(2963), - [anon_sym___extension__] = ACTIONS(2961), - [anon_sym_typedef] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym_COLON_COLON] = ACTIONS(2963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), - [anon_sym___declspec] = ACTIONS(2961), - [anon_sym___based] = ACTIONS(2961), - [anon_sym___cdecl] = ACTIONS(2961), - [anon_sym___clrcall] = ACTIONS(2961), - [anon_sym___stdcall] = ACTIONS(2961), - [anon_sym___fastcall] = ACTIONS(2961), - [anon_sym___thiscall] = ACTIONS(2961), - [anon_sym___vectorcall] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_signed] = ACTIONS(2961), - [anon_sym_unsigned] = ACTIONS(2961), - [anon_sym_long] = ACTIONS(2961), - [anon_sym_short] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_static] = ACTIONS(2961), - [anon_sym_register] = ACTIONS(2961), - [anon_sym_inline] = ACTIONS(2961), - [anon_sym___inline] = ACTIONS(2961), - [anon_sym___inline__] = ACTIONS(2961), - [anon_sym___forceinline] = ACTIONS(2961), - [anon_sym_thread_local] = ACTIONS(2961), - [anon_sym___thread] = ACTIONS(2961), - [anon_sym_const] = ACTIONS(2961), - [anon_sym_constexpr] = ACTIONS(2961), - [anon_sym_volatile] = ACTIONS(2961), - [anon_sym_restrict] = ACTIONS(2961), - [anon_sym___restrict__] = ACTIONS(2961), - [anon_sym__Atomic] = ACTIONS(2961), - [anon_sym__Noreturn] = ACTIONS(2961), - [anon_sym_noreturn] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [sym_primitive_type] = ACTIONS(2961), - [anon_sym_enum] = ACTIONS(2961), - [anon_sym_class] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_union] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_else] = ACTIONS(2961), - [anon_sym_switch] = ACTIONS(2961), - [anon_sym_case] = ACTIONS(2961), - [anon_sym_default] = ACTIONS(2961), - [anon_sym_while] = ACTIONS(2961), - [anon_sym_do] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2961), - [anon_sym_break] = ACTIONS(2961), - [anon_sym_continue] = ACTIONS(2961), - [anon_sym_goto] = ACTIONS(2961), - [anon_sym_not] = ACTIONS(2961), - [anon_sym_compl] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_sizeof] = ACTIONS(2961), - [anon_sym___alignof__] = ACTIONS(2961), - [anon_sym___alignof] = ACTIONS(2961), - [anon_sym__alignof] = ACTIONS(2961), - [anon_sym_alignof] = ACTIONS(2961), - [anon_sym__Alignof] = ACTIONS(2961), - [anon_sym_offsetof] = ACTIONS(2961), - [anon_sym__Generic] = ACTIONS(2961), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2963), - [anon_sym_u_SQUOTE] = ACTIONS(2963), - [anon_sym_U_SQUOTE] = ACTIONS(2963), - [anon_sym_u8_SQUOTE] = ACTIONS(2963), - [anon_sym_SQUOTE] = ACTIONS(2963), - [anon_sym_L_DQUOTE] = ACTIONS(2963), - [anon_sym_u_DQUOTE] = ACTIONS(2963), - [anon_sym_U_DQUOTE] = ACTIONS(2963), - [anon_sym_u8_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [anon_sym_NULL] = ACTIONS(2961), - [anon_sym_nullptr] = ACTIONS(2961), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2961), - [anon_sym_decltype] = ACTIONS(2961), - [anon_sym_virtual] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym_explicit] = ACTIONS(2961), - [anon_sym_typename] = ACTIONS(2961), - [anon_sym_template] = ACTIONS(2961), - [anon_sym_operator] = ACTIONS(2961), - [anon_sym_try] = ACTIONS(2961), - [anon_sym_delete] = ACTIONS(2961), - [anon_sym_throw] = ACTIONS(2961), - [anon_sym_namespace] = ACTIONS(2961), - [anon_sym_using] = ACTIONS(2961), - [anon_sym_static_assert] = ACTIONS(2961), - [anon_sym_concept] = ACTIONS(2961), - [anon_sym_co_return] = ACTIONS(2961), - [anon_sym_co_yield] = ACTIONS(2961), - [anon_sym_R_DQUOTE] = ACTIONS(2963), - [anon_sym_LR_DQUOTE] = ACTIONS(2963), - [anon_sym_uR_DQUOTE] = ACTIONS(2963), - [anon_sym_UR_DQUOTE] = ACTIONS(2963), - [anon_sym_u8R_DQUOTE] = ACTIONS(2963), - [anon_sym_co_await] = ACTIONS(2961), - [anon_sym_new] = ACTIONS(2961), - [anon_sym_requires] = ACTIONS(2961), - [sym_this] = ACTIONS(2961), + [ts_builtin_sym_end] = ACTIONS(2842), + [sym_identifier] = ACTIONS(2840), + [aux_sym_preproc_include_token1] = ACTIONS(2840), + [aux_sym_preproc_def_token1] = ACTIONS(2840), + [aux_sym_preproc_if_token1] = ACTIONS(2840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2840), + [sym_preproc_directive] = ACTIONS(2840), + [anon_sym_LPAREN2] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_TILDE] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_AMP_AMP] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2840), + [anon_sym_SEMI] = ACTIONS(2842), + [anon_sym___extension__] = ACTIONS(2840), + [anon_sym_typedef] = ACTIONS(2840), + [anon_sym_extern] = ACTIONS(2840), + [anon_sym___attribute__] = ACTIONS(2840), + [anon_sym_COLON_COLON] = ACTIONS(2842), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2842), + [anon_sym___declspec] = ACTIONS(2840), + [anon_sym___based] = ACTIONS(2840), + [anon_sym___cdecl] = ACTIONS(2840), + [anon_sym___clrcall] = ACTIONS(2840), + [anon_sym___stdcall] = ACTIONS(2840), + [anon_sym___fastcall] = ACTIONS(2840), + [anon_sym___thiscall] = ACTIONS(2840), + [anon_sym___vectorcall] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_signed] = ACTIONS(2840), + [anon_sym_unsigned] = ACTIONS(2840), + [anon_sym_long] = ACTIONS(2840), + [anon_sym_short] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2840), + [anon_sym_static] = ACTIONS(2840), + [anon_sym_register] = ACTIONS(2840), + [anon_sym_inline] = ACTIONS(2840), + [anon_sym___inline] = ACTIONS(2840), + [anon_sym___inline__] = ACTIONS(2840), + [anon_sym___forceinline] = ACTIONS(2840), + [anon_sym_thread_local] = ACTIONS(2840), + [anon_sym___thread] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2840), + [anon_sym_constexpr] = ACTIONS(2840), + [anon_sym_volatile] = ACTIONS(2840), + [anon_sym_restrict] = ACTIONS(2840), + [anon_sym___restrict__] = ACTIONS(2840), + [anon_sym__Atomic] = ACTIONS(2840), + [anon_sym__Noreturn] = ACTIONS(2840), + [anon_sym_noreturn] = ACTIONS(2840), + [anon_sym_mutable] = ACTIONS(2840), + [anon_sym_constinit] = ACTIONS(2840), + [anon_sym_consteval] = ACTIONS(2840), + [sym_primitive_type] = ACTIONS(2840), + [anon_sym_enum] = ACTIONS(2840), + [anon_sym_class] = ACTIONS(2840), + [anon_sym_struct] = ACTIONS(2840), + [anon_sym_union] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_else] = ACTIONS(2840), + [anon_sym_switch] = ACTIONS(2840), + [anon_sym_case] = ACTIONS(2840), + [anon_sym_default] = ACTIONS(2840), + [anon_sym_while] = ACTIONS(2840), + [anon_sym_do] = ACTIONS(2840), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_goto] = ACTIONS(2840), + [anon_sym_not] = ACTIONS(2840), + [anon_sym_compl] = ACTIONS(2840), + [anon_sym_DASH_DASH] = ACTIONS(2842), + [anon_sym_PLUS_PLUS] = ACTIONS(2842), + [anon_sym_sizeof] = ACTIONS(2840), + [anon_sym___alignof__] = ACTIONS(2840), + [anon_sym___alignof] = ACTIONS(2840), + [anon_sym__alignof] = ACTIONS(2840), + [anon_sym_alignof] = ACTIONS(2840), + [anon_sym__Alignof] = ACTIONS(2840), + [anon_sym_offsetof] = ACTIONS(2840), + [anon_sym__Generic] = ACTIONS(2840), + [anon_sym_asm] = ACTIONS(2840), + [anon_sym___asm__] = ACTIONS(2840), + [sym_number_literal] = ACTIONS(2842), + [anon_sym_L_SQUOTE] = ACTIONS(2842), + [anon_sym_u_SQUOTE] = ACTIONS(2842), + [anon_sym_U_SQUOTE] = ACTIONS(2842), + [anon_sym_u8_SQUOTE] = ACTIONS(2842), + [anon_sym_SQUOTE] = ACTIONS(2842), + [anon_sym_L_DQUOTE] = ACTIONS(2842), + [anon_sym_u_DQUOTE] = ACTIONS(2842), + [anon_sym_U_DQUOTE] = ACTIONS(2842), + [anon_sym_u8_DQUOTE] = ACTIONS(2842), + [anon_sym_DQUOTE] = ACTIONS(2842), + [sym_true] = ACTIONS(2840), + [sym_false] = ACTIONS(2840), + [anon_sym_NULL] = ACTIONS(2840), + [anon_sym_nullptr] = ACTIONS(2840), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2840), + [anon_sym_decltype] = ACTIONS(2840), + [anon_sym_virtual] = ACTIONS(2840), + [anon_sym_alignas] = ACTIONS(2840), + [anon_sym_explicit] = ACTIONS(2840), + [anon_sym_typename] = ACTIONS(2840), + [anon_sym_template] = ACTIONS(2840), + [anon_sym_operator] = ACTIONS(2840), + [anon_sym_try] = ACTIONS(2840), + [anon_sym_delete] = ACTIONS(2840), + [anon_sym_throw] = ACTIONS(2840), + [anon_sym_namespace] = ACTIONS(2840), + [anon_sym_using] = ACTIONS(2840), + [anon_sym_static_assert] = ACTIONS(2840), + [anon_sym_concept] = ACTIONS(2840), + [anon_sym_co_return] = ACTIONS(2840), + [anon_sym_co_yield] = ACTIONS(2840), + [anon_sym_R_DQUOTE] = ACTIONS(2842), + [anon_sym_LR_DQUOTE] = ACTIONS(2842), + [anon_sym_uR_DQUOTE] = ACTIONS(2842), + [anon_sym_UR_DQUOTE] = ACTIONS(2842), + [anon_sym_u8R_DQUOTE] = ACTIONS(2842), + [anon_sym_co_await] = ACTIONS(2840), + [anon_sym_new] = ACTIONS(2840), + [anon_sym_requires] = ACTIONS(2840), + [sym_this] = ACTIONS(2840), }, [634] = { - [sym_identifier] = ACTIONS(2953), - [aux_sym_preproc_include_token1] = ACTIONS(2953), - [aux_sym_preproc_def_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token2] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2953), - [aux_sym_preproc_else_token1] = ACTIONS(2953), - [aux_sym_preproc_elif_token1] = ACTIONS(2953), - [sym_preproc_directive] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2955), - [anon_sym___extension__] = ACTIONS(2953), - [anon_sym_typedef] = ACTIONS(2953), - [anon_sym_extern] = ACTIONS(2953), - [anon_sym___attribute__] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), - [anon_sym___declspec] = ACTIONS(2953), - [anon_sym___based] = ACTIONS(2953), - [anon_sym___cdecl] = ACTIONS(2953), - [anon_sym___clrcall] = ACTIONS(2953), - [anon_sym___stdcall] = ACTIONS(2953), - [anon_sym___fastcall] = ACTIONS(2953), - [anon_sym___thiscall] = ACTIONS(2953), - [anon_sym___vectorcall] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_signed] = ACTIONS(2953), - [anon_sym_unsigned] = ACTIONS(2953), - [anon_sym_long] = ACTIONS(2953), - [anon_sym_short] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2953), - [anon_sym_register] = ACTIONS(2953), - [anon_sym_inline] = ACTIONS(2953), - [anon_sym___inline] = ACTIONS(2953), - [anon_sym___inline__] = ACTIONS(2953), - [anon_sym___forceinline] = ACTIONS(2953), - [anon_sym_thread_local] = ACTIONS(2953), - [anon_sym___thread] = ACTIONS(2953), - [anon_sym_const] = ACTIONS(2953), - [anon_sym_constexpr] = ACTIONS(2953), - [anon_sym_volatile] = ACTIONS(2953), - [anon_sym_restrict] = ACTIONS(2953), - [anon_sym___restrict__] = ACTIONS(2953), - [anon_sym__Atomic] = ACTIONS(2953), - [anon_sym__Noreturn] = ACTIONS(2953), - [anon_sym_noreturn] = ACTIONS(2953), - [anon_sym_mutable] = ACTIONS(2953), - [anon_sym_constinit] = ACTIONS(2953), - [anon_sym_consteval] = ACTIONS(2953), - [sym_primitive_type] = ACTIONS(2953), - [anon_sym_enum] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2953), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_union] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_else] = ACTIONS(2953), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_case] = ACTIONS(2953), - [anon_sym_default] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_break] = ACTIONS(2953), - [anon_sym_continue] = ACTIONS(2953), - [anon_sym_goto] = ACTIONS(2953), - [anon_sym_not] = ACTIONS(2953), - [anon_sym_compl] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2955), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2953), - [anon_sym___alignof] = ACTIONS(2953), - [anon_sym__alignof] = ACTIONS(2953), - [anon_sym_alignof] = ACTIONS(2953), - [anon_sym__Alignof] = ACTIONS(2953), - [anon_sym_offsetof] = ACTIONS(2953), - [anon_sym__Generic] = ACTIONS(2953), - [anon_sym_asm] = ACTIONS(2953), - [anon_sym___asm__] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(2955), - [anon_sym_L_SQUOTE] = ACTIONS(2955), - [anon_sym_u_SQUOTE] = ACTIONS(2955), - [anon_sym_U_SQUOTE] = ACTIONS(2955), - [anon_sym_u8_SQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2955), - [anon_sym_L_DQUOTE] = ACTIONS(2955), - [anon_sym_u_DQUOTE] = ACTIONS(2955), - [anon_sym_U_DQUOTE] = ACTIONS(2955), - [anon_sym_u8_DQUOTE] = ACTIONS(2955), - [anon_sym_DQUOTE] = ACTIONS(2955), - [sym_true] = ACTIONS(2953), - [sym_false] = ACTIONS(2953), - [anon_sym_NULL] = ACTIONS(2953), - [anon_sym_nullptr] = ACTIONS(2953), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2953), - [anon_sym_decltype] = ACTIONS(2953), - [anon_sym_virtual] = ACTIONS(2953), - [anon_sym_alignas] = ACTIONS(2953), - [anon_sym_explicit] = ACTIONS(2953), - [anon_sym_typename] = ACTIONS(2953), - [anon_sym_template] = ACTIONS(2953), - [anon_sym_operator] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_delete] = ACTIONS(2953), - [anon_sym_throw] = ACTIONS(2953), - [anon_sym_namespace] = ACTIONS(2953), - [anon_sym_using] = ACTIONS(2953), - [anon_sym_static_assert] = ACTIONS(2953), - [anon_sym_concept] = ACTIONS(2953), - [anon_sym_co_return] = ACTIONS(2953), - [anon_sym_co_yield] = ACTIONS(2953), - [anon_sym_R_DQUOTE] = ACTIONS(2955), - [anon_sym_LR_DQUOTE] = ACTIONS(2955), - [anon_sym_uR_DQUOTE] = ACTIONS(2955), - [anon_sym_UR_DQUOTE] = ACTIONS(2955), - [anon_sym_u8R_DQUOTE] = ACTIONS(2955), - [anon_sym_co_await] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_requires] = ACTIONS(2953), - [sym_this] = ACTIONS(2953), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [635] = { - [sym_identifier] = ACTIONS(2949), - [aux_sym_preproc_include_token1] = ACTIONS(2949), - [aux_sym_preproc_def_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token2] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), - [aux_sym_preproc_else_token1] = ACTIONS(2949), - [aux_sym_preproc_elif_token1] = ACTIONS(2949), - [sym_preproc_directive] = ACTIONS(2949), - [anon_sym_LPAREN2] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2949), - [anon_sym_SEMI] = ACTIONS(2951), - [anon_sym___extension__] = ACTIONS(2949), - [anon_sym_typedef] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2949), - [anon_sym___attribute__] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), - [anon_sym___declspec] = ACTIONS(2949), - [anon_sym___based] = ACTIONS(2949), - [anon_sym___cdecl] = ACTIONS(2949), - [anon_sym___clrcall] = ACTIONS(2949), - [anon_sym___stdcall] = ACTIONS(2949), - [anon_sym___fastcall] = ACTIONS(2949), - [anon_sym___thiscall] = ACTIONS(2949), - [anon_sym___vectorcall] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_signed] = ACTIONS(2949), - [anon_sym_unsigned] = ACTIONS(2949), - [anon_sym_long] = ACTIONS(2949), - [anon_sym_short] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_register] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2949), - [anon_sym___inline] = ACTIONS(2949), - [anon_sym___inline__] = ACTIONS(2949), - [anon_sym___forceinline] = ACTIONS(2949), - [anon_sym_thread_local] = ACTIONS(2949), - [anon_sym___thread] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_constexpr] = ACTIONS(2949), - [anon_sym_volatile] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2949), - [anon_sym___restrict__] = ACTIONS(2949), - [anon_sym__Atomic] = ACTIONS(2949), - [anon_sym__Noreturn] = ACTIONS(2949), - [anon_sym_noreturn] = ACTIONS(2949), - [anon_sym_mutable] = ACTIONS(2949), - [anon_sym_constinit] = ACTIONS(2949), - [anon_sym_consteval] = ACTIONS(2949), - [sym_primitive_type] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_else] = ACTIONS(2949), - [anon_sym_switch] = ACTIONS(2949), - [anon_sym_case] = ACTIONS(2949), - [anon_sym_default] = ACTIONS(2949), - [anon_sym_while] = ACTIONS(2949), - [anon_sym_do] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym_not] = ACTIONS(2949), - [anon_sym_compl] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2949), - [anon_sym___alignof__] = ACTIONS(2949), - [anon_sym___alignof] = ACTIONS(2949), - [anon_sym__alignof] = ACTIONS(2949), - [anon_sym_alignof] = ACTIONS(2949), - [anon_sym__Alignof] = ACTIONS(2949), - [anon_sym_offsetof] = ACTIONS(2949), - [anon_sym__Generic] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym___asm__] = ACTIONS(2949), - [sym_number_literal] = ACTIONS(2951), - [anon_sym_L_SQUOTE] = ACTIONS(2951), - [anon_sym_u_SQUOTE] = ACTIONS(2951), - [anon_sym_U_SQUOTE] = ACTIONS(2951), - [anon_sym_u8_SQUOTE] = ACTIONS(2951), - [anon_sym_SQUOTE] = ACTIONS(2951), - [anon_sym_L_DQUOTE] = ACTIONS(2951), - [anon_sym_u_DQUOTE] = ACTIONS(2951), - [anon_sym_U_DQUOTE] = ACTIONS(2951), - [anon_sym_u8_DQUOTE] = ACTIONS(2951), - [anon_sym_DQUOTE] = ACTIONS(2951), - [sym_true] = ACTIONS(2949), - [sym_false] = ACTIONS(2949), - [anon_sym_NULL] = ACTIONS(2949), - [anon_sym_nullptr] = ACTIONS(2949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2949), - [anon_sym_decltype] = ACTIONS(2949), - [anon_sym_virtual] = ACTIONS(2949), - [anon_sym_alignas] = ACTIONS(2949), - [anon_sym_explicit] = ACTIONS(2949), - [anon_sym_typename] = ACTIONS(2949), - [anon_sym_template] = ACTIONS(2949), - [anon_sym_operator] = ACTIONS(2949), - [anon_sym_try] = ACTIONS(2949), - [anon_sym_delete] = ACTIONS(2949), - [anon_sym_throw] = ACTIONS(2949), - [anon_sym_namespace] = ACTIONS(2949), - [anon_sym_using] = ACTIONS(2949), - [anon_sym_static_assert] = ACTIONS(2949), - [anon_sym_concept] = ACTIONS(2949), - [anon_sym_co_return] = ACTIONS(2949), - [anon_sym_co_yield] = ACTIONS(2949), - [anon_sym_R_DQUOTE] = ACTIONS(2951), - [anon_sym_LR_DQUOTE] = ACTIONS(2951), - [anon_sym_uR_DQUOTE] = ACTIONS(2951), - [anon_sym_UR_DQUOTE] = ACTIONS(2951), - [anon_sym_u8R_DQUOTE] = ACTIONS(2951), - [anon_sym_co_await] = ACTIONS(2949), - [anon_sym_new] = ACTIONS(2949), - [anon_sym_requires] = ACTIONS(2949), - [sym_this] = ACTIONS(2949), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [636] = { - [sym_identifier] = ACTIONS(2937), - [aux_sym_preproc_include_token1] = ACTIONS(2937), - [aux_sym_preproc_def_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token2] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), - [aux_sym_preproc_else_token1] = ACTIONS(2937), - [aux_sym_preproc_elif_token1] = ACTIONS(2937), - [sym_preproc_directive] = ACTIONS(2937), - [anon_sym_LPAREN2] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2939), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym_typedef] = ACTIONS(2937), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), - [anon_sym___declspec] = ACTIONS(2937), - [anon_sym___based] = ACTIONS(2937), - [anon_sym___cdecl] = ACTIONS(2937), - [anon_sym___clrcall] = ACTIONS(2937), - [anon_sym___stdcall] = ACTIONS(2937), - [anon_sym___fastcall] = ACTIONS(2937), - [anon_sym___thiscall] = ACTIONS(2937), - [anon_sym___vectorcall] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_signed] = ACTIONS(2937), - [anon_sym_unsigned] = ACTIONS(2937), - [anon_sym_long] = ACTIONS(2937), - [anon_sym_short] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(2937), - [anon_sym_register] = ACTIONS(2937), - [anon_sym_inline] = ACTIONS(2937), - [anon_sym___inline] = ACTIONS(2937), - [anon_sym___inline__] = ACTIONS(2937), - [anon_sym___forceinline] = ACTIONS(2937), - [anon_sym_thread_local] = ACTIONS(2937), - [anon_sym___thread] = ACTIONS(2937), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_class] = ACTIONS(2937), - [anon_sym_struct] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_if] = ACTIONS(2937), - [anon_sym_else] = ACTIONS(2937), - [anon_sym_switch] = ACTIONS(2937), - [anon_sym_case] = ACTIONS(2937), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_while] = ACTIONS(2937), - [anon_sym_do] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2937), - [anon_sym_break] = ACTIONS(2937), - [anon_sym_continue] = ACTIONS(2937), - [anon_sym_goto] = ACTIONS(2937), - [anon_sym_not] = ACTIONS(2937), - [anon_sym_compl] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_sizeof] = ACTIONS(2937), - [anon_sym___alignof__] = ACTIONS(2937), - [anon_sym___alignof] = ACTIONS(2937), - [anon_sym__alignof] = ACTIONS(2937), - [anon_sym_alignof] = ACTIONS(2937), - [anon_sym__Alignof] = ACTIONS(2937), - [anon_sym_offsetof] = ACTIONS(2937), - [anon_sym__Generic] = ACTIONS(2937), - [anon_sym_asm] = ACTIONS(2937), - [anon_sym___asm__] = ACTIONS(2937), - [sym_number_literal] = ACTIONS(2939), - [anon_sym_L_SQUOTE] = ACTIONS(2939), - [anon_sym_u_SQUOTE] = ACTIONS(2939), - [anon_sym_U_SQUOTE] = ACTIONS(2939), - [anon_sym_u8_SQUOTE] = ACTIONS(2939), - [anon_sym_SQUOTE] = ACTIONS(2939), - [anon_sym_L_DQUOTE] = ACTIONS(2939), - [anon_sym_u_DQUOTE] = ACTIONS(2939), - [anon_sym_U_DQUOTE] = ACTIONS(2939), - [anon_sym_u8_DQUOTE] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym_true] = ACTIONS(2937), - [sym_false] = ACTIONS(2937), - [anon_sym_NULL] = ACTIONS(2937), - [anon_sym_nullptr] = ACTIONS(2937), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2937), - [anon_sym_decltype] = ACTIONS(2937), - [anon_sym_virtual] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2937), - [anon_sym_explicit] = ACTIONS(2937), - [anon_sym_typename] = ACTIONS(2937), - [anon_sym_template] = ACTIONS(2937), - [anon_sym_operator] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2937), - [anon_sym_delete] = ACTIONS(2937), - [anon_sym_throw] = ACTIONS(2937), - [anon_sym_namespace] = ACTIONS(2937), - [anon_sym_using] = ACTIONS(2937), - [anon_sym_static_assert] = ACTIONS(2937), - [anon_sym_concept] = ACTIONS(2937), - [anon_sym_co_return] = ACTIONS(2937), - [anon_sym_co_yield] = ACTIONS(2937), - [anon_sym_R_DQUOTE] = ACTIONS(2939), - [anon_sym_LR_DQUOTE] = ACTIONS(2939), - [anon_sym_uR_DQUOTE] = ACTIONS(2939), - [anon_sym_UR_DQUOTE] = ACTIONS(2939), - [anon_sym_u8R_DQUOTE] = ACTIONS(2939), - [anon_sym_co_await] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2937), - [anon_sym_requires] = ACTIONS(2937), - [sym_this] = ACTIONS(2937), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [637] = { - [sym_identifier] = ACTIONS(2881), - [aux_sym_preproc_include_token1] = ACTIONS(2881), - [aux_sym_preproc_def_token1] = ACTIONS(2881), - [aux_sym_preproc_if_token1] = ACTIONS(2881), - [aux_sym_preproc_if_token2] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2881), - [aux_sym_preproc_else_token1] = ACTIONS(2881), - [aux_sym_preproc_elif_token1] = ACTIONS(2881), - [sym_preproc_directive] = ACTIONS(2881), - [anon_sym_LPAREN2] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2881), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym___extension__] = ACTIONS(2881), - [anon_sym_typedef] = ACTIONS(2881), - [anon_sym_extern] = ACTIONS(2881), - [anon_sym___attribute__] = ACTIONS(2881), - [anon_sym_COLON_COLON] = ACTIONS(2883), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2883), - [anon_sym___declspec] = ACTIONS(2881), - [anon_sym___based] = ACTIONS(2881), - [anon_sym___cdecl] = ACTIONS(2881), - [anon_sym___clrcall] = ACTIONS(2881), - [anon_sym___stdcall] = ACTIONS(2881), - [anon_sym___fastcall] = ACTIONS(2881), - [anon_sym___thiscall] = ACTIONS(2881), - [anon_sym___vectorcall] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_signed] = ACTIONS(2881), - [anon_sym_unsigned] = ACTIONS(2881), - [anon_sym_long] = ACTIONS(2881), - [anon_sym_short] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_register] = ACTIONS(2881), - [anon_sym_inline] = ACTIONS(2881), - [anon_sym___inline] = ACTIONS(2881), - [anon_sym___inline__] = ACTIONS(2881), - [anon_sym___forceinline] = ACTIONS(2881), - [anon_sym_thread_local] = ACTIONS(2881), - [anon_sym___thread] = ACTIONS(2881), - [anon_sym_const] = ACTIONS(2881), - [anon_sym_constexpr] = ACTIONS(2881), - [anon_sym_volatile] = ACTIONS(2881), - [anon_sym_restrict] = ACTIONS(2881), - [anon_sym___restrict__] = ACTIONS(2881), - [anon_sym__Atomic] = ACTIONS(2881), - [anon_sym__Noreturn] = ACTIONS(2881), - [anon_sym_noreturn] = ACTIONS(2881), - [anon_sym_mutable] = ACTIONS(2881), - [anon_sym_constinit] = ACTIONS(2881), - [anon_sym_consteval] = ACTIONS(2881), - [sym_primitive_type] = ACTIONS(2881), - [anon_sym_enum] = ACTIONS(2881), - [anon_sym_class] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2881), - [anon_sym_union] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2881), - [anon_sym_else] = ACTIONS(2881), - [anon_sym_switch] = ACTIONS(2881), - [anon_sym_case] = ACTIONS(2881), - [anon_sym_default] = ACTIONS(2881), - [anon_sym_while] = ACTIONS(2881), - [anon_sym_do] = ACTIONS(2881), - [anon_sym_for] = ACTIONS(2881), - [anon_sym_return] = ACTIONS(2881), - [anon_sym_break] = ACTIONS(2881), - [anon_sym_continue] = ACTIONS(2881), - [anon_sym_goto] = ACTIONS(2881), - [anon_sym_not] = ACTIONS(2881), - [anon_sym_compl] = ACTIONS(2881), - [anon_sym_DASH_DASH] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_sizeof] = ACTIONS(2881), - [anon_sym___alignof__] = ACTIONS(2881), - [anon_sym___alignof] = ACTIONS(2881), - [anon_sym__alignof] = ACTIONS(2881), - [anon_sym_alignof] = ACTIONS(2881), - [anon_sym__Alignof] = ACTIONS(2881), - [anon_sym_offsetof] = ACTIONS(2881), - [anon_sym__Generic] = ACTIONS(2881), - [anon_sym_asm] = ACTIONS(2881), - [anon_sym___asm__] = ACTIONS(2881), - [sym_number_literal] = ACTIONS(2883), - [anon_sym_L_SQUOTE] = ACTIONS(2883), - [anon_sym_u_SQUOTE] = ACTIONS(2883), - [anon_sym_U_SQUOTE] = ACTIONS(2883), - [anon_sym_u8_SQUOTE] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2883), - [anon_sym_L_DQUOTE] = ACTIONS(2883), - [anon_sym_u_DQUOTE] = ACTIONS(2883), - [anon_sym_U_DQUOTE] = ACTIONS(2883), - [anon_sym_u8_DQUOTE] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [sym_true] = ACTIONS(2881), - [sym_false] = ACTIONS(2881), - [anon_sym_NULL] = ACTIONS(2881), - [anon_sym_nullptr] = ACTIONS(2881), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2881), - [anon_sym_decltype] = ACTIONS(2881), - [anon_sym_virtual] = ACTIONS(2881), - [anon_sym_alignas] = ACTIONS(2881), - [anon_sym_explicit] = ACTIONS(2881), - [anon_sym_typename] = ACTIONS(2881), - [anon_sym_template] = ACTIONS(2881), - [anon_sym_operator] = ACTIONS(2881), - [anon_sym_try] = ACTIONS(2881), - [anon_sym_delete] = ACTIONS(2881), - [anon_sym_throw] = ACTIONS(2881), - [anon_sym_namespace] = ACTIONS(2881), - [anon_sym_using] = ACTIONS(2881), - [anon_sym_static_assert] = ACTIONS(2881), - [anon_sym_concept] = ACTIONS(2881), - [anon_sym_co_return] = ACTIONS(2881), - [anon_sym_co_yield] = ACTIONS(2881), - [anon_sym_R_DQUOTE] = ACTIONS(2883), - [anon_sym_LR_DQUOTE] = ACTIONS(2883), - [anon_sym_uR_DQUOTE] = ACTIONS(2883), - [anon_sym_UR_DQUOTE] = ACTIONS(2883), - [anon_sym_u8R_DQUOTE] = ACTIONS(2883), - [anon_sym_co_await] = ACTIONS(2881), - [anon_sym_new] = ACTIONS(2881), - [anon_sym_requires] = ACTIONS(2881), - [sym_this] = ACTIONS(2881), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [638] = { - [sym_identifier] = ACTIONS(2873), - [aux_sym_preproc_include_token1] = ACTIONS(2873), - [aux_sym_preproc_def_token1] = ACTIONS(2873), - [aux_sym_preproc_if_token1] = ACTIONS(2873), - [aux_sym_preproc_if_token2] = ACTIONS(2873), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2873), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2873), - [aux_sym_preproc_else_token1] = ACTIONS(2873), - [aux_sym_preproc_elif_token1] = ACTIONS(2873), - [sym_preproc_directive] = ACTIONS(2873), - [anon_sym_LPAREN2] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2875), - [anon_sym_TILDE] = ACTIONS(2875), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_STAR] = ACTIONS(2875), - [anon_sym_AMP_AMP] = ACTIONS(2875), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym___extension__] = ACTIONS(2873), - [anon_sym_typedef] = ACTIONS(2873), - [anon_sym_extern] = ACTIONS(2873), - [anon_sym___attribute__] = ACTIONS(2873), - [anon_sym_COLON_COLON] = ACTIONS(2875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2875), - [anon_sym___declspec] = ACTIONS(2873), - [anon_sym___based] = ACTIONS(2873), - [anon_sym___cdecl] = ACTIONS(2873), - [anon_sym___clrcall] = ACTIONS(2873), - [anon_sym___stdcall] = ACTIONS(2873), - [anon_sym___fastcall] = ACTIONS(2873), - [anon_sym___thiscall] = ACTIONS(2873), - [anon_sym___vectorcall] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2875), - [anon_sym_signed] = ACTIONS(2873), - [anon_sym_unsigned] = ACTIONS(2873), - [anon_sym_long] = ACTIONS(2873), - [anon_sym_short] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_register] = ACTIONS(2873), - [anon_sym_inline] = ACTIONS(2873), - [anon_sym___inline] = ACTIONS(2873), - [anon_sym___inline__] = ACTIONS(2873), - [anon_sym___forceinline] = ACTIONS(2873), - [anon_sym_thread_local] = ACTIONS(2873), - [anon_sym___thread] = ACTIONS(2873), - [anon_sym_const] = ACTIONS(2873), - [anon_sym_constexpr] = ACTIONS(2873), - [anon_sym_volatile] = ACTIONS(2873), - [anon_sym_restrict] = ACTIONS(2873), - [anon_sym___restrict__] = ACTIONS(2873), - [anon_sym__Atomic] = ACTIONS(2873), - [anon_sym__Noreturn] = ACTIONS(2873), - [anon_sym_noreturn] = ACTIONS(2873), - [anon_sym_mutable] = ACTIONS(2873), - [anon_sym_constinit] = ACTIONS(2873), - [anon_sym_consteval] = ACTIONS(2873), - [sym_primitive_type] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2873), - [anon_sym_union] = ACTIONS(2873), - [anon_sym_if] = ACTIONS(2873), - [anon_sym_else] = ACTIONS(2873), - [anon_sym_switch] = ACTIONS(2873), - [anon_sym_case] = ACTIONS(2873), - [anon_sym_default] = ACTIONS(2873), - [anon_sym_while] = ACTIONS(2873), - [anon_sym_do] = ACTIONS(2873), - [anon_sym_for] = ACTIONS(2873), - [anon_sym_return] = ACTIONS(2873), - [anon_sym_break] = ACTIONS(2873), - [anon_sym_continue] = ACTIONS(2873), - [anon_sym_goto] = ACTIONS(2873), - [anon_sym_not] = ACTIONS(2873), - [anon_sym_compl] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2875), - [anon_sym_PLUS_PLUS] = ACTIONS(2875), - [anon_sym_sizeof] = ACTIONS(2873), - [anon_sym___alignof__] = ACTIONS(2873), - [anon_sym___alignof] = ACTIONS(2873), - [anon_sym__alignof] = ACTIONS(2873), - [anon_sym_alignof] = ACTIONS(2873), - [anon_sym__Alignof] = ACTIONS(2873), - [anon_sym_offsetof] = ACTIONS(2873), - [anon_sym__Generic] = ACTIONS(2873), - [anon_sym_asm] = ACTIONS(2873), - [anon_sym___asm__] = ACTIONS(2873), - [sym_number_literal] = ACTIONS(2875), - [anon_sym_L_SQUOTE] = ACTIONS(2875), - [anon_sym_u_SQUOTE] = ACTIONS(2875), - [anon_sym_U_SQUOTE] = ACTIONS(2875), - [anon_sym_u8_SQUOTE] = ACTIONS(2875), - [anon_sym_SQUOTE] = ACTIONS(2875), - [anon_sym_L_DQUOTE] = ACTIONS(2875), - [anon_sym_u_DQUOTE] = ACTIONS(2875), - [anon_sym_U_DQUOTE] = ACTIONS(2875), - [anon_sym_u8_DQUOTE] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [sym_true] = ACTIONS(2873), - [sym_false] = ACTIONS(2873), - [anon_sym_NULL] = ACTIONS(2873), - [anon_sym_nullptr] = ACTIONS(2873), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2873), - [anon_sym_decltype] = ACTIONS(2873), - [anon_sym_virtual] = ACTIONS(2873), - [anon_sym_alignas] = ACTIONS(2873), - [anon_sym_explicit] = ACTIONS(2873), - [anon_sym_typename] = ACTIONS(2873), - [anon_sym_template] = ACTIONS(2873), - [anon_sym_operator] = ACTIONS(2873), - [anon_sym_try] = ACTIONS(2873), - [anon_sym_delete] = ACTIONS(2873), - [anon_sym_throw] = ACTIONS(2873), - [anon_sym_namespace] = ACTIONS(2873), - [anon_sym_using] = ACTIONS(2873), - [anon_sym_static_assert] = ACTIONS(2873), - [anon_sym_concept] = ACTIONS(2873), - [anon_sym_co_return] = ACTIONS(2873), - [anon_sym_co_yield] = ACTIONS(2873), - [anon_sym_R_DQUOTE] = ACTIONS(2875), - [anon_sym_LR_DQUOTE] = ACTIONS(2875), - [anon_sym_uR_DQUOTE] = ACTIONS(2875), - [anon_sym_UR_DQUOTE] = ACTIONS(2875), - [anon_sym_u8R_DQUOTE] = ACTIONS(2875), - [anon_sym_co_await] = ACTIONS(2873), - [anon_sym_new] = ACTIONS(2873), - [anon_sym_requires] = ACTIONS(2873), - [sym_this] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [639] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2868), + [aux_sym_preproc_include_token1] = ACTIONS(2868), + [aux_sym_preproc_def_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token1] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2868), + [sym_preproc_directive] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym___extension__] = ACTIONS(2868), + [anon_sym_typedef] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym___attribute__] = ACTIONS(2868), + [anon_sym_COLON_COLON] = ACTIONS(2870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2870), + [anon_sym___declspec] = ACTIONS(2868), + [anon_sym___based] = ACTIONS(2868), + [anon_sym___cdecl] = ACTIONS(2868), + [anon_sym___clrcall] = ACTIONS(2868), + [anon_sym___stdcall] = ACTIONS(2868), + [anon_sym___fastcall] = ACTIONS(2868), + [anon_sym___thiscall] = ACTIONS(2868), + [anon_sym___vectorcall] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_RBRACE] = ACTIONS(2870), + [anon_sym_signed] = ACTIONS(2868), + [anon_sym_unsigned] = ACTIONS(2868), + [anon_sym_long] = ACTIONS(2868), + [anon_sym_short] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_register] = ACTIONS(2868), + [anon_sym_inline] = ACTIONS(2868), + [anon_sym___inline] = ACTIONS(2868), + [anon_sym___inline__] = ACTIONS(2868), + [anon_sym___forceinline] = ACTIONS(2868), + [anon_sym_thread_local] = ACTIONS(2868), + [anon_sym___thread] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_constexpr] = ACTIONS(2868), + [anon_sym_volatile] = ACTIONS(2868), + [anon_sym_restrict] = ACTIONS(2868), + [anon_sym___restrict__] = ACTIONS(2868), + [anon_sym__Atomic] = ACTIONS(2868), + [anon_sym__Noreturn] = ACTIONS(2868), + [anon_sym_noreturn] = ACTIONS(2868), + [anon_sym_mutable] = ACTIONS(2868), + [anon_sym_constinit] = ACTIONS(2868), + [anon_sym_consteval] = ACTIONS(2868), + [sym_primitive_type] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_class] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2868), + [anon_sym_union] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_goto] = ACTIONS(2868), + [anon_sym_not] = ACTIONS(2868), + [anon_sym_compl] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_sizeof] = ACTIONS(2868), + [anon_sym___alignof__] = ACTIONS(2868), + [anon_sym___alignof] = ACTIONS(2868), + [anon_sym__alignof] = ACTIONS(2868), + [anon_sym_alignof] = ACTIONS(2868), + [anon_sym__Alignof] = ACTIONS(2868), + [anon_sym_offsetof] = ACTIONS(2868), + [anon_sym__Generic] = ACTIONS(2868), + [anon_sym_asm] = ACTIONS(2868), + [anon_sym___asm__] = ACTIONS(2868), + [sym_number_literal] = ACTIONS(2870), + [anon_sym_L_SQUOTE] = ACTIONS(2870), + [anon_sym_u_SQUOTE] = ACTIONS(2870), + [anon_sym_U_SQUOTE] = ACTIONS(2870), + [anon_sym_u8_SQUOTE] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_L_DQUOTE] = ACTIONS(2870), + [anon_sym_u_DQUOTE] = ACTIONS(2870), + [anon_sym_U_DQUOTE] = ACTIONS(2870), + [anon_sym_u8_DQUOTE] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [sym_true] = ACTIONS(2868), + [sym_false] = ACTIONS(2868), + [anon_sym_NULL] = ACTIONS(2868), + [anon_sym_nullptr] = ACTIONS(2868), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2868), + [anon_sym_decltype] = ACTIONS(2868), + [anon_sym_virtual] = ACTIONS(2868), + [anon_sym_alignas] = ACTIONS(2868), + [anon_sym_explicit] = ACTIONS(2868), + [anon_sym_typename] = ACTIONS(2868), + [anon_sym_template] = ACTIONS(2868), + [anon_sym_operator] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_delete] = ACTIONS(2868), + [anon_sym_throw] = ACTIONS(2868), + [anon_sym_namespace] = ACTIONS(2868), + [anon_sym_using] = ACTIONS(2868), + [anon_sym_static_assert] = ACTIONS(2868), + [anon_sym_concept] = ACTIONS(2868), + [anon_sym_co_return] = ACTIONS(2868), + [anon_sym_co_yield] = ACTIONS(2868), + [anon_sym_R_DQUOTE] = ACTIONS(2870), + [anon_sym_LR_DQUOTE] = ACTIONS(2870), + [anon_sym_uR_DQUOTE] = ACTIONS(2870), + [anon_sym_UR_DQUOTE] = ACTIONS(2870), + [anon_sym_u8R_DQUOTE] = ACTIONS(2870), + [anon_sym_co_await] = ACTIONS(2868), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_requires] = ACTIONS(2868), + [sym_this] = ACTIONS(2868), }, [640] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2786), + [aux_sym_preproc_include_token1] = ACTIONS(2786), + [aux_sym_preproc_def_token1] = ACTIONS(2786), + [aux_sym_preproc_if_token1] = ACTIONS(2786), + [aux_sym_preproc_if_token2] = ACTIONS(2786), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2786), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2786), + [sym_preproc_directive] = ACTIONS(2786), + [anon_sym_LPAREN2] = ACTIONS(2788), + [anon_sym_BANG] = ACTIONS(2788), + [anon_sym_TILDE] = ACTIONS(2788), + [anon_sym_DASH] = ACTIONS(2786), + [anon_sym_PLUS] = ACTIONS(2786), + [anon_sym_STAR] = ACTIONS(2788), + [anon_sym_AMP_AMP] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym___extension__] = ACTIONS(2786), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_extern] = ACTIONS(2786), + [anon_sym___attribute__] = ACTIONS(2786), + [anon_sym_COLON_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2788), + [anon_sym___declspec] = ACTIONS(2786), + [anon_sym___based] = ACTIONS(2786), + [anon_sym___cdecl] = ACTIONS(2786), + [anon_sym___clrcall] = ACTIONS(2786), + [anon_sym___stdcall] = ACTIONS(2786), + [anon_sym___fastcall] = ACTIONS(2786), + [anon_sym___thiscall] = ACTIONS(2786), + [anon_sym___vectorcall] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2788), + [anon_sym_signed] = ACTIONS(2786), + [anon_sym_unsigned] = ACTIONS(2786), + [anon_sym_long] = ACTIONS(2786), + [anon_sym_short] = ACTIONS(2786), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_static] = ACTIONS(2786), + [anon_sym_register] = ACTIONS(2786), + [anon_sym_inline] = ACTIONS(2786), + [anon_sym___inline] = ACTIONS(2786), + [anon_sym___inline__] = ACTIONS(2786), + [anon_sym___forceinline] = ACTIONS(2786), + [anon_sym_thread_local] = ACTIONS(2786), + [anon_sym___thread] = ACTIONS(2786), + [anon_sym_const] = ACTIONS(2786), + [anon_sym_constexpr] = ACTIONS(2786), + [anon_sym_volatile] = ACTIONS(2786), + [anon_sym_restrict] = ACTIONS(2786), + [anon_sym___restrict__] = ACTIONS(2786), + [anon_sym__Atomic] = ACTIONS(2786), + [anon_sym__Noreturn] = ACTIONS(2786), + [anon_sym_noreturn] = ACTIONS(2786), + [anon_sym_mutable] = ACTIONS(2786), + [anon_sym_constinit] = ACTIONS(2786), + [anon_sym_consteval] = ACTIONS(2786), + [sym_primitive_type] = ACTIONS(2786), + [anon_sym_enum] = ACTIONS(2786), + [anon_sym_class] = ACTIONS(2786), + [anon_sym_struct] = ACTIONS(2786), + [anon_sym_union] = ACTIONS(2786), + [anon_sym_if] = ACTIONS(2786), + [anon_sym_else] = ACTIONS(2786), + [anon_sym_switch] = ACTIONS(2786), + [anon_sym_case] = ACTIONS(2786), + [anon_sym_default] = ACTIONS(2786), + [anon_sym_while] = ACTIONS(2786), + [anon_sym_do] = ACTIONS(2786), + [anon_sym_for] = ACTIONS(2786), + [anon_sym_return] = ACTIONS(2786), + [anon_sym_break] = ACTIONS(2786), + [anon_sym_continue] = ACTIONS(2786), + [anon_sym_goto] = ACTIONS(2786), + [anon_sym_not] = ACTIONS(2786), + [anon_sym_compl] = ACTIONS(2786), + [anon_sym_DASH_DASH] = ACTIONS(2788), + [anon_sym_PLUS_PLUS] = ACTIONS(2788), + [anon_sym_sizeof] = ACTIONS(2786), + [anon_sym___alignof__] = ACTIONS(2786), + [anon_sym___alignof] = ACTIONS(2786), + [anon_sym__alignof] = ACTIONS(2786), + [anon_sym_alignof] = ACTIONS(2786), + [anon_sym__Alignof] = ACTIONS(2786), + [anon_sym_offsetof] = ACTIONS(2786), + [anon_sym__Generic] = ACTIONS(2786), + [anon_sym_asm] = ACTIONS(2786), + [anon_sym___asm__] = ACTIONS(2786), + [sym_number_literal] = ACTIONS(2788), + [anon_sym_L_SQUOTE] = ACTIONS(2788), + [anon_sym_u_SQUOTE] = ACTIONS(2788), + [anon_sym_U_SQUOTE] = ACTIONS(2788), + [anon_sym_u8_SQUOTE] = ACTIONS(2788), + [anon_sym_SQUOTE] = ACTIONS(2788), + [anon_sym_L_DQUOTE] = ACTIONS(2788), + [anon_sym_u_DQUOTE] = ACTIONS(2788), + [anon_sym_U_DQUOTE] = ACTIONS(2788), + [anon_sym_u8_DQUOTE] = ACTIONS(2788), + [anon_sym_DQUOTE] = ACTIONS(2788), + [sym_true] = ACTIONS(2786), + [sym_false] = ACTIONS(2786), + [anon_sym_NULL] = ACTIONS(2786), + [anon_sym_nullptr] = ACTIONS(2786), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2786), + [anon_sym_decltype] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(2786), + [anon_sym_alignas] = ACTIONS(2786), + [anon_sym_explicit] = ACTIONS(2786), + [anon_sym_typename] = ACTIONS(2786), + [anon_sym_template] = ACTIONS(2786), + [anon_sym_operator] = ACTIONS(2786), + [anon_sym_try] = ACTIONS(2786), + [anon_sym_delete] = ACTIONS(2786), + [anon_sym_throw] = ACTIONS(2786), + [anon_sym_namespace] = ACTIONS(2786), + [anon_sym_using] = ACTIONS(2786), + [anon_sym_static_assert] = ACTIONS(2786), + [anon_sym_concept] = ACTIONS(2786), + [anon_sym_co_return] = ACTIONS(2786), + [anon_sym_co_yield] = ACTIONS(2786), + [anon_sym_R_DQUOTE] = ACTIONS(2788), + [anon_sym_LR_DQUOTE] = ACTIONS(2788), + [anon_sym_uR_DQUOTE] = ACTIONS(2788), + [anon_sym_UR_DQUOTE] = ACTIONS(2788), + [anon_sym_u8R_DQUOTE] = ACTIONS(2788), + [anon_sym_co_await] = ACTIONS(2786), + [anon_sym_new] = ACTIONS(2786), + [anon_sym_requires] = ACTIONS(2786), + [sym_this] = ACTIONS(2786), }, [641] = { - [sym_identifier] = ACTIONS(2869), - [aux_sym_preproc_include_token1] = ACTIONS(2869), - [aux_sym_preproc_def_token1] = ACTIONS(2869), - [aux_sym_preproc_if_token1] = ACTIONS(2869), - [aux_sym_preproc_if_token2] = ACTIONS(2869), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2869), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2869), - [aux_sym_preproc_else_token1] = ACTIONS(2869), - [aux_sym_preproc_elif_token1] = ACTIONS(2869), - [sym_preproc_directive] = ACTIONS(2869), - [anon_sym_LPAREN2] = ACTIONS(2871), - [anon_sym_BANG] = ACTIONS(2871), - [anon_sym_TILDE] = ACTIONS(2871), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2871), - [anon_sym_AMP_AMP] = ACTIONS(2871), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym___extension__] = ACTIONS(2869), - [anon_sym_typedef] = ACTIONS(2869), - [anon_sym_extern] = ACTIONS(2869), - [anon_sym___attribute__] = ACTIONS(2869), - [anon_sym_COLON_COLON] = ACTIONS(2871), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2871), - [anon_sym___declspec] = ACTIONS(2869), - [anon_sym___based] = ACTIONS(2869), - [anon_sym___cdecl] = ACTIONS(2869), - [anon_sym___clrcall] = ACTIONS(2869), - [anon_sym___stdcall] = ACTIONS(2869), - [anon_sym___fastcall] = ACTIONS(2869), - [anon_sym___thiscall] = ACTIONS(2869), - [anon_sym___vectorcall] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_signed] = ACTIONS(2869), - [anon_sym_unsigned] = ACTIONS(2869), - [anon_sym_long] = ACTIONS(2869), - [anon_sym_short] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_static] = ACTIONS(2869), - [anon_sym_register] = ACTIONS(2869), - [anon_sym_inline] = ACTIONS(2869), - [anon_sym___inline] = ACTIONS(2869), - [anon_sym___inline__] = ACTIONS(2869), - [anon_sym___forceinline] = ACTIONS(2869), - [anon_sym_thread_local] = ACTIONS(2869), - [anon_sym___thread] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2869), - [anon_sym_constexpr] = ACTIONS(2869), - [anon_sym_volatile] = ACTIONS(2869), - [anon_sym_restrict] = ACTIONS(2869), - [anon_sym___restrict__] = ACTIONS(2869), - [anon_sym__Atomic] = ACTIONS(2869), - [anon_sym__Noreturn] = ACTIONS(2869), - [anon_sym_noreturn] = ACTIONS(2869), - [anon_sym_mutable] = ACTIONS(2869), - [anon_sym_constinit] = ACTIONS(2869), - [anon_sym_consteval] = ACTIONS(2869), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2869), - [anon_sym_class] = ACTIONS(2869), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_union] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_else] = ACTIONS(2869), - [anon_sym_switch] = ACTIONS(2869), - [anon_sym_case] = ACTIONS(2869), - [anon_sym_default] = ACTIONS(2869), - [anon_sym_while] = ACTIONS(2869), - [anon_sym_do] = ACTIONS(2869), - [anon_sym_for] = ACTIONS(2869), - [anon_sym_return] = ACTIONS(2869), - [anon_sym_break] = ACTIONS(2869), - [anon_sym_continue] = ACTIONS(2869), - [anon_sym_goto] = ACTIONS(2869), - [anon_sym_not] = ACTIONS(2869), - [anon_sym_compl] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2871), - [anon_sym_PLUS_PLUS] = ACTIONS(2871), - [anon_sym_sizeof] = ACTIONS(2869), - [anon_sym___alignof__] = ACTIONS(2869), - [anon_sym___alignof] = ACTIONS(2869), - [anon_sym__alignof] = ACTIONS(2869), - [anon_sym_alignof] = ACTIONS(2869), - [anon_sym__Alignof] = ACTIONS(2869), - [anon_sym_offsetof] = ACTIONS(2869), - [anon_sym__Generic] = ACTIONS(2869), - [anon_sym_asm] = ACTIONS(2869), - [anon_sym___asm__] = ACTIONS(2869), - [sym_number_literal] = ACTIONS(2871), - [anon_sym_L_SQUOTE] = ACTIONS(2871), - [anon_sym_u_SQUOTE] = ACTIONS(2871), - [anon_sym_U_SQUOTE] = ACTIONS(2871), - [anon_sym_u8_SQUOTE] = ACTIONS(2871), - [anon_sym_SQUOTE] = ACTIONS(2871), - [anon_sym_L_DQUOTE] = ACTIONS(2871), - [anon_sym_u_DQUOTE] = ACTIONS(2871), - [anon_sym_U_DQUOTE] = ACTIONS(2871), - [anon_sym_u8_DQUOTE] = ACTIONS(2871), - [anon_sym_DQUOTE] = ACTIONS(2871), - [sym_true] = ACTIONS(2869), - [sym_false] = ACTIONS(2869), - [anon_sym_NULL] = ACTIONS(2869), - [anon_sym_nullptr] = ACTIONS(2869), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2869), - [anon_sym_decltype] = ACTIONS(2869), - [anon_sym_virtual] = ACTIONS(2869), - [anon_sym_alignas] = ACTIONS(2869), - [anon_sym_explicit] = ACTIONS(2869), - [anon_sym_typename] = ACTIONS(2869), - [anon_sym_template] = ACTIONS(2869), - [anon_sym_operator] = ACTIONS(2869), - [anon_sym_try] = ACTIONS(2869), - [anon_sym_delete] = ACTIONS(2869), - [anon_sym_throw] = ACTIONS(2869), - [anon_sym_namespace] = ACTIONS(2869), - [anon_sym_using] = ACTIONS(2869), - [anon_sym_static_assert] = ACTIONS(2869), - [anon_sym_concept] = ACTIONS(2869), - [anon_sym_co_return] = ACTIONS(2869), - [anon_sym_co_yield] = ACTIONS(2869), - [anon_sym_R_DQUOTE] = ACTIONS(2871), - [anon_sym_LR_DQUOTE] = ACTIONS(2871), - [anon_sym_uR_DQUOTE] = ACTIONS(2871), - [anon_sym_UR_DQUOTE] = ACTIONS(2871), - [anon_sym_u8R_DQUOTE] = ACTIONS(2871), - [anon_sym_co_await] = ACTIONS(2869), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2869), - [sym_this] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2872), + [aux_sym_preproc_include_token1] = ACTIONS(2872), + [aux_sym_preproc_def_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token1] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2872), + [sym_preproc_directive] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_AMP_AMP] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym___extension__] = ACTIONS(2872), + [anon_sym_typedef] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym___attribute__] = ACTIONS(2872), + [anon_sym_COLON_COLON] = ACTIONS(2874), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2874), + [anon_sym___declspec] = ACTIONS(2872), + [anon_sym___based] = ACTIONS(2872), + [anon_sym___cdecl] = ACTIONS(2872), + [anon_sym___clrcall] = ACTIONS(2872), + [anon_sym___stdcall] = ACTIONS(2872), + [anon_sym___fastcall] = ACTIONS(2872), + [anon_sym___thiscall] = ACTIONS(2872), + [anon_sym___vectorcall] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_RBRACE] = ACTIONS(2874), + [anon_sym_signed] = ACTIONS(2872), + [anon_sym_unsigned] = ACTIONS(2872), + [anon_sym_long] = ACTIONS(2872), + [anon_sym_short] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_register] = ACTIONS(2872), + [anon_sym_inline] = ACTIONS(2872), + [anon_sym___inline] = ACTIONS(2872), + [anon_sym___inline__] = ACTIONS(2872), + [anon_sym___forceinline] = ACTIONS(2872), + [anon_sym_thread_local] = ACTIONS(2872), + [anon_sym___thread] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_constexpr] = ACTIONS(2872), + [anon_sym_volatile] = ACTIONS(2872), + [anon_sym_restrict] = ACTIONS(2872), + [anon_sym___restrict__] = ACTIONS(2872), + [anon_sym__Atomic] = ACTIONS(2872), + [anon_sym__Noreturn] = ACTIONS(2872), + [anon_sym_noreturn] = ACTIONS(2872), + [anon_sym_mutable] = ACTIONS(2872), + [anon_sym_constinit] = ACTIONS(2872), + [anon_sym_consteval] = ACTIONS(2872), + [sym_primitive_type] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_class] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_else] = ACTIONS(2872), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_case] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_goto] = ACTIONS(2872), + [anon_sym_not] = ACTIONS(2872), + [anon_sym_compl] = ACTIONS(2872), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_sizeof] = ACTIONS(2872), + [anon_sym___alignof__] = ACTIONS(2872), + [anon_sym___alignof] = ACTIONS(2872), + [anon_sym__alignof] = ACTIONS(2872), + [anon_sym_alignof] = ACTIONS(2872), + [anon_sym__Alignof] = ACTIONS(2872), + [anon_sym_offsetof] = ACTIONS(2872), + [anon_sym__Generic] = ACTIONS(2872), + [anon_sym_asm] = ACTIONS(2872), + [anon_sym___asm__] = ACTIONS(2872), + [sym_number_literal] = ACTIONS(2874), + [anon_sym_L_SQUOTE] = ACTIONS(2874), + [anon_sym_u_SQUOTE] = ACTIONS(2874), + [anon_sym_U_SQUOTE] = ACTIONS(2874), + [anon_sym_u8_SQUOTE] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_L_DQUOTE] = ACTIONS(2874), + [anon_sym_u_DQUOTE] = ACTIONS(2874), + [anon_sym_U_DQUOTE] = ACTIONS(2874), + [anon_sym_u8_DQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE] = ACTIONS(2874), + [sym_true] = ACTIONS(2872), + [sym_false] = ACTIONS(2872), + [anon_sym_NULL] = ACTIONS(2872), + [anon_sym_nullptr] = ACTIONS(2872), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2872), + [anon_sym_decltype] = ACTIONS(2872), + [anon_sym_virtual] = ACTIONS(2872), + [anon_sym_alignas] = ACTIONS(2872), + [anon_sym_explicit] = ACTIONS(2872), + [anon_sym_typename] = ACTIONS(2872), + [anon_sym_template] = ACTIONS(2872), + [anon_sym_operator] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_delete] = ACTIONS(2872), + [anon_sym_throw] = ACTIONS(2872), + [anon_sym_namespace] = ACTIONS(2872), + [anon_sym_using] = ACTIONS(2872), + [anon_sym_static_assert] = ACTIONS(2872), + [anon_sym_concept] = ACTIONS(2872), + [anon_sym_co_return] = ACTIONS(2872), + [anon_sym_co_yield] = ACTIONS(2872), + [anon_sym_R_DQUOTE] = ACTIONS(2874), + [anon_sym_LR_DQUOTE] = ACTIONS(2874), + [anon_sym_uR_DQUOTE] = ACTIONS(2874), + [anon_sym_UR_DQUOTE] = ACTIONS(2874), + [anon_sym_u8R_DQUOTE] = ACTIONS(2874), + [anon_sym_co_await] = ACTIONS(2872), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_requires] = ACTIONS(2872), + [sym_this] = ACTIONS(2872), }, [642] = { - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_unaligned_ptr_modifier] = STATE(5820), - [sym_ms_pointer_modifier] = STATE(4183), - [sym__declarator] = STATE(7172), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6917), - [sym_array_declarator] = STATE(6917), - [sym_type_qualifier] = STATE(4744), - [sym__expression] = STATE(3714), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3848), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6388), - [sym_qualified_identifier] = STATE(3927), - [sym_qualified_type_identifier] = STATE(8447), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(4133), - [aux_sym_type_definition_repeat1] = STATE(4744), - [aux_sym_pointer_declarator_repeat1] = STATE(4183), - [sym_identifier] = ACTIONS(3484), - [anon_sym_LPAREN2] = ACTIONS(3486), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1990), - [anon_sym___extension__] = ACTIONS(3490), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym___based] = ACTIONS(47), - [sym_ms_restrict_modifier] = ACTIONS(3492), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3492), - [sym_ms_signed_ptr_modifier] = ACTIONS(3492), - [anon_sym__unaligned] = ACTIONS(3494), - [anon_sym___unaligned] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(3490), - [anon_sym_constexpr] = ACTIONS(3490), - [anon_sym_volatile] = ACTIONS(3490), - [anon_sym_restrict] = ACTIONS(3490), - [anon_sym___restrict__] = ACTIONS(3490), - [anon_sym__Atomic] = ACTIONS(3490), - [anon_sym__Noreturn] = ACTIONS(3490), - [anon_sym_noreturn] = ACTIONS(3490), - [anon_sym_mutable] = ACTIONS(3490), - [anon_sym_constinit] = ACTIONS(3490), - [anon_sym_consteval] = ACTIONS(3490), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(2012), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2876), + [aux_sym_preproc_include_token1] = ACTIONS(2876), + [aux_sym_preproc_def_token1] = ACTIONS(2876), + [aux_sym_preproc_if_token1] = ACTIONS(2876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2876), + [sym_preproc_directive] = ACTIONS(2876), + [anon_sym_LPAREN2] = ACTIONS(2878), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_TILDE] = ACTIONS(2878), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym___extension__] = ACTIONS(2876), + [anon_sym_typedef] = ACTIONS(2876), + [anon_sym_extern] = ACTIONS(2876), + [anon_sym___attribute__] = ACTIONS(2876), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2878), + [anon_sym___declspec] = ACTIONS(2876), + [anon_sym___based] = ACTIONS(2876), + [anon_sym___cdecl] = ACTIONS(2876), + [anon_sym___clrcall] = ACTIONS(2876), + [anon_sym___stdcall] = ACTIONS(2876), + [anon_sym___fastcall] = ACTIONS(2876), + [anon_sym___thiscall] = ACTIONS(2876), + [anon_sym___vectorcall] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_RBRACE] = ACTIONS(2878), + [anon_sym_signed] = ACTIONS(2876), + [anon_sym_unsigned] = ACTIONS(2876), + [anon_sym_long] = ACTIONS(2876), + [anon_sym_short] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_register] = ACTIONS(2876), + [anon_sym_inline] = ACTIONS(2876), + [anon_sym___inline] = ACTIONS(2876), + [anon_sym___inline__] = ACTIONS(2876), + [anon_sym___forceinline] = ACTIONS(2876), + [anon_sym_thread_local] = ACTIONS(2876), + [anon_sym___thread] = ACTIONS(2876), + [anon_sym_const] = ACTIONS(2876), + [anon_sym_constexpr] = ACTIONS(2876), + [anon_sym_volatile] = ACTIONS(2876), + [anon_sym_restrict] = ACTIONS(2876), + [anon_sym___restrict__] = ACTIONS(2876), + [anon_sym__Atomic] = ACTIONS(2876), + [anon_sym__Noreturn] = ACTIONS(2876), + [anon_sym_noreturn] = ACTIONS(2876), + [anon_sym_mutable] = ACTIONS(2876), + [anon_sym_constinit] = ACTIONS(2876), + [anon_sym_consteval] = ACTIONS(2876), + [sym_primitive_type] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), + [anon_sym_class] = ACTIONS(2876), + [anon_sym_struct] = ACTIONS(2876), + [anon_sym_union] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_else] = ACTIONS(2876), + [anon_sym_switch] = ACTIONS(2876), + [anon_sym_case] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_goto] = ACTIONS(2876), + [anon_sym_not] = ACTIONS(2876), + [anon_sym_compl] = ACTIONS(2876), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_sizeof] = ACTIONS(2876), + [anon_sym___alignof__] = ACTIONS(2876), + [anon_sym___alignof] = ACTIONS(2876), + [anon_sym__alignof] = ACTIONS(2876), + [anon_sym_alignof] = ACTIONS(2876), + [anon_sym__Alignof] = ACTIONS(2876), + [anon_sym_offsetof] = ACTIONS(2876), + [anon_sym__Generic] = ACTIONS(2876), + [anon_sym_asm] = ACTIONS(2876), + [anon_sym___asm__] = ACTIONS(2876), + [sym_number_literal] = ACTIONS(2878), + [anon_sym_L_SQUOTE] = ACTIONS(2878), + [anon_sym_u_SQUOTE] = ACTIONS(2878), + [anon_sym_U_SQUOTE] = ACTIONS(2878), + [anon_sym_u8_SQUOTE] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_L_DQUOTE] = ACTIONS(2878), + [anon_sym_u_DQUOTE] = ACTIONS(2878), + [anon_sym_U_DQUOTE] = ACTIONS(2878), + [anon_sym_u8_DQUOTE] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [sym_true] = ACTIONS(2876), + [sym_false] = ACTIONS(2876), + [anon_sym_NULL] = ACTIONS(2876), + [anon_sym_nullptr] = ACTIONS(2876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2876), + [anon_sym_decltype] = ACTIONS(2876), + [anon_sym_virtual] = ACTIONS(2876), + [anon_sym_alignas] = ACTIONS(2876), + [anon_sym_explicit] = ACTIONS(2876), + [anon_sym_typename] = ACTIONS(2876), + [anon_sym_template] = ACTIONS(2876), + [anon_sym_operator] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_delete] = ACTIONS(2876), + [anon_sym_throw] = ACTIONS(2876), + [anon_sym_namespace] = ACTIONS(2876), + [anon_sym_using] = ACTIONS(2876), + [anon_sym_static_assert] = ACTIONS(2876), + [anon_sym_concept] = ACTIONS(2876), + [anon_sym_co_return] = ACTIONS(2876), + [anon_sym_co_yield] = ACTIONS(2876), + [anon_sym_R_DQUOTE] = ACTIONS(2878), + [anon_sym_LR_DQUOTE] = ACTIONS(2878), + [anon_sym_uR_DQUOTE] = ACTIONS(2878), + [anon_sym_UR_DQUOTE] = ACTIONS(2878), + [anon_sym_u8R_DQUOTE] = ACTIONS(2878), + [anon_sym_co_await] = ACTIONS(2876), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_requires] = ACTIONS(2876), + [sym_this] = ACTIONS(2876), }, [643] = { - [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), - [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_extern] = ACTIONS(2999), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(2999), - [anon_sym_constinit] = ACTIONS(2999), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(2999), - [anon_sym_alignas] = 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_using] = 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), + [sym_identifier] = ACTIONS(2880), + [aux_sym_preproc_include_token1] = ACTIONS(2880), + [aux_sym_preproc_def_token1] = ACTIONS(2880), + [aux_sym_preproc_if_token1] = ACTIONS(2880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2880), + [sym_preproc_directive] = ACTIONS(2880), + [anon_sym_LPAREN2] = ACTIONS(2882), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_SEMI] = ACTIONS(2882), + [anon_sym___extension__] = ACTIONS(2880), + [anon_sym_typedef] = ACTIONS(2880), + [anon_sym_extern] = ACTIONS(2880), + [anon_sym___attribute__] = ACTIONS(2880), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2882), + [anon_sym___declspec] = ACTIONS(2880), + [anon_sym___based] = ACTIONS(2880), + [anon_sym___cdecl] = ACTIONS(2880), + [anon_sym___clrcall] = ACTIONS(2880), + [anon_sym___stdcall] = ACTIONS(2880), + [anon_sym___fastcall] = ACTIONS(2880), + [anon_sym___thiscall] = ACTIONS(2880), + [anon_sym___vectorcall] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_RBRACE] = ACTIONS(2882), + [anon_sym_signed] = ACTIONS(2880), + [anon_sym_unsigned] = ACTIONS(2880), + [anon_sym_long] = ACTIONS(2880), + [anon_sym_short] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_static] = ACTIONS(2880), + [anon_sym_register] = ACTIONS(2880), + [anon_sym_inline] = ACTIONS(2880), + [anon_sym___inline] = ACTIONS(2880), + [anon_sym___inline__] = ACTIONS(2880), + [anon_sym___forceinline] = ACTIONS(2880), + [anon_sym_thread_local] = ACTIONS(2880), + [anon_sym___thread] = ACTIONS(2880), + [anon_sym_const] = ACTIONS(2880), + [anon_sym_constexpr] = ACTIONS(2880), + [anon_sym_volatile] = ACTIONS(2880), + [anon_sym_restrict] = ACTIONS(2880), + [anon_sym___restrict__] = ACTIONS(2880), + [anon_sym__Atomic] = ACTIONS(2880), + [anon_sym__Noreturn] = ACTIONS(2880), + [anon_sym_noreturn] = ACTIONS(2880), + [anon_sym_mutable] = ACTIONS(2880), + [anon_sym_constinit] = ACTIONS(2880), + [anon_sym_consteval] = ACTIONS(2880), + [sym_primitive_type] = ACTIONS(2880), + [anon_sym_enum] = ACTIONS(2880), + [anon_sym_class] = ACTIONS(2880), + [anon_sym_struct] = ACTIONS(2880), + [anon_sym_union] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_else] = ACTIONS(2880), + [anon_sym_switch] = ACTIONS(2880), + [anon_sym_case] = ACTIONS(2880), + [anon_sym_default] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_break] = ACTIONS(2880), + [anon_sym_continue] = ACTIONS(2880), + [anon_sym_goto] = ACTIONS(2880), + [anon_sym_not] = ACTIONS(2880), + [anon_sym_compl] = ACTIONS(2880), + [anon_sym_DASH_DASH] = ACTIONS(2882), + [anon_sym_PLUS_PLUS] = ACTIONS(2882), + [anon_sym_sizeof] = ACTIONS(2880), + [anon_sym___alignof__] = ACTIONS(2880), + [anon_sym___alignof] = ACTIONS(2880), + [anon_sym__alignof] = ACTIONS(2880), + [anon_sym_alignof] = ACTIONS(2880), + [anon_sym__Alignof] = ACTIONS(2880), + [anon_sym_offsetof] = ACTIONS(2880), + [anon_sym__Generic] = ACTIONS(2880), + [anon_sym_asm] = ACTIONS(2880), + [anon_sym___asm__] = ACTIONS(2880), + [sym_number_literal] = ACTIONS(2882), + [anon_sym_L_SQUOTE] = ACTIONS(2882), + [anon_sym_u_SQUOTE] = ACTIONS(2882), + [anon_sym_U_SQUOTE] = ACTIONS(2882), + [anon_sym_u8_SQUOTE] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_L_DQUOTE] = ACTIONS(2882), + [anon_sym_u_DQUOTE] = ACTIONS(2882), + [anon_sym_U_DQUOTE] = ACTIONS(2882), + [anon_sym_u8_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE] = ACTIONS(2882), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [anon_sym_NULL] = ACTIONS(2880), + [anon_sym_nullptr] = ACTIONS(2880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2880), + [anon_sym_decltype] = ACTIONS(2880), + [anon_sym_virtual] = ACTIONS(2880), + [anon_sym_alignas] = ACTIONS(2880), + [anon_sym_explicit] = ACTIONS(2880), + [anon_sym_typename] = ACTIONS(2880), + [anon_sym_template] = ACTIONS(2880), + [anon_sym_operator] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_delete] = ACTIONS(2880), + [anon_sym_throw] = ACTIONS(2880), + [anon_sym_namespace] = ACTIONS(2880), + [anon_sym_using] = ACTIONS(2880), + [anon_sym_static_assert] = ACTIONS(2880), + [anon_sym_concept] = ACTIONS(2880), + [anon_sym_co_return] = ACTIONS(2880), + [anon_sym_co_yield] = ACTIONS(2880), + [anon_sym_R_DQUOTE] = ACTIONS(2882), + [anon_sym_LR_DQUOTE] = ACTIONS(2882), + [anon_sym_uR_DQUOTE] = ACTIONS(2882), + [anon_sym_UR_DQUOTE] = ACTIONS(2882), + [anon_sym_u8R_DQUOTE] = ACTIONS(2882), + [anon_sym_co_await] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_requires] = ACTIONS(2880), + [sym_this] = ACTIONS(2880), }, [644] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2808), + [aux_sym_preproc_include_token1] = ACTIONS(2808), + [aux_sym_preproc_def_token1] = ACTIONS(2808), + [aux_sym_preproc_if_token1] = ACTIONS(2808), + [aux_sym_preproc_if_token2] = ACTIONS(2808), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2808), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2808), + [sym_preproc_directive] = ACTIONS(2808), + [anon_sym_LPAREN2] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2808), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_AMP_AMP] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2808), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym___extension__] = ACTIONS(2808), + [anon_sym_typedef] = ACTIONS(2808), + [anon_sym_extern] = ACTIONS(2808), + [anon_sym___attribute__] = ACTIONS(2808), + [anon_sym_COLON_COLON] = ACTIONS(2810), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2810), + [anon_sym___declspec] = ACTIONS(2808), + [anon_sym___based] = ACTIONS(2808), + [anon_sym___cdecl] = ACTIONS(2808), + [anon_sym___clrcall] = ACTIONS(2808), + [anon_sym___stdcall] = ACTIONS(2808), + [anon_sym___fastcall] = ACTIONS(2808), + [anon_sym___thiscall] = ACTIONS(2808), + [anon_sym___vectorcall] = ACTIONS(2808), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_signed] = ACTIONS(2808), + [anon_sym_unsigned] = ACTIONS(2808), + [anon_sym_long] = ACTIONS(2808), + [anon_sym_short] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2808), + [anon_sym_static] = ACTIONS(2808), + [anon_sym_register] = ACTIONS(2808), + [anon_sym_inline] = ACTIONS(2808), + [anon_sym___inline] = ACTIONS(2808), + [anon_sym___inline__] = ACTIONS(2808), + [anon_sym___forceinline] = ACTIONS(2808), + [anon_sym_thread_local] = ACTIONS(2808), + [anon_sym___thread] = ACTIONS(2808), + [anon_sym_const] = ACTIONS(2808), + [anon_sym_constexpr] = ACTIONS(2808), + [anon_sym_volatile] = ACTIONS(2808), + [anon_sym_restrict] = ACTIONS(2808), + [anon_sym___restrict__] = ACTIONS(2808), + [anon_sym__Atomic] = ACTIONS(2808), + [anon_sym__Noreturn] = ACTIONS(2808), + [anon_sym_noreturn] = ACTIONS(2808), + [anon_sym_mutable] = ACTIONS(2808), + [anon_sym_constinit] = ACTIONS(2808), + [anon_sym_consteval] = ACTIONS(2808), + [sym_primitive_type] = ACTIONS(2808), + [anon_sym_enum] = ACTIONS(2808), + [anon_sym_class] = ACTIONS(2808), + [anon_sym_struct] = ACTIONS(2808), + [anon_sym_union] = ACTIONS(2808), + [anon_sym_if] = ACTIONS(2808), + [anon_sym_else] = ACTIONS(2808), + [anon_sym_switch] = ACTIONS(2808), + [anon_sym_case] = ACTIONS(2808), + [anon_sym_default] = ACTIONS(2808), + [anon_sym_while] = ACTIONS(2808), + [anon_sym_do] = ACTIONS(2808), + [anon_sym_for] = ACTIONS(2808), + [anon_sym_return] = ACTIONS(2808), + [anon_sym_break] = ACTIONS(2808), + [anon_sym_continue] = ACTIONS(2808), + [anon_sym_goto] = ACTIONS(2808), + [anon_sym_not] = ACTIONS(2808), + [anon_sym_compl] = ACTIONS(2808), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_sizeof] = ACTIONS(2808), + [anon_sym___alignof__] = ACTIONS(2808), + [anon_sym___alignof] = ACTIONS(2808), + [anon_sym__alignof] = ACTIONS(2808), + [anon_sym_alignof] = ACTIONS(2808), + [anon_sym__Alignof] = ACTIONS(2808), + [anon_sym_offsetof] = ACTIONS(2808), + [anon_sym__Generic] = ACTIONS(2808), + [anon_sym_asm] = ACTIONS(2808), + [anon_sym___asm__] = ACTIONS(2808), + [sym_number_literal] = ACTIONS(2810), + [anon_sym_L_SQUOTE] = ACTIONS(2810), + [anon_sym_u_SQUOTE] = ACTIONS(2810), + [anon_sym_U_SQUOTE] = ACTIONS(2810), + [anon_sym_u8_SQUOTE] = ACTIONS(2810), + [anon_sym_SQUOTE] = ACTIONS(2810), + [anon_sym_L_DQUOTE] = ACTIONS(2810), + [anon_sym_u_DQUOTE] = ACTIONS(2810), + [anon_sym_U_DQUOTE] = ACTIONS(2810), + [anon_sym_u8_DQUOTE] = ACTIONS(2810), + [anon_sym_DQUOTE] = ACTIONS(2810), + [sym_true] = ACTIONS(2808), + [sym_false] = ACTIONS(2808), + [anon_sym_NULL] = ACTIONS(2808), + [anon_sym_nullptr] = ACTIONS(2808), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2808), + [anon_sym_decltype] = ACTIONS(2808), + [anon_sym_virtual] = ACTIONS(2808), + [anon_sym_alignas] = ACTIONS(2808), + [anon_sym_explicit] = ACTIONS(2808), + [anon_sym_typename] = ACTIONS(2808), + [anon_sym_template] = ACTIONS(2808), + [anon_sym_operator] = ACTIONS(2808), + [anon_sym_try] = ACTIONS(2808), + [anon_sym_delete] = ACTIONS(2808), + [anon_sym_throw] = ACTIONS(2808), + [anon_sym_namespace] = ACTIONS(2808), + [anon_sym_using] = ACTIONS(2808), + [anon_sym_static_assert] = ACTIONS(2808), + [anon_sym_concept] = ACTIONS(2808), + [anon_sym_co_return] = ACTIONS(2808), + [anon_sym_co_yield] = ACTIONS(2808), + [anon_sym_R_DQUOTE] = ACTIONS(2810), + [anon_sym_LR_DQUOTE] = ACTIONS(2810), + [anon_sym_uR_DQUOTE] = ACTIONS(2810), + [anon_sym_UR_DQUOTE] = ACTIONS(2810), + [anon_sym_u8R_DQUOTE] = ACTIONS(2810), + [anon_sym_co_await] = ACTIONS(2808), + [anon_sym_new] = ACTIONS(2808), + [anon_sym_requires] = ACTIONS(2808), + [sym_this] = ACTIONS(2808), }, [645] = { - [sym_identifier] = ACTIONS(2993), - [aux_sym_preproc_include_token1] = ACTIONS(2993), - [aux_sym_preproc_def_token1] = ACTIONS(2993), - [aux_sym_preproc_if_token1] = ACTIONS(2993), - [aux_sym_preproc_if_token2] = ACTIONS(2993), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2993), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2993), - [aux_sym_preproc_else_token1] = ACTIONS(2993), - [aux_sym_preproc_elif_token1] = ACTIONS(2993), - [sym_preproc_directive] = ACTIONS(2993), - [anon_sym_LPAREN2] = ACTIONS(2995), - [anon_sym_BANG] = ACTIONS(2995), - [anon_sym_TILDE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_AMP_AMP] = ACTIONS(2995), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_SEMI] = ACTIONS(2995), - [anon_sym___extension__] = ACTIONS(2993), - [anon_sym_typedef] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(2993), - [anon_sym___attribute__] = ACTIONS(2993), - [anon_sym_COLON_COLON] = ACTIONS(2995), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2995), - [anon_sym___declspec] = ACTIONS(2993), - [anon_sym___based] = ACTIONS(2993), - [anon_sym___cdecl] = ACTIONS(2993), - [anon_sym___clrcall] = ACTIONS(2993), - [anon_sym___stdcall] = ACTIONS(2993), - [anon_sym___fastcall] = ACTIONS(2993), - [anon_sym___thiscall] = ACTIONS(2993), - [anon_sym___vectorcall] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_signed] = ACTIONS(2993), - [anon_sym_unsigned] = ACTIONS(2993), - [anon_sym_long] = ACTIONS(2993), - [anon_sym_short] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_static] = ACTIONS(2993), - [anon_sym_register] = ACTIONS(2993), - [anon_sym_inline] = ACTIONS(2993), - [anon_sym___inline] = ACTIONS(2993), - [anon_sym___inline__] = ACTIONS(2993), - [anon_sym___forceinline] = ACTIONS(2993), - [anon_sym_thread_local] = ACTIONS(2993), - [anon_sym___thread] = ACTIONS(2993), - [anon_sym_const] = ACTIONS(2993), - [anon_sym_constexpr] = ACTIONS(2993), - [anon_sym_volatile] = ACTIONS(2993), - [anon_sym_restrict] = ACTIONS(2993), - [anon_sym___restrict__] = ACTIONS(2993), - [anon_sym__Atomic] = ACTIONS(2993), - [anon_sym__Noreturn] = ACTIONS(2993), - [anon_sym_noreturn] = ACTIONS(2993), - [anon_sym_mutable] = ACTIONS(2993), - [anon_sym_constinit] = ACTIONS(2993), - [anon_sym_consteval] = ACTIONS(2993), - [sym_primitive_type] = ACTIONS(2993), - [anon_sym_enum] = ACTIONS(2993), - [anon_sym_class] = ACTIONS(2993), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_union] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_else] = ACTIONS(2993), - [anon_sym_switch] = ACTIONS(2993), - [anon_sym_case] = ACTIONS(2993), - [anon_sym_default] = ACTIONS(2993), - [anon_sym_while] = ACTIONS(2993), - [anon_sym_do] = ACTIONS(2993), - [anon_sym_for] = ACTIONS(2993), - [anon_sym_return] = ACTIONS(2993), - [anon_sym_break] = ACTIONS(2993), - [anon_sym_continue] = ACTIONS(2993), - [anon_sym_goto] = ACTIONS(2993), - [anon_sym_not] = ACTIONS(2993), - [anon_sym_compl] = ACTIONS(2993), - [anon_sym_DASH_DASH] = ACTIONS(2995), - [anon_sym_PLUS_PLUS] = ACTIONS(2995), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2993), - [anon_sym___alignof] = ACTIONS(2993), - [anon_sym__alignof] = ACTIONS(2993), - [anon_sym_alignof] = ACTIONS(2993), - [anon_sym__Alignof] = ACTIONS(2993), - [anon_sym_offsetof] = ACTIONS(2993), - [anon_sym__Generic] = ACTIONS(2993), - [anon_sym_asm] = ACTIONS(2993), - [anon_sym___asm__] = ACTIONS(2993), - [sym_number_literal] = ACTIONS(2995), - [anon_sym_L_SQUOTE] = ACTIONS(2995), - [anon_sym_u_SQUOTE] = ACTIONS(2995), - [anon_sym_U_SQUOTE] = ACTIONS(2995), - [anon_sym_u8_SQUOTE] = ACTIONS(2995), - [anon_sym_SQUOTE] = ACTIONS(2995), - [anon_sym_L_DQUOTE] = ACTIONS(2995), - [anon_sym_u_DQUOTE] = ACTIONS(2995), - [anon_sym_U_DQUOTE] = ACTIONS(2995), - [anon_sym_u8_DQUOTE] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2995), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [anon_sym_NULL] = ACTIONS(2993), - [anon_sym_nullptr] = ACTIONS(2993), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2993), - [anon_sym_decltype] = ACTIONS(2993), - [anon_sym_virtual] = ACTIONS(2993), - [anon_sym_alignas] = ACTIONS(2993), - [anon_sym_explicit] = ACTIONS(2993), - [anon_sym_typename] = ACTIONS(2993), - [anon_sym_template] = ACTIONS(2993), - [anon_sym_operator] = ACTIONS(2993), - [anon_sym_try] = ACTIONS(2993), - [anon_sym_delete] = ACTIONS(2993), - [anon_sym_throw] = ACTIONS(2993), - [anon_sym_namespace] = ACTIONS(2993), - [anon_sym_using] = ACTIONS(2993), - [anon_sym_static_assert] = ACTIONS(2993), - [anon_sym_concept] = ACTIONS(2993), - [anon_sym_co_return] = ACTIONS(2993), - [anon_sym_co_yield] = ACTIONS(2993), - [anon_sym_R_DQUOTE] = ACTIONS(2995), - [anon_sym_LR_DQUOTE] = ACTIONS(2995), - [anon_sym_uR_DQUOTE] = ACTIONS(2995), - [anon_sym_UR_DQUOTE] = ACTIONS(2995), - [anon_sym_u8R_DQUOTE] = ACTIONS(2995), - [anon_sym_co_await] = ACTIONS(2993), - [anon_sym_new] = ACTIONS(2993), - [anon_sym_requires] = ACTIONS(2993), - [sym_this] = ACTIONS(2993), + [sym_identifier] = ACTIONS(2804), + [aux_sym_preproc_include_token1] = ACTIONS(2804), + [aux_sym_preproc_def_token1] = ACTIONS(2804), + [aux_sym_preproc_if_token1] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2804), + [sym_preproc_directive] = ACTIONS(2804), + [anon_sym_LPAREN2] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2806), + [anon_sym_DASH] = ACTIONS(2804), + [anon_sym_PLUS] = ACTIONS(2804), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_AMP_AMP] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym___extension__] = ACTIONS(2804), + [anon_sym_typedef] = ACTIONS(2804), + [anon_sym_extern] = ACTIONS(2804), + [anon_sym___attribute__] = ACTIONS(2804), + [anon_sym_COLON_COLON] = ACTIONS(2806), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2806), + [anon_sym___declspec] = ACTIONS(2804), + [anon_sym___based] = ACTIONS(2804), + [anon_sym___cdecl] = ACTIONS(2804), + [anon_sym___clrcall] = ACTIONS(2804), + [anon_sym___stdcall] = ACTIONS(2804), + [anon_sym___fastcall] = ACTIONS(2804), + [anon_sym___thiscall] = ACTIONS(2804), + [anon_sym___vectorcall] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_RBRACE] = ACTIONS(2806), + [anon_sym_signed] = ACTIONS(2804), + [anon_sym_unsigned] = ACTIONS(2804), + [anon_sym_long] = ACTIONS(2804), + [anon_sym_short] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2804), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_register] = ACTIONS(2804), + [anon_sym_inline] = ACTIONS(2804), + [anon_sym___inline] = ACTIONS(2804), + [anon_sym___inline__] = ACTIONS(2804), + [anon_sym___forceinline] = ACTIONS(2804), + [anon_sym_thread_local] = ACTIONS(2804), + [anon_sym___thread] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_constexpr] = ACTIONS(2804), + [anon_sym_volatile] = ACTIONS(2804), + [anon_sym_restrict] = ACTIONS(2804), + [anon_sym___restrict__] = ACTIONS(2804), + [anon_sym__Atomic] = ACTIONS(2804), + [anon_sym__Noreturn] = ACTIONS(2804), + [anon_sym_noreturn] = ACTIONS(2804), + [anon_sym_mutable] = ACTIONS(2804), + [anon_sym_constinit] = ACTIONS(2804), + [anon_sym_consteval] = ACTIONS(2804), + [sym_primitive_type] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [anon_sym_class] = ACTIONS(2804), + [anon_sym_struct] = ACTIONS(2804), + [anon_sym_union] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2804), + [anon_sym_else] = ACTIONS(2804), + [anon_sym_switch] = ACTIONS(2804), + [anon_sym_case] = ACTIONS(2804), + [anon_sym_default] = ACTIONS(2804), + [anon_sym_while] = ACTIONS(2804), + [anon_sym_do] = ACTIONS(2804), + [anon_sym_for] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2804), + [anon_sym_break] = ACTIONS(2804), + [anon_sym_continue] = ACTIONS(2804), + [anon_sym_goto] = ACTIONS(2804), + [anon_sym_not] = ACTIONS(2804), + [anon_sym_compl] = ACTIONS(2804), + [anon_sym_DASH_DASH] = ACTIONS(2806), + [anon_sym_PLUS_PLUS] = ACTIONS(2806), + [anon_sym_sizeof] = ACTIONS(2804), + [anon_sym___alignof__] = ACTIONS(2804), + [anon_sym___alignof] = ACTIONS(2804), + [anon_sym__alignof] = ACTIONS(2804), + [anon_sym_alignof] = ACTIONS(2804), + [anon_sym__Alignof] = ACTIONS(2804), + [anon_sym_offsetof] = ACTIONS(2804), + [anon_sym__Generic] = ACTIONS(2804), + [anon_sym_asm] = ACTIONS(2804), + [anon_sym___asm__] = ACTIONS(2804), + [sym_number_literal] = ACTIONS(2806), + [anon_sym_L_SQUOTE] = ACTIONS(2806), + [anon_sym_u_SQUOTE] = ACTIONS(2806), + [anon_sym_U_SQUOTE] = ACTIONS(2806), + [anon_sym_u8_SQUOTE] = ACTIONS(2806), + [anon_sym_SQUOTE] = ACTIONS(2806), + [anon_sym_L_DQUOTE] = ACTIONS(2806), + [anon_sym_u_DQUOTE] = ACTIONS(2806), + [anon_sym_U_DQUOTE] = ACTIONS(2806), + [anon_sym_u8_DQUOTE] = ACTIONS(2806), + [anon_sym_DQUOTE] = ACTIONS(2806), + [sym_true] = ACTIONS(2804), + [sym_false] = ACTIONS(2804), + [anon_sym_NULL] = ACTIONS(2804), + [anon_sym_nullptr] = ACTIONS(2804), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2804), + [anon_sym_decltype] = ACTIONS(2804), + [anon_sym_virtual] = ACTIONS(2804), + [anon_sym_alignas] = ACTIONS(2804), + [anon_sym_explicit] = ACTIONS(2804), + [anon_sym_typename] = ACTIONS(2804), + [anon_sym_template] = ACTIONS(2804), + [anon_sym_operator] = ACTIONS(2804), + [anon_sym_try] = ACTIONS(2804), + [anon_sym_delete] = ACTIONS(2804), + [anon_sym_throw] = ACTIONS(2804), + [anon_sym_namespace] = ACTIONS(2804), + [anon_sym_using] = ACTIONS(2804), + [anon_sym_static_assert] = ACTIONS(2804), + [anon_sym_concept] = ACTIONS(2804), + [anon_sym_co_return] = ACTIONS(2804), + [anon_sym_co_yield] = ACTIONS(2804), + [anon_sym_R_DQUOTE] = ACTIONS(2806), + [anon_sym_LR_DQUOTE] = ACTIONS(2806), + [anon_sym_uR_DQUOTE] = ACTIONS(2806), + [anon_sym_UR_DQUOTE] = ACTIONS(2806), + [anon_sym_u8R_DQUOTE] = ACTIONS(2806), + [anon_sym_co_await] = ACTIONS(2804), + [anon_sym_new] = ACTIONS(2804), + [anon_sym_requires] = ACTIONS(2804), + [sym_this] = ACTIONS(2804), }, [646] = { - [sym_identifier] = ACTIONS(2973), - [aux_sym_preproc_include_token1] = ACTIONS(2973), - [aux_sym_preproc_def_token1] = ACTIONS(2973), - [aux_sym_preproc_if_token1] = ACTIONS(2973), - [aux_sym_preproc_if_token2] = ACTIONS(2973), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2973), - [aux_sym_preproc_else_token1] = ACTIONS(2973), - [aux_sym_preproc_elif_token1] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2975), - [anon_sym_BANG] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym___extension__] = ACTIONS(2973), - [anon_sym_typedef] = ACTIONS(2973), - [anon_sym_extern] = ACTIONS(2973), - [anon_sym___attribute__] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), - [anon_sym___declspec] = ACTIONS(2973), - [anon_sym___based] = ACTIONS(2973), - [anon_sym___cdecl] = ACTIONS(2973), - [anon_sym___clrcall] = ACTIONS(2973), - [anon_sym___stdcall] = ACTIONS(2973), - [anon_sym___fastcall] = ACTIONS(2973), - [anon_sym___thiscall] = ACTIONS(2973), - [anon_sym___vectorcall] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_signed] = ACTIONS(2973), - [anon_sym_unsigned] = ACTIONS(2973), - [anon_sym_long] = ACTIONS(2973), - [anon_sym_short] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_static] = ACTIONS(2973), - [anon_sym_register] = ACTIONS(2973), - [anon_sym_inline] = ACTIONS(2973), - [anon_sym___inline] = ACTIONS(2973), - [anon_sym___inline__] = ACTIONS(2973), - [anon_sym___forceinline] = ACTIONS(2973), - [anon_sym_thread_local] = ACTIONS(2973), - [anon_sym___thread] = ACTIONS(2973), - [anon_sym_const] = ACTIONS(2973), - [anon_sym_constexpr] = ACTIONS(2973), - [anon_sym_volatile] = ACTIONS(2973), - [anon_sym_restrict] = ACTIONS(2973), - [anon_sym___restrict__] = ACTIONS(2973), - [anon_sym__Atomic] = ACTIONS(2973), - [anon_sym__Noreturn] = ACTIONS(2973), - [anon_sym_noreturn] = ACTIONS(2973), - [anon_sym_mutable] = ACTIONS(2973), - [anon_sym_constinit] = ACTIONS(2973), - [anon_sym_consteval] = ACTIONS(2973), - [sym_primitive_type] = ACTIONS(2973), - [anon_sym_enum] = ACTIONS(2973), - [anon_sym_class] = ACTIONS(2973), - [anon_sym_struct] = ACTIONS(2973), - [anon_sym_union] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_else] = ACTIONS(2973), - [anon_sym_switch] = ACTIONS(2973), - [anon_sym_case] = ACTIONS(2973), - [anon_sym_default] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_break] = ACTIONS(2973), - [anon_sym_continue] = ACTIONS(2973), - [anon_sym_goto] = ACTIONS(2973), - [anon_sym_not] = ACTIONS(2973), - [anon_sym_compl] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2975), - [anon_sym_PLUS_PLUS] = ACTIONS(2975), - [anon_sym_sizeof] = ACTIONS(2973), - [anon_sym___alignof__] = ACTIONS(2973), - [anon_sym___alignof] = ACTIONS(2973), - [anon_sym__alignof] = ACTIONS(2973), - [anon_sym_alignof] = ACTIONS(2973), - [anon_sym__Alignof] = ACTIONS(2973), - [anon_sym_offsetof] = ACTIONS(2973), - [anon_sym__Generic] = ACTIONS(2973), - [anon_sym_asm] = ACTIONS(2973), - [anon_sym___asm__] = ACTIONS(2973), - [sym_number_literal] = ACTIONS(2975), - [anon_sym_L_SQUOTE] = ACTIONS(2975), - [anon_sym_u_SQUOTE] = ACTIONS(2975), - [anon_sym_U_SQUOTE] = ACTIONS(2975), - [anon_sym_u8_SQUOTE] = ACTIONS(2975), - [anon_sym_SQUOTE] = ACTIONS(2975), - [anon_sym_L_DQUOTE] = ACTIONS(2975), - [anon_sym_u_DQUOTE] = ACTIONS(2975), - [anon_sym_U_DQUOTE] = ACTIONS(2975), - [anon_sym_u8_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE] = ACTIONS(2975), - [sym_true] = ACTIONS(2973), - [sym_false] = ACTIONS(2973), - [anon_sym_NULL] = ACTIONS(2973), - [anon_sym_nullptr] = ACTIONS(2973), + [ts_builtin_sym_end] = ACTIONS(2788), + [sym_identifier] = ACTIONS(2786), + [aux_sym_preproc_include_token1] = ACTIONS(2786), + [aux_sym_preproc_def_token1] = ACTIONS(2786), + [aux_sym_preproc_if_token1] = ACTIONS(2786), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2786), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2786), + [sym_preproc_directive] = ACTIONS(2786), + [anon_sym_LPAREN2] = ACTIONS(2788), + [anon_sym_BANG] = ACTIONS(2788), + [anon_sym_TILDE] = ACTIONS(2788), + [anon_sym_DASH] = ACTIONS(2786), + [anon_sym_PLUS] = ACTIONS(2786), + [anon_sym_STAR] = ACTIONS(2788), + [anon_sym_AMP_AMP] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym___extension__] = ACTIONS(2786), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_extern] = ACTIONS(2786), + [anon_sym___attribute__] = ACTIONS(2786), + [anon_sym_COLON_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2788), + [anon_sym___declspec] = ACTIONS(2786), + [anon_sym___based] = ACTIONS(2786), + [anon_sym___cdecl] = ACTIONS(2786), + [anon_sym___clrcall] = ACTIONS(2786), + [anon_sym___stdcall] = ACTIONS(2786), + [anon_sym___fastcall] = ACTIONS(2786), + [anon_sym___thiscall] = ACTIONS(2786), + [anon_sym___vectorcall] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2788), + [anon_sym_signed] = ACTIONS(2786), + [anon_sym_unsigned] = ACTIONS(2786), + [anon_sym_long] = ACTIONS(2786), + [anon_sym_short] = ACTIONS(2786), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_static] = ACTIONS(2786), + [anon_sym_register] = ACTIONS(2786), + [anon_sym_inline] = ACTIONS(2786), + [anon_sym___inline] = ACTIONS(2786), + [anon_sym___inline__] = ACTIONS(2786), + [anon_sym___forceinline] = ACTIONS(2786), + [anon_sym_thread_local] = ACTIONS(2786), + [anon_sym___thread] = ACTIONS(2786), + [anon_sym_const] = ACTIONS(2786), + [anon_sym_constexpr] = ACTIONS(2786), + [anon_sym_volatile] = ACTIONS(2786), + [anon_sym_restrict] = ACTIONS(2786), + [anon_sym___restrict__] = ACTIONS(2786), + [anon_sym__Atomic] = ACTIONS(2786), + [anon_sym__Noreturn] = ACTIONS(2786), + [anon_sym_noreturn] = ACTIONS(2786), + [anon_sym_mutable] = ACTIONS(2786), + [anon_sym_constinit] = ACTIONS(2786), + [anon_sym_consteval] = ACTIONS(2786), + [sym_primitive_type] = ACTIONS(2786), + [anon_sym_enum] = ACTIONS(2786), + [anon_sym_class] = ACTIONS(2786), + [anon_sym_struct] = ACTIONS(2786), + [anon_sym_union] = ACTIONS(2786), + [anon_sym_if] = ACTIONS(2786), + [anon_sym_else] = ACTIONS(2786), + [anon_sym_switch] = ACTIONS(2786), + [anon_sym_case] = ACTIONS(2786), + [anon_sym_default] = ACTIONS(2786), + [anon_sym_while] = ACTIONS(2786), + [anon_sym_do] = ACTIONS(2786), + [anon_sym_for] = ACTIONS(2786), + [anon_sym_return] = ACTIONS(2786), + [anon_sym_break] = ACTIONS(2786), + [anon_sym_continue] = ACTIONS(2786), + [anon_sym_goto] = ACTIONS(2786), + [anon_sym_not] = ACTIONS(2786), + [anon_sym_compl] = ACTIONS(2786), + [anon_sym_DASH_DASH] = ACTIONS(2788), + [anon_sym_PLUS_PLUS] = ACTIONS(2788), + [anon_sym_sizeof] = ACTIONS(2786), + [anon_sym___alignof__] = ACTIONS(2786), + [anon_sym___alignof] = ACTIONS(2786), + [anon_sym__alignof] = ACTIONS(2786), + [anon_sym_alignof] = ACTIONS(2786), + [anon_sym__Alignof] = ACTIONS(2786), + [anon_sym_offsetof] = ACTIONS(2786), + [anon_sym__Generic] = ACTIONS(2786), + [anon_sym_asm] = ACTIONS(2786), + [anon_sym___asm__] = ACTIONS(2786), + [sym_number_literal] = ACTIONS(2788), + [anon_sym_L_SQUOTE] = ACTIONS(2788), + [anon_sym_u_SQUOTE] = ACTIONS(2788), + [anon_sym_U_SQUOTE] = ACTIONS(2788), + [anon_sym_u8_SQUOTE] = ACTIONS(2788), + [anon_sym_SQUOTE] = ACTIONS(2788), + [anon_sym_L_DQUOTE] = ACTIONS(2788), + [anon_sym_u_DQUOTE] = ACTIONS(2788), + [anon_sym_U_DQUOTE] = ACTIONS(2788), + [anon_sym_u8_DQUOTE] = ACTIONS(2788), + [anon_sym_DQUOTE] = ACTIONS(2788), + [sym_true] = ACTIONS(2786), + [sym_false] = ACTIONS(2786), + [anon_sym_NULL] = ACTIONS(2786), + [anon_sym_nullptr] = ACTIONS(2786), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2973), - [anon_sym_decltype] = ACTIONS(2973), - [anon_sym_virtual] = ACTIONS(2973), - [anon_sym_alignas] = ACTIONS(2973), - [anon_sym_explicit] = ACTIONS(2973), - [anon_sym_typename] = ACTIONS(2973), - [anon_sym_template] = ACTIONS(2973), - [anon_sym_operator] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_throw] = ACTIONS(2973), - [anon_sym_namespace] = ACTIONS(2973), - [anon_sym_using] = ACTIONS(2973), - [anon_sym_static_assert] = ACTIONS(2973), - [anon_sym_concept] = ACTIONS(2973), - [anon_sym_co_return] = ACTIONS(2973), - [anon_sym_co_yield] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_requires] = ACTIONS(2973), - [sym_this] = ACTIONS(2973), + [sym_auto] = ACTIONS(2786), + [anon_sym_decltype] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(2786), + [anon_sym_alignas] = ACTIONS(2786), + [anon_sym_explicit] = ACTIONS(2786), + [anon_sym_typename] = ACTIONS(2786), + [anon_sym_template] = ACTIONS(2786), + [anon_sym_operator] = ACTIONS(2786), + [anon_sym_try] = ACTIONS(2786), + [anon_sym_delete] = ACTIONS(2786), + [anon_sym_throw] = ACTIONS(2786), + [anon_sym_namespace] = ACTIONS(2786), + [anon_sym_using] = ACTIONS(2786), + [anon_sym_static_assert] = ACTIONS(2786), + [anon_sym_concept] = ACTIONS(2786), + [anon_sym_co_return] = ACTIONS(2786), + [anon_sym_co_yield] = ACTIONS(2786), + [anon_sym_R_DQUOTE] = ACTIONS(2788), + [anon_sym_LR_DQUOTE] = ACTIONS(2788), + [anon_sym_uR_DQUOTE] = ACTIONS(2788), + [anon_sym_UR_DQUOTE] = ACTIONS(2788), + [anon_sym_u8R_DQUOTE] = ACTIONS(2788), + [anon_sym_co_await] = ACTIONS(2786), + [anon_sym_new] = ACTIONS(2786), + [anon_sym_requires] = ACTIONS(2786), + [sym_this] = ACTIONS(2786), }, [647] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [ts_builtin_sym_end] = ACTIONS(2874), + [sym_identifier] = ACTIONS(2872), + [aux_sym_preproc_include_token1] = ACTIONS(2872), + [aux_sym_preproc_def_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token1] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2872), + [sym_preproc_directive] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_AMP_AMP] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym___extension__] = ACTIONS(2872), + [anon_sym_typedef] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym___attribute__] = ACTIONS(2872), + [anon_sym_COLON_COLON] = ACTIONS(2874), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2874), + [anon_sym___declspec] = ACTIONS(2872), + [anon_sym___based] = ACTIONS(2872), + [anon_sym___cdecl] = ACTIONS(2872), + [anon_sym___clrcall] = ACTIONS(2872), + [anon_sym___stdcall] = ACTIONS(2872), + [anon_sym___fastcall] = ACTIONS(2872), + [anon_sym___thiscall] = ACTIONS(2872), + [anon_sym___vectorcall] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_signed] = ACTIONS(2872), + [anon_sym_unsigned] = ACTIONS(2872), + [anon_sym_long] = ACTIONS(2872), + [anon_sym_short] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_register] = ACTIONS(2872), + [anon_sym_inline] = ACTIONS(2872), + [anon_sym___inline] = ACTIONS(2872), + [anon_sym___inline__] = ACTIONS(2872), + [anon_sym___forceinline] = ACTIONS(2872), + [anon_sym_thread_local] = ACTIONS(2872), + [anon_sym___thread] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_constexpr] = ACTIONS(2872), + [anon_sym_volatile] = ACTIONS(2872), + [anon_sym_restrict] = ACTIONS(2872), + [anon_sym___restrict__] = ACTIONS(2872), + [anon_sym__Atomic] = ACTIONS(2872), + [anon_sym__Noreturn] = ACTIONS(2872), + [anon_sym_noreturn] = ACTIONS(2872), + [anon_sym_mutable] = ACTIONS(2872), + [anon_sym_constinit] = ACTIONS(2872), + [anon_sym_consteval] = ACTIONS(2872), + [sym_primitive_type] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_class] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_else] = ACTIONS(2872), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_case] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_goto] = ACTIONS(2872), + [anon_sym_not] = ACTIONS(2872), + [anon_sym_compl] = ACTIONS(2872), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_sizeof] = ACTIONS(2872), + [anon_sym___alignof__] = ACTIONS(2872), + [anon_sym___alignof] = ACTIONS(2872), + [anon_sym__alignof] = ACTIONS(2872), + [anon_sym_alignof] = ACTIONS(2872), + [anon_sym__Alignof] = ACTIONS(2872), + [anon_sym_offsetof] = ACTIONS(2872), + [anon_sym__Generic] = ACTIONS(2872), + [anon_sym_asm] = ACTIONS(2872), + [anon_sym___asm__] = ACTIONS(2872), + [sym_number_literal] = ACTIONS(2874), + [anon_sym_L_SQUOTE] = ACTIONS(2874), + [anon_sym_u_SQUOTE] = ACTIONS(2874), + [anon_sym_U_SQUOTE] = ACTIONS(2874), + [anon_sym_u8_SQUOTE] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_L_DQUOTE] = ACTIONS(2874), + [anon_sym_u_DQUOTE] = ACTIONS(2874), + [anon_sym_U_DQUOTE] = ACTIONS(2874), + [anon_sym_u8_DQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE] = ACTIONS(2874), + [sym_true] = ACTIONS(2872), + [sym_false] = ACTIONS(2872), + [anon_sym_NULL] = ACTIONS(2872), + [anon_sym_nullptr] = ACTIONS(2872), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2872), + [anon_sym_decltype] = ACTIONS(2872), + [anon_sym_virtual] = ACTIONS(2872), + [anon_sym_alignas] = ACTIONS(2872), + [anon_sym_explicit] = ACTIONS(2872), + [anon_sym_typename] = ACTIONS(2872), + [anon_sym_template] = ACTIONS(2872), + [anon_sym_operator] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_delete] = ACTIONS(2872), + [anon_sym_throw] = ACTIONS(2872), + [anon_sym_namespace] = ACTIONS(2872), + [anon_sym_using] = ACTIONS(2872), + [anon_sym_static_assert] = ACTIONS(2872), + [anon_sym_concept] = ACTIONS(2872), + [anon_sym_co_return] = ACTIONS(2872), + [anon_sym_co_yield] = ACTIONS(2872), + [anon_sym_R_DQUOTE] = ACTIONS(2874), + [anon_sym_LR_DQUOTE] = ACTIONS(2874), + [anon_sym_uR_DQUOTE] = ACTIONS(2874), + [anon_sym_UR_DQUOTE] = ACTIONS(2874), + [anon_sym_u8R_DQUOTE] = ACTIONS(2874), + [anon_sym_co_await] = ACTIONS(2872), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_requires] = ACTIONS(2872), + [sym_this] = ACTIONS(2872), }, [648] = { - [sym_identifier] = ACTIONS(2965), - [aux_sym_preproc_include_token1] = ACTIONS(2965), - [aux_sym_preproc_def_token1] = ACTIONS(2965), - [aux_sym_preproc_if_token1] = ACTIONS(2965), - [aux_sym_preproc_if_token2] = ACTIONS(2965), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), - [aux_sym_preproc_else_token1] = ACTIONS(2965), - [aux_sym_preproc_elif_token1] = ACTIONS(2965), - [sym_preproc_directive] = ACTIONS(2965), - [anon_sym_LPAREN2] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_AMP_AMP] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym___extension__] = ACTIONS(2965), - [anon_sym_typedef] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2965), - [anon_sym___attribute__] = ACTIONS(2965), - [anon_sym_COLON_COLON] = ACTIONS(2967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), - [anon_sym___declspec] = ACTIONS(2965), - [anon_sym___based] = ACTIONS(2965), - [anon_sym___cdecl] = ACTIONS(2965), - [anon_sym___clrcall] = ACTIONS(2965), - [anon_sym___stdcall] = ACTIONS(2965), - [anon_sym___fastcall] = ACTIONS(2965), - [anon_sym___thiscall] = ACTIONS(2965), - [anon_sym___vectorcall] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_signed] = ACTIONS(2965), - [anon_sym_unsigned] = ACTIONS(2965), - [anon_sym_long] = ACTIONS(2965), - [anon_sym_short] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2965), - [anon_sym_static] = ACTIONS(2965), - [anon_sym_register] = ACTIONS(2965), - [anon_sym_inline] = ACTIONS(2965), - [anon_sym___inline] = ACTIONS(2965), - [anon_sym___inline__] = ACTIONS(2965), - [anon_sym___forceinline] = ACTIONS(2965), - [anon_sym_thread_local] = ACTIONS(2965), - [anon_sym___thread] = ACTIONS(2965), - [anon_sym_const] = ACTIONS(2965), - [anon_sym_constexpr] = ACTIONS(2965), - [anon_sym_volatile] = ACTIONS(2965), - [anon_sym_restrict] = ACTIONS(2965), - [anon_sym___restrict__] = ACTIONS(2965), - [anon_sym__Atomic] = ACTIONS(2965), - [anon_sym__Noreturn] = ACTIONS(2965), - [anon_sym_noreturn] = ACTIONS(2965), - [anon_sym_mutable] = ACTIONS(2965), - [anon_sym_constinit] = ACTIONS(2965), - [anon_sym_consteval] = ACTIONS(2965), - [sym_primitive_type] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2965), - [anon_sym_class] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_union] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_else] = ACTIONS(2965), - [anon_sym_switch] = ACTIONS(2965), - [anon_sym_case] = ACTIONS(2965), - [anon_sym_default] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2965), - [anon_sym_do] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2965), - [anon_sym_return] = ACTIONS(2965), - [anon_sym_break] = ACTIONS(2965), - [anon_sym_continue] = ACTIONS(2965), - [anon_sym_goto] = ACTIONS(2965), - [anon_sym_not] = ACTIONS(2965), - [anon_sym_compl] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_sizeof] = ACTIONS(2965), - [anon_sym___alignof__] = ACTIONS(2965), - [anon_sym___alignof] = ACTIONS(2965), - [anon_sym__alignof] = ACTIONS(2965), - [anon_sym_alignof] = ACTIONS(2965), - [anon_sym__Alignof] = ACTIONS(2965), - [anon_sym_offsetof] = ACTIONS(2965), - [anon_sym__Generic] = ACTIONS(2965), - [anon_sym_asm] = ACTIONS(2965), - [anon_sym___asm__] = ACTIONS(2965), - [sym_number_literal] = ACTIONS(2967), - [anon_sym_L_SQUOTE] = ACTIONS(2967), - [anon_sym_u_SQUOTE] = ACTIONS(2967), - [anon_sym_U_SQUOTE] = ACTIONS(2967), - [anon_sym_u8_SQUOTE] = ACTIONS(2967), - [anon_sym_SQUOTE] = ACTIONS(2967), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [anon_sym_NULL] = ACTIONS(2965), - [anon_sym_nullptr] = ACTIONS(2965), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2965), - [anon_sym_decltype] = ACTIONS(2965), - [anon_sym_virtual] = ACTIONS(2965), - [anon_sym_alignas] = ACTIONS(2965), - [anon_sym_explicit] = ACTIONS(2965), - [anon_sym_typename] = ACTIONS(2965), - [anon_sym_template] = ACTIONS(2965), - [anon_sym_operator] = ACTIONS(2965), - [anon_sym_try] = ACTIONS(2965), - [anon_sym_delete] = ACTIONS(2965), - [anon_sym_throw] = ACTIONS(2965), - [anon_sym_namespace] = ACTIONS(2965), - [anon_sym_using] = ACTIONS(2965), - [anon_sym_static_assert] = ACTIONS(2965), - [anon_sym_concept] = ACTIONS(2965), - [anon_sym_co_return] = ACTIONS(2965), - [anon_sym_co_yield] = ACTIONS(2965), - [anon_sym_R_DQUOTE] = ACTIONS(2967), - [anon_sym_LR_DQUOTE] = ACTIONS(2967), - [anon_sym_uR_DQUOTE] = ACTIONS(2967), - [anon_sym_UR_DQUOTE] = ACTIONS(2967), - [anon_sym_u8R_DQUOTE] = ACTIONS(2967), - [anon_sym_co_await] = ACTIONS(2965), - [anon_sym_new] = ACTIONS(2965), - [anon_sym_requires] = ACTIONS(2965), - [sym_this] = ACTIONS(2965), + [ts_builtin_sym_end] = ACTIONS(2870), + [sym_identifier] = ACTIONS(2868), + [aux_sym_preproc_include_token1] = ACTIONS(2868), + [aux_sym_preproc_def_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token1] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2868), + [sym_preproc_directive] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym___extension__] = ACTIONS(2868), + [anon_sym_typedef] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym___attribute__] = ACTIONS(2868), + [anon_sym_COLON_COLON] = ACTIONS(2870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2870), + [anon_sym___declspec] = ACTIONS(2868), + [anon_sym___based] = ACTIONS(2868), + [anon_sym___cdecl] = ACTIONS(2868), + [anon_sym___clrcall] = ACTIONS(2868), + [anon_sym___stdcall] = ACTIONS(2868), + [anon_sym___fastcall] = ACTIONS(2868), + [anon_sym___thiscall] = ACTIONS(2868), + [anon_sym___vectorcall] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_signed] = ACTIONS(2868), + [anon_sym_unsigned] = ACTIONS(2868), + [anon_sym_long] = ACTIONS(2868), + [anon_sym_short] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_register] = ACTIONS(2868), + [anon_sym_inline] = ACTIONS(2868), + [anon_sym___inline] = ACTIONS(2868), + [anon_sym___inline__] = ACTIONS(2868), + [anon_sym___forceinline] = ACTIONS(2868), + [anon_sym_thread_local] = ACTIONS(2868), + [anon_sym___thread] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_constexpr] = ACTIONS(2868), + [anon_sym_volatile] = ACTIONS(2868), + [anon_sym_restrict] = ACTIONS(2868), + [anon_sym___restrict__] = ACTIONS(2868), + [anon_sym__Atomic] = ACTIONS(2868), + [anon_sym__Noreturn] = ACTIONS(2868), + [anon_sym_noreturn] = ACTIONS(2868), + [anon_sym_mutable] = ACTIONS(2868), + [anon_sym_constinit] = ACTIONS(2868), + [anon_sym_consteval] = ACTIONS(2868), + [sym_primitive_type] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_class] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2868), + [anon_sym_union] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_goto] = ACTIONS(2868), + [anon_sym_not] = ACTIONS(2868), + [anon_sym_compl] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_sizeof] = ACTIONS(2868), + [anon_sym___alignof__] = ACTIONS(2868), + [anon_sym___alignof] = ACTIONS(2868), + [anon_sym__alignof] = ACTIONS(2868), + [anon_sym_alignof] = ACTIONS(2868), + [anon_sym__Alignof] = ACTIONS(2868), + [anon_sym_offsetof] = ACTIONS(2868), + [anon_sym__Generic] = ACTIONS(2868), + [anon_sym_asm] = ACTIONS(2868), + [anon_sym___asm__] = ACTIONS(2868), + [sym_number_literal] = ACTIONS(2870), + [anon_sym_L_SQUOTE] = ACTIONS(2870), + [anon_sym_u_SQUOTE] = ACTIONS(2870), + [anon_sym_U_SQUOTE] = ACTIONS(2870), + [anon_sym_u8_SQUOTE] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_L_DQUOTE] = ACTIONS(2870), + [anon_sym_u_DQUOTE] = ACTIONS(2870), + [anon_sym_U_DQUOTE] = ACTIONS(2870), + [anon_sym_u8_DQUOTE] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [sym_true] = ACTIONS(2868), + [sym_false] = ACTIONS(2868), + [anon_sym_NULL] = ACTIONS(2868), + [anon_sym_nullptr] = ACTIONS(2868), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2868), + [anon_sym_decltype] = ACTIONS(2868), + [anon_sym_virtual] = ACTIONS(2868), + [anon_sym_alignas] = ACTIONS(2868), + [anon_sym_explicit] = ACTIONS(2868), + [anon_sym_typename] = ACTIONS(2868), + [anon_sym_template] = ACTIONS(2868), + [anon_sym_operator] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_delete] = ACTIONS(2868), + [anon_sym_throw] = ACTIONS(2868), + [anon_sym_namespace] = ACTIONS(2868), + [anon_sym_using] = ACTIONS(2868), + [anon_sym_static_assert] = ACTIONS(2868), + [anon_sym_concept] = ACTIONS(2868), + [anon_sym_co_return] = ACTIONS(2868), + [anon_sym_co_yield] = ACTIONS(2868), + [anon_sym_R_DQUOTE] = ACTIONS(2870), + [anon_sym_LR_DQUOTE] = ACTIONS(2870), + [anon_sym_uR_DQUOTE] = ACTIONS(2870), + [anon_sym_UR_DQUOTE] = ACTIONS(2870), + [anon_sym_u8R_DQUOTE] = ACTIONS(2870), + [anon_sym_co_await] = ACTIONS(2868), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_requires] = ACTIONS(2868), + [sym_this] = ACTIONS(2868), }, [649] = { - [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), - [sym_preproc_directive] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2979), - [anon_sym_BANG] = ACTIONS(2979), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym___extension__] = ACTIONS(2977), - [anon_sym_typedef] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym___attribute__] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2979), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), - [anon_sym___declspec] = ACTIONS(2977), - [anon_sym___based] = ACTIONS(2977), - [anon_sym___cdecl] = ACTIONS(2977), - [anon_sym___clrcall] = ACTIONS(2977), - [anon_sym___stdcall] = ACTIONS(2977), - [anon_sym___fastcall] = ACTIONS(2977), - [anon_sym___thiscall] = ACTIONS(2977), - [anon_sym___vectorcall] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_signed] = ACTIONS(2977), - [anon_sym_unsigned] = ACTIONS(2977), - [anon_sym_long] = ACTIONS(2977), - [anon_sym_short] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_static] = ACTIONS(2977), - [anon_sym_register] = ACTIONS(2977), - [anon_sym_inline] = ACTIONS(2977), - [anon_sym___inline] = ACTIONS(2977), - [anon_sym___inline__] = ACTIONS(2977), - [anon_sym___forceinline] = ACTIONS(2977), - [anon_sym_thread_local] = ACTIONS(2977), - [anon_sym___thread] = ACTIONS(2977), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_constexpr] = ACTIONS(2977), - [anon_sym_volatile] = ACTIONS(2977), - [anon_sym_restrict] = ACTIONS(2977), - [anon_sym___restrict__] = ACTIONS(2977), - [anon_sym__Atomic] = ACTIONS(2977), - [anon_sym__Noreturn] = ACTIONS(2977), - [anon_sym_noreturn] = ACTIONS(2977), - [anon_sym_mutable] = ACTIONS(2977), - [anon_sym_constinit] = ACTIONS(2977), - [anon_sym_consteval] = ACTIONS(2977), - [sym_primitive_type] = ACTIONS(2977), - [anon_sym_enum] = ACTIONS(2977), - [anon_sym_class] = ACTIONS(2977), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_union] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_else] = ACTIONS(2977), - [anon_sym_switch] = ACTIONS(2977), - [anon_sym_case] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_break] = ACTIONS(2977), - [anon_sym_continue] = ACTIONS(2977), - [anon_sym_goto] = ACTIONS(2977), - [anon_sym_not] = ACTIONS(2977), - [anon_sym_compl] = ACTIONS(2977), - [anon_sym_DASH_DASH] = ACTIONS(2979), - [anon_sym_PLUS_PLUS] = ACTIONS(2979), - [anon_sym_sizeof] = ACTIONS(2977), - [anon_sym___alignof__] = ACTIONS(2977), - [anon_sym___alignof] = ACTIONS(2977), - [anon_sym__alignof] = ACTIONS(2977), - [anon_sym_alignof] = ACTIONS(2977), - [anon_sym__Alignof] = ACTIONS(2977), - [anon_sym_offsetof] = ACTIONS(2977), - [anon_sym__Generic] = ACTIONS(2977), - [anon_sym_asm] = ACTIONS(2977), - [anon_sym___asm__] = ACTIONS(2977), - [sym_number_literal] = ACTIONS(2979), - [anon_sym_L_SQUOTE] = ACTIONS(2979), - [anon_sym_u_SQUOTE] = ACTIONS(2979), - [anon_sym_U_SQUOTE] = ACTIONS(2979), - [anon_sym_u8_SQUOTE] = ACTIONS(2979), - [anon_sym_SQUOTE] = ACTIONS(2979), - [anon_sym_L_DQUOTE] = ACTIONS(2979), - [anon_sym_u_DQUOTE] = ACTIONS(2979), - [anon_sym_U_DQUOTE] = ACTIONS(2979), - [anon_sym_u8_DQUOTE] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym_true] = ACTIONS(2977), - [sym_false] = ACTIONS(2977), - [anon_sym_NULL] = ACTIONS(2977), - [anon_sym_nullptr] = ACTIONS(2977), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2977), - [anon_sym_decltype] = ACTIONS(2977), - [anon_sym_virtual] = ACTIONS(2977), - [anon_sym_alignas] = ACTIONS(2977), - [anon_sym_explicit] = ACTIONS(2977), - [anon_sym_typename] = ACTIONS(2977), - [anon_sym_template] = ACTIONS(2977), - [anon_sym_operator] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_delete] = ACTIONS(2977), - [anon_sym_throw] = ACTIONS(2977), - [anon_sym_namespace] = ACTIONS(2977), - [anon_sym_using] = ACTIONS(2977), - [anon_sym_static_assert] = ACTIONS(2977), - [anon_sym_concept] = ACTIONS(2977), - [anon_sym_co_return] = ACTIONS(2977), - [anon_sym_co_yield] = ACTIONS(2977), - [anon_sym_R_DQUOTE] = ACTIONS(2979), - [anon_sym_LR_DQUOTE] = ACTIONS(2979), - [anon_sym_uR_DQUOTE] = ACTIONS(2979), - [anon_sym_UR_DQUOTE] = ACTIONS(2979), - [anon_sym_u8R_DQUOTE] = ACTIONS(2979), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_requires] = ACTIONS(2977), - [sym_this] = ACTIONS(2977), + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_include_token1] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token2] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2828), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym___cdecl] = ACTIONS(2138), + [anon_sym___clrcall] = ACTIONS(2138), + [anon_sym___stdcall] = ACTIONS(2138), + [anon_sym___fastcall] = ACTIONS(2138), + [anon_sym___thiscall] = ACTIONS(2138), + [anon_sym___vectorcall] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_goto] = ACTIONS(2138), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_compl] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_PLUS_PLUS] = ACTIONS(2136), + [anon_sym_sizeof] = ACTIONS(2138), + [anon_sym___alignof__] = ACTIONS(2138), + [anon_sym___alignof] = ACTIONS(2138), + [anon_sym__alignof] = ACTIONS(2138), + [anon_sym_alignof] = ACTIONS(2138), + [anon_sym__Alignof] = ACTIONS(2138), + [anon_sym_offsetof] = ACTIONS(2138), + [anon_sym__Generic] = ACTIONS(2138), + [anon_sym_asm] = ACTIONS(2138), + [anon_sym___asm__] = ACTIONS(2138), + [sym_number_literal] = ACTIONS(2136), + [anon_sym_L_SQUOTE] = ACTIONS(2136), + [anon_sym_u_SQUOTE] = ACTIONS(2136), + [anon_sym_U_SQUOTE] = ACTIONS(2136), + [anon_sym_u8_SQUOTE] = ACTIONS(2136), + [anon_sym_SQUOTE] = ACTIONS(2136), + [anon_sym_L_DQUOTE] = ACTIONS(2136), + [anon_sym_u_DQUOTE] = ACTIONS(2136), + [anon_sym_U_DQUOTE] = ACTIONS(2136), + [anon_sym_u8_DQUOTE] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2136), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [anon_sym_NULL] = ACTIONS(2138), + [anon_sym_nullptr] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), + [anon_sym_concept] = ACTIONS(2138), + [anon_sym_co_return] = ACTIONS(2138), + [anon_sym_co_yield] = ACTIONS(2138), + [anon_sym_R_DQUOTE] = ACTIONS(2136), + [anon_sym_LR_DQUOTE] = ACTIONS(2136), + [anon_sym_uR_DQUOTE] = ACTIONS(2136), + [anon_sym_UR_DQUOTE] = ACTIONS(2136), + [anon_sym_u8R_DQUOTE] = ACTIONS(2136), + [anon_sym_co_await] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_requires] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), }, [650] = { - [sym_identifier] = ACTIONS(2844), - [aux_sym_preproc_include_token1] = ACTIONS(2844), - [aux_sym_preproc_def_token1] = ACTIONS(2844), - [aux_sym_preproc_if_token1] = ACTIONS(2844), - [aux_sym_preproc_if_token2] = ACTIONS(2844), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2844), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2844), - [aux_sym_preproc_else_token1] = ACTIONS(2844), - [aux_sym_preproc_elif_token1] = ACTIONS(2844), - [sym_preproc_directive] = ACTIONS(2844), - [anon_sym_LPAREN2] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2844), - [anon_sym_PLUS] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2844), - [anon_sym_SEMI] = ACTIONS(2846), - [anon_sym___extension__] = ACTIONS(2844), - [anon_sym_typedef] = ACTIONS(2844), - [anon_sym_extern] = ACTIONS(2844), - [anon_sym___attribute__] = ACTIONS(2844), - [anon_sym_COLON_COLON] = ACTIONS(2846), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2846), - [anon_sym___declspec] = ACTIONS(2844), - [anon_sym___based] = ACTIONS(2844), - [anon_sym___cdecl] = ACTIONS(2844), - [anon_sym___clrcall] = ACTIONS(2844), - [anon_sym___stdcall] = ACTIONS(2844), - [anon_sym___fastcall] = ACTIONS(2844), - [anon_sym___thiscall] = ACTIONS(2844), - [anon_sym___vectorcall] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_signed] = ACTIONS(2844), - [anon_sym_unsigned] = ACTIONS(2844), - [anon_sym_long] = ACTIONS(2844), - [anon_sym_short] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_static] = ACTIONS(2844), - [anon_sym_register] = ACTIONS(2844), - [anon_sym_inline] = ACTIONS(2844), - [anon_sym___inline] = ACTIONS(2844), - [anon_sym___inline__] = ACTIONS(2844), - [anon_sym___forceinline] = ACTIONS(2844), - [anon_sym_thread_local] = ACTIONS(2844), - [anon_sym___thread] = ACTIONS(2844), - [anon_sym_const] = ACTIONS(2844), - [anon_sym_constexpr] = ACTIONS(2844), - [anon_sym_volatile] = ACTIONS(2844), - [anon_sym_restrict] = ACTIONS(2844), - [anon_sym___restrict__] = ACTIONS(2844), - [anon_sym__Atomic] = ACTIONS(2844), - [anon_sym__Noreturn] = ACTIONS(2844), - [anon_sym_noreturn] = ACTIONS(2844), - [anon_sym_mutable] = ACTIONS(2844), - [anon_sym_constinit] = ACTIONS(2844), - [anon_sym_consteval] = ACTIONS(2844), - [sym_primitive_type] = ACTIONS(2844), - [anon_sym_enum] = ACTIONS(2844), - [anon_sym_class] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_else] = ACTIONS(2844), - [anon_sym_switch] = ACTIONS(2844), - [anon_sym_case] = ACTIONS(2844), - [anon_sym_default] = ACTIONS(2844), - [anon_sym_while] = ACTIONS(2844), - [anon_sym_do] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2844), - [anon_sym_return] = ACTIONS(2844), - [anon_sym_break] = ACTIONS(2844), - [anon_sym_continue] = ACTIONS(2844), - [anon_sym_goto] = ACTIONS(2844), - [anon_sym_not] = ACTIONS(2844), - [anon_sym_compl] = ACTIONS(2844), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_sizeof] = ACTIONS(2844), - [anon_sym___alignof__] = ACTIONS(2844), - [anon_sym___alignof] = ACTIONS(2844), - [anon_sym__alignof] = ACTIONS(2844), - [anon_sym_alignof] = ACTIONS(2844), - [anon_sym__Alignof] = ACTIONS(2844), - [anon_sym_offsetof] = ACTIONS(2844), - [anon_sym__Generic] = ACTIONS(2844), - [anon_sym_asm] = ACTIONS(2844), - [anon_sym___asm__] = ACTIONS(2844), - [sym_number_literal] = ACTIONS(2846), - [anon_sym_L_SQUOTE] = ACTIONS(2846), - [anon_sym_u_SQUOTE] = ACTIONS(2846), - [anon_sym_U_SQUOTE] = ACTIONS(2846), - [anon_sym_u8_SQUOTE] = ACTIONS(2846), - [anon_sym_SQUOTE] = ACTIONS(2846), - [anon_sym_L_DQUOTE] = ACTIONS(2846), - [anon_sym_u_DQUOTE] = ACTIONS(2846), - [anon_sym_U_DQUOTE] = ACTIONS(2846), - [anon_sym_u8_DQUOTE] = ACTIONS(2846), - [anon_sym_DQUOTE] = ACTIONS(2846), - [sym_true] = ACTIONS(2844), - [sym_false] = ACTIONS(2844), - [anon_sym_NULL] = ACTIONS(2844), - [anon_sym_nullptr] = ACTIONS(2844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2844), - [anon_sym_decltype] = ACTIONS(2844), - [anon_sym_virtual] = ACTIONS(2844), - [anon_sym_alignas] = ACTIONS(2844), - [anon_sym_explicit] = ACTIONS(2844), - [anon_sym_typename] = ACTIONS(2844), - [anon_sym_template] = ACTIONS(2844), - [anon_sym_operator] = ACTIONS(2844), - [anon_sym_try] = ACTIONS(2844), - [anon_sym_delete] = ACTIONS(2844), - [anon_sym_throw] = ACTIONS(2844), - [anon_sym_namespace] = ACTIONS(2844), - [anon_sym_using] = ACTIONS(2844), - [anon_sym_static_assert] = ACTIONS(2844), - [anon_sym_concept] = ACTIONS(2844), - [anon_sym_co_return] = ACTIONS(2844), - [anon_sym_co_yield] = ACTIONS(2844), - [anon_sym_R_DQUOTE] = ACTIONS(2846), - [anon_sym_LR_DQUOTE] = ACTIONS(2846), - [anon_sym_uR_DQUOTE] = ACTIONS(2846), - [anon_sym_UR_DQUOTE] = ACTIONS(2846), - [anon_sym_u8R_DQUOTE] = ACTIONS(2846), - [anon_sym_co_await] = ACTIONS(2844), - [anon_sym_new] = ACTIONS(2844), - [anon_sym_requires] = ACTIONS(2844), - [sym_this] = ACTIONS(2844), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [651] = { - [sym_identifier] = ACTIONS(2989), - [aux_sym_preproc_include_token1] = ACTIONS(2989), - [aux_sym_preproc_def_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token2] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), - [aux_sym_preproc_else_token1] = ACTIONS(2989), - [aux_sym_preproc_elif_token1] = ACTIONS(2989), - [sym_preproc_directive] = ACTIONS(2989), - [anon_sym_LPAREN2] = ACTIONS(2991), - [anon_sym_BANG] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym___extension__] = ACTIONS(2989), - [anon_sym_typedef] = ACTIONS(2989), - [anon_sym_extern] = ACTIONS(2989), - [anon_sym___attribute__] = ACTIONS(2989), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), - [anon_sym___declspec] = ACTIONS(2989), - [anon_sym___based] = ACTIONS(2989), - [anon_sym___cdecl] = ACTIONS(2989), - [anon_sym___clrcall] = ACTIONS(2989), - [anon_sym___stdcall] = ACTIONS(2989), - [anon_sym___fastcall] = ACTIONS(2989), - [anon_sym___thiscall] = ACTIONS(2989), - [anon_sym___vectorcall] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_signed] = ACTIONS(2989), - [anon_sym_unsigned] = ACTIONS(2989), - [anon_sym_long] = ACTIONS(2989), - [anon_sym_short] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_register] = ACTIONS(2989), - [anon_sym_inline] = ACTIONS(2989), - [anon_sym___inline] = ACTIONS(2989), - [anon_sym___inline__] = ACTIONS(2989), - [anon_sym___forceinline] = ACTIONS(2989), - [anon_sym_thread_local] = ACTIONS(2989), - [anon_sym___thread] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_constexpr] = ACTIONS(2989), - [anon_sym_volatile] = ACTIONS(2989), - [anon_sym_restrict] = ACTIONS(2989), - [anon_sym___restrict__] = ACTIONS(2989), - [anon_sym__Atomic] = ACTIONS(2989), - [anon_sym__Noreturn] = ACTIONS(2989), - [anon_sym_noreturn] = ACTIONS(2989), - [anon_sym_mutable] = ACTIONS(2989), - [anon_sym_constinit] = ACTIONS(2989), - [anon_sym_consteval] = ACTIONS(2989), - [sym_primitive_type] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_class] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_else] = ACTIONS(2989), - [anon_sym_switch] = ACTIONS(2989), - [anon_sym_case] = ACTIONS(2989), - [anon_sym_default] = ACTIONS(2989), - [anon_sym_while] = ACTIONS(2989), - [anon_sym_do] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_goto] = ACTIONS(2989), - [anon_sym_not] = ACTIONS(2989), - [anon_sym_compl] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_sizeof] = ACTIONS(2989), - [anon_sym___alignof__] = ACTIONS(2989), - [anon_sym___alignof] = ACTIONS(2989), - [anon_sym__alignof] = ACTIONS(2989), - [anon_sym_alignof] = ACTIONS(2989), - [anon_sym__Alignof] = ACTIONS(2989), - [anon_sym_offsetof] = ACTIONS(2989), - [anon_sym__Generic] = ACTIONS(2989), - [anon_sym_asm] = ACTIONS(2989), - [anon_sym___asm__] = ACTIONS(2989), - [sym_number_literal] = ACTIONS(2991), - [anon_sym_L_SQUOTE] = ACTIONS(2991), - [anon_sym_u_SQUOTE] = ACTIONS(2991), - [anon_sym_U_SQUOTE] = ACTIONS(2991), - [anon_sym_u8_SQUOTE] = ACTIONS(2991), - [anon_sym_SQUOTE] = ACTIONS(2991), - [anon_sym_L_DQUOTE] = ACTIONS(2991), - [anon_sym_u_DQUOTE] = ACTIONS(2991), - [anon_sym_U_DQUOTE] = ACTIONS(2991), - [anon_sym_u8_DQUOTE] = ACTIONS(2991), - [anon_sym_DQUOTE] = ACTIONS(2991), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [anon_sym_NULL] = ACTIONS(2989), - [anon_sym_nullptr] = ACTIONS(2989), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2989), - [anon_sym_decltype] = ACTIONS(2989), - [anon_sym_virtual] = ACTIONS(2989), - [anon_sym_alignas] = ACTIONS(2989), - [anon_sym_explicit] = ACTIONS(2989), - [anon_sym_typename] = ACTIONS(2989), - [anon_sym_template] = ACTIONS(2989), - [anon_sym_operator] = ACTIONS(2989), - [anon_sym_try] = ACTIONS(2989), - [anon_sym_delete] = ACTIONS(2989), - [anon_sym_throw] = ACTIONS(2989), - [anon_sym_namespace] = ACTIONS(2989), - [anon_sym_using] = ACTIONS(2989), - [anon_sym_static_assert] = ACTIONS(2989), - [anon_sym_concept] = ACTIONS(2989), - [anon_sym_co_return] = ACTIONS(2989), - [anon_sym_co_yield] = ACTIONS(2989), - [anon_sym_R_DQUOTE] = ACTIONS(2991), - [anon_sym_LR_DQUOTE] = ACTIONS(2991), - [anon_sym_uR_DQUOTE] = ACTIONS(2991), - [anon_sym_UR_DQUOTE] = ACTIONS(2991), - [anon_sym_u8R_DQUOTE] = ACTIONS(2991), - [anon_sym_co_await] = ACTIONS(2989), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_requires] = ACTIONS(2989), - [sym_this] = ACTIONS(2989), + [ts_builtin_sym_end] = ACTIONS(2792), + [sym_identifier] = ACTIONS(2790), + [aux_sym_preproc_include_token1] = ACTIONS(2790), + [aux_sym_preproc_def_token1] = ACTIONS(2790), + [aux_sym_preproc_if_token1] = ACTIONS(2790), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2790), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2790), + [sym_preproc_directive] = ACTIONS(2790), + [anon_sym_LPAREN2] = ACTIONS(2792), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_TILDE] = ACTIONS(2792), + [anon_sym_DASH] = ACTIONS(2790), + [anon_sym_PLUS] = ACTIONS(2790), + [anon_sym_STAR] = ACTIONS(2792), + [anon_sym_AMP_AMP] = ACTIONS(2792), + [anon_sym_AMP] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym___extension__] = ACTIONS(2790), + [anon_sym_typedef] = ACTIONS(2790), + [anon_sym_extern] = ACTIONS(2790), + [anon_sym___attribute__] = ACTIONS(2790), + [anon_sym_COLON_COLON] = ACTIONS(2792), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2792), + [anon_sym___declspec] = ACTIONS(2790), + [anon_sym___based] = ACTIONS(2790), + [anon_sym___cdecl] = ACTIONS(2790), + [anon_sym___clrcall] = ACTIONS(2790), + [anon_sym___stdcall] = ACTIONS(2790), + [anon_sym___fastcall] = ACTIONS(2790), + [anon_sym___thiscall] = ACTIONS(2790), + [anon_sym___vectorcall] = ACTIONS(2790), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_signed] = ACTIONS(2790), + [anon_sym_unsigned] = ACTIONS(2790), + [anon_sym_long] = ACTIONS(2790), + [anon_sym_short] = ACTIONS(2790), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym_static] = ACTIONS(2790), + [anon_sym_register] = ACTIONS(2790), + [anon_sym_inline] = ACTIONS(2790), + [anon_sym___inline] = ACTIONS(2790), + [anon_sym___inline__] = ACTIONS(2790), + [anon_sym___forceinline] = ACTIONS(2790), + [anon_sym_thread_local] = ACTIONS(2790), + [anon_sym___thread] = ACTIONS(2790), + [anon_sym_const] = ACTIONS(2790), + [anon_sym_constexpr] = ACTIONS(2790), + [anon_sym_volatile] = ACTIONS(2790), + [anon_sym_restrict] = ACTIONS(2790), + [anon_sym___restrict__] = ACTIONS(2790), + [anon_sym__Atomic] = ACTIONS(2790), + [anon_sym__Noreturn] = ACTIONS(2790), + [anon_sym_noreturn] = ACTIONS(2790), + [anon_sym_mutable] = ACTIONS(2790), + [anon_sym_constinit] = ACTIONS(2790), + [anon_sym_consteval] = ACTIONS(2790), + [sym_primitive_type] = ACTIONS(2790), + [anon_sym_enum] = ACTIONS(2790), + [anon_sym_class] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(2790), + [anon_sym_union] = ACTIONS(2790), + [anon_sym_if] = ACTIONS(2790), + [anon_sym_else] = ACTIONS(2790), + [anon_sym_switch] = ACTIONS(2790), + [anon_sym_case] = ACTIONS(2790), + [anon_sym_default] = ACTIONS(2790), + [anon_sym_while] = ACTIONS(2790), + [anon_sym_do] = ACTIONS(2790), + [anon_sym_for] = ACTIONS(2790), + [anon_sym_return] = ACTIONS(2790), + [anon_sym_break] = ACTIONS(2790), + [anon_sym_continue] = ACTIONS(2790), + [anon_sym_goto] = ACTIONS(2790), + [anon_sym_not] = ACTIONS(2790), + [anon_sym_compl] = ACTIONS(2790), + [anon_sym_DASH_DASH] = ACTIONS(2792), + [anon_sym_PLUS_PLUS] = ACTIONS(2792), + [anon_sym_sizeof] = ACTIONS(2790), + [anon_sym___alignof__] = ACTIONS(2790), + [anon_sym___alignof] = ACTIONS(2790), + [anon_sym__alignof] = ACTIONS(2790), + [anon_sym_alignof] = ACTIONS(2790), + [anon_sym__Alignof] = ACTIONS(2790), + [anon_sym_offsetof] = ACTIONS(2790), + [anon_sym__Generic] = ACTIONS(2790), + [anon_sym_asm] = ACTIONS(2790), + [anon_sym___asm__] = ACTIONS(2790), + [sym_number_literal] = ACTIONS(2792), + [anon_sym_L_SQUOTE] = ACTIONS(2792), + [anon_sym_u_SQUOTE] = ACTIONS(2792), + [anon_sym_U_SQUOTE] = ACTIONS(2792), + [anon_sym_u8_SQUOTE] = ACTIONS(2792), + [anon_sym_SQUOTE] = ACTIONS(2792), + [anon_sym_L_DQUOTE] = ACTIONS(2792), + [anon_sym_u_DQUOTE] = ACTIONS(2792), + [anon_sym_U_DQUOTE] = ACTIONS(2792), + [anon_sym_u8_DQUOTE] = ACTIONS(2792), + [anon_sym_DQUOTE] = ACTIONS(2792), + [sym_true] = ACTIONS(2790), + [sym_false] = ACTIONS(2790), + [anon_sym_NULL] = ACTIONS(2790), + [anon_sym_nullptr] = ACTIONS(2790), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2790), + [anon_sym_decltype] = ACTIONS(2790), + [anon_sym_virtual] = ACTIONS(2790), + [anon_sym_alignas] = ACTIONS(2790), + [anon_sym_explicit] = ACTIONS(2790), + [anon_sym_typename] = ACTIONS(2790), + [anon_sym_template] = ACTIONS(2790), + [anon_sym_operator] = ACTIONS(2790), + [anon_sym_try] = ACTIONS(2790), + [anon_sym_delete] = ACTIONS(2790), + [anon_sym_throw] = ACTIONS(2790), + [anon_sym_namespace] = ACTIONS(2790), + [anon_sym_using] = ACTIONS(2790), + [anon_sym_static_assert] = ACTIONS(2790), + [anon_sym_concept] = ACTIONS(2790), + [anon_sym_co_return] = ACTIONS(2790), + [anon_sym_co_yield] = ACTIONS(2790), + [anon_sym_R_DQUOTE] = ACTIONS(2792), + [anon_sym_LR_DQUOTE] = ACTIONS(2792), + [anon_sym_uR_DQUOTE] = ACTIONS(2792), + [anon_sym_UR_DQUOTE] = ACTIONS(2792), + [anon_sym_u8R_DQUOTE] = ACTIONS(2792), + [anon_sym_co_await] = ACTIONS(2790), + [anon_sym_new] = ACTIONS(2790), + [anon_sym_requires] = ACTIONS(2790), + [sym_this] = ACTIONS(2790), }, [652] = { - [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), - [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_extern] = ACTIONS(3003), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3003), - [anon_sym_constinit] = ACTIONS(3003), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3003), - [anon_sym_alignas] = 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_using] = 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), + [ts_builtin_sym_end] = ACTIONS(2850), + [sym_identifier] = ACTIONS(2848), + [aux_sym_preproc_include_token1] = ACTIONS(2848), + [aux_sym_preproc_def_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token1] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2848), + [sym_preproc_directive] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_AMP_AMP] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym___extension__] = ACTIONS(2848), + [anon_sym_typedef] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym___attribute__] = ACTIONS(2848), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2850), + [anon_sym___declspec] = ACTIONS(2848), + [anon_sym___based] = ACTIONS(2848), + [anon_sym___cdecl] = ACTIONS(2848), + [anon_sym___clrcall] = ACTIONS(2848), + [anon_sym___stdcall] = ACTIONS(2848), + [anon_sym___fastcall] = ACTIONS(2848), + [anon_sym___thiscall] = ACTIONS(2848), + [anon_sym___vectorcall] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_signed] = ACTIONS(2848), + [anon_sym_unsigned] = ACTIONS(2848), + [anon_sym_long] = ACTIONS(2848), + [anon_sym_short] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_register] = ACTIONS(2848), + [anon_sym_inline] = ACTIONS(2848), + [anon_sym___inline] = ACTIONS(2848), + [anon_sym___inline__] = ACTIONS(2848), + [anon_sym___forceinline] = ACTIONS(2848), + [anon_sym_thread_local] = ACTIONS(2848), + [anon_sym___thread] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_constexpr] = ACTIONS(2848), + [anon_sym_volatile] = ACTIONS(2848), + [anon_sym_restrict] = ACTIONS(2848), + [anon_sym___restrict__] = ACTIONS(2848), + [anon_sym__Atomic] = ACTIONS(2848), + [anon_sym__Noreturn] = ACTIONS(2848), + [anon_sym_noreturn] = ACTIONS(2848), + [anon_sym_mutable] = ACTIONS(2848), + [anon_sym_constinit] = ACTIONS(2848), + [anon_sym_consteval] = ACTIONS(2848), + [sym_primitive_type] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_class] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2848), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_else] = ACTIONS(2848), + [anon_sym_switch] = ACTIONS(2848), + [anon_sym_case] = ACTIONS(2848), + [anon_sym_default] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_goto] = ACTIONS(2848), + [anon_sym_not] = ACTIONS(2848), + [anon_sym_compl] = ACTIONS(2848), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_sizeof] = ACTIONS(2848), + [anon_sym___alignof__] = ACTIONS(2848), + [anon_sym___alignof] = ACTIONS(2848), + [anon_sym__alignof] = ACTIONS(2848), + [anon_sym_alignof] = ACTIONS(2848), + [anon_sym__Alignof] = ACTIONS(2848), + [anon_sym_offsetof] = ACTIONS(2848), + [anon_sym__Generic] = ACTIONS(2848), + [anon_sym_asm] = ACTIONS(2848), + [anon_sym___asm__] = ACTIONS(2848), + [sym_number_literal] = ACTIONS(2850), + [anon_sym_L_SQUOTE] = ACTIONS(2850), + [anon_sym_u_SQUOTE] = ACTIONS(2850), + [anon_sym_U_SQUOTE] = ACTIONS(2850), + [anon_sym_u8_SQUOTE] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_L_DQUOTE] = ACTIONS(2850), + [anon_sym_u_DQUOTE] = ACTIONS(2850), + [anon_sym_U_DQUOTE] = ACTIONS(2850), + [anon_sym_u8_DQUOTE] = ACTIONS(2850), + [anon_sym_DQUOTE] = ACTIONS(2850), + [sym_true] = ACTIONS(2848), + [sym_false] = ACTIONS(2848), + [anon_sym_NULL] = ACTIONS(2848), + [anon_sym_nullptr] = ACTIONS(2848), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2848), + [anon_sym_decltype] = ACTIONS(2848), + [anon_sym_virtual] = ACTIONS(2848), + [anon_sym_alignas] = ACTIONS(2848), + [anon_sym_explicit] = ACTIONS(2848), + [anon_sym_typename] = ACTIONS(2848), + [anon_sym_template] = ACTIONS(2848), + [anon_sym_operator] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_delete] = ACTIONS(2848), + [anon_sym_throw] = ACTIONS(2848), + [anon_sym_namespace] = ACTIONS(2848), + [anon_sym_using] = ACTIONS(2848), + [anon_sym_static_assert] = ACTIONS(2848), + [anon_sym_concept] = ACTIONS(2848), + [anon_sym_co_return] = ACTIONS(2848), + [anon_sym_co_yield] = ACTIONS(2848), + [anon_sym_R_DQUOTE] = ACTIONS(2850), + [anon_sym_LR_DQUOTE] = ACTIONS(2850), + [anon_sym_uR_DQUOTE] = ACTIONS(2850), + [anon_sym_UR_DQUOTE] = ACTIONS(2850), + [anon_sym_u8R_DQUOTE] = ACTIONS(2850), + [anon_sym_co_await] = ACTIONS(2848), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_requires] = ACTIONS(2848), + [sym_this] = ACTIONS(2848), }, [653] = { - [sym_preproc_def] = STATE(729), - [sym_preproc_function_def] = STATE(729), - [sym_preproc_call] = STATE(729), - [sym_preproc_if_in_field_declaration_list] = STATE(729), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(729), - [sym_preproc_else_in_field_declaration_list] = STATE(9175), - [sym_preproc_elif_in_field_declaration_list] = STATE(9175), - [sym_type_definition] = STATE(729), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6371), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6947), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(729), - [sym_field_declaration] = STATE(729), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2398), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(729), - [sym_operator_cast] = STATE(7504), - [sym_inline_method_definition] = STATE(729), - [sym__constructor_specifiers] = STATE(2398), - [sym_operator_cast_definition] = STATE(729), - [sym_operator_cast_declaration] = STATE(729), - [sym_constructor_or_destructor_definition] = STATE(729), - [sym_constructor_or_destructor_declaration] = STATE(729), - [sym_friend_declaration] = STATE(729), - [sym_access_specifier] = STATE(9393), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(729), - [sym_alias_declaration] = STATE(729), - [sym_static_assert_declaration] = STATE(729), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7504), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(729), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2398), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3462), - [aux_sym_preproc_if_token1] = ACTIONS(3464), - [aux_sym_preproc_if_token2] = ACTIONS(3496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3468), - [aux_sym_preproc_else_token1] = ACTIONS(2697), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3472), - [anon_sym_typedef] = ACTIONS(3474), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3476), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3478), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3480), - [anon_sym_static_assert] = ACTIONS(3482), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [654] = { - [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), - [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_extern] = ACTIONS(3011), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3011), - [anon_sym_constinit] = ACTIONS(3011), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3011), - [anon_sym_alignas] = 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_using] = 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), + [ts_builtin_sym_end] = ACTIONS(2802), + [sym_identifier] = ACTIONS(2800), + [aux_sym_preproc_include_token1] = ACTIONS(2800), + [aux_sym_preproc_def_token1] = ACTIONS(2800), + [aux_sym_preproc_if_token1] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2800), + [sym_preproc_directive] = ACTIONS(2800), + [anon_sym_LPAREN2] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(2800), + [anon_sym_PLUS] = ACTIONS(2800), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_AMP_AMP] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2800), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym___extension__] = ACTIONS(2800), + [anon_sym_typedef] = ACTIONS(2800), + [anon_sym_extern] = ACTIONS(2800), + [anon_sym___attribute__] = ACTIONS(2800), + [anon_sym_COLON_COLON] = ACTIONS(2802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2802), + [anon_sym___declspec] = ACTIONS(2800), + [anon_sym___based] = ACTIONS(2800), + [anon_sym___cdecl] = ACTIONS(2800), + [anon_sym___clrcall] = ACTIONS(2800), + [anon_sym___stdcall] = ACTIONS(2800), + [anon_sym___fastcall] = ACTIONS(2800), + [anon_sym___thiscall] = ACTIONS(2800), + [anon_sym___vectorcall] = ACTIONS(2800), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_signed] = ACTIONS(2800), + [anon_sym_unsigned] = ACTIONS(2800), + [anon_sym_long] = ACTIONS(2800), + [anon_sym_short] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2800), + [anon_sym_register] = ACTIONS(2800), + [anon_sym_inline] = ACTIONS(2800), + [anon_sym___inline] = ACTIONS(2800), + [anon_sym___inline__] = ACTIONS(2800), + [anon_sym___forceinline] = ACTIONS(2800), + [anon_sym_thread_local] = ACTIONS(2800), + [anon_sym___thread] = ACTIONS(2800), + [anon_sym_const] = ACTIONS(2800), + [anon_sym_constexpr] = ACTIONS(2800), + [anon_sym_volatile] = ACTIONS(2800), + [anon_sym_restrict] = ACTIONS(2800), + [anon_sym___restrict__] = ACTIONS(2800), + [anon_sym__Atomic] = ACTIONS(2800), + [anon_sym__Noreturn] = ACTIONS(2800), + [anon_sym_noreturn] = ACTIONS(2800), + [anon_sym_mutable] = ACTIONS(2800), + [anon_sym_constinit] = ACTIONS(2800), + [anon_sym_consteval] = ACTIONS(2800), + [sym_primitive_type] = ACTIONS(2800), + [anon_sym_enum] = ACTIONS(2800), + [anon_sym_class] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2800), + [anon_sym_union] = ACTIONS(2800), + [anon_sym_if] = ACTIONS(2800), + [anon_sym_else] = ACTIONS(2800), + [anon_sym_switch] = ACTIONS(2800), + [anon_sym_case] = ACTIONS(2800), + [anon_sym_default] = ACTIONS(2800), + [anon_sym_while] = ACTIONS(2800), + [anon_sym_do] = ACTIONS(2800), + [anon_sym_for] = ACTIONS(2800), + [anon_sym_return] = ACTIONS(2800), + [anon_sym_break] = ACTIONS(2800), + [anon_sym_continue] = ACTIONS(2800), + [anon_sym_goto] = ACTIONS(2800), + [anon_sym_not] = ACTIONS(2800), + [anon_sym_compl] = ACTIONS(2800), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_sizeof] = ACTIONS(2800), + [anon_sym___alignof__] = ACTIONS(2800), + [anon_sym___alignof] = ACTIONS(2800), + [anon_sym__alignof] = ACTIONS(2800), + [anon_sym_alignof] = ACTIONS(2800), + [anon_sym__Alignof] = ACTIONS(2800), + [anon_sym_offsetof] = ACTIONS(2800), + [anon_sym__Generic] = ACTIONS(2800), + [anon_sym_asm] = ACTIONS(2800), + [anon_sym___asm__] = ACTIONS(2800), + [sym_number_literal] = ACTIONS(2802), + [anon_sym_L_SQUOTE] = ACTIONS(2802), + [anon_sym_u_SQUOTE] = ACTIONS(2802), + [anon_sym_U_SQUOTE] = ACTIONS(2802), + [anon_sym_u8_SQUOTE] = ACTIONS(2802), + [anon_sym_SQUOTE] = ACTIONS(2802), + [anon_sym_L_DQUOTE] = ACTIONS(2802), + [anon_sym_u_DQUOTE] = ACTIONS(2802), + [anon_sym_U_DQUOTE] = ACTIONS(2802), + [anon_sym_u8_DQUOTE] = ACTIONS(2802), + [anon_sym_DQUOTE] = ACTIONS(2802), + [sym_true] = ACTIONS(2800), + [sym_false] = ACTIONS(2800), + [anon_sym_NULL] = ACTIONS(2800), + [anon_sym_nullptr] = ACTIONS(2800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2800), + [anon_sym_decltype] = ACTIONS(2800), + [anon_sym_virtual] = ACTIONS(2800), + [anon_sym_alignas] = ACTIONS(2800), + [anon_sym_explicit] = ACTIONS(2800), + [anon_sym_typename] = ACTIONS(2800), + [anon_sym_template] = ACTIONS(2800), + [anon_sym_operator] = ACTIONS(2800), + [anon_sym_try] = ACTIONS(2800), + [anon_sym_delete] = ACTIONS(2800), + [anon_sym_throw] = ACTIONS(2800), + [anon_sym_namespace] = ACTIONS(2800), + [anon_sym_using] = ACTIONS(2800), + [anon_sym_static_assert] = ACTIONS(2800), + [anon_sym_concept] = ACTIONS(2800), + [anon_sym_co_return] = ACTIONS(2800), + [anon_sym_co_yield] = ACTIONS(2800), + [anon_sym_R_DQUOTE] = ACTIONS(2802), + [anon_sym_LR_DQUOTE] = ACTIONS(2802), + [anon_sym_uR_DQUOTE] = ACTIONS(2802), + [anon_sym_UR_DQUOTE] = ACTIONS(2802), + [anon_sym_u8R_DQUOTE] = ACTIONS(2802), + [anon_sym_co_await] = ACTIONS(2800), + [anon_sym_new] = ACTIONS(2800), + [anon_sym_requires] = ACTIONS(2800), + [sym_this] = ACTIONS(2800), }, [655] = { - [sym_identifier] = ACTIONS(3031), - [aux_sym_preproc_include_token1] = ACTIONS(3031), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token2] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3031), - [aux_sym_preproc_else_token1] = ACTIONS(3031), - [aux_sym_preproc_elif_token1] = ACTIONS(3031), - [sym_preproc_directive] = ACTIONS(3031), - [anon_sym_LPAREN2] = ACTIONS(3033), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym___extension__] = ACTIONS(3031), - [anon_sym_typedef] = ACTIONS(3031), - [anon_sym_extern] = ACTIONS(3031), - [anon_sym___attribute__] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3033), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3033), - [anon_sym___declspec] = ACTIONS(3031), - [anon_sym___based] = ACTIONS(3031), - [anon_sym___cdecl] = ACTIONS(3031), - [anon_sym___clrcall] = ACTIONS(3031), - [anon_sym___stdcall] = ACTIONS(3031), - [anon_sym___fastcall] = ACTIONS(3031), - [anon_sym___thiscall] = ACTIONS(3031), - [anon_sym___vectorcall] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_signed] = ACTIONS(3031), - [anon_sym_unsigned] = ACTIONS(3031), - [anon_sym_long] = ACTIONS(3031), - [anon_sym_short] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_static] = ACTIONS(3031), - [anon_sym_register] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym___inline] = ACTIONS(3031), - [anon_sym___inline__] = ACTIONS(3031), - [anon_sym___forceinline] = ACTIONS(3031), - [anon_sym_thread_local] = ACTIONS(3031), - [anon_sym___thread] = ACTIONS(3031), - [anon_sym_const] = ACTIONS(3031), - [anon_sym_constexpr] = ACTIONS(3031), - [anon_sym_volatile] = ACTIONS(3031), - [anon_sym_restrict] = ACTIONS(3031), - [anon_sym___restrict__] = ACTIONS(3031), - [anon_sym__Atomic] = ACTIONS(3031), - [anon_sym__Noreturn] = ACTIONS(3031), - [anon_sym_noreturn] = ACTIONS(3031), - [anon_sym_mutable] = ACTIONS(3031), - [anon_sym_constinit] = ACTIONS(3031), - [anon_sym_consteval] = ACTIONS(3031), - [sym_primitive_type] = ACTIONS(3031), - [anon_sym_enum] = ACTIONS(3031), - [anon_sym_class] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_union] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_switch] = ACTIONS(3031), - [anon_sym_case] = ACTIONS(3031), - [anon_sym_default] = ACTIONS(3031), - [anon_sym_while] = ACTIONS(3031), - [anon_sym_do] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_goto] = ACTIONS(3031), - [anon_sym_not] = ACTIONS(3031), - [anon_sym_compl] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3033), - [anon_sym_PLUS_PLUS] = ACTIONS(3033), - [anon_sym_sizeof] = ACTIONS(3031), - [anon_sym___alignof__] = ACTIONS(3031), - [anon_sym___alignof] = ACTIONS(3031), - [anon_sym__alignof] = ACTIONS(3031), - [anon_sym_alignof] = ACTIONS(3031), - [anon_sym__Alignof] = ACTIONS(3031), - [anon_sym_offsetof] = ACTIONS(3031), - [anon_sym__Generic] = ACTIONS(3031), - [anon_sym_asm] = ACTIONS(3031), - [anon_sym___asm__] = ACTIONS(3031), - [sym_number_literal] = ACTIONS(3033), - [anon_sym_L_SQUOTE] = ACTIONS(3033), - [anon_sym_u_SQUOTE] = ACTIONS(3033), - [anon_sym_U_SQUOTE] = ACTIONS(3033), - [anon_sym_u8_SQUOTE] = ACTIONS(3033), - [anon_sym_SQUOTE] = ACTIONS(3033), - [anon_sym_L_DQUOTE] = ACTIONS(3033), - [anon_sym_u_DQUOTE] = ACTIONS(3033), - [anon_sym_U_DQUOTE] = ACTIONS(3033), - [anon_sym_u8_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [anon_sym_NULL] = ACTIONS(3031), - [anon_sym_nullptr] = ACTIONS(3031), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3031), - [anon_sym_decltype] = ACTIONS(3031), - [anon_sym_virtual] = ACTIONS(3031), - [anon_sym_alignas] = ACTIONS(3031), - [anon_sym_explicit] = ACTIONS(3031), - [anon_sym_typename] = ACTIONS(3031), - [anon_sym_template] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3031), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_throw] = ACTIONS(3031), - [anon_sym_namespace] = ACTIONS(3031), - [anon_sym_using] = ACTIONS(3031), - [anon_sym_static_assert] = ACTIONS(3031), - [anon_sym_concept] = ACTIONS(3031), - [anon_sym_co_return] = ACTIONS(3031), - [anon_sym_co_yield] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3031), - [anon_sym_new] = ACTIONS(3031), - [anon_sym_requires] = ACTIONS(3031), - [sym_this] = ACTIONS(3031), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [656] = { - [sym_identifier] = ACTIONS(2957), - [aux_sym_preproc_include_token1] = ACTIONS(2957), - [aux_sym_preproc_def_token1] = ACTIONS(2957), - [aux_sym_preproc_if_token1] = ACTIONS(2957), - [aux_sym_preproc_if_token2] = ACTIONS(2957), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2957), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2957), - [aux_sym_preproc_else_token1] = ACTIONS(2957), - [aux_sym_preproc_elif_token1] = ACTIONS(2957), - [sym_preproc_directive] = ACTIONS(2957), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2957), - [anon_sym_SEMI] = ACTIONS(2959), - [anon_sym___extension__] = ACTIONS(2957), - [anon_sym_typedef] = ACTIONS(2957), - [anon_sym_extern] = ACTIONS(2957), - [anon_sym___attribute__] = ACTIONS(2957), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), - [anon_sym___declspec] = ACTIONS(2957), - [anon_sym___based] = ACTIONS(2957), - [anon_sym___cdecl] = ACTIONS(2957), - [anon_sym___clrcall] = ACTIONS(2957), - [anon_sym___stdcall] = ACTIONS(2957), - [anon_sym___fastcall] = ACTIONS(2957), - [anon_sym___thiscall] = ACTIONS(2957), - [anon_sym___vectorcall] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_signed] = ACTIONS(2957), - [anon_sym_unsigned] = ACTIONS(2957), - [anon_sym_long] = ACTIONS(2957), - [anon_sym_short] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_static] = ACTIONS(2957), - [anon_sym_register] = ACTIONS(2957), - [anon_sym_inline] = ACTIONS(2957), - [anon_sym___inline] = ACTIONS(2957), - [anon_sym___inline__] = ACTIONS(2957), - [anon_sym___forceinline] = ACTIONS(2957), - [anon_sym_thread_local] = ACTIONS(2957), - [anon_sym___thread] = ACTIONS(2957), - [anon_sym_const] = ACTIONS(2957), - [anon_sym_constexpr] = ACTIONS(2957), - [anon_sym_volatile] = ACTIONS(2957), - [anon_sym_restrict] = ACTIONS(2957), - [anon_sym___restrict__] = ACTIONS(2957), - [anon_sym__Atomic] = ACTIONS(2957), - [anon_sym__Noreturn] = ACTIONS(2957), - [anon_sym_noreturn] = ACTIONS(2957), - [anon_sym_mutable] = ACTIONS(2957), - [anon_sym_constinit] = ACTIONS(2957), - [anon_sym_consteval] = ACTIONS(2957), - [sym_primitive_type] = ACTIONS(2957), - [anon_sym_enum] = ACTIONS(2957), - [anon_sym_class] = ACTIONS(2957), - [anon_sym_struct] = ACTIONS(2957), - [anon_sym_union] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2957), - [anon_sym_else] = ACTIONS(2957), - [anon_sym_switch] = ACTIONS(2957), - [anon_sym_case] = ACTIONS(2957), - [anon_sym_default] = ACTIONS(2957), - [anon_sym_while] = ACTIONS(2957), - [anon_sym_do] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2957), - [anon_sym_break] = ACTIONS(2957), - [anon_sym_continue] = ACTIONS(2957), - [anon_sym_goto] = ACTIONS(2957), - [anon_sym_not] = ACTIONS(2957), - [anon_sym_compl] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_sizeof] = ACTIONS(2957), - [anon_sym___alignof__] = ACTIONS(2957), - [anon_sym___alignof] = ACTIONS(2957), - [anon_sym__alignof] = ACTIONS(2957), - [anon_sym_alignof] = ACTIONS(2957), - [anon_sym__Alignof] = ACTIONS(2957), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2957), - [anon_sym_asm] = ACTIONS(2957), - [anon_sym___asm__] = ACTIONS(2957), - [sym_number_literal] = ACTIONS(2959), - [anon_sym_L_SQUOTE] = ACTIONS(2959), - [anon_sym_u_SQUOTE] = ACTIONS(2959), - [anon_sym_U_SQUOTE] = ACTIONS(2959), - [anon_sym_u8_SQUOTE] = ACTIONS(2959), - [anon_sym_SQUOTE] = ACTIONS(2959), - [anon_sym_L_DQUOTE] = ACTIONS(2959), - [anon_sym_u_DQUOTE] = ACTIONS(2959), - [anon_sym_U_DQUOTE] = ACTIONS(2959), - [anon_sym_u8_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [anon_sym_NULL] = ACTIONS(2957), - [anon_sym_nullptr] = ACTIONS(2957), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2957), - [anon_sym_decltype] = ACTIONS(2957), - [anon_sym_virtual] = ACTIONS(2957), - [anon_sym_alignas] = ACTIONS(2957), - [anon_sym_explicit] = ACTIONS(2957), - [anon_sym_typename] = ACTIONS(2957), - [anon_sym_template] = ACTIONS(2957), - [anon_sym_operator] = ACTIONS(2957), - [anon_sym_try] = ACTIONS(2957), - [anon_sym_delete] = ACTIONS(2957), - [anon_sym_throw] = ACTIONS(2957), - [anon_sym_namespace] = ACTIONS(2957), - [anon_sym_using] = ACTIONS(2957), - [anon_sym_static_assert] = ACTIONS(2957), - [anon_sym_concept] = ACTIONS(2957), - [anon_sym_co_return] = ACTIONS(2957), - [anon_sym_co_yield] = ACTIONS(2957), - [anon_sym_R_DQUOTE] = ACTIONS(2959), - [anon_sym_LR_DQUOTE] = ACTIONS(2959), - [anon_sym_uR_DQUOTE] = ACTIONS(2959), - [anon_sym_UR_DQUOTE] = ACTIONS(2959), - [anon_sym_u8R_DQUOTE] = ACTIONS(2959), - [anon_sym_co_await] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2957), - [anon_sym_requires] = ACTIONS(2957), - [sym_this] = ACTIONS(2957), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [657] = { - [sym_identifier] = ACTIONS(3073), - [aux_sym_preproc_include_token1] = ACTIONS(3073), - [aux_sym_preproc_def_token1] = ACTIONS(3073), - [aux_sym_preproc_if_token1] = ACTIONS(3073), - [aux_sym_preproc_if_token2] = ACTIONS(3073), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3073), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3073), - [aux_sym_preproc_else_token1] = ACTIONS(3073), - [aux_sym_preproc_elif_token1] = ACTIONS(3073), - [sym_preproc_directive] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3075), - [anon_sym_TILDE] = ACTIONS(3075), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_AMP_AMP] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_SEMI] = ACTIONS(3075), - [anon_sym___extension__] = ACTIONS(3073), - [anon_sym_typedef] = ACTIONS(3073), - [anon_sym_extern] = ACTIONS(3073), - [anon_sym___attribute__] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3075), - [anon_sym___declspec] = ACTIONS(3073), - [anon_sym___based] = ACTIONS(3073), - [anon_sym___cdecl] = ACTIONS(3073), - [anon_sym___clrcall] = ACTIONS(3073), - [anon_sym___stdcall] = ACTIONS(3073), - [anon_sym___fastcall] = ACTIONS(3073), - [anon_sym___thiscall] = ACTIONS(3073), - [anon_sym___vectorcall] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_signed] = ACTIONS(3073), - [anon_sym_unsigned] = ACTIONS(3073), - [anon_sym_long] = ACTIONS(3073), - [anon_sym_short] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_register] = ACTIONS(3073), - [anon_sym_inline] = ACTIONS(3073), - [anon_sym___inline] = ACTIONS(3073), - [anon_sym___inline__] = ACTIONS(3073), - [anon_sym___forceinline] = ACTIONS(3073), - [anon_sym_thread_local] = ACTIONS(3073), - [anon_sym___thread] = ACTIONS(3073), - [anon_sym_const] = ACTIONS(3073), - [anon_sym_constexpr] = ACTIONS(3073), - [anon_sym_volatile] = ACTIONS(3073), - [anon_sym_restrict] = ACTIONS(3073), - [anon_sym___restrict__] = ACTIONS(3073), - [anon_sym__Atomic] = ACTIONS(3073), - [anon_sym__Noreturn] = ACTIONS(3073), - [anon_sym_noreturn] = ACTIONS(3073), - [anon_sym_mutable] = ACTIONS(3073), - [anon_sym_constinit] = ACTIONS(3073), - [anon_sym_consteval] = ACTIONS(3073), - [sym_primitive_type] = ACTIONS(3073), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3073), - [anon_sym_struct] = ACTIONS(3073), - [anon_sym_union] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3073), - [anon_sym_switch] = ACTIONS(3073), - [anon_sym_case] = ACTIONS(3073), - [anon_sym_default] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_break] = ACTIONS(3073), - [anon_sym_continue] = ACTIONS(3073), - [anon_sym_goto] = ACTIONS(3073), - [anon_sym_not] = ACTIONS(3073), - [anon_sym_compl] = ACTIONS(3073), - [anon_sym_DASH_DASH] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(3075), - [anon_sym_sizeof] = ACTIONS(3073), - [anon_sym___alignof__] = ACTIONS(3073), - [anon_sym___alignof] = ACTIONS(3073), - [anon_sym__alignof] = ACTIONS(3073), - [anon_sym_alignof] = ACTIONS(3073), - [anon_sym__Alignof] = ACTIONS(3073), - [anon_sym_offsetof] = ACTIONS(3073), - [anon_sym__Generic] = ACTIONS(3073), - [anon_sym_asm] = ACTIONS(3073), - [anon_sym___asm__] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(3075), - [anon_sym_L_SQUOTE] = ACTIONS(3075), - [anon_sym_u_SQUOTE] = ACTIONS(3075), - [anon_sym_U_SQUOTE] = ACTIONS(3075), - [anon_sym_u8_SQUOTE] = ACTIONS(3075), - [anon_sym_SQUOTE] = ACTIONS(3075), - [anon_sym_L_DQUOTE] = ACTIONS(3075), - [anon_sym_u_DQUOTE] = ACTIONS(3075), - [anon_sym_U_DQUOTE] = ACTIONS(3075), - [anon_sym_u8_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE] = ACTIONS(3075), - [sym_true] = ACTIONS(3073), - [sym_false] = ACTIONS(3073), - [anon_sym_NULL] = ACTIONS(3073), - [anon_sym_nullptr] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3073), - [anon_sym_decltype] = ACTIONS(3073), - [anon_sym_virtual] = ACTIONS(3073), - [anon_sym_alignas] = ACTIONS(3073), - [anon_sym_explicit] = ACTIONS(3073), - [anon_sym_typename] = ACTIONS(3073), - [anon_sym_template] = ACTIONS(3073), - [anon_sym_operator] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_delete] = ACTIONS(3073), - [anon_sym_throw] = ACTIONS(3073), - [anon_sym_namespace] = ACTIONS(3073), - [anon_sym_using] = ACTIONS(3073), - [anon_sym_static_assert] = ACTIONS(3073), - [anon_sym_concept] = ACTIONS(3073), - [anon_sym_co_return] = ACTIONS(3073), - [anon_sym_co_yield] = ACTIONS(3073), - [anon_sym_R_DQUOTE] = ACTIONS(3075), - [anon_sym_LR_DQUOTE] = ACTIONS(3075), - [anon_sym_uR_DQUOTE] = ACTIONS(3075), - [anon_sym_UR_DQUOTE] = ACTIONS(3075), - [anon_sym_u8R_DQUOTE] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3073), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_requires] = ACTIONS(3073), - [sym_this] = ACTIONS(3073), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [658] = { - [sym_identifier] = ACTIONS(2941), - [aux_sym_preproc_include_token1] = ACTIONS(2941), - [aux_sym_preproc_def_token1] = ACTIONS(2941), - [aux_sym_preproc_if_token1] = ACTIONS(2941), - [aux_sym_preproc_if_token2] = ACTIONS(2941), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2941), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2941), - [aux_sym_preproc_else_token1] = ACTIONS(2941), - [aux_sym_preproc_elif_token1] = ACTIONS(2941), - [sym_preproc_directive] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2943), - [anon_sym___extension__] = ACTIONS(2941), - [anon_sym_typedef] = ACTIONS(2941), - [anon_sym_extern] = ACTIONS(2941), - [anon_sym___attribute__] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2943), - [anon_sym___declspec] = ACTIONS(2941), - [anon_sym___based] = ACTIONS(2941), - [anon_sym___cdecl] = ACTIONS(2941), - [anon_sym___clrcall] = ACTIONS(2941), - [anon_sym___stdcall] = ACTIONS(2941), - [anon_sym___fastcall] = ACTIONS(2941), - [anon_sym___thiscall] = ACTIONS(2941), - [anon_sym___vectorcall] = ACTIONS(2941), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_signed] = ACTIONS(2941), - [anon_sym_unsigned] = ACTIONS(2941), - [anon_sym_long] = ACTIONS(2941), - [anon_sym_short] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_static] = ACTIONS(2941), - [anon_sym_register] = ACTIONS(2941), - [anon_sym_inline] = ACTIONS(2941), - [anon_sym___inline] = ACTIONS(2941), - [anon_sym___inline__] = ACTIONS(2941), - [anon_sym___forceinline] = ACTIONS(2941), - [anon_sym_thread_local] = ACTIONS(2941), - [anon_sym___thread] = ACTIONS(2941), - [anon_sym_const] = ACTIONS(2941), - [anon_sym_constexpr] = ACTIONS(2941), - [anon_sym_volatile] = ACTIONS(2941), - [anon_sym_restrict] = ACTIONS(2941), - [anon_sym___restrict__] = ACTIONS(2941), - [anon_sym__Atomic] = ACTIONS(2941), - [anon_sym__Noreturn] = ACTIONS(2941), - [anon_sym_noreturn] = ACTIONS(2941), - [anon_sym_mutable] = ACTIONS(2941), - [anon_sym_constinit] = ACTIONS(2941), - [anon_sym_consteval] = ACTIONS(2941), - [sym_primitive_type] = ACTIONS(2941), - [anon_sym_enum] = ACTIONS(2941), - [anon_sym_class] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2941), - [anon_sym_union] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_else] = ACTIONS(2941), - [anon_sym_switch] = ACTIONS(2941), - [anon_sym_case] = ACTIONS(2941), - [anon_sym_default] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_break] = ACTIONS(2941), - [anon_sym_continue] = ACTIONS(2941), - [anon_sym_goto] = ACTIONS(2941), - [anon_sym_not] = ACTIONS(2941), - [anon_sym_compl] = ACTIONS(2941), - [anon_sym_DASH_DASH] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2943), - [anon_sym_sizeof] = ACTIONS(2941), - [anon_sym___alignof__] = ACTIONS(2941), - [anon_sym___alignof] = ACTIONS(2941), - [anon_sym__alignof] = ACTIONS(2941), - [anon_sym_alignof] = ACTIONS(2941), - [anon_sym__Alignof] = ACTIONS(2941), - [anon_sym_offsetof] = ACTIONS(2941), - [anon_sym__Generic] = ACTIONS(2941), - [anon_sym_asm] = ACTIONS(2941), - [anon_sym___asm__] = ACTIONS(2941), - [sym_number_literal] = ACTIONS(2943), - [anon_sym_L_SQUOTE] = ACTIONS(2943), - [anon_sym_u_SQUOTE] = ACTIONS(2943), - [anon_sym_U_SQUOTE] = ACTIONS(2943), - [anon_sym_u8_SQUOTE] = ACTIONS(2943), - [anon_sym_SQUOTE] = ACTIONS(2943), - [anon_sym_L_DQUOTE] = ACTIONS(2943), - [anon_sym_u_DQUOTE] = ACTIONS(2943), - [anon_sym_U_DQUOTE] = ACTIONS(2943), - [anon_sym_u8_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE] = ACTIONS(2943), - [sym_true] = ACTIONS(2941), - [sym_false] = ACTIONS(2941), - [anon_sym_NULL] = ACTIONS(2941), - [anon_sym_nullptr] = ACTIONS(2941), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2941), - [anon_sym_decltype] = ACTIONS(2941), - [anon_sym_virtual] = ACTIONS(2941), - [anon_sym_alignas] = ACTIONS(2941), - [anon_sym_explicit] = ACTIONS(2941), - [anon_sym_typename] = ACTIONS(2941), - [anon_sym_template] = ACTIONS(2941), - [anon_sym_operator] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_delete] = ACTIONS(2941), - [anon_sym_throw] = ACTIONS(2941), - [anon_sym_namespace] = ACTIONS(2941), - [anon_sym_using] = ACTIONS(2941), - [anon_sym_static_assert] = ACTIONS(2941), - [anon_sym_concept] = ACTIONS(2941), - [anon_sym_co_return] = ACTIONS(2941), - [anon_sym_co_yield] = ACTIONS(2941), - [anon_sym_R_DQUOTE] = ACTIONS(2943), - [anon_sym_LR_DQUOTE] = ACTIONS(2943), - [anon_sym_uR_DQUOTE] = ACTIONS(2943), - [anon_sym_UR_DQUOTE] = ACTIONS(2943), - [anon_sym_u8R_DQUOTE] = ACTIONS(2943), - [anon_sym_co_await] = ACTIONS(2941), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_requires] = ACTIONS(2941), - [sym_this] = ACTIONS(2941), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [659] = { - [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), - [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_extern] = ACTIONS(3111), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3111), - [anon_sym_constinit] = ACTIONS(3111), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3111), - [anon_sym_alignas] = 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_using] = 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), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [660] = { - [sym_identifier] = ACTIONS(3107), - [aux_sym_preproc_include_token1] = ACTIONS(3107), - [aux_sym_preproc_def_token1] = ACTIONS(3107), - [aux_sym_preproc_if_token1] = ACTIONS(3107), - [aux_sym_preproc_if_token2] = ACTIONS(3107), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3107), - [aux_sym_preproc_else_token1] = ACTIONS(3107), - [aux_sym_preproc_elif_token1] = ACTIONS(3107), - [sym_preproc_directive] = ACTIONS(3107), - [anon_sym_LPAREN2] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3109), - [anon_sym___extension__] = ACTIONS(3107), - [anon_sym_typedef] = ACTIONS(3107), - [anon_sym_extern] = ACTIONS(3107), - [anon_sym___attribute__] = ACTIONS(3107), - [anon_sym_COLON_COLON] = ACTIONS(3109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), - [anon_sym___declspec] = ACTIONS(3107), - [anon_sym___based] = ACTIONS(3107), - [anon_sym___cdecl] = ACTIONS(3107), - [anon_sym___clrcall] = ACTIONS(3107), - [anon_sym___stdcall] = ACTIONS(3107), - [anon_sym___fastcall] = ACTIONS(3107), - [anon_sym___thiscall] = ACTIONS(3107), - [anon_sym___vectorcall] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_signed] = ACTIONS(3107), - [anon_sym_unsigned] = ACTIONS(3107), - [anon_sym_long] = ACTIONS(3107), - [anon_sym_short] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_register] = ACTIONS(3107), - [anon_sym_inline] = ACTIONS(3107), - [anon_sym___inline] = ACTIONS(3107), - [anon_sym___inline__] = ACTIONS(3107), - [anon_sym___forceinline] = ACTIONS(3107), - [anon_sym_thread_local] = ACTIONS(3107), - [anon_sym___thread] = ACTIONS(3107), - [anon_sym_const] = ACTIONS(3107), - [anon_sym_constexpr] = ACTIONS(3107), - [anon_sym_volatile] = ACTIONS(3107), - [anon_sym_restrict] = ACTIONS(3107), - [anon_sym___restrict__] = ACTIONS(3107), - [anon_sym__Atomic] = ACTIONS(3107), - [anon_sym__Noreturn] = ACTIONS(3107), - [anon_sym_noreturn] = ACTIONS(3107), - [anon_sym_mutable] = ACTIONS(3107), - [anon_sym_constinit] = ACTIONS(3107), - [anon_sym_consteval] = ACTIONS(3107), - [sym_primitive_type] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3107), - [anon_sym_union] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3107), - [anon_sym_else] = ACTIONS(3107), - [anon_sym_switch] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_default] = ACTIONS(3107), - [anon_sym_while] = ACTIONS(3107), - [anon_sym_do] = ACTIONS(3107), - [anon_sym_for] = ACTIONS(3107), - [anon_sym_return] = ACTIONS(3107), - [anon_sym_break] = ACTIONS(3107), - [anon_sym_continue] = ACTIONS(3107), - [anon_sym_goto] = ACTIONS(3107), - [anon_sym_not] = ACTIONS(3107), - [anon_sym_compl] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3109), - [anon_sym_sizeof] = ACTIONS(3107), - [anon_sym___alignof__] = ACTIONS(3107), - [anon_sym___alignof] = ACTIONS(3107), - [anon_sym__alignof] = ACTIONS(3107), - [anon_sym_alignof] = ACTIONS(3107), - [anon_sym__Alignof] = ACTIONS(3107), - [anon_sym_offsetof] = ACTIONS(3107), - [anon_sym__Generic] = ACTIONS(3107), - [anon_sym_asm] = ACTIONS(3107), - [anon_sym___asm__] = ACTIONS(3107), - [sym_number_literal] = ACTIONS(3109), - [anon_sym_L_SQUOTE] = ACTIONS(3109), - [anon_sym_u_SQUOTE] = ACTIONS(3109), - [anon_sym_U_SQUOTE] = ACTIONS(3109), - [anon_sym_u8_SQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3109), - [anon_sym_L_DQUOTE] = ACTIONS(3109), - [anon_sym_u_DQUOTE] = ACTIONS(3109), - [anon_sym_U_DQUOTE] = ACTIONS(3109), - [anon_sym_u8_DQUOTE] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(3109), - [sym_true] = ACTIONS(3107), - [sym_false] = ACTIONS(3107), - [anon_sym_NULL] = ACTIONS(3107), - [anon_sym_nullptr] = ACTIONS(3107), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3107), - [anon_sym_decltype] = ACTIONS(3107), - [anon_sym_virtual] = ACTIONS(3107), - [anon_sym_alignas] = ACTIONS(3107), - [anon_sym_explicit] = ACTIONS(3107), - [anon_sym_typename] = ACTIONS(3107), - [anon_sym_template] = ACTIONS(3107), - [anon_sym_operator] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(3107), - [anon_sym_delete] = ACTIONS(3107), - [anon_sym_throw] = ACTIONS(3107), - [anon_sym_namespace] = ACTIONS(3107), - [anon_sym_using] = ACTIONS(3107), - [anon_sym_static_assert] = ACTIONS(3107), - [anon_sym_concept] = ACTIONS(3107), - [anon_sym_co_return] = ACTIONS(3107), - [anon_sym_co_yield] = ACTIONS(3107), - [anon_sym_R_DQUOTE] = ACTIONS(3109), - [anon_sym_LR_DQUOTE] = ACTIONS(3109), - [anon_sym_uR_DQUOTE] = ACTIONS(3109), - [anon_sym_UR_DQUOTE] = ACTIONS(3109), - [anon_sym_u8R_DQUOTE] = ACTIONS(3109), - [anon_sym_co_await] = ACTIONS(3107), - [anon_sym_new] = ACTIONS(3107), - [anon_sym_requires] = ACTIONS(3107), - [sym_this] = ACTIONS(3107), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [661] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [662] = { - [sym_identifier] = ACTIONS(3083), - [aux_sym_preproc_include_token1] = ACTIONS(3083), - [aux_sym_preproc_def_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token2] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), - [aux_sym_preproc_else_token1] = ACTIONS(3083), - [aux_sym_preproc_elif_token1] = ACTIONS(3083), - [sym_preproc_directive] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym___extension__] = ACTIONS(3083), - [anon_sym_typedef] = ACTIONS(3083), - [anon_sym_extern] = ACTIONS(3083), - [anon_sym___attribute__] = ACTIONS(3083), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), - [anon_sym___declspec] = ACTIONS(3083), - [anon_sym___based] = ACTIONS(3083), - [anon_sym___cdecl] = ACTIONS(3083), - [anon_sym___clrcall] = ACTIONS(3083), - [anon_sym___stdcall] = ACTIONS(3083), - [anon_sym___fastcall] = ACTIONS(3083), - [anon_sym___thiscall] = ACTIONS(3083), - [anon_sym___vectorcall] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_signed] = ACTIONS(3083), - [anon_sym_unsigned] = ACTIONS(3083), - [anon_sym_long] = ACTIONS(3083), - [anon_sym_short] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_static] = ACTIONS(3083), - [anon_sym_register] = ACTIONS(3083), - [anon_sym_inline] = ACTIONS(3083), - [anon_sym___inline] = ACTIONS(3083), - [anon_sym___inline__] = ACTIONS(3083), - [anon_sym___forceinline] = ACTIONS(3083), - [anon_sym_thread_local] = ACTIONS(3083), - [anon_sym___thread] = ACTIONS(3083), - [anon_sym_const] = ACTIONS(3083), - [anon_sym_constexpr] = ACTIONS(3083), - [anon_sym_volatile] = ACTIONS(3083), - [anon_sym_restrict] = ACTIONS(3083), - [anon_sym___restrict__] = ACTIONS(3083), - [anon_sym__Atomic] = ACTIONS(3083), - [anon_sym__Noreturn] = ACTIONS(3083), - [anon_sym_noreturn] = ACTIONS(3083), - [anon_sym_mutable] = ACTIONS(3083), - [anon_sym_constinit] = ACTIONS(3083), - [anon_sym_consteval] = ACTIONS(3083), - [sym_primitive_type] = ACTIONS(3083), - [anon_sym_enum] = ACTIONS(3083), - [anon_sym_class] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_else] = ACTIONS(3083), - [anon_sym_switch] = ACTIONS(3083), - [anon_sym_case] = ACTIONS(3083), - [anon_sym_default] = ACTIONS(3083), - [anon_sym_while] = ACTIONS(3083), - [anon_sym_do] = ACTIONS(3083), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_break] = ACTIONS(3083), - [anon_sym_continue] = ACTIONS(3083), - [anon_sym_goto] = ACTIONS(3083), - [anon_sym_not] = ACTIONS(3083), - [anon_sym_compl] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3083), - [anon_sym___alignof__] = ACTIONS(3083), - [anon_sym___alignof] = ACTIONS(3083), - [anon_sym__alignof] = ACTIONS(3083), - [anon_sym_alignof] = ACTIONS(3083), - [anon_sym__Alignof] = ACTIONS(3083), - [anon_sym_offsetof] = ACTIONS(3083), - [anon_sym__Generic] = ACTIONS(3083), - [anon_sym_asm] = ACTIONS(3083), - [anon_sym___asm__] = ACTIONS(3083), - [sym_number_literal] = ACTIONS(3085), - [anon_sym_L_SQUOTE] = ACTIONS(3085), - [anon_sym_u_SQUOTE] = ACTIONS(3085), - [anon_sym_U_SQUOTE] = ACTIONS(3085), - [anon_sym_u8_SQUOTE] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3085), - [anon_sym_L_DQUOTE] = ACTIONS(3085), - [anon_sym_u_DQUOTE] = ACTIONS(3085), - [anon_sym_U_DQUOTE] = ACTIONS(3085), - [anon_sym_u8_DQUOTE] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(3085), - [sym_true] = ACTIONS(3083), - [sym_false] = ACTIONS(3083), - [anon_sym_NULL] = ACTIONS(3083), - [anon_sym_nullptr] = ACTIONS(3083), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3083), - [anon_sym_decltype] = ACTIONS(3083), - [anon_sym_virtual] = ACTIONS(3083), - [anon_sym_alignas] = ACTIONS(3083), - [anon_sym_explicit] = ACTIONS(3083), - [anon_sym_typename] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3083), - [anon_sym_operator] = ACTIONS(3083), - [anon_sym_try] = ACTIONS(3083), - [anon_sym_delete] = ACTIONS(3083), - [anon_sym_throw] = ACTIONS(3083), - [anon_sym_namespace] = ACTIONS(3083), - [anon_sym_using] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3083), - [anon_sym_concept] = ACTIONS(3083), - [anon_sym_co_return] = ACTIONS(3083), - [anon_sym_co_yield] = ACTIONS(3083), - [anon_sym_R_DQUOTE] = ACTIONS(3085), - [anon_sym_LR_DQUOTE] = ACTIONS(3085), - [anon_sym_uR_DQUOTE] = ACTIONS(3085), - [anon_sym_UR_DQUOTE] = ACTIONS(3085), - [anon_sym_u8R_DQUOTE] = ACTIONS(3085), - [anon_sym_co_await] = ACTIONS(3083), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_requires] = ACTIONS(3083), - [sym_this] = ACTIONS(3083), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [663] = { - [sym_identifier] = ACTIONS(2925), - [aux_sym_preproc_include_token1] = ACTIONS(2925), - [aux_sym_preproc_def_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token2] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2925), - [aux_sym_preproc_else_token1] = ACTIONS(2925), - [aux_sym_preproc_elif_token1] = ACTIONS(2925), - [sym_preproc_directive] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2927), - [anon_sym___extension__] = ACTIONS(2925), - [anon_sym_typedef] = ACTIONS(2925), - [anon_sym_extern] = ACTIONS(2925), - [anon_sym___attribute__] = ACTIONS(2925), - [anon_sym_COLON_COLON] = ACTIONS(2927), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), - [anon_sym___declspec] = ACTIONS(2925), - [anon_sym___based] = ACTIONS(2925), - [anon_sym___cdecl] = ACTIONS(2925), - [anon_sym___clrcall] = ACTIONS(2925), - [anon_sym___stdcall] = ACTIONS(2925), - [anon_sym___fastcall] = ACTIONS(2925), - [anon_sym___thiscall] = ACTIONS(2925), - [anon_sym___vectorcall] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_signed] = ACTIONS(2925), - [anon_sym_unsigned] = ACTIONS(2925), - [anon_sym_long] = ACTIONS(2925), - [anon_sym_short] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_static] = ACTIONS(2925), - [anon_sym_register] = ACTIONS(2925), - [anon_sym_inline] = ACTIONS(2925), - [anon_sym___inline] = ACTIONS(2925), - [anon_sym___inline__] = ACTIONS(2925), - [anon_sym___forceinline] = ACTIONS(2925), - [anon_sym_thread_local] = ACTIONS(2925), - [anon_sym___thread] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(2925), - [anon_sym_constexpr] = ACTIONS(2925), - [anon_sym_volatile] = ACTIONS(2925), - [anon_sym_restrict] = ACTIONS(2925), - [anon_sym___restrict__] = ACTIONS(2925), - [anon_sym__Atomic] = ACTIONS(2925), - [anon_sym__Noreturn] = ACTIONS(2925), - [anon_sym_noreturn] = ACTIONS(2925), - [anon_sym_mutable] = ACTIONS(2925), - [anon_sym_constinit] = ACTIONS(2925), - [anon_sym_consteval] = ACTIONS(2925), - [sym_primitive_type] = ACTIONS(2925), - [anon_sym_enum] = ACTIONS(2925), - [anon_sym_class] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_union] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_else] = ACTIONS(2925), - [anon_sym_switch] = ACTIONS(2925), - [anon_sym_case] = ACTIONS(2925), - [anon_sym_default] = ACTIONS(2925), - [anon_sym_while] = ACTIONS(2925), - [anon_sym_do] = ACTIONS(2925), - [anon_sym_for] = ACTIONS(2925), - [anon_sym_return] = ACTIONS(2925), - [anon_sym_break] = ACTIONS(2925), - [anon_sym_continue] = ACTIONS(2925), - [anon_sym_goto] = ACTIONS(2925), - [anon_sym_not] = ACTIONS(2925), - [anon_sym_compl] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2927), - [anon_sym_sizeof] = ACTIONS(2925), - [anon_sym___alignof__] = ACTIONS(2925), - [anon_sym___alignof] = ACTIONS(2925), - [anon_sym__alignof] = ACTIONS(2925), - [anon_sym_alignof] = ACTIONS(2925), - [anon_sym__Alignof] = ACTIONS(2925), - [anon_sym_offsetof] = ACTIONS(2925), - [anon_sym__Generic] = ACTIONS(2925), - [anon_sym_asm] = ACTIONS(2925), - [anon_sym___asm__] = ACTIONS(2925), - [sym_number_literal] = ACTIONS(2927), - [anon_sym_L_SQUOTE] = ACTIONS(2927), - [anon_sym_u_SQUOTE] = ACTIONS(2927), - [anon_sym_U_SQUOTE] = ACTIONS(2927), - [anon_sym_u8_SQUOTE] = ACTIONS(2927), - [anon_sym_SQUOTE] = ACTIONS(2927), - [anon_sym_L_DQUOTE] = ACTIONS(2927), - [anon_sym_u_DQUOTE] = ACTIONS(2927), - [anon_sym_U_DQUOTE] = ACTIONS(2927), - [anon_sym_u8_DQUOTE] = ACTIONS(2927), - [anon_sym_DQUOTE] = ACTIONS(2927), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [anon_sym_NULL] = ACTIONS(2925), - [anon_sym_nullptr] = ACTIONS(2925), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2925), - [anon_sym_decltype] = ACTIONS(2925), - [anon_sym_virtual] = ACTIONS(2925), - [anon_sym_alignas] = ACTIONS(2925), - [anon_sym_explicit] = ACTIONS(2925), - [anon_sym_typename] = ACTIONS(2925), - [anon_sym_template] = ACTIONS(2925), - [anon_sym_operator] = ACTIONS(2925), - [anon_sym_try] = ACTIONS(2925), - [anon_sym_delete] = ACTIONS(2925), - [anon_sym_throw] = ACTIONS(2925), - [anon_sym_namespace] = ACTIONS(2925), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_static_assert] = ACTIONS(2925), - [anon_sym_concept] = ACTIONS(2925), - [anon_sym_co_return] = ACTIONS(2925), - [anon_sym_co_yield] = ACTIONS(2925), - [anon_sym_R_DQUOTE] = ACTIONS(2927), - [anon_sym_LR_DQUOTE] = ACTIONS(2927), - [anon_sym_uR_DQUOTE] = ACTIONS(2927), - [anon_sym_UR_DQUOTE] = ACTIONS(2927), - [anon_sym_u8R_DQUOTE] = ACTIONS(2927), - [anon_sym_co_await] = ACTIONS(2925), - [anon_sym_new] = ACTIONS(2925), - [anon_sym_requires] = ACTIONS(2925), - [sym_this] = ACTIONS(2925), + [sym_identifier] = ACTIONS(2852), + [aux_sym_preproc_include_token1] = ACTIONS(2852), + [aux_sym_preproc_def_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token2] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2852), + [sym_preproc_directive] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym___extension__] = ACTIONS(2852), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym___attribute__] = ACTIONS(2852), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2854), + [anon_sym___declspec] = ACTIONS(2852), + [anon_sym___based] = ACTIONS(2852), + [anon_sym___cdecl] = ACTIONS(2852), + [anon_sym___clrcall] = ACTIONS(2852), + [anon_sym___stdcall] = ACTIONS(2852), + [anon_sym___fastcall] = ACTIONS(2852), + [anon_sym___thiscall] = ACTIONS(2852), + [anon_sym___vectorcall] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_signed] = ACTIONS(2852), + [anon_sym_unsigned] = ACTIONS(2852), + [anon_sym_long] = ACTIONS(2852), + [anon_sym_short] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_register] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym___inline] = ACTIONS(2852), + [anon_sym___inline__] = ACTIONS(2852), + [anon_sym___forceinline] = ACTIONS(2852), + [anon_sym_thread_local] = ACTIONS(2852), + [anon_sym___thread] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_constexpr] = ACTIONS(2852), + [anon_sym_volatile] = ACTIONS(2852), + [anon_sym_restrict] = ACTIONS(2852), + [anon_sym___restrict__] = ACTIONS(2852), + [anon_sym__Atomic] = ACTIONS(2852), + [anon_sym__Noreturn] = ACTIONS(2852), + [anon_sym_noreturn] = ACTIONS(2852), + [anon_sym_mutable] = ACTIONS(2852), + [anon_sym_constinit] = ACTIONS(2852), + [anon_sym_consteval] = ACTIONS(2852), + [sym_primitive_type] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_class] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_else] = ACTIONS(2852), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_goto] = ACTIONS(2852), + [anon_sym_not] = ACTIONS(2852), + [anon_sym_compl] = ACTIONS(2852), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_sizeof] = ACTIONS(2852), + [anon_sym___alignof__] = ACTIONS(2852), + [anon_sym___alignof] = ACTIONS(2852), + [anon_sym__alignof] = ACTIONS(2852), + [anon_sym_alignof] = ACTIONS(2852), + [anon_sym__Alignof] = ACTIONS(2852), + [anon_sym_offsetof] = ACTIONS(2852), + [anon_sym__Generic] = ACTIONS(2852), + [anon_sym_asm] = ACTIONS(2852), + [anon_sym___asm__] = ACTIONS(2852), + [sym_number_literal] = ACTIONS(2854), + [anon_sym_L_SQUOTE] = ACTIONS(2854), + [anon_sym_u_SQUOTE] = ACTIONS(2854), + [anon_sym_U_SQUOTE] = ACTIONS(2854), + [anon_sym_u8_SQUOTE] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_L_DQUOTE] = ACTIONS(2854), + [anon_sym_u_DQUOTE] = ACTIONS(2854), + [anon_sym_U_DQUOTE] = ACTIONS(2854), + [anon_sym_u8_DQUOTE] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [sym_true] = ACTIONS(2852), + [sym_false] = ACTIONS(2852), + [anon_sym_NULL] = ACTIONS(2852), + [anon_sym_nullptr] = ACTIONS(2852), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2852), + [anon_sym_decltype] = ACTIONS(2852), + [anon_sym_virtual] = ACTIONS(2852), + [anon_sym_alignas] = ACTIONS(2852), + [anon_sym_explicit] = ACTIONS(2852), + [anon_sym_typename] = ACTIONS(2852), + [anon_sym_template] = ACTIONS(2852), + [anon_sym_operator] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_delete] = ACTIONS(2852), + [anon_sym_throw] = ACTIONS(2852), + [anon_sym_namespace] = ACTIONS(2852), + [anon_sym_using] = ACTIONS(2852), + [anon_sym_static_assert] = ACTIONS(2852), + [anon_sym_concept] = ACTIONS(2852), + [anon_sym_co_return] = ACTIONS(2852), + [anon_sym_co_yield] = ACTIONS(2852), + [anon_sym_R_DQUOTE] = ACTIONS(2854), + [anon_sym_LR_DQUOTE] = ACTIONS(2854), + [anon_sym_uR_DQUOTE] = ACTIONS(2854), + [anon_sym_UR_DQUOTE] = ACTIONS(2854), + [anon_sym_u8R_DQUOTE] = ACTIONS(2854), + [anon_sym_co_await] = ACTIONS(2852), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_requires] = ACTIONS(2852), + [sym_this] = ACTIONS(2852), }, [664] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [665] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [666] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [667] = { - [sym_preproc_def] = STATE(724), - [sym_preproc_function_def] = STATE(724), - [sym_preproc_call] = STATE(724), - [sym_preproc_if_in_field_declaration_list] = STATE(724), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(724), - [sym_preproc_else_in_field_declaration_list] = STATE(8879), - [sym_preproc_elif_in_field_declaration_list] = STATE(8879), - [sym_type_definition] = STATE(724), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6371), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6947), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(724), - [sym_field_declaration] = STATE(724), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2398), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(724), - [sym_operator_cast] = STATE(7504), - [sym_inline_method_definition] = STATE(724), - [sym__constructor_specifiers] = STATE(2398), - [sym_operator_cast_definition] = STATE(724), - [sym_operator_cast_declaration] = STATE(724), - [sym_constructor_or_destructor_definition] = STATE(724), - [sym_constructor_or_destructor_declaration] = STATE(724), - [sym_friend_declaration] = STATE(724), - [sym_access_specifier] = STATE(9393), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(724), - [sym_alias_declaration] = STATE(724), - [sym_static_assert_declaration] = STATE(724), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7504), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(724), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2398), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3462), - [aux_sym_preproc_if_token1] = ACTIONS(3464), - [aux_sym_preproc_if_token2] = ACTIONS(3498), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3468), - [aux_sym_preproc_else_token1] = ACTIONS(2697), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3472), - [anon_sym_typedef] = ACTIONS(3474), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3476), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3478), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3480), - [anon_sym_static_assert] = ACTIONS(3482), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [668] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2808), + [aux_sym_preproc_include_token1] = ACTIONS(2808), + [aux_sym_preproc_def_token1] = ACTIONS(2808), + [aux_sym_preproc_if_token1] = ACTIONS(2808), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2808), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2808), + [sym_preproc_directive] = ACTIONS(2808), + [anon_sym_LPAREN2] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2808), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_AMP_AMP] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2808), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym___extension__] = ACTIONS(2808), + [anon_sym_typedef] = ACTIONS(2808), + [anon_sym_extern] = ACTIONS(2808), + [anon_sym___attribute__] = ACTIONS(2808), + [anon_sym_COLON_COLON] = ACTIONS(2810), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2810), + [anon_sym___declspec] = ACTIONS(2808), + [anon_sym___based] = ACTIONS(2808), + [anon_sym___cdecl] = ACTIONS(2808), + [anon_sym___clrcall] = ACTIONS(2808), + [anon_sym___stdcall] = ACTIONS(2808), + [anon_sym___fastcall] = ACTIONS(2808), + [anon_sym___thiscall] = ACTIONS(2808), + [anon_sym___vectorcall] = ACTIONS(2808), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_RBRACE] = ACTIONS(2810), + [anon_sym_signed] = ACTIONS(2808), + [anon_sym_unsigned] = ACTIONS(2808), + [anon_sym_long] = ACTIONS(2808), + [anon_sym_short] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2808), + [anon_sym_static] = ACTIONS(2808), + [anon_sym_register] = ACTIONS(2808), + [anon_sym_inline] = ACTIONS(2808), + [anon_sym___inline] = ACTIONS(2808), + [anon_sym___inline__] = ACTIONS(2808), + [anon_sym___forceinline] = ACTIONS(2808), + [anon_sym_thread_local] = ACTIONS(2808), + [anon_sym___thread] = ACTIONS(2808), + [anon_sym_const] = ACTIONS(2808), + [anon_sym_constexpr] = ACTIONS(2808), + [anon_sym_volatile] = ACTIONS(2808), + [anon_sym_restrict] = ACTIONS(2808), + [anon_sym___restrict__] = ACTIONS(2808), + [anon_sym__Atomic] = ACTIONS(2808), + [anon_sym__Noreturn] = ACTIONS(2808), + [anon_sym_noreturn] = ACTIONS(2808), + [anon_sym_mutable] = ACTIONS(2808), + [anon_sym_constinit] = ACTIONS(2808), + [anon_sym_consteval] = ACTIONS(2808), + [sym_primitive_type] = ACTIONS(2808), + [anon_sym_enum] = ACTIONS(2808), + [anon_sym_class] = ACTIONS(2808), + [anon_sym_struct] = ACTIONS(2808), + [anon_sym_union] = ACTIONS(2808), + [anon_sym_if] = ACTIONS(2808), + [anon_sym_else] = ACTIONS(2808), + [anon_sym_switch] = ACTIONS(2808), + [anon_sym_case] = ACTIONS(2808), + [anon_sym_default] = ACTIONS(2808), + [anon_sym_while] = ACTIONS(2808), + [anon_sym_do] = ACTIONS(2808), + [anon_sym_for] = ACTIONS(2808), + [anon_sym_return] = ACTIONS(2808), + [anon_sym_break] = ACTIONS(2808), + [anon_sym_continue] = ACTIONS(2808), + [anon_sym_goto] = ACTIONS(2808), + [anon_sym_not] = ACTIONS(2808), + [anon_sym_compl] = ACTIONS(2808), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_sizeof] = ACTIONS(2808), + [anon_sym___alignof__] = ACTIONS(2808), + [anon_sym___alignof] = ACTIONS(2808), + [anon_sym__alignof] = ACTIONS(2808), + [anon_sym_alignof] = ACTIONS(2808), + [anon_sym__Alignof] = ACTIONS(2808), + [anon_sym_offsetof] = ACTIONS(2808), + [anon_sym__Generic] = ACTIONS(2808), + [anon_sym_asm] = ACTIONS(2808), + [anon_sym___asm__] = ACTIONS(2808), + [sym_number_literal] = ACTIONS(2810), + [anon_sym_L_SQUOTE] = ACTIONS(2810), + [anon_sym_u_SQUOTE] = ACTIONS(2810), + [anon_sym_U_SQUOTE] = ACTIONS(2810), + [anon_sym_u8_SQUOTE] = ACTIONS(2810), + [anon_sym_SQUOTE] = ACTIONS(2810), + [anon_sym_L_DQUOTE] = ACTIONS(2810), + [anon_sym_u_DQUOTE] = ACTIONS(2810), + [anon_sym_U_DQUOTE] = ACTIONS(2810), + [anon_sym_u8_DQUOTE] = ACTIONS(2810), + [anon_sym_DQUOTE] = ACTIONS(2810), + [sym_true] = ACTIONS(2808), + [sym_false] = ACTIONS(2808), + [anon_sym_NULL] = ACTIONS(2808), + [anon_sym_nullptr] = ACTIONS(2808), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2808), + [anon_sym_decltype] = ACTIONS(2808), + [anon_sym_virtual] = ACTIONS(2808), + [anon_sym_alignas] = ACTIONS(2808), + [anon_sym_explicit] = ACTIONS(2808), + [anon_sym_typename] = ACTIONS(2808), + [anon_sym_template] = ACTIONS(2808), + [anon_sym_operator] = ACTIONS(2808), + [anon_sym_try] = ACTIONS(2808), + [anon_sym_delete] = ACTIONS(2808), + [anon_sym_throw] = ACTIONS(2808), + [anon_sym_namespace] = ACTIONS(2808), + [anon_sym_using] = ACTIONS(2808), + [anon_sym_static_assert] = ACTIONS(2808), + [anon_sym_concept] = ACTIONS(2808), + [anon_sym_co_return] = ACTIONS(2808), + [anon_sym_co_yield] = ACTIONS(2808), + [anon_sym_R_DQUOTE] = ACTIONS(2810), + [anon_sym_LR_DQUOTE] = ACTIONS(2810), + [anon_sym_uR_DQUOTE] = ACTIONS(2810), + [anon_sym_UR_DQUOTE] = ACTIONS(2810), + [anon_sym_u8R_DQUOTE] = ACTIONS(2810), + [anon_sym_co_await] = ACTIONS(2808), + [anon_sym_new] = ACTIONS(2808), + [anon_sym_requires] = ACTIONS(2808), + [sym_this] = ACTIONS(2808), }, [669] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [670] = { - [sym_identifier] = ACTIONS(3061), - [aux_sym_preproc_include_token1] = ACTIONS(3061), - [aux_sym_preproc_def_token1] = ACTIONS(3061), - [aux_sym_preproc_if_token1] = ACTIONS(3061), - [aux_sym_preproc_if_token2] = ACTIONS(3061), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3061), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3061), - [aux_sym_preproc_else_token1] = ACTIONS(3061), - [aux_sym_preproc_elif_token1] = ACTIONS(3061), - [sym_preproc_directive] = ACTIONS(3061), - [anon_sym_LPAREN2] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3063), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3063), - [anon_sym_AMP_AMP] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_SEMI] = ACTIONS(3063), - [anon_sym___extension__] = ACTIONS(3061), - [anon_sym_typedef] = ACTIONS(3061), - [anon_sym_extern] = ACTIONS(3061), - [anon_sym___attribute__] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3063), - [anon_sym___declspec] = ACTIONS(3061), - [anon_sym___based] = ACTIONS(3061), - [anon_sym___cdecl] = ACTIONS(3061), - [anon_sym___clrcall] = ACTIONS(3061), - [anon_sym___stdcall] = ACTIONS(3061), - [anon_sym___fastcall] = ACTIONS(3061), - [anon_sym___thiscall] = ACTIONS(3061), - [anon_sym___vectorcall] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3063), - [anon_sym_signed] = ACTIONS(3061), - [anon_sym_unsigned] = ACTIONS(3061), - [anon_sym_long] = ACTIONS(3061), - [anon_sym_short] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3061), - [anon_sym_static] = ACTIONS(3061), - [anon_sym_register] = ACTIONS(3061), - [anon_sym_inline] = ACTIONS(3061), - [anon_sym___inline] = ACTIONS(3061), - [anon_sym___inline__] = ACTIONS(3061), - [anon_sym___forceinline] = ACTIONS(3061), - [anon_sym_thread_local] = ACTIONS(3061), - [anon_sym___thread] = ACTIONS(3061), - [anon_sym_const] = ACTIONS(3061), - [anon_sym_constexpr] = ACTIONS(3061), - [anon_sym_volatile] = ACTIONS(3061), - [anon_sym_restrict] = ACTIONS(3061), - [anon_sym___restrict__] = ACTIONS(3061), - [anon_sym__Atomic] = ACTIONS(3061), - [anon_sym__Noreturn] = ACTIONS(3061), - [anon_sym_noreturn] = ACTIONS(3061), - [anon_sym_mutable] = ACTIONS(3061), - [anon_sym_constinit] = ACTIONS(3061), - [anon_sym_consteval] = ACTIONS(3061), - [sym_primitive_type] = ACTIONS(3061), - [anon_sym_enum] = ACTIONS(3061), - [anon_sym_class] = ACTIONS(3061), - [anon_sym_struct] = ACTIONS(3061), - [anon_sym_union] = ACTIONS(3061), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_else] = ACTIONS(3061), - [anon_sym_switch] = ACTIONS(3061), - [anon_sym_case] = ACTIONS(3061), - [anon_sym_default] = ACTIONS(3061), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_do] = ACTIONS(3061), - [anon_sym_for] = ACTIONS(3061), - [anon_sym_return] = ACTIONS(3061), - [anon_sym_break] = ACTIONS(3061), - [anon_sym_continue] = ACTIONS(3061), - [anon_sym_goto] = ACTIONS(3061), - [anon_sym_not] = ACTIONS(3061), - [anon_sym_compl] = ACTIONS(3061), - [anon_sym_DASH_DASH] = ACTIONS(3063), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_sizeof] = ACTIONS(3061), - [anon_sym___alignof__] = ACTIONS(3061), - [anon_sym___alignof] = ACTIONS(3061), - [anon_sym__alignof] = ACTIONS(3061), - [anon_sym_alignof] = ACTIONS(3061), - [anon_sym__Alignof] = ACTIONS(3061), - [anon_sym_offsetof] = ACTIONS(3061), - [anon_sym__Generic] = ACTIONS(3061), - [anon_sym_asm] = ACTIONS(3061), - [anon_sym___asm__] = ACTIONS(3061), - [sym_number_literal] = ACTIONS(3063), - [anon_sym_L_SQUOTE] = ACTIONS(3063), - [anon_sym_u_SQUOTE] = ACTIONS(3063), - [anon_sym_U_SQUOTE] = ACTIONS(3063), - [anon_sym_u8_SQUOTE] = ACTIONS(3063), - [anon_sym_SQUOTE] = ACTIONS(3063), - [anon_sym_L_DQUOTE] = ACTIONS(3063), - [anon_sym_u_DQUOTE] = ACTIONS(3063), - [anon_sym_U_DQUOTE] = ACTIONS(3063), - [anon_sym_u8_DQUOTE] = ACTIONS(3063), - [anon_sym_DQUOTE] = ACTIONS(3063), - [sym_true] = ACTIONS(3061), - [sym_false] = ACTIONS(3061), - [anon_sym_NULL] = ACTIONS(3061), - [anon_sym_nullptr] = ACTIONS(3061), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3061), - [anon_sym_decltype] = ACTIONS(3061), - [anon_sym_virtual] = ACTIONS(3061), - [anon_sym_alignas] = ACTIONS(3061), - [anon_sym_explicit] = ACTIONS(3061), - [anon_sym_typename] = ACTIONS(3061), - [anon_sym_template] = ACTIONS(3061), - [anon_sym_operator] = ACTIONS(3061), - [anon_sym_try] = ACTIONS(3061), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_throw] = ACTIONS(3061), - [anon_sym_namespace] = ACTIONS(3061), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_static_assert] = ACTIONS(3061), - [anon_sym_concept] = ACTIONS(3061), - [anon_sym_co_return] = ACTIONS(3061), - [anon_sym_co_yield] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(3063), - [anon_sym_LR_DQUOTE] = ACTIONS(3063), - [anon_sym_uR_DQUOTE] = ACTIONS(3063), - [anon_sym_UR_DQUOTE] = ACTIONS(3063), - [anon_sym_u8R_DQUOTE] = ACTIONS(3063), - [anon_sym_co_await] = ACTIONS(3061), - [anon_sym_new] = ACTIONS(3061), - [anon_sym_requires] = ACTIONS(3061), - [sym_this] = ACTIONS(3061), + [sym_identifier] = ACTIONS(2804), + [aux_sym_preproc_include_token1] = ACTIONS(2804), + [aux_sym_preproc_def_token1] = ACTIONS(2804), + [aux_sym_preproc_if_token1] = ACTIONS(2804), + [aux_sym_preproc_if_token2] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2804), + [sym_preproc_directive] = ACTIONS(2804), + [anon_sym_LPAREN2] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2806), + [anon_sym_DASH] = ACTIONS(2804), + [anon_sym_PLUS] = ACTIONS(2804), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_AMP_AMP] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym___extension__] = ACTIONS(2804), + [anon_sym_typedef] = ACTIONS(2804), + [anon_sym_extern] = ACTIONS(2804), + [anon_sym___attribute__] = ACTIONS(2804), + [anon_sym_COLON_COLON] = ACTIONS(2806), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2806), + [anon_sym___declspec] = ACTIONS(2804), + [anon_sym___based] = ACTIONS(2804), + [anon_sym___cdecl] = ACTIONS(2804), + [anon_sym___clrcall] = ACTIONS(2804), + [anon_sym___stdcall] = ACTIONS(2804), + [anon_sym___fastcall] = ACTIONS(2804), + [anon_sym___thiscall] = ACTIONS(2804), + [anon_sym___vectorcall] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_signed] = ACTIONS(2804), + [anon_sym_unsigned] = ACTIONS(2804), + [anon_sym_long] = ACTIONS(2804), + [anon_sym_short] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2804), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_register] = ACTIONS(2804), + [anon_sym_inline] = ACTIONS(2804), + [anon_sym___inline] = ACTIONS(2804), + [anon_sym___inline__] = ACTIONS(2804), + [anon_sym___forceinline] = ACTIONS(2804), + [anon_sym_thread_local] = ACTIONS(2804), + [anon_sym___thread] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_constexpr] = ACTIONS(2804), + [anon_sym_volatile] = ACTIONS(2804), + [anon_sym_restrict] = ACTIONS(2804), + [anon_sym___restrict__] = ACTIONS(2804), + [anon_sym__Atomic] = ACTIONS(2804), + [anon_sym__Noreturn] = ACTIONS(2804), + [anon_sym_noreturn] = ACTIONS(2804), + [anon_sym_mutable] = ACTIONS(2804), + [anon_sym_constinit] = ACTIONS(2804), + [anon_sym_consteval] = ACTIONS(2804), + [sym_primitive_type] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [anon_sym_class] = ACTIONS(2804), + [anon_sym_struct] = ACTIONS(2804), + [anon_sym_union] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2804), + [anon_sym_else] = ACTIONS(2804), + [anon_sym_switch] = ACTIONS(2804), + [anon_sym_case] = ACTIONS(2804), + [anon_sym_default] = ACTIONS(2804), + [anon_sym_while] = ACTIONS(2804), + [anon_sym_do] = ACTIONS(2804), + [anon_sym_for] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2804), + [anon_sym_break] = ACTIONS(2804), + [anon_sym_continue] = ACTIONS(2804), + [anon_sym_goto] = ACTIONS(2804), + [anon_sym_not] = ACTIONS(2804), + [anon_sym_compl] = ACTIONS(2804), + [anon_sym_DASH_DASH] = ACTIONS(2806), + [anon_sym_PLUS_PLUS] = ACTIONS(2806), + [anon_sym_sizeof] = ACTIONS(2804), + [anon_sym___alignof__] = ACTIONS(2804), + [anon_sym___alignof] = ACTIONS(2804), + [anon_sym__alignof] = ACTIONS(2804), + [anon_sym_alignof] = ACTIONS(2804), + [anon_sym__Alignof] = ACTIONS(2804), + [anon_sym_offsetof] = ACTIONS(2804), + [anon_sym__Generic] = ACTIONS(2804), + [anon_sym_asm] = ACTIONS(2804), + [anon_sym___asm__] = ACTIONS(2804), + [sym_number_literal] = ACTIONS(2806), + [anon_sym_L_SQUOTE] = ACTIONS(2806), + [anon_sym_u_SQUOTE] = ACTIONS(2806), + [anon_sym_U_SQUOTE] = ACTIONS(2806), + [anon_sym_u8_SQUOTE] = ACTIONS(2806), + [anon_sym_SQUOTE] = ACTIONS(2806), + [anon_sym_L_DQUOTE] = ACTIONS(2806), + [anon_sym_u_DQUOTE] = ACTIONS(2806), + [anon_sym_U_DQUOTE] = ACTIONS(2806), + [anon_sym_u8_DQUOTE] = ACTIONS(2806), + [anon_sym_DQUOTE] = ACTIONS(2806), + [sym_true] = ACTIONS(2804), + [sym_false] = ACTIONS(2804), + [anon_sym_NULL] = ACTIONS(2804), + [anon_sym_nullptr] = ACTIONS(2804), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2804), + [anon_sym_decltype] = ACTIONS(2804), + [anon_sym_virtual] = ACTIONS(2804), + [anon_sym_alignas] = ACTIONS(2804), + [anon_sym_explicit] = ACTIONS(2804), + [anon_sym_typename] = ACTIONS(2804), + [anon_sym_template] = ACTIONS(2804), + [anon_sym_operator] = ACTIONS(2804), + [anon_sym_try] = ACTIONS(2804), + [anon_sym_delete] = ACTIONS(2804), + [anon_sym_throw] = ACTIONS(2804), + [anon_sym_namespace] = ACTIONS(2804), + [anon_sym_using] = ACTIONS(2804), + [anon_sym_static_assert] = ACTIONS(2804), + [anon_sym_concept] = ACTIONS(2804), + [anon_sym_co_return] = ACTIONS(2804), + [anon_sym_co_yield] = ACTIONS(2804), + [anon_sym_R_DQUOTE] = ACTIONS(2806), + [anon_sym_LR_DQUOTE] = ACTIONS(2806), + [anon_sym_uR_DQUOTE] = ACTIONS(2806), + [anon_sym_UR_DQUOTE] = ACTIONS(2806), + [anon_sym_u8R_DQUOTE] = ACTIONS(2806), + [anon_sym_co_await] = ACTIONS(2804), + [anon_sym_new] = ACTIONS(2804), + [anon_sym_requires] = ACTIONS(2804), + [sym_this] = ACTIONS(2804), }, [671] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, [672] = { - [sym_identifier] = ACTIONS(3065), - [aux_sym_preproc_include_token1] = ACTIONS(3065), - [aux_sym_preproc_def_token1] = ACTIONS(3065), - [aux_sym_preproc_if_token1] = ACTIONS(3065), - [aux_sym_preproc_if_token2] = ACTIONS(3065), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3065), - [aux_sym_preproc_else_token1] = ACTIONS(3065), - [aux_sym_preproc_elif_token1] = ACTIONS(3065), - [sym_preproc_directive] = ACTIONS(3065), - [anon_sym_LPAREN2] = ACTIONS(3067), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP_AMP] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym___extension__] = ACTIONS(3065), - [anon_sym_typedef] = ACTIONS(3065), - [anon_sym_extern] = ACTIONS(3065), - [anon_sym___attribute__] = ACTIONS(3065), - [anon_sym_COLON_COLON] = ACTIONS(3067), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3067), - [anon_sym___declspec] = ACTIONS(3065), - [anon_sym___based] = ACTIONS(3065), - [anon_sym___cdecl] = ACTIONS(3065), - [anon_sym___clrcall] = ACTIONS(3065), - [anon_sym___stdcall] = ACTIONS(3065), - [anon_sym___fastcall] = ACTIONS(3065), - [anon_sym___thiscall] = ACTIONS(3065), - [anon_sym___vectorcall] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_signed] = ACTIONS(3065), - [anon_sym_unsigned] = ACTIONS(3065), - [anon_sym_long] = ACTIONS(3065), - [anon_sym_short] = ACTIONS(3065), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(3065), - [anon_sym_register] = ACTIONS(3065), - [anon_sym_inline] = ACTIONS(3065), - [anon_sym___inline] = ACTIONS(3065), - [anon_sym___inline__] = ACTIONS(3065), - [anon_sym___forceinline] = ACTIONS(3065), - [anon_sym_thread_local] = ACTIONS(3065), - [anon_sym___thread] = ACTIONS(3065), - [anon_sym_const] = ACTIONS(3065), - [anon_sym_constexpr] = ACTIONS(3065), - [anon_sym_volatile] = ACTIONS(3065), - [anon_sym_restrict] = ACTIONS(3065), - [anon_sym___restrict__] = ACTIONS(3065), - [anon_sym__Atomic] = ACTIONS(3065), - [anon_sym__Noreturn] = ACTIONS(3065), - [anon_sym_noreturn] = ACTIONS(3065), - [anon_sym_mutable] = ACTIONS(3065), - [anon_sym_constinit] = ACTIONS(3065), - [anon_sym_consteval] = ACTIONS(3065), - [sym_primitive_type] = ACTIONS(3065), - [anon_sym_enum] = ACTIONS(3065), - [anon_sym_class] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(3065), - [anon_sym_union] = ACTIONS(3065), - [anon_sym_if] = ACTIONS(3065), - [anon_sym_else] = ACTIONS(3065), - [anon_sym_switch] = ACTIONS(3065), - [anon_sym_case] = ACTIONS(3065), - [anon_sym_default] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3065), - [anon_sym_do] = ACTIONS(3065), - [anon_sym_for] = ACTIONS(3065), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_break] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(3065), - [anon_sym_goto] = ACTIONS(3065), - [anon_sym_not] = ACTIONS(3065), - [anon_sym_compl] = ACTIONS(3065), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_sizeof] = ACTIONS(3065), - [anon_sym___alignof__] = ACTIONS(3065), - [anon_sym___alignof] = ACTIONS(3065), - [anon_sym__alignof] = ACTIONS(3065), - [anon_sym_alignof] = ACTIONS(3065), - [anon_sym__Alignof] = ACTIONS(3065), - [anon_sym_offsetof] = ACTIONS(3065), - [anon_sym__Generic] = ACTIONS(3065), - [anon_sym_asm] = ACTIONS(3065), - [anon_sym___asm__] = ACTIONS(3065), - [sym_number_literal] = ACTIONS(3067), - [anon_sym_L_SQUOTE] = ACTIONS(3067), - [anon_sym_u_SQUOTE] = ACTIONS(3067), - [anon_sym_U_SQUOTE] = ACTIONS(3067), - [anon_sym_u8_SQUOTE] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3067), - [anon_sym_L_DQUOTE] = ACTIONS(3067), - [anon_sym_u_DQUOTE] = ACTIONS(3067), - [anon_sym_U_DQUOTE] = ACTIONS(3067), - [anon_sym_u8_DQUOTE] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(3067), - [sym_true] = ACTIONS(3065), - [sym_false] = ACTIONS(3065), - [anon_sym_NULL] = ACTIONS(3065), - [anon_sym_nullptr] = ACTIONS(3065), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3065), - [anon_sym_decltype] = ACTIONS(3065), - [anon_sym_virtual] = ACTIONS(3065), - [anon_sym_alignas] = ACTIONS(3065), - [anon_sym_explicit] = ACTIONS(3065), - [anon_sym_typename] = ACTIONS(3065), - [anon_sym_template] = ACTIONS(3065), - [anon_sym_operator] = ACTIONS(3065), - [anon_sym_try] = ACTIONS(3065), - [anon_sym_delete] = ACTIONS(3065), - [anon_sym_throw] = ACTIONS(3065), - [anon_sym_namespace] = ACTIONS(3065), - [anon_sym_using] = ACTIONS(3065), - [anon_sym_static_assert] = ACTIONS(3065), - [anon_sym_concept] = ACTIONS(3065), - [anon_sym_co_return] = ACTIONS(3065), - [anon_sym_co_yield] = ACTIONS(3065), - [anon_sym_R_DQUOTE] = ACTIONS(3067), - [anon_sym_LR_DQUOTE] = ACTIONS(3067), - [anon_sym_uR_DQUOTE] = ACTIONS(3067), - [anon_sym_UR_DQUOTE] = ACTIONS(3067), - [anon_sym_u8R_DQUOTE] = ACTIONS(3067), - [anon_sym_co_await] = ACTIONS(3065), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(3065), - [sym_this] = ACTIONS(3065), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, [673] = { - [sym_identifier] = ACTIONS(3077), - [aux_sym_preproc_include_token1] = ACTIONS(3077), - [aux_sym_preproc_def_token1] = ACTIONS(3077), - [aux_sym_preproc_if_token1] = ACTIONS(3077), - [aux_sym_preproc_if_token2] = ACTIONS(3077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3077), - [aux_sym_preproc_else_token1] = ACTIONS(3077), - [aux_sym_preproc_elif_token1] = ACTIONS(3077), - [sym_preproc_directive] = ACTIONS(3077), - [anon_sym_LPAREN2] = ACTIONS(3079), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_SEMI] = ACTIONS(3079), - [anon_sym___extension__] = ACTIONS(3077), - [anon_sym_typedef] = ACTIONS(3077), - [anon_sym_extern] = ACTIONS(3077), - [anon_sym___attribute__] = ACTIONS(3077), - [anon_sym_COLON_COLON] = ACTIONS(3079), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3079), - [anon_sym___declspec] = ACTIONS(3077), - [anon_sym___based] = ACTIONS(3077), - [anon_sym___cdecl] = ACTIONS(3077), - [anon_sym___clrcall] = ACTIONS(3077), - [anon_sym___stdcall] = ACTIONS(3077), - [anon_sym___fastcall] = ACTIONS(3077), - [anon_sym___thiscall] = ACTIONS(3077), - [anon_sym___vectorcall] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_signed] = ACTIONS(3077), - [anon_sym_unsigned] = ACTIONS(3077), - [anon_sym_long] = ACTIONS(3077), - [anon_sym_short] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3077), - [anon_sym_static] = ACTIONS(3077), - [anon_sym_register] = ACTIONS(3077), - [anon_sym_inline] = ACTIONS(3077), - [anon_sym___inline] = ACTIONS(3077), - [anon_sym___inline__] = ACTIONS(3077), - [anon_sym___forceinline] = ACTIONS(3077), - [anon_sym_thread_local] = ACTIONS(3077), - [anon_sym___thread] = ACTIONS(3077), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_constexpr] = ACTIONS(3077), - [anon_sym_volatile] = ACTIONS(3077), - [anon_sym_restrict] = ACTIONS(3077), - [anon_sym___restrict__] = ACTIONS(3077), - [anon_sym__Atomic] = ACTIONS(3077), - [anon_sym__Noreturn] = ACTIONS(3077), - [anon_sym_noreturn] = ACTIONS(3077), - [anon_sym_mutable] = ACTIONS(3077), - [anon_sym_constinit] = ACTIONS(3077), - [anon_sym_consteval] = ACTIONS(3077), - [sym_primitive_type] = ACTIONS(3077), - [anon_sym_enum] = ACTIONS(3077), - [anon_sym_class] = ACTIONS(3077), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_if] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3077), - [anon_sym_switch] = ACTIONS(3077), - [anon_sym_case] = ACTIONS(3077), - [anon_sym_default] = ACTIONS(3077), - [anon_sym_while] = ACTIONS(3077), - [anon_sym_do] = ACTIONS(3077), - [anon_sym_for] = ACTIONS(3077), - [anon_sym_return] = ACTIONS(3077), - [anon_sym_break] = ACTIONS(3077), - [anon_sym_continue] = ACTIONS(3077), - [anon_sym_goto] = ACTIONS(3077), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3079), - [anon_sym_PLUS_PLUS] = ACTIONS(3079), - [anon_sym_sizeof] = ACTIONS(3077), - [anon_sym___alignof__] = ACTIONS(3077), - [anon_sym___alignof] = ACTIONS(3077), - [anon_sym__alignof] = ACTIONS(3077), - [anon_sym_alignof] = ACTIONS(3077), - [anon_sym__Alignof] = ACTIONS(3077), - [anon_sym_offsetof] = ACTIONS(3077), - [anon_sym__Generic] = ACTIONS(3077), - [anon_sym_asm] = ACTIONS(3077), - [anon_sym___asm__] = ACTIONS(3077), - [sym_number_literal] = ACTIONS(3079), - [anon_sym_L_SQUOTE] = ACTIONS(3079), - [anon_sym_u_SQUOTE] = ACTIONS(3079), - [anon_sym_U_SQUOTE] = ACTIONS(3079), - [anon_sym_u8_SQUOTE] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3079), - [anon_sym_L_DQUOTE] = ACTIONS(3079), - [anon_sym_u_DQUOTE] = ACTIONS(3079), - [anon_sym_U_DQUOTE] = ACTIONS(3079), - [anon_sym_u8_DQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [sym_true] = ACTIONS(3077), - [sym_false] = ACTIONS(3077), - [anon_sym_NULL] = ACTIONS(3077), - [anon_sym_nullptr] = ACTIONS(3077), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3077), - [anon_sym_decltype] = ACTIONS(3077), - [anon_sym_virtual] = ACTIONS(3077), - [anon_sym_alignas] = ACTIONS(3077), - [anon_sym_explicit] = ACTIONS(3077), - [anon_sym_typename] = ACTIONS(3077), - [anon_sym_template] = ACTIONS(3077), - [anon_sym_operator] = ACTIONS(3077), - [anon_sym_try] = ACTIONS(3077), - [anon_sym_delete] = ACTIONS(3077), - [anon_sym_throw] = ACTIONS(3077), - [anon_sym_namespace] = ACTIONS(3077), - [anon_sym_using] = ACTIONS(3077), - [anon_sym_static_assert] = ACTIONS(3077), - [anon_sym_concept] = ACTIONS(3077), - [anon_sym_co_return] = ACTIONS(3077), - [anon_sym_co_yield] = ACTIONS(3077), - [anon_sym_R_DQUOTE] = ACTIONS(3079), - [anon_sym_LR_DQUOTE] = ACTIONS(3079), - [anon_sym_uR_DQUOTE] = ACTIONS(3079), - [anon_sym_UR_DQUOTE] = ACTIONS(3079), - [anon_sym_u8R_DQUOTE] = ACTIONS(3079), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_requires] = ACTIONS(3077), - [sym_this] = ACTIONS(3077), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, [674] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, [675] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), - }, - [676] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), + }, + [676] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, [677] = { - [sym_identifier] = ACTIONS(2838), - [aux_sym_preproc_include_token1] = ACTIONS(2838), - [aux_sym_preproc_def_token1] = ACTIONS(2838), - [aux_sym_preproc_if_token1] = ACTIONS(2838), - [aux_sym_preproc_if_token2] = ACTIONS(2838), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2838), - [aux_sym_preproc_else_token1] = ACTIONS(2838), - [aux_sym_preproc_elif_token1] = ACTIONS(2838), - [sym_preproc_directive] = ACTIONS(2838), - [anon_sym_LPAREN2] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym___extension__] = ACTIONS(2838), - [anon_sym_typedef] = ACTIONS(2838), - [anon_sym_extern] = ACTIONS(2838), - [anon_sym___attribute__] = ACTIONS(2838), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2840), - [anon_sym___declspec] = ACTIONS(2838), - [anon_sym___based] = ACTIONS(2838), - [anon_sym___cdecl] = ACTIONS(2838), - [anon_sym___clrcall] = ACTIONS(2838), - [anon_sym___stdcall] = ACTIONS(2838), - [anon_sym___fastcall] = ACTIONS(2838), - [anon_sym___thiscall] = ACTIONS(2838), - [anon_sym___vectorcall] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_signed] = ACTIONS(2838), - [anon_sym_unsigned] = ACTIONS(2838), - [anon_sym_long] = ACTIONS(2838), - [anon_sym_short] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_static] = ACTIONS(2838), - [anon_sym_register] = ACTIONS(2838), - [anon_sym_inline] = ACTIONS(2838), - [anon_sym___inline] = ACTIONS(2838), - [anon_sym___inline__] = ACTIONS(2838), - [anon_sym___forceinline] = ACTIONS(2838), - [anon_sym_thread_local] = ACTIONS(2838), - [anon_sym___thread] = ACTIONS(2838), - [anon_sym_const] = ACTIONS(2838), - [anon_sym_constexpr] = ACTIONS(2838), - [anon_sym_volatile] = ACTIONS(2838), - [anon_sym_restrict] = ACTIONS(2838), - [anon_sym___restrict__] = ACTIONS(2838), - [anon_sym__Atomic] = ACTIONS(2838), - [anon_sym__Noreturn] = ACTIONS(2838), - [anon_sym_noreturn] = ACTIONS(2838), - [anon_sym_mutable] = ACTIONS(2838), - [anon_sym_constinit] = ACTIONS(2838), - [anon_sym_consteval] = ACTIONS(2838), - [sym_primitive_type] = ACTIONS(2838), - [anon_sym_enum] = ACTIONS(2838), - [anon_sym_class] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2838), - [anon_sym_union] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_else] = ACTIONS(2838), - [anon_sym_switch] = ACTIONS(2838), - [anon_sym_case] = ACTIONS(2838), - [anon_sym_default] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_break] = ACTIONS(2838), - [anon_sym_continue] = ACTIONS(2838), - [anon_sym_goto] = ACTIONS(2838), - [anon_sym_not] = ACTIONS(2838), - [anon_sym_compl] = ACTIONS(2838), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_sizeof] = ACTIONS(2838), - [anon_sym___alignof__] = ACTIONS(2838), - [anon_sym___alignof] = ACTIONS(2838), - [anon_sym__alignof] = ACTIONS(2838), - [anon_sym_alignof] = ACTIONS(2838), - [anon_sym__Alignof] = ACTIONS(2838), - [anon_sym_offsetof] = ACTIONS(2838), - [anon_sym__Generic] = ACTIONS(2838), - [anon_sym_asm] = ACTIONS(2838), - [anon_sym___asm__] = ACTIONS(2838), - [sym_number_literal] = ACTIONS(2840), - [anon_sym_L_SQUOTE] = ACTIONS(2840), - [anon_sym_u_SQUOTE] = ACTIONS(2840), - [anon_sym_U_SQUOTE] = ACTIONS(2840), - [anon_sym_u8_SQUOTE] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_L_DQUOTE] = ACTIONS(2840), - [anon_sym_u_DQUOTE] = ACTIONS(2840), - [anon_sym_U_DQUOTE] = ACTIONS(2840), - [anon_sym_u8_DQUOTE] = ACTIONS(2840), - [anon_sym_DQUOTE] = ACTIONS(2840), - [sym_true] = ACTIONS(2838), - [sym_false] = ACTIONS(2838), - [anon_sym_NULL] = ACTIONS(2838), - [anon_sym_nullptr] = ACTIONS(2838), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2838), - [anon_sym_decltype] = ACTIONS(2838), - [anon_sym_virtual] = ACTIONS(2838), - [anon_sym_alignas] = ACTIONS(2838), - [anon_sym_explicit] = ACTIONS(2838), - [anon_sym_typename] = ACTIONS(2838), - [anon_sym_template] = ACTIONS(2838), - [anon_sym_operator] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_delete] = ACTIONS(2838), - [anon_sym_throw] = ACTIONS(2838), - [anon_sym_namespace] = ACTIONS(2838), - [anon_sym_using] = ACTIONS(2838), - [anon_sym_static_assert] = ACTIONS(2838), - [anon_sym_concept] = ACTIONS(2838), - [anon_sym_co_return] = ACTIONS(2838), - [anon_sym_co_yield] = ACTIONS(2838), - [anon_sym_R_DQUOTE] = ACTIONS(2840), - [anon_sym_LR_DQUOTE] = ACTIONS(2840), - [anon_sym_uR_DQUOTE] = ACTIONS(2840), - [anon_sym_UR_DQUOTE] = ACTIONS(2840), - [anon_sym_u8R_DQUOTE] = ACTIONS(2840), - [anon_sym_co_await] = ACTIONS(2838), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_requires] = ACTIONS(2838), - [sym_this] = ACTIONS(2838), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, [678] = { - [sym_identifier] = ACTIONS(2917), - [aux_sym_preproc_include_token1] = ACTIONS(2917), - [aux_sym_preproc_def_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token2] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), - [aux_sym_preproc_else_token1] = ACTIONS(2917), - [aux_sym_preproc_elif_token1] = ACTIONS(2917), - [sym_preproc_directive] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym___based] = ACTIONS(2917), - [anon_sym___cdecl] = ACTIONS(2917), - [anon_sym___clrcall] = ACTIONS(2917), - [anon_sym___stdcall] = ACTIONS(2917), - [anon_sym___fastcall] = ACTIONS(2917), - [anon_sym___thiscall] = ACTIONS(2917), - [anon_sym___vectorcall] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2917), - [anon_sym_switch] = ACTIONS(2917), - [anon_sym_case] = ACTIONS(2917), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_goto] = ACTIONS(2917), - [anon_sym_not] = ACTIONS(2917), - [anon_sym_compl] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_sizeof] = ACTIONS(2917), - [anon_sym___alignof__] = ACTIONS(2917), - [anon_sym___alignof] = ACTIONS(2917), - [anon_sym__alignof] = ACTIONS(2917), - [anon_sym_alignof] = ACTIONS(2917), - [anon_sym__Alignof] = ACTIONS(2917), - [anon_sym_offsetof] = ACTIONS(2917), - [anon_sym__Generic] = ACTIONS(2917), - [anon_sym_asm] = ACTIONS(2917), - [anon_sym___asm__] = ACTIONS(2917), - [sym_number_literal] = ACTIONS(2919), - [anon_sym_L_SQUOTE] = ACTIONS(2919), - [anon_sym_u_SQUOTE] = ACTIONS(2919), - [anon_sym_U_SQUOTE] = ACTIONS(2919), - [anon_sym_u8_SQUOTE] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2919), - [anon_sym_L_DQUOTE] = ACTIONS(2919), - [anon_sym_u_DQUOTE] = ACTIONS(2919), - [anon_sym_U_DQUOTE] = ACTIONS(2919), - [anon_sym_u8_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [anon_sym_NULL] = ACTIONS(2917), - [anon_sym_nullptr] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_explicit] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_operator] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_delete] = ACTIONS(2917), - [anon_sym_throw] = ACTIONS(2917), - [anon_sym_namespace] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_static_assert] = ACTIONS(2917), - [anon_sym_concept] = ACTIONS(2917), - [anon_sym_co_return] = ACTIONS(2917), - [anon_sym_co_yield] = ACTIONS(2917), - [anon_sym_R_DQUOTE] = ACTIONS(2919), - [anon_sym_LR_DQUOTE] = ACTIONS(2919), - [anon_sym_uR_DQUOTE] = ACTIONS(2919), - [anon_sym_UR_DQUOTE] = ACTIONS(2919), - [anon_sym_u8R_DQUOTE] = ACTIONS(2919), - [anon_sym_co_await] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, [679] = { - [sym_identifier] = ACTIONS(2917), - [aux_sym_preproc_include_token1] = ACTIONS(2917), - [aux_sym_preproc_def_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token2] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), - [aux_sym_preproc_else_token1] = ACTIONS(2917), - [aux_sym_preproc_elif_token1] = ACTIONS(2917), - [sym_preproc_directive] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym___based] = ACTIONS(2917), - [anon_sym___cdecl] = ACTIONS(2917), - [anon_sym___clrcall] = ACTIONS(2917), - [anon_sym___stdcall] = ACTIONS(2917), - [anon_sym___fastcall] = ACTIONS(2917), - [anon_sym___thiscall] = ACTIONS(2917), - [anon_sym___vectorcall] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2917), - [anon_sym_switch] = ACTIONS(2917), - [anon_sym_case] = ACTIONS(2917), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_goto] = ACTIONS(2917), - [anon_sym_not] = ACTIONS(2917), - [anon_sym_compl] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_sizeof] = ACTIONS(2917), - [anon_sym___alignof__] = ACTIONS(2917), - [anon_sym___alignof] = ACTIONS(2917), - [anon_sym__alignof] = ACTIONS(2917), - [anon_sym_alignof] = ACTIONS(2917), - [anon_sym__Alignof] = ACTIONS(2917), - [anon_sym_offsetof] = ACTIONS(2917), - [anon_sym__Generic] = ACTIONS(2917), - [anon_sym_asm] = ACTIONS(2917), - [anon_sym___asm__] = ACTIONS(2917), - [sym_number_literal] = ACTIONS(2919), - [anon_sym_L_SQUOTE] = ACTIONS(2919), - [anon_sym_u_SQUOTE] = ACTIONS(2919), - [anon_sym_U_SQUOTE] = ACTIONS(2919), - [anon_sym_u8_SQUOTE] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2919), - [anon_sym_L_DQUOTE] = ACTIONS(2919), - [anon_sym_u_DQUOTE] = ACTIONS(2919), - [anon_sym_U_DQUOTE] = ACTIONS(2919), - [anon_sym_u8_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [anon_sym_NULL] = ACTIONS(2917), - [anon_sym_nullptr] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_explicit] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_operator] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_delete] = ACTIONS(2917), - [anon_sym_throw] = ACTIONS(2917), - [anon_sym_namespace] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_static_assert] = ACTIONS(2917), - [anon_sym_concept] = ACTIONS(2917), - [anon_sym_co_return] = ACTIONS(2917), - [anon_sym_co_yield] = ACTIONS(2917), - [anon_sym_R_DQUOTE] = ACTIONS(2919), - [anon_sym_LR_DQUOTE] = ACTIONS(2919), - [anon_sym_uR_DQUOTE] = ACTIONS(2919), - [anon_sym_UR_DQUOTE] = ACTIONS(2919), - [anon_sym_u8R_DQUOTE] = ACTIONS(2919), - [anon_sym_co_await] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, [680] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, [681] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, [682] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, [683] = { - [sym_identifier] = ACTIONS(2913), - [aux_sym_preproc_include_token1] = ACTIONS(2913), - [aux_sym_preproc_def_token1] = ACTIONS(2913), - [aux_sym_preproc_if_token1] = ACTIONS(2913), - [aux_sym_preproc_if_token2] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2913), - [aux_sym_preproc_else_token1] = ACTIONS(2913), - [aux_sym_preproc_elif_token1] = ACTIONS(2913), - [sym_preproc_directive] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym___extension__] = ACTIONS(2913), - [anon_sym_typedef] = ACTIONS(2913), - [anon_sym_extern] = ACTIONS(2913), - [anon_sym___attribute__] = ACTIONS(2913), - [anon_sym_COLON_COLON] = ACTIONS(2915), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2915), - [anon_sym___declspec] = ACTIONS(2913), - [anon_sym___based] = ACTIONS(2913), - [anon_sym___cdecl] = ACTIONS(2913), - [anon_sym___clrcall] = ACTIONS(2913), - [anon_sym___stdcall] = ACTIONS(2913), - [anon_sym___fastcall] = ACTIONS(2913), - [anon_sym___thiscall] = ACTIONS(2913), - [anon_sym___vectorcall] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_signed] = ACTIONS(2913), - [anon_sym_unsigned] = ACTIONS(2913), - [anon_sym_long] = ACTIONS(2913), - [anon_sym_short] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_static] = ACTIONS(2913), - [anon_sym_register] = ACTIONS(2913), - [anon_sym_inline] = ACTIONS(2913), - [anon_sym___inline] = ACTIONS(2913), - [anon_sym___inline__] = ACTIONS(2913), - [anon_sym___forceinline] = ACTIONS(2913), - [anon_sym_thread_local] = ACTIONS(2913), - [anon_sym___thread] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_constexpr] = ACTIONS(2913), - [anon_sym_volatile] = ACTIONS(2913), - [anon_sym_restrict] = ACTIONS(2913), - [anon_sym___restrict__] = ACTIONS(2913), - [anon_sym__Atomic] = ACTIONS(2913), - [anon_sym__Noreturn] = ACTIONS(2913), - [anon_sym_noreturn] = ACTIONS(2913), - [anon_sym_mutable] = ACTIONS(2913), - [anon_sym_constinit] = ACTIONS(2913), - [anon_sym_consteval] = ACTIONS(2913), - [sym_primitive_type] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), - [anon_sym_class] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_union] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_else] = ACTIONS(2913), - [anon_sym_switch] = ACTIONS(2913), - [anon_sym_case] = ACTIONS(2913), - [anon_sym_default] = ACTIONS(2913), - [anon_sym_while] = ACTIONS(2913), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_goto] = ACTIONS(2913), - [anon_sym_not] = ACTIONS(2913), - [anon_sym_compl] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2913), - [anon_sym___alignof__] = ACTIONS(2913), - [anon_sym___alignof] = ACTIONS(2913), - [anon_sym__alignof] = ACTIONS(2913), - [anon_sym_alignof] = ACTIONS(2913), - [anon_sym__Alignof] = ACTIONS(2913), - [anon_sym_offsetof] = ACTIONS(2913), - [anon_sym__Generic] = ACTIONS(2913), - [anon_sym_asm] = ACTIONS(2913), - [anon_sym___asm__] = ACTIONS(2913), - [sym_number_literal] = ACTIONS(2915), - [anon_sym_L_SQUOTE] = ACTIONS(2915), - [anon_sym_u_SQUOTE] = ACTIONS(2915), - [anon_sym_U_SQUOTE] = ACTIONS(2915), - [anon_sym_u8_SQUOTE] = ACTIONS(2915), - [anon_sym_SQUOTE] = ACTIONS(2915), - [anon_sym_L_DQUOTE] = ACTIONS(2915), - [anon_sym_u_DQUOTE] = ACTIONS(2915), - [anon_sym_U_DQUOTE] = ACTIONS(2915), - [anon_sym_u8_DQUOTE] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(2915), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [anon_sym_NULL] = ACTIONS(2913), - [anon_sym_nullptr] = ACTIONS(2913), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2913), - [anon_sym_decltype] = ACTIONS(2913), - [anon_sym_virtual] = ACTIONS(2913), - [anon_sym_alignas] = ACTIONS(2913), - [anon_sym_explicit] = ACTIONS(2913), - [anon_sym_typename] = ACTIONS(2913), - [anon_sym_template] = ACTIONS(2913), - [anon_sym_operator] = ACTIONS(2913), - [anon_sym_try] = ACTIONS(2913), - [anon_sym_delete] = ACTIONS(2913), - [anon_sym_throw] = ACTIONS(2913), - [anon_sym_namespace] = ACTIONS(2913), - [anon_sym_using] = ACTIONS(2913), - [anon_sym_static_assert] = ACTIONS(2913), - [anon_sym_concept] = ACTIONS(2913), - [anon_sym_co_return] = ACTIONS(2913), - [anon_sym_co_yield] = ACTIONS(2913), - [anon_sym_R_DQUOTE] = ACTIONS(2915), - [anon_sym_LR_DQUOTE] = ACTIONS(2915), - [anon_sym_uR_DQUOTE] = ACTIONS(2915), - [anon_sym_UR_DQUOTE] = ACTIONS(2915), - [anon_sym_u8R_DQUOTE] = ACTIONS(2915), - [anon_sym_co_await] = ACTIONS(2913), - [anon_sym_new] = ACTIONS(2913), - [anon_sym_requires] = ACTIONS(2913), - [sym_this] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, [684] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, [685] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), - }, - [686] = { - [sym_catch_clause] = STATE(539), - [aux_sym_constructor_try_statement_repeat1] = STATE(539), - [sym_identifier] = ACTIONS(2559), - [aux_sym_preproc_include_token1] = ACTIONS(2559), - [aux_sym_preproc_def_token1] = ACTIONS(2559), - [aux_sym_preproc_if_token1] = ACTIONS(2559), - [aux_sym_preproc_if_token2] = ACTIONS(2559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), - [sym_preproc_directive] = ACTIONS(2559), - [anon_sym_LPAREN2] = ACTIONS(2561), - [anon_sym_BANG] = ACTIONS(2561), - [anon_sym_TILDE] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2559), - [anon_sym_STAR] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2561), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2561), - [anon_sym___extension__] = ACTIONS(2559), - [anon_sym_typedef] = ACTIONS(2559), - [anon_sym_extern] = ACTIONS(2559), - [anon_sym___attribute__] = ACTIONS(2559), - [anon_sym_COLON_COLON] = ACTIONS(2561), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2559), - [anon_sym___based] = ACTIONS(2559), - [anon_sym___cdecl] = ACTIONS(2559), - [anon_sym___clrcall] = ACTIONS(2559), - [anon_sym___stdcall] = ACTIONS(2559), - [anon_sym___fastcall] = ACTIONS(2559), - [anon_sym___thiscall] = ACTIONS(2559), - [anon_sym___vectorcall] = ACTIONS(2559), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_signed] = ACTIONS(2559), - [anon_sym_unsigned] = ACTIONS(2559), - [anon_sym_long] = ACTIONS(2559), - [anon_sym_short] = ACTIONS(2559), - [anon_sym_LBRACK] = ACTIONS(2559), - [anon_sym_static] = ACTIONS(2559), - [anon_sym_register] = ACTIONS(2559), - [anon_sym_inline] = ACTIONS(2559), - [anon_sym___inline] = ACTIONS(2559), - [anon_sym___inline__] = ACTIONS(2559), - [anon_sym___forceinline] = ACTIONS(2559), - [anon_sym_thread_local] = ACTIONS(2559), - [anon_sym___thread] = ACTIONS(2559), - [anon_sym_const] = ACTIONS(2559), - [anon_sym_constexpr] = ACTIONS(2559), - [anon_sym_volatile] = ACTIONS(2559), - [anon_sym_restrict] = ACTIONS(2559), - [anon_sym___restrict__] = ACTIONS(2559), - [anon_sym__Atomic] = ACTIONS(2559), - [anon_sym__Noreturn] = ACTIONS(2559), - [anon_sym_noreturn] = ACTIONS(2559), - [anon_sym_mutable] = ACTIONS(2559), - [anon_sym_constinit] = ACTIONS(2559), - [anon_sym_consteval] = ACTIONS(2559), - [sym_primitive_type] = ACTIONS(2559), - [anon_sym_enum] = ACTIONS(2559), - [anon_sym_class] = ACTIONS(2559), - [anon_sym_struct] = ACTIONS(2559), - [anon_sym_union] = ACTIONS(2559), - [anon_sym_if] = ACTIONS(2559), - [anon_sym_switch] = ACTIONS(2559), - [anon_sym_case] = ACTIONS(2559), - [anon_sym_default] = ACTIONS(2559), - [anon_sym_while] = ACTIONS(2559), - [anon_sym_do] = ACTIONS(2559), - [anon_sym_for] = ACTIONS(2559), - [anon_sym_return] = ACTIONS(2559), - [anon_sym_break] = ACTIONS(2559), - [anon_sym_continue] = ACTIONS(2559), - [anon_sym_goto] = ACTIONS(2559), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_compl] = ACTIONS(2559), - [anon_sym_DASH_DASH] = ACTIONS(2561), - [anon_sym_PLUS_PLUS] = ACTIONS(2561), - [anon_sym_sizeof] = ACTIONS(2559), - [anon_sym___alignof__] = ACTIONS(2559), - [anon_sym___alignof] = ACTIONS(2559), - [anon_sym__alignof] = ACTIONS(2559), - [anon_sym_alignof] = ACTIONS(2559), - [anon_sym__Alignof] = ACTIONS(2559), - [anon_sym_offsetof] = ACTIONS(2559), - [anon_sym__Generic] = ACTIONS(2559), - [anon_sym_asm] = ACTIONS(2559), - [anon_sym___asm__] = ACTIONS(2559), - [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(2559), - [sym_false] = ACTIONS(2559), - [anon_sym_NULL] = ACTIONS(2559), - [anon_sym_nullptr] = ACTIONS(2559), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2559), - [anon_sym_decltype] = ACTIONS(2559), - [anon_sym_virtual] = ACTIONS(2559), - [anon_sym_alignas] = ACTIONS(2559), - [anon_sym_explicit] = ACTIONS(2559), - [anon_sym_typename] = ACTIONS(2559), - [anon_sym_template] = ACTIONS(2559), - [anon_sym_operator] = ACTIONS(2559), - [anon_sym_try] = ACTIONS(2559), - [anon_sym_delete] = ACTIONS(2559), - [anon_sym_throw] = ACTIONS(2559), - [anon_sym_namespace] = ACTIONS(2559), - [anon_sym_using] = ACTIONS(2559), - [anon_sym_static_assert] = ACTIONS(2559), - [anon_sym_concept] = ACTIONS(2559), - [anon_sym_co_return] = ACTIONS(2559), - [anon_sym_co_yield] = ACTIONS(2559), - [anon_sym_catch] = ACTIONS(3242), - [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(2559), - [anon_sym_new] = ACTIONS(2559), - [anon_sym_requires] = ACTIONS(2559), - [sym_this] = ACTIONS(2559), - }, - [687] = { - [sym_identifier] = ACTIONS(2885), - [aux_sym_preproc_include_token1] = ACTIONS(2885), - [aux_sym_preproc_def_token1] = ACTIONS(2885), - [aux_sym_preproc_if_token1] = ACTIONS(2885), - [aux_sym_preproc_if_token2] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2885), - [aux_sym_preproc_else_token1] = ACTIONS(2885), - [aux_sym_preproc_elif_token1] = ACTIONS(2885), - [sym_preproc_directive] = ACTIONS(2885), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym___extension__] = ACTIONS(2885), - [anon_sym_typedef] = ACTIONS(2885), - [anon_sym_extern] = ACTIONS(2885), - [anon_sym___attribute__] = ACTIONS(2885), - [anon_sym_COLON_COLON] = ACTIONS(2887), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2887), - [anon_sym___declspec] = ACTIONS(2885), - [anon_sym___based] = ACTIONS(2885), - [anon_sym___cdecl] = ACTIONS(2885), - [anon_sym___clrcall] = ACTIONS(2885), - [anon_sym___stdcall] = ACTIONS(2885), - [anon_sym___fastcall] = ACTIONS(2885), - [anon_sym___thiscall] = ACTIONS(2885), - [anon_sym___vectorcall] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_signed] = ACTIONS(2885), - [anon_sym_unsigned] = ACTIONS(2885), - [anon_sym_long] = ACTIONS(2885), - [anon_sym_short] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_register] = ACTIONS(2885), - [anon_sym_inline] = ACTIONS(2885), - [anon_sym___inline] = ACTIONS(2885), - [anon_sym___inline__] = ACTIONS(2885), - [anon_sym___forceinline] = ACTIONS(2885), - [anon_sym_thread_local] = ACTIONS(2885), - [anon_sym___thread] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_constexpr] = ACTIONS(2885), - [anon_sym_volatile] = ACTIONS(2885), - [anon_sym_restrict] = ACTIONS(2885), - [anon_sym___restrict__] = ACTIONS(2885), - [anon_sym__Atomic] = ACTIONS(2885), - [anon_sym__Noreturn] = ACTIONS(2885), - [anon_sym_noreturn] = ACTIONS(2885), - [anon_sym_mutable] = ACTIONS(2885), - [anon_sym_constinit] = ACTIONS(2885), - [anon_sym_consteval] = ACTIONS(2885), - [sym_primitive_type] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_union] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_else] = ACTIONS(2885), - [anon_sym_switch] = ACTIONS(2885), - [anon_sym_case] = ACTIONS(2885), - [anon_sym_default] = ACTIONS(2885), - [anon_sym_while] = ACTIONS(2885), - [anon_sym_do] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_goto] = ACTIONS(2885), - [anon_sym_not] = ACTIONS(2885), - [anon_sym_compl] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_sizeof] = ACTIONS(2885), - [anon_sym___alignof__] = ACTIONS(2885), - [anon_sym___alignof] = ACTIONS(2885), - [anon_sym__alignof] = ACTIONS(2885), - [anon_sym_alignof] = ACTIONS(2885), - [anon_sym__Alignof] = ACTIONS(2885), - [anon_sym_offsetof] = ACTIONS(2885), - [anon_sym__Generic] = ACTIONS(2885), - [anon_sym_asm] = ACTIONS(2885), - [anon_sym___asm__] = ACTIONS(2885), - [sym_number_literal] = ACTIONS(2887), - [anon_sym_L_SQUOTE] = ACTIONS(2887), - [anon_sym_u_SQUOTE] = ACTIONS(2887), - [anon_sym_U_SQUOTE] = ACTIONS(2887), - [anon_sym_u8_SQUOTE] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_L_DQUOTE] = ACTIONS(2887), - [anon_sym_u_DQUOTE] = ACTIONS(2887), - [anon_sym_U_DQUOTE] = ACTIONS(2887), - [anon_sym_u8_DQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [sym_true] = ACTIONS(2885), - [sym_false] = ACTIONS(2885), - [anon_sym_NULL] = ACTIONS(2885), - [anon_sym_nullptr] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2885), - [anon_sym_decltype] = ACTIONS(2885), - [anon_sym_virtual] = ACTIONS(2885), - [anon_sym_alignas] = ACTIONS(2885), - [anon_sym_explicit] = ACTIONS(2885), - [anon_sym_typename] = ACTIONS(2885), - [anon_sym_template] = ACTIONS(2885), - [anon_sym_operator] = ACTIONS(2885), - [anon_sym_try] = ACTIONS(2885), - [anon_sym_delete] = ACTIONS(2885), - [anon_sym_throw] = ACTIONS(2885), - [anon_sym_namespace] = ACTIONS(2885), - [anon_sym_using] = ACTIONS(2885), - [anon_sym_static_assert] = ACTIONS(2885), - [anon_sym_concept] = ACTIONS(2885), - [anon_sym_co_return] = ACTIONS(2885), - [anon_sym_co_yield] = ACTIONS(2885), - [anon_sym_R_DQUOTE] = ACTIONS(2887), - [anon_sym_LR_DQUOTE] = ACTIONS(2887), - [anon_sym_uR_DQUOTE] = ACTIONS(2887), - [anon_sym_UR_DQUOTE] = ACTIONS(2887), - [anon_sym_u8R_DQUOTE] = ACTIONS(2887), - [anon_sym_co_await] = ACTIONS(2885), - [anon_sym_new] = ACTIONS(2885), - [anon_sym_requires] = ACTIONS(2885), - [sym_this] = ACTIONS(2885), - }, - [688] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), + }, + [686] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), + }, + [687] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), + }, + [688] = { + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, [689] = { - [sym_preproc_def] = STATE(1130), - [sym_preproc_function_def] = STATE(1130), - [sym_preproc_call] = STATE(1130), - [sym_preproc_if_in_field_declaration_list] = STATE(1130), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1130), - [sym_preproc_else_in_field_declaration_list] = STATE(8939), - [sym_preproc_elif_in_field_declaration_list] = STATE(8939), - [sym_type_definition] = STATE(1130), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6371), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6947), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1130), - [sym_field_declaration] = STATE(1130), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2398), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1130), - [sym_operator_cast] = STATE(7504), - [sym_inline_method_definition] = STATE(1130), - [sym__constructor_specifiers] = STATE(2398), - [sym_operator_cast_definition] = STATE(1130), - [sym_operator_cast_declaration] = STATE(1130), - [sym_constructor_or_destructor_definition] = STATE(1130), - [sym_constructor_or_destructor_declaration] = STATE(1130), - [sym_friend_declaration] = STATE(1130), - [sym_access_specifier] = STATE(9393), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1130), - [sym_alias_declaration] = STATE(1130), - [sym_static_assert_declaration] = STATE(1130), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7504), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1130), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2398), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3462), - [aux_sym_preproc_if_token1] = ACTIONS(3464), - [aux_sym_preproc_if_token2] = ACTIONS(3500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3468), - [aux_sym_preproc_else_token1] = ACTIONS(2697), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3472), - [anon_sym_typedef] = ACTIONS(3474), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3476), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3478), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3480), - [anon_sym_static_assert] = ACTIONS(3482), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, [690] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [691] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [692] = { - [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), - [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_extern] = ACTIONS(3023), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3023), - [anon_sym_constinit] = ACTIONS(3023), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3023), - [anon_sym_alignas] = 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_using] = 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), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [693] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [694] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2880), + [aux_sym_preproc_include_token1] = ACTIONS(2880), + [aux_sym_preproc_def_token1] = ACTIONS(2880), + [aux_sym_preproc_if_token1] = ACTIONS(2880), + [aux_sym_preproc_if_token2] = ACTIONS(2880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2880), + [sym_preproc_directive] = ACTIONS(2880), + [anon_sym_LPAREN2] = ACTIONS(2882), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_SEMI] = ACTIONS(2882), + [anon_sym___extension__] = ACTIONS(2880), + [anon_sym_typedef] = ACTIONS(2880), + [anon_sym_extern] = ACTIONS(2880), + [anon_sym___attribute__] = ACTIONS(2880), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2882), + [anon_sym___declspec] = ACTIONS(2880), + [anon_sym___based] = ACTIONS(2880), + [anon_sym___cdecl] = ACTIONS(2880), + [anon_sym___clrcall] = ACTIONS(2880), + [anon_sym___stdcall] = ACTIONS(2880), + [anon_sym___fastcall] = ACTIONS(2880), + [anon_sym___thiscall] = ACTIONS(2880), + [anon_sym___vectorcall] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_signed] = ACTIONS(2880), + [anon_sym_unsigned] = ACTIONS(2880), + [anon_sym_long] = ACTIONS(2880), + [anon_sym_short] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_static] = ACTIONS(2880), + [anon_sym_register] = ACTIONS(2880), + [anon_sym_inline] = ACTIONS(2880), + [anon_sym___inline] = ACTIONS(2880), + [anon_sym___inline__] = ACTIONS(2880), + [anon_sym___forceinline] = ACTIONS(2880), + [anon_sym_thread_local] = ACTIONS(2880), + [anon_sym___thread] = ACTIONS(2880), + [anon_sym_const] = ACTIONS(2880), + [anon_sym_constexpr] = ACTIONS(2880), + [anon_sym_volatile] = ACTIONS(2880), + [anon_sym_restrict] = ACTIONS(2880), + [anon_sym___restrict__] = ACTIONS(2880), + [anon_sym__Atomic] = ACTIONS(2880), + [anon_sym__Noreturn] = ACTIONS(2880), + [anon_sym_noreturn] = ACTIONS(2880), + [anon_sym_mutable] = ACTIONS(2880), + [anon_sym_constinit] = ACTIONS(2880), + [anon_sym_consteval] = ACTIONS(2880), + [sym_primitive_type] = ACTIONS(2880), + [anon_sym_enum] = ACTIONS(2880), + [anon_sym_class] = ACTIONS(2880), + [anon_sym_struct] = ACTIONS(2880), + [anon_sym_union] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_else] = ACTIONS(2880), + [anon_sym_switch] = ACTIONS(2880), + [anon_sym_case] = ACTIONS(2880), + [anon_sym_default] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_break] = ACTIONS(2880), + [anon_sym_continue] = ACTIONS(2880), + [anon_sym_goto] = ACTIONS(2880), + [anon_sym_not] = ACTIONS(2880), + [anon_sym_compl] = ACTIONS(2880), + [anon_sym_DASH_DASH] = ACTIONS(2882), + [anon_sym_PLUS_PLUS] = ACTIONS(2882), + [anon_sym_sizeof] = ACTIONS(2880), + [anon_sym___alignof__] = ACTIONS(2880), + [anon_sym___alignof] = ACTIONS(2880), + [anon_sym__alignof] = ACTIONS(2880), + [anon_sym_alignof] = ACTIONS(2880), + [anon_sym__Alignof] = ACTIONS(2880), + [anon_sym_offsetof] = ACTIONS(2880), + [anon_sym__Generic] = ACTIONS(2880), + [anon_sym_asm] = ACTIONS(2880), + [anon_sym___asm__] = ACTIONS(2880), + [sym_number_literal] = ACTIONS(2882), + [anon_sym_L_SQUOTE] = ACTIONS(2882), + [anon_sym_u_SQUOTE] = ACTIONS(2882), + [anon_sym_U_SQUOTE] = ACTIONS(2882), + [anon_sym_u8_SQUOTE] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_L_DQUOTE] = ACTIONS(2882), + [anon_sym_u_DQUOTE] = ACTIONS(2882), + [anon_sym_U_DQUOTE] = ACTIONS(2882), + [anon_sym_u8_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE] = ACTIONS(2882), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [anon_sym_NULL] = ACTIONS(2880), + [anon_sym_nullptr] = ACTIONS(2880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2880), + [anon_sym_decltype] = ACTIONS(2880), + [anon_sym_virtual] = ACTIONS(2880), + [anon_sym_alignas] = ACTIONS(2880), + [anon_sym_explicit] = ACTIONS(2880), + [anon_sym_typename] = ACTIONS(2880), + [anon_sym_template] = ACTIONS(2880), + [anon_sym_operator] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_delete] = ACTIONS(2880), + [anon_sym_throw] = ACTIONS(2880), + [anon_sym_namespace] = ACTIONS(2880), + [anon_sym_using] = ACTIONS(2880), + [anon_sym_static_assert] = ACTIONS(2880), + [anon_sym_concept] = ACTIONS(2880), + [anon_sym_co_return] = ACTIONS(2880), + [anon_sym_co_yield] = ACTIONS(2880), + [anon_sym_R_DQUOTE] = ACTIONS(2882), + [anon_sym_LR_DQUOTE] = ACTIONS(2882), + [anon_sym_uR_DQUOTE] = ACTIONS(2882), + [anon_sym_UR_DQUOTE] = ACTIONS(2882), + [anon_sym_u8R_DQUOTE] = ACTIONS(2882), + [anon_sym_co_await] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_requires] = ACTIONS(2880), + [sym_this] = ACTIONS(2880), }, [695] = { - [sym_identifier] = ACTIONS(3103), - [aux_sym_preproc_include_token1] = ACTIONS(3103), - [aux_sym_preproc_def_token1] = ACTIONS(3103), - [aux_sym_preproc_if_token1] = ACTIONS(3103), - [aux_sym_preproc_if_token2] = ACTIONS(3103), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), - [aux_sym_preproc_else_token1] = ACTIONS(3103), - [aux_sym_preproc_elif_token1] = ACTIONS(3103), - [sym_preproc_directive] = ACTIONS(3103), - [anon_sym_LPAREN2] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_AMP_AMP] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_SEMI] = ACTIONS(3105), - [anon_sym___extension__] = ACTIONS(3103), - [anon_sym_typedef] = ACTIONS(3103), - [anon_sym_extern] = ACTIONS(3103), - [anon_sym___attribute__] = ACTIONS(3103), - [anon_sym_COLON_COLON] = ACTIONS(3105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), - [anon_sym___declspec] = ACTIONS(3103), - [anon_sym___based] = ACTIONS(3103), - [anon_sym___cdecl] = ACTIONS(3103), - [anon_sym___clrcall] = ACTIONS(3103), - [anon_sym___stdcall] = ACTIONS(3103), - [anon_sym___fastcall] = ACTIONS(3103), - [anon_sym___thiscall] = ACTIONS(3103), - [anon_sym___vectorcall] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_signed] = ACTIONS(3103), - [anon_sym_unsigned] = ACTIONS(3103), - [anon_sym_long] = ACTIONS(3103), - [anon_sym_short] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_register] = ACTIONS(3103), - [anon_sym_inline] = ACTIONS(3103), - [anon_sym___inline] = ACTIONS(3103), - [anon_sym___inline__] = ACTIONS(3103), - [anon_sym___forceinline] = ACTIONS(3103), - [anon_sym_thread_local] = ACTIONS(3103), - [anon_sym___thread] = ACTIONS(3103), - [anon_sym_const] = ACTIONS(3103), - [anon_sym_constexpr] = ACTIONS(3103), - [anon_sym_volatile] = ACTIONS(3103), - [anon_sym_restrict] = ACTIONS(3103), - [anon_sym___restrict__] = ACTIONS(3103), - [anon_sym__Atomic] = ACTIONS(3103), - [anon_sym__Noreturn] = ACTIONS(3103), - [anon_sym_noreturn] = ACTIONS(3103), - [anon_sym_mutable] = ACTIONS(3103), - [anon_sym_constinit] = ACTIONS(3103), - [anon_sym_consteval] = ACTIONS(3103), - [sym_primitive_type] = ACTIONS(3103), - [anon_sym_enum] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_union] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3103), - [anon_sym_else] = ACTIONS(3103), - [anon_sym_switch] = ACTIONS(3103), - [anon_sym_case] = ACTIONS(3103), - [anon_sym_default] = ACTIONS(3103), - [anon_sym_while] = ACTIONS(3103), - [anon_sym_do] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3103), - [anon_sym_return] = ACTIONS(3103), - [anon_sym_break] = ACTIONS(3103), - [anon_sym_continue] = ACTIONS(3103), - [anon_sym_goto] = ACTIONS(3103), - [anon_sym_not] = ACTIONS(3103), - [anon_sym_compl] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3105), - [anon_sym_sizeof] = ACTIONS(3103), - [anon_sym___alignof__] = ACTIONS(3103), - [anon_sym___alignof] = ACTIONS(3103), - [anon_sym__alignof] = ACTIONS(3103), - [anon_sym_alignof] = ACTIONS(3103), - [anon_sym__Alignof] = ACTIONS(3103), - [anon_sym_offsetof] = ACTIONS(3103), - [anon_sym__Generic] = ACTIONS(3103), - [anon_sym_asm] = ACTIONS(3103), - [anon_sym___asm__] = ACTIONS(3103), - [sym_number_literal] = ACTIONS(3105), - [anon_sym_L_SQUOTE] = ACTIONS(3105), - [anon_sym_u_SQUOTE] = ACTIONS(3105), - [anon_sym_U_SQUOTE] = ACTIONS(3105), - [anon_sym_u8_SQUOTE] = ACTIONS(3105), - [anon_sym_SQUOTE] = ACTIONS(3105), - [anon_sym_L_DQUOTE] = ACTIONS(3105), - [anon_sym_u_DQUOTE] = ACTIONS(3105), - [anon_sym_U_DQUOTE] = ACTIONS(3105), - [anon_sym_u8_DQUOTE] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym_true] = ACTIONS(3103), - [sym_false] = ACTIONS(3103), - [anon_sym_NULL] = ACTIONS(3103), - [anon_sym_nullptr] = ACTIONS(3103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3103), - [anon_sym_decltype] = ACTIONS(3103), - [anon_sym_virtual] = ACTIONS(3103), - [anon_sym_alignas] = ACTIONS(3103), - [anon_sym_explicit] = ACTIONS(3103), - [anon_sym_typename] = ACTIONS(3103), - [anon_sym_template] = ACTIONS(3103), - [anon_sym_operator] = ACTIONS(3103), - [anon_sym_try] = ACTIONS(3103), - [anon_sym_delete] = ACTIONS(3103), - [anon_sym_throw] = ACTIONS(3103), - [anon_sym_namespace] = ACTIONS(3103), - [anon_sym_using] = ACTIONS(3103), - [anon_sym_static_assert] = ACTIONS(3103), - [anon_sym_concept] = ACTIONS(3103), - [anon_sym_co_return] = ACTIONS(3103), - [anon_sym_co_yield] = ACTIONS(3103), - [anon_sym_R_DQUOTE] = ACTIONS(3105), - [anon_sym_LR_DQUOTE] = ACTIONS(3105), - [anon_sym_uR_DQUOTE] = ACTIONS(3105), - [anon_sym_UR_DQUOTE] = ACTIONS(3105), - [anon_sym_u8R_DQUOTE] = ACTIONS(3105), - [anon_sym_co_await] = ACTIONS(3103), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_requires] = ACTIONS(3103), - [sym_this] = ACTIONS(3103), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [696] = { - [sym_identifier] = ACTIONS(2945), - [aux_sym_preproc_include_token1] = ACTIONS(2945), - [aux_sym_preproc_def_token1] = ACTIONS(2945), - [aux_sym_preproc_if_token1] = ACTIONS(2945), - [aux_sym_preproc_if_token2] = ACTIONS(2945), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2945), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2945), - [aux_sym_preproc_else_token1] = ACTIONS(2945), - [aux_sym_preproc_elif_token1] = ACTIONS(2945), - [sym_preproc_directive] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2945), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2945), - [anon_sym_SEMI] = ACTIONS(2947), - [anon_sym___extension__] = ACTIONS(2945), - [anon_sym_typedef] = ACTIONS(2945), - [anon_sym_extern] = ACTIONS(2945), - [anon_sym___attribute__] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2947), - [anon_sym___declspec] = ACTIONS(2945), - [anon_sym___based] = ACTIONS(2945), - [anon_sym___cdecl] = ACTIONS(2945), - [anon_sym___clrcall] = ACTIONS(2945), - [anon_sym___stdcall] = ACTIONS(2945), - [anon_sym___fastcall] = ACTIONS(2945), - [anon_sym___thiscall] = ACTIONS(2945), - [anon_sym___vectorcall] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_signed] = ACTIONS(2945), - [anon_sym_unsigned] = ACTIONS(2945), - [anon_sym_long] = ACTIONS(2945), - [anon_sym_short] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_static] = ACTIONS(2945), - [anon_sym_register] = ACTIONS(2945), - [anon_sym_inline] = ACTIONS(2945), - [anon_sym___inline] = ACTIONS(2945), - [anon_sym___inline__] = ACTIONS(2945), - [anon_sym___forceinline] = ACTIONS(2945), - [anon_sym_thread_local] = ACTIONS(2945), - [anon_sym___thread] = ACTIONS(2945), - [anon_sym_const] = ACTIONS(2945), - [anon_sym_constexpr] = ACTIONS(2945), - [anon_sym_volatile] = ACTIONS(2945), - [anon_sym_restrict] = ACTIONS(2945), - [anon_sym___restrict__] = ACTIONS(2945), - [anon_sym__Atomic] = ACTIONS(2945), - [anon_sym__Noreturn] = ACTIONS(2945), - [anon_sym_noreturn] = ACTIONS(2945), - [anon_sym_mutable] = ACTIONS(2945), - [anon_sym_constinit] = ACTIONS(2945), - [anon_sym_consteval] = ACTIONS(2945), - [sym_primitive_type] = ACTIONS(2945), - [anon_sym_enum] = ACTIONS(2945), - [anon_sym_class] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2945), - [anon_sym_union] = ACTIONS(2945), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(2945), - [anon_sym_switch] = ACTIONS(2945), - [anon_sym_case] = ACTIONS(2945), - [anon_sym_default] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_break] = ACTIONS(2945), - [anon_sym_continue] = ACTIONS(2945), - [anon_sym_goto] = ACTIONS(2945), - [anon_sym_not] = ACTIONS(2945), - [anon_sym_compl] = ACTIONS(2945), - [anon_sym_DASH_DASH] = ACTIONS(2947), - [anon_sym_PLUS_PLUS] = ACTIONS(2947), - [anon_sym_sizeof] = ACTIONS(2945), - [anon_sym___alignof__] = ACTIONS(2945), - [anon_sym___alignof] = ACTIONS(2945), - [anon_sym__alignof] = ACTIONS(2945), - [anon_sym_alignof] = ACTIONS(2945), - [anon_sym__Alignof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2945), - [anon_sym__Generic] = ACTIONS(2945), - [anon_sym_asm] = ACTIONS(2945), - [anon_sym___asm__] = ACTIONS(2945), - [sym_number_literal] = ACTIONS(2947), - [anon_sym_L_SQUOTE] = ACTIONS(2947), - [anon_sym_u_SQUOTE] = ACTIONS(2947), - [anon_sym_U_SQUOTE] = ACTIONS(2947), - [anon_sym_u8_SQUOTE] = ACTIONS(2947), - [anon_sym_SQUOTE] = ACTIONS(2947), - [anon_sym_L_DQUOTE] = ACTIONS(2947), - [anon_sym_u_DQUOTE] = ACTIONS(2947), - [anon_sym_U_DQUOTE] = ACTIONS(2947), - [anon_sym_u8_DQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(2947), - [sym_true] = ACTIONS(2945), - [sym_false] = ACTIONS(2945), - [anon_sym_NULL] = ACTIONS(2945), - [anon_sym_nullptr] = ACTIONS(2945), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2945), - [anon_sym_decltype] = ACTIONS(2945), - [anon_sym_virtual] = ACTIONS(2945), - [anon_sym_alignas] = ACTIONS(2945), - [anon_sym_explicit] = ACTIONS(2945), - [anon_sym_typename] = ACTIONS(2945), - [anon_sym_template] = ACTIONS(2945), - [anon_sym_operator] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_delete] = ACTIONS(2945), - [anon_sym_throw] = ACTIONS(2945), - [anon_sym_namespace] = ACTIONS(2945), - [anon_sym_using] = ACTIONS(2945), - [anon_sym_static_assert] = ACTIONS(2945), - [anon_sym_concept] = ACTIONS(2945), - [anon_sym_co_return] = ACTIONS(2945), - [anon_sym_co_yield] = ACTIONS(2945), - [anon_sym_R_DQUOTE] = ACTIONS(2947), - [anon_sym_LR_DQUOTE] = ACTIONS(2947), - [anon_sym_uR_DQUOTE] = ACTIONS(2947), - [anon_sym_UR_DQUOTE] = ACTIONS(2947), - [anon_sym_u8R_DQUOTE] = ACTIONS(2947), - [anon_sym_co_await] = ACTIONS(2945), - [anon_sym_new] = ACTIONS(2945), - [anon_sym_requires] = ACTIONS(2945), - [sym_this] = ACTIONS(2945), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [697] = { - [sym_identifier] = ACTIONS(3057), - [aux_sym_preproc_include_token1] = ACTIONS(3057), - [aux_sym_preproc_def_token1] = ACTIONS(3057), - [aux_sym_preproc_if_token1] = ACTIONS(3057), - [aux_sym_preproc_if_token2] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3057), - [aux_sym_preproc_else_token1] = ACTIONS(3057), - [aux_sym_preproc_elif_token1] = ACTIONS(3057), - [sym_preproc_directive] = ACTIONS(3057), - [anon_sym_LPAREN2] = ACTIONS(3059), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_SEMI] = ACTIONS(3059), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3057), - [anon_sym_extern] = ACTIONS(3057), - [anon_sym___attribute__] = ACTIONS(3057), - [anon_sym_COLON_COLON] = ACTIONS(3059), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3059), - [anon_sym___declspec] = ACTIONS(3057), - [anon_sym___based] = ACTIONS(3057), - [anon_sym___cdecl] = ACTIONS(3057), - [anon_sym___clrcall] = ACTIONS(3057), - [anon_sym___stdcall] = ACTIONS(3057), - [anon_sym___fastcall] = ACTIONS(3057), - [anon_sym___thiscall] = ACTIONS(3057), - [anon_sym___vectorcall] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_signed] = ACTIONS(3057), - [anon_sym_unsigned] = ACTIONS(3057), - [anon_sym_long] = ACTIONS(3057), - [anon_sym_short] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_register] = ACTIONS(3057), - [anon_sym_inline] = ACTIONS(3057), - [anon_sym___inline] = ACTIONS(3057), - [anon_sym___inline__] = ACTIONS(3057), - [anon_sym___forceinline] = ACTIONS(3057), - [anon_sym_thread_local] = ACTIONS(3057), - [anon_sym___thread] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_constexpr] = ACTIONS(3057), - [anon_sym_volatile] = ACTIONS(3057), - [anon_sym_restrict] = ACTIONS(3057), - [anon_sym___restrict__] = ACTIONS(3057), - [anon_sym__Atomic] = ACTIONS(3057), - [anon_sym__Noreturn] = ACTIONS(3057), - [anon_sym_noreturn] = ACTIONS(3057), - [anon_sym_mutable] = ACTIONS(3057), - [anon_sym_constinit] = ACTIONS(3057), - [anon_sym_consteval] = ACTIONS(3057), - [sym_primitive_type] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_class] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_else] = ACTIONS(3057), - [anon_sym_switch] = ACTIONS(3057), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3057), - [anon_sym_while] = ACTIONS(3057), - [anon_sym_do] = ACTIONS(3057), - [anon_sym_for] = ACTIONS(3057), - [anon_sym_return] = ACTIONS(3057), - [anon_sym_break] = ACTIONS(3057), - [anon_sym_continue] = ACTIONS(3057), - [anon_sym_goto] = ACTIONS(3057), - [anon_sym_not] = ACTIONS(3057), - [anon_sym_compl] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_sizeof] = ACTIONS(3057), - [anon_sym___alignof__] = ACTIONS(3057), - [anon_sym___alignof] = ACTIONS(3057), - [anon_sym__alignof] = ACTIONS(3057), - [anon_sym_alignof] = ACTIONS(3057), - [anon_sym__Alignof] = ACTIONS(3057), - [anon_sym_offsetof] = ACTIONS(3057), - [anon_sym__Generic] = ACTIONS(3057), - [anon_sym_asm] = ACTIONS(3057), - [anon_sym___asm__] = ACTIONS(3057), - [sym_number_literal] = ACTIONS(3059), - [anon_sym_L_SQUOTE] = ACTIONS(3059), - [anon_sym_u_SQUOTE] = ACTIONS(3059), - [anon_sym_U_SQUOTE] = ACTIONS(3059), - [anon_sym_u8_SQUOTE] = ACTIONS(3059), - [anon_sym_SQUOTE] = ACTIONS(3059), - [anon_sym_L_DQUOTE] = ACTIONS(3059), - [anon_sym_u_DQUOTE] = ACTIONS(3059), - [anon_sym_U_DQUOTE] = ACTIONS(3059), - [anon_sym_u8_DQUOTE] = ACTIONS(3059), - [anon_sym_DQUOTE] = ACTIONS(3059), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [anon_sym_NULL] = ACTIONS(3057), - [anon_sym_nullptr] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3057), - [anon_sym_decltype] = ACTIONS(3057), - [anon_sym_virtual] = ACTIONS(3057), - [anon_sym_alignas] = ACTIONS(3057), - [anon_sym_explicit] = ACTIONS(3057), - [anon_sym_typename] = ACTIONS(3057), - [anon_sym_template] = ACTIONS(3057), - [anon_sym_operator] = ACTIONS(3057), - [anon_sym_try] = ACTIONS(3057), - [anon_sym_delete] = ACTIONS(3057), - [anon_sym_throw] = ACTIONS(3057), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_using] = ACTIONS(3057), - [anon_sym_static_assert] = ACTIONS(3057), - [anon_sym_concept] = ACTIONS(3057), - [anon_sym_co_return] = ACTIONS(3057), - [anon_sym_co_yield] = ACTIONS(3057), - [anon_sym_R_DQUOTE] = ACTIONS(3059), - [anon_sym_LR_DQUOTE] = ACTIONS(3059), - [anon_sym_uR_DQUOTE] = ACTIONS(3059), - [anon_sym_UR_DQUOTE] = ACTIONS(3059), - [anon_sym_u8R_DQUOTE] = ACTIONS(3059), - [anon_sym_co_await] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(3057), - [sym_this] = ACTIONS(3057), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [698] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [699] = { - [sym_identifier] = ACTIONS(2891), - [aux_sym_preproc_include_token1] = ACTIONS(2891), - [aux_sym_preproc_def_token1] = ACTIONS(2891), - [aux_sym_preproc_if_token1] = ACTIONS(2891), - [aux_sym_preproc_if_token2] = ACTIONS(2891), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2891), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2891), - [aux_sym_preproc_else_token1] = ACTIONS(2891), - [aux_sym_preproc_elif_token1] = ACTIONS(2891), - [sym_preproc_directive] = ACTIONS(2891), - [anon_sym_LPAREN2] = ACTIONS(2893), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_TILDE] = ACTIONS(2893), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2893), - [anon_sym_AMP_AMP] = ACTIONS(2893), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(2893), - [anon_sym___extension__] = ACTIONS(2891), - [anon_sym_typedef] = ACTIONS(2891), - [anon_sym_extern] = ACTIONS(2891), - [anon_sym___attribute__] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2893), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2893), - [anon_sym___declspec] = ACTIONS(2891), - [anon_sym___based] = ACTIONS(2891), - [anon_sym___cdecl] = ACTIONS(2891), - [anon_sym___clrcall] = ACTIONS(2891), - [anon_sym___stdcall] = ACTIONS(2891), - [anon_sym___fastcall] = ACTIONS(2891), - [anon_sym___thiscall] = ACTIONS(2891), - [anon_sym___vectorcall] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2893), - [anon_sym_signed] = ACTIONS(2891), - [anon_sym_unsigned] = ACTIONS(2891), - [anon_sym_long] = ACTIONS(2891), - [anon_sym_short] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2891), - [anon_sym_static] = ACTIONS(2891), - [anon_sym_register] = ACTIONS(2891), - [anon_sym_inline] = ACTIONS(2891), - [anon_sym___inline] = ACTIONS(2891), - [anon_sym___inline__] = ACTIONS(2891), - [anon_sym___forceinline] = ACTIONS(2891), - [anon_sym_thread_local] = ACTIONS(2891), - [anon_sym___thread] = ACTIONS(2891), - [anon_sym_const] = ACTIONS(2891), - [anon_sym_constexpr] = ACTIONS(2891), - [anon_sym_volatile] = ACTIONS(2891), - [anon_sym_restrict] = ACTIONS(2891), - [anon_sym___restrict__] = ACTIONS(2891), - [anon_sym__Atomic] = ACTIONS(2891), - [anon_sym__Noreturn] = ACTIONS(2891), - [anon_sym_noreturn] = ACTIONS(2891), - [anon_sym_mutable] = ACTIONS(2891), - [anon_sym_constinit] = ACTIONS(2891), - [anon_sym_consteval] = ACTIONS(2891), - [sym_primitive_type] = ACTIONS(2891), - [anon_sym_enum] = ACTIONS(2891), - [anon_sym_class] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_union] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_else] = ACTIONS(2891), - [anon_sym_switch] = ACTIONS(2891), - [anon_sym_case] = ACTIONS(2891), - [anon_sym_default] = ACTIONS(2891), - [anon_sym_while] = ACTIONS(2891), - [anon_sym_do] = ACTIONS(2891), - [anon_sym_for] = ACTIONS(2891), - [anon_sym_return] = ACTIONS(2891), - [anon_sym_break] = ACTIONS(2891), - [anon_sym_continue] = ACTIONS(2891), - [anon_sym_goto] = ACTIONS(2891), - [anon_sym_not] = ACTIONS(2891), - [anon_sym_compl] = ACTIONS(2891), - [anon_sym_DASH_DASH] = ACTIONS(2893), - [anon_sym_PLUS_PLUS] = ACTIONS(2893), - [anon_sym_sizeof] = ACTIONS(2891), - [anon_sym___alignof__] = ACTIONS(2891), - [anon_sym___alignof] = ACTIONS(2891), - [anon_sym__alignof] = ACTIONS(2891), - [anon_sym_alignof] = ACTIONS(2891), - [anon_sym__Alignof] = ACTIONS(2891), - [anon_sym_offsetof] = ACTIONS(2891), - [anon_sym__Generic] = ACTIONS(2891), - [anon_sym_asm] = ACTIONS(2891), - [anon_sym___asm__] = ACTIONS(2891), - [sym_number_literal] = ACTIONS(2893), - [anon_sym_L_SQUOTE] = ACTIONS(2893), - [anon_sym_u_SQUOTE] = ACTIONS(2893), - [anon_sym_U_SQUOTE] = ACTIONS(2893), - [anon_sym_u8_SQUOTE] = ACTIONS(2893), - [anon_sym_SQUOTE] = ACTIONS(2893), - [anon_sym_L_DQUOTE] = ACTIONS(2893), - [anon_sym_u_DQUOTE] = ACTIONS(2893), - [anon_sym_U_DQUOTE] = ACTIONS(2893), - [anon_sym_u8_DQUOTE] = ACTIONS(2893), - [anon_sym_DQUOTE] = ACTIONS(2893), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [anon_sym_NULL] = ACTIONS(2891), - [anon_sym_nullptr] = ACTIONS(2891), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2891), - [anon_sym_decltype] = ACTIONS(2891), - [anon_sym_virtual] = ACTIONS(2891), - [anon_sym_alignas] = ACTIONS(2891), - [anon_sym_explicit] = ACTIONS(2891), - [anon_sym_typename] = ACTIONS(2891), - [anon_sym_template] = ACTIONS(2891), - [anon_sym_operator] = ACTIONS(2891), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_delete] = ACTIONS(2891), - [anon_sym_throw] = ACTIONS(2891), - [anon_sym_namespace] = ACTIONS(2891), - [anon_sym_using] = ACTIONS(2891), - [anon_sym_static_assert] = ACTIONS(2891), - [anon_sym_concept] = ACTIONS(2891), - [anon_sym_co_return] = ACTIONS(2891), - [anon_sym_co_yield] = ACTIONS(2891), - [anon_sym_R_DQUOTE] = ACTIONS(2893), - [anon_sym_LR_DQUOTE] = ACTIONS(2893), - [anon_sym_uR_DQUOTE] = ACTIONS(2893), - [anon_sym_UR_DQUOTE] = ACTIONS(2893), - [anon_sym_u8R_DQUOTE] = ACTIONS(2893), - [anon_sym_co_await] = ACTIONS(2891), - [anon_sym_new] = ACTIONS(2891), - [anon_sym_requires] = ACTIONS(2891), - [sym_this] = ACTIONS(2891), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [700] = { - [sym_identifier] = ACTIONS(3035), - [aux_sym_preproc_include_token1] = ACTIONS(3035), - [aux_sym_preproc_def_token1] = ACTIONS(3035), - [aux_sym_preproc_if_token1] = ACTIONS(3035), - [aux_sym_preproc_if_token2] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), - [aux_sym_preproc_else_token1] = ACTIONS(3035), - [aux_sym_preproc_elif_token1] = ACTIONS(3035), - [sym_preproc_directive] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym___extension__] = ACTIONS(3035), - [anon_sym_typedef] = ACTIONS(3035), - [anon_sym_extern] = ACTIONS(3035), - [anon_sym___attribute__] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3037), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), - [anon_sym___declspec] = ACTIONS(3035), - [anon_sym___based] = ACTIONS(3035), - [anon_sym___cdecl] = ACTIONS(3035), - [anon_sym___clrcall] = ACTIONS(3035), - [anon_sym___stdcall] = ACTIONS(3035), - [anon_sym___fastcall] = ACTIONS(3035), - [anon_sym___thiscall] = ACTIONS(3035), - [anon_sym___vectorcall] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_signed] = ACTIONS(3035), - [anon_sym_unsigned] = ACTIONS(3035), - [anon_sym_long] = ACTIONS(3035), - [anon_sym_short] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_static] = ACTIONS(3035), - [anon_sym_register] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym___inline] = ACTIONS(3035), - [anon_sym___inline__] = ACTIONS(3035), - [anon_sym___forceinline] = ACTIONS(3035), - [anon_sym_thread_local] = ACTIONS(3035), - [anon_sym___thread] = ACTIONS(3035), - [anon_sym_const] = ACTIONS(3035), - [anon_sym_constexpr] = ACTIONS(3035), - [anon_sym_volatile] = ACTIONS(3035), - [anon_sym_restrict] = ACTIONS(3035), - [anon_sym___restrict__] = ACTIONS(3035), - [anon_sym__Atomic] = ACTIONS(3035), - [anon_sym__Noreturn] = ACTIONS(3035), - [anon_sym_noreturn] = ACTIONS(3035), - [anon_sym_mutable] = ACTIONS(3035), - [anon_sym_constinit] = ACTIONS(3035), - [anon_sym_consteval] = ACTIONS(3035), - [sym_primitive_type] = ACTIONS(3035), - [anon_sym_enum] = ACTIONS(3035), - [anon_sym_class] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_union] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_switch] = ACTIONS(3035), - [anon_sym_case] = ACTIONS(3035), - [anon_sym_default] = ACTIONS(3035), - [anon_sym_while] = ACTIONS(3035), - [anon_sym_do] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_goto] = ACTIONS(3035), - [anon_sym_not] = ACTIONS(3035), - [anon_sym_compl] = ACTIONS(3035), - [anon_sym_DASH_DASH] = ACTIONS(3037), - [anon_sym_PLUS_PLUS] = ACTIONS(3037), - [anon_sym_sizeof] = ACTIONS(3035), - [anon_sym___alignof__] = ACTIONS(3035), - [anon_sym___alignof] = ACTIONS(3035), - [anon_sym__alignof] = ACTIONS(3035), - [anon_sym_alignof] = ACTIONS(3035), - [anon_sym__Alignof] = ACTIONS(3035), - [anon_sym_offsetof] = ACTIONS(3035), - [anon_sym__Generic] = ACTIONS(3035), - [anon_sym_asm] = ACTIONS(3035), - [anon_sym___asm__] = ACTIONS(3035), - [sym_number_literal] = ACTIONS(3037), - [anon_sym_L_SQUOTE] = ACTIONS(3037), - [anon_sym_u_SQUOTE] = ACTIONS(3037), - [anon_sym_U_SQUOTE] = ACTIONS(3037), - [anon_sym_u8_SQUOTE] = ACTIONS(3037), - [anon_sym_SQUOTE] = ACTIONS(3037), - [anon_sym_L_DQUOTE] = ACTIONS(3037), - [anon_sym_u_DQUOTE] = ACTIONS(3037), - [anon_sym_U_DQUOTE] = ACTIONS(3037), - [anon_sym_u8_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [sym_true] = ACTIONS(3035), - [sym_false] = ACTIONS(3035), - [anon_sym_NULL] = ACTIONS(3035), - [anon_sym_nullptr] = ACTIONS(3035), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3035), - [anon_sym_decltype] = ACTIONS(3035), - [anon_sym_virtual] = ACTIONS(3035), - [anon_sym_alignas] = ACTIONS(3035), - [anon_sym_explicit] = ACTIONS(3035), - [anon_sym_typename] = ACTIONS(3035), - [anon_sym_template] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_try] = ACTIONS(3035), - [anon_sym_delete] = ACTIONS(3035), - [anon_sym_throw] = ACTIONS(3035), - [anon_sym_namespace] = ACTIONS(3035), - [anon_sym_using] = ACTIONS(3035), - [anon_sym_static_assert] = ACTIONS(3035), - [anon_sym_concept] = ACTIONS(3035), - [anon_sym_co_return] = ACTIONS(3035), - [anon_sym_co_yield] = ACTIONS(3035), - [anon_sym_R_DQUOTE] = ACTIONS(3037), - [anon_sym_LR_DQUOTE] = ACTIONS(3037), - [anon_sym_uR_DQUOTE] = ACTIONS(3037), - [anon_sym_UR_DQUOTE] = ACTIONS(3037), - [anon_sym_u8R_DQUOTE] = ACTIONS(3037), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(3035), - [sym_this] = ACTIONS(3035), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [701] = { - [sym_identifier] = ACTIONS(2897), - [aux_sym_preproc_include_token1] = ACTIONS(2897), - [aux_sym_preproc_def_token1] = ACTIONS(2897), - [aux_sym_preproc_if_token1] = ACTIONS(2897), - [aux_sym_preproc_if_token2] = ACTIONS(2897), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2897), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2897), - [aux_sym_preproc_else_token1] = ACTIONS(2897), - [aux_sym_preproc_elif_token1] = ACTIONS(2897), - [sym_preproc_directive] = ACTIONS(2897), - [anon_sym_LPAREN2] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym___extension__] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2897), - [anon_sym_extern] = ACTIONS(2897), - [anon_sym___attribute__] = ACTIONS(2897), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2899), - [anon_sym___declspec] = ACTIONS(2897), - [anon_sym___based] = ACTIONS(2897), - [anon_sym___cdecl] = ACTIONS(2897), - [anon_sym___clrcall] = ACTIONS(2897), - [anon_sym___stdcall] = ACTIONS(2897), - [anon_sym___fastcall] = ACTIONS(2897), - [anon_sym___thiscall] = ACTIONS(2897), - [anon_sym___vectorcall] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_signed] = ACTIONS(2897), - [anon_sym_unsigned] = ACTIONS(2897), - [anon_sym_long] = ACTIONS(2897), - [anon_sym_short] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_register] = ACTIONS(2897), - [anon_sym_inline] = ACTIONS(2897), - [anon_sym___inline] = ACTIONS(2897), - [anon_sym___inline__] = ACTIONS(2897), - [anon_sym___forceinline] = ACTIONS(2897), - [anon_sym_thread_local] = ACTIONS(2897), - [anon_sym___thread] = ACTIONS(2897), - [anon_sym_const] = ACTIONS(2897), - [anon_sym_constexpr] = ACTIONS(2897), - [anon_sym_volatile] = ACTIONS(2897), - [anon_sym_restrict] = ACTIONS(2897), - [anon_sym___restrict__] = ACTIONS(2897), - [anon_sym__Atomic] = ACTIONS(2897), - [anon_sym__Noreturn] = ACTIONS(2897), - [anon_sym_noreturn] = ACTIONS(2897), - [anon_sym_mutable] = ACTIONS(2897), - [anon_sym_constinit] = ACTIONS(2897), - [anon_sym_consteval] = ACTIONS(2897), - [sym_primitive_type] = ACTIONS(2897), - [anon_sym_enum] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2897), - [anon_sym_union] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2897), - [anon_sym_else] = ACTIONS(2897), - [anon_sym_switch] = ACTIONS(2897), - [anon_sym_case] = ACTIONS(2897), - [anon_sym_default] = ACTIONS(2897), - [anon_sym_while] = ACTIONS(2897), - [anon_sym_do] = ACTIONS(2897), - [anon_sym_for] = ACTIONS(2897), - [anon_sym_return] = ACTIONS(2897), - [anon_sym_break] = ACTIONS(2897), - [anon_sym_continue] = ACTIONS(2897), - [anon_sym_goto] = ACTIONS(2897), - [anon_sym_not] = ACTIONS(2897), - [anon_sym_compl] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_sizeof] = ACTIONS(2897), - [anon_sym___alignof__] = ACTIONS(2897), - [anon_sym___alignof] = ACTIONS(2897), - [anon_sym__alignof] = ACTIONS(2897), - [anon_sym_alignof] = ACTIONS(2897), - [anon_sym__Alignof] = ACTIONS(2897), - [anon_sym_offsetof] = ACTIONS(2897), - [anon_sym__Generic] = ACTIONS(2897), - [anon_sym_asm] = ACTIONS(2897), - [anon_sym___asm__] = ACTIONS(2897), - [sym_number_literal] = ACTIONS(2899), - [anon_sym_L_SQUOTE] = ACTIONS(2899), - [anon_sym_u_SQUOTE] = ACTIONS(2899), - [anon_sym_U_SQUOTE] = ACTIONS(2899), - [anon_sym_u8_SQUOTE] = ACTIONS(2899), - [anon_sym_SQUOTE] = ACTIONS(2899), - [anon_sym_L_DQUOTE] = ACTIONS(2899), - [anon_sym_u_DQUOTE] = ACTIONS(2899), - [anon_sym_U_DQUOTE] = ACTIONS(2899), - [anon_sym_u8_DQUOTE] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [sym_true] = ACTIONS(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2897), - [anon_sym_nullptr] = ACTIONS(2897), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2897), - [anon_sym_decltype] = ACTIONS(2897), - [anon_sym_virtual] = ACTIONS(2897), - [anon_sym_alignas] = ACTIONS(2897), - [anon_sym_explicit] = ACTIONS(2897), - [anon_sym_typename] = ACTIONS(2897), - [anon_sym_template] = ACTIONS(2897), - [anon_sym_operator] = ACTIONS(2897), - [anon_sym_try] = ACTIONS(2897), - [anon_sym_delete] = ACTIONS(2897), - [anon_sym_throw] = ACTIONS(2897), - [anon_sym_namespace] = ACTIONS(2897), - [anon_sym_using] = ACTIONS(2897), - [anon_sym_static_assert] = ACTIONS(2897), - [anon_sym_concept] = ACTIONS(2897), - [anon_sym_co_return] = ACTIONS(2897), - [anon_sym_co_yield] = ACTIONS(2897), - [anon_sym_R_DQUOTE] = ACTIONS(2899), - [anon_sym_LR_DQUOTE] = ACTIONS(2899), - [anon_sym_uR_DQUOTE] = ACTIONS(2899), - [anon_sym_UR_DQUOTE] = ACTIONS(2899), - [anon_sym_u8R_DQUOTE] = ACTIONS(2899), - [anon_sym_co_await] = ACTIONS(2897), - [anon_sym_new] = ACTIONS(2897), - [anon_sym_requires] = ACTIONS(2897), - [sym_this] = ACTIONS(2897), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [702] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [703] = { - [sym_identifier] = ACTIONS(2782), - [aux_sym_preproc_include_token1] = ACTIONS(2782), - [aux_sym_preproc_def_token1] = ACTIONS(2782), - [aux_sym_preproc_if_token1] = ACTIONS(2782), - [aux_sym_preproc_if_token2] = ACTIONS(2782), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2782), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2782), - [aux_sym_preproc_else_token1] = ACTIONS(2782), - [aux_sym_preproc_elif_token1] = ACTIONS(2782), - [sym_preproc_directive] = ACTIONS(2782), - [anon_sym_LPAREN2] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym___extension__] = ACTIONS(2782), - [anon_sym_typedef] = ACTIONS(2782), - [anon_sym_extern] = ACTIONS(2782), - [anon_sym___attribute__] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2784), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2784), - [anon_sym___declspec] = ACTIONS(2782), - [anon_sym___based] = ACTIONS(2782), - [anon_sym___cdecl] = ACTIONS(2782), - [anon_sym___clrcall] = ACTIONS(2782), - [anon_sym___stdcall] = ACTIONS(2782), - [anon_sym___fastcall] = ACTIONS(2782), - [anon_sym___thiscall] = ACTIONS(2782), - [anon_sym___vectorcall] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_signed] = ACTIONS(2782), - [anon_sym_unsigned] = ACTIONS(2782), - [anon_sym_long] = ACTIONS(2782), - [anon_sym_short] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_static] = ACTIONS(2782), - [anon_sym_register] = ACTIONS(2782), - [anon_sym_inline] = ACTIONS(2782), - [anon_sym___inline] = ACTIONS(2782), - [anon_sym___inline__] = ACTIONS(2782), - [anon_sym___forceinline] = ACTIONS(2782), - [anon_sym_thread_local] = ACTIONS(2782), - [anon_sym___thread] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_constexpr] = ACTIONS(2782), - [anon_sym_volatile] = ACTIONS(2782), - [anon_sym_restrict] = ACTIONS(2782), - [anon_sym___restrict__] = ACTIONS(2782), - [anon_sym__Atomic] = ACTIONS(2782), - [anon_sym__Noreturn] = ACTIONS(2782), - [anon_sym_noreturn] = ACTIONS(2782), - [anon_sym_mutable] = ACTIONS(2782), - [anon_sym_constinit] = ACTIONS(2782), - [anon_sym_consteval] = ACTIONS(2782), - [sym_primitive_type] = ACTIONS(2782), - [anon_sym_enum] = ACTIONS(2782), - [anon_sym_class] = ACTIONS(2782), - [anon_sym_struct] = ACTIONS(2782), - [anon_sym_union] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_else] = ACTIONS(2782), - [anon_sym_switch] = ACTIONS(2782), - [anon_sym_case] = ACTIONS(2782), - [anon_sym_default] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_goto] = ACTIONS(2782), - [anon_sym_not] = ACTIONS(2782), - [anon_sym_compl] = ACTIONS(2782), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_sizeof] = ACTIONS(2782), - [anon_sym___alignof__] = ACTIONS(2782), - [anon_sym___alignof] = ACTIONS(2782), - [anon_sym__alignof] = ACTIONS(2782), - [anon_sym_alignof] = ACTIONS(2782), - [anon_sym__Alignof] = ACTIONS(2782), - [anon_sym_offsetof] = ACTIONS(2782), - [anon_sym__Generic] = ACTIONS(2782), - [anon_sym_asm] = ACTIONS(2782), - [anon_sym___asm__] = ACTIONS(2782), - [sym_number_literal] = ACTIONS(2784), - [anon_sym_L_SQUOTE] = ACTIONS(2784), - [anon_sym_u_SQUOTE] = ACTIONS(2784), - [anon_sym_U_SQUOTE] = ACTIONS(2784), - [anon_sym_u8_SQUOTE] = ACTIONS(2784), - [anon_sym_SQUOTE] = ACTIONS(2784), - [anon_sym_L_DQUOTE] = ACTIONS(2784), - [anon_sym_u_DQUOTE] = ACTIONS(2784), - [anon_sym_U_DQUOTE] = ACTIONS(2784), - [anon_sym_u8_DQUOTE] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [sym_true] = ACTIONS(2782), - [sym_false] = ACTIONS(2782), - [anon_sym_NULL] = ACTIONS(2782), - [anon_sym_nullptr] = ACTIONS(2782), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2782), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_virtual] = ACTIONS(2782), - [anon_sym_alignas] = ACTIONS(2782), - [anon_sym_explicit] = ACTIONS(2782), - [anon_sym_typename] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2782), - [anon_sym_operator] = ACTIONS(2782), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_delete] = ACTIONS(2782), - [anon_sym_throw] = ACTIONS(2782), - [anon_sym_namespace] = ACTIONS(2782), - [anon_sym_using] = ACTIONS(2782), - [anon_sym_static_assert] = ACTIONS(2782), - [anon_sym_concept] = ACTIONS(2782), - [anon_sym_co_return] = ACTIONS(2782), - [anon_sym_co_yield] = ACTIONS(2782), - [anon_sym_R_DQUOTE] = ACTIONS(2784), - [anon_sym_LR_DQUOTE] = ACTIONS(2784), - [anon_sym_uR_DQUOTE] = ACTIONS(2784), - [anon_sym_UR_DQUOTE] = ACTIONS(2784), - [anon_sym_u8R_DQUOTE] = ACTIONS(2784), - [anon_sym_co_await] = ACTIONS(2782), - [anon_sym_new] = ACTIONS(2782), - [anon_sym_requires] = ACTIONS(2782), - [sym_this] = ACTIONS(2782), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [704] = { - [sym_identifier] = ACTIONS(2786), - [aux_sym_preproc_include_token1] = ACTIONS(2786), - [aux_sym_preproc_def_token1] = ACTIONS(2786), - [aux_sym_preproc_if_token1] = ACTIONS(2786), - [aux_sym_preproc_if_token2] = ACTIONS(2786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2786), - [aux_sym_preproc_else_token1] = ACTIONS(2786), - [aux_sym_preproc_elif_token1] = ACTIONS(2786), - [sym_preproc_directive] = ACTIONS(2786), - [anon_sym_LPAREN2] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2786), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym___extension__] = ACTIONS(2786), - [anon_sym_typedef] = ACTIONS(2786), - [anon_sym_extern] = ACTIONS(2786), - [anon_sym___attribute__] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2788), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2788), - [anon_sym___declspec] = ACTIONS(2786), - [anon_sym___based] = ACTIONS(2786), - [anon_sym___cdecl] = ACTIONS(2786), - [anon_sym___clrcall] = ACTIONS(2786), - [anon_sym___stdcall] = ACTIONS(2786), - [anon_sym___fastcall] = ACTIONS(2786), - [anon_sym___thiscall] = ACTIONS(2786), - [anon_sym___vectorcall] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_signed] = ACTIONS(2786), - [anon_sym_unsigned] = ACTIONS(2786), - [anon_sym_long] = ACTIONS(2786), - [anon_sym_short] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_static] = ACTIONS(2786), - [anon_sym_register] = ACTIONS(2786), - [anon_sym_inline] = ACTIONS(2786), - [anon_sym___inline] = ACTIONS(2786), - [anon_sym___inline__] = ACTIONS(2786), - [anon_sym___forceinline] = ACTIONS(2786), - [anon_sym_thread_local] = ACTIONS(2786), - [anon_sym___thread] = ACTIONS(2786), - [anon_sym_const] = ACTIONS(2786), - [anon_sym_constexpr] = ACTIONS(2786), - [anon_sym_volatile] = ACTIONS(2786), - [anon_sym_restrict] = ACTIONS(2786), - [anon_sym___restrict__] = ACTIONS(2786), - [anon_sym__Atomic] = ACTIONS(2786), - [anon_sym__Noreturn] = ACTIONS(2786), - [anon_sym_noreturn] = ACTIONS(2786), - [anon_sym_mutable] = ACTIONS(2786), - [anon_sym_constinit] = ACTIONS(2786), - [anon_sym_consteval] = ACTIONS(2786), - [sym_primitive_type] = ACTIONS(2786), - [anon_sym_enum] = ACTIONS(2786), - [anon_sym_class] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2786), - [anon_sym_union] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2786), - [anon_sym_else] = ACTIONS(2786), - [anon_sym_switch] = ACTIONS(2786), - [anon_sym_case] = ACTIONS(2786), - [anon_sym_default] = ACTIONS(2786), - [anon_sym_while] = ACTIONS(2786), - [anon_sym_do] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2786), - [anon_sym_return] = ACTIONS(2786), - [anon_sym_break] = ACTIONS(2786), - [anon_sym_continue] = ACTIONS(2786), - [anon_sym_goto] = ACTIONS(2786), - [anon_sym_not] = ACTIONS(2786), - [anon_sym_compl] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_sizeof] = ACTIONS(2786), - [anon_sym___alignof__] = ACTIONS(2786), - [anon_sym___alignof] = ACTIONS(2786), - [anon_sym__alignof] = ACTIONS(2786), - [anon_sym_alignof] = ACTIONS(2786), - [anon_sym__Alignof] = ACTIONS(2786), - [anon_sym_offsetof] = ACTIONS(2786), - [anon_sym__Generic] = ACTIONS(2786), - [anon_sym_asm] = ACTIONS(2786), - [anon_sym___asm__] = ACTIONS(2786), - [sym_number_literal] = ACTIONS(2788), - [anon_sym_L_SQUOTE] = ACTIONS(2788), - [anon_sym_u_SQUOTE] = ACTIONS(2788), - [anon_sym_U_SQUOTE] = ACTIONS(2788), - [anon_sym_u8_SQUOTE] = ACTIONS(2788), - [anon_sym_SQUOTE] = ACTIONS(2788), - [anon_sym_L_DQUOTE] = ACTIONS(2788), - [anon_sym_u_DQUOTE] = ACTIONS(2788), - [anon_sym_U_DQUOTE] = ACTIONS(2788), - [anon_sym_u8_DQUOTE] = ACTIONS(2788), - [anon_sym_DQUOTE] = ACTIONS(2788), - [sym_true] = ACTIONS(2786), - [sym_false] = ACTIONS(2786), - [anon_sym_NULL] = ACTIONS(2786), - [anon_sym_nullptr] = ACTIONS(2786), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2786), - [anon_sym_decltype] = ACTIONS(2786), - [anon_sym_virtual] = ACTIONS(2786), - [anon_sym_alignas] = ACTIONS(2786), - [anon_sym_explicit] = ACTIONS(2786), - [anon_sym_typename] = ACTIONS(2786), - [anon_sym_template] = ACTIONS(2786), - [anon_sym_operator] = ACTIONS(2786), - [anon_sym_try] = ACTIONS(2786), - [anon_sym_delete] = ACTIONS(2786), - [anon_sym_throw] = ACTIONS(2786), - [anon_sym_namespace] = ACTIONS(2786), - [anon_sym_using] = ACTIONS(2786), - [anon_sym_static_assert] = ACTIONS(2786), - [anon_sym_concept] = ACTIONS(2786), - [anon_sym_co_return] = ACTIONS(2786), - [anon_sym_co_yield] = ACTIONS(2786), - [anon_sym_R_DQUOTE] = ACTIONS(2788), - [anon_sym_LR_DQUOTE] = ACTIONS(2788), - [anon_sym_uR_DQUOTE] = ACTIONS(2788), - [anon_sym_UR_DQUOTE] = ACTIONS(2788), - [anon_sym_u8R_DQUOTE] = ACTIONS(2788), - [anon_sym_co_await] = ACTIONS(2786), - [anon_sym_new] = ACTIONS(2786), - [anon_sym_requires] = ACTIONS(2786), - [sym_this] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [705] = { - [sym_catch_clause] = STATE(554), - [aux_sym_constructor_try_statement_repeat1] = STATE(554), - [sym_identifier] = ACTIONS(2563), - [aux_sym_preproc_include_token1] = ACTIONS(2563), - [aux_sym_preproc_def_token1] = ACTIONS(2563), - [aux_sym_preproc_if_token1] = ACTIONS(2563), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2563), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2563), - [sym_preproc_directive] = ACTIONS(2563), - [anon_sym_LPAREN2] = ACTIONS(2565), - [anon_sym_BANG] = ACTIONS(2565), - [anon_sym_TILDE] = ACTIONS(2565), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_STAR] = ACTIONS(2565), - [anon_sym_AMP_AMP] = ACTIONS(2565), - [anon_sym_AMP] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2565), - [anon_sym___extension__] = ACTIONS(2563), - [anon_sym_typedef] = ACTIONS(2563), - [anon_sym_extern] = ACTIONS(2563), - [anon_sym___attribute__] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2565), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), - [anon_sym___declspec] = ACTIONS(2563), - [anon_sym___based] = ACTIONS(2563), - [anon_sym___cdecl] = ACTIONS(2563), - [anon_sym___clrcall] = ACTIONS(2563), - [anon_sym___stdcall] = ACTIONS(2563), - [anon_sym___fastcall] = ACTIONS(2563), - [anon_sym___thiscall] = ACTIONS(2563), - [anon_sym___vectorcall] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2565), - [anon_sym_RBRACE] = ACTIONS(2565), - [anon_sym_signed] = ACTIONS(2563), - [anon_sym_unsigned] = ACTIONS(2563), - [anon_sym_long] = ACTIONS(2563), - [anon_sym_short] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(2563), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2563), - [anon_sym_inline] = ACTIONS(2563), - [anon_sym___inline] = ACTIONS(2563), - [anon_sym___inline__] = ACTIONS(2563), - [anon_sym___forceinline] = ACTIONS(2563), - [anon_sym_thread_local] = ACTIONS(2563), - [anon_sym___thread] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_constexpr] = ACTIONS(2563), - [anon_sym_volatile] = ACTIONS(2563), - [anon_sym_restrict] = ACTIONS(2563), - [anon_sym___restrict__] = ACTIONS(2563), - [anon_sym__Atomic] = ACTIONS(2563), - [anon_sym__Noreturn] = ACTIONS(2563), - [anon_sym_noreturn] = ACTIONS(2563), - [anon_sym_mutable] = ACTIONS(2563), - [anon_sym_constinit] = ACTIONS(2563), - [anon_sym_consteval] = ACTIONS(2563), - [sym_primitive_type] = ACTIONS(2563), - [anon_sym_enum] = ACTIONS(2563), - [anon_sym_class] = ACTIONS(2563), - [anon_sym_struct] = ACTIONS(2563), - [anon_sym_union] = ACTIONS(2563), - [anon_sym_if] = ACTIONS(2563), - [anon_sym_switch] = ACTIONS(2563), - [anon_sym_case] = ACTIONS(2563), - [anon_sym_default] = ACTIONS(2563), - [anon_sym_while] = ACTIONS(2563), - [anon_sym_do] = ACTIONS(2563), - [anon_sym_for] = ACTIONS(2563), - [anon_sym_return] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_goto] = ACTIONS(2563), - [anon_sym_not] = ACTIONS(2563), - [anon_sym_compl] = ACTIONS(2563), - [anon_sym_DASH_DASH] = ACTIONS(2565), - [anon_sym_PLUS_PLUS] = ACTIONS(2565), - [anon_sym_sizeof] = ACTIONS(2563), - [anon_sym___alignof__] = ACTIONS(2563), - [anon_sym___alignof] = ACTIONS(2563), - [anon_sym__alignof] = ACTIONS(2563), - [anon_sym_alignof] = ACTIONS(2563), - [anon_sym__Alignof] = ACTIONS(2563), - [anon_sym_offsetof] = ACTIONS(2563), - [anon_sym__Generic] = ACTIONS(2563), - [anon_sym_asm] = ACTIONS(2563), - [anon_sym___asm__] = ACTIONS(2563), - [sym_number_literal] = ACTIONS(2565), - [anon_sym_L_SQUOTE] = ACTIONS(2565), - [anon_sym_u_SQUOTE] = ACTIONS(2565), - [anon_sym_U_SQUOTE] = ACTIONS(2565), - [anon_sym_u8_SQUOTE] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2565), - [anon_sym_L_DQUOTE] = ACTIONS(2565), - [anon_sym_u_DQUOTE] = ACTIONS(2565), - [anon_sym_U_DQUOTE] = ACTIONS(2565), - [anon_sym_u8_DQUOTE] = ACTIONS(2565), - [anon_sym_DQUOTE] = ACTIONS(2565), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [anon_sym_NULL] = ACTIONS(2563), - [anon_sym_nullptr] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2563), - [anon_sym_decltype] = ACTIONS(2563), - [anon_sym_virtual] = ACTIONS(2563), - [anon_sym_alignas] = ACTIONS(2563), - [anon_sym_explicit] = ACTIONS(2563), - [anon_sym_typename] = ACTIONS(2563), - [anon_sym_template] = ACTIONS(2563), - [anon_sym_operator] = ACTIONS(2563), - [anon_sym_try] = ACTIONS(2563), - [anon_sym_delete] = ACTIONS(2563), - [anon_sym_throw] = ACTIONS(2563), - [anon_sym_namespace] = ACTIONS(2563), - [anon_sym_using] = ACTIONS(2563), - [anon_sym_static_assert] = ACTIONS(2563), - [anon_sym_concept] = ACTIONS(2563), - [anon_sym_co_return] = ACTIONS(2563), - [anon_sym_co_yield] = ACTIONS(2563), - [anon_sym_catch] = ACTIONS(3228), - [anon_sym_R_DQUOTE] = ACTIONS(2565), - [anon_sym_LR_DQUOTE] = ACTIONS(2565), - [anon_sym_uR_DQUOTE] = ACTIONS(2565), - [anon_sym_UR_DQUOTE] = ACTIONS(2565), - [anon_sym_u8R_DQUOTE] = ACTIONS(2565), - [anon_sym_co_await] = ACTIONS(2563), - [anon_sym_new] = ACTIONS(2563), - [anon_sym_requires] = ACTIONS(2563), - [sym_this] = ACTIONS(2563), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [706] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [707] = { - [sym_catch_clause] = STATE(554), - [aux_sym_constructor_try_statement_repeat1] = STATE(554), - [sym_identifier] = ACTIONS(2559), - [aux_sym_preproc_include_token1] = ACTIONS(2559), - [aux_sym_preproc_def_token1] = ACTIONS(2559), - [aux_sym_preproc_if_token1] = ACTIONS(2559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), - [sym_preproc_directive] = ACTIONS(2559), - [anon_sym_LPAREN2] = ACTIONS(2561), - [anon_sym_BANG] = ACTIONS(2561), - [anon_sym_TILDE] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2559), - [anon_sym_STAR] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2561), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2561), - [anon_sym___extension__] = ACTIONS(2559), - [anon_sym_typedef] = ACTIONS(2559), - [anon_sym_extern] = ACTIONS(2559), - [anon_sym___attribute__] = ACTIONS(2559), - [anon_sym_COLON_COLON] = ACTIONS(2561), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2559), - [anon_sym___based] = ACTIONS(2559), - [anon_sym___cdecl] = ACTIONS(2559), - [anon_sym___clrcall] = ACTIONS(2559), - [anon_sym___stdcall] = ACTIONS(2559), - [anon_sym___fastcall] = ACTIONS(2559), - [anon_sym___thiscall] = ACTIONS(2559), - [anon_sym___vectorcall] = ACTIONS(2559), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_RBRACE] = ACTIONS(2561), - [anon_sym_signed] = ACTIONS(2559), - [anon_sym_unsigned] = ACTIONS(2559), - [anon_sym_long] = ACTIONS(2559), - [anon_sym_short] = ACTIONS(2559), - [anon_sym_LBRACK] = ACTIONS(2559), - [anon_sym_static] = ACTIONS(2559), - [anon_sym_register] = ACTIONS(2559), - [anon_sym_inline] = ACTIONS(2559), - [anon_sym___inline] = ACTIONS(2559), - [anon_sym___inline__] = ACTIONS(2559), - [anon_sym___forceinline] = ACTIONS(2559), - [anon_sym_thread_local] = ACTIONS(2559), - [anon_sym___thread] = ACTIONS(2559), - [anon_sym_const] = ACTIONS(2559), - [anon_sym_constexpr] = ACTIONS(2559), - [anon_sym_volatile] = ACTIONS(2559), - [anon_sym_restrict] = ACTIONS(2559), - [anon_sym___restrict__] = ACTIONS(2559), - [anon_sym__Atomic] = ACTIONS(2559), - [anon_sym__Noreturn] = ACTIONS(2559), - [anon_sym_noreturn] = ACTIONS(2559), - [anon_sym_mutable] = ACTIONS(2559), - [anon_sym_constinit] = ACTIONS(2559), - [anon_sym_consteval] = ACTIONS(2559), - [sym_primitive_type] = ACTIONS(2559), - [anon_sym_enum] = ACTIONS(2559), - [anon_sym_class] = ACTIONS(2559), - [anon_sym_struct] = ACTIONS(2559), - [anon_sym_union] = ACTIONS(2559), - [anon_sym_if] = ACTIONS(2559), - [anon_sym_switch] = ACTIONS(2559), - [anon_sym_case] = ACTIONS(2559), - [anon_sym_default] = ACTIONS(2559), - [anon_sym_while] = ACTIONS(2559), - [anon_sym_do] = ACTIONS(2559), - [anon_sym_for] = ACTIONS(2559), - [anon_sym_return] = ACTIONS(2559), - [anon_sym_break] = ACTIONS(2559), - [anon_sym_continue] = ACTIONS(2559), - [anon_sym_goto] = ACTIONS(2559), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_compl] = ACTIONS(2559), - [anon_sym_DASH_DASH] = ACTIONS(2561), - [anon_sym_PLUS_PLUS] = ACTIONS(2561), - [anon_sym_sizeof] = ACTIONS(2559), - [anon_sym___alignof__] = ACTIONS(2559), - [anon_sym___alignof] = ACTIONS(2559), - [anon_sym__alignof] = ACTIONS(2559), - [anon_sym_alignof] = ACTIONS(2559), - [anon_sym__Alignof] = ACTIONS(2559), - [anon_sym_offsetof] = ACTIONS(2559), - [anon_sym__Generic] = ACTIONS(2559), - [anon_sym_asm] = ACTIONS(2559), - [anon_sym___asm__] = ACTIONS(2559), - [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(2559), - [sym_false] = ACTIONS(2559), - [anon_sym_NULL] = ACTIONS(2559), - [anon_sym_nullptr] = ACTIONS(2559), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2559), - [anon_sym_decltype] = ACTIONS(2559), - [anon_sym_virtual] = ACTIONS(2559), - [anon_sym_alignas] = ACTIONS(2559), - [anon_sym_explicit] = ACTIONS(2559), - [anon_sym_typename] = ACTIONS(2559), - [anon_sym_template] = ACTIONS(2559), - [anon_sym_operator] = ACTIONS(2559), - [anon_sym_try] = ACTIONS(2559), - [anon_sym_delete] = ACTIONS(2559), - [anon_sym_throw] = ACTIONS(2559), - [anon_sym_namespace] = ACTIONS(2559), - [anon_sym_using] = ACTIONS(2559), - [anon_sym_static_assert] = ACTIONS(2559), - [anon_sym_concept] = ACTIONS(2559), - [anon_sym_co_return] = ACTIONS(2559), - [anon_sym_co_yield] = ACTIONS(2559), - [anon_sym_catch] = ACTIONS(3228), - [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(2559), - [anon_sym_new] = ACTIONS(2559), - [anon_sym_requires] = ACTIONS(2559), - [sym_this] = ACTIONS(2559), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [708] = { - [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), - [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_extern] = ACTIONS(3027), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3027), - [anon_sym_alignas] = 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_using] = 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), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [709] = { - [sym_identifier] = ACTIONS(2901), - [aux_sym_preproc_include_token1] = ACTIONS(2901), - [aux_sym_preproc_def_token1] = ACTIONS(2901), - [aux_sym_preproc_if_token1] = ACTIONS(2901), - [aux_sym_preproc_if_token2] = ACTIONS(2901), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2901), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2901), - [aux_sym_preproc_else_token1] = ACTIONS(2901), - [aux_sym_preproc_elif_token1] = ACTIONS(2901), - [sym_preproc_directive] = ACTIONS(2901), - [anon_sym_LPAREN2] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2901), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym___extension__] = ACTIONS(2901), - [anon_sym_typedef] = ACTIONS(2901), - [anon_sym_extern] = ACTIONS(2901), - [anon_sym___attribute__] = ACTIONS(2901), - [anon_sym_COLON_COLON] = ACTIONS(2903), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2903), - [anon_sym___declspec] = ACTIONS(2901), - [anon_sym___based] = ACTIONS(2901), - [anon_sym___cdecl] = ACTIONS(2901), - [anon_sym___clrcall] = ACTIONS(2901), - [anon_sym___stdcall] = ACTIONS(2901), - [anon_sym___fastcall] = ACTIONS(2901), - [anon_sym___thiscall] = ACTIONS(2901), - [anon_sym___vectorcall] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_signed] = ACTIONS(2901), - [anon_sym_unsigned] = ACTIONS(2901), - [anon_sym_long] = ACTIONS(2901), - [anon_sym_short] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_register] = ACTIONS(2901), - [anon_sym_inline] = ACTIONS(2901), - [anon_sym___inline] = ACTIONS(2901), - [anon_sym___inline__] = ACTIONS(2901), - [anon_sym___forceinline] = ACTIONS(2901), - [anon_sym_thread_local] = ACTIONS(2901), - [anon_sym___thread] = ACTIONS(2901), - [anon_sym_const] = ACTIONS(2901), - [anon_sym_constexpr] = ACTIONS(2901), - [anon_sym_volatile] = ACTIONS(2901), - [anon_sym_restrict] = ACTIONS(2901), - [anon_sym___restrict__] = ACTIONS(2901), - [anon_sym__Atomic] = ACTIONS(2901), - [anon_sym__Noreturn] = ACTIONS(2901), - [anon_sym_noreturn] = ACTIONS(2901), - [anon_sym_mutable] = ACTIONS(2901), - [anon_sym_constinit] = ACTIONS(2901), - [anon_sym_consteval] = ACTIONS(2901), - [sym_primitive_type] = ACTIONS(2901), - [anon_sym_enum] = ACTIONS(2901), - [anon_sym_class] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2901), - [anon_sym_union] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2901), - [anon_sym_else] = ACTIONS(2901), - [anon_sym_switch] = ACTIONS(2901), - [anon_sym_case] = ACTIONS(2901), - [anon_sym_default] = ACTIONS(2901), - [anon_sym_while] = ACTIONS(2901), - [anon_sym_do] = ACTIONS(2901), - [anon_sym_for] = ACTIONS(2901), - [anon_sym_return] = ACTIONS(2901), - [anon_sym_break] = ACTIONS(2901), - [anon_sym_continue] = ACTIONS(2901), - [anon_sym_goto] = ACTIONS(2901), - [anon_sym_not] = ACTIONS(2901), - [anon_sym_compl] = ACTIONS(2901), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_sizeof] = ACTIONS(2901), - [anon_sym___alignof__] = ACTIONS(2901), - [anon_sym___alignof] = ACTIONS(2901), - [anon_sym__alignof] = ACTIONS(2901), - [anon_sym_alignof] = ACTIONS(2901), - [anon_sym__Alignof] = ACTIONS(2901), - [anon_sym_offsetof] = ACTIONS(2901), - [anon_sym__Generic] = ACTIONS(2901), - [anon_sym_asm] = ACTIONS(2901), - [anon_sym___asm__] = ACTIONS(2901), - [sym_number_literal] = ACTIONS(2903), - [anon_sym_L_SQUOTE] = ACTIONS(2903), - [anon_sym_u_SQUOTE] = ACTIONS(2903), - [anon_sym_U_SQUOTE] = ACTIONS(2903), - [anon_sym_u8_SQUOTE] = ACTIONS(2903), - [anon_sym_SQUOTE] = ACTIONS(2903), - [anon_sym_L_DQUOTE] = ACTIONS(2903), - [anon_sym_u_DQUOTE] = ACTIONS(2903), - [anon_sym_U_DQUOTE] = ACTIONS(2903), - [anon_sym_u8_DQUOTE] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym_true] = ACTIONS(2901), - [sym_false] = ACTIONS(2901), - [anon_sym_NULL] = ACTIONS(2901), - [anon_sym_nullptr] = ACTIONS(2901), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2901), - [anon_sym_virtual] = ACTIONS(2901), - [anon_sym_alignas] = ACTIONS(2901), - [anon_sym_explicit] = ACTIONS(2901), - [anon_sym_typename] = ACTIONS(2901), - [anon_sym_template] = ACTIONS(2901), - [anon_sym_operator] = ACTIONS(2901), - [anon_sym_try] = ACTIONS(2901), - [anon_sym_delete] = ACTIONS(2901), - [anon_sym_throw] = ACTIONS(2901), - [anon_sym_namespace] = ACTIONS(2901), - [anon_sym_using] = ACTIONS(2901), - [anon_sym_static_assert] = ACTIONS(2901), - [anon_sym_concept] = ACTIONS(2901), - [anon_sym_co_return] = ACTIONS(2901), - [anon_sym_co_yield] = ACTIONS(2901), - [anon_sym_R_DQUOTE] = ACTIONS(2903), - [anon_sym_LR_DQUOTE] = ACTIONS(2903), - [anon_sym_uR_DQUOTE] = ACTIONS(2903), - [anon_sym_UR_DQUOTE] = ACTIONS(2903), - [anon_sym_u8R_DQUOTE] = ACTIONS(2903), - [anon_sym_co_await] = ACTIONS(2901), - [anon_sym_new] = ACTIONS(2901), - [anon_sym_requires] = ACTIONS(2901), - [sym_this] = ACTIONS(2901), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token2] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [710] = { - [sym_identifier] = ACTIONS(2905), - [aux_sym_preproc_include_token1] = ACTIONS(2905), - [aux_sym_preproc_def_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token2] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2905), - [aux_sym_preproc_else_token1] = ACTIONS(2905), - [aux_sym_preproc_elif_token1] = ACTIONS(2905), - [sym_preproc_directive] = ACTIONS(2905), - [anon_sym_LPAREN2] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym___extension__] = ACTIONS(2905), - [anon_sym_typedef] = ACTIONS(2905), - [anon_sym_extern] = ACTIONS(2905), - [anon_sym___attribute__] = ACTIONS(2905), - [anon_sym_COLON_COLON] = ACTIONS(2907), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2907), - [anon_sym___declspec] = ACTIONS(2905), - [anon_sym___based] = ACTIONS(2905), - [anon_sym___cdecl] = ACTIONS(2905), - [anon_sym___clrcall] = ACTIONS(2905), - [anon_sym___stdcall] = ACTIONS(2905), - [anon_sym___fastcall] = ACTIONS(2905), - [anon_sym___thiscall] = ACTIONS(2905), - [anon_sym___vectorcall] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_signed] = ACTIONS(2905), - [anon_sym_unsigned] = ACTIONS(2905), - [anon_sym_long] = ACTIONS(2905), - [anon_sym_short] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_register] = ACTIONS(2905), - [anon_sym_inline] = ACTIONS(2905), - [anon_sym___inline] = ACTIONS(2905), - [anon_sym___inline__] = ACTIONS(2905), - [anon_sym___forceinline] = ACTIONS(2905), - [anon_sym_thread_local] = ACTIONS(2905), - [anon_sym___thread] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_constexpr] = ACTIONS(2905), - [anon_sym_volatile] = ACTIONS(2905), - [anon_sym_restrict] = ACTIONS(2905), - [anon_sym___restrict__] = ACTIONS(2905), - [anon_sym__Atomic] = ACTIONS(2905), - [anon_sym__Noreturn] = ACTIONS(2905), - [anon_sym_noreturn] = ACTIONS(2905), - [anon_sym_mutable] = ACTIONS(2905), - [anon_sym_constinit] = ACTIONS(2905), - [anon_sym_consteval] = ACTIONS(2905), - [sym_primitive_type] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_union] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2905), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2905), - [anon_sym_default] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_do] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_goto] = ACTIONS(2905), - [anon_sym_not] = ACTIONS(2905), - [anon_sym_compl] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_sizeof] = ACTIONS(2905), - [anon_sym___alignof__] = ACTIONS(2905), - [anon_sym___alignof] = ACTIONS(2905), - [anon_sym__alignof] = ACTIONS(2905), - [anon_sym_alignof] = ACTIONS(2905), - [anon_sym__Alignof] = ACTIONS(2905), - [anon_sym_offsetof] = ACTIONS(2905), - [anon_sym__Generic] = ACTIONS(2905), - [anon_sym_asm] = ACTIONS(2905), - [anon_sym___asm__] = ACTIONS(2905), - [sym_number_literal] = ACTIONS(2907), - [anon_sym_L_SQUOTE] = ACTIONS(2907), - [anon_sym_u_SQUOTE] = ACTIONS(2907), - [anon_sym_U_SQUOTE] = ACTIONS(2907), - [anon_sym_u8_SQUOTE] = ACTIONS(2907), - [anon_sym_SQUOTE] = ACTIONS(2907), - [anon_sym_L_DQUOTE] = ACTIONS(2907), - [anon_sym_u_DQUOTE] = ACTIONS(2907), - [anon_sym_U_DQUOTE] = ACTIONS(2907), - [anon_sym_u8_DQUOTE] = ACTIONS(2907), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_true] = ACTIONS(2905), - [sym_false] = ACTIONS(2905), - [anon_sym_NULL] = ACTIONS(2905), - [anon_sym_nullptr] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2905), - [anon_sym_decltype] = ACTIONS(2905), - [anon_sym_virtual] = ACTIONS(2905), - [anon_sym_alignas] = ACTIONS(2905), - [anon_sym_explicit] = ACTIONS(2905), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(2905), - [anon_sym_operator] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_throw] = ACTIONS(2905), - [anon_sym_namespace] = ACTIONS(2905), - [anon_sym_using] = ACTIONS(2905), - [anon_sym_static_assert] = ACTIONS(2905), - [anon_sym_concept] = ACTIONS(2905), - [anon_sym_co_return] = ACTIONS(2905), - [anon_sym_co_yield] = ACTIONS(2905), - [anon_sym_R_DQUOTE] = ACTIONS(2907), - [anon_sym_LR_DQUOTE] = ACTIONS(2907), - [anon_sym_uR_DQUOTE] = ACTIONS(2907), - [anon_sym_UR_DQUOTE] = ACTIONS(2907), - [anon_sym_u8R_DQUOTE] = ACTIONS(2907), - [anon_sym_co_await] = ACTIONS(2905), - [anon_sym_new] = ACTIONS(2905), - [anon_sym_requires] = ACTIONS(2905), - [sym_this] = ACTIONS(2905), + [sym_identifier] = ACTIONS(2868), + [aux_sym_preproc_include_token1] = ACTIONS(2868), + [aux_sym_preproc_def_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token1] = ACTIONS(2868), + [aux_sym_preproc_if_token2] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2868), + [sym_preproc_directive] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym___extension__] = ACTIONS(2868), + [anon_sym_typedef] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym___attribute__] = ACTIONS(2868), + [anon_sym_COLON_COLON] = ACTIONS(2870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2870), + [anon_sym___declspec] = ACTIONS(2868), + [anon_sym___based] = ACTIONS(2868), + [anon_sym___cdecl] = ACTIONS(2868), + [anon_sym___clrcall] = ACTIONS(2868), + [anon_sym___stdcall] = ACTIONS(2868), + [anon_sym___fastcall] = ACTIONS(2868), + [anon_sym___thiscall] = ACTIONS(2868), + [anon_sym___vectorcall] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_signed] = ACTIONS(2868), + [anon_sym_unsigned] = ACTIONS(2868), + [anon_sym_long] = ACTIONS(2868), + [anon_sym_short] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_register] = ACTIONS(2868), + [anon_sym_inline] = ACTIONS(2868), + [anon_sym___inline] = ACTIONS(2868), + [anon_sym___inline__] = ACTIONS(2868), + [anon_sym___forceinline] = ACTIONS(2868), + [anon_sym_thread_local] = ACTIONS(2868), + [anon_sym___thread] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_constexpr] = ACTIONS(2868), + [anon_sym_volatile] = ACTIONS(2868), + [anon_sym_restrict] = ACTIONS(2868), + [anon_sym___restrict__] = ACTIONS(2868), + [anon_sym__Atomic] = ACTIONS(2868), + [anon_sym__Noreturn] = ACTIONS(2868), + [anon_sym_noreturn] = ACTIONS(2868), + [anon_sym_mutable] = ACTIONS(2868), + [anon_sym_constinit] = ACTIONS(2868), + [anon_sym_consteval] = ACTIONS(2868), + [sym_primitive_type] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_class] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2868), + [anon_sym_union] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_goto] = ACTIONS(2868), + [anon_sym_not] = ACTIONS(2868), + [anon_sym_compl] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_sizeof] = ACTIONS(2868), + [anon_sym___alignof__] = ACTIONS(2868), + [anon_sym___alignof] = ACTIONS(2868), + [anon_sym__alignof] = ACTIONS(2868), + [anon_sym_alignof] = ACTIONS(2868), + [anon_sym__Alignof] = ACTIONS(2868), + [anon_sym_offsetof] = ACTIONS(2868), + [anon_sym__Generic] = ACTIONS(2868), + [anon_sym_asm] = ACTIONS(2868), + [anon_sym___asm__] = ACTIONS(2868), + [sym_number_literal] = ACTIONS(2870), + [anon_sym_L_SQUOTE] = ACTIONS(2870), + [anon_sym_u_SQUOTE] = ACTIONS(2870), + [anon_sym_U_SQUOTE] = ACTIONS(2870), + [anon_sym_u8_SQUOTE] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_L_DQUOTE] = ACTIONS(2870), + [anon_sym_u_DQUOTE] = ACTIONS(2870), + [anon_sym_U_DQUOTE] = ACTIONS(2870), + [anon_sym_u8_DQUOTE] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [sym_true] = ACTIONS(2868), + [sym_false] = ACTIONS(2868), + [anon_sym_NULL] = ACTIONS(2868), + [anon_sym_nullptr] = ACTIONS(2868), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2868), + [anon_sym_decltype] = ACTIONS(2868), + [anon_sym_virtual] = ACTIONS(2868), + [anon_sym_alignas] = ACTIONS(2868), + [anon_sym_explicit] = ACTIONS(2868), + [anon_sym_typename] = ACTIONS(2868), + [anon_sym_template] = ACTIONS(2868), + [anon_sym_operator] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_delete] = ACTIONS(2868), + [anon_sym_throw] = ACTIONS(2868), + [anon_sym_namespace] = ACTIONS(2868), + [anon_sym_using] = ACTIONS(2868), + [anon_sym_static_assert] = ACTIONS(2868), + [anon_sym_concept] = ACTIONS(2868), + [anon_sym_co_return] = ACTIONS(2868), + [anon_sym_co_yield] = ACTIONS(2868), + [anon_sym_R_DQUOTE] = ACTIONS(2870), + [anon_sym_LR_DQUOTE] = ACTIONS(2870), + [anon_sym_uR_DQUOTE] = ACTIONS(2870), + [anon_sym_UR_DQUOTE] = ACTIONS(2870), + [anon_sym_u8R_DQUOTE] = ACTIONS(2870), + [anon_sym_co_await] = ACTIONS(2868), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_requires] = ACTIONS(2868), + [sym_this] = ACTIONS(2868), }, [711] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_include_token1] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2889), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token2] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [aux_sym_preproc_else_token1] = ACTIONS(2194), - [aux_sym_preproc_elif_token1] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym___cdecl] = ACTIONS(2194), - [anon_sym___clrcall] = ACTIONS(2194), - [anon_sym___stdcall] = ACTIONS(2194), - [anon_sym___fastcall] = ACTIONS(2194), - [anon_sym___thiscall] = ACTIONS(2194), - [anon_sym___vectorcall] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_goto] = ACTIONS(2194), - [anon_sym_not] = ACTIONS(2194), - [anon_sym_compl] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_sizeof] = ACTIONS(2194), - [anon_sym___alignof__] = ACTIONS(2194), - [anon_sym___alignof] = ACTIONS(2194), - [anon_sym__alignof] = ACTIONS(2194), - [anon_sym_alignof] = ACTIONS(2194), - [anon_sym__Alignof] = ACTIONS(2194), - [anon_sym_offsetof] = ACTIONS(2194), - [anon_sym__Generic] = ACTIONS(2194), - [anon_sym_asm] = ACTIONS(2194), - [anon_sym___asm__] = ACTIONS(2194), - [sym_number_literal] = ACTIONS(2192), - [anon_sym_L_SQUOTE] = ACTIONS(2192), - [anon_sym_u_SQUOTE] = ACTIONS(2192), - [anon_sym_U_SQUOTE] = ACTIONS(2192), - [anon_sym_u8_SQUOTE] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_L_DQUOTE] = ACTIONS(2192), - [anon_sym_u_DQUOTE] = ACTIONS(2192), - [anon_sym_U_DQUOTE] = ACTIONS(2192), - [anon_sym_u8_DQUOTE] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [anon_sym_NULL] = ACTIONS(2194), - [anon_sym_nullptr] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_delete] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - [anon_sym_concept] = ACTIONS(2194), - [anon_sym_co_return] = ACTIONS(2194), - [anon_sym_co_yield] = ACTIONS(2194), - [anon_sym_R_DQUOTE] = ACTIONS(2192), - [anon_sym_LR_DQUOTE] = ACTIONS(2192), - [anon_sym_uR_DQUOTE] = ACTIONS(2192), - [anon_sym_UR_DQUOTE] = ACTIONS(2192), - [anon_sym_u8R_DQUOTE] = ACTIONS(2192), - [anon_sym_co_await] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_requires] = ACTIONS(2194), - [sym_this] = ACTIONS(2194), + [sym_identifier] = ACTIONS(2872), + [aux_sym_preproc_include_token1] = ACTIONS(2872), + [aux_sym_preproc_def_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token1] = ACTIONS(2872), + [aux_sym_preproc_if_token2] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2872), + [sym_preproc_directive] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_AMP_AMP] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym___extension__] = ACTIONS(2872), + [anon_sym_typedef] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym___attribute__] = ACTIONS(2872), + [anon_sym_COLON_COLON] = ACTIONS(2874), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2874), + [anon_sym___declspec] = ACTIONS(2872), + [anon_sym___based] = ACTIONS(2872), + [anon_sym___cdecl] = ACTIONS(2872), + [anon_sym___clrcall] = ACTIONS(2872), + [anon_sym___stdcall] = ACTIONS(2872), + [anon_sym___fastcall] = ACTIONS(2872), + [anon_sym___thiscall] = ACTIONS(2872), + [anon_sym___vectorcall] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_signed] = ACTIONS(2872), + [anon_sym_unsigned] = ACTIONS(2872), + [anon_sym_long] = ACTIONS(2872), + [anon_sym_short] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_register] = ACTIONS(2872), + [anon_sym_inline] = ACTIONS(2872), + [anon_sym___inline] = ACTIONS(2872), + [anon_sym___inline__] = ACTIONS(2872), + [anon_sym___forceinline] = ACTIONS(2872), + [anon_sym_thread_local] = ACTIONS(2872), + [anon_sym___thread] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_constexpr] = ACTIONS(2872), + [anon_sym_volatile] = ACTIONS(2872), + [anon_sym_restrict] = ACTIONS(2872), + [anon_sym___restrict__] = ACTIONS(2872), + [anon_sym__Atomic] = ACTIONS(2872), + [anon_sym__Noreturn] = ACTIONS(2872), + [anon_sym_noreturn] = ACTIONS(2872), + [anon_sym_mutable] = ACTIONS(2872), + [anon_sym_constinit] = ACTIONS(2872), + [anon_sym_consteval] = ACTIONS(2872), + [sym_primitive_type] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_class] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_else] = ACTIONS(2872), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_case] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_goto] = ACTIONS(2872), + [anon_sym_not] = ACTIONS(2872), + [anon_sym_compl] = ACTIONS(2872), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_sizeof] = ACTIONS(2872), + [anon_sym___alignof__] = ACTIONS(2872), + [anon_sym___alignof] = ACTIONS(2872), + [anon_sym__alignof] = ACTIONS(2872), + [anon_sym_alignof] = ACTIONS(2872), + [anon_sym__Alignof] = ACTIONS(2872), + [anon_sym_offsetof] = ACTIONS(2872), + [anon_sym__Generic] = ACTIONS(2872), + [anon_sym_asm] = ACTIONS(2872), + [anon_sym___asm__] = ACTIONS(2872), + [sym_number_literal] = ACTIONS(2874), + [anon_sym_L_SQUOTE] = ACTIONS(2874), + [anon_sym_u_SQUOTE] = ACTIONS(2874), + [anon_sym_U_SQUOTE] = ACTIONS(2874), + [anon_sym_u8_SQUOTE] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_L_DQUOTE] = ACTIONS(2874), + [anon_sym_u_DQUOTE] = ACTIONS(2874), + [anon_sym_U_DQUOTE] = ACTIONS(2874), + [anon_sym_u8_DQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE] = ACTIONS(2874), + [sym_true] = ACTIONS(2872), + [sym_false] = ACTIONS(2872), + [anon_sym_NULL] = ACTIONS(2872), + [anon_sym_nullptr] = ACTIONS(2872), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2872), + [anon_sym_decltype] = ACTIONS(2872), + [anon_sym_virtual] = ACTIONS(2872), + [anon_sym_alignas] = ACTIONS(2872), + [anon_sym_explicit] = ACTIONS(2872), + [anon_sym_typename] = ACTIONS(2872), + [anon_sym_template] = ACTIONS(2872), + [anon_sym_operator] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_delete] = ACTIONS(2872), + [anon_sym_throw] = ACTIONS(2872), + [anon_sym_namespace] = ACTIONS(2872), + [anon_sym_using] = ACTIONS(2872), + [anon_sym_static_assert] = ACTIONS(2872), + [anon_sym_concept] = ACTIONS(2872), + [anon_sym_co_return] = ACTIONS(2872), + [anon_sym_co_yield] = ACTIONS(2872), + [anon_sym_R_DQUOTE] = ACTIONS(2874), + [anon_sym_LR_DQUOTE] = ACTIONS(2874), + [anon_sym_uR_DQUOTE] = ACTIONS(2874), + [anon_sym_UR_DQUOTE] = ACTIONS(2874), + [anon_sym_u8R_DQUOTE] = ACTIONS(2874), + [anon_sym_co_await] = ACTIONS(2872), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_requires] = ACTIONS(2872), + [sym_this] = ACTIONS(2872), }, [712] = { - [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), - [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_extern] = ACTIONS(3027), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3027), - [anon_sym_alignas] = 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_using] = 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), + [sym_identifier] = ACTIONS(2876), + [aux_sym_preproc_include_token1] = ACTIONS(2876), + [aux_sym_preproc_def_token1] = ACTIONS(2876), + [aux_sym_preproc_if_token1] = ACTIONS(2876), + [aux_sym_preproc_if_token2] = ACTIONS(2876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2876), + [sym_preproc_directive] = ACTIONS(2876), + [anon_sym_LPAREN2] = ACTIONS(2878), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_TILDE] = ACTIONS(2878), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym___extension__] = ACTIONS(2876), + [anon_sym_typedef] = ACTIONS(2876), + [anon_sym_extern] = ACTIONS(2876), + [anon_sym___attribute__] = ACTIONS(2876), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2878), + [anon_sym___declspec] = ACTIONS(2876), + [anon_sym___based] = ACTIONS(2876), + [anon_sym___cdecl] = ACTIONS(2876), + [anon_sym___clrcall] = ACTIONS(2876), + [anon_sym___stdcall] = ACTIONS(2876), + [anon_sym___fastcall] = ACTIONS(2876), + [anon_sym___thiscall] = ACTIONS(2876), + [anon_sym___vectorcall] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_signed] = ACTIONS(2876), + [anon_sym_unsigned] = ACTIONS(2876), + [anon_sym_long] = ACTIONS(2876), + [anon_sym_short] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_register] = ACTIONS(2876), + [anon_sym_inline] = ACTIONS(2876), + [anon_sym___inline] = ACTIONS(2876), + [anon_sym___inline__] = ACTIONS(2876), + [anon_sym___forceinline] = ACTIONS(2876), + [anon_sym_thread_local] = ACTIONS(2876), + [anon_sym___thread] = ACTIONS(2876), + [anon_sym_const] = ACTIONS(2876), + [anon_sym_constexpr] = ACTIONS(2876), + [anon_sym_volatile] = ACTIONS(2876), + [anon_sym_restrict] = ACTIONS(2876), + [anon_sym___restrict__] = ACTIONS(2876), + [anon_sym__Atomic] = ACTIONS(2876), + [anon_sym__Noreturn] = ACTIONS(2876), + [anon_sym_noreturn] = ACTIONS(2876), + [anon_sym_mutable] = ACTIONS(2876), + [anon_sym_constinit] = ACTIONS(2876), + [anon_sym_consteval] = ACTIONS(2876), + [sym_primitive_type] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), + [anon_sym_class] = ACTIONS(2876), + [anon_sym_struct] = ACTIONS(2876), + [anon_sym_union] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_else] = ACTIONS(2876), + [anon_sym_switch] = ACTIONS(2876), + [anon_sym_case] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_goto] = ACTIONS(2876), + [anon_sym_not] = ACTIONS(2876), + [anon_sym_compl] = ACTIONS(2876), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_sizeof] = ACTIONS(2876), + [anon_sym___alignof__] = ACTIONS(2876), + [anon_sym___alignof] = ACTIONS(2876), + [anon_sym__alignof] = ACTIONS(2876), + [anon_sym_alignof] = ACTIONS(2876), + [anon_sym__Alignof] = ACTIONS(2876), + [anon_sym_offsetof] = ACTIONS(2876), + [anon_sym__Generic] = ACTIONS(2876), + [anon_sym_asm] = ACTIONS(2876), + [anon_sym___asm__] = ACTIONS(2876), + [sym_number_literal] = ACTIONS(2878), + [anon_sym_L_SQUOTE] = ACTIONS(2878), + [anon_sym_u_SQUOTE] = ACTIONS(2878), + [anon_sym_U_SQUOTE] = ACTIONS(2878), + [anon_sym_u8_SQUOTE] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_L_DQUOTE] = ACTIONS(2878), + [anon_sym_u_DQUOTE] = ACTIONS(2878), + [anon_sym_U_DQUOTE] = ACTIONS(2878), + [anon_sym_u8_DQUOTE] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [sym_true] = ACTIONS(2876), + [sym_false] = ACTIONS(2876), + [anon_sym_NULL] = ACTIONS(2876), + [anon_sym_nullptr] = ACTIONS(2876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2876), + [anon_sym_decltype] = ACTIONS(2876), + [anon_sym_virtual] = ACTIONS(2876), + [anon_sym_alignas] = ACTIONS(2876), + [anon_sym_explicit] = ACTIONS(2876), + [anon_sym_typename] = ACTIONS(2876), + [anon_sym_template] = ACTIONS(2876), + [anon_sym_operator] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_delete] = ACTIONS(2876), + [anon_sym_throw] = ACTIONS(2876), + [anon_sym_namespace] = ACTIONS(2876), + [anon_sym_using] = ACTIONS(2876), + [anon_sym_static_assert] = ACTIONS(2876), + [anon_sym_concept] = ACTIONS(2876), + [anon_sym_co_return] = ACTIONS(2876), + [anon_sym_co_yield] = ACTIONS(2876), + [anon_sym_R_DQUOTE] = ACTIONS(2878), + [anon_sym_LR_DQUOTE] = ACTIONS(2878), + [anon_sym_uR_DQUOTE] = ACTIONS(2878), + [anon_sym_UR_DQUOTE] = ACTIONS(2878), + [anon_sym_u8R_DQUOTE] = ACTIONS(2878), + [anon_sym_co_await] = ACTIONS(2876), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_requires] = ACTIONS(2876), + [sym_this] = ACTIONS(2876), }, [713] = { - [sym_preproc_def] = STATE(1130), - [sym_preproc_function_def] = STATE(1130), - [sym_preproc_call] = STATE(1130), - [sym_preproc_if_in_field_declaration_list] = STATE(1130), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1130), - [sym_preproc_else_in_field_declaration_list] = STATE(9353), - [sym_preproc_elif_in_field_declaration_list] = STATE(9353), - [sym_type_definition] = STATE(1130), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6371), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6947), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1130), - [sym_field_declaration] = STATE(1130), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2398), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1130), - [sym_operator_cast] = STATE(7504), - [sym_inline_method_definition] = STATE(1130), - [sym__constructor_specifiers] = STATE(2398), - [sym_operator_cast_definition] = STATE(1130), - [sym_operator_cast_declaration] = STATE(1130), - [sym_constructor_or_destructor_definition] = STATE(1130), - [sym_constructor_or_destructor_declaration] = STATE(1130), - [sym_friend_declaration] = STATE(1130), - [sym_access_specifier] = STATE(9393), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1130), - [sym_alias_declaration] = STATE(1130), - [sym_static_assert_declaration] = STATE(1130), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7504), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1130), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2398), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3462), - [aux_sym_preproc_if_token1] = ACTIONS(3464), - [aux_sym_preproc_if_token2] = ACTIONS(3502), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3468), - [aux_sym_preproc_else_token1] = ACTIONS(2697), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3472), - [anon_sym_typedef] = ACTIONS(3474), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3476), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3478), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3480), - [anon_sym_static_assert] = ACTIONS(3482), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [714] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [715] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2844), + [aux_sym_preproc_include_token1] = ACTIONS(2844), + [aux_sym_preproc_def_token1] = ACTIONS(2844), + [aux_sym_preproc_if_token1] = ACTIONS(2844), + [aux_sym_preproc_if_token2] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2844), + [sym_preproc_directive] = ACTIONS(2844), + [anon_sym_LPAREN2] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_PLUS] = ACTIONS(2844), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_AMP_AMP] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym___extension__] = ACTIONS(2844), + [anon_sym_typedef] = ACTIONS(2844), + [anon_sym_extern] = ACTIONS(2844), + [anon_sym___attribute__] = ACTIONS(2844), + [anon_sym_COLON_COLON] = ACTIONS(2846), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2846), + [anon_sym___declspec] = ACTIONS(2844), + [anon_sym___based] = ACTIONS(2844), + [anon_sym___cdecl] = ACTIONS(2844), + [anon_sym___clrcall] = ACTIONS(2844), + [anon_sym___stdcall] = ACTIONS(2844), + [anon_sym___fastcall] = ACTIONS(2844), + [anon_sym___thiscall] = ACTIONS(2844), + [anon_sym___vectorcall] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_signed] = ACTIONS(2844), + [anon_sym_unsigned] = ACTIONS(2844), + [anon_sym_long] = ACTIONS(2844), + [anon_sym_short] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_register] = ACTIONS(2844), + [anon_sym_inline] = ACTIONS(2844), + [anon_sym___inline] = ACTIONS(2844), + [anon_sym___inline__] = ACTIONS(2844), + [anon_sym___forceinline] = ACTIONS(2844), + [anon_sym_thread_local] = ACTIONS(2844), + [anon_sym___thread] = ACTIONS(2844), + [anon_sym_const] = ACTIONS(2844), + [anon_sym_constexpr] = ACTIONS(2844), + [anon_sym_volatile] = ACTIONS(2844), + [anon_sym_restrict] = ACTIONS(2844), + [anon_sym___restrict__] = ACTIONS(2844), + [anon_sym__Atomic] = ACTIONS(2844), + [anon_sym__Noreturn] = ACTIONS(2844), + [anon_sym_noreturn] = ACTIONS(2844), + [anon_sym_mutable] = ACTIONS(2844), + [anon_sym_constinit] = ACTIONS(2844), + [anon_sym_consteval] = ACTIONS(2844), + [sym_primitive_type] = ACTIONS(2844), + [anon_sym_enum] = ACTIONS(2844), + [anon_sym_class] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2844), + [anon_sym_union] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_else] = ACTIONS(2844), + [anon_sym_switch] = ACTIONS(2844), + [anon_sym_case] = ACTIONS(2844), + [anon_sym_default] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_break] = ACTIONS(2844), + [anon_sym_continue] = ACTIONS(2844), + [anon_sym_goto] = ACTIONS(2844), + [anon_sym_not] = ACTIONS(2844), + [anon_sym_compl] = ACTIONS(2844), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_sizeof] = ACTIONS(2844), + [anon_sym___alignof__] = ACTIONS(2844), + [anon_sym___alignof] = ACTIONS(2844), + [anon_sym__alignof] = ACTIONS(2844), + [anon_sym_alignof] = ACTIONS(2844), + [anon_sym__Alignof] = ACTIONS(2844), + [anon_sym_offsetof] = ACTIONS(2844), + [anon_sym__Generic] = ACTIONS(2844), + [anon_sym_asm] = ACTIONS(2844), + [anon_sym___asm__] = ACTIONS(2844), + [sym_number_literal] = ACTIONS(2846), + [anon_sym_L_SQUOTE] = ACTIONS(2846), + [anon_sym_u_SQUOTE] = ACTIONS(2846), + [anon_sym_U_SQUOTE] = ACTIONS(2846), + [anon_sym_u8_SQUOTE] = ACTIONS(2846), + [anon_sym_SQUOTE] = ACTIONS(2846), + [anon_sym_L_DQUOTE] = ACTIONS(2846), + [anon_sym_u_DQUOTE] = ACTIONS(2846), + [anon_sym_U_DQUOTE] = ACTIONS(2846), + [anon_sym_u8_DQUOTE] = ACTIONS(2846), + [anon_sym_DQUOTE] = ACTIONS(2846), + [sym_true] = ACTIONS(2844), + [sym_false] = ACTIONS(2844), + [anon_sym_NULL] = ACTIONS(2844), + [anon_sym_nullptr] = ACTIONS(2844), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2844), + [anon_sym_decltype] = ACTIONS(2844), + [anon_sym_virtual] = ACTIONS(2844), + [anon_sym_alignas] = ACTIONS(2844), + [anon_sym_explicit] = ACTIONS(2844), + [anon_sym_typename] = ACTIONS(2844), + [anon_sym_template] = ACTIONS(2844), + [anon_sym_operator] = ACTIONS(2844), + [anon_sym_try] = ACTIONS(2844), + [anon_sym_delete] = ACTIONS(2844), + [anon_sym_throw] = ACTIONS(2844), + [anon_sym_namespace] = ACTIONS(2844), + [anon_sym_using] = ACTIONS(2844), + [anon_sym_static_assert] = ACTIONS(2844), + [anon_sym_concept] = ACTIONS(2844), + [anon_sym_co_return] = ACTIONS(2844), + [anon_sym_co_yield] = ACTIONS(2844), + [anon_sym_R_DQUOTE] = ACTIONS(2846), + [anon_sym_LR_DQUOTE] = ACTIONS(2846), + [anon_sym_uR_DQUOTE] = ACTIONS(2846), + [anon_sym_UR_DQUOTE] = ACTIONS(2846), + [anon_sym_u8R_DQUOTE] = ACTIONS(2846), + [anon_sym_co_await] = ACTIONS(2844), + [anon_sym_new] = ACTIONS(2844), + [anon_sym_requires] = ACTIONS(2844), + [sym_this] = ACTIONS(2844), }, [716] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [aux_sym_preproc_include_token1] = ACTIONS(2860), + [aux_sym_preproc_def_token1] = ACTIONS(2860), + [aux_sym_preproc_if_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym___based] = ACTIONS(2860), + [anon_sym___cdecl] = ACTIONS(2860), + [anon_sym___clrcall] = ACTIONS(2860), + [anon_sym___stdcall] = ACTIONS(2860), + [anon_sym___fastcall] = ACTIONS(2860), + [anon_sym___thiscall] = ACTIONS(2860), + [anon_sym___vectorcall] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_explicit] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_operator] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_static_assert] = ACTIONS(2860), + [anon_sym_concept] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, [717] = { - [sym_identifier] = ACTIONS(2933), - [aux_sym_preproc_include_token1] = ACTIONS(2933), - [aux_sym_preproc_def_token1] = ACTIONS(2933), - [aux_sym_preproc_if_token1] = ACTIONS(2933), - [aux_sym_preproc_if_token2] = ACTIONS(2933), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2933), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2933), - [aux_sym_preproc_else_token1] = ACTIONS(2933), - [aux_sym_preproc_elif_token1] = ACTIONS(2933), - [sym_preproc_directive] = ACTIONS(2933), - [anon_sym_LPAREN2] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2933), - [anon_sym_SEMI] = ACTIONS(2935), - [anon_sym___extension__] = ACTIONS(2933), - [anon_sym_typedef] = ACTIONS(2933), - [anon_sym_extern] = ACTIONS(2933), - [anon_sym___attribute__] = ACTIONS(2933), - [anon_sym_COLON_COLON] = ACTIONS(2935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), - [anon_sym___declspec] = ACTIONS(2933), - [anon_sym___based] = ACTIONS(2933), - [anon_sym___cdecl] = ACTIONS(2933), - [anon_sym___clrcall] = ACTIONS(2933), - [anon_sym___stdcall] = ACTIONS(2933), - [anon_sym___fastcall] = ACTIONS(2933), - [anon_sym___thiscall] = ACTIONS(2933), - [anon_sym___vectorcall] = ACTIONS(2933), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_signed] = ACTIONS(2933), - [anon_sym_unsigned] = ACTIONS(2933), - [anon_sym_long] = ACTIONS(2933), - [anon_sym_short] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_static] = ACTIONS(2933), - [anon_sym_register] = ACTIONS(2933), - [anon_sym_inline] = ACTIONS(2933), - [anon_sym___inline] = ACTIONS(2933), - [anon_sym___inline__] = ACTIONS(2933), - [anon_sym___forceinline] = ACTIONS(2933), - [anon_sym_thread_local] = ACTIONS(2933), - [anon_sym___thread] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2933), - [anon_sym_constexpr] = ACTIONS(2933), - [anon_sym_volatile] = ACTIONS(2933), - [anon_sym_restrict] = ACTIONS(2933), - [anon_sym___restrict__] = ACTIONS(2933), - [anon_sym__Atomic] = ACTIONS(2933), - [anon_sym__Noreturn] = ACTIONS(2933), - [anon_sym_noreturn] = ACTIONS(2933), - [anon_sym_mutable] = ACTIONS(2933), - [anon_sym_constinit] = ACTIONS(2933), - [anon_sym_consteval] = ACTIONS(2933), - [sym_primitive_type] = ACTIONS(2933), - [anon_sym_enum] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2933), - [anon_sym_union] = ACTIONS(2933), - [anon_sym_if] = ACTIONS(2933), - [anon_sym_else] = ACTIONS(2933), - [anon_sym_switch] = ACTIONS(2933), - [anon_sym_case] = ACTIONS(2933), - [anon_sym_default] = ACTIONS(2933), - [anon_sym_while] = ACTIONS(2933), - [anon_sym_do] = ACTIONS(2933), - [anon_sym_for] = ACTIONS(2933), - [anon_sym_return] = ACTIONS(2933), - [anon_sym_break] = ACTIONS(2933), - [anon_sym_continue] = ACTIONS(2933), - [anon_sym_goto] = ACTIONS(2933), - [anon_sym_not] = ACTIONS(2933), - [anon_sym_compl] = ACTIONS(2933), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_sizeof] = ACTIONS(2933), - [anon_sym___alignof__] = ACTIONS(2933), - [anon_sym___alignof] = ACTIONS(2933), - [anon_sym__alignof] = ACTIONS(2933), - [anon_sym_alignof] = ACTIONS(2933), - [anon_sym__Alignof] = ACTIONS(2933), - [anon_sym_offsetof] = ACTIONS(2933), - [anon_sym__Generic] = ACTIONS(2933), - [anon_sym_asm] = ACTIONS(2933), - [anon_sym___asm__] = ACTIONS(2933), - [sym_number_literal] = ACTIONS(2935), - [anon_sym_L_SQUOTE] = ACTIONS(2935), - [anon_sym_u_SQUOTE] = ACTIONS(2935), - [anon_sym_U_SQUOTE] = ACTIONS(2935), - [anon_sym_u8_SQUOTE] = ACTIONS(2935), - [anon_sym_SQUOTE] = ACTIONS(2935), - [anon_sym_L_DQUOTE] = ACTIONS(2935), - [anon_sym_u_DQUOTE] = ACTIONS(2935), - [anon_sym_U_DQUOTE] = ACTIONS(2935), - [anon_sym_u8_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [sym_true] = ACTIONS(2933), - [sym_false] = ACTIONS(2933), - [anon_sym_NULL] = ACTIONS(2933), - [anon_sym_nullptr] = ACTIONS(2933), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2933), - [anon_sym_decltype] = ACTIONS(2933), - [anon_sym_virtual] = ACTIONS(2933), - [anon_sym_alignas] = ACTIONS(2933), - [anon_sym_explicit] = ACTIONS(2933), - [anon_sym_typename] = ACTIONS(2933), - [anon_sym_template] = ACTIONS(2933), - [anon_sym_operator] = ACTIONS(2933), - [anon_sym_try] = ACTIONS(2933), - [anon_sym_delete] = ACTIONS(2933), - [anon_sym_throw] = ACTIONS(2933), - [anon_sym_namespace] = ACTIONS(2933), - [anon_sym_using] = ACTIONS(2933), - [anon_sym_static_assert] = ACTIONS(2933), - [anon_sym_concept] = ACTIONS(2933), - [anon_sym_co_return] = ACTIONS(2933), - [anon_sym_co_yield] = ACTIONS(2933), - [anon_sym_R_DQUOTE] = ACTIONS(2935), - [anon_sym_LR_DQUOTE] = ACTIONS(2935), - [anon_sym_uR_DQUOTE] = ACTIONS(2935), - [anon_sym_UR_DQUOTE] = ACTIONS(2935), - [anon_sym_u8R_DQUOTE] = ACTIONS(2935), - [anon_sym_co_await] = ACTIONS(2933), - [anon_sym_new] = ACTIONS(2933), - [anon_sym_requires] = ACTIONS(2933), - [sym_this] = ACTIONS(2933), - }, - [718] = { - [sym_identifier] = ACTIONS(2929), - [aux_sym_preproc_include_token1] = ACTIONS(2929), - [aux_sym_preproc_def_token1] = ACTIONS(2929), - [aux_sym_preproc_if_token1] = ACTIONS(2929), - [aux_sym_preproc_if_token2] = ACTIONS(2929), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2929), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2929), - [aux_sym_preproc_else_token1] = ACTIONS(2929), - [aux_sym_preproc_elif_token1] = ACTIONS(2929), - [sym_preproc_directive] = ACTIONS(2929), - [anon_sym_LPAREN2] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2929), - [anon_sym_PLUS] = ACTIONS(2929), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_SEMI] = ACTIONS(2931), - [anon_sym___extension__] = ACTIONS(2929), - [anon_sym_typedef] = ACTIONS(2929), - [anon_sym_extern] = ACTIONS(2929), - [anon_sym___attribute__] = ACTIONS(2929), - [anon_sym_COLON_COLON] = ACTIONS(2931), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2931), - [anon_sym___declspec] = ACTIONS(2929), - [anon_sym___based] = ACTIONS(2929), - [anon_sym___cdecl] = ACTIONS(2929), - [anon_sym___clrcall] = ACTIONS(2929), - [anon_sym___stdcall] = ACTIONS(2929), - [anon_sym___fastcall] = ACTIONS(2929), - [anon_sym___thiscall] = ACTIONS(2929), - [anon_sym___vectorcall] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_signed] = ACTIONS(2929), - [anon_sym_unsigned] = ACTIONS(2929), - [anon_sym_long] = ACTIONS(2929), - [anon_sym_short] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_static] = ACTIONS(2929), - [anon_sym_register] = ACTIONS(2929), - [anon_sym_inline] = ACTIONS(2929), - [anon_sym___inline] = ACTIONS(2929), - [anon_sym___inline__] = ACTIONS(2929), - [anon_sym___forceinline] = ACTIONS(2929), - [anon_sym_thread_local] = ACTIONS(2929), - [anon_sym___thread] = ACTIONS(2929), - [anon_sym_const] = ACTIONS(2929), - [anon_sym_constexpr] = ACTIONS(2929), - [anon_sym_volatile] = ACTIONS(2929), - [anon_sym_restrict] = ACTIONS(2929), - [anon_sym___restrict__] = ACTIONS(2929), - [anon_sym__Atomic] = ACTIONS(2929), - [anon_sym__Noreturn] = ACTIONS(2929), - [anon_sym_noreturn] = ACTIONS(2929), - [anon_sym_mutable] = ACTIONS(2929), - [anon_sym_constinit] = ACTIONS(2929), - [anon_sym_consteval] = ACTIONS(2929), - [sym_primitive_type] = ACTIONS(2929), - [anon_sym_enum] = ACTIONS(2929), - [anon_sym_class] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2929), - [anon_sym_union] = ACTIONS(2929), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_else] = ACTIONS(2929), - [anon_sym_switch] = ACTIONS(2929), - [anon_sym_case] = ACTIONS(2929), - [anon_sym_default] = ACTIONS(2929), - [anon_sym_while] = ACTIONS(2929), - [anon_sym_do] = ACTIONS(2929), - [anon_sym_for] = ACTIONS(2929), - [anon_sym_return] = ACTIONS(2929), - [anon_sym_break] = ACTIONS(2929), - [anon_sym_continue] = ACTIONS(2929), - [anon_sym_goto] = ACTIONS(2929), - [anon_sym_not] = ACTIONS(2929), - [anon_sym_compl] = ACTIONS(2929), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_sizeof] = ACTIONS(2929), - [anon_sym___alignof__] = ACTIONS(2929), - [anon_sym___alignof] = ACTIONS(2929), - [anon_sym__alignof] = ACTIONS(2929), - [anon_sym_alignof] = ACTIONS(2929), - [anon_sym__Alignof] = ACTIONS(2929), - [anon_sym_offsetof] = ACTIONS(2929), - [anon_sym__Generic] = ACTIONS(2929), - [anon_sym_asm] = ACTIONS(2929), - [anon_sym___asm__] = ACTIONS(2929), - [sym_number_literal] = ACTIONS(2931), - [anon_sym_L_SQUOTE] = ACTIONS(2931), - [anon_sym_u_SQUOTE] = ACTIONS(2931), - [anon_sym_U_SQUOTE] = ACTIONS(2931), - [anon_sym_u8_SQUOTE] = ACTIONS(2931), - [anon_sym_SQUOTE] = ACTIONS(2931), - [anon_sym_L_DQUOTE] = ACTIONS(2931), - [anon_sym_u_DQUOTE] = ACTIONS(2931), - [anon_sym_U_DQUOTE] = ACTIONS(2931), - [anon_sym_u8_DQUOTE] = ACTIONS(2931), - [anon_sym_DQUOTE] = ACTIONS(2931), - [sym_true] = ACTIONS(2929), - [sym_false] = ACTIONS(2929), - [anon_sym_NULL] = ACTIONS(2929), - [anon_sym_nullptr] = ACTIONS(2929), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2929), - [anon_sym_decltype] = ACTIONS(2929), - [anon_sym_virtual] = ACTIONS(2929), - [anon_sym_alignas] = ACTIONS(2929), - [anon_sym_explicit] = ACTIONS(2929), - [anon_sym_typename] = ACTIONS(2929), - [anon_sym_template] = ACTIONS(2929), - [anon_sym_operator] = ACTIONS(2929), - [anon_sym_try] = ACTIONS(2929), - [anon_sym_delete] = ACTIONS(2929), - [anon_sym_throw] = ACTIONS(2929), - [anon_sym_namespace] = ACTIONS(2929), - [anon_sym_using] = ACTIONS(2929), - [anon_sym_static_assert] = ACTIONS(2929), - [anon_sym_concept] = ACTIONS(2929), - [anon_sym_co_return] = ACTIONS(2929), - [anon_sym_co_yield] = ACTIONS(2929), - [anon_sym_R_DQUOTE] = ACTIONS(2931), - [anon_sym_LR_DQUOTE] = ACTIONS(2931), - [anon_sym_uR_DQUOTE] = ACTIONS(2931), - [anon_sym_UR_DQUOTE] = ACTIONS(2931), - [anon_sym_u8R_DQUOTE] = ACTIONS(2931), - [anon_sym_co_await] = ACTIONS(2929), - [anon_sym_new] = ACTIONS(2929), - [anon_sym_requires] = ACTIONS(2929), - [sym_this] = ACTIONS(2929), - }, - [719] = { - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3506), - [anon_sym_extern] = ACTIONS(3506), - [anon_sym___attribute__] = ACTIONS(3506), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3508), - [anon_sym___declspec] = ACTIONS(3506), - [anon_sym_signed] = ACTIONS(3506), - [anon_sym_unsigned] = ACTIONS(3506), - [anon_sym_long] = ACTIONS(3506), - [anon_sym_short] = ACTIONS(3506), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(3506), - [anon_sym_register] = ACTIONS(3506), - [anon_sym_inline] = ACTIONS(3506), - [anon_sym___inline] = ACTIONS(3506), - [anon_sym___inline__] = ACTIONS(3506), - [anon_sym___forceinline] = ACTIONS(3506), - [anon_sym_thread_local] = ACTIONS(3506), - [anon_sym___thread] = ACTIONS(3506), - [anon_sym_const] = ACTIONS(3506), - [anon_sym_constexpr] = ACTIONS(3506), - [anon_sym_volatile] = ACTIONS(3506), - [anon_sym_restrict] = ACTIONS(3506), - [anon_sym___restrict__] = ACTIONS(3506), - [anon_sym__Atomic] = ACTIONS(3506), - [anon_sym__Noreturn] = ACTIONS(3506), - [anon_sym_noreturn] = ACTIONS(3506), - [anon_sym_mutable] = ACTIONS(3506), - [anon_sym_constinit] = ACTIONS(3506), - [anon_sym_consteval] = ACTIONS(3506), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(3506), - [anon_sym_class] = ACTIONS(3506), - [anon_sym_struct] = ACTIONS(3506), - [anon_sym_union] = ACTIONS(3506), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3506), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_virtual] = ACTIONS(3506), - [anon_sym_alignas] = ACTIONS(3506), - [anon_sym_typename] = ACTIONS(3506), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [720] = { - [sym_identifier] = ACTIONS(2921), - [aux_sym_preproc_include_token1] = ACTIONS(2921), - [aux_sym_preproc_def_token1] = ACTIONS(2921), - [aux_sym_preproc_if_token1] = ACTIONS(2921), - [aux_sym_preproc_if_token2] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2921), - [aux_sym_preproc_else_token1] = ACTIONS(2921), - [aux_sym_preproc_elif_token1] = ACTIONS(2921), - [sym_preproc_directive] = ACTIONS(2921), - [anon_sym_LPAREN2] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_SEMI] = ACTIONS(2923), - [anon_sym___extension__] = ACTIONS(2921), - [anon_sym_typedef] = ACTIONS(2921), - [anon_sym_extern] = ACTIONS(2921), - [anon_sym___attribute__] = ACTIONS(2921), - [anon_sym_COLON_COLON] = ACTIONS(2923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2923), - [anon_sym___declspec] = ACTIONS(2921), - [anon_sym___based] = ACTIONS(2921), - [anon_sym___cdecl] = ACTIONS(2921), - [anon_sym___clrcall] = ACTIONS(2921), - [anon_sym___stdcall] = ACTIONS(2921), - [anon_sym___fastcall] = ACTIONS(2921), - [anon_sym___thiscall] = ACTIONS(2921), - [anon_sym___vectorcall] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_signed] = ACTIONS(2921), - [anon_sym_unsigned] = ACTIONS(2921), - [anon_sym_long] = ACTIONS(2921), - [anon_sym_short] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(2921), - [anon_sym_register] = ACTIONS(2921), - [anon_sym_inline] = ACTIONS(2921), - [anon_sym___inline] = ACTIONS(2921), - [anon_sym___inline__] = ACTIONS(2921), - [anon_sym___forceinline] = ACTIONS(2921), - [anon_sym_thread_local] = ACTIONS(2921), - [anon_sym___thread] = ACTIONS(2921), - [anon_sym_const] = ACTIONS(2921), - [anon_sym_constexpr] = ACTIONS(2921), - [anon_sym_volatile] = ACTIONS(2921), - [anon_sym_restrict] = ACTIONS(2921), - [anon_sym___restrict__] = ACTIONS(2921), - [anon_sym__Atomic] = ACTIONS(2921), - [anon_sym__Noreturn] = ACTIONS(2921), - [anon_sym_noreturn] = ACTIONS(2921), - [anon_sym_mutable] = ACTIONS(2921), - [anon_sym_constinit] = ACTIONS(2921), - [anon_sym_consteval] = ACTIONS(2921), - [sym_primitive_type] = ACTIONS(2921), - [anon_sym_enum] = ACTIONS(2921), - [anon_sym_class] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_union] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_else] = ACTIONS(2921), - [anon_sym_switch] = ACTIONS(2921), - [anon_sym_case] = ACTIONS(2921), - [anon_sym_default] = ACTIONS(2921), - [anon_sym_while] = ACTIONS(2921), - [anon_sym_do] = ACTIONS(2921), - [anon_sym_for] = ACTIONS(2921), - [anon_sym_return] = ACTIONS(2921), - [anon_sym_break] = ACTIONS(2921), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2921), - [anon_sym_not] = ACTIONS(2921), - [anon_sym_compl] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2923), - [anon_sym_sizeof] = ACTIONS(2921), - [anon_sym___alignof__] = ACTIONS(2921), - [anon_sym___alignof] = ACTIONS(2921), - [anon_sym__alignof] = ACTIONS(2921), - [anon_sym_alignof] = ACTIONS(2921), - [anon_sym__Alignof] = ACTIONS(2921), - [anon_sym_offsetof] = ACTIONS(2921), - [anon_sym__Generic] = ACTIONS(2921), - [anon_sym_asm] = ACTIONS(2921), - [anon_sym___asm__] = ACTIONS(2921), - [sym_number_literal] = ACTIONS(2923), - [anon_sym_L_SQUOTE] = ACTIONS(2923), - [anon_sym_u_SQUOTE] = ACTIONS(2923), - [anon_sym_U_SQUOTE] = ACTIONS(2923), - [anon_sym_u8_SQUOTE] = ACTIONS(2923), - [anon_sym_SQUOTE] = ACTIONS(2923), - [anon_sym_L_DQUOTE] = ACTIONS(2923), - [anon_sym_u_DQUOTE] = ACTIONS(2923), - [anon_sym_U_DQUOTE] = ACTIONS(2923), - [anon_sym_u8_DQUOTE] = ACTIONS(2923), - [anon_sym_DQUOTE] = ACTIONS(2923), - [sym_true] = ACTIONS(2921), - [sym_false] = ACTIONS(2921), - [anon_sym_NULL] = ACTIONS(2921), - [anon_sym_nullptr] = ACTIONS(2921), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2921), - [anon_sym_decltype] = ACTIONS(2921), - [anon_sym_virtual] = ACTIONS(2921), - [anon_sym_alignas] = ACTIONS(2921), - [anon_sym_explicit] = ACTIONS(2921), - [anon_sym_typename] = ACTIONS(2921), - [anon_sym_template] = ACTIONS(2921), - [anon_sym_operator] = ACTIONS(2921), - [anon_sym_try] = ACTIONS(2921), - [anon_sym_delete] = ACTIONS(2921), - [anon_sym_throw] = ACTIONS(2921), - [anon_sym_namespace] = ACTIONS(2921), - [anon_sym_using] = ACTIONS(2921), - [anon_sym_static_assert] = ACTIONS(2921), - [anon_sym_concept] = ACTIONS(2921), - [anon_sym_co_return] = ACTIONS(2921), - [anon_sym_co_yield] = ACTIONS(2921), - [anon_sym_R_DQUOTE] = ACTIONS(2923), - [anon_sym_LR_DQUOTE] = ACTIONS(2923), - [anon_sym_uR_DQUOTE] = ACTIONS(2923), - [anon_sym_UR_DQUOTE] = ACTIONS(2923), - [anon_sym_u8R_DQUOTE] = ACTIONS(2923), - [anon_sym_co_await] = ACTIONS(2921), - [anon_sym_new] = ACTIONS(2921), - [anon_sym_requires] = ACTIONS(2921), - [sym_this] = ACTIONS(2921), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [721] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [718] = { + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [722] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [719] = { + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [723] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [720] = { + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [724] = { - [sym_preproc_def] = STATE(1130), - [sym_preproc_function_def] = STATE(1130), - [sym_preproc_call] = STATE(1130), - [sym_preproc_if_in_field_declaration_list] = STATE(1130), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1130), - [sym_preproc_else_in_field_declaration_list] = STATE(9072), - [sym_preproc_elif_in_field_declaration_list] = STATE(9072), - [sym_type_definition] = STATE(1130), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6371), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6947), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1130), - [sym_field_declaration] = STATE(1130), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2398), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1130), - [sym_operator_cast] = STATE(7504), - [sym_inline_method_definition] = STATE(1130), - [sym__constructor_specifiers] = STATE(2398), - [sym_operator_cast_definition] = STATE(1130), - [sym_operator_cast_declaration] = STATE(1130), - [sym_constructor_or_destructor_definition] = STATE(1130), - [sym_constructor_or_destructor_declaration] = STATE(1130), - [sym_friend_declaration] = STATE(1130), - [sym_access_specifier] = STATE(9393), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1130), - [sym_alias_declaration] = STATE(1130), - [sym_static_assert_declaration] = STATE(1130), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7504), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1130), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2398), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3462), - [aux_sym_preproc_if_token1] = ACTIONS(3464), - [aux_sym_preproc_if_token2] = ACTIONS(3510), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3468), - [aux_sym_preproc_else_token1] = ACTIONS(2697), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3472), - [anon_sym_typedef] = ACTIONS(3474), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), + [721] = { + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3476), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3478), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3480), - [anon_sym_static_assert] = ACTIONS(3482), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [725] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - }, - [726] = { - [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_preproc_else_in_field_declaration_list] = STATE(8873), - [sym_preproc_elif_in_field_declaration_list] = STATE(8873), - [sym_type_definition] = STATE(689), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6371), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6947), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(689), - [sym_field_declaration] = STATE(689), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2398), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(689), - [sym_operator_cast] = STATE(7504), - [sym_inline_method_definition] = STATE(689), - [sym__constructor_specifiers] = STATE(2398), - [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(9393), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(689), - [sym_alias_declaration] = STATE(689), - [sym_static_assert_declaration] = STATE(689), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7504), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(689), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2398), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3462), - [aux_sym_preproc_if_token1] = ACTIONS(3464), - [aux_sym_preproc_if_token2] = ACTIONS(3512), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3468), - [aux_sym_preproc_else_token1] = ACTIONS(2697), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3472), - [anon_sym_typedef] = ACTIONS(3474), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3476), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3478), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3480), - [anon_sym_static_assert] = ACTIONS(3482), - }, - [727] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [722] = { + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [728] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [723] = { + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [729] = { - [sym_preproc_def] = STATE(1130), - [sym_preproc_function_def] = STATE(1130), - [sym_preproc_call] = STATE(1130), - [sym_preproc_if_in_field_declaration_list] = STATE(1130), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1130), - [sym_preproc_else_in_field_declaration_list] = STATE(9289), - [sym_preproc_elif_in_field_declaration_list] = STATE(9289), - [sym_type_definition] = STATE(1130), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6371), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6947), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1130), - [sym_field_declaration] = STATE(1130), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2398), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1130), - [sym_operator_cast] = STATE(7504), - [sym_inline_method_definition] = STATE(1130), - [sym__constructor_specifiers] = STATE(2398), - [sym_operator_cast_definition] = STATE(1130), - [sym_operator_cast_declaration] = STATE(1130), - [sym_constructor_or_destructor_definition] = STATE(1130), - [sym_constructor_or_destructor_declaration] = STATE(1130), - [sym_friend_declaration] = STATE(1130), - [sym_access_specifier] = STATE(9393), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1130), - [sym_alias_declaration] = STATE(1130), - [sym_static_assert_declaration] = STATE(1130), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7504), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1130), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2398), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3462), - [aux_sym_preproc_if_token1] = ACTIONS(3464), - [aux_sym_preproc_if_token2] = ACTIONS(3514), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3468), - [aux_sym_preproc_else_token1] = ACTIONS(2697), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3472), - [anon_sym_typedef] = ACTIONS(3474), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), + [724] = { + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3476), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3478), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3480), - [anon_sym_static_assert] = ACTIONS(3482), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [730] = { - [sym_preproc_def] = STATE(617), - [sym_preproc_function_def] = STATE(617), - [sym_preproc_call] = STATE(617), - [sym_preproc_if_in_field_declaration_list] = STATE(617), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(617), - [sym_preproc_else_in_field_declaration_list] = STATE(9596), - [sym_preproc_elif_in_field_declaration_list] = STATE(9596), - [sym_type_definition] = STATE(617), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6371), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6947), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(617), - [sym_field_declaration] = STATE(617), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2398), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(617), - [sym_operator_cast] = STATE(7504), - [sym_inline_method_definition] = STATE(617), - [sym__constructor_specifiers] = STATE(2398), - [sym_operator_cast_definition] = STATE(617), - [sym_operator_cast_declaration] = STATE(617), - [sym_constructor_or_destructor_definition] = STATE(617), - [sym_constructor_or_destructor_declaration] = STATE(617), - [sym_friend_declaration] = STATE(617), - [sym_access_specifier] = STATE(9393), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(617), - [sym_alias_declaration] = STATE(617), - [sym_static_assert_declaration] = STATE(617), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7504), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(617), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2398), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3462), - [aux_sym_preproc_if_token1] = ACTIONS(3464), - [aux_sym_preproc_if_token2] = ACTIONS(3516), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3468), - [aux_sym_preproc_else_token1] = ACTIONS(2697), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3472), - [anon_sym_typedef] = ACTIONS(3474), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), + [725] = { + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3476), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3478), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3480), - [anon_sym_static_assert] = ACTIONS(3482), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [731] = { - [sym_identifier] = ACTIONS(2818), - [aux_sym_preproc_include_token1] = ACTIONS(2818), - [aux_sym_preproc_def_token1] = ACTIONS(2818), - [aux_sym_preproc_if_token1] = ACTIONS(2818), - [aux_sym_preproc_if_token2] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2818), - [aux_sym_preproc_else_token1] = ACTIONS(2818), - [aux_sym_preproc_elif_token1] = ACTIONS(2818), - [sym_preproc_directive] = ACTIONS(2818), - [anon_sym_LPAREN2] = ACTIONS(2823), - [anon_sym_BANG] = ACTIONS(2823), - [anon_sym_TILDE] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2823), - [anon_sym_AMP_AMP] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2823), - [anon_sym___extension__] = ACTIONS(2818), - [anon_sym_typedef] = ACTIONS(2818), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym___attribute__] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), - [anon_sym___declspec] = ACTIONS(2818), - [anon_sym___based] = ACTIONS(2818), - [anon_sym___cdecl] = ACTIONS(2818), - [anon_sym___clrcall] = ACTIONS(2818), - [anon_sym___stdcall] = ACTIONS(2818), - [anon_sym___fastcall] = ACTIONS(2818), - [anon_sym___thiscall] = ACTIONS(2818), - [anon_sym___vectorcall] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym___inline] = ACTIONS(2818), - [anon_sym___inline__] = ACTIONS(2818), - [anon_sym___forceinline] = ACTIONS(2818), - [anon_sym_thread_local] = ACTIONS(2818), - [anon_sym___thread] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_restrict] = ACTIONS(2818), - [anon_sym___restrict__] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [anon_sym__Noreturn] = ACTIONS(2818), - [anon_sym_noreturn] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [anon_sym_constinit] = ACTIONS(2818), - [anon_sym_consteval] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_else] = ACTIONS(2818), - [anon_sym_switch] = ACTIONS(2818), - [anon_sym_case] = ACTIONS(2818), - [anon_sym_default] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [anon_sym_goto] = ACTIONS(2818), - [anon_sym_not] = ACTIONS(2818), - [anon_sym_compl] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2823), - [anon_sym_PLUS_PLUS] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2818), - [anon_sym___alignof__] = ACTIONS(2818), - [anon_sym___alignof] = ACTIONS(2818), - [anon_sym__alignof] = ACTIONS(2818), - [anon_sym_alignof] = ACTIONS(2818), - [anon_sym__Alignof] = ACTIONS(2818), - [anon_sym_offsetof] = ACTIONS(2818), - [anon_sym__Generic] = ACTIONS(2818), - [anon_sym_asm] = ACTIONS(2818), - [anon_sym___asm__] = ACTIONS(2818), - [sym_number_literal] = ACTIONS(2823), - [anon_sym_L_SQUOTE] = ACTIONS(2823), - [anon_sym_u_SQUOTE] = ACTIONS(2823), - [anon_sym_U_SQUOTE] = ACTIONS(2823), - [anon_sym_u8_SQUOTE] = ACTIONS(2823), - [anon_sym_SQUOTE] = ACTIONS(2823), - [anon_sym_L_DQUOTE] = ACTIONS(2823), - [anon_sym_u_DQUOTE] = ACTIONS(2823), - [anon_sym_U_DQUOTE] = ACTIONS(2823), - [anon_sym_u8_DQUOTE] = ACTIONS(2823), - [anon_sym_DQUOTE] = ACTIONS(2823), - [sym_true] = ACTIONS(2818), - [sym_false] = ACTIONS(2818), - [anon_sym_NULL] = ACTIONS(2818), - [anon_sym_nullptr] = ACTIONS(2818), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2818), - [anon_sym_decltype] = ACTIONS(2818), - [anon_sym_virtual] = ACTIONS(2818), - [anon_sym_alignas] = ACTIONS(2818), - [anon_sym_explicit] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_template] = ACTIONS(2818), - [anon_sym_operator] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_delete] = ACTIONS(2818), - [anon_sym_throw] = ACTIONS(2818), - [anon_sym_namespace] = ACTIONS(2818), - [anon_sym_using] = ACTIONS(2818), - [anon_sym_static_assert] = ACTIONS(2818), - [anon_sym_concept] = ACTIONS(2818), - [anon_sym_co_return] = ACTIONS(2818), - [anon_sym_co_yield] = ACTIONS(2818), - [anon_sym_R_DQUOTE] = ACTIONS(2823), - [anon_sym_LR_DQUOTE] = ACTIONS(2823), - [anon_sym_uR_DQUOTE] = ACTIONS(2823), - [anon_sym_UR_DQUOTE] = ACTIONS(2823), - [anon_sym_u8R_DQUOTE] = ACTIONS(2823), - [anon_sym_co_await] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_requires] = ACTIONS(2818), - [sym_this] = ACTIONS(2818), + [726] = { + [sym_identifier] = ACTIONS(2856), + [aux_sym_preproc_include_token1] = ACTIONS(2856), + [aux_sym_preproc_def_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token2] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2856), + [sym_preproc_directive] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_AMP_AMP] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym___extension__] = ACTIONS(2856), + [anon_sym_typedef] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym___attribute__] = ACTIONS(2856), + [anon_sym_COLON_COLON] = ACTIONS(2858), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), + [anon_sym___declspec] = ACTIONS(2856), + [anon_sym___based] = ACTIONS(2856), + [anon_sym___cdecl] = ACTIONS(2856), + [anon_sym___clrcall] = ACTIONS(2856), + [anon_sym___stdcall] = ACTIONS(2856), + [anon_sym___fastcall] = ACTIONS(2856), + [anon_sym___thiscall] = ACTIONS(2856), + [anon_sym___vectorcall] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_signed] = ACTIONS(2856), + [anon_sym_unsigned] = ACTIONS(2856), + [anon_sym_long] = ACTIONS(2856), + [anon_sym_short] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_register] = ACTIONS(2856), + [anon_sym_inline] = ACTIONS(2856), + [anon_sym___inline] = ACTIONS(2856), + [anon_sym___inline__] = ACTIONS(2856), + [anon_sym___forceinline] = ACTIONS(2856), + [anon_sym_thread_local] = ACTIONS(2856), + [anon_sym___thread] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_constexpr] = ACTIONS(2856), + [anon_sym_volatile] = ACTIONS(2856), + [anon_sym_restrict] = ACTIONS(2856), + [anon_sym___restrict__] = ACTIONS(2856), + [anon_sym__Atomic] = ACTIONS(2856), + [anon_sym__Noreturn] = ACTIONS(2856), + [anon_sym_noreturn] = ACTIONS(2856), + [anon_sym_mutable] = ACTIONS(2856), + [anon_sym_constinit] = ACTIONS(2856), + [anon_sym_consteval] = ACTIONS(2856), + [sym_primitive_type] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_class] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_else] = ACTIONS(2856), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_case] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_goto] = ACTIONS(2856), + [anon_sym_not] = ACTIONS(2856), + [anon_sym_compl] = ACTIONS(2856), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_sizeof] = ACTIONS(2856), + [anon_sym___alignof__] = ACTIONS(2856), + [anon_sym___alignof] = ACTIONS(2856), + [anon_sym__alignof] = ACTIONS(2856), + [anon_sym_alignof] = ACTIONS(2856), + [anon_sym__Alignof] = ACTIONS(2856), + [anon_sym_offsetof] = ACTIONS(2856), + [anon_sym__Generic] = ACTIONS(2856), + [anon_sym_asm] = ACTIONS(2856), + [anon_sym___asm__] = ACTIONS(2856), + [sym_number_literal] = ACTIONS(2858), + [anon_sym_L_SQUOTE] = ACTIONS(2858), + [anon_sym_u_SQUOTE] = ACTIONS(2858), + [anon_sym_U_SQUOTE] = ACTIONS(2858), + [anon_sym_u8_SQUOTE] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_L_DQUOTE] = ACTIONS(2858), + [anon_sym_u_DQUOTE] = ACTIONS(2858), + [anon_sym_U_DQUOTE] = ACTIONS(2858), + [anon_sym_u8_DQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(2858), + [sym_true] = ACTIONS(2856), + [sym_false] = ACTIONS(2856), + [anon_sym_NULL] = ACTIONS(2856), + [anon_sym_nullptr] = ACTIONS(2856), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2856), + [anon_sym_decltype] = ACTIONS(2856), + [anon_sym_virtual] = ACTIONS(2856), + [anon_sym_alignas] = ACTIONS(2856), + [anon_sym_explicit] = ACTIONS(2856), + [anon_sym_typename] = ACTIONS(2856), + [anon_sym_template] = ACTIONS(2856), + [anon_sym_operator] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_delete] = ACTIONS(2856), + [anon_sym_throw] = ACTIONS(2856), + [anon_sym_namespace] = ACTIONS(2856), + [anon_sym_using] = ACTIONS(2856), + [anon_sym_static_assert] = ACTIONS(2856), + [anon_sym_concept] = ACTIONS(2856), + [anon_sym_co_return] = ACTIONS(2856), + [anon_sym_co_yield] = ACTIONS(2856), + [anon_sym_R_DQUOTE] = ACTIONS(2858), + [anon_sym_LR_DQUOTE] = ACTIONS(2858), + [anon_sym_uR_DQUOTE] = ACTIONS(2858), + [anon_sym_UR_DQUOTE] = ACTIONS(2858), + [anon_sym_u8R_DQUOTE] = ACTIONS(2858), + [anon_sym_co_await] = ACTIONS(2856), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_requires] = ACTIONS(2856), + [sym_this] = ACTIONS(2856), }, - [732] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [727] = { + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [733] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [728] = { + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - }, - [734] = { - [sym_catch_clause] = STATE(539), - [aux_sym_constructor_try_statement_repeat1] = STATE(539), - [sym_identifier] = ACTIONS(2563), - [aux_sym_preproc_include_token1] = ACTIONS(2563), - [aux_sym_preproc_def_token1] = ACTIONS(2563), - [aux_sym_preproc_if_token1] = ACTIONS(2563), - [aux_sym_preproc_if_token2] = ACTIONS(2563), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2563), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2563), - [sym_preproc_directive] = ACTIONS(2563), - [anon_sym_LPAREN2] = ACTIONS(2565), - [anon_sym_BANG] = ACTIONS(2565), - [anon_sym_TILDE] = ACTIONS(2565), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_STAR] = ACTIONS(2565), - [anon_sym_AMP_AMP] = ACTIONS(2565), - [anon_sym_AMP] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2565), - [anon_sym___extension__] = ACTIONS(2563), - [anon_sym_typedef] = ACTIONS(2563), - [anon_sym_extern] = ACTIONS(2563), - [anon_sym___attribute__] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2565), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), - [anon_sym___declspec] = ACTIONS(2563), - [anon_sym___based] = ACTIONS(2563), - [anon_sym___cdecl] = ACTIONS(2563), - [anon_sym___clrcall] = ACTIONS(2563), - [anon_sym___stdcall] = ACTIONS(2563), - [anon_sym___fastcall] = ACTIONS(2563), - [anon_sym___thiscall] = ACTIONS(2563), - [anon_sym___vectorcall] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2565), - [anon_sym_signed] = ACTIONS(2563), - [anon_sym_unsigned] = ACTIONS(2563), - [anon_sym_long] = ACTIONS(2563), - [anon_sym_short] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(2563), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2563), - [anon_sym_inline] = ACTIONS(2563), - [anon_sym___inline] = ACTIONS(2563), - [anon_sym___inline__] = ACTIONS(2563), - [anon_sym___forceinline] = ACTIONS(2563), - [anon_sym_thread_local] = ACTIONS(2563), - [anon_sym___thread] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_constexpr] = ACTIONS(2563), - [anon_sym_volatile] = ACTIONS(2563), - [anon_sym_restrict] = ACTIONS(2563), - [anon_sym___restrict__] = ACTIONS(2563), - [anon_sym__Atomic] = ACTIONS(2563), - [anon_sym__Noreturn] = ACTIONS(2563), - [anon_sym_noreturn] = ACTIONS(2563), - [anon_sym_mutable] = ACTIONS(2563), - [anon_sym_constinit] = ACTIONS(2563), - [anon_sym_consteval] = ACTIONS(2563), - [sym_primitive_type] = ACTIONS(2563), - [anon_sym_enum] = ACTIONS(2563), - [anon_sym_class] = ACTIONS(2563), - [anon_sym_struct] = ACTIONS(2563), - [anon_sym_union] = ACTIONS(2563), - [anon_sym_if] = ACTIONS(2563), - [anon_sym_switch] = ACTIONS(2563), - [anon_sym_case] = ACTIONS(2563), - [anon_sym_default] = ACTIONS(2563), - [anon_sym_while] = ACTIONS(2563), - [anon_sym_do] = ACTIONS(2563), - [anon_sym_for] = ACTIONS(2563), - [anon_sym_return] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_goto] = ACTIONS(2563), - [anon_sym_not] = ACTIONS(2563), - [anon_sym_compl] = ACTIONS(2563), - [anon_sym_DASH_DASH] = ACTIONS(2565), - [anon_sym_PLUS_PLUS] = ACTIONS(2565), - [anon_sym_sizeof] = ACTIONS(2563), - [anon_sym___alignof__] = ACTIONS(2563), - [anon_sym___alignof] = ACTIONS(2563), - [anon_sym__alignof] = ACTIONS(2563), - [anon_sym_alignof] = ACTIONS(2563), - [anon_sym__Alignof] = ACTIONS(2563), - [anon_sym_offsetof] = ACTIONS(2563), - [anon_sym__Generic] = ACTIONS(2563), - [anon_sym_asm] = ACTIONS(2563), - [anon_sym___asm__] = ACTIONS(2563), - [sym_number_literal] = ACTIONS(2565), - [anon_sym_L_SQUOTE] = ACTIONS(2565), - [anon_sym_u_SQUOTE] = ACTIONS(2565), - [anon_sym_U_SQUOTE] = ACTIONS(2565), - [anon_sym_u8_SQUOTE] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2565), - [anon_sym_L_DQUOTE] = ACTIONS(2565), - [anon_sym_u_DQUOTE] = ACTIONS(2565), - [anon_sym_U_DQUOTE] = ACTIONS(2565), - [anon_sym_u8_DQUOTE] = ACTIONS(2565), - [anon_sym_DQUOTE] = ACTIONS(2565), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [anon_sym_NULL] = ACTIONS(2563), - [anon_sym_nullptr] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2563), - [anon_sym_decltype] = ACTIONS(2563), - [anon_sym_virtual] = ACTIONS(2563), - [anon_sym_alignas] = ACTIONS(2563), - [anon_sym_explicit] = ACTIONS(2563), - [anon_sym_typename] = ACTIONS(2563), - [anon_sym_template] = ACTIONS(2563), - [anon_sym_operator] = ACTIONS(2563), - [anon_sym_try] = ACTIONS(2563), - [anon_sym_delete] = ACTIONS(2563), - [anon_sym_throw] = ACTIONS(2563), - [anon_sym_namespace] = ACTIONS(2563), - [anon_sym_using] = ACTIONS(2563), - [anon_sym_static_assert] = ACTIONS(2563), - [anon_sym_concept] = ACTIONS(2563), - [anon_sym_co_return] = ACTIONS(2563), - [anon_sym_co_yield] = ACTIONS(2563), - [anon_sym_catch] = ACTIONS(3242), - [anon_sym_R_DQUOTE] = ACTIONS(2565), - [anon_sym_LR_DQUOTE] = ACTIONS(2565), - [anon_sym_uR_DQUOTE] = ACTIONS(2565), - [anon_sym_UR_DQUOTE] = ACTIONS(2565), - [anon_sym_u8R_DQUOTE] = ACTIONS(2565), - [anon_sym_co_await] = ACTIONS(2563), - [anon_sym_new] = ACTIONS(2563), - [anon_sym_requires] = ACTIONS(2563), - [sym_this] = ACTIONS(2563), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [735] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [729] = { + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [736] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [730] = { + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [737] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [731] = { + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), + }, + [732] = { + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), + }, + [733] = { + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), + }, + [734] = { + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), + }, + [735] = { + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), + }, + [736] = { + [sym_identifier] = ACTIONS(2840), + [aux_sym_preproc_include_token1] = ACTIONS(2840), + [aux_sym_preproc_def_token1] = ACTIONS(2840), + [aux_sym_preproc_if_token1] = ACTIONS(2840), + [aux_sym_preproc_if_token2] = ACTIONS(2840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2840), + [sym_preproc_directive] = ACTIONS(2840), + [anon_sym_LPAREN2] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_TILDE] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_AMP_AMP] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2840), + [anon_sym_SEMI] = ACTIONS(2842), + [anon_sym___extension__] = ACTIONS(2840), + [anon_sym_typedef] = ACTIONS(2840), + [anon_sym_extern] = ACTIONS(2840), + [anon_sym___attribute__] = ACTIONS(2840), + [anon_sym_COLON_COLON] = ACTIONS(2842), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2842), + [anon_sym___declspec] = ACTIONS(2840), + [anon_sym___based] = ACTIONS(2840), + [anon_sym___cdecl] = ACTIONS(2840), + [anon_sym___clrcall] = ACTIONS(2840), + [anon_sym___stdcall] = ACTIONS(2840), + [anon_sym___fastcall] = ACTIONS(2840), + [anon_sym___thiscall] = ACTIONS(2840), + [anon_sym___vectorcall] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_signed] = ACTIONS(2840), + [anon_sym_unsigned] = ACTIONS(2840), + [anon_sym_long] = ACTIONS(2840), + [anon_sym_short] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2840), + [anon_sym_static] = ACTIONS(2840), + [anon_sym_register] = ACTIONS(2840), + [anon_sym_inline] = ACTIONS(2840), + [anon_sym___inline] = ACTIONS(2840), + [anon_sym___inline__] = ACTIONS(2840), + [anon_sym___forceinline] = ACTIONS(2840), + [anon_sym_thread_local] = ACTIONS(2840), + [anon_sym___thread] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2840), + [anon_sym_constexpr] = ACTIONS(2840), + [anon_sym_volatile] = ACTIONS(2840), + [anon_sym_restrict] = ACTIONS(2840), + [anon_sym___restrict__] = ACTIONS(2840), + [anon_sym__Atomic] = ACTIONS(2840), + [anon_sym__Noreturn] = ACTIONS(2840), + [anon_sym_noreturn] = ACTIONS(2840), + [anon_sym_mutable] = ACTIONS(2840), + [anon_sym_constinit] = ACTIONS(2840), + [anon_sym_consteval] = ACTIONS(2840), + [sym_primitive_type] = ACTIONS(2840), + [anon_sym_enum] = ACTIONS(2840), + [anon_sym_class] = ACTIONS(2840), + [anon_sym_struct] = ACTIONS(2840), + [anon_sym_union] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_else] = ACTIONS(2840), + [anon_sym_switch] = ACTIONS(2840), + [anon_sym_case] = ACTIONS(2840), + [anon_sym_default] = ACTIONS(2840), + [anon_sym_while] = ACTIONS(2840), + [anon_sym_do] = ACTIONS(2840), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_goto] = ACTIONS(2840), + [anon_sym_not] = ACTIONS(2840), + [anon_sym_compl] = ACTIONS(2840), + [anon_sym_DASH_DASH] = ACTIONS(2842), + [anon_sym_PLUS_PLUS] = ACTIONS(2842), + [anon_sym_sizeof] = ACTIONS(2840), + [anon_sym___alignof__] = ACTIONS(2840), + [anon_sym___alignof] = ACTIONS(2840), + [anon_sym__alignof] = ACTIONS(2840), + [anon_sym_alignof] = ACTIONS(2840), + [anon_sym__Alignof] = ACTIONS(2840), + [anon_sym_offsetof] = ACTIONS(2840), + [anon_sym__Generic] = ACTIONS(2840), + [anon_sym_asm] = ACTIONS(2840), + [anon_sym___asm__] = ACTIONS(2840), + [sym_number_literal] = ACTIONS(2842), + [anon_sym_L_SQUOTE] = ACTIONS(2842), + [anon_sym_u_SQUOTE] = ACTIONS(2842), + [anon_sym_U_SQUOTE] = ACTIONS(2842), + [anon_sym_u8_SQUOTE] = ACTIONS(2842), + [anon_sym_SQUOTE] = ACTIONS(2842), + [anon_sym_L_DQUOTE] = ACTIONS(2842), + [anon_sym_u_DQUOTE] = ACTIONS(2842), + [anon_sym_U_DQUOTE] = ACTIONS(2842), + [anon_sym_u8_DQUOTE] = ACTIONS(2842), + [anon_sym_DQUOTE] = ACTIONS(2842), + [sym_true] = ACTIONS(2840), + [sym_false] = ACTIONS(2840), + [anon_sym_NULL] = ACTIONS(2840), + [anon_sym_nullptr] = ACTIONS(2840), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2840), + [anon_sym_decltype] = ACTIONS(2840), + [anon_sym_virtual] = ACTIONS(2840), + [anon_sym_alignas] = ACTIONS(2840), + [anon_sym_explicit] = ACTIONS(2840), + [anon_sym_typename] = ACTIONS(2840), + [anon_sym_template] = ACTIONS(2840), + [anon_sym_operator] = ACTIONS(2840), + [anon_sym_try] = ACTIONS(2840), + [anon_sym_delete] = ACTIONS(2840), + [anon_sym_throw] = ACTIONS(2840), + [anon_sym_namespace] = ACTIONS(2840), + [anon_sym_using] = ACTIONS(2840), + [anon_sym_static_assert] = ACTIONS(2840), + [anon_sym_concept] = ACTIONS(2840), + [anon_sym_co_return] = ACTIONS(2840), + [anon_sym_co_yield] = ACTIONS(2840), + [anon_sym_R_DQUOTE] = ACTIONS(2842), + [anon_sym_LR_DQUOTE] = ACTIONS(2842), + [anon_sym_uR_DQUOTE] = ACTIONS(2842), + [anon_sym_UR_DQUOTE] = ACTIONS(2842), + [anon_sym_u8R_DQUOTE] = ACTIONS(2842), + [anon_sym_co_await] = ACTIONS(2840), + [anon_sym_new] = ACTIONS(2840), + [anon_sym_requires] = ACTIONS(2840), + [sym_this] = ACTIONS(2840), + }, + [737] = { + [sym_identifier] = ACTIONS(2836), + [aux_sym_preproc_include_token1] = ACTIONS(2836), + [aux_sym_preproc_def_token1] = ACTIONS(2836), + [aux_sym_preproc_if_token1] = ACTIONS(2836), + [aux_sym_preproc_if_token2] = ACTIONS(2836), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2836), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2836), + [sym_preproc_directive] = ACTIONS(2836), + [anon_sym_LPAREN2] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(2838), + [anon_sym_TILDE] = ACTIONS(2838), + [anon_sym_DASH] = ACTIONS(2836), + [anon_sym_PLUS] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_AMP_AMP] = ACTIONS(2838), + [anon_sym_AMP] = ACTIONS(2836), + [anon_sym_SEMI] = ACTIONS(2838), + [anon_sym___extension__] = ACTIONS(2836), + [anon_sym_typedef] = ACTIONS(2836), + [anon_sym_extern] = ACTIONS(2836), + [anon_sym___attribute__] = ACTIONS(2836), + [anon_sym_COLON_COLON] = ACTIONS(2838), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2838), + [anon_sym___declspec] = ACTIONS(2836), + [anon_sym___based] = ACTIONS(2836), + [anon_sym___cdecl] = ACTIONS(2836), + [anon_sym___clrcall] = ACTIONS(2836), + [anon_sym___stdcall] = ACTIONS(2836), + [anon_sym___fastcall] = ACTIONS(2836), + [anon_sym___thiscall] = ACTIONS(2836), + [anon_sym___vectorcall] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_signed] = ACTIONS(2836), + [anon_sym_unsigned] = ACTIONS(2836), + [anon_sym_long] = ACTIONS(2836), + [anon_sym_short] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_static] = ACTIONS(2836), + [anon_sym_register] = ACTIONS(2836), + [anon_sym_inline] = ACTIONS(2836), + [anon_sym___inline] = ACTIONS(2836), + [anon_sym___inline__] = ACTIONS(2836), + [anon_sym___forceinline] = ACTIONS(2836), + [anon_sym_thread_local] = ACTIONS(2836), + [anon_sym___thread] = ACTIONS(2836), + [anon_sym_const] = ACTIONS(2836), + [anon_sym_constexpr] = ACTIONS(2836), + [anon_sym_volatile] = ACTIONS(2836), + [anon_sym_restrict] = ACTIONS(2836), + [anon_sym___restrict__] = ACTIONS(2836), + [anon_sym__Atomic] = ACTIONS(2836), + [anon_sym__Noreturn] = ACTIONS(2836), + [anon_sym_noreturn] = ACTIONS(2836), + [anon_sym_mutable] = ACTIONS(2836), + [anon_sym_constinit] = ACTIONS(2836), + [anon_sym_consteval] = ACTIONS(2836), + [sym_primitive_type] = ACTIONS(2836), + [anon_sym_enum] = ACTIONS(2836), + [anon_sym_class] = ACTIONS(2836), + [anon_sym_struct] = ACTIONS(2836), + [anon_sym_union] = ACTIONS(2836), + [anon_sym_if] = ACTIONS(2836), + [anon_sym_else] = ACTIONS(2836), + [anon_sym_switch] = ACTIONS(2836), + [anon_sym_case] = ACTIONS(2836), + [anon_sym_default] = ACTIONS(2836), + [anon_sym_while] = ACTIONS(2836), + [anon_sym_do] = ACTIONS(2836), + [anon_sym_for] = ACTIONS(2836), + [anon_sym_return] = ACTIONS(2836), + [anon_sym_break] = ACTIONS(2836), + [anon_sym_continue] = ACTIONS(2836), + [anon_sym_goto] = ACTIONS(2836), + [anon_sym_not] = ACTIONS(2836), + [anon_sym_compl] = ACTIONS(2836), + [anon_sym_DASH_DASH] = ACTIONS(2838), + [anon_sym_PLUS_PLUS] = ACTIONS(2838), + [anon_sym_sizeof] = ACTIONS(2836), + [anon_sym___alignof__] = ACTIONS(2836), + [anon_sym___alignof] = ACTIONS(2836), + [anon_sym__alignof] = ACTIONS(2836), + [anon_sym_alignof] = ACTIONS(2836), + [anon_sym__Alignof] = ACTIONS(2836), + [anon_sym_offsetof] = ACTIONS(2836), + [anon_sym__Generic] = ACTIONS(2836), + [anon_sym_asm] = ACTIONS(2836), + [anon_sym___asm__] = ACTIONS(2836), + [sym_number_literal] = ACTIONS(2838), + [anon_sym_L_SQUOTE] = ACTIONS(2838), + [anon_sym_u_SQUOTE] = ACTIONS(2838), + [anon_sym_U_SQUOTE] = ACTIONS(2838), + [anon_sym_u8_SQUOTE] = ACTIONS(2838), + [anon_sym_SQUOTE] = ACTIONS(2838), + [anon_sym_L_DQUOTE] = ACTIONS(2838), + [anon_sym_u_DQUOTE] = ACTIONS(2838), + [anon_sym_U_DQUOTE] = ACTIONS(2838), + [anon_sym_u8_DQUOTE] = ACTIONS(2838), + [anon_sym_DQUOTE] = ACTIONS(2838), + [sym_true] = ACTIONS(2836), + [sym_false] = ACTIONS(2836), + [anon_sym_NULL] = ACTIONS(2836), + [anon_sym_nullptr] = ACTIONS(2836), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2836), + [anon_sym_decltype] = ACTIONS(2836), + [anon_sym_virtual] = ACTIONS(2836), + [anon_sym_alignas] = ACTIONS(2836), + [anon_sym_explicit] = ACTIONS(2836), + [anon_sym_typename] = ACTIONS(2836), + [anon_sym_template] = ACTIONS(2836), + [anon_sym_operator] = ACTIONS(2836), + [anon_sym_try] = ACTIONS(2836), + [anon_sym_delete] = ACTIONS(2836), + [anon_sym_throw] = ACTIONS(2836), + [anon_sym_namespace] = ACTIONS(2836), + [anon_sym_using] = ACTIONS(2836), + [anon_sym_static_assert] = ACTIONS(2836), + [anon_sym_concept] = ACTIONS(2836), + [anon_sym_co_return] = ACTIONS(2836), + [anon_sym_co_yield] = ACTIONS(2836), + [anon_sym_R_DQUOTE] = ACTIONS(2838), + [anon_sym_LR_DQUOTE] = ACTIONS(2838), + [anon_sym_uR_DQUOTE] = ACTIONS(2838), + [anon_sym_UR_DQUOTE] = ACTIONS(2838), + [anon_sym_u8R_DQUOTE] = ACTIONS(2838), + [anon_sym_co_await] = ACTIONS(2836), + [anon_sym_new] = ACTIONS(2836), + [anon_sym_requires] = ACTIONS(2836), + [sym_this] = ACTIONS(2836), }, [738] = { + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2762), + [aux_sym_preproc_include_token1] = ACTIONS(2762), + [aux_sym_preproc_def_token1] = ACTIONS(2762), + [aux_sym_preproc_if_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym___based] = ACTIONS(2762), + [anon_sym___cdecl] = ACTIONS(2762), + [anon_sym___clrcall] = ACTIONS(2762), + [anon_sym___stdcall] = ACTIONS(2762), + [anon_sym___fastcall] = ACTIONS(2762), + [anon_sym___thiscall] = ACTIONS(2762), + [anon_sym___vectorcall] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_explicit] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_operator] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_static_assert] = ACTIONS(2762), + [anon_sym_concept] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), + }, + [739] = { + [sym_identifier] = ACTIONS(2830), + [aux_sym_preproc_include_token1] = ACTIONS(2830), + [aux_sym_preproc_def_token1] = ACTIONS(2830), + [aux_sym_preproc_if_token1] = ACTIONS(2830), + [aux_sym_preproc_if_token2] = ACTIONS(2830), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2830), + [sym_preproc_directive] = ACTIONS(2830), + [anon_sym_LPAREN2] = ACTIONS(2832), + [anon_sym_BANG] = ACTIONS(2832), + [anon_sym_TILDE] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2830), + [anon_sym_PLUS] = ACTIONS(2830), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_AMP_AMP] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2832), + [anon_sym___extension__] = ACTIONS(2830), + [anon_sym_typedef] = ACTIONS(2830), + [anon_sym_extern] = ACTIONS(2830), + [anon_sym___attribute__] = ACTIONS(2830), + [anon_sym_COLON_COLON] = ACTIONS(2832), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2832), + [anon_sym___declspec] = ACTIONS(2830), + [anon_sym___based] = ACTIONS(2830), + [anon_sym___cdecl] = ACTIONS(2830), + [anon_sym___clrcall] = ACTIONS(2830), + [anon_sym___stdcall] = ACTIONS(2830), + [anon_sym___fastcall] = ACTIONS(2830), + [anon_sym___thiscall] = ACTIONS(2830), + [anon_sym___vectorcall] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_signed] = ACTIONS(2830), + [anon_sym_unsigned] = ACTIONS(2830), + [anon_sym_long] = ACTIONS(2830), + [anon_sym_short] = ACTIONS(2830), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2830), + [anon_sym_register] = ACTIONS(2830), + [anon_sym_inline] = ACTIONS(2830), + [anon_sym___inline] = ACTIONS(2830), + [anon_sym___inline__] = ACTIONS(2830), + [anon_sym___forceinline] = ACTIONS(2830), + [anon_sym_thread_local] = ACTIONS(2830), + [anon_sym___thread] = ACTIONS(2830), + [anon_sym_const] = ACTIONS(2830), + [anon_sym_constexpr] = ACTIONS(2830), + [anon_sym_volatile] = ACTIONS(2830), + [anon_sym_restrict] = ACTIONS(2830), + [anon_sym___restrict__] = ACTIONS(2830), + [anon_sym__Atomic] = ACTIONS(2830), + [anon_sym__Noreturn] = ACTIONS(2830), + [anon_sym_noreturn] = ACTIONS(2830), + [anon_sym_mutable] = ACTIONS(2830), + [anon_sym_constinit] = ACTIONS(2830), + [anon_sym_consteval] = ACTIONS(2830), + [sym_primitive_type] = ACTIONS(2830), + [anon_sym_enum] = ACTIONS(2830), + [anon_sym_class] = ACTIONS(2830), + [anon_sym_struct] = ACTIONS(2830), + [anon_sym_union] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2830), + [anon_sym_else] = ACTIONS(2830), + [anon_sym_switch] = ACTIONS(2830), + [anon_sym_case] = ACTIONS(2830), + [anon_sym_default] = ACTIONS(2830), + [anon_sym_while] = ACTIONS(2830), + [anon_sym_do] = ACTIONS(2830), + [anon_sym_for] = ACTIONS(2830), + [anon_sym_return] = ACTIONS(2830), + [anon_sym_break] = ACTIONS(2830), + [anon_sym_continue] = ACTIONS(2830), + [anon_sym_goto] = ACTIONS(2830), + [anon_sym_not] = ACTIONS(2830), + [anon_sym_compl] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_sizeof] = ACTIONS(2830), + [anon_sym___alignof__] = ACTIONS(2830), + [anon_sym___alignof] = ACTIONS(2830), + [anon_sym__alignof] = ACTIONS(2830), + [anon_sym_alignof] = ACTIONS(2830), + [anon_sym__Alignof] = ACTIONS(2830), + [anon_sym_offsetof] = ACTIONS(2830), + [anon_sym__Generic] = ACTIONS(2830), + [anon_sym_asm] = ACTIONS(2830), + [anon_sym___asm__] = ACTIONS(2830), + [sym_number_literal] = ACTIONS(2832), + [anon_sym_L_SQUOTE] = ACTIONS(2832), + [anon_sym_u_SQUOTE] = ACTIONS(2832), + [anon_sym_U_SQUOTE] = ACTIONS(2832), + [anon_sym_u8_SQUOTE] = ACTIONS(2832), + [anon_sym_SQUOTE] = ACTIONS(2832), + [anon_sym_L_DQUOTE] = ACTIONS(2832), + [anon_sym_u_DQUOTE] = ACTIONS(2832), + [anon_sym_U_DQUOTE] = ACTIONS(2832), + [anon_sym_u8_DQUOTE] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [anon_sym_NULL] = ACTIONS(2830), + [anon_sym_nullptr] = ACTIONS(2830), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2830), + [anon_sym_decltype] = ACTIONS(2830), + [anon_sym_virtual] = ACTIONS(2830), + [anon_sym_alignas] = ACTIONS(2830), + [anon_sym_explicit] = ACTIONS(2830), + [anon_sym_typename] = ACTIONS(2830), + [anon_sym_template] = ACTIONS(2830), + [anon_sym_operator] = ACTIONS(2830), + [anon_sym_try] = ACTIONS(2830), + [anon_sym_delete] = ACTIONS(2830), + [anon_sym_throw] = ACTIONS(2830), + [anon_sym_namespace] = ACTIONS(2830), + [anon_sym_using] = ACTIONS(2830), + [anon_sym_static_assert] = ACTIONS(2830), + [anon_sym_concept] = ACTIONS(2830), + [anon_sym_co_return] = ACTIONS(2830), + [anon_sym_co_yield] = ACTIONS(2830), + [anon_sym_R_DQUOTE] = ACTIONS(2832), + [anon_sym_LR_DQUOTE] = ACTIONS(2832), + [anon_sym_uR_DQUOTE] = ACTIONS(2832), + [anon_sym_UR_DQUOTE] = ACTIONS(2832), + [anon_sym_u8R_DQUOTE] = ACTIONS(2832), + [anon_sym_co_await] = ACTIONS(2830), + [anon_sym_new] = ACTIONS(2830), + [anon_sym_requires] = ACTIONS(2830), + [sym_this] = ACTIONS(2830), + }, + [740] = { + [ts_builtin_sym_end] = ACTIONS(2776), + [sym_identifier] = ACTIONS(2774), + [aux_sym_preproc_include_token1] = ACTIONS(2774), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2774), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), + [sym_preproc_directive] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_TILDE] = ACTIONS(2776), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_STAR] = ACTIONS(2776), + [anon_sym_AMP_AMP] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym___extension__] = ACTIONS(2774), + [anon_sym_typedef] = ACTIONS(2774), + [anon_sym_extern] = ACTIONS(2774), + [anon_sym___attribute__] = ACTIONS(2774), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), + [anon_sym___declspec] = ACTIONS(2774), + [anon_sym___based] = ACTIONS(2774), + [anon_sym___cdecl] = ACTIONS(2774), + [anon_sym___clrcall] = ACTIONS(2774), + [anon_sym___stdcall] = ACTIONS(2774), + [anon_sym___fastcall] = ACTIONS(2774), + [anon_sym___thiscall] = ACTIONS(2774), + [anon_sym___vectorcall] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2776), + [anon_sym_signed] = ACTIONS(2774), + [anon_sym_unsigned] = ACTIONS(2774), + [anon_sym_long] = ACTIONS(2774), + [anon_sym_short] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_static] = ACTIONS(2774), + [anon_sym_register] = ACTIONS(2774), + [anon_sym_inline] = ACTIONS(2774), + [anon_sym___inline] = ACTIONS(2774), + [anon_sym___inline__] = ACTIONS(2774), + [anon_sym___forceinline] = ACTIONS(2774), + [anon_sym_thread_local] = ACTIONS(2774), + [anon_sym___thread] = ACTIONS(2774), + [anon_sym_const] = ACTIONS(2774), + [anon_sym_constexpr] = ACTIONS(2774), + [anon_sym_volatile] = ACTIONS(2774), + [anon_sym_restrict] = ACTIONS(2774), + [anon_sym___restrict__] = ACTIONS(2774), + [anon_sym__Atomic] = ACTIONS(2774), + [anon_sym__Noreturn] = ACTIONS(2774), + [anon_sym_noreturn] = ACTIONS(2774), + [anon_sym_mutable] = ACTIONS(2774), + [anon_sym_constinit] = ACTIONS(2774), + [anon_sym_consteval] = ACTIONS(2774), + [sym_primitive_type] = ACTIONS(2774), + [anon_sym_enum] = ACTIONS(2774), + [anon_sym_class] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(2774), + [anon_sym_union] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_else] = ACTIONS(2774), + [anon_sym_switch] = ACTIONS(2774), + [anon_sym_case] = ACTIONS(2774), + [anon_sym_default] = ACTIONS(2774), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_break] = ACTIONS(2774), + [anon_sym_continue] = ACTIONS(2774), + [anon_sym_goto] = ACTIONS(2774), + [anon_sym_not] = ACTIONS(2774), + [anon_sym_compl] = ACTIONS(2774), + [anon_sym_DASH_DASH] = ACTIONS(2776), + [anon_sym_PLUS_PLUS] = ACTIONS(2776), + [anon_sym_sizeof] = ACTIONS(2774), + [anon_sym___alignof__] = ACTIONS(2774), + [anon_sym___alignof] = ACTIONS(2774), + [anon_sym__alignof] = ACTIONS(2774), + [anon_sym_alignof] = ACTIONS(2774), + [anon_sym__Alignof] = ACTIONS(2774), + [anon_sym_offsetof] = ACTIONS(2774), + [anon_sym__Generic] = ACTIONS(2774), + [anon_sym_asm] = ACTIONS(2774), + [anon_sym___asm__] = ACTIONS(2774), + [sym_number_literal] = ACTIONS(2776), + [anon_sym_L_SQUOTE] = ACTIONS(2776), + [anon_sym_u_SQUOTE] = ACTIONS(2776), + [anon_sym_U_SQUOTE] = ACTIONS(2776), + [anon_sym_u8_SQUOTE] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_L_DQUOTE] = ACTIONS(2776), + [anon_sym_u_DQUOTE] = ACTIONS(2776), + [anon_sym_U_DQUOTE] = ACTIONS(2776), + [anon_sym_u8_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE] = ACTIONS(2776), + [sym_true] = ACTIONS(2774), + [sym_false] = ACTIONS(2774), + [anon_sym_NULL] = ACTIONS(2774), + [anon_sym_nullptr] = ACTIONS(2774), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2774), + [anon_sym_virtual] = ACTIONS(2774), + [anon_sym_alignas] = ACTIONS(2774), + [anon_sym_explicit] = ACTIONS(2774), + [anon_sym_typename] = ACTIONS(2774), + [anon_sym_template] = ACTIONS(2774), + [anon_sym_operator] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_delete] = ACTIONS(2774), + [anon_sym_throw] = ACTIONS(2774), + [anon_sym_namespace] = ACTIONS(2774), + [anon_sym_using] = ACTIONS(2774), + [anon_sym_static_assert] = ACTIONS(2774), + [anon_sym_concept] = ACTIONS(2774), + [anon_sym_co_return] = ACTIONS(2774), + [anon_sym_co_yield] = ACTIONS(2774), + [anon_sym_R_DQUOTE] = ACTIONS(2776), + [anon_sym_LR_DQUOTE] = ACTIONS(2776), + [anon_sym_uR_DQUOTE] = ACTIONS(2776), + [anon_sym_UR_DQUOTE] = ACTIONS(2776), + [anon_sym_u8R_DQUOTE] = ACTIONS(2776), + [anon_sym_co_await] = ACTIONS(2774), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_requires] = ACTIONS(2774), + [sym_this] = ACTIONS(2774), + }, + [741] = { + [sym_identifier] = ACTIONS(2824), + [aux_sym_preproc_include_token1] = ACTIONS(2824), + [aux_sym_preproc_def_token1] = ACTIONS(2824), + [aux_sym_preproc_if_token1] = ACTIONS(2824), + [aux_sym_preproc_if_token2] = ACTIONS(2824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2824), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2824), + [sym_preproc_directive] = ACTIONS(2824), + [anon_sym_LPAREN2] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_PLUS] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2826), + [anon_sym_AMP_AMP] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym___extension__] = ACTIONS(2824), + [anon_sym_typedef] = ACTIONS(2824), + [anon_sym_extern] = ACTIONS(2824), + [anon_sym___attribute__] = ACTIONS(2824), + [anon_sym_COLON_COLON] = ACTIONS(2826), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2826), + [anon_sym___declspec] = ACTIONS(2824), + [anon_sym___based] = ACTIONS(2824), + [anon_sym___cdecl] = ACTIONS(2824), + [anon_sym___clrcall] = ACTIONS(2824), + [anon_sym___stdcall] = ACTIONS(2824), + [anon_sym___fastcall] = ACTIONS(2824), + [anon_sym___thiscall] = ACTIONS(2824), + [anon_sym___vectorcall] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_signed] = ACTIONS(2824), + [anon_sym_unsigned] = ACTIONS(2824), + [anon_sym_long] = ACTIONS(2824), + [anon_sym_short] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_register] = ACTIONS(2824), + [anon_sym_inline] = ACTIONS(2824), + [anon_sym___inline] = ACTIONS(2824), + [anon_sym___inline__] = ACTIONS(2824), + [anon_sym___forceinline] = ACTIONS(2824), + [anon_sym_thread_local] = ACTIONS(2824), + [anon_sym___thread] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2824), + [anon_sym_constexpr] = ACTIONS(2824), + [anon_sym_volatile] = ACTIONS(2824), + [anon_sym_restrict] = ACTIONS(2824), + [anon_sym___restrict__] = ACTIONS(2824), + [anon_sym__Atomic] = ACTIONS(2824), + [anon_sym__Noreturn] = ACTIONS(2824), + [anon_sym_noreturn] = ACTIONS(2824), + [anon_sym_mutable] = ACTIONS(2824), + [anon_sym_constinit] = ACTIONS(2824), + [anon_sym_consteval] = ACTIONS(2824), + [sym_primitive_type] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [anon_sym_class] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2824), + [anon_sym_union] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_else] = ACTIONS(2824), + [anon_sym_switch] = ACTIONS(2824), + [anon_sym_case] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_do] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_goto] = ACTIONS(2824), + [anon_sym_not] = ACTIONS(2824), + [anon_sym_compl] = ACTIONS(2824), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_sizeof] = ACTIONS(2824), + [anon_sym___alignof__] = ACTIONS(2824), + [anon_sym___alignof] = ACTIONS(2824), + [anon_sym__alignof] = ACTIONS(2824), + [anon_sym_alignof] = ACTIONS(2824), + [anon_sym__Alignof] = ACTIONS(2824), + [anon_sym_offsetof] = ACTIONS(2824), + [anon_sym__Generic] = ACTIONS(2824), + [anon_sym_asm] = ACTIONS(2824), + [anon_sym___asm__] = ACTIONS(2824), + [sym_number_literal] = ACTIONS(2826), + [anon_sym_L_SQUOTE] = ACTIONS(2826), + [anon_sym_u_SQUOTE] = ACTIONS(2826), + [anon_sym_U_SQUOTE] = ACTIONS(2826), + [anon_sym_u8_SQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_L_DQUOTE] = ACTIONS(2826), + [anon_sym_u_DQUOTE] = ACTIONS(2826), + [anon_sym_U_DQUOTE] = ACTIONS(2826), + [anon_sym_u8_DQUOTE] = ACTIONS(2826), + [anon_sym_DQUOTE] = ACTIONS(2826), + [sym_true] = ACTIONS(2824), + [sym_false] = ACTIONS(2824), + [anon_sym_NULL] = ACTIONS(2824), + [anon_sym_nullptr] = ACTIONS(2824), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2824), + [anon_sym_decltype] = ACTIONS(2824), + [anon_sym_virtual] = ACTIONS(2824), + [anon_sym_alignas] = ACTIONS(2824), + [anon_sym_explicit] = ACTIONS(2824), + [anon_sym_typename] = ACTIONS(2824), + [anon_sym_template] = ACTIONS(2824), + [anon_sym_operator] = ACTIONS(2824), + [anon_sym_try] = ACTIONS(2824), + [anon_sym_delete] = ACTIONS(2824), + [anon_sym_throw] = ACTIONS(2824), + [anon_sym_namespace] = ACTIONS(2824), + [anon_sym_using] = ACTIONS(2824), + [anon_sym_static_assert] = ACTIONS(2824), + [anon_sym_concept] = ACTIONS(2824), + [anon_sym_co_return] = ACTIONS(2824), + [anon_sym_co_yield] = ACTIONS(2824), + [anon_sym_R_DQUOTE] = ACTIONS(2826), + [anon_sym_LR_DQUOTE] = ACTIONS(2826), + [anon_sym_uR_DQUOTE] = ACTIONS(2826), + [anon_sym_UR_DQUOTE] = ACTIONS(2826), + [anon_sym_u8R_DQUOTE] = ACTIONS(2826), + [anon_sym_co_await] = ACTIONS(2824), + [anon_sym_new] = ACTIONS(2824), + [anon_sym_requires] = ACTIONS(2824), + [sym_this] = ACTIONS(2824), + }, + [742] = { + [sym_identifier] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token2] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_AMP_AMP] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym_COLON_COLON] = ACTIONS(2822), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym___based] = ACTIONS(2820), + [anon_sym___cdecl] = ACTIONS(2820), + [anon_sym___clrcall] = ACTIONS(2820), + [anon_sym___stdcall] = ACTIONS(2820), + [anon_sym___fastcall] = ACTIONS(2820), + [anon_sym___thiscall] = ACTIONS(2820), + [anon_sym___vectorcall] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_mutable] = ACTIONS(2820), + [anon_sym_constinit] = ACTIONS(2820), + [anon_sym_consteval] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_class] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_else] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_not] = ACTIONS(2820), + [anon_sym_compl] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2820), + [anon_sym_decltype] = ACTIONS(2820), + [anon_sym_virtual] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym_explicit] = ACTIONS(2820), + [anon_sym_typename] = ACTIONS(2820), + [anon_sym_template] = ACTIONS(2820), + [anon_sym_operator] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(2820), + [anon_sym_delete] = ACTIONS(2820), + [anon_sym_throw] = ACTIONS(2820), + [anon_sym_namespace] = ACTIONS(2820), + [anon_sym_using] = ACTIONS(2820), + [anon_sym_static_assert] = ACTIONS(2820), + [anon_sym_concept] = ACTIONS(2820), + [anon_sym_co_return] = ACTIONS(2820), + [anon_sym_co_yield] = ACTIONS(2820), + [anon_sym_R_DQUOTE] = ACTIONS(2822), + [anon_sym_LR_DQUOTE] = ACTIONS(2822), + [anon_sym_uR_DQUOTE] = ACTIONS(2822), + [anon_sym_UR_DQUOTE] = ACTIONS(2822), + [anon_sym_u8R_DQUOTE] = ACTIONS(2822), + [anon_sym_co_await] = ACTIONS(2820), + [anon_sym_new] = ACTIONS(2820), + [anon_sym_requires] = ACTIONS(2820), + [sym_this] = ACTIONS(2820), + }, + [743] = { + [sym_identifier] = ACTIONS(2816), + [aux_sym_preproc_include_token1] = ACTIONS(2816), + [aux_sym_preproc_def_token1] = ACTIONS(2816), + [aux_sym_preproc_if_token1] = ACTIONS(2816), + [aux_sym_preproc_if_token2] = ACTIONS(2816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2816), + [sym_preproc_directive] = ACTIONS(2816), + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2816), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym___extension__] = ACTIONS(2816), + [anon_sym_typedef] = ACTIONS(2816), + [anon_sym_extern] = ACTIONS(2816), + [anon_sym___attribute__] = ACTIONS(2816), + [anon_sym_COLON_COLON] = ACTIONS(2818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2818), + [anon_sym___declspec] = ACTIONS(2816), + [anon_sym___based] = ACTIONS(2816), + [anon_sym___cdecl] = ACTIONS(2816), + [anon_sym___clrcall] = ACTIONS(2816), + [anon_sym___stdcall] = ACTIONS(2816), + [anon_sym___fastcall] = ACTIONS(2816), + [anon_sym___thiscall] = ACTIONS(2816), + [anon_sym___vectorcall] = ACTIONS(2816), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_signed] = ACTIONS(2816), + [anon_sym_unsigned] = ACTIONS(2816), + [anon_sym_long] = ACTIONS(2816), + [anon_sym_short] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_register] = ACTIONS(2816), + [anon_sym_inline] = ACTIONS(2816), + [anon_sym___inline] = ACTIONS(2816), + [anon_sym___inline__] = ACTIONS(2816), + [anon_sym___forceinline] = ACTIONS(2816), + [anon_sym_thread_local] = ACTIONS(2816), + [anon_sym___thread] = ACTIONS(2816), + [anon_sym_const] = ACTIONS(2816), + [anon_sym_constexpr] = ACTIONS(2816), + [anon_sym_volatile] = ACTIONS(2816), + [anon_sym_restrict] = ACTIONS(2816), + [anon_sym___restrict__] = ACTIONS(2816), + [anon_sym__Atomic] = ACTIONS(2816), + [anon_sym__Noreturn] = ACTIONS(2816), + [anon_sym_noreturn] = ACTIONS(2816), + [anon_sym_mutable] = ACTIONS(2816), + [anon_sym_constinit] = ACTIONS(2816), + [anon_sym_consteval] = ACTIONS(2816), + [sym_primitive_type] = ACTIONS(2816), + [anon_sym_enum] = ACTIONS(2816), + [anon_sym_class] = ACTIONS(2816), + [anon_sym_struct] = ACTIONS(2816), + [anon_sym_union] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_else] = ACTIONS(2816), + [anon_sym_switch] = ACTIONS(2816), + [anon_sym_case] = ACTIONS(2816), + [anon_sym_default] = ACTIONS(2816), + [anon_sym_while] = ACTIONS(2816), + [anon_sym_do] = ACTIONS(2816), + [anon_sym_for] = ACTIONS(2816), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_break] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_goto] = ACTIONS(2816), + [anon_sym_not] = ACTIONS(2816), + [anon_sym_compl] = ACTIONS(2816), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_sizeof] = ACTIONS(2816), + [anon_sym___alignof__] = ACTIONS(2816), + [anon_sym___alignof] = ACTIONS(2816), + [anon_sym__alignof] = ACTIONS(2816), + [anon_sym_alignof] = ACTIONS(2816), + [anon_sym__Alignof] = ACTIONS(2816), + [anon_sym_offsetof] = ACTIONS(2816), + [anon_sym__Generic] = ACTIONS(2816), + [anon_sym_asm] = ACTIONS(2816), + [anon_sym___asm__] = ACTIONS(2816), + [sym_number_literal] = ACTIONS(2818), + [anon_sym_L_SQUOTE] = ACTIONS(2818), + [anon_sym_u_SQUOTE] = ACTIONS(2818), + [anon_sym_U_SQUOTE] = ACTIONS(2818), + [anon_sym_u8_SQUOTE] = ACTIONS(2818), + [anon_sym_SQUOTE] = ACTIONS(2818), + [anon_sym_L_DQUOTE] = ACTIONS(2818), + [anon_sym_u_DQUOTE] = ACTIONS(2818), + [anon_sym_U_DQUOTE] = ACTIONS(2818), + [anon_sym_u8_DQUOTE] = ACTIONS(2818), + [anon_sym_DQUOTE] = ACTIONS(2818), + [sym_true] = ACTIONS(2816), + [sym_false] = ACTIONS(2816), + [anon_sym_NULL] = ACTIONS(2816), + [anon_sym_nullptr] = ACTIONS(2816), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2816), + [anon_sym_decltype] = ACTIONS(2816), + [anon_sym_virtual] = ACTIONS(2816), + [anon_sym_alignas] = ACTIONS(2816), + [anon_sym_explicit] = ACTIONS(2816), + [anon_sym_typename] = ACTIONS(2816), + [anon_sym_template] = ACTIONS(2816), + [anon_sym_operator] = ACTIONS(2816), + [anon_sym_try] = ACTIONS(2816), + [anon_sym_delete] = ACTIONS(2816), + [anon_sym_throw] = ACTIONS(2816), + [anon_sym_namespace] = ACTIONS(2816), + [anon_sym_using] = ACTIONS(2816), + [anon_sym_static_assert] = ACTIONS(2816), + [anon_sym_concept] = ACTIONS(2816), + [anon_sym_co_return] = ACTIONS(2816), + [anon_sym_co_yield] = ACTIONS(2816), + [anon_sym_R_DQUOTE] = ACTIONS(2818), + [anon_sym_LR_DQUOTE] = ACTIONS(2818), + [anon_sym_uR_DQUOTE] = ACTIONS(2818), + [anon_sym_UR_DQUOTE] = ACTIONS(2818), + [anon_sym_u8R_DQUOTE] = ACTIONS(2818), + [anon_sym_co_await] = ACTIONS(2816), + [anon_sym_new] = ACTIONS(2816), + [anon_sym_requires] = ACTIONS(2816), + [sym_this] = ACTIONS(2816), + }, + [744] = { + [sym_identifier] = ACTIONS(2812), + [aux_sym_preproc_include_token1] = ACTIONS(2812), + [aux_sym_preproc_def_token1] = ACTIONS(2812), + [aux_sym_preproc_if_token1] = ACTIONS(2812), + [aux_sym_preproc_if_token2] = ACTIONS(2812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2812), + [sym_preproc_directive] = ACTIONS(2812), + [anon_sym_LPAREN2] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_TILDE] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_AMP_AMP] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym___extension__] = ACTIONS(2812), + [anon_sym_typedef] = ACTIONS(2812), + [anon_sym_extern] = ACTIONS(2812), + [anon_sym___attribute__] = ACTIONS(2812), + [anon_sym_COLON_COLON] = ACTIONS(2814), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2814), + [anon_sym___declspec] = ACTIONS(2812), + [anon_sym___based] = ACTIONS(2812), + [anon_sym___cdecl] = ACTIONS(2812), + [anon_sym___clrcall] = ACTIONS(2812), + [anon_sym___stdcall] = ACTIONS(2812), + [anon_sym___fastcall] = ACTIONS(2812), + [anon_sym___thiscall] = ACTIONS(2812), + [anon_sym___vectorcall] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_signed] = ACTIONS(2812), + [anon_sym_unsigned] = ACTIONS(2812), + [anon_sym_long] = ACTIONS(2812), + [anon_sym_short] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_register] = ACTIONS(2812), + [anon_sym_inline] = ACTIONS(2812), + [anon_sym___inline] = ACTIONS(2812), + [anon_sym___inline__] = ACTIONS(2812), + [anon_sym___forceinline] = ACTIONS(2812), + [anon_sym_thread_local] = ACTIONS(2812), + [anon_sym___thread] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_constexpr] = ACTIONS(2812), + [anon_sym_volatile] = ACTIONS(2812), + [anon_sym_restrict] = ACTIONS(2812), + [anon_sym___restrict__] = ACTIONS(2812), + [anon_sym__Atomic] = ACTIONS(2812), + [anon_sym__Noreturn] = ACTIONS(2812), + [anon_sym_noreturn] = ACTIONS(2812), + [anon_sym_mutable] = ACTIONS(2812), + [anon_sym_constinit] = ACTIONS(2812), + [anon_sym_consteval] = ACTIONS(2812), + [sym_primitive_type] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_class] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_union] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_else] = ACTIONS(2812), + [anon_sym_switch] = ACTIONS(2812), + [anon_sym_case] = ACTIONS(2812), + [anon_sym_default] = ACTIONS(2812), + [anon_sym_while] = ACTIONS(2812), + [anon_sym_do] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_goto] = ACTIONS(2812), + [anon_sym_not] = ACTIONS(2812), + [anon_sym_compl] = ACTIONS(2812), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_sizeof] = ACTIONS(2812), + [anon_sym___alignof__] = ACTIONS(2812), + [anon_sym___alignof] = ACTIONS(2812), + [anon_sym__alignof] = ACTIONS(2812), + [anon_sym_alignof] = ACTIONS(2812), + [anon_sym__Alignof] = ACTIONS(2812), + [anon_sym_offsetof] = ACTIONS(2812), + [anon_sym__Generic] = ACTIONS(2812), + [anon_sym_asm] = ACTIONS(2812), + [anon_sym___asm__] = ACTIONS(2812), + [sym_number_literal] = ACTIONS(2814), + [anon_sym_L_SQUOTE] = ACTIONS(2814), + [anon_sym_u_SQUOTE] = ACTIONS(2814), + [anon_sym_U_SQUOTE] = ACTIONS(2814), + [anon_sym_u8_SQUOTE] = ACTIONS(2814), + [anon_sym_SQUOTE] = ACTIONS(2814), + [anon_sym_L_DQUOTE] = ACTIONS(2814), + [anon_sym_u_DQUOTE] = ACTIONS(2814), + [anon_sym_U_DQUOTE] = ACTIONS(2814), + [anon_sym_u8_DQUOTE] = ACTIONS(2814), + [anon_sym_DQUOTE] = ACTIONS(2814), + [sym_true] = ACTIONS(2812), + [sym_false] = ACTIONS(2812), + [anon_sym_NULL] = ACTIONS(2812), + [anon_sym_nullptr] = ACTIONS(2812), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2812), + [anon_sym_decltype] = ACTIONS(2812), + [anon_sym_virtual] = ACTIONS(2812), + [anon_sym_alignas] = ACTIONS(2812), + [anon_sym_explicit] = ACTIONS(2812), + [anon_sym_typename] = ACTIONS(2812), + [anon_sym_template] = ACTIONS(2812), + [anon_sym_operator] = ACTIONS(2812), + [anon_sym_try] = ACTIONS(2812), + [anon_sym_delete] = ACTIONS(2812), + [anon_sym_throw] = ACTIONS(2812), + [anon_sym_namespace] = ACTIONS(2812), + [anon_sym_using] = ACTIONS(2812), + [anon_sym_static_assert] = ACTIONS(2812), + [anon_sym_concept] = ACTIONS(2812), + [anon_sym_co_return] = ACTIONS(2812), + [anon_sym_co_yield] = ACTIONS(2812), + [anon_sym_R_DQUOTE] = ACTIONS(2814), + [anon_sym_LR_DQUOTE] = ACTIONS(2814), + [anon_sym_uR_DQUOTE] = ACTIONS(2814), + [anon_sym_UR_DQUOTE] = ACTIONS(2814), + [anon_sym_u8R_DQUOTE] = ACTIONS(2814), + [anon_sym_co_await] = ACTIONS(2812), + [anon_sym_new] = ACTIONS(2812), + [anon_sym_requires] = ACTIONS(2812), + [sym_this] = ACTIONS(2812), + }, + [745] = { + [sym_identifier] = ACTIONS(2864), + [aux_sym_preproc_include_token1] = ACTIONS(2864), + [aux_sym_preproc_def_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token2] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2864), + [sym_preproc_directive] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_AMP_AMP] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym___extension__] = ACTIONS(2864), + [anon_sym_typedef] = ACTIONS(2864), + [anon_sym_extern] = ACTIONS(2864), + [anon_sym___attribute__] = ACTIONS(2864), + [anon_sym_COLON_COLON] = ACTIONS(2866), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2866), + [anon_sym___declspec] = ACTIONS(2864), + [anon_sym___based] = ACTIONS(2864), + [anon_sym___cdecl] = ACTIONS(2864), + [anon_sym___clrcall] = ACTIONS(2864), + [anon_sym___stdcall] = ACTIONS(2864), + [anon_sym___fastcall] = ACTIONS(2864), + [anon_sym___thiscall] = ACTIONS(2864), + [anon_sym___vectorcall] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_signed] = ACTIONS(2864), + [anon_sym_unsigned] = ACTIONS(2864), + [anon_sym_long] = ACTIONS(2864), + [anon_sym_short] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_register] = ACTIONS(2864), + [anon_sym_inline] = ACTIONS(2864), + [anon_sym___inline] = ACTIONS(2864), + [anon_sym___inline__] = ACTIONS(2864), + [anon_sym___forceinline] = ACTIONS(2864), + [anon_sym_thread_local] = ACTIONS(2864), + [anon_sym___thread] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym___restrict__] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym__Noreturn] = ACTIONS(2864), + [anon_sym_noreturn] = ACTIONS(2864), + [anon_sym_mutable] = ACTIONS(2864), + [anon_sym_constinit] = ACTIONS(2864), + [anon_sym_consteval] = ACTIONS(2864), + [sym_primitive_type] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [anon_sym_class] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2864), + [anon_sym_union] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_else] = ACTIONS(2864), + [anon_sym_switch] = ACTIONS(2864), + [anon_sym_case] = ACTIONS(2864), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_goto] = ACTIONS(2864), + [anon_sym_not] = ACTIONS(2864), + [anon_sym_compl] = ACTIONS(2864), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_sizeof] = ACTIONS(2864), + [anon_sym___alignof__] = ACTIONS(2864), + [anon_sym___alignof] = ACTIONS(2864), + [anon_sym__alignof] = ACTIONS(2864), + [anon_sym_alignof] = ACTIONS(2864), + [anon_sym__Alignof] = ACTIONS(2864), + [anon_sym_offsetof] = ACTIONS(2864), + [anon_sym__Generic] = ACTIONS(2864), + [anon_sym_asm] = ACTIONS(2864), + [anon_sym___asm__] = ACTIONS(2864), + [sym_number_literal] = ACTIONS(2866), + [anon_sym_L_SQUOTE] = ACTIONS(2866), + [anon_sym_u_SQUOTE] = ACTIONS(2866), + [anon_sym_U_SQUOTE] = ACTIONS(2866), + [anon_sym_u8_SQUOTE] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_L_DQUOTE] = ACTIONS(2866), + [anon_sym_u_DQUOTE] = ACTIONS(2866), + [anon_sym_U_DQUOTE] = ACTIONS(2866), + [anon_sym_u8_DQUOTE] = ACTIONS(2866), + [anon_sym_DQUOTE] = ACTIONS(2866), + [sym_true] = ACTIONS(2864), + [sym_false] = ACTIONS(2864), + [anon_sym_NULL] = ACTIONS(2864), + [anon_sym_nullptr] = ACTIONS(2864), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2864), + [anon_sym_decltype] = ACTIONS(2864), + [anon_sym_virtual] = ACTIONS(2864), + [anon_sym_alignas] = ACTIONS(2864), + [anon_sym_explicit] = ACTIONS(2864), + [anon_sym_typename] = ACTIONS(2864), + [anon_sym_template] = ACTIONS(2864), + [anon_sym_operator] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_delete] = ACTIONS(2864), + [anon_sym_throw] = ACTIONS(2864), + [anon_sym_namespace] = ACTIONS(2864), + [anon_sym_using] = ACTIONS(2864), + [anon_sym_static_assert] = ACTIONS(2864), + [anon_sym_concept] = ACTIONS(2864), + [anon_sym_co_return] = ACTIONS(2864), + [anon_sym_co_yield] = ACTIONS(2864), + [anon_sym_R_DQUOTE] = ACTIONS(2866), + [anon_sym_LR_DQUOTE] = ACTIONS(2866), + [anon_sym_uR_DQUOTE] = ACTIONS(2866), + [anon_sym_UR_DQUOTE] = ACTIONS(2866), + [anon_sym_u8R_DQUOTE] = ACTIONS(2866), + [anon_sym_co_await] = ACTIONS(2864), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_requires] = ACTIONS(2864), + [sym_this] = ACTIONS(2864), + }, + [746] = { + [sym_identifier] = ACTIONS(2856), + [aux_sym_preproc_include_token1] = ACTIONS(2856), + [aux_sym_preproc_def_token1] = ACTIONS(2856), + [aux_sym_preproc_if_token1] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2856), + [sym_preproc_directive] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_AMP_AMP] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym___extension__] = ACTIONS(2856), + [anon_sym_typedef] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym___attribute__] = ACTIONS(2856), + [anon_sym_COLON_COLON] = ACTIONS(2858), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), + [anon_sym___declspec] = ACTIONS(2856), + [anon_sym___based] = ACTIONS(2856), + [anon_sym___cdecl] = ACTIONS(2856), + [anon_sym___clrcall] = ACTIONS(2856), + [anon_sym___stdcall] = ACTIONS(2856), + [anon_sym___fastcall] = ACTIONS(2856), + [anon_sym___thiscall] = ACTIONS(2856), + [anon_sym___vectorcall] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_RBRACE] = ACTIONS(2858), + [anon_sym_signed] = ACTIONS(2856), + [anon_sym_unsigned] = ACTIONS(2856), + [anon_sym_long] = ACTIONS(2856), + [anon_sym_short] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_register] = ACTIONS(2856), + [anon_sym_inline] = ACTIONS(2856), + [anon_sym___inline] = ACTIONS(2856), + [anon_sym___inline__] = ACTIONS(2856), + [anon_sym___forceinline] = ACTIONS(2856), + [anon_sym_thread_local] = ACTIONS(2856), + [anon_sym___thread] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_constexpr] = ACTIONS(2856), + [anon_sym_volatile] = ACTIONS(2856), + [anon_sym_restrict] = ACTIONS(2856), + [anon_sym___restrict__] = ACTIONS(2856), + [anon_sym__Atomic] = ACTIONS(2856), + [anon_sym__Noreturn] = ACTIONS(2856), + [anon_sym_noreturn] = ACTIONS(2856), + [anon_sym_mutable] = ACTIONS(2856), + [anon_sym_constinit] = ACTIONS(2856), + [anon_sym_consteval] = ACTIONS(2856), + [sym_primitive_type] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_class] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_else] = ACTIONS(2856), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_case] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_goto] = ACTIONS(2856), + [anon_sym_not] = ACTIONS(2856), + [anon_sym_compl] = ACTIONS(2856), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_sizeof] = ACTIONS(2856), + [anon_sym___alignof__] = ACTIONS(2856), + [anon_sym___alignof] = ACTIONS(2856), + [anon_sym__alignof] = ACTIONS(2856), + [anon_sym_alignof] = ACTIONS(2856), + [anon_sym__Alignof] = ACTIONS(2856), + [anon_sym_offsetof] = ACTIONS(2856), + [anon_sym__Generic] = ACTIONS(2856), + [anon_sym_asm] = ACTIONS(2856), + [anon_sym___asm__] = ACTIONS(2856), + [sym_number_literal] = ACTIONS(2858), + [anon_sym_L_SQUOTE] = ACTIONS(2858), + [anon_sym_u_SQUOTE] = ACTIONS(2858), + [anon_sym_U_SQUOTE] = ACTIONS(2858), + [anon_sym_u8_SQUOTE] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_L_DQUOTE] = ACTIONS(2858), + [anon_sym_u_DQUOTE] = ACTIONS(2858), + [anon_sym_U_DQUOTE] = ACTIONS(2858), + [anon_sym_u8_DQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(2858), + [sym_true] = ACTIONS(2856), + [sym_false] = ACTIONS(2856), + [anon_sym_NULL] = ACTIONS(2856), + [anon_sym_nullptr] = ACTIONS(2856), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2856), + [anon_sym_decltype] = ACTIONS(2856), + [anon_sym_virtual] = ACTIONS(2856), + [anon_sym_alignas] = ACTIONS(2856), + [anon_sym_explicit] = ACTIONS(2856), + [anon_sym_typename] = ACTIONS(2856), + [anon_sym_template] = ACTIONS(2856), + [anon_sym_operator] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_delete] = ACTIONS(2856), + [anon_sym_throw] = ACTIONS(2856), + [anon_sym_namespace] = ACTIONS(2856), + [anon_sym_using] = ACTIONS(2856), + [anon_sym_static_assert] = ACTIONS(2856), + [anon_sym_concept] = ACTIONS(2856), + [anon_sym_co_return] = ACTIONS(2856), + [anon_sym_co_yield] = ACTIONS(2856), + [anon_sym_R_DQUOTE] = ACTIONS(2858), + [anon_sym_LR_DQUOTE] = ACTIONS(2858), + [anon_sym_uR_DQUOTE] = ACTIONS(2858), + [anon_sym_UR_DQUOTE] = ACTIONS(2858), + [anon_sym_u8R_DQUOTE] = ACTIONS(2858), + [anon_sym_co_await] = ACTIONS(2856), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_requires] = ACTIONS(2856), + [sym_this] = ACTIONS(2856), + }, + [747] = { + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_include_token1] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym___cdecl] = ACTIONS(2138), + [anon_sym___clrcall] = ACTIONS(2138), + [anon_sym___stdcall] = ACTIONS(2138), + [anon_sym___fastcall] = ACTIONS(2138), + [anon_sym___thiscall] = ACTIONS(2138), + [anon_sym___vectorcall] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2828), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_goto] = ACTIONS(2138), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_compl] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_PLUS_PLUS] = ACTIONS(2136), + [anon_sym_sizeof] = ACTIONS(2138), + [anon_sym___alignof__] = ACTIONS(2138), + [anon_sym___alignof] = ACTIONS(2138), + [anon_sym__alignof] = ACTIONS(2138), + [anon_sym_alignof] = ACTIONS(2138), + [anon_sym__Alignof] = ACTIONS(2138), + [anon_sym_offsetof] = ACTIONS(2138), + [anon_sym__Generic] = ACTIONS(2138), + [anon_sym_asm] = ACTIONS(2138), + [anon_sym___asm__] = ACTIONS(2138), + [sym_number_literal] = ACTIONS(2136), + [anon_sym_L_SQUOTE] = ACTIONS(2136), + [anon_sym_u_SQUOTE] = ACTIONS(2136), + [anon_sym_U_SQUOTE] = ACTIONS(2136), + [anon_sym_u8_SQUOTE] = ACTIONS(2136), + [anon_sym_SQUOTE] = ACTIONS(2136), + [anon_sym_L_DQUOTE] = ACTIONS(2136), + [anon_sym_u_DQUOTE] = ACTIONS(2136), + [anon_sym_U_DQUOTE] = ACTIONS(2136), + [anon_sym_u8_DQUOTE] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2136), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [anon_sym_NULL] = ACTIONS(2138), + [anon_sym_nullptr] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), + [anon_sym_concept] = ACTIONS(2138), + [anon_sym_co_return] = ACTIONS(2138), + [anon_sym_co_yield] = ACTIONS(2138), + [anon_sym_R_DQUOTE] = ACTIONS(2136), + [anon_sym_LR_DQUOTE] = ACTIONS(2136), + [anon_sym_uR_DQUOTE] = ACTIONS(2136), + [anon_sym_UR_DQUOTE] = ACTIONS(2136), + [anon_sym_u8R_DQUOTE] = ACTIONS(2136), + [anon_sym_co_await] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_requires] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + }, + [748] = { + [sym_identifier] = ACTIONS(2852), + [aux_sym_preproc_include_token1] = ACTIONS(2852), + [aux_sym_preproc_def_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2852), + [sym_preproc_directive] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym___extension__] = ACTIONS(2852), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym___attribute__] = ACTIONS(2852), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2854), + [anon_sym___declspec] = ACTIONS(2852), + [anon_sym___based] = ACTIONS(2852), + [anon_sym___cdecl] = ACTIONS(2852), + [anon_sym___clrcall] = ACTIONS(2852), + [anon_sym___stdcall] = ACTIONS(2852), + [anon_sym___fastcall] = ACTIONS(2852), + [anon_sym___thiscall] = ACTIONS(2852), + [anon_sym___vectorcall] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_RBRACE] = ACTIONS(2854), + [anon_sym_signed] = ACTIONS(2852), + [anon_sym_unsigned] = ACTIONS(2852), + [anon_sym_long] = ACTIONS(2852), + [anon_sym_short] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_register] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym___inline] = ACTIONS(2852), + [anon_sym___inline__] = ACTIONS(2852), + [anon_sym___forceinline] = ACTIONS(2852), + [anon_sym_thread_local] = ACTIONS(2852), + [anon_sym___thread] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_constexpr] = ACTIONS(2852), + [anon_sym_volatile] = ACTIONS(2852), + [anon_sym_restrict] = ACTIONS(2852), + [anon_sym___restrict__] = ACTIONS(2852), + [anon_sym__Atomic] = ACTIONS(2852), + [anon_sym__Noreturn] = ACTIONS(2852), + [anon_sym_noreturn] = ACTIONS(2852), + [anon_sym_mutable] = ACTIONS(2852), + [anon_sym_constinit] = ACTIONS(2852), + [anon_sym_consteval] = ACTIONS(2852), + [sym_primitive_type] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_class] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_else] = ACTIONS(2852), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_goto] = ACTIONS(2852), + [anon_sym_not] = ACTIONS(2852), + [anon_sym_compl] = ACTIONS(2852), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_sizeof] = ACTIONS(2852), + [anon_sym___alignof__] = ACTIONS(2852), + [anon_sym___alignof] = ACTIONS(2852), + [anon_sym__alignof] = ACTIONS(2852), + [anon_sym_alignof] = ACTIONS(2852), + [anon_sym__Alignof] = ACTIONS(2852), + [anon_sym_offsetof] = ACTIONS(2852), + [anon_sym__Generic] = ACTIONS(2852), + [anon_sym_asm] = ACTIONS(2852), + [anon_sym___asm__] = ACTIONS(2852), + [sym_number_literal] = ACTIONS(2854), + [anon_sym_L_SQUOTE] = ACTIONS(2854), + [anon_sym_u_SQUOTE] = ACTIONS(2854), + [anon_sym_U_SQUOTE] = ACTIONS(2854), + [anon_sym_u8_SQUOTE] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_L_DQUOTE] = ACTIONS(2854), + [anon_sym_u_DQUOTE] = ACTIONS(2854), + [anon_sym_U_DQUOTE] = ACTIONS(2854), + [anon_sym_u8_DQUOTE] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [sym_true] = ACTIONS(2852), + [sym_false] = ACTIONS(2852), + [anon_sym_NULL] = ACTIONS(2852), + [anon_sym_nullptr] = ACTIONS(2852), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2852), + [anon_sym_decltype] = ACTIONS(2852), + [anon_sym_virtual] = ACTIONS(2852), + [anon_sym_alignas] = ACTIONS(2852), + [anon_sym_explicit] = ACTIONS(2852), + [anon_sym_typename] = ACTIONS(2852), + [anon_sym_template] = ACTIONS(2852), + [anon_sym_operator] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_delete] = ACTIONS(2852), + [anon_sym_throw] = ACTIONS(2852), + [anon_sym_namespace] = ACTIONS(2852), + [anon_sym_using] = ACTIONS(2852), + [anon_sym_static_assert] = ACTIONS(2852), + [anon_sym_concept] = ACTIONS(2852), + [anon_sym_co_return] = ACTIONS(2852), + [anon_sym_co_yield] = ACTIONS(2852), + [anon_sym_R_DQUOTE] = ACTIONS(2854), + [anon_sym_LR_DQUOTE] = ACTIONS(2854), + [anon_sym_uR_DQUOTE] = ACTIONS(2854), + [anon_sym_UR_DQUOTE] = ACTIONS(2854), + [anon_sym_u8R_DQUOTE] = ACTIONS(2854), + [anon_sym_co_await] = ACTIONS(2852), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_requires] = ACTIONS(2852), + [sym_this] = ACTIONS(2852), + }, + [749] = { [sym_identifier] = ACTIONS(2778), [aux_sym_preproc_include_token1] = ACTIONS(2778), [aux_sym_preproc_def_token1] = ACTIONS(2778), @@ -160072,8 +157205,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(2778), [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), [sym_preproc_directive] = ACTIONS(2778), [anon_sym_LPAREN2] = ACTIONS(2780), [anon_sym_BANG] = ACTIONS(2780), @@ -160197,814 +157328,2109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2778), [sym_this] = ACTIONS(2778), }, - [739] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [750] = { + [sym_identifier] = ACTIONS(2848), + [aux_sym_preproc_include_token1] = ACTIONS(2848), + [aux_sym_preproc_def_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token1] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2848), + [sym_preproc_directive] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_AMP_AMP] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym___extension__] = ACTIONS(2848), + [anon_sym_typedef] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym___attribute__] = ACTIONS(2848), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2850), + [anon_sym___declspec] = ACTIONS(2848), + [anon_sym___based] = ACTIONS(2848), + [anon_sym___cdecl] = ACTIONS(2848), + [anon_sym___clrcall] = ACTIONS(2848), + [anon_sym___stdcall] = ACTIONS(2848), + [anon_sym___fastcall] = ACTIONS(2848), + [anon_sym___thiscall] = ACTIONS(2848), + [anon_sym___vectorcall] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_RBRACE] = ACTIONS(2850), + [anon_sym_signed] = ACTIONS(2848), + [anon_sym_unsigned] = ACTIONS(2848), + [anon_sym_long] = ACTIONS(2848), + [anon_sym_short] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_register] = ACTIONS(2848), + [anon_sym_inline] = ACTIONS(2848), + [anon_sym___inline] = ACTIONS(2848), + [anon_sym___inline__] = ACTIONS(2848), + [anon_sym___forceinline] = ACTIONS(2848), + [anon_sym_thread_local] = ACTIONS(2848), + [anon_sym___thread] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_constexpr] = ACTIONS(2848), + [anon_sym_volatile] = ACTIONS(2848), + [anon_sym_restrict] = ACTIONS(2848), + [anon_sym___restrict__] = ACTIONS(2848), + [anon_sym__Atomic] = ACTIONS(2848), + [anon_sym__Noreturn] = ACTIONS(2848), + [anon_sym_noreturn] = ACTIONS(2848), + [anon_sym_mutable] = ACTIONS(2848), + [anon_sym_constinit] = ACTIONS(2848), + [anon_sym_consteval] = ACTIONS(2848), + [sym_primitive_type] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_class] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2848), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_else] = ACTIONS(2848), + [anon_sym_switch] = ACTIONS(2848), + [anon_sym_case] = ACTIONS(2848), + [anon_sym_default] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_goto] = ACTIONS(2848), + [anon_sym_not] = ACTIONS(2848), + [anon_sym_compl] = ACTIONS(2848), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_sizeof] = ACTIONS(2848), + [anon_sym___alignof__] = ACTIONS(2848), + [anon_sym___alignof] = ACTIONS(2848), + [anon_sym__alignof] = ACTIONS(2848), + [anon_sym_alignof] = ACTIONS(2848), + [anon_sym__Alignof] = ACTIONS(2848), + [anon_sym_offsetof] = ACTIONS(2848), + [anon_sym__Generic] = ACTIONS(2848), + [anon_sym_asm] = ACTIONS(2848), + [anon_sym___asm__] = ACTIONS(2848), + [sym_number_literal] = ACTIONS(2850), + [anon_sym_L_SQUOTE] = ACTIONS(2850), + [anon_sym_u_SQUOTE] = ACTIONS(2850), + [anon_sym_U_SQUOTE] = ACTIONS(2850), + [anon_sym_u8_SQUOTE] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_L_DQUOTE] = ACTIONS(2850), + [anon_sym_u_DQUOTE] = ACTIONS(2850), + [anon_sym_U_DQUOTE] = ACTIONS(2850), + [anon_sym_u8_DQUOTE] = ACTIONS(2850), + [anon_sym_DQUOTE] = ACTIONS(2850), + [sym_true] = ACTIONS(2848), + [sym_false] = ACTIONS(2848), + [anon_sym_NULL] = ACTIONS(2848), + [anon_sym_nullptr] = ACTIONS(2848), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2848), + [anon_sym_decltype] = ACTIONS(2848), + [anon_sym_virtual] = ACTIONS(2848), + [anon_sym_alignas] = ACTIONS(2848), + [anon_sym_explicit] = ACTIONS(2848), + [anon_sym_typename] = ACTIONS(2848), + [anon_sym_template] = ACTIONS(2848), + [anon_sym_operator] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_delete] = ACTIONS(2848), + [anon_sym_throw] = ACTIONS(2848), + [anon_sym_namespace] = ACTIONS(2848), + [anon_sym_using] = ACTIONS(2848), + [anon_sym_static_assert] = ACTIONS(2848), + [anon_sym_concept] = ACTIONS(2848), + [anon_sym_co_return] = ACTIONS(2848), + [anon_sym_co_yield] = ACTIONS(2848), + [anon_sym_R_DQUOTE] = ACTIONS(2850), + [anon_sym_LR_DQUOTE] = ACTIONS(2850), + [anon_sym_uR_DQUOTE] = ACTIONS(2850), + [anon_sym_UR_DQUOTE] = ACTIONS(2850), + [anon_sym_u8R_DQUOTE] = ACTIONS(2850), + [anon_sym_co_await] = ACTIONS(2848), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_requires] = ACTIONS(2848), + [sym_this] = ACTIONS(2848), }, - [740] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [751] = { + [sym_identifier] = ACTIONS(2840), + [aux_sym_preproc_include_token1] = ACTIONS(2840), + [aux_sym_preproc_def_token1] = ACTIONS(2840), + [aux_sym_preproc_if_token1] = ACTIONS(2840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2840), + [sym_preproc_directive] = ACTIONS(2840), + [anon_sym_LPAREN2] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_TILDE] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_AMP_AMP] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2840), + [anon_sym_SEMI] = ACTIONS(2842), + [anon_sym___extension__] = ACTIONS(2840), + [anon_sym_typedef] = ACTIONS(2840), + [anon_sym_extern] = ACTIONS(2840), + [anon_sym___attribute__] = ACTIONS(2840), + [anon_sym_COLON_COLON] = ACTIONS(2842), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2842), + [anon_sym___declspec] = ACTIONS(2840), + [anon_sym___based] = ACTIONS(2840), + [anon_sym___cdecl] = ACTIONS(2840), + [anon_sym___clrcall] = ACTIONS(2840), + [anon_sym___stdcall] = ACTIONS(2840), + [anon_sym___fastcall] = ACTIONS(2840), + [anon_sym___thiscall] = ACTIONS(2840), + [anon_sym___vectorcall] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_RBRACE] = ACTIONS(2842), + [anon_sym_signed] = ACTIONS(2840), + [anon_sym_unsigned] = ACTIONS(2840), + [anon_sym_long] = ACTIONS(2840), + [anon_sym_short] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2840), + [anon_sym_static] = ACTIONS(2840), + [anon_sym_register] = ACTIONS(2840), + [anon_sym_inline] = ACTIONS(2840), + [anon_sym___inline] = ACTIONS(2840), + [anon_sym___inline__] = ACTIONS(2840), + [anon_sym___forceinline] = ACTIONS(2840), + [anon_sym_thread_local] = ACTIONS(2840), + [anon_sym___thread] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2840), + [anon_sym_constexpr] = ACTIONS(2840), + [anon_sym_volatile] = ACTIONS(2840), + [anon_sym_restrict] = ACTIONS(2840), + [anon_sym___restrict__] = ACTIONS(2840), + [anon_sym__Atomic] = ACTIONS(2840), + [anon_sym__Noreturn] = ACTIONS(2840), + [anon_sym_noreturn] = ACTIONS(2840), + [anon_sym_mutable] = ACTIONS(2840), + [anon_sym_constinit] = ACTIONS(2840), + [anon_sym_consteval] = ACTIONS(2840), + [sym_primitive_type] = ACTIONS(2840), + [anon_sym_enum] = ACTIONS(2840), + [anon_sym_class] = ACTIONS(2840), + [anon_sym_struct] = ACTIONS(2840), + [anon_sym_union] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_else] = ACTIONS(2840), + [anon_sym_switch] = ACTIONS(2840), + [anon_sym_case] = ACTIONS(2840), + [anon_sym_default] = ACTIONS(2840), + [anon_sym_while] = ACTIONS(2840), + [anon_sym_do] = ACTIONS(2840), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_goto] = ACTIONS(2840), + [anon_sym_not] = ACTIONS(2840), + [anon_sym_compl] = ACTIONS(2840), + [anon_sym_DASH_DASH] = ACTIONS(2842), + [anon_sym_PLUS_PLUS] = ACTIONS(2842), + [anon_sym_sizeof] = ACTIONS(2840), + [anon_sym___alignof__] = ACTIONS(2840), + [anon_sym___alignof] = ACTIONS(2840), + [anon_sym__alignof] = ACTIONS(2840), + [anon_sym_alignof] = ACTIONS(2840), + [anon_sym__Alignof] = ACTIONS(2840), + [anon_sym_offsetof] = ACTIONS(2840), + [anon_sym__Generic] = ACTIONS(2840), + [anon_sym_asm] = ACTIONS(2840), + [anon_sym___asm__] = ACTIONS(2840), + [sym_number_literal] = ACTIONS(2842), + [anon_sym_L_SQUOTE] = ACTIONS(2842), + [anon_sym_u_SQUOTE] = ACTIONS(2842), + [anon_sym_U_SQUOTE] = ACTIONS(2842), + [anon_sym_u8_SQUOTE] = ACTIONS(2842), + [anon_sym_SQUOTE] = ACTIONS(2842), + [anon_sym_L_DQUOTE] = ACTIONS(2842), + [anon_sym_u_DQUOTE] = ACTIONS(2842), + [anon_sym_U_DQUOTE] = ACTIONS(2842), + [anon_sym_u8_DQUOTE] = ACTIONS(2842), + [anon_sym_DQUOTE] = ACTIONS(2842), + [sym_true] = ACTIONS(2840), + [sym_false] = ACTIONS(2840), + [anon_sym_NULL] = ACTIONS(2840), + [anon_sym_nullptr] = ACTIONS(2840), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2840), + [anon_sym_decltype] = ACTIONS(2840), + [anon_sym_virtual] = ACTIONS(2840), + [anon_sym_alignas] = ACTIONS(2840), + [anon_sym_explicit] = ACTIONS(2840), + [anon_sym_typename] = ACTIONS(2840), + [anon_sym_template] = ACTIONS(2840), + [anon_sym_operator] = ACTIONS(2840), + [anon_sym_try] = ACTIONS(2840), + [anon_sym_delete] = ACTIONS(2840), + [anon_sym_throw] = ACTIONS(2840), + [anon_sym_namespace] = ACTIONS(2840), + [anon_sym_using] = ACTIONS(2840), + [anon_sym_static_assert] = ACTIONS(2840), + [anon_sym_concept] = ACTIONS(2840), + [anon_sym_co_return] = ACTIONS(2840), + [anon_sym_co_yield] = ACTIONS(2840), + [anon_sym_R_DQUOTE] = ACTIONS(2842), + [anon_sym_LR_DQUOTE] = ACTIONS(2842), + [anon_sym_uR_DQUOTE] = ACTIONS(2842), + [anon_sym_UR_DQUOTE] = ACTIONS(2842), + [anon_sym_u8R_DQUOTE] = ACTIONS(2842), + [anon_sym_co_await] = ACTIONS(2840), + [anon_sym_new] = ACTIONS(2840), + [anon_sym_requires] = ACTIONS(2840), + [sym_this] = ACTIONS(2840), }, - [741] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [752] = { + [sym_identifier] = ACTIONS(2836), + [aux_sym_preproc_include_token1] = ACTIONS(2836), + [aux_sym_preproc_def_token1] = ACTIONS(2836), + [aux_sym_preproc_if_token1] = ACTIONS(2836), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2836), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2836), + [sym_preproc_directive] = ACTIONS(2836), + [anon_sym_LPAREN2] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(2838), + [anon_sym_TILDE] = ACTIONS(2838), + [anon_sym_DASH] = ACTIONS(2836), + [anon_sym_PLUS] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_AMP_AMP] = ACTIONS(2838), + [anon_sym_AMP] = ACTIONS(2836), + [anon_sym_SEMI] = ACTIONS(2838), + [anon_sym___extension__] = ACTIONS(2836), + [anon_sym_typedef] = ACTIONS(2836), + [anon_sym_extern] = ACTIONS(2836), + [anon_sym___attribute__] = ACTIONS(2836), + [anon_sym_COLON_COLON] = ACTIONS(2838), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2838), + [anon_sym___declspec] = ACTIONS(2836), + [anon_sym___based] = ACTIONS(2836), + [anon_sym___cdecl] = ACTIONS(2836), + [anon_sym___clrcall] = ACTIONS(2836), + [anon_sym___stdcall] = ACTIONS(2836), + [anon_sym___fastcall] = ACTIONS(2836), + [anon_sym___thiscall] = ACTIONS(2836), + [anon_sym___vectorcall] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_RBRACE] = ACTIONS(2838), + [anon_sym_signed] = ACTIONS(2836), + [anon_sym_unsigned] = ACTIONS(2836), + [anon_sym_long] = ACTIONS(2836), + [anon_sym_short] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_static] = ACTIONS(2836), + [anon_sym_register] = ACTIONS(2836), + [anon_sym_inline] = ACTIONS(2836), + [anon_sym___inline] = ACTIONS(2836), + [anon_sym___inline__] = ACTIONS(2836), + [anon_sym___forceinline] = ACTIONS(2836), + [anon_sym_thread_local] = ACTIONS(2836), + [anon_sym___thread] = ACTIONS(2836), + [anon_sym_const] = ACTIONS(2836), + [anon_sym_constexpr] = ACTIONS(2836), + [anon_sym_volatile] = ACTIONS(2836), + [anon_sym_restrict] = ACTIONS(2836), + [anon_sym___restrict__] = ACTIONS(2836), + [anon_sym__Atomic] = ACTIONS(2836), + [anon_sym__Noreturn] = ACTIONS(2836), + [anon_sym_noreturn] = ACTIONS(2836), + [anon_sym_mutable] = ACTIONS(2836), + [anon_sym_constinit] = ACTIONS(2836), + [anon_sym_consteval] = ACTIONS(2836), + [sym_primitive_type] = ACTIONS(2836), + [anon_sym_enum] = ACTIONS(2836), + [anon_sym_class] = ACTIONS(2836), + [anon_sym_struct] = ACTIONS(2836), + [anon_sym_union] = ACTIONS(2836), + [anon_sym_if] = ACTIONS(2836), + [anon_sym_else] = ACTIONS(2836), + [anon_sym_switch] = ACTIONS(2836), + [anon_sym_case] = ACTIONS(2836), + [anon_sym_default] = ACTIONS(2836), + [anon_sym_while] = ACTIONS(2836), + [anon_sym_do] = ACTIONS(2836), + [anon_sym_for] = ACTIONS(2836), + [anon_sym_return] = ACTIONS(2836), + [anon_sym_break] = ACTIONS(2836), + [anon_sym_continue] = ACTIONS(2836), + [anon_sym_goto] = ACTIONS(2836), + [anon_sym_not] = ACTIONS(2836), + [anon_sym_compl] = ACTIONS(2836), + [anon_sym_DASH_DASH] = ACTIONS(2838), + [anon_sym_PLUS_PLUS] = ACTIONS(2838), + [anon_sym_sizeof] = ACTIONS(2836), + [anon_sym___alignof__] = ACTIONS(2836), + [anon_sym___alignof] = ACTIONS(2836), + [anon_sym__alignof] = ACTIONS(2836), + [anon_sym_alignof] = ACTIONS(2836), + [anon_sym__Alignof] = ACTIONS(2836), + [anon_sym_offsetof] = ACTIONS(2836), + [anon_sym__Generic] = ACTIONS(2836), + [anon_sym_asm] = ACTIONS(2836), + [anon_sym___asm__] = ACTIONS(2836), + [sym_number_literal] = ACTIONS(2838), + [anon_sym_L_SQUOTE] = ACTIONS(2838), + [anon_sym_u_SQUOTE] = ACTIONS(2838), + [anon_sym_U_SQUOTE] = ACTIONS(2838), + [anon_sym_u8_SQUOTE] = ACTIONS(2838), + [anon_sym_SQUOTE] = ACTIONS(2838), + [anon_sym_L_DQUOTE] = ACTIONS(2838), + [anon_sym_u_DQUOTE] = ACTIONS(2838), + [anon_sym_U_DQUOTE] = ACTIONS(2838), + [anon_sym_u8_DQUOTE] = ACTIONS(2838), + [anon_sym_DQUOTE] = ACTIONS(2838), + [sym_true] = ACTIONS(2836), + [sym_false] = ACTIONS(2836), + [anon_sym_NULL] = ACTIONS(2836), + [anon_sym_nullptr] = ACTIONS(2836), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2836), + [anon_sym_decltype] = ACTIONS(2836), + [anon_sym_virtual] = ACTIONS(2836), + [anon_sym_alignas] = ACTIONS(2836), + [anon_sym_explicit] = ACTIONS(2836), + [anon_sym_typename] = ACTIONS(2836), + [anon_sym_template] = ACTIONS(2836), + [anon_sym_operator] = ACTIONS(2836), + [anon_sym_try] = ACTIONS(2836), + [anon_sym_delete] = ACTIONS(2836), + [anon_sym_throw] = ACTIONS(2836), + [anon_sym_namespace] = ACTIONS(2836), + [anon_sym_using] = ACTIONS(2836), + [anon_sym_static_assert] = ACTIONS(2836), + [anon_sym_concept] = ACTIONS(2836), + [anon_sym_co_return] = ACTIONS(2836), + [anon_sym_co_yield] = ACTIONS(2836), + [anon_sym_R_DQUOTE] = ACTIONS(2838), + [anon_sym_LR_DQUOTE] = ACTIONS(2838), + [anon_sym_uR_DQUOTE] = ACTIONS(2838), + [anon_sym_UR_DQUOTE] = ACTIONS(2838), + [anon_sym_u8R_DQUOTE] = ACTIONS(2838), + [anon_sym_co_await] = ACTIONS(2836), + [anon_sym_new] = ACTIONS(2836), + [anon_sym_requires] = ACTIONS(2836), + [sym_this] = ACTIONS(2836), }, - [742] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [753] = { + [sym_identifier] = ACTIONS(2830), + [aux_sym_preproc_include_token1] = ACTIONS(2830), + [aux_sym_preproc_def_token1] = ACTIONS(2830), + [aux_sym_preproc_if_token1] = ACTIONS(2830), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2830), + [sym_preproc_directive] = ACTIONS(2830), + [anon_sym_LPAREN2] = ACTIONS(2832), + [anon_sym_BANG] = ACTIONS(2832), + [anon_sym_TILDE] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2830), + [anon_sym_PLUS] = ACTIONS(2830), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_AMP_AMP] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2832), + [anon_sym___extension__] = ACTIONS(2830), + [anon_sym_typedef] = ACTIONS(2830), + [anon_sym_extern] = ACTIONS(2830), + [anon_sym___attribute__] = ACTIONS(2830), + [anon_sym_COLON_COLON] = ACTIONS(2832), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2832), + [anon_sym___declspec] = ACTIONS(2830), + [anon_sym___based] = ACTIONS(2830), + [anon_sym___cdecl] = ACTIONS(2830), + [anon_sym___clrcall] = ACTIONS(2830), + [anon_sym___stdcall] = ACTIONS(2830), + [anon_sym___fastcall] = ACTIONS(2830), + [anon_sym___thiscall] = ACTIONS(2830), + [anon_sym___vectorcall] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_RBRACE] = ACTIONS(2832), + [anon_sym_signed] = ACTIONS(2830), + [anon_sym_unsigned] = ACTIONS(2830), + [anon_sym_long] = ACTIONS(2830), + [anon_sym_short] = ACTIONS(2830), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2830), + [anon_sym_register] = ACTIONS(2830), + [anon_sym_inline] = ACTIONS(2830), + [anon_sym___inline] = ACTIONS(2830), + [anon_sym___inline__] = ACTIONS(2830), + [anon_sym___forceinline] = ACTIONS(2830), + [anon_sym_thread_local] = ACTIONS(2830), + [anon_sym___thread] = ACTIONS(2830), + [anon_sym_const] = ACTIONS(2830), + [anon_sym_constexpr] = ACTIONS(2830), + [anon_sym_volatile] = ACTIONS(2830), + [anon_sym_restrict] = ACTIONS(2830), + [anon_sym___restrict__] = ACTIONS(2830), + [anon_sym__Atomic] = ACTIONS(2830), + [anon_sym__Noreturn] = ACTIONS(2830), + [anon_sym_noreturn] = ACTIONS(2830), + [anon_sym_mutable] = ACTIONS(2830), + [anon_sym_constinit] = ACTIONS(2830), + [anon_sym_consteval] = ACTIONS(2830), + [sym_primitive_type] = ACTIONS(2830), + [anon_sym_enum] = ACTIONS(2830), + [anon_sym_class] = ACTIONS(2830), + [anon_sym_struct] = ACTIONS(2830), + [anon_sym_union] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2830), + [anon_sym_else] = ACTIONS(2830), + [anon_sym_switch] = ACTIONS(2830), + [anon_sym_case] = ACTIONS(2830), + [anon_sym_default] = ACTIONS(2830), + [anon_sym_while] = ACTIONS(2830), + [anon_sym_do] = ACTIONS(2830), + [anon_sym_for] = ACTIONS(2830), + [anon_sym_return] = ACTIONS(2830), + [anon_sym_break] = ACTIONS(2830), + [anon_sym_continue] = ACTIONS(2830), + [anon_sym_goto] = ACTIONS(2830), + [anon_sym_not] = ACTIONS(2830), + [anon_sym_compl] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_sizeof] = ACTIONS(2830), + [anon_sym___alignof__] = ACTIONS(2830), + [anon_sym___alignof] = ACTIONS(2830), + [anon_sym__alignof] = ACTIONS(2830), + [anon_sym_alignof] = ACTIONS(2830), + [anon_sym__Alignof] = ACTIONS(2830), + [anon_sym_offsetof] = ACTIONS(2830), + [anon_sym__Generic] = ACTIONS(2830), + [anon_sym_asm] = ACTIONS(2830), + [anon_sym___asm__] = ACTIONS(2830), + [sym_number_literal] = ACTIONS(2832), + [anon_sym_L_SQUOTE] = ACTIONS(2832), + [anon_sym_u_SQUOTE] = ACTIONS(2832), + [anon_sym_U_SQUOTE] = ACTIONS(2832), + [anon_sym_u8_SQUOTE] = ACTIONS(2832), + [anon_sym_SQUOTE] = ACTIONS(2832), + [anon_sym_L_DQUOTE] = ACTIONS(2832), + [anon_sym_u_DQUOTE] = ACTIONS(2832), + [anon_sym_U_DQUOTE] = ACTIONS(2832), + [anon_sym_u8_DQUOTE] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [anon_sym_NULL] = ACTIONS(2830), + [anon_sym_nullptr] = ACTIONS(2830), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2830), + [anon_sym_decltype] = ACTIONS(2830), + [anon_sym_virtual] = ACTIONS(2830), + [anon_sym_alignas] = ACTIONS(2830), + [anon_sym_explicit] = ACTIONS(2830), + [anon_sym_typename] = ACTIONS(2830), + [anon_sym_template] = ACTIONS(2830), + [anon_sym_operator] = ACTIONS(2830), + [anon_sym_try] = ACTIONS(2830), + [anon_sym_delete] = ACTIONS(2830), + [anon_sym_throw] = ACTIONS(2830), + [anon_sym_namespace] = ACTIONS(2830), + [anon_sym_using] = ACTIONS(2830), + [anon_sym_static_assert] = ACTIONS(2830), + [anon_sym_concept] = ACTIONS(2830), + [anon_sym_co_return] = ACTIONS(2830), + [anon_sym_co_yield] = ACTIONS(2830), + [anon_sym_R_DQUOTE] = ACTIONS(2832), + [anon_sym_LR_DQUOTE] = ACTIONS(2832), + [anon_sym_uR_DQUOTE] = ACTIONS(2832), + [anon_sym_UR_DQUOTE] = ACTIONS(2832), + [anon_sym_u8R_DQUOTE] = ACTIONS(2832), + [anon_sym_co_await] = ACTIONS(2830), + [anon_sym_new] = ACTIONS(2830), + [anon_sym_requires] = ACTIONS(2830), + [sym_this] = ACTIONS(2830), }, - [743] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [754] = { + [sym_identifier] = ACTIONS(2766), + [aux_sym_preproc_include_token1] = ACTIONS(2766), + [aux_sym_preproc_def_token1] = ACTIONS(2766), + [aux_sym_preproc_if_token1] = ACTIONS(2766), + [aux_sym_preproc_if_token2] = ACTIONS(2766), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2766), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2766), + [sym_preproc_directive] = ACTIONS(2766), + [anon_sym_LPAREN2] = ACTIONS(2768), + [anon_sym_BANG] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2766), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym___extension__] = ACTIONS(2766), + [anon_sym_typedef] = ACTIONS(2766), + [anon_sym_extern] = ACTIONS(2766), + [anon_sym___attribute__] = ACTIONS(2766), + [anon_sym_COLON_COLON] = ACTIONS(2768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2768), + [anon_sym___declspec] = ACTIONS(2766), + [anon_sym___based] = ACTIONS(2766), + [anon_sym___cdecl] = ACTIONS(2766), + [anon_sym___clrcall] = ACTIONS(2766), + [anon_sym___stdcall] = ACTIONS(2766), + [anon_sym___fastcall] = ACTIONS(2766), + [anon_sym___thiscall] = ACTIONS(2766), + [anon_sym___vectorcall] = ACTIONS(2766), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_signed] = ACTIONS(2766), + [anon_sym_unsigned] = ACTIONS(2766), + [anon_sym_long] = ACTIONS(2766), + [anon_sym_short] = ACTIONS(2766), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym_static] = ACTIONS(2766), + [anon_sym_register] = ACTIONS(2766), + [anon_sym_inline] = ACTIONS(2766), + [anon_sym___inline] = ACTIONS(2766), + [anon_sym___inline__] = ACTIONS(2766), + [anon_sym___forceinline] = ACTIONS(2766), + [anon_sym_thread_local] = ACTIONS(2766), + [anon_sym___thread] = ACTIONS(2766), + [anon_sym_const] = ACTIONS(2766), + [anon_sym_constexpr] = ACTIONS(2766), + [anon_sym_volatile] = ACTIONS(2766), + [anon_sym_restrict] = ACTIONS(2766), + [anon_sym___restrict__] = ACTIONS(2766), + [anon_sym__Atomic] = ACTIONS(2766), + [anon_sym__Noreturn] = ACTIONS(2766), + [anon_sym_noreturn] = ACTIONS(2766), + [anon_sym_mutable] = ACTIONS(2766), + [anon_sym_constinit] = ACTIONS(2766), + [anon_sym_consteval] = ACTIONS(2766), + [sym_primitive_type] = ACTIONS(2766), + [anon_sym_enum] = ACTIONS(2766), + [anon_sym_class] = ACTIONS(2766), + [anon_sym_struct] = ACTIONS(2766), + [anon_sym_union] = ACTIONS(2766), + [anon_sym_if] = ACTIONS(2766), + [anon_sym_else] = ACTIONS(2766), + [anon_sym_switch] = ACTIONS(2766), + [anon_sym_case] = ACTIONS(2766), + [anon_sym_default] = ACTIONS(2766), + [anon_sym_while] = ACTIONS(2766), + [anon_sym_do] = ACTIONS(2766), + [anon_sym_for] = ACTIONS(2766), + [anon_sym_return] = ACTIONS(2766), + [anon_sym_break] = ACTIONS(2766), + [anon_sym_continue] = ACTIONS(2766), + [anon_sym_goto] = ACTIONS(2766), + [anon_sym_not] = ACTIONS(2766), + [anon_sym_compl] = ACTIONS(2766), + [anon_sym_DASH_DASH] = ACTIONS(2768), + [anon_sym_PLUS_PLUS] = ACTIONS(2768), + [anon_sym_sizeof] = ACTIONS(2766), + [anon_sym___alignof__] = ACTIONS(2766), + [anon_sym___alignof] = ACTIONS(2766), + [anon_sym__alignof] = ACTIONS(2766), + [anon_sym_alignof] = ACTIONS(2766), + [anon_sym__Alignof] = ACTIONS(2766), + [anon_sym_offsetof] = ACTIONS(2766), + [anon_sym__Generic] = ACTIONS(2766), + [anon_sym_asm] = ACTIONS(2766), + [anon_sym___asm__] = ACTIONS(2766), + [sym_number_literal] = ACTIONS(2768), + [anon_sym_L_SQUOTE] = ACTIONS(2768), + [anon_sym_u_SQUOTE] = ACTIONS(2768), + [anon_sym_U_SQUOTE] = ACTIONS(2768), + [anon_sym_u8_SQUOTE] = ACTIONS(2768), + [anon_sym_SQUOTE] = ACTIONS(2768), + [anon_sym_L_DQUOTE] = ACTIONS(2768), + [anon_sym_u_DQUOTE] = ACTIONS(2768), + [anon_sym_U_DQUOTE] = ACTIONS(2768), + [anon_sym_u8_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [sym_true] = ACTIONS(2766), + [sym_false] = ACTIONS(2766), + [anon_sym_NULL] = ACTIONS(2766), + [anon_sym_nullptr] = ACTIONS(2766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2766), + [anon_sym_decltype] = ACTIONS(2766), + [anon_sym_virtual] = ACTIONS(2766), + [anon_sym_alignas] = ACTIONS(2766), + [anon_sym_explicit] = ACTIONS(2766), + [anon_sym_typename] = ACTIONS(2766), + [anon_sym_template] = ACTIONS(2766), + [anon_sym_operator] = ACTIONS(2766), + [anon_sym_try] = ACTIONS(2766), + [anon_sym_delete] = ACTIONS(2766), + [anon_sym_throw] = ACTIONS(2766), + [anon_sym_namespace] = ACTIONS(2766), + [anon_sym_using] = ACTIONS(2766), + [anon_sym_static_assert] = ACTIONS(2766), + [anon_sym_concept] = ACTIONS(2766), + [anon_sym_co_return] = ACTIONS(2766), + [anon_sym_co_yield] = ACTIONS(2766), + [anon_sym_R_DQUOTE] = ACTIONS(2768), + [anon_sym_LR_DQUOTE] = ACTIONS(2768), + [anon_sym_uR_DQUOTE] = ACTIONS(2768), + [anon_sym_UR_DQUOTE] = ACTIONS(2768), + [anon_sym_u8R_DQUOTE] = ACTIONS(2768), + [anon_sym_co_await] = ACTIONS(2766), + [anon_sym_new] = ACTIONS(2766), + [anon_sym_requires] = ACTIONS(2766), + [sym_this] = ACTIONS(2766), }, - [744] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [755] = { + [sym_identifier] = ACTIONS(2774), + [aux_sym_preproc_include_token1] = ACTIONS(2774), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token2] = ACTIONS(2774), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), + [sym_preproc_directive] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_TILDE] = ACTIONS(2776), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_STAR] = ACTIONS(2776), + [anon_sym_AMP_AMP] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym___extension__] = ACTIONS(2774), + [anon_sym_typedef] = ACTIONS(2774), + [anon_sym_extern] = ACTIONS(2774), + [anon_sym___attribute__] = ACTIONS(2774), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), + [anon_sym___declspec] = ACTIONS(2774), + [anon_sym___based] = ACTIONS(2774), + [anon_sym___cdecl] = ACTIONS(2774), + [anon_sym___clrcall] = ACTIONS(2774), + [anon_sym___stdcall] = ACTIONS(2774), + [anon_sym___fastcall] = ACTIONS(2774), + [anon_sym___thiscall] = ACTIONS(2774), + [anon_sym___vectorcall] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2776), + [anon_sym_signed] = ACTIONS(2774), + [anon_sym_unsigned] = ACTIONS(2774), + [anon_sym_long] = ACTIONS(2774), + [anon_sym_short] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_static] = ACTIONS(2774), + [anon_sym_register] = ACTIONS(2774), + [anon_sym_inline] = ACTIONS(2774), + [anon_sym___inline] = ACTIONS(2774), + [anon_sym___inline__] = ACTIONS(2774), + [anon_sym___forceinline] = ACTIONS(2774), + [anon_sym_thread_local] = ACTIONS(2774), + [anon_sym___thread] = ACTIONS(2774), + [anon_sym_const] = ACTIONS(2774), + [anon_sym_constexpr] = ACTIONS(2774), + [anon_sym_volatile] = ACTIONS(2774), + [anon_sym_restrict] = ACTIONS(2774), + [anon_sym___restrict__] = ACTIONS(2774), + [anon_sym__Atomic] = ACTIONS(2774), + [anon_sym__Noreturn] = ACTIONS(2774), + [anon_sym_noreturn] = ACTIONS(2774), + [anon_sym_mutable] = ACTIONS(2774), + [anon_sym_constinit] = ACTIONS(2774), + [anon_sym_consteval] = ACTIONS(2774), + [sym_primitive_type] = ACTIONS(2774), + [anon_sym_enum] = ACTIONS(2774), + [anon_sym_class] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(2774), + [anon_sym_union] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_else] = ACTIONS(2774), + [anon_sym_switch] = ACTIONS(2774), + [anon_sym_case] = ACTIONS(2774), + [anon_sym_default] = ACTIONS(2774), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_break] = ACTIONS(2774), + [anon_sym_continue] = ACTIONS(2774), + [anon_sym_goto] = ACTIONS(2774), + [anon_sym_not] = ACTIONS(2774), + [anon_sym_compl] = ACTIONS(2774), + [anon_sym_DASH_DASH] = ACTIONS(2776), + [anon_sym_PLUS_PLUS] = ACTIONS(2776), + [anon_sym_sizeof] = ACTIONS(2774), + [anon_sym___alignof__] = ACTIONS(2774), + [anon_sym___alignof] = ACTIONS(2774), + [anon_sym__alignof] = ACTIONS(2774), + [anon_sym_alignof] = ACTIONS(2774), + [anon_sym__Alignof] = ACTIONS(2774), + [anon_sym_offsetof] = ACTIONS(2774), + [anon_sym__Generic] = ACTIONS(2774), + [anon_sym_asm] = ACTIONS(2774), + [anon_sym___asm__] = ACTIONS(2774), + [sym_number_literal] = ACTIONS(2776), + [anon_sym_L_SQUOTE] = ACTIONS(2776), + [anon_sym_u_SQUOTE] = ACTIONS(2776), + [anon_sym_U_SQUOTE] = ACTIONS(2776), + [anon_sym_u8_SQUOTE] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_L_DQUOTE] = ACTIONS(2776), + [anon_sym_u_DQUOTE] = ACTIONS(2776), + [anon_sym_U_DQUOTE] = ACTIONS(2776), + [anon_sym_u8_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE] = ACTIONS(2776), + [sym_true] = ACTIONS(2774), + [sym_false] = ACTIONS(2774), + [anon_sym_NULL] = ACTIONS(2774), + [anon_sym_nullptr] = ACTIONS(2774), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2774), + [anon_sym_virtual] = ACTIONS(2774), + [anon_sym_alignas] = ACTIONS(2774), + [anon_sym_explicit] = ACTIONS(2774), + [anon_sym_typename] = ACTIONS(2774), + [anon_sym_template] = ACTIONS(2774), + [anon_sym_operator] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_delete] = ACTIONS(2774), + [anon_sym_throw] = ACTIONS(2774), + [anon_sym_namespace] = ACTIONS(2774), + [anon_sym_using] = ACTIONS(2774), + [anon_sym_static_assert] = ACTIONS(2774), + [anon_sym_concept] = ACTIONS(2774), + [anon_sym_co_return] = ACTIONS(2774), + [anon_sym_co_yield] = ACTIONS(2774), + [anon_sym_R_DQUOTE] = ACTIONS(2776), + [anon_sym_LR_DQUOTE] = ACTIONS(2776), + [anon_sym_uR_DQUOTE] = ACTIONS(2776), + [anon_sym_UR_DQUOTE] = ACTIONS(2776), + [anon_sym_u8R_DQUOTE] = ACTIONS(2776), + [anon_sym_co_await] = ACTIONS(2774), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_requires] = ACTIONS(2774), + [sym_this] = ACTIONS(2774), }, - [745] = { + [756] = { + [sym_identifier] = ACTIONS(2790), + [aux_sym_preproc_include_token1] = ACTIONS(2790), + [aux_sym_preproc_def_token1] = ACTIONS(2790), + [aux_sym_preproc_if_token1] = ACTIONS(2790), + [aux_sym_preproc_if_token2] = ACTIONS(2790), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2790), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2790), + [sym_preproc_directive] = ACTIONS(2790), + [anon_sym_LPAREN2] = ACTIONS(2792), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_TILDE] = ACTIONS(2792), + [anon_sym_DASH] = ACTIONS(2790), + [anon_sym_PLUS] = ACTIONS(2790), + [anon_sym_STAR] = ACTIONS(2792), + [anon_sym_AMP_AMP] = ACTIONS(2792), + [anon_sym_AMP] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym___extension__] = ACTIONS(2790), + [anon_sym_typedef] = ACTIONS(2790), + [anon_sym_extern] = ACTIONS(2790), + [anon_sym___attribute__] = ACTIONS(2790), + [anon_sym_COLON_COLON] = ACTIONS(2792), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2792), + [anon_sym___declspec] = ACTIONS(2790), + [anon_sym___based] = ACTIONS(2790), + [anon_sym___cdecl] = ACTIONS(2790), + [anon_sym___clrcall] = ACTIONS(2790), + [anon_sym___stdcall] = ACTIONS(2790), + [anon_sym___fastcall] = ACTIONS(2790), + [anon_sym___thiscall] = ACTIONS(2790), + [anon_sym___vectorcall] = ACTIONS(2790), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_signed] = ACTIONS(2790), + [anon_sym_unsigned] = ACTIONS(2790), + [anon_sym_long] = ACTIONS(2790), + [anon_sym_short] = ACTIONS(2790), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym_static] = ACTIONS(2790), + [anon_sym_register] = ACTIONS(2790), + [anon_sym_inline] = ACTIONS(2790), + [anon_sym___inline] = ACTIONS(2790), + [anon_sym___inline__] = ACTIONS(2790), + [anon_sym___forceinline] = ACTIONS(2790), + [anon_sym_thread_local] = ACTIONS(2790), + [anon_sym___thread] = ACTIONS(2790), + [anon_sym_const] = ACTIONS(2790), + [anon_sym_constexpr] = ACTIONS(2790), + [anon_sym_volatile] = ACTIONS(2790), + [anon_sym_restrict] = ACTIONS(2790), + [anon_sym___restrict__] = ACTIONS(2790), + [anon_sym__Atomic] = ACTIONS(2790), + [anon_sym__Noreturn] = ACTIONS(2790), + [anon_sym_noreturn] = ACTIONS(2790), + [anon_sym_mutable] = ACTIONS(2790), + [anon_sym_constinit] = ACTIONS(2790), + [anon_sym_consteval] = ACTIONS(2790), + [sym_primitive_type] = ACTIONS(2790), + [anon_sym_enum] = ACTIONS(2790), + [anon_sym_class] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(2790), + [anon_sym_union] = ACTIONS(2790), + [anon_sym_if] = ACTIONS(2790), + [anon_sym_else] = ACTIONS(2790), + [anon_sym_switch] = ACTIONS(2790), + [anon_sym_case] = ACTIONS(2790), + [anon_sym_default] = ACTIONS(2790), + [anon_sym_while] = ACTIONS(2790), + [anon_sym_do] = ACTIONS(2790), + [anon_sym_for] = ACTIONS(2790), + [anon_sym_return] = ACTIONS(2790), + [anon_sym_break] = ACTIONS(2790), + [anon_sym_continue] = ACTIONS(2790), + [anon_sym_goto] = ACTIONS(2790), + [anon_sym_not] = ACTIONS(2790), + [anon_sym_compl] = ACTIONS(2790), + [anon_sym_DASH_DASH] = ACTIONS(2792), + [anon_sym_PLUS_PLUS] = ACTIONS(2792), + [anon_sym_sizeof] = ACTIONS(2790), + [anon_sym___alignof__] = ACTIONS(2790), + [anon_sym___alignof] = ACTIONS(2790), + [anon_sym__alignof] = ACTIONS(2790), + [anon_sym_alignof] = ACTIONS(2790), + [anon_sym__Alignof] = ACTIONS(2790), + [anon_sym_offsetof] = ACTIONS(2790), + [anon_sym__Generic] = ACTIONS(2790), + [anon_sym_asm] = ACTIONS(2790), + [anon_sym___asm__] = ACTIONS(2790), + [sym_number_literal] = ACTIONS(2792), + [anon_sym_L_SQUOTE] = ACTIONS(2792), + [anon_sym_u_SQUOTE] = ACTIONS(2792), + [anon_sym_U_SQUOTE] = ACTIONS(2792), + [anon_sym_u8_SQUOTE] = ACTIONS(2792), + [anon_sym_SQUOTE] = ACTIONS(2792), + [anon_sym_L_DQUOTE] = ACTIONS(2792), + [anon_sym_u_DQUOTE] = ACTIONS(2792), + [anon_sym_U_DQUOTE] = ACTIONS(2792), + [anon_sym_u8_DQUOTE] = ACTIONS(2792), + [anon_sym_DQUOTE] = ACTIONS(2792), + [sym_true] = ACTIONS(2790), + [sym_false] = ACTIONS(2790), + [anon_sym_NULL] = ACTIONS(2790), + [anon_sym_nullptr] = ACTIONS(2790), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2790), + [anon_sym_decltype] = ACTIONS(2790), + [anon_sym_virtual] = ACTIONS(2790), + [anon_sym_alignas] = ACTIONS(2790), + [anon_sym_explicit] = ACTIONS(2790), + [anon_sym_typename] = ACTIONS(2790), + [anon_sym_template] = ACTIONS(2790), + [anon_sym_operator] = ACTIONS(2790), + [anon_sym_try] = ACTIONS(2790), + [anon_sym_delete] = ACTIONS(2790), + [anon_sym_throw] = ACTIONS(2790), + [anon_sym_namespace] = ACTIONS(2790), + [anon_sym_using] = ACTIONS(2790), + [anon_sym_static_assert] = ACTIONS(2790), + [anon_sym_concept] = ACTIONS(2790), + [anon_sym_co_return] = ACTIONS(2790), + [anon_sym_co_yield] = ACTIONS(2790), + [anon_sym_R_DQUOTE] = ACTIONS(2792), + [anon_sym_LR_DQUOTE] = ACTIONS(2792), + [anon_sym_uR_DQUOTE] = ACTIONS(2792), + [anon_sym_UR_DQUOTE] = ACTIONS(2792), + [anon_sym_u8R_DQUOTE] = ACTIONS(2792), + [anon_sym_co_await] = ACTIONS(2790), + [anon_sym_new] = ACTIONS(2790), + [anon_sym_requires] = ACTIONS(2790), + [sym_this] = ACTIONS(2790), + }, + [757] = { + [sym_identifier] = ACTIONS(2800), + [aux_sym_preproc_include_token1] = ACTIONS(2800), + [aux_sym_preproc_def_token1] = ACTIONS(2800), + [aux_sym_preproc_if_token1] = ACTIONS(2800), + [aux_sym_preproc_if_token2] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2800), + [sym_preproc_directive] = ACTIONS(2800), + [anon_sym_LPAREN2] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(2800), + [anon_sym_PLUS] = ACTIONS(2800), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_AMP_AMP] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2800), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym___extension__] = ACTIONS(2800), + [anon_sym_typedef] = ACTIONS(2800), + [anon_sym_extern] = ACTIONS(2800), + [anon_sym___attribute__] = ACTIONS(2800), + [anon_sym_COLON_COLON] = ACTIONS(2802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2802), + [anon_sym___declspec] = ACTIONS(2800), + [anon_sym___based] = ACTIONS(2800), + [anon_sym___cdecl] = ACTIONS(2800), + [anon_sym___clrcall] = ACTIONS(2800), + [anon_sym___stdcall] = ACTIONS(2800), + [anon_sym___fastcall] = ACTIONS(2800), + [anon_sym___thiscall] = ACTIONS(2800), + [anon_sym___vectorcall] = ACTIONS(2800), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_signed] = ACTIONS(2800), + [anon_sym_unsigned] = ACTIONS(2800), + [anon_sym_long] = ACTIONS(2800), + [anon_sym_short] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2800), + [anon_sym_register] = ACTIONS(2800), + [anon_sym_inline] = ACTIONS(2800), + [anon_sym___inline] = ACTIONS(2800), + [anon_sym___inline__] = ACTIONS(2800), + [anon_sym___forceinline] = ACTIONS(2800), + [anon_sym_thread_local] = ACTIONS(2800), + [anon_sym___thread] = ACTIONS(2800), + [anon_sym_const] = ACTIONS(2800), + [anon_sym_constexpr] = ACTIONS(2800), + [anon_sym_volatile] = ACTIONS(2800), + [anon_sym_restrict] = ACTIONS(2800), + [anon_sym___restrict__] = ACTIONS(2800), + [anon_sym__Atomic] = ACTIONS(2800), + [anon_sym__Noreturn] = ACTIONS(2800), + [anon_sym_noreturn] = ACTIONS(2800), + [anon_sym_mutable] = ACTIONS(2800), + [anon_sym_constinit] = ACTIONS(2800), + [anon_sym_consteval] = ACTIONS(2800), + [sym_primitive_type] = ACTIONS(2800), + [anon_sym_enum] = ACTIONS(2800), + [anon_sym_class] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2800), + [anon_sym_union] = ACTIONS(2800), + [anon_sym_if] = ACTIONS(2800), + [anon_sym_else] = ACTIONS(2800), + [anon_sym_switch] = ACTIONS(2800), + [anon_sym_case] = ACTIONS(2800), + [anon_sym_default] = ACTIONS(2800), + [anon_sym_while] = ACTIONS(2800), + [anon_sym_do] = ACTIONS(2800), + [anon_sym_for] = ACTIONS(2800), + [anon_sym_return] = ACTIONS(2800), + [anon_sym_break] = ACTIONS(2800), + [anon_sym_continue] = ACTIONS(2800), + [anon_sym_goto] = ACTIONS(2800), + [anon_sym_not] = ACTIONS(2800), + [anon_sym_compl] = ACTIONS(2800), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_sizeof] = ACTIONS(2800), + [anon_sym___alignof__] = ACTIONS(2800), + [anon_sym___alignof] = ACTIONS(2800), + [anon_sym__alignof] = ACTIONS(2800), + [anon_sym_alignof] = ACTIONS(2800), + [anon_sym__Alignof] = ACTIONS(2800), + [anon_sym_offsetof] = ACTIONS(2800), + [anon_sym__Generic] = ACTIONS(2800), + [anon_sym_asm] = ACTIONS(2800), + [anon_sym___asm__] = ACTIONS(2800), + [sym_number_literal] = ACTIONS(2802), + [anon_sym_L_SQUOTE] = ACTIONS(2802), + [anon_sym_u_SQUOTE] = ACTIONS(2802), + [anon_sym_U_SQUOTE] = ACTIONS(2802), + [anon_sym_u8_SQUOTE] = ACTIONS(2802), + [anon_sym_SQUOTE] = ACTIONS(2802), + [anon_sym_L_DQUOTE] = ACTIONS(2802), + [anon_sym_u_DQUOTE] = ACTIONS(2802), + [anon_sym_U_DQUOTE] = ACTIONS(2802), + [anon_sym_u8_DQUOTE] = ACTIONS(2802), + [anon_sym_DQUOTE] = ACTIONS(2802), + [sym_true] = ACTIONS(2800), + [sym_false] = ACTIONS(2800), + [anon_sym_NULL] = ACTIONS(2800), + [anon_sym_nullptr] = ACTIONS(2800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2800), + [anon_sym_decltype] = ACTIONS(2800), + [anon_sym_virtual] = ACTIONS(2800), + [anon_sym_alignas] = ACTIONS(2800), + [anon_sym_explicit] = ACTIONS(2800), + [anon_sym_typename] = ACTIONS(2800), + [anon_sym_template] = ACTIONS(2800), + [anon_sym_operator] = ACTIONS(2800), + [anon_sym_try] = ACTIONS(2800), + [anon_sym_delete] = ACTIONS(2800), + [anon_sym_throw] = ACTIONS(2800), + [anon_sym_namespace] = ACTIONS(2800), + [anon_sym_using] = ACTIONS(2800), + [anon_sym_static_assert] = ACTIONS(2800), + [anon_sym_concept] = ACTIONS(2800), + [anon_sym_co_return] = ACTIONS(2800), + [anon_sym_co_yield] = ACTIONS(2800), + [anon_sym_R_DQUOTE] = ACTIONS(2802), + [anon_sym_LR_DQUOTE] = ACTIONS(2802), + [anon_sym_uR_DQUOTE] = ACTIONS(2802), + [anon_sym_UR_DQUOTE] = ACTIONS(2802), + [anon_sym_u8R_DQUOTE] = ACTIONS(2802), + [anon_sym_co_await] = ACTIONS(2800), + [anon_sym_new] = ACTIONS(2800), + [anon_sym_requires] = ACTIONS(2800), + [sym_this] = ACTIONS(2800), + }, + [758] = { + [sym_identifier] = ACTIONS(2770), + [aux_sym_preproc_include_token1] = ACTIONS(2770), + [aux_sym_preproc_def_token1] = ACTIONS(2770), + [aux_sym_preproc_if_token1] = ACTIONS(2770), + [aux_sym_preproc_if_token2] = ACTIONS(2770), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2770), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2770), + [sym_preproc_directive] = ACTIONS(2770), + [anon_sym_LPAREN2] = ACTIONS(2772), + [anon_sym_BANG] = ACTIONS(2772), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2770), + [anon_sym_PLUS] = ACTIONS(2770), + [anon_sym_STAR] = ACTIONS(2772), + [anon_sym_AMP_AMP] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2770), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym___extension__] = ACTIONS(2770), + [anon_sym_typedef] = ACTIONS(2770), + [anon_sym_extern] = ACTIONS(2770), + [anon_sym___attribute__] = ACTIONS(2770), + [anon_sym_COLON_COLON] = ACTIONS(2772), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2772), + [anon_sym___declspec] = ACTIONS(2770), + [anon_sym___based] = ACTIONS(2770), + [anon_sym___cdecl] = ACTIONS(2770), + [anon_sym___clrcall] = ACTIONS(2770), + [anon_sym___stdcall] = ACTIONS(2770), + [anon_sym___fastcall] = ACTIONS(2770), + [anon_sym___thiscall] = ACTIONS(2770), + [anon_sym___vectorcall] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_signed] = ACTIONS(2770), + [anon_sym_unsigned] = ACTIONS(2770), + [anon_sym_long] = ACTIONS(2770), + [anon_sym_short] = ACTIONS(2770), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym_static] = ACTIONS(2770), + [anon_sym_register] = ACTIONS(2770), + [anon_sym_inline] = ACTIONS(2770), + [anon_sym___inline] = ACTIONS(2770), + [anon_sym___inline__] = ACTIONS(2770), + [anon_sym___forceinline] = ACTIONS(2770), + [anon_sym_thread_local] = ACTIONS(2770), + [anon_sym___thread] = ACTIONS(2770), + [anon_sym_const] = ACTIONS(2770), + [anon_sym_constexpr] = ACTIONS(2770), + [anon_sym_volatile] = ACTIONS(2770), + [anon_sym_restrict] = ACTIONS(2770), + [anon_sym___restrict__] = ACTIONS(2770), + [anon_sym__Atomic] = ACTIONS(2770), + [anon_sym__Noreturn] = ACTIONS(2770), + [anon_sym_noreturn] = ACTIONS(2770), + [anon_sym_mutable] = ACTIONS(2770), + [anon_sym_constinit] = ACTIONS(2770), + [anon_sym_consteval] = ACTIONS(2770), + [sym_primitive_type] = ACTIONS(2770), + [anon_sym_enum] = ACTIONS(2770), + [anon_sym_class] = ACTIONS(2770), + [anon_sym_struct] = ACTIONS(2770), + [anon_sym_union] = ACTIONS(2770), + [anon_sym_if] = ACTIONS(2770), + [anon_sym_else] = ACTIONS(2770), + [anon_sym_switch] = ACTIONS(2770), + [anon_sym_case] = ACTIONS(2770), + [anon_sym_default] = ACTIONS(2770), + [anon_sym_while] = ACTIONS(2770), + [anon_sym_do] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2770), + [anon_sym_return] = ACTIONS(2770), + [anon_sym_break] = ACTIONS(2770), + [anon_sym_continue] = ACTIONS(2770), + [anon_sym_goto] = ACTIONS(2770), + [anon_sym_not] = ACTIONS(2770), + [anon_sym_compl] = ACTIONS(2770), + [anon_sym_DASH_DASH] = ACTIONS(2772), + [anon_sym_PLUS_PLUS] = ACTIONS(2772), + [anon_sym_sizeof] = ACTIONS(2770), + [anon_sym___alignof__] = ACTIONS(2770), + [anon_sym___alignof] = ACTIONS(2770), + [anon_sym__alignof] = ACTIONS(2770), + [anon_sym_alignof] = ACTIONS(2770), + [anon_sym__Alignof] = ACTIONS(2770), + [anon_sym_offsetof] = ACTIONS(2770), + [anon_sym__Generic] = ACTIONS(2770), + [anon_sym_asm] = ACTIONS(2770), + [anon_sym___asm__] = ACTIONS(2770), + [sym_number_literal] = ACTIONS(2772), + [anon_sym_L_SQUOTE] = ACTIONS(2772), + [anon_sym_u_SQUOTE] = ACTIONS(2772), + [anon_sym_U_SQUOTE] = ACTIONS(2772), + [anon_sym_u8_SQUOTE] = ACTIONS(2772), + [anon_sym_SQUOTE] = ACTIONS(2772), + [anon_sym_L_DQUOTE] = ACTIONS(2772), + [anon_sym_u_DQUOTE] = ACTIONS(2772), + [anon_sym_U_DQUOTE] = ACTIONS(2772), + [anon_sym_u8_DQUOTE] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2772), + [sym_true] = ACTIONS(2770), + [sym_false] = ACTIONS(2770), + [anon_sym_NULL] = ACTIONS(2770), + [anon_sym_nullptr] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2770), + [anon_sym_decltype] = ACTIONS(2770), + [anon_sym_virtual] = ACTIONS(2770), + [anon_sym_alignas] = ACTIONS(2770), + [anon_sym_explicit] = ACTIONS(2770), + [anon_sym_typename] = ACTIONS(2770), + [anon_sym_template] = ACTIONS(2770), + [anon_sym_operator] = ACTIONS(2770), + [anon_sym_try] = ACTIONS(2770), + [anon_sym_delete] = ACTIONS(2770), + [anon_sym_throw] = ACTIONS(2770), + [anon_sym_namespace] = ACTIONS(2770), + [anon_sym_using] = ACTIONS(2770), + [anon_sym_static_assert] = ACTIONS(2770), + [anon_sym_concept] = ACTIONS(2770), + [anon_sym_co_return] = ACTIONS(2770), + [anon_sym_co_yield] = ACTIONS(2770), + [anon_sym_R_DQUOTE] = ACTIONS(2772), + [anon_sym_LR_DQUOTE] = ACTIONS(2772), + [anon_sym_uR_DQUOTE] = ACTIONS(2772), + [anon_sym_UR_DQUOTE] = ACTIONS(2772), + [anon_sym_u8R_DQUOTE] = ACTIONS(2772), + [anon_sym_co_await] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2770), + [anon_sym_requires] = ACTIONS(2770), + [sym_this] = ACTIONS(2770), + }, + [759] = { + [sym_identifier] = ACTIONS(2824), + [aux_sym_preproc_include_token1] = ACTIONS(2824), + [aux_sym_preproc_def_token1] = ACTIONS(2824), + [aux_sym_preproc_if_token1] = ACTIONS(2824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2824), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2824), + [sym_preproc_directive] = ACTIONS(2824), + [anon_sym_LPAREN2] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_PLUS] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2826), + [anon_sym_AMP_AMP] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym___extension__] = ACTIONS(2824), + [anon_sym_typedef] = ACTIONS(2824), + [anon_sym_extern] = ACTIONS(2824), + [anon_sym___attribute__] = ACTIONS(2824), + [anon_sym_COLON_COLON] = ACTIONS(2826), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2826), + [anon_sym___declspec] = ACTIONS(2824), + [anon_sym___based] = ACTIONS(2824), + [anon_sym___cdecl] = ACTIONS(2824), + [anon_sym___clrcall] = ACTIONS(2824), + [anon_sym___stdcall] = ACTIONS(2824), + [anon_sym___fastcall] = ACTIONS(2824), + [anon_sym___thiscall] = ACTIONS(2824), + [anon_sym___vectorcall] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_signed] = ACTIONS(2824), + [anon_sym_unsigned] = ACTIONS(2824), + [anon_sym_long] = ACTIONS(2824), + [anon_sym_short] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_register] = ACTIONS(2824), + [anon_sym_inline] = ACTIONS(2824), + [anon_sym___inline] = ACTIONS(2824), + [anon_sym___inline__] = ACTIONS(2824), + [anon_sym___forceinline] = ACTIONS(2824), + [anon_sym_thread_local] = ACTIONS(2824), + [anon_sym___thread] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2824), + [anon_sym_constexpr] = ACTIONS(2824), + [anon_sym_volatile] = ACTIONS(2824), + [anon_sym_restrict] = ACTIONS(2824), + [anon_sym___restrict__] = ACTIONS(2824), + [anon_sym__Atomic] = ACTIONS(2824), + [anon_sym__Noreturn] = ACTIONS(2824), + [anon_sym_noreturn] = ACTIONS(2824), + [anon_sym_mutable] = ACTIONS(2824), + [anon_sym_constinit] = ACTIONS(2824), + [anon_sym_consteval] = ACTIONS(2824), + [sym_primitive_type] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [anon_sym_class] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2824), + [anon_sym_union] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_else] = ACTIONS(2824), + [anon_sym_switch] = ACTIONS(2824), + [anon_sym_case] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_do] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_goto] = ACTIONS(2824), + [anon_sym_not] = ACTIONS(2824), + [anon_sym_compl] = ACTIONS(2824), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_sizeof] = ACTIONS(2824), + [anon_sym___alignof__] = ACTIONS(2824), + [anon_sym___alignof] = ACTIONS(2824), + [anon_sym__alignof] = ACTIONS(2824), + [anon_sym_alignof] = ACTIONS(2824), + [anon_sym__Alignof] = ACTIONS(2824), + [anon_sym_offsetof] = ACTIONS(2824), + [anon_sym__Generic] = ACTIONS(2824), + [anon_sym_asm] = ACTIONS(2824), + [anon_sym___asm__] = ACTIONS(2824), + [sym_number_literal] = ACTIONS(2826), + [anon_sym_L_SQUOTE] = ACTIONS(2826), + [anon_sym_u_SQUOTE] = ACTIONS(2826), + [anon_sym_U_SQUOTE] = ACTIONS(2826), + [anon_sym_u8_SQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_L_DQUOTE] = ACTIONS(2826), + [anon_sym_u_DQUOTE] = ACTIONS(2826), + [anon_sym_U_DQUOTE] = ACTIONS(2826), + [anon_sym_u8_DQUOTE] = ACTIONS(2826), + [anon_sym_DQUOTE] = ACTIONS(2826), + [sym_true] = ACTIONS(2824), + [sym_false] = ACTIONS(2824), + [anon_sym_NULL] = ACTIONS(2824), + [anon_sym_nullptr] = ACTIONS(2824), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2824), + [anon_sym_decltype] = ACTIONS(2824), + [anon_sym_virtual] = ACTIONS(2824), + [anon_sym_alignas] = ACTIONS(2824), + [anon_sym_explicit] = ACTIONS(2824), + [anon_sym_typename] = ACTIONS(2824), + [anon_sym_template] = ACTIONS(2824), + [anon_sym_operator] = ACTIONS(2824), + [anon_sym_try] = ACTIONS(2824), + [anon_sym_delete] = ACTIONS(2824), + [anon_sym_throw] = ACTIONS(2824), + [anon_sym_namespace] = ACTIONS(2824), + [anon_sym_using] = ACTIONS(2824), + [anon_sym_static_assert] = ACTIONS(2824), + [anon_sym_concept] = ACTIONS(2824), + [anon_sym_co_return] = ACTIONS(2824), + [anon_sym_co_yield] = ACTIONS(2824), + [anon_sym_R_DQUOTE] = ACTIONS(2826), + [anon_sym_LR_DQUOTE] = ACTIONS(2826), + [anon_sym_uR_DQUOTE] = ACTIONS(2826), + [anon_sym_UR_DQUOTE] = ACTIONS(2826), + [anon_sym_u8R_DQUOTE] = ACTIONS(2826), + [anon_sym_co_await] = ACTIONS(2824), + [anon_sym_new] = ACTIONS(2824), + [anon_sym_requires] = ACTIONS(2824), + [sym_this] = ACTIONS(2824), + }, + [760] = { + [sym_identifier] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_AMP_AMP] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym_COLON_COLON] = ACTIONS(2822), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym___based] = ACTIONS(2820), + [anon_sym___cdecl] = ACTIONS(2820), + [anon_sym___clrcall] = ACTIONS(2820), + [anon_sym___stdcall] = ACTIONS(2820), + [anon_sym___fastcall] = ACTIONS(2820), + [anon_sym___thiscall] = ACTIONS(2820), + [anon_sym___vectorcall] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_RBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_mutable] = ACTIONS(2820), + [anon_sym_constinit] = ACTIONS(2820), + [anon_sym_consteval] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_class] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_else] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_not] = ACTIONS(2820), + [anon_sym_compl] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2820), + [anon_sym_decltype] = ACTIONS(2820), + [anon_sym_virtual] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym_explicit] = ACTIONS(2820), + [anon_sym_typename] = ACTIONS(2820), + [anon_sym_template] = ACTIONS(2820), + [anon_sym_operator] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(2820), + [anon_sym_delete] = ACTIONS(2820), + [anon_sym_throw] = ACTIONS(2820), + [anon_sym_namespace] = ACTIONS(2820), + [anon_sym_using] = ACTIONS(2820), + [anon_sym_static_assert] = ACTIONS(2820), + [anon_sym_concept] = ACTIONS(2820), + [anon_sym_co_return] = ACTIONS(2820), + [anon_sym_co_yield] = ACTIONS(2820), + [anon_sym_R_DQUOTE] = ACTIONS(2822), + [anon_sym_LR_DQUOTE] = ACTIONS(2822), + [anon_sym_uR_DQUOTE] = ACTIONS(2822), + [anon_sym_UR_DQUOTE] = ACTIONS(2822), + [anon_sym_u8R_DQUOTE] = ACTIONS(2822), + [anon_sym_co_await] = ACTIONS(2820), + [anon_sym_new] = ACTIONS(2820), + [anon_sym_requires] = ACTIONS(2820), + [sym_this] = ACTIONS(2820), + }, + [761] = { + [sym_identifier] = ACTIONS(2816), + [aux_sym_preproc_include_token1] = ACTIONS(2816), + [aux_sym_preproc_def_token1] = ACTIONS(2816), + [aux_sym_preproc_if_token1] = ACTIONS(2816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2816), + [sym_preproc_directive] = ACTIONS(2816), + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2816), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym___extension__] = ACTIONS(2816), + [anon_sym_typedef] = ACTIONS(2816), + [anon_sym_extern] = ACTIONS(2816), + [anon_sym___attribute__] = ACTIONS(2816), + [anon_sym_COLON_COLON] = ACTIONS(2818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2818), + [anon_sym___declspec] = ACTIONS(2816), + [anon_sym___based] = ACTIONS(2816), + [anon_sym___cdecl] = ACTIONS(2816), + [anon_sym___clrcall] = ACTIONS(2816), + [anon_sym___stdcall] = ACTIONS(2816), + [anon_sym___fastcall] = ACTIONS(2816), + [anon_sym___thiscall] = ACTIONS(2816), + [anon_sym___vectorcall] = ACTIONS(2816), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_RBRACE] = ACTIONS(2818), + [anon_sym_signed] = ACTIONS(2816), + [anon_sym_unsigned] = ACTIONS(2816), + [anon_sym_long] = ACTIONS(2816), + [anon_sym_short] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_register] = ACTIONS(2816), + [anon_sym_inline] = ACTIONS(2816), + [anon_sym___inline] = ACTIONS(2816), + [anon_sym___inline__] = ACTIONS(2816), + [anon_sym___forceinline] = ACTIONS(2816), + [anon_sym_thread_local] = ACTIONS(2816), + [anon_sym___thread] = ACTIONS(2816), + [anon_sym_const] = ACTIONS(2816), + [anon_sym_constexpr] = ACTIONS(2816), + [anon_sym_volatile] = ACTIONS(2816), + [anon_sym_restrict] = ACTIONS(2816), + [anon_sym___restrict__] = ACTIONS(2816), + [anon_sym__Atomic] = ACTIONS(2816), + [anon_sym__Noreturn] = ACTIONS(2816), + [anon_sym_noreturn] = ACTIONS(2816), + [anon_sym_mutable] = ACTIONS(2816), + [anon_sym_constinit] = ACTIONS(2816), + [anon_sym_consteval] = ACTIONS(2816), + [sym_primitive_type] = ACTIONS(2816), + [anon_sym_enum] = ACTIONS(2816), + [anon_sym_class] = ACTIONS(2816), + [anon_sym_struct] = ACTIONS(2816), + [anon_sym_union] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_else] = ACTIONS(2816), + [anon_sym_switch] = ACTIONS(2816), + [anon_sym_case] = ACTIONS(2816), + [anon_sym_default] = ACTIONS(2816), + [anon_sym_while] = ACTIONS(2816), + [anon_sym_do] = ACTIONS(2816), + [anon_sym_for] = ACTIONS(2816), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_break] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_goto] = ACTIONS(2816), + [anon_sym_not] = ACTIONS(2816), + [anon_sym_compl] = ACTIONS(2816), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_sizeof] = ACTIONS(2816), + [anon_sym___alignof__] = ACTIONS(2816), + [anon_sym___alignof] = ACTIONS(2816), + [anon_sym__alignof] = ACTIONS(2816), + [anon_sym_alignof] = ACTIONS(2816), + [anon_sym__Alignof] = ACTIONS(2816), + [anon_sym_offsetof] = ACTIONS(2816), + [anon_sym__Generic] = ACTIONS(2816), + [anon_sym_asm] = ACTIONS(2816), + [anon_sym___asm__] = ACTIONS(2816), + [sym_number_literal] = ACTIONS(2818), + [anon_sym_L_SQUOTE] = ACTIONS(2818), + [anon_sym_u_SQUOTE] = ACTIONS(2818), + [anon_sym_U_SQUOTE] = ACTIONS(2818), + [anon_sym_u8_SQUOTE] = ACTIONS(2818), + [anon_sym_SQUOTE] = ACTIONS(2818), + [anon_sym_L_DQUOTE] = ACTIONS(2818), + [anon_sym_u_DQUOTE] = ACTIONS(2818), + [anon_sym_U_DQUOTE] = ACTIONS(2818), + [anon_sym_u8_DQUOTE] = ACTIONS(2818), + [anon_sym_DQUOTE] = ACTIONS(2818), + [sym_true] = ACTIONS(2816), + [sym_false] = ACTIONS(2816), + [anon_sym_NULL] = ACTIONS(2816), + [anon_sym_nullptr] = ACTIONS(2816), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2816), + [anon_sym_decltype] = ACTIONS(2816), + [anon_sym_virtual] = ACTIONS(2816), + [anon_sym_alignas] = ACTIONS(2816), + [anon_sym_explicit] = ACTIONS(2816), + [anon_sym_typename] = ACTIONS(2816), + [anon_sym_template] = ACTIONS(2816), + [anon_sym_operator] = ACTIONS(2816), + [anon_sym_try] = ACTIONS(2816), + [anon_sym_delete] = ACTIONS(2816), + [anon_sym_throw] = ACTIONS(2816), + [anon_sym_namespace] = ACTIONS(2816), + [anon_sym_using] = ACTIONS(2816), + [anon_sym_static_assert] = ACTIONS(2816), + [anon_sym_concept] = ACTIONS(2816), + [anon_sym_co_return] = ACTIONS(2816), + [anon_sym_co_yield] = ACTIONS(2816), + [anon_sym_R_DQUOTE] = ACTIONS(2818), + [anon_sym_LR_DQUOTE] = ACTIONS(2818), + [anon_sym_uR_DQUOTE] = ACTIONS(2818), + [anon_sym_UR_DQUOTE] = ACTIONS(2818), + [anon_sym_u8R_DQUOTE] = ACTIONS(2818), + [anon_sym_co_await] = ACTIONS(2816), + [anon_sym_new] = ACTIONS(2816), + [anon_sym_requires] = ACTIONS(2816), + [sym_this] = ACTIONS(2816), + }, + [762] = { + [sym_identifier] = ACTIONS(2812), + [aux_sym_preproc_include_token1] = ACTIONS(2812), + [aux_sym_preproc_def_token1] = ACTIONS(2812), + [aux_sym_preproc_if_token1] = ACTIONS(2812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2812), + [sym_preproc_directive] = ACTIONS(2812), + [anon_sym_LPAREN2] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_TILDE] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_AMP_AMP] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym___extension__] = ACTIONS(2812), + [anon_sym_typedef] = ACTIONS(2812), + [anon_sym_extern] = ACTIONS(2812), + [anon_sym___attribute__] = ACTIONS(2812), + [anon_sym_COLON_COLON] = ACTIONS(2814), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2814), + [anon_sym___declspec] = ACTIONS(2812), + [anon_sym___based] = ACTIONS(2812), + [anon_sym___cdecl] = ACTIONS(2812), + [anon_sym___clrcall] = ACTIONS(2812), + [anon_sym___stdcall] = ACTIONS(2812), + [anon_sym___fastcall] = ACTIONS(2812), + [anon_sym___thiscall] = ACTIONS(2812), + [anon_sym___vectorcall] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_RBRACE] = ACTIONS(2814), + [anon_sym_signed] = ACTIONS(2812), + [anon_sym_unsigned] = ACTIONS(2812), + [anon_sym_long] = ACTIONS(2812), + [anon_sym_short] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_register] = ACTIONS(2812), + [anon_sym_inline] = ACTIONS(2812), + [anon_sym___inline] = ACTIONS(2812), + [anon_sym___inline__] = ACTIONS(2812), + [anon_sym___forceinline] = ACTIONS(2812), + [anon_sym_thread_local] = ACTIONS(2812), + [anon_sym___thread] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_constexpr] = ACTIONS(2812), + [anon_sym_volatile] = ACTIONS(2812), + [anon_sym_restrict] = ACTIONS(2812), + [anon_sym___restrict__] = ACTIONS(2812), + [anon_sym__Atomic] = ACTIONS(2812), + [anon_sym__Noreturn] = ACTIONS(2812), + [anon_sym_noreturn] = ACTIONS(2812), + [anon_sym_mutable] = ACTIONS(2812), + [anon_sym_constinit] = ACTIONS(2812), + [anon_sym_consteval] = ACTIONS(2812), + [sym_primitive_type] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_class] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_union] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_else] = ACTIONS(2812), + [anon_sym_switch] = ACTIONS(2812), + [anon_sym_case] = ACTIONS(2812), + [anon_sym_default] = ACTIONS(2812), + [anon_sym_while] = ACTIONS(2812), + [anon_sym_do] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_goto] = ACTIONS(2812), + [anon_sym_not] = ACTIONS(2812), + [anon_sym_compl] = ACTIONS(2812), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_sizeof] = ACTIONS(2812), + [anon_sym___alignof__] = ACTIONS(2812), + [anon_sym___alignof] = ACTIONS(2812), + [anon_sym__alignof] = ACTIONS(2812), + [anon_sym_alignof] = ACTIONS(2812), + [anon_sym__Alignof] = ACTIONS(2812), + [anon_sym_offsetof] = ACTIONS(2812), + [anon_sym__Generic] = ACTIONS(2812), + [anon_sym_asm] = ACTIONS(2812), + [anon_sym___asm__] = ACTIONS(2812), + [sym_number_literal] = ACTIONS(2814), + [anon_sym_L_SQUOTE] = ACTIONS(2814), + [anon_sym_u_SQUOTE] = ACTIONS(2814), + [anon_sym_U_SQUOTE] = ACTIONS(2814), + [anon_sym_u8_SQUOTE] = ACTIONS(2814), + [anon_sym_SQUOTE] = ACTIONS(2814), + [anon_sym_L_DQUOTE] = ACTIONS(2814), + [anon_sym_u_DQUOTE] = ACTIONS(2814), + [anon_sym_U_DQUOTE] = ACTIONS(2814), + [anon_sym_u8_DQUOTE] = ACTIONS(2814), + [anon_sym_DQUOTE] = ACTIONS(2814), + [sym_true] = ACTIONS(2812), + [sym_false] = ACTIONS(2812), + [anon_sym_NULL] = ACTIONS(2812), + [anon_sym_nullptr] = ACTIONS(2812), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2812), + [anon_sym_decltype] = ACTIONS(2812), + [anon_sym_virtual] = ACTIONS(2812), + [anon_sym_alignas] = ACTIONS(2812), + [anon_sym_explicit] = ACTIONS(2812), + [anon_sym_typename] = ACTIONS(2812), + [anon_sym_template] = ACTIONS(2812), + [anon_sym_operator] = ACTIONS(2812), + [anon_sym_try] = ACTIONS(2812), + [anon_sym_delete] = ACTIONS(2812), + [anon_sym_throw] = ACTIONS(2812), + [anon_sym_namespace] = ACTIONS(2812), + [anon_sym_using] = ACTIONS(2812), + [anon_sym_static_assert] = ACTIONS(2812), + [anon_sym_concept] = ACTIONS(2812), + [anon_sym_co_return] = ACTIONS(2812), + [anon_sym_co_yield] = ACTIONS(2812), + [anon_sym_R_DQUOTE] = ACTIONS(2814), + [anon_sym_LR_DQUOTE] = ACTIONS(2814), + [anon_sym_uR_DQUOTE] = ACTIONS(2814), + [anon_sym_UR_DQUOTE] = ACTIONS(2814), + [anon_sym_u8R_DQUOTE] = ACTIONS(2814), + [anon_sym_co_await] = ACTIONS(2812), + [anon_sym_new] = ACTIONS(2812), + [anon_sym_requires] = ACTIONS(2812), + [sym_this] = ACTIONS(2812), + }, + [763] = { + [ts_builtin_sym_end] = ACTIONS(2768), + [sym_identifier] = ACTIONS(2766), + [aux_sym_preproc_include_token1] = ACTIONS(2766), + [aux_sym_preproc_def_token1] = ACTIONS(2766), + [aux_sym_preproc_if_token1] = ACTIONS(2766), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2766), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2766), + [sym_preproc_directive] = ACTIONS(2766), + [anon_sym_LPAREN2] = ACTIONS(2768), + [anon_sym_BANG] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2766), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym___extension__] = ACTIONS(2766), + [anon_sym_typedef] = ACTIONS(2766), + [anon_sym_extern] = ACTIONS(2766), + [anon_sym___attribute__] = ACTIONS(2766), + [anon_sym_COLON_COLON] = ACTIONS(2768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2768), + [anon_sym___declspec] = ACTIONS(2766), + [anon_sym___based] = ACTIONS(2766), + [anon_sym___cdecl] = ACTIONS(2766), + [anon_sym___clrcall] = ACTIONS(2766), + [anon_sym___stdcall] = ACTIONS(2766), + [anon_sym___fastcall] = ACTIONS(2766), + [anon_sym___thiscall] = ACTIONS(2766), + [anon_sym___vectorcall] = ACTIONS(2766), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_signed] = ACTIONS(2766), + [anon_sym_unsigned] = ACTIONS(2766), + [anon_sym_long] = ACTIONS(2766), + [anon_sym_short] = ACTIONS(2766), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym_static] = ACTIONS(2766), + [anon_sym_register] = ACTIONS(2766), + [anon_sym_inline] = ACTIONS(2766), + [anon_sym___inline] = ACTIONS(2766), + [anon_sym___inline__] = ACTIONS(2766), + [anon_sym___forceinline] = ACTIONS(2766), + [anon_sym_thread_local] = ACTIONS(2766), + [anon_sym___thread] = ACTIONS(2766), + [anon_sym_const] = ACTIONS(2766), + [anon_sym_constexpr] = ACTIONS(2766), + [anon_sym_volatile] = ACTIONS(2766), + [anon_sym_restrict] = ACTIONS(2766), + [anon_sym___restrict__] = ACTIONS(2766), + [anon_sym__Atomic] = ACTIONS(2766), + [anon_sym__Noreturn] = ACTIONS(2766), + [anon_sym_noreturn] = ACTIONS(2766), + [anon_sym_mutable] = ACTIONS(2766), + [anon_sym_constinit] = ACTIONS(2766), + [anon_sym_consteval] = ACTIONS(2766), + [sym_primitive_type] = ACTIONS(2766), + [anon_sym_enum] = ACTIONS(2766), + [anon_sym_class] = ACTIONS(2766), + [anon_sym_struct] = ACTIONS(2766), + [anon_sym_union] = ACTIONS(2766), + [anon_sym_if] = ACTIONS(2766), + [anon_sym_else] = ACTIONS(2766), + [anon_sym_switch] = ACTIONS(2766), + [anon_sym_case] = ACTIONS(2766), + [anon_sym_default] = ACTIONS(2766), + [anon_sym_while] = ACTIONS(2766), + [anon_sym_do] = ACTIONS(2766), + [anon_sym_for] = ACTIONS(2766), + [anon_sym_return] = ACTIONS(2766), + [anon_sym_break] = ACTIONS(2766), + [anon_sym_continue] = ACTIONS(2766), + [anon_sym_goto] = ACTIONS(2766), + [anon_sym_not] = ACTIONS(2766), + [anon_sym_compl] = ACTIONS(2766), + [anon_sym_DASH_DASH] = ACTIONS(2768), + [anon_sym_PLUS_PLUS] = ACTIONS(2768), + [anon_sym_sizeof] = ACTIONS(2766), + [anon_sym___alignof__] = ACTIONS(2766), + [anon_sym___alignof] = ACTIONS(2766), + [anon_sym__alignof] = ACTIONS(2766), + [anon_sym_alignof] = ACTIONS(2766), + [anon_sym__Alignof] = ACTIONS(2766), + [anon_sym_offsetof] = ACTIONS(2766), + [anon_sym__Generic] = ACTIONS(2766), + [anon_sym_asm] = ACTIONS(2766), + [anon_sym___asm__] = ACTIONS(2766), + [sym_number_literal] = ACTIONS(2768), + [anon_sym_L_SQUOTE] = ACTIONS(2768), + [anon_sym_u_SQUOTE] = ACTIONS(2768), + [anon_sym_U_SQUOTE] = ACTIONS(2768), + [anon_sym_u8_SQUOTE] = ACTIONS(2768), + [anon_sym_SQUOTE] = ACTIONS(2768), + [anon_sym_L_DQUOTE] = ACTIONS(2768), + [anon_sym_u_DQUOTE] = ACTIONS(2768), + [anon_sym_U_DQUOTE] = ACTIONS(2768), + [anon_sym_u8_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [sym_true] = ACTIONS(2766), + [sym_false] = ACTIONS(2766), + [anon_sym_NULL] = ACTIONS(2766), + [anon_sym_nullptr] = ACTIONS(2766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2766), + [anon_sym_decltype] = ACTIONS(2766), + [anon_sym_virtual] = ACTIONS(2766), + [anon_sym_alignas] = ACTIONS(2766), + [anon_sym_explicit] = ACTIONS(2766), + [anon_sym_typename] = ACTIONS(2766), + [anon_sym_template] = ACTIONS(2766), + [anon_sym_operator] = ACTIONS(2766), + [anon_sym_try] = ACTIONS(2766), + [anon_sym_delete] = ACTIONS(2766), + [anon_sym_throw] = ACTIONS(2766), + [anon_sym_namespace] = ACTIONS(2766), + [anon_sym_using] = ACTIONS(2766), + [anon_sym_static_assert] = ACTIONS(2766), + [anon_sym_concept] = ACTIONS(2766), + [anon_sym_co_return] = ACTIONS(2766), + [anon_sym_co_yield] = ACTIONS(2766), + [anon_sym_R_DQUOTE] = ACTIONS(2768), + [anon_sym_LR_DQUOTE] = ACTIONS(2768), + [anon_sym_uR_DQUOTE] = ACTIONS(2768), + [anon_sym_UR_DQUOTE] = ACTIONS(2768), + [anon_sym_u8R_DQUOTE] = ACTIONS(2768), + [anon_sym_co_await] = ACTIONS(2766), + [anon_sym_new] = ACTIONS(2766), + [anon_sym_requires] = ACTIONS(2766), + [sym_this] = ACTIONS(2766), + }, + [764] = { + [sym_identifier] = ACTIONS(2864), + [aux_sym_preproc_include_token1] = ACTIONS(2864), + [aux_sym_preproc_def_token1] = ACTIONS(2864), + [aux_sym_preproc_if_token1] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2864), + [sym_preproc_directive] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_AMP_AMP] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym___extension__] = ACTIONS(2864), + [anon_sym_typedef] = ACTIONS(2864), + [anon_sym_extern] = ACTIONS(2864), + [anon_sym___attribute__] = ACTIONS(2864), + [anon_sym_COLON_COLON] = ACTIONS(2866), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2866), + [anon_sym___declspec] = ACTIONS(2864), + [anon_sym___based] = ACTIONS(2864), + [anon_sym___cdecl] = ACTIONS(2864), + [anon_sym___clrcall] = ACTIONS(2864), + [anon_sym___stdcall] = ACTIONS(2864), + [anon_sym___fastcall] = ACTIONS(2864), + [anon_sym___thiscall] = ACTIONS(2864), + [anon_sym___vectorcall] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_RBRACE] = ACTIONS(2866), + [anon_sym_signed] = ACTIONS(2864), + [anon_sym_unsigned] = ACTIONS(2864), + [anon_sym_long] = ACTIONS(2864), + [anon_sym_short] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_register] = ACTIONS(2864), + [anon_sym_inline] = ACTIONS(2864), + [anon_sym___inline] = ACTIONS(2864), + [anon_sym___inline__] = ACTIONS(2864), + [anon_sym___forceinline] = ACTIONS(2864), + [anon_sym_thread_local] = ACTIONS(2864), + [anon_sym___thread] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym___restrict__] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym__Noreturn] = ACTIONS(2864), + [anon_sym_noreturn] = ACTIONS(2864), + [anon_sym_mutable] = ACTIONS(2864), + [anon_sym_constinit] = ACTIONS(2864), + [anon_sym_consteval] = ACTIONS(2864), + [sym_primitive_type] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [anon_sym_class] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2864), + [anon_sym_union] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_else] = ACTIONS(2864), + [anon_sym_switch] = ACTIONS(2864), + [anon_sym_case] = ACTIONS(2864), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_goto] = ACTIONS(2864), + [anon_sym_not] = ACTIONS(2864), + [anon_sym_compl] = ACTIONS(2864), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_sizeof] = ACTIONS(2864), + [anon_sym___alignof__] = ACTIONS(2864), + [anon_sym___alignof] = ACTIONS(2864), + [anon_sym__alignof] = ACTIONS(2864), + [anon_sym_alignof] = ACTIONS(2864), + [anon_sym__Alignof] = ACTIONS(2864), + [anon_sym_offsetof] = ACTIONS(2864), + [anon_sym__Generic] = ACTIONS(2864), + [anon_sym_asm] = ACTIONS(2864), + [anon_sym___asm__] = ACTIONS(2864), + [sym_number_literal] = ACTIONS(2866), + [anon_sym_L_SQUOTE] = ACTIONS(2866), + [anon_sym_u_SQUOTE] = ACTIONS(2866), + [anon_sym_U_SQUOTE] = ACTIONS(2866), + [anon_sym_u8_SQUOTE] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_L_DQUOTE] = ACTIONS(2866), + [anon_sym_u_DQUOTE] = ACTIONS(2866), + [anon_sym_U_DQUOTE] = ACTIONS(2866), + [anon_sym_u8_DQUOTE] = ACTIONS(2866), + [anon_sym_DQUOTE] = ACTIONS(2866), + [sym_true] = ACTIONS(2864), + [sym_false] = ACTIONS(2864), + [anon_sym_NULL] = ACTIONS(2864), + [anon_sym_nullptr] = ACTIONS(2864), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2864), + [anon_sym_decltype] = ACTIONS(2864), + [anon_sym_virtual] = ACTIONS(2864), + [anon_sym_alignas] = ACTIONS(2864), + [anon_sym_explicit] = ACTIONS(2864), + [anon_sym_typename] = ACTIONS(2864), + [anon_sym_template] = ACTIONS(2864), + [anon_sym_operator] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_delete] = ACTIONS(2864), + [anon_sym_throw] = ACTIONS(2864), + [anon_sym_namespace] = ACTIONS(2864), + [anon_sym_using] = ACTIONS(2864), + [anon_sym_static_assert] = ACTIONS(2864), + [anon_sym_concept] = ACTIONS(2864), + [anon_sym_co_return] = ACTIONS(2864), + [anon_sym_co_yield] = ACTIONS(2864), + [anon_sym_R_DQUOTE] = ACTIONS(2866), + [anon_sym_LR_DQUOTE] = ACTIONS(2866), + [anon_sym_uR_DQUOTE] = ACTIONS(2866), + [anon_sym_UR_DQUOTE] = ACTIONS(2866), + [anon_sym_u8R_DQUOTE] = ACTIONS(2866), + [anon_sym_co_await] = ACTIONS(2864), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_requires] = ACTIONS(2864), + [sym_this] = ACTIONS(2864), + }, + [765] = { + [ts_builtin_sym_end] = ACTIONS(2810), + [sym_identifier] = ACTIONS(2808), + [aux_sym_preproc_include_token1] = ACTIONS(2808), + [aux_sym_preproc_def_token1] = ACTIONS(2808), + [aux_sym_preproc_if_token1] = ACTIONS(2808), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2808), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2808), + [sym_preproc_directive] = ACTIONS(2808), + [anon_sym_LPAREN2] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2808), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_AMP_AMP] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2808), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym___extension__] = ACTIONS(2808), + [anon_sym_typedef] = ACTIONS(2808), + [anon_sym_extern] = ACTIONS(2808), + [anon_sym___attribute__] = ACTIONS(2808), + [anon_sym_COLON_COLON] = ACTIONS(2810), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2810), + [anon_sym___declspec] = ACTIONS(2808), + [anon_sym___based] = ACTIONS(2808), + [anon_sym___cdecl] = ACTIONS(2808), + [anon_sym___clrcall] = ACTIONS(2808), + [anon_sym___stdcall] = ACTIONS(2808), + [anon_sym___fastcall] = ACTIONS(2808), + [anon_sym___thiscall] = ACTIONS(2808), + [anon_sym___vectorcall] = ACTIONS(2808), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_signed] = ACTIONS(2808), + [anon_sym_unsigned] = ACTIONS(2808), + [anon_sym_long] = ACTIONS(2808), + [anon_sym_short] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2808), + [anon_sym_static] = ACTIONS(2808), + [anon_sym_register] = ACTIONS(2808), + [anon_sym_inline] = ACTIONS(2808), + [anon_sym___inline] = ACTIONS(2808), + [anon_sym___inline__] = ACTIONS(2808), + [anon_sym___forceinline] = ACTIONS(2808), + [anon_sym_thread_local] = ACTIONS(2808), + [anon_sym___thread] = ACTIONS(2808), + [anon_sym_const] = ACTIONS(2808), + [anon_sym_constexpr] = ACTIONS(2808), + [anon_sym_volatile] = ACTIONS(2808), + [anon_sym_restrict] = ACTIONS(2808), + [anon_sym___restrict__] = ACTIONS(2808), + [anon_sym__Atomic] = ACTIONS(2808), + [anon_sym__Noreturn] = ACTIONS(2808), + [anon_sym_noreturn] = ACTIONS(2808), + [anon_sym_mutable] = ACTIONS(2808), + [anon_sym_constinit] = ACTIONS(2808), + [anon_sym_consteval] = ACTIONS(2808), + [sym_primitive_type] = ACTIONS(2808), + [anon_sym_enum] = ACTIONS(2808), + [anon_sym_class] = ACTIONS(2808), + [anon_sym_struct] = ACTIONS(2808), + [anon_sym_union] = ACTIONS(2808), + [anon_sym_if] = ACTIONS(2808), + [anon_sym_else] = ACTIONS(2808), + [anon_sym_switch] = ACTIONS(2808), + [anon_sym_case] = ACTIONS(2808), + [anon_sym_default] = ACTIONS(2808), + [anon_sym_while] = ACTIONS(2808), + [anon_sym_do] = ACTIONS(2808), + [anon_sym_for] = ACTIONS(2808), + [anon_sym_return] = ACTIONS(2808), + [anon_sym_break] = ACTIONS(2808), + [anon_sym_continue] = ACTIONS(2808), + [anon_sym_goto] = ACTIONS(2808), + [anon_sym_not] = ACTIONS(2808), + [anon_sym_compl] = ACTIONS(2808), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_sizeof] = ACTIONS(2808), + [anon_sym___alignof__] = ACTIONS(2808), + [anon_sym___alignof] = ACTIONS(2808), + [anon_sym__alignof] = ACTIONS(2808), + [anon_sym_alignof] = ACTIONS(2808), + [anon_sym__Alignof] = ACTIONS(2808), + [anon_sym_offsetof] = ACTIONS(2808), + [anon_sym__Generic] = ACTIONS(2808), + [anon_sym_asm] = ACTIONS(2808), + [anon_sym___asm__] = ACTIONS(2808), + [sym_number_literal] = ACTIONS(2810), + [anon_sym_L_SQUOTE] = ACTIONS(2810), + [anon_sym_u_SQUOTE] = ACTIONS(2810), + [anon_sym_U_SQUOTE] = ACTIONS(2810), + [anon_sym_u8_SQUOTE] = ACTIONS(2810), + [anon_sym_SQUOTE] = ACTIONS(2810), + [anon_sym_L_DQUOTE] = ACTIONS(2810), + [anon_sym_u_DQUOTE] = ACTIONS(2810), + [anon_sym_U_DQUOTE] = ACTIONS(2810), + [anon_sym_u8_DQUOTE] = ACTIONS(2810), + [anon_sym_DQUOTE] = ACTIONS(2810), + [sym_true] = ACTIONS(2808), + [sym_false] = ACTIONS(2808), + [anon_sym_NULL] = ACTIONS(2808), + [anon_sym_nullptr] = ACTIONS(2808), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2808), + [anon_sym_decltype] = ACTIONS(2808), + [anon_sym_virtual] = ACTIONS(2808), + [anon_sym_alignas] = ACTIONS(2808), + [anon_sym_explicit] = ACTIONS(2808), + [anon_sym_typename] = ACTIONS(2808), + [anon_sym_template] = ACTIONS(2808), + [anon_sym_operator] = ACTIONS(2808), + [anon_sym_try] = ACTIONS(2808), + [anon_sym_delete] = ACTIONS(2808), + [anon_sym_throw] = ACTIONS(2808), + [anon_sym_namespace] = ACTIONS(2808), + [anon_sym_using] = ACTIONS(2808), + [anon_sym_static_assert] = ACTIONS(2808), + [anon_sym_concept] = ACTIONS(2808), + [anon_sym_co_return] = ACTIONS(2808), + [anon_sym_co_yield] = ACTIONS(2808), + [anon_sym_R_DQUOTE] = ACTIONS(2810), + [anon_sym_LR_DQUOTE] = ACTIONS(2810), + [anon_sym_uR_DQUOTE] = ACTIONS(2810), + [anon_sym_UR_DQUOTE] = ACTIONS(2810), + [anon_sym_u8R_DQUOTE] = ACTIONS(2810), + [anon_sym_co_await] = ACTIONS(2808), + [anon_sym_new] = ACTIONS(2808), + [anon_sym_requires] = ACTIONS(2808), + [sym_this] = ACTIONS(2808), + }, + [766] = { [sym_identifier] = ACTIONS(2778), [aux_sym_preproc_include_token1] = ACTIONS(2778), [aux_sym_preproc_def_token1] = ACTIONS(2778), [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), [sym_preproc_directive] = ACTIONS(2778), [anon_sym_LPAREN2] = ACTIONS(2780), [anon_sym_BANG] = ACTIONS(2780), @@ -161030,6 +159456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2778), [anon_sym___vectorcall] = ACTIONS(2778), [anon_sym_LBRACE] = ACTIONS(2780), + [anon_sym_RBRACE] = ACTIONS(2780), [anon_sym_signed] = ACTIONS(2778), [anon_sym_unsigned] = ACTIONS(2778), [anon_sym_long] = ACTIONS(2778), @@ -161128,4132 +159555,4700 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2778), [sym_this] = ACTIONS(2778), }, - [746] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [767] = { + [sym_identifier] = ACTIONS(2766), + [aux_sym_preproc_include_token1] = ACTIONS(2766), + [aux_sym_preproc_def_token1] = ACTIONS(2766), + [aux_sym_preproc_if_token1] = ACTIONS(2766), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2766), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2766), + [sym_preproc_directive] = ACTIONS(2766), + [anon_sym_LPAREN2] = ACTIONS(2768), + [anon_sym_BANG] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2766), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym___extension__] = ACTIONS(2766), + [anon_sym_typedef] = ACTIONS(2766), + [anon_sym_extern] = ACTIONS(2766), + [anon_sym___attribute__] = ACTIONS(2766), + [anon_sym_COLON_COLON] = ACTIONS(2768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2768), + [anon_sym___declspec] = ACTIONS(2766), + [anon_sym___based] = ACTIONS(2766), + [anon_sym___cdecl] = ACTIONS(2766), + [anon_sym___clrcall] = ACTIONS(2766), + [anon_sym___stdcall] = ACTIONS(2766), + [anon_sym___fastcall] = ACTIONS(2766), + [anon_sym___thiscall] = ACTIONS(2766), + [anon_sym___vectorcall] = ACTIONS(2766), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_RBRACE] = ACTIONS(2768), + [anon_sym_signed] = ACTIONS(2766), + [anon_sym_unsigned] = ACTIONS(2766), + [anon_sym_long] = ACTIONS(2766), + [anon_sym_short] = ACTIONS(2766), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym_static] = ACTIONS(2766), + [anon_sym_register] = ACTIONS(2766), + [anon_sym_inline] = ACTIONS(2766), + [anon_sym___inline] = ACTIONS(2766), + [anon_sym___inline__] = ACTIONS(2766), + [anon_sym___forceinline] = ACTIONS(2766), + [anon_sym_thread_local] = ACTIONS(2766), + [anon_sym___thread] = ACTIONS(2766), + [anon_sym_const] = ACTIONS(2766), + [anon_sym_constexpr] = ACTIONS(2766), + [anon_sym_volatile] = ACTIONS(2766), + [anon_sym_restrict] = ACTIONS(2766), + [anon_sym___restrict__] = ACTIONS(2766), + [anon_sym__Atomic] = ACTIONS(2766), + [anon_sym__Noreturn] = ACTIONS(2766), + [anon_sym_noreturn] = ACTIONS(2766), + [anon_sym_mutable] = ACTIONS(2766), + [anon_sym_constinit] = ACTIONS(2766), + [anon_sym_consteval] = ACTIONS(2766), + [sym_primitive_type] = ACTIONS(2766), + [anon_sym_enum] = ACTIONS(2766), + [anon_sym_class] = ACTIONS(2766), + [anon_sym_struct] = ACTIONS(2766), + [anon_sym_union] = ACTIONS(2766), + [anon_sym_if] = ACTIONS(2766), + [anon_sym_else] = ACTIONS(2766), + [anon_sym_switch] = ACTIONS(2766), + [anon_sym_case] = ACTIONS(2766), + [anon_sym_default] = ACTIONS(2766), + [anon_sym_while] = ACTIONS(2766), + [anon_sym_do] = ACTIONS(2766), + [anon_sym_for] = ACTIONS(2766), + [anon_sym_return] = ACTIONS(2766), + [anon_sym_break] = ACTIONS(2766), + [anon_sym_continue] = ACTIONS(2766), + [anon_sym_goto] = ACTIONS(2766), + [anon_sym_not] = ACTIONS(2766), + [anon_sym_compl] = ACTIONS(2766), + [anon_sym_DASH_DASH] = ACTIONS(2768), + [anon_sym_PLUS_PLUS] = ACTIONS(2768), + [anon_sym_sizeof] = ACTIONS(2766), + [anon_sym___alignof__] = ACTIONS(2766), + [anon_sym___alignof] = ACTIONS(2766), + [anon_sym__alignof] = ACTIONS(2766), + [anon_sym_alignof] = ACTIONS(2766), + [anon_sym__Alignof] = ACTIONS(2766), + [anon_sym_offsetof] = ACTIONS(2766), + [anon_sym__Generic] = ACTIONS(2766), + [anon_sym_asm] = ACTIONS(2766), + [anon_sym___asm__] = ACTIONS(2766), + [sym_number_literal] = ACTIONS(2768), + [anon_sym_L_SQUOTE] = ACTIONS(2768), + [anon_sym_u_SQUOTE] = ACTIONS(2768), + [anon_sym_U_SQUOTE] = ACTIONS(2768), + [anon_sym_u8_SQUOTE] = ACTIONS(2768), + [anon_sym_SQUOTE] = ACTIONS(2768), + [anon_sym_L_DQUOTE] = ACTIONS(2768), + [anon_sym_u_DQUOTE] = ACTIONS(2768), + [anon_sym_U_DQUOTE] = ACTIONS(2768), + [anon_sym_u8_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [sym_true] = ACTIONS(2766), + [sym_false] = ACTIONS(2766), + [anon_sym_NULL] = ACTIONS(2766), + [anon_sym_nullptr] = ACTIONS(2766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2766), + [anon_sym_decltype] = ACTIONS(2766), + [anon_sym_virtual] = ACTIONS(2766), + [anon_sym_alignas] = ACTIONS(2766), + [anon_sym_explicit] = ACTIONS(2766), + [anon_sym_typename] = ACTIONS(2766), + [anon_sym_template] = ACTIONS(2766), + [anon_sym_operator] = ACTIONS(2766), + [anon_sym_try] = ACTIONS(2766), + [anon_sym_delete] = ACTIONS(2766), + [anon_sym_throw] = ACTIONS(2766), + [anon_sym_namespace] = ACTIONS(2766), + [anon_sym_using] = ACTIONS(2766), + [anon_sym_static_assert] = ACTIONS(2766), + [anon_sym_concept] = ACTIONS(2766), + [anon_sym_co_return] = ACTIONS(2766), + [anon_sym_co_yield] = ACTIONS(2766), + [anon_sym_R_DQUOTE] = ACTIONS(2768), + [anon_sym_LR_DQUOTE] = ACTIONS(2768), + [anon_sym_uR_DQUOTE] = ACTIONS(2768), + [anon_sym_UR_DQUOTE] = ACTIONS(2768), + [anon_sym_u8R_DQUOTE] = ACTIONS(2768), + [anon_sym_co_await] = ACTIONS(2766), + [anon_sym_new] = ACTIONS(2766), + [anon_sym_requires] = ACTIONS(2766), + [sym_this] = ACTIONS(2766), + }, + [768] = { + [sym_identifier] = ACTIONS(2774), + [aux_sym_preproc_include_token1] = ACTIONS(2774), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2774), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), + [sym_preproc_directive] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_TILDE] = ACTIONS(2776), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_STAR] = ACTIONS(2776), + [anon_sym_AMP_AMP] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym___extension__] = ACTIONS(2774), + [anon_sym_typedef] = ACTIONS(2774), + [anon_sym_extern] = ACTIONS(2774), + [anon_sym___attribute__] = ACTIONS(2774), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), + [anon_sym___declspec] = ACTIONS(2774), + [anon_sym___based] = ACTIONS(2774), + [anon_sym___cdecl] = ACTIONS(2774), + [anon_sym___clrcall] = ACTIONS(2774), + [anon_sym___stdcall] = ACTIONS(2774), + [anon_sym___fastcall] = ACTIONS(2774), + [anon_sym___thiscall] = ACTIONS(2774), + [anon_sym___vectorcall] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2776), + [anon_sym_RBRACE] = ACTIONS(2776), + [anon_sym_signed] = ACTIONS(2774), + [anon_sym_unsigned] = ACTIONS(2774), + [anon_sym_long] = ACTIONS(2774), + [anon_sym_short] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_static] = ACTIONS(2774), + [anon_sym_register] = ACTIONS(2774), + [anon_sym_inline] = ACTIONS(2774), + [anon_sym___inline] = ACTIONS(2774), + [anon_sym___inline__] = ACTIONS(2774), + [anon_sym___forceinline] = ACTIONS(2774), + [anon_sym_thread_local] = ACTIONS(2774), + [anon_sym___thread] = ACTIONS(2774), + [anon_sym_const] = ACTIONS(2774), + [anon_sym_constexpr] = ACTIONS(2774), + [anon_sym_volatile] = ACTIONS(2774), + [anon_sym_restrict] = ACTIONS(2774), + [anon_sym___restrict__] = ACTIONS(2774), + [anon_sym__Atomic] = ACTIONS(2774), + [anon_sym__Noreturn] = ACTIONS(2774), + [anon_sym_noreturn] = ACTIONS(2774), + [anon_sym_mutable] = ACTIONS(2774), + [anon_sym_constinit] = ACTIONS(2774), + [anon_sym_consteval] = ACTIONS(2774), + [sym_primitive_type] = ACTIONS(2774), + [anon_sym_enum] = ACTIONS(2774), + [anon_sym_class] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(2774), + [anon_sym_union] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_else] = ACTIONS(2774), + [anon_sym_switch] = ACTIONS(2774), + [anon_sym_case] = ACTIONS(2774), + [anon_sym_default] = ACTIONS(2774), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_break] = ACTIONS(2774), + [anon_sym_continue] = ACTIONS(2774), + [anon_sym_goto] = ACTIONS(2774), + [anon_sym_not] = ACTIONS(2774), + [anon_sym_compl] = ACTIONS(2774), + [anon_sym_DASH_DASH] = ACTIONS(2776), + [anon_sym_PLUS_PLUS] = ACTIONS(2776), + [anon_sym_sizeof] = ACTIONS(2774), + [anon_sym___alignof__] = ACTIONS(2774), + [anon_sym___alignof] = ACTIONS(2774), + [anon_sym__alignof] = ACTIONS(2774), + [anon_sym_alignof] = ACTIONS(2774), + [anon_sym__Alignof] = ACTIONS(2774), + [anon_sym_offsetof] = ACTIONS(2774), + [anon_sym__Generic] = ACTIONS(2774), + [anon_sym_asm] = ACTIONS(2774), + [anon_sym___asm__] = ACTIONS(2774), + [sym_number_literal] = ACTIONS(2776), + [anon_sym_L_SQUOTE] = ACTIONS(2776), + [anon_sym_u_SQUOTE] = ACTIONS(2776), + [anon_sym_U_SQUOTE] = ACTIONS(2776), + [anon_sym_u8_SQUOTE] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_L_DQUOTE] = ACTIONS(2776), + [anon_sym_u_DQUOTE] = ACTIONS(2776), + [anon_sym_U_DQUOTE] = ACTIONS(2776), + [anon_sym_u8_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE] = ACTIONS(2776), + [sym_true] = ACTIONS(2774), + [sym_false] = ACTIONS(2774), + [anon_sym_NULL] = ACTIONS(2774), + [anon_sym_nullptr] = ACTIONS(2774), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2774), + [anon_sym_virtual] = ACTIONS(2774), + [anon_sym_alignas] = ACTIONS(2774), + [anon_sym_explicit] = ACTIONS(2774), + [anon_sym_typename] = ACTIONS(2774), + [anon_sym_template] = ACTIONS(2774), + [anon_sym_operator] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_delete] = ACTIONS(2774), + [anon_sym_throw] = ACTIONS(2774), + [anon_sym_namespace] = ACTIONS(2774), + [anon_sym_using] = ACTIONS(2774), + [anon_sym_static_assert] = ACTIONS(2774), + [anon_sym_concept] = ACTIONS(2774), + [anon_sym_co_return] = ACTIONS(2774), + [anon_sym_co_yield] = ACTIONS(2774), + [anon_sym_R_DQUOTE] = ACTIONS(2776), + [anon_sym_LR_DQUOTE] = ACTIONS(2776), + [anon_sym_uR_DQUOTE] = ACTIONS(2776), + [anon_sym_UR_DQUOTE] = ACTIONS(2776), + [anon_sym_u8R_DQUOTE] = ACTIONS(2776), + [anon_sym_co_await] = ACTIONS(2774), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_requires] = ACTIONS(2774), + [sym_this] = ACTIONS(2774), }, - [747] = { - [sym_preproc_def] = STATE(747), - [sym_preproc_function_def] = STATE(747), - [sym_preproc_call] = STATE(747), - [sym_preproc_if_in_field_declaration_list] = STATE(747), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(747), - [sym_type_definition] = STATE(747), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6408), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6925), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(747), - [sym_field_declaration] = STATE(747), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(747), - [sym_operator_cast] = STATE(7495), - [sym_inline_method_definition] = STATE(747), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(747), - [sym_operator_cast_declaration] = STATE(747), - [sym_constructor_or_destructor_definition] = STATE(747), - [sym_constructor_or_destructor_declaration] = STATE(747), - [sym_friend_declaration] = STATE(747), - [sym_access_specifier] = STATE(9326), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(747), - [sym_alias_declaration] = STATE(747), - [sym_static_assert_declaration] = STATE(747), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7495), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(747), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(3518), - [aux_sym_preproc_def_token1] = ACTIONS(3521), - [aux_sym_preproc_if_token1] = ACTIONS(3524), - [aux_sym_preproc_if_token2] = ACTIONS(3527), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3529), - [aux_sym_preproc_else_token1] = ACTIONS(3527), - [aux_sym_preproc_elif_token1] = ACTIONS(3527), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3527), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3527), - [sym_preproc_directive] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(3535), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3541), - [anon_sym_AMP_AMP] = ACTIONS(3544), - [anon_sym_AMP] = ACTIONS(3547), - [anon_sym___extension__] = ACTIONS(3550), - [anon_sym_typedef] = ACTIONS(3553), - [anon_sym_extern] = ACTIONS(3556), - [anon_sym___attribute__] = ACTIONS(3559), - [anon_sym_COLON_COLON] = ACTIONS(3562), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3565), - [anon_sym___declspec] = ACTIONS(3568), - [anon_sym___based] = ACTIONS(3571), - [anon_sym_signed] = ACTIONS(3574), - [anon_sym_unsigned] = ACTIONS(3574), - [anon_sym_long] = ACTIONS(3574), - [anon_sym_short] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3577), - [anon_sym_static] = ACTIONS(3556), - [anon_sym_register] = ACTIONS(3556), - [anon_sym_inline] = ACTIONS(3556), - [anon_sym___inline] = ACTIONS(3556), - [anon_sym___inline__] = ACTIONS(3556), - [anon_sym___forceinline] = ACTIONS(3556), - [anon_sym_thread_local] = ACTIONS(3556), - [anon_sym___thread] = ACTIONS(3556), - [anon_sym_const] = ACTIONS(3580), - [anon_sym_constexpr] = ACTIONS(3580), - [anon_sym_volatile] = ACTIONS(3580), - [anon_sym_restrict] = ACTIONS(3580), - [anon_sym___restrict__] = ACTIONS(3580), - [anon_sym__Atomic] = ACTIONS(3580), - [anon_sym__Noreturn] = ACTIONS(3580), - [anon_sym_noreturn] = ACTIONS(3580), - [anon_sym_mutable] = ACTIONS(3580), - [anon_sym_constinit] = ACTIONS(3580), - [anon_sym_consteval] = ACTIONS(3580), - [sym_primitive_type] = ACTIONS(3583), - [anon_sym_enum] = ACTIONS(3586), - [anon_sym_class] = ACTIONS(3589), - [anon_sym_struct] = ACTIONS(3592), - [anon_sym_union] = ACTIONS(3595), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3598), - [anon_sym_decltype] = ACTIONS(3601), - [anon_sym_virtual] = ACTIONS(3604), - [anon_sym_alignas] = ACTIONS(3607), - [anon_sym_explicit] = ACTIONS(3610), - [anon_sym_typename] = ACTIONS(3613), - [anon_sym_template] = ACTIONS(3616), - [anon_sym_operator] = ACTIONS(3619), - [anon_sym_friend] = ACTIONS(3622), - [anon_sym_public] = ACTIONS(3625), - [anon_sym_private] = ACTIONS(3625), - [anon_sym_protected] = ACTIONS(3625), - [anon_sym_using] = ACTIONS(3628), - [anon_sym_static_assert] = ACTIONS(3631), + [769] = { + [sym_identifier] = ACTIONS(2790), + [aux_sym_preproc_include_token1] = ACTIONS(2790), + [aux_sym_preproc_def_token1] = ACTIONS(2790), + [aux_sym_preproc_if_token1] = ACTIONS(2790), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2790), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2790), + [sym_preproc_directive] = ACTIONS(2790), + [anon_sym_LPAREN2] = ACTIONS(2792), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_TILDE] = ACTIONS(2792), + [anon_sym_DASH] = ACTIONS(2790), + [anon_sym_PLUS] = ACTIONS(2790), + [anon_sym_STAR] = ACTIONS(2792), + [anon_sym_AMP_AMP] = ACTIONS(2792), + [anon_sym_AMP] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym___extension__] = ACTIONS(2790), + [anon_sym_typedef] = ACTIONS(2790), + [anon_sym_extern] = ACTIONS(2790), + [anon_sym___attribute__] = ACTIONS(2790), + [anon_sym_COLON_COLON] = ACTIONS(2792), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2792), + [anon_sym___declspec] = ACTIONS(2790), + [anon_sym___based] = ACTIONS(2790), + [anon_sym___cdecl] = ACTIONS(2790), + [anon_sym___clrcall] = ACTIONS(2790), + [anon_sym___stdcall] = ACTIONS(2790), + [anon_sym___fastcall] = ACTIONS(2790), + [anon_sym___thiscall] = ACTIONS(2790), + [anon_sym___vectorcall] = ACTIONS(2790), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_RBRACE] = ACTIONS(2792), + [anon_sym_signed] = ACTIONS(2790), + [anon_sym_unsigned] = ACTIONS(2790), + [anon_sym_long] = ACTIONS(2790), + [anon_sym_short] = ACTIONS(2790), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym_static] = ACTIONS(2790), + [anon_sym_register] = ACTIONS(2790), + [anon_sym_inline] = ACTIONS(2790), + [anon_sym___inline] = ACTIONS(2790), + [anon_sym___inline__] = ACTIONS(2790), + [anon_sym___forceinline] = ACTIONS(2790), + [anon_sym_thread_local] = ACTIONS(2790), + [anon_sym___thread] = ACTIONS(2790), + [anon_sym_const] = ACTIONS(2790), + [anon_sym_constexpr] = ACTIONS(2790), + [anon_sym_volatile] = ACTIONS(2790), + [anon_sym_restrict] = ACTIONS(2790), + [anon_sym___restrict__] = ACTIONS(2790), + [anon_sym__Atomic] = ACTIONS(2790), + [anon_sym__Noreturn] = ACTIONS(2790), + [anon_sym_noreturn] = ACTIONS(2790), + [anon_sym_mutable] = ACTIONS(2790), + [anon_sym_constinit] = ACTIONS(2790), + [anon_sym_consteval] = ACTIONS(2790), + [sym_primitive_type] = ACTIONS(2790), + [anon_sym_enum] = ACTIONS(2790), + [anon_sym_class] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(2790), + [anon_sym_union] = ACTIONS(2790), + [anon_sym_if] = ACTIONS(2790), + [anon_sym_else] = ACTIONS(2790), + [anon_sym_switch] = ACTIONS(2790), + [anon_sym_case] = ACTIONS(2790), + [anon_sym_default] = ACTIONS(2790), + [anon_sym_while] = ACTIONS(2790), + [anon_sym_do] = ACTIONS(2790), + [anon_sym_for] = ACTIONS(2790), + [anon_sym_return] = ACTIONS(2790), + [anon_sym_break] = ACTIONS(2790), + [anon_sym_continue] = ACTIONS(2790), + [anon_sym_goto] = ACTIONS(2790), + [anon_sym_not] = ACTIONS(2790), + [anon_sym_compl] = ACTIONS(2790), + [anon_sym_DASH_DASH] = ACTIONS(2792), + [anon_sym_PLUS_PLUS] = ACTIONS(2792), + [anon_sym_sizeof] = ACTIONS(2790), + [anon_sym___alignof__] = ACTIONS(2790), + [anon_sym___alignof] = ACTIONS(2790), + [anon_sym__alignof] = ACTIONS(2790), + [anon_sym_alignof] = ACTIONS(2790), + [anon_sym__Alignof] = ACTIONS(2790), + [anon_sym_offsetof] = ACTIONS(2790), + [anon_sym__Generic] = ACTIONS(2790), + [anon_sym_asm] = ACTIONS(2790), + [anon_sym___asm__] = ACTIONS(2790), + [sym_number_literal] = ACTIONS(2792), + [anon_sym_L_SQUOTE] = ACTIONS(2792), + [anon_sym_u_SQUOTE] = ACTIONS(2792), + [anon_sym_U_SQUOTE] = ACTIONS(2792), + [anon_sym_u8_SQUOTE] = ACTIONS(2792), + [anon_sym_SQUOTE] = ACTIONS(2792), + [anon_sym_L_DQUOTE] = ACTIONS(2792), + [anon_sym_u_DQUOTE] = ACTIONS(2792), + [anon_sym_U_DQUOTE] = ACTIONS(2792), + [anon_sym_u8_DQUOTE] = ACTIONS(2792), + [anon_sym_DQUOTE] = ACTIONS(2792), + [sym_true] = ACTIONS(2790), + [sym_false] = ACTIONS(2790), + [anon_sym_NULL] = ACTIONS(2790), + [anon_sym_nullptr] = ACTIONS(2790), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2790), + [anon_sym_decltype] = ACTIONS(2790), + [anon_sym_virtual] = ACTIONS(2790), + [anon_sym_alignas] = ACTIONS(2790), + [anon_sym_explicit] = ACTIONS(2790), + [anon_sym_typename] = ACTIONS(2790), + [anon_sym_template] = ACTIONS(2790), + [anon_sym_operator] = ACTIONS(2790), + [anon_sym_try] = ACTIONS(2790), + [anon_sym_delete] = ACTIONS(2790), + [anon_sym_throw] = ACTIONS(2790), + [anon_sym_namespace] = ACTIONS(2790), + [anon_sym_using] = ACTIONS(2790), + [anon_sym_static_assert] = ACTIONS(2790), + [anon_sym_concept] = ACTIONS(2790), + [anon_sym_co_return] = ACTIONS(2790), + [anon_sym_co_yield] = ACTIONS(2790), + [anon_sym_R_DQUOTE] = ACTIONS(2792), + [anon_sym_LR_DQUOTE] = ACTIONS(2792), + [anon_sym_uR_DQUOTE] = ACTIONS(2792), + [anon_sym_UR_DQUOTE] = ACTIONS(2792), + [anon_sym_u8R_DQUOTE] = ACTIONS(2792), + [anon_sym_co_await] = ACTIONS(2790), + [anon_sym_new] = ACTIONS(2790), + [anon_sym_requires] = ACTIONS(2790), + [sym_this] = ACTIONS(2790), }, - [748] = { - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_unaligned_ptr_modifier] = STATE(5820), - [sym_ms_pointer_modifier] = STATE(4183), - [sym__declarator] = STATE(7172), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6917), - [sym_array_declarator] = STATE(6917), - [sym_type_qualifier] = STATE(4744), - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3987), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6257), - [sym_qualified_identifier] = STATE(3993), - [sym_qualified_type_identifier] = STATE(8745), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3555), - [aux_sym_type_definition_repeat1] = STATE(4744), - [aux_sym_pointer_declarator_repeat1] = STATE(4183), - [sym_identifier] = ACTIONS(3634), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(3638), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym___extension__] = ACTIONS(3490), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym___based] = ACTIONS(47), - [sym_ms_restrict_modifier] = ACTIONS(3492), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3492), - [sym_ms_signed_ptr_modifier] = ACTIONS(3492), - [anon_sym__unaligned] = ACTIONS(3494), - [anon_sym___unaligned] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(3490), - [anon_sym_constexpr] = ACTIONS(3490), - [anon_sym_volatile] = ACTIONS(3490), - [anon_sym_restrict] = ACTIONS(3490), - [anon_sym___restrict__] = ACTIONS(3490), - [anon_sym__Atomic] = ACTIONS(3490), - [anon_sym__Noreturn] = ACTIONS(3490), - [anon_sym_noreturn] = ACTIONS(3490), - [anon_sym_mutable] = ACTIONS(3490), - [anon_sym_constinit] = ACTIONS(3490), - [anon_sym_consteval] = ACTIONS(3490), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(2012), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [770] = { + [ts_builtin_sym_end] = ACTIONS(2854), + [sym_identifier] = ACTIONS(2852), + [aux_sym_preproc_include_token1] = ACTIONS(2852), + [aux_sym_preproc_def_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2852), + [sym_preproc_directive] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym___extension__] = ACTIONS(2852), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym___attribute__] = ACTIONS(2852), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2854), + [anon_sym___declspec] = ACTIONS(2852), + [anon_sym___based] = ACTIONS(2852), + [anon_sym___cdecl] = ACTIONS(2852), + [anon_sym___clrcall] = ACTIONS(2852), + [anon_sym___stdcall] = ACTIONS(2852), + [anon_sym___fastcall] = ACTIONS(2852), + [anon_sym___thiscall] = ACTIONS(2852), + [anon_sym___vectorcall] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_signed] = ACTIONS(2852), + [anon_sym_unsigned] = ACTIONS(2852), + [anon_sym_long] = ACTIONS(2852), + [anon_sym_short] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_register] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym___inline] = ACTIONS(2852), + [anon_sym___inline__] = ACTIONS(2852), + [anon_sym___forceinline] = ACTIONS(2852), + [anon_sym_thread_local] = ACTIONS(2852), + [anon_sym___thread] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_constexpr] = ACTIONS(2852), + [anon_sym_volatile] = ACTIONS(2852), + [anon_sym_restrict] = ACTIONS(2852), + [anon_sym___restrict__] = ACTIONS(2852), + [anon_sym__Atomic] = ACTIONS(2852), + [anon_sym__Noreturn] = ACTIONS(2852), + [anon_sym_noreturn] = ACTIONS(2852), + [anon_sym_mutable] = ACTIONS(2852), + [anon_sym_constinit] = ACTIONS(2852), + [anon_sym_consteval] = ACTIONS(2852), + [sym_primitive_type] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_class] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_else] = ACTIONS(2852), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_goto] = ACTIONS(2852), + [anon_sym_not] = ACTIONS(2852), + [anon_sym_compl] = ACTIONS(2852), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_sizeof] = ACTIONS(2852), + [anon_sym___alignof__] = ACTIONS(2852), + [anon_sym___alignof] = ACTIONS(2852), + [anon_sym__alignof] = ACTIONS(2852), + [anon_sym_alignof] = ACTIONS(2852), + [anon_sym__Alignof] = ACTIONS(2852), + [anon_sym_offsetof] = ACTIONS(2852), + [anon_sym__Generic] = ACTIONS(2852), + [anon_sym_asm] = ACTIONS(2852), + [anon_sym___asm__] = ACTIONS(2852), + [sym_number_literal] = ACTIONS(2854), + [anon_sym_L_SQUOTE] = ACTIONS(2854), + [anon_sym_u_SQUOTE] = ACTIONS(2854), + [anon_sym_U_SQUOTE] = ACTIONS(2854), + [anon_sym_u8_SQUOTE] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_L_DQUOTE] = ACTIONS(2854), + [anon_sym_u_DQUOTE] = ACTIONS(2854), + [anon_sym_U_DQUOTE] = ACTIONS(2854), + [anon_sym_u8_DQUOTE] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [sym_true] = ACTIONS(2852), + [sym_false] = ACTIONS(2852), + [anon_sym_NULL] = ACTIONS(2852), + [anon_sym_nullptr] = ACTIONS(2852), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2852), + [anon_sym_decltype] = ACTIONS(2852), + [anon_sym_virtual] = ACTIONS(2852), + [anon_sym_alignas] = ACTIONS(2852), + [anon_sym_explicit] = ACTIONS(2852), + [anon_sym_typename] = ACTIONS(2852), + [anon_sym_template] = ACTIONS(2852), + [anon_sym_operator] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_delete] = ACTIONS(2852), + [anon_sym_throw] = ACTIONS(2852), + [anon_sym_namespace] = ACTIONS(2852), + [anon_sym_using] = ACTIONS(2852), + [anon_sym_static_assert] = ACTIONS(2852), + [anon_sym_concept] = ACTIONS(2852), + [anon_sym_co_return] = ACTIONS(2852), + [anon_sym_co_yield] = ACTIONS(2852), + [anon_sym_R_DQUOTE] = ACTIONS(2854), + [anon_sym_LR_DQUOTE] = ACTIONS(2854), + [anon_sym_uR_DQUOTE] = ACTIONS(2854), + [anon_sym_UR_DQUOTE] = ACTIONS(2854), + [anon_sym_u8R_DQUOTE] = ACTIONS(2854), + [anon_sym_co_await] = ACTIONS(2852), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_requires] = ACTIONS(2852), + [sym_this] = ACTIONS(2852), }, - [749] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [771] = { + [sym_identifier] = ACTIONS(2800), + [aux_sym_preproc_include_token1] = ACTIONS(2800), + [aux_sym_preproc_def_token1] = ACTIONS(2800), + [aux_sym_preproc_if_token1] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2800), + [sym_preproc_directive] = ACTIONS(2800), + [anon_sym_LPAREN2] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(2800), + [anon_sym_PLUS] = ACTIONS(2800), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_AMP_AMP] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2800), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym___extension__] = ACTIONS(2800), + [anon_sym_typedef] = ACTIONS(2800), + [anon_sym_extern] = ACTIONS(2800), + [anon_sym___attribute__] = ACTIONS(2800), + [anon_sym_COLON_COLON] = ACTIONS(2802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2802), + [anon_sym___declspec] = ACTIONS(2800), + [anon_sym___based] = ACTIONS(2800), + [anon_sym___cdecl] = ACTIONS(2800), + [anon_sym___clrcall] = ACTIONS(2800), + [anon_sym___stdcall] = ACTIONS(2800), + [anon_sym___fastcall] = ACTIONS(2800), + [anon_sym___thiscall] = ACTIONS(2800), + [anon_sym___vectorcall] = ACTIONS(2800), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_RBRACE] = ACTIONS(2802), + [anon_sym_signed] = ACTIONS(2800), + [anon_sym_unsigned] = ACTIONS(2800), + [anon_sym_long] = ACTIONS(2800), + [anon_sym_short] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2800), + [anon_sym_register] = ACTIONS(2800), + [anon_sym_inline] = ACTIONS(2800), + [anon_sym___inline] = ACTIONS(2800), + [anon_sym___inline__] = ACTIONS(2800), + [anon_sym___forceinline] = ACTIONS(2800), + [anon_sym_thread_local] = ACTIONS(2800), + [anon_sym___thread] = ACTIONS(2800), + [anon_sym_const] = ACTIONS(2800), + [anon_sym_constexpr] = ACTIONS(2800), + [anon_sym_volatile] = ACTIONS(2800), + [anon_sym_restrict] = ACTIONS(2800), + [anon_sym___restrict__] = ACTIONS(2800), + [anon_sym__Atomic] = ACTIONS(2800), + [anon_sym__Noreturn] = ACTIONS(2800), + [anon_sym_noreturn] = ACTIONS(2800), + [anon_sym_mutable] = ACTIONS(2800), + [anon_sym_constinit] = ACTIONS(2800), + [anon_sym_consteval] = ACTIONS(2800), + [sym_primitive_type] = ACTIONS(2800), + [anon_sym_enum] = ACTIONS(2800), + [anon_sym_class] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2800), + [anon_sym_union] = ACTIONS(2800), + [anon_sym_if] = ACTIONS(2800), + [anon_sym_else] = ACTIONS(2800), + [anon_sym_switch] = ACTIONS(2800), + [anon_sym_case] = ACTIONS(2800), + [anon_sym_default] = ACTIONS(2800), + [anon_sym_while] = ACTIONS(2800), + [anon_sym_do] = ACTIONS(2800), + [anon_sym_for] = ACTIONS(2800), + [anon_sym_return] = ACTIONS(2800), + [anon_sym_break] = ACTIONS(2800), + [anon_sym_continue] = ACTIONS(2800), + [anon_sym_goto] = ACTIONS(2800), + [anon_sym_not] = ACTIONS(2800), + [anon_sym_compl] = ACTIONS(2800), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_sizeof] = ACTIONS(2800), + [anon_sym___alignof__] = ACTIONS(2800), + [anon_sym___alignof] = ACTIONS(2800), + [anon_sym__alignof] = ACTIONS(2800), + [anon_sym_alignof] = ACTIONS(2800), + [anon_sym__Alignof] = ACTIONS(2800), + [anon_sym_offsetof] = ACTIONS(2800), + [anon_sym__Generic] = ACTIONS(2800), + [anon_sym_asm] = ACTIONS(2800), + [anon_sym___asm__] = ACTIONS(2800), + [sym_number_literal] = ACTIONS(2802), + [anon_sym_L_SQUOTE] = ACTIONS(2802), + [anon_sym_u_SQUOTE] = ACTIONS(2802), + [anon_sym_U_SQUOTE] = ACTIONS(2802), + [anon_sym_u8_SQUOTE] = ACTIONS(2802), + [anon_sym_SQUOTE] = ACTIONS(2802), + [anon_sym_L_DQUOTE] = ACTIONS(2802), + [anon_sym_u_DQUOTE] = ACTIONS(2802), + [anon_sym_U_DQUOTE] = ACTIONS(2802), + [anon_sym_u8_DQUOTE] = ACTIONS(2802), + [anon_sym_DQUOTE] = ACTIONS(2802), + [sym_true] = ACTIONS(2800), + [sym_false] = ACTIONS(2800), + [anon_sym_NULL] = ACTIONS(2800), + [anon_sym_nullptr] = ACTIONS(2800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2800), + [anon_sym_decltype] = ACTIONS(2800), + [anon_sym_virtual] = ACTIONS(2800), + [anon_sym_alignas] = ACTIONS(2800), + [anon_sym_explicit] = ACTIONS(2800), + [anon_sym_typename] = ACTIONS(2800), + [anon_sym_template] = ACTIONS(2800), + [anon_sym_operator] = ACTIONS(2800), + [anon_sym_try] = ACTIONS(2800), + [anon_sym_delete] = ACTIONS(2800), + [anon_sym_throw] = ACTIONS(2800), + [anon_sym_namespace] = ACTIONS(2800), + [anon_sym_using] = ACTIONS(2800), + [anon_sym_static_assert] = ACTIONS(2800), + [anon_sym_concept] = ACTIONS(2800), + [anon_sym_co_return] = ACTIONS(2800), + [anon_sym_co_yield] = ACTIONS(2800), + [anon_sym_R_DQUOTE] = ACTIONS(2802), + [anon_sym_LR_DQUOTE] = ACTIONS(2802), + [anon_sym_uR_DQUOTE] = ACTIONS(2802), + [anon_sym_UR_DQUOTE] = ACTIONS(2802), + [anon_sym_u8R_DQUOTE] = ACTIONS(2802), + [anon_sym_co_await] = ACTIONS(2800), + [anon_sym_new] = ACTIONS(2800), + [anon_sym_requires] = ACTIONS(2800), + [sym_this] = ACTIONS(2800), }, - [750] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [772] = { + [sym_identifier] = ACTIONS(2770), + [aux_sym_preproc_include_token1] = ACTIONS(2770), + [aux_sym_preproc_def_token1] = ACTIONS(2770), + [aux_sym_preproc_if_token1] = ACTIONS(2770), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2770), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2770), + [sym_preproc_directive] = ACTIONS(2770), + [anon_sym_LPAREN2] = ACTIONS(2772), + [anon_sym_BANG] = ACTIONS(2772), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2770), + [anon_sym_PLUS] = ACTIONS(2770), + [anon_sym_STAR] = ACTIONS(2772), + [anon_sym_AMP_AMP] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2770), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym___extension__] = ACTIONS(2770), + [anon_sym_typedef] = ACTIONS(2770), + [anon_sym_extern] = ACTIONS(2770), + [anon_sym___attribute__] = ACTIONS(2770), + [anon_sym_COLON_COLON] = ACTIONS(2772), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2772), + [anon_sym___declspec] = ACTIONS(2770), + [anon_sym___based] = ACTIONS(2770), + [anon_sym___cdecl] = ACTIONS(2770), + [anon_sym___clrcall] = ACTIONS(2770), + [anon_sym___stdcall] = ACTIONS(2770), + [anon_sym___fastcall] = ACTIONS(2770), + [anon_sym___thiscall] = ACTIONS(2770), + [anon_sym___vectorcall] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_RBRACE] = ACTIONS(2772), + [anon_sym_signed] = ACTIONS(2770), + [anon_sym_unsigned] = ACTIONS(2770), + [anon_sym_long] = ACTIONS(2770), + [anon_sym_short] = ACTIONS(2770), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym_static] = ACTIONS(2770), + [anon_sym_register] = ACTIONS(2770), + [anon_sym_inline] = ACTIONS(2770), + [anon_sym___inline] = ACTIONS(2770), + [anon_sym___inline__] = ACTIONS(2770), + [anon_sym___forceinline] = ACTIONS(2770), + [anon_sym_thread_local] = ACTIONS(2770), + [anon_sym___thread] = ACTIONS(2770), + [anon_sym_const] = ACTIONS(2770), + [anon_sym_constexpr] = ACTIONS(2770), + [anon_sym_volatile] = ACTIONS(2770), + [anon_sym_restrict] = ACTIONS(2770), + [anon_sym___restrict__] = ACTIONS(2770), + [anon_sym__Atomic] = ACTIONS(2770), + [anon_sym__Noreturn] = ACTIONS(2770), + [anon_sym_noreturn] = ACTIONS(2770), + [anon_sym_mutable] = ACTIONS(2770), + [anon_sym_constinit] = ACTIONS(2770), + [anon_sym_consteval] = ACTIONS(2770), + [sym_primitive_type] = ACTIONS(2770), + [anon_sym_enum] = ACTIONS(2770), + [anon_sym_class] = ACTIONS(2770), + [anon_sym_struct] = ACTIONS(2770), + [anon_sym_union] = ACTIONS(2770), + [anon_sym_if] = ACTIONS(2770), + [anon_sym_else] = ACTIONS(2770), + [anon_sym_switch] = ACTIONS(2770), + [anon_sym_case] = ACTIONS(2770), + [anon_sym_default] = ACTIONS(2770), + [anon_sym_while] = ACTIONS(2770), + [anon_sym_do] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2770), + [anon_sym_return] = ACTIONS(2770), + [anon_sym_break] = ACTIONS(2770), + [anon_sym_continue] = ACTIONS(2770), + [anon_sym_goto] = ACTIONS(2770), + [anon_sym_not] = ACTIONS(2770), + [anon_sym_compl] = ACTIONS(2770), + [anon_sym_DASH_DASH] = ACTIONS(2772), + [anon_sym_PLUS_PLUS] = ACTIONS(2772), + [anon_sym_sizeof] = ACTIONS(2770), + [anon_sym___alignof__] = ACTIONS(2770), + [anon_sym___alignof] = ACTIONS(2770), + [anon_sym__alignof] = ACTIONS(2770), + [anon_sym_alignof] = ACTIONS(2770), + [anon_sym__Alignof] = ACTIONS(2770), + [anon_sym_offsetof] = ACTIONS(2770), + [anon_sym__Generic] = ACTIONS(2770), + [anon_sym_asm] = ACTIONS(2770), + [anon_sym___asm__] = ACTIONS(2770), + [sym_number_literal] = ACTIONS(2772), + [anon_sym_L_SQUOTE] = ACTIONS(2772), + [anon_sym_u_SQUOTE] = ACTIONS(2772), + [anon_sym_U_SQUOTE] = ACTIONS(2772), + [anon_sym_u8_SQUOTE] = ACTIONS(2772), + [anon_sym_SQUOTE] = ACTIONS(2772), + [anon_sym_L_DQUOTE] = ACTIONS(2772), + [anon_sym_u_DQUOTE] = ACTIONS(2772), + [anon_sym_U_DQUOTE] = ACTIONS(2772), + [anon_sym_u8_DQUOTE] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2772), + [sym_true] = ACTIONS(2770), + [sym_false] = ACTIONS(2770), + [anon_sym_NULL] = ACTIONS(2770), + [anon_sym_nullptr] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2770), + [anon_sym_decltype] = ACTIONS(2770), + [anon_sym_virtual] = ACTIONS(2770), + [anon_sym_alignas] = ACTIONS(2770), + [anon_sym_explicit] = ACTIONS(2770), + [anon_sym_typename] = ACTIONS(2770), + [anon_sym_template] = ACTIONS(2770), + [anon_sym_operator] = ACTIONS(2770), + [anon_sym_try] = ACTIONS(2770), + [anon_sym_delete] = ACTIONS(2770), + [anon_sym_throw] = ACTIONS(2770), + [anon_sym_namespace] = ACTIONS(2770), + [anon_sym_using] = ACTIONS(2770), + [anon_sym_static_assert] = ACTIONS(2770), + [anon_sym_concept] = ACTIONS(2770), + [anon_sym_co_return] = ACTIONS(2770), + [anon_sym_co_yield] = ACTIONS(2770), + [anon_sym_R_DQUOTE] = ACTIONS(2772), + [anon_sym_LR_DQUOTE] = ACTIONS(2772), + [anon_sym_uR_DQUOTE] = ACTIONS(2772), + [anon_sym_UR_DQUOTE] = ACTIONS(2772), + [anon_sym_u8R_DQUOTE] = ACTIONS(2772), + [anon_sym_co_await] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2770), + [anon_sym_requires] = ACTIONS(2770), + [sym_this] = ACTIONS(2770), }, - [751] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [773] = { + [ts_builtin_sym_end] = ACTIONS(2846), + [sym_identifier] = ACTIONS(2844), + [aux_sym_preproc_include_token1] = ACTIONS(2844), + [aux_sym_preproc_def_token1] = ACTIONS(2844), + [aux_sym_preproc_if_token1] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2844), + [sym_preproc_directive] = ACTIONS(2844), + [anon_sym_LPAREN2] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_PLUS] = ACTIONS(2844), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_AMP_AMP] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym___extension__] = ACTIONS(2844), + [anon_sym_typedef] = ACTIONS(2844), + [anon_sym_extern] = ACTIONS(2844), + [anon_sym___attribute__] = ACTIONS(2844), + [anon_sym_COLON_COLON] = ACTIONS(2846), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2846), + [anon_sym___declspec] = ACTIONS(2844), + [anon_sym___based] = ACTIONS(2844), + [anon_sym___cdecl] = ACTIONS(2844), + [anon_sym___clrcall] = ACTIONS(2844), + [anon_sym___stdcall] = ACTIONS(2844), + [anon_sym___fastcall] = ACTIONS(2844), + [anon_sym___thiscall] = ACTIONS(2844), + [anon_sym___vectorcall] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_signed] = ACTIONS(2844), + [anon_sym_unsigned] = ACTIONS(2844), + [anon_sym_long] = ACTIONS(2844), + [anon_sym_short] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_register] = ACTIONS(2844), + [anon_sym_inline] = ACTIONS(2844), + [anon_sym___inline] = ACTIONS(2844), + [anon_sym___inline__] = ACTIONS(2844), + [anon_sym___forceinline] = ACTIONS(2844), + [anon_sym_thread_local] = ACTIONS(2844), + [anon_sym___thread] = ACTIONS(2844), + [anon_sym_const] = ACTIONS(2844), + [anon_sym_constexpr] = ACTIONS(2844), + [anon_sym_volatile] = ACTIONS(2844), + [anon_sym_restrict] = ACTIONS(2844), + [anon_sym___restrict__] = ACTIONS(2844), + [anon_sym__Atomic] = ACTIONS(2844), + [anon_sym__Noreturn] = ACTIONS(2844), + [anon_sym_noreturn] = ACTIONS(2844), + [anon_sym_mutable] = ACTIONS(2844), + [anon_sym_constinit] = ACTIONS(2844), + [anon_sym_consteval] = ACTIONS(2844), + [sym_primitive_type] = ACTIONS(2844), + [anon_sym_enum] = ACTIONS(2844), + [anon_sym_class] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2844), + [anon_sym_union] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_else] = ACTIONS(2844), + [anon_sym_switch] = ACTIONS(2844), + [anon_sym_case] = ACTIONS(2844), + [anon_sym_default] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_break] = ACTIONS(2844), + [anon_sym_continue] = ACTIONS(2844), + [anon_sym_goto] = ACTIONS(2844), + [anon_sym_not] = ACTIONS(2844), + [anon_sym_compl] = ACTIONS(2844), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_sizeof] = ACTIONS(2844), + [anon_sym___alignof__] = ACTIONS(2844), + [anon_sym___alignof] = ACTIONS(2844), + [anon_sym__alignof] = ACTIONS(2844), + [anon_sym_alignof] = ACTIONS(2844), + [anon_sym__Alignof] = ACTIONS(2844), + [anon_sym_offsetof] = ACTIONS(2844), + [anon_sym__Generic] = ACTIONS(2844), + [anon_sym_asm] = ACTIONS(2844), + [anon_sym___asm__] = ACTIONS(2844), + [sym_number_literal] = ACTIONS(2846), + [anon_sym_L_SQUOTE] = ACTIONS(2846), + [anon_sym_u_SQUOTE] = ACTIONS(2846), + [anon_sym_U_SQUOTE] = ACTIONS(2846), + [anon_sym_u8_SQUOTE] = ACTIONS(2846), + [anon_sym_SQUOTE] = ACTIONS(2846), + [anon_sym_L_DQUOTE] = ACTIONS(2846), + [anon_sym_u_DQUOTE] = ACTIONS(2846), + [anon_sym_U_DQUOTE] = ACTIONS(2846), + [anon_sym_u8_DQUOTE] = ACTIONS(2846), + [anon_sym_DQUOTE] = ACTIONS(2846), + [sym_true] = ACTIONS(2844), + [sym_false] = ACTIONS(2844), + [anon_sym_NULL] = ACTIONS(2844), + [anon_sym_nullptr] = ACTIONS(2844), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2844), + [anon_sym_decltype] = ACTIONS(2844), + [anon_sym_virtual] = ACTIONS(2844), + [anon_sym_alignas] = ACTIONS(2844), + [anon_sym_explicit] = ACTIONS(2844), + [anon_sym_typename] = ACTIONS(2844), + [anon_sym_template] = ACTIONS(2844), + [anon_sym_operator] = ACTIONS(2844), + [anon_sym_try] = ACTIONS(2844), + [anon_sym_delete] = ACTIONS(2844), + [anon_sym_throw] = ACTIONS(2844), + [anon_sym_namespace] = ACTIONS(2844), + [anon_sym_using] = ACTIONS(2844), + [anon_sym_static_assert] = ACTIONS(2844), + [anon_sym_concept] = ACTIONS(2844), + [anon_sym_co_return] = ACTIONS(2844), + [anon_sym_co_yield] = ACTIONS(2844), + [anon_sym_R_DQUOTE] = ACTIONS(2846), + [anon_sym_LR_DQUOTE] = ACTIONS(2846), + [anon_sym_uR_DQUOTE] = ACTIONS(2846), + [anon_sym_UR_DQUOTE] = ACTIONS(2846), + [anon_sym_u8R_DQUOTE] = ACTIONS(2846), + [anon_sym_co_await] = ACTIONS(2844), + [anon_sym_new] = ACTIONS(2844), + [anon_sym_requires] = ACTIONS(2844), + [sym_this] = ACTIONS(2844), }, - [752] = { - [sym_preproc_def] = STATE(713), - [sym_preproc_function_def] = STATE(713), - [sym_preproc_call] = STATE(713), - [sym_preproc_if_in_field_declaration_list] = STATE(713), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(713), - [sym_preproc_else_in_field_declaration_list] = STATE(9027), - [sym_preproc_elif_in_field_declaration_list] = STATE(9027), - [sym_type_definition] = STATE(713), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6371), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6947), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(713), - [sym_field_declaration] = STATE(713), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2398), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(713), - [sym_operator_cast] = STATE(7504), - [sym_inline_method_definition] = STATE(713), - [sym__constructor_specifiers] = STATE(2398), - [sym_operator_cast_definition] = STATE(713), - [sym_operator_cast_declaration] = STATE(713), - [sym_constructor_or_destructor_definition] = STATE(713), - [sym_constructor_or_destructor_declaration] = STATE(713), - [sym_friend_declaration] = STATE(713), - [sym_access_specifier] = STATE(9393), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(713), - [sym_alias_declaration] = STATE(713), - [sym_static_assert_declaration] = STATE(713), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7504), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(713), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2398), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3462), - [aux_sym_preproc_if_token1] = ACTIONS(3464), - [aux_sym_preproc_if_token2] = ACTIONS(3640), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3468), - [aux_sym_preproc_else_token1] = ACTIONS(2697), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3472), - [anon_sym_typedef] = ACTIONS(3474), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3476), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3478), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3480), - [anon_sym_static_assert] = ACTIONS(3482), + [774] = { + [sym_identifier] = ACTIONS(3188), + [aux_sym_preproc_include_token1] = ACTIONS(3188), + [aux_sym_preproc_def_token1] = ACTIONS(3188), + [aux_sym_preproc_if_token1] = ACTIONS(3188), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3188), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3188), + [sym_preproc_directive] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(3190), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_AMP_AMP] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3190), + [anon_sym___extension__] = ACTIONS(3188), + [anon_sym_typedef] = ACTIONS(3188), + [anon_sym_extern] = ACTIONS(3188), + [anon_sym___attribute__] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3190), + [anon_sym___declspec] = ACTIONS(3188), + [anon_sym___based] = ACTIONS(3188), + [anon_sym___cdecl] = ACTIONS(3188), + [anon_sym___clrcall] = ACTIONS(3188), + [anon_sym___stdcall] = ACTIONS(3188), + [anon_sym___fastcall] = ACTIONS(3188), + [anon_sym___thiscall] = ACTIONS(3188), + [anon_sym___vectorcall] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3190), + [anon_sym_signed] = ACTIONS(3188), + [anon_sym_unsigned] = ACTIONS(3188), + [anon_sym_long] = ACTIONS(3188), + [anon_sym_short] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_register] = ACTIONS(3188), + [anon_sym_inline] = ACTIONS(3188), + [anon_sym___inline] = ACTIONS(3188), + [anon_sym___inline__] = ACTIONS(3188), + [anon_sym___forceinline] = ACTIONS(3188), + [anon_sym_thread_local] = ACTIONS(3188), + [anon_sym___thread] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_constexpr] = ACTIONS(3188), + [anon_sym_volatile] = ACTIONS(3188), + [anon_sym_restrict] = ACTIONS(3188), + [anon_sym___restrict__] = ACTIONS(3188), + [anon_sym__Atomic] = ACTIONS(3188), + [anon_sym__Noreturn] = ACTIONS(3188), + [anon_sym_noreturn] = ACTIONS(3188), + [anon_sym_mutable] = ACTIONS(3188), + [anon_sym_constinit] = ACTIONS(3188), + [anon_sym_consteval] = ACTIONS(3188), + [sym_primitive_type] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_struct] = ACTIONS(3188), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3188), + [anon_sym_case] = ACTIONS(3188), + [anon_sym_default] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_break] = ACTIONS(3188), + [anon_sym_continue] = ACTIONS(3188), + [anon_sym_goto] = ACTIONS(3188), + [anon_sym_not] = ACTIONS(3188), + [anon_sym_compl] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3190), + [anon_sym_PLUS_PLUS] = ACTIONS(3190), + [anon_sym_sizeof] = ACTIONS(3188), + [anon_sym___alignof__] = ACTIONS(3188), + [anon_sym___alignof] = ACTIONS(3188), + [anon_sym__alignof] = ACTIONS(3188), + [anon_sym_alignof] = ACTIONS(3188), + [anon_sym__Alignof] = ACTIONS(3188), + [anon_sym_offsetof] = ACTIONS(3188), + [anon_sym__Generic] = ACTIONS(3188), + [anon_sym_asm] = ACTIONS(3188), + [anon_sym___asm__] = ACTIONS(3188), + [sym_number_literal] = ACTIONS(3190), + [anon_sym_L_SQUOTE] = ACTIONS(3190), + [anon_sym_u_SQUOTE] = ACTIONS(3190), + [anon_sym_U_SQUOTE] = ACTIONS(3190), + [anon_sym_u8_SQUOTE] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3190), + [anon_sym_L_DQUOTE] = ACTIONS(3190), + [anon_sym_u_DQUOTE] = ACTIONS(3190), + [anon_sym_U_DQUOTE] = ACTIONS(3190), + [anon_sym_u8_DQUOTE] = ACTIONS(3190), + [anon_sym_DQUOTE] = ACTIONS(3190), + [sym_true] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [anon_sym_NULL] = ACTIONS(3188), + [anon_sym_nullptr] = ACTIONS(3188), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3188), + [anon_sym_decltype] = ACTIONS(3188), + [anon_sym_virtual] = ACTIONS(3188), + [anon_sym_alignas] = ACTIONS(3188), + [anon_sym_explicit] = ACTIONS(3188), + [anon_sym_typename] = ACTIONS(3188), + [anon_sym_template] = ACTIONS(3188), + [anon_sym_operator] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_throw] = ACTIONS(3188), + [anon_sym_namespace] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3188), + [anon_sym_static_assert] = ACTIONS(3188), + [anon_sym_concept] = ACTIONS(3188), + [anon_sym_co_return] = ACTIONS(3188), + [anon_sym_co_yield] = ACTIONS(3188), + [anon_sym_R_DQUOTE] = ACTIONS(3190), + [anon_sym_LR_DQUOTE] = ACTIONS(3190), + [anon_sym_uR_DQUOTE] = ACTIONS(3190), + [anon_sym_UR_DQUOTE] = ACTIONS(3190), + [anon_sym_u8R_DQUOTE] = ACTIONS(3190), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_requires] = ACTIONS(3188), + [sym_this] = ACTIONS(3188), }, - [753] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [775] = { + [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_extern] = ACTIONS(3071), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3071), + [anon_sym_constinit] = ACTIONS(3071), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3071), + [anon_sym_alignas] = 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_using] = 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), }, - [754] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [776] = { + [sym_identifier] = ACTIONS(3160), + [aux_sym_preproc_include_token1] = ACTIONS(3160), + [aux_sym_preproc_def_token1] = ACTIONS(3160), + [aux_sym_preproc_if_token1] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), + [sym_preproc_directive] = ACTIONS(3160), + [anon_sym_LPAREN2] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym___extension__] = ACTIONS(3160), + [anon_sym_typedef] = ACTIONS(3160), + [anon_sym_extern] = ACTIONS(3160), + [anon_sym___attribute__] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), + [anon_sym___declspec] = ACTIONS(3160), + [anon_sym___based] = ACTIONS(3160), + [anon_sym___cdecl] = ACTIONS(3160), + [anon_sym___clrcall] = ACTIONS(3160), + [anon_sym___stdcall] = ACTIONS(3160), + [anon_sym___fastcall] = ACTIONS(3160), + [anon_sym___thiscall] = ACTIONS(3160), + [anon_sym___vectorcall] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_signed] = ACTIONS(3160), + [anon_sym_unsigned] = ACTIONS(3160), + [anon_sym_long] = ACTIONS(3160), + [anon_sym_short] = ACTIONS(3160), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_static] = ACTIONS(3160), + [anon_sym_register] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym___inline] = ACTIONS(3160), + [anon_sym___inline__] = ACTIONS(3160), + [anon_sym___forceinline] = ACTIONS(3160), + [anon_sym_thread_local] = ACTIONS(3160), + [anon_sym___thread] = ACTIONS(3160), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_constexpr] = ACTIONS(3160), + [anon_sym_volatile] = ACTIONS(3160), + [anon_sym_restrict] = ACTIONS(3160), + [anon_sym___restrict__] = ACTIONS(3160), + [anon_sym__Atomic] = ACTIONS(3160), + [anon_sym__Noreturn] = ACTIONS(3160), + [anon_sym_noreturn] = ACTIONS(3160), + [anon_sym_mutable] = ACTIONS(3160), + [anon_sym_constinit] = ACTIONS(3160), + [anon_sym_consteval] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), + [anon_sym_class] = ACTIONS(3160), + [anon_sym_struct] = ACTIONS(3160), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_switch] = ACTIONS(3160), + [anon_sym_case] = ACTIONS(3160), + [anon_sym_default] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_do] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_goto] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3160), + [anon_sym_compl] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3160), + [anon_sym___alignof__] = ACTIONS(3160), + [anon_sym___alignof] = ACTIONS(3160), + [anon_sym__alignof] = ACTIONS(3160), + [anon_sym_alignof] = ACTIONS(3160), + [anon_sym__Alignof] = ACTIONS(3160), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3160), + [anon_sym_asm] = ACTIONS(3160), + [anon_sym___asm__] = ACTIONS(3160), + [sym_number_literal] = ACTIONS(3162), + [anon_sym_L_SQUOTE] = ACTIONS(3162), + [anon_sym_u_SQUOTE] = ACTIONS(3162), + [anon_sym_U_SQUOTE] = ACTIONS(3162), + [anon_sym_u8_SQUOTE] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3162), + [anon_sym_L_DQUOTE] = ACTIONS(3162), + [anon_sym_u_DQUOTE] = ACTIONS(3162), + [anon_sym_U_DQUOTE] = ACTIONS(3162), + [anon_sym_u8_DQUOTE] = ACTIONS(3162), + [anon_sym_DQUOTE] = ACTIONS(3162), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [anon_sym_NULL] = ACTIONS(3160), + [anon_sym_nullptr] = ACTIONS(3160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3160), + [anon_sym_decltype] = ACTIONS(3160), + [anon_sym_virtual] = ACTIONS(3160), + [anon_sym_alignas] = ACTIONS(3160), + [anon_sym_explicit] = ACTIONS(3160), + [anon_sym_typename] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_delete] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_namespace] = ACTIONS(3160), + [anon_sym_using] = ACTIONS(3160), + [anon_sym_static_assert] = ACTIONS(3160), + [anon_sym_concept] = ACTIONS(3160), + [anon_sym_co_return] = ACTIONS(3160), + [anon_sym_co_yield] = ACTIONS(3160), + [anon_sym_R_DQUOTE] = ACTIONS(3162), + [anon_sym_LR_DQUOTE] = ACTIONS(3162), + [anon_sym_uR_DQUOTE] = ACTIONS(3162), + [anon_sym_UR_DQUOTE] = ACTIONS(3162), + [anon_sym_u8R_DQUOTE] = ACTIONS(3162), + [anon_sym_co_await] = ACTIONS(3160), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_requires] = ACTIONS(3160), + [sym_this] = ACTIONS(3160), }, - [755] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [777] = { + [sym_identifier] = ACTIONS(3164), + [aux_sym_preproc_include_token1] = ACTIONS(3164), + [aux_sym_preproc_def_token1] = ACTIONS(3164), + [aux_sym_preproc_if_token1] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3164), + [sym_preproc_directive] = ACTIONS(3164), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3164), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3164), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym___extension__] = ACTIONS(3164), + [anon_sym_typedef] = ACTIONS(3164), + [anon_sym_extern] = ACTIONS(3164), + [anon_sym___attribute__] = ACTIONS(3164), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3164), + [anon_sym___based] = ACTIONS(3164), + [anon_sym___cdecl] = ACTIONS(3164), + [anon_sym___clrcall] = ACTIONS(3164), + [anon_sym___stdcall] = ACTIONS(3164), + [anon_sym___fastcall] = ACTIONS(3164), + [anon_sym___thiscall] = ACTIONS(3164), + [anon_sym___vectorcall] = ACTIONS(3164), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_signed] = ACTIONS(3164), + [anon_sym_unsigned] = ACTIONS(3164), + [anon_sym_long] = ACTIONS(3164), + [anon_sym_short] = ACTIONS(3164), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_static] = ACTIONS(3164), + [anon_sym_register] = ACTIONS(3164), + [anon_sym_inline] = ACTIONS(3164), + [anon_sym___inline] = ACTIONS(3164), + [anon_sym___inline__] = ACTIONS(3164), + [anon_sym___forceinline] = ACTIONS(3164), + [anon_sym_thread_local] = ACTIONS(3164), + [anon_sym___thread] = ACTIONS(3164), + [anon_sym_const] = ACTIONS(3164), + [anon_sym_constexpr] = ACTIONS(3164), + [anon_sym_volatile] = ACTIONS(3164), + [anon_sym_restrict] = ACTIONS(3164), + [anon_sym___restrict__] = ACTIONS(3164), + [anon_sym__Atomic] = ACTIONS(3164), + [anon_sym__Noreturn] = ACTIONS(3164), + [anon_sym_noreturn] = ACTIONS(3164), + [anon_sym_mutable] = ACTIONS(3164), + [anon_sym_constinit] = ACTIONS(3164), + [anon_sym_consteval] = ACTIONS(3164), + [sym_primitive_type] = ACTIONS(3164), + [anon_sym_enum] = ACTIONS(3164), + [anon_sym_class] = ACTIONS(3164), + [anon_sym_struct] = ACTIONS(3164), + [anon_sym_union] = ACTIONS(3164), + [anon_sym_if] = ACTIONS(3164), + [anon_sym_switch] = ACTIONS(3164), + [anon_sym_case] = ACTIONS(3164), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_while] = ACTIONS(3164), + [anon_sym_do] = ACTIONS(3164), + [anon_sym_for] = ACTIONS(3164), + [anon_sym_return] = ACTIONS(3164), + [anon_sym_break] = ACTIONS(3164), + [anon_sym_continue] = ACTIONS(3164), + [anon_sym_goto] = ACTIONS(3164), + [anon_sym_not] = ACTIONS(3164), + [anon_sym_compl] = ACTIONS(3164), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3164), + [anon_sym___alignof] = ACTIONS(3164), + [anon_sym__alignof] = ACTIONS(3164), + [anon_sym_alignof] = ACTIONS(3164), + [anon_sym__Alignof] = ACTIONS(3164), + [anon_sym_offsetof] = ACTIONS(3164), + [anon_sym__Generic] = ACTIONS(3164), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3166), + [anon_sym_u_SQUOTE] = ACTIONS(3166), + [anon_sym_U_SQUOTE] = ACTIONS(3166), + [anon_sym_u8_SQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_L_DQUOTE] = ACTIONS(3166), + [anon_sym_u_DQUOTE] = ACTIONS(3166), + [anon_sym_U_DQUOTE] = ACTIONS(3166), + [anon_sym_u8_DQUOTE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [sym_true] = ACTIONS(3164), + [sym_false] = ACTIONS(3164), + [anon_sym_NULL] = ACTIONS(3164), + [anon_sym_nullptr] = ACTIONS(3164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3164), + [anon_sym_decltype] = ACTIONS(3164), + [anon_sym_virtual] = ACTIONS(3164), + [anon_sym_alignas] = ACTIONS(3164), + [anon_sym_explicit] = ACTIONS(3164), + [anon_sym_typename] = ACTIONS(3164), + [anon_sym_template] = ACTIONS(3164), + [anon_sym_operator] = ACTIONS(3164), + [anon_sym_try] = ACTIONS(3164), + [anon_sym_delete] = ACTIONS(3164), + [anon_sym_throw] = ACTIONS(3164), + [anon_sym_namespace] = ACTIONS(3164), + [anon_sym_using] = ACTIONS(3164), + [anon_sym_static_assert] = ACTIONS(3164), + [anon_sym_concept] = ACTIONS(3164), + [anon_sym_co_return] = ACTIONS(3164), + [anon_sym_co_yield] = ACTIONS(3164), + [anon_sym_R_DQUOTE] = ACTIONS(3166), + [anon_sym_LR_DQUOTE] = ACTIONS(3166), + [anon_sym_uR_DQUOTE] = ACTIONS(3166), + [anon_sym_UR_DQUOTE] = ACTIONS(3166), + [anon_sym_u8R_DQUOTE] = ACTIONS(3166), + [anon_sym_co_await] = ACTIONS(3164), + [anon_sym_new] = ACTIONS(3164), + [anon_sym_requires] = ACTIONS(3164), + [sym_this] = ACTIONS(3164), }, - [756] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [778] = { + [sym_identifier] = ACTIONS(3009), + [aux_sym_preproc_include_token1] = ACTIONS(3009), + [aux_sym_preproc_def_token1] = ACTIONS(3009), + [aux_sym_preproc_if_token1] = ACTIONS(3009), + [aux_sym_preproc_if_token2] = ACTIONS(3009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3009), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3009), + [sym_preproc_directive] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(3011), + [anon_sym_BANG] = ACTIONS(3011), + [anon_sym_TILDE] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_AMP_AMP] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym___extension__] = ACTIONS(3009), + [anon_sym_typedef] = ACTIONS(3009), + [anon_sym_extern] = ACTIONS(3009), + [anon_sym___attribute__] = ACTIONS(3009), + [anon_sym_COLON_COLON] = ACTIONS(3011), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3011), + [anon_sym___declspec] = ACTIONS(3009), + [anon_sym___based] = ACTIONS(3009), + [anon_sym___cdecl] = ACTIONS(3009), + [anon_sym___clrcall] = ACTIONS(3009), + [anon_sym___stdcall] = ACTIONS(3009), + [anon_sym___fastcall] = ACTIONS(3009), + [anon_sym___thiscall] = ACTIONS(3009), + [anon_sym___vectorcall] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_signed] = ACTIONS(3009), + [anon_sym_unsigned] = ACTIONS(3009), + [anon_sym_long] = ACTIONS(3009), + [anon_sym_short] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_static] = ACTIONS(3009), + [anon_sym_register] = ACTIONS(3009), + [anon_sym_inline] = ACTIONS(3009), + [anon_sym___inline] = ACTIONS(3009), + [anon_sym___inline__] = ACTIONS(3009), + [anon_sym___forceinline] = ACTIONS(3009), + [anon_sym_thread_local] = ACTIONS(3009), + [anon_sym___thread] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3009), + [anon_sym_constexpr] = ACTIONS(3009), + [anon_sym_volatile] = ACTIONS(3009), + [anon_sym_restrict] = ACTIONS(3009), + [anon_sym___restrict__] = ACTIONS(3009), + [anon_sym__Atomic] = ACTIONS(3009), + [anon_sym__Noreturn] = ACTIONS(3009), + [anon_sym_noreturn] = ACTIONS(3009), + [anon_sym_mutable] = ACTIONS(3009), + [anon_sym_constinit] = ACTIONS(3009), + [anon_sym_consteval] = ACTIONS(3009), + [sym_primitive_type] = ACTIONS(3009), + [anon_sym_enum] = ACTIONS(3009), + [anon_sym_class] = ACTIONS(3009), + [anon_sym_struct] = ACTIONS(3009), + [anon_sym_union] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_switch] = ACTIONS(3009), + [anon_sym_case] = ACTIONS(3009), + [anon_sym_default] = ACTIONS(3009), + [anon_sym_while] = ACTIONS(3009), + [anon_sym_do] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_break] = ACTIONS(3009), + [anon_sym_continue] = ACTIONS(3009), + [anon_sym_goto] = ACTIONS(3009), + [anon_sym_not] = ACTIONS(3009), + [anon_sym_compl] = ACTIONS(3009), + [anon_sym_DASH_DASH] = ACTIONS(3011), + [anon_sym_PLUS_PLUS] = ACTIONS(3011), + [anon_sym_sizeof] = ACTIONS(3009), + [anon_sym___alignof__] = ACTIONS(3009), + [anon_sym___alignof] = ACTIONS(3009), + [anon_sym__alignof] = ACTIONS(3009), + [anon_sym_alignof] = ACTIONS(3009), + [anon_sym__Alignof] = ACTIONS(3009), + [anon_sym_offsetof] = ACTIONS(3009), + [anon_sym__Generic] = ACTIONS(3009), + [anon_sym_asm] = ACTIONS(3009), + [anon_sym___asm__] = ACTIONS(3009), + [sym_number_literal] = ACTIONS(3011), + [anon_sym_L_SQUOTE] = ACTIONS(3011), + [anon_sym_u_SQUOTE] = ACTIONS(3011), + [anon_sym_U_SQUOTE] = ACTIONS(3011), + [anon_sym_u8_SQUOTE] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_L_DQUOTE] = ACTIONS(3011), + [anon_sym_u_DQUOTE] = ACTIONS(3011), + [anon_sym_U_DQUOTE] = ACTIONS(3011), + [anon_sym_u8_DQUOTE] = ACTIONS(3011), + [anon_sym_DQUOTE] = ACTIONS(3011), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3009), + [anon_sym_nullptr] = ACTIONS(3009), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3009), + [anon_sym_decltype] = ACTIONS(3009), + [anon_sym_virtual] = ACTIONS(3009), + [anon_sym_alignas] = ACTIONS(3009), + [anon_sym_explicit] = ACTIONS(3009), + [anon_sym_typename] = ACTIONS(3009), + [anon_sym_template] = ACTIONS(3009), + [anon_sym_operator] = ACTIONS(3009), + [anon_sym_try] = ACTIONS(3009), + [anon_sym_delete] = ACTIONS(3009), + [anon_sym_throw] = ACTIONS(3009), + [anon_sym_namespace] = ACTIONS(3009), + [anon_sym_using] = ACTIONS(3009), + [anon_sym_static_assert] = ACTIONS(3009), + [anon_sym_concept] = ACTIONS(3009), + [anon_sym_co_return] = ACTIONS(3009), + [anon_sym_co_yield] = ACTIONS(3009), + [anon_sym_R_DQUOTE] = ACTIONS(3011), + [anon_sym_LR_DQUOTE] = ACTIONS(3011), + [anon_sym_uR_DQUOTE] = ACTIONS(3011), + [anon_sym_UR_DQUOTE] = ACTIONS(3011), + [anon_sym_u8R_DQUOTE] = ACTIONS(3011), + [anon_sym_co_await] = ACTIONS(3009), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(3009), + [sym_this] = ACTIONS(3009), }, - [757] = { - [sym_identifier] = ACTIONS(3099), - [aux_sym_preproc_include_token1] = ACTIONS(3099), - [aux_sym_preproc_def_token1] = ACTIONS(3099), - [aux_sym_preproc_if_token1] = ACTIONS(3099), - [aux_sym_preproc_if_token2] = ACTIONS(3099), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), - [aux_sym_preproc_else_token1] = ACTIONS(3099), - [aux_sym_preproc_elif_token1] = ACTIONS(3099), - [sym_preproc_directive] = ACTIONS(3099), - [anon_sym_LPAREN2] = ACTIONS(3101), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3101), - [anon_sym___extension__] = ACTIONS(3099), - [anon_sym_typedef] = ACTIONS(3099), - [anon_sym_extern] = ACTIONS(3099), - [anon_sym___attribute__] = ACTIONS(3099), - [anon_sym_COLON_COLON] = ACTIONS(3101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), - [anon_sym___declspec] = ACTIONS(3099), - [anon_sym___based] = ACTIONS(3099), - [anon_sym___cdecl] = ACTIONS(3099), - [anon_sym___clrcall] = ACTIONS(3099), - [anon_sym___stdcall] = ACTIONS(3099), - [anon_sym___fastcall] = ACTIONS(3099), - [anon_sym___thiscall] = ACTIONS(3099), - [anon_sym___vectorcall] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_signed] = ACTIONS(3099), - [anon_sym_unsigned] = ACTIONS(3099), - [anon_sym_long] = ACTIONS(3099), - [anon_sym_short] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_register] = ACTIONS(3099), - [anon_sym_inline] = ACTIONS(3099), - [anon_sym___inline] = ACTIONS(3099), - [anon_sym___inline__] = ACTIONS(3099), - [anon_sym___forceinline] = ACTIONS(3099), - [anon_sym_thread_local] = ACTIONS(3099), - [anon_sym___thread] = ACTIONS(3099), - [anon_sym_const] = ACTIONS(3099), - [anon_sym_constexpr] = ACTIONS(3099), - [anon_sym_volatile] = ACTIONS(3099), - [anon_sym_restrict] = ACTIONS(3099), - [anon_sym___restrict__] = ACTIONS(3099), - [anon_sym__Atomic] = ACTIONS(3099), - [anon_sym__Noreturn] = ACTIONS(3099), - [anon_sym_noreturn] = ACTIONS(3099), - [anon_sym_mutable] = ACTIONS(3099), - [anon_sym_constinit] = ACTIONS(3099), - [anon_sym_consteval] = ACTIONS(3099), - [sym_primitive_type] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_union] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3099), - [anon_sym_switch] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_default] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_break] = ACTIONS(3099), - [anon_sym_continue] = ACTIONS(3099), - [anon_sym_goto] = ACTIONS(3099), - [anon_sym_not] = ACTIONS(3099), - [anon_sym_compl] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3101), - [anon_sym_sizeof] = ACTIONS(3099), - [anon_sym___alignof__] = ACTIONS(3099), - [anon_sym___alignof] = ACTIONS(3099), - [anon_sym__alignof] = ACTIONS(3099), - [anon_sym_alignof] = ACTIONS(3099), - [anon_sym__Alignof] = ACTIONS(3099), - [anon_sym_offsetof] = ACTIONS(3099), - [anon_sym__Generic] = ACTIONS(3099), - [anon_sym_asm] = ACTIONS(3099), - [anon_sym___asm__] = ACTIONS(3099), - [sym_number_literal] = ACTIONS(3101), - [anon_sym_L_SQUOTE] = ACTIONS(3101), - [anon_sym_u_SQUOTE] = ACTIONS(3101), - [anon_sym_U_SQUOTE] = ACTIONS(3101), - [anon_sym_u8_SQUOTE] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3101), - [anon_sym_L_DQUOTE] = ACTIONS(3101), - [anon_sym_u_DQUOTE] = ACTIONS(3101), - [anon_sym_U_DQUOTE] = ACTIONS(3101), - [anon_sym_u8_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [anon_sym_NULL] = ACTIONS(3099), - [anon_sym_nullptr] = ACTIONS(3099), + [779] = { + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_include_token1] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token2] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym___cdecl] = ACTIONS(3103), + [anon_sym___clrcall] = ACTIONS(3103), + [anon_sym___stdcall] = ACTIONS(3103), + [anon_sym___fastcall] = ACTIONS(3103), + [anon_sym___thiscall] = ACTIONS(3103), + [anon_sym___vectorcall] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3103), + [anon_sym_case] = ACTIONS(3103), + [anon_sym_default] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_do] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_compl] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_sizeof] = ACTIONS(3103), + [anon_sym___alignof__] = ACTIONS(3103), + [anon_sym___alignof] = ACTIONS(3103), + [anon_sym__alignof] = ACTIONS(3103), + [anon_sym_alignof] = ACTIONS(3103), + [anon_sym__Alignof] = ACTIONS(3103), + [anon_sym_offsetof] = ACTIONS(3103), + [anon_sym__Generic] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym___asm__] = ACTIONS(3103), + [sym_number_literal] = ACTIONS(3105), + [anon_sym_L_SQUOTE] = ACTIONS(3105), + [anon_sym_u_SQUOTE] = ACTIONS(3105), + [anon_sym_U_SQUOTE] = ACTIONS(3105), + [anon_sym_u8_SQUOTE] = ACTIONS(3105), + [anon_sym_SQUOTE] = ACTIONS(3105), + [anon_sym_L_DQUOTE] = ACTIONS(3105), + [anon_sym_u_DQUOTE] = ACTIONS(3105), + [anon_sym_U_DQUOTE] = ACTIONS(3105), + [anon_sym_u8_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [sym_true] = ACTIONS(3103), + [sym_false] = ACTIONS(3103), + [anon_sym_NULL] = ACTIONS(3103), + [anon_sym_nullptr] = ACTIONS(3103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3099), - [anon_sym_decltype] = ACTIONS(3099), - [anon_sym_virtual] = ACTIONS(3099), - [anon_sym_alignas] = ACTIONS(3099), - [anon_sym_explicit] = ACTIONS(3099), - [anon_sym_typename] = ACTIONS(3099), - [anon_sym_template] = ACTIONS(3099), - [anon_sym_operator] = ACTIONS(3099), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_delete] = ACTIONS(3099), - [anon_sym_throw] = ACTIONS(3099), - [anon_sym_namespace] = ACTIONS(3099), - [anon_sym_using] = ACTIONS(3099), - [anon_sym_static_assert] = ACTIONS(3099), - [anon_sym_concept] = ACTIONS(3099), - [anon_sym_co_return] = ACTIONS(3099), - [anon_sym_co_yield] = ACTIONS(3099), - [anon_sym_R_DQUOTE] = ACTIONS(3101), - [anon_sym_LR_DQUOTE] = ACTIONS(3101), - [anon_sym_uR_DQUOTE] = ACTIONS(3101), - [anon_sym_UR_DQUOTE] = ACTIONS(3101), - [anon_sym_u8R_DQUOTE] = ACTIONS(3101), - [anon_sym_co_await] = ACTIONS(3099), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_requires] = ACTIONS(3099), - [sym_this] = ACTIONS(3099), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_delete] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + [anon_sym_concept] = ACTIONS(3103), + [anon_sym_co_return] = ACTIONS(3103), + [anon_sym_co_yield] = ACTIONS(3103), + [anon_sym_R_DQUOTE] = ACTIONS(3105), + [anon_sym_LR_DQUOTE] = ACTIONS(3105), + [anon_sym_uR_DQUOTE] = ACTIONS(3105), + [anon_sym_UR_DQUOTE] = ACTIONS(3105), + [anon_sym_u8R_DQUOTE] = ACTIONS(3105), + [anon_sym_co_await] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(3103), + [sym_this] = ACTIONS(3103), }, - [758] = { - [sym_identifier] = ACTIONS(3095), - [aux_sym_preproc_include_token1] = ACTIONS(3095), - [aux_sym_preproc_def_token1] = ACTIONS(3095), - [aux_sym_preproc_if_token1] = ACTIONS(3095), - [aux_sym_preproc_if_token2] = ACTIONS(3095), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), - [aux_sym_preproc_else_token1] = ACTIONS(3095), - [aux_sym_preproc_elif_token1] = ACTIONS(3095), - [sym_preproc_directive] = ACTIONS(3095), - [anon_sym_LPAREN2] = ACTIONS(3097), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym___extension__] = ACTIONS(3095), - [anon_sym_typedef] = ACTIONS(3095), - [anon_sym_extern] = ACTIONS(3095), - [anon_sym___attribute__] = ACTIONS(3095), - [anon_sym_COLON_COLON] = ACTIONS(3097), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), - [anon_sym___declspec] = ACTIONS(3095), - [anon_sym___based] = ACTIONS(3095), - [anon_sym___cdecl] = ACTIONS(3095), - [anon_sym___clrcall] = ACTIONS(3095), - [anon_sym___stdcall] = ACTIONS(3095), - [anon_sym___fastcall] = ACTIONS(3095), - [anon_sym___thiscall] = ACTIONS(3095), - [anon_sym___vectorcall] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_signed] = ACTIONS(3095), - [anon_sym_unsigned] = ACTIONS(3095), - [anon_sym_long] = ACTIONS(3095), - [anon_sym_short] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_register] = ACTIONS(3095), - [anon_sym_inline] = ACTIONS(3095), - [anon_sym___inline] = ACTIONS(3095), - [anon_sym___inline__] = ACTIONS(3095), - [anon_sym___forceinline] = ACTIONS(3095), - [anon_sym_thread_local] = ACTIONS(3095), - [anon_sym___thread] = ACTIONS(3095), - [anon_sym_const] = ACTIONS(3095), - [anon_sym_constexpr] = ACTIONS(3095), - [anon_sym_volatile] = ACTIONS(3095), - [anon_sym_restrict] = ACTIONS(3095), - [anon_sym___restrict__] = ACTIONS(3095), - [anon_sym__Atomic] = ACTIONS(3095), - [anon_sym__Noreturn] = ACTIONS(3095), - [anon_sym_noreturn] = ACTIONS(3095), - [anon_sym_mutable] = ACTIONS(3095), - [anon_sym_constinit] = ACTIONS(3095), - [anon_sym_consteval] = ACTIONS(3095), - [sym_primitive_type] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_union] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3095), - [anon_sym_else] = ACTIONS(3095), - [anon_sym_switch] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_default] = ACTIONS(3095), - [anon_sym_while] = ACTIONS(3095), - [anon_sym_do] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3095), - [anon_sym_return] = ACTIONS(3095), - [anon_sym_break] = ACTIONS(3095), - [anon_sym_continue] = ACTIONS(3095), - [anon_sym_goto] = ACTIONS(3095), - [anon_sym_not] = ACTIONS(3095), - [anon_sym_compl] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_sizeof] = ACTIONS(3095), - [anon_sym___alignof__] = ACTIONS(3095), - [anon_sym___alignof] = ACTIONS(3095), - [anon_sym__alignof] = ACTIONS(3095), - [anon_sym_alignof] = ACTIONS(3095), - [anon_sym__Alignof] = ACTIONS(3095), - [anon_sym_offsetof] = ACTIONS(3095), - [anon_sym__Generic] = ACTIONS(3095), - [anon_sym_asm] = ACTIONS(3095), - [anon_sym___asm__] = ACTIONS(3095), - [sym_number_literal] = ACTIONS(3097), - [anon_sym_L_SQUOTE] = ACTIONS(3097), - [anon_sym_u_SQUOTE] = ACTIONS(3097), - [anon_sym_U_SQUOTE] = ACTIONS(3097), - [anon_sym_u8_SQUOTE] = ACTIONS(3097), - [anon_sym_SQUOTE] = ACTIONS(3097), - [anon_sym_L_DQUOTE] = ACTIONS(3097), - [anon_sym_u_DQUOTE] = ACTIONS(3097), - [anon_sym_U_DQUOTE] = ACTIONS(3097), - [anon_sym_u8_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE] = ACTIONS(3097), - [sym_true] = ACTIONS(3095), - [sym_false] = ACTIONS(3095), - [anon_sym_NULL] = ACTIONS(3095), - [anon_sym_nullptr] = ACTIONS(3095), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3095), - [anon_sym_decltype] = ACTIONS(3095), - [anon_sym_virtual] = ACTIONS(3095), - [anon_sym_alignas] = ACTIONS(3095), - [anon_sym_explicit] = ACTIONS(3095), - [anon_sym_typename] = ACTIONS(3095), - [anon_sym_template] = ACTIONS(3095), - [anon_sym_operator] = ACTIONS(3095), - [anon_sym_try] = ACTIONS(3095), - [anon_sym_delete] = ACTIONS(3095), - [anon_sym_throw] = ACTIONS(3095), - [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_using] = ACTIONS(3095), - [anon_sym_static_assert] = ACTIONS(3095), - [anon_sym_concept] = ACTIONS(3095), - [anon_sym_co_return] = ACTIONS(3095), - [anon_sym_co_yield] = ACTIONS(3095), - [anon_sym_R_DQUOTE] = ACTIONS(3097), - [anon_sym_LR_DQUOTE] = ACTIONS(3097), - [anon_sym_uR_DQUOTE] = ACTIONS(3097), - [anon_sym_UR_DQUOTE] = ACTIONS(3097), - [anon_sym_u8R_DQUOTE] = ACTIONS(3097), - [anon_sym_co_await] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_requires] = ACTIONS(3095), - [sym_this] = ACTIONS(3095), + [780] = { + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_include_token1] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3170), + [anon_sym_AMP_AMP] = ACTIONS(3170), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3170), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3170), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym___cdecl] = ACTIONS(3168), + [anon_sym___clrcall] = ACTIONS(3168), + [anon_sym___stdcall] = ACTIONS(3168), + [anon_sym___fastcall] = ACTIONS(3168), + [anon_sym___thiscall] = ACTIONS(3168), + [anon_sym___vectorcall] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3170), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_goto] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym___alignof__] = ACTIONS(3168), + [anon_sym___alignof] = ACTIONS(3168), + [anon_sym__alignof] = ACTIONS(3168), + [anon_sym_alignof] = ACTIONS(3168), + [anon_sym__Alignof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3170), + [anon_sym_L_SQUOTE] = ACTIONS(3170), + [anon_sym_u_SQUOTE] = ACTIONS(3170), + [anon_sym_U_SQUOTE] = ACTIONS(3170), + [anon_sym_u8_SQUOTE] = ACTIONS(3170), + [anon_sym_SQUOTE] = ACTIONS(3170), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_concept] = ACTIONS(3168), + [anon_sym_co_return] = ACTIONS(3168), + [anon_sym_co_yield] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3170), + [anon_sym_LR_DQUOTE] = ACTIONS(3170), + [anon_sym_uR_DQUOTE] = ACTIONS(3170), + [anon_sym_UR_DQUOTE] = ACTIONS(3170), + [anon_sym_u8R_DQUOTE] = ACTIONS(3170), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [sym_this] = ACTIONS(3168), }, - [759] = { - [sym_identifier] = ACTIONS(3091), - [aux_sym_preproc_include_token1] = ACTIONS(3091), - [aux_sym_preproc_def_token1] = ACTIONS(3091), - [aux_sym_preproc_if_token1] = ACTIONS(3091), - [aux_sym_preproc_if_token2] = ACTIONS(3091), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), - [aux_sym_preproc_else_token1] = ACTIONS(3091), - [aux_sym_preproc_elif_token1] = ACTIONS(3091), - [sym_preproc_directive] = ACTIONS(3091), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3091), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3091), - [anon_sym_SEMI] = ACTIONS(3093), - [anon_sym___extension__] = ACTIONS(3091), - [anon_sym_typedef] = ACTIONS(3091), - [anon_sym_extern] = ACTIONS(3091), - [anon_sym___attribute__] = ACTIONS(3091), - [anon_sym_COLON_COLON] = ACTIONS(3093), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), - [anon_sym___declspec] = ACTIONS(3091), - [anon_sym___based] = ACTIONS(3091), - [anon_sym___cdecl] = ACTIONS(3091), - [anon_sym___clrcall] = ACTIONS(3091), - [anon_sym___stdcall] = ACTIONS(3091), - [anon_sym___fastcall] = ACTIONS(3091), - [anon_sym___thiscall] = ACTIONS(3091), - [anon_sym___vectorcall] = ACTIONS(3091), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_signed] = ACTIONS(3091), - [anon_sym_unsigned] = ACTIONS(3091), - [anon_sym_long] = ACTIONS(3091), - [anon_sym_short] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_register] = ACTIONS(3091), - [anon_sym_inline] = ACTIONS(3091), - [anon_sym___inline] = ACTIONS(3091), - [anon_sym___inline__] = ACTIONS(3091), - [anon_sym___forceinline] = ACTIONS(3091), - [anon_sym_thread_local] = ACTIONS(3091), - [anon_sym___thread] = ACTIONS(3091), - [anon_sym_const] = ACTIONS(3091), - [anon_sym_constexpr] = ACTIONS(3091), - [anon_sym_volatile] = ACTIONS(3091), - [anon_sym_restrict] = ACTIONS(3091), - [anon_sym___restrict__] = ACTIONS(3091), - [anon_sym__Atomic] = ACTIONS(3091), - [anon_sym__Noreturn] = ACTIONS(3091), - [anon_sym_noreturn] = ACTIONS(3091), - [anon_sym_mutable] = ACTIONS(3091), - [anon_sym_constinit] = ACTIONS(3091), - [anon_sym_consteval] = ACTIONS(3091), - [sym_primitive_type] = ACTIONS(3091), - [anon_sym_enum] = ACTIONS(3091), - [anon_sym_class] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(3091), - [anon_sym_union] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3091), - [anon_sym_switch] = ACTIONS(3091), - [anon_sym_case] = ACTIONS(3091), - [anon_sym_default] = ACTIONS(3091), - [anon_sym_while] = ACTIONS(3091), - [anon_sym_do] = ACTIONS(3091), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_break] = ACTIONS(3091), - [anon_sym_continue] = ACTIONS(3091), - [anon_sym_goto] = ACTIONS(3091), - [anon_sym_not] = ACTIONS(3091), - [anon_sym_compl] = ACTIONS(3091), - [anon_sym_DASH_DASH] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3093), - [anon_sym_sizeof] = ACTIONS(3091), - [anon_sym___alignof__] = ACTIONS(3091), - [anon_sym___alignof] = ACTIONS(3091), - [anon_sym__alignof] = ACTIONS(3091), - [anon_sym_alignof] = ACTIONS(3091), - [anon_sym__Alignof] = ACTIONS(3091), - [anon_sym_offsetof] = ACTIONS(3091), - [anon_sym__Generic] = ACTIONS(3091), - [anon_sym_asm] = ACTIONS(3091), - [anon_sym___asm__] = ACTIONS(3091), - [sym_number_literal] = ACTIONS(3093), - [anon_sym_L_SQUOTE] = ACTIONS(3093), - [anon_sym_u_SQUOTE] = ACTIONS(3093), - [anon_sym_U_SQUOTE] = ACTIONS(3093), - [anon_sym_u8_SQUOTE] = ACTIONS(3093), - [anon_sym_SQUOTE] = ACTIONS(3093), - [anon_sym_L_DQUOTE] = ACTIONS(3093), - [anon_sym_u_DQUOTE] = ACTIONS(3093), - [anon_sym_U_DQUOTE] = ACTIONS(3093), - [anon_sym_u8_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [sym_true] = ACTIONS(3091), - [sym_false] = ACTIONS(3091), - [anon_sym_NULL] = ACTIONS(3091), - [anon_sym_nullptr] = ACTIONS(3091), + [781] = { + [sym_identifier] = ACTIONS(3083), + [aux_sym_preproc_include_token1] = ACTIONS(3083), + [aux_sym_preproc_def_token1] = ACTIONS(3083), + [aux_sym_preproc_if_token1] = ACTIONS(3083), + [aux_sym_preproc_if_token2] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), + [sym_preproc_directive] = ACTIONS(3083), + [anon_sym_LPAREN2] = ACTIONS(3085), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(3083), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym___extension__] = ACTIONS(3083), + [anon_sym_typedef] = ACTIONS(3083), + [anon_sym_extern] = ACTIONS(3083), + [anon_sym___attribute__] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3085), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), + [anon_sym___declspec] = ACTIONS(3083), + [anon_sym___based] = ACTIONS(3083), + [anon_sym___cdecl] = ACTIONS(3083), + [anon_sym___clrcall] = ACTIONS(3083), + [anon_sym___stdcall] = ACTIONS(3083), + [anon_sym___fastcall] = ACTIONS(3083), + [anon_sym___thiscall] = ACTIONS(3083), + [anon_sym___vectorcall] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3083), + [anon_sym_unsigned] = ACTIONS(3083), + [anon_sym_long] = ACTIONS(3083), + [anon_sym_short] = ACTIONS(3083), + [anon_sym_LBRACK] = ACTIONS(3083), + [anon_sym_static] = ACTIONS(3083), + [anon_sym_register] = ACTIONS(3083), + [anon_sym_inline] = ACTIONS(3083), + [anon_sym___inline] = ACTIONS(3083), + [anon_sym___inline__] = ACTIONS(3083), + [anon_sym___forceinline] = ACTIONS(3083), + [anon_sym_thread_local] = ACTIONS(3083), + [anon_sym___thread] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3083), + [anon_sym_constexpr] = ACTIONS(3083), + [anon_sym_volatile] = ACTIONS(3083), + [anon_sym_restrict] = ACTIONS(3083), + [anon_sym___restrict__] = ACTIONS(3083), + [anon_sym__Atomic] = ACTIONS(3083), + [anon_sym__Noreturn] = ACTIONS(3083), + [anon_sym_noreturn] = ACTIONS(3083), + [anon_sym_mutable] = ACTIONS(3083), + [anon_sym_constinit] = ACTIONS(3083), + [anon_sym_consteval] = ACTIONS(3083), + [sym_primitive_type] = ACTIONS(3083), + [anon_sym_enum] = ACTIONS(3083), + [anon_sym_class] = ACTIONS(3083), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_switch] = ACTIONS(3083), + [anon_sym_case] = ACTIONS(3083), + [anon_sym_default] = ACTIONS(3083), + [anon_sym_while] = ACTIONS(3083), + [anon_sym_do] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3083), + [anon_sym_return] = ACTIONS(3083), + [anon_sym_break] = ACTIONS(3083), + [anon_sym_continue] = ACTIONS(3083), + [anon_sym_goto] = ACTIONS(3083), + [anon_sym_not] = ACTIONS(3083), + [anon_sym_compl] = ACTIONS(3083), + [anon_sym_DASH_DASH] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_sizeof] = ACTIONS(3083), + [anon_sym___alignof__] = ACTIONS(3083), + [anon_sym___alignof] = ACTIONS(3083), + [anon_sym__alignof] = ACTIONS(3083), + [anon_sym_alignof] = ACTIONS(3083), + [anon_sym__Alignof] = ACTIONS(3083), + [anon_sym_offsetof] = ACTIONS(3083), + [anon_sym__Generic] = ACTIONS(3083), + [anon_sym_asm] = ACTIONS(3083), + [anon_sym___asm__] = ACTIONS(3083), + [sym_number_literal] = ACTIONS(3085), + [anon_sym_L_SQUOTE] = ACTIONS(3085), + [anon_sym_u_SQUOTE] = ACTIONS(3085), + [anon_sym_U_SQUOTE] = ACTIONS(3085), + [anon_sym_u8_SQUOTE] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(3085), + [anon_sym_L_DQUOTE] = ACTIONS(3085), + [anon_sym_u_DQUOTE] = ACTIONS(3085), + [anon_sym_U_DQUOTE] = ACTIONS(3085), + [anon_sym_u8_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [sym_true] = ACTIONS(3083), + [sym_false] = ACTIONS(3083), + [anon_sym_NULL] = ACTIONS(3083), + [anon_sym_nullptr] = ACTIONS(3083), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3091), - [anon_sym_decltype] = ACTIONS(3091), - [anon_sym_virtual] = ACTIONS(3091), - [anon_sym_alignas] = ACTIONS(3091), - [anon_sym_explicit] = ACTIONS(3091), - [anon_sym_typename] = ACTIONS(3091), - [anon_sym_template] = ACTIONS(3091), - [anon_sym_operator] = ACTIONS(3091), - [anon_sym_try] = ACTIONS(3091), - [anon_sym_delete] = ACTIONS(3091), - [anon_sym_throw] = ACTIONS(3091), - [anon_sym_namespace] = ACTIONS(3091), - [anon_sym_using] = ACTIONS(3091), - [anon_sym_static_assert] = ACTIONS(3091), - [anon_sym_concept] = ACTIONS(3091), - [anon_sym_co_return] = ACTIONS(3091), - [anon_sym_co_yield] = ACTIONS(3091), - [anon_sym_R_DQUOTE] = ACTIONS(3093), - [anon_sym_LR_DQUOTE] = ACTIONS(3093), - [anon_sym_uR_DQUOTE] = ACTIONS(3093), - [anon_sym_UR_DQUOTE] = ACTIONS(3093), - [anon_sym_u8R_DQUOTE] = ACTIONS(3093), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3091), - [anon_sym_requires] = ACTIONS(3091), - [sym_this] = ACTIONS(3091), + [sym_auto] = ACTIONS(3083), + [anon_sym_decltype] = ACTIONS(3083), + [anon_sym_virtual] = ACTIONS(3083), + [anon_sym_alignas] = ACTIONS(3083), + [anon_sym_explicit] = ACTIONS(3083), + [anon_sym_typename] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3083), + [anon_sym_operator] = ACTIONS(3083), + [anon_sym_try] = ACTIONS(3083), + [anon_sym_delete] = ACTIONS(3083), + [anon_sym_throw] = ACTIONS(3083), + [anon_sym_namespace] = ACTIONS(3083), + [anon_sym_using] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3083), + [anon_sym_concept] = ACTIONS(3083), + [anon_sym_co_return] = ACTIONS(3083), + [anon_sym_co_yield] = ACTIONS(3083), + [anon_sym_R_DQUOTE] = ACTIONS(3085), + [anon_sym_LR_DQUOTE] = ACTIONS(3085), + [anon_sym_uR_DQUOTE] = ACTIONS(3085), + [anon_sym_UR_DQUOTE] = ACTIONS(3085), + [anon_sym_u8R_DQUOTE] = ACTIONS(3085), + [anon_sym_co_await] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_requires] = ACTIONS(3083), + [sym_this] = ACTIONS(3083), }, - [760] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [782] = { + [sym_identifier] = ACTIONS(3079), + [aux_sym_preproc_include_token1] = ACTIONS(3079), + [aux_sym_preproc_def_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token2] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), + [sym_preproc_directive] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym___extension__] = ACTIONS(3079), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym___based] = ACTIONS(3079), + [anon_sym___cdecl] = ACTIONS(3079), + [anon_sym___clrcall] = ACTIONS(3079), + [anon_sym___stdcall] = ACTIONS(3079), + [anon_sym___fastcall] = ACTIONS(3079), + [anon_sym___thiscall] = ACTIONS(3079), + [anon_sym___vectorcall] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym___inline] = ACTIONS(3079), + [anon_sym___inline__] = ACTIONS(3079), + [anon_sym___forceinline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym___thread] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3079), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_goto] = ACTIONS(3079), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_compl] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3079), + [anon_sym___alignof__] = ACTIONS(3079), + [anon_sym___alignof] = ACTIONS(3079), + [anon_sym__alignof] = ACTIONS(3079), + [anon_sym_alignof] = ACTIONS(3079), + [anon_sym__Alignof] = ACTIONS(3079), + [anon_sym_offsetof] = ACTIONS(3079), + [anon_sym__Generic] = ACTIONS(3079), + [anon_sym_asm] = ACTIONS(3079), + [anon_sym___asm__] = ACTIONS(3079), + [sym_number_literal] = ACTIONS(3081), + [anon_sym_L_SQUOTE] = ACTIONS(3081), + [anon_sym_u_SQUOTE] = ACTIONS(3081), + [anon_sym_U_SQUOTE] = ACTIONS(3081), + [anon_sym_u8_SQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_L_DQUOTE] = ACTIONS(3081), + [anon_sym_u_DQUOTE] = ACTIONS(3081), + [anon_sym_U_DQUOTE] = ACTIONS(3081), + [anon_sym_u8_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [anon_sym_NULL] = ACTIONS(3079), + [anon_sym_nullptr] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_alignas] = ACTIONS(3079), + [anon_sym_explicit] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_static_assert] = ACTIONS(3079), + [anon_sym_concept] = ACTIONS(3079), + [anon_sym_co_return] = ACTIONS(3079), + [anon_sym_co_yield] = ACTIONS(3079), + [anon_sym_R_DQUOTE] = ACTIONS(3081), + [anon_sym_LR_DQUOTE] = ACTIONS(3081), + [anon_sym_uR_DQUOTE] = ACTIONS(3081), + [anon_sym_UR_DQUOTE] = ACTIONS(3081), + [anon_sym_u8R_DQUOTE] = ACTIONS(3081), + [anon_sym_co_await] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_requires] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), + }, + [783] = { + [sym_identifier] = ACTIONS(3172), + [aux_sym_preproc_include_token1] = ACTIONS(3172), + [aux_sym_preproc_def_token1] = ACTIONS(3172), + [aux_sym_preproc_if_token1] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3172), + [sym_preproc_directive] = ACTIONS(3172), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3172), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_SEMI] = ACTIONS(3174), + [anon_sym___extension__] = ACTIONS(3172), + [anon_sym_typedef] = ACTIONS(3172), + [anon_sym_extern] = ACTIONS(3172), + [anon_sym___attribute__] = ACTIONS(3172), + [anon_sym_COLON_COLON] = ACTIONS(3174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3174), + [anon_sym___declspec] = ACTIONS(3172), + [anon_sym___based] = ACTIONS(3172), + [anon_sym___cdecl] = ACTIONS(3172), + [anon_sym___clrcall] = ACTIONS(3172), + [anon_sym___stdcall] = ACTIONS(3172), + [anon_sym___fastcall] = ACTIONS(3172), + [anon_sym___thiscall] = ACTIONS(3172), + [anon_sym___vectorcall] = ACTIONS(3172), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_RBRACE] = ACTIONS(3174), + [anon_sym_signed] = ACTIONS(3172), + [anon_sym_unsigned] = ACTIONS(3172), + [anon_sym_long] = ACTIONS(3172), + [anon_sym_short] = ACTIONS(3172), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3172), + [anon_sym_register] = ACTIONS(3172), + [anon_sym_inline] = ACTIONS(3172), + [anon_sym___inline] = ACTIONS(3172), + [anon_sym___inline__] = ACTIONS(3172), + [anon_sym___forceinline] = ACTIONS(3172), + [anon_sym_thread_local] = ACTIONS(3172), + [anon_sym___thread] = ACTIONS(3172), + [anon_sym_const] = ACTIONS(3172), + [anon_sym_constexpr] = ACTIONS(3172), + [anon_sym_volatile] = ACTIONS(3172), + [anon_sym_restrict] = ACTIONS(3172), + [anon_sym___restrict__] = ACTIONS(3172), + [anon_sym__Atomic] = ACTIONS(3172), + [anon_sym__Noreturn] = ACTIONS(3172), + [anon_sym_noreturn] = ACTIONS(3172), + [anon_sym_mutable] = ACTIONS(3172), + [anon_sym_constinit] = ACTIONS(3172), + [anon_sym_consteval] = ACTIONS(3172), + [sym_primitive_type] = ACTIONS(3172), + [anon_sym_enum] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3172), + [anon_sym_union] = ACTIONS(3172), + [anon_sym_if] = ACTIONS(3172), + [anon_sym_switch] = ACTIONS(3172), + [anon_sym_case] = ACTIONS(3172), + [anon_sym_default] = ACTIONS(3172), + [anon_sym_while] = ACTIONS(3172), + [anon_sym_do] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_return] = ACTIONS(3172), + [anon_sym_break] = ACTIONS(3172), + [anon_sym_continue] = ACTIONS(3172), + [anon_sym_goto] = ACTIONS(3172), + [anon_sym_not] = ACTIONS(3172), + [anon_sym_compl] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_sizeof] = ACTIONS(3172), + [anon_sym___alignof__] = ACTIONS(3172), + [anon_sym___alignof] = ACTIONS(3172), + [anon_sym__alignof] = ACTIONS(3172), + [anon_sym_alignof] = ACTIONS(3172), + [anon_sym__Alignof] = ACTIONS(3172), + [anon_sym_offsetof] = ACTIONS(3172), + [anon_sym__Generic] = ACTIONS(3172), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3174), + [anon_sym_u_SQUOTE] = ACTIONS(3174), + [anon_sym_U_SQUOTE] = ACTIONS(3174), + [anon_sym_u8_SQUOTE] = ACTIONS(3174), + [anon_sym_SQUOTE] = ACTIONS(3174), + [anon_sym_L_DQUOTE] = ACTIONS(3174), + [anon_sym_u_DQUOTE] = ACTIONS(3174), + [anon_sym_U_DQUOTE] = ACTIONS(3174), + [anon_sym_u8_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3172), + [anon_sym_nullptr] = ACTIONS(3172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3172), + [anon_sym_decltype] = ACTIONS(3172), + [anon_sym_virtual] = ACTIONS(3172), + [anon_sym_alignas] = ACTIONS(3172), + [anon_sym_explicit] = ACTIONS(3172), + [anon_sym_typename] = ACTIONS(3172), + [anon_sym_template] = ACTIONS(3172), + [anon_sym_operator] = ACTIONS(3172), + [anon_sym_try] = ACTIONS(3172), + [anon_sym_delete] = ACTIONS(3172), + [anon_sym_throw] = ACTIONS(3172), + [anon_sym_namespace] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3172), + [anon_sym_static_assert] = ACTIONS(3172), + [anon_sym_concept] = ACTIONS(3172), + [anon_sym_co_return] = ACTIONS(3172), + [anon_sym_co_yield] = ACTIONS(3172), + [anon_sym_R_DQUOTE] = ACTIONS(3174), + [anon_sym_LR_DQUOTE] = ACTIONS(3174), + [anon_sym_uR_DQUOTE] = ACTIONS(3174), + [anon_sym_UR_DQUOTE] = ACTIONS(3174), + [anon_sym_u8R_DQUOTE] = ACTIONS(3174), + [anon_sym_co_await] = ACTIONS(3172), + [anon_sym_new] = ACTIONS(3172), + [anon_sym_requires] = ACTIONS(3172), + [sym_this] = ACTIONS(3172), + }, + [784] = { + [sym_identifier] = ACTIONS(3176), + [aux_sym_preproc_include_token1] = ACTIONS(3176), + [aux_sym_preproc_def_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), + [sym_preproc_directive] = ACTIONS(3176), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym___extension__] = ACTIONS(3176), + [anon_sym_typedef] = ACTIONS(3176), + [anon_sym_extern] = ACTIONS(3176), + [anon_sym___attribute__] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(3178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), + [anon_sym___declspec] = ACTIONS(3176), + [anon_sym___based] = ACTIONS(3176), + [anon_sym___cdecl] = ACTIONS(3176), + [anon_sym___clrcall] = ACTIONS(3176), + [anon_sym___stdcall] = ACTIONS(3176), + [anon_sym___fastcall] = ACTIONS(3176), + [anon_sym___thiscall] = ACTIONS(3176), + [anon_sym___vectorcall] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3178), + [anon_sym_signed] = ACTIONS(3176), + [anon_sym_unsigned] = ACTIONS(3176), + [anon_sym_long] = ACTIONS(3176), + [anon_sym_short] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_register] = ACTIONS(3176), + [anon_sym_inline] = ACTIONS(3176), + [anon_sym___inline] = ACTIONS(3176), + [anon_sym___inline__] = ACTIONS(3176), + [anon_sym___forceinline] = ACTIONS(3176), + [anon_sym_thread_local] = ACTIONS(3176), + [anon_sym___thread] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_constexpr] = ACTIONS(3176), + [anon_sym_volatile] = ACTIONS(3176), + [anon_sym_restrict] = ACTIONS(3176), + [anon_sym___restrict__] = ACTIONS(3176), + [anon_sym__Atomic] = ACTIONS(3176), + [anon_sym__Noreturn] = ACTIONS(3176), + [anon_sym_noreturn] = ACTIONS(3176), + [anon_sym_mutable] = ACTIONS(3176), + [anon_sym_constinit] = ACTIONS(3176), + [anon_sym_consteval] = ACTIONS(3176), + [sym_primitive_type] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_case] = ACTIONS(3176), + [anon_sym_default] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_goto] = ACTIONS(3176), + [anon_sym_not] = ACTIONS(3176), + [anon_sym_compl] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_sizeof] = ACTIONS(3176), + [anon_sym___alignof__] = ACTIONS(3176), + [anon_sym___alignof] = ACTIONS(3176), + [anon_sym__alignof] = ACTIONS(3176), + [anon_sym_alignof] = ACTIONS(3176), + [anon_sym__Alignof] = ACTIONS(3176), + [anon_sym_offsetof] = ACTIONS(3176), + [anon_sym__Generic] = ACTIONS(3176), + [anon_sym_asm] = ACTIONS(3176), + [anon_sym___asm__] = ACTIONS(3176), + [sym_number_literal] = ACTIONS(3178), + [anon_sym_L_SQUOTE] = ACTIONS(3178), + [anon_sym_u_SQUOTE] = ACTIONS(3178), + [anon_sym_U_SQUOTE] = ACTIONS(3178), + [anon_sym_u8_SQUOTE] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3178), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [anon_sym_NULL] = ACTIONS(3176), + [anon_sym_nullptr] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3176), + [anon_sym_virtual] = ACTIONS(3176), + [anon_sym_alignas] = ACTIONS(3176), + [anon_sym_explicit] = ACTIONS(3176), + [anon_sym_typename] = ACTIONS(3176), + [anon_sym_template] = ACTIONS(3176), + [anon_sym_operator] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_static_assert] = ACTIONS(3176), + [anon_sym_concept] = ACTIONS(3176), + [anon_sym_co_return] = ACTIONS(3176), + [anon_sym_co_yield] = ACTIONS(3176), + [anon_sym_R_DQUOTE] = ACTIONS(3178), + [anon_sym_LR_DQUOTE] = ACTIONS(3178), + [anon_sym_uR_DQUOTE] = ACTIONS(3178), + [anon_sym_UR_DQUOTE] = ACTIONS(3178), + [anon_sym_u8R_DQUOTE] = ACTIONS(3178), + [anon_sym_co_await] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_requires] = ACTIONS(3176), + [sym_this] = ACTIONS(3176), + }, + [785] = { + [sym_identifier] = ACTIONS(3180), + [aux_sym_preproc_include_token1] = ACTIONS(3180), + [aux_sym_preproc_def_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3180), + [sym_preproc_directive] = ACTIONS(3180), + [anon_sym_LPAREN2] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_PLUS] = ACTIONS(3180), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym___extension__] = ACTIONS(3180), + [anon_sym_typedef] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(3180), + [anon_sym___attribute__] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3182), + [anon_sym___declspec] = ACTIONS(3180), + [anon_sym___based] = ACTIONS(3180), + [anon_sym___cdecl] = ACTIONS(3180), + [anon_sym___clrcall] = ACTIONS(3180), + [anon_sym___stdcall] = ACTIONS(3180), + [anon_sym___fastcall] = ACTIONS(3180), + [anon_sym___thiscall] = ACTIONS(3180), + [anon_sym___vectorcall] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_signed] = ACTIONS(3180), + [anon_sym_unsigned] = ACTIONS(3180), + [anon_sym_long] = ACTIONS(3180), + [anon_sym_short] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_register] = ACTIONS(3180), + [anon_sym_inline] = ACTIONS(3180), + [anon_sym___inline] = ACTIONS(3180), + [anon_sym___inline__] = ACTIONS(3180), + [anon_sym___forceinline] = ACTIONS(3180), + [anon_sym_thread_local] = ACTIONS(3180), + [anon_sym___thread] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym___restrict__] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym__Noreturn] = ACTIONS(3180), + [anon_sym_noreturn] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3180), + [anon_sym_union] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3180), + [anon_sym_case] = ACTIONS(3180), + [anon_sym_default] = ACTIONS(3180), + [anon_sym_while] = ACTIONS(3180), + [anon_sym_do] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_break] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(3180), + [anon_sym_goto] = ACTIONS(3180), + [anon_sym_not] = ACTIONS(3180), + [anon_sym_compl] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_sizeof] = ACTIONS(3180), + [anon_sym___alignof__] = ACTIONS(3180), + [anon_sym___alignof] = ACTIONS(3180), + [anon_sym__alignof] = ACTIONS(3180), + [anon_sym_alignof] = ACTIONS(3180), + [anon_sym__Alignof] = ACTIONS(3180), + [anon_sym_offsetof] = ACTIONS(3180), + [anon_sym__Generic] = ACTIONS(3180), + [anon_sym_asm] = ACTIONS(3180), + [anon_sym___asm__] = ACTIONS(3180), + [sym_number_literal] = ACTIONS(3182), + [anon_sym_L_SQUOTE] = ACTIONS(3182), + [anon_sym_u_SQUOTE] = ACTIONS(3182), + [anon_sym_U_SQUOTE] = ACTIONS(3182), + [anon_sym_u8_SQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_L_DQUOTE] = ACTIONS(3182), + [anon_sym_u_DQUOTE] = ACTIONS(3182), + [anon_sym_U_DQUOTE] = ACTIONS(3182), + [anon_sym_u8_DQUOTE] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3180), + [anon_sym_nullptr] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3180), + [anon_sym_decltype] = ACTIONS(3180), + [anon_sym_virtual] = ACTIONS(3180), + [anon_sym_alignas] = ACTIONS(3180), + [anon_sym_explicit] = ACTIONS(3180), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(3180), + [anon_sym_operator] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3180), + [anon_sym_delete] = ACTIONS(3180), + [anon_sym_throw] = ACTIONS(3180), + [anon_sym_namespace] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_static_assert] = ACTIONS(3180), + [anon_sym_concept] = ACTIONS(3180), + [anon_sym_co_return] = ACTIONS(3180), + [anon_sym_co_yield] = ACTIONS(3180), + [anon_sym_R_DQUOTE] = ACTIONS(3182), + [anon_sym_LR_DQUOTE] = ACTIONS(3182), + [anon_sym_uR_DQUOTE] = ACTIONS(3182), + [anon_sym_UR_DQUOTE] = ACTIONS(3182), + [anon_sym_u8R_DQUOTE] = ACTIONS(3182), + [anon_sym_co_await] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3180), + [anon_sym_requires] = ACTIONS(3180), + [sym_this] = ACTIONS(3180), + }, + [786] = { + [sym_identifier] = ACTIONS(3184), + [aux_sym_preproc_include_token1] = ACTIONS(3184), + [aux_sym_preproc_def_token1] = ACTIONS(3184), + [aux_sym_preproc_if_token1] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym___extension__] = ACTIONS(3184), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym___attribute__] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3186), + [anon_sym___declspec] = ACTIONS(3184), + [anon_sym___based] = ACTIONS(3184), + [anon_sym___cdecl] = ACTIONS(3184), + [anon_sym___clrcall] = ACTIONS(3184), + [anon_sym___stdcall] = ACTIONS(3184), + [anon_sym___fastcall] = ACTIONS(3184), + [anon_sym___thiscall] = ACTIONS(3184), + [anon_sym___vectorcall] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_signed] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym___inline] = ACTIONS(3184), + [anon_sym___inline__] = ACTIONS(3184), + [anon_sym___forceinline] = ACTIONS(3184), + [anon_sym_thread_local] = ACTIONS(3184), + [anon_sym___thread] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym___restrict__] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym__Noreturn] = ACTIONS(3184), + [anon_sym_noreturn] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_constinit] = ACTIONS(3184), + [anon_sym_consteval] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_class] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3184), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_goto] = ACTIONS(3184), + [anon_sym_not] = ACTIONS(3184), + [anon_sym_compl] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_sizeof] = ACTIONS(3184), + [anon_sym___alignof__] = ACTIONS(3184), + [anon_sym___alignof] = ACTIONS(3184), + [anon_sym__alignof] = ACTIONS(3184), + [anon_sym_alignof] = ACTIONS(3184), + [anon_sym__Alignof] = ACTIONS(3184), + [anon_sym_offsetof] = ACTIONS(3184), + [anon_sym__Generic] = ACTIONS(3184), + [anon_sym_asm] = ACTIONS(3184), + [anon_sym___asm__] = ACTIONS(3184), + [sym_number_literal] = ACTIONS(3186), + [anon_sym_L_SQUOTE] = ACTIONS(3186), + [anon_sym_u_SQUOTE] = ACTIONS(3186), + [anon_sym_U_SQUOTE] = ACTIONS(3186), + [anon_sym_u8_SQUOTE] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_L_DQUOTE] = ACTIONS(3186), + [anon_sym_u_DQUOTE] = ACTIONS(3186), + [anon_sym_U_DQUOTE] = ACTIONS(3186), + [anon_sym_u8_DQUOTE] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [anon_sym_NULL] = ACTIONS(3184), + [anon_sym_nullptr] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3184), + [anon_sym_virtual] = ACTIONS(3184), + [anon_sym_alignas] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [anon_sym_template] = ACTIONS(3184), + [anon_sym_operator] = ACTIONS(3184), + [anon_sym_try] = ACTIONS(3184), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_throw] = ACTIONS(3184), + [anon_sym_namespace] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_static_assert] = ACTIONS(3184), + [anon_sym_concept] = ACTIONS(3184), + [anon_sym_co_return] = ACTIONS(3184), + [anon_sym_co_yield] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_requires] = ACTIONS(3184), + [sym_this] = ACTIONS(3184), + }, + [787] = { + [sym_identifier] = ACTIONS(3005), + [aux_sym_preproc_include_token1] = ACTIONS(3005), + [aux_sym_preproc_def_token1] = ACTIONS(3005), + [aux_sym_preproc_if_token1] = ACTIONS(3005), + [aux_sym_preproc_if_token2] = ACTIONS(3005), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3005), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3005), + [sym_preproc_directive] = ACTIONS(3005), + [anon_sym_LPAREN2] = ACTIONS(3007), + [anon_sym_BANG] = ACTIONS(3007), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3007), + [anon_sym_AMP_AMP] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_SEMI] = ACTIONS(3007), + [anon_sym___extension__] = ACTIONS(3005), + [anon_sym_typedef] = ACTIONS(3005), + [anon_sym_extern] = ACTIONS(3005), + [anon_sym___attribute__] = ACTIONS(3005), + [anon_sym_COLON_COLON] = ACTIONS(3007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3007), + [anon_sym___declspec] = ACTIONS(3005), + [anon_sym___based] = ACTIONS(3005), + [anon_sym___cdecl] = ACTIONS(3005), + [anon_sym___clrcall] = ACTIONS(3005), + [anon_sym___stdcall] = ACTIONS(3005), + [anon_sym___fastcall] = ACTIONS(3005), + [anon_sym___thiscall] = ACTIONS(3005), + [anon_sym___vectorcall] = ACTIONS(3005), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_signed] = ACTIONS(3005), + [anon_sym_unsigned] = ACTIONS(3005), + [anon_sym_long] = ACTIONS(3005), + [anon_sym_short] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_static] = ACTIONS(3005), + [anon_sym_register] = ACTIONS(3005), + [anon_sym_inline] = ACTIONS(3005), + [anon_sym___inline] = ACTIONS(3005), + [anon_sym___inline__] = ACTIONS(3005), + [anon_sym___forceinline] = ACTIONS(3005), + [anon_sym_thread_local] = ACTIONS(3005), + [anon_sym___thread] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3005), + [anon_sym_constexpr] = ACTIONS(3005), + [anon_sym_volatile] = ACTIONS(3005), + [anon_sym_restrict] = ACTIONS(3005), + [anon_sym___restrict__] = ACTIONS(3005), + [anon_sym__Atomic] = ACTIONS(3005), + [anon_sym__Noreturn] = ACTIONS(3005), + [anon_sym_noreturn] = ACTIONS(3005), + [anon_sym_mutable] = ACTIONS(3005), + [anon_sym_constinit] = ACTIONS(3005), + [anon_sym_consteval] = ACTIONS(3005), + [sym_primitive_type] = ACTIONS(3005), + [anon_sym_enum] = ACTIONS(3005), + [anon_sym_class] = ACTIONS(3005), + [anon_sym_struct] = ACTIONS(3005), + [anon_sym_union] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_switch] = ACTIONS(3005), + [anon_sym_case] = ACTIONS(3005), + [anon_sym_default] = ACTIONS(3005), + [anon_sym_while] = ACTIONS(3005), + [anon_sym_do] = ACTIONS(3005), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_break] = ACTIONS(3005), + [anon_sym_continue] = ACTIONS(3005), + [anon_sym_goto] = ACTIONS(3005), + [anon_sym_not] = ACTIONS(3005), + [anon_sym_compl] = ACTIONS(3005), + [anon_sym_DASH_DASH] = ACTIONS(3007), + [anon_sym_PLUS_PLUS] = ACTIONS(3007), + [anon_sym_sizeof] = ACTIONS(3005), + [anon_sym___alignof__] = ACTIONS(3005), + [anon_sym___alignof] = ACTIONS(3005), + [anon_sym__alignof] = ACTIONS(3005), + [anon_sym_alignof] = ACTIONS(3005), + [anon_sym__Alignof] = ACTIONS(3005), + [anon_sym_offsetof] = ACTIONS(3005), + [anon_sym__Generic] = ACTIONS(3005), + [anon_sym_asm] = ACTIONS(3005), + [anon_sym___asm__] = ACTIONS(3005), + [sym_number_literal] = ACTIONS(3007), + [anon_sym_L_SQUOTE] = ACTIONS(3007), + [anon_sym_u_SQUOTE] = ACTIONS(3007), + [anon_sym_U_SQUOTE] = ACTIONS(3007), + [anon_sym_u8_SQUOTE] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3005), + [sym_false] = ACTIONS(3005), + [anon_sym_NULL] = ACTIONS(3005), + [anon_sym_nullptr] = ACTIONS(3005), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3005), + [anon_sym_decltype] = ACTIONS(3005), + [anon_sym_virtual] = ACTIONS(3005), + [anon_sym_alignas] = ACTIONS(3005), + [anon_sym_explicit] = ACTIONS(3005), + [anon_sym_typename] = ACTIONS(3005), + [anon_sym_template] = ACTIONS(3005), + [anon_sym_operator] = ACTIONS(3005), + [anon_sym_try] = ACTIONS(3005), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_throw] = ACTIONS(3005), + [anon_sym_namespace] = ACTIONS(3005), + [anon_sym_using] = ACTIONS(3005), + [anon_sym_static_assert] = ACTIONS(3005), + [anon_sym_concept] = ACTIONS(3005), + [anon_sym_co_return] = ACTIONS(3005), + [anon_sym_co_yield] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(3007), + [anon_sym_LR_DQUOTE] = ACTIONS(3007), + [anon_sym_uR_DQUOTE] = ACTIONS(3007), + [anon_sym_UR_DQUOTE] = ACTIONS(3007), + [anon_sym_u8R_DQUOTE] = ACTIONS(3007), + [anon_sym_co_await] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3005), + [anon_sym_requires] = ACTIONS(3005), + [sym_this] = ACTIONS(3005), + }, + [788] = { + [sym_identifier] = ACTIONS(3001), + [aux_sym_preproc_include_token1] = ACTIONS(3001), + [aux_sym_preproc_def_token1] = ACTIONS(3001), + [aux_sym_preproc_if_token1] = ACTIONS(3001), + [aux_sym_preproc_if_token2] = ACTIONS(3001), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3001), + [anon_sym_LPAREN2] = ACTIONS(3003), + [anon_sym_BANG] = ACTIONS(3003), + [anon_sym_TILDE] = ACTIONS(3003), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3003), + [anon_sym_AMP_AMP] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_SEMI] = ACTIONS(3003), + [anon_sym___extension__] = ACTIONS(3001), + [anon_sym_typedef] = ACTIONS(3001), + [anon_sym_extern] = ACTIONS(3001), + [anon_sym___attribute__] = ACTIONS(3001), + [anon_sym_COLON_COLON] = ACTIONS(3003), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3003), + [anon_sym___declspec] = ACTIONS(3001), + [anon_sym___based] = ACTIONS(3001), + [anon_sym___cdecl] = ACTIONS(3001), + [anon_sym___clrcall] = ACTIONS(3001), + [anon_sym___stdcall] = ACTIONS(3001), + [anon_sym___fastcall] = ACTIONS(3001), + [anon_sym___thiscall] = ACTIONS(3001), + [anon_sym___vectorcall] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_signed] = ACTIONS(3001), + [anon_sym_unsigned] = ACTIONS(3001), + [anon_sym_long] = ACTIONS(3001), + [anon_sym_short] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_static] = ACTIONS(3001), + [anon_sym_register] = ACTIONS(3001), + [anon_sym_inline] = ACTIONS(3001), + [anon_sym___inline] = ACTIONS(3001), + [anon_sym___inline__] = ACTIONS(3001), + [anon_sym___forceinline] = ACTIONS(3001), + [anon_sym_thread_local] = ACTIONS(3001), + [anon_sym___thread] = ACTIONS(3001), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_constexpr] = ACTIONS(3001), + [anon_sym_volatile] = ACTIONS(3001), + [anon_sym_restrict] = ACTIONS(3001), + [anon_sym___restrict__] = ACTIONS(3001), + [anon_sym__Atomic] = ACTIONS(3001), + [anon_sym__Noreturn] = ACTIONS(3001), + [anon_sym_noreturn] = ACTIONS(3001), + [anon_sym_mutable] = ACTIONS(3001), + [anon_sym_constinit] = ACTIONS(3001), + [anon_sym_consteval] = ACTIONS(3001), + [sym_primitive_type] = ACTIONS(3001), + [anon_sym_enum] = ACTIONS(3001), + [anon_sym_class] = ACTIONS(3001), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_union] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_switch] = ACTIONS(3001), + [anon_sym_case] = ACTIONS(3001), + [anon_sym_default] = ACTIONS(3001), + [anon_sym_while] = ACTIONS(3001), + [anon_sym_do] = ACTIONS(3001), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_break] = ACTIONS(3001), + [anon_sym_continue] = ACTIONS(3001), + [anon_sym_goto] = ACTIONS(3001), + [anon_sym_not] = ACTIONS(3001), + [anon_sym_compl] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3003), + [anon_sym_PLUS_PLUS] = ACTIONS(3003), + [anon_sym_sizeof] = ACTIONS(3001), + [anon_sym___alignof__] = ACTIONS(3001), + [anon_sym___alignof] = ACTIONS(3001), + [anon_sym__alignof] = ACTIONS(3001), + [anon_sym_alignof] = ACTIONS(3001), + [anon_sym__Alignof] = ACTIONS(3001), + [anon_sym_offsetof] = ACTIONS(3001), + [anon_sym__Generic] = ACTIONS(3001), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3003), + [anon_sym_u_SQUOTE] = ACTIONS(3003), + [anon_sym_U_SQUOTE] = ACTIONS(3003), + [anon_sym_u8_SQUOTE] = ACTIONS(3003), + [anon_sym_SQUOTE] = ACTIONS(3003), + [anon_sym_L_DQUOTE] = ACTIONS(3003), + [anon_sym_u_DQUOTE] = ACTIONS(3003), + [anon_sym_U_DQUOTE] = ACTIONS(3003), + [anon_sym_u8_DQUOTE] = ACTIONS(3003), + [anon_sym_DQUOTE] = ACTIONS(3003), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [anon_sym_NULL] = ACTIONS(3001), + [anon_sym_nullptr] = ACTIONS(3001), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3001), + [anon_sym_decltype] = ACTIONS(3001), + [anon_sym_virtual] = ACTIONS(3001), + [anon_sym_alignas] = ACTIONS(3001), + [anon_sym_explicit] = ACTIONS(3001), + [anon_sym_typename] = ACTIONS(3001), + [anon_sym_template] = ACTIONS(3001), + [anon_sym_operator] = ACTIONS(3001), + [anon_sym_try] = ACTIONS(3001), + [anon_sym_delete] = ACTIONS(3001), + [anon_sym_throw] = ACTIONS(3001), + [anon_sym_namespace] = ACTIONS(3001), + [anon_sym_using] = ACTIONS(3001), + [anon_sym_static_assert] = ACTIONS(3001), + [anon_sym_concept] = ACTIONS(3001), + [anon_sym_co_return] = ACTIONS(3001), + [anon_sym_co_yield] = ACTIONS(3001), + [anon_sym_R_DQUOTE] = ACTIONS(3003), + [anon_sym_LR_DQUOTE] = ACTIONS(3003), + [anon_sym_uR_DQUOTE] = ACTIONS(3003), + [anon_sym_UR_DQUOTE] = ACTIONS(3003), + [anon_sym_u8R_DQUOTE] = ACTIONS(3003), + [anon_sym_co_await] = ACTIONS(3001), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_requires] = ACTIONS(3001), + [sym_this] = ACTIONS(3001), + }, + [789] = { + [sym_identifier] = ACTIONS(3192), + [aux_sym_preproc_include_token1] = ACTIONS(3192), + [aux_sym_preproc_def_token1] = ACTIONS(3192), + [aux_sym_preproc_if_token1] = ACTIONS(3192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3192), + [sym_preproc_directive] = ACTIONS(3192), + [anon_sym_LPAREN2] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3192), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3192), + [anon_sym_typedef] = ACTIONS(3192), + [anon_sym_extern] = ACTIONS(3192), + [anon_sym___attribute__] = ACTIONS(3192), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3194), + [anon_sym___declspec] = ACTIONS(3192), + [anon_sym___based] = ACTIONS(3192), + [anon_sym___cdecl] = ACTIONS(3192), + [anon_sym___clrcall] = ACTIONS(3192), + [anon_sym___stdcall] = ACTIONS(3192), + [anon_sym___fastcall] = ACTIONS(3192), + [anon_sym___thiscall] = ACTIONS(3192), + [anon_sym___vectorcall] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_signed] = ACTIONS(3192), + [anon_sym_unsigned] = ACTIONS(3192), + [anon_sym_long] = ACTIONS(3192), + [anon_sym_short] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3192), + [anon_sym_register] = ACTIONS(3192), + [anon_sym_inline] = ACTIONS(3192), + [anon_sym___inline] = ACTIONS(3192), + [anon_sym___inline__] = ACTIONS(3192), + [anon_sym___forceinline] = ACTIONS(3192), + [anon_sym_thread_local] = ACTIONS(3192), + [anon_sym___thread] = ACTIONS(3192), + [anon_sym_const] = ACTIONS(3192), + [anon_sym_constexpr] = ACTIONS(3192), + [anon_sym_volatile] = ACTIONS(3192), + [anon_sym_restrict] = ACTIONS(3192), + [anon_sym___restrict__] = ACTIONS(3192), + [anon_sym__Atomic] = ACTIONS(3192), + [anon_sym__Noreturn] = ACTIONS(3192), + [anon_sym_noreturn] = ACTIONS(3192), + [anon_sym_mutable] = ACTIONS(3192), + [anon_sym_constinit] = ACTIONS(3192), + [anon_sym_consteval] = ACTIONS(3192), + [sym_primitive_type] = ACTIONS(3192), + [anon_sym_enum] = ACTIONS(3192), + [anon_sym_class] = ACTIONS(3192), + [anon_sym_struct] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3192), + [anon_sym_if] = ACTIONS(3192), + [anon_sym_switch] = ACTIONS(3192), + [anon_sym_case] = ACTIONS(3192), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_while] = ACTIONS(3192), + [anon_sym_do] = ACTIONS(3192), + [anon_sym_for] = ACTIONS(3192), + [anon_sym_return] = ACTIONS(3192), + [anon_sym_break] = ACTIONS(3192), + [anon_sym_continue] = ACTIONS(3192), + [anon_sym_goto] = ACTIONS(3192), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_sizeof] = ACTIONS(3192), + [anon_sym___alignof__] = ACTIONS(3192), + [anon_sym___alignof] = ACTIONS(3192), + [anon_sym__alignof] = ACTIONS(3192), + [anon_sym_alignof] = ACTIONS(3192), + [anon_sym__Alignof] = ACTIONS(3192), + [anon_sym_offsetof] = ACTIONS(3192), + [anon_sym__Generic] = ACTIONS(3192), + [anon_sym_asm] = ACTIONS(3192), + [anon_sym___asm__] = ACTIONS(3192), + [sym_number_literal] = ACTIONS(3194), + [anon_sym_L_SQUOTE] = ACTIONS(3194), + [anon_sym_u_SQUOTE] = ACTIONS(3194), + [anon_sym_U_SQUOTE] = ACTIONS(3194), + [anon_sym_u8_SQUOTE] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3194), + [anon_sym_L_DQUOTE] = ACTIONS(3194), + [anon_sym_u_DQUOTE] = ACTIONS(3194), + [anon_sym_U_DQUOTE] = ACTIONS(3194), + [anon_sym_u8_DQUOTE] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(3194), + [sym_true] = ACTIONS(3192), + [sym_false] = ACTIONS(3192), + [anon_sym_NULL] = ACTIONS(3192), + [anon_sym_nullptr] = ACTIONS(3192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3192), + [anon_sym_decltype] = ACTIONS(3192), + [anon_sym_virtual] = ACTIONS(3192), + [anon_sym_alignas] = ACTIONS(3192), + [anon_sym_explicit] = ACTIONS(3192), + [anon_sym_typename] = ACTIONS(3192), + [anon_sym_template] = ACTIONS(3192), + [anon_sym_operator] = ACTIONS(3192), + [anon_sym_try] = ACTIONS(3192), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_throw] = ACTIONS(3192), + [anon_sym_namespace] = ACTIONS(3192), + [anon_sym_using] = ACTIONS(3192), + [anon_sym_static_assert] = ACTIONS(3192), + [anon_sym_concept] = ACTIONS(3192), + [anon_sym_co_return] = ACTIONS(3192), + [anon_sym_co_yield] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3192), + [anon_sym_new] = ACTIONS(3192), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3192), + }, + [790] = { + [sym_identifier] = ACTIONS(3172), + [aux_sym_preproc_include_token1] = ACTIONS(3172), + [aux_sym_preproc_def_token1] = ACTIONS(3172), + [aux_sym_preproc_if_token1] = ACTIONS(3172), + [aux_sym_preproc_if_token2] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3172), + [sym_preproc_directive] = ACTIONS(3172), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3172), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_SEMI] = ACTIONS(3174), + [anon_sym___extension__] = ACTIONS(3172), + [anon_sym_typedef] = ACTIONS(3172), + [anon_sym_extern] = ACTIONS(3172), + [anon_sym___attribute__] = ACTIONS(3172), + [anon_sym_COLON_COLON] = ACTIONS(3174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3174), + [anon_sym___declspec] = ACTIONS(3172), + [anon_sym___based] = ACTIONS(3172), + [anon_sym___cdecl] = ACTIONS(3172), + [anon_sym___clrcall] = ACTIONS(3172), + [anon_sym___stdcall] = ACTIONS(3172), + [anon_sym___fastcall] = ACTIONS(3172), + [anon_sym___thiscall] = ACTIONS(3172), + [anon_sym___vectorcall] = ACTIONS(3172), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_signed] = ACTIONS(3172), + [anon_sym_unsigned] = ACTIONS(3172), + [anon_sym_long] = ACTIONS(3172), + [anon_sym_short] = ACTIONS(3172), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3172), + [anon_sym_register] = ACTIONS(3172), + [anon_sym_inline] = ACTIONS(3172), + [anon_sym___inline] = ACTIONS(3172), + [anon_sym___inline__] = ACTIONS(3172), + [anon_sym___forceinline] = ACTIONS(3172), + [anon_sym_thread_local] = ACTIONS(3172), + [anon_sym___thread] = ACTIONS(3172), + [anon_sym_const] = ACTIONS(3172), + [anon_sym_constexpr] = ACTIONS(3172), + [anon_sym_volatile] = ACTIONS(3172), + [anon_sym_restrict] = ACTIONS(3172), + [anon_sym___restrict__] = ACTIONS(3172), + [anon_sym__Atomic] = ACTIONS(3172), + [anon_sym__Noreturn] = ACTIONS(3172), + [anon_sym_noreturn] = ACTIONS(3172), + [anon_sym_mutable] = ACTIONS(3172), + [anon_sym_constinit] = ACTIONS(3172), + [anon_sym_consteval] = ACTIONS(3172), + [sym_primitive_type] = ACTIONS(3172), + [anon_sym_enum] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3172), + [anon_sym_union] = ACTIONS(3172), + [anon_sym_if] = ACTIONS(3172), + [anon_sym_switch] = ACTIONS(3172), + [anon_sym_case] = ACTIONS(3172), + [anon_sym_default] = ACTIONS(3172), + [anon_sym_while] = ACTIONS(3172), + [anon_sym_do] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_return] = ACTIONS(3172), + [anon_sym_break] = ACTIONS(3172), + [anon_sym_continue] = ACTIONS(3172), + [anon_sym_goto] = ACTIONS(3172), + [anon_sym_not] = ACTIONS(3172), + [anon_sym_compl] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_sizeof] = ACTIONS(3172), + [anon_sym___alignof__] = ACTIONS(3172), + [anon_sym___alignof] = ACTIONS(3172), + [anon_sym__alignof] = ACTIONS(3172), + [anon_sym_alignof] = ACTIONS(3172), + [anon_sym__Alignof] = ACTIONS(3172), + [anon_sym_offsetof] = ACTIONS(3172), + [anon_sym__Generic] = ACTIONS(3172), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3174), + [anon_sym_u_SQUOTE] = ACTIONS(3174), + [anon_sym_U_SQUOTE] = ACTIONS(3174), + [anon_sym_u8_SQUOTE] = ACTIONS(3174), + [anon_sym_SQUOTE] = ACTIONS(3174), + [anon_sym_L_DQUOTE] = ACTIONS(3174), + [anon_sym_u_DQUOTE] = ACTIONS(3174), + [anon_sym_U_DQUOTE] = ACTIONS(3174), + [anon_sym_u8_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3172), + [anon_sym_nullptr] = ACTIONS(3172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3172), + [anon_sym_decltype] = ACTIONS(3172), + [anon_sym_virtual] = ACTIONS(3172), + [anon_sym_alignas] = ACTIONS(3172), + [anon_sym_explicit] = ACTIONS(3172), + [anon_sym_typename] = ACTIONS(3172), + [anon_sym_template] = ACTIONS(3172), + [anon_sym_operator] = ACTIONS(3172), + [anon_sym_try] = ACTIONS(3172), + [anon_sym_delete] = ACTIONS(3172), + [anon_sym_throw] = ACTIONS(3172), + [anon_sym_namespace] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3172), + [anon_sym_static_assert] = ACTIONS(3172), + [anon_sym_concept] = ACTIONS(3172), + [anon_sym_co_return] = ACTIONS(3172), + [anon_sym_co_yield] = ACTIONS(3172), + [anon_sym_R_DQUOTE] = ACTIONS(3174), + [anon_sym_LR_DQUOTE] = ACTIONS(3174), + [anon_sym_uR_DQUOTE] = ACTIONS(3174), + [anon_sym_UR_DQUOTE] = ACTIONS(3174), + [anon_sym_u8R_DQUOTE] = ACTIONS(3174), + [anon_sym_co_await] = ACTIONS(3172), + [anon_sym_new] = ACTIONS(3172), + [anon_sym_requires] = ACTIONS(3172), + [sym_this] = ACTIONS(3172), + }, + [791] = { + [sym_identifier] = ACTIONS(3180), + [aux_sym_preproc_include_token1] = ACTIONS(3180), + [aux_sym_preproc_def_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token2] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3180), + [sym_preproc_directive] = ACTIONS(3180), + [anon_sym_LPAREN2] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_PLUS] = ACTIONS(3180), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym___extension__] = ACTIONS(3180), + [anon_sym_typedef] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(3180), + [anon_sym___attribute__] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3182), + [anon_sym___declspec] = ACTIONS(3180), + [anon_sym___based] = ACTIONS(3180), + [anon_sym___cdecl] = ACTIONS(3180), + [anon_sym___clrcall] = ACTIONS(3180), + [anon_sym___stdcall] = ACTIONS(3180), + [anon_sym___fastcall] = ACTIONS(3180), + [anon_sym___thiscall] = ACTIONS(3180), + [anon_sym___vectorcall] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_signed] = ACTIONS(3180), + [anon_sym_unsigned] = ACTIONS(3180), + [anon_sym_long] = ACTIONS(3180), + [anon_sym_short] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_register] = ACTIONS(3180), + [anon_sym_inline] = ACTIONS(3180), + [anon_sym___inline] = ACTIONS(3180), + [anon_sym___inline__] = ACTIONS(3180), + [anon_sym___forceinline] = ACTIONS(3180), + [anon_sym_thread_local] = ACTIONS(3180), + [anon_sym___thread] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym___restrict__] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym__Noreturn] = ACTIONS(3180), + [anon_sym_noreturn] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3180), + [anon_sym_union] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3180), + [anon_sym_case] = ACTIONS(3180), + [anon_sym_default] = ACTIONS(3180), + [anon_sym_while] = ACTIONS(3180), + [anon_sym_do] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_break] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(3180), + [anon_sym_goto] = ACTIONS(3180), + [anon_sym_not] = ACTIONS(3180), + [anon_sym_compl] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_sizeof] = ACTIONS(3180), + [anon_sym___alignof__] = ACTIONS(3180), + [anon_sym___alignof] = ACTIONS(3180), + [anon_sym__alignof] = ACTIONS(3180), + [anon_sym_alignof] = ACTIONS(3180), + [anon_sym__Alignof] = ACTIONS(3180), + [anon_sym_offsetof] = ACTIONS(3180), + [anon_sym__Generic] = ACTIONS(3180), + [anon_sym_asm] = ACTIONS(3180), + [anon_sym___asm__] = ACTIONS(3180), + [sym_number_literal] = ACTIONS(3182), + [anon_sym_L_SQUOTE] = ACTIONS(3182), + [anon_sym_u_SQUOTE] = ACTIONS(3182), + [anon_sym_U_SQUOTE] = ACTIONS(3182), + [anon_sym_u8_SQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_L_DQUOTE] = ACTIONS(3182), + [anon_sym_u_DQUOTE] = ACTIONS(3182), + [anon_sym_U_DQUOTE] = ACTIONS(3182), + [anon_sym_u8_DQUOTE] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3180), + [anon_sym_nullptr] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3180), + [anon_sym_decltype] = ACTIONS(3180), + [anon_sym_virtual] = ACTIONS(3180), + [anon_sym_alignas] = ACTIONS(3180), + [anon_sym_explicit] = ACTIONS(3180), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(3180), + [anon_sym_operator] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3180), + [anon_sym_delete] = ACTIONS(3180), + [anon_sym_throw] = ACTIONS(3180), + [anon_sym_namespace] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_static_assert] = ACTIONS(3180), + [anon_sym_concept] = ACTIONS(3180), + [anon_sym_co_return] = ACTIONS(3180), + [anon_sym_co_yield] = ACTIONS(3180), + [anon_sym_R_DQUOTE] = ACTIONS(3182), + [anon_sym_LR_DQUOTE] = ACTIONS(3182), + [anon_sym_uR_DQUOTE] = ACTIONS(3182), + [anon_sym_UR_DQUOTE] = ACTIONS(3182), + [anon_sym_u8R_DQUOTE] = ACTIONS(3182), + [anon_sym_co_await] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3180), + [anon_sym_requires] = ACTIONS(3180), + [sym_this] = ACTIONS(3180), + }, + [792] = { + [sym_identifier] = ACTIONS(2993), + [aux_sym_preproc_include_token1] = ACTIONS(2993), + [aux_sym_preproc_def_token1] = ACTIONS(2993), + [aux_sym_preproc_if_token1] = ACTIONS(2993), + [aux_sym_preproc_if_token2] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_TILDE] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym___extension__] = ACTIONS(2993), + [anon_sym_typedef] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2993), + [anon_sym___attribute__] = ACTIONS(2993), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2995), + [anon_sym___declspec] = ACTIONS(2993), + [anon_sym___based] = ACTIONS(2993), + [anon_sym___cdecl] = ACTIONS(2993), + [anon_sym___clrcall] = ACTIONS(2993), + [anon_sym___stdcall] = ACTIONS(2993), + [anon_sym___fastcall] = ACTIONS(2993), + [anon_sym___thiscall] = ACTIONS(2993), + [anon_sym___vectorcall] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_signed] = ACTIONS(2993), + [anon_sym_unsigned] = ACTIONS(2993), + [anon_sym_long] = ACTIONS(2993), + [anon_sym_short] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_static] = ACTIONS(2993), + [anon_sym_register] = ACTIONS(2993), + [anon_sym_inline] = ACTIONS(2993), + [anon_sym___inline] = ACTIONS(2993), + [anon_sym___inline__] = ACTIONS(2993), + [anon_sym___forceinline] = ACTIONS(2993), + [anon_sym_thread_local] = ACTIONS(2993), + [anon_sym___thread] = ACTIONS(2993), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_constexpr] = ACTIONS(2993), + [anon_sym_volatile] = ACTIONS(2993), + [anon_sym_restrict] = ACTIONS(2993), + [anon_sym___restrict__] = ACTIONS(2993), + [anon_sym__Atomic] = ACTIONS(2993), + [anon_sym__Noreturn] = ACTIONS(2993), + [anon_sym_noreturn] = ACTIONS(2993), + [anon_sym_mutable] = ACTIONS(2993), + [anon_sym_constinit] = ACTIONS(2993), + [anon_sym_consteval] = ACTIONS(2993), + [sym_primitive_type] = ACTIONS(2993), + [anon_sym_enum] = ACTIONS(2993), + [anon_sym_class] = ACTIONS(2993), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_union] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_switch] = ACTIONS(2993), + [anon_sym_case] = ACTIONS(2993), + [anon_sym_default] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_goto] = ACTIONS(2993), + [anon_sym_not] = ACTIONS(2993), + [anon_sym_compl] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2993), + [anon_sym___alignof] = ACTIONS(2993), + [anon_sym__alignof] = ACTIONS(2993), + [anon_sym_alignof] = ACTIONS(2993), + [anon_sym__Alignof] = ACTIONS(2993), + [anon_sym_offsetof] = ACTIONS(2993), + [anon_sym__Generic] = ACTIONS(2993), + [anon_sym_asm] = ACTIONS(2993), + [anon_sym___asm__] = ACTIONS(2993), + [sym_number_literal] = ACTIONS(2995), + [anon_sym_L_SQUOTE] = ACTIONS(2995), + [anon_sym_u_SQUOTE] = ACTIONS(2995), + [anon_sym_U_SQUOTE] = ACTIONS(2995), + [anon_sym_u8_SQUOTE] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_L_DQUOTE] = ACTIONS(2995), + [anon_sym_u_DQUOTE] = ACTIONS(2995), + [anon_sym_U_DQUOTE] = ACTIONS(2995), + [anon_sym_u8_DQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [anon_sym_NULL] = ACTIONS(2993), + [anon_sym_nullptr] = ACTIONS(2993), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2993), + [anon_sym_decltype] = ACTIONS(2993), + [anon_sym_virtual] = ACTIONS(2993), + [anon_sym_alignas] = ACTIONS(2993), + [anon_sym_explicit] = ACTIONS(2993), + [anon_sym_typename] = ACTIONS(2993), + [anon_sym_template] = ACTIONS(2993), + [anon_sym_operator] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_delete] = ACTIONS(2993), + [anon_sym_throw] = ACTIONS(2993), + [anon_sym_namespace] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(2993), + [anon_sym_static_assert] = ACTIONS(2993), + [anon_sym_concept] = ACTIONS(2993), + [anon_sym_co_return] = ACTIONS(2993), + [anon_sym_co_yield] = ACTIONS(2993), + [anon_sym_R_DQUOTE] = ACTIONS(2995), + [anon_sym_LR_DQUOTE] = ACTIONS(2995), + [anon_sym_uR_DQUOTE] = ACTIONS(2995), + [anon_sym_UR_DQUOTE] = ACTIONS(2995), + [anon_sym_u8R_DQUOTE] = ACTIONS(2995), + [anon_sym_co_await] = ACTIONS(2993), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_requires] = ACTIONS(2993), + [sym_this] = ACTIONS(2993), }, - [761] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [793] = { + [sym_identifier] = ACTIONS(3192), + [aux_sym_preproc_include_token1] = ACTIONS(3192), + [aux_sym_preproc_def_token1] = ACTIONS(3192), + [aux_sym_preproc_if_token1] = ACTIONS(3192), + [aux_sym_preproc_if_token2] = ACTIONS(3192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3192), + [sym_preproc_directive] = ACTIONS(3192), + [anon_sym_LPAREN2] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3192), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3192), + [anon_sym_typedef] = ACTIONS(3192), + [anon_sym_extern] = ACTIONS(3192), + [anon_sym___attribute__] = ACTIONS(3192), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3194), + [anon_sym___declspec] = ACTIONS(3192), + [anon_sym___based] = ACTIONS(3192), + [anon_sym___cdecl] = ACTIONS(3192), + [anon_sym___clrcall] = ACTIONS(3192), + [anon_sym___stdcall] = ACTIONS(3192), + [anon_sym___fastcall] = ACTIONS(3192), + [anon_sym___thiscall] = ACTIONS(3192), + [anon_sym___vectorcall] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_signed] = ACTIONS(3192), + [anon_sym_unsigned] = ACTIONS(3192), + [anon_sym_long] = ACTIONS(3192), + [anon_sym_short] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3192), + [anon_sym_register] = ACTIONS(3192), + [anon_sym_inline] = ACTIONS(3192), + [anon_sym___inline] = ACTIONS(3192), + [anon_sym___inline__] = ACTIONS(3192), + [anon_sym___forceinline] = ACTIONS(3192), + [anon_sym_thread_local] = ACTIONS(3192), + [anon_sym___thread] = ACTIONS(3192), + [anon_sym_const] = ACTIONS(3192), + [anon_sym_constexpr] = ACTIONS(3192), + [anon_sym_volatile] = ACTIONS(3192), + [anon_sym_restrict] = ACTIONS(3192), + [anon_sym___restrict__] = ACTIONS(3192), + [anon_sym__Atomic] = ACTIONS(3192), + [anon_sym__Noreturn] = ACTIONS(3192), + [anon_sym_noreturn] = ACTIONS(3192), + [anon_sym_mutable] = ACTIONS(3192), + [anon_sym_constinit] = ACTIONS(3192), + [anon_sym_consteval] = ACTIONS(3192), + [sym_primitive_type] = ACTIONS(3192), + [anon_sym_enum] = ACTIONS(3192), + [anon_sym_class] = ACTIONS(3192), + [anon_sym_struct] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3192), + [anon_sym_if] = ACTIONS(3192), + [anon_sym_switch] = ACTIONS(3192), + [anon_sym_case] = ACTIONS(3192), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_while] = ACTIONS(3192), + [anon_sym_do] = ACTIONS(3192), + [anon_sym_for] = ACTIONS(3192), + [anon_sym_return] = ACTIONS(3192), + [anon_sym_break] = ACTIONS(3192), + [anon_sym_continue] = ACTIONS(3192), + [anon_sym_goto] = ACTIONS(3192), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_sizeof] = ACTIONS(3192), + [anon_sym___alignof__] = ACTIONS(3192), + [anon_sym___alignof] = ACTIONS(3192), + [anon_sym__alignof] = ACTIONS(3192), + [anon_sym_alignof] = ACTIONS(3192), + [anon_sym__Alignof] = ACTIONS(3192), + [anon_sym_offsetof] = ACTIONS(3192), + [anon_sym__Generic] = ACTIONS(3192), + [anon_sym_asm] = ACTIONS(3192), + [anon_sym___asm__] = ACTIONS(3192), + [sym_number_literal] = ACTIONS(3194), + [anon_sym_L_SQUOTE] = ACTIONS(3194), + [anon_sym_u_SQUOTE] = ACTIONS(3194), + [anon_sym_U_SQUOTE] = ACTIONS(3194), + [anon_sym_u8_SQUOTE] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3194), + [anon_sym_L_DQUOTE] = ACTIONS(3194), + [anon_sym_u_DQUOTE] = ACTIONS(3194), + [anon_sym_U_DQUOTE] = ACTIONS(3194), + [anon_sym_u8_DQUOTE] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(3194), + [sym_true] = ACTIONS(3192), + [sym_false] = ACTIONS(3192), + [anon_sym_NULL] = ACTIONS(3192), + [anon_sym_nullptr] = ACTIONS(3192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3192), + [anon_sym_decltype] = ACTIONS(3192), + [anon_sym_virtual] = ACTIONS(3192), + [anon_sym_alignas] = ACTIONS(3192), + [anon_sym_explicit] = ACTIONS(3192), + [anon_sym_typename] = ACTIONS(3192), + [anon_sym_template] = ACTIONS(3192), + [anon_sym_operator] = ACTIONS(3192), + [anon_sym_try] = ACTIONS(3192), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_throw] = ACTIONS(3192), + [anon_sym_namespace] = ACTIONS(3192), + [anon_sym_using] = ACTIONS(3192), + [anon_sym_static_assert] = ACTIONS(3192), + [anon_sym_concept] = ACTIONS(3192), + [anon_sym_co_return] = ACTIONS(3192), + [anon_sym_co_yield] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3192), + [anon_sym_new] = ACTIONS(3192), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3192), + }, + [794] = { + [sym_identifier] = ACTIONS(2985), + [aux_sym_preproc_include_token1] = ACTIONS(2985), + [aux_sym_preproc_def_token1] = ACTIONS(2985), + [aux_sym_preproc_if_token1] = ACTIONS(2985), + [aux_sym_preproc_if_token2] = ACTIONS(2985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2985), + [sym_preproc_directive] = ACTIONS(2985), + [anon_sym_LPAREN2] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_AMP_AMP] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym___extension__] = ACTIONS(2985), + [anon_sym_typedef] = ACTIONS(2985), + [anon_sym_extern] = ACTIONS(2985), + [anon_sym___attribute__] = ACTIONS(2985), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), + [anon_sym___declspec] = ACTIONS(2985), + [anon_sym___based] = ACTIONS(2985), + [anon_sym___cdecl] = ACTIONS(2985), + [anon_sym___clrcall] = ACTIONS(2985), + [anon_sym___stdcall] = ACTIONS(2985), + [anon_sym___fastcall] = ACTIONS(2985), + [anon_sym___thiscall] = ACTIONS(2985), + [anon_sym___vectorcall] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_signed] = ACTIONS(2985), + [anon_sym_unsigned] = ACTIONS(2985), + [anon_sym_long] = ACTIONS(2985), + [anon_sym_short] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_static] = ACTIONS(2985), + [anon_sym_register] = ACTIONS(2985), + [anon_sym_inline] = ACTIONS(2985), + [anon_sym___inline] = ACTIONS(2985), + [anon_sym___inline__] = ACTIONS(2985), + [anon_sym___forceinline] = ACTIONS(2985), + [anon_sym_thread_local] = ACTIONS(2985), + [anon_sym___thread] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_constexpr] = ACTIONS(2985), + [anon_sym_volatile] = ACTIONS(2985), + [anon_sym_restrict] = ACTIONS(2985), + [anon_sym___restrict__] = ACTIONS(2985), + [anon_sym__Atomic] = ACTIONS(2985), + [anon_sym__Noreturn] = ACTIONS(2985), + [anon_sym_noreturn] = ACTIONS(2985), + [anon_sym_mutable] = ACTIONS(2985), + [anon_sym_constinit] = ACTIONS(2985), + [anon_sym_consteval] = ACTIONS(2985), + [sym_primitive_type] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_class] = ACTIONS(2985), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_union] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_switch] = ACTIONS(2985), + [anon_sym_case] = ACTIONS(2985), + [anon_sym_default] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_do] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym_not] = ACTIONS(2985), + [anon_sym_compl] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_sizeof] = ACTIONS(2985), + [anon_sym___alignof__] = ACTIONS(2985), + [anon_sym___alignof] = ACTIONS(2985), + [anon_sym__alignof] = ACTIONS(2985), + [anon_sym_alignof] = ACTIONS(2985), + [anon_sym__Alignof] = ACTIONS(2985), + [anon_sym_offsetof] = ACTIONS(2985), + [anon_sym__Generic] = ACTIONS(2985), + [anon_sym_asm] = ACTIONS(2985), + [anon_sym___asm__] = ACTIONS(2985), + [sym_number_literal] = ACTIONS(2987), + [anon_sym_L_SQUOTE] = ACTIONS(2987), + [anon_sym_u_SQUOTE] = ACTIONS(2987), + [anon_sym_U_SQUOTE] = ACTIONS(2987), + [anon_sym_u8_SQUOTE] = ACTIONS(2987), + [anon_sym_SQUOTE] = ACTIONS(2987), + [anon_sym_L_DQUOTE] = ACTIONS(2987), + [anon_sym_u_DQUOTE] = ACTIONS(2987), + [anon_sym_U_DQUOTE] = ACTIONS(2987), + [anon_sym_u8_DQUOTE] = ACTIONS(2987), + [anon_sym_DQUOTE] = ACTIONS(2987), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [anon_sym_NULL] = ACTIONS(2985), + [anon_sym_nullptr] = ACTIONS(2985), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2985), + [anon_sym_decltype] = ACTIONS(2985), + [anon_sym_virtual] = ACTIONS(2985), + [anon_sym_alignas] = ACTIONS(2985), + [anon_sym_explicit] = ACTIONS(2985), + [anon_sym_typename] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(2985), + [anon_sym_operator] = ACTIONS(2985), + [anon_sym_try] = ACTIONS(2985), + [anon_sym_delete] = ACTIONS(2985), + [anon_sym_throw] = ACTIONS(2985), + [anon_sym_namespace] = ACTIONS(2985), + [anon_sym_using] = ACTIONS(2985), + [anon_sym_static_assert] = ACTIONS(2985), + [anon_sym_concept] = ACTIONS(2985), + [anon_sym_co_return] = ACTIONS(2985), + [anon_sym_co_yield] = ACTIONS(2985), + [anon_sym_R_DQUOTE] = ACTIONS(2987), + [anon_sym_LR_DQUOTE] = ACTIONS(2987), + [anon_sym_uR_DQUOTE] = ACTIONS(2987), + [anon_sym_UR_DQUOTE] = ACTIONS(2987), + [anon_sym_u8R_DQUOTE] = ACTIONS(2987), + [anon_sym_co_await] = ACTIONS(2985), + [anon_sym_new] = ACTIONS(2985), + [anon_sym_requires] = ACTIONS(2985), + [sym_this] = ACTIONS(2985), }, - [762] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [795] = { + [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_extern] = ACTIONS(3075), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3075), + [anon_sym_constinit] = ACTIONS(3075), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3075), + [anon_sym_alignas] = 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_using] = 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), + }, + [796] = { + [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_extern] = ACTIONS(3071), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3071), + [anon_sym_constinit] = ACTIONS(3071), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3071), + [anon_sym_alignas] = 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_using] = 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), + }, + [797] = { + [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_extern] = ACTIONS(3067), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3067), + [anon_sym_constinit] = ACTIONS(3067), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3067), + [anon_sym_alignas] = 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_using] = 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), + }, + [798] = { + [sym_identifier] = ACTIONS(2973), + [aux_sym_preproc_include_token1] = ACTIONS(2973), + [aux_sym_preproc_def_token1] = ACTIONS(2973), + [aux_sym_preproc_if_token1] = ACTIONS(2973), + [aux_sym_preproc_if_token2] = ACTIONS(2973), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2973), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2973), + [sym_preproc_directive] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(2975), + [anon_sym_TILDE] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2975), + [anon_sym_AMP_AMP] = ACTIONS(2975), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym___extension__] = ACTIONS(2973), + [anon_sym_typedef] = ACTIONS(2973), + [anon_sym_extern] = ACTIONS(2973), + [anon_sym___attribute__] = ACTIONS(2973), + [anon_sym_COLON_COLON] = ACTIONS(2975), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), + [anon_sym___declspec] = ACTIONS(2973), + [anon_sym___based] = ACTIONS(2973), + [anon_sym___cdecl] = ACTIONS(2973), + [anon_sym___clrcall] = ACTIONS(2973), + [anon_sym___stdcall] = ACTIONS(2973), + [anon_sym___fastcall] = ACTIONS(2973), + [anon_sym___thiscall] = ACTIONS(2973), + [anon_sym___vectorcall] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2975), + [anon_sym_signed] = ACTIONS(2973), + [anon_sym_unsigned] = ACTIONS(2973), + [anon_sym_long] = ACTIONS(2973), + [anon_sym_short] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_static] = ACTIONS(2973), + [anon_sym_register] = ACTIONS(2973), + [anon_sym_inline] = ACTIONS(2973), + [anon_sym___inline] = ACTIONS(2973), + [anon_sym___inline__] = ACTIONS(2973), + [anon_sym___forceinline] = ACTIONS(2973), + [anon_sym_thread_local] = ACTIONS(2973), + [anon_sym___thread] = ACTIONS(2973), + [anon_sym_const] = ACTIONS(2973), + [anon_sym_constexpr] = ACTIONS(2973), + [anon_sym_volatile] = ACTIONS(2973), + [anon_sym_restrict] = ACTIONS(2973), + [anon_sym___restrict__] = ACTIONS(2973), + [anon_sym__Atomic] = ACTIONS(2973), + [anon_sym__Noreturn] = ACTIONS(2973), + [anon_sym_noreturn] = ACTIONS(2973), + [anon_sym_mutable] = ACTIONS(2973), + [anon_sym_constinit] = ACTIONS(2973), + [anon_sym_consteval] = ACTIONS(2973), + [sym_primitive_type] = ACTIONS(2973), + [anon_sym_enum] = ACTIONS(2973), + [anon_sym_class] = ACTIONS(2973), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_union] = ACTIONS(2973), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_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), + [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(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2973), + [anon_sym_decltype] = ACTIONS(2973), + [anon_sym_virtual] = ACTIONS(2973), + [anon_sym_alignas] = ACTIONS(2973), + [anon_sym_explicit] = ACTIONS(2973), + [anon_sym_typename] = ACTIONS(2973), + [anon_sym_template] = ACTIONS(2973), + [anon_sym_operator] = ACTIONS(2973), + [anon_sym_try] = ACTIONS(2973), + [anon_sym_delete] = ACTIONS(2973), + [anon_sym_throw] = ACTIONS(2973), + [anon_sym_namespace] = ACTIONS(2973), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_static_assert] = ACTIONS(2973), + [anon_sym_concept] = ACTIONS(2973), + [anon_sym_co_return] = ACTIONS(2973), + [anon_sym_co_yield] = ACTIONS(2973), + [anon_sym_R_DQUOTE] = ACTIONS(2975), + [anon_sym_LR_DQUOTE] = ACTIONS(2975), + [anon_sym_uR_DQUOTE] = ACTIONS(2975), + [anon_sym_UR_DQUOTE] = ACTIONS(2975), + [anon_sym_u8R_DQUOTE] = ACTIONS(2975), + [anon_sym_co_await] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(2973), + [anon_sym_requires] = ACTIONS(2973), + [sym_this] = ACTIONS(2973), }, - [763] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [799] = { + [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_extern] = ACTIONS(3131), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3131), + [anon_sym_constinit] = ACTIONS(3131), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3131), + [anon_sym_alignas] = 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_using] = 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), + }, + [800] = { + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_include_token1] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token2] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym___cdecl] = ACTIONS(3103), + [anon_sym___clrcall] = ACTIONS(3103), + [anon_sym___stdcall] = ACTIONS(3103), + [anon_sym___fastcall] = ACTIONS(3103), + [anon_sym___thiscall] = ACTIONS(3103), + [anon_sym___vectorcall] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3103), + [anon_sym_case] = ACTIONS(3103), + [anon_sym_default] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_do] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_compl] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_sizeof] = ACTIONS(3103), + [anon_sym___alignof__] = ACTIONS(3103), + [anon_sym___alignof] = ACTIONS(3103), + [anon_sym__alignof] = ACTIONS(3103), + [anon_sym_alignof] = ACTIONS(3103), + [anon_sym__Alignof] = ACTIONS(3103), + [anon_sym_offsetof] = ACTIONS(3103), + [anon_sym__Generic] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym___asm__] = ACTIONS(3103), + [sym_number_literal] = ACTIONS(3105), + [anon_sym_L_SQUOTE] = ACTIONS(3105), + [anon_sym_u_SQUOTE] = ACTIONS(3105), + [anon_sym_U_SQUOTE] = ACTIONS(3105), + [anon_sym_u8_SQUOTE] = ACTIONS(3105), + [anon_sym_SQUOTE] = ACTIONS(3105), + [anon_sym_L_DQUOTE] = ACTIONS(3105), + [anon_sym_u_DQUOTE] = ACTIONS(3105), + [anon_sym_U_DQUOTE] = ACTIONS(3105), + [anon_sym_u8_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [sym_true] = ACTIONS(3103), + [sym_false] = ACTIONS(3103), + [anon_sym_NULL] = ACTIONS(3103), + [anon_sym_nullptr] = ACTIONS(3103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_delete] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + [anon_sym_concept] = ACTIONS(3103), + [anon_sym_co_return] = ACTIONS(3103), + [anon_sym_co_yield] = ACTIONS(3103), + [anon_sym_R_DQUOTE] = ACTIONS(3105), + [anon_sym_LR_DQUOTE] = ACTIONS(3105), + [anon_sym_uR_DQUOTE] = ACTIONS(3105), + [anon_sym_UR_DQUOTE] = ACTIONS(3105), + [anon_sym_u8R_DQUOTE] = ACTIONS(3105), + [anon_sym_co_await] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(3103), + [sym_this] = ACTIONS(3103), }, - [764] = { - [sym_type_qualifier] = STATE(4728), - [sym__type_specifier] = STATE(5568), - [sym_sized_type_specifier] = STATE(3614), - [sym_enum_specifier] = STATE(3614), - [sym_struct_specifier] = STATE(3614), - [sym_union_specifier] = STATE(3614), - [sym__expression] = STATE(5221), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_type_descriptor] = STATE(8072), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_placeholder_type_specifier] = STATE(3614), - [sym_decltype_auto] = STATE(3612), - [sym_decltype] = STATE(3593), - [sym_class_specifier] = STATE(3614), - [sym__class_name] = STATE(8694), - [sym_dependent_type] = STATE(3614), - [sym_template_type] = STATE(6065), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_type_parameter_pack_expansion] = STATE(8815), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6421), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(6098), - [sym_user_defined_literal] = STATE(4285), - [aux_sym_type_definition_repeat1] = STATE(4728), - [aux_sym_sized_type_specifier_repeat1] = STATE(3032), + [801] = { [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(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3173), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [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_extern] = ACTIONS(3127), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3127), + [anon_sym_constinit] = ACTIONS(3127), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3127), + [anon_sym_alignas] = 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_using] = 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), }, - [765] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - }, - [766] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - }, - [767] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - }, - [768] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - }, - [769] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - }, - [770] = { - [sym_catch_clause] = STATE(549), - [aux_sym_constructor_try_statement_repeat1] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(2565), - [sym_identifier] = ACTIONS(2563), - [aux_sym_preproc_include_token1] = ACTIONS(2563), - [aux_sym_preproc_def_token1] = ACTIONS(2563), - [aux_sym_preproc_if_token1] = ACTIONS(2563), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2563), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2563), - [sym_preproc_directive] = ACTIONS(2563), - [anon_sym_LPAREN2] = ACTIONS(2565), - [anon_sym_BANG] = ACTIONS(2565), - [anon_sym_TILDE] = ACTIONS(2565), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_STAR] = ACTIONS(2565), - [anon_sym_AMP_AMP] = ACTIONS(2565), - [anon_sym_AMP] = ACTIONS(2563), - [anon_sym___extension__] = ACTIONS(2563), - [anon_sym_typedef] = ACTIONS(2563), - [anon_sym_extern] = ACTIONS(2563), - [anon_sym___attribute__] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2565), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), - [anon_sym___declspec] = ACTIONS(2563), - [anon_sym___based] = ACTIONS(2563), - [anon_sym___cdecl] = ACTIONS(2563), - [anon_sym___clrcall] = ACTIONS(2563), - [anon_sym___stdcall] = ACTIONS(2563), - [anon_sym___fastcall] = ACTIONS(2563), - [anon_sym___thiscall] = ACTIONS(2563), - [anon_sym___vectorcall] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2565), - [anon_sym_signed] = ACTIONS(2563), - [anon_sym_unsigned] = ACTIONS(2563), - [anon_sym_long] = ACTIONS(2563), - [anon_sym_short] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(2563), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2563), - [anon_sym_inline] = ACTIONS(2563), - [anon_sym___inline] = ACTIONS(2563), - [anon_sym___inline__] = ACTIONS(2563), - [anon_sym___forceinline] = ACTIONS(2563), - [anon_sym_thread_local] = ACTIONS(2563), - [anon_sym___thread] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_constexpr] = ACTIONS(2563), - [anon_sym_volatile] = ACTIONS(2563), - [anon_sym_restrict] = ACTIONS(2563), - [anon_sym___restrict__] = ACTIONS(2563), - [anon_sym__Atomic] = ACTIONS(2563), - [anon_sym__Noreturn] = ACTIONS(2563), - [anon_sym_noreturn] = ACTIONS(2563), - [anon_sym_mutable] = ACTIONS(2563), - [anon_sym_constinit] = ACTIONS(2563), - [anon_sym_consteval] = ACTIONS(2563), - [sym_primitive_type] = ACTIONS(2563), - [anon_sym_enum] = ACTIONS(2563), - [anon_sym_class] = ACTIONS(2563), - [anon_sym_struct] = ACTIONS(2563), - [anon_sym_union] = ACTIONS(2563), - [anon_sym_if] = ACTIONS(2563), - [anon_sym_switch] = ACTIONS(2563), - [anon_sym_case] = ACTIONS(2563), - [anon_sym_default] = ACTIONS(2563), - [anon_sym_while] = ACTIONS(2563), - [anon_sym_do] = ACTIONS(2563), - [anon_sym_for] = ACTIONS(2563), - [anon_sym_return] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_goto] = ACTIONS(2563), - [anon_sym_not] = ACTIONS(2563), - [anon_sym_compl] = ACTIONS(2563), - [anon_sym_DASH_DASH] = ACTIONS(2565), - [anon_sym_PLUS_PLUS] = ACTIONS(2565), - [anon_sym_sizeof] = ACTIONS(2563), - [anon_sym___alignof__] = ACTIONS(2563), - [anon_sym___alignof] = ACTIONS(2563), - [anon_sym__alignof] = ACTIONS(2563), - [anon_sym_alignof] = ACTIONS(2563), - [anon_sym__Alignof] = ACTIONS(2563), - [anon_sym_offsetof] = ACTIONS(2563), - [anon_sym__Generic] = ACTIONS(2563), - [anon_sym_asm] = ACTIONS(2563), - [anon_sym___asm__] = ACTIONS(2563), - [sym_number_literal] = ACTIONS(2565), - [anon_sym_L_SQUOTE] = ACTIONS(2565), - [anon_sym_u_SQUOTE] = ACTIONS(2565), - [anon_sym_U_SQUOTE] = ACTIONS(2565), - [anon_sym_u8_SQUOTE] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2565), - [anon_sym_L_DQUOTE] = ACTIONS(2565), - [anon_sym_u_DQUOTE] = ACTIONS(2565), - [anon_sym_U_DQUOTE] = ACTIONS(2565), - [anon_sym_u8_DQUOTE] = ACTIONS(2565), - [anon_sym_DQUOTE] = ACTIONS(2565), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [anon_sym_NULL] = ACTIONS(2563), - [anon_sym_nullptr] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2563), - [anon_sym_decltype] = ACTIONS(2563), - [anon_sym_virtual] = ACTIONS(2563), - [anon_sym_alignas] = ACTIONS(2563), - [anon_sym_explicit] = ACTIONS(2563), - [anon_sym_typename] = ACTIONS(2563), - [anon_sym_template] = ACTIONS(2563), - [anon_sym_operator] = ACTIONS(2563), - [anon_sym_try] = ACTIONS(2563), - [anon_sym_delete] = ACTIONS(2563), - [anon_sym_throw] = ACTIONS(2563), - [anon_sym_namespace] = ACTIONS(2563), - [anon_sym_using] = ACTIONS(2563), - [anon_sym_static_assert] = ACTIONS(2563), - [anon_sym_concept] = ACTIONS(2563), - [anon_sym_co_return] = ACTIONS(2563), - [anon_sym_co_yield] = ACTIONS(2563), - [anon_sym_catch] = ACTIONS(3442), - [anon_sym_R_DQUOTE] = ACTIONS(2565), - [anon_sym_LR_DQUOTE] = ACTIONS(2565), - [anon_sym_uR_DQUOTE] = ACTIONS(2565), - [anon_sym_UR_DQUOTE] = ACTIONS(2565), - [anon_sym_u8R_DQUOTE] = ACTIONS(2565), - [anon_sym_co_await] = ACTIONS(2563), - [anon_sym_new] = ACTIONS(2563), - [anon_sym_requires] = ACTIONS(2563), - [sym_this] = ACTIONS(2563), - }, - [771] = { - [sym_identifier] = ACTIONS(3352), - [aux_sym_preproc_include_token1] = ACTIONS(3352), - [aux_sym_preproc_def_token1] = ACTIONS(3352), - [aux_sym_preproc_if_token1] = ACTIONS(3352), - [aux_sym_preproc_if_token2] = ACTIONS(3352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3352), - [aux_sym_preproc_else_token1] = ACTIONS(3352), - [aux_sym_preproc_elif_token1] = ACTIONS(3352), - [sym_preproc_directive] = ACTIONS(3352), - [anon_sym_LPAREN2] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3352), - [anon_sym_PLUS] = ACTIONS(3352), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_AMP_AMP] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym___extension__] = ACTIONS(3352), - [anon_sym_typedef] = ACTIONS(3352), - [anon_sym_extern] = ACTIONS(3352), - [anon_sym___attribute__] = ACTIONS(3352), - [anon_sym_COLON_COLON] = ACTIONS(3354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3354), - [anon_sym___declspec] = ACTIONS(3352), - [anon_sym___based] = ACTIONS(3352), - [anon_sym___cdecl] = ACTIONS(3352), - [anon_sym___clrcall] = ACTIONS(3352), - [anon_sym___stdcall] = ACTIONS(3352), - [anon_sym___fastcall] = ACTIONS(3352), - [anon_sym___thiscall] = ACTIONS(3352), - [anon_sym___vectorcall] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_signed] = ACTIONS(3352), - [anon_sym_unsigned] = ACTIONS(3352), - [anon_sym_long] = ACTIONS(3352), - [anon_sym_short] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_static] = ACTIONS(3352), - [anon_sym_register] = ACTIONS(3352), - [anon_sym_inline] = ACTIONS(3352), - [anon_sym___inline] = ACTIONS(3352), - [anon_sym___inline__] = ACTIONS(3352), - [anon_sym___forceinline] = ACTIONS(3352), - [anon_sym_thread_local] = ACTIONS(3352), - [anon_sym___thread] = ACTIONS(3352), - [anon_sym_const] = ACTIONS(3352), - [anon_sym_constexpr] = ACTIONS(3352), - [anon_sym_volatile] = ACTIONS(3352), - [anon_sym_restrict] = ACTIONS(3352), - [anon_sym___restrict__] = ACTIONS(3352), - [anon_sym__Atomic] = ACTIONS(3352), - [anon_sym__Noreturn] = ACTIONS(3352), - [anon_sym_noreturn] = ACTIONS(3352), - [anon_sym_mutable] = ACTIONS(3352), - [anon_sym_constinit] = ACTIONS(3352), - [anon_sym_consteval] = ACTIONS(3352), - [sym_primitive_type] = ACTIONS(3352), - [anon_sym_enum] = ACTIONS(3352), - [anon_sym_class] = ACTIONS(3352), - [anon_sym_struct] = ACTIONS(3352), - [anon_sym_union] = ACTIONS(3352), - [anon_sym_if] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3352), - [anon_sym_case] = ACTIONS(3352), - [anon_sym_default] = ACTIONS(3352), - [anon_sym_while] = ACTIONS(3352), - [anon_sym_do] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3352), - [anon_sym_return] = ACTIONS(3352), - [anon_sym_break] = ACTIONS(3352), - [anon_sym_continue] = ACTIONS(3352), - [anon_sym_goto] = ACTIONS(3352), - [anon_sym_not] = ACTIONS(3352), - [anon_sym_compl] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_sizeof] = ACTIONS(3352), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3352), - [anon_sym__Generic] = ACTIONS(3352), - [anon_sym_asm] = ACTIONS(3352), - [anon_sym___asm__] = ACTIONS(3352), - [sym_number_literal] = ACTIONS(3354), - [anon_sym_L_SQUOTE] = ACTIONS(3354), - [anon_sym_u_SQUOTE] = ACTIONS(3354), - [anon_sym_U_SQUOTE] = ACTIONS(3354), - [anon_sym_u8_SQUOTE] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_L_DQUOTE] = ACTIONS(3354), - [anon_sym_u_DQUOTE] = ACTIONS(3354), - [anon_sym_U_DQUOTE] = ACTIONS(3354), - [anon_sym_u8_DQUOTE] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [sym_true] = ACTIONS(3352), - [sym_false] = ACTIONS(3352), - [anon_sym_NULL] = ACTIONS(3352), - [anon_sym_nullptr] = ACTIONS(3352), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3352), - [anon_sym_decltype] = ACTIONS(3352), - [anon_sym_virtual] = ACTIONS(3352), - [anon_sym_alignas] = ACTIONS(3352), - [anon_sym_explicit] = ACTIONS(3352), - [anon_sym_typename] = ACTIONS(3352), - [anon_sym_template] = ACTIONS(3352), - [anon_sym_operator] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3352), - [anon_sym_delete] = ACTIONS(3352), - [anon_sym_throw] = ACTIONS(3352), - [anon_sym_namespace] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3352), - [anon_sym_static_assert] = ACTIONS(3352), - [anon_sym_concept] = ACTIONS(3352), - [anon_sym_co_return] = ACTIONS(3352), - [anon_sym_co_yield] = ACTIONS(3352), - [anon_sym_R_DQUOTE] = ACTIONS(3354), - [anon_sym_LR_DQUOTE] = ACTIONS(3354), - [anon_sym_uR_DQUOTE] = ACTIONS(3354), - [anon_sym_UR_DQUOTE] = ACTIONS(3354), - [anon_sym_u8R_DQUOTE] = ACTIONS(3354), - [anon_sym_co_await] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3352), - [anon_sym_requires] = ACTIONS(3352), - [sym_this] = ACTIONS(3352), - }, - [772] = { - [sym_identifier] = ACTIONS(3199), - [aux_sym_preproc_include_token1] = ACTIONS(3199), - [aux_sym_preproc_def_token1] = ACTIONS(3199), - [aux_sym_preproc_if_token1] = ACTIONS(3199), - [aux_sym_preproc_if_token2] = ACTIONS(3199), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3199), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3199), - [aux_sym_preproc_else_token1] = ACTIONS(3199), - [aux_sym_preproc_elif_token1] = ACTIONS(3199), - [sym_preproc_directive] = ACTIONS(3199), - [anon_sym_LPAREN2] = ACTIONS(3201), - [anon_sym_BANG] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym___extension__] = ACTIONS(3199), - [anon_sym_typedef] = ACTIONS(3199), - [anon_sym_extern] = ACTIONS(3199), - [anon_sym___attribute__] = ACTIONS(3199), - [anon_sym_COLON_COLON] = ACTIONS(3201), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3201), - [anon_sym___declspec] = ACTIONS(3199), - [anon_sym___based] = ACTIONS(3199), - [anon_sym___cdecl] = ACTIONS(3199), - [anon_sym___clrcall] = ACTIONS(3199), - [anon_sym___stdcall] = ACTIONS(3199), - [anon_sym___fastcall] = ACTIONS(3199), - [anon_sym___thiscall] = ACTIONS(3199), - [anon_sym___vectorcall] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_signed] = ACTIONS(3199), - [anon_sym_unsigned] = ACTIONS(3199), - [anon_sym_long] = ACTIONS(3199), - [anon_sym_short] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_static] = ACTIONS(3199), - [anon_sym_register] = ACTIONS(3199), - [anon_sym_inline] = ACTIONS(3199), - [anon_sym___inline] = ACTIONS(3199), - [anon_sym___inline__] = ACTIONS(3199), - [anon_sym___forceinline] = ACTIONS(3199), - [anon_sym_thread_local] = ACTIONS(3199), - [anon_sym___thread] = ACTIONS(3199), - [anon_sym_const] = ACTIONS(3199), - [anon_sym_constexpr] = ACTIONS(3199), - [anon_sym_volatile] = ACTIONS(3199), - [anon_sym_restrict] = ACTIONS(3199), - [anon_sym___restrict__] = ACTIONS(3199), - [anon_sym__Atomic] = ACTIONS(3199), - [anon_sym__Noreturn] = ACTIONS(3199), - [anon_sym_noreturn] = ACTIONS(3199), - [anon_sym_mutable] = ACTIONS(3199), - [anon_sym_constinit] = ACTIONS(3199), - [anon_sym_consteval] = ACTIONS(3199), - [sym_primitive_type] = ACTIONS(3199), - [anon_sym_enum] = ACTIONS(3199), - [anon_sym_class] = ACTIONS(3199), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_union] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_switch] = ACTIONS(3199), - [anon_sym_case] = ACTIONS(3199), - [anon_sym_default] = ACTIONS(3199), - [anon_sym_while] = ACTIONS(3199), - [anon_sym_do] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3199), - [anon_sym_return] = ACTIONS(3199), - [anon_sym_break] = ACTIONS(3199), - [anon_sym_continue] = ACTIONS(3199), - [anon_sym_goto] = ACTIONS(3199), - [anon_sym_not] = ACTIONS(3199), - [anon_sym_compl] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_sizeof] = ACTIONS(3199), - [anon_sym___alignof__] = ACTIONS(3199), - [anon_sym___alignof] = ACTIONS(3199), - [anon_sym__alignof] = ACTIONS(3199), - [anon_sym_alignof] = ACTIONS(3199), - [anon_sym__Alignof] = ACTIONS(3199), - [anon_sym_offsetof] = ACTIONS(3199), - [anon_sym__Generic] = ACTIONS(3199), - [anon_sym_asm] = ACTIONS(3199), - [anon_sym___asm__] = ACTIONS(3199), - [sym_number_literal] = ACTIONS(3201), - [anon_sym_L_SQUOTE] = ACTIONS(3201), - [anon_sym_u_SQUOTE] = ACTIONS(3201), - [anon_sym_U_SQUOTE] = ACTIONS(3201), - [anon_sym_u8_SQUOTE] = ACTIONS(3201), - [anon_sym_SQUOTE] = ACTIONS(3201), - [anon_sym_L_DQUOTE] = ACTIONS(3201), - [anon_sym_u_DQUOTE] = ACTIONS(3201), - [anon_sym_U_DQUOTE] = ACTIONS(3201), - [anon_sym_u8_DQUOTE] = ACTIONS(3201), - [anon_sym_DQUOTE] = ACTIONS(3201), - [sym_true] = ACTIONS(3199), - [sym_false] = ACTIONS(3199), - [anon_sym_NULL] = ACTIONS(3199), - [anon_sym_nullptr] = ACTIONS(3199), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3199), - [anon_sym_decltype] = ACTIONS(3199), - [anon_sym_virtual] = ACTIONS(3199), - [anon_sym_alignas] = ACTIONS(3199), - [anon_sym_explicit] = ACTIONS(3199), - [anon_sym_typename] = ACTIONS(3199), - [anon_sym_template] = ACTIONS(3199), - [anon_sym_operator] = ACTIONS(3199), - [anon_sym_try] = ACTIONS(3199), - [anon_sym_delete] = ACTIONS(3199), - [anon_sym_throw] = ACTIONS(3199), - [anon_sym_namespace] = ACTIONS(3199), - [anon_sym_using] = ACTIONS(3199), - [anon_sym_static_assert] = ACTIONS(3199), - [anon_sym_concept] = ACTIONS(3199), - [anon_sym_co_return] = ACTIONS(3199), - [anon_sym_co_yield] = ACTIONS(3199), - [anon_sym_R_DQUOTE] = ACTIONS(3201), - [anon_sym_LR_DQUOTE] = ACTIONS(3201), - [anon_sym_uR_DQUOTE] = ACTIONS(3201), - [anon_sym_UR_DQUOTE] = ACTIONS(3201), - [anon_sym_u8R_DQUOTE] = ACTIONS(3201), - [anon_sym_co_await] = ACTIONS(3199), - [anon_sym_new] = ACTIONS(3199), - [anon_sym_requires] = ACTIONS(3199), - [sym_this] = ACTIONS(3199), - }, - [773] = { - [sym_identifier] = ACTIONS(3458), - [aux_sym_preproc_include_token1] = ACTIONS(3458), - [aux_sym_preproc_def_token1] = ACTIONS(3458), - [aux_sym_preproc_if_token1] = ACTIONS(3458), - [aux_sym_preproc_if_token2] = ACTIONS(3458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3458), - [aux_sym_preproc_else_token1] = ACTIONS(3458), - [aux_sym_preproc_elif_token1] = ACTIONS(3458), - [sym_preproc_directive] = ACTIONS(3458), - [anon_sym_LPAREN2] = ACTIONS(3460), - [anon_sym_BANG] = ACTIONS(3460), - [anon_sym_TILDE] = ACTIONS(3460), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_STAR] = ACTIONS(3460), - [anon_sym_AMP_AMP] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(3458), - [anon_sym_SEMI] = ACTIONS(3460), - [anon_sym___extension__] = ACTIONS(3458), - [anon_sym_typedef] = ACTIONS(3458), - [anon_sym_extern] = ACTIONS(3458), - [anon_sym___attribute__] = ACTIONS(3458), - [anon_sym_COLON_COLON] = ACTIONS(3460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3460), - [anon_sym___declspec] = ACTIONS(3458), - [anon_sym___based] = ACTIONS(3458), - [anon_sym___cdecl] = ACTIONS(3458), - [anon_sym___clrcall] = ACTIONS(3458), - [anon_sym___stdcall] = ACTIONS(3458), - [anon_sym___fastcall] = ACTIONS(3458), - [anon_sym___thiscall] = ACTIONS(3458), - [anon_sym___vectorcall] = ACTIONS(3458), - [anon_sym_LBRACE] = ACTIONS(3460), - [anon_sym_signed] = ACTIONS(3458), - [anon_sym_unsigned] = ACTIONS(3458), - [anon_sym_long] = ACTIONS(3458), - [anon_sym_short] = ACTIONS(3458), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_static] = ACTIONS(3458), - [anon_sym_register] = ACTIONS(3458), - [anon_sym_inline] = ACTIONS(3458), - [anon_sym___inline] = ACTIONS(3458), - [anon_sym___inline__] = ACTIONS(3458), - [anon_sym___forceinline] = ACTIONS(3458), - [anon_sym_thread_local] = ACTIONS(3458), - [anon_sym___thread] = ACTIONS(3458), - [anon_sym_const] = ACTIONS(3458), - [anon_sym_constexpr] = ACTIONS(3458), - [anon_sym_volatile] = ACTIONS(3458), - [anon_sym_restrict] = ACTIONS(3458), - [anon_sym___restrict__] = ACTIONS(3458), - [anon_sym__Atomic] = ACTIONS(3458), - [anon_sym__Noreturn] = ACTIONS(3458), - [anon_sym_noreturn] = ACTIONS(3458), - [anon_sym_mutable] = ACTIONS(3458), - [anon_sym_constinit] = ACTIONS(3458), - [anon_sym_consteval] = ACTIONS(3458), - [sym_primitive_type] = ACTIONS(3458), - [anon_sym_enum] = ACTIONS(3458), - [anon_sym_class] = ACTIONS(3458), - [anon_sym_struct] = ACTIONS(3458), - [anon_sym_union] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_switch] = ACTIONS(3458), - [anon_sym_case] = ACTIONS(3458), - [anon_sym_default] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_break] = ACTIONS(3458), - [anon_sym_continue] = ACTIONS(3458), - [anon_sym_goto] = ACTIONS(3458), - [anon_sym_not] = ACTIONS(3458), - [anon_sym_compl] = ACTIONS(3458), - [anon_sym_DASH_DASH] = ACTIONS(3460), - [anon_sym_PLUS_PLUS] = ACTIONS(3460), - [anon_sym_sizeof] = ACTIONS(3458), - [anon_sym___alignof__] = ACTIONS(3458), - [anon_sym___alignof] = ACTIONS(3458), - [anon_sym__alignof] = ACTIONS(3458), - [anon_sym_alignof] = ACTIONS(3458), - [anon_sym__Alignof] = ACTIONS(3458), - [anon_sym_offsetof] = ACTIONS(3458), - [anon_sym__Generic] = ACTIONS(3458), - [anon_sym_asm] = ACTIONS(3458), - [anon_sym___asm__] = ACTIONS(3458), - [sym_number_literal] = ACTIONS(3460), - [anon_sym_L_SQUOTE] = ACTIONS(3460), - [anon_sym_u_SQUOTE] = ACTIONS(3460), - [anon_sym_U_SQUOTE] = ACTIONS(3460), - [anon_sym_u8_SQUOTE] = ACTIONS(3460), - [anon_sym_SQUOTE] = ACTIONS(3460), - [anon_sym_L_DQUOTE] = ACTIONS(3460), - [anon_sym_u_DQUOTE] = ACTIONS(3460), - [anon_sym_U_DQUOTE] = ACTIONS(3460), - [anon_sym_u8_DQUOTE] = ACTIONS(3460), - [anon_sym_DQUOTE] = ACTIONS(3460), - [sym_true] = ACTIONS(3458), - [sym_false] = ACTIONS(3458), - [anon_sym_NULL] = ACTIONS(3458), - [anon_sym_nullptr] = ACTIONS(3458), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3458), - [anon_sym_decltype] = ACTIONS(3458), - [anon_sym_virtual] = ACTIONS(3458), - [anon_sym_alignas] = ACTIONS(3458), - [anon_sym_explicit] = ACTIONS(3458), - [anon_sym_typename] = ACTIONS(3458), - [anon_sym_template] = ACTIONS(3458), - [anon_sym_operator] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_delete] = ACTIONS(3458), - [anon_sym_throw] = ACTIONS(3458), - [anon_sym_namespace] = ACTIONS(3458), - [anon_sym_using] = ACTIONS(3458), - [anon_sym_static_assert] = ACTIONS(3458), - [anon_sym_concept] = ACTIONS(3458), - [anon_sym_co_return] = ACTIONS(3458), - [anon_sym_co_yield] = ACTIONS(3458), - [anon_sym_R_DQUOTE] = ACTIONS(3460), - [anon_sym_LR_DQUOTE] = ACTIONS(3460), - [anon_sym_uR_DQUOTE] = ACTIONS(3460), - [anon_sym_UR_DQUOTE] = ACTIONS(3460), - [anon_sym_u8R_DQUOTE] = ACTIONS(3460), - [anon_sym_co_await] = ACTIONS(3458), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_requires] = ACTIONS(3458), - [sym_this] = ACTIONS(3458), - }, - [774] = { - [sym_identifier] = ACTIONS(3207), - [aux_sym_preproc_include_token1] = ACTIONS(3207), - [aux_sym_preproc_def_token1] = ACTIONS(3207), - [aux_sym_preproc_if_token1] = ACTIONS(3207), - [aux_sym_preproc_if_token2] = ACTIONS(3207), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3207), - [aux_sym_preproc_else_token1] = ACTIONS(3207), - [aux_sym_preproc_elif_token1] = ACTIONS(3207), - [sym_preproc_directive] = ACTIONS(3207), - [anon_sym_LPAREN2] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_AMP_AMP] = ACTIONS(3209), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_SEMI] = ACTIONS(3209), - [anon_sym___extension__] = ACTIONS(3207), - [anon_sym_typedef] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(3207), - [anon_sym___attribute__] = ACTIONS(3207), - [anon_sym_COLON_COLON] = ACTIONS(3209), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3209), - [anon_sym___declspec] = ACTIONS(3207), - [anon_sym___based] = ACTIONS(3207), - [anon_sym___cdecl] = ACTIONS(3207), - [anon_sym___clrcall] = ACTIONS(3207), - [anon_sym___stdcall] = ACTIONS(3207), - [anon_sym___fastcall] = ACTIONS(3207), - [anon_sym___thiscall] = ACTIONS(3207), - [anon_sym___vectorcall] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_signed] = ACTIONS(3207), - [anon_sym_unsigned] = ACTIONS(3207), - [anon_sym_long] = ACTIONS(3207), - [anon_sym_short] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_static] = ACTIONS(3207), - [anon_sym_register] = ACTIONS(3207), - [anon_sym_inline] = ACTIONS(3207), - [anon_sym___inline] = ACTIONS(3207), - [anon_sym___inline__] = ACTIONS(3207), - [anon_sym___forceinline] = ACTIONS(3207), - [anon_sym_thread_local] = ACTIONS(3207), - [anon_sym___thread] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_constexpr] = ACTIONS(3207), - [anon_sym_volatile] = ACTIONS(3207), - [anon_sym_restrict] = ACTIONS(3207), - [anon_sym___restrict__] = ACTIONS(3207), - [anon_sym__Atomic] = ACTIONS(3207), - [anon_sym__Noreturn] = ACTIONS(3207), - [anon_sym_noreturn] = ACTIONS(3207), - [anon_sym_mutable] = ACTIONS(3207), - [anon_sym_constinit] = ACTIONS(3207), - [anon_sym_consteval] = ACTIONS(3207), - [sym_primitive_type] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [anon_sym_class] = ACTIONS(3207), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_union] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_switch] = ACTIONS(3207), - [anon_sym_case] = ACTIONS(3207), - [anon_sym_default] = ACTIONS(3207), - [anon_sym_while] = ACTIONS(3207), - [anon_sym_do] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_goto] = ACTIONS(3207), - [anon_sym_not] = ACTIONS(3207), - [anon_sym_compl] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_sizeof] = ACTIONS(3207), - [anon_sym___alignof__] = ACTIONS(3207), - [anon_sym___alignof] = ACTIONS(3207), - [anon_sym__alignof] = ACTIONS(3207), - [anon_sym_alignof] = ACTIONS(3207), - [anon_sym__Alignof] = ACTIONS(3207), - [anon_sym_offsetof] = ACTIONS(3207), - [anon_sym__Generic] = ACTIONS(3207), - [anon_sym_asm] = ACTIONS(3207), - [anon_sym___asm__] = ACTIONS(3207), - [sym_number_literal] = ACTIONS(3209), - [anon_sym_L_SQUOTE] = ACTIONS(3209), - [anon_sym_u_SQUOTE] = ACTIONS(3209), - [anon_sym_U_SQUOTE] = ACTIONS(3209), - [anon_sym_u8_SQUOTE] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3209), - [anon_sym_L_DQUOTE] = ACTIONS(3209), - [anon_sym_u_DQUOTE] = ACTIONS(3209), - [anon_sym_U_DQUOTE] = ACTIONS(3209), - [anon_sym_u8_DQUOTE] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(3209), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [anon_sym_NULL] = ACTIONS(3207), - [anon_sym_nullptr] = ACTIONS(3207), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3207), - [anon_sym_decltype] = ACTIONS(3207), - [anon_sym_virtual] = ACTIONS(3207), - [anon_sym_alignas] = ACTIONS(3207), - [anon_sym_explicit] = ACTIONS(3207), - [anon_sym_typename] = ACTIONS(3207), - [anon_sym_template] = ACTIONS(3207), - [anon_sym_operator] = ACTIONS(3207), - [anon_sym_try] = ACTIONS(3207), - [anon_sym_delete] = ACTIONS(3207), - [anon_sym_throw] = ACTIONS(3207), - [anon_sym_namespace] = ACTIONS(3207), - [anon_sym_using] = ACTIONS(3207), - [anon_sym_static_assert] = ACTIONS(3207), - [anon_sym_concept] = ACTIONS(3207), - [anon_sym_co_return] = ACTIONS(3207), - [anon_sym_co_yield] = ACTIONS(3207), - [anon_sym_R_DQUOTE] = ACTIONS(3209), - [anon_sym_LR_DQUOTE] = ACTIONS(3209), - [anon_sym_uR_DQUOTE] = ACTIONS(3209), - [anon_sym_UR_DQUOTE] = ACTIONS(3209), - [anon_sym_u8R_DQUOTE] = ACTIONS(3209), - [anon_sym_co_await] = ACTIONS(3207), - [anon_sym_new] = ACTIONS(3207), - [anon_sym_requires] = ACTIONS(3207), - [sym_this] = ACTIONS(3207), - }, - [775] = { - [sym_identifier] = ACTIONS(3432), - [aux_sym_preproc_include_token1] = ACTIONS(3432), - [aux_sym_preproc_def_token1] = ACTIONS(3432), - [aux_sym_preproc_if_token1] = ACTIONS(3432), - [aux_sym_preproc_if_token2] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [aux_sym_preproc_else_token1] = ACTIONS(3432), - [aux_sym_preproc_elif_token1] = ACTIONS(3432), - [sym_preproc_directive] = ACTIONS(3432), - [anon_sym_LPAREN2] = ACTIONS(3434), - [anon_sym_BANG] = ACTIONS(3434), - [anon_sym_TILDE] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(3434), - [anon_sym_AMP_AMP] = ACTIONS(3434), - [anon_sym_AMP] = ACTIONS(3432), - [anon_sym_SEMI] = ACTIONS(3434), - [anon_sym___extension__] = ACTIONS(3432), - [anon_sym_typedef] = ACTIONS(3432), - [anon_sym_extern] = ACTIONS(3432), - [anon_sym___attribute__] = ACTIONS(3432), - [anon_sym_COLON_COLON] = ACTIONS(3434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3434), - [anon_sym___declspec] = ACTIONS(3432), - [anon_sym___based] = ACTIONS(3432), - [anon_sym___cdecl] = ACTIONS(3432), - [anon_sym___clrcall] = ACTIONS(3432), - [anon_sym___stdcall] = ACTIONS(3432), - [anon_sym___fastcall] = ACTIONS(3432), - [anon_sym___thiscall] = ACTIONS(3432), - [anon_sym___vectorcall] = ACTIONS(3432), - [anon_sym_LBRACE] = ACTIONS(3434), - [anon_sym_signed] = ACTIONS(3432), - [anon_sym_unsigned] = ACTIONS(3432), - [anon_sym_long] = ACTIONS(3432), - [anon_sym_short] = ACTIONS(3432), - [anon_sym_LBRACK] = ACTIONS(3432), - [anon_sym_static] = ACTIONS(3432), - [anon_sym_register] = ACTIONS(3432), - [anon_sym_inline] = ACTIONS(3432), - [anon_sym___inline] = ACTIONS(3432), - [anon_sym___inline__] = ACTIONS(3432), - [anon_sym___forceinline] = ACTIONS(3432), - [anon_sym_thread_local] = ACTIONS(3432), - [anon_sym___thread] = ACTIONS(3432), - [anon_sym_const] = ACTIONS(3432), - [anon_sym_constexpr] = ACTIONS(3432), - [anon_sym_volatile] = ACTIONS(3432), - [anon_sym_restrict] = ACTIONS(3432), - [anon_sym___restrict__] = ACTIONS(3432), - [anon_sym__Atomic] = ACTIONS(3432), - [anon_sym__Noreturn] = ACTIONS(3432), - [anon_sym_noreturn] = ACTIONS(3432), - [anon_sym_mutable] = ACTIONS(3432), - [anon_sym_constinit] = ACTIONS(3432), - [anon_sym_consteval] = ACTIONS(3432), - [sym_primitive_type] = ACTIONS(3432), - [anon_sym_enum] = ACTIONS(3432), - [anon_sym_class] = ACTIONS(3432), - [anon_sym_struct] = ACTIONS(3432), - [anon_sym_union] = ACTIONS(3432), - [anon_sym_if] = ACTIONS(3432), - [anon_sym_switch] = ACTIONS(3432), - [anon_sym_case] = ACTIONS(3432), - [anon_sym_default] = ACTIONS(3432), - [anon_sym_while] = ACTIONS(3432), - [anon_sym_do] = ACTIONS(3432), - [anon_sym_for] = ACTIONS(3432), - [anon_sym_return] = ACTIONS(3432), - [anon_sym_break] = ACTIONS(3432), - [anon_sym_continue] = ACTIONS(3432), - [anon_sym_goto] = ACTIONS(3432), - [anon_sym_not] = ACTIONS(3432), - [anon_sym_compl] = ACTIONS(3432), - [anon_sym_DASH_DASH] = ACTIONS(3434), - [anon_sym_PLUS_PLUS] = ACTIONS(3434), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym___alignof__] = ACTIONS(3432), - [anon_sym___alignof] = ACTIONS(3432), - [anon_sym__alignof] = ACTIONS(3432), - [anon_sym_alignof] = ACTIONS(3432), - [anon_sym__Alignof] = ACTIONS(3432), - [anon_sym_offsetof] = ACTIONS(3432), - [anon_sym__Generic] = ACTIONS(3432), - [anon_sym_asm] = ACTIONS(3432), - [anon_sym___asm__] = ACTIONS(3432), - [sym_number_literal] = ACTIONS(3434), - [anon_sym_L_SQUOTE] = ACTIONS(3434), - [anon_sym_u_SQUOTE] = ACTIONS(3434), - [anon_sym_U_SQUOTE] = ACTIONS(3434), - [anon_sym_u8_SQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3434), - [anon_sym_L_DQUOTE] = ACTIONS(3434), - [anon_sym_u_DQUOTE] = ACTIONS(3434), - [anon_sym_U_DQUOTE] = ACTIONS(3434), - [anon_sym_u8_DQUOTE] = ACTIONS(3434), - [anon_sym_DQUOTE] = ACTIONS(3434), - [sym_true] = ACTIONS(3432), - [sym_false] = ACTIONS(3432), - [anon_sym_NULL] = ACTIONS(3432), - [anon_sym_nullptr] = ACTIONS(3432), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3432), - [anon_sym_decltype] = ACTIONS(3432), - [anon_sym_virtual] = ACTIONS(3432), - [anon_sym_alignas] = ACTIONS(3432), - [anon_sym_explicit] = ACTIONS(3432), - [anon_sym_typename] = ACTIONS(3432), - [anon_sym_template] = ACTIONS(3432), - [anon_sym_operator] = ACTIONS(3432), - [anon_sym_try] = ACTIONS(3432), - [anon_sym_delete] = ACTIONS(3432), - [anon_sym_throw] = ACTIONS(3432), - [anon_sym_namespace] = ACTIONS(3432), - [anon_sym_using] = ACTIONS(3432), - [anon_sym_static_assert] = ACTIONS(3432), - [anon_sym_concept] = ACTIONS(3432), - [anon_sym_co_return] = ACTIONS(3432), - [anon_sym_co_yield] = ACTIONS(3432), - [anon_sym_R_DQUOTE] = ACTIONS(3434), - [anon_sym_LR_DQUOTE] = ACTIONS(3434), - [anon_sym_uR_DQUOTE] = ACTIONS(3434), - [anon_sym_UR_DQUOTE] = ACTIONS(3434), - [anon_sym_u8R_DQUOTE] = ACTIONS(3434), - [anon_sym_co_await] = ACTIONS(3432), - [anon_sym_new] = ACTIONS(3432), - [anon_sym_requires] = ACTIONS(3432), - [sym_this] = ACTIONS(3432), - }, - [776] = { - [sym_else_clause] = STATE(865), - [sym_identifier] = ACTIONS(2762), - [aux_sym_preproc_include_token1] = ACTIONS(2762), - [aux_sym_preproc_def_token1] = ACTIONS(2762), - [aux_sym_preproc_if_token1] = ACTIONS(2762), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), - [sym_preproc_directive] = ACTIONS(2762), - [anon_sym_LPAREN2] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2762), - [anon_sym_PLUS] = ACTIONS(2762), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_AMP_AMP] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2764), - [anon_sym___extension__] = ACTIONS(2762), - [anon_sym_typedef] = ACTIONS(2762), - [anon_sym_extern] = ACTIONS(2762), - [anon_sym___attribute__] = ACTIONS(2762), - [anon_sym_COLON_COLON] = ACTIONS(2764), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), - [anon_sym___declspec] = ACTIONS(2762), - [anon_sym___based] = ACTIONS(2762), - [anon_sym___cdecl] = ACTIONS(2762), - [anon_sym___clrcall] = ACTIONS(2762), - [anon_sym___stdcall] = ACTIONS(2762), - [anon_sym___fastcall] = ACTIONS(2762), - [anon_sym___thiscall] = ACTIONS(2762), - [anon_sym___vectorcall] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_RBRACE] = ACTIONS(2764), - [anon_sym_signed] = ACTIONS(2762), - [anon_sym_unsigned] = ACTIONS(2762), - [anon_sym_long] = ACTIONS(2762), - [anon_sym_short] = ACTIONS(2762), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_static] = ACTIONS(2762), - [anon_sym_register] = ACTIONS(2762), - [anon_sym_inline] = ACTIONS(2762), - [anon_sym___inline] = ACTIONS(2762), - [anon_sym___inline__] = ACTIONS(2762), - [anon_sym___forceinline] = ACTIONS(2762), - [anon_sym_thread_local] = ACTIONS(2762), - [anon_sym___thread] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2762), - [anon_sym_constexpr] = ACTIONS(2762), - [anon_sym_volatile] = ACTIONS(2762), - [anon_sym_restrict] = ACTIONS(2762), - [anon_sym___restrict__] = ACTIONS(2762), - [anon_sym__Atomic] = ACTIONS(2762), - [anon_sym__Noreturn] = ACTIONS(2762), - [anon_sym_noreturn] = ACTIONS(2762), - [anon_sym_mutable] = ACTIONS(2762), - [anon_sym_constinit] = ACTIONS(2762), - [anon_sym_consteval] = ACTIONS(2762), - [sym_primitive_type] = ACTIONS(2762), - [anon_sym_enum] = ACTIONS(2762), - [anon_sym_class] = ACTIONS(2762), - [anon_sym_struct] = ACTIONS(2762), - [anon_sym_union] = ACTIONS(2762), - [anon_sym_if] = ACTIONS(2762), - [anon_sym_else] = ACTIONS(3642), - [anon_sym_switch] = ACTIONS(2762), - [anon_sym_case] = ACTIONS(2762), - [anon_sym_default] = ACTIONS(2762), - [anon_sym_while] = ACTIONS(2762), - [anon_sym_do] = ACTIONS(2762), - [anon_sym_for] = ACTIONS(2762), - [anon_sym_return] = ACTIONS(2762), - [anon_sym_break] = ACTIONS(2762), - [anon_sym_continue] = ACTIONS(2762), - [anon_sym_goto] = ACTIONS(2762), - [anon_sym_not] = ACTIONS(2762), - [anon_sym_compl] = ACTIONS(2762), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2764), - [anon_sym_sizeof] = ACTIONS(2762), - [anon_sym___alignof__] = ACTIONS(2762), - [anon_sym___alignof] = ACTIONS(2762), - [anon_sym__alignof] = ACTIONS(2762), - [anon_sym_alignof] = ACTIONS(2762), - [anon_sym__Alignof] = ACTIONS(2762), - [anon_sym_offsetof] = ACTIONS(2762), - [anon_sym__Generic] = ACTIONS(2762), - [anon_sym_asm] = ACTIONS(2762), - [anon_sym___asm__] = ACTIONS(2762), - [sym_number_literal] = ACTIONS(2764), - [anon_sym_L_SQUOTE] = ACTIONS(2764), - [anon_sym_u_SQUOTE] = ACTIONS(2764), - [anon_sym_U_SQUOTE] = ACTIONS(2764), - [anon_sym_u8_SQUOTE] = ACTIONS(2764), - [anon_sym_SQUOTE] = ACTIONS(2764), - [anon_sym_L_DQUOTE] = ACTIONS(2764), - [anon_sym_u_DQUOTE] = ACTIONS(2764), - [anon_sym_U_DQUOTE] = ACTIONS(2764), - [anon_sym_u8_DQUOTE] = ACTIONS(2764), - [anon_sym_DQUOTE] = ACTIONS(2764), - [sym_true] = ACTIONS(2762), - [sym_false] = ACTIONS(2762), - [anon_sym_NULL] = ACTIONS(2762), - [anon_sym_nullptr] = ACTIONS(2762), + [802] = { + [sym_identifier] = ACTIONS(2961), + [aux_sym_preproc_include_token1] = ACTIONS(2961), + [aux_sym_preproc_def_token1] = ACTIONS(2961), + [aux_sym_preproc_if_token1] = ACTIONS(2961), + [aux_sym_preproc_if_token2] = ACTIONS(2961), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2961), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2961), + [sym_preproc_directive] = ACTIONS(2961), + [anon_sym_LPAREN2] = ACTIONS(2963), + [anon_sym_BANG] = ACTIONS(2963), + [anon_sym_TILDE] = ACTIONS(2963), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_AMP_AMP] = ACTIONS(2963), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2963), + [anon_sym___extension__] = ACTIONS(2961), + [anon_sym_typedef] = ACTIONS(2961), + [anon_sym_extern] = ACTIONS(2961), + [anon_sym___attribute__] = ACTIONS(2961), + [anon_sym_COLON_COLON] = ACTIONS(2963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), + [anon_sym___declspec] = ACTIONS(2961), + [anon_sym___based] = ACTIONS(2961), + [anon_sym___cdecl] = ACTIONS(2961), + [anon_sym___clrcall] = ACTIONS(2961), + [anon_sym___stdcall] = ACTIONS(2961), + [anon_sym___fastcall] = ACTIONS(2961), + [anon_sym___thiscall] = ACTIONS(2961), + [anon_sym___vectorcall] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2963), + [anon_sym_signed] = ACTIONS(2961), + [anon_sym_unsigned] = ACTIONS(2961), + [anon_sym_long] = ACTIONS(2961), + [anon_sym_short] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_static] = ACTIONS(2961), + [anon_sym_register] = ACTIONS(2961), + [anon_sym_inline] = ACTIONS(2961), + [anon_sym___inline] = ACTIONS(2961), + [anon_sym___inline__] = ACTIONS(2961), + [anon_sym___forceinline] = ACTIONS(2961), + [anon_sym_thread_local] = ACTIONS(2961), + [anon_sym___thread] = ACTIONS(2961), + [anon_sym_const] = ACTIONS(2961), + [anon_sym_constexpr] = ACTIONS(2961), + [anon_sym_volatile] = ACTIONS(2961), + [anon_sym_restrict] = ACTIONS(2961), + [anon_sym___restrict__] = ACTIONS(2961), + [anon_sym__Atomic] = ACTIONS(2961), + [anon_sym__Noreturn] = ACTIONS(2961), + [anon_sym_noreturn] = ACTIONS(2961), + [anon_sym_mutable] = ACTIONS(2961), + [anon_sym_constinit] = ACTIONS(2961), + [anon_sym_consteval] = ACTIONS(2961), + [sym_primitive_type] = ACTIONS(2961), + [anon_sym_enum] = ACTIONS(2961), + [anon_sym_class] = ACTIONS(2961), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_union] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_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), + [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(2762), - [anon_sym_decltype] = ACTIONS(2762), - [anon_sym_virtual] = ACTIONS(2762), - [anon_sym_alignas] = ACTIONS(2762), - [anon_sym_explicit] = ACTIONS(2762), - [anon_sym_typename] = ACTIONS(2762), - [anon_sym_template] = ACTIONS(2762), - [anon_sym_operator] = ACTIONS(2762), - [anon_sym_try] = ACTIONS(2762), - [anon_sym_delete] = ACTIONS(2762), - [anon_sym_throw] = ACTIONS(2762), - [anon_sym_namespace] = ACTIONS(2762), - [anon_sym_using] = ACTIONS(2762), - [anon_sym_static_assert] = ACTIONS(2762), - [anon_sym_concept] = ACTIONS(2762), - [anon_sym_co_return] = ACTIONS(2762), - [anon_sym_co_yield] = ACTIONS(2762), - [anon_sym_R_DQUOTE] = ACTIONS(2764), - [anon_sym_LR_DQUOTE] = ACTIONS(2764), - [anon_sym_uR_DQUOTE] = ACTIONS(2764), - [anon_sym_UR_DQUOTE] = ACTIONS(2764), - [anon_sym_u8R_DQUOTE] = ACTIONS(2764), - [anon_sym_co_await] = ACTIONS(2762), - [anon_sym_new] = ACTIONS(2762), - [anon_sym_requires] = ACTIONS(2762), - [sym_this] = ACTIONS(2762), + [sym_auto] = ACTIONS(2961), + [anon_sym_decltype] = ACTIONS(2961), + [anon_sym_virtual] = ACTIONS(2961), + [anon_sym_alignas] = ACTIONS(2961), + [anon_sym_explicit] = ACTIONS(2961), + [anon_sym_typename] = ACTIONS(2961), + [anon_sym_template] = ACTIONS(2961), + [anon_sym_operator] = ACTIONS(2961), + [anon_sym_try] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2961), + [anon_sym_throw] = ACTIONS(2961), + [anon_sym_namespace] = ACTIONS(2961), + [anon_sym_using] = ACTIONS(2961), + [anon_sym_static_assert] = ACTIONS(2961), + [anon_sym_concept] = ACTIONS(2961), + [anon_sym_co_return] = ACTIONS(2961), + [anon_sym_co_yield] = ACTIONS(2961), + [anon_sym_R_DQUOTE] = ACTIONS(2963), + [anon_sym_LR_DQUOTE] = ACTIONS(2963), + [anon_sym_uR_DQUOTE] = ACTIONS(2963), + [anon_sym_UR_DQUOTE] = ACTIONS(2963), + [anon_sym_u8R_DQUOTE] = ACTIONS(2963), + [anon_sym_co_await] = ACTIONS(2961), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2961), + [sym_this] = ACTIONS(2961), }, - [777] = { + [803] = { [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), [sym_preproc_directive] = ACTIONS(3123), [anon_sym_LPAREN2] = ACTIONS(3125), [anon_sym_BANG] = ACTIONS(3125), @@ -165279,6 +164274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -165376,1600 +164372,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3123), [sym_this] = ACTIONS(3123), }, - [778] = { - [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), - [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_extern] = ACTIONS(3123), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3123), - [anon_sym_constinit] = ACTIONS(3123), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3123), - [anon_sym_alignas] = 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_using] = 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), - }, - [779] = { - [sym_else_clause] = STATE(922), - [ts_builtin_sym_end] = ACTIONS(2756), - [sym_identifier] = ACTIONS(2754), - [aux_sym_preproc_include_token1] = ACTIONS(2754), - [aux_sym_preproc_def_token1] = ACTIONS(2754), - [aux_sym_preproc_if_token1] = ACTIONS(2754), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2754), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2754), - [sym_preproc_directive] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_TILDE] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym___extension__] = ACTIONS(2754), - [anon_sym_typedef] = ACTIONS(2754), - [anon_sym_extern] = ACTIONS(2754), - [anon_sym___attribute__] = ACTIONS(2754), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2756), - [anon_sym___declspec] = ACTIONS(2754), - [anon_sym___based] = ACTIONS(2754), - [anon_sym___cdecl] = ACTIONS(2754), - [anon_sym___clrcall] = ACTIONS(2754), - [anon_sym___stdcall] = ACTIONS(2754), - [anon_sym___fastcall] = ACTIONS(2754), - [anon_sym___thiscall] = ACTIONS(2754), - [anon_sym___vectorcall] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_signed] = ACTIONS(2754), - [anon_sym_unsigned] = ACTIONS(2754), - [anon_sym_long] = ACTIONS(2754), - [anon_sym_short] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_static] = ACTIONS(2754), - [anon_sym_register] = ACTIONS(2754), - [anon_sym_inline] = ACTIONS(2754), - [anon_sym___inline] = ACTIONS(2754), - [anon_sym___inline__] = ACTIONS(2754), - [anon_sym___forceinline] = ACTIONS(2754), - [anon_sym_thread_local] = ACTIONS(2754), - [anon_sym___thread] = ACTIONS(2754), - [anon_sym_const] = ACTIONS(2754), - [anon_sym_constexpr] = ACTIONS(2754), - [anon_sym_volatile] = ACTIONS(2754), - [anon_sym_restrict] = ACTIONS(2754), - [anon_sym___restrict__] = ACTIONS(2754), - [anon_sym__Atomic] = ACTIONS(2754), - [anon_sym__Noreturn] = ACTIONS(2754), - [anon_sym_noreturn] = ACTIONS(2754), - [anon_sym_mutable] = ACTIONS(2754), - [anon_sym_constinit] = ACTIONS(2754), - [anon_sym_consteval] = ACTIONS(2754), - [sym_primitive_type] = ACTIONS(2754), - [anon_sym_enum] = ACTIONS(2754), - [anon_sym_class] = ACTIONS(2754), - [anon_sym_struct] = ACTIONS(2754), - [anon_sym_union] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_else] = ACTIONS(3644), - [anon_sym_switch] = ACTIONS(2754), - [anon_sym_case] = ACTIONS(2754), - [anon_sym_default] = ACTIONS(2754), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_break] = ACTIONS(2754), - [anon_sym_continue] = ACTIONS(2754), - [anon_sym_goto] = ACTIONS(2754), - [anon_sym_not] = ACTIONS(2754), - [anon_sym_compl] = ACTIONS(2754), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_sizeof] = ACTIONS(2754), - [anon_sym___alignof__] = ACTIONS(2754), - [anon_sym___alignof] = ACTIONS(2754), - [anon_sym__alignof] = ACTIONS(2754), - [anon_sym_alignof] = ACTIONS(2754), - [anon_sym__Alignof] = ACTIONS(2754), - [anon_sym_offsetof] = ACTIONS(2754), - [anon_sym__Generic] = ACTIONS(2754), - [anon_sym_asm] = ACTIONS(2754), - [anon_sym___asm__] = ACTIONS(2754), - [sym_number_literal] = ACTIONS(2756), - [anon_sym_L_SQUOTE] = ACTIONS(2756), - [anon_sym_u_SQUOTE] = ACTIONS(2756), - [anon_sym_U_SQUOTE] = ACTIONS(2756), - [anon_sym_u8_SQUOTE] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_L_DQUOTE] = ACTIONS(2756), - [anon_sym_u_DQUOTE] = ACTIONS(2756), - [anon_sym_U_DQUOTE] = ACTIONS(2756), - [anon_sym_u8_DQUOTE] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [sym_true] = ACTIONS(2754), - [sym_false] = ACTIONS(2754), - [anon_sym_NULL] = ACTIONS(2754), - [anon_sym_nullptr] = ACTIONS(2754), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2754), - [anon_sym_decltype] = ACTIONS(2754), - [anon_sym_virtual] = ACTIONS(2754), - [anon_sym_alignas] = ACTIONS(2754), - [anon_sym_explicit] = ACTIONS(2754), - [anon_sym_typename] = ACTIONS(2754), - [anon_sym_template] = ACTIONS(2754), - [anon_sym_operator] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_delete] = ACTIONS(2754), - [anon_sym_throw] = ACTIONS(2754), - [anon_sym_namespace] = ACTIONS(2754), - [anon_sym_using] = ACTIONS(2754), - [anon_sym_static_assert] = ACTIONS(2754), - [anon_sym_concept] = ACTIONS(2754), - [anon_sym_co_return] = ACTIONS(2754), - [anon_sym_co_yield] = ACTIONS(2754), - [anon_sym_R_DQUOTE] = ACTIONS(2756), - [anon_sym_LR_DQUOTE] = ACTIONS(2756), - [anon_sym_uR_DQUOTE] = ACTIONS(2756), - [anon_sym_UR_DQUOTE] = ACTIONS(2756), - [anon_sym_u8R_DQUOTE] = ACTIONS(2756), - [anon_sym_co_await] = ACTIONS(2754), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_requires] = ACTIONS(2754), - [sym_this] = ACTIONS(2754), - }, - [780] = { - [sym_identifier] = ACTIONS(3418), - [aux_sym_preproc_include_token1] = ACTIONS(3418), - [aux_sym_preproc_def_token1] = ACTIONS(3418), - [aux_sym_preproc_if_token1] = ACTIONS(3418), - [aux_sym_preproc_if_token2] = ACTIONS(3418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3418), - [aux_sym_preproc_else_token1] = ACTIONS(3418), - [aux_sym_preproc_elif_token1] = ACTIONS(3418), - [sym_preproc_directive] = ACTIONS(3418), - [anon_sym_LPAREN2] = ACTIONS(3420), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_TILDE] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3418), - [anon_sym_PLUS] = ACTIONS(3418), - [anon_sym_STAR] = ACTIONS(3420), - [anon_sym_AMP_AMP] = ACTIONS(3420), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_SEMI] = ACTIONS(3420), - [anon_sym___extension__] = ACTIONS(3418), - [anon_sym_typedef] = ACTIONS(3418), - [anon_sym_extern] = ACTIONS(3418), - [anon_sym___attribute__] = ACTIONS(3418), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3420), - [anon_sym___declspec] = ACTIONS(3418), - [anon_sym___based] = ACTIONS(3418), - [anon_sym___cdecl] = ACTIONS(3418), - [anon_sym___clrcall] = ACTIONS(3418), - [anon_sym___stdcall] = ACTIONS(3418), - [anon_sym___fastcall] = ACTIONS(3418), - [anon_sym___thiscall] = ACTIONS(3418), - [anon_sym___vectorcall] = ACTIONS(3418), - [anon_sym_LBRACE] = ACTIONS(3420), - [anon_sym_signed] = ACTIONS(3418), - [anon_sym_unsigned] = ACTIONS(3418), - [anon_sym_long] = ACTIONS(3418), - [anon_sym_short] = ACTIONS(3418), - [anon_sym_LBRACK] = ACTIONS(3418), - [anon_sym_static] = ACTIONS(3418), - [anon_sym_register] = ACTIONS(3418), - [anon_sym_inline] = ACTIONS(3418), - [anon_sym___inline] = ACTIONS(3418), - [anon_sym___inline__] = ACTIONS(3418), - [anon_sym___forceinline] = ACTIONS(3418), - [anon_sym_thread_local] = ACTIONS(3418), - [anon_sym___thread] = ACTIONS(3418), - [anon_sym_const] = ACTIONS(3418), - [anon_sym_constexpr] = ACTIONS(3418), - [anon_sym_volatile] = ACTIONS(3418), - [anon_sym_restrict] = ACTIONS(3418), - [anon_sym___restrict__] = ACTIONS(3418), - [anon_sym__Atomic] = ACTIONS(3418), - [anon_sym__Noreturn] = ACTIONS(3418), - [anon_sym_noreturn] = ACTIONS(3418), - [anon_sym_mutable] = ACTIONS(3418), - [anon_sym_constinit] = ACTIONS(3418), - [anon_sym_consteval] = ACTIONS(3418), - [sym_primitive_type] = ACTIONS(3418), - [anon_sym_enum] = ACTIONS(3418), - [anon_sym_class] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(3418), - [anon_sym_union] = ACTIONS(3418), - [anon_sym_if] = ACTIONS(3418), - [anon_sym_switch] = ACTIONS(3418), - [anon_sym_case] = ACTIONS(3418), - [anon_sym_default] = ACTIONS(3418), - [anon_sym_while] = ACTIONS(3418), - [anon_sym_do] = ACTIONS(3418), - [anon_sym_for] = ACTIONS(3418), - [anon_sym_return] = ACTIONS(3418), - [anon_sym_break] = ACTIONS(3418), - [anon_sym_continue] = ACTIONS(3418), - [anon_sym_goto] = ACTIONS(3418), - [anon_sym_not] = ACTIONS(3418), - [anon_sym_compl] = ACTIONS(3418), - [anon_sym_DASH_DASH] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3420), - [anon_sym_sizeof] = ACTIONS(3418), - [anon_sym___alignof__] = ACTIONS(3418), - [anon_sym___alignof] = ACTIONS(3418), - [anon_sym__alignof] = ACTIONS(3418), - [anon_sym_alignof] = ACTIONS(3418), - [anon_sym__Alignof] = ACTIONS(3418), - [anon_sym_offsetof] = ACTIONS(3418), - [anon_sym__Generic] = ACTIONS(3418), - [anon_sym_asm] = ACTIONS(3418), - [anon_sym___asm__] = ACTIONS(3418), - [sym_number_literal] = ACTIONS(3420), - [anon_sym_L_SQUOTE] = ACTIONS(3420), - [anon_sym_u_SQUOTE] = ACTIONS(3420), - [anon_sym_U_SQUOTE] = ACTIONS(3420), - [anon_sym_u8_SQUOTE] = ACTIONS(3420), - [anon_sym_SQUOTE] = ACTIONS(3420), - [anon_sym_L_DQUOTE] = ACTIONS(3420), - [anon_sym_u_DQUOTE] = ACTIONS(3420), - [anon_sym_U_DQUOTE] = ACTIONS(3420), - [anon_sym_u8_DQUOTE] = ACTIONS(3420), - [anon_sym_DQUOTE] = ACTIONS(3420), - [sym_true] = ACTIONS(3418), - [sym_false] = ACTIONS(3418), - [anon_sym_NULL] = ACTIONS(3418), - [anon_sym_nullptr] = ACTIONS(3418), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3418), - [anon_sym_decltype] = ACTIONS(3418), - [anon_sym_virtual] = ACTIONS(3418), - [anon_sym_alignas] = ACTIONS(3418), - [anon_sym_explicit] = ACTIONS(3418), - [anon_sym_typename] = ACTIONS(3418), - [anon_sym_template] = ACTIONS(3418), - [anon_sym_operator] = ACTIONS(3418), - [anon_sym_try] = ACTIONS(3418), - [anon_sym_delete] = ACTIONS(3418), - [anon_sym_throw] = ACTIONS(3418), - [anon_sym_namespace] = ACTIONS(3418), - [anon_sym_using] = ACTIONS(3418), - [anon_sym_static_assert] = ACTIONS(3418), - [anon_sym_concept] = ACTIONS(3418), - [anon_sym_co_return] = ACTIONS(3418), - [anon_sym_co_yield] = ACTIONS(3418), - [anon_sym_R_DQUOTE] = ACTIONS(3420), - [anon_sym_LR_DQUOTE] = ACTIONS(3420), - [anon_sym_uR_DQUOTE] = ACTIONS(3420), - [anon_sym_UR_DQUOTE] = ACTIONS(3420), - [anon_sym_u8R_DQUOTE] = ACTIONS(3420), - [anon_sym_co_await] = ACTIONS(3418), - [anon_sym_new] = ACTIONS(3418), - [anon_sym_requires] = ACTIONS(3418), - [sym_this] = ACTIONS(3418), - }, - [781] = { - [sym_identifier] = ACTIONS(3454), - [aux_sym_preproc_include_token1] = ACTIONS(3454), - [aux_sym_preproc_def_token1] = ACTIONS(3454), - [aux_sym_preproc_if_token1] = ACTIONS(3454), - [aux_sym_preproc_if_token2] = ACTIONS(3454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3454), - [aux_sym_preproc_else_token1] = ACTIONS(3454), - [aux_sym_preproc_elif_token1] = ACTIONS(3454), - [sym_preproc_directive] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3456), - [anon_sym_BANG] = ACTIONS(3456), - [anon_sym_TILDE] = ACTIONS(3456), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_STAR] = ACTIONS(3456), - [anon_sym_AMP_AMP] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3456), - [anon_sym___extension__] = ACTIONS(3454), - [anon_sym_typedef] = ACTIONS(3454), - [anon_sym_extern] = ACTIONS(3454), - [anon_sym___attribute__] = ACTIONS(3454), - [anon_sym_COLON_COLON] = ACTIONS(3456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3456), - [anon_sym___declspec] = ACTIONS(3454), - [anon_sym___based] = ACTIONS(3454), - [anon_sym___cdecl] = ACTIONS(3454), - [anon_sym___clrcall] = ACTIONS(3454), - [anon_sym___stdcall] = ACTIONS(3454), - [anon_sym___fastcall] = ACTIONS(3454), - [anon_sym___thiscall] = ACTIONS(3454), - [anon_sym___vectorcall] = ACTIONS(3454), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_signed] = ACTIONS(3454), - [anon_sym_unsigned] = ACTIONS(3454), - [anon_sym_long] = ACTIONS(3454), - [anon_sym_short] = ACTIONS(3454), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3454), - [anon_sym_register] = ACTIONS(3454), - [anon_sym_inline] = ACTIONS(3454), - [anon_sym___inline] = ACTIONS(3454), - [anon_sym___inline__] = ACTIONS(3454), - [anon_sym___forceinline] = ACTIONS(3454), - [anon_sym_thread_local] = ACTIONS(3454), - [anon_sym___thread] = ACTIONS(3454), - [anon_sym_const] = ACTIONS(3454), - [anon_sym_constexpr] = ACTIONS(3454), - [anon_sym_volatile] = ACTIONS(3454), - [anon_sym_restrict] = ACTIONS(3454), - [anon_sym___restrict__] = ACTIONS(3454), - [anon_sym__Atomic] = ACTIONS(3454), - [anon_sym__Noreturn] = ACTIONS(3454), - [anon_sym_noreturn] = ACTIONS(3454), - [anon_sym_mutable] = ACTIONS(3454), - [anon_sym_constinit] = ACTIONS(3454), - [anon_sym_consteval] = ACTIONS(3454), - [sym_primitive_type] = ACTIONS(3454), - [anon_sym_enum] = ACTIONS(3454), - [anon_sym_class] = ACTIONS(3454), - [anon_sym_struct] = ACTIONS(3454), - [anon_sym_union] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_switch] = ACTIONS(3454), - [anon_sym_case] = ACTIONS(3454), - [anon_sym_default] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_break] = ACTIONS(3454), - [anon_sym_continue] = ACTIONS(3454), - [anon_sym_goto] = ACTIONS(3454), - [anon_sym_not] = ACTIONS(3454), - [anon_sym_compl] = ACTIONS(3454), - [anon_sym_DASH_DASH] = ACTIONS(3456), - [anon_sym_PLUS_PLUS] = ACTIONS(3456), - [anon_sym_sizeof] = ACTIONS(3454), - [anon_sym___alignof__] = ACTIONS(3454), - [anon_sym___alignof] = ACTIONS(3454), - [anon_sym__alignof] = ACTIONS(3454), - [anon_sym_alignof] = ACTIONS(3454), - [anon_sym__Alignof] = ACTIONS(3454), - [anon_sym_offsetof] = ACTIONS(3454), - [anon_sym__Generic] = ACTIONS(3454), - [anon_sym_asm] = ACTIONS(3454), - [anon_sym___asm__] = ACTIONS(3454), - [sym_number_literal] = ACTIONS(3456), - [anon_sym_L_SQUOTE] = ACTIONS(3456), - [anon_sym_u_SQUOTE] = ACTIONS(3456), - [anon_sym_U_SQUOTE] = ACTIONS(3456), - [anon_sym_u8_SQUOTE] = ACTIONS(3456), - [anon_sym_SQUOTE] = ACTIONS(3456), - [anon_sym_L_DQUOTE] = ACTIONS(3456), - [anon_sym_u_DQUOTE] = ACTIONS(3456), - [anon_sym_U_DQUOTE] = ACTIONS(3456), - [anon_sym_u8_DQUOTE] = ACTIONS(3456), - [anon_sym_DQUOTE] = ACTIONS(3456), - [sym_true] = ACTIONS(3454), - [sym_false] = ACTIONS(3454), - [anon_sym_NULL] = ACTIONS(3454), - [anon_sym_nullptr] = ACTIONS(3454), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3454), - [anon_sym_decltype] = ACTIONS(3454), - [anon_sym_virtual] = ACTIONS(3454), - [anon_sym_alignas] = ACTIONS(3454), - [anon_sym_explicit] = ACTIONS(3454), - [anon_sym_typename] = ACTIONS(3454), - [anon_sym_template] = ACTIONS(3454), - [anon_sym_operator] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_delete] = ACTIONS(3454), - [anon_sym_throw] = ACTIONS(3454), - [anon_sym_namespace] = ACTIONS(3454), - [anon_sym_using] = ACTIONS(3454), - [anon_sym_static_assert] = ACTIONS(3454), - [anon_sym_concept] = ACTIONS(3454), - [anon_sym_co_return] = ACTIONS(3454), - [anon_sym_co_yield] = ACTIONS(3454), - [anon_sym_R_DQUOTE] = ACTIONS(3456), - [anon_sym_LR_DQUOTE] = ACTIONS(3456), - [anon_sym_uR_DQUOTE] = ACTIONS(3456), - [anon_sym_UR_DQUOTE] = ACTIONS(3456), - [anon_sym_u8R_DQUOTE] = ACTIONS(3456), - [anon_sym_co_await] = ACTIONS(3454), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_requires] = ACTIONS(3454), - [sym_this] = ACTIONS(3454), - }, - [782] = { - [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), - [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_extern] = ACTIONS(3304), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3304), - [anon_sym_alignas] = 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_using] = 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), - }, - [783] = { - [sym_identifier] = ACTIONS(3414), - [aux_sym_preproc_include_token1] = ACTIONS(3414), - [aux_sym_preproc_def_token1] = ACTIONS(3414), - [aux_sym_preproc_if_token1] = ACTIONS(3414), - [aux_sym_preproc_if_token2] = ACTIONS(3414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3414), - [aux_sym_preproc_else_token1] = ACTIONS(3414), - [aux_sym_preproc_elif_token1] = ACTIONS(3414), - [sym_preproc_directive] = ACTIONS(3414), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(3416), - [anon_sym_TILDE] = ACTIONS(3416), - [anon_sym_DASH] = ACTIONS(3414), - [anon_sym_PLUS] = ACTIONS(3414), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3416), - [anon_sym___extension__] = ACTIONS(3414), - [anon_sym_typedef] = ACTIONS(3414), - [anon_sym_extern] = ACTIONS(3414), - [anon_sym___attribute__] = ACTIONS(3414), - [anon_sym_COLON_COLON] = ACTIONS(3416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3416), - [anon_sym___declspec] = ACTIONS(3414), - [anon_sym___based] = ACTIONS(3414), - [anon_sym___cdecl] = ACTIONS(3414), - [anon_sym___clrcall] = ACTIONS(3414), - [anon_sym___stdcall] = ACTIONS(3414), - [anon_sym___fastcall] = ACTIONS(3414), - [anon_sym___thiscall] = ACTIONS(3414), - [anon_sym___vectorcall] = ACTIONS(3414), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_signed] = ACTIONS(3414), - [anon_sym_unsigned] = ACTIONS(3414), - [anon_sym_long] = ACTIONS(3414), - [anon_sym_short] = ACTIONS(3414), - [anon_sym_LBRACK] = ACTIONS(3414), - [anon_sym_static] = ACTIONS(3414), - [anon_sym_register] = ACTIONS(3414), - [anon_sym_inline] = ACTIONS(3414), - [anon_sym___inline] = ACTIONS(3414), - [anon_sym___inline__] = ACTIONS(3414), - [anon_sym___forceinline] = ACTIONS(3414), - [anon_sym_thread_local] = ACTIONS(3414), - [anon_sym___thread] = ACTIONS(3414), - [anon_sym_const] = ACTIONS(3414), - [anon_sym_constexpr] = ACTIONS(3414), - [anon_sym_volatile] = ACTIONS(3414), - [anon_sym_restrict] = ACTIONS(3414), - [anon_sym___restrict__] = ACTIONS(3414), - [anon_sym__Atomic] = ACTIONS(3414), - [anon_sym__Noreturn] = ACTIONS(3414), - [anon_sym_noreturn] = ACTIONS(3414), - [anon_sym_mutable] = ACTIONS(3414), - [anon_sym_constinit] = ACTIONS(3414), - [anon_sym_consteval] = ACTIONS(3414), - [sym_primitive_type] = ACTIONS(3414), - [anon_sym_enum] = ACTIONS(3414), - [anon_sym_class] = ACTIONS(3414), - [anon_sym_struct] = ACTIONS(3414), - [anon_sym_union] = ACTIONS(3414), - [anon_sym_if] = ACTIONS(3414), - [anon_sym_switch] = ACTIONS(3414), - [anon_sym_case] = ACTIONS(3414), - [anon_sym_default] = ACTIONS(3414), - [anon_sym_while] = ACTIONS(3414), - [anon_sym_do] = ACTIONS(3414), - [anon_sym_for] = ACTIONS(3414), - [anon_sym_return] = ACTIONS(3414), - [anon_sym_break] = ACTIONS(3414), - [anon_sym_continue] = ACTIONS(3414), - [anon_sym_goto] = ACTIONS(3414), - [anon_sym_not] = ACTIONS(3414), - [anon_sym_compl] = ACTIONS(3414), - [anon_sym_DASH_DASH] = ACTIONS(3416), - [anon_sym_PLUS_PLUS] = ACTIONS(3416), - [anon_sym_sizeof] = ACTIONS(3414), - [anon_sym___alignof__] = ACTIONS(3414), - [anon_sym___alignof] = ACTIONS(3414), - [anon_sym__alignof] = ACTIONS(3414), - [anon_sym_alignof] = ACTIONS(3414), - [anon_sym__Alignof] = ACTIONS(3414), - [anon_sym_offsetof] = ACTIONS(3414), - [anon_sym__Generic] = ACTIONS(3414), - [anon_sym_asm] = ACTIONS(3414), - [anon_sym___asm__] = ACTIONS(3414), - [sym_number_literal] = ACTIONS(3416), - [anon_sym_L_SQUOTE] = ACTIONS(3416), - [anon_sym_u_SQUOTE] = ACTIONS(3416), - [anon_sym_U_SQUOTE] = ACTIONS(3416), - [anon_sym_u8_SQUOTE] = ACTIONS(3416), - [anon_sym_SQUOTE] = ACTIONS(3416), - [anon_sym_L_DQUOTE] = ACTIONS(3416), - [anon_sym_u_DQUOTE] = ACTIONS(3416), - [anon_sym_U_DQUOTE] = ACTIONS(3416), - [anon_sym_u8_DQUOTE] = ACTIONS(3416), - [anon_sym_DQUOTE] = ACTIONS(3416), - [sym_true] = ACTIONS(3414), - [sym_false] = ACTIONS(3414), - [anon_sym_NULL] = ACTIONS(3414), - [anon_sym_nullptr] = ACTIONS(3414), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3414), - [anon_sym_decltype] = ACTIONS(3414), - [anon_sym_virtual] = ACTIONS(3414), - [anon_sym_alignas] = ACTIONS(3414), - [anon_sym_explicit] = ACTIONS(3414), - [anon_sym_typename] = ACTIONS(3414), - [anon_sym_template] = ACTIONS(3414), - [anon_sym_operator] = ACTIONS(3414), - [anon_sym_try] = ACTIONS(3414), - [anon_sym_delete] = ACTIONS(3414), - [anon_sym_throw] = ACTIONS(3414), - [anon_sym_namespace] = ACTIONS(3414), - [anon_sym_using] = ACTIONS(3414), - [anon_sym_static_assert] = ACTIONS(3414), - [anon_sym_concept] = ACTIONS(3414), - [anon_sym_co_return] = ACTIONS(3414), - [anon_sym_co_yield] = ACTIONS(3414), - [anon_sym_R_DQUOTE] = ACTIONS(3416), - [anon_sym_LR_DQUOTE] = ACTIONS(3416), - [anon_sym_uR_DQUOTE] = ACTIONS(3416), - [anon_sym_UR_DQUOTE] = ACTIONS(3416), - [anon_sym_u8R_DQUOTE] = ACTIONS(3416), - [anon_sym_co_await] = ACTIONS(3414), - [anon_sym_new] = ACTIONS(3414), - [anon_sym_requires] = ACTIONS(3414), - [sym_this] = ACTIONS(3414), - }, - [784] = { - [sym_else_clause] = STATE(1216), - [ts_builtin_sym_end] = ACTIONS(2764), - [sym_identifier] = ACTIONS(2762), - [aux_sym_preproc_include_token1] = ACTIONS(2762), - [aux_sym_preproc_def_token1] = ACTIONS(2762), - [aux_sym_preproc_if_token1] = ACTIONS(2762), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), - [sym_preproc_directive] = ACTIONS(2762), - [anon_sym_LPAREN2] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2762), - [anon_sym_PLUS] = ACTIONS(2762), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_AMP_AMP] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2764), - [anon_sym___extension__] = ACTIONS(2762), - [anon_sym_typedef] = ACTIONS(2762), - [anon_sym_extern] = ACTIONS(2762), - [anon_sym___attribute__] = ACTIONS(2762), - [anon_sym_COLON_COLON] = ACTIONS(2764), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), - [anon_sym___declspec] = ACTIONS(2762), - [anon_sym___based] = ACTIONS(2762), - [anon_sym___cdecl] = ACTIONS(2762), - [anon_sym___clrcall] = ACTIONS(2762), - [anon_sym___stdcall] = ACTIONS(2762), - [anon_sym___fastcall] = ACTIONS(2762), - [anon_sym___thiscall] = ACTIONS(2762), - [anon_sym___vectorcall] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_signed] = ACTIONS(2762), - [anon_sym_unsigned] = ACTIONS(2762), - [anon_sym_long] = ACTIONS(2762), - [anon_sym_short] = ACTIONS(2762), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_static] = ACTIONS(2762), - [anon_sym_register] = ACTIONS(2762), - [anon_sym_inline] = ACTIONS(2762), - [anon_sym___inline] = ACTIONS(2762), - [anon_sym___inline__] = ACTIONS(2762), - [anon_sym___forceinline] = ACTIONS(2762), - [anon_sym_thread_local] = ACTIONS(2762), - [anon_sym___thread] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2762), - [anon_sym_constexpr] = ACTIONS(2762), - [anon_sym_volatile] = ACTIONS(2762), - [anon_sym_restrict] = ACTIONS(2762), - [anon_sym___restrict__] = ACTIONS(2762), - [anon_sym__Atomic] = ACTIONS(2762), - [anon_sym__Noreturn] = ACTIONS(2762), - [anon_sym_noreturn] = ACTIONS(2762), - [anon_sym_mutable] = ACTIONS(2762), - [anon_sym_constinit] = ACTIONS(2762), - [anon_sym_consteval] = ACTIONS(2762), - [sym_primitive_type] = ACTIONS(2762), - [anon_sym_enum] = ACTIONS(2762), - [anon_sym_class] = ACTIONS(2762), - [anon_sym_struct] = ACTIONS(2762), - [anon_sym_union] = ACTIONS(2762), - [anon_sym_if] = ACTIONS(2762), - [anon_sym_else] = ACTIONS(3644), - [anon_sym_switch] = ACTIONS(2762), - [anon_sym_case] = ACTIONS(2762), - [anon_sym_default] = ACTIONS(2762), - [anon_sym_while] = ACTIONS(2762), - [anon_sym_do] = ACTIONS(2762), - [anon_sym_for] = ACTIONS(2762), - [anon_sym_return] = ACTIONS(2762), - [anon_sym_break] = ACTIONS(2762), - [anon_sym_continue] = ACTIONS(2762), - [anon_sym_goto] = ACTIONS(2762), - [anon_sym_not] = ACTIONS(2762), - [anon_sym_compl] = ACTIONS(2762), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2764), - [anon_sym_sizeof] = ACTIONS(2762), - [anon_sym___alignof__] = ACTIONS(2762), - [anon_sym___alignof] = ACTIONS(2762), - [anon_sym__alignof] = ACTIONS(2762), - [anon_sym_alignof] = ACTIONS(2762), - [anon_sym__Alignof] = ACTIONS(2762), - [anon_sym_offsetof] = ACTIONS(2762), - [anon_sym__Generic] = ACTIONS(2762), - [anon_sym_asm] = ACTIONS(2762), - [anon_sym___asm__] = ACTIONS(2762), - [sym_number_literal] = ACTIONS(2764), - [anon_sym_L_SQUOTE] = ACTIONS(2764), - [anon_sym_u_SQUOTE] = ACTIONS(2764), - [anon_sym_U_SQUOTE] = ACTIONS(2764), - [anon_sym_u8_SQUOTE] = ACTIONS(2764), - [anon_sym_SQUOTE] = ACTIONS(2764), - [anon_sym_L_DQUOTE] = ACTIONS(2764), - [anon_sym_u_DQUOTE] = ACTIONS(2764), - [anon_sym_U_DQUOTE] = ACTIONS(2764), - [anon_sym_u8_DQUOTE] = ACTIONS(2764), - [anon_sym_DQUOTE] = ACTIONS(2764), - [sym_true] = ACTIONS(2762), - [sym_false] = ACTIONS(2762), - [anon_sym_NULL] = ACTIONS(2762), - [anon_sym_nullptr] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2762), - [anon_sym_decltype] = ACTIONS(2762), - [anon_sym_virtual] = ACTIONS(2762), - [anon_sym_alignas] = ACTIONS(2762), - [anon_sym_explicit] = ACTIONS(2762), - [anon_sym_typename] = ACTIONS(2762), - [anon_sym_template] = ACTIONS(2762), - [anon_sym_operator] = ACTIONS(2762), - [anon_sym_try] = ACTIONS(2762), - [anon_sym_delete] = ACTIONS(2762), - [anon_sym_throw] = ACTIONS(2762), - [anon_sym_namespace] = ACTIONS(2762), - [anon_sym_using] = ACTIONS(2762), - [anon_sym_static_assert] = ACTIONS(2762), - [anon_sym_concept] = ACTIONS(2762), - [anon_sym_co_return] = ACTIONS(2762), - [anon_sym_co_yield] = ACTIONS(2762), - [anon_sym_R_DQUOTE] = ACTIONS(2764), - [anon_sym_LR_DQUOTE] = ACTIONS(2764), - [anon_sym_uR_DQUOTE] = ACTIONS(2764), - [anon_sym_UR_DQUOTE] = ACTIONS(2764), - [anon_sym_u8R_DQUOTE] = ACTIONS(2764), - [anon_sym_co_await] = ACTIONS(2762), - [anon_sym_new] = ACTIONS(2762), - [anon_sym_requires] = ACTIONS(2762), - [sym_this] = ACTIONS(2762), - }, - [785] = { - [sym_identifier] = ACTIONS(3410), - [aux_sym_preproc_include_token1] = ACTIONS(3410), - [aux_sym_preproc_def_token1] = ACTIONS(3410), - [aux_sym_preproc_if_token1] = ACTIONS(3410), - [aux_sym_preproc_if_token2] = ACTIONS(3410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3410), - [aux_sym_preproc_else_token1] = ACTIONS(3410), - [aux_sym_preproc_elif_token1] = ACTIONS(3410), - [sym_preproc_directive] = ACTIONS(3410), - [anon_sym_LPAREN2] = ACTIONS(3412), - [anon_sym_BANG] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3412), - [anon_sym_DASH] = ACTIONS(3410), - [anon_sym_PLUS] = ACTIONS(3410), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3410), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym___extension__] = ACTIONS(3410), - [anon_sym_typedef] = ACTIONS(3410), - [anon_sym_extern] = ACTIONS(3410), - [anon_sym___attribute__] = ACTIONS(3410), - [anon_sym_COLON_COLON] = ACTIONS(3412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), - [anon_sym___declspec] = ACTIONS(3410), - [anon_sym___based] = ACTIONS(3410), - [anon_sym___cdecl] = ACTIONS(3410), - [anon_sym___clrcall] = ACTIONS(3410), - [anon_sym___stdcall] = ACTIONS(3410), - [anon_sym___fastcall] = ACTIONS(3410), - [anon_sym___thiscall] = ACTIONS(3410), - [anon_sym___vectorcall] = ACTIONS(3410), - [anon_sym_LBRACE] = ACTIONS(3412), - [anon_sym_signed] = ACTIONS(3410), - [anon_sym_unsigned] = ACTIONS(3410), - [anon_sym_long] = ACTIONS(3410), - [anon_sym_short] = ACTIONS(3410), - [anon_sym_LBRACK] = ACTIONS(3410), - [anon_sym_static] = ACTIONS(3410), - [anon_sym_register] = ACTIONS(3410), - [anon_sym_inline] = ACTIONS(3410), - [anon_sym___inline] = ACTIONS(3410), - [anon_sym___inline__] = ACTIONS(3410), - [anon_sym___forceinline] = ACTIONS(3410), - [anon_sym_thread_local] = ACTIONS(3410), - [anon_sym___thread] = ACTIONS(3410), - [anon_sym_const] = ACTIONS(3410), - [anon_sym_constexpr] = ACTIONS(3410), - [anon_sym_volatile] = ACTIONS(3410), - [anon_sym_restrict] = ACTIONS(3410), - [anon_sym___restrict__] = ACTIONS(3410), - [anon_sym__Atomic] = ACTIONS(3410), - [anon_sym__Noreturn] = ACTIONS(3410), - [anon_sym_noreturn] = ACTIONS(3410), - [anon_sym_mutable] = ACTIONS(3410), - [anon_sym_constinit] = ACTIONS(3410), - [anon_sym_consteval] = ACTIONS(3410), - [sym_primitive_type] = ACTIONS(3410), - [anon_sym_enum] = ACTIONS(3410), - [anon_sym_class] = ACTIONS(3410), - [anon_sym_struct] = ACTIONS(3410), - [anon_sym_union] = ACTIONS(3410), - [anon_sym_if] = ACTIONS(3410), - [anon_sym_switch] = ACTIONS(3410), - [anon_sym_case] = ACTIONS(3410), - [anon_sym_default] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(3410), - [anon_sym_do] = ACTIONS(3410), - [anon_sym_for] = ACTIONS(3410), - [anon_sym_return] = ACTIONS(3410), - [anon_sym_break] = ACTIONS(3410), - [anon_sym_continue] = ACTIONS(3410), - [anon_sym_goto] = ACTIONS(3410), - [anon_sym_not] = ACTIONS(3410), - [anon_sym_compl] = ACTIONS(3410), - [anon_sym_DASH_DASH] = ACTIONS(3412), - [anon_sym_PLUS_PLUS] = ACTIONS(3412), - [anon_sym_sizeof] = ACTIONS(3410), - [anon_sym___alignof__] = ACTIONS(3410), - [anon_sym___alignof] = ACTIONS(3410), - [anon_sym__alignof] = ACTIONS(3410), - [anon_sym_alignof] = ACTIONS(3410), - [anon_sym__Alignof] = ACTIONS(3410), - [anon_sym_offsetof] = ACTIONS(3410), - [anon_sym__Generic] = ACTIONS(3410), - [anon_sym_asm] = ACTIONS(3410), - [anon_sym___asm__] = ACTIONS(3410), - [sym_number_literal] = ACTIONS(3412), - [anon_sym_L_SQUOTE] = ACTIONS(3412), - [anon_sym_u_SQUOTE] = ACTIONS(3412), - [anon_sym_U_SQUOTE] = ACTIONS(3412), - [anon_sym_u8_SQUOTE] = ACTIONS(3412), - [anon_sym_SQUOTE] = ACTIONS(3412), - [anon_sym_L_DQUOTE] = ACTIONS(3412), - [anon_sym_u_DQUOTE] = ACTIONS(3412), - [anon_sym_U_DQUOTE] = ACTIONS(3412), - [anon_sym_u8_DQUOTE] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [sym_true] = ACTIONS(3410), - [sym_false] = ACTIONS(3410), - [anon_sym_NULL] = ACTIONS(3410), - [anon_sym_nullptr] = ACTIONS(3410), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3410), - [anon_sym_decltype] = ACTIONS(3410), - [anon_sym_virtual] = ACTIONS(3410), - [anon_sym_alignas] = ACTIONS(3410), - [anon_sym_explicit] = ACTIONS(3410), - [anon_sym_typename] = ACTIONS(3410), - [anon_sym_template] = ACTIONS(3410), - [anon_sym_operator] = ACTIONS(3410), - [anon_sym_try] = ACTIONS(3410), - [anon_sym_delete] = ACTIONS(3410), - [anon_sym_throw] = ACTIONS(3410), - [anon_sym_namespace] = ACTIONS(3410), - [anon_sym_using] = ACTIONS(3410), - [anon_sym_static_assert] = ACTIONS(3410), - [anon_sym_concept] = ACTIONS(3410), - [anon_sym_co_return] = ACTIONS(3410), - [anon_sym_co_yield] = ACTIONS(3410), - [anon_sym_R_DQUOTE] = ACTIONS(3412), - [anon_sym_LR_DQUOTE] = ACTIONS(3412), - [anon_sym_uR_DQUOTE] = ACTIONS(3412), - [anon_sym_UR_DQUOTE] = ACTIONS(3412), - [anon_sym_u8R_DQUOTE] = ACTIONS(3412), - [anon_sym_co_await] = ACTIONS(3410), - [anon_sym_new] = ACTIONS(3410), - [anon_sym_requires] = ACTIONS(3410), - [sym_this] = ACTIONS(3410), - }, - [786] = { - [sym_identifier] = ACTIONS(3366), - [aux_sym_preproc_include_token1] = ACTIONS(3366), - [aux_sym_preproc_def_token1] = ACTIONS(3366), - [aux_sym_preproc_if_token1] = ACTIONS(3366), - [aux_sym_preproc_if_token2] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3366), - [aux_sym_preproc_else_token1] = ACTIONS(3366), - [aux_sym_preproc_elif_token1] = ACTIONS(3366), - [sym_preproc_directive] = ACTIONS(3366), - [anon_sym_LPAREN2] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_AMP_AMP] = ACTIONS(3368), - [anon_sym_AMP] = ACTIONS(3366), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym___extension__] = ACTIONS(3366), - [anon_sym_typedef] = ACTIONS(3366), - [anon_sym_extern] = ACTIONS(3366), - [anon_sym___attribute__] = ACTIONS(3366), - [anon_sym_COLON_COLON] = ACTIONS(3368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3368), - [anon_sym___declspec] = ACTIONS(3366), - [anon_sym___based] = ACTIONS(3366), - [anon_sym___cdecl] = ACTIONS(3366), - [anon_sym___clrcall] = ACTIONS(3366), - [anon_sym___stdcall] = ACTIONS(3366), - [anon_sym___fastcall] = ACTIONS(3366), - [anon_sym___thiscall] = ACTIONS(3366), - [anon_sym___vectorcall] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_signed] = ACTIONS(3366), - [anon_sym_unsigned] = ACTIONS(3366), - [anon_sym_long] = ACTIONS(3366), - [anon_sym_short] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_register] = ACTIONS(3366), - [anon_sym_inline] = ACTIONS(3366), - [anon_sym___inline] = ACTIONS(3366), - [anon_sym___inline__] = ACTIONS(3366), - [anon_sym___forceinline] = ACTIONS(3366), - [anon_sym_thread_local] = ACTIONS(3366), - [anon_sym___thread] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_constexpr] = ACTIONS(3366), - [anon_sym_volatile] = ACTIONS(3366), - [anon_sym_restrict] = ACTIONS(3366), - [anon_sym___restrict__] = ACTIONS(3366), - [anon_sym__Atomic] = ACTIONS(3366), - [anon_sym__Noreturn] = ACTIONS(3366), - [anon_sym_noreturn] = ACTIONS(3366), - [anon_sym_mutable] = ACTIONS(3366), - [anon_sym_constinit] = ACTIONS(3366), - [anon_sym_consteval] = ACTIONS(3366), - [sym_primitive_type] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_struct] = ACTIONS(3366), - [anon_sym_union] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_case] = ACTIONS(3366), - [anon_sym_default] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_goto] = ACTIONS(3366), - [anon_sym_not] = ACTIONS(3366), - [anon_sym_compl] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_sizeof] = ACTIONS(3366), - [anon_sym___alignof__] = ACTIONS(3366), - [anon_sym___alignof] = ACTIONS(3366), - [anon_sym__alignof] = ACTIONS(3366), - [anon_sym_alignof] = ACTIONS(3366), - [anon_sym__Alignof] = ACTIONS(3366), - [anon_sym_offsetof] = ACTIONS(3366), - [anon_sym__Generic] = ACTIONS(3366), - [anon_sym_asm] = ACTIONS(3366), - [anon_sym___asm__] = ACTIONS(3366), - [sym_number_literal] = ACTIONS(3368), - [anon_sym_L_SQUOTE] = ACTIONS(3368), - [anon_sym_u_SQUOTE] = ACTIONS(3368), - [anon_sym_U_SQUOTE] = ACTIONS(3368), - [anon_sym_u8_SQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_L_DQUOTE] = ACTIONS(3368), - [anon_sym_u_DQUOTE] = ACTIONS(3368), - [anon_sym_U_DQUOTE] = ACTIONS(3368), - [anon_sym_u8_DQUOTE] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3366), - [anon_sym_nullptr] = ACTIONS(3366), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3366), - [anon_sym_decltype] = ACTIONS(3366), - [anon_sym_virtual] = ACTIONS(3366), - [anon_sym_alignas] = ACTIONS(3366), - [anon_sym_explicit] = ACTIONS(3366), - [anon_sym_typename] = ACTIONS(3366), - [anon_sym_template] = ACTIONS(3366), - [anon_sym_operator] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_static_assert] = ACTIONS(3366), - [anon_sym_concept] = ACTIONS(3366), - [anon_sym_co_return] = ACTIONS(3366), - [anon_sym_co_yield] = ACTIONS(3366), - [anon_sym_R_DQUOTE] = ACTIONS(3368), - [anon_sym_LR_DQUOTE] = ACTIONS(3368), - [anon_sym_uR_DQUOTE] = ACTIONS(3368), - [anon_sym_UR_DQUOTE] = ACTIONS(3368), - [anon_sym_u8R_DQUOTE] = ACTIONS(3368), - [anon_sym_co_await] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_requires] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), - }, - [787] = { - [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), - [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_extern] = ACTIONS(3115), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3115), - [anon_sym_constinit] = ACTIONS(3115), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3115), - [anon_sym_alignas] = 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_using] = 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), - }, - [788] = { - [sym_identifier] = ACTIONS(3400), - [aux_sym_preproc_include_token1] = ACTIONS(3400), - [aux_sym_preproc_def_token1] = ACTIONS(3400), - [aux_sym_preproc_if_token1] = ACTIONS(3400), - [aux_sym_preproc_if_token2] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3400), - [aux_sym_preproc_else_token1] = ACTIONS(3400), - [aux_sym_preproc_elif_token1] = ACTIONS(3400), - [sym_preproc_directive] = ACTIONS(3400), - [anon_sym_LPAREN2] = ACTIONS(3402), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_TILDE] = ACTIONS(3402), - [anon_sym_DASH] = ACTIONS(3400), - [anon_sym_PLUS] = ACTIONS(3400), - [anon_sym_STAR] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3400), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym___extension__] = ACTIONS(3400), - [anon_sym_typedef] = ACTIONS(3400), - [anon_sym_extern] = ACTIONS(3400), - [anon_sym___attribute__] = ACTIONS(3400), - [anon_sym_COLON_COLON] = ACTIONS(3402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3402), - [anon_sym___declspec] = ACTIONS(3400), - [anon_sym___based] = ACTIONS(3400), - [anon_sym___cdecl] = ACTIONS(3400), - [anon_sym___clrcall] = ACTIONS(3400), - [anon_sym___stdcall] = ACTIONS(3400), - [anon_sym___fastcall] = ACTIONS(3400), - [anon_sym___thiscall] = ACTIONS(3400), - [anon_sym___vectorcall] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3402), - [anon_sym_signed] = ACTIONS(3400), - [anon_sym_unsigned] = ACTIONS(3400), - [anon_sym_long] = ACTIONS(3400), - [anon_sym_short] = ACTIONS(3400), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_static] = ACTIONS(3400), - [anon_sym_register] = ACTIONS(3400), - [anon_sym_inline] = ACTIONS(3400), - [anon_sym___inline] = ACTIONS(3400), - [anon_sym___inline__] = ACTIONS(3400), - [anon_sym___forceinline] = ACTIONS(3400), - [anon_sym_thread_local] = ACTIONS(3400), - [anon_sym___thread] = ACTIONS(3400), - [anon_sym_const] = ACTIONS(3400), - [anon_sym_constexpr] = ACTIONS(3400), - [anon_sym_volatile] = ACTIONS(3400), - [anon_sym_restrict] = ACTIONS(3400), - [anon_sym___restrict__] = ACTIONS(3400), - [anon_sym__Atomic] = ACTIONS(3400), - [anon_sym__Noreturn] = ACTIONS(3400), - [anon_sym_noreturn] = ACTIONS(3400), - [anon_sym_mutable] = ACTIONS(3400), - [anon_sym_constinit] = ACTIONS(3400), - [anon_sym_consteval] = ACTIONS(3400), - [sym_primitive_type] = ACTIONS(3400), - [anon_sym_enum] = ACTIONS(3400), - [anon_sym_class] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3400), - [anon_sym_union] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_switch] = ACTIONS(3400), - [anon_sym_case] = ACTIONS(3400), - [anon_sym_default] = ACTIONS(3400), - [anon_sym_while] = ACTIONS(3400), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3400), - [anon_sym_break] = ACTIONS(3400), - [anon_sym_continue] = ACTIONS(3400), - [anon_sym_goto] = ACTIONS(3400), - [anon_sym_not] = ACTIONS(3400), - [anon_sym_compl] = ACTIONS(3400), - [anon_sym_DASH_DASH] = ACTIONS(3402), - [anon_sym_PLUS_PLUS] = ACTIONS(3402), - [anon_sym_sizeof] = ACTIONS(3400), - [anon_sym___alignof__] = ACTIONS(3400), - [anon_sym___alignof] = ACTIONS(3400), - [anon_sym__alignof] = ACTIONS(3400), - [anon_sym_alignof] = ACTIONS(3400), - [anon_sym__Alignof] = ACTIONS(3400), - [anon_sym_offsetof] = ACTIONS(3400), - [anon_sym__Generic] = ACTIONS(3400), - [anon_sym_asm] = ACTIONS(3400), - [anon_sym___asm__] = ACTIONS(3400), - [sym_number_literal] = ACTIONS(3402), - [anon_sym_L_SQUOTE] = ACTIONS(3402), - [anon_sym_u_SQUOTE] = ACTIONS(3402), - [anon_sym_U_SQUOTE] = ACTIONS(3402), - [anon_sym_u8_SQUOTE] = ACTIONS(3402), - [anon_sym_SQUOTE] = ACTIONS(3402), - [anon_sym_L_DQUOTE] = ACTIONS(3402), - [anon_sym_u_DQUOTE] = ACTIONS(3402), - [anon_sym_U_DQUOTE] = ACTIONS(3402), - [anon_sym_u8_DQUOTE] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [sym_true] = ACTIONS(3400), - [sym_false] = ACTIONS(3400), - [anon_sym_NULL] = ACTIONS(3400), - [anon_sym_nullptr] = ACTIONS(3400), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3400), - [anon_sym_decltype] = ACTIONS(3400), - [anon_sym_virtual] = ACTIONS(3400), - [anon_sym_alignas] = ACTIONS(3400), - [anon_sym_explicit] = ACTIONS(3400), - [anon_sym_typename] = ACTIONS(3400), - [anon_sym_template] = ACTIONS(3400), - [anon_sym_operator] = ACTIONS(3400), - [anon_sym_try] = ACTIONS(3400), - [anon_sym_delete] = ACTIONS(3400), - [anon_sym_throw] = ACTIONS(3400), - [anon_sym_namespace] = ACTIONS(3400), - [anon_sym_using] = ACTIONS(3400), - [anon_sym_static_assert] = ACTIONS(3400), - [anon_sym_concept] = ACTIONS(3400), - [anon_sym_co_return] = ACTIONS(3400), - [anon_sym_co_yield] = ACTIONS(3400), - [anon_sym_R_DQUOTE] = ACTIONS(3402), - [anon_sym_LR_DQUOTE] = ACTIONS(3402), - [anon_sym_uR_DQUOTE] = ACTIONS(3402), - [anon_sym_UR_DQUOTE] = ACTIONS(3402), - [anon_sym_u8R_DQUOTE] = ACTIONS(3402), - [anon_sym_co_await] = ACTIONS(3400), - [anon_sym_new] = ACTIONS(3400), - [anon_sym_requires] = ACTIONS(3400), - [sym_this] = ACTIONS(3400), - }, - [789] = { - [sym_identifier] = ACTIONS(3396), - [aux_sym_preproc_include_token1] = ACTIONS(3396), - [aux_sym_preproc_def_token1] = ACTIONS(3396), - [aux_sym_preproc_if_token1] = ACTIONS(3396), - [aux_sym_preproc_if_token2] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3396), - [aux_sym_preproc_else_token1] = ACTIONS(3396), - [aux_sym_preproc_elif_token1] = ACTIONS(3396), - [sym_preproc_directive] = ACTIONS(3396), - [anon_sym_LPAREN2] = ACTIONS(3398), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3396), - [anon_sym_PLUS] = ACTIONS(3396), - [anon_sym_STAR] = ACTIONS(3398), - [anon_sym_AMP_AMP] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_SEMI] = ACTIONS(3398), - [anon_sym___extension__] = ACTIONS(3396), - [anon_sym_typedef] = ACTIONS(3396), - [anon_sym_extern] = ACTIONS(3396), - [anon_sym___attribute__] = ACTIONS(3396), - [anon_sym_COLON_COLON] = ACTIONS(3398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3398), - [anon_sym___declspec] = ACTIONS(3396), - [anon_sym___based] = ACTIONS(3396), - [anon_sym___cdecl] = ACTIONS(3396), - [anon_sym___clrcall] = ACTIONS(3396), - [anon_sym___stdcall] = ACTIONS(3396), - [anon_sym___fastcall] = ACTIONS(3396), - [anon_sym___thiscall] = ACTIONS(3396), - [anon_sym___vectorcall] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(3398), - [anon_sym_signed] = ACTIONS(3396), - [anon_sym_unsigned] = ACTIONS(3396), - [anon_sym_long] = ACTIONS(3396), - [anon_sym_short] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_static] = ACTIONS(3396), - [anon_sym_register] = ACTIONS(3396), - [anon_sym_inline] = ACTIONS(3396), - [anon_sym___inline] = ACTIONS(3396), - [anon_sym___inline__] = ACTIONS(3396), - [anon_sym___forceinline] = ACTIONS(3396), - [anon_sym_thread_local] = ACTIONS(3396), - [anon_sym___thread] = ACTIONS(3396), - [anon_sym_const] = ACTIONS(3396), - [anon_sym_constexpr] = ACTIONS(3396), - [anon_sym_volatile] = ACTIONS(3396), - [anon_sym_restrict] = ACTIONS(3396), - [anon_sym___restrict__] = ACTIONS(3396), - [anon_sym__Atomic] = ACTIONS(3396), - [anon_sym__Noreturn] = ACTIONS(3396), - [anon_sym_noreturn] = ACTIONS(3396), - [anon_sym_mutable] = ACTIONS(3396), - [anon_sym_constinit] = ACTIONS(3396), - [anon_sym_consteval] = ACTIONS(3396), - [sym_primitive_type] = ACTIONS(3396), - [anon_sym_enum] = ACTIONS(3396), - [anon_sym_class] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(3396), - [anon_sym_union] = ACTIONS(3396), - [anon_sym_if] = ACTIONS(3396), - [anon_sym_switch] = ACTIONS(3396), - [anon_sym_case] = ACTIONS(3396), - [anon_sym_default] = ACTIONS(3396), - [anon_sym_while] = ACTIONS(3396), - [anon_sym_do] = ACTIONS(3396), - [anon_sym_for] = ACTIONS(3396), - [anon_sym_return] = ACTIONS(3396), - [anon_sym_break] = ACTIONS(3396), - [anon_sym_continue] = ACTIONS(3396), - [anon_sym_goto] = ACTIONS(3396), - [anon_sym_not] = ACTIONS(3396), - [anon_sym_compl] = ACTIONS(3396), - [anon_sym_DASH_DASH] = ACTIONS(3398), - [anon_sym_PLUS_PLUS] = ACTIONS(3398), - [anon_sym_sizeof] = ACTIONS(3396), - [anon_sym___alignof__] = ACTIONS(3396), - [anon_sym___alignof] = ACTIONS(3396), - [anon_sym__alignof] = ACTIONS(3396), - [anon_sym_alignof] = ACTIONS(3396), - [anon_sym__Alignof] = ACTIONS(3396), - [anon_sym_offsetof] = ACTIONS(3396), - [anon_sym__Generic] = ACTIONS(3396), - [anon_sym_asm] = ACTIONS(3396), - [anon_sym___asm__] = ACTIONS(3396), - [sym_number_literal] = ACTIONS(3398), - [anon_sym_L_SQUOTE] = ACTIONS(3398), - [anon_sym_u_SQUOTE] = ACTIONS(3398), - [anon_sym_U_SQUOTE] = ACTIONS(3398), - [anon_sym_u8_SQUOTE] = ACTIONS(3398), - [anon_sym_SQUOTE] = ACTIONS(3398), - [anon_sym_L_DQUOTE] = ACTIONS(3398), - [anon_sym_u_DQUOTE] = ACTIONS(3398), - [anon_sym_U_DQUOTE] = ACTIONS(3398), - [anon_sym_u8_DQUOTE] = ACTIONS(3398), - [anon_sym_DQUOTE] = ACTIONS(3398), - [sym_true] = ACTIONS(3396), - [sym_false] = ACTIONS(3396), - [anon_sym_NULL] = ACTIONS(3396), - [anon_sym_nullptr] = ACTIONS(3396), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3396), - [anon_sym_decltype] = ACTIONS(3396), - [anon_sym_virtual] = ACTIONS(3396), - [anon_sym_alignas] = ACTIONS(3396), - [anon_sym_explicit] = ACTIONS(3396), - [anon_sym_typename] = ACTIONS(3396), - [anon_sym_template] = ACTIONS(3396), - [anon_sym_operator] = ACTIONS(3396), - [anon_sym_try] = ACTIONS(3396), - [anon_sym_delete] = ACTIONS(3396), - [anon_sym_throw] = ACTIONS(3396), - [anon_sym_namespace] = ACTIONS(3396), - [anon_sym_using] = ACTIONS(3396), - [anon_sym_static_assert] = ACTIONS(3396), - [anon_sym_concept] = ACTIONS(3396), - [anon_sym_co_return] = ACTIONS(3396), - [anon_sym_co_yield] = ACTIONS(3396), - [anon_sym_R_DQUOTE] = ACTIONS(3398), - [anon_sym_LR_DQUOTE] = ACTIONS(3398), - [anon_sym_uR_DQUOTE] = ACTIONS(3398), - [anon_sym_UR_DQUOTE] = ACTIONS(3398), - [anon_sym_u8R_DQUOTE] = ACTIONS(3398), - [anon_sym_co_await] = ACTIONS(3396), - [anon_sym_new] = ACTIONS(3396), - [anon_sym_requires] = ACTIONS(3396), - [sym_this] = ACTIONS(3396), - }, - [790] = { + [804] = { [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), [sym_preproc_directive] = ACTIONS(3119), [anon_sym_LPAREN2] = ACTIONS(3121), [anon_sym_BANG] = ACTIONS(3121), @@ -166995,6 +164404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -167092,8579 +164502,7417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3119), [sym_this] = ACTIONS(3119), }, - [791] = { - [sym_identifier] = ACTIONS(3388), - [aux_sym_preproc_include_token1] = ACTIONS(3388), - [aux_sym_preproc_def_token1] = ACTIONS(3388), - [aux_sym_preproc_if_token1] = ACTIONS(3388), - [aux_sym_preproc_if_token2] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3388), - [aux_sym_preproc_else_token1] = ACTIONS(3388), - [aux_sym_preproc_elif_token1] = ACTIONS(3388), - [sym_preproc_directive] = ACTIONS(3388), - [anon_sym_LPAREN2] = ACTIONS(3390), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_TILDE] = ACTIONS(3390), - [anon_sym_DASH] = ACTIONS(3388), - [anon_sym_PLUS] = ACTIONS(3388), - [anon_sym_STAR] = ACTIONS(3390), - [anon_sym_AMP_AMP] = ACTIONS(3390), - [anon_sym_AMP] = ACTIONS(3388), - [anon_sym_SEMI] = ACTIONS(3390), - [anon_sym___extension__] = ACTIONS(3388), - [anon_sym_typedef] = ACTIONS(3388), - [anon_sym_extern] = ACTIONS(3388), - [anon_sym___attribute__] = ACTIONS(3388), - [anon_sym_COLON_COLON] = ACTIONS(3390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3390), - [anon_sym___declspec] = ACTIONS(3388), - [anon_sym___based] = ACTIONS(3388), - [anon_sym___cdecl] = ACTIONS(3388), - [anon_sym___clrcall] = ACTIONS(3388), - [anon_sym___stdcall] = ACTIONS(3388), - [anon_sym___fastcall] = ACTIONS(3388), - [anon_sym___thiscall] = ACTIONS(3388), - [anon_sym___vectorcall] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(3390), - [anon_sym_signed] = ACTIONS(3388), - [anon_sym_unsigned] = ACTIONS(3388), - [anon_sym_long] = ACTIONS(3388), - [anon_sym_short] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3388), - [anon_sym_static] = ACTIONS(3388), - [anon_sym_register] = ACTIONS(3388), - [anon_sym_inline] = ACTIONS(3388), - [anon_sym___inline] = ACTIONS(3388), - [anon_sym___inline__] = ACTIONS(3388), - [anon_sym___forceinline] = ACTIONS(3388), - [anon_sym_thread_local] = ACTIONS(3388), - [anon_sym___thread] = ACTIONS(3388), - [anon_sym_const] = ACTIONS(3388), - [anon_sym_constexpr] = ACTIONS(3388), - [anon_sym_volatile] = ACTIONS(3388), - [anon_sym_restrict] = ACTIONS(3388), - [anon_sym___restrict__] = ACTIONS(3388), - [anon_sym__Atomic] = ACTIONS(3388), - [anon_sym__Noreturn] = ACTIONS(3388), - [anon_sym_noreturn] = ACTIONS(3388), - [anon_sym_mutable] = ACTIONS(3388), - [anon_sym_constinit] = ACTIONS(3388), - [anon_sym_consteval] = ACTIONS(3388), - [sym_primitive_type] = ACTIONS(3388), - [anon_sym_enum] = ACTIONS(3388), - [anon_sym_class] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(3388), - [anon_sym_union] = ACTIONS(3388), - [anon_sym_if] = ACTIONS(3388), - [anon_sym_switch] = ACTIONS(3388), - [anon_sym_case] = ACTIONS(3388), - [anon_sym_default] = ACTIONS(3388), - [anon_sym_while] = ACTIONS(3388), - [anon_sym_do] = ACTIONS(3388), - [anon_sym_for] = ACTIONS(3388), - [anon_sym_return] = ACTIONS(3388), - [anon_sym_break] = ACTIONS(3388), - [anon_sym_continue] = ACTIONS(3388), - [anon_sym_goto] = ACTIONS(3388), - [anon_sym_not] = ACTIONS(3388), - [anon_sym_compl] = ACTIONS(3388), - [anon_sym_DASH_DASH] = ACTIONS(3390), - [anon_sym_PLUS_PLUS] = ACTIONS(3390), - [anon_sym_sizeof] = ACTIONS(3388), - [anon_sym___alignof__] = ACTIONS(3388), - [anon_sym___alignof] = ACTIONS(3388), - [anon_sym__alignof] = ACTIONS(3388), - [anon_sym_alignof] = ACTIONS(3388), - [anon_sym__Alignof] = ACTIONS(3388), - [anon_sym_offsetof] = ACTIONS(3388), - [anon_sym__Generic] = ACTIONS(3388), - [anon_sym_asm] = ACTIONS(3388), - [anon_sym___asm__] = ACTIONS(3388), - [sym_number_literal] = ACTIONS(3390), - [anon_sym_L_SQUOTE] = ACTIONS(3390), - [anon_sym_u_SQUOTE] = ACTIONS(3390), - [anon_sym_U_SQUOTE] = ACTIONS(3390), - [anon_sym_u8_SQUOTE] = ACTIONS(3390), - [anon_sym_SQUOTE] = ACTIONS(3390), - [anon_sym_L_DQUOTE] = ACTIONS(3390), - [anon_sym_u_DQUOTE] = ACTIONS(3390), - [anon_sym_U_DQUOTE] = ACTIONS(3390), - [anon_sym_u8_DQUOTE] = ACTIONS(3390), - [anon_sym_DQUOTE] = ACTIONS(3390), - [sym_true] = ACTIONS(3388), - [sym_false] = ACTIONS(3388), - [anon_sym_NULL] = ACTIONS(3388), - [anon_sym_nullptr] = ACTIONS(3388), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3388), - [anon_sym_decltype] = ACTIONS(3388), - [anon_sym_virtual] = ACTIONS(3388), - [anon_sym_alignas] = ACTIONS(3388), - [anon_sym_explicit] = ACTIONS(3388), - [anon_sym_typename] = ACTIONS(3388), - [anon_sym_template] = ACTIONS(3388), - [anon_sym_operator] = ACTIONS(3388), - [anon_sym_try] = ACTIONS(3388), - [anon_sym_delete] = ACTIONS(3388), - [anon_sym_throw] = ACTIONS(3388), - [anon_sym_namespace] = ACTIONS(3388), - [anon_sym_using] = ACTIONS(3388), - [anon_sym_static_assert] = ACTIONS(3388), - [anon_sym_concept] = ACTIONS(3388), - [anon_sym_co_return] = ACTIONS(3388), - [anon_sym_co_yield] = ACTIONS(3388), - [anon_sym_R_DQUOTE] = ACTIONS(3390), - [anon_sym_LR_DQUOTE] = ACTIONS(3390), - [anon_sym_uR_DQUOTE] = ACTIONS(3390), - [anon_sym_UR_DQUOTE] = ACTIONS(3390), - [anon_sym_u8R_DQUOTE] = ACTIONS(3390), - [anon_sym_co_await] = ACTIONS(3388), - [anon_sym_new] = ACTIONS(3388), - [anon_sym_requires] = ACTIONS(3388), - [sym_this] = ACTIONS(3388), - }, - [792] = { - [sym_identifier] = ACTIONS(3358), - [aux_sym_preproc_include_token1] = ACTIONS(3358), - [aux_sym_preproc_def_token1] = ACTIONS(3358), - [aux_sym_preproc_if_token1] = ACTIONS(3358), - [aux_sym_preproc_if_token2] = ACTIONS(3358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3358), - [aux_sym_preproc_else_token1] = ACTIONS(3358), - [aux_sym_preproc_elif_token1] = ACTIONS(3358), - [sym_preproc_directive] = ACTIONS(3358), - [anon_sym_LPAREN2] = ACTIONS(3360), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3360), - [anon_sym___extension__] = ACTIONS(3358), - [anon_sym_typedef] = ACTIONS(3358), - [anon_sym_extern] = ACTIONS(3358), - [anon_sym___attribute__] = ACTIONS(3358), - [anon_sym_COLON_COLON] = ACTIONS(3360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3360), - [anon_sym___declspec] = ACTIONS(3358), - [anon_sym___based] = ACTIONS(3358), - [anon_sym___cdecl] = ACTIONS(3358), - [anon_sym___clrcall] = ACTIONS(3358), - [anon_sym___stdcall] = ACTIONS(3358), - [anon_sym___fastcall] = ACTIONS(3358), - [anon_sym___thiscall] = ACTIONS(3358), - [anon_sym___vectorcall] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_signed] = ACTIONS(3358), - [anon_sym_unsigned] = ACTIONS(3358), - [anon_sym_long] = ACTIONS(3358), - [anon_sym_short] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_register] = ACTIONS(3358), - [anon_sym_inline] = ACTIONS(3358), - [anon_sym___inline] = ACTIONS(3358), - [anon_sym___inline__] = ACTIONS(3358), - [anon_sym___forceinline] = ACTIONS(3358), - [anon_sym_thread_local] = ACTIONS(3358), - [anon_sym___thread] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_constexpr] = ACTIONS(3358), - [anon_sym_volatile] = ACTIONS(3358), - [anon_sym_restrict] = ACTIONS(3358), - [anon_sym___restrict__] = ACTIONS(3358), - [anon_sym__Atomic] = ACTIONS(3358), - [anon_sym__Noreturn] = ACTIONS(3358), - [anon_sym_noreturn] = ACTIONS(3358), - [anon_sym_mutable] = ACTIONS(3358), - [anon_sym_constinit] = ACTIONS(3358), - [anon_sym_consteval] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_struct] = ACTIONS(3358), - [anon_sym_union] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_case] = ACTIONS(3358), - [anon_sym_default] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_goto] = ACTIONS(3358), - [anon_sym_not] = ACTIONS(3358), - [anon_sym_compl] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3360), - [anon_sym_sizeof] = ACTIONS(3358), - [anon_sym___alignof__] = ACTIONS(3358), - [anon_sym___alignof] = ACTIONS(3358), - [anon_sym__alignof] = ACTIONS(3358), - [anon_sym_alignof] = ACTIONS(3358), - [anon_sym__Alignof] = ACTIONS(3358), - [anon_sym_offsetof] = ACTIONS(3358), - [anon_sym__Generic] = ACTIONS(3358), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3360), - [anon_sym_u_SQUOTE] = ACTIONS(3360), - [anon_sym_U_SQUOTE] = ACTIONS(3360), - [anon_sym_u8_SQUOTE] = ACTIONS(3360), - [anon_sym_SQUOTE] = ACTIONS(3360), - [anon_sym_L_DQUOTE] = ACTIONS(3360), - [anon_sym_u_DQUOTE] = ACTIONS(3360), - [anon_sym_U_DQUOTE] = ACTIONS(3360), - [anon_sym_u8_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [anon_sym_NULL] = ACTIONS(3358), - [anon_sym_nullptr] = ACTIONS(3358), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3358), - [anon_sym_decltype] = ACTIONS(3358), - [anon_sym_virtual] = ACTIONS(3358), - [anon_sym_alignas] = ACTIONS(3358), - [anon_sym_explicit] = ACTIONS(3358), - [anon_sym_typename] = ACTIONS(3358), - [anon_sym_template] = ACTIONS(3358), - [anon_sym_operator] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_static_assert] = ACTIONS(3358), - [anon_sym_concept] = ACTIONS(3358), - [anon_sym_co_return] = ACTIONS(3358), - [anon_sym_co_yield] = ACTIONS(3358), - [anon_sym_R_DQUOTE] = ACTIONS(3360), - [anon_sym_LR_DQUOTE] = ACTIONS(3360), - [anon_sym_uR_DQUOTE] = ACTIONS(3360), - [anon_sym_UR_DQUOTE] = ACTIONS(3360), - [anon_sym_u8R_DQUOTE] = ACTIONS(3360), - [anon_sym_co_await] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_requires] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), - }, - [793] = { - [sym_identifier] = ACTIONS(3380), - [aux_sym_preproc_include_token1] = ACTIONS(3380), - [aux_sym_preproc_def_token1] = ACTIONS(3380), - [aux_sym_preproc_if_token1] = ACTIONS(3380), - [aux_sym_preproc_if_token2] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), - [aux_sym_preproc_else_token1] = ACTIONS(3380), - [aux_sym_preproc_elif_token1] = ACTIONS(3380), - [sym_preproc_directive] = ACTIONS(3380), - [anon_sym_LPAREN2] = ACTIONS(3382), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_TILDE] = ACTIONS(3382), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_AMP_AMP] = ACTIONS(3382), - [anon_sym_AMP] = ACTIONS(3380), - [anon_sym_SEMI] = ACTIONS(3382), - [anon_sym___extension__] = ACTIONS(3380), - [anon_sym_typedef] = ACTIONS(3380), - [anon_sym_extern] = ACTIONS(3380), - [anon_sym___attribute__] = ACTIONS(3380), - [anon_sym_COLON_COLON] = ACTIONS(3382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), - [anon_sym___declspec] = ACTIONS(3380), - [anon_sym___based] = ACTIONS(3380), - [anon_sym___cdecl] = ACTIONS(3380), - [anon_sym___clrcall] = ACTIONS(3380), - [anon_sym___stdcall] = ACTIONS(3380), - [anon_sym___fastcall] = ACTIONS(3380), - [anon_sym___thiscall] = ACTIONS(3380), - [anon_sym___vectorcall] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3382), - [anon_sym_signed] = ACTIONS(3380), - [anon_sym_unsigned] = ACTIONS(3380), - [anon_sym_long] = ACTIONS(3380), - [anon_sym_short] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_register] = ACTIONS(3380), - [anon_sym_inline] = ACTIONS(3380), - [anon_sym___inline] = ACTIONS(3380), - [anon_sym___inline__] = ACTIONS(3380), - [anon_sym___forceinline] = ACTIONS(3380), - [anon_sym_thread_local] = ACTIONS(3380), - [anon_sym___thread] = ACTIONS(3380), - [anon_sym_const] = ACTIONS(3380), - [anon_sym_constexpr] = ACTIONS(3380), - [anon_sym_volatile] = ACTIONS(3380), - [anon_sym_restrict] = ACTIONS(3380), - [anon_sym___restrict__] = ACTIONS(3380), - [anon_sym__Atomic] = ACTIONS(3380), - [anon_sym__Noreturn] = ACTIONS(3380), - [anon_sym_noreturn] = ACTIONS(3380), - [anon_sym_mutable] = ACTIONS(3380), - [anon_sym_constinit] = ACTIONS(3380), - [anon_sym_consteval] = ACTIONS(3380), - [sym_primitive_type] = ACTIONS(3380), - [anon_sym_enum] = ACTIONS(3380), - [anon_sym_class] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(3380), - [anon_sym_union] = ACTIONS(3380), - [anon_sym_if] = ACTIONS(3380), - [anon_sym_switch] = ACTIONS(3380), - [anon_sym_case] = ACTIONS(3380), - [anon_sym_default] = ACTIONS(3380), - [anon_sym_while] = ACTIONS(3380), - [anon_sym_do] = ACTIONS(3380), - [anon_sym_for] = ACTIONS(3380), - [anon_sym_return] = ACTIONS(3380), - [anon_sym_break] = ACTIONS(3380), - [anon_sym_continue] = ACTIONS(3380), - [anon_sym_goto] = ACTIONS(3380), - [anon_sym_not] = ACTIONS(3380), - [anon_sym_compl] = ACTIONS(3380), - [anon_sym_DASH_DASH] = ACTIONS(3382), - [anon_sym_PLUS_PLUS] = ACTIONS(3382), - [anon_sym_sizeof] = ACTIONS(3380), - [anon_sym___alignof__] = ACTIONS(3380), - [anon_sym___alignof] = ACTIONS(3380), - [anon_sym__alignof] = ACTIONS(3380), - [anon_sym_alignof] = ACTIONS(3380), - [anon_sym__Alignof] = ACTIONS(3380), - [anon_sym_offsetof] = ACTIONS(3380), - [anon_sym__Generic] = ACTIONS(3380), - [anon_sym_asm] = ACTIONS(3380), - [anon_sym___asm__] = ACTIONS(3380), - [sym_number_literal] = ACTIONS(3382), - [anon_sym_L_SQUOTE] = ACTIONS(3382), - [anon_sym_u_SQUOTE] = ACTIONS(3382), - [anon_sym_U_SQUOTE] = ACTIONS(3382), - [anon_sym_u8_SQUOTE] = ACTIONS(3382), - [anon_sym_SQUOTE] = ACTIONS(3382), - [anon_sym_L_DQUOTE] = ACTIONS(3382), - [anon_sym_u_DQUOTE] = ACTIONS(3382), - [anon_sym_U_DQUOTE] = ACTIONS(3382), - [anon_sym_u8_DQUOTE] = ACTIONS(3382), - [anon_sym_DQUOTE] = ACTIONS(3382), - [sym_true] = ACTIONS(3380), - [sym_false] = ACTIONS(3380), - [anon_sym_NULL] = ACTIONS(3380), - [anon_sym_nullptr] = ACTIONS(3380), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3380), - [anon_sym_decltype] = ACTIONS(3380), - [anon_sym_virtual] = ACTIONS(3380), - [anon_sym_alignas] = ACTIONS(3380), - [anon_sym_explicit] = ACTIONS(3380), - [anon_sym_typename] = ACTIONS(3380), - [anon_sym_template] = ACTIONS(3380), - [anon_sym_operator] = ACTIONS(3380), - [anon_sym_try] = ACTIONS(3380), - [anon_sym_delete] = ACTIONS(3380), - [anon_sym_throw] = ACTIONS(3380), - [anon_sym_namespace] = ACTIONS(3380), - [anon_sym_using] = ACTIONS(3380), - [anon_sym_static_assert] = ACTIONS(3380), - [anon_sym_concept] = ACTIONS(3380), - [anon_sym_co_return] = ACTIONS(3380), - [anon_sym_co_yield] = ACTIONS(3380), - [anon_sym_R_DQUOTE] = ACTIONS(3382), - [anon_sym_LR_DQUOTE] = ACTIONS(3382), - [anon_sym_uR_DQUOTE] = ACTIONS(3382), - [anon_sym_UR_DQUOTE] = ACTIONS(3382), - [anon_sym_u8R_DQUOTE] = ACTIONS(3382), - [anon_sym_co_await] = ACTIONS(3380), - [anon_sym_new] = ACTIONS(3380), - [anon_sym_requires] = ACTIONS(3380), - [sym_this] = ACTIONS(3380), - }, - [794] = { - [sym_identifier] = ACTIONS(3286), - [aux_sym_preproc_include_token1] = ACTIONS(3286), - [aux_sym_preproc_def_token1] = ACTIONS(3286), - [aux_sym_preproc_if_token1] = ACTIONS(3286), - [aux_sym_preproc_if_token2] = ACTIONS(3286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), - [aux_sym_preproc_else_token1] = ACTIONS(3286), - [aux_sym_preproc_elif_token1] = ACTIONS(3286), - [sym_preproc_directive] = ACTIONS(3286), - [anon_sym_LPAREN2] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_AMP] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym___extension__] = ACTIONS(3286), - [anon_sym_typedef] = ACTIONS(3286), - [anon_sym_extern] = ACTIONS(3286), - [anon_sym___attribute__] = ACTIONS(3286), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), - [anon_sym___declspec] = ACTIONS(3286), - [anon_sym___based] = ACTIONS(3286), - [anon_sym___cdecl] = ACTIONS(3286), - [anon_sym___clrcall] = ACTIONS(3286), - [anon_sym___stdcall] = ACTIONS(3286), - [anon_sym___fastcall] = ACTIONS(3286), - [anon_sym___thiscall] = ACTIONS(3286), - [anon_sym___vectorcall] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_signed] = ACTIONS(3286), - [anon_sym_unsigned] = ACTIONS(3286), - [anon_sym_long] = ACTIONS(3286), - [anon_sym_short] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3286), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_register] = ACTIONS(3286), - [anon_sym_inline] = ACTIONS(3286), - [anon_sym___inline] = ACTIONS(3286), - [anon_sym___inline__] = ACTIONS(3286), - [anon_sym___forceinline] = ACTIONS(3286), - [anon_sym_thread_local] = ACTIONS(3286), - [anon_sym___thread] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_constexpr] = ACTIONS(3286), - [anon_sym_volatile] = ACTIONS(3286), - [anon_sym_restrict] = ACTIONS(3286), - [anon_sym___restrict__] = ACTIONS(3286), - [anon_sym__Atomic] = ACTIONS(3286), - [anon_sym__Noreturn] = ACTIONS(3286), - [anon_sym_noreturn] = ACTIONS(3286), - [anon_sym_mutable] = ACTIONS(3286), - [anon_sym_constinit] = ACTIONS(3286), - [anon_sym_consteval] = ACTIONS(3286), - [sym_primitive_type] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), - [anon_sym_class] = ACTIONS(3286), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_union] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3286), - [anon_sym_default] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_goto] = ACTIONS(3286), - [anon_sym_not] = ACTIONS(3286), - [anon_sym_compl] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_sizeof] = ACTIONS(3286), - [anon_sym___alignof__] = ACTIONS(3286), - [anon_sym___alignof] = ACTIONS(3286), - [anon_sym__alignof] = ACTIONS(3286), - [anon_sym_alignof] = ACTIONS(3286), - [anon_sym__Alignof] = ACTIONS(3286), - [anon_sym_offsetof] = ACTIONS(3286), - [anon_sym__Generic] = ACTIONS(3286), - [anon_sym_asm] = ACTIONS(3286), - [anon_sym___asm__] = ACTIONS(3286), - [sym_number_literal] = ACTIONS(3288), - [anon_sym_L_SQUOTE] = ACTIONS(3288), - [anon_sym_u_SQUOTE] = ACTIONS(3288), - [anon_sym_U_SQUOTE] = ACTIONS(3288), - [anon_sym_u8_SQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_L_DQUOTE] = ACTIONS(3288), - [anon_sym_u_DQUOTE] = ACTIONS(3288), - [anon_sym_U_DQUOTE] = ACTIONS(3288), - [anon_sym_u8_DQUOTE] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [anon_sym_NULL] = ACTIONS(3286), - [anon_sym_nullptr] = ACTIONS(3286), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3286), - [anon_sym_decltype] = ACTIONS(3286), - [anon_sym_virtual] = ACTIONS(3286), - [anon_sym_alignas] = ACTIONS(3286), - [anon_sym_explicit] = ACTIONS(3286), - [anon_sym_typename] = ACTIONS(3286), - [anon_sym_template] = ACTIONS(3286), - [anon_sym_operator] = ACTIONS(3286), - [anon_sym_try] = ACTIONS(3286), - [anon_sym_delete] = ACTIONS(3286), - [anon_sym_throw] = ACTIONS(3286), - [anon_sym_namespace] = ACTIONS(3286), - [anon_sym_using] = ACTIONS(3286), - [anon_sym_static_assert] = ACTIONS(3286), - [anon_sym_concept] = ACTIONS(3286), - [anon_sym_co_return] = ACTIONS(3286), - [anon_sym_co_yield] = ACTIONS(3286), - [anon_sym_R_DQUOTE] = ACTIONS(3288), - [anon_sym_LR_DQUOTE] = ACTIONS(3288), - [anon_sym_uR_DQUOTE] = ACTIONS(3288), - [anon_sym_UR_DQUOTE] = ACTIONS(3288), - [anon_sym_u8R_DQUOTE] = ACTIONS(3288), - [anon_sym_co_await] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3286), - [anon_sym_requires] = ACTIONS(3286), - [sym_this] = ACTIONS(3286), - }, - [795] = { - [sym_else_clause] = STATE(1132), - [sym_identifier] = ACTIONS(2754), - [aux_sym_preproc_include_token1] = ACTIONS(2754), - [aux_sym_preproc_def_token1] = ACTIONS(2754), - [aux_sym_preproc_if_token1] = ACTIONS(2754), - [aux_sym_preproc_if_token2] = ACTIONS(2754), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2754), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2754), - [sym_preproc_directive] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_TILDE] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym___extension__] = ACTIONS(2754), - [anon_sym_typedef] = ACTIONS(2754), - [anon_sym_extern] = ACTIONS(2754), - [anon_sym___attribute__] = ACTIONS(2754), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2756), - [anon_sym___declspec] = ACTIONS(2754), - [anon_sym___based] = ACTIONS(2754), - [anon_sym___cdecl] = ACTIONS(2754), - [anon_sym___clrcall] = ACTIONS(2754), - [anon_sym___stdcall] = ACTIONS(2754), - [anon_sym___fastcall] = ACTIONS(2754), - [anon_sym___thiscall] = ACTIONS(2754), - [anon_sym___vectorcall] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_signed] = ACTIONS(2754), - [anon_sym_unsigned] = ACTIONS(2754), - [anon_sym_long] = ACTIONS(2754), - [anon_sym_short] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_static] = ACTIONS(2754), - [anon_sym_register] = ACTIONS(2754), - [anon_sym_inline] = ACTIONS(2754), - [anon_sym___inline] = ACTIONS(2754), - [anon_sym___inline__] = ACTIONS(2754), - [anon_sym___forceinline] = ACTIONS(2754), - [anon_sym_thread_local] = ACTIONS(2754), - [anon_sym___thread] = ACTIONS(2754), - [anon_sym_const] = ACTIONS(2754), - [anon_sym_constexpr] = ACTIONS(2754), - [anon_sym_volatile] = ACTIONS(2754), - [anon_sym_restrict] = ACTIONS(2754), - [anon_sym___restrict__] = ACTIONS(2754), - [anon_sym__Atomic] = ACTIONS(2754), - [anon_sym__Noreturn] = ACTIONS(2754), - [anon_sym_noreturn] = ACTIONS(2754), - [anon_sym_mutable] = ACTIONS(2754), - [anon_sym_constinit] = ACTIONS(2754), - [anon_sym_consteval] = ACTIONS(2754), - [sym_primitive_type] = ACTIONS(2754), - [anon_sym_enum] = ACTIONS(2754), - [anon_sym_class] = ACTIONS(2754), - [anon_sym_struct] = ACTIONS(2754), - [anon_sym_union] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_else] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(2754), - [anon_sym_case] = ACTIONS(2754), - [anon_sym_default] = ACTIONS(2754), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_break] = ACTIONS(2754), - [anon_sym_continue] = ACTIONS(2754), - [anon_sym_goto] = ACTIONS(2754), - [anon_sym_not] = ACTIONS(2754), - [anon_sym_compl] = ACTIONS(2754), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_sizeof] = ACTIONS(2754), - [anon_sym___alignof__] = ACTIONS(2754), - [anon_sym___alignof] = ACTIONS(2754), - [anon_sym__alignof] = ACTIONS(2754), - [anon_sym_alignof] = ACTIONS(2754), - [anon_sym__Alignof] = ACTIONS(2754), - [anon_sym_offsetof] = ACTIONS(2754), - [anon_sym__Generic] = ACTIONS(2754), - [anon_sym_asm] = ACTIONS(2754), - [anon_sym___asm__] = ACTIONS(2754), - [sym_number_literal] = ACTIONS(2756), - [anon_sym_L_SQUOTE] = ACTIONS(2756), - [anon_sym_u_SQUOTE] = ACTIONS(2756), - [anon_sym_U_SQUOTE] = ACTIONS(2756), - [anon_sym_u8_SQUOTE] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_L_DQUOTE] = ACTIONS(2756), - [anon_sym_u_DQUOTE] = ACTIONS(2756), - [anon_sym_U_DQUOTE] = ACTIONS(2756), - [anon_sym_u8_DQUOTE] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [sym_true] = ACTIONS(2754), - [sym_false] = ACTIONS(2754), - [anon_sym_NULL] = ACTIONS(2754), - [anon_sym_nullptr] = ACTIONS(2754), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2754), - [anon_sym_decltype] = ACTIONS(2754), - [anon_sym_virtual] = ACTIONS(2754), - [anon_sym_alignas] = ACTIONS(2754), - [anon_sym_explicit] = ACTIONS(2754), - [anon_sym_typename] = ACTIONS(2754), - [anon_sym_template] = ACTIONS(2754), - [anon_sym_operator] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_delete] = ACTIONS(2754), - [anon_sym_throw] = ACTIONS(2754), - [anon_sym_namespace] = ACTIONS(2754), - [anon_sym_using] = ACTIONS(2754), - [anon_sym_static_assert] = ACTIONS(2754), - [anon_sym_concept] = ACTIONS(2754), - [anon_sym_co_return] = ACTIONS(2754), - [anon_sym_co_yield] = ACTIONS(2754), - [anon_sym_R_DQUOTE] = ACTIONS(2756), - [anon_sym_LR_DQUOTE] = ACTIONS(2756), - [anon_sym_uR_DQUOTE] = ACTIONS(2756), - [anon_sym_UR_DQUOTE] = ACTIONS(2756), - [anon_sym_u8R_DQUOTE] = ACTIONS(2756), - [anon_sym_co_await] = ACTIONS(2754), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_requires] = ACTIONS(2754), - [sym_this] = ACTIONS(2754), - }, - [796] = { - [sym_identifier] = ACTIONS(3336), - [aux_sym_preproc_include_token1] = ACTIONS(3336), - [aux_sym_preproc_def_token1] = ACTIONS(3336), - [aux_sym_preproc_if_token1] = ACTIONS(3336), - [aux_sym_preproc_if_token2] = ACTIONS(3336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3336), - [aux_sym_preproc_else_token1] = ACTIONS(3336), - [aux_sym_preproc_elif_token1] = ACTIONS(3336), - [sym_preproc_directive] = ACTIONS(3336), - [anon_sym_LPAREN2] = ACTIONS(3338), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3338), - [anon_sym_AMP_AMP] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym___extension__] = ACTIONS(3336), - [anon_sym_typedef] = ACTIONS(3336), - [anon_sym_extern] = ACTIONS(3336), - [anon_sym___attribute__] = ACTIONS(3336), - [anon_sym_COLON_COLON] = ACTIONS(3338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3338), - [anon_sym___declspec] = ACTIONS(3336), - [anon_sym___based] = ACTIONS(3336), - [anon_sym___cdecl] = ACTIONS(3336), - [anon_sym___clrcall] = ACTIONS(3336), - [anon_sym___stdcall] = ACTIONS(3336), - [anon_sym___fastcall] = ACTIONS(3336), - [anon_sym___thiscall] = ACTIONS(3336), - [anon_sym___vectorcall] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_register] = ACTIONS(3336), - [anon_sym_inline] = ACTIONS(3336), - [anon_sym___inline] = ACTIONS(3336), - [anon_sym___inline__] = ACTIONS(3336), - [anon_sym___forceinline] = ACTIONS(3336), - [anon_sym_thread_local] = ACTIONS(3336), - [anon_sym___thread] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_constexpr] = ACTIONS(3336), - [anon_sym_volatile] = ACTIONS(3336), - [anon_sym_restrict] = ACTIONS(3336), - [anon_sym___restrict__] = ACTIONS(3336), - [anon_sym__Atomic] = ACTIONS(3336), - [anon_sym__Noreturn] = ACTIONS(3336), - [anon_sym_noreturn] = ACTIONS(3336), - [anon_sym_mutable] = ACTIONS(3336), - [anon_sym_constinit] = ACTIONS(3336), - [anon_sym_consteval] = ACTIONS(3336), - [sym_primitive_type] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_union] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_goto] = ACTIONS(3336), - [anon_sym_not] = ACTIONS(3336), - [anon_sym_compl] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_sizeof] = ACTIONS(3336), - [anon_sym___alignof__] = ACTIONS(3336), - [anon_sym___alignof] = ACTIONS(3336), - [anon_sym__alignof] = ACTIONS(3336), - [anon_sym_alignof] = ACTIONS(3336), - [anon_sym__Alignof] = ACTIONS(3336), - [anon_sym_offsetof] = ACTIONS(3336), - [anon_sym__Generic] = ACTIONS(3336), - [anon_sym_asm] = ACTIONS(3336), - [anon_sym___asm__] = ACTIONS(3336), - [sym_number_literal] = ACTIONS(3338), - [anon_sym_L_SQUOTE] = ACTIONS(3338), - [anon_sym_u_SQUOTE] = ACTIONS(3338), - [anon_sym_U_SQUOTE] = ACTIONS(3338), - [anon_sym_u8_SQUOTE] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [anon_sym_L_DQUOTE] = ACTIONS(3338), - [anon_sym_u_DQUOTE] = ACTIONS(3338), - [anon_sym_U_DQUOTE] = ACTIONS(3338), - [anon_sym_u8_DQUOTE] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [anon_sym_NULL] = ACTIONS(3336), - [anon_sym_nullptr] = ACTIONS(3336), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3336), - [anon_sym_decltype] = ACTIONS(3336), - [anon_sym_virtual] = ACTIONS(3336), - [anon_sym_alignas] = ACTIONS(3336), - [anon_sym_explicit] = ACTIONS(3336), - [anon_sym_typename] = ACTIONS(3336), - [anon_sym_template] = ACTIONS(3336), - [anon_sym_operator] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_static_assert] = ACTIONS(3336), - [anon_sym_concept] = ACTIONS(3336), - [anon_sym_co_return] = ACTIONS(3336), - [anon_sym_co_yield] = ACTIONS(3336), - [anon_sym_R_DQUOTE] = ACTIONS(3338), - [anon_sym_LR_DQUOTE] = ACTIONS(3338), - [anon_sym_uR_DQUOTE] = ACTIONS(3338), - [anon_sym_UR_DQUOTE] = ACTIONS(3338), - [anon_sym_u8R_DQUOTE] = ACTIONS(3338), - [anon_sym_co_await] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_requires] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - }, - [797] = { - [sym_catch_clause] = STATE(549), - [aux_sym_constructor_try_statement_repeat1] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(2561), - [sym_identifier] = ACTIONS(2559), - [aux_sym_preproc_include_token1] = ACTIONS(2559), - [aux_sym_preproc_def_token1] = ACTIONS(2559), - [aux_sym_preproc_if_token1] = ACTIONS(2559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), - [sym_preproc_directive] = ACTIONS(2559), - [anon_sym_LPAREN2] = ACTIONS(2561), - [anon_sym_BANG] = ACTIONS(2561), - [anon_sym_TILDE] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2559), - [anon_sym_STAR] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2561), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym___extension__] = ACTIONS(2559), - [anon_sym_typedef] = ACTIONS(2559), - [anon_sym_extern] = ACTIONS(2559), - [anon_sym___attribute__] = ACTIONS(2559), - [anon_sym_COLON_COLON] = ACTIONS(2561), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2559), - [anon_sym___based] = ACTIONS(2559), - [anon_sym___cdecl] = ACTIONS(2559), - [anon_sym___clrcall] = ACTIONS(2559), - [anon_sym___stdcall] = ACTIONS(2559), - [anon_sym___fastcall] = ACTIONS(2559), - [anon_sym___thiscall] = ACTIONS(2559), - [anon_sym___vectorcall] = ACTIONS(2559), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_signed] = ACTIONS(2559), - [anon_sym_unsigned] = ACTIONS(2559), - [anon_sym_long] = ACTIONS(2559), - [anon_sym_short] = ACTIONS(2559), - [anon_sym_LBRACK] = ACTIONS(2559), - [anon_sym_static] = ACTIONS(2559), - [anon_sym_register] = ACTIONS(2559), - [anon_sym_inline] = ACTIONS(2559), - [anon_sym___inline] = ACTIONS(2559), - [anon_sym___inline__] = ACTIONS(2559), - [anon_sym___forceinline] = ACTIONS(2559), - [anon_sym_thread_local] = ACTIONS(2559), - [anon_sym___thread] = ACTIONS(2559), - [anon_sym_const] = ACTIONS(2559), - [anon_sym_constexpr] = ACTIONS(2559), - [anon_sym_volatile] = ACTIONS(2559), - [anon_sym_restrict] = ACTIONS(2559), - [anon_sym___restrict__] = ACTIONS(2559), - [anon_sym__Atomic] = ACTIONS(2559), - [anon_sym__Noreturn] = ACTIONS(2559), - [anon_sym_noreturn] = ACTIONS(2559), - [anon_sym_mutable] = ACTIONS(2559), - [anon_sym_constinit] = ACTIONS(2559), - [anon_sym_consteval] = ACTIONS(2559), - [sym_primitive_type] = ACTIONS(2559), - [anon_sym_enum] = ACTIONS(2559), - [anon_sym_class] = ACTIONS(2559), - [anon_sym_struct] = ACTIONS(2559), - [anon_sym_union] = ACTIONS(2559), - [anon_sym_if] = ACTIONS(2559), - [anon_sym_switch] = ACTIONS(2559), - [anon_sym_case] = ACTIONS(2559), - [anon_sym_default] = ACTIONS(2559), - [anon_sym_while] = ACTIONS(2559), - [anon_sym_do] = ACTIONS(2559), - [anon_sym_for] = ACTIONS(2559), - [anon_sym_return] = ACTIONS(2559), - [anon_sym_break] = ACTIONS(2559), - [anon_sym_continue] = ACTIONS(2559), - [anon_sym_goto] = ACTIONS(2559), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_compl] = ACTIONS(2559), - [anon_sym_DASH_DASH] = ACTIONS(2561), - [anon_sym_PLUS_PLUS] = ACTIONS(2561), - [anon_sym_sizeof] = ACTIONS(2559), - [anon_sym___alignof__] = ACTIONS(2559), - [anon_sym___alignof] = ACTIONS(2559), - [anon_sym__alignof] = ACTIONS(2559), - [anon_sym_alignof] = ACTIONS(2559), - [anon_sym__Alignof] = ACTIONS(2559), - [anon_sym_offsetof] = ACTIONS(2559), - [anon_sym__Generic] = ACTIONS(2559), - [anon_sym_asm] = ACTIONS(2559), - [anon_sym___asm__] = ACTIONS(2559), - [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(2559), - [sym_false] = ACTIONS(2559), - [anon_sym_NULL] = ACTIONS(2559), - [anon_sym_nullptr] = ACTIONS(2559), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2559), - [anon_sym_decltype] = ACTIONS(2559), - [anon_sym_virtual] = ACTIONS(2559), - [anon_sym_alignas] = ACTIONS(2559), - [anon_sym_explicit] = ACTIONS(2559), - [anon_sym_typename] = ACTIONS(2559), - [anon_sym_template] = ACTIONS(2559), - [anon_sym_operator] = ACTIONS(2559), - [anon_sym_try] = ACTIONS(2559), - [anon_sym_delete] = ACTIONS(2559), - [anon_sym_throw] = ACTIONS(2559), - [anon_sym_namespace] = ACTIONS(2559), - [anon_sym_using] = ACTIONS(2559), - [anon_sym_static_assert] = ACTIONS(2559), - [anon_sym_concept] = ACTIONS(2559), - [anon_sym_co_return] = ACTIONS(2559), - [anon_sym_co_yield] = ACTIONS(2559), - [anon_sym_catch] = ACTIONS(3442), - [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(2559), - [anon_sym_new] = ACTIONS(2559), - [anon_sym_requires] = ACTIONS(2559), - [sym_this] = ACTIONS(2559), - }, - [798] = { - [sym_identifier] = ACTIONS(3370), - [aux_sym_preproc_include_token1] = ACTIONS(3370), - [aux_sym_preproc_def_token1] = ACTIONS(3370), - [aux_sym_preproc_if_token1] = ACTIONS(3370), - [aux_sym_preproc_if_token2] = ACTIONS(3370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3370), - [aux_sym_preproc_else_token1] = ACTIONS(3370), - [aux_sym_preproc_elif_token1] = ACTIONS(3370), - [sym_preproc_directive] = ACTIONS(3370), - [anon_sym_LPAREN2] = ACTIONS(3372), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(3372), - [anon_sym_DASH] = ACTIONS(3370), - [anon_sym_PLUS] = ACTIONS(3370), - [anon_sym_STAR] = ACTIONS(3372), - [anon_sym_AMP_AMP] = ACTIONS(3372), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_SEMI] = ACTIONS(3372), - [anon_sym___extension__] = ACTIONS(3370), - [anon_sym_typedef] = ACTIONS(3370), - [anon_sym_extern] = ACTIONS(3370), - [anon_sym___attribute__] = ACTIONS(3370), - [anon_sym_COLON_COLON] = ACTIONS(3372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3372), - [anon_sym___declspec] = ACTIONS(3370), - [anon_sym___based] = ACTIONS(3370), - [anon_sym___cdecl] = ACTIONS(3370), - [anon_sym___clrcall] = ACTIONS(3370), - [anon_sym___stdcall] = ACTIONS(3370), - [anon_sym___fastcall] = ACTIONS(3370), - [anon_sym___thiscall] = ACTIONS(3370), - [anon_sym___vectorcall] = ACTIONS(3370), - [anon_sym_LBRACE] = ACTIONS(3372), - [anon_sym_signed] = ACTIONS(3370), - [anon_sym_unsigned] = ACTIONS(3370), - [anon_sym_long] = ACTIONS(3370), - [anon_sym_short] = ACTIONS(3370), - [anon_sym_LBRACK] = ACTIONS(3370), - [anon_sym_static] = ACTIONS(3370), - [anon_sym_register] = ACTIONS(3370), - [anon_sym_inline] = ACTIONS(3370), - [anon_sym___inline] = ACTIONS(3370), - [anon_sym___inline__] = ACTIONS(3370), - [anon_sym___forceinline] = ACTIONS(3370), - [anon_sym_thread_local] = ACTIONS(3370), - [anon_sym___thread] = ACTIONS(3370), - [anon_sym_const] = ACTIONS(3370), - [anon_sym_constexpr] = ACTIONS(3370), - [anon_sym_volatile] = ACTIONS(3370), - [anon_sym_restrict] = ACTIONS(3370), - [anon_sym___restrict__] = ACTIONS(3370), - [anon_sym__Atomic] = ACTIONS(3370), - [anon_sym__Noreturn] = ACTIONS(3370), - [anon_sym_noreturn] = ACTIONS(3370), - [anon_sym_mutable] = ACTIONS(3370), - [anon_sym_constinit] = ACTIONS(3370), - [anon_sym_consteval] = ACTIONS(3370), - [sym_primitive_type] = ACTIONS(3370), - [anon_sym_enum] = ACTIONS(3370), - [anon_sym_class] = ACTIONS(3370), - [anon_sym_struct] = ACTIONS(3370), - [anon_sym_union] = ACTIONS(3370), - [anon_sym_if] = ACTIONS(3370), - [anon_sym_switch] = ACTIONS(3370), - [anon_sym_case] = ACTIONS(3370), - [anon_sym_default] = ACTIONS(3370), - [anon_sym_while] = ACTIONS(3370), - [anon_sym_do] = ACTIONS(3370), - [anon_sym_for] = ACTIONS(3370), - [anon_sym_return] = ACTIONS(3370), - [anon_sym_break] = ACTIONS(3370), - [anon_sym_continue] = ACTIONS(3370), - [anon_sym_goto] = ACTIONS(3370), - [anon_sym_not] = ACTIONS(3370), - [anon_sym_compl] = ACTIONS(3370), - [anon_sym_DASH_DASH] = ACTIONS(3372), - [anon_sym_PLUS_PLUS] = ACTIONS(3372), - [anon_sym_sizeof] = ACTIONS(3370), - [anon_sym___alignof__] = ACTIONS(3370), - [anon_sym___alignof] = ACTIONS(3370), - [anon_sym__alignof] = ACTIONS(3370), - [anon_sym_alignof] = ACTIONS(3370), - [anon_sym__Alignof] = ACTIONS(3370), - [anon_sym_offsetof] = ACTIONS(3370), - [anon_sym__Generic] = ACTIONS(3370), - [anon_sym_asm] = ACTIONS(3370), - [anon_sym___asm__] = ACTIONS(3370), - [sym_number_literal] = ACTIONS(3372), - [anon_sym_L_SQUOTE] = ACTIONS(3372), - [anon_sym_u_SQUOTE] = ACTIONS(3372), - [anon_sym_U_SQUOTE] = ACTIONS(3372), - [anon_sym_u8_SQUOTE] = ACTIONS(3372), - [anon_sym_SQUOTE] = ACTIONS(3372), - [anon_sym_L_DQUOTE] = ACTIONS(3372), - [anon_sym_u_DQUOTE] = ACTIONS(3372), - [anon_sym_U_DQUOTE] = ACTIONS(3372), - [anon_sym_u8_DQUOTE] = ACTIONS(3372), - [anon_sym_DQUOTE] = ACTIONS(3372), - [sym_true] = ACTIONS(3370), - [sym_false] = ACTIONS(3370), - [anon_sym_NULL] = ACTIONS(3370), - [anon_sym_nullptr] = ACTIONS(3370), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3370), - [anon_sym_virtual] = ACTIONS(3370), - [anon_sym_alignas] = ACTIONS(3370), - [anon_sym_explicit] = ACTIONS(3370), - [anon_sym_typename] = ACTIONS(3370), - [anon_sym_template] = ACTIONS(3370), - [anon_sym_operator] = ACTIONS(3370), - [anon_sym_try] = ACTIONS(3370), - [anon_sym_delete] = ACTIONS(3370), - [anon_sym_throw] = ACTIONS(3370), - [anon_sym_namespace] = ACTIONS(3370), - [anon_sym_using] = ACTIONS(3370), - [anon_sym_static_assert] = ACTIONS(3370), - [anon_sym_concept] = ACTIONS(3370), - [anon_sym_co_return] = ACTIONS(3370), - [anon_sym_co_yield] = ACTIONS(3370), - [anon_sym_R_DQUOTE] = ACTIONS(3372), - [anon_sym_LR_DQUOTE] = ACTIONS(3372), - [anon_sym_uR_DQUOTE] = ACTIONS(3372), - [anon_sym_UR_DQUOTE] = ACTIONS(3372), - [anon_sym_u8R_DQUOTE] = ACTIONS(3372), - [anon_sym_co_await] = ACTIONS(3370), - [anon_sym_new] = ACTIONS(3370), - [anon_sym_requires] = ACTIONS(3370), - [sym_this] = ACTIONS(3370), - }, - [799] = { - [sym_identifier] = ACTIONS(3191), - [aux_sym_preproc_include_token1] = ACTIONS(3191), - [aux_sym_preproc_def_token1] = ACTIONS(3191), - [aux_sym_preproc_if_token1] = ACTIONS(3191), - [aux_sym_preproc_if_token2] = ACTIONS(3191), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3191), - [aux_sym_preproc_else_token1] = ACTIONS(3191), - [aux_sym_preproc_elif_token1] = ACTIONS(3191), - [sym_preproc_directive] = ACTIONS(3191), - [anon_sym_LPAREN2] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3191), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym___extension__] = ACTIONS(3191), - [anon_sym_typedef] = ACTIONS(3191), - [anon_sym_extern] = ACTIONS(3191), - [anon_sym___attribute__] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(3193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3193), - [anon_sym___declspec] = ACTIONS(3191), - [anon_sym___based] = ACTIONS(3191), - [anon_sym___cdecl] = ACTIONS(3191), - [anon_sym___clrcall] = ACTIONS(3191), - [anon_sym___stdcall] = ACTIONS(3191), - [anon_sym___fastcall] = ACTIONS(3191), - [anon_sym___thiscall] = ACTIONS(3191), - [anon_sym___vectorcall] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_signed] = ACTIONS(3191), - [anon_sym_unsigned] = ACTIONS(3191), - [anon_sym_long] = ACTIONS(3191), - [anon_sym_short] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_static] = ACTIONS(3191), - [anon_sym_register] = ACTIONS(3191), - [anon_sym_inline] = ACTIONS(3191), - [anon_sym___inline] = ACTIONS(3191), - [anon_sym___inline__] = ACTIONS(3191), - [anon_sym___forceinline] = ACTIONS(3191), - [anon_sym_thread_local] = ACTIONS(3191), - [anon_sym___thread] = ACTIONS(3191), - [anon_sym_const] = ACTIONS(3191), - [anon_sym_constexpr] = ACTIONS(3191), - [anon_sym_volatile] = ACTIONS(3191), - [anon_sym_restrict] = ACTIONS(3191), - [anon_sym___restrict__] = ACTIONS(3191), - [anon_sym__Atomic] = ACTIONS(3191), - [anon_sym__Noreturn] = ACTIONS(3191), - [anon_sym_noreturn] = ACTIONS(3191), - [anon_sym_mutable] = ACTIONS(3191), - [anon_sym_constinit] = ACTIONS(3191), - [anon_sym_consteval] = ACTIONS(3191), - [sym_primitive_type] = ACTIONS(3191), - [anon_sym_enum] = ACTIONS(3191), - [anon_sym_class] = ACTIONS(3191), - [anon_sym_struct] = ACTIONS(3191), - [anon_sym_union] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_switch] = ACTIONS(3191), - [anon_sym_case] = ACTIONS(3191), - [anon_sym_default] = ACTIONS(3191), - [anon_sym_while] = ACTIONS(3191), - [anon_sym_do] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3191), - [anon_sym_return] = ACTIONS(3191), - [anon_sym_break] = ACTIONS(3191), - [anon_sym_continue] = ACTIONS(3191), - [anon_sym_goto] = ACTIONS(3191), - [anon_sym_not] = ACTIONS(3191), - [anon_sym_compl] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_sizeof] = ACTIONS(3191), - [anon_sym___alignof__] = ACTIONS(3191), - [anon_sym___alignof] = ACTIONS(3191), - [anon_sym__alignof] = ACTIONS(3191), - [anon_sym_alignof] = ACTIONS(3191), - [anon_sym__Alignof] = ACTIONS(3191), - [anon_sym_offsetof] = ACTIONS(3191), - [anon_sym__Generic] = ACTIONS(3191), - [anon_sym_asm] = ACTIONS(3191), - [anon_sym___asm__] = ACTIONS(3191), - [sym_number_literal] = ACTIONS(3193), - [anon_sym_L_SQUOTE] = ACTIONS(3193), - [anon_sym_u_SQUOTE] = ACTIONS(3193), - [anon_sym_U_SQUOTE] = ACTIONS(3193), - [anon_sym_u8_SQUOTE] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3193), - [anon_sym_L_DQUOTE] = ACTIONS(3193), - [anon_sym_u_DQUOTE] = ACTIONS(3193), - [anon_sym_U_DQUOTE] = ACTIONS(3193), - [anon_sym_u8_DQUOTE] = ACTIONS(3193), - [anon_sym_DQUOTE] = ACTIONS(3193), - [sym_true] = ACTIONS(3191), - [sym_false] = ACTIONS(3191), - [anon_sym_NULL] = ACTIONS(3191), - [anon_sym_nullptr] = ACTIONS(3191), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3191), - [anon_sym_decltype] = ACTIONS(3191), - [anon_sym_virtual] = ACTIONS(3191), - [anon_sym_alignas] = ACTIONS(3191), - [anon_sym_explicit] = ACTIONS(3191), - [anon_sym_typename] = ACTIONS(3191), - [anon_sym_template] = ACTIONS(3191), - [anon_sym_operator] = ACTIONS(3191), - [anon_sym_try] = ACTIONS(3191), - [anon_sym_delete] = ACTIONS(3191), - [anon_sym_throw] = ACTIONS(3191), - [anon_sym_namespace] = ACTIONS(3191), - [anon_sym_using] = ACTIONS(3191), - [anon_sym_static_assert] = ACTIONS(3191), - [anon_sym_concept] = ACTIONS(3191), - [anon_sym_co_return] = ACTIONS(3191), - [anon_sym_co_yield] = ACTIONS(3191), - [anon_sym_R_DQUOTE] = ACTIONS(3193), - [anon_sym_LR_DQUOTE] = ACTIONS(3193), - [anon_sym_uR_DQUOTE] = ACTIONS(3193), - [anon_sym_UR_DQUOTE] = ACTIONS(3193), - [anon_sym_u8R_DQUOTE] = ACTIONS(3193), - [anon_sym_co_await] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3191), - [anon_sym_requires] = ACTIONS(3191), - [sym_this] = ACTIONS(3191), - }, - [800] = { - [sym_identifier] = ACTIONS(3298), - [aux_sym_preproc_include_token1] = ACTIONS(3298), - [aux_sym_preproc_def_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token2] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3298), - [aux_sym_preproc_else_token1] = ACTIONS(3298), - [aux_sym_preproc_elif_token1] = ACTIONS(3298), - [sym_preproc_directive] = ACTIONS(3298), - [anon_sym_LPAREN2] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_STAR] = ACTIONS(3300), - [anon_sym_AMP_AMP] = ACTIONS(3300), - [anon_sym_AMP] = ACTIONS(3298), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym___extension__] = ACTIONS(3298), - [anon_sym_typedef] = ACTIONS(3298), - [anon_sym_extern] = ACTIONS(3298), - [anon_sym___attribute__] = ACTIONS(3298), - [anon_sym_COLON_COLON] = ACTIONS(3300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3300), - [anon_sym___declspec] = ACTIONS(3298), - [anon_sym___based] = ACTIONS(3298), - [anon_sym___cdecl] = ACTIONS(3298), - [anon_sym___clrcall] = ACTIONS(3298), - [anon_sym___stdcall] = ACTIONS(3298), - [anon_sym___fastcall] = ACTIONS(3298), - [anon_sym___thiscall] = ACTIONS(3298), - [anon_sym___vectorcall] = ACTIONS(3298), - [anon_sym_LBRACE] = ACTIONS(3300), - [anon_sym_signed] = ACTIONS(3298), - [anon_sym_unsigned] = ACTIONS(3298), - [anon_sym_long] = ACTIONS(3298), - [anon_sym_short] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3298), - [anon_sym_register] = ACTIONS(3298), - [anon_sym_inline] = ACTIONS(3298), - [anon_sym___inline] = ACTIONS(3298), - [anon_sym___inline__] = ACTIONS(3298), - [anon_sym___forceinline] = ACTIONS(3298), - [anon_sym_thread_local] = ACTIONS(3298), - [anon_sym___thread] = ACTIONS(3298), - [anon_sym_const] = ACTIONS(3298), - [anon_sym_constexpr] = ACTIONS(3298), - [anon_sym_volatile] = ACTIONS(3298), - [anon_sym_restrict] = ACTIONS(3298), - [anon_sym___restrict__] = ACTIONS(3298), - [anon_sym__Atomic] = ACTIONS(3298), - [anon_sym__Noreturn] = ACTIONS(3298), - [anon_sym_noreturn] = ACTIONS(3298), - [anon_sym_mutable] = ACTIONS(3298), - [anon_sym_constinit] = ACTIONS(3298), - [anon_sym_consteval] = ACTIONS(3298), - [sym_primitive_type] = ACTIONS(3298), - [anon_sym_enum] = ACTIONS(3298), - [anon_sym_class] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3298), - [anon_sym_union] = ACTIONS(3298), - [anon_sym_if] = ACTIONS(3298), - [anon_sym_switch] = ACTIONS(3298), - [anon_sym_case] = ACTIONS(3298), - [anon_sym_default] = ACTIONS(3298), - [anon_sym_while] = ACTIONS(3298), - [anon_sym_do] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3298), - [anon_sym_return] = ACTIONS(3298), - [anon_sym_break] = ACTIONS(3298), - [anon_sym_continue] = ACTIONS(3298), - [anon_sym_goto] = ACTIONS(3298), - [anon_sym_not] = ACTIONS(3298), - [anon_sym_compl] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3300), - [anon_sym_sizeof] = ACTIONS(3298), - [anon_sym___alignof__] = ACTIONS(3298), - [anon_sym___alignof] = ACTIONS(3298), - [anon_sym__alignof] = ACTIONS(3298), - [anon_sym_alignof] = ACTIONS(3298), - [anon_sym__Alignof] = ACTIONS(3298), - [anon_sym_offsetof] = ACTIONS(3298), - [anon_sym__Generic] = ACTIONS(3298), - [anon_sym_asm] = ACTIONS(3298), - [anon_sym___asm__] = ACTIONS(3298), - [sym_number_literal] = ACTIONS(3300), - [anon_sym_L_SQUOTE] = ACTIONS(3300), - [anon_sym_u_SQUOTE] = ACTIONS(3300), - [anon_sym_U_SQUOTE] = ACTIONS(3300), - [anon_sym_u8_SQUOTE] = ACTIONS(3300), - [anon_sym_SQUOTE] = ACTIONS(3300), - [anon_sym_L_DQUOTE] = ACTIONS(3300), - [anon_sym_u_DQUOTE] = ACTIONS(3300), - [anon_sym_U_DQUOTE] = ACTIONS(3300), - [anon_sym_u8_DQUOTE] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(3300), - [sym_true] = ACTIONS(3298), - [sym_false] = ACTIONS(3298), - [anon_sym_NULL] = ACTIONS(3298), - [anon_sym_nullptr] = ACTIONS(3298), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3298), - [anon_sym_decltype] = ACTIONS(3298), - [anon_sym_virtual] = ACTIONS(3298), - [anon_sym_alignas] = ACTIONS(3298), - [anon_sym_explicit] = ACTIONS(3298), - [anon_sym_typename] = ACTIONS(3298), - [anon_sym_template] = ACTIONS(3298), - [anon_sym_operator] = ACTIONS(3298), - [anon_sym_try] = ACTIONS(3298), - [anon_sym_delete] = ACTIONS(3298), - [anon_sym_throw] = ACTIONS(3298), - [anon_sym_namespace] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3298), - [anon_sym_static_assert] = ACTIONS(3298), - [anon_sym_concept] = ACTIONS(3298), - [anon_sym_co_return] = ACTIONS(3298), - [anon_sym_co_yield] = ACTIONS(3298), - [anon_sym_R_DQUOTE] = ACTIONS(3300), - [anon_sym_LR_DQUOTE] = ACTIONS(3300), - [anon_sym_uR_DQUOTE] = ACTIONS(3300), - [anon_sym_UR_DQUOTE] = ACTIONS(3300), - [anon_sym_u8R_DQUOTE] = ACTIONS(3300), - [anon_sym_co_await] = ACTIONS(3298), - [anon_sym_new] = ACTIONS(3298), - [anon_sym_requires] = ACTIONS(3298), - [sym_this] = ACTIONS(3298), - }, - [801] = { - [sym_identifier] = ACTIONS(3294), - [aux_sym_preproc_include_token1] = ACTIONS(3294), - [aux_sym_preproc_def_token1] = ACTIONS(3294), - [aux_sym_preproc_if_token1] = ACTIONS(3294), - [aux_sym_preproc_if_token2] = ACTIONS(3294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), - [aux_sym_preproc_else_token1] = ACTIONS(3294), - [aux_sym_preproc_elif_token1] = ACTIONS(3294), - [sym_preproc_directive] = ACTIONS(3294), - [anon_sym_LPAREN2] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym___extension__] = ACTIONS(3294), - [anon_sym_typedef] = ACTIONS(3294), - [anon_sym_extern] = ACTIONS(3294), - [anon_sym___attribute__] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), - [anon_sym___declspec] = ACTIONS(3294), - [anon_sym___based] = ACTIONS(3294), - [anon_sym___cdecl] = ACTIONS(3294), - [anon_sym___clrcall] = ACTIONS(3294), - [anon_sym___stdcall] = ACTIONS(3294), - [anon_sym___fastcall] = ACTIONS(3294), - [anon_sym___thiscall] = ACTIONS(3294), - [anon_sym___vectorcall] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_signed] = ACTIONS(3294), - [anon_sym_unsigned] = ACTIONS(3294), - [anon_sym_long] = ACTIONS(3294), - [anon_sym_short] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_register] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym___inline] = ACTIONS(3294), - [anon_sym___inline__] = ACTIONS(3294), - [anon_sym___forceinline] = ACTIONS(3294), - [anon_sym_thread_local] = ACTIONS(3294), - [anon_sym___thread] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_constexpr] = ACTIONS(3294), - [anon_sym_volatile] = ACTIONS(3294), - [anon_sym_restrict] = ACTIONS(3294), - [anon_sym___restrict__] = ACTIONS(3294), - [anon_sym__Atomic] = ACTIONS(3294), - [anon_sym__Noreturn] = ACTIONS(3294), - [anon_sym_noreturn] = ACTIONS(3294), - [anon_sym_mutable] = ACTIONS(3294), - [anon_sym_constinit] = ACTIONS(3294), - [anon_sym_consteval] = ACTIONS(3294), - [sym_primitive_type] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), - [anon_sym_class] = ACTIONS(3294), - [anon_sym_struct] = ACTIONS(3294), - [anon_sym_union] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_switch] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3294), - [anon_sym_default] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_do] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_goto] = ACTIONS(3294), - [anon_sym_not] = ACTIONS(3294), - [anon_sym_compl] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_sizeof] = ACTIONS(3294), - [anon_sym___alignof__] = ACTIONS(3294), - [anon_sym___alignof] = ACTIONS(3294), - [anon_sym__alignof] = ACTIONS(3294), - [anon_sym_alignof] = ACTIONS(3294), - [anon_sym__Alignof] = ACTIONS(3294), - [anon_sym_offsetof] = ACTIONS(3294), - [anon_sym__Generic] = ACTIONS(3294), - [anon_sym_asm] = ACTIONS(3294), - [anon_sym___asm__] = ACTIONS(3294), - [sym_number_literal] = ACTIONS(3296), - [anon_sym_L_SQUOTE] = ACTIONS(3296), - [anon_sym_u_SQUOTE] = ACTIONS(3296), - [anon_sym_U_SQUOTE] = ACTIONS(3296), - [anon_sym_u8_SQUOTE] = ACTIONS(3296), - [anon_sym_SQUOTE] = ACTIONS(3296), - [anon_sym_L_DQUOTE] = ACTIONS(3296), - [anon_sym_u_DQUOTE] = ACTIONS(3296), - [anon_sym_U_DQUOTE] = ACTIONS(3296), - [anon_sym_u8_DQUOTE] = ACTIONS(3296), - [anon_sym_DQUOTE] = ACTIONS(3296), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [anon_sym_NULL] = ACTIONS(3294), - [anon_sym_nullptr] = ACTIONS(3294), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3294), - [anon_sym_decltype] = ACTIONS(3294), - [anon_sym_virtual] = ACTIONS(3294), - [anon_sym_alignas] = ACTIONS(3294), - [anon_sym_explicit] = ACTIONS(3294), - [anon_sym_typename] = ACTIONS(3294), - [anon_sym_template] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_delete] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_namespace] = ACTIONS(3294), - [anon_sym_using] = ACTIONS(3294), - [anon_sym_static_assert] = ACTIONS(3294), - [anon_sym_concept] = ACTIONS(3294), - [anon_sym_co_return] = ACTIONS(3294), - [anon_sym_co_yield] = ACTIONS(3294), - [anon_sym_R_DQUOTE] = ACTIONS(3296), - [anon_sym_LR_DQUOTE] = ACTIONS(3296), - [anon_sym_uR_DQUOTE] = ACTIONS(3296), - [anon_sym_UR_DQUOTE] = ACTIONS(3296), - [anon_sym_u8R_DQUOTE] = ACTIONS(3296), - [anon_sym_co_await] = ACTIONS(3294), - [anon_sym_new] = ACTIONS(3294), - [anon_sym_requires] = ACTIONS(3294), - [sym_this] = ACTIONS(3294), - }, - [802] = { - [sym_identifier] = ACTIONS(3290), - [aux_sym_preproc_include_token1] = ACTIONS(3290), - [aux_sym_preproc_def_token1] = ACTIONS(3290), - [aux_sym_preproc_if_token1] = ACTIONS(3290), - [aux_sym_preproc_if_token2] = ACTIONS(3290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3290), - [aux_sym_preproc_else_token1] = ACTIONS(3290), - [aux_sym_preproc_elif_token1] = ACTIONS(3290), - [sym_preproc_directive] = ACTIONS(3290), - [anon_sym_LPAREN2] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3290), - [anon_sym_PLUS] = ACTIONS(3290), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_AMP] = ACTIONS(3290), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym___extension__] = ACTIONS(3290), - [anon_sym_typedef] = ACTIONS(3290), - [anon_sym_extern] = ACTIONS(3290), - [anon_sym___attribute__] = ACTIONS(3290), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3292), - [anon_sym___declspec] = ACTIONS(3290), - [anon_sym___based] = ACTIONS(3290), - [anon_sym___cdecl] = ACTIONS(3290), - [anon_sym___clrcall] = ACTIONS(3290), - [anon_sym___stdcall] = ACTIONS(3290), - [anon_sym___fastcall] = ACTIONS(3290), - [anon_sym___thiscall] = ACTIONS(3290), - [anon_sym___vectorcall] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_signed] = ACTIONS(3290), - [anon_sym_unsigned] = ACTIONS(3290), - [anon_sym_long] = ACTIONS(3290), - [anon_sym_short] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_static] = ACTIONS(3290), - [anon_sym_register] = ACTIONS(3290), - [anon_sym_inline] = ACTIONS(3290), - [anon_sym___inline] = ACTIONS(3290), - [anon_sym___inline__] = ACTIONS(3290), - [anon_sym___forceinline] = ACTIONS(3290), - [anon_sym_thread_local] = ACTIONS(3290), - [anon_sym___thread] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_constexpr] = ACTIONS(3290), - [anon_sym_volatile] = ACTIONS(3290), - [anon_sym_restrict] = ACTIONS(3290), - [anon_sym___restrict__] = ACTIONS(3290), - [anon_sym__Atomic] = ACTIONS(3290), - [anon_sym__Noreturn] = ACTIONS(3290), - [anon_sym_noreturn] = ACTIONS(3290), - [anon_sym_mutable] = ACTIONS(3290), - [anon_sym_constinit] = ACTIONS(3290), - [anon_sym_consteval] = ACTIONS(3290), - [sym_primitive_type] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), - [anon_sym_class] = ACTIONS(3290), - [anon_sym_struct] = ACTIONS(3290), - [anon_sym_union] = ACTIONS(3290), - [anon_sym_if] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3290), - [anon_sym_case] = ACTIONS(3290), - [anon_sym_default] = ACTIONS(3290), - [anon_sym_while] = ACTIONS(3290), - [anon_sym_do] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3290), - [anon_sym_return] = ACTIONS(3290), - [anon_sym_break] = ACTIONS(3290), - [anon_sym_continue] = ACTIONS(3290), - [anon_sym_goto] = ACTIONS(3290), - [anon_sym_not] = ACTIONS(3290), - [anon_sym_compl] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_sizeof] = ACTIONS(3290), - [anon_sym___alignof__] = ACTIONS(3290), - [anon_sym___alignof] = ACTIONS(3290), - [anon_sym__alignof] = ACTIONS(3290), - [anon_sym_alignof] = ACTIONS(3290), - [anon_sym__Alignof] = ACTIONS(3290), - [anon_sym_offsetof] = ACTIONS(3290), - [anon_sym__Generic] = ACTIONS(3290), - [anon_sym_asm] = ACTIONS(3290), - [anon_sym___asm__] = ACTIONS(3290), - [sym_number_literal] = ACTIONS(3292), - [anon_sym_L_SQUOTE] = ACTIONS(3292), - [anon_sym_u_SQUOTE] = ACTIONS(3292), - [anon_sym_U_SQUOTE] = ACTIONS(3292), - [anon_sym_u8_SQUOTE] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_L_DQUOTE] = ACTIONS(3292), - [anon_sym_u_DQUOTE] = ACTIONS(3292), - [anon_sym_U_DQUOTE] = ACTIONS(3292), - [anon_sym_u8_DQUOTE] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [sym_true] = ACTIONS(3290), - [sym_false] = ACTIONS(3290), - [anon_sym_NULL] = ACTIONS(3290), - [anon_sym_nullptr] = ACTIONS(3290), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3290), - [anon_sym_decltype] = ACTIONS(3290), - [anon_sym_virtual] = ACTIONS(3290), - [anon_sym_alignas] = ACTIONS(3290), - [anon_sym_explicit] = ACTIONS(3290), - [anon_sym_typename] = ACTIONS(3290), - [anon_sym_template] = ACTIONS(3290), - [anon_sym_operator] = ACTIONS(3290), - [anon_sym_try] = ACTIONS(3290), - [anon_sym_delete] = ACTIONS(3290), - [anon_sym_throw] = ACTIONS(3290), - [anon_sym_namespace] = ACTIONS(3290), - [anon_sym_using] = ACTIONS(3290), - [anon_sym_static_assert] = ACTIONS(3290), - [anon_sym_concept] = ACTIONS(3290), - [anon_sym_co_return] = ACTIONS(3290), - [anon_sym_co_yield] = ACTIONS(3290), - [anon_sym_R_DQUOTE] = ACTIONS(3292), - [anon_sym_LR_DQUOTE] = ACTIONS(3292), - [anon_sym_uR_DQUOTE] = ACTIONS(3292), - [anon_sym_UR_DQUOTE] = ACTIONS(3292), - [anon_sym_u8R_DQUOTE] = ACTIONS(3292), - [anon_sym_co_await] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3290), - [anon_sym_requires] = ACTIONS(3290), - [sym_this] = ACTIONS(3290), - }, - [803] = { - [sym_identifier] = ACTIONS(3308), - [aux_sym_preproc_include_token1] = ACTIONS(3308), - [aux_sym_preproc_def_token1] = ACTIONS(3308), - [aux_sym_preproc_if_token1] = ACTIONS(3308), - [aux_sym_preproc_if_token2] = ACTIONS(3308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3308), - [aux_sym_preproc_else_token1] = ACTIONS(3308), - [aux_sym_preproc_elif_token1] = ACTIONS(3308), - [sym_preproc_directive] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(3310), - [anon_sym_BANG] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3310), - [anon_sym_DASH] = ACTIONS(3308), - [anon_sym_PLUS] = ACTIONS(3308), - [anon_sym_STAR] = ACTIONS(3310), - [anon_sym_AMP_AMP] = ACTIONS(3310), - [anon_sym_AMP] = ACTIONS(3308), - [anon_sym_SEMI] = ACTIONS(3310), - [anon_sym___extension__] = ACTIONS(3308), - [anon_sym_typedef] = ACTIONS(3308), - [anon_sym_extern] = ACTIONS(3308), - [anon_sym___attribute__] = ACTIONS(3308), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3310), - [anon_sym___declspec] = ACTIONS(3308), - [anon_sym___based] = ACTIONS(3308), - [anon_sym___cdecl] = ACTIONS(3308), - [anon_sym___clrcall] = ACTIONS(3308), - [anon_sym___stdcall] = ACTIONS(3308), - [anon_sym___fastcall] = ACTIONS(3308), - [anon_sym___thiscall] = ACTIONS(3308), - [anon_sym___vectorcall] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(3310), - [anon_sym_signed] = ACTIONS(3308), - [anon_sym_unsigned] = ACTIONS(3308), - [anon_sym_long] = ACTIONS(3308), - [anon_sym_short] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3308), - [anon_sym_static] = ACTIONS(3308), - [anon_sym_register] = ACTIONS(3308), - [anon_sym_inline] = ACTIONS(3308), - [anon_sym___inline] = ACTIONS(3308), - [anon_sym___inline__] = ACTIONS(3308), - [anon_sym___forceinline] = ACTIONS(3308), - [anon_sym_thread_local] = ACTIONS(3308), - [anon_sym___thread] = ACTIONS(3308), - [anon_sym_const] = ACTIONS(3308), - [anon_sym_constexpr] = ACTIONS(3308), - [anon_sym_volatile] = ACTIONS(3308), - [anon_sym_restrict] = ACTIONS(3308), - [anon_sym___restrict__] = ACTIONS(3308), - [anon_sym__Atomic] = ACTIONS(3308), - [anon_sym__Noreturn] = ACTIONS(3308), - [anon_sym_noreturn] = ACTIONS(3308), - [anon_sym_mutable] = ACTIONS(3308), - [anon_sym_constinit] = ACTIONS(3308), - [anon_sym_consteval] = ACTIONS(3308), - [sym_primitive_type] = ACTIONS(3308), - [anon_sym_enum] = ACTIONS(3308), - [anon_sym_class] = ACTIONS(3308), - [anon_sym_struct] = ACTIONS(3308), - [anon_sym_union] = ACTIONS(3308), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_switch] = ACTIONS(3308), - [anon_sym_case] = ACTIONS(3308), - [anon_sym_default] = ACTIONS(3308), - [anon_sym_while] = ACTIONS(3308), - [anon_sym_do] = ACTIONS(3308), - [anon_sym_for] = ACTIONS(3308), - [anon_sym_return] = ACTIONS(3308), - [anon_sym_break] = ACTIONS(3308), - [anon_sym_continue] = ACTIONS(3308), - [anon_sym_goto] = ACTIONS(3308), - [anon_sym_not] = ACTIONS(3308), - [anon_sym_compl] = ACTIONS(3308), - [anon_sym_DASH_DASH] = ACTIONS(3310), - [anon_sym_PLUS_PLUS] = ACTIONS(3310), - [anon_sym_sizeof] = ACTIONS(3308), - [anon_sym___alignof__] = ACTIONS(3308), - [anon_sym___alignof] = ACTIONS(3308), - [anon_sym__alignof] = ACTIONS(3308), - [anon_sym_alignof] = ACTIONS(3308), - [anon_sym__Alignof] = ACTIONS(3308), - [anon_sym_offsetof] = ACTIONS(3308), - [anon_sym__Generic] = ACTIONS(3308), - [anon_sym_asm] = ACTIONS(3308), - [anon_sym___asm__] = ACTIONS(3308), - [sym_number_literal] = ACTIONS(3310), - [anon_sym_L_SQUOTE] = ACTIONS(3310), - [anon_sym_u_SQUOTE] = ACTIONS(3310), - [anon_sym_U_SQUOTE] = ACTIONS(3310), - [anon_sym_u8_SQUOTE] = ACTIONS(3310), - [anon_sym_SQUOTE] = ACTIONS(3310), - [anon_sym_L_DQUOTE] = ACTIONS(3310), - [anon_sym_u_DQUOTE] = ACTIONS(3310), - [anon_sym_U_DQUOTE] = ACTIONS(3310), - [anon_sym_u8_DQUOTE] = ACTIONS(3310), - [anon_sym_DQUOTE] = ACTIONS(3310), - [sym_true] = ACTIONS(3308), - [sym_false] = ACTIONS(3308), - [anon_sym_NULL] = ACTIONS(3308), - [anon_sym_nullptr] = ACTIONS(3308), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3308), - [anon_sym_decltype] = ACTIONS(3308), - [anon_sym_virtual] = ACTIONS(3308), - [anon_sym_alignas] = ACTIONS(3308), - [anon_sym_explicit] = ACTIONS(3308), - [anon_sym_typename] = ACTIONS(3308), - [anon_sym_template] = ACTIONS(3308), - [anon_sym_operator] = ACTIONS(3308), - [anon_sym_try] = ACTIONS(3308), - [anon_sym_delete] = ACTIONS(3308), - [anon_sym_throw] = ACTIONS(3308), - [anon_sym_namespace] = ACTIONS(3308), - [anon_sym_using] = ACTIONS(3308), - [anon_sym_static_assert] = ACTIONS(3308), - [anon_sym_concept] = ACTIONS(3308), - [anon_sym_co_return] = ACTIONS(3308), - [anon_sym_co_yield] = ACTIONS(3308), - [anon_sym_R_DQUOTE] = ACTIONS(3310), - [anon_sym_LR_DQUOTE] = ACTIONS(3310), - [anon_sym_uR_DQUOTE] = ACTIONS(3310), - [anon_sym_UR_DQUOTE] = ACTIONS(3310), - [anon_sym_u8R_DQUOTE] = ACTIONS(3310), - [anon_sym_co_await] = ACTIONS(3308), - [anon_sym_new] = ACTIONS(3308), - [anon_sym_requires] = ACTIONS(3308), - [sym_this] = ACTIONS(3308), - }, - [804] = { - [sym_identifier] = ACTIONS(3278), - [aux_sym_preproc_include_token1] = ACTIONS(3278), - [aux_sym_preproc_def_token1] = ACTIONS(3278), - [aux_sym_preproc_if_token1] = ACTIONS(3278), - [aux_sym_preproc_if_token2] = ACTIONS(3278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3278), - [aux_sym_preproc_else_token1] = ACTIONS(3278), - [aux_sym_preproc_elif_token1] = ACTIONS(3278), - [sym_preproc_directive] = ACTIONS(3278), - [anon_sym_LPAREN2] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_AMP] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym___extension__] = ACTIONS(3278), - [anon_sym_typedef] = ACTIONS(3278), - [anon_sym_extern] = ACTIONS(3278), - [anon_sym___attribute__] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3280), - [anon_sym___declspec] = ACTIONS(3278), - [anon_sym___based] = ACTIONS(3278), - [anon_sym___cdecl] = ACTIONS(3278), - [anon_sym___clrcall] = ACTIONS(3278), - [anon_sym___stdcall] = ACTIONS(3278), - [anon_sym___fastcall] = ACTIONS(3278), - [anon_sym___thiscall] = ACTIONS(3278), - [anon_sym___vectorcall] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_signed] = ACTIONS(3278), - [anon_sym_unsigned] = ACTIONS(3278), - [anon_sym_long] = ACTIONS(3278), - [anon_sym_short] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3278), - [anon_sym_static] = ACTIONS(3278), - [anon_sym_register] = ACTIONS(3278), - [anon_sym_inline] = ACTIONS(3278), - [anon_sym___inline] = ACTIONS(3278), - [anon_sym___inline__] = ACTIONS(3278), - [anon_sym___forceinline] = ACTIONS(3278), - [anon_sym_thread_local] = ACTIONS(3278), - [anon_sym___thread] = ACTIONS(3278), - [anon_sym_const] = ACTIONS(3278), - [anon_sym_constexpr] = ACTIONS(3278), - [anon_sym_volatile] = ACTIONS(3278), - [anon_sym_restrict] = ACTIONS(3278), - [anon_sym___restrict__] = ACTIONS(3278), - [anon_sym__Atomic] = ACTIONS(3278), - [anon_sym__Noreturn] = ACTIONS(3278), - [anon_sym_noreturn] = ACTIONS(3278), - [anon_sym_mutable] = ACTIONS(3278), - [anon_sym_constinit] = ACTIONS(3278), - [anon_sym_consteval] = ACTIONS(3278), - [sym_primitive_type] = ACTIONS(3278), - [anon_sym_enum] = ACTIONS(3278), - [anon_sym_class] = ACTIONS(3278), - [anon_sym_struct] = ACTIONS(3278), - [anon_sym_union] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_switch] = ACTIONS(3278), - [anon_sym_case] = ACTIONS(3278), - [anon_sym_default] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_do] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_goto] = ACTIONS(3278), - [anon_sym_not] = ACTIONS(3278), - [anon_sym_compl] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_sizeof] = ACTIONS(3278), - [anon_sym___alignof__] = ACTIONS(3278), - [anon_sym___alignof] = ACTIONS(3278), - [anon_sym__alignof] = ACTIONS(3278), - [anon_sym_alignof] = ACTIONS(3278), - [anon_sym__Alignof] = ACTIONS(3278), - [anon_sym_offsetof] = ACTIONS(3278), - [anon_sym__Generic] = ACTIONS(3278), - [anon_sym_asm] = ACTIONS(3278), - [anon_sym___asm__] = ACTIONS(3278), - [sym_number_literal] = ACTIONS(3280), - [anon_sym_L_SQUOTE] = ACTIONS(3280), - [anon_sym_u_SQUOTE] = ACTIONS(3280), - [anon_sym_U_SQUOTE] = ACTIONS(3280), - [anon_sym_u8_SQUOTE] = ACTIONS(3280), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_L_DQUOTE] = ACTIONS(3280), - [anon_sym_u_DQUOTE] = ACTIONS(3280), - [anon_sym_U_DQUOTE] = ACTIONS(3280), - [anon_sym_u8_DQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [anon_sym_NULL] = ACTIONS(3278), - [anon_sym_nullptr] = ACTIONS(3278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3278), - [anon_sym_decltype] = ACTIONS(3278), - [anon_sym_virtual] = ACTIONS(3278), - [anon_sym_alignas] = ACTIONS(3278), - [anon_sym_explicit] = ACTIONS(3278), - [anon_sym_typename] = ACTIONS(3278), - [anon_sym_template] = ACTIONS(3278), - [anon_sym_operator] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_delete] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_namespace] = ACTIONS(3278), - [anon_sym_using] = ACTIONS(3278), - [anon_sym_static_assert] = ACTIONS(3278), - [anon_sym_concept] = ACTIONS(3278), - [anon_sym_co_return] = ACTIONS(3278), - [anon_sym_co_yield] = ACTIONS(3278), - [anon_sym_R_DQUOTE] = ACTIONS(3280), - [anon_sym_LR_DQUOTE] = ACTIONS(3280), - [anon_sym_uR_DQUOTE] = ACTIONS(3280), - [anon_sym_UR_DQUOTE] = ACTIONS(3280), - [anon_sym_u8R_DQUOTE] = ACTIONS(3280), - [anon_sym_co_await] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3278), - [anon_sym_requires] = ACTIONS(3278), - [sym_this] = ACTIONS(3278), - }, [805] = { - [sym_identifier] = ACTIONS(3274), - [aux_sym_preproc_include_token1] = ACTIONS(3274), - [aux_sym_preproc_def_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token2] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), - [aux_sym_preproc_else_token1] = ACTIONS(3274), - [aux_sym_preproc_elif_token1] = ACTIONS(3274), - [sym_preproc_directive] = ACTIONS(3274), - [anon_sym_LPAREN2] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_AMP] = ACTIONS(3274), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym___extension__] = ACTIONS(3274), - [anon_sym_typedef] = ACTIONS(3274), - [anon_sym_extern] = ACTIONS(3274), - [anon_sym___attribute__] = ACTIONS(3274), - [anon_sym_COLON_COLON] = ACTIONS(3276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), - [anon_sym___declspec] = ACTIONS(3274), - [anon_sym___based] = ACTIONS(3274), - [anon_sym___cdecl] = ACTIONS(3274), - [anon_sym___clrcall] = ACTIONS(3274), - [anon_sym___stdcall] = ACTIONS(3274), - [anon_sym___fastcall] = ACTIONS(3274), - [anon_sym___thiscall] = ACTIONS(3274), - [anon_sym___vectorcall] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_signed] = ACTIONS(3274), - [anon_sym_unsigned] = ACTIONS(3274), - [anon_sym_long] = ACTIONS(3274), - [anon_sym_short] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_register] = ACTIONS(3274), - [anon_sym_inline] = ACTIONS(3274), - [anon_sym___inline] = ACTIONS(3274), - [anon_sym___inline__] = ACTIONS(3274), - [anon_sym___forceinline] = ACTIONS(3274), - [anon_sym_thread_local] = ACTIONS(3274), - [anon_sym___thread] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_constexpr] = ACTIONS(3274), - [anon_sym_volatile] = ACTIONS(3274), - [anon_sym_restrict] = ACTIONS(3274), - [anon_sym___restrict__] = ACTIONS(3274), - [anon_sym__Atomic] = ACTIONS(3274), - [anon_sym__Noreturn] = ACTIONS(3274), - [anon_sym_noreturn] = ACTIONS(3274), - [anon_sym_mutable] = ACTIONS(3274), - [anon_sym_constinit] = ACTIONS(3274), - [anon_sym_consteval] = ACTIONS(3274), - [sym_primitive_type] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_union] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_case] = ACTIONS(3274), - [anon_sym_default] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_goto] = ACTIONS(3274), - [anon_sym_not] = ACTIONS(3274), - [anon_sym_compl] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_sizeof] = ACTIONS(3274), - [anon_sym___alignof__] = ACTIONS(3274), - [anon_sym___alignof] = ACTIONS(3274), - [anon_sym__alignof] = ACTIONS(3274), - [anon_sym_alignof] = ACTIONS(3274), - [anon_sym__Alignof] = ACTIONS(3274), - [anon_sym_offsetof] = ACTIONS(3274), - [anon_sym__Generic] = ACTIONS(3274), - [anon_sym_asm] = ACTIONS(3274), - [anon_sym___asm__] = ACTIONS(3274), - [sym_number_literal] = ACTIONS(3276), - [anon_sym_L_SQUOTE] = ACTIONS(3276), - [anon_sym_u_SQUOTE] = ACTIONS(3276), - [anon_sym_U_SQUOTE] = ACTIONS(3276), - [anon_sym_u8_SQUOTE] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3276), - [anon_sym_L_DQUOTE] = ACTIONS(3276), - [anon_sym_u_DQUOTE] = ACTIONS(3276), - [anon_sym_U_DQUOTE] = ACTIONS(3276), - [anon_sym_u8_DQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [anon_sym_NULL] = ACTIONS(3274), - [anon_sym_nullptr] = ACTIONS(3274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3274), - [anon_sym_decltype] = ACTIONS(3274), - [anon_sym_virtual] = ACTIONS(3274), - [anon_sym_alignas] = ACTIONS(3274), - [anon_sym_explicit] = ACTIONS(3274), - [anon_sym_typename] = ACTIONS(3274), - [anon_sym_template] = ACTIONS(3274), - [anon_sym_operator] = ACTIONS(3274), - [anon_sym_try] = ACTIONS(3274), - [anon_sym_delete] = ACTIONS(3274), - [anon_sym_throw] = ACTIONS(3274), - [anon_sym_namespace] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_static_assert] = ACTIONS(3274), - [anon_sym_concept] = ACTIONS(3274), - [anon_sym_co_return] = ACTIONS(3274), - [anon_sym_co_yield] = ACTIONS(3274), - [anon_sym_R_DQUOTE] = ACTIONS(3276), - [anon_sym_LR_DQUOTE] = ACTIONS(3276), - [anon_sym_uR_DQUOTE] = ACTIONS(3276), - [anon_sym_UR_DQUOTE] = ACTIONS(3276), - [anon_sym_u8R_DQUOTE] = ACTIONS(3276), - [anon_sym_co_await] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3274), - [anon_sym_requires] = ACTIONS(3274), - [sym_this] = ACTIONS(3274), + [sym_identifier] = ACTIONS(3095), + [aux_sym_preproc_include_token1] = ACTIONS(3095), + [aux_sym_preproc_def_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token2] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), + [sym_preproc_directive] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_AMP_AMP] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(3095), + [anon_sym___attribute__] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), + [anon_sym___declspec] = ACTIONS(3095), + [anon_sym___based] = ACTIONS(3095), + [anon_sym___cdecl] = ACTIONS(3095), + [anon_sym___clrcall] = ACTIONS(3095), + [anon_sym___stdcall] = ACTIONS(3095), + [anon_sym___fastcall] = ACTIONS(3095), + [anon_sym___thiscall] = ACTIONS(3095), + [anon_sym___vectorcall] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3095), + [anon_sym_unsigned] = ACTIONS(3095), + [anon_sym_long] = ACTIONS(3095), + [anon_sym_short] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_register] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym___inline] = ACTIONS(3095), + [anon_sym___inline__] = ACTIONS(3095), + [anon_sym___forceinline] = ACTIONS(3095), + [anon_sym_thread_local] = ACTIONS(3095), + [anon_sym___thread] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_constexpr] = ACTIONS(3095), + [anon_sym_volatile] = ACTIONS(3095), + [anon_sym_restrict] = ACTIONS(3095), + [anon_sym___restrict__] = ACTIONS(3095), + [anon_sym__Atomic] = ACTIONS(3095), + [anon_sym__Noreturn] = ACTIONS(3095), + [anon_sym_noreturn] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [sym_primitive_type] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3095), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_switch] = ACTIONS(3095), + [anon_sym_case] = ACTIONS(3095), + [anon_sym_default] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_break] = ACTIONS(3095), + [anon_sym_continue] = ACTIONS(3095), + [anon_sym_goto] = ACTIONS(3095), + [anon_sym_not] = ACTIONS(3095), + [anon_sym_compl] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3097), + [anon_sym_PLUS_PLUS] = ACTIONS(3097), + [anon_sym_sizeof] = ACTIONS(3095), + [anon_sym___alignof__] = ACTIONS(3095), + [anon_sym___alignof] = ACTIONS(3095), + [anon_sym__alignof] = ACTIONS(3095), + [anon_sym_alignof] = ACTIONS(3095), + [anon_sym__Alignof] = ACTIONS(3095), + [anon_sym_offsetof] = ACTIONS(3095), + [anon_sym__Generic] = ACTIONS(3095), + [anon_sym_asm] = ACTIONS(3095), + [anon_sym___asm__] = ACTIONS(3095), + [sym_number_literal] = ACTIONS(3097), + [anon_sym_L_SQUOTE] = ACTIONS(3097), + [anon_sym_u_SQUOTE] = ACTIONS(3097), + [anon_sym_U_SQUOTE] = ACTIONS(3097), + [anon_sym_u8_SQUOTE] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(3097), + [anon_sym_u_DQUOTE] = ACTIONS(3097), + [anon_sym_U_DQUOTE] = ACTIONS(3097), + [anon_sym_u8_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE] = ACTIONS(3097), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [anon_sym_NULL] = ACTIONS(3095), + [anon_sym_nullptr] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_virtual] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym_explicit] = ACTIONS(3095), + [anon_sym_typename] = ACTIONS(3095), + [anon_sym_template] = ACTIONS(3095), + [anon_sym_operator] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_delete] = ACTIONS(3095), + [anon_sym_throw] = ACTIONS(3095), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_using] = ACTIONS(3095), + [anon_sym_static_assert] = ACTIONS(3095), + [anon_sym_concept] = ACTIONS(3095), + [anon_sym_co_return] = ACTIONS(3095), + [anon_sym_co_yield] = ACTIONS(3095), + [anon_sym_R_DQUOTE] = ACTIONS(3097), + [anon_sym_LR_DQUOTE] = ACTIONS(3097), + [anon_sym_uR_DQUOTE] = ACTIONS(3097), + [anon_sym_UR_DQUOTE] = ACTIONS(3097), + [anon_sym_u8R_DQUOTE] = ACTIONS(3097), + [anon_sym_co_await] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_requires] = ACTIONS(3095), + [sym_this] = ACTIONS(3095), }, [806] = { - [sym_identifier] = ACTIONS(3270), - [aux_sym_preproc_include_token1] = ACTIONS(3270), - [aux_sym_preproc_def_token1] = ACTIONS(3270), - [aux_sym_preproc_if_token1] = ACTIONS(3270), - [aux_sym_preproc_if_token2] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3270), - [aux_sym_preproc_else_token1] = ACTIONS(3270), - [aux_sym_preproc_elif_token1] = ACTIONS(3270), - [sym_preproc_directive] = ACTIONS(3270), - [anon_sym_LPAREN2] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_AMP] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym_typedef] = ACTIONS(3270), - [anon_sym_extern] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3272), - [anon_sym___declspec] = ACTIONS(3270), - [anon_sym___based] = ACTIONS(3270), - [anon_sym___cdecl] = ACTIONS(3270), - [anon_sym___clrcall] = ACTIONS(3270), - [anon_sym___stdcall] = ACTIONS(3270), - [anon_sym___fastcall] = ACTIONS(3270), - [anon_sym___thiscall] = ACTIONS(3270), - [anon_sym___vectorcall] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_signed] = ACTIONS(3270), - [anon_sym_unsigned] = ACTIONS(3270), - [anon_sym_long] = ACTIONS(3270), - [anon_sym_short] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_register] = ACTIONS(3270), - [anon_sym_inline] = ACTIONS(3270), - [anon_sym___inline] = ACTIONS(3270), - [anon_sym___inline__] = ACTIONS(3270), - [anon_sym___forceinline] = ACTIONS(3270), - [anon_sym_thread_local] = ACTIONS(3270), - [anon_sym___thread] = ACTIONS(3270), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [sym_primitive_type] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3270), - [anon_sym_struct] = ACTIONS(3270), - [anon_sym_union] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_switch] = ACTIONS(3270), - [anon_sym_case] = ACTIONS(3270), - [anon_sym_default] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_do] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_goto] = ACTIONS(3270), - [anon_sym_not] = ACTIONS(3270), - [anon_sym_compl] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_sizeof] = ACTIONS(3270), - [anon_sym___alignof__] = ACTIONS(3270), - [anon_sym___alignof] = ACTIONS(3270), - [anon_sym__alignof] = ACTIONS(3270), - [anon_sym_alignof] = ACTIONS(3270), - [anon_sym__Alignof] = ACTIONS(3270), - [anon_sym_offsetof] = ACTIONS(3270), - [anon_sym__Generic] = ACTIONS(3270), - [anon_sym_asm] = ACTIONS(3270), - [anon_sym___asm__] = ACTIONS(3270), - [sym_number_literal] = ACTIONS(3272), - [anon_sym_L_SQUOTE] = ACTIONS(3272), - [anon_sym_u_SQUOTE] = ACTIONS(3272), - [anon_sym_U_SQUOTE] = ACTIONS(3272), - [anon_sym_u8_SQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_L_DQUOTE] = ACTIONS(3272), - [anon_sym_u_DQUOTE] = ACTIONS(3272), - [anon_sym_U_DQUOTE] = ACTIONS(3272), - [anon_sym_u8_DQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [anon_sym_NULL] = ACTIONS(3270), - [anon_sym_nullptr] = ACTIONS(3270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3270), - [anon_sym_decltype] = ACTIONS(3270), - [anon_sym_virtual] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3270), - [anon_sym_explicit] = ACTIONS(3270), - [anon_sym_typename] = ACTIONS(3270), - [anon_sym_template] = ACTIONS(3270), - [anon_sym_operator] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_delete] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_namespace] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3270), - [anon_sym_static_assert] = ACTIONS(3270), - [anon_sym_concept] = ACTIONS(3270), - [anon_sym_co_return] = ACTIONS(3270), - [anon_sym_co_yield] = ACTIONS(3270), - [anon_sym_R_DQUOTE] = ACTIONS(3272), - [anon_sym_LR_DQUOTE] = ACTIONS(3272), - [anon_sym_uR_DQUOTE] = ACTIONS(3272), - [anon_sym_UR_DQUOTE] = ACTIONS(3272), - [anon_sym_u8R_DQUOTE] = ACTIONS(3272), - [anon_sym_co_await] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3270), - [anon_sym_requires] = ACTIONS(3270), - [sym_this] = ACTIONS(3270), + [sym_identifier] = ACTIONS(2957), + [aux_sym_preproc_include_token1] = ACTIONS(2957), + [aux_sym_preproc_def_token1] = ACTIONS(2957), + [aux_sym_preproc_if_token1] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2957), + [sym_preproc_directive] = ACTIONS(2957), + [anon_sym_LPAREN2] = ACTIONS(2959), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2959), + [anon_sym___extension__] = ACTIONS(2957), + [anon_sym_typedef] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym___attribute__] = ACTIONS(2957), + [anon_sym_COLON_COLON] = ACTIONS(2959), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), + [anon_sym___declspec] = ACTIONS(2957), + [anon_sym___based] = ACTIONS(2957), + [anon_sym___cdecl] = ACTIONS(2957), + [anon_sym___clrcall] = ACTIONS(2957), + [anon_sym___stdcall] = ACTIONS(2957), + [anon_sym___fastcall] = ACTIONS(2957), + [anon_sym___thiscall] = ACTIONS(2957), + [anon_sym___vectorcall] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_RBRACE] = ACTIONS(2959), + [anon_sym_signed] = ACTIONS(2957), + [anon_sym_unsigned] = ACTIONS(2957), + [anon_sym_long] = ACTIONS(2957), + [anon_sym_short] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_static] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_inline] = ACTIONS(2957), + [anon_sym___inline] = ACTIONS(2957), + [anon_sym___inline__] = ACTIONS(2957), + [anon_sym___forceinline] = ACTIONS(2957), + [anon_sym_thread_local] = ACTIONS(2957), + [anon_sym___thread] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_constexpr] = ACTIONS(2957), + [anon_sym_volatile] = ACTIONS(2957), + [anon_sym_restrict] = ACTIONS(2957), + [anon_sym___restrict__] = ACTIONS(2957), + [anon_sym__Atomic] = ACTIONS(2957), + [anon_sym__Noreturn] = ACTIONS(2957), + [anon_sym_noreturn] = ACTIONS(2957), + [anon_sym_mutable] = ACTIONS(2957), + [anon_sym_constinit] = ACTIONS(2957), + [anon_sym_consteval] = ACTIONS(2957), + [sym_primitive_type] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [anon_sym_class] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_union] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_switch] = ACTIONS(2957), + [anon_sym_case] = ACTIONS(2957), + [anon_sym_default] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_goto] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [anon_sym_compl] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_sizeof] = ACTIONS(2957), + [anon_sym___alignof__] = ACTIONS(2957), + [anon_sym___alignof] = ACTIONS(2957), + [anon_sym__alignof] = ACTIONS(2957), + [anon_sym_alignof] = ACTIONS(2957), + [anon_sym__Alignof] = ACTIONS(2957), + [anon_sym_offsetof] = ACTIONS(2957), + [anon_sym__Generic] = ACTIONS(2957), + [anon_sym_asm] = ACTIONS(2957), + [anon_sym___asm__] = ACTIONS(2957), + [sym_number_literal] = ACTIONS(2959), + [anon_sym_L_SQUOTE] = ACTIONS(2959), + [anon_sym_u_SQUOTE] = ACTIONS(2959), + [anon_sym_U_SQUOTE] = ACTIONS(2959), + [anon_sym_u8_SQUOTE] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2959), + [anon_sym_L_DQUOTE] = ACTIONS(2959), + [anon_sym_u_DQUOTE] = ACTIONS(2959), + [anon_sym_U_DQUOTE] = ACTIONS(2959), + [anon_sym_u8_DQUOTE] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [anon_sym_NULL] = ACTIONS(2957), + [anon_sym_nullptr] = ACTIONS(2957), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2957), + [anon_sym_decltype] = ACTIONS(2957), + [anon_sym_virtual] = ACTIONS(2957), + [anon_sym_alignas] = ACTIONS(2957), + [anon_sym_explicit] = ACTIONS(2957), + [anon_sym_typename] = ACTIONS(2957), + [anon_sym_template] = ACTIONS(2957), + [anon_sym_operator] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_delete] = ACTIONS(2957), + [anon_sym_throw] = ACTIONS(2957), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_using] = ACTIONS(2957), + [anon_sym_static_assert] = ACTIONS(2957), + [anon_sym_concept] = ACTIONS(2957), + [anon_sym_co_return] = ACTIONS(2957), + [anon_sym_co_yield] = ACTIONS(2957), + [anon_sym_R_DQUOTE] = ACTIONS(2959), + [anon_sym_LR_DQUOTE] = ACTIONS(2959), + [anon_sym_uR_DQUOTE] = ACTIONS(2959), + [anon_sym_UR_DQUOTE] = ACTIONS(2959), + [anon_sym_u8R_DQUOTE] = ACTIONS(2959), + [anon_sym_co_await] = ACTIONS(2957), + [anon_sym_new] = ACTIONS(2957), + [anon_sym_requires] = ACTIONS(2957), + [sym_this] = ACTIONS(2957), }, [807] = { - [sym_identifier] = ACTIONS(3422), - [aux_sym_preproc_include_token1] = ACTIONS(3422), - [aux_sym_preproc_def_token1] = ACTIONS(3422), - [aux_sym_preproc_if_token1] = ACTIONS(3422), - [aux_sym_preproc_if_token2] = ACTIONS(3422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3422), - [aux_sym_preproc_else_token1] = ACTIONS(3422), - [aux_sym_preproc_elif_token1] = ACTIONS(3422), - [sym_preproc_directive] = ACTIONS(3422), - [anon_sym_LPAREN2] = ACTIONS(3424), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3424), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_STAR] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym___extension__] = ACTIONS(3422), - [anon_sym_typedef] = ACTIONS(3422), - [anon_sym_extern] = ACTIONS(3422), - [anon_sym___attribute__] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3424), - [anon_sym___declspec] = ACTIONS(3422), - [anon_sym___based] = ACTIONS(3422), - [anon_sym___cdecl] = ACTIONS(3422), - [anon_sym___clrcall] = ACTIONS(3422), - [anon_sym___stdcall] = ACTIONS(3422), - [anon_sym___fastcall] = ACTIONS(3422), - [anon_sym___thiscall] = ACTIONS(3422), - [anon_sym___vectorcall] = ACTIONS(3422), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_signed] = ACTIONS(3422), - [anon_sym_unsigned] = ACTIONS(3422), - [anon_sym_long] = ACTIONS(3422), - [anon_sym_short] = ACTIONS(3422), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_static] = ACTIONS(3422), - [anon_sym_register] = ACTIONS(3422), - [anon_sym_inline] = ACTIONS(3422), - [anon_sym___inline] = ACTIONS(3422), - [anon_sym___inline__] = ACTIONS(3422), - [anon_sym___forceinline] = ACTIONS(3422), - [anon_sym_thread_local] = ACTIONS(3422), - [anon_sym___thread] = ACTIONS(3422), - [anon_sym_const] = ACTIONS(3422), - [anon_sym_constexpr] = ACTIONS(3422), - [anon_sym_volatile] = ACTIONS(3422), - [anon_sym_restrict] = ACTIONS(3422), - [anon_sym___restrict__] = ACTIONS(3422), - [anon_sym__Atomic] = ACTIONS(3422), - [anon_sym__Noreturn] = ACTIONS(3422), - [anon_sym_noreturn] = ACTIONS(3422), - [anon_sym_mutable] = ACTIONS(3422), - [anon_sym_constinit] = ACTIONS(3422), - [anon_sym_consteval] = ACTIONS(3422), - [sym_primitive_type] = ACTIONS(3422), - [anon_sym_enum] = ACTIONS(3422), - [anon_sym_class] = ACTIONS(3422), - [anon_sym_struct] = ACTIONS(3422), - [anon_sym_union] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3422), - [anon_sym_switch] = ACTIONS(3422), - [anon_sym_case] = ACTIONS(3422), - [anon_sym_default] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_do] = ACTIONS(3422), - [anon_sym_for] = ACTIONS(3422), - [anon_sym_return] = ACTIONS(3422), - [anon_sym_break] = ACTIONS(3422), - [anon_sym_continue] = ACTIONS(3422), - [anon_sym_goto] = ACTIONS(3422), - [anon_sym_not] = ACTIONS(3422), - [anon_sym_compl] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3422), - [anon_sym___alignof__] = ACTIONS(3422), - [anon_sym___alignof] = ACTIONS(3422), - [anon_sym__alignof] = ACTIONS(3422), - [anon_sym_alignof] = ACTIONS(3422), - [anon_sym__Alignof] = ACTIONS(3422), - [anon_sym_offsetof] = ACTIONS(3422), - [anon_sym__Generic] = ACTIONS(3422), - [anon_sym_asm] = ACTIONS(3422), - [anon_sym___asm__] = ACTIONS(3422), - [sym_number_literal] = ACTIONS(3424), - [anon_sym_L_SQUOTE] = ACTIONS(3424), - [anon_sym_u_SQUOTE] = ACTIONS(3424), - [anon_sym_U_SQUOTE] = ACTIONS(3424), - [anon_sym_u8_SQUOTE] = ACTIONS(3424), - [anon_sym_SQUOTE] = ACTIONS(3424), - [anon_sym_L_DQUOTE] = ACTIONS(3424), - [anon_sym_u_DQUOTE] = ACTIONS(3424), - [anon_sym_U_DQUOTE] = ACTIONS(3424), - [anon_sym_u8_DQUOTE] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [sym_true] = ACTIONS(3422), - [sym_false] = ACTIONS(3422), - [anon_sym_NULL] = ACTIONS(3422), - [anon_sym_nullptr] = ACTIONS(3422), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3422), - [anon_sym_decltype] = ACTIONS(3422), - [anon_sym_virtual] = ACTIONS(3422), - [anon_sym_alignas] = ACTIONS(3422), - [anon_sym_explicit] = ACTIONS(3422), - [anon_sym_typename] = ACTIONS(3422), - [anon_sym_template] = ACTIONS(3422), - [anon_sym_operator] = ACTIONS(3422), - [anon_sym_try] = ACTIONS(3422), - [anon_sym_delete] = ACTIONS(3422), - [anon_sym_throw] = ACTIONS(3422), - [anon_sym_namespace] = ACTIONS(3422), - [anon_sym_using] = ACTIONS(3422), - [anon_sym_static_assert] = ACTIONS(3422), - [anon_sym_concept] = ACTIONS(3422), - [anon_sym_co_return] = ACTIONS(3422), - [anon_sym_co_yield] = ACTIONS(3422), - [anon_sym_R_DQUOTE] = ACTIONS(3424), - [anon_sym_LR_DQUOTE] = ACTIONS(3424), - [anon_sym_uR_DQUOTE] = ACTIONS(3424), - [anon_sym_UR_DQUOTE] = ACTIONS(3424), - [anon_sym_u8R_DQUOTE] = ACTIONS(3424), - [anon_sym_co_await] = ACTIONS(3422), - [anon_sym_new] = ACTIONS(3422), - [anon_sym_requires] = ACTIONS(3422), - [sym_this] = ACTIONS(3422), + [sym_identifier] = ACTIONS(2884), + [aux_sym_preproc_include_token1] = ACTIONS(2884), + [aux_sym_preproc_def_token1] = ACTIONS(2884), + [aux_sym_preproc_if_token1] = ACTIONS(2884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2884), + [sym_preproc_directive] = ACTIONS(2884), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_STAR] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_SEMI] = ACTIONS(2886), + [anon_sym___extension__] = ACTIONS(2884), + [anon_sym_typedef] = ACTIONS(2884), + [anon_sym_extern] = ACTIONS(2884), + [anon_sym___attribute__] = ACTIONS(2884), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2886), + [anon_sym___declspec] = ACTIONS(2884), + [anon_sym___based] = ACTIONS(2884), + [anon_sym___cdecl] = ACTIONS(2884), + [anon_sym___clrcall] = ACTIONS(2884), + [anon_sym___stdcall] = ACTIONS(2884), + [anon_sym___fastcall] = ACTIONS(2884), + [anon_sym___thiscall] = ACTIONS(2884), + [anon_sym___vectorcall] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_RBRACE] = ACTIONS(2886), + [anon_sym_signed] = ACTIONS(2884), + [anon_sym_unsigned] = ACTIONS(2884), + [anon_sym_long] = ACTIONS(2884), + [anon_sym_short] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(2884), + [anon_sym_register] = ACTIONS(2884), + [anon_sym_inline] = ACTIONS(2884), + [anon_sym___inline] = ACTIONS(2884), + [anon_sym___inline__] = ACTIONS(2884), + [anon_sym___forceinline] = ACTIONS(2884), + [anon_sym_thread_local] = ACTIONS(2884), + [anon_sym___thread] = ACTIONS(2884), + [anon_sym_const] = ACTIONS(2884), + [anon_sym_constexpr] = ACTIONS(2884), + [anon_sym_volatile] = ACTIONS(2884), + [anon_sym_restrict] = ACTIONS(2884), + [anon_sym___restrict__] = ACTIONS(2884), + [anon_sym__Atomic] = ACTIONS(2884), + [anon_sym__Noreturn] = ACTIONS(2884), + [anon_sym_noreturn] = ACTIONS(2884), + [anon_sym_mutable] = ACTIONS(2884), + [anon_sym_constinit] = ACTIONS(2884), + [anon_sym_consteval] = ACTIONS(2884), + [sym_primitive_type] = ACTIONS(2884), + [anon_sym_enum] = ACTIONS(2884), + [anon_sym_class] = ACTIONS(2884), + [anon_sym_struct] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_switch] = ACTIONS(2884), + [anon_sym_case] = ACTIONS(2884), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_break] = ACTIONS(2884), + [anon_sym_continue] = ACTIONS(2884), + [anon_sym_goto] = ACTIONS(2884), + [anon_sym_not] = ACTIONS(2884), + [anon_sym_compl] = ACTIONS(2884), + [anon_sym_DASH_DASH] = ACTIONS(2886), + [anon_sym_PLUS_PLUS] = ACTIONS(2886), + [anon_sym_sizeof] = ACTIONS(2884), + [anon_sym___alignof__] = ACTIONS(2884), + [anon_sym___alignof] = ACTIONS(2884), + [anon_sym__alignof] = ACTIONS(2884), + [anon_sym_alignof] = ACTIONS(2884), + [anon_sym__Alignof] = ACTIONS(2884), + [anon_sym_offsetof] = ACTIONS(2884), + [anon_sym__Generic] = ACTIONS(2884), + [anon_sym_asm] = ACTIONS(2884), + [anon_sym___asm__] = ACTIONS(2884), + [sym_number_literal] = ACTIONS(2886), + [anon_sym_L_SQUOTE] = ACTIONS(2886), + [anon_sym_u_SQUOTE] = ACTIONS(2886), + [anon_sym_U_SQUOTE] = ACTIONS(2886), + [anon_sym_u8_SQUOTE] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_L_DQUOTE] = ACTIONS(2886), + [anon_sym_u_DQUOTE] = ACTIONS(2886), + [anon_sym_U_DQUOTE] = ACTIONS(2886), + [anon_sym_u8_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [sym_true] = ACTIONS(2884), + [sym_false] = ACTIONS(2884), + [anon_sym_NULL] = ACTIONS(2884), + [anon_sym_nullptr] = ACTIONS(2884), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2884), + [anon_sym_decltype] = ACTIONS(2884), + [anon_sym_virtual] = ACTIONS(2884), + [anon_sym_alignas] = ACTIONS(2884), + [anon_sym_explicit] = ACTIONS(2884), + [anon_sym_typename] = ACTIONS(2884), + [anon_sym_template] = ACTIONS(2884), + [anon_sym_operator] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_delete] = ACTIONS(2884), + [anon_sym_throw] = ACTIONS(2884), + [anon_sym_namespace] = ACTIONS(2884), + [anon_sym_using] = ACTIONS(2884), + [anon_sym_static_assert] = ACTIONS(2884), + [anon_sym_concept] = ACTIONS(2884), + [anon_sym_co_return] = ACTIONS(2884), + [anon_sym_co_yield] = ACTIONS(2884), + [anon_sym_R_DQUOTE] = ACTIONS(2886), + [anon_sym_LR_DQUOTE] = ACTIONS(2886), + [anon_sym_uR_DQUOTE] = ACTIONS(2886), + [anon_sym_UR_DQUOTE] = ACTIONS(2886), + [anon_sym_u8R_DQUOTE] = ACTIONS(2886), + [anon_sym_co_await] = ACTIONS(2884), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_requires] = ACTIONS(2884), + [sym_this] = ACTIONS(2884), }, [808] = { - [sym_identifier] = ACTIONS(3436), - [aux_sym_preproc_include_token1] = ACTIONS(3436), - [aux_sym_preproc_def_token1] = ACTIONS(3436), - [aux_sym_preproc_if_token1] = ACTIONS(3436), - [aux_sym_preproc_if_token2] = ACTIONS(3436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3436), - [aux_sym_preproc_else_token1] = ACTIONS(3436), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [sym_preproc_directive] = ACTIONS(3436), - [anon_sym_LPAREN2] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3438), - [anon_sym_TILDE] = ACTIONS(3438), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_AMP] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym___extension__] = ACTIONS(3436), - [anon_sym_typedef] = ACTIONS(3436), - [anon_sym_extern] = ACTIONS(3436), - [anon_sym___attribute__] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3438), - [anon_sym___declspec] = ACTIONS(3436), - [anon_sym___based] = ACTIONS(3436), - [anon_sym___cdecl] = ACTIONS(3436), - [anon_sym___clrcall] = ACTIONS(3436), - [anon_sym___stdcall] = ACTIONS(3436), - [anon_sym___fastcall] = ACTIONS(3436), - [anon_sym___thiscall] = ACTIONS(3436), - [anon_sym___vectorcall] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_signed] = ACTIONS(3436), - [anon_sym_unsigned] = ACTIONS(3436), - [anon_sym_long] = ACTIONS(3436), - [anon_sym_short] = ACTIONS(3436), - [anon_sym_LBRACK] = ACTIONS(3436), - [anon_sym_static] = ACTIONS(3436), - [anon_sym_register] = ACTIONS(3436), - [anon_sym_inline] = ACTIONS(3436), - [anon_sym___inline] = ACTIONS(3436), - [anon_sym___inline__] = ACTIONS(3436), - [anon_sym___forceinline] = ACTIONS(3436), - [anon_sym_thread_local] = ACTIONS(3436), - [anon_sym___thread] = ACTIONS(3436), - [anon_sym_const] = ACTIONS(3436), - [anon_sym_constexpr] = ACTIONS(3436), - [anon_sym_volatile] = ACTIONS(3436), - [anon_sym_restrict] = ACTIONS(3436), - [anon_sym___restrict__] = ACTIONS(3436), - [anon_sym__Atomic] = ACTIONS(3436), - [anon_sym__Noreturn] = ACTIONS(3436), - [anon_sym_noreturn] = ACTIONS(3436), - [anon_sym_mutable] = ACTIONS(3436), - [anon_sym_constinit] = ACTIONS(3436), - [anon_sym_consteval] = ACTIONS(3436), - [sym_primitive_type] = ACTIONS(3436), - [anon_sym_enum] = ACTIONS(3436), - [anon_sym_class] = ACTIONS(3436), - [anon_sym_struct] = ACTIONS(3436), - [anon_sym_union] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_switch] = ACTIONS(3436), - [anon_sym_case] = ACTIONS(3436), - [anon_sym_default] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_do] = ACTIONS(3436), - [anon_sym_for] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_goto] = ACTIONS(3436), - [anon_sym_not] = ACTIONS(3436), - [anon_sym_compl] = ACTIONS(3436), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_sizeof] = ACTIONS(3436), - [anon_sym___alignof__] = ACTIONS(3436), - [anon_sym___alignof] = ACTIONS(3436), - [anon_sym__alignof] = ACTIONS(3436), - [anon_sym_alignof] = ACTIONS(3436), - [anon_sym__Alignof] = ACTIONS(3436), - [anon_sym_offsetof] = ACTIONS(3436), - [anon_sym__Generic] = ACTIONS(3436), - [anon_sym_asm] = ACTIONS(3436), - [anon_sym___asm__] = ACTIONS(3436), - [sym_number_literal] = ACTIONS(3438), - [anon_sym_L_SQUOTE] = ACTIONS(3438), - [anon_sym_u_SQUOTE] = ACTIONS(3438), - [anon_sym_U_SQUOTE] = ACTIONS(3438), - [anon_sym_u8_SQUOTE] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(3438), - [anon_sym_L_DQUOTE] = ACTIONS(3438), - [anon_sym_u_DQUOTE] = ACTIONS(3438), - [anon_sym_U_DQUOTE] = ACTIONS(3438), - [anon_sym_u8_DQUOTE] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(3438), - [sym_true] = ACTIONS(3436), - [sym_false] = ACTIONS(3436), - [anon_sym_NULL] = ACTIONS(3436), - [anon_sym_nullptr] = ACTIONS(3436), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3436), - [anon_sym_decltype] = ACTIONS(3436), - [anon_sym_virtual] = ACTIONS(3436), - [anon_sym_alignas] = ACTIONS(3436), - [anon_sym_explicit] = ACTIONS(3436), - [anon_sym_typename] = ACTIONS(3436), - [anon_sym_template] = ACTIONS(3436), - [anon_sym_operator] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_delete] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_namespace] = ACTIONS(3436), - [anon_sym_using] = ACTIONS(3436), - [anon_sym_static_assert] = ACTIONS(3436), - [anon_sym_concept] = ACTIONS(3436), - [anon_sym_co_return] = ACTIONS(3436), - [anon_sym_co_yield] = ACTIONS(3436), - [anon_sym_R_DQUOTE] = ACTIONS(3438), - [anon_sym_LR_DQUOTE] = ACTIONS(3438), - [anon_sym_uR_DQUOTE] = ACTIONS(3438), - [anon_sym_UR_DQUOTE] = ACTIONS(3438), - [anon_sym_u8R_DQUOTE] = ACTIONS(3438), - [anon_sym_co_await] = ACTIONS(3436), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_requires] = ACTIONS(3436), - [sym_this] = ACTIONS(3436), + [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_extern] = ACTIONS(3115), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3115), + [anon_sym_constinit] = ACTIONS(3115), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3115), + [anon_sym_alignas] = 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_using] = 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), }, [809] = { - [sym_else_clause] = STATE(958), - [sym_identifier] = ACTIONS(2754), - [aux_sym_preproc_include_token1] = ACTIONS(2754), - [aux_sym_preproc_def_token1] = ACTIONS(2754), - [aux_sym_preproc_if_token1] = ACTIONS(2754), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2754), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2754), - [sym_preproc_directive] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_TILDE] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym___extension__] = ACTIONS(2754), - [anon_sym_typedef] = ACTIONS(2754), - [anon_sym_extern] = ACTIONS(2754), - [anon_sym___attribute__] = ACTIONS(2754), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2756), - [anon_sym___declspec] = ACTIONS(2754), - [anon_sym___based] = ACTIONS(2754), - [anon_sym___cdecl] = ACTIONS(2754), - [anon_sym___clrcall] = ACTIONS(2754), - [anon_sym___stdcall] = ACTIONS(2754), - [anon_sym___fastcall] = ACTIONS(2754), - [anon_sym___thiscall] = ACTIONS(2754), - [anon_sym___vectorcall] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(2756), - [anon_sym_signed] = ACTIONS(2754), - [anon_sym_unsigned] = ACTIONS(2754), - [anon_sym_long] = ACTIONS(2754), - [anon_sym_short] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_static] = ACTIONS(2754), - [anon_sym_register] = ACTIONS(2754), - [anon_sym_inline] = ACTIONS(2754), - [anon_sym___inline] = ACTIONS(2754), - [anon_sym___inline__] = ACTIONS(2754), - [anon_sym___forceinline] = ACTIONS(2754), - [anon_sym_thread_local] = ACTIONS(2754), - [anon_sym___thread] = ACTIONS(2754), - [anon_sym_const] = ACTIONS(2754), - [anon_sym_constexpr] = ACTIONS(2754), - [anon_sym_volatile] = ACTIONS(2754), - [anon_sym_restrict] = ACTIONS(2754), - [anon_sym___restrict__] = ACTIONS(2754), - [anon_sym__Atomic] = ACTIONS(2754), - [anon_sym__Noreturn] = ACTIONS(2754), - [anon_sym_noreturn] = ACTIONS(2754), - [anon_sym_mutable] = ACTIONS(2754), - [anon_sym_constinit] = ACTIONS(2754), - [anon_sym_consteval] = ACTIONS(2754), - [sym_primitive_type] = ACTIONS(2754), - [anon_sym_enum] = ACTIONS(2754), - [anon_sym_class] = ACTIONS(2754), - [anon_sym_struct] = ACTIONS(2754), - [anon_sym_union] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_else] = ACTIONS(3642), - [anon_sym_switch] = ACTIONS(2754), - [anon_sym_case] = ACTIONS(2754), - [anon_sym_default] = ACTIONS(2754), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_break] = ACTIONS(2754), - [anon_sym_continue] = ACTIONS(2754), - [anon_sym_goto] = ACTIONS(2754), - [anon_sym_not] = ACTIONS(2754), - [anon_sym_compl] = ACTIONS(2754), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_sizeof] = ACTIONS(2754), - [anon_sym___alignof__] = ACTIONS(2754), - [anon_sym___alignof] = ACTIONS(2754), - [anon_sym__alignof] = ACTIONS(2754), - [anon_sym_alignof] = ACTIONS(2754), - [anon_sym__Alignof] = ACTIONS(2754), - [anon_sym_offsetof] = ACTIONS(2754), - [anon_sym__Generic] = ACTIONS(2754), - [anon_sym_asm] = ACTIONS(2754), - [anon_sym___asm__] = ACTIONS(2754), - [sym_number_literal] = ACTIONS(2756), - [anon_sym_L_SQUOTE] = ACTIONS(2756), - [anon_sym_u_SQUOTE] = ACTIONS(2756), - [anon_sym_U_SQUOTE] = ACTIONS(2756), - [anon_sym_u8_SQUOTE] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_L_DQUOTE] = ACTIONS(2756), - [anon_sym_u_DQUOTE] = ACTIONS(2756), - [anon_sym_U_DQUOTE] = ACTIONS(2756), - [anon_sym_u8_DQUOTE] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [sym_true] = ACTIONS(2754), - [sym_false] = ACTIONS(2754), - [anon_sym_NULL] = ACTIONS(2754), - [anon_sym_nullptr] = ACTIONS(2754), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2754), - [anon_sym_decltype] = ACTIONS(2754), - [anon_sym_virtual] = ACTIONS(2754), - [anon_sym_alignas] = ACTIONS(2754), - [anon_sym_explicit] = ACTIONS(2754), - [anon_sym_typename] = ACTIONS(2754), - [anon_sym_template] = ACTIONS(2754), - [anon_sym_operator] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_delete] = ACTIONS(2754), - [anon_sym_throw] = ACTIONS(2754), - [anon_sym_namespace] = ACTIONS(2754), - [anon_sym_using] = ACTIONS(2754), - [anon_sym_static_assert] = ACTIONS(2754), - [anon_sym_concept] = ACTIONS(2754), - [anon_sym_co_return] = ACTIONS(2754), - [anon_sym_co_yield] = ACTIONS(2754), - [anon_sym_R_DQUOTE] = ACTIONS(2756), - [anon_sym_LR_DQUOTE] = ACTIONS(2756), - [anon_sym_uR_DQUOTE] = ACTIONS(2756), - [anon_sym_UR_DQUOTE] = ACTIONS(2756), - [anon_sym_u8R_DQUOTE] = ACTIONS(2756), - [anon_sym_co_await] = ACTIONS(2754), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_requires] = ACTIONS(2754), - [sym_this] = ACTIONS(2754), + [sym_identifier] = ACTIONS(3087), + [aux_sym_preproc_include_token1] = ACTIONS(3087), + [aux_sym_preproc_def_token1] = ACTIONS(3087), + [aux_sym_preproc_if_token1] = ACTIONS(3087), + [aux_sym_preproc_if_token2] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), + [sym_preproc_directive] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_BANG] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3089), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym___cdecl] = ACTIONS(3087), + [anon_sym___clrcall] = ACTIONS(3087), + [anon_sym___stdcall] = ACTIONS(3087), + [anon_sym___fastcall] = ACTIONS(3087), + [anon_sym___thiscall] = ACTIONS(3087), + [anon_sym___vectorcall] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3087), + [anon_sym_unsigned] = ACTIONS(3087), + [anon_sym_long] = ACTIONS(3087), + [anon_sym_short] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_register] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym___inline] = ACTIONS(3087), + [anon_sym___inline__] = ACTIONS(3087), + [anon_sym___forceinline] = ACTIONS(3087), + [anon_sym_thread_local] = ACTIONS(3087), + [anon_sym___thread] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_constexpr] = ACTIONS(3087), + [anon_sym_volatile] = ACTIONS(3087), + [anon_sym_restrict] = ACTIONS(3087), + [anon_sym___restrict__] = ACTIONS(3087), + [anon_sym__Atomic] = ACTIONS(3087), + [anon_sym__Noreturn] = ACTIONS(3087), + [anon_sym_noreturn] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [sym_primitive_type] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_switch] = ACTIONS(3087), + [anon_sym_case] = ACTIONS(3087), + [anon_sym_default] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3087), + [anon_sym_do] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_goto] = ACTIONS(3087), + [anon_sym_not] = ACTIONS(3087), + [anon_sym_compl] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_sizeof] = ACTIONS(3087), + [anon_sym___alignof__] = ACTIONS(3087), + [anon_sym___alignof] = ACTIONS(3087), + [anon_sym__alignof] = ACTIONS(3087), + [anon_sym_alignof] = ACTIONS(3087), + [anon_sym__Alignof] = ACTIONS(3087), + [anon_sym_offsetof] = ACTIONS(3087), + [anon_sym__Generic] = ACTIONS(3087), + [anon_sym_asm] = ACTIONS(3087), + [anon_sym___asm__] = ACTIONS(3087), + [sym_number_literal] = ACTIONS(3089), + [anon_sym_L_SQUOTE] = ACTIONS(3089), + [anon_sym_u_SQUOTE] = ACTIONS(3089), + [anon_sym_U_SQUOTE] = ACTIONS(3089), + [anon_sym_u8_SQUOTE] = ACTIONS(3089), + [anon_sym_SQUOTE] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(3089), + [anon_sym_u_DQUOTE] = ACTIONS(3089), + [anon_sym_U_DQUOTE] = ACTIONS(3089), + [anon_sym_u8_DQUOTE] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [anon_sym_NULL] = ACTIONS(3087), + [anon_sym_nullptr] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym_explicit] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_try] = ACTIONS(3087), + [anon_sym_delete] = ACTIONS(3087), + [anon_sym_throw] = ACTIONS(3087), + [anon_sym_namespace] = ACTIONS(3087), + [anon_sym_using] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), + [anon_sym_concept] = ACTIONS(3087), + [anon_sym_co_return] = ACTIONS(3087), + [anon_sym_co_yield] = ACTIONS(3087), + [anon_sym_R_DQUOTE] = ACTIONS(3089), + [anon_sym_LR_DQUOTE] = ACTIONS(3089), + [anon_sym_uR_DQUOTE] = ACTIONS(3089), + [anon_sym_UR_DQUOTE] = ACTIONS(3089), + [anon_sym_u8R_DQUOTE] = ACTIONS(3089), + [anon_sym_co_await] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_requires] = ACTIONS(3087), + [sym_this] = ACTIONS(3087), }, [810] = { - [sym_identifier] = ACTIONS(3428), - [aux_sym_preproc_include_token1] = ACTIONS(3428), - [aux_sym_preproc_def_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3428), - [aux_sym_preproc_else_token1] = ACTIONS(3428), - [aux_sym_preproc_elif_token1] = ACTIONS(3428), - [sym_preproc_directive] = ACTIONS(3428), - [anon_sym_LPAREN2] = ACTIONS(3430), - [anon_sym_BANG] = ACTIONS(3430), - [anon_sym_TILDE] = ACTIONS(3430), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_STAR] = ACTIONS(3430), - [anon_sym_AMP_AMP] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_SEMI] = ACTIONS(3430), - [anon_sym___extension__] = ACTIONS(3428), - [anon_sym_typedef] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym___attribute__] = ACTIONS(3428), - [anon_sym_COLON_COLON] = ACTIONS(3430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3430), - [anon_sym___declspec] = ACTIONS(3428), - [anon_sym___based] = ACTIONS(3428), - [anon_sym___cdecl] = ACTIONS(3428), - [anon_sym___clrcall] = ACTIONS(3428), - [anon_sym___stdcall] = ACTIONS(3428), - [anon_sym___fastcall] = ACTIONS(3428), - [anon_sym___thiscall] = ACTIONS(3428), - [anon_sym___vectorcall] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3430), - [anon_sym_signed] = ACTIONS(3428), - [anon_sym_unsigned] = ACTIONS(3428), - [anon_sym_long] = ACTIONS(3428), - [anon_sym_short] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_register] = ACTIONS(3428), - [anon_sym_inline] = ACTIONS(3428), - [anon_sym___inline] = ACTIONS(3428), - [anon_sym___inline__] = ACTIONS(3428), - [anon_sym___forceinline] = ACTIONS(3428), - [anon_sym_thread_local] = ACTIONS(3428), - [anon_sym___thread] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_constexpr] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_restrict] = ACTIONS(3428), - [anon_sym___restrict__] = ACTIONS(3428), - [anon_sym__Atomic] = ACTIONS(3428), - [anon_sym__Noreturn] = ACTIONS(3428), - [anon_sym_noreturn] = ACTIONS(3428), - [anon_sym_mutable] = ACTIONS(3428), - [anon_sym_constinit] = ACTIONS(3428), - [anon_sym_consteval] = ACTIONS(3428), - [sym_primitive_type] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_union] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_switch] = ACTIONS(3428), - [anon_sym_case] = ACTIONS(3428), - [anon_sym_default] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_break] = ACTIONS(3428), - [anon_sym_continue] = ACTIONS(3428), - [anon_sym_goto] = ACTIONS(3428), - [anon_sym_not] = ACTIONS(3428), - [anon_sym_compl] = ACTIONS(3428), - [anon_sym_DASH_DASH] = ACTIONS(3430), - [anon_sym_PLUS_PLUS] = ACTIONS(3430), - [anon_sym_sizeof] = ACTIONS(3428), - [anon_sym___alignof__] = ACTIONS(3428), - [anon_sym___alignof] = ACTIONS(3428), - [anon_sym__alignof] = ACTIONS(3428), - [anon_sym_alignof] = ACTIONS(3428), - [anon_sym__Alignof] = ACTIONS(3428), - [anon_sym_offsetof] = ACTIONS(3428), - [anon_sym__Generic] = ACTIONS(3428), - [anon_sym_asm] = ACTIONS(3428), - [anon_sym___asm__] = ACTIONS(3428), - [sym_number_literal] = ACTIONS(3430), - [anon_sym_L_SQUOTE] = ACTIONS(3430), - [anon_sym_u_SQUOTE] = ACTIONS(3430), - [anon_sym_U_SQUOTE] = ACTIONS(3430), - [anon_sym_u8_SQUOTE] = ACTIONS(3430), - [anon_sym_SQUOTE] = ACTIONS(3430), - [anon_sym_L_DQUOTE] = ACTIONS(3430), - [anon_sym_u_DQUOTE] = ACTIONS(3430), - [anon_sym_U_DQUOTE] = ACTIONS(3430), - [anon_sym_u8_DQUOTE] = ACTIONS(3430), - [anon_sym_DQUOTE] = ACTIONS(3430), - [sym_true] = ACTIONS(3428), - [sym_false] = ACTIONS(3428), - [anon_sym_NULL] = ACTIONS(3428), - [anon_sym_nullptr] = ACTIONS(3428), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3428), - [anon_sym_decltype] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_alignas] = ACTIONS(3428), - [anon_sym_explicit] = ACTIONS(3428), - [anon_sym_typename] = ACTIONS(3428), - [anon_sym_template] = ACTIONS(3428), - [anon_sym_operator] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_delete] = ACTIONS(3428), - [anon_sym_throw] = ACTIONS(3428), - [anon_sym_namespace] = ACTIONS(3428), - [anon_sym_using] = ACTIONS(3428), - [anon_sym_static_assert] = ACTIONS(3428), - [anon_sym_concept] = ACTIONS(3428), - [anon_sym_co_return] = ACTIONS(3428), - [anon_sym_co_yield] = ACTIONS(3428), - [anon_sym_R_DQUOTE] = ACTIONS(3430), - [anon_sym_LR_DQUOTE] = ACTIONS(3430), - [anon_sym_uR_DQUOTE] = ACTIONS(3430), - [anon_sym_UR_DQUOTE] = ACTIONS(3430), - [anon_sym_u8R_DQUOTE] = ACTIONS(3430), - [anon_sym_co_await] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_requires] = ACTIONS(3428), - [sym_this] = ACTIONS(3428), + [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_extern] = ACTIONS(3111), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3111), + [anon_sym_constinit] = ACTIONS(3111), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3111), + [anon_sym_alignas] = 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_using] = 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), }, [811] = { - [sym_else_clause] = STATE(1176), - [sym_identifier] = ACTIONS(2762), - [aux_sym_preproc_include_token1] = ACTIONS(2762), - [aux_sym_preproc_def_token1] = ACTIONS(2762), - [aux_sym_preproc_if_token1] = ACTIONS(2762), - [aux_sym_preproc_if_token2] = ACTIONS(2762), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), - [sym_preproc_directive] = ACTIONS(2762), - [anon_sym_LPAREN2] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2762), - [anon_sym_PLUS] = ACTIONS(2762), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_AMP_AMP] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2764), - [anon_sym___extension__] = ACTIONS(2762), - [anon_sym_typedef] = ACTIONS(2762), - [anon_sym_extern] = ACTIONS(2762), - [anon_sym___attribute__] = ACTIONS(2762), - [anon_sym_COLON_COLON] = ACTIONS(2764), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), - [anon_sym___declspec] = ACTIONS(2762), - [anon_sym___based] = ACTIONS(2762), - [anon_sym___cdecl] = ACTIONS(2762), - [anon_sym___clrcall] = ACTIONS(2762), - [anon_sym___stdcall] = ACTIONS(2762), - [anon_sym___fastcall] = ACTIONS(2762), - [anon_sym___thiscall] = ACTIONS(2762), - [anon_sym___vectorcall] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_signed] = ACTIONS(2762), - [anon_sym_unsigned] = ACTIONS(2762), - [anon_sym_long] = ACTIONS(2762), - [anon_sym_short] = ACTIONS(2762), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_static] = ACTIONS(2762), - [anon_sym_register] = ACTIONS(2762), - [anon_sym_inline] = ACTIONS(2762), - [anon_sym___inline] = ACTIONS(2762), - [anon_sym___inline__] = ACTIONS(2762), - [anon_sym___forceinline] = ACTIONS(2762), - [anon_sym_thread_local] = ACTIONS(2762), - [anon_sym___thread] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2762), - [anon_sym_constexpr] = ACTIONS(2762), - [anon_sym_volatile] = ACTIONS(2762), - [anon_sym_restrict] = ACTIONS(2762), - [anon_sym___restrict__] = ACTIONS(2762), - [anon_sym__Atomic] = ACTIONS(2762), - [anon_sym__Noreturn] = ACTIONS(2762), - [anon_sym_noreturn] = ACTIONS(2762), - [anon_sym_mutable] = ACTIONS(2762), - [anon_sym_constinit] = ACTIONS(2762), - [anon_sym_consteval] = ACTIONS(2762), - [sym_primitive_type] = ACTIONS(2762), - [anon_sym_enum] = ACTIONS(2762), - [anon_sym_class] = ACTIONS(2762), - [anon_sym_struct] = ACTIONS(2762), - [anon_sym_union] = ACTIONS(2762), - [anon_sym_if] = ACTIONS(2762), - [anon_sym_else] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(2762), - [anon_sym_case] = ACTIONS(2762), - [anon_sym_default] = ACTIONS(2762), - [anon_sym_while] = ACTIONS(2762), - [anon_sym_do] = ACTIONS(2762), - [anon_sym_for] = ACTIONS(2762), - [anon_sym_return] = ACTIONS(2762), - [anon_sym_break] = ACTIONS(2762), - [anon_sym_continue] = ACTIONS(2762), - [anon_sym_goto] = ACTIONS(2762), - [anon_sym_not] = ACTIONS(2762), - [anon_sym_compl] = ACTIONS(2762), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2764), - [anon_sym_sizeof] = ACTIONS(2762), - [anon_sym___alignof__] = ACTIONS(2762), - [anon_sym___alignof] = ACTIONS(2762), - [anon_sym__alignof] = ACTIONS(2762), - [anon_sym_alignof] = ACTIONS(2762), - [anon_sym__Alignof] = ACTIONS(2762), - [anon_sym_offsetof] = ACTIONS(2762), - [anon_sym__Generic] = ACTIONS(2762), - [anon_sym_asm] = ACTIONS(2762), - [anon_sym___asm__] = ACTIONS(2762), - [sym_number_literal] = ACTIONS(2764), - [anon_sym_L_SQUOTE] = ACTIONS(2764), - [anon_sym_u_SQUOTE] = ACTIONS(2764), - [anon_sym_U_SQUOTE] = ACTIONS(2764), - [anon_sym_u8_SQUOTE] = ACTIONS(2764), - [anon_sym_SQUOTE] = ACTIONS(2764), - [anon_sym_L_DQUOTE] = ACTIONS(2764), - [anon_sym_u_DQUOTE] = ACTIONS(2764), - [anon_sym_U_DQUOTE] = ACTIONS(2764), - [anon_sym_u8_DQUOTE] = ACTIONS(2764), - [anon_sym_DQUOTE] = ACTIONS(2764), - [sym_true] = ACTIONS(2762), - [sym_false] = ACTIONS(2762), - [anon_sym_NULL] = ACTIONS(2762), - [anon_sym_nullptr] = ACTIONS(2762), + [sym_identifier] = ACTIONS(3107), + [aux_sym_preproc_include_token1] = ACTIONS(3107), + [aux_sym_preproc_def_token1] = ACTIONS(3107), + [aux_sym_preproc_if_token1] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3107), + [sym_preproc_directive] = ACTIONS(3107), + [anon_sym_LPAREN2] = ACTIONS(3109), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym___extension__] = ACTIONS(3107), + [anon_sym_typedef] = ACTIONS(3107), + [anon_sym_extern] = ACTIONS(3107), + [anon_sym___attribute__] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), + [anon_sym___declspec] = ACTIONS(3107), + [anon_sym___based] = ACTIONS(3107), + [anon_sym___cdecl] = ACTIONS(3107), + [anon_sym___clrcall] = ACTIONS(3107), + [anon_sym___stdcall] = ACTIONS(3107), + [anon_sym___fastcall] = ACTIONS(3107), + [anon_sym___thiscall] = ACTIONS(3107), + [anon_sym___vectorcall] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_signed] = ACTIONS(3107), + [anon_sym_unsigned] = ACTIONS(3107), + [anon_sym_long] = ACTIONS(3107), + [anon_sym_short] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_register] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym___inline] = ACTIONS(3107), + [anon_sym___inline__] = ACTIONS(3107), + [anon_sym___forceinline] = ACTIONS(3107), + [anon_sym_thread_local] = ACTIONS(3107), + [anon_sym___thread] = ACTIONS(3107), + [anon_sym_const] = ACTIONS(3107), + [anon_sym_constexpr] = ACTIONS(3107), + [anon_sym_volatile] = ACTIONS(3107), + [anon_sym_restrict] = ACTIONS(3107), + [anon_sym___restrict__] = ACTIONS(3107), + [anon_sym__Atomic] = ACTIONS(3107), + [anon_sym__Noreturn] = ACTIONS(3107), + [anon_sym_noreturn] = ACTIONS(3107), + [anon_sym_mutable] = ACTIONS(3107), + [anon_sym_constinit] = ACTIONS(3107), + [anon_sym_consteval] = ACTIONS(3107), + [sym_primitive_type] = ACTIONS(3107), + [anon_sym_enum] = ACTIONS(3107), + [anon_sym_class] = ACTIONS(3107), + [anon_sym_struct] = ACTIONS(3107), + [anon_sym_union] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_switch] = ACTIONS(3107), + [anon_sym_case] = ACTIONS(3107), + [anon_sym_default] = ACTIONS(3107), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_do] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_goto] = ACTIONS(3107), + [anon_sym_not] = ACTIONS(3107), + [anon_sym_compl] = ACTIONS(3107), + [anon_sym_DASH_DASH] = ACTIONS(3109), + [anon_sym_PLUS_PLUS] = ACTIONS(3109), + [anon_sym_sizeof] = ACTIONS(3107), + [anon_sym___alignof__] = ACTIONS(3107), + [anon_sym___alignof] = ACTIONS(3107), + [anon_sym__alignof] = ACTIONS(3107), + [anon_sym_alignof] = ACTIONS(3107), + [anon_sym__Alignof] = ACTIONS(3107), + [anon_sym_offsetof] = ACTIONS(3107), + [anon_sym__Generic] = ACTIONS(3107), + [anon_sym_asm] = ACTIONS(3107), + [anon_sym___asm__] = ACTIONS(3107), + [sym_number_literal] = ACTIONS(3109), + [anon_sym_L_SQUOTE] = ACTIONS(3109), + [anon_sym_u_SQUOTE] = ACTIONS(3109), + [anon_sym_U_SQUOTE] = ACTIONS(3109), + [anon_sym_u8_SQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3109), + [anon_sym_L_DQUOTE] = ACTIONS(3109), + [anon_sym_u_DQUOTE] = ACTIONS(3109), + [anon_sym_U_DQUOTE] = ACTIONS(3109), + [anon_sym_u8_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [sym_true] = ACTIONS(3107), + [sym_false] = ACTIONS(3107), + [anon_sym_NULL] = ACTIONS(3107), + [anon_sym_nullptr] = ACTIONS(3107), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2762), - [anon_sym_decltype] = ACTIONS(2762), - [anon_sym_virtual] = ACTIONS(2762), - [anon_sym_alignas] = ACTIONS(2762), - [anon_sym_explicit] = ACTIONS(2762), - [anon_sym_typename] = ACTIONS(2762), - [anon_sym_template] = ACTIONS(2762), - [anon_sym_operator] = ACTIONS(2762), - [anon_sym_try] = ACTIONS(2762), - [anon_sym_delete] = ACTIONS(2762), - [anon_sym_throw] = ACTIONS(2762), - [anon_sym_namespace] = ACTIONS(2762), - [anon_sym_using] = ACTIONS(2762), - [anon_sym_static_assert] = ACTIONS(2762), - [anon_sym_concept] = ACTIONS(2762), - [anon_sym_co_return] = ACTIONS(2762), - [anon_sym_co_yield] = ACTIONS(2762), - [anon_sym_R_DQUOTE] = ACTIONS(2764), - [anon_sym_LR_DQUOTE] = ACTIONS(2764), - [anon_sym_uR_DQUOTE] = ACTIONS(2764), - [anon_sym_UR_DQUOTE] = ACTIONS(2764), - [anon_sym_u8R_DQUOTE] = ACTIONS(2764), - [anon_sym_co_await] = ACTIONS(2762), - [anon_sym_new] = ACTIONS(2762), - [anon_sym_requires] = ACTIONS(2762), - [sym_this] = ACTIONS(2762), + [sym_auto] = ACTIONS(3107), + [anon_sym_decltype] = ACTIONS(3107), + [anon_sym_virtual] = ACTIONS(3107), + [anon_sym_alignas] = ACTIONS(3107), + [anon_sym_explicit] = ACTIONS(3107), + [anon_sym_typename] = ACTIONS(3107), + [anon_sym_template] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_delete] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_namespace] = ACTIONS(3107), + [anon_sym_using] = ACTIONS(3107), + [anon_sym_static_assert] = ACTIONS(3107), + [anon_sym_concept] = ACTIONS(3107), + [anon_sym_co_return] = ACTIONS(3107), + [anon_sym_co_yield] = ACTIONS(3107), + [anon_sym_R_DQUOTE] = ACTIONS(3109), + [anon_sym_LR_DQUOTE] = ACTIONS(3109), + [anon_sym_uR_DQUOTE] = ACTIONS(3109), + [anon_sym_UR_DQUOTE] = ACTIONS(3109), + [anon_sym_u8R_DQUOTE] = ACTIONS(3109), + [anon_sym_co_await] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3107), + [anon_sym_requires] = ACTIONS(3107), + [sym_this] = ACTIONS(3107), }, [812] = { - [sym_identifier] = ACTIONS(3255), - [aux_sym_preproc_include_token1] = ACTIONS(3255), - [aux_sym_preproc_def_token1] = ACTIONS(3255), - [aux_sym_preproc_if_token1] = ACTIONS(3255), - [aux_sym_preproc_if_token2] = ACTIONS(3255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3255), - [aux_sym_preproc_else_token1] = ACTIONS(3255), - [aux_sym_preproc_elif_token1] = ACTIONS(3255), - [sym_preproc_directive] = ACTIONS(3255), - [anon_sym_LPAREN2] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3257), - [anon_sym_AMP_AMP] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3257), - [anon_sym___extension__] = ACTIONS(3255), - [anon_sym_typedef] = ACTIONS(3255), - [anon_sym_extern] = ACTIONS(3255), - [anon_sym___attribute__] = ACTIONS(3255), - [anon_sym_COLON_COLON] = ACTIONS(3257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3257), - [anon_sym___declspec] = ACTIONS(3255), - [anon_sym___based] = ACTIONS(3255), - [anon_sym___cdecl] = ACTIONS(3255), - [anon_sym___clrcall] = ACTIONS(3255), - [anon_sym___stdcall] = ACTIONS(3255), - [anon_sym___fastcall] = ACTIONS(3255), - [anon_sym___thiscall] = ACTIONS(3255), - [anon_sym___vectorcall] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_signed] = ACTIONS(3255), - [anon_sym_unsigned] = ACTIONS(3255), - [anon_sym_long] = ACTIONS(3255), - [anon_sym_short] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_register] = ACTIONS(3255), - [anon_sym_inline] = ACTIONS(3255), - [anon_sym___inline] = ACTIONS(3255), - [anon_sym___inline__] = ACTIONS(3255), - [anon_sym___forceinline] = ACTIONS(3255), - [anon_sym_thread_local] = ACTIONS(3255), - [anon_sym___thread] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_constexpr] = ACTIONS(3255), - [anon_sym_volatile] = ACTIONS(3255), - [anon_sym_restrict] = ACTIONS(3255), - [anon_sym___restrict__] = ACTIONS(3255), - [anon_sym__Atomic] = ACTIONS(3255), - [anon_sym__Noreturn] = ACTIONS(3255), - [anon_sym_noreturn] = ACTIONS(3255), - [anon_sym_mutable] = ACTIONS(3255), - [anon_sym_constinit] = ACTIONS(3255), - [anon_sym_consteval] = ACTIONS(3255), - [sym_primitive_type] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_struct] = ACTIONS(3255), - [anon_sym_union] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_goto] = ACTIONS(3255), - [anon_sym_not] = ACTIONS(3255), - [anon_sym_compl] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_sizeof] = ACTIONS(3255), - [anon_sym___alignof__] = ACTIONS(3255), - [anon_sym___alignof] = ACTIONS(3255), - [anon_sym__alignof] = ACTIONS(3255), - [anon_sym_alignof] = ACTIONS(3255), - [anon_sym__Alignof] = ACTIONS(3255), - [anon_sym_offsetof] = ACTIONS(3255), - [anon_sym__Generic] = ACTIONS(3255), - [anon_sym_asm] = ACTIONS(3255), - [anon_sym___asm__] = ACTIONS(3255), - [sym_number_literal] = ACTIONS(3257), - [anon_sym_L_SQUOTE] = ACTIONS(3257), - [anon_sym_u_SQUOTE] = ACTIONS(3257), - [anon_sym_U_SQUOTE] = ACTIONS(3257), - [anon_sym_u8_SQUOTE] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3257), - [anon_sym_L_DQUOTE] = ACTIONS(3257), - [anon_sym_u_DQUOTE] = ACTIONS(3257), - [anon_sym_U_DQUOTE] = ACTIONS(3257), - [anon_sym_u8_DQUOTE] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3257), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [anon_sym_NULL] = ACTIONS(3255), - [anon_sym_nullptr] = ACTIONS(3255), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3255), - [anon_sym_decltype] = ACTIONS(3255), - [anon_sym_virtual] = ACTIONS(3255), - [anon_sym_alignas] = ACTIONS(3255), - [anon_sym_explicit] = ACTIONS(3255), - [anon_sym_typename] = ACTIONS(3255), - [anon_sym_template] = ACTIONS(3255), - [anon_sym_operator] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_static_assert] = ACTIONS(3255), - [anon_sym_concept] = ACTIONS(3255), - [anon_sym_co_return] = ACTIONS(3255), - [anon_sym_co_yield] = ACTIONS(3255), - [anon_sym_R_DQUOTE] = ACTIONS(3257), - [anon_sym_LR_DQUOTE] = ACTIONS(3257), - [anon_sym_uR_DQUOTE] = ACTIONS(3257), - [anon_sym_UR_DQUOTE] = ACTIONS(3257), - [anon_sym_u8R_DQUOTE] = ACTIONS(3257), - [anon_sym_co_await] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_requires] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), + [sym_identifier] = ACTIONS(3035), + [aux_sym_preproc_include_token1] = ACTIONS(3035), + [aux_sym_preproc_def_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token2] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), + [sym_preproc_directive] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_BANG] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(3037), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP_AMP] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_SEMI] = ACTIONS(3037), + [anon_sym___extension__] = ACTIONS(3035), + [anon_sym_typedef] = ACTIONS(3035), + [anon_sym_extern] = ACTIONS(3035), + [anon_sym___attribute__] = ACTIONS(3035), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), + [anon_sym___declspec] = ACTIONS(3035), + [anon_sym___based] = ACTIONS(3035), + [anon_sym___cdecl] = ACTIONS(3035), + [anon_sym___clrcall] = ACTIONS(3035), + [anon_sym___stdcall] = ACTIONS(3035), + [anon_sym___fastcall] = ACTIONS(3035), + [anon_sym___thiscall] = ACTIONS(3035), + [anon_sym___vectorcall] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3037), + [anon_sym_signed] = ACTIONS(3035), + [anon_sym_unsigned] = ACTIONS(3035), + [anon_sym_long] = ACTIONS(3035), + [anon_sym_short] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_static] = ACTIONS(3035), + [anon_sym_register] = ACTIONS(3035), + [anon_sym_inline] = ACTIONS(3035), + [anon_sym___inline] = ACTIONS(3035), + [anon_sym___inline__] = ACTIONS(3035), + [anon_sym___forceinline] = ACTIONS(3035), + [anon_sym_thread_local] = ACTIONS(3035), + [anon_sym___thread] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_constexpr] = ACTIONS(3035), + [anon_sym_volatile] = ACTIONS(3035), + [anon_sym_restrict] = ACTIONS(3035), + [anon_sym___restrict__] = ACTIONS(3035), + [anon_sym__Atomic] = ACTIONS(3035), + [anon_sym__Noreturn] = ACTIONS(3035), + [anon_sym_noreturn] = ACTIONS(3035), + [anon_sym_mutable] = ACTIONS(3035), + [anon_sym_constinit] = ACTIONS(3035), + [anon_sym_consteval] = ACTIONS(3035), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_class] = ACTIONS(3035), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_switch] = ACTIONS(3035), + [anon_sym_case] = ACTIONS(3035), + [anon_sym_default] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_break] = ACTIONS(3035), + [anon_sym_continue] = ACTIONS(3035), + [anon_sym_goto] = ACTIONS(3035), + [anon_sym_not] = ACTIONS(3035), + [anon_sym_compl] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3037), + [anon_sym_PLUS_PLUS] = ACTIONS(3037), + [anon_sym_sizeof] = ACTIONS(3035), + [anon_sym___alignof__] = ACTIONS(3035), + [anon_sym___alignof] = ACTIONS(3035), + [anon_sym__alignof] = ACTIONS(3035), + [anon_sym_alignof] = ACTIONS(3035), + [anon_sym__Alignof] = ACTIONS(3035), + [anon_sym_offsetof] = ACTIONS(3035), + [anon_sym__Generic] = ACTIONS(3035), + [anon_sym_asm] = ACTIONS(3035), + [anon_sym___asm__] = ACTIONS(3035), + [sym_number_literal] = ACTIONS(3037), + [anon_sym_L_SQUOTE] = ACTIONS(3037), + [anon_sym_u_SQUOTE] = ACTIONS(3037), + [anon_sym_U_SQUOTE] = ACTIONS(3037), + [anon_sym_u8_SQUOTE] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_L_DQUOTE] = ACTIONS(3037), + [anon_sym_u_DQUOTE] = ACTIONS(3037), + [anon_sym_U_DQUOTE] = ACTIONS(3037), + [anon_sym_u8_DQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE] = ACTIONS(3037), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [anon_sym_NULL] = ACTIONS(3035), + [anon_sym_nullptr] = ACTIONS(3035), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3035), + [anon_sym_decltype] = ACTIONS(3035), + [anon_sym_virtual] = ACTIONS(3035), + [anon_sym_alignas] = ACTIONS(3035), + [anon_sym_explicit] = ACTIONS(3035), + [anon_sym_typename] = ACTIONS(3035), + [anon_sym_template] = ACTIONS(3035), + [anon_sym_operator] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_delete] = ACTIONS(3035), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_namespace] = ACTIONS(3035), + [anon_sym_using] = ACTIONS(3035), + [anon_sym_static_assert] = ACTIONS(3035), + [anon_sym_concept] = ACTIONS(3035), + [anon_sym_co_return] = ACTIONS(3035), + [anon_sym_co_yield] = ACTIONS(3035), + [anon_sym_R_DQUOTE] = ACTIONS(3037), + [anon_sym_LR_DQUOTE] = ACTIONS(3037), + [anon_sym_uR_DQUOTE] = ACTIONS(3037), + [anon_sym_UR_DQUOTE] = ACTIONS(3037), + [anon_sym_u8R_DQUOTE] = ACTIONS(3037), + [anon_sym_co_await] = ACTIONS(3035), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(3035), + [sym_this] = ACTIONS(3035), }, [813] = { - [sym_identifier] = ACTIONS(3203), - [aux_sym_preproc_include_token1] = ACTIONS(3203), - [aux_sym_preproc_def_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token2] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3203), - [aux_sym_preproc_else_token1] = ACTIONS(3203), - [aux_sym_preproc_elif_token1] = ACTIONS(3203), - [sym_preproc_directive] = ACTIONS(3203), - [anon_sym_LPAREN2] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym___extension__] = ACTIONS(3203), - [anon_sym_typedef] = ACTIONS(3203), - [anon_sym_extern] = ACTIONS(3203), - [anon_sym___attribute__] = ACTIONS(3203), - [anon_sym_COLON_COLON] = ACTIONS(3205), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3205), - [anon_sym___declspec] = ACTIONS(3203), - [anon_sym___based] = ACTIONS(3203), - [anon_sym___cdecl] = ACTIONS(3203), - [anon_sym___clrcall] = ACTIONS(3203), - [anon_sym___stdcall] = ACTIONS(3203), - [anon_sym___fastcall] = ACTIONS(3203), - [anon_sym___thiscall] = ACTIONS(3203), - [anon_sym___vectorcall] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_signed] = ACTIONS(3203), - [anon_sym_unsigned] = ACTIONS(3203), - [anon_sym_long] = ACTIONS(3203), - [anon_sym_short] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_static] = ACTIONS(3203), - [anon_sym_register] = ACTIONS(3203), - [anon_sym_inline] = ACTIONS(3203), - [anon_sym___inline] = ACTIONS(3203), - [anon_sym___inline__] = ACTIONS(3203), - [anon_sym___forceinline] = ACTIONS(3203), - [anon_sym_thread_local] = ACTIONS(3203), - [anon_sym___thread] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_constexpr] = ACTIONS(3203), - [anon_sym_volatile] = ACTIONS(3203), - [anon_sym_restrict] = ACTIONS(3203), - [anon_sym___restrict__] = ACTIONS(3203), - [anon_sym__Atomic] = ACTIONS(3203), - [anon_sym__Noreturn] = ACTIONS(3203), - [anon_sym_noreturn] = ACTIONS(3203), - [anon_sym_mutable] = ACTIONS(3203), - [anon_sym_constinit] = ACTIONS(3203), - [anon_sym_consteval] = ACTIONS(3203), - [sym_primitive_type] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [anon_sym_class] = ACTIONS(3203), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_switch] = ACTIONS(3203), - [anon_sym_case] = ACTIONS(3203), - [anon_sym_default] = ACTIONS(3203), - [anon_sym_while] = ACTIONS(3203), - [anon_sym_do] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_goto] = ACTIONS(3203), - [anon_sym_not] = ACTIONS(3203), - [anon_sym_compl] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_sizeof] = ACTIONS(3203), - [anon_sym___alignof__] = ACTIONS(3203), - [anon_sym___alignof] = ACTIONS(3203), - [anon_sym__alignof] = ACTIONS(3203), - [anon_sym_alignof] = ACTIONS(3203), - [anon_sym__Alignof] = ACTIONS(3203), - [anon_sym_offsetof] = ACTIONS(3203), - [anon_sym__Generic] = ACTIONS(3203), - [anon_sym_asm] = ACTIONS(3203), - [anon_sym___asm__] = ACTIONS(3203), - [sym_number_literal] = ACTIONS(3205), - [anon_sym_L_SQUOTE] = ACTIONS(3205), - [anon_sym_u_SQUOTE] = ACTIONS(3205), - [anon_sym_U_SQUOTE] = ACTIONS(3205), - [anon_sym_u8_SQUOTE] = ACTIONS(3205), - [anon_sym_SQUOTE] = ACTIONS(3205), - [anon_sym_L_DQUOTE] = ACTIONS(3205), - [anon_sym_u_DQUOTE] = ACTIONS(3205), - [anon_sym_U_DQUOTE] = ACTIONS(3205), - [anon_sym_u8_DQUOTE] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(3205), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [anon_sym_NULL] = ACTIONS(3203), - [anon_sym_nullptr] = ACTIONS(3203), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3203), - [anon_sym_decltype] = ACTIONS(3203), - [anon_sym_virtual] = ACTIONS(3203), - [anon_sym_alignas] = ACTIONS(3203), - [anon_sym_explicit] = ACTIONS(3203), - [anon_sym_typename] = ACTIONS(3203), - [anon_sym_template] = ACTIONS(3203), - [anon_sym_operator] = ACTIONS(3203), - [anon_sym_try] = ACTIONS(3203), - [anon_sym_delete] = ACTIONS(3203), - [anon_sym_throw] = ACTIONS(3203), - [anon_sym_namespace] = ACTIONS(3203), - [anon_sym_using] = ACTIONS(3203), - [anon_sym_static_assert] = ACTIONS(3203), - [anon_sym_concept] = ACTIONS(3203), - [anon_sym_co_return] = ACTIONS(3203), - [anon_sym_co_yield] = ACTIONS(3203), - [anon_sym_R_DQUOTE] = ACTIONS(3205), - [anon_sym_LR_DQUOTE] = ACTIONS(3205), - [anon_sym_uR_DQUOTE] = ACTIONS(3205), - [anon_sym_UR_DQUOTE] = ACTIONS(3205), - [anon_sym_u8R_DQUOTE] = ACTIONS(3205), - [anon_sym_co_await] = ACTIONS(3203), - [anon_sym_new] = ACTIONS(3203), - [anon_sym_requires] = ACTIONS(3203), - [sym_this] = ACTIONS(3203), + [sym_identifier] = ACTIONS(3035), + [aux_sym_preproc_include_token1] = ACTIONS(3035), + [aux_sym_preproc_def_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token2] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), + [sym_preproc_directive] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_BANG] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(3037), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP_AMP] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_SEMI] = ACTIONS(3037), + [anon_sym___extension__] = ACTIONS(3035), + [anon_sym_typedef] = ACTIONS(3035), + [anon_sym_extern] = ACTIONS(3035), + [anon_sym___attribute__] = ACTIONS(3035), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), + [anon_sym___declspec] = ACTIONS(3035), + [anon_sym___based] = ACTIONS(3035), + [anon_sym___cdecl] = ACTIONS(3035), + [anon_sym___clrcall] = ACTIONS(3035), + [anon_sym___stdcall] = ACTIONS(3035), + [anon_sym___fastcall] = ACTIONS(3035), + [anon_sym___thiscall] = ACTIONS(3035), + [anon_sym___vectorcall] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3037), + [anon_sym_signed] = ACTIONS(3035), + [anon_sym_unsigned] = ACTIONS(3035), + [anon_sym_long] = ACTIONS(3035), + [anon_sym_short] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_static] = ACTIONS(3035), + [anon_sym_register] = ACTIONS(3035), + [anon_sym_inline] = ACTIONS(3035), + [anon_sym___inline] = ACTIONS(3035), + [anon_sym___inline__] = ACTIONS(3035), + [anon_sym___forceinline] = ACTIONS(3035), + [anon_sym_thread_local] = ACTIONS(3035), + [anon_sym___thread] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_constexpr] = ACTIONS(3035), + [anon_sym_volatile] = ACTIONS(3035), + [anon_sym_restrict] = ACTIONS(3035), + [anon_sym___restrict__] = ACTIONS(3035), + [anon_sym__Atomic] = ACTIONS(3035), + [anon_sym__Noreturn] = ACTIONS(3035), + [anon_sym_noreturn] = ACTIONS(3035), + [anon_sym_mutable] = ACTIONS(3035), + [anon_sym_constinit] = ACTIONS(3035), + [anon_sym_consteval] = ACTIONS(3035), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_class] = ACTIONS(3035), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_switch] = ACTIONS(3035), + [anon_sym_case] = ACTIONS(3035), + [anon_sym_default] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_break] = ACTIONS(3035), + [anon_sym_continue] = ACTIONS(3035), + [anon_sym_goto] = ACTIONS(3035), + [anon_sym_not] = ACTIONS(3035), + [anon_sym_compl] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3037), + [anon_sym_PLUS_PLUS] = ACTIONS(3037), + [anon_sym_sizeof] = ACTIONS(3035), + [anon_sym___alignof__] = ACTIONS(3035), + [anon_sym___alignof] = ACTIONS(3035), + [anon_sym__alignof] = ACTIONS(3035), + [anon_sym_alignof] = ACTIONS(3035), + [anon_sym__Alignof] = ACTIONS(3035), + [anon_sym_offsetof] = ACTIONS(3035), + [anon_sym__Generic] = ACTIONS(3035), + [anon_sym_asm] = ACTIONS(3035), + [anon_sym___asm__] = ACTIONS(3035), + [sym_number_literal] = ACTIONS(3037), + [anon_sym_L_SQUOTE] = ACTIONS(3037), + [anon_sym_u_SQUOTE] = ACTIONS(3037), + [anon_sym_U_SQUOTE] = ACTIONS(3037), + [anon_sym_u8_SQUOTE] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_L_DQUOTE] = ACTIONS(3037), + [anon_sym_u_DQUOTE] = ACTIONS(3037), + [anon_sym_U_DQUOTE] = ACTIONS(3037), + [anon_sym_u8_DQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE] = ACTIONS(3037), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [anon_sym_NULL] = ACTIONS(3035), + [anon_sym_nullptr] = ACTIONS(3035), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3035), + [anon_sym_decltype] = ACTIONS(3035), + [anon_sym_virtual] = ACTIONS(3035), + [anon_sym_alignas] = ACTIONS(3035), + [anon_sym_explicit] = ACTIONS(3035), + [anon_sym_typename] = ACTIONS(3035), + [anon_sym_template] = ACTIONS(3035), + [anon_sym_operator] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_delete] = ACTIONS(3035), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_namespace] = ACTIONS(3035), + [anon_sym_using] = ACTIONS(3035), + [anon_sym_static_assert] = ACTIONS(3035), + [anon_sym_concept] = ACTIONS(3035), + [anon_sym_co_return] = ACTIONS(3035), + [anon_sym_co_yield] = ACTIONS(3035), + [anon_sym_R_DQUOTE] = ACTIONS(3037), + [anon_sym_LR_DQUOTE] = ACTIONS(3037), + [anon_sym_uR_DQUOTE] = ACTIONS(3037), + [anon_sym_UR_DQUOTE] = ACTIONS(3037), + [anon_sym_u8R_DQUOTE] = ACTIONS(3037), + [anon_sym_co_await] = ACTIONS(3035), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(3035), + [sym_this] = ACTIONS(3035), }, [814] = { - [sym_identifier] = ACTIONS(3234), - [aux_sym_preproc_include_token1] = ACTIONS(3234), - [aux_sym_preproc_def_token1] = ACTIONS(3234), - [aux_sym_preproc_if_token1] = ACTIONS(3234), - [aux_sym_preproc_if_token2] = ACTIONS(3234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3234), - [aux_sym_preproc_else_token1] = ACTIONS(3234), - [aux_sym_preproc_elif_token1] = ACTIONS(3234), - [sym_preproc_directive] = ACTIONS(3234), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3236), - [anon_sym_AMP] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym___extension__] = ACTIONS(3234), - [anon_sym_typedef] = ACTIONS(3234), - [anon_sym_extern] = ACTIONS(3234), - [anon_sym___attribute__] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3236), - [anon_sym___declspec] = ACTIONS(3234), - [anon_sym___based] = ACTIONS(3234), - [anon_sym___cdecl] = ACTIONS(3234), - [anon_sym___clrcall] = ACTIONS(3234), - [anon_sym___stdcall] = ACTIONS(3234), - [anon_sym___fastcall] = ACTIONS(3234), - [anon_sym___thiscall] = ACTIONS(3234), - [anon_sym___vectorcall] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_signed] = ACTIONS(3234), - [anon_sym_unsigned] = ACTIONS(3234), - [anon_sym_long] = ACTIONS(3234), - [anon_sym_short] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_register] = ACTIONS(3234), - [anon_sym_inline] = ACTIONS(3234), - [anon_sym___inline] = ACTIONS(3234), - [anon_sym___inline__] = ACTIONS(3234), - [anon_sym___forceinline] = ACTIONS(3234), - [anon_sym_thread_local] = ACTIONS(3234), - [anon_sym___thread] = ACTIONS(3234), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_constexpr] = ACTIONS(3234), - [anon_sym_volatile] = ACTIONS(3234), - [anon_sym_restrict] = ACTIONS(3234), - [anon_sym___restrict__] = ACTIONS(3234), - [anon_sym__Atomic] = ACTIONS(3234), - [anon_sym__Noreturn] = ACTIONS(3234), - [anon_sym_noreturn] = ACTIONS(3234), - [anon_sym_mutable] = ACTIONS(3234), - [anon_sym_constinit] = ACTIONS(3234), - [anon_sym_consteval] = ACTIONS(3234), - [sym_primitive_type] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_struct] = ACTIONS(3234), - [anon_sym_union] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_case] = ACTIONS(3234), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_goto] = ACTIONS(3234), - [anon_sym_not] = ACTIONS(3234), - [anon_sym_compl] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3236), - [anon_sym_PLUS_PLUS] = ACTIONS(3236), - [anon_sym_sizeof] = ACTIONS(3234), - [anon_sym___alignof__] = ACTIONS(3234), - [anon_sym___alignof] = ACTIONS(3234), - [anon_sym__alignof] = ACTIONS(3234), - [anon_sym_alignof] = ACTIONS(3234), - [anon_sym__Alignof] = ACTIONS(3234), - [anon_sym_offsetof] = ACTIONS(3234), - [anon_sym__Generic] = ACTIONS(3234), - [anon_sym_asm] = ACTIONS(3234), - [anon_sym___asm__] = ACTIONS(3234), - [sym_number_literal] = ACTIONS(3236), - [anon_sym_L_SQUOTE] = ACTIONS(3236), - [anon_sym_u_SQUOTE] = ACTIONS(3236), - [anon_sym_U_SQUOTE] = ACTIONS(3236), - [anon_sym_u8_SQUOTE] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym_L_DQUOTE] = ACTIONS(3236), - [anon_sym_u_DQUOTE] = ACTIONS(3236), - [anon_sym_U_DQUOTE] = ACTIONS(3236), - [anon_sym_u8_DQUOTE] = ACTIONS(3236), - [anon_sym_DQUOTE] = ACTIONS(3236), - [sym_true] = ACTIONS(3234), - [sym_false] = ACTIONS(3234), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3234), - [anon_sym_decltype] = ACTIONS(3234), - [anon_sym_virtual] = ACTIONS(3234), - [anon_sym_alignas] = ACTIONS(3234), - [anon_sym_explicit] = ACTIONS(3234), - [anon_sym_typename] = ACTIONS(3234), - [anon_sym_template] = ACTIONS(3234), - [anon_sym_operator] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_delete] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_namespace] = ACTIONS(3234), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_static_assert] = ACTIONS(3234), - [anon_sym_concept] = ACTIONS(3234), - [anon_sym_co_return] = ACTIONS(3234), - [anon_sym_co_yield] = ACTIONS(3234), - [anon_sym_R_DQUOTE] = ACTIONS(3236), - [anon_sym_LR_DQUOTE] = ACTIONS(3236), - [anon_sym_uR_DQUOTE] = ACTIONS(3236), - [anon_sym_UR_DQUOTE] = ACTIONS(3236), - [anon_sym_u8R_DQUOTE] = ACTIONS(3236), - [anon_sym_co_await] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_requires] = ACTIONS(3234), - [sym_this] = ACTIONS(3234), + [sym_identifier] = ACTIONS(3198), + [aux_sym_preproc_include_token1] = ACTIONS(3198), + [aux_sym_preproc_def_token1] = ACTIONS(3198), + [aux_sym_preproc_if_token1] = ACTIONS(3198), + [aux_sym_preproc_if_token2] = ACTIONS(3198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3198), + [sym_preproc_directive] = ACTIONS(3198), + [anon_sym_LPAREN2] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym___extension__] = ACTIONS(3198), + [anon_sym_typedef] = ACTIONS(3198), + [anon_sym_extern] = ACTIONS(3198), + [anon_sym___attribute__] = ACTIONS(3198), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3200), + [anon_sym___declspec] = ACTIONS(3198), + [anon_sym___based] = ACTIONS(3198), + [anon_sym___cdecl] = ACTIONS(3198), + [anon_sym___clrcall] = ACTIONS(3198), + [anon_sym___stdcall] = ACTIONS(3198), + [anon_sym___fastcall] = ACTIONS(3198), + [anon_sym___thiscall] = ACTIONS(3198), + [anon_sym___vectorcall] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_signed] = ACTIONS(3198), + [anon_sym_unsigned] = ACTIONS(3198), + [anon_sym_long] = ACTIONS(3198), + [anon_sym_short] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_register] = ACTIONS(3198), + [anon_sym_inline] = ACTIONS(3198), + [anon_sym___inline] = ACTIONS(3198), + [anon_sym___inline__] = ACTIONS(3198), + [anon_sym___forceinline] = ACTIONS(3198), + [anon_sym_thread_local] = ACTIONS(3198), + [anon_sym___thread] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_constexpr] = ACTIONS(3198), + [anon_sym_volatile] = ACTIONS(3198), + [anon_sym_restrict] = ACTIONS(3198), + [anon_sym___restrict__] = ACTIONS(3198), + [anon_sym__Atomic] = ACTIONS(3198), + [anon_sym__Noreturn] = ACTIONS(3198), + [anon_sym_noreturn] = ACTIONS(3198), + [anon_sym_mutable] = ACTIONS(3198), + [anon_sym_constinit] = ACTIONS(3198), + [anon_sym_consteval] = ACTIONS(3198), + [sym_primitive_type] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_goto] = ACTIONS(3198), + [anon_sym_not] = ACTIONS(3198), + [anon_sym_compl] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_sizeof] = ACTIONS(3198), + [anon_sym___alignof__] = ACTIONS(3198), + [anon_sym___alignof] = ACTIONS(3198), + [anon_sym__alignof] = ACTIONS(3198), + [anon_sym_alignof] = ACTIONS(3198), + [anon_sym__Alignof] = ACTIONS(3198), + [anon_sym_offsetof] = ACTIONS(3198), + [anon_sym__Generic] = ACTIONS(3198), + [anon_sym_asm] = ACTIONS(3198), + [anon_sym___asm__] = ACTIONS(3198), + [sym_number_literal] = ACTIONS(3200), + [anon_sym_L_SQUOTE] = ACTIONS(3200), + [anon_sym_u_SQUOTE] = ACTIONS(3200), + [anon_sym_U_SQUOTE] = ACTIONS(3200), + [anon_sym_u8_SQUOTE] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3200), + [anon_sym_L_DQUOTE] = ACTIONS(3200), + [anon_sym_u_DQUOTE] = ACTIONS(3200), + [anon_sym_U_DQUOTE] = ACTIONS(3200), + [anon_sym_u8_DQUOTE] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(3200), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [anon_sym_NULL] = ACTIONS(3198), + [anon_sym_nullptr] = ACTIONS(3198), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3198), + [anon_sym_decltype] = ACTIONS(3198), + [anon_sym_virtual] = ACTIONS(3198), + [anon_sym_alignas] = ACTIONS(3198), + [anon_sym_explicit] = ACTIONS(3198), + [anon_sym_typename] = ACTIONS(3198), + [anon_sym_template] = ACTIONS(3198), + [anon_sym_operator] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_static_assert] = ACTIONS(3198), + [anon_sym_concept] = ACTIONS(3198), + [anon_sym_co_return] = ACTIONS(3198), + [anon_sym_co_yield] = ACTIONS(3198), + [anon_sym_R_DQUOTE] = ACTIONS(3200), + [anon_sym_LR_DQUOTE] = ACTIONS(3200), + [anon_sym_uR_DQUOTE] = ACTIONS(3200), + [anon_sym_UR_DQUOTE] = ACTIONS(3200), + [anon_sym_u8R_DQUOTE] = ACTIONS(3200), + [anon_sym_co_await] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), }, [815] = { - [ts_builtin_sym_end] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2768), - [aux_sym_preproc_include_token1] = ACTIONS(2768), - [aux_sym_preproc_def_token1] = ACTIONS(2768), - [aux_sym_preproc_if_token1] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2768), - [sym_preproc_directive] = ACTIONS(2768), - [anon_sym_LPAREN2] = ACTIONS(2770), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_TILDE] = ACTIONS(2770), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_SEMI] = ACTIONS(2770), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym_typedef] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2770), - [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(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(2768), - [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_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = 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_if] = ACTIONS(2768), - [anon_sym_else] = ACTIONS(2768), - [anon_sym_switch] = ACTIONS(2768), - [anon_sym_case] = ACTIONS(2768), - [anon_sym_default] = ACTIONS(2768), - [anon_sym_while] = ACTIONS(2768), - [anon_sym_do] = ACTIONS(2768), - [anon_sym_for] = ACTIONS(2768), - [anon_sym_return] = ACTIONS(2768), - [anon_sym_break] = ACTIONS(2768), - [anon_sym_continue] = ACTIONS(2768), - [anon_sym_goto] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(2768), - [anon_sym_compl] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2770), - [anon_sym_PLUS_PLUS] = ACTIONS(2770), - [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_asm] = ACTIONS(2768), - [anon_sym___asm__] = ACTIONS(2768), - [sym_number_literal] = ACTIONS(2770), - [anon_sym_L_SQUOTE] = ACTIONS(2770), - [anon_sym_u_SQUOTE] = ACTIONS(2770), - [anon_sym_U_SQUOTE] = ACTIONS(2770), - [anon_sym_u8_SQUOTE] = ACTIONS(2770), - [anon_sym_SQUOTE] = ACTIONS(2770), - [anon_sym_L_DQUOTE] = ACTIONS(2770), - [anon_sym_u_DQUOTE] = ACTIONS(2770), - [anon_sym_U_DQUOTE] = ACTIONS(2770), - [anon_sym_u8_DQUOTE] = ACTIONS(2770), - [anon_sym_DQUOTE] = ACTIONS(2770), - [sym_true] = ACTIONS(2768), - [sym_false] = ACTIONS(2768), - [anon_sym_NULL] = ACTIONS(2768), - [anon_sym_nullptr] = ACTIONS(2768), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2768), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym_explicit] = ACTIONS(2768), - [anon_sym_typename] = ACTIONS(2768), - [anon_sym_template] = ACTIONS(2768), - [anon_sym_operator] = ACTIONS(2768), - [anon_sym_try] = ACTIONS(2768), - [anon_sym_delete] = ACTIONS(2768), - [anon_sym_throw] = ACTIONS(2768), - [anon_sym_namespace] = ACTIONS(2768), - [anon_sym_using] = ACTIONS(2768), - [anon_sym_static_assert] = ACTIONS(2768), - [anon_sym_concept] = ACTIONS(2768), - [anon_sym_co_return] = ACTIONS(2768), - [anon_sym_co_yield] = ACTIONS(2768), - [anon_sym_catch] = ACTIONS(2768), - [anon_sym_R_DQUOTE] = ACTIONS(2770), - [anon_sym_LR_DQUOTE] = ACTIONS(2770), - [anon_sym_uR_DQUOTE] = ACTIONS(2770), - [anon_sym_UR_DQUOTE] = ACTIONS(2770), - [anon_sym_u8R_DQUOTE] = ACTIONS(2770), - [anon_sym_co_await] = ACTIONS(2768), - [anon_sym_new] = ACTIONS(2768), - [anon_sym_requires] = ACTIONS(2768), - [sym_this] = ACTIONS(2768), + [sym_identifier] = ACTIONS(3202), + [aux_sym_preproc_include_token1] = ACTIONS(3202), + [aux_sym_preproc_def_token1] = ACTIONS(3202), + [aux_sym_preproc_if_token1] = ACTIONS(3202), + [aux_sym_preproc_if_token2] = ACTIONS(3202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3202), + [sym_preproc_directive] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym___extension__] = ACTIONS(3202), + [anon_sym_typedef] = ACTIONS(3202), + [anon_sym_extern] = ACTIONS(3202), + [anon_sym___attribute__] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3204), + [anon_sym___declspec] = ACTIONS(3202), + [anon_sym___based] = ACTIONS(3202), + [anon_sym___cdecl] = ACTIONS(3202), + [anon_sym___clrcall] = ACTIONS(3202), + [anon_sym___stdcall] = ACTIONS(3202), + [anon_sym___fastcall] = ACTIONS(3202), + [anon_sym___thiscall] = ACTIONS(3202), + [anon_sym___vectorcall] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_signed] = ACTIONS(3202), + [anon_sym_unsigned] = ACTIONS(3202), + [anon_sym_long] = ACTIONS(3202), + [anon_sym_short] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_register] = ACTIONS(3202), + [anon_sym_inline] = ACTIONS(3202), + [anon_sym___inline] = ACTIONS(3202), + [anon_sym___inline__] = ACTIONS(3202), + [anon_sym___forceinline] = ACTIONS(3202), + [anon_sym_thread_local] = ACTIONS(3202), + [anon_sym___thread] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_constexpr] = ACTIONS(3202), + [anon_sym_volatile] = ACTIONS(3202), + [anon_sym_restrict] = ACTIONS(3202), + [anon_sym___restrict__] = ACTIONS(3202), + [anon_sym__Atomic] = ACTIONS(3202), + [anon_sym__Noreturn] = ACTIONS(3202), + [anon_sym_noreturn] = ACTIONS(3202), + [anon_sym_mutable] = ACTIONS(3202), + [anon_sym_constinit] = ACTIONS(3202), + [anon_sym_consteval] = ACTIONS(3202), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_union] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_case] = ACTIONS(3202), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_goto] = ACTIONS(3202), + [anon_sym_not] = ACTIONS(3202), + [anon_sym_compl] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3204), + [anon_sym_PLUS_PLUS] = ACTIONS(3204), + [anon_sym_sizeof] = ACTIONS(3202), + [anon_sym___alignof__] = ACTIONS(3202), + [anon_sym___alignof] = ACTIONS(3202), + [anon_sym__alignof] = ACTIONS(3202), + [anon_sym_alignof] = ACTIONS(3202), + [anon_sym__Alignof] = ACTIONS(3202), + [anon_sym_offsetof] = ACTIONS(3202), + [anon_sym__Generic] = ACTIONS(3202), + [anon_sym_asm] = ACTIONS(3202), + [anon_sym___asm__] = ACTIONS(3202), + [sym_number_literal] = ACTIONS(3204), + [anon_sym_L_SQUOTE] = ACTIONS(3204), + [anon_sym_u_SQUOTE] = ACTIONS(3204), + [anon_sym_U_SQUOTE] = ACTIONS(3204), + [anon_sym_u8_SQUOTE] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3204), + [anon_sym_L_DQUOTE] = ACTIONS(3204), + [anon_sym_u_DQUOTE] = ACTIONS(3204), + [anon_sym_U_DQUOTE] = ACTIONS(3204), + [anon_sym_u8_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(3204), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [anon_sym_NULL] = ACTIONS(3202), + [anon_sym_nullptr] = ACTIONS(3202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3202), + [anon_sym_decltype] = ACTIONS(3202), + [anon_sym_virtual] = ACTIONS(3202), + [anon_sym_alignas] = ACTIONS(3202), + [anon_sym_explicit] = ACTIONS(3202), + [anon_sym_typename] = ACTIONS(3202), + [anon_sym_template] = ACTIONS(3202), + [anon_sym_operator] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(3202), + [anon_sym_throw] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_using] = ACTIONS(3202), + [anon_sym_static_assert] = ACTIONS(3202), + [anon_sym_concept] = ACTIONS(3202), + [anon_sym_co_return] = ACTIONS(3202), + [anon_sym_co_yield] = ACTIONS(3202), + [anon_sym_R_DQUOTE] = ACTIONS(3204), + [anon_sym_LR_DQUOTE] = ACTIONS(3204), + [anon_sym_uR_DQUOTE] = ACTIONS(3204), + [anon_sym_UR_DQUOTE] = ACTIONS(3204), + [anon_sym_u8R_DQUOTE] = ACTIONS(3204), + [anon_sym_co_await] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_requires] = ACTIONS(3202), + [sym_this] = ACTIONS(3202), }, [816] = { - [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), - [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_extern] = ACTIONS(3238), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3238), - [anon_sym_constinit] = ACTIONS(3238), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3238), - [anon_sym_alignas] = 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_using] = 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), + [sym_identifier] = ACTIONS(3198), + [aux_sym_preproc_include_token1] = ACTIONS(3198), + [aux_sym_preproc_def_token1] = ACTIONS(3198), + [aux_sym_preproc_if_token1] = ACTIONS(3198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3198), + [sym_preproc_directive] = ACTIONS(3198), + [anon_sym_LPAREN2] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym___extension__] = ACTIONS(3198), + [anon_sym_typedef] = ACTIONS(3198), + [anon_sym_extern] = ACTIONS(3198), + [anon_sym___attribute__] = ACTIONS(3198), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3200), + [anon_sym___declspec] = ACTIONS(3198), + [anon_sym___based] = ACTIONS(3198), + [anon_sym___cdecl] = ACTIONS(3198), + [anon_sym___clrcall] = ACTIONS(3198), + [anon_sym___stdcall] = ACTIONS(3198), + [anon_sym___fastcall] = ACTIONS(3198), + [anon_sym___thiscall] = ACTIONS(3198), + [anon_sym___vectorcall] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_signed] = ACTIONS(3198), + [anon_sym_unsigned] = ACTIONS(3198), + [anon_sym_long] = ACTIONS(3198), + [anon_sym_short] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_register] = ACTIONS(3198), + [anon_sym_inline] = ACTIONS(3198), + [anon_sym___inline] = ACTIONS(3198), + [anon_sym___inline__] = ACTIONS(3198), + [anon_sym___forceinline] = ACTIONS(3198), + [anon_sym_thread_local] = ACTIONS(3198), + [anon_sym___thread] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_constexpr] = ACTIONS(3198), + [anon_sym_volatile] = ACTIONS(3198), + [anon_sym_restrict] = ACTIONS(3198), + [anon_sym___restrict__] = ACTIONS(3198), + [anon_sym__Atomic] = ACTIONS(3198), + [anon_sym__Noreturn] = ACTIONS(3198), + [anon_sym_noreturn] = ACTIONS(3198), + [anon_sym_mutable] = ACTIONS(3198), + [anon_sym_constinit] = ACTIONS(3198), + [anon_sym_consteval] = ACTIONS(3198), + [sym_primitive_type] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_goto] = ACTIONS(3198), + [anon_sym_not] = ACTIONS(3198), + [anon_sym_compl] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_sizeof] = ACTIONS(3198), + [anon_sym___alignof__] = ACTIONS(3198), + [anon_sym___alignof] = ACTIONS(3198), + [anon_sym__alignof] = ACTIONS(3198), + [anon_sym_alignof] = ACTIONS(3198), + [anon_sym__Alignof] = ACTIONS(3198), + [anon_sym_offsetof] = ACTIONS(3198), + [anon_sym__Generic] = ACTIONS(3198), + [anon_sym_asm] = ACTIONS(3198), + [anon_sym___asm__] = ACTIONS(3198), + [sym_number_literal] = ACTIONS(3200), + [anon_sym_L_SQUOTE] = ACTIONS(3200), + [anon_sym_u_SQUOTE] = ACTIONS(3200), + [anon_sym_U_SQUOTE] = ACTIONS(3200), + [anon_sym_u8_SQUOTE] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3200), + [anon_sym_L_DQUOTE] = ACTIONS(3200), + [anon_sym_u_DQUOTE] = ACTIONS(3200), + [anon_sym_U_DQUOTE] = ACTIONS(3200), + [anon_sym_u8_DQUOTE] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(3200), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [anon_sym_NULL] = ACTIONS(3198), + [anon_sym_nullptr] = ACTIONS(3198), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3198), + [anon_sym_decltype] = ACTIONS(3198), + [anon_sym_virtual] = ACTIONS(3198), + [anon_sym_alignas] = ACTIONS(3198), + [anon_sym_explicit] = ACTIONS(3198), + [anon_sym_typename] = ACTIONS(3198), + [anon_sym_template] = ACTIONS(3198), + [anon_sym_operator] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_static_assert] = ACTIONS(3198), + [anon_sym_concept] = ACTIONS(3198), + [anon_sym_co_return] = ACTIONS(3198), + [anon_sym_co_yield] = ACTIONS(3198), + [anon_sym_R_DQUOTE] = ACTIONS(3200), + [anon_sym_LR_DQUOTE] = ACTIONS(3200), + [anon_sym_uR_DQUOTE] = ACTIONS(3200), + [anon_sym_UR_DQUOTE] = ACTIONS(3200), + [anon_sym_u8R_DQUOTE] = ACTIONS(3200), + [anon_sym_co_await] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), }, [817] = { - [sym_identifier] = ACTIONS(3259), - [aux_sym_preproc_include_token1] = ACTIONS(3259), - [aux_sym_preproc_def_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token2] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3259), - [aux_sym_preproc_else_token1] = ACTIONS(3259), - [aux_sym_preproc_elif_token1] = ACTIONS(3259), - [sym_preproc_directive] = ACTIONS(3259), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(3261), - [anon_sym_TILDE] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3261), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_SEMI] = ACTIONS(3261), - [anon_sym___extension__] = ACTIONS(3259), - [anon_sym_typedef] = ACTIONS(3259), - [anon_sym_extern] = ACTIONS(3259), - [anon_sym___attribute__] = ACTIONS(3259), - [anon_sym_COLON_COLON] = ACTIONS(3261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3261), - [anon_sym___declspec] = ACTIONS(3259), - [anon_sym___based] = ACTIONS(3259), - [anon_sym___cdecl] = ACTIONS(3259), - [anon_sym___clrcall] = ACTIONS(3259), - [anon_sym___stdcall] = ACTIONS(3259), - [anon_sym___fastcall] = ACTIONS(3259), - [anon_sym___thiscall] = ACTIONS(3259), - [anon_sym___vectorcall] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3261), - [anon_sym_signed] = ACTIONS(3259), - [anon_sym_unsigned] = ACTIONS(3259), - [anon_sym_long] = ACTIONS(3259), - [anon_sym_short] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_static] = ACTIONS(3259), - [anon_sym_register] = ACTIONS(3259), - [anon_sym_inline] = ACTIONS(3259), - [anon_sym___inline] = ACTIONS(3259), - [anon_sym___inline__] = ACTIONS(3259), - [anon_sym___forceinline] = ACTIONS(3259), - [anon_sym_thread_local] = ACTIONS(3259), - [anon_sym___thread] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_constexpr] = ACTIONS(3259), - [anon_sym_volatile] = ACTIONS(3259), - [anon_sym_restrict] = ACTIONS(3259), - [anon_sym___restrict__] = ACTIONS(3259), - [anon_sym__Atomic] = ACTIONS(3259), - [anon_sym__Noreturn] = ACTIONS(3259), - [anon_sym_noreturn] = ACTIONS(3259), - [anon_sym_mutable] = ACTIONS(3259), - [anon_sym_constinit] = ACTIONS(3259), - [anon_sym_consteval] = ACTIONS(3259), - [sym_primitive_type] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), - [anon_sym_class] = ACTIONS(3259), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_union] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_switch] = ACTIONS(3259), - [anon_sym_case] = ACTIONS(3259), - [anon_sym_default] = ACTIONS(3259), - [anon_sym_while] = ACTIONS(3259), - [anon_sym_do] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_goto] = ACTIONS(3259), - [anon_sym_not] = ACTIONS(3259), - [anon_sym_compl] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3261), - [anon_sym_PLUS_PLUS] = ACTIONS(3261), - [anon_sym_sizeof] = ACTIONS(3259), - [anon_sym___alignof__] = ACTIONS(3259), - [anon_sym___alignof] = ACTIONS(3259), - [anon_sym__alignof] = ACTIONS(3259), - [anon_sym_alignof] = ACTIONS(3259), - [anon_sym__Alignof] = ACTIONS(3259), - [anon_sym_offsetof] = ACTIONS(3259), - [anon_sym__Generic] = ACTIONS(3259), - [anon_sym_asm] = ACTIONS(3259), - [anon_sym___asm__] = ACTIONS(3259), - [sym_number_literal] = ACTIONS(3261), - [anon_sym_L_SQUOTE] = ACTIONS(3261), - [anon_sym_u_SQUOTE] = ACTIONS(3261), - [anon_sym_U_SQUOTE] = ACTIONS(3261), - [anon_sym_u8_SQUOTE] = ACTIONS(3261), - [anon_sym_SQUOTE] = ACTIONS(3261), - [anon_sym_L_DQUOTE] = ACTIONS(3261), - [anon_sym_u_DQUOTE] = ACTIONS(3261), - [anon_sym_U_DQUOTE] = ACTIONS(3261), - [anon_sym_u8_DQUOTE] = ACTIONS(3261), - [anon_sym_DQUOTE] = ACTIONS(3261), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [anon_sym_NULL] = ACTIONS(3259), - [anon_sym_nullptr] = ACTIONS(3259), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3259), - [anon_sym_decltype] = ACTIONS(3259), - [anon_sym_virtual] = ACTIONS(3259), - [anon_sym_alignas] = ACTIONS(3259), - [anon_sym_explicit] = ACTIONS(3259), - [anon_sym_typename] = ACTIONS(3259), - [anon_sym_template] = ACTIONS(3259), - [anon_sym_operator] = ACTIONS(3259), - [anon_sym_try] = ACTIONS(3259), - [anon_sym_delete] = ACTIONS(3259), - [anon_sym_throw] = ACTIONS(3259), - [anon_sym_namespace] = ACTIONS(3259), - [anon_sym_using] = ACTIONS(3259), - [anon_sym_static_assert] = ACTIONS(3259), - [anon_sym_concept] = ACTIONS(3259), - [anon_sym_co_return] = ACTIONS(3259), - [anon_sym_co_yield] = ACTIONS(3259), - [anon_sym_R_DQUOTE] = ACTIONS(3261), - [anon_sym_LR_DQUOTE] = ACTIONS(3261), - [anon_sym_uR_DQUOTE] = ACTIONS(3261), - [anon_sym_UR_DQUOTE] = ACTIONS(3261), - [anon_sym_u8R_DQUOTE] = ACTIONS(3261), - [anon_sym_co_await] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3259), - [anon_sym_requires] = ACTIONS(3259), - [sym_this] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3202), + [aux_sym_preproc_include_token1] = ACTIONS(3202), + [aux_sym_preproc_def_token1] = ACTIONS(3202), + [aux_sym_preproc_if_token1] = ACTIONS(3202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3202), + [sym_preproc_directive] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym___extension__] = ACTIONS(3202), + [anon_sym_typedef] = ACTIONS(3202), + [anon_sym_extern] = ACTIONS(3202), + [anon_sym___attribute__] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3204), + [anon_sym___declspec] = ACTIONS(3202), + [anon_sym___based] = ACTIONS(3202), + [anon_sym___cdecl] = ACTIONS(3202), + [anon_sym___clrcall] = ACTIONS(3202), + [anon_sym___stdcall] = ACTIONS(3202), + [anon_sym___fastcall] = ACTIONS(3202), + [anon_sym___thiscall] = ACTIONS(3202), + [anon_sym___vectorcall] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_RBRACE] = ACTIONS(3204), + [anon_sym_signed] = ACTIONS(3202), + [anon_sym_unsigned] = ACTIONS(3202), + [anon_sym_long] = ACTIONS(3202), + [anon_sym_short] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_register] = ACTIONS(3202), + [anon_sym_inline] = ACTIONS(3202), + [anon_sym___inline] = ACTIONS(3202), + [anon_sym___inline__] = ACTIONS(3202), + [anon_sym___forceinline] = ACTIONS(3202), + [anon_sym_thread_local] = ACTIONS(3202), + [anon_sym___thread] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_constexpr] = ACTIONS(3202), + [anon_sym_volatile] = ACTIONS(3202), + [anon_sym_restrict] = ACTIONS(3202), + [anon_sym___restrict__] = ACTIONS(3202), + [anon_sym__Atomic] = ACTIONS(3202), + [anon_sym__Noreturn] = ACTIONS(3202), + [anon_sym_noreturn] = ACTIONS(3202), + [anon_sym_mutable] = ACTIONS(3202), + [anon_sym_constinit] = ACTIONS(3202), + [anon_sym_consteval] = ACTIONS(3202), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_union] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_case] = ACTIONS(3202), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_goto] = ACTIONS(3202), + [anon_sym_not] = ACTIONS(3202), + [anon_sym_compl] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3204), + [anon_sym_PLUS_PLUS] = ACTIONS(3204), + [anon_sym_sizeof] = ACTIONS(3202), + [anon_sym___alignof__] = ACTIONS(3202), + [anon_sym___alignof] = ACTIONS(3202), + [anon_sym__alignof] = ACTIONS(3202), + [anon_sym_alignof] = ACTIONS(3202), + [anon_sym__Alignof] = ACTIONS(3202), + [anon_sym_offsetof] = ACTIONS(3202), + [anon_sym__Generic] = ACTIONS(3202), + [anon_sym_asm] = ACTIONS(3202), + [anon_sym___asm__] = ACTIONS(3202), + [sym_number_literal] = ACTIONS(3204), + [anon_sym_L_SQUOTE] = ACTIONS(3204), + [anon_sym_u_SQUOTE] = ACTIONS(3204), + [anon_sym_U_SQUOTE] = ACTIONS(3204), + [anon_sym_u8_SQUOTE] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3204), + [anon_sym_L_DQUOTE] = ACTIONS(3204), + [anon_sym_u_DQUOTE] = ACTIONS(3204), + [anon_sym_U_DQUOTE] = ACTIONS(3204), + [anon_sym_u8_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(3204), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [anon_sym_NULL] = ACTIONS(3202), + [anon_sym_nullptr] = ACTIONS(3202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3202), + [anon_sym_decltype] = ACTIONS(3202), + [anon_sym_virtual] = ACTIONS(3202), + [anon_sym_alignas] = ACTIONS(3202), + [anon_sym_explicit] = ACTIONS(3202), + [anon_sym_typename] = ACTIONS(3202), + [anon_sym_template] = ACTIONS(3202), + [anon_sym_operator] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(3202), + [anon_sym_throw] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_using] = ACTIONS(3202), + [anon_sym_static_assert] = ACTIONS(3202), + [anon_sym_concept] = ACTIONS(3202), + [anon_sym_co_return] = ACTIONS(3202), + [anon_sym_co_yield] = ACTIONS(3202), + [anon_sym_R_DQUOTE] = ACTIONS(3204), + [anon_sym_LR_DQUOTE] = ACTIONS(3204), + [anon_sym_uR_DQUOTE] = ACTIONS(3204), + [anon_sym_UR_DQUOTE] = ACTIONS(3204), + [anon_sym_u8R_DQUOTE] = ACTIONS(3204), + [anon_sym_co_await] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_requires] = ACTIONS(3202), + [sym_this] = ACTIONS(3202), }, [818] = { - [sym_identifier] = ACTIONS(3195), - [aux_sym_preproc_include_token1] = ACTIONS(3195), - [aux_sym_preproc_def_token1] = ACTIONS(3195), - [aux_sym_preproc_if_token1] = ACTIONS(3195), - [aux_sym_preproc_if_token2] = ACTIONS(3195), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3195), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3195), - [aux_sym_preproc_else_token1] = ACTIONS(3195), - [aux_sym_preproc_elif_token1] = ACTIONS(3195), - [sym_preproc_directive] = ACTIONS(3195), - [anon_sym_LPAREN2] = ACTIONS(3197), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_SEMI] = ACTIONS(3197), - [anon_sym___extension__] = ACTIONS(3195), - [anon_sym_typedef] = ACTIONS(3195), - [anon_sym_extern] = ACTIONS(3195), - [anon_sym___attribute__] = ACTIONS(3195), - [anon_sym_COLON_COLON] = ACTIONS(3197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3197), - [anon_sym___declspec] = ACTIONS(3195), - [anon_sym___based] = ACTIONS(3195), - [anon_sym___cdecl] = ACTIONS(3195), - [anon_sym___clrcall] = ACTIONS(3195), - [anon_sym___stdcall] = ACTIONS(3195), - [anon_sym___fastcall] = ACTIONS(3195), - [anon_sym___thiscall] = ACTIONS(3195), - [anon_sym___vectorcall] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_signed] = ACTIONS(3195), - [anon_sym_unsigned] = ACTIONS(3195), - [anon_sym_long] = ACTIONS(3195), - [anon_sym_short] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_static] = ACTIONS(3195), - [anon_sym_register] = ACTIONS(3195), - [anon_sym_inline] = ACTIONS(3195), - [anon_sym___inline] = ACTIONS(3195), - [anon_sym___inline__] = ACTIONS(3195), - [anon_sym___forceinline] = ACTIONS(3195), - [anon_sym_thread_local] = ACTIONS(3195), - [anon_sym___thread] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_constexpr] = ACTIONS(3195), - [anon_sym_volatile] = ACTIONS(3195), - [anon_sym_restrict] = ACTIONS(3195), - [anon_sym___restrict__] = ACTIONS(3195), - [anon_sym__Atomic] = ACTIONS(3195), - [anon_sym__Noreturn] = ACTIONS(3195), - [anon_sym_noreturn] = ACTIONS(3195), - [anon_sym_mutable] = ACTIONS(3195), - [anon_sym_constinit] = ACTIONS(3195), - [anon_sym_consteval] = ACTIONS(3195), - [sym_primitive_type] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3195), - [anon_sym_class] = ACTIONS(3195), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_union] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_switch] = ACTIONS(3195), - [anon_sym_case] = ACTIONS(3195), - [anon_sym_default] = ACTIONS(3195), - [anon_sym_while] = ACTIONS(3195), - [anon_sym_do] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_goto] = ACTIONS(3195), - [anon_sym_not] = ACTIONS(3195), - [anon_sym_compl] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_sizeof] = ACTIONS(3195), - [anon_sym___alignof__] = ACTIONS(3195), - [anon_sym___alignof] = ACTIONS(3195), - [anon_sym__alignof] = ACTIONS(3195), - [anon_sym_alignof] = ACTIONS(3195), - [anon_sym__Alignof] = ACTIONS(3195), - [anon_sym_offsetof] = ACTIONS(3195), - [anon_sym__Generic] = ACTIONS(3195), - [anon_sym_asm] = ACTIONS(3195), - [anon_sym___asm__] = ACTIONS(3195), - [sym_number_literal] = ACTIONS(3197), - [anon_sym_L_SQUOTE] = ACTIONS(3197), - [anon_sym_u_SQUOTE] = ACTIONS(3197), - [anon_sym_U_SQUOTE] = ACTIONS(3197), - [anon_sym_u8_SQUOTE] = ACTIONS(3197), - [anon_sym_SQUOTE] = ACTIONS(3197), - [anon_sym_L_DQUOTE] = ACTIONS(3197), - [anon_sym_u_DQUOTE] = ACTIONS(3197), - [anon_sym_U_DQUOTE] = ACTIONS(3197), - [anon_sym_u8_DQUOTE] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3197), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [anon_sym_NULL] = ACTIONS(3195), - [anon_sym_nullptr] = ACTIONS(3195), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3195), - [anon_sym_decltype] = ACTIONS(3195), - [anon_sym_virtual] = ACTIONS(3195), - [anon_sym_alignas] = ACTIONS(3195), - [anon_sym_explicit] = ACTIONS(3195), - [anon_sym_typename] = ACTIONS(3195), - [anon_sym_template] = ACTIONS(3195), - [anon_sym_operator] = ACTIONS(3195), - [anon_sym_try] = ACTIONS(3195), - [anon_sym_delete] = ACTIONS(3195), - [anon_sym_throw] = ACTIONS(3195), - [anon_sym_namespace] = ACTIONS(3195), - [anon_sym_using] = ACTIONS(3195), - [anon_sym_static_assert] = ACTIONS(3195), - [anon_sym_concept] = ACTIONS(3195), - [anon_sym_co_return] = ACTIONS(3195), - [anon_sym_co_yield] = ACTIONS(3195), - [anon_sym_R_DQUOTE] = ACTIONS(3197), - [anon_sym_LR_DQUOTE] = ACTIONS(3197), - [anon_sym_uR_DQUOTE] = ACTIONS(3197), - [anon_sym_UR_DQUOTE] = ACTIONS(3197), - [anon_sym_u8R_DQUOTE] = ACTIONS(3197), - [anon_sym_co_await] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3195), - [anon_sym_requires] = ACTIONS(3195), - [sym_this] = ACTIONS(3195), + [sym_identifier] = ACTIONS(3208), + [aux_sym_preproc_include_token1] = ACTIONS(3208), + [aux_sym_preproc_def_token1] = ACTIONS(3208), + [aux_sym_preproc_if_token1] = ACTIONS(3208), + [aux_sym_preproc_if_token2] = ACTIONS(3208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3208), + [sym_preproc_directive] = ACTIONS(3208), + [anon_sym_LPAREN2] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_AMP_AMP] = ACTIONS(3210), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym_SEMI] = ACTIONS(3210), + [anon_sym___extension__] = ACTIONS(3208), + [anon_sym_typedef] = ACTIONS(3208), + [anon_sym_extern] = ACTIONS(3208), + [anon_sym___attribute__] = ACTIONS(3208), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3210), + [anon_sym___declspec] = ACTIONS(3208), + [anon_sym___based] = ACTIONS(3208), + [anon_sym___cdecl] = ACTIONS(3208), + [anon_sym___clrcall] = ACTIONS(3208), + [anon_sym___stdcall] = ACTIONS(3208), + [anon_sym___fastcall] = ACTIONS(3208), + [anon_sym___thiscall] = ACTIONS(3208), + [anon_sym___vectorcall] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_signed] = ACTIONS(3208), + [anon_sym_unsigned] = ACTIONS(3208), + [anon_sym_long] = ACTIONS(3208), + [anon_sym_short] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_static] = ACTIONS(3208), + [anon_sym_register] = ACTIONS(3208), + [anon_sym_inline] = ACTIONS(3208), + [anon_sym___inline] = ACTIONS(3208), + [anon_sym___inline__] = ACTIONS(3208), + [anon_sym___forceinline] = ACTIONS(3208), + [anon_sym_thread_local] = ACTIONS(3208), + [anon_sym___thread] = ACTIONS(3208), + [anon_sym_const] = ACTIONS(3208), + [anon_sym_constexpr] = ACTIONS(3208), + [anon_sym_volatile] = ACTIONS(3208), + [anon_sym_restrict] = ACTIONS(3208), + [anon_sym___restrict__] = ACTIONS(3208), + [anon_sym__Atomic] = ACTIONS(3208), + [anon_sym__Noreturn] = ACTIONS(3208), + [anon_sym_noreturn] = ACTIONS(3208), + [anon_sym_mutable] = ACTIONS(3208), + [anon_sym_constinit] = ACTIONS(3208), + [anon_sym_consteval] = ACTIONS(3208), + [sym_primitive_type] = ACTIONS(3208), + [anon_sym_enum] = ACTIONS(3208), + [anon_sym_class] = ACTIONS(3208), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3208), + [anon_sym_if] = ACTIONS(3208), + [anon_sym_switch] = ACTIONS(3208), + [anon_sym_case] = ACTIONS(3208), + [anon_sym_default] = ACTIONS(3208), + [anon_sym_while] = ACTIONS(3208), + [anon_sym_do] = ACTIONS(3208), + [anon_sym_for] = ACTIONS(3208), + [anon_sym_return] = ACTIONS(3208), + [anon_sym_break] = ACTIONS(3208), + [anon_sym_continue] = ACTIONS(3208), + [anon_sym_goto] = ACTIONS(3208), + [anon_sym_not] = ACTIONS(3208), + [anon_sym_compl] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3210), + [anon_sym_sizeof] = ACTIONS(3208), + [anon_sym___alignof__] = ACTIONS(3208), + [anon_sym___alignof] = ACTIONS(3208), + [anon_sym__alignof] = ACTIONS(3208), + [anon_sym_alignof] = ACTIONS(3208), + [anon_sym__Alignof] = ACTIONS(3208), + [anon_sym_offsetof] = ACTIONS(3208), + [anon_sym__Generic] = ACTIONS(3208), + [anon_sym_asm] = ACTIONS(3208), + [anon_sym___asm__] = ACTIONS(3208), + [sym_number_literal] = ACTIONS(3210), + [anon_sym_L_SQUOTE] = ACTIONS(3210), + [anon_sym_u_SQUOTE] = ACTIONS(3210), + [anon_sym_U_SQUOTE] = ACTIONS(3210), + [anon_sym_u8_SQUOTE] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3210), + [anon_sym_L_DQUOTE] = ACTIONS(3210), + [anon_sym_u_DQUOTE] = ACTIONS(3210), + [anon_sym_U_DQUOTE] = ACTIONS(3210), + [anon_sym_u8_DQUOTE] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(3210), + [sym_true] = ACTIONS(3208), + [sym_false] = ACTIONS(3208), + [anon_sym_NULL] = ACTIONS(3208), + [anon_sym_nullptr] = ACTIONS(3208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3208), + [anon_sym_decltype] = ACTIONS(3208), + [anon_sym_virtual] = ACTIONS(3208), + [anon_sym_alignas] = ACTIONS(3208), + [anon_sym_explicit] = ACTIONS(3208), + [anon_sym_typename] = ACTIONS(3208), + [anon_sym_template] = ACTIONS(3208), + [anon_sym_operator] = ACTIONS(3208), + [anon_sym_try] = ACTIONS(3208), + [anon_sym_delete] = ACTIONS(3208), + [anon_sym_throw] = ACTIONS(3208), + [anon_sym_namespace] = ACTIONS(3208), + [anon_sym_using] = ACTIONS(3208), + [anon_sym_static_assert] = ACTIONS(3208), + [anon_sym_concept] = ACTIONS(3208), + [anon_sym_co_return] = ACTIONS(3208), + [anon_sym_co_yield] = ACTIONS(3208), + [anon_sym_R_DQUOTE] = ACTIONS(3210), + [anon_sym_LR_DQUOTE] = ACTIONS(3210), + [anon_sym_uR_DQUOTE] = ACTIONS(3210), + [anon_sym_UR_DQUOTE] = ACTIONS(3210), + [anon_sym_u8R_DQUOTE] = ACTIONS(3210), + [anon_sym_co_await] = ACTIONS(3208), + [anon_sym_new] = ACTIONS(3208), + [anon_sym_requires] = ACTIONS(3208), + [sym_this] = ACTIONS(3208), }, [819] = { - [sym_identifier] = ACTIONS(2198), - [aux_sym_preproc_include_token1] = ACTIONS(2198), - [aux_sym_preproc_def_token1] = ACTIONS(2198), - [aux_sym_preproc_if_token1] = ACTIONS(2198), - [aux_sym_preproc_if_token2] = ACTIONS(2198), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2198), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2198), - [sym_preproc_directive] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(2196), - [anon_sym_BANG] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2198), - [anon_sym_PLUS] = ACTIONS(2198), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2196), - [anon_sym___extension__] = ACTIONS(2198), - [anon_sym_typedef] = ACTIONS(2198), - [anon_sym_extern] = ACTIONS(2198), - [anon_sym___attribute__] = ACTIONS(2198), - [anon_sym_COLON_COLON] = ACTIONS(2196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2196), - [anon_sym___declspec] = ACTIONS(2198), - [anon_sym___based] = ACTIONS(2198), - [anon_sym___cdecl] = ACTIONS(2198), - [anon_sym___clrcall] = ACTIONS(2198), - [anon_sym___stdcall] = ACTIONS(2198), - [anon_sym___fastcall] = ACTIONS(2198), - [anon_sym___thiscall] = ACTIONS(2198), - [anon_sym___vectorcall] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2196), - [anon_sym_signed] = ACTIONS(2198), - [anon_sym_unsigned] = ACTIONS(2198), - [anon_sym_long] = ACTIONS(2198), - [anon_sym_short] = ACTIONS(2198), - [anon_sym_LBRACK] = ACTIONS(2198), - [anon_sym_static] = ACTIONS(2198), - [anon_sym_register] = ACTIONS(2198), - [anon_sym_inline] = ACTIONS(2198), - [anon_sym___inline] = ACTIONS(2198), - [anon_sym___inline__] = ACTIONS(2198), - [anon_sym___forceinline] = ACTIONS(2198), - [anon_sym_thread_local] = ACTIONS(2198), - [anon_sym___thread] = ACTIONS(2198), - [anon_sym_const] = ACTIONS(2198), - [anon_sym_constexpr] = ACTIONS(2198), - [anon_sym_volatile] = ACTIONS(2198), - [anon_sym_restrict] = ACTIONS(2198), - [anon_sym___restrict__] = ACTIONS(2198), - [anon_sym__Atomic] = ACTIONS(2198), - [anon_sym__Noreturn] = ACTIONS(2198), - [anon_sym_noreturn] = ACTIONS(2198), - [anon_sym_mutable] = ACTIONS(2198), - [anon_sym_constinit] = ACTIONS(2198), - [anon_sym_consteval] = ACTIONS(2198), - [sym_primitive_type] = ACTIONS(2198), - [anon_sym_enum] = ACTIONS(2198), - [anon_sym_class] = ACTIONS(2198), - [anon_sym_struct] = ACTIONS(2198), - [anon_sym_union] = ACTIONS(2198), - [anon_sym_if] = ACTIONS(2198), - [anon_sym_else] = ACTIONS(2198), - [anon_sym_switch] = ACTIONS(2198), - [anon_sym_case] = ACTIONS(2198), - [anon_sym_default] = ACTIONS(2198), - [anon_sym_while] = ACTIONS(2198), - [anon_sym_do] = ACTIONS(2198), - [anon_sym_for] = ACTIONS(2198), - [anon_sym_return] = ACTIONS(2198), - [anon_sym_break] = ACTIONS(2198), - [anon_sym_continue] = ACTIONS(2198), - [anon_sym_goto] = ACTIONS(2198), - [anon_sym_not] = ACTIONS(2198), - [anon_sym_compl] = ACTIONS(2198), - [anon_sym_DASH_DASH] = ACTIONS(2196), - [anon_sym_PLUS_PLUS] = ACTIONS(2196), - [anon_sym_sizeof] = ACTIONS(2198), - [anon_sym___alignof__] = ACTIONS(2198), - [anon_sym___alignof] = ACTIONS(2198), - [anon_sym__alignof] = ACTIONS(2198), - [anon_sym_alignof] = ACTIONS(2198), - [anon_sym__Alignof] = ACTIONS(2198), - [anon_sym_offsetof] = ACTIONS(2198), - [anon_sym__Generic] = ACTIONS(2198), - [anon_sym_asm] = ACTIONS(2198), - [anon_sym___asm__] = ACTIONS(2198), - [sym_number_literal] = ACTIONS(2196), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2196), - [anon_sym_u_DQUOTE] = ACTIONS(2196), - [anon_sym_U_DQUOTE] = ACTIONS(2196), - [anon_sym_u8_DQUOTE] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2196), - [sym_true] = ACTIONS(2198), - [sym_false] = ACTIONS(2198), - [anon_sym_NULL] = ACTIONS(2198), - [anon_sym_nullptr] = ACTIONS(2198), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2198), - [anon_sym_decltype] = ACTIONS(2198), - [anon_sym_virtual] = ACTIONS(2198), - [anon_sym_alignas] = ACTIONS(2198), - [anon_sym_explicit] = ACTIONS(2198), - [anon_sym_typename] = ACTIONS(2198), - [anon_sym_template] = ACTIONS(2198), - [anon_sym_operator] = ACTIONS(2198), - [anon_sym_try] = ACTIONS(2198), - [anon_sym_delete] = ACTIONS(2198), - [anon_sym_throw] = ACTIONS(2198), - [anon_sym_namespace] = ACTIONS(2198), - [anon_sym_using] = ACTIONS(2198), - [anon_sym_static_assert] = ACTIONS(2198), - [anon_sym_concept] = ACTIONS(2198), - [anon_sym_co_return] = ACTIONS(2198), - [anon_sym_co_yield] = ACTIONS(2198), - [anon_sym_catch] = ACTIONS(2198), - [anon_sym_R_DQUOTE] = ACTIONS(2196), - [anon_sym_LR_DQUOTE] = ACTIONS(2196), - [anon_sym_uR_DQUOTE] = ACTIONS(2196), - [anon_sym_UR_DQUOTE] = ACTIONS(2196), - [anon_sym_u8R_DQUOTE] = ACTIONS(2196), - [anon_sym_co_await] = ACTIONS(2198), - [anon_sym_new] = ACTIONS(2198), - [anon_sym_requires] = ACTIONS(2198), - [sym_this] = ACTIONS(2198), + [sym_identifier] = ACTIONS(3212), + [aux_sym_preproc_include_token1] = ACTIONS(3212), + [aux_sym_preproc_def_token1] = ACTIONS(3212), + [aux_sym_preproc_if_token1] = ACTIONS(3212), + [aux_sym_preproc_if_token2] = ACTIONS(3212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3212), + [sym_preproc_directive] = ACTIONS(3212), + [anon_sym_LPAREN2] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3214), + [anon_sym_AMP_AMP] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_SEMI] = ACTIONS(3214), + [anon_sym___extension__] = ACTIONS(3212), + [anon_sym_typedef] = ACTIONS(3212), + [anon_sym_extern] = ACTIONS(3212), + [anon_sym___attribute__] = ACTIONS(3212), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3214), + [anon_sym___declspec] = ACTIONS(3212), + [anon_sym___based] = ACTIONS(3212), + [anon_sym___cdecl] = ACTIONS(3212), + [anon_sym___clrcall] = ACTIONS(3212), + [anon_sym___stdcall] = ACTIONS(3212), + [anon_sym___fastcall] = ACTIONS(3212), + [anon_sym___thiscall] = ACTIONS(3212), + [anon_sym___vectorcall] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_signed] = ACTIONS(3212), + [anon_sym_unsigned] = ACTIONS(3212), + [anon_sym_long] = ACTIONS(3212), + [anon_sym_short] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_static] = ACTIONS(3212), + [anon_sym_register] = ACTIONS(3212), + [anon_sym_inline] = ACTIONS(3212), + [anon_sym___inline] = ACTIONS(3212), + [anon_sym___inline__] = ACTIONS(3212), + [anon_sym___forceinline] = ACTIONS(3212), + [anon_sym_thread_local] = ACTIONS(3212), + [anon_sym___thread] = ACTIONS(3212), + [anon_sym_const] = ACTIONS(3212), + [anon_sym_constexpr] = ACTIONS(3212), + [anon_sym_volatile] = ACTIONS(3212), + [anon_sym_restrict] = ACTIONS(3212), + [anon_sym___restrict__] = ACTIONS(3212), + [anon_sym__Atomic] = ACTIONS(3212), + [anon_sym__Noreturn] = ACTIONS(3212), + [anon_sym_noreturn] = ACTIONS(3212), + [anon_sym_mutable] = ACTIONS(3212), + [anon_sym_constinit] = ACTIONS(3212), + [anon_sym_consteval] = ACTIONS(3212), + [sym_primitive_type] = ACTIONS(3212), + [anon_sym_enum] = ACTIONS(3212), + [anon_sym_class] = ACTIONS(3212), + [anon_sym_struct] = ACTIONS(3212), + [anon_sym_union] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_switch] = ACTIONS(3212), + [anon_sym_case] = ACTIONS(3212), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_break] = ACTIONS(3212), + [anon_sym_continue] = ACTIONS(3212), + [anon_sym_goto] = ACTIONS(3212), + [anon_sym_not] = ACTIONS(3212), + [anon_sym_compl] = ACTIONS(3212), + [anon_sym_DASH_DASH] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3214), + [anon_sym_sizeof] = ACTIONS(3212), + [anon_sym___alignof__] = ACTIONS(3212), + [anon_sym___alignof] = ACTIONS(3212), + [anon_sym__alignof] = ACTIONS(3212), + [anon_sym_alignof] = ACTIONS(3212), + [anon_sym__Alignof] = ACTIONS(3212), + [anon_sym_offsetof] = ACTIONS(3212), + [anon_sym__Generic] = ACTIONS(3212), + [anon_sym_asm] = ACTIONS(3212), + [anon_sym___asm__] = ACTIONS(3212), + [sym_number_literal] = ACTIONS(3214), + [anon_sym_L_SQUOTE] = ACTIONS(3214), + [anon_sym_u_SQUOTE] = ACTIONS(3214), + [anon_sym_U_SQUOTE] = ACTIONS(3214), + [anon_sym_u8_SQUOTE] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3214), + [anon_sym_L_DQUOTE] = ACTIONS(3214), + [anon_sym_u_DQUOTE] = ACTIONS(3214), + [anon_sym_U_DQUOTE] = ACTIONS(3214), + [anon_sym_u8_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE] = ACTIONS(3214), + [sym_true] = ACTIONS(3212), + [sym_false] = ACTIONS(3212), + [anon_sym_NULL] = ACTIONS(3212), + [anon_sym_nullptr] = ACTIONS(3212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3212), + [anon_sym_decltype] = ACTIONS(3212), + [anon_sym_virtual] = ACTIONS(3212), + [anon_sym_alignas] = ACTIONS(3212), + [anon_sym_explicit] = ACTIONS(3212), + [anon_sym_typename] = ACTIONS(3212), + [anon_sym_template] = ACTIONS(3212), + [anon_sym_operator] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_delete] = ACTIONS(3212), + [anon_sym_throw] = ACTIONS(3212), + [anon_sym_namespace] = ACTIONS(3212), + [anon_sym_using] = ACTIONS(3212), + [anon_sym_static_assert] = ACTIONS(3212), + [anon_sym_concept] = ACTIONS(3212), + [anon_sym_co_return] = ACTIONS(3212), + [anon_sym_co_yield] = ACTIONS(3212), + [anon_sym_R_DQUOTE] = ACTIONS(3214), + [anon_sym_LR_DQUOTE] = ACTIONS(3214), + [anon_sym_uR_DQUOTE] = ACTIONS(3214), + [anon_sym_UR_DQUOTE] = ACTIONS(3214), + [anon_sym_u8R_DQUOTE] = ACTIONS(3214), + [anon_sym_co_await] = ACTIONS(3212), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_requires] = ACTIONS(3212), + [sym_this] = ACTIONS(3212), }, [820] = { - [sym_identifier] = ACTIONS(2198), - [aux_sym_preproc_include_token1] = ACTIONS(2198), - [aux_sym_preproc_def_token1] = ACTIONS(2198), - [aux_sym_preproc_if_token1] = ACTIONS(2198), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2198), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2198), - [sym_preproc_directive] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(2196), - [anon_sym_BANG] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2198), - [anon_sym_PLUS] = ACTIONS(2198), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2196), - [anon_sym___extension__] = ACTIONS(2198), - [anon_sym_typedef] = ACTIONS(2198), - [anon_sym_extern] = ACTIONS(2198), - [anon_sym___attribute__] = ACTIONS(2198), - [anon_sym_COLON_COLON] = ACTIONS(2196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2196), - [anon_sym___declspec] = ACTIONS(2198), - [anon_sym___based] = ACTIONS(2198), - [anon_sym___cdecl] = ACTIONS(2198), - [anon_sym___clrcall] = ACTIONS(2198), - [anon_sym___stdcall] = ACTIONS(2198), - [anon_sym___fastcall] = ACTIONS(2198), - [anon_sym___thiscall] = ACTIONS(2198), - [anon_sym___vectorcall] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2196), - [anon_sym_signed] = ACTIONS(2198), - [anon_sym_unsigned] = ACTIONS(2198), - [anon_sym_long] = ACTIONS(2198), - [anon_sym_short] = ACTIONS(2198), - [anon_sym_LBRACK] = ACTIONS(2198), - [anon_sym_static] = ACTIONS(2198), - [anon_sym_register] = ACTIONS(2198), - [anon_sym_inline] = ACTIONS(2198), - [anon_sym___inline] = ACTIONS(2198), - [anon_sym___inline__] = ACTIONS(2198), - [anon_sym___forceinline] = ACTIONS(2198), - [anon_sym_thread_local] = ACTIONS(2198), - [anon_sym___thread] = ACTIONS(2198), - [anon_sym_const] = ACTIONS(2198), - [anon_sym_constexpr] = ACTIONS(2198), - [anon_sym_volatile] = ACTIONS(2198), - [anon_sym_restrict] = ACTIONS(2198), - [anon_sym___restrict__] = ACTIONS(2198), - [anon_sym__Atomic] = ACTIONS(2198), - [anon_sym__Noreturn] = ACTIONS(2198), - [anon_sym_noreturn] = ACTIONS(2198), - [anon_sym_mutable] = ACTIONS(2198), - [anon_sym_constinit] = ACTIONS(2198), - [anon_sym_consteval] = ACTIONS(2198), - [sym_primitive_type] = ACTIONS(2198), - [anon_sym_enum] = ACTIONS(2198), - [anon_sym_class] = ACTIONS(2198), - [anon_sym_struct] = ACTIONS(2198), - [anon_sym_union] = ACTIONS(2198), - [anon_sym_if] = ACTIONS(2198), - [anon_sym_else] = ACTIONS(2198), - [anon_sym_switch] = ACTIONS(2198), - [anon_sym_case] = ACTIONS(2198), - [anon_sym_default] = ACTIONS(2198), - [anon_sym_while] = ACTIONS(2198), - [anon_sym_do] = ACTIONS(2198), - [anon_sym_for] = ACTIONS(2198), - [anon_sym_return] = ACTIONS(2198), - [anon_sym_break] = ACTIONS(2198), - [anon_sym_continue] = ACTIONS(2198), - [anon_sym_goto] = ACTIONS(2198), - [anon_sym_not] = ACTIONS(2198), - [anon_sym_compl] = ACTIONS(2198), - [anon_sym_DASH_DASH] = ACTIONS(2196), - [anon_sym_PLUS_PLUS] = ACTIONS(2196), - [anon_sym_sizeof] = ACTIONS(2198), - [anon_sym___alignof__] = ACTIONS(2198), - [anon_sym___alignof] = ACTIONS(2198), - [anon_sym__alignof] = ACTIONS(2198), - [anon_sym_alignof] = ACTIONS(2198), - [anon_sym__Alignof] = ACTIONS(2198), - [anon_sym_offsetof] = ACTIONS(2198), - [anon_sym__Generic] = ACTIONS(2198), - [anon_sym_asm] = ACTIONS(2198), - [anon_sym___asm__] = ACTIONS(2198), - [sym_number_literal] = ACTIONS(2196), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2196), - [anon_sym_u_DQUOTE] = ACTIONS(2196), - [anon_sym_U_DQUOTE] = ACTIONS(2196), - [anon_sym_u8_DQUOTE] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2196), - [sym_true] = ACTIONS(2198), - [sym_false] = ACTIONS(2198), - [anon_sym_NULL] = ACTIONS(2198), - [anon_sym_nullptr] = ACTIONS(2198), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2198), - [anon_sym_decltype] = ACTIONS(2198), - [anon_sym_virtual] = ACTIONS(2198), - [anon_sym_alignas] = ACTIONS(2198), - [anon_sym_explicit] = ACTIONS(2198), - [anon_sym_typename] = ACTIONS(2198), - [anon_sym_template] = ACTIONS(2198), - [anon_sym_operator] = ACTIONS(2198), - [anon_sym_try] = ACTIONS(2198), - [anon_sym_delete] = ACTIONS(2198), - [anon_sym_throw] = ACTIONS(2198), - [anon_sym_namespace] = ACTIONS(2198), - [anon_sym_using] = ACTIONS(2198), - [anon_sym_static_assert] = ACTIONS(2198), - [anon_sym_concept] = ACTIONS(2198), - [anon_sym_co_return] = ACTIONS(2198), - [anon_sym_co_yield] = ACTIONS(2198), - [anon_sym_catch] = ACTIONS(2198), - [anon_sym_R_DQUOTE] = ACTIONS(2196), - [anon_sym_LR_DQUOTE] = ACTIONS(2196), - [anon_sym_uR_DQUOTE] = ACTIONS(2196), - [anon_sym_UR_DQUOTE] = ACTIONS(2196), - [anon_sym_u8R_DQUOTE] = ACTIONS(2196), - [anon_sym_co_await] = ACTIONS(2198), - [anon_sym_new] = ACTIONS(2198), - [anon_sym_requires] = ACTIONS(2198), - [sym_this] = ACTIONS(2198), + [sym_identifier] = ACTIONS(3216), + [aux_sym_preproc_include_token1] = ACTIONS(3216), + [aux_sym_preproc_def_token1] = ACTIONS(3216), + [aux_sym_preproc_if_token1] = ACTIONS(3216), + [aux_sym_preproc_if_token2] = ACTIONS(3216), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3216), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3216), + [sym_preproc_directive] = ACTIONS(3216), + [anon_sym_LPAREN2] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym___extension__] = ACTIONS(3216), + [anon_sym_typedef] = ACTIONS(3216), + [anon_sym_extern] = ACTIONS(3216), + [anon_sym___attribute__] = ACTIONS(3216), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3218), + [anon_sym___declspec] = ACTIONS(3216), + [anon_sym___based] = ACTIONS(3216), + [anon_sym___cdecl] = ACTIONS(3216), + [anon_sym___clrcall] = ACTIONS(3216), + [anon_sym___stdcall] = ACTIONS(3216), + [anon_sym___fastcall] = ACTIONS(3216), + [anon_sym___thiscall] = ACTIONS(3216), + [anon_sym___vectorcall] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_signed] = ACTIONS(3216), + [anon_sym_unsigned] = ACTIONS(3216), + [anon_sym_long] = ACTIONS(3216), + [anon_sym_short] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_static] = ACTIONS(3216), + [anon_sym_register] = ACTIONS(3216), + [anon_sym_inline] = ACTIONS(3216), + [anon_sym___inline] = ACTIONS(3216), + [anon_sym___inline__] = ACTIONS(3216), + [anon_sym___forceinline] = ACTIONS(3216), + [anon_sym_thread_local] = ACTIONS(3216), + [anon_sym___thread] = ACTIONS(3216), + [anon_sym_const] = ACTIONS(3216), + [anon_sym_constexpr] = ACTIONS(3216), + [anon_sym_volatile] = ACTIONS(3216), + [anon_sym_restrict] = ACTIONS(3216), + [anon_sym___restrict__] = ACTIONS(3216), + [anon_sym__Atomic] = ACTIONS(3216), + [anon_sym__Noreturn] = ACTIONS(3216), + [anon_sym_noreturn] = ACTIONS(3216), + [anon_sym_mutable] = ACTIONS(3216), + [anon_sym_constinit] = ACTIONS(3216), + [anon_sym_consteval] = ACTIONS(3216), + [sym_primitive_type] = ACTIONS(3216), + [anon_sym_enum] = ACTIONS(3216), + [anon_sym_class] = ACTIONS(3216), + [anon_sym_struct] = ACTIONS(3216), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_if] = ACTIONS(3216), + [anon_sym_switch] = ACTIONS(3216), + [anon_sym_case] = ACTIONS(3216), + [anon_sym_default] = ACTIONS(3216), + [anon_sym_while] = ACTIONS(3216), + [anon_sym_do] = ACTIONS(3216), + [anon_sym_for] = ACTIONS(3216), + [anon_sym_return] = ACTIONS(3216), + [anon_sym_break] = ACTIONS(3216), + [anon_sym_continue] = ACTIONS(3216), + [anon_sym_goto] = ACTIONS(3216), + [anon_sym_not] = ACTIONS(3216), + [anon_sym_compl] = ACTIONS(3216), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_sizeof] = ACTIONS(3216), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3216), + [anon_sym__Generic] = ACTIONS(3216), + [anon_sym_asm] = ACTIONS(3216), + [anon_sym___asm__] = ACTIONS(3216), + [sym_number_literal] = ACTIONS(3218), + [anon_sym_L_SQUOTE] = ACTIONS(3218), + [anon_sym_u_SQUOTE] = ACTIONS(3218), + [anon_sym_U_SQUOTE] = ACTIONS(3218), + [anon_sym_u8_SQUOTE] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3218), + [anon_sym_L_DQUOTE] = ACTIONS(3218), + [anon_sym_u_DQUOTE] = ACTIONS(3218), + [anon_sym_U_DQUOTE] = ACTIONS(3218), + [anon_sym_u8_DQUOTE] = ACTIONS(3218), + [anon_sym_DQUOTE] = ACTIONS(3218), + [sym_true] = ACTIONS(3216), + [sym_false] = ACTIONS(3216), + [anon_sym_NULL] = ACTIONS(3216), + [anon_sym_nullptr] = ACTIONS(3216), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3216), + [anon_sym_decltype] = ACTIONS(3216), + [anon_sym_virtual] = ACTIONS(3216), + [anon_sym_alignas] = ACTIONS(3216), + [anon_sym_explicit] = ACTIONS(3216), + [anon_sym_typename] = ACTIONS(3216), + [anon_sym_template] = ACTIONS(3216), + [anon_sym_operator] = ACTIONS(3216), + [anon_sym_try] = ACTIONS(3216), + [anon_sym_delete] = ACTIONS(3216), + [anon_sym_throw] = ACTIONS(3216), + [anon_sym_namespace] = ACTIONS(3216), + [anon_sym_using] = ACTIONS(3216), + [anon_sym_static_assert] = ACTIONS(3216), + [anon_sym_concept] = ACTIONS(3216), + [anon_sym_co_return] = ACTIONS(3216), + [anon_sym_co_yield] = ACTIONS(3216), + [anon_sym_R_DQUOTE] = ACTIONS(3218), + [anon_sym_LR_DQUOTE] = ACTIONS(3218), + [anon_sym_uR_DQUOTE] = ACTIONS(3218), + [anon_sym_UR_DQUOTE] = ACTIONS(3218), + [anon_sym_u8R_DQUOTE] = ACTIONS(3218), + [anon_sym_co_await] = ACTIONS(3216), + [anon_sym_new] = ACTIONS(3216), + [anon_sym_requires] = ACTIONS(3216), + [sym_this] = ACTIONS(3216), }, [821] = { - [sym_identifier] = ACTIONS(3406), - [aux_sym_preproc_include_token1] = ACTIONS(3406), - [aux_sym_preproc_def_token1] = ACTIONS(3406), - [aux_sym_preproc_if_token1] = ACTIONS(3406), - [aux_sym_preproc_if_token2] = ACTIONS(3406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3406), - [aux_sym_preproc_else_token1] = ACTIONS(3406), - [aux_sym_preproc_elif_token1] = ACTIONS(3406), - [sym_preproc_directive] = ACTIONS(3406), - [anon_sym_LPAREN2] = ACTIONS(3408), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_TILDE] = ACTIONS(3408), - [anon_sym_DASH] = ACTIONS(3406), - [anon_sym_PLUS] = ACTIONS(3406), - [anon_sym_STAR] = ACTIONS(3408), - [anon_sym_AMP_AMP] = ACTIONS(3408), - [anon_sym_AMP] = ACTIONS(3406), - [anon_sym_SEMI] = ACTIONS(3408), - [anon_sym___extension__] = ACTIONS(3406), - [anon_sym_typedef] = ACTIONS(3406), - [anon_sym_extern] = ACTIONS(3406), - [anon_sym___attribute__] = ACTIONS(3406), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3408), - [anon_sym___declspec] = ACTIONS(3406), - [anon_sym___based] = ACTIONS(3406), - [anon_sym___cdecl] = ACTIONS(3406), - [anon_sym___clrcall] = ACTIONS(3406), - [anon_sym___stdcall] = ACTIONS(3406), - [anon_sym___fastcall] = ACTIONS(3406), - [anon_sym___thiscall] = ACTIONS(3406), - [anon_sym___vectorcall] = ACTIONS(3406), - [anon_sym_LBRACE] = ACTIONS(3408), - [anon_sym_signed] = ACTIONS(3406), - [anon_sym_unsigned] = ACTIONS(3406), - [anon_sym_long] = ACTIONS(3406), - [anon_sym_short] = ACTIONS(3406), - [anon_sym_LBRACK] = ACTIONS(3406), - [anon_sym_static] = ACTIONS(3406), - [anon_sym_register] = ACTIONS(3406), - [anon_sym_inline] = ACTIONS(3406), - [anon_sym___inline] = ACTIONS(3406), - [anon_sym___inline__] = ACTIONS(3406), - [anon_sym___forceinline] = ACTIONS(3406), - [anon_sym_thread_local] = ACTIONS(3406), - [anon_sym___thread] = ACTIONS(3406), - [anon_sym_const] = ACTIONS(3406), - [anon_sym_constexpr] = ACTIONS(3406), - [anon_sym_volatile] = ACTIONS(3406), - [anon_sym_restrict] = ACTIONS(3406), - [anon_sym___restrict__] = ACTIONS(3406), - [anon_sym__Atomic] = ACTIONS(3406), - [anon_sym__Noreturn] = ACTIONS(3406), - [anon_sym_noreturn] = ACTIONS(3406), - [anon_sym_mutable] = ACTIONS(3406), - [anon_sym_constinit] = ACTIONS(3406), - [anon_sym_consteval] = ACTIONS(3406), - [sym_primitive_type] = ACTIONS(3406), - [anon_sym_enum] = ACTIONS(3406), - [anon_sym_class] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3406), - [anon_sym_union] = ACTIONS(3406), - [anon_sym_if] = ACTIONS(3406), - [anon_sym_switch] = ACTIONS(3406), - [anon_sym_case] = ACTIONS(3406), - [anon_sym_default] = ACTIONS(3406), - [anon_sym_while] = ACTIONS(3406), - [anon_sym_do] = ACTIONS(3406), - [anon_sym_for] = ACTIONS(3406), - [anon_sym_return] = ACTIONS(3406), - [anon_sym_break] = ACTIONS(3406), - [anon_sym_continue] = ACTIONS(3406), - [anon_sym_goto] = ACTIONS(3406), - [anon_sym_not] = ACTIONS(3406), - [anon_sym_compl] = ACTIONS(3406), - [anon_sym_DASH_DASH] = ACTIONS(3408), - [anon_sym_PLUS_PLUS] = ACTIONS(3408), - [anon_sym_sizeof] = ACTIONS(3406), - [anon_sym___alignof__] = ACTIONS(3406), - [anon_sym___alignof] = ACTIONS(3406), - [anon_sym__alignof] = ACTIONS(3406), - [anon_sym_alignof] = ACTIONS(3406), - [anon_sym__Alignof] = ACTIONS(3406), - [anon_sym_offsetof] = ACTIONS(3406), - [anon_sym__Generic] = ACTIONS(3406), - [anon_sym_asm] = ACTIONS(3406), - [anon_sym___asm__] = ACTIONS(3406), - [sym_number_literal] = ACTIONS(3408), - [anon_sym_L_SQUOTE] = ACTIONS(3408), - [anon_sym_u_SQUOTE] = ACTIONS(3408), - [anon_sym_U_SQUOTE] = ACTIONS(3408), - [anon_sym_u8_SQUOTE] = ACTIONS(3408), - [anon_sym_SQUOTE] = ACTIONS(3408), - [anon_sym_L_DQUOTE] = ACTIONS(3408), - [anon_sym_u_DQUOTE] = ACTIONS(3408), - [anon_sym_U_DQUOTE] = ACTIONS(3408), - [anon_sym_u8_DQUOTE] = ACTIONS(3408), - [anon_sym_DQUOTE] = ACTIONS(3408), - [sym_true] = ACTIONS(3406), - [sym_false] = ACTIONS(3406), - [anon_sym_NULL] = ACTIONS(3406), - [anon_sym_nullptr] = ACTIONS(3406), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3406), - [anon_sym_decltype] = ACTIONS(3406), - [anon_sym_virtual] = ACTIONS(3406), - [anon_sym_alignas] = ACTIONS(3406), - [anon_sym_explicit] = ACTIONS(3406), - [anon_sym_typename] = ACTIONS(3406), - [anon_sym_template] = ACTIONS(3406), - [anon_sym_operator] = ACTIONS(3406), - [anon_sym_try] = ACTIONS(3406), - [anon_sym_delete] = ACTIONS(3406), - [anon_sym_throw] = ACTIONS(3406), - [anon_sym_namespace] = ACTIONS(3406), - [anon_sym_using] = ACTIONS(3406), - [anon_sym_static_assert] = ACTIONS(3406), - [anon_sym_concept] = ACTIONS(3406), - [anon_sym_co_return] = ACTIONS(3406), - [anon_sym_co_yield] = ACTIONS(3406), - [anon_sym_R_DQUOTE] = ACTIONS(3408), - [anon_sym_LR_DQUOTE] = ACTIONS(3408), - [anon_sym_uR_DQUOTE] = ACTIONS(3408), - [anon_sym_UR_DQUOTE] = ACTIONS(3408), - [anon_sym_u8R_DQUOTE] = ACTIONS(3408), - [anon_sym_co_await] = ACTIONS(3406), - [anon_sym_new] = ACTIONS(3406), - [anon_sym_requires] = ACTIONS(3406), - [sym_this] = ACTIONS(3406), + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_include_token1] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token2] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3170), + [anon_sym_AMP_AMP] = ACTIONS(3170), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3170), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3170), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym___cdecl] = ACTIONS(3168), + [anon_sym___clrcall] = ACTIONS(3168), + [anon_sym___stdcall] = ACTIONS(3168), + [anon_sym___fastcall] = ACTIONS(3168), + [anon_sym___thiscall] = ACTIONS(3168), + [anon_sym___vectorcall] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_goto] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym___alignof__] = ACTIONS(3168), + [anon_sym___alignof] = ACTIONS(3168), + [anon_sym__alignof] = ACTIONS(3168), + [anon_sym_alignof] = ACTIONS(3168), + [anon_sym__Alignof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3170), + [anon_sym_L_SQUOTE] = ACTIONS(3170), + [anon_sym_u_SQUOTE] = ACTIONS(3170), + [anon_sym_U_SQUOTE] = ACTIONS(3170), + [anon_sym_u8_SQUOTE] = ACTIONS(3170), + [anon_sym_SQUOTE] = ACTIONS(3170), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_concept] = ACTIONS(3168), + [anon_sym_co_return] = ACTIONS(3168), + [anon_sym_co_yield] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3170), + [anon_sym_LR_DQUOTE] = ACTIONS(3170), + [anon_sym_uR_DQUOTE] = ACTIONS(3170), + [anon_sym_UR_DQUOTE] = ACTIONS(3170), + [anon_sym_u8R_DQUOTE] = ACTIONS(3170), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [sym_this] = ACTIONS(3168), }, [822] = { - [sym_identifier] = ACTIONS(3392), - [aux_sym_preproc_include_token1] = ACTIONS(3392), - [aux_sym_preproc_def_token1] = ACTIONS(3392), - [aux_sym_preproc_if_token1] = ACTIONS(3392), - [aux_sym_preproc_if_token2] = ACTIONS(3392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3392), - [aux_sym_preproc_else_token1] = ACTIONS(3392), - [aux_sym_preproc_elif_token1] = ACTIONS(3392), - [sym_preproc_directive] = ACTIONS(3392), - [anon_sym_LPAREN2] = ACTIONS(3394), - [anon_sym_BANG] = ACTIONS(3394), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3392), - [anon_sym_PLUS] = ACTIONS(3392), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3392), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym___extension__] = ACTIONS(3392), - [anon_sym_typedef] = ACTIONS(3392), - [anon_sym_extern] = ACTIONS(3392), - [anon_sym___attribute__] = ACTIONS(3392), - [anon_sym_COLON_COLON] = ACTIONS(3394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), - [anon_sym___declspec] = ACTIONS(3392), - [anon_sym___based] = ACTIONS(3392), - [anon_sym___cdecl] = ACTIONS(3392), - [anon_sym___clrcall] = ACTIONS(3392), - [anon_sym___stdcall] = ACTIONS(3392), - [anon_sym___fastcall] = ACTIONS(3392), - [anon_sym___thiscall] = ACTIONS(3392), - [anon_sym___vectorcall] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(3394), - [anon_sym_signed] = ACTIONS(3392), - [anon_sym_unsigned] = ACTIONS(3392), - [anon_sym_long] = ACTIONS(3392), - [anon_sym_short] = ACTIONS(3392), - [anon_sym_LBRACK] = ACTIONS(3392), - [anon_sym_static] = ACTIONS(3392), - [anon_sym_register] = ACTIONS(3392), - [anon_sym_inline] = ACTIONS(3392), - [anon_sym___inline] = ACTIONS(3392), - [anon_sym___inline__] = ACTIONS(3392), - [anon_sym___forceinline] = ACTIONS(3392), - [anon_sym_thread_local] = ACTIONS(3392), - [anon_sym___thread] = ACTIONS(3392), - [anon_sym_const] = ACTIONS(3392), - [anon_sym_constexpr] = ACTIONS(3392), - [anon_sym_volatile] = ACTIONS(3392), - [anon_sym_restrict] = ACTIONS(3392), - [anon_sym___restrict__] = ACTIONS(3392), - [anon_sym__Atomic] = ACTIONS(3392), - [anon_sym__Noreturn] = ACTIONS(3392), - [anon_sym_noreturn] = ACTIONS(3392), - [anon_sym_mutable] = ACTIONS(3392), - [anon_sym_constinit] = ACTIONS(3392), - [anon_sym_consteval] = ACTIONS(3392), - [sym_primitive_type] = ACTIONS(3392), - [anon_sym_enum] = ACTIONS(3392), - [anon_sym_class] = ACTIONS(3392), - [anon_sym_struct] = ACTIONS(3392), - [anon_sym_union] = ACTIONS(3392), - [anon_sym_if] = ACTIONS(3392), - [anon_sym_switch] = ACTIONS(3392), - [anon_sym_case] = ACTIONS(3392), - [anon_sym_default] = ACTIONS(3392), - [anon_sym_while] = ACTIONS(3392), - [anon_sym_do] = ACTIONS(3392), - [anon_sym_for] = ACTIONS(3392), - [anon_sym_return] = ACTIONS(3392), - [anon_sym_break] = ACTIONS(3392), - [anon_sym_continue] = ACTIONS(3392), - [anon_sym_goto] = ACTIONS(3392), - [anon_sym_not] = ACTIONS(3392), - [anon_sym_compl] = ACTIONS(3392), - [anon_sym_DASH_DASH] = ACTIONS(3394), - [anon_sym_PLUS_PLUS] = ACTIONS(3394), - [anon_sym_sizeof] = ACTIONS(3392), - [anon_sym___alignof__] = ACTIONS(3392), - [anon_sym___alignof] = ACTIONS(3392), - [anon_sym__alignof] = ACTIONS(3392), - [anon_sym_alignof] = ACTIONS(3392), - [anon_sym__Alignof] = ACTIONS(3392), - [anon_sym_offsetof] = ACTIONS(3392), - [anon_sym__Generic] = ACTIONS(3392), - [anon_sym_asm] = ACTIONS(3392), - [anon_sym___asm__] = ACTIONS(3392), - [sym_number_literal] = ACTIONS(3394), - [anon_sym_L_SQUOTE] = ACTIONS(3394), - [anon_sym_u_SQUOTE] = ACTIONS(3394), - [anon_sym_U_SQUOTE] = ACTIONS(3394), - [anon_sym_u8_SQUOTE] = ACTIONS(3394), - [anon_sym_SQUOTE] = ACTIONS(3394), - [anon_sym_L_DQUOTE] = ACTIONS(3394), - [anon_sym_u_DQUOTE] = ACTIONS(3394), - [anon_sym_U_DQUOTE] = ACTIONS(3394), - [anon_sym_u8_DQUOTE] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [sym_true] = ACTIONS(3392), - [sym_false] = ACTIONS(3392), - [anon_sym_NULL] = ACTIONS(3392), - [anon_sym_nullptr] = ACTIONS(3392), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3392), - [anon_sym_decltype] = ACTIONS(3392), - [anon_sym_virtual] = ACTIONS(3392), - [anon_sym_alignas] = ACTIONS(3392), - [anon_sym_explicit] = ACTIONS(3392), - [anon_sym_typename] = ACTIONS(3392), - [anon_sym_template] = ACTIONS(3392), - [anon_sym_operator] = ACTIONS(3392), - [anon_sym_try] = ACTIONS(3392), - [anon_sym_delete] = ACTIONS(3392), - [anon_sym_throw] = ACTIONS(3392), - [anon_sym_namespace] = ACTIONS(3392), - [anon_sym_using] = ACTIONS(3392), - [anon_sym_static_assert] = ACTIONS(3392), - [anon_sym_concept] = ACTIONS(3392), - [anon_sym_co_return] = ACTIONS(3392), - [anon_sym_co_yield] = ACTIONS(3392), - [anon_sym_R_DQUOTE] = ACTIONS(3394), - [anon_sym_LR_DQUOTE] = ACTIONS(3394), - [anon_sym_uR_DQUOTE] = ACTIONS(3394), - [anon_sym_UR_DQUOTE] = ACTIONS(3394), - [anon_sym_u8R_DQUOTE] = ACTIONS(3394), - [anon_sym_co_await] = ACTIONS(3392), - [anon_sym_new] = ACTIONS(3392), - [anon_sym_requires] = ACTIONS(3392), - [sym_this] = ACTIONS(3392), + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_include_token1] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym___cdecl] = ACTIONS(3103), + [anon_sym___clrcall] = ACTIONS(3103), + [anon_sym___stdcall] = ACTIONS(3103), + [anon_sym___fastcall] = ACTIONS(3103), + [anon_sym___thiscall] = ACTIONS(3103), + [anon_sym___vectorcall] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3103), + [anon_sym_case] = ACTIONS(3103), + [anon_sym_default] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_do] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_compl] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_sizeof] = ACTIONS(3103), + [anon_sym___alignof__] = ACTIONS(3103), + [anon_sym___alignof] = ACTIONS(3103), + [anon_sym__alignof] = ACTIONS(3103), + [anon_sym_alignof] = ACTIONS(3103), + [anon_sym__Alignof] = ACTIONS(3103), + [anon_sym_offsetof] = ACTIONS(3103), + [anon_sym__Generic] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym___asm__] = ACTIONS(3103), + [sym_number_literal] = ACTIONS(3105), + [anon_sym_L_SQUOTE] = ACTIONS(3105), + [anon_sym_u_SQUOTE] = ACTIONS(3105), + [anon_sym_U_SQUOTE] = ACTIONS(3105), + [anon_sym_u8_SQUOTE] = ACTIONS(3105), + [anon_sym_SQUOTE] = ACTIONS(3105), + [anon_sym_L_DQUOTE] = ACTIONS(3105), + [anon_sym_u_DQUOTE] = ACTIONS(3105), + [anon_sym_U_DQUOTE] = ACTIONS(3105), + [anon_sym_u8_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [sym_true] = ACTIONS(3103), + [sym_false] = ACTIONS(3103), + [anon_sym_NULL] = ACTIONS(3103), + [anon_sym_nullptr] = ACTIONS(3103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_delete] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + [anon_sym_concept] = ACTIONS(3103), + [anon_sym_co_return] = ACTIONS(3103), + [anon_sym_co_yield] = ACTIONS(3103), + [anon_sym_R_DQUOTE] = ACTIONS(3105), + [anon_sym_LR_DQUOTE] = ACTIONS(3105), + [anon_sym_uR_DQUOTE] = ACTIONS(3105), + [anon_sym_UR_DQUOTE] = ACTIONS(3105), + [anon_sym_u8R_DQUOTE] = ACTIONS(3105), + [anon_sym_co_await] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(3103), + [sym_this] = ACTIONS(3103), }, [823] = { - [sym_identifier] = ACTIONS(3384), - [aux_sym_preproc_include_token1] = ACTIONS(3384), - [aux_sym_preproc_def_token1] = ACTIONS(3384), - [aux_sym_preproc_if_token1] = ACTIONS(3384), - [aux_sym_preproc_if_token2] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), - [aux_sym_preproc_else_token1] = ACTIONS(3384), - [aux_sym_preproc_elif_token1] = ACTIONS(3384), - [sym_preproc_directive] = ACTIONS(3384), - [anon_sym_LPAREN2] = ACTIONS(3386), - [anon_sym_BANG] = ACTIONS(3386), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3384), - [anon_sym_PLUS] = ACTIONS(3384), - [anon_sym_STAR] = ACTIONS(3386), - [anon_sym_AMP_AMP] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3384), - [anon_sym_SEMI] = ACTIONS(3386), - [anon_sym___extension__] = ACTIONS(3384), - [anon_sym_typedef] = ACTIONS(3384), - [anon_sym_extern] = ACTIONS(3384), - [anon_sym___attribute__] = ACTIONS(3384), - [anon_sym_COLON_COLON] = ACTIONS(3386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3386), - [anon_sym___declspec] = ACTIONS(3384), - [anon_sym___based] = ACTIONS(3384), - [anon_sym___cdecl] = ACTIONS(3384), - [anon_sym___clrcall] = ACTIONS(3384), - [anon_sym___stdcall] = ACTIONS(3384), - [anon_sym___fastcall] = ACTIONS(3384), - [anon_sym___thiscall] = ACTIONS(3384), - [anon_sym___vectorcall] = ACTIONS(3384), - [anon_sym_LBRACE] = ACTIONS(3386), - [anon_sym_signed] = ACTIONS(3384), - [anon_sym_unsigned] = ACTIONS(3384), - [anon_sym_long] = ACTIONS(3384), - [anon_sym_short] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_static] = ACTIONS(3384), - [anon_sym_register] = ACTIONS(3384), - [anon_sym_inline] = ACTIONS(3384), - [anon_sym___inline] = ACTIONS(3384), - [anon_sym___inline__] = ACTIONS(3384), - [anon_sym___forceinline] = ACTIONS(3384), - [anon_sym_thread_local] = ACTIONS(3384), - [anon_sym___thread] = ACTIONS(3384), - [anon_sym_const] = ACTIONS(3384), - [anon_sym_constexpr] = ACTIONS(3384), - [anon_sym_volatile] = ACTIONS(3384), - [anon_sym_restrict] = ACTIONS(3384), - [anon_sym___restrict__] = ACTIONS(3384), - [anon_sym__Atomic] = ACTIONS(3384), - [anon_sym__Noreturn] = ACTIONS(3384), - [anon_sym_noreturn] = ACTIONS(3384), - [anon_sym_mutable] = ACTIONS(3384), - [anon_sym_constinit] = ACTIONS(3384), - [anon_sym_consteval] = ACTIONS(3384), - [sym_primitive_type] = ACTIONS(3384), - [anon_sym_enum] = ACTIONS(3384), - [anon_sym_class] = ACTIONS(3384), - [anon_sym_struct] = ACTIONS(3384), - [anon_sym_union] = ACTIONS(3384), - [anon_sym_if] = ACTIONS(3384), - [anon_sym_switch] = ACTIONS(3384), - [anon_sym_case] = ACTIONS(3384), - [anon_sym_default] = ACTIONS(3384), - [anon_sym_while] = ACTIONS(3384), - [anon_sym_do] = ACTIONS(3384), - [anon_sym_for] = ACTIONS(3384), - [anon_sym_return] = ACTIONS(3384), - [anon_sym_break] = ACTIONS(3384), - [anon_sym_continue] = ACTIONS(3384), - [anon_sym_goto] = ACTIONS(3384), - [anon_sym_not] = ACTIONS(3384), - [anon_sym_compl] = ACTIONS(3384), - [anon_sym_DASH_DASH] = ACTIONS(3386), - [anon_sym_PLUS_PLUS] = ACTIONS(3386), - [anon_sym_sizeof] = ACTIONS(3384), - [anon_sym___alignof__] = ACTIONS(3384), - [anon_sym___alignof] = ACTIONS(3384), - [anon_sym__alignof] = ACTIONS(3384), - [anon_sym_alignof] = ACTIONS(3384), - [anon_sym__Alignof] = ACTIONS(3384), - [anon_sym_offsetof] = ACTIONS(3384), - [anon_sym__Generic] = ACTIONS(3384), - [anon_sym_asm] = ACTIONS(3384), - [anon_sym___asm__] = ACTIONS(3384), - [sym_number_literal] = ACTIONS(3386), - [anon_sym_L_SQUOTE] = ACTIONS(3386), - [anon_sym_u_SQUOTE] = ACTIONS(3386), - [anon_sym_U_SQUOTE] = ACTIONS(3386), - [anon_sym_u8_SQUOTE] = ACTIONS(3386), - [anon_sym_SQUOTE] = ACTIONS(3386), - [anon_sym_L_DQUOTE] = ACTIONS(3386), - [anon_sym_u_DQUOTE] = ACTIONS(3386), - [anon_sym_U_DQUOTE] = ACTIONS(3386), - [anon_sym_u8_DQUOTE] = ACTIONS(3386), - [anon_sym_DQUOTE] = ACTIONS(3386), - [sym_true] = ACTIONS(3384), - [sym_false] = ACTIONS(3384), - [anon_sym_NULL] = ACTIONS(3384), - [anon_sym_nullptr] = ACTIONS(3384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3384), - [anon_sym_decltype] = ACTIONS(3384), - [anon_sym_virtual] = ACTIONS(3384), - [anon_sym_alignas] = ACTIONS(3384), - [anon_sym_explicit] = ACTIONS(3384), - [anon_sym_typename] = ACTIONS(3384), - [anon_sym_template] = ACTIONS(3384), - [anon_sym_operator] = ACTIONS(3384), - [anon_sym_try] = ACTIONS(3384), - [anon_sym_delete] = ACTIONS(3384), - [anon_sym_throw] = ACTIONS(3384), - [anon_sym_namespace] = ACTIONS(3384), - [anon_sym_using] = ACTIONS(3384), - [anon_sym_static_assert] = ACTIONS(3384), - [anon_sym_concept] = ACTIONS(3384), - [anon_sym_co_return] = ACTIONS(3384), - [anon_sym_co_yield] = ACTIONS(3384), - [anon_sym_R_DQUOTE] = ACTIONS(3386), - [anon_sym_LR_DQUOTE] = ACTIONS(3386), - [anon_sym_uR_DQUOTE] = ACTIONS(3386), - [anon_sym_UR_DQUOTE] = ACTIONS(3386), - [anon_sym_u8R_DQUOTE] = ACTIONS(3386), - [anon_sym_co_await] = ACTIONS(3384), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3384), - [sym_this] = ACTIONS(3384), + [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_extern] = ACTIONS(3027), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3027), + [anon_sym_constinit] = ACTIONS(3027), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3027), + [anon_sym_alignas] = 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_using] = 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), }, [824] = { - [sym_identifier] = ACTIONS(3374), - [aux_sym_preproc_include_token1] = ACTIONS(3374), - [aux_sym_preproc_def_token1] = ACTIONS(3374), - [aux_sym_preproc_if_token1] = ACTIONS(3374), - [aux_sym_preproc_if_token2] = ACTIONS(3374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3374), - [aux_sym_preproc_else_token1] = ACTIONS(3374), - [aux_sym_preproc_elif_token1] = ACTIONS(3374), - [sym_preproc_directive] = ACTIONS(3374), - [anon_sym_LPAREN2] = ACTIONS(3376), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3374), - [anon_sym_PLUS] = ACTIONS(3374), - [anon_sym_STAR] = ACTIONS(3376), - [anon_sym_AMP_AMP] = ACTIONS(3376), - [anon_sym_AMP] = ACTIONS(3374), - [anon_sym_SEMI] = ACTIONS(3376), - [anon_sym___extension__] = ACTIONS(3374), - [anon_sym_typedef] = ACTIONS(3374), - [anon_sym_extern] = ACTIONS(3374), - [anon_sym___attribute__] = ACTIONS(3374), - [anon_sym_COLON_COLON] = ACTIONS(3376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3376), - [anon_sym___declspec] = ACTIONS(3374), - [anon_sym___based] = ACTIONS(3374), - [anon_sym___cdecl] = ACTIONS(3374), - [anon_sym___clrcall] = ACTIONS(3374), - [anon_sym___stdcall] = ACTIONS(3374), - [anon_sym___fastcall] = ACTIONS(3374), - [anon_sym___thiscall] = ACTIONS(3374), - [anon_sym___vectorcall] = ACTIONS(3374), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_signed] = ACTIONS(3374), - [anon_sym_unsigned] = ACTIONS(3374), - [anon_sym_long] = ACTIONS(3374), - [anon_sym_short] = ACTIONS(3374), - [anon_sym_LBRACK] = ACTIONS(3374), - [anon_sym_static] = ACTIONS(3374), - [anon_sym_register] = ACTIONS(3374), - [anon_sym_inline] = ACTIONS(3374), - [anon_sym___inline] = ACTIONS(3374), - [anon_sym___inline__] = ACTIONS(3374), - [anon_sym___forceinline] = ACTIONS(3374), - [anon_sym_thread_local] = ACTIONS(3374), - [anon_sym___thread] = ACTIONS(3374), - [anon_sym_const] = ACTIONS(3374), - [anon_sym_constexpr] = ACTIONS(3374), - [anon_sym_volatile] = ACTIONS(3374), - [anon_sym_restrict] = ACTIONS(3374), - [anon_sym___restrict__] = ACTIONS(3374), - [anon_sym__Atomic] = ACTIONS(3374), - [anon_sym__Noreturn] = ACTIONS(3374), - [anon_sym_noreturn] = ACTIONS(3374), - [anon_sym_mutable] = ACTIONS(3374), - [anon_sym_constinit] = ACTIONS(3374), - [anon_sym_consteval] = ACTIONS(3374), - [sym_primitive_type] = ACTIONS(3374), - [anon_sym_enum] = ACTIONS(3374), - [anon_sym_class] = ACTIONS(3374), - [anon_sym_struct] = ACTIONS(3374), - [anon_sym_union] = ACTIONS(3374), - [anon_sym_if] = ACTIONS(3374), - [anon_sym_switch] = ACTIONS(3374), - [anon_sym_case] = ACTIONS(3374), - [anon_sym_default] = ACTIONS(3374), - [anon_sym_while] = ACTIONS(3374), - [anon_sym_do] = ACTIONS(3374), - [anon_sym_for] = ACTIONS(3374), - [anon_sym_return] = ACTIONS(3374), - [anon_sym_break] = ACTIONS(3374), - [anon_sym_continue] = ACTIONS(3374), - [anon_sym_goto] = ACTIONS(3374), - [anon_sym_not] = ACTIONS(3374), - [anon_sym_compl] = ACTIONS(3374), - [anon_sym_DASH_DASH] = ACTIONS(3376), - [anon_sym_PLUS_PLUS] = ACTIONS(3376), - [anon_sym_sizeof] = ACTIONS(3374), - [anon_sym___alignof__] = ACTIONS(3374), - [anon_sym___alignof] = ACTIONS(3374), - [anon_sym__alignof] = ACTIONS(3374), - [anon_sym_alignof] = ACTIONS(3374), - [anon_sym__Alignof] = ACTIONS(3374), - [anon_sym_offsetof] = ACTIONS(3374), - [anon_sym__Generic] = ACTIONS(3374), - [anon_sym_asm] = ACTIONS(3374), - [anon_sym___asm__] = ACTIONS(3374), - [sym_number_literal] = ACTIONS(3376), - [anon_sym_L_SQUOTE] = ACTIONS(3376), - [anon_sym_u_SQUOTE] = ACTIONS(3376), - [anon_sym_U_SQUOTE] = ACTIONS(3376), - [anon_sym_u8_SQUOTE] = ACTIONS(3376), - [anon_sym_SQUOTE] = ACTIONS(3376), - [anon_sym_L_DQUOTE] = ACTIONS(3376), - [anon_sym_u_DQUOTE] = ACTIONS(3376), - [anon_sym_U_DQUOTE] = ACTIONS(3376), - [anon_sym_u8_DQUOTE] = ACTIONS(3376), - [anon_sym_DQUOTE] = ACTIONS(3376), - [sym_true] = ACTIONS(3374), - [sym_false] = ACTIONS(3374), - [anon_sym_NULL] = ACTIONS(3374), - [anon_sym_nullptr] = ACTIONS(3374), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3374), - [anon_sym_decltype] = ACTIONS(3374), - [anon_sym_virtual] = ACTIONS(3374), - [anon_sym_alignas] = ACTIONS(3374), - [anon_sym_explicit] = ACTIONS(3374), - [anon_sym_typename] = ACTIONS(3374), - [anon_sym_template] = ACTIONS(3374), - [anon_sym_operator] = ACTIONS(3374), - [anon_sym_try] = ACTIONS(3374), - [anon_sym_delete] = ACTIONS(3374), - [anon_sym_throw] = ACTIONS(3374), - [anon_sym_namespace] = ACTIONS(3374), - [anon_sym_using] = ACTIONS(3374), - [anon_sym_static_assert] = ACTIONS(3374), - [anon_sym_concept] = ACTIONS(3374), - [anon_sym_co_return] = ACTIONS(3374), - [anon_sym_co_yield] = ACTIONS(3374), - [anon_sym_R_DQUOTE] = ACTIONS(3376), - [anon_sym_LR_DQUOTE] = ACTIONS(3376), - [anon_sym_uR_DQUOTE] = ACTIONS(3376), - [anon_sym_UR_DQUOTE] = ACTIONS(3376), - [anon_sym_u8R_DQUOTE] = ACTIONS(3376), - [anon_sym_co_await] = ACTIONS(3374), - [anon_sym_new] = ACTIONS(3374), - [anon_sym_requires] = ACTIONS(3374), - [sym_this] = ACTIONS(3374), + [sym_identifier] = ACTIONS(3021), + [aux_sym_preproc_include_token1] = ACTIONS(3021), + [aux_sym_preproc_def_token1] = ACTIONS(3021), + [aux_sym_preproc_if_token1] = ACTIONS(3021), + [aux_sym_preproc_if_token2] = ACTIONS(3021), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3021), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3021), + [sym_preproc_directive] = ACTIONS(3021), + [anon_sym_LPAREN2] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3021), + [anon_sym_PLUS] = ACTIONS(3021), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3021), + [anon_sym_SEMI] = ACTIONS(3023), + [anon_sym___extension__] = ACTIONS(3021), + [anon_sym_typedef] = ACTIONS(3021), + [anon_sym_extern] = ACTIONS(3021), + [anon_sym___attribute__] = ACTIONS(3021), + [anon_sym_COLON_COLON] = ACTIONS(3023), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3023), + [anon_sym___declspec] = ACTIONS(3021), + [anon_sym___based] = ACTIONS(3021), + [anon_sym___cdecl] = ACTIONS(3021), + [anon_sym___clrcall] = ACTIONS(3021), + [anon_sym___stdcall] = ACTIONS(3021), + [anon_sym___fastcall] = ACTIONS(3021), + [anon_sym___thiscall] = ACTIONS(3021), + [anon_sym___vectorcall] = ACTIONS(3021), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_signed] = ACTIONS(3021), + [anon_sym_unsigned] = ACTIONS(3021), + [anon_sym_long] = ACTIONS(3021), + [anon_sym_short] = ACTIONS(3021), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_static] = ACTIONS(3021), + [anon_sym_register] = ACTIONS(3021), + [anon_sym_inline] = ACTIONS(3021), + [anon_sym___inline] = ACTIONS(3021), + [anon_sym___inline__] = ACTIONS(3021), + [anon_sym___forceinline] = ACTIONS(3021), + [anon_sym_thread_local] = ACTIONS(3021), + [anon_sym___thread] = ACTIONS(3021), + [anon_sym_const] = ACTIONS(3021), + [anon_sym_constexpr] = ACTIONS(3021), + [anon_sym_volatile] = ACTIONS(3021), + [anon_sym_restrict] = ACTIONS(3021), + [anon_sym___restrict__] = ACTIONS(3021), + [anon_sym__Atomic] = ACTIONS(3021), + [anon_sym__Noreturn] = ACTIONS(3021), + [anon_sym_noreturn] = ACTIONS(3021), + [anon_sym_mutable] = ACTIONS(3021), + [anon_sym_constinit] = ACTIONS(3021), + [anon_sym_consteval] = ACTIONS(3021), + [sym_primitive_type] = ACTIONS(3021), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3021), + [anon_sym_struct] = ACTIONS(3021), + [anon_sym_union] = ACTIONS(3021), + [anon_sym_if] = ACTIONS(3021), + [anon_sym_switch] = ACTIONS(3021), + [anon_sym_case] = ACTIONS(3021), + [anon_sym_default] = ACTIONS(3021), + [anon_sym_while] = ACTIONS(3021), + [anon_sym_do] = ACTIONS(3021), + [anon_sym_for] = ACTIONS(3021), + [anon_sym_return] = ACTIONS(3021), + [anon_sym_break] = ACTIONS(3021), + [anon_sym_continue] = ACTIONS(3021), + [anon_sym_goto] = ACTIONS(3021), + [anon_sym_not] = ACTIONS(3021), + [anon_sym_compl] = ACTIONS(3021), + [anon_sym_DASH_DASH] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(3023), + [anon_sym_sizeof] = ACTIONS(3021), + [anon_sym___alignof__] = ACTIONS(3021), + [anon_sym___alignof] = ACTIONS(3021), + [anon_sym__alignof] = ACTIONS(3021), + [anon_sym_alignof] = ACTIONS(3021), + [anon_sym__Alignof] = ACTIONS(3021), + [anon_sym_offsetof] = ACTIONS(3021), + [anon_sym__Generic] = ACTIONS(3021), + [anon_sym_asm] = ACTIONS(3021), + [anon_sym___asm__] = ACTIONS(3021), + [sym_number_literal] = ACTIONS(3023), + [anon_sym_L_SQUOTE] = ACTIONS(3023), + [anon_sym_u_SQUOTE] = ACTIONS(3023), + [anon_sym_U_SQUOTE] = ACTIONS(3023), + [anon_sym_u8_SQUOTE] = ACTIONS(3023), + [anon_sym_SQUOTE] = ACTIONS(3023), + [anon_sym_L_DQUOTE] = ACTIONS(3023), + [anon_sym_u_DQUOTE] = ACTIONS(3023), + [anon_sym_U_DQUOTE] = ACTIONS(3023), + [anon_sym_u8_DQUOTE] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(3023), + [sym_true] = ACTIONS(3021), + [sym_false] = ACTIONS(3021), + [anon_sym_NULL] = ACTIONS(3021), + [anon_sym_nullptr] = ACTIONS(3021), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3021), + [anon_sym_decltype] = ACTIONS(3021), + [anon_sym_virtual] = ACTIONS(3021), + [anon_sym_alignas] = ACTIONS(3021), + [anon_sym_explicit] = ACTIONS(3021), + [anon_sym_typename] = ACTIONS(3021), + [anon_sym_template] = ACTIONS(3021), + [anon_sym_operator] = ACTIONS(3021), + [anon_sym_try] = ACTIONS(3021), + [anon_sym_delete] = ACTIONS(3021), + [anon_sym_throw] = ACTIONS(3021), + [anon_sym_namespace] = ACTIONS(3021), + [anon_sym_using] = ACTIONS(3021), + [anon_sym_static_assert] = ACTIONS(3021), + [anon_sym_concept] = ACTIONS(3021), + [anon_sym_co_return] = ACTIONS(3021), + [anon_sym_co_yield] = ACTIONS(3021), + [anon_sym_R_DQUOTE] = ACTIONS(3023), + [anon_sym_LR_DQUOTE] = ACTIONS(3023), + [anon_sym_uR_DQUOTE] = ACTIONS(3023), + [anon_sym_UR_DQUOTE] = ACTIONS(3023), + [anon_sym_u8R_DQUOTE] = ACTIONS(3023), + [anon_sym_co_await] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3021), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3021), }, [825] = { - [sym_identifier] = ACTIONS(3230), - [aux_sym_preproc_include_token1] = ACTIONS(3230), - [aux_sym_preproc_def_token1] = ACTIONS(3230), - [aux_sym_preproc_if_token1] = ACTIONS(3230), - [aux_sym_preproc_if_token2] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3230), - [aux_sym_preproc_else_token1] = ACTIONS(3230), - [aux_sym_preproc_elif_token1] = ACTIONS(3230), - [sym_preproc_directive] = ACTIONS(3230), - [anon_sym_LPAREN2] = ACTIONS(3232), - [anon_sym_BANG] = ACTIONS(3232), - [anon_sym_TILDE] = ACTIONS(3232), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(3232), - [anon_sym_AMP_AMP] = ACTIONS(3232), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3232), - [anon_sym___extension__] = ACTIONS(3230), - [anon_sym_typedef] = ACTIONS(3230), - [anon_sym_extern] = ACTIONS(3230), - [anon_sym___attribute__] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3232), - [anon_sym___declspec] = ACTIONS(3230), - [anon_sym___based] = ACTIONS(3230), - [anon_sym___cdecl] = ACTIONS(3230), - [anon_sym___clrcall] = ACTIONS(3230), - [anon_sym___stdcall] = ACTIONS(3230), - [anon_sym___fastcall] = ACTIONS(3230), - [anon_sym___thiscall] = ACTIONS(3230), - [anon_sym___vectorcall] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3232), - [anon_sym_signed] = ACTIONS(3230), - [anon_sym_unsigned] = ACTIONS(3230), - [anon_sym_long] = ACTIONS(3230), - [anon_sym_short] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3230), - [anon_sym_register] = ACTIONS(3230), - [anon_sym_inline] = ACTIONS(3230), - [anon_sym___inline] = ACTIONS(3230), - [anon_sym___inline__] = ACTIONS(3230), - [anon_sym___forceinline] = ACTIONS(3230), - [anon_sym_thread_local] = ACTIONS(3230), - [anon_sym___thread] = ACTIONS(3230), - [anon_sym_const] = ACTIONS(3230), - [anon_sym_constexpr] = ACTIONS(3230), - [anon_sym_volatile] = ACTIONS(3230), - [anon_sym_restrict] = ACTIONS(3230), - [anon_sym___restrict__] = ACTIONS(3230), - [anon_sym__Atomic] = ACTIONS(3230), - [anon_sym__Noreturn] = ACTIONS(3230), - [anon_sym_noreturn] = ACTIONS(3230), - [anon_sym_mutable] = ACTIONS(3230), - [anon_sym_constinit] = ACTIONS(3230), - [anon_sym_consteval] = ACTIONS(3230), - [sym_primitive_type] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3230), - [anon_sym_class] = ACTIONS(3230), - [anon_sym_struct] = ACTIONS(3230), - [anon_sym_union] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_switch] = ACTIONS(3230), - [anon_sym_case] = ACTIONS(3230), - [anon_sym_default] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_do] = ACTIONS(3230), - [anon_sym_for] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_goto] = ACTIONS(3230), - [anon_sym_not] = ACTIONS(3230), - [anon_sym_compl] = ACTIONS(3230), - [anon_sym_DASH_DASH] = ACTIONS(3232), - [anon_sym_PLUS_PLUS] = ACTIONS(3232), - [anon_sym_sizeof] = ACTIONS(3230), - [anon_sym___alignof__] = ACTIONS(3230), - [anon_sym___alignof] = ACTIONS(3230), - [anon_sym__alignof] = ACTIONS(3230), - [anon_sym_alignof] = ACTIONS(3230), - [anon_sym__Alignof] = ACTIONS(3230), - [anon_sym_offsetof] = ACTIONS(3230), - [anon_sym__Generic] = ACTIONS(3230), - [anon_sym_asm] = ACTIONS(3230), - [anon_sym___asm__] = ACTIONS(3230), - [sym_number_literal] = ACTIONS(3232), - [anon_sym_L_SQUOTE] = ACTIONS(3232), - [anon_sym_u_SQUOTE] = ACTIONS(3232), - [anon_sym_U_SQUOTE] = ACTIONS(3232), - [anon_sym_u8_SQUOTE] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3232), - [anon_sym_L_DQUOTE] = ACTIONS(3232), - [anon_sym_u_DQUOTE] = ACTIONS(3232), - [anon_sym_U_DQUOTE] = ACTIONS(3232), - [anon_sym_u8_DQUOTE] = ACTIONS(3232), - [anon_sym_DQUOTE] = ACTIONS(3232), - [sym_true] = ACTIONS(3230), - [sym_false] = ACTIONS(3230), - [anon_sym_NULL] = ACTIONS(3230), - [anon_sym_nullptr] = ACTIONS(3230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3230), - [anon_sym_decltype] = ACTIONS(3230), - [anon_sym_virtual] = ACTIONS(3230), - [anon_sym_alignas] = ACTIONS(3230), - [anon_sym_explicit] = ACTIONS(3230), - [anon_sym_typename] = ACTIONS(3230), - [anon_sym_template] = ACTIONS(3230), - [anon_sym_operator] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_delete] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_namespace] = ACTIONS(3230), - [anon_sym_using] = ACTIONS(3230), - [anon_sym_static_assert] = ACTIONS(3230), - [anon_sym_concept] = ACTIONS(3230), - [anon_sym_co_return] = ACTIONS(3230), - [anon_sym_co_yield] = ACTIONS(3230), - [anon_sym_R_DQUOTE] = ACTIONS(3232), - [anon_sym_LR_DQUOTE] = ACTIONS(3232), - [anon_sym_uR_DQUOTE] = ACTIONS(3232), - [anon_sym_UR_DQUOTE] = ACTIONS(3232), - [anon_sym_u8R_DQUOTE] = ACTIONS(3232), - [anon_sym_co_await] = ACTIONS(3230), - [anon_sym_new] = ACTIONS(3230), - [anon_sym_requires] = ACTIONS(3230), - [sym_this] = ACTIONS(3230), + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_include_token1] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym___cdecl] = ACTIONS(3103), + [anon_sym___clrcall] = ACTIONS(3103), + [anon_sym___stdcall] = ACTIONS(3103), + [anon_sym___fastcall] = ACTIONS(3103), + [anon_sym___thiscall] = ACTIONS(3103), + [anon_sym___vectorcall] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3103), + [anon_sym_case] = ACTIONS(3103), + [anon_sym_default] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_do] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_compl] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_sizeof] = ACTIONS(3103), + [anon_sym___alignof__] = ACTIONS(3103), + [anon_sym___alignof] = ACTIONS(3103), + [anon_sym__alignof] = ACTIONS(3103), + [anon_sym_alignof] = ACTIONS(3103), + [anon_sym__Alignof] = ACTIONS(3103), + [anon_sym_offsetof] = ACTIONS(3103), + [anon_sym__Generic] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym___asm__] = ACTIONS(3103), + [sym_number_literal] = ACTIONS(3105), + [anon_sym_L_SQUOTE] = ACTIONS(3105), + [anon_sym_u_SQUOTE] = ACTIONS(3105), + [anon_sym_U_SQUOTE] = ACTIONS(3105), + [anon_sym_u8_SQUOTE] = ACTIONS(3105), + [anon_sym_SQUOTE] = ACTIONS(3105), + [anon_sym_L_DQUOTE] = ACTIONS(3105), + [anon_sym_u_DQUOTE] = ACTIONS(3105), + [anon_sym_U_DQUOTE] = ACTIONS(3105), + [anon_sym_u8_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [sym_true] = ACTIONS(3103), + [sym_false] = ACTIONS(3103), + [anon_sym_NULL] = ACTIONS(3103), + [anon_sym_nullptr] = ACTIONS(3103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_delete] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + [anon_sym_concept] = ACTIONS(3103), + [anon_sym_co_return] = ACTIONS(3103), + [anon_sym_co_yield] = ACTIONS(3103), + [anon_sym_R_DQUOTE] = ACTIONS(3105), + [anon_sym_LR_DQUOTE] = ACTIONS(3105), + [anon_sym_uR_DQUOTE] = ACTIONS(3105), + [anon_sym_UR_DQUOTE] = ACTIONS(3105), + [anon_sym_u8R_DQUOTE] = ACTIONS(3105), + [anon_sym_co_await] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(3103), + [sym_this] = ACTIONS(3103), }, [826] = { - [sym_identifier] = ACTIONS(3282), - [aux_sym_preproc_include_token1] = ACTIONS(3282), - [aux_sym_preproc_def_token1] = ACTIONS(3282), - [aux_sym_preproc_if_token1] = ACTIONS(3282), - [aux_sym_preproc_if_token2] = ACTIONS(3282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3282), - [aux_sym_preproc_else_token1] = ACTIONS(3282), - [aux_sym_preproc_elif_token1] = ACTIONS(3282), - [sym_preproc_directive] = ACTIONS(3282), - [anon_sym_LPAREN2] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3282), - [anon_sym_PLUS] = ACTIONS(3282), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_AMP_AMP] = ACTIONS(3284), - [anon_sym_AMP] = ACTIONS(3282), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym___extension__] = ACTIONS(3282), - [anon_sym_typedef] = ACTIONS(3282), - [anon_sym_extern] = ACTIONS(3282), - [anon_sym___attribute__] = ACTIONS(3282), - [anon_sym_COLON_COLON] = ACTIONS(3284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3284), - [anon_sym___declspec] = ACTIONS(3282), - [anon_sym___based] = ACTIONS(3282), - [anon_sym___cdecl] = ACTIONS(3282), - [anon_sym___clrcall] = ACTIONS(3282), - [anon_sym___stdcall] = ACTIONS(3282), - [anon_sym___fastcall] = ACTIONS(3282), - [anon_sym___thiscall] = ACTIONS(3282), - [anon_sym___vectorcall] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_signed] = ACTIONS(3282), - [anon_sym_unsigned] = ACTIONS(3282), - [anon_sym_long] = ACTIONS(3282), - [anon_sym_short] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_register] = ACTIONS(3282), - [anon_sym_inline] = ACTIONS(3282), - [anon_sym___inline] = ACTIONS(3282), - [anon_sym___inline__] = ACTIONS(3282), - [anon_sym___forceinline] = ACTIONS(3282), - [anon_sym_thread_local] = ACTIONS(3282), - [anon_sym___thread] = ACTIONS(3282), - [anon_sym_const] = ACTIONS(3282), - [anon_sym_constexpr] = ACTIONS(3282), - [anon_sym_volatile] = ACTIONS(3282), - [anon_sym_restrict] = ACTIONS(3282), - [anon_sym___restrict__] = ACTIONS(3282), - [anon_sym__Atomic] = ACTIONS(3282), - [anon_sym__Noreturn] = ACTIONS(3282), - [anon_sym_noreturn] = ACTIONS(3282), - [anon_sym_mutable] = ACTIONS(3282), - [anon_sym_constinit] = ACTIONS(3282), - [anon_sym_consteval] = ACTIONS(3282), - [sym_primitive_type] = ACTIONS(3282), - [anon_sym_enum] = ACTIONS(3282), - [anon_sym_class] = ACTIONS(3282), - [anon_sym_struct] = ACTIONS(3282), - [anon_sym_union] = ACTIONS(3282), - [anon_sym_if] = ACTIONS(3282), - [anon_sym_switch] = ACTIONS(3282), - [anon_sym_case] = ACTIONS(3282), - [anon_sym_default] = ACTIONS(3282), - [anon_sym_while] = ACTIONS(3282), - [anon_sym_do] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3282), - [anon_sym_return] = ACTIONS(3282), - [anon_sym_break] = ACTIONS(3282), - [anon_sym_continue] = ACTIONS(3282), - [anon_sym_goto] = ACTIONS(3282), - [anon_sym_not] = ACTIONS(3282), - [anon_sym_compl] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_sizeof] = ACTIONS(3282), - [anon_sym___alignof__] = ACTIONS(3282), - [anon_sym___alignof] = ACTIONS(3282), - [anon_sym__alignof] = ACTIONS(3282), - [anon_sym_alignof] = ACTIONS(3282), - [anon_sym__Alignof] = ACTIONS(3282), - [anon_sym_offsetof] = ACTIONS(3282), - [anon_sym__Generic] = ACTIONS(3282), - [anon_sym_asm] = ACTIONS(3282), - [anon_sym___asm__] = ACTIONS(3282), - [sym_number_literal] = ACTIONS(3284), - [anon_sym_L_SQUOTE] = ACTIONS(3284), - [anon_sym_u_SQUOTE] = ACTIONS(3284), - [anon_sym_U_SQUOTE] = ACTIONS(3284), - [anon_sym_u8_SQUOTE] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3284), - [anon_sym_L_DQUOTE] = ACTIONS(3284), - [anon_sym_u_DQUOTE] = ACTIONS(3284), - [anon_sym_U_DQUOTE] = ACTIONS(3284), - [anon_sym_u8_DQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [sym_true] = ACTIONS(3282), - [sym_false] = ACTIONS(3282), - [anon_sym_NULL] = ACTIONS(3282), - [anon_sym_nullptr] = ACTIONS(3282), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3282), - [anon_sym_decltype] = ACTIONS(3282), - [anon_sym_virtual] = ACTIONS(3282), - [anon_sym_alignas] = ACTIONS(3282), - [anon_sym_explicit] = ACTIONS(3282), - [anon_sym_typename] = ACTIONS(3282), - [anon_sym_template] = ACTIONS(3282), - [anon_sym_operator] = ACTIONS(3282), - [anon_sym_try] = ACTIONS(3282), - [anon_sym_delete] = ACTIONS(3282), - [anon_sym_throw] = ACTIONS(3282), - [anon_sym_namespace] = ACTIONS(3282), - [anon_sym_using] = ACTIONS(3282), - [anon_sym_static_assert] = ACTIONS(3282), - [anon_sym_concept] = ACTIONS(3282), - [anon_sym_co_return] = ACTIONS(3282), - [anon_sym_co_yield] = ACTIONS(3282), - [anon_sym_R_DQUOTE] = ACTIONS(3284), - [anon_sym_LR_DQUOTE] = ACTIONS(3284), - [anon_sym_uR_DQUOTE] = ACTIONS(3284), - [anon_sym_UR_DQUOTE] = ACTIONS(3284), - [anon_sym_u8R_DQUOTE] = ACTIONS(3284), - [anon_sym_co_await] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3282), - [anon_sym_requires] = ACTIONS(3282), - [sym_this] = ACTIONS(3282), + [sym_identifier] = ACTIONS(3017), + [aux_sym_preproc_include_token1] = ACTIONS(3017), + [aux_sym_preproc_def_token1] = ACTIONS(3017), + [aux_sym_preproc_if_token1] = ACTIONS(3017), + [aux_sym_preproc_if_token2] = ACTIONS(3017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3017), + [sym_preproc_directive] = ACTIONS(3017), + [anon_sym_LPAREN2] = ACTIONS(3019), + [anon_sym_BANG] = ACTIONS(3019), + [anon_sym_TILDE] = ACTIONS(3019), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_AMP] = ACTIONS(3017), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym___extension__] = ACTIONS(3017), + [anon_sym_typedef] = ACTIONS(3017), + [anon_sym_extern] = ACTIONS(3017), + [anon_sym___attribute__] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(3019), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3019), + [anon_sym___declspec] = ACTIONS(3017), + [anon_sym___based] = ACTIONS(3017), + [anon_sym___cdecl] = ACTIONS(3017), + [anon_sym___clrcall] = ACTIONS(3017), + [anon_sym___stdcall] = ACTIONS(3017), + [anon_sym___fastcall] = ACTIONS(3017), + [anon_sym___thiscall] = ACTIONS(3017), + [anon_sym___vectorcall] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3019), + [anon_sym_signed] = ACTIONS(3017), + [anon_sym_unsigned] = ACTIONS(3017), + [anon_sym_long] = ACTIONS(3017), + [anon_sym_short] = ACTIONS(3017), + [anon_sym_LBRACK] = ACTIONS(3017), + [anon_sym_static] = ACTIONS(3017), + [anon_sym_register] = ACTIONS(3017), + [anon_sym_inline] = ACTIONS(3017), + [anon_sym___inline] = ACTIONS(3017), + [anon_sym___inline__] = ACTIONS(3017), + [anon_sym___forceinline] = ACTIONS(3017), + [anon_sym_thread_local] = ACTIONS(3017), + [anon_sym___thread] = ACTIONS(3017), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_constexpr] = ACTIONS(3017), + [anon_sym_volatile] = ACTIONS(3017), + [anon_sym_restrict] = ACTIONS(3017), + [anon_sym___restrict__] = ACTIONS(3017), + [anon_sym__Atomic] = ACTIONS(3017), + [anon_sym__Noreturn] = ACTIONS(3017), + [anon_sym_noreturn] = ACTIONS(3017), + [anon_sym_mutable] = ACTIONS(3017), + [anon_sym_constinit] = ACTIONS(3017), + [anon_sym_consteval] = ACTIONS(3017), + [sym_primitive_type] = ACTIONS(3017), + [anon_sym_enum] = ACTIONS(3017), + [anon_sym_class] = ACTIONS(3017), + [anon_sym_struct] = ACTIONS(3017), + [anon_sym_union] = ACTIONS(3017), + [anon_sym_if] = ACTIONS(3017), + [anon_sym_switch] = ACTIONS(3017), + [anon_sym_case] = ACTIONS(3017), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3017), + [anon_sym_do] = ACTIONS(3017), + [anon_sym_for] = ACTIONS(3017), + [anon_sym_return] = ACTIONS(3017), + [anon_sym_break] = ACTIONS(3017), + [anon_sym_continue] = ACTIONS(3017), + [anon_sym_goto] = ACTIONS(3017), + [anon_sym_not] = ACTIONS(3017), + [anon_sym_compl] = ACTIONS(3017), + [anon_sym_DASH_DASH] = ACTIONS(3019), + [anon_sym_PLUS_PLUS] = ACTIONS(3019), + [anon_sym_sizeof] = ACTIONS(3017), + [anon_sym___alignof__] = ACTIONS(3017), + [anon_sym___alignof] = ACTIONS(3017), + [anon_sym__alignof] = ACTIONS(3017), + [anon_sym_alignof] = ACTIONS(3017), + [anon_sym__Alignof] = ACTIONS(3017), + [anon_sym_offsetof] = ACTIONS(3017), + [anon_sym__Generic] = ACTIONS(3017), + [anon_sym_asm] = ACTIONS(3017), + [anon_sym___asm__] = ACTIONS(3017), + [sym_number_literal] = ACTIONS(3019), + [anon_sym_L_SQUOTE] = ACTIONS(3019), + [anon_sym_u_SQUOTE] = ACTIONS(3019), + [anon_sym_U_SQUOTE] = ACTIONS(3019), + [anon_sym_u8_SQUOTE] = ACTIONS(3019), + [anon_sym_SQUOTE] = ACTIONS(3019), + [anon_sym_L_DQUOTE] = ACTIONS(3019), + [anon_sym_u_DQUOTE] = ACTIONS(3019), + [anon_sym_U_DQUOTE] = ACTIONS(3019), + [anon_sym_u8_DQUOTE] = ACTIONS(3019), + [anon_sym_DQUOTE] = ACTIONS(3019), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [anon_sym_NULL] = ACTIONS(3017), + [anon_sym_nullptr] = ACTIONS(3017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3017), + [anon_sym_decltype] = ACTIONS(3017), + [anon_sym_virtual] = ACTIONS(3017), + [anon_sym_alignas] = ACTIONS(3017), + [anon_sym_explicit] = ACTIONS(3017), + [anon_sym_typename] = ACTIONS(3017), + [anon_sym_template] = ACTIONS(3017), + [anon_sym_operator] = ACTIONS(3017), + [anon_sym_try] = ACTIONS(3017), + [anon_sym_delete] = ACTIONS(3017), + [anon_sym_throw] = ACTIONS(3017), + [anon_sym_namespace] = ACTIONS(3017), + [anon_sym_using] = ACTIONS(3017), + [anon_sym_static_assert] = ACTIONS(3017), + [anon_sym_concept] = ACTIONS(3017), + [anon_sym_co_return] = ACTIONS(3017), + [anon_sym_co_yield] = ACTIONS(3017), + [anon_sym_R_DQUOTE] = ACTIONS(3019), + [anon_sym_LR_DQUOTE] = ACTIONS(3019), + [anon_sym_uR_DQUOTE] = ACTIONS(3019), + [anon_sym_UR_DQUOTE] = ACTIONS(3019), + [anon_sym_u8R_DQUOTE] = ACTIONS(3019), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3017), + [anon_sym_requires] = ACTIONS(3017), + [sym_this] = ACTIONS(3017), }, [827] = { - [sym_identifier] = ACTIONS(3328), - [aux_sym_preproc_include_token1] = ACTIONS(3328), - [aux_sym_preproc_def_token1] = ACTIONS(3328), - [aux_sym_preproc_if_token1] = ACTIONS(3328), - [aux_sym_preproc_if_token2] = ACTIONS(3328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3328), - [aux_sym_preproc_else_token1] = ACTIONS(3328), - [aux_sym_preproc_elif_token1] = ACTIONS(3328), - [sym_preproc_directive] = ACTIONS(3328), - [anon_sym_LPAREN2] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_STAR] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym___extension__] = ACTIONS(3328), - [anon_sym_typedef] = ACTIONS(3328), - [anon_sym_extern] = ACTIONS(3328), - [anon_sym___attribute__] = ACTIONS(3328), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3330), - [anon_sym___declspec] = ACTIONS(3328), - [anon_sym___based] = ACTIONS(3328), - [anon_sym___cdecl] = ACTIONS(3328), - [anon_sym___clrcall] = ACTIONS(3328), - [anon_sym___stdcall] = ACTIONS(3328), - [anon_sym___fastcall] = ACTIONS(3328), - [anon_sym___thiscall] = ACTIONS(3328), - [anon_sym___vectorcall] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_signed] = ACTIONS(3328), - [anon_sym_unsigned] = ACTIONS(3328), - [anon_sym_long] = ACTIONS(3328), - [anon_sym_short] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_register] = ACTIONS(3328), - [anon_sym_inline] = ACTIONS(3328), - [anon_sym___inline] = ACTIONS(3328), - [anon_sym___inline__] = ACTIONS(3328), - [anon_sym___forceinline] = ACTIONS(3328), - [anon_sym_thread_local] = ACTIONS(3328), - [anon_sym___thread] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_constexpr] = ACTIONS(3328), - [anon_sym_volatile] = ACTIONS(3328), - [anon_sym_restrict] = ACTIONS(3328), - [anon_sym___restrict__] = ACTIONS(3328), - [anon_sym__Atomic] = ACTIONS(3328), - [anon_sym__Noreturn] = ACTIONS(3328), - [anon_sym_noreturn] = ACTIONS(3328), - [anon_sym_mutable] = ACTIONS(3328), - [anon_sym_constinit] = ACTIONS(3328), - [anon_sym_consteval] = ACTIONS(3328), - [sym_primitive_type] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_struct] = ACTIONS(3328), - [anon_sym_union] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_switch] = ACTIONS(3328), - [anon_sym_case] = ACTIONS(3328), - [anon_sym_default] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_goto] = ACTIONS(3328), - [anon_sym_not] = ACTIONS(3328), - [anon_sym_compl] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_sizeof] = ACTIONS(3328), - [anon_sym___alignof__] = ACTIONS(3328), - [anon_sym___alignof] = ACTIONS(3328), - [anon_sym__alignof] = ACTIONS(3328), - [anon_sym_alignof] = ACTIONS(3328), - [anon_sym__Alignof] = ACTIONS(3328), - [anon_sym_offsetof] = ACTIONS(3328), - [anon_sym__Generic] = ACTIONS(3328), - [anon_sym_asm] = ACTIONS(3328), - [anon_sym___asm__] = ACTIONS(3328), - [sym_number_literal] = ACTIONS(3330), - [anon_sym_L_SQUOTE] = ACTIONS(3330), - [anon_sym_u_SQUOTE] = ACTIONS(3330), - [anon_sym_U_SQUOTE] = ACTIONS(3330), - [anon_sym_u8_SQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_L_DQUOTE] = ACTIONS(3330), - [anon_sym_u_DQUOTE] = ACTIONS(3330), - [anon_sym_U_DQUOTE] = ACTIONS(3330), - [anon_sym_u8_DQUOTE] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [anon_sym_NULL] = ACTIONS(3328), - [anon_sym_nullptr] = ACTIONS(3328), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3328), - [anon_sym_decltype] = ACTIONS(3328), - [anon_sym_virtual] = ACTIONS(3328), - [anon_sym_alignas] = ACTIONS(3328), - [anon_sym_explicit] = ACTIONS(3328), - [anon_sym_typename] = ACTIONS(3328), - [anon_sym_template] = ACTIONS(3328), - [anon_sym_operator] = ACTIONS(3328), - [anon_sym_try] = ACTIONS(3328), - [anon_sym_delete] = ACTIONS(3328), - [anon_sym_throw] = ACTIONS(3328), - [anon_sym_namespace] = ACTIONS(3328), - [anon_sym_using] = ACTIONS(3328), - [anon_sym_static_assert] = ACTIONS(3328), - [anon_sym_concept] = ACTIONS(3328), - [anon_sym_co_return] = ACTIONS(3328), - [anon_sym_co_yield] = ACTIONS(3328), - [anon_sym_R_DQUOTE] = ACTIONS(3330), - [anon_sym_LR_DQUOTE] = ACTIONS(3330), - [anon_sym_uR_DQUOTE] = ACTIONS(3330), - [anon_sym_UR_DQUOTE] = ACTIONS(3330), - [anon_sym_u8R_DQUOTE] = ACTIONS(3330), - [anon_sym_co_await] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3328), - [anon_sym_requires] = ACTIONS(3328), - [sym_this] = ACTIONS(3328), + [sym_identifier] = ACTIONS(3188), + [aux_sym_preproc_include_token1] = ACTIONS(3188), + [aux_sym_preproc_def_token1] = ACTIONS(3188), + [aux_sym_preproc_if_token1] = ACTIONS(3188), + [aux_sym_preproc_if_token2] = ACTIONS(3188), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3188), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3188), + [sym_preproc_directive] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(3190), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_AMP_AMP] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3190), + [anon_sym___extension__] = ACTIONS(3188), + [anon_sym_typedef] = ACTIONS(3188), + [anon_sym_extern] = ACTIONS(3188), + [anon_sym___attribute__] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3190), + [anon_sym___declspec] = ACTIONS(3188), + [anon_sym___based] = ACTIONS(3188), + [anon_sym___cdecl] = ACTIONS(3188), + [anon_sym___clrcall] = ACTIONS(3188), + [anon_sym___stdcall] = ACTIONS(3188), + [anon_sym___fastcall] = ACTIONS(3188), + [anon_sym___thiscall] = ACTIONS(3188), + [anon_sym___vectorcall] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_signed] = ACTIONS(3188), + [anon_sym_unsigned] = ACTIONS(3188), + [anon_sym_long] = ACTIONS(3188), + [anon_sym_short] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_register] = ACTIONS(3188), + [anon_sym_inline] = ACTIONS(3188), + [anon_sym___inline] = ACTIONS(3188), + [anon_sym___inline__] = ACTIONS(3188), + [anon_sym___forceinline] = ACTIONS(3188), + [anon_sym_thread_local] = ACTIONS(3188), + [anon_sym___thread] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_constexpr] = ACTIONS(3188), + [anon_sym_volatile] = ACTIONS(3188), + [anon_sym_restrict] = ACTIONS(3188), + [anon_sym___restrict__] = ACTIONS(3188), + [anon_sym__Atomic] = ACTIONS(3188), + [anon_sym__Noreturn] = ACTIONS(3188), + [anon_sym_noreturn] = ACTIONS(3188), + [anon_sym_mutable] = ACTIONS(3188), + [anon_sym_constinit] = ACTIONS(3188), + [anon_sym_consteval] = ACTIONS(3188), + [sym_primitive_type] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_struct] = ACTIONS(3188), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3188), + [anon_sym_case] = ACTIONS(3188), + [anon_sym_default] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_break] = ACTIONS(3188), + [anon_sym_continue] = ACTIONS(3188), + [anon_sym_goto] = ACTIONS(3188), + [anon_sym_not] = ACTIONS(3188), + [anon_sym_compl] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3190), + [anon_sym_PLUS_PLUS] = ACTIONS(3190), + [anon_sym_sizeof] = ACTIONS(3188), + [anon_sym___alignof__] = ACTIONS(3188), + [anon_sym___alignof] = ACTIONS(3188), + [anon_sym__alignof] = ACTIONS(3188), + [anon_sym_alignof] = ACTIONS(3188), + [anon_sym__Alignof] = ACTIONS(3188), + [anon_sym_offsetof] = ACTIONS(3188), + [anon_sym__Generic] = ACTIONS(3188), + [anon_sym_asm] = ACTIONS(3188), + [anon_sym___asm__] = ACTIONS(3188), + [sym_number_literal] = ACTIONS(3190), + [anon_sym_L_SQUOTE] = ACTIONS(3190), + [anon_sym_u_SQUOTE] = ACTIONS(3190), + [anon_sym_U_SQUOTE] = ACTIONS(3190), + [anon_sym_u8_SQUOTE] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3190), + [anon_sym_L_DQUOTE] = ACTIONS(3190), + [anon_sym_u_DQUOTE] = ACTIONS(3190), + [anon_sym_U_DQUOTE] = ACTIONS(3190), + [anon_sym_u8_DQUOTE] = ACTIONS(3190), + [anon_sym_DQUOTE] = ACTIONS(3190), + [sym_true] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [anon_sym_NULL] = ACTIONS(3188), + [anon_sym_nullptr] = ACTIONS(3188), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3188), + [anon_sym_decltype] = ACTIONS(3188), + [anon_sym_virtual] = ACTIONS(3188), + [anon_sym_alignas] = ACTIONS(3188), + [anon_sym_explicit] = ACTIONS(3188), + [anon_sym_typename] = ACTIONS(3188), + [anon_sym_template] = ACTIONS(3188), + [anon_sym_operator] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_throw] = ACTIONS(3188), + [anon_sym_namespace] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3188), + [anon_sym_static_assert] = ACTIONS(3188), + [anon_sym_concept] = ACTIONS(3188), + [anon_sym_co_return] = ACTIONS(3188), + [anon_sym_co_yield] = ACTIONS(3188), + [anon_sym_R_DQUOTE] = ACTIONS(3190), + [anon_sym_LR_DQUOTE] = ACTIONS(3190), + [anon_sym_uR_DQUOTE] = ACTIONS(3190), + [anon_sym_UR_DQUOTE] = ACTIONS(3190), + [anon_sym_u8R_DQUOTE] = ACTIONS(3190), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_requires] = ACTIONS(3188), + [sym_this] = ACTIONS(3188), }, [828] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_include_token1] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token2] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym___cdecl] = ACTIONS(2194), - [anon_sym___clrcall] = ACTIONS(2194), - [anon_sym___stdcall] = ACTIONS(2194), - [anon_sym___fastcall] = ACTIONS(2194), - [anon_sym___thiscall] = ACTIONS(2194), - [anon_sym___vectorcall] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_goto] = ACTIONS(2194), - [anon_sym_not] = ACTIONS(2194), - [anon_sym_compl] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_sizeof] = ACTIONS(2194), - [anon_sym___alignof__] = ACTIONS(2194), - [anon_sym___alignof] = ACTIONS(2194), - [anon_sym__alignof] = ACTIONS(2194), - [anon_sym_alignof] = ACTIONS(2194), - [anon_sym__Alignof] = ACTIONS(2194), - [anon_sym_offsetof] = ACTIONS(2194), - [anon_sym__Generic] = ACTIONS(2194), - [anon_sym_asm] = ACTIONS(2194), - [anon_sym___asm__] = ACTIONS(2194), - [sym_number_literal] = ACTIONS(2192), - [anon_sym_L_SQUOTE] = ACTIONS(2192), - [anon_sym_u_SQUOTE] = ACTIONS(2192), - [anon_sym_U_SQUOTE] = ACTIONS(2192), - [anon_sym_u8_SQUOTE] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_L_DQUOTE] = ACTIONS(2192), - [anon_sym_u_DQUOTE] = ACTIONS(2192), - [anon_sym_U_DQUOTE] = ACTIONS(2192), - [anon_sym_u8_DQUOTE] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [anon_sym_NULL] = ACTIONS(2194), - [anon_sym_nullptr] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_delete] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - [anon_sym_concept] = ACTIONS(2194), - [anon_sym_co_return] = ACTIONS(2194), - [anon_sym_co_yield] = ACTIONS(2194), - [anon_sym_catch] = ACTIONS(2194), - [anon_sym_R_DQUOTE] = ACTIONS(2192), - [anon_sym_LR_DQUOTE] = ACTIONS(2192), - [anon_sym_uR_DQUOTE] = ACTIONS(2192), - [anon_sym_UR_DQUOTE] = ACTIONS(2192), - [anon_sym_u8R_DQUOTE] = ACTIONS(2192), - [anon_sym_co_await] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_requires] = ACTIONS(2194), - [sym_this] = ACTIONS(2194), + [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_extern] = ACTIONS(3119), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3119), + [anon_sym_constinit] = ACTIONS(3119), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3119), + [anon_sym_alignas] = 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_using] = 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), }, [829] = { - [sym_identifier] = ACTIONS(3450), - [aux_sym_preproc_include_token1] = ACTIONS(3450), - [aux_sym_preproc_def_token1] = ACTIONS(3450), - [aux_sym_preproc_if_token1] = ACTIONS(3450), - [aux_sym_preproc_if_token2] = ACTIONS(3450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3450), - [aux_sym_preproc_else_token1] = ACTIONS(3450), - [aux_sym_preproc_elif_token1] = ACTIONS(3450), - [sym_preproc_directive] = ACTIONS(3450), - [anon_sym_LPAREN2] = ACTIONS(3452), - [anon_sym_BANG] = ACTIONS(3452), - [anon_sym_TILDE] = ACTIONS(3452), - [anon_sym_DASH] = ACTIONS(3450), - [anon_sym_PLUS] = ACTIONS(3450), - [anon_sym_STAR] = ACTIONS(3452), - [anon_sym_AMP_AMP] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3450), - [anon_sym_SEMI] = ACTIONS(3452), - [anon_sym___extension__] = ACTIONS(3450), - [anon_sym_typedef] = ACTIONS(3450), - [anon_sym_extern] = ACTIONS(3450), - [anon_sym___attribute__] = ACTIONS(3450), - [anon_sym_COLON_COLON] = ACTIONS(3452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3452), - [anon_sym___declspec] = ACTIONS(3450), - [anon_sym___based] = ACTIONS(3450), - [anon_sym___cdecl] = ACTIONS(3450), - [anon_sym___clrcall] = ACTIONS(3450), - [anon_sym___stdcall] = ACTIONS(3450), - [anon_sym___fastcall] = ACTIONS(3450), - [anon_sym___thiscall] = ACTIONS(3450), - [anon_sym___vectorcall] = ACTIONS(3450), - [anon_sym_LBRACE] = ACTIONS(3452), - [anon_sym_signed] = ACTIONS(3450), - [anon_sym_unsigned] = ACTIONS(3450), - [anon_sym_long] = ACTIONS(3450), - [anon_sym_short] = ACTIONS(3450), - [anon_sym_LBRACK] = ACTIONS(3450), - [anon_sym_static] = ACTIONS(3450), - [anon_sym_register] = ACTIONS(3450), - [anon_sym_inline] = ACTIONS(3450), - [anon_sym___inline] = ACTIONS(3450), - [anon_sym___inline__] = ACTIONS(3450), - [anon_sym___forceinline] = ACTIONS(3450), - [anon_sym_thread_local] = ACTIONS(3450), - [anon_sym___thread] = ACTIONS(3450), - [anon_sym_const] = ACTIONS(3450), - [anon_sym_constexpr] = ACTIONS(3450), - [anon_sym_volatile] = ACTIONS(3450), - [anon_sym_restrict] = ACTIONS(3450), - [anon_sym___restrict__] = ACTIONS(3450), - [anon_sym__Atomic] = ACTIONS(3450), - [anon_sym__Noreturn] = ACTIONS(3450), - [anon_sym_noreturn] = ACTIONS(3450), - [anon_sym_mutable] = ACTIONS(3450), - [anon_sym_constinit] = ACTIONS(3450), - [anon_sym_consteval] = ACTIONS(3450), - [sym_primitive_type] = ACTIONS(3450), - [anon_sym_enum] = ACTIONS(3450), - [anon_sym_class] = ACTIONS(3450), - [anon_sym_struct] = ACTIONS(3450), - [anon_sym_union] = ACTIONS(3450), - [anon_sym_if] = ACTIONS(3450), - [anon_sym_switch] = ACTIONS(3450), - [anon_sym_case] = ACTIONS(3450), - [anon_sym_default] = ACTIONS(3450), - [anon_sym_while] = ACTIONS(3450), - [anon_sym_do] = ACTIONS(3450), - [anon_sym_for] = ACTIONS(3450), - [anon_sym_return] = ACTIONS(3450), - [anon_sym_break] = ACTIONS(3450), - [anon_sym_continue] = ACTIONS(3450), - [anon_sym_goto] = ACTIONS(3450), - [anon_sym_not] = ACTIONS(3450), - [anon_sym_compl] = ACTIONS(3450), - [anon_sym_DASH_DASH] = ACTIONS(3452), - [anon_sym_PLUS_PLUS] = ACTIONS(3452), - [anon_sym_sizeof] = ACTIONS(3450), - [anon_sym___alignof__] = ACTIONS(3450), - [anon_sym___alignof] = ACTIONS(3450), - [anon_sym__alignof] = ACTIONS(3450), - [anon_sym_alignof] = ACTIONS(3450), - [anon_sym__Alignof] = ACTIONS(3450), - [anon_sym_offsetof] = ACTIONS(3450), - [anon_sym__Generic] = ACTIONS(3450), - [anon_sym_asm] = ACTIONS(3450), - [anon_sym___asm__] = ACTIONS(3450), - [sym_number_literal] = ACTIONS(3452), - [anon_sym_L_SQUOTE] = ACTIONS(3452), - [anon_sym_u_SQUOTE] = ACTIONS(3452), - [anon_sym_U_SQUOTE] = ACTIONS(3452), - [anon_sym_u8_SQUOTE] = ACTIONS(3452), - [anon_sym_SQUOTE] = ACTIONS(3452), - [anon_sym_L_DQUOTE] = ACTIONS(3452), - [anon_sym_u_DQUOTE] = ACTIONS(3452), - [anon_sym_U_DQUOTE] = ACTIONS(3452), - [anon_sym_u8_DQUOTE] = ACTIONS(3452), - [anon_sym_DQUOTE] = ACTIONS(3452), - [sym_true] = ACTIONS(3450), - [sym_false] = ACTIONS(3450), - [anon_sym_NULL] = ACTIONS(3450), - [anon_sym_nullptr] = ACTIONS(3450), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3450), - [anon_sym_decltype] = ACTIONS(3450), - [anon_sym_virtual] = ACTIONS(3450), - [anon_sym_alignas] = ACTIONS(3450), - [anon_sym_explicit] = ACTIONS(3450), - [anon_sym_typename] = ACTIONS(3450), - [anon_sym_template] = ACTIONS(3450), - [anon_sym_operator] = ACTIONS(3450), - [anon_sym_try] = ACTIONS(3450), - [anon_sym_delete] = ACTIONS(3450), - [anon_sym_throw] = ACTIONS(3450), - [anon_sym_namespace] = ACTIONS(3450), - [anon_sym_using] = ACTIONS(3450), - [anon_sym_static_assert] = ACTIONS(3450), - [anon_sym_concept] = ACTIONS(3450), - [anon_sym_co_return] = ACTIONS(3450), - [anon_sym_co_yield] = ACTIONS(3450), - [anon_sym_R_DQUOTE] = ACTIONS(3452), - [anon_sym_LR_DQUOTE] = ACTIONS(3452), - [anon_sym_uR_DQUOTE] = ACTIONS(3452), - [anon_sym_UR_DQUOTE] = ACTIONS(3452), - [anon_sym_u8R_DQUOTE] = ACTIONS(3452), - [anon_sym_co_await] = ACTIONS(3450), - [anon_sym_new] = ACTIONS(3450), - [anon_sym_requires] = ACTIONS(3450), - [sym_this] = ACTIONS(3450), + [sym_identifier] = ACTIONS(2884), + [aux_sym_preproc_include_token1] = ACTIONS(2884), + [aux_sym_preproc_def_token1] = ACTIONS(2884), + [aux_sym_preproc_if_token1] = ACTIONS(2884), + [aux_sym_preproc_if_token2] = ACTIONS(2884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2884), + [sym_preproc_directive] = ACTIONS(2884), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_STAR] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_SEMI] = ACTIONS(2886), + [anon_sym___extension__] = ACTIONS(2884), + [anon_sym_typedef] = ACTIONS(2884), + [anon_sym_extern] = ACTIONS(2884), + [anon_sym___attribute__] = ACTIONS(2884), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2886), + [anon_sym___declspec] = ACTIONS(2884), + [anon_sym___based] = ACTIONS(2884), + [anon_sym___cdecl] = ACTIONS(2884), + [anon_sym___clrcall] = ACTIONS(2884), + [anon_sym___stdcall] = ACTIONS(2884), + [anon_sym___fastcall] = ACTIONS(2884), + [anon_sym___thiscall] = ACTIONS(2884), + [anon_sym___vectorcall] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_signed] = ACTIONS(2884), + [anon_sym_unsigned] = ACTIONS(2884), + [anon_sym_long] = ACTIONS(2884), + [anon_sym_short] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(2884), + [anon_sym_register] = ACTIONS(2884), + [anon_sym_inline] = ACTIONS(2884), + [anon_sym___inline] = ACTIONS(2884), + [anon_sym___inline__] = ACTIONS(2884), + [anon_sym___forceinline] = ACTIONS(2884), + [anon_sym_thread_local] = ACTIONS(2884), + [anon_sym___thread] = ACTIONS(2884), + [anon_sym_const] = ACTIONS(2884), + [anon_sym_constexpr] = ACTIONS(2884), + [anon_sym_volatile] = ACTIONS(2884), + [anon_sym_restrict] = ACTIONS(2884), + [anon_sym___restrict__] = ACTIONS(2884), + [anon_sym__Atomic] = ACTIONS(2884), + [anon_sym__Noreturn] = ACTIONS(2884), + [anon_sym_noreturn] = ACTIONS(2884), + [anon_sym_mutable] = ACTIONS(2884), + [anon_sym_constinit] = ACTIONS(2884), + [anon_sym_consteval] = ACTIONS(2884), + [sym_primitive_type] = ACTIONS(2884), + [anon_sym_enum] = ACTIONS(2884), + [anon_sym_class] = ACTIONS(2884), + [anon_sym_struct] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_switch] = ACTIONS(2884), + [anon_sym_case] = ACTIONS(2884), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_break] = ACTIONS(2884), + [anon_sym_continue] = ACTIONS(2884), + [anon_sym_goto] = ACTIONS(2884), + [anon_sym_not] = ACTIONS(2884), + [anon_sym_compl] = ACTIONS(2884), + [anon_sym_DASH_DASH] = ACTIONS(2886), + [anon_sym_PLUS_PLUS] = ACTIONS(2886), + [anon_sym_sizeof] = ACTIONS(2884), + [anon_sym___alignof__] = ACTIONS(2884), + [anon_sym___alignof] = ACTIONS(2884), + [anon_sym__alignof] = ACTIONS(2884), + [anon_sym_alignof] = ACTIONS(2884), + [anon_sym__Alignof] = ACTIONS(2884), + [anon_sym_offsetof] = ACTIONS(2884), + [anon_sym__Generic] = ACTIONS(2884), + [anon_sym_asm] = ACTIONS(2884), + [anon_sym___asm__] = ACTIONS(2884), + [sym_number_literal] = ACTIONS(2886), + [anon_sym_L_SQUOTE] = ACTIONS(2886), + [anon_sym_u_SQUOTE] = ACTIONS(2886), + [anon_sym_U_SQUOTE] = ACTIONS(2886), + [anon_sym_u8_SQUOTE] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_L_DQUOTE] = ACTIONS(2886), + [anon_sym_u_DQUOTE] = ACTIONS(2886), + [anon_sym_U_DQUOTE] = ACTIONS(2886), + [anon_sym_u8_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [sym_true] = ACTIONS(2884), + [sym_false] = ACTIONS(2884), + [anon_sym_NULL] = ACTIONS(2884), + [anon_sym_nullptr] = ACTIONS(2884), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2884), + [anon_sym_decltype] = ACTIONS(2884), + [anon_sym_virtual] = ACTIONS(2884), + [anon_sym_alignas] = ACTIONS(2884), + [anon_sym_explicit] = ACTIONS(2884), + [anon_sym_typename] = ACTIONS(2884), + [anon_sym_template] = ACTIONS(2884), + [anon_sym_operator] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_delete] = ACTIONS(2884), + [anon_sym_throw] = ACTIONS(2884), + [anon_sym_namespace] = ACTIONS(2884), + [anon_sym_using] = ACTIONS(2884), + [anon_sym_static_assert] = ACTIONS(2884), + [anon_sym_concept] = ACTIONS(2884), + [anon_sym_co_return] = ACTIONS(2884), + [anon_sym_co_yield] = ACTIONS(2884), + [anon_sym_R_DQUOTE] = ACTIONS(2886), + [anon_sym_LR_DQUOTE] = ACTIONS(2886), + [anon_sym_uR_DQUOTE] = ACTIONS(2886), + [anon_sym_UR_DQUOTE] = ACTIONS(2886), + [anon_sym_u8R_DQUOTE] = ACTIONS(2886), + [anon_sym_co_await] = ACTIONS(2884), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_requires] = ACTIONS(2884), + [sym_this] = ACTIONS(2884), }, [830] = { - [sym_identifier] = ACTIONS(3444), - [aux_sym_preproc_include_token1] = ACTIONS(3444), - [aux_sym_preproc_def_token1] = ACTIONS(3444), - [aux_sym_preproc_if_token1] = ACTIONS(3444), - [aux_sym_preproc_if_token2] = ACTIONS(3444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3444), - [aux_sym_preproc_else_token1] = ACTIONS(3444), - [aux_sym_preproc_elif_token1] = ACTIONS(3444), - [sym_preproc_directive] = ACTIONS(3444), - [anon_sym_LPAREN2] = ACTIONS(3446), - [anon_sym_BANG] = ACTIONS(3446), - [anon_sym_TILDE] = ACTIONS(3446), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(3446), - [anon_sym_AMP] = ACTIONS(3444), - [anon_sym_SEMI] = ACTIONS(3446), - [anon_sym___extension__] = ACTIONS(3444), - [anon_sym_typedef] = ACTIONS(3444), - [anon_sym_extern] = ACTIONS(3444), - [anon_sym___attribute__] = ACTIONS(3444), - [anon_sym_COLON_COLON] = ACTIONS(3446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3446), - [anon_sym___declspec] = ACTIONS(3444), - [anon_sym___based] = ACTIONS(3444), - [anon_sym___cdecl] = ACTIONS(3444), - [anon_sym___clrcall] = ACTIONS(3444), - [anon_sym___stdcall] = ACTIONS(3444), - [anon_sym___fastcall] = ACTIONS(3444), - [anon_sym___thiscall] = ACTIONS(3444), - [anon_sym___vectorcall] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3446), - [anon_sym_signed] = ACTIONS(3444), - [anon_sym_unsigned] = ACTIONS(3444), - [anon_sym_long] = ACTIONS(3444), - [anon_sym_short] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3444), - [anon_sym_static] = ACTIONS(3444), - [anon_sym_register] = ACTIONS(3444), - [anon_sym_inline] = ACTIONS(3444), - [anon_sym___inline] = ACTIONS(3444), - [anon_sym___inline__] = ACTIONS(3444), - [anon_sym___forceinline] = ACTIONS(3444), - [anon_sym_thread_local] = ACTIONS(3444), - [anon_sym___thread] = ACTIONS(3444), - [anon_sym_const] = ACTIONS(3444), - [anon_sym_constexpr] = ACTIONS(3444), - [anon_sym_volatile] = ACTIONS(3444), - [anon_sym_restrict] = ACTIONS(3444), - [anon_sym___restrict__] = ACTIONS(3444), - [anon_sym__Atomic] = ACTIONS(3444), - [anon_sym__Noreturn] = ACTIONS(3444), - [anon_sym_noreturn] = ACTIONS(3444), - [anon_sym_mutable] = ACTIONS(3444), - [anon_sym_constinit] = ACTIONS(3444), - [anon_sym_consteval] = ACTIONS(3444), - [sym_primitive_type] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), - [anon_sym_class] = ACTIONS(3444), - [anon_sym_struct] = ACTIONS(3444), - [anon_sym_union] = ACTIONS(3444), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_switch] = ACTIONS(3444), - [anon_sym_case] = ACTIONS(3444), - [anon_sym_default] = ACTIONS(3444), - [anon_sym_while] = ACTIONS(3444), - [anon_sym_do] = ACTIONS(3444), - [anon_sym_for] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3444), - [anon_sym_break] = ACTIONS(3444), - [anon_sym_continue] = ACTIONS(3444), - [anon_sym_goto] = ACTIONS(3444), - [anon_sym_not] = ACTIONS(3444), - [anon_sym_compl] = ACTIONS(3444), - [anon_sym_DASH_DASH] = ACTIONS(3446), - [anon_sym_PLUS_PLUS] = ACTIONS(3446), - [anon_sym_sizeof] = ACTIONS(3444), - [anon_sym___alignof__] = ACTIONS(3444), - [anon_sym___alignof] = ACTIONS(3444), - [anon_sym__alignof] = ACTIONS(3444), - [anon_sym_alignof] = ACTIONS(3444), - [anon_sym__Alignof] = ACTIONS(3444), - [anon_sym_offsetof] = ACTIONS(3444), - [anon_sym__Generic] = ACTIONS(3444), - [anon_sym_asm] = ACTIONS(3444), - [anon_sym___asm__] = ACTIONS(3444), - [sym_number_literal] = ACTIONS(3446), - [anon_sym_L_SQUOTE] = ACTIONS(3446), - [anon_sym_u_SQUOTE] = ACTIONS(3446), - [anon_sym_U_SQUOTE] = ACTIONS(3446), - [anon_sym_u8_SQUOTE] = ACTIONS(3446), - [anon_sym_SQUOTE] = ACTIONS(3446), - [anon_sym_L_DQUOTE] = ACTIONS(3446), - [anon_sym_u_DQUOTE] = ACTIONS(3446), - [anon_sym_U_DQUOTE] = ACTIONS(3446), - [anon_sym_u8_DQUOTE] = ACTIONS(3446), - [anon_sym_DQUOTE] = ACTIONS(3446), - [sym_true] = ACTIONS(3444), - [sym_false] = ACTIONS(3444), - [anon_sym_NULL] = ACTIONS(3444), - [anon_sym_nullptr] = ACTIONS(3444), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3444), - [anon_sym_decltype] = ACTIONS(3444), - [anon_sym_virtual] = ACTIONS(3444), - [anon_sym_alignas] = ACTIONS(3444), - [anon_sym_explicit] = ACTIONS(3444), - [anon_sym_typename] = ACTIONS(3444), - [anon_sym_template] = ACTIONS(3444), - [anon_sym_operator] = ACTIONS(3444), - [anon_sym_try] = ACTIONS(3444), - [anon_sym_delete] = ACTIONS(3444), - [anon_sym_throw] = ACTIONS(3444), - [anon_sym_namespace] = ACTIONS(3444), - [anon_sym_using] = ACTIONS(3444), - [anon_sym_static_assert] = ACTIONS(3444), - [anon_sym_concept] = ACTIONS(3444), - [anon_sym_co_return] = ACTIONS(3444), - [anon_sym_co_yield] = ACTIONS(3444), - [anon_sym_R_DQUOTE] = ACTIONS(3446), - [anon_sym_LR_DQUOTE] = ACTIONS(3446), - [anon_sym_uR_DQUOTE] = ACTIONS(3446), - [anon_sym_UR_DQUOTE] = ACTIONS(3446), - [anon_sym_u8R_DQUOTE] = ACTIONS(3446), - [anon_sym_co_await] = ACTIONS(3444), - [anon_sym_new] = ACTIONS(3444), - [anon_sym_requires] = ACTIONS(3444), - [sym_this] = ACTIONS(3444), - }, - [831] = { - [sym_identifier] = ACTIONS(3263), - [aux_sym_preproc_include_token1] = ACTIONS(3263), - [aux_sym_preproc_def_token1] = ACTIONS(3263), - [aux_sym_preproc_if_token1] = ACTIONS(3263), - [aux_sym_preproc_if_token2] = ACTIONS(3263), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3263), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3263), - [aux_sym_preproc_else_token1] = ACTIONS(3263), - [aux_sym_preproc_elif_token1] = ACTIONS(3263), - [sym_preproc_directive] = ACTIONS(3263), - [anon_sym_LPAREN2] = ACTIONS(3265), - [anon_sym_BANG] = ACTIONS(3265), - [anon_sym_TILDE] = ACTIONS(3265), - [anon_sym_DASH] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(3263), - [anon_sym_STAR] = ACTIONS(3265), - [anon_sym_AMP_AMP] = ACTIONS(3265), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_SEMI] = ACTIONS(3265), - [anon_sym___extension__] = ACTIONS(3263), - [anon_sym_typedef] = ACTIONS(3263), - [anon_sym_extern] = ACTIONS(3263), - [anon_sym___attribute__] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(3265), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3265), - [anon_sym___declspec] = ACTIONS(3263), - [anon_sym___based] = ACTIONS(3263), - [anon_sym___cdecl] = ACTIONS(3263), - [anon_sym___clrcall] = ACTIONS(3263), - [anon_sym___stdcall] = ACTIONS(3263), - [anon_sym___fastcall] = ACTIONS(3263), - [anon_sym___thiscall] = ACTIONS(3263), - [anon_sym___vectorcall] = ACTIONS(3263), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_signed] = ACTIONS(3263), - [anon_sym_unsigned] = ACTIONS(3263), - [anon_sym_long] = ACTIONS(3263), - [anon_sym_short] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3263), - [anon_sym_static] = ACTIONS(3263), - [anon_sym_register] = ACTIONS(3263), - [anon_sym_inline] = ACTIONS(3263), - [anon_sym___inline] = ACTIONS(3263), - [anon_sym___inline__] = ACTIONS(3263), - [anon_sym___forceinline] = ACTIONS(3263), - [anon_sym_thread_local] = ACTIONS(3263), - [anon_sym___thread] = ACTIONS(3263), - [anon_sym_const] = ACTIONS(3263), - [anon_sym_constexpr] = ACTIONS(3263), - [anon_sym_volatile] = ACTIONS(3263), - [anon_sym_restrict] = ACTIONS(3263), - [anon_sym___restrict__] = ACTIONS(3263), - [anon_sym__Atomic] = ACTIONS(3263), - [anon_sym__Noreturn] = ACTIONS(3263), - [anon_sym_noreturn] = ACTIONS(3263), - [anon_sym_mutable] = ACTIONS(3263), - [anon_sym_constinit] = ACTIONS(3263), - [anon_sym_consteval] = ACTIONS(3263), - [sym_primitive_type] = ACTIONS(3263), - [anon_sym_enum] = ACTIONS(3263), - [anon_sym_class] = ACTIONS(3263), - [anon_sym_struct] = ACTIONS(3263), - [anon_sym_union] = ACTIONS(3263), - [anon_sym_if] = ACTIONS(3263), - [anon_sym_switch] = ACTIONS(3263), - [anon_sym_case] = ACTIONS(3263), - [anon_sym_default] = ACTIONS(3263), - [anon_sym_while] = ACTIONS(3263), - [anon_sym_do] = ACTIONS(3263), - [anon_sym_for] = ACTIONS(3263), - [anon_sym_return] = ACTIONS(3263), - [anon_sym_break] = ACTIONS(3263), - [anon_sym_continue] = ACTIONS(3263), - [anon_sym_goto] = ACTIONS(3263), - [anon_sym_not] = ACTIONS(3263), - [anon_sym_compl] = ACTIONS(3263), - [anon_sym_DASH_DASH] = ACTIONS(3265), - [anon_sym_PLUS_PLUS] = ACTIONS(3265), - [anon_sym_sizeof] = ACTIONS(3263), - [anon_sym___alignof__] = ACTIONS(3263), - [anon_sym___alignof] = ACTIONS(3263), - [anon_sym__alignof] = ACTIONS(3263), - [anon_sym_alignof] = ACTIONS(3263), - [anon_sym__Alignof] = ACTIONS(3263), - [anon_sym_offsetof] = ACTIONS(3263), - [anon_sym__Generic] = ACTIONS(3263), - [anon_sym_asm] = ACTIONS(3263), - [anon_sym___asm__] = ACTIONS(3263), - [sym_number_literal] = ACTIONS(3265), - [anon_sym_L_SQUOTE] = ACTIONS(3265), - [anon_sym_u_SQUOTE] = ACTIONS(3265), - [anon_sym_U_SQUOTE] = ACTIONS(3265), - [anon_sym_u8_SQUOTE] = ACTIONS(3265), - [anon_sym_SQUOTE] = ACTIONS(3265), - [anon_sym_L_DQUOTE] = ACTIONS(3265), - [anon_sym_u_DQUOTE] = ACTIONS(3265), - [anon_sym_U_DQUOTE] = ACTIONS(3265), - [anon_sym_u8_DQUOTE] = ACTIONS(3265), - [anon_sym_DQUOTE] = ACTIONS(3265), - [sym_true] = ACTIONS(3263), - [sym_false] = ACTIONS(3263), - [anon_sym_NULL] = ACTIONS(3263), - [anon_sym_nullptr] = ACTIONS(3263), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3263), - [anon_sym_decltype] = ACTIONS(3263), - [anon_sym_virtual] = ACTIONS(3263), - [anon_sym_alignas] = ACTIONS(3263), - [anon_sym_explicit] = ACTIONS(3263), - [anon_sym_typename] = ACTIONS(3263), - [anon_sym_template] = ACTIONS(3263), - [anon_sym_operator] = ACTIONS(3263), - [anon_sym_try] = ACTIONS(3263), - [anon_sym_delete] = ACTIONS(3263), - [anon_sym_throw] = ACTIONS(3263), - [anon_sym_namespace] = ACTIONS(3263), - [anon_sym_using] = ACTIONS(3263), - [anon_sym_static_assert] = ACTIONS(3263), - [anon_sym_concept] = ACTIONS(3263), - [anon_sym_co_return] = ACTIONS(3263), - [anon_sym_co_yield] = ACTIONS(3263), - [anon_sym_R_DQUOTE] = ACTIONS(3265), - [anon_sym_LR_DQUOTE] = ACTIONS(3265), - [anon_sym_uR_DQUOTE] = ACTIONS(3265), - [anon_sym_UR_DQUOTE] = ACTIONS(3265), - [anon_sym_u8R_DQUOTE] = ACTIONS(3265), - [anon_sym_co_await] = ACTIONS(3263), - [anon_sym_new] = ACTIONS(3263), - [anon_sym_requires] = ACTIONS(3263), - [sym_this] = ACTIONS(3263), - }, - [832] = { - [sym_identifier] = ACTIONS(3362), - [aux_sym_preproc_include_token1] = ACTIONS(3362), - [aux_sym_preproc_def_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token2] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), - [aux_sym_preproc_else_token1] = ACTIONS(3362), - [aux_sym_preproc_elif_token1] = ACTIONS(3362), - [sym_preproc_directive] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3362), - [anon_sym_PLUS] = ACTIONS(3362), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym___extension__] = ACTIONS(3362), - [anon_sym_typedef] = ACTIONS(3362), - [anon_sym_extern] = ACTIONS(3362), - [anon_sym___attribute__] = ACTIONS(3362), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), - [anon_sym___declspec] = ACTIONS(3362), - [anon_sym___based] = ACTIONS(3362), - [anon_sym___cdecl] = ACTIONS(3362), - [anon_sym___clrcall] = ACTIONS(3362), - [anon_sym___stdcall] = ACTIONS(3362), - [anon_sym___fastcall] = ACTIONS(3362), - [anon_sym___thiscall] = ACTIONS(3362), - [anon_sym___vectorcall] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_signed] = ACTIONS(3362), - [anon_sym_unsigned] = ACTIONS(3362), - [anon_sym_long] = ACTIONS(3362), - [anon_sym_short] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_register] = ACTIONS(3362), - [anon_sym_inline] = ACTIONS(3362), - [anon_sym___inline] = ACTIONS(3362), - [anon_sym___inline__] = ACTIONS(3362), - [anon_sym___forceinline] = ACTIONS(3362), - [anon_sym_thread_local] = ACTIONS(3362), - [anon_sym___thread] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_constexpr] = ACTIONS(3362), - [anon_sym_volatile] = ACTIONS(3362), - [anon_sym_restrict] = ACTIONS(3362), - [anon_sym___restrict__] = ACTIONS(3362), - [anon_sym__Atomic] = ACTIONS(3362), - [anon_sym__Noreturn] = ACTIONS(3362), - [anon_sym_noreturn] = ACTIONS(3362), - [anon_sym_mutable] = ACTIONS(3362), - [anon_sym_constinit] = ACTIONS(3362), - [anon_sym_consteval] = ACTIONS(3362), - [sym_primitive_type] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3362), - [anon_sym_case] = ACTIONS(3362), - [anon_sym_default] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_do] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_goto] = ACTIONS(3362), - [anon_sym_not] = ACTIONS(3362), - [anon_sym_compl] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_sizeof] = ACTIONS(3362), - [anon_sym___alignof__] = ACTIONS(3362), - [anon_sym___alignof] = ACTIONS(3362), - [anon_sym__alignof] = ACTIONS(3362), - [anon_sym_alignof] = ACTIONS(3362), - [anon_sym__Alignof] = ACTIONS(3362), - [anon_sym_offsetof] = ACTIONS(3362), - [anon_sym__Generic] = ACTIONS(3362), - [anon_sym_asm] = ACTIONS(3362), - [anon_sym___asm__] = ACTIONS(3362), - [sym_number_literal] = ACTIONS(3364), - [anon_sym_L_SQUOTE] = ACTIONS(3364), - [anon_sym_u_SQUOTE] = ACTIONS(3364), - [anon_sym_U_SQUOTE] = ACTIONS(3364), - [anon_sym_u8_SQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_L_DQUOTE] = ACTIONS(3364), - [anon_sym_u_DQUOTE] = ACTIONS(3364), - [anon_sym_U_DQUOTE] = ACTIONS(3364), - [anon_sym_u8_DQUOTE] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [sym_true] = ACTIONS(3362), - [sym_false] = ACTIONS(3362), - [anon_sym_NULL] = ACTIONS(3362), - [anon_sym_nullptr] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3362), - [anon_sym_decltype] = ACTIONS(3362), - [anon_sym_virtual] = ACTIONS(3362), - [anon_sym_alignas] = ACTIONS(3362), - [anon_sym_explicit] = ACTIONS(3362), - [anon_sym_typename] = ACTIONS(3362), - [anon_sym_template] = ACTIONS(3362), - [anon_sym_operator] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [anon_sym_delete] = ACTIONS(3362), - [anon_sym_throw] = ACTIONS(3362), - [anon_sym_namespace] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_static_assert] = ACTIONS(3362), - [anon_sym_concept] = ACTIONS(3362), - [anon_sym_co_return] = ACTIONS(3362), - [anon_sym_co_yield] = ACTIONS(3362), - [anon_sym_R_DQUOTE] = ACTIONS(3364), - [anon_sym_LR_DQUOTE] = ACTIONS(3364), - [anon_sym_uR_DQUOTE] = ACTIONS(3364), - [anon_sym_UR_DQUOTE] = ACTIONS(3364), - [anon_sym_u8R_DQUOTE] = ACTIONS(3364), - [anon_sym_co_await] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3362), - [anon_sym_requires] = ACTIONS(3362), - [sym_this] = ACTIONS(3362), - }, - [833] = { - [sym_identifier] = ACTIONS(3342), - [aux_sym_preproc_include_token1] = ACTIONS(3342), - [aux_sym_preproc_def_token1] = ACTIONS(3342), - [aux_sym_preproc_if_token1] = ACTIONS(3342), - [aux_sym_preproc_if_token2] = ACTIONS(3342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3342), - [aux_sym_preproc_else_token1] = ACTIONS(3342), - [aux_sym_preproc_elif_token1] = ACTIONS(3342), - [sym_preproc_directive] = ACTIONS(3342), - [anon_sym_LPAREN2] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3342), - [anon_sym_STAR] = ACTIONS(3344), - [anon_sym_AMP_AMP] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3342), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym___extension__] = ACTIONS(3342), - [anon_sym_typedef] = ACTIONS(3342), - [anon_sym_extern] = ACTIONS(3342), - [anon_sym___attribute__] = ACTIONS(3342), - [anon_sym_COLON_COLON] = ACTIONS(3344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3344), - [anon_sym___declspec] = ACTIONS(3342), - [anon_sym___based] = ACTIONS(3342), - [anon_sym___cdecl] = ACTIONS(3342), - [anon_sym___clrcall] = ACTIONS(3342), - [anon_sym___stdcall] = ACTIONS(3342), - [anon_sym___fastcall] = ACTIONS(3342), - [anon_sym___thiscall] = ACTIONS(3342), - [anon_sym___vectorcall] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_signed] = ACTIONS(3342), - [anon_sym_unsigned] = ACTIONS(3342), - [anon_sym_long] = ACTIONS(3342), - [anon_sym_short] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_static] = ACTIONS(3342), - [anon_sym_register] = ACTIONS(3342), - [anon_sym_inline] = ACTIONS(3342), - [anon_sym___inline] = ACTIONS(3342), - [anon_sym___inline__] = ACTIONS(3342), - [anon_sym___forceinline] = ACTIONS(3342), - [anon_sym_thread_local] = ACTIONS(3342), - [anon_sym___thread] = ACTIONS(3342), - [anon_sym_const] = ACTIONS(3342), - [anon_sym_constexpr] = ACTIONS(3342), - [anon_sym_volatile] = ACTIONS(3342), - [anon_sym_restrict] = ACTIONS(3342), - [anon_sym___restrict__] = ACTIONS(3342), - [anon_sym__Atomic] = ACTIONS(3342), - [anon_sym__Noreturn] = ACTIONS(3342), - [anon_sym_noreturn] = ACTIONS(3342), - [anon_sym_mutable] = ACTIONS(3342), - [anon_sym_constinit] = ACTIONS(3342), - [anon_sym_consteval] = ACTIONS(3342), - [sym_primitive_type] = ACTIONS(3342), - [anon_sym_enum] = ACTIONS(3342), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3342), - [anon_sym_union] = ACTIONS(3342), - [anon_sym_if] = ACTIONS(3342), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3342), - [anon_sym_default] = ACTIONS(3342), - [anon_sym_while] = ACTIONS(3342), - [anon_sym_do] = ACTIONS(3342), - [anon_sym_for] = ACTIONS(3342), - [anon_sym_return] = ACTIONS(3342), - [anon_sym_break] = ACTIONS(3342), - [anon_sym_continue] = ACTIONS(3342), - [anon_sym_goto] = ACTIONS(3342), - [anon_sym_not] = ACTIONS(3342), - [anon_sym_compl] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_sizeof] = ACTIONS(3342), - [anon_sym___alignof__] = ACTIONS(3342), - [anon_sym___alignof] = ACTIONS(3342), - [anon_sym__alignof] = ACTIONS(3342), - [anon_sym_alignof] = ACTIONS(3342), - [anon_sym__Alignof] = ACTIONS(3342), - [anon_sym_offsetof] = ACTIONS(3342), - [anon_sym__Generic] = ACTIONS(3342), - [anon_sym_asm] = ACTIONS(3342), - [anon_sym___asm__] = ACTIONS(3342), - [sym_number_literal] = ACTIONS(3344), - [anon_sym_L_SQUOTE] = ACTIONS(3344), - [anon_sym_u_SQUOTE] = ACTIONS(3344), - [anon_sym_U_SQUOTE] = ACTIONS(3344), - [anon_sym_u8_SQUOTE] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3344), - [anon_sym_L_DQUOTE] = ACTIONS(3344), - [anon_sym_u_DQUOTE] = ACTIONS(3344), - [anon_sym_U_DQUOTE] = ACTIONS(3344), - [anon_sym_u8_DQUOTE] = ACTIONS(3344), - [anon_sym_DQUOTE] = ACTIONS(3344), - [sym_true] = ACTIONS(3342), - [sym_false] = ACTIONS(3342), - [anon_sym_NULL] = ACTIONS(3342), - [anon_sym_nullptr] = ACTIONS(3342), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3342), - [anon_sym_decltype] = ACTIONS(3342), - [anon_sym_virtual] = ACTIONS(3342), - [anon_sym_alignas] = ACTIONS(3342), - [anon_sym_explicit] = ACTIONS(3342), - [anon_sym_typename] = ACTIONS(3342), - [anon_sym_template] = ACTIONS(3342), - [anon_sym_operator] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(3342), - [anon_sym_delete] = ACTIONS(3342), - [anon_sym_throw] = ACTIONS(3342), - [anon_sym_namespace] = ACTIONS(3342), - [anon_sym_using] = ACTIONS(3342), - [anon_sym_static_assert] = ACTIONS(3342), - [anon_sym_concept] = ACTIONS(3342), - [anon_sym_co_return] = ACTIONS(3342), - [anon_sym_co_yield] = ACTIONS(3342), - [anon_sym_R_DQUOTE] = ACTIONS(3344), - [anon_sym_LR_DQUOTE] = ACTIONS(3344), - [anon_sym_uR_DQUOTE] = ACTIONS(3344), - [anon_sym_UR_DQUOTE] = ACTIONS(3344), - [anon_sym_u8R_DQUOTE] = ACTIONS(3344), - [anon_sym_co_await] = ACTIONS(3342), - [anon_sym_new] = ACTIONS(3342), - [anon_sym_requires] = ACTIONS(3342), - [sym_this] = ACTIONS(3342), - }, - [834] = { - [sym_identifier] = ACTIONS(3224), - [aux_sym_preproc_include_token1] = ACTIONS(3224), - [aux_sym_preproc_def_token1] = ACTIONS(3224), - [aux_sym_preproc_if_token1] = ACTIONS(3224), - [aux_sym_preproc_if_token2] = ACTIONS(3224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3224), - [aux_sym_preproc_else_token1] = ACTIONS(3224), - [aux_sym_preproc_elif_token1] = ACTIONS(3224), - [sym_preproc_directive] = ACTIONS(3224), - [anon_sym_LPAREN2] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3226), - [anon_sym_AMP_AMP] = ACTIONS(3226), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3226), - [anon_sym___extension__] = ACTIONS(3224), - [anon_sym_typedef] = ACTIONS(3224), - [anon_sym_extern] = ACTIONS(3224), - [anon_sym___attribute__] = ACTIONS(3224), - [anon_sym_COLON_COLON] = ACTIONS(3226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3226), - [anon_sym___declspec] = ACTIONS(3224), - [anon_sym___based] = ACTIONS(3224), - [anon_sym___cdecl] = ACTIONS(3224), - [anon_sym___clrcall] = ACTIONS(3224), - [anon_sym___stdcall] = ACTIONS(3224), - [anon_sym___fastcall] = ACTIONS(3224), - [anon_sym___thiscall] = ACTIONS(3224), - [anon_sym___vectorcall] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_signed] = ACTIONS(3224), - [anon_sym_unsigned] = ACTIONS(3224), - [anon_sym_long] = ACTIONS(3224), - [anon_sym_short] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_register] = ACTIONS(3224), - [anon_sym_inline] = ACTIONS(3224), - [anon_sym___inline] = ACTIONS(3224), - [anon_sym___inline__] = ACTIONS(3224), - [anon_sym___forceinline] = ACTIONS(3224), - [anon_sym_thread_local] = ACTIONS(3224), - [anon_sym___thread] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_constexpr] = ACTIONS(3224), - [anon_sym_volatile] = ACTIONS(3224), - [anon_sym_restrict] = ACTIONS(3224), - [anon_sym___restrict__] = ACTIONS(3224), - [anon_sym__Atomic] = ACTIONS(3224), - [anon_sym__Noreturn] = ACTIONS(3224), - [anon_sym_noreturn] = ACTIONS(3224), - [anon_sym_mutable] = ACTIONS(3224), - [anon_sym_constinit] = ACTIONS(3224), - [anon_sym_consteval] = ACTIONS(3224), - [sym_primitive_type] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_struct] = ACTIONS(3224), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_goto] = ACTIONS(3224), - [anon_sym_not] = ACTIONS(3224), - [anon_sym_compl] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_sizeof] = ACTIONS(3224), - [anon_sym___alignof__] = ACTIONS(3224), - [anon_sym___alignof] = ACTIONS(3224), - [anon_sym__alignof] = ACTIONS(3224), - [anon_sym_alignof] = ACTIONS(3224), - [anon_sym__Alignof] = ACTIONS(3224), - [anon_sym_offsetof] = ACTIONS(3224), - [anon_sym__Generic] = ACTIONS(3224), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3226), - [anon_sym_u_SQUOTE] = ACTIONS(3226), - [anon_sym_U_SQUOTE] = ACTIONS(3226), - [anon_sym_u8_SQUOTE] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [anon_sym_L_DQUOTE] = ACTIONS(3226), - [anon_sym_u_DQUOTE] = ACTIONS(3226), - [anon_sym_U_DQUOTE] = ACTIONS(3226), - [anon_sym_u8_DQUOTE] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [anon_sym_NULL] = ACTIONS(3224), - [anon_sym_nullptr] = ACTIONS(3224), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3224), - [anon_sym_decltype] = ACTIONS(3224), - [anon_sym_virtual] = ACTIONS(3224), - [anon_sym_alignas] = ACTIONS(3224), - [anon_sym_explicit] = ACTIONS(3224), - [anon_sym_typename] = ACTIONS(3224), - [anon_sym_template] = ACTIONS(3224), - [anon_sym_operator] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_using] = ACTIONS(3224), - [anon_sym_static_assert] = ACTIONS(3224), - [anon_sym_concept] = ACTIONS(3224), - [anon_sym_co_return] = ACTIONS(3224), - [anon_sym_co_yield] = ACTIONS(3224), - [anon_sym_R_DQUOTE] = ACTIONS(3226), - [anon_sym_LR_DQUOTE] = ACTIONS(3226), - [anon_sym_uR_DQUOTE] = ACTIONS(3226), - [anon_sym_UR_DQUOTE] = ACTIONS(3226), - [anon_sym_u8R_DQUOTE] = ACTIONS(3226), - [anon_sym_co_await] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_requires] = ACTIONS(3224), - [sym_this] = ACTIONS(3224), - }, - [835] = { - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_include_token1] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2889), - [anon_sym_RPAREN] = ACTIONS(2889), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym___cdecl] = ACTIONS(2194), - [anon_sym___clrcall] = ACTIONS(2194), - [anon_sym___stdcall] = ACTIONS(2194), - [anon_sym___fastcall] = ACTIONS(2194), - [anon_sym___thiscall] = ACTIONS(2194), - [anon_sym___vectorcall] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_goto] = ACTIONS(2194), - [anon_sym_not] = ACTIONS(2194), - [anon_sym_compl] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_sizeof] = ACTIONS(2194), - [anon_sym___alignof__] = ACTIONS(2194), - [anon_sym___alignof] = ACTIONS(2194), - [anon_sym__alignof] = ACTIONS(2194), - [anon_sym_alignof] = ACTIONS(2194), - [anon_sym__Alignof] = ACTIONS(2194), - [anon_sym_offsetof] = ACTIONS(2194), - [anon_sym__Generic] = ACTIONS(2194), - [anon_sym_asm] = ACTIONS(2194), - [anon_sym___asm__] = ACTIONS(2194), - [sym_number_literal] = ACTIONS(2192), - [anon_sym_L_SQUOTE] = ACTIONS(2192), - [anon_sym_u_SQUOTE] = ACTIONS(2192), - [anon_sym_U_SQUOTE] = ACTIONS(2192), - [anon_sym_u8_SQUOTE] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_L_DQUOTE] = ACTIONS(2192), - [anon_sym_u_DQUOTE] = ACTIONS(2192), - [anon_sym_U_DQUOTE] = ACTIONS(2192), - [anon_sym_u8_DQUOTE] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [anon_sym_NULL] = ACTIONS(2194), - [anon_sym_nullptr] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_delete] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - [anon_sym_concept] = ACTIONS(2194), - [anon_sym_co_return] = ACTIONS(2194), - [anon_sym_co_yield] = ACTIONS(2194), - [anon_sym_R_DQUOTE] = ACTIONS(2192), - [anon_sym_LR_DQUOTE] = ACTIONS(2192), - [anon_sym_uR_DQUOTE] = ACTIONS(2192), - [anon_sym_UR_DQUOTE] = ACTIONS(2192), - [anon_sym_u8R_DQUOTE] = ACTIONS(2192), - [anon_sym_co_await] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_requires] = ACTIONS(2194), - [sym_this] = ACTIONS(2194), - }, - [836] = { - [sym_identifier] = ACTIONS(3332), - [aux_sym_preproc_include_token1] = ACTIONS(3332), - [aux_sym_preproc_def_token1] = ACTIONS(3332), - [aux_sym_preproc_if_token1] = ACTIONS(3332), - [aux_sym_preproc_if_token2] = ACTIONS(3332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3332), - [aux_sym_preproc_else_token1] = ACTIONS(3332), - [aux_sym_preproc_elif_token1] = ACTIONS(3332), - [sym_preproc_directive] = ACTIONS(3332), - [anon_sym_LPAREN2] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_STAR] = ACTIONS(3334), - [anon_sym_AMP_AMP] = ACTIONS(3334), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym___extension__] = ACTIONS(3332), - [anon_sym_typedef] = ACTIONS(3332), - [anon_sym_extern] = ACTIONS(3332), - [anon_sym___attribute__] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3334), - [anon_sym___declspec] = ACTIONS(3332), - [anon_sym___based] = ACTIONS(3332), - [anon_sym___cdecl] = ACTIONS(3332), - [anon_sym___clrcall] = ACTIONS(3332), - [anon_sym___stdcall] = ACTIONS(3332), - [anon_sym___fastcall] = ACTIONS(3332), - [anon_sym___thiscall] = ACTIONS(3332), - [anon_sym___vectorcall] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3332), - [anon_sym_unsigned] = ACTIONS(3332), - [anon_sym_long] = ACTIONS(3332), - [anon_sym_short] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_register] = ACTIONS(3332), - [anon_sym_inline] = ACTIONS(3332), - [anon_sym___inline] = ACTIONS(3332), - [anon_sym___inline__] = ACTIONS(3332), - [anon_sym___forceinline] = ACTIONS(3332), - [anon_sym_thread_local] = ACTIONS(3332), - [anon_sym___thread] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_constexpr] = ACTIONS(3332), - [anon_sym_volatile] = ACTIONS(3332), - [anon_sym_restrict] = ACTIONS(3332), - [anon_sym___restrict__] = ACTIONS(3332), - [anon_sym__Atomic] = ACTIONS(3332), - [anon_sym__Noreturn] = ACTIONS(3332), - [anon_sym_noreturn] = ACTIONS(3332), - [anon_sym_mutable] = ACTIONS(3332), - [anon_sym_constinit] = ACTIONS(3332), - [anon_sym_consteval] = ACTIONS(3332), - [sym_primitive_type] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_struct] = ACTIONS(3332), - [anon_sym_union] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_case] = ACTIONS(3332), - [anon_sym_default] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_goto] = ACTIONS(3332), - [anon_sym_not] = ACTIONS(3332), - [anon_sym_compl] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_sizeof] = ACTIONS(3332), - [anon_sym___alignof__] = ACTIONS(3332), - [anon_sym___alignof] = ACTIONS(3332), - [anon_sym__alignof] = ACTIONS(3332), - [anon_sym_alignof] = ACTIONS(3332), - [anon_sym__Alignof] = ACTIONS(3332), - [anon_sym_offsetof] = ACTIONS(3332), - [anon_sym__Generic] = ACTIONS(3332), - [anon_sym_asm] = ACTIONS(3332), - [anon_sym___asm__] = ACTIONS(3332), - [sym_number_literal] = ACTIONS(3334), - [anon_sym_L_SQUOTE] = ACTIONS(3334), - [anon_sym_u_SQUOTE] = ACTIONS(3334), - [anon_sym_U_SQUOTE] = ACTIONS(3334), - [anon_sym_u8_SQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_L_DQUOTE] = ACTIONS(3334), - [anon_sym_u_DQUOTE] = ACTIONS(3334), - [anon_sym_U_DQUOTE] = ACTIONS(3334), - [anon_sym_u8_DQUOTE] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [anon_sym_NULL] = ACTIONS(3332), - [anon_sym_nullptr] = ACTIONS(3332), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3332), - [anon_sym_decltype] = ACTIONS(3332), - [anon_sym_virtual] = ACTIONS(3332), - [anon_sym_alignas] = ACTIONS(3332), - [anon_sym_explicit] = ACTIONS(3332), - [anon_sym_typename] = ACTIONS(3332), - [anon_sym_template] = ACTIONS(3332), - [anon_sym_operator] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_static_assert] = ACTIONS(3332), - [anon_sym_concept] = ACTIONS(3332), - [anon_sym_co_return] = ACTIONS(3332), - [anon_sym_co_yield] = ACTIONS(3332), - [anon_sym_R_DQUOTE] = ACTIONS(3334), - [anon_sym_LR_DQUOTE] = ACTIONS(3334), - [anon_sym_uR_DQUOTE] = ACTIONS(3334), - [anon_sym_UR_DQUOTE] = ACTIONS(3334), - [anon_sym_u8R_DQUOTE] = ACTIONS(3334), - [anon_sym_co_await] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_requires] = ACTIONS(3332), - [sym_this] = ACTIONS(3332), - }, - [837] = { - [sym_identifier] = ACTIONS(2768), - [aux_sym_preproc_include_token1] = ACTIONS(2768), - [aux_sym_preproc_def_token1] = ACTIONS(2768), - [aux_sym_preproc_if_token1] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2768), - [sym_preproc_directive] = ACTIONS(2768), - [anon_sym_LPAREN2] = ACTIONS(2770), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_TILDE] = ACTIONS(2770), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_SEMI] = ACTIONS(2770), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym_typedef] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2770), - [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(2770), - [anon_sym_RBRACE] = 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(2768), - [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_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = 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_if] = ACTIONS(2768), - [anon_sym_else] = ACTIONS(2768), - [anon_sym_switch] = ACTIONS(2768), - [anon_sym_case] = ACTIONS(2768), - [anon_sym_default] = ACTIONS(2768), - [anon_sym_while] = ACTIONS(2768), - [anon_sym_do] = ACTIONS(2768), - [anon_sym_for] = ACTIONS(2768), - [anon_sym_return] = ACTIONS(2768), - [anon_sym_break] = ACTIONS(2768), - [anon_sym_continue] = ACTIONS(2768), - [anon_sym_goto] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(2768), - [anon_sym_compl] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2770), - [anon_sym_PLUS_PLUS] = ACTIONS(2770), - [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_asm] = ACTIONS(2768), - [anon_sym___asm__] = ACTIONS(2768), - [sym_number_literal] = ACTIONS(2770), - [anon_sym_L_SQUOTE] = ACTIONS(2770), - [anon_sym_u_SQUOTE] = ACTIONS(2770), - [anon_sym_U_SQUOTE] = ACTIONS(2770), - [anon_sym_u8_SQUOTE] = ACTIONS(2770), - [anon_sym_SQUOTE] = ACTIONS(2770), - [anon_sym_L_DQUOTE] = ACTIONS(2770), - [anon_sym_u_DQUOTE] = ACTIONS(2770), - [anon_sym_U_DQUOTE] = ACTIONS(2770), - [anon_sym_u8_DQUOTE] = ACTIONS(2770), - [anon_sym_DQUOTE] = ACTIONS(2770), - [sym_true] = ACTIONS(2768), - [sym_false] = ACTIONS(2768), - [anon_sym_NULL] = ACTIONS(2768), - [anon_sym_nullptr] = ACTIONS(2768), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2768), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym_explicit] = ACTIONS(2768), - [anon_sym_typename] = ACTIONS(2768), - [anon_sym_template] = ACTIONS(2768), - [anon_sym_operator] = ACTIONS(2768), - [anon_sym_try] = ACTIONS(2768), - [anon_sym_delete] = ACTIONS(2768), - [anon_sym_throw] = ACTIONS(2768), - [anon_sym_namespace] = ACTIONS(2768), - [anon_sym_using] = ACTIONS(2768), - [anon_sym_static_assert] = ACTIONS(2768), - [anon_sym_concept] = ACTIONS(2768), - [anon_sym_co_return] = ACTIONS(2768), - [anon_sym_co_yield] = ACTIONS(2768), - [anon_sym_catch] = ACTIONS(2768), - [anon_sym_R_DQUOTE] = ACTIONS(2770), - [anon_sym_LR_DQUOTE] = ACTIONS(2770), - [anon_sym_uR_DQUOTE] = ACTIONS(2770), - [anon_sym_UR_DQUOTE] = ACTIONS(2770), - [anon_sym_u8R_DQUOTE] = ACTIONS(2770), - [anon_sym_co_await] = ACTIONS(2768), - [anon_sym_new] = ACTIONS(2768), - [anon_sym_requires] = ACTIONS(2768), - [sym_this] = ACTIONS(2768), - }, - [838] = { - [sym_identifier] = ACTIONS(3322), - [aux_sym_preproc_include_token1] = ACTIONS(3322), - [aux_sym_preproc_def_token1] = ACTIONS(3322), - [aux_sym_preproc_if_token1] = ACTIONS(3322), - [aux_sym_preproc_if_token2] = ACTIONS(3322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3322), - [aux_sym_preproc_else_token1] = ACTIONS(3322), - [aux_sym_preproc_elif_token1] = ACTIONS(3322), - [sym_preproc_directive] = ACTIONS(3322), - [anon_sym_LPAREN2] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3322), - [anon_sym_PLUS] = ACTIONS(3322), - [anon_sym_STAR] = ACTIONS(3324), - [anon_sym_AMP_AMP] = ACTIONS(3324), - [anon_sym_AMP] = ACTIONS(3322), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym___extension__] = ACTIONS(3322), - [anon_sym_typedef] = ACTIONS(3322), - [anon_sym_extern] = ACTIONS(3322), - [anon_sym___attribute__] = ACTIONS(3322), - [anon_sym_COLON_COLON] = ACTIONS(3324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), - [anon_sym___declspec] = ACTIONS(3322), - [anon_sym___based] = ACTIONS(3322), - [anon_sym___cdecl] = ACTIONS(3322), - [anon_sym___clrcall] = ACTIONS(3322), - [anon_sym___stdcall] = ACTIONS(3322), - [anon_sym___fastcall] = ACTIONS(3322), - [anon_sym___thiscall] = ACTIONS(3322), - [anon_sym___vectorcall] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_signed] = ACTIONS(3322), - [anon_sym_unsigned] = ACTIONS(3322), - [anon_sym_long] = ACTIONS(3322), - [anon_sym_short] = ACTIONS(3322), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_static] = ACTIONS(3322), - [anon_sym_register] = ACTIONS(3322), - [anon_sym_inline] = ACTIONS(3322), - [anon_sym___inline] = ACTIONS(3322), - [anon_sym___inline__] = ACTIONS(3322), - [anon_sym___forceinline] = ACTIONS(3322), - [anon_sym_thread_local] = ACTIONS(3322), - [anon_sym___thread] = ACTIONS(3322), - [anon_sym_const] = ACTIONS(3322), - [anon_sym_constexpr] = ACTIONS(3322), - [anon_sym_volatile] = ACTIONS(3322), - [anon_sym_restrict] = ACTIONS(3322), - [anon_sym___restrict__] = ACTIONS(3322), - [anon_sym__Atomic] = ACTIONS(3322), - [anon_sym__Noreturn] = ACTIONS(3322), - [anon_sym_noreturn] = ACTIONS(3322), - [anon_sym_mutable] = ACTIONS(3322), - [anon_sym_constinit] = ACTIONS(3322), - [anon_sym_consteval] = ACTIONS(3322), - [sym_primitive_type] = ACTIONS(3322), - [anon_sym_enum] = ACTIONS(3322), - [anon_sym_class] = ACTIONS(3322), - [anon_sym_struct] = ACTIONS(3322), - [anon_sym_union] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3322), - [anon_sym_switch] = ACTIONS(3322), - [anon_sym_case] = ACTIONS(3322), - [anon_sym_default] = ACTIONS(3322), - [anon_sym_while] = ACTIONS(3322), - [anon_sym_do] = ACTIONS(3322), - [anon_sym_for] = ACTIONS(3322), - [anon_sym_return] = ACTIONS(3322), - [anon_sym_break] = ACTIONS(3322), - [anon_sym_continue] = ACTIONS(3322), - [anon_sym_goto] = ACTIONS(3322), - [anon_sym_not] = ACTIONS(3322), - [anon_sym_compl] = ACTIONS(3322), - [anon_sym_DASH_DASH] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_sizeof] = ACTIONS(3322), - [anon_sym___alignof__] = ACTIONS(3322), - [anon_sym___alignof] = ACTIONS(3322), - [anon_sym__alignof] = ACTIONS(3322), - [anon_sym_alignof] = ACTIONS(3322), - [anon_sym__Alignof] = ACTIONS(3322), - [anon_sym_offsetof] = ACTIONS(3322), - [anon_sym__Generic] = ACTIONS(3322), - [anon_sym_asm] = ACTIONS(3322), - [anon_sym___asm__] = ACTIONS(3322), - [sym_number_literal] = ACTIONS(3324), - [anon_sym_L_SQUOTE] = ACTIONS(3324), - [anon_sym_u_SQUOTE] = ACTIONS(3324), - [anon_sym_U_SQUOTE] = ACTIONS(3324), - [anon_sym_u8_SQUOTE] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_L_DQUOTE] = ACTIONS(3324), - [anon_sym_u_DQUOTE] = ACTIONS(3324), - [anon_sym_U_DQUOTE] = ACTIONS(3324), - [anon_sym_u8_DQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [anon_sym_NULL] = ACTIONS(3322), - [anon_sym_nullptr] = ACTIONS(3322), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3322), - [anon_sym_decltype] = ACTIONS(3322), - [anon_sym_virtual] = ACTIONS(3322), - [anon_sym_alignas] = ACTIONS(3322), - [anon_sym_explicit] = ACTIONS(3322), - [anon_sym_typename] = ACTIONS(3322), - [anon_sym_template] = ACTIONS(3322), - [anon_sym_operator] = ACTIONS(3322), - [anon_sym_try] = ACTIONS(3322), - [anon_sym_delete] = ACTIONS(3322), - [anon_sym_throw] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_using] = ACTIONS(3322), - [anon_sym_static_assert] = ACTIONS(3322), - [anon_sym_concept] = ACTIONS(3322), - [anon_sym_co_return] = ACTIONS(3322), - [anon_sym_co_yield] = ACTIONS(3322), - [anon_sym_R_DQUOTE] = ACTIONS(3324), - [anon_sym_LR_DQUOTE] = ACTIONS(3324), - [anon_sym_uR_DQUOTE] = ACTIONS(3324), - [anon_sym_UR_DQUOTE] = ACTIONS(3324), - [anon_sym_u8R_DQUOTE] = ACTIONS(3324), - [anon_sym_co_await] = ACTIONS(3322), - [anon_sym_new] = ACTIONS(3322), - [anon_sym_requires] = ACTIONS(3322), - [sym_this] = ACTIONS(3322), + [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_extern] = ACTIONS(3123), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3123), + [anon_sym_constinit] = ACTIONS(3123), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3123), + [anon_sym_alignas] = 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_using] = 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), + }, + [831] = { + [sym_identifier] = ACTIONS(3208), + [aux_sym_preproc_include_token1] = ACTIONS(3208), + [aux_sym_preproc_def_token1] = ACTIONS(3208), + [aux_sym_preproc_if_token1] = ACTIONS(3208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3208), + [sym_preproc_directive] = ACTIONS(3208), + [anon_sym_LPAREN2] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_AMP_AMP] = ACTIONS(3210), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym_SEMI] = ACTIONS(3210), + [anon_sym___extension__] = ACTIONS(3208), + [anon_sym_typedef] = ACTIONS(3208), + [anon_sym_extern] = ACTIONS(3208), + [anon_sym___attribute__] = ACTIONS(3208), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3210), + [anon_sym___declspec] = ACTIONS(3208), + [anon_sym___based] = ACTIONS(3208), + [anon_sym___cdecl] = ACTIONS(3208), + [anon_sym___clrcall] = ACTIONS(3208), + [anon_sym___stdcall] = ACTIONS(3208), + [anon_sym___fastcall] = ACTIONS(3208), + [anon_sym___thiscall] = ACTIONS(3208), + [anon_sym___vectorcall] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3210), + [anon_sym_signed] = ACTIONS(3208), + [anon_sym_unsigned] = ACTIONS(3208), + [anon_sym_long] = ACTIONS(3208), + [anon_sym_short] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_static] = ACTIONS(3208), + [anon_sym_register] = ACTIONS(3208), + [anon_sym_inline] = ACTIONS(3208), + [anon_sym___inline] = ACTIONS(3208), + [anon_sym___inline__] = ACTIONS(3208), + [anon_sym___forceinline] = ACTIONS(3208), + [anon_sym_thread_local] = ACTIONS(3208), + [anon_sym___thread] = ACTIONS(3208), + [anon_sym_const] = ACTIONS(3208), + [anon_sym_constexpr] = ACTIONS(3208), + [anon_sym_volatile] = ACTIONS(3208), + [anon_sym_restrict] = ACTIONS(3208), + [anon_sym___restrict__] = ACTIONS(3208), + [anon_sym__Atomic] = ACTIONS(3208), + [anon_sym__Noreturn] = ACTIONS(3208), + [anon_sym_noreturn] = ACTIONS(3208), + [anon_sym_mutable] = ACTIONS(3208), + [anon_sym_constinit] = ACTIONS(3208), + [anon_sym_consteval] = ACTIONS(3208), + [sym_primitive_type] = ACTIONS(3208), + [anon_sym_enum] = ACTIONS(3208), + [anon_sym_class] = ACTIONS(3208), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3208), + [anon_sym_if] = ACTIONS(3208), + [anon_sym_switch] = ACTIONS(3208), + [anon_sym_case] = ACTIONS(3208), + [anon_sym_default] = ACTIONS(3208), + [anon_sym_while] = ACTIONS(3208), + [anon_sym_do] = ACTIONS(3208), + [anon_sym_for] = ACTIONS(3208), + [anon_sym_return] = ACTIONS(3208), + [anon_sym_break] = ACTIONS(3208), + [anon_sym_continue] = ACTIONS(3208), + [anon_sym_goto] = ACTIONS(3208), + [anon_sym_not] = ACTIONS(3208), + [anon_sym_compl] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3210), + [anon_sym_sizeof] = ACTIONS(3208), + [anon_sym___alignof__] = ACTIONS(3208), + [anon_sym___alignof] = ACTIONS(3208), + [anon_sym__alignof] = ACTIONS(3208), + [anon_sym_alignof] = ACTIONS(3208), + [anon_sym__Alignof] = ACTIONS(3208), + [anon_sym_offsetof] = ACTIONS(3208), + [anon_sym__Generic] = ACTIONS(3208), + [anon_sym_asm] = ACTIONS(3208), + [anon_sym___asm__] = ACTIONS(3208), + [sym_number_literal] = ACTIONS(3210), + [anon_sym_L_SQUOTE] = ACTIONS(3210), + [anon_sym_u_SQUOTE] = ACTIONS(3210), + [anon_sym_U_SQUOTE] = ACTIONS(3210), + [anon_sym_u8_SQUOTE] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3210), + [anon_sym_L_DQUOTE] = ACTIONS(3210), + [anon_sym_u_DQUOTE] = ACTIONS(3210), + [anon_sym_U_DQUOTE] = ACTIONS(3210), + [anon_sym_u8_DQUOTE] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(3210), + [sym_true] = ACTIONS(3208), + [sym_false] = ACTIONS(3208), + [anon_sym_NULL] = ACTIONS(3208), + [anon_sym_nullptr] = ACTIONS(3208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3208), + [anon_sym_decltype] = ACTIONS(3208), + [anon_sym_virtual] = ACTIONS(3208), + [anon_sym_alignas] = ACTIONS(3208), + [anon_sym_explicit] = ACTIONS(3208), + [anon_sym_typename] = ACTIONS(3208), + [anon_sym_template] = ACTIONS(3208), + [anon_sym_operator] = ACTIONS(3208), + [anon_sym_try] = ACTIONS(3208), + [anon_sym_delete] = ACTIONS(3208), + [anon_sym_throw] = ACTIONS(3208), + [anon_sym_namespace] = ACTIONS(3208), + [anon_sym_using] = ACTIONS(3208), + [anon_sym_static_assert] = ACTIONS(3208), + [anon_sym_concept] = ACTIONS(3208), + [anon_sym_co_return] = ACTIONS(3208), + [anon_sym_co_yield] = ACTIONS(3208), + [anon_sym_R_DQUOTE] = ACTIONS(3210), + [anon_sym_LR_DQUOTE] = ACTIONS(3210), + [anon_sym_uR_DQUOTE] = ACTIONS(3210), + [anon_sym_UR_DQUOTE] = ACTIONS(3210), + [anon_sym_u8R_DQUOTE] = ACTIONS(3210), + [anon_sym_co_await] = ACTIONS(3208), + [anon_sym_new] = ACTIONS(3208), + [anon_sym_requires] = ACTIONS(3208), + [sym_this] = ACTIONS(3208), + }, + [832] = { + [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_extern] = ACTIONS(3127), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3127), + [anon_sym_constinit] = ACTIONS(3127), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3127), + [anon_sym_alignas] = 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_using] = 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), + }, + [833] = { + [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_extern] = ACTIONS(3131), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3131), + [anon_sym_constinit] = ACTIONS(3131), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3131), + [anon_sym_alignas] = 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_using] = 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), + }, + [834] = { + [sym_identifier] = ACTIONS(3212), + [aux_sym_preproc_include_token1] = ACTIONS(3212), + [aux_sym_preproc_def_token1] = ACTIONS(3212), + [aux_sym_preproc_if_token1] = ACTIONS(3212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3212), + [sym_preproc_directive] = ACTIONS(3212), + [anon_sym_LPAREN2] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3214), + [anon_sym_AMP_AMP] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_SEMI] = ACTIONS(3214), + [anon_sym___extension__] = ACTIONS(3212), + [anon_sym_typedef] = ACTIONS(3212), + [anon_sym_extern] = ACTIONS(3212), + [anon_sym___attribute__] = ACTIONS(3212), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3214), + [anon_sym___declspec] = ACTIONS(3212), + [anon_sym___based] = ACTIONS(3212), + [anon_sym___cdecl] = ACTIONS(3212), + [anon_sym___clrcall] = ACTIONS(3212), + [anon_sym___stdcall] = ACTIONS(3212), + [anon_sym___fastcall] = ACTIONS(3212), + [anon_sym___thiscall] = ACTIONS(3212), + [anon_sym___vectorcall] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_RBRACE] = ACTIONS(3214), + [anon_sym_signed] = ACTIONS(3212), + [anon_sym_unsigned] = ACTIONS(3212), + [anon_sym_long] = ACTIONS(3212), + [anon_sym_short] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_static] = ACTIONS(3212), + [anon_sym_register] = ACTIONS(3212), + [anon_sym_inline] = ACTIONS(3212), + [anon_sym___inline] = ACTIONS(3212), + [anon_sym___inline__] = ACTIONS(3212), + [anon_sym___forceinline] = ACTIONS(3212), + [anon_sym_thread_local] = ACTIONS(3212), + [anon_sym___thread] = ACTIONS(3212), + [anon_sym_const] = ACTIONS(3212), + [anon_sym_constexpr] = ACTIONS(3212), + [anon_sym_volatile] = ACTIONS(3212), + [anon_sym_restrict] = ACTIONS(3212), + [anon_sym___restrict__] = ACTIONS(3212), + [anon_sym__Atomic] = ACTIONS(3212), + [anon_sym__Noreturn] = ACTIONS(3212), + [anon_sym_noreturn] = ACTIONS(3212), + [anon_sym_mutable] = ACTIONS(3212), + [anon_sym_constinit] = ACTIONS(3212), + [anon_sym_consteval] = ACTIONS(3212), + [sym_primitive_type] = ACTIONS(3212), + [anon_sym_enum] = ACTIONS(3212), + [anon_sym_class] = ACTIONS(3212), + [anon_sym_struct] = ACTIONS(3212), + [anon_sym_union] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_switch] = ACTIONS(3212), + [anon_sym_case] = ACTIONS(3212), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_break] = ACTIONS(3212), + [anon_sym_continue] = ACTIONS(3212), + [anon_sym_goto] = ACTIONS(3212), + [anon_sym_not] = ACTIONS(3212), + [anon_sym_compl] = ACTIONS(3212), + [anon_sym_DASH_DASH] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3214), + [anon_sym_sizeof] = ACTIONS(3212), + [anon_sym___alignof__] = ACTIONS(3212), + [anon_sym___alignof] = ACTIONS(3212), + [anon_sym__alignof] = ACTIONS(3212), + [anon_sym_alignof] = ACTIONS(3212), + [anon_sym__Alignof] = ACTIONS(3212), + [anon_sym_offsetof] = ACTIONS(3212), + [anon_sym__Generic] = ACTIONS(3212), + [anon_sym_asm] = ACTIONS(3212), + [anon_sym___asm__] = ACTIONS(3212), + [sym_number_literal] = ACTIONS(3214), + [anon_sym_L_SQUOTE] = ACTIONS(3214), + [anon_sym_u_SQUOTE] = ACTIONS(3214), + [anon_sym_U_SQUOTE] = ACTIONS(3214), + [anon_sym_u8_SQUOTE] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3214), + [anon_sym_L_DQUOTE] = ACTIONS(3214), + [anon_sym_u_DQUOTE] = ACTIONS(3214), + [anon_sym_U_DQUOTE] = ACTIONS(3214), + [anon_sym_u8_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE] = ACTIONS(3214), + [sym_true] = ACTIONS(3212), + [sym_false] = ACTIONS(3212), + [anon_sym_NULL] = ACTIONS(3212), + [anon_sym_nullptr] = ACTIONS(3212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3212), + [anon_sym_decltype] = ACTIONS(3212), + [anon_sym_virtual] = ACTIONS(3212), + [anon_sym_alignas] = ACTIONS(3212), + [anon_sym_explicit] = ACTIONS(3212), + [anon_sym_typename] = ACTIONS(3212), + [anon_sym_template] = ACTIONS(3212), + [anon_sym_operator] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_delete] = ACTIONS(3212), + [anon_sym_throw] = ACTIONS(3212), + [anon_sym_namespace] = ACTIONS(3212), + [anon_sym_using] = ACTIONS(3212), + [anon_sym_static_assert] = ACTIONS(3212), + [anon_sym_concept] = ACTIONS(3212), + [anon_sym_co_return] = ACTIONS(3212), + [anon_sym_co_yield] = ACTIONS(3212), + [anon_sym_R_DQUOTE] = ACTIONS(3214), + [anon_sym_LR_DQUOTE] = ACTIONS(3214), + [anon_sym_uR_DQUOTE] = ACTIONS(3214), + [anon_sym_UR_DQUOTE] = ACTIONS(3214), + [anon_sym_u8R_DQUOTE] = ACTIONS(3214), + [anon_sym_co_await] = ACTIONS(3212), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_requires] = ACTIONS(3212), + [sym_this] = ACTIONS(3212), + }, + [835] = { + [sym_identifier] = ACTIONS(3099), + [aux_sym_preproc_include_token1] = ACTIONS(3099), + [aux_sym_preproc_def_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), + [sym_preproc_directive] = ACTIONS(3099), + [anon_sym_LPAREN2] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym___extension__] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym___attribute__] = ACTIONS(3099), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), + [anon_sym___declspec] = ACTIONS(3099), + [anon_sym___based] = ACTIONS(3099), + [anon_sym___cdecl] = ACTIONS(3099), + [anon_sym___clrcall] = ACTIONS(3099), + [anon_sym___stdcall] = ACTIONS(3099), + [anon_sym___fastcall] = ACTIONS(3099), + [anon_sym___thiscall] = ACTIONS(3099), + [anon_sym___vectorcall] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_RBRACE] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3099), + [anon_sym_unsigned] = ACTIONS(3099), + [anon_sym_long] = ACTIONS(3099), + [anon_sym_short] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_register] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym___inline] = ACTIONS(3099), + [anon_sym___inline__] = ACTIONS(3099), + [anon_sym___forceinline] = ACTIONS(3099), + [anon_sym_thread_local] = ACTIONS(3099), + [anon_sym___thread] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_constexpr] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_restrict] = ACTIONS(3099), + [anon_sym___restrict__] = ACTIONS(3099), + [anon_sym__Atomic] = ACTIONS(3099), + [anon_sym__Noreturn] = ACTIONS(3099), + [anon_sym_noreturn] = ACTIONS(3099), + [anon_sym_mutable] = ACTIONS(3099), + [anon_sym_constinit] = ACTIONS(3099), + [anon_sym_consteval] = ACTIONS(3099), + [sym_primitive_type] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3099), + [anon_sym_case] = ACTIONS(3099), + [anon_sym_default] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_do] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym_not] = ACTIONS(3099), + [anon_sym_compl] = ACTIONS(3099), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym___alignof__] = ACTIONS(3099), + [anon_sym___alignof] = ACTIONS(3099), + [anon_sym__alignof] = ACTIONS(3099), + [anon_sym_alignof] = ACTIONS(3099), + [anon_sym__Alignof] = ACTIONS(3099), + [anon_sym_offsetof] = ACTIONS(3099), + [anon_sym__Generic] = ACTIONS(3099), + [anon_sym_asm] = ACTIONS(3099), + [anon_sym___asm__] = ACTIONS(3099), + [sym_number_literal] = ACTIONS(3101), + [anon_sym_L_SQUOTE] = ACTIONS(3101), + [anon_sym_u_SQUOTE] = ACTIONS(3101), + [anon_sym_U_SQUOTE] = ACTIONS(3101), + [anon_sym_u8_SQUOTE] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3101), + [anon_sym_L_DQUOTE] = ACTIONS(3101), + [anon_sym_u_DQUOTE] = ACTIONS(3101), + [anon_sym_U_DQUOTE] = ACTIONS(3101), + [anon_sym_u8_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [anon_sym_NULL] = ACTIONS(3099), + [anon_sym_nullptr] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_alignas] = ACTIONS(3099), + [anon_sym_explicit] = ACTIONS(3099), + [anon_sym_typename] = ACTIONS(3099), + [anon_sym_template] = ACTIONS(3099), + [anon_sym_operator] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_throw] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_static_assert] = ACTIONS(3099), + [anon_sym_concept] = ACTIONS(3099), + [anon_sym_co_return] = ACTIONS(3099), + [anon_sym_co_yield] = ACTIONS(3099), + [anon_sym_R_DQUOTE] = ACTIONS(3101), + [anon_sym_LR_DQUOTE] = ACTIONS(3101), + [anon_sym_uR_DQUOTE] = ACTIONS(3101), + [anon_sym_UR_DQUOTE] = ACTIONS(3101), + [anon_sym_u8R_DQUOTE] = ACTIONS(3101), + [anon_sym_co_await] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_requires] = ACTIONS(3099), + [sym_this] = ACTIONS(3099), + }, + [836] = { + [sym_identifier] = ACTIONS(2957), + [aux_sym_preproc_include_token1] = ACTIONS(2957), + [aux_sym_preproc_def_token1] = ACTIONS(2957), + [aux_sym_preproc_if_token1] = ACTIONS(2957), + [aux_sym_preproc_if_token2] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2957), + [sym_preproc_directive] = ACTIONS(2957), + [anon_sym_LPAREN2] = ACTIONS(2959), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2959), + [anon_sym___extension__] = ACTIONS(2957), + [anon_sym_typedef] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym___attribute__] = ACTIONS(2957), + [anon_sym_COLON_COLON] = ACTIONS(2959), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), + [anon_sym___declspec] = ACTIONS(2957), + [anon_sym___based] = ACTIONS(2957), + [anon_sym___cdecl] = ACTIONS(2957), + [anon_sym___clrcall] = ACTIONS(2957), + [anon_sym___stdcall] = ACTIONS(2957), + [anon_sym___fastcall] = ACTIONS(2957), + [anon_sym___thiscall] = ACTIONS(2957), + [anon_sym___vectorcall] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_signed] = ACTIONS(2957), + [anon_sym_unsigned] = ACTIONS(2957), + [anon_sym_long] = ACTIONS(2957), + [anon_sym_short] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_static] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_inline] = ACTIONS(2957), + [anon_sym___inline] = ACTIONS(2957), + [anon_sym___inline__] = ACTIONS(2957), + [anon_sym___forceinline] = ACTIONS(2957), + [anon_sym_thread_local] = ACTIONS(2957), + [anon_sym___thread] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_constexpr] = ACTIONS(2957), + [anon_sym_volatile] = ACTIONS(2957), + [anon_sym_restrict] = ACTIONS(2957), + [anon_sym___restrict__] = ACTIONS(2957), + [anon_sym__Atomic] = ACTIONS(2957), + [anon_sym__Noreturn] = ACTIONS(2957), + [anon_sym_noreturn] = ACTIONS(2957), + [anon_sym_mutable] = ACTIONS(2957), + [anon_sym_constinit] = ACTIONS(2957), + [anon_sym_consteval] = ACTIONS(2957), + [sym_primitive_type] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [anon_sym_class] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_union] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_switch] = ACTIONS(2957), + [anon_sym_case] = ACTIONS(2957), + [anon_sym_default] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_goto] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [anon_sym_compl] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_sizeof] = ACTIONS(2957), + [anon_sym___alignof__] = ACTIONS(2957), + [anon_sym___alignof] = ACTIONS(2957), + [anon_sym__alignof] = ACTIONS(2957), + [anon_sym_alignof] = ACTIONS(2957), + [anon_sym__Alignof] = ACTIONS(2957), + [anon_sym_offsetof] = ACTIONS(2957), + [anon_sym__Generic] = ACTIONS(2957), + [anon_sym_asm] = ACTIONS(2957), + [anon_sym___asm__] = ACTIONS(2957), + [sym_number_literal] = ACTIONS(2959), + [anon_sym_L_SQUOTE] = ACTIONS(2959), + [anon_sym_u_SQUOTE] = ACTIONS(2959), + [anon_sym_U_SQUOTE] = ACTIONS(2959), + [anon_sym_u8_SQUOTE] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2959), + [anon_sym_L_DQUOTE] = ACTIONS(2959), + [anon_sym_u_DQUOTE] = ACTIONS(2959), + [anon_sym_U_DQUOTE] = ACTIONS(2959), + [anon_sym_u8_DQUOTE] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [anon_sym_NULL] = ACTIONS(2957), + [anon_sym_nullptr] = ACTIONS(2957), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2957), + [anon_sym_decltype] = ACTIONS(2957), + [anon_sym_virtual] = ACTIONS(2957), + [anon_sym_alignas] = ACTIONS(2957), + [anon_sym_explicit] = ACTIONS(2957), + [anon_sym_typename] = ACTIONS(2957), + [anon_sym_template] = ACTIONS(2957), + [anon_sym_operator] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_delete] = ACTIONS(2957), + [anon_sym_throw] = ACTIONS(2957), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_using] = ACTIONS(2957), + [anon_sym_static_assert] = ACTIONS(2957), + [anon_sym_concept] = ACTIONS(2957), + [anon_sym_co_return] = ACTIONS(2957), + [anon_sym_co_yield] = ACTIONS(2957), + [anon_sym_R_DQUOTE] = ACTIONS(2959), + [anon_sym_LR_DQUOTE] = ACTIONS(2959), + [anon_sym_uR_DQUOTE] = ACTIONS(2959), + [anon_sym_UR_DQUOTE] = ACTIONS(2959), + [anon_sym_u8R_DQUOTE] = ACTIONS(2959), + [anon_sym_co_await] = ACTIONS(2957), + [anon_sym_new] = ACTIONS(2957), + [anon_sym_requires] = ACTIONS(2957), + [sym_this] = ACTIONS(2957), + }, + [837] = { + [sym_identifier] = ACTIONS(3095), + [aux_sym_preproc_include_token1] = ACTIONS(3095), + [aux_sym_preproc_def_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), + [sym_preproc_directive] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_AMP_AMP] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(3095), + [anon_sym___attribute__] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), + [anon_sym___declspec] = ACTIONS(3095), + [anon_sym___based] = ACTIONS(3095), + [anon_sym___cdecl] = ACTIONS(3095), + [anon_sym___clrcall] = ACTIONS(3095), + [anon_sym___stdcall] = ACTIONS(3095), + [anon_sym___fastcall] = ACTIONS(3095), + [anon_sym___thiscall] = ACTIONS(3095), + [anon_sym___vectorcall] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_RBRACE] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3095), + [anon_sym_unsigned] = ACTIONS(3095), + [anon_sym_long] = ACTIONS(3095), + [anon_sym_short] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_register] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym___inline] = ACTIONS(3095), + [anon_sym___inline__] = ACTIONS(3095), + [anon_sym___forceinline] = ACTIONS(3095), + [anon_sym_thread_local] = ACTIONS(3095), + [anon_sym___thread] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_constexpr] = ACTIONS(3095), + [anon_sym_volatile] = ACTIONS(3095), + [anon_sym_restrict] = ACTIONS(3095), + [anon_sym___restrict__] = ACTIONS(3095), + [anon_sym__Atomic] = ACTIONS(3095), + [anon_sym__Noreturn] = ACTIONS(3095), + [anon_sym_noreturn] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [sym_primitive_type] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3095), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_switch] = ACTIONS(3095), + [anon_sym_case] = ACTIONS(3095), + [anon_sym_default] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_break] = ACTIONS(3095), + [anon_sym_continue] = ACTIONS(3095), + [anon_sym_goto] = ACTIONS(3095), + [anon_sym_not] = ACTIONS(3095), + [anon_sym_compl] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3097), + [anon_sym_PLUS_PLUS] = ACTIONS(3097), + [anon_sym_sizeof] = ACTIONS(3095), + [anon_sym___alignof__] = ACTIONS(3095), + [anon_sym___alignof] = ACTIONS(3095), + [anon_sym__alignof] = ACTIONS(3095), + [anon_sym_alignof] = ACTIONS(3095), + [anon_sym__Alignof] = ACTIONS(3095), + [anon_sym_offsetof] = ACTIONS(3095), + [anon_sym__Generic] = ACTIONS(3095), + [anon_sym_asm] = ACTIONS(3095), + [anon_sym___asm__] = ACTIONS(3095), + [sym_number_literal] = ACTIONS(3097), + [anon_sym_L_SQUOTE] = ACTIONS(3097), + [anon_sym_u_SQUOTE] = ACTIONS(3097), + [anon_sym_U_SQUOTE] = ACTIONS(3097), + [anon_sym_u8_SQUOTE] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(3097), + [anon_sym_u_DQUOTE] = ACTIONS(3097), + [anon_sym_U_DQUOTE] = ACTIONS(3097), + [anon_sym_u8_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE] = ACTIONS(3097), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [anon_sym_NULL] = ACTIONS(3095), + [anon_sym_nullptr] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_virtual] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym_explicit] = ACTIONS(3095), + [anon_sym_typename] = ACTIONS(3095), + [anon_sym_template] = ACTIONS(3095), + [anon_sym_operator] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_delete] = ACTIONS(3095), + [anon_sym_throw] = ACTIONS(3095), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_using] = ACTIONS(3095), + [anon_sym_static_assert] = ACTIONS(3095), + [anon_sym_concept] = ACTIONS(3095), + [anon_sym_co_return] = ACTIONS(3095), + [anon_sym_co_yield] = ACTIONS(3095), + [anon_sym_R_DQUOTE] = ACTIONS(3097), + [anon_sym_LR_DQUOTE] = ACTIONS(3097), + [anon_sym_uR_DQUOTE] = ACTIONS(3097), + [anon_sym_UR_DQUOTE] = ACTIONS(3097), + [anon_sym_u8R_DQUOTE] = ACTIONS(3097), + [anon_sym_co_await] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_requires] = ACTIONS(3095), + [sym_this] = ACTIONS(3095), + }, + [838] = { + [sym_identifier] = ACTIONS(3091), + [aux_sym_preproc_include_token1] = ACTIONS(3091), + [aux_sym_preproc_def_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), + [sym_preproc_directive] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym___based] = ACTIONS(3091), + [anon_sym___cdecl] = ACTIONS(3091), + [anon_sym___clrcall] = ACTIONS(3091), + [anon_sym___stdcall] = ACTIONS(3091), + [anon_sym___fastcall] = ACTIONS(3091), + [anon_sym___thiscall] = ACTIONS(3091), + [anon_sym___vectorcall] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_RBRACE] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_switch] = ACTIONS(3091), + [anon_sym_case] = ACTIONS(3091), + [anon_sym_default] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_goto] = ACTIONS(3091), + [anon_sym_not] = ACTIONS(3091), + [anon_sym_compl] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3093), + [anon_sym_sizeof] = ACTIONS(3091), + [anon_sym___alignof__] = ACTIONS(3091), + [anon_sym___alignof] = ACTIONS(3091), + [anon_sym__alignof] = ACTIONS(3091), + [anon_sym_alignof] = ACTIONS(3091), + [anon_sym__Alignof] = ACTIONS(3091), + [anon_sym_offsetof] = ACTIONS(3091), + [anon_sym__Generic] = ACTIONS(3091), + [anon_sym_asm] = ACTIONS(3091), + [anon_sym___asm__] = ACTIONS(3091), + [sym_number_literal] = ACTIONS(3093), + [anon_sym_L_SQUOTE] = ACTIONS(3093), + [anon_sym_u_SQUOTE] = ACTIONS(3093), + [anon_sym_U_SQUOTE] = ACTIONS(3093), + [anon_sym_u8_SQUOTE] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_L_DQUOTE] = ACTIONS(3093), + [anon_sym_u_DQUOTE] = ACTIONS(3093), + [anon_sym_U_DQUOTE] = ACTIONS(3093), + [anon_sym_u8_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [anon_sym_NULL] = ACTIONS(3091), + [anon_sym_nullptr] = ACTIONS(3091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym_explicit] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_operator] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_delete] = ACTIONS(3091), + [anon_sym_throw] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_static_assert] = ACTIONS(3091), + [anon_sym_concept] = ACTIONS(3091), + [anon_sym_co_return] = ACTIONS(3091), + [anon_sym_co_yield] = ACTIONS(3091), + [anon_sym_R_DQUOTE] = ACTIONS(3093), + [anon_sym_LR_DQUOTE] = ACTIONS(3093), + [anon_sym_uR_DQUOTE] = ACTIONS(3093), + [anon_sym_UR_DQUOTE] = ACTIONS(3093), + [anon_sym_u8R_DQUOTE] = ACTIONS(3093), + [anon_sym_co_await] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_requires] = ACTIONS(3091), + [sym_this] = ACTIONS(3091), }, [839] = { - [sym_identifier] = ACTIONS(2768), - [aux_sym_preproc_include_token1] = ACTIONS(2768), - [aux_sym_preproc_def_token1] = ACTIONS(2768), - [aux_sym_preproc_if_token1] = ACTIONS(2768), - [aux_sym_preproc_if_token2] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2768), - [sym_preproc_directive] = ACTIONS(2768), - [anon_sym_LPAREN2] = ACTIONS(2770), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_TILDE] = ACTIONS(2770), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_SEMI] = ACTIONS(2770), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym_typedef] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2770), - [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(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(2768), - [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_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = 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_if] = ACTIONS(2768), - [anon_sym_else] = ACTIONS(2768), - [anon_sym_switch] = ACTIONS(2768), - [anon_sym_case] = ACTIONS(2768), - [anon_sym_default] = ACTIONS(2768), - [anon_sym_while] = ACTIONS(2768), - [anon_sym_do] = ACTIONS(2768), - [anon_sym_for] = ACTIONS(2768), - [anon_sym_return] = ACTIONS(2768), - [anon_sym_break] = ACTIONS(2768), - [anon_sym_continue] = ACTIONS(2768), - [anon_sym_goto] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(2768), - [anon_sym_compl] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2770), - [anon_sym_PLUS_PLUS] = ACTIONS(2770), - [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_asm] = ACTIONS(2768), - [anon_sym___asm__] = ACTIONS(2768), - [sym_number_literal] = ACTIONS(2770), - [anon_sym_L_SQUOTE] = ACTIONS(2770), - [anon_sym_u_SQUOTE] = ACTIONS(2770), - [anon_sym_U_SQUOTE] = ACTIONS(2770), - [anon_sym_u8_SQUOTE] = ACTIONS(2770), - [anon_sym_SQUOTE] = ACTIONS(2770), - [anon_sym_L_DQUOTE] = ACTIONS(2770), - [anon_sym_u_DQUOTE] = ACTIONS(2770), - [anon_sym_U_DQUOTE] = ACTIONS(2770), - [anon_sym_u8_DQUOTE] = ACTIONS(2770), - [anon_sym_DQUOTE] = ACTIONS(2770), - [sym_true] = ACTIONS(2768), - [sym_false] = ACTIONS(2768), - [anon_sym_NULL] = ACTIONS(2768), - [anon_sym_nullptr] = ACTIONS(2768), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2768), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym_explicit] = ACTIONS(2768), - [anon_sym_typename] = ACTIONS(2768), - [anon_sym_template] = ACTIONS(2768), - [anon_sym_operator] = ACTIONS(2768), - [anon_sym_try] = ACTIONS(2768), - [anon_sym_delete] = ACTIONS(2768), - [anon_sym_throw] = ACTIONS(2768), - [anon_sym_namespace] = ACTIONS(2768), - [anon_sym_using] = ACTIONS(2768), - [anon_sym_static_assert] = ACTIONS(2768), - [anon_sym_concept] = ACTIONS(2768), - [anon_sym_co_return] = ACTIONS(2768), - [anon_sym_co_yield] = ACTIONS(2768), - [anon_sym_catch] = ACTIONS(2768), - [anon_sym_R_DQUOTE] = ACTIONS(2770), - [anon_sym_LR_DQUOTE] = ACTIONS(2770), - [anon_sym_uR_DQUOTE] = ACTIONS(2770), - [anon_sym_UR_DQUOTE] = ACTIONS(2770), - [anon_sym_u8R_DQUOTE] = ACTIONS(2770), - [anon_sym_co_await] = ACTIONS(2768), - [anon_sym_new] = ACTIONS(2768), - [anon_sym_requires] = ACTIONS(2768), - [sym_this] = ACTIONS(2768), + [sym_identifier] = ACTIONS(3160), + [aux_sym_preproc_include_token1] = ACTIONS(3160), + [aux_sym_preproc_def_token1] = ACTIONS(3160), + [aux_sym_preproc_if_token1] = ACTIONS(3160), + [aux_sym_preproc_if_token2] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), + [sym_preproc_directive] = ACTIONS(3160), + [anon_sym_LPAREN2] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym___extension__] = ACTIONS(3160), + [anon_sym_typedef] = ACTIONS(3160), + [anon_sym_extern] = ACTIONS(3160), + [anon_sym___attribute__] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), + [anon_sym___declspec] = ACTIONS(3160), + [anon_sym___based] = ACTIONS(3160), + [anon_sym___cdecl] = ACTIONS(3160), + [anon_sym___clrcall] = ACTIONS(3160), + [anon_sym___stdcall] = ACTIONS(3160), + [anon_sym___fastcall] = ACTIONS(3160), + [anon_sym___thiscall] = ACTIONS(3160), + [anon_sym___vectorcall] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_signed] = ACTIONS(3160), + [anon_sym_unsigned] = ACTIONS(3160), + [anon_sym_long] = ACTIONS(3160), + [anon_sym_short] = ACTIONS(3160), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_static] = ACTIONS(3160), + [anon_sym_register] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym___inline] = ACTIONS(3160), + [anon_sym___inline__] = ACTIONS(3160), + [anon_sym___forceinline] = ACTIONS(3160), + [anon_sym_thread_local] = ACTIONS(3160), + [anon_sym___thread] = ACTIONS(3160), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_constexpr] = ACTIONS(3160), + [anon_sym_volatile] = ACTIONS(3160), + [anon_sym_restrict] = ACTIONS(3160), + [anon_sym___restrict__] = ACTIONS(3160), + [anon_sym__Atomic] = ACTIONS(3160), + [anon_sym__Noreturn] = ACTIONS(3160), + [anon_sym_noreturn] = ACTIONS(3160), + [anon_sym_mutable] = ACTIONS(3160), + [anon_sym_constinit] = ACTIONS(3160), + [anon_sym_consteval] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), + [anon_sym_class] = ACTIONS(3160), + [anon_sym_struct] = ACTIONS(3160), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_switch] = ACTIONS(3160), + [anon_sym_case] = ACTIONS(3160), + [anon_sym_default] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_do] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_goto] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3160), + [anon_sym_compl] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3160), + [anon_sym___alignof__] = ACTIONS(3160), + [anon_sym___alignof] = ACTIONS(3160), + [anon_sym__alignof] = ACTIONS(3160), + [anon_sym_alignof] = ACTIONS(3160), + [anon_sym__Alignof] = ACTIONS(3160), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3160), + [anon_sym_asm] = ACTIONS(3160), + [anon_sym___asm__] = ACTIONS(3160), + [sym_number_literal] = ACTIONS(3162), + [anon_sym_L_SQUOTE] = ACTIONS(3162), + [anon_sym_u_SQUOTE] = ACTIONS(3162), + [anon_sym_U_SQUOTE] = ACTIONS(3162), + [anon_sym_u8_SQUOTE] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3162), + [anon_sym_L_DQUOTE] = ACTIONS(3162), + [anon_sym_u_DQUOTE] = ACTIONS(3162), + [anon_sym_U_DQUOTE] = ACTIONS(3162), + [anon_sym_u8_DQUOTE] = ACTIONS(3162), + [anon_sym_DQUOTE] = ACTIONS(3162), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [anon_sym_NULL] = ACTIONS(3160), + [anon_sym_nullptr] = ACTIONS(3160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3160), + [anon_sym_decltype] = ACTIONS(3160), + [anon_sym_virtual] = ACTIONS(3160), + [anon_sym_alignas] = ACTIONS(3160), + [anon_sym_explicit] = ACTIONS(3160), + [anon_sym_typename] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_delete] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_namespace] = ACTIONS(3160), + [anon_sym_using] = ACTIONS(3160), + [anon_sym_static_assert] = ACTIONS(3160), + [anon_sym_concept] = ACTIONS(3160), + [anon_sym_co_return] = ACTIONS(3160), + [anon_sym_co_yield] = ACTIONS(3160), + [anon_sym_R_DQUOTE] = ACTIONS(3162), + [anon_sym_LR_DQUOTE] = ACTIONS(3162), + [anon_sym_uR_DQUOTE] = ACTIONS(3162), + [anon_sym_UR_DQUOTE] = ACTIONS(3162), + [anon_sym_u8R_DQUOTE] = ACTIONS(3162), + [anon_sym_co_await] = ACTIONS(3160), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_requires] = ACTIONS(3160), + [sym_this] = ACTIONS(3160), }, [840] = { - [sym_identifier] = ACTIONS(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), - [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_extern] = ACTIONS(3314), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3314), - [anon_sym_constinit] = ACTIONS(3314), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3314), - [anon_sym_alignas] = 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_using] = 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), + [sym_identifier] = ACTIONS(3164), + [aux_sym_preproc_include_token1] = ACTIONS(3164), + [aux_sym_preproc_def_token1] = ACTIONS(3164), + [aux_sym_preproc_if_token1] = ACTIONS(3164), + [aux_sym_preproc_if_token2] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3164), + [sym_preproc_directive] = ACTIONS(3164), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3164), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3164), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym___extension__] = ACTIONS(3164), + [anon_sym_typedef] = ACTIONS(3164), + [anon_sym_extern] = ACTIONS(3164), + [anon_sym___attribute__] = ACTIONS(3164), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3164), + [anon_sym___based] = ACTIONS(3164), + [anon_sym___cdecl] = ACTIONS(3164), + [anon_sym___clrcall] = ACTIONS(3164), + [anon_sym___stdcall] = ACTIONS(3164), + [anon_sym___fastcall] = ACTIONS(3164), + [anon_sym___thiscall] = ACTIONS(3164), + [anon_sym___vectorcall] = ACTIONS(3164), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_signed] = ACTIONS(3164), + [anon_sym_unsigned] = ACTIONS(3164), + [anon_sym_long] = ACTIONS(3164), + [anon_sym_short] = ACTIONS(3164), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_static] = ACTIONS(3164), + [anon_sym_register] = ACTIONS(3164), + [anon_sym_inline] = ACTIONS(3164), + [anon_sym___inline] = ACTIONS(3164), + [anon_sym___inline__] = ACTIONS(3164), + [anon_sym___forceinline] = ACTIONS(3164), + [anon_sym_thread_local] = ACTIONS(3164), + [anon_sym___thread] = ACTIONS(3164), + [anon_sym_const] = ACTIONS(3164), + [anon_sym_constexpr] = ACTIONS(3164), + [anon_sym_volatile] = ACTIONS(3164), + [anon_sym_restrict] = ACTIONS(3164), + [anon_sym___restrict__] = ACTIONS(3164), + [anon_sym__Atomic] = ACTIONS(3164), + [anon_sym__Noreturn] = ACTIONS(3164), + [anon_sym_noreturn] = ACTIONS(3164), + [anon_sym_mutable] = ACTIONS(3164), + [anon_sym_constinit] = ACTIONS(3164), + [anon_sym_consteval] = ACTIONS(3164), + [sym_primitive_type] = ACTIONS(3164), + [anon_sym_enum] = ACTIONS(3164), + [anon_sym_class] = ACTIONS(3164), + [anon_sym_struct] = ACTIONS(3164), + [anon_sym_union] = ACTIONS(3164), + [anon_sym_if] = ACTIONS(3164), + [anon_sym_switch] = ACTIONS(3164), + [anon_sym_case] = ACTIONS(3164), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_while] = ACTIONS(3164), + [anon_sym_do] = ACTIONS(3164), + [anon_sym_for] = ACTIONS(3164), + [anon_sym_return] = ACTIONS(3164), + [anon_sym_break] = ACTIONS(3164), + [anon_sym_continue] = ACTIONS(3164), + [anon_sym_goto] = ACTIONS(3164), + [anon_sym_not] = ACTIONS(3164), + [anon_sym_compl] = ACTIONS(3164), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3164), + [anon_sym___alignof] = ACTIONS(3164), + [anon_sym__alignof] = ACTIONS(3164), + [anon_sym_alignof] = ACTIONS(3164), + [anon_sym__Alignof] = ACTIONS(3164), + [anon_sym_offsetof] = ACTIONS(3164), + [anon_sym__Generic] = ACTIONS(3164), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3166), + [anon_sym_u_SQUOTE] = ACTIONS(3166), + [anon_sym_U_SQUOTE] = ACTIONS(3166), + [anon_sym_u8_SQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_L_DQUOTE] = ACTIONS(3166), + [anon_sym_u_DQUOTE] = ACTIONS(3166), + [anon_sym_U_DQUOTE] = ACTIONS(3166), + [anon_sym_u8_DQUOTE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [sym_true] = ACTIONS(3164), + [sym_false] = ACTIONS(3164), + [anon_sym_NULL] = ACTIONS(3164), + [anon_sym_nullptr] = ACTIONS(3164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3164), + [anon_sym_decltype] = ACTIONS(3164), + [anon_sym_virtual] = ACTIONS(3164), + [anon_sym_alignas] = ACTIONS(3164), + [anon_sym_explicit] = ACTIONS(3164), + [anon_sym_typename] = ACTIONS(3164), + [anon_sym_template] = ACTIONS(3164), + [anon_sym_operator] = ACTIONS(3164), + [anon_sym_try] = ACTIONS(3164), + [anon_sym_delete] = ACTIONS(3164), + [anon_sym_throw] = ACTIONS(3164), + [anon_sym_namespace] = ACTIONS(3164), + [anon_sym_using] = ACTIONS(3164), + [anon_sym_static_assert] = ACTIONS(3164), + [anon_sym_concept] = ACTIONS(3164), + [anon_sym_co_return] = ACTIONS(3164), + [anon_sym_co_yield] = ACTIONS(3164), + [anon_sym_R_DQUOTE] = ACTIONS(3166), + [anon_sym_LR_DQUOTE] = ACTIONS(3166), + [anon_sym_uR_DQUOTE] = ACTIONS(3166), + [anon_sym_UR_DQUOTE] = ACTIONS(3166), + [anon_sym_u8R_DQUOTE] = ACTIONS(3166), + [anon_sym_co_await] = ACTIONS(3164), + [anon_sym_new] = ACTIONS(3164), + [anon_sym_requires] = ACTIONS(3164), + [sym_this] = ACTIONS(3164), }, [841] = { - [sym_identifier] = ACTIONS(3346), - [aux_sym_preproc_include_token1] = ACTIONS(3346), - [aux_sym_preproc_def_token1] = ACTIONS(3346), - [aux_sym_preproc_if_token1] = ACTIONS(3346), - [aux_sym_preproc_if_token2] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3346), - [aux_sym_preproc_else_token1] = ACTIONS(3346), - [aux_sym_preproc_elif_token1] = ACTIONS(3346), - [sym_preproc_directive] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_AMP_AMP] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3348), - [anon_sym___extension__] = ACTIONS(3346), - [anon_sym_typedef] = ACTIONS(3346), - [anon_sym_extern] = ACTIONS(3346), - [anon_sym___attribute__] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3348), - [anon_sym___declspec] = ACTIONS(3346), - [anon_sym___based] = ACTIONS(3346), - [anon_sym___cdecl] = ACTIONS(3346), - [anon_sym___clrcall] = ACTIONS(3346), - [anon_sym___stdcall] = ACTIONS(3346), - [anon_sym___fastcall] = ACTIONS(3346), - [anon_sym___thiscall] = ACTIONS(3346), - [anon_sym___vectorcall] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3348), - [anon_sym_signed] = ACTIONS(3346), - [anon_sym_unsigned] = ACTIONS(3346), - [anon_sym_long] = ACTIONS(3346), - [anon_sym_short] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_register] = ACTIONS(3346), - [anon_sym_inline] = ACTIONS(3346), - [anon_sym___inline] = ACTIONS(3346), - [anon_sym___inline__] = ACTIONS(3346), - [anon_sym___forceinline] = ACTIONS(3346), - [anon_sym_thread_local] = ACTIONS(3346), - [anon_sym___thread] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_constexpr] = ACTIONS(3346), - [anon_sym_volatile] = ACTIONS(3346), - [anon_sym_restrict] = ACTIONS(3346), - [anon_sym___restrict__] = ACTIONS(3346), - [anon_sym__Atomic] = ACTIONS(3346), - [anon_sym__Noreturn] = ACTIONS(3346), - [anon_sym_noreturn] = ACTIONS(3346), - [anon_sym_mutable] = ACTIONS(3346), - [anon_sym_constinit] = ACTIONS(3346), - [anon_sym_consteval] = ACTIONS(3346), - [sym_primitive_type] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_struct] = ACTIONS(3346), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3346), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_goto] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3346), - [anon_sym_compl] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3346), - [anon_sym___alignof__] = ACTIONS(3346), - [anon_sym___alignof] = ACTIONS(3346), - [anon_sym__alignof] = ACTIONS(3346), - [anon_sym_alignof] = ACTIONS(3346), - [anon_sym__Alignof] = ACTIONS(3346), - [anon_sym_offsetof] = ACTIONS(3346), - [anon_sym__Generic] = ACTIONS(3346), - [anon_sym_asm] = ACTIONS(3346), - [anon_sym___asm__] = ACTIONS(3346), - [sym_number_literal] = ACTIONS(3348), - [anon_sym_L_SQUOTE] = ACTIONS(3348), - [anon_sym_u_SQUOTE] = ACTIONS(3348), - [anon_sym_U_SQUOTE] = ACTIONS(3348), - [anon_sym_u8_SQUOTE] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3348), - [anon_sym_L_DQUOTE] = ACTIONS(3348), - [anon_sym_u_DQUOTE] = ACTIONS(3348), - [anon_sym_U_DQUOTE] = ACTIONS(3348), - [anon_sym_u8_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE] = ACTIONS(3348), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [anon_sym_NULL] = ACTIONS(3346), - [anon_sym_nullptr] = ACTIONS(3346), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3346), - [anon_sym_decltype] = ACTIONS(3346), - [anon_sym_virtual] = ACTIONS(3346), - [anon_sym_alignas] = ACTIONS(3346), - [anon_sym_explicit] = ACTIONS(3346), - [anon_sym_typename] = ACTIONS(3346), - [anon_sym_template] = ACTIONS(3346), - [anon_sym_operator] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_static_assert] = ACTIONS(3346), - [anon_sym_concept] = ACTIONS(3346), - [anon_sym_co_return] = ACTIONS(3346), - [anon_sym_co_yield] = ACTIONS(3346), - [anon_sym_R_DQUOTE] = ACTIONS(3348), - [anon_sym_LR_DQUOTE] = ACTIONS(3348), - [anon_sym_uR_DQUOTE] = ACTIONS(3348), - [anon_sym_UR_DQUOTE] = ACTIONS(3348), - [anon_sym_u8R_DQUOTE] = ACTIONS(3348), - [anon_sym_co_await] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_requires] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), + [sym_identifier] = ACTIONS(3087), + [aux_sym_preproc_include_token1] = ACTIONS(3087), + [aux_sym_preproc_def_token1] = ACTIONS(3087), + [aux_sym_preproc_if_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), + [sym_preproc_directive] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_BANG] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3089), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym___cdecl] = ACTIONS(3087), + [anon_sym___clrcall] = ACTIONS(3087), + [anon_sym___stdcall] = ACTIONS(3087), + [anon_sym___fastcall] = ACTIONS(3087), + [anon_sym___thiscall] = ACTIONS(3087), + [anon_sym___vectorcall] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3087), + [anon_sym_unsigned] = ACTIONS(3087), + [anon_sym_long] = ACTIONS(3087), + [anon_sym_short] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_register] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym___inline] = ACTIONS(3087), + [anon_sym___inline__] = ACTIONS(3087), + [anon_sym___forceinline] = ACTIONS(3087), + [anon_sym_thread_local] = ACTIONS(3087), + [anon_sym___thread] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_constexpr] = ACTIONS(3087), + [anon_sym_volatile] = ACTIONS(3087), + [anon_sym_restrict] = ACTIONS(3087), + [anon_sym___restrict__] = ACTIONS(3087), + [anon_sym__Atomic] = ACTIONS(3087), + [anon_sym__Noreturn] = ACTIONS(3087), + [anon_sym_noreturn] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [sym_primitive_type] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_switch] = ACTIONS(3087), + [anon_sym_case] = ACTIONS(3087), + [anon_sym_default] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3087), + [anon_sym_do] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_goto] = ACTIONS(3087), + [anon_sym_not] = ACTIONS(3087), + [anon_sym_compl] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_sizeof] = ACTIONS(3087), + [anon_sym___alignof__] = ACTIONS(3087), + [anon_sym___alignof] = ACTIONS(3087), + [anon_sym__alignof] = ACTIONS(3087), + [anon_sym_alignof] = ACTIONS(3087), + [anon_sym__Alignof] = ACTIONS(3087), + [anon_sym_offsetof] = ACTIONS(3087), + [anon_sym__Generic] = ACTIONS(3087), + [anon_sym_asm] = ACTIONS(3087), + [anon_sym___asm__] = ACTIONS(3087), + [sym_number_literal] = ACTIONS(3089), + [anon_sym_L_SQUOTE] = ACTIONS(3089), + [anon_sym_u_SQUOTE] = ACTIONS(3089), + [anon_sym_U_SQUOTE] = ACTIONS(3089), + [anon_sym_u8_SQUOTE] = ACTIONS(3089), + [anon_sym_SQUOTE] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(3089), + [anon_sym_u_DQUOTE] = ACTIONS(3089), + [anon_sym_U_DQUOTE] = ACTIONS(3089), + [anon_sym_u8_DQUOTE] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [anon_sym_NULL] = ACTIONS(3087), + [anon_sym_nullptr] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym_explicit] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_try] = ACTIONS(3087), + [anon_sym_delete] = ACTIONS(3087), + [anon_sym_throw] = ACTIONS(3087), + [anon_sym_namespace] = ACTIONS(3087), + [anon_sym_using] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), + [anon_sym_concept] = ACTIONS(3087), + [anon_sym_co_return] = ACTIONS(3087), + [anon_sym_co_yield] = ACTIONS(3087), + [anon_sym_R_DQUOTE] = ACTIONS(3089), + [anon_sym_LR_DQUOTE] = ACTIONS(3089), + [anon_sym_uR_DQUOTE] = ACTIONS(3089), + [anon_sym_UR_DQUOTE] = ACTIONS(3089), + [anon_sym_u8R_DQUOTE] = ACTIONS(3089), + [anon_sym_co_await] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_requires] = ACTIONS(3087), + [sym_this] = ACTIONS(3087), }, [842] = { - [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), - [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_extern] = ACTIONS(3318), - [anon_sym___attribute__] = ACTIONS(3318), - [anon_sym_COLON_COLON] = ACTIONS(3320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3320), - [anon_sym___declspec] = ACTIONS(3318), - [anon_sym___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_mutable] = ACTIONS(3318), - [anon_sym_constinit] = ACTIONS(3318), - [anon_sym_consteval] = ACTIONS(3318), - [sym_primitive_type] = ACTIONS(3318), - [anon_sym_enum] = ACTIONS(3318), - [anon_sym_class] = ACTIONS(3318), - [anon_sym_struct] = ACTIONS(3318), - [anon_sym_union] = ACTIONS(3318), - [anon_sym_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), - [sym_number_literal] = ACTIONS(3320), - [anon_sym_L_SQUOTE] = ACTIONS(3320), - [anon_sym_u_SQUOTE] = ACTIONS(3320), - [anon_sym_U_SQUOTE] = ACTIONS(3320), - [anon_sym_u8_SQUOTE] = ACTIONS(3320), - [anon_sym_SQUOTE] = ACTIONS(3320), - [anon_sym_L_DQUOTE] = ACTIONS(3320), - [anon_sym_u_DQUOTE] = ACTIONS(3320), - [anon_sym_U_DQUOTE] = ACTIONS(3320), - [anon_sym_u8_DQUOTE] = ACTIONS(3320), - [anon_sym_DQUOTE] = ACTIONS(3320), - [sym_true] = ACTIONS(3318), - [sym_false] = ACTIONS(3318), - [anon_sym_NULL] = ACTIONS(3318), - [anon_sym_nullptr] = ACTIONS(3318), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3318), - [anon_sym_decltype] = ACTIONS(3318), - [anon_sym_virtual] = ACTIONS(3318), - [anon_sym_alignas] = ACTIONS(3318), - [anon_sym_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_using] = 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), + [sym_identifier] = ACTIONS(3083), + [aux_sym_preproc_include_token1] = ACTIONS(3083), + [aux_sym_preproc_def_token1] = ACTIONS(3083), + [aux_sym_preproc_if_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), + [sym_preproc_directive] = ACTIONS(3083), + [anon_sym_LPAREN2] = ACTIONS(3085), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(3083), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym___extension__] = ACTIONS(3083), + [anon_sym_typedef] = ACTIONS(3083), + [anon_sym_extern] = ACTIONS(3083), + [anon_sym___attribute__] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3085), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), + [anon_sym___declspec] = ACTIONS(3083), + [anon_sym___based] = ACTIONS(3083), + [anon_sym___cdecl] = ACTIONS(3083), + [anon_sym___clrcall] = ACTIONS(3083), + [anon_sym___stdcall] = ACTIONS(3083), + [anon_sym___fastcall] = ACTIONS(3083), + [anon_sym___thiscall] = ACTIONS(3083), + [anon_sym___vectorcall] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_RBRACE] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3083), + [anon_sym_unsigned] = ACTIONS(3083), + [anon_sym_long] = ACTIONS(3083), + [anon_sym_short] = ACTIONS(3083), + [anon_sym_LBRACK] = ACTIONS(3083), + [anon_sym_static] = ACTIONS(3083), + [anon_sym_register] = ACTIONS(3083), + [anon_sym_inline] = ACTIONS(3083), + [anon_sym___inline] = ACTIONS(3083), + [anon_sym___inline__] = ACTIONS(3083), + [anon_sym___forceinline] = ACTIONS(3083), + [anon_sym_thread_local] = ACTIONS(3083), + [anon_sym___thread] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3083), + [anon_sym_constexpr] = ACTIONS(3083), + [anon_sym_volatile] = ACTIONS(3083), + [anon_sym_restrict] = ACTIONS(3083), + [anon_sym___restrict__] = ACTIONS(3083), + [anon_sym__Atomic] = ACTIONS(3083), + [anon_sym__Noreturn] = ACTIONS(3083), + [anon_sym_noreturn] = ACTIONS(3083), + [anon_sym_mutable] = ACTIONS(3083), + [anon_sym_constinit] = ACTIONS(3083), + [anon_sym_consteval] = ACTIONS(3083), + [sym_primitive_type] = ACTIONS(3083), + [anon_sym_enum] = ACTIONS(3083), + [anon_sym_class] = ACTIONS(3083), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_switch] = ACTIONS(3083), + [anon_sym_case] = ACTIONS(3083), + [anon_sym_default] = ACTIONS(3083), + [anon_sym_while] = ACTIONS(3083), + [anon_sym_do] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3083), + [anon_sym_return] = ACTIONS(3083), + [anon_sym_break] = ACTIONS(3083), + [anon_sym_continue] = ACTIONS(3083), + [anon_sym_goto] = ACTIONS(3083), + [anon_sym_not] = ACTIONS(3083), + [anon_sym_compl] = ACTIONS(3083), + [anon_sym_DASH_DASH] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_sizeof] = ACTIONS(3083), + [anon_sym___alignof__] = ACTIONS(3083), + [anon_sym___alignof] = ACTIONS(3083), + [anon_sym__alignof] = ACTIONS(3083), + [anon_sym_alignof] = ACTIONS(3083), + [anon_sym__Alignof] = ACTIONS(3083), + [anon_sym_offsetof] = ACTIONS(3083), + [anon_sym__Generic] = ACTIONS(3083), + [anon_sym_asm] = ACTIONS(3083), + [anon_sym___asm__] = ACTIONS(3083), + [sym_number_literal] = ACTIONS(3085), + [anon_sym_L_SQUOTE] = ACTIONS(3085), + [anon_sym_u_SQUOTE] = ACTIONS(3085), + [anon_sym_U_SQUOTE] = ACTIONS(3085), + [anon_sym_u8_SQUOTE] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(3085), + [anon_sym_L_DQUOTE] = ACTIONS(3085), + [anon_sym_u_DQUOTE] = ACTIONS(3085), + [anon_sym_U_DQUOTE] = ACTIONS(3085), + [anon_sym_u8_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [sym_true] = ACTIONS(3083), + [sym_false] = ACTIONS(3083), + [anon_sym_NULL] = ACTIONS(3083), + [anon_sym_nullptr] = ACTIONS(3083), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3083), + [anon_sym_decltype] = ACTIONS(3083), + [anon_sym_virtual] = ACTIONS(3083), + [anon_sym_alignas] = ACTIONS(3083), + [anon_sym_explicit] = ACTIONS(3083), + [anon_sym_typename] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3083), + [anon_sym_operator] = ACTIONS(3083), + [anon_sym_try] = ACTIONS(3083), + [anon_sym_delete] = ACTIONS(3083), + [anon_sym_throw] = ACTIONS(3083), + [anon_sym_namespace] = ACTIONS(3083), + [anon_sym_using] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3083), + [anon_sym_concept] = ACTIONS(3083), + [anon_sym_co_return] = ACTIONS(3083), + [anon_sym_co_yield] = ACTIONS(3083), + [anon_sym_R_DQUOTE] = ACTIONS(3085), + [anon_sym_LR_DQUOTE] = ACTIONS(3085), + [anon_sym_uR_DQUOTE] = ACTIONS(3085), + [anon_sym_UR_DQUOTE] = ACTIONS(3085), + [anon_sym_u8R_DQUOTE] = ACTIONS(3085), + [anon_sym_co_await] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_requires] = ACTIONS(3083), + [sym_this] = ACTIONS(3083), }, [843] = { - [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), - [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_extern] = ACTIONS(3217), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3217), - [anon_sym_constinit] = ACTIONS(3217), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3217), - [anon_sym_alignas] = 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_using] = 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), + [sym_identifier] = ACTIONS(3176), + [aux_sym_preproc_include_token1] = ACTIONS(3176), + [aux_sym_preproc_def_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token2] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), + [sym_preproc_directive] = ACTIONS(3176), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym___extension__] = ACTIONS(3176), + [anon_sym_typedef] = ACTIONS(3176), + [anon_sym_extern] = ACTIONS(3176), + [anon_sym___attribute__] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(3178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), + [anon_sym___declspec] = ACTIONS(3176), + [anon_sym___based] = ACTIONS(3176), + [anon_sym___cdecl] = ACTIONS(3176), + [anon_sym___clrcall] = ACTIONS(3176), + [anon_sym___stdcall] = ACTIONS(3176), + [anon_sym___fastcall] = ACTIONS(3176), + [anon_sym___thiscall] = ACTIONS(3176), + [anon_sym___vectorcall] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_signed] = ACTIONS(3176), + [anon_sym_unsigned] = ACTIONS(3176), + [anon_sym_long] = ACTIONS(3176), + [anon_sym_short] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_register] = ACTIONS(3176), + [anon_sym_inline] = ACTIONS(3176), + [anon_sym___inline] = ACTIONS(3176), + [anon_sym___inline__] = ACTIONS(3176), + [anon_sym___forceinline] = ACTIONS(3176), + [anon_sym_thread_local] = ACTIONS(3176), + [anon_sym___thread] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_constexpr] = ACTIONS(3176), + [anon_sym_volatile] = ACTIONS(3176), + [anon_sym_restrict] = ACTIONS(3176), + [anon_sym___restrict__] = ACTIONS(3176), + [anon_sym__Atomic] = ACTIONS(3176), + [anon_sym__Noreturn] = ACTIONS(3176), + [anon_sym_noreturn] = ACTIONS(3176), + [anon_sym_mutable] = ACTIONS(3176), + [anon_sym_constinit] = ACTIONS(3176), + [anon_sym_consteval] = ACTIONS(3176), + [sym_primitive_type] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_case] = ACTIONS(3176), + [anon_sym_default] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_goto] = ACTIONS(3176), + [anon_sym_not] = ACTIONS(3176), + [anon_sym_compl] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_sizeof] = ACTIONS(3176), + [anon_sym___alignof__] = ACTIONS(3176), + [anon_sym___alignof] = ACTIONS(3176), + [anon_sym__alignof] = ACTIONS(3176), + [anon_sym_alignof] = ACTIONS(3176), + [anon_sym__Alignof] = ACTIONS(3176), + [anon_sym_offsetof] = ACTIONS(3176), + [anon_sym__Generic] = ACTIONS(3176), + [anon_sym_asm] = ACTIONS(3176), + [anon_sym___asm__] = ACTIONS(3176), + [sym_number_literal] = ACTIONS(3178), + [anon_sym_L_SQUOTE] = ACTIONS(3178), + [anon_sym_u_SQUOTE] = ACTIONS(3178), + [anon_sym_U_SQUOTE] = ACTIONS(3178), + [anon_sym_u8_SQUOTE] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3178), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [anon_sym_NULL] = ACTIONS(3176), + [anon_sym_nullptr] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3176), + [anon_sym_virtual] = ACTIONS(3176), + [anon_sym_alignas] = ACTIONS(3176), + [anon_sym_explicit] = ACTIONS(3176), + [anon_sym_typename] = ACTIONS(3176), + [anon_sym_template] = ACTIONS(3176), + [anon_sym_operator] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_static_assert] = ACTIONS(3176), + [anon_sym_concept] = ACTIONS(3176), + [anon_sym_co_return] = ACTIONS(3176), + [anon_sym_co_yield] = ACTIONS(3176), + [anon_sym_R_DQUOTE] = ACTIONS(3178), + [anon_sym_LR_DQUOTE] = ACTIONS(3178), + [anon_sym_uR_DQUOTE] = ACTIONS(3178), + [anon_sym_UR_DQUOTE] = ACTIONS(3178), + [anon_sym_u8R_DQUOTE] = ACTIONS(3178), + [anon_sym_co_await] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_requires] = ACTIONS(3176), + [sym_this] = ACTIONS(3176), }, [844] = { - [sym_identifier] = ACTIONS(3251), - [aux_sym_preproc_include_token1] = ACTIONS(3251), - [aux_sym_preproc_def_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token2] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3251), - [aux_sym_preproc_else_token1] = ACTIONS(3251), - [aux_sym_preproc_elif_token1] = ACTIONS(3251), - [sym_preproc_directive] = ACTIONS(3251), - [anon_sym_LPAREN2] = ACTIONS(3253), - [anon_sym_BANG] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_SEMI] = ACTIONS(3253), - [anon_sym___extension__] = ACTIONS(3251), - [anon_sym_typedef] = ACTIONS(3251), - [anon_sym_extern] = ACTIONS(3251), - [anon_sym___attribute__] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(3253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3253), - [anon_sym___declspec] = ACTIONS(3251), - [anon_sym___based] = ACTIONS(3251), - [anon_sym___cdecl] = ACTIONS(3251), - [anon_sym___clrcall] = ACTIONS(3251), - [anon_sym___stdcall] = ACTIONS(3251), - [anon_sym___fastcall] = ACTIONS(3251), - [anon_sym___thiscall] = ACTIONS(3251), - [anon_sym___vectorcall] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_signed] = ACTIONS(3251), - [anon_sym_unsigned] = ACTIONS(3251), - [anon_sym_long] = ACTIONS(3251), - [anon_sym_short] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_register] = ACTIONS(3251), - [anon_sym_inline] = ACTIONS(3251), - [anon_sym___inline] = ACTIONS(3251), - [anon_sym___inline__] = ACTIONS(3251), - [anon_sym___forceinline] = ACTIONS(3251), - [anon_sym_thread_local] = ACTIONS(3251), - [anon_sym___thread] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_constexpr] = ACTIONS(3251), - [anon_sym_volatile] = ACTIONS(3251), - [anon_sym_restrict] = ACTIONS(3251), - [anon_sym___restrict__] = ACTIONS(3251), - [anon_sym__Atomic] = ACTIONS(3251), - [anon_sym__Noreturn] = ACTIONS(3251), - [anon_sym_noreturn] = ACTIONS(3251), - [anon_sym_mutable] = ACTIONS(3251), - [anon_sym_constinit] = ACTIONS(3251), - [anon_sym_consteval] = ACTIONS(3251), - [sym_primitive_type] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_union] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_switch] = ACTIONS(3251), - [anon_sym_case] = ACTIONS(3251), - [anon_sym_default] = ACTIONS(3251), - [anon_sym_while] = ACTIONS(3251), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_goto] = ACTIONS(3251), - [anon_sym_not] = ACTIONS(3251), - [anon_sym_compl] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_PLUS_PLUS] = ACTIONS(3253), - [anon_sym_sizeof] = ACTIONS(3251), - [anon_sym___alignof__] = ACTIONS(3251), - [anon_sym___alignof] = ACTIONS(3251), - [anon_sym__alignof] = ACTIONS(3251), - [anon_sym_alignof] = ACTIONS(3251), - [anon_sym__Alignof] = ACTIONS(3251), - [anon_sym_offsetof] = ACTIONS(3251), - [anon_sym__Generic] = ACTIONS(3251), - [anon_sym_asm] = ACTIONS(3251), - [anon_sym___asm__] = ACTIONS(3251), - [sym_number_literal] = ACTIONS(3253), - [anon_sym_L_SQUOTE] = ACTIONS(3253), - [anon_sym_u_SQUOTE] = ACTIONS(3253), - [anon_sym_U_SQUOTE] = ACTIONS(3253), - [anon_sym_u8_SQUOTE] = ACTIONS(3253), - [anon_sym_SQUOTE] = ACTIONS(3253), - [anon_sym_L_DQUOTE] = ACTIONS(3253), - [anon_sym_u_DQUOTE] = ACTIONS(3253), - [anon_sym_U_DQUOTE] = ACTIONS(3253), - [anon_sym_u8_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [anon_sym_NULL] = ACTIONS(3251), - [anon_sym_nullptr] = ACTIONS(3251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3251), - [anon_sym_decltype] = ACTIONS(3251), - [anon_sym_virtual] = ACTIONS(3251), - [anon_sym_alignas] = ACTIONS(3251), - [anon_sym_explicit] = ACTIONS(3251), - [anon_sym_typename] = ACTIONS(3251), - [anon_sym_template] = ACTIONS(3251), - [anon_sym_operator] = ACTIONS(3251), - [anon_sym_try] = ACTIONS(3251), - [anon_sym_delete] = ACTIONS(3251), - [anon_sym_throw] = ACTIONS(3251), - [anon_sym_namespace] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_static_assert] = ACTIONS(3251), - [anon_sym_concept] = ACTIONS(3251), - [anon_sym_co_return] = ACTIONS(3251), - [anon_sym_co_yield] = ACTIONS(3251), - [anon_sym_R_DQUOTE] = ACTIONS(3253), - [anon_sym_LR_DQUOTE] = ACTIONS(3253), - [anon_sym_uR_DQUOTE] = ACTIONS(3253), - [anon_sym_UR_DQUOTE] = ACTIONS(3253), - [anon_sym_u8R_DQUOTE] = ACTIONS(3253), - [anon_sym_co_await] = ACTIONS(3251), - [anon_sym_new] = ACTIONS(3251), - [anon_sym_requires] = ACTIONS(3251), - [sym_this] = ACTIONS(3251), - }, - [845] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_include_token1] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym___cdecl] = ACTIONS(2194), - [anon_sym___clrcall] = ACTIONS(2194), - [anon_sym___stdcall] = ACTIONS(2194), - [anon_sym___fastcall] = ACTIONS(2194), - [anon_sym___thiscall] = ACTIONS(2194), - [anon_sym___vectorcall] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_goto] = ACTIONS(2194), - [anon_sym_not] = ACTIONS(2194), - [anon_sym_compl] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_sizeof] = ACTIONS(2194), - [anon_sym___alignof__] = ACTIONS(2194), - [anon_sym___alignof] = ACTIONS(2194), - [anon_sym__alignof] = ACTIONS(2194), - [anon_sym_alignof] = ACTIONS(2194), - [anon_sym__Alignof] = ACTIONS(2194), - [anon_sym_offsetof] = ACTIONS(2194), - [anon_sym__Generic] = ACTIONS(2194), - [anon_sym_asm] = ACTIONS(2194), - [anon_sym___asm__] = ACTIONS(2194), - [sym_number_literal] = ACTIONS(2192), - [anon_sym_L_SQUOTE] = ACTIONS(2192), - [anon_sym_u_SQUOTE] = ACTIONS(2192), - [anon_sym_U_SQUOTE] = ACTIONS(2192), - [anon_sym_u8_SQUOTE] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_L_DQUOTE] = ACTIONS(2192), - [anon_sym_u_DQUOTE] = ACTIONS(2192), - [anon_sym_U_DQUOTE] = ACTIONS(2192), - [anon_sym_u8_DQUOTE] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [anon_sym_NULL] = ACTIONS(2194), - [anon_sym_nullptr] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_delete] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - [anon_sym_concept] = ACTIONS(2194), - [anon_sym_co_return] = ACTIONS(2194), - [anon_sym_co_yield] = ACTIONS(2194), - [anon_sym_catch] = ACTIONS(2194), - [anon_sym_R_DQUOTE] = ACTIONS(2192), - [anon_sym_LR_DQUOTE] = ACTIONS(2192), - [anon_sym_uR_DQUOTE] = ACTIONS(2192), - [anon_sym_UR_DQUOTE] = ACTIONS(2192), - [anon_sym_u8R_DQUOTE] = ACTIONS(2192), - [anon_sym_co_await] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_requires] = ACTIONS(2194), - [sym_this] = ACTIONS(2194), - }, - [846] = { - [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), - [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_extern] = ACTIONS(3304), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3304), - [anon_sym_alignas] = 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_using] = 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), - }, - [847] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2961), + [aux_sym_preproc_include_token1] = ACTIONS(2961), + [aux_sym_preproc_def_token1] = ACTIONS(2961), + [aux_sym_preproc_if_token1] = ACTIONS(2961), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2961), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2961), + [sym_preproc_directive] = ACTIONS(2961), + [anon_sym_LPAREN2] = ACTIONS(2963), + [anon_sym_BANG] = ACTIONS(2963), + [anon_sym_TILDE] = ACTIONS(2963), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_AMP_AMP] = ACTIONS(2963), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2963), + [anon_sym___extension__] = ACTIONS(2961), + [anon_sym_typedef] = ACTIONS(2961), + [anon_sym_extern] = ACTIONS(2961), + [anon_sym___attribute__] = ACTIONS(2961), + [anon_sym_COLON_COLON] = ACTIONS(2963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), + [anon_sym___declspec] = ACTIONS(2961), + [anon_sym___based] = ACTIONS(2961), + [anon_sym___cdecl] = ACTIONS(2961), + [anon_sym___clrcall] = ACTIONS(2961), + [anon_sym___stdcall] = ACTIONS(2961), + [anon_sym___fastcall] = ACTIONS(2961), + [anon_sym___thiscall] = ACTIONS(2961), + [anon_sym___vectorcall] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2963), + [anon_sym_RBRACE] = ACTIONS(2963), + [anon_sym_signed] = ACTIONS(2961), + [anon_sym_unsigned] = ACTIONS(2961), + [anon_sym_long] = ACTIONS(2961), + [anon_sym_short] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_static] = ACTIONS(2961), + [anon_sym_register] = ACTIONS(2961), + [anon_sym_inline] = ACTIONS(2961), + [anon_sym___inline] = ACTIONS(2961), + [anon_sym___inline__] = ACTIONS(2961), + [anon_sym___forceinline] = ACTIONS(2961), + [anon_sym_thread_local] = ACTIONS(2961), + [anon_sym___thread] = ACTIONS(2961), + [anon_sym_const] = ACTIONS(2961), + [anon_sym_constexpr] = ACTIONS(2961), + [anon_sym_volatile] = ACTIONS(2961), + [anon_sym_restrict] = ACTIONS(2961), + [anon_sym___restrict__] = ACTIONS(2961), + [anon_sym__Atomic] = ACTIONS(2961), + [anon_sym__Noreturn] = ACTIONS(2961), + [anon_sym_noreturn] = ACTIONS(2961), + [anon_sym_mutable] = ACTIONS(2961), + [anon_sym_constinit] = ACTIONS(2961), + [anon_sym_consteval] = ACTIONS(2961), + [sym_primitive_type] = ACTIONS(2961), + [anon_sym_enum] = ACTIONS(2961), + [anon_sym_class] = ACTIONS(2961), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_union] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_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), + [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(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2961), + [anon_sym_decltype] = ACTIONS(2961), + [anon_sym_virtual] = ACTIONS(2961), + [anon_sym_alignas] = ACTIONS(2961), + [anon_sym_explicit] = ACTIONS(2961), + [anon_sym_typename] = ACTIONS(2961), + [anon_sym_template] = ACTIONS(2961), + [anon_sym_operator] = ACTIONS(2961), + [anon_sym_try] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2961), + [anon_sym_throw] = ACTIONS(2961), + [anon_sym_namespace] = ACTIONS(2961), + [anon_sym_using] = ACTIONS(2961), + [anon_sym_static_assert] = ACTIONS(2961), + [anon_sym_concept] = ACTIONS(2961), + [anon_sym_co_return] = ACTIONS(2961), + [anon_sym_co_yield] = ACTIONS(2961), + [anon_sym_R_DQUOTE] = ACTIONS(2963), + [anon_sym_LR_DQUOTE] = ACTIONS(2963), + [anon_sym_uR_DQUOTE] = ACTIONS(2963), + [anon_sym_UR_DQUOTE] = ACTIONS(2963), + [anon_sym_u8R_DQUOTE] = ACTIONS(2963), + [anon_sym_co_await] = ACTIONS(2961), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2961), + [sym_this] = ACTIONS(2961), + }, + [845] = { + [sym_identifier] = ACTIONS(3079), + [aux_sym_preproc_include_token1] = ACTIONS(3079), + [aux_sym_preproc_def_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), + [sym_preproc_directive] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym___extension__] = ACTIONS(3079), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym___based] = ACTIONS(3079), + [anon_sym___cdecl] = ACTIONS(3079), + [anon_sym___clrcall] = ACTIONS(3079), + [anon_sym___stdcall] = ACTIONS(3079), + [anon_sym___fastcall] = ACTIONS(3079), + [anon_sym___thiscall] = ACTIONS(3079), + [anon_sym___vectorcall] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_RBRACE] = ACTIONS(3081), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym___inline] = ACTIONS(3079), + [anon_sym___inline__] = ACTIONS(3079), + [anon_sym___forceinline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym___thread] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3079), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_goto] = ACTIONS(3079), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_compl] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3079), + [anon_sym___alignof__] = ACTIONS(3079), + [anon_sym___alignof] = ACTIONS(3079), + [anon_sym__alignof] = ACTIONS(3079), + [anon_sym_alignof] = ACTIONS(3079), + [anon_sym__Alignof] = ACTIONS(3079), + [anon_sym_offsetof] = ACTIONS(3079), + [anon_sym__Generic] = ACTIONS(3079), + [anon_sym_asm] = ACTIONS(3079), + [anon_sym___asm__] = ACTIONS(3079), + [sym_number_literal] = ACTIONS(3081), + [anon_sym_L_SQUOTE] = ACTIONS(3081), + [anon_sym_u_SQUOTE] = ACTIONS(3081), + [anon_sym_U_SQUOTE] = ACTIONS(3081), + [anon_sym_u8_SQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_L_DQUOTE] = ACTIONS(3081), + [anon_sym_u_DQUOTE] = ACTIONS(3081), + [anon_sym_U_DQUOTE] = ACTIONS(3081), + [anon_sym_u8_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [anon_sym_NULL] = ACTIONS(3079), + [anon_sym_nullptr] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_alignas] = ACTIONS(3079), + [anon_sym_explicit] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_static_assert] = ACTIONS(3079), + [anon_sym_concept] = ACTIONS(3079), + [anon_sym_co_return] = ACTIONS(3079), + [anon_sym_co_yield] = ACTIONS(3079), + [anon_sym_R_DQUOTE] = ACTIONS(3081), + [anon_sym_LR_DQUOTE] = ACTIONS(3081), + [anon_sym_uR_DQUOTE] = ACTIONS(3081), + [anon_sym_UR_DQUOTE] = ACTIONS(3081), + [anon_sym_u8R_DQUOTE] = ACTIONS(3081), + [anon_sym_co_await] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_requires] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), + }, + [846] = { + [sym_identifier] = ACTIONS(3184), + [aux_sym_preproc_include_token1] = ACTIONS(3184), + [aux_sym_preproc_def_token1] = ACTIONS(3184), + [aux_sym_preproc_if_token1] = ACTIONS(3184), + [aux_sym_preproc_if_token2] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym___extension__] = ACTIONS(3184), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym___attribute__] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3186), + [anon_sym___declspec] = ACTIONS(3184), + [anon_sym___based] = ACTIONS(3184), + [anon_sym___cdecl] = ACTIONS(3184), + [anon_sym___clrcall] = ACTIONS(3184), + [anon_sym___stdcall] = ACTIONS(3184), + [anon_sym___fastcall] = ACTIONS(3184), + [anon_sym___thiscall] = ACTIONS(3184), + [anon_sym___vectorcall] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_signed] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym___inline] = ACTIONS(3184), + [anon_sym___inline__] = ACTIONS(3184), + [anon_sym___forceinline] = ACTIONS(3184), + [anon_sym_thread_local] = ACTIONS(3184), + [anon_sym___thread] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym___restrict__] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym__Noreturn] = ACTIONS(3184), + [anon_sym_noreturn] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_constinit] = ACTIONS(3184), + [anon_sym_consteval] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_class] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3184), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_goto] = ACTIONS(3184), + [anon_sym_not] = ACTIONS(3184), + [anon_sym_compl] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_sizeof] = ACTIONS(3184), + [anon_sym___alignof__] = ACTIONS(3184), + [anon_sym___alignof] = ACTIONS(3184), + [anon_sym__alignof] = ACTIONS(3184), + [anon_sym_alignof] = ACTIONS(3184), + [anon_sym__Alignof] = ACTIONS(3184), + [anon_sym_offsetof] = ACTIONS(3184), + [anon_sym__Generic] = ACTIONS(3184), + [anon_sym_asm] = ACTIONS(3184), + [anon_sym___asm__] = ACTIONS(3184), + [sym_number_literal] = ACTIONS(3186), + [anon_sym_L_SQUOTE] = ACTIONS(3186), + [anon_sym_u_SQUOTE] = ACTIONS(3186), + [anon_sym_U_SQUOTE] = ACTIONS(3186), + [anon_sym_u8_SQUOTE] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_L_DQUOTE] = ACTIONS(3186), + [anon_sym_u_DQUOTE] = ACTIONS(3186), + [anon_sym_U_DQUOTE] = ACTIONS(3186), + [anon_sym_u8_DQUOTE] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [anon_sym_NULL] = ACTIONS(3184), + [anon_sym_nullptr] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3184), + [anon_sym_virtual] = ACTIONS(3184), + [anon_sym_alignas] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [anon_sym_template] = ACTIONS(3184), + [anon_sym_operator] = ACTIONS(3184), + [anon_sym_try] = ACTIONS(3184), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_throw] = ACTIONS(3184), + [anon_sym_namespace] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_static_assert] = ACTIONS(3184), + [anon_sym_concept] = ACTIONS(3184), + [anon_sym_co_return] = ACTIONS(3184), + [anon_sym_co_yield] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_requires] = ACTIONS(3184), + [sym_this] = ACTIONS(3184), + }, + [847] = { + [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_extern] = ACTIONS(3075), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3075), + [anon_sym_constinit] = ACTIONS(3075), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3075), + [anon_sym_alignas] = 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_using] = 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), }, [848] = { - [sym_identifier] = ACTIONS(2844), - [aux_sym_preproc_include_token1] = ACTIONS(2844), - [aux_sym_preproc_def_token1] = ACTIONS(2844), - [aux_sym_preproc_if_token1] = ACTIONS(2844), - [aux_sym_preproc_if_token2] = ACTIONS(2844), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2844), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2844), - [sym_preproc_directive] = ACTIONS(2844), - [anon_sym_LPAREN2] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2844), - [anon_sym_PLUS] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2844), - [anon_sym_SEMI] = ACTIONS(2846), - [anon_sym___extension__] = ACTIONS(2844), - [anon_sym_typedef] = ACTIONS(2844), - [anon_sym_extern] = ACTIONS(2844), - [anon_sym___attribute__] = ACTIONS(2844), - [anon_sym_COLON_COLON] = ACTIONS(2846), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2846), - [anon_sym___declspec] = ACTIONS(2844), - [anon_sym___based] = ACTIONS(2844), - [anon_sym___cdecl] = ACTIONS(2844), - [anon_sym___clrcall] = ACTIONS(2844), - [anon_sym___stdcall] = ACTIONS(2844), - [anon_sym___fastcall] = ACTIONS(2844), - [anon_sym___thiscall] = ACTIONS(2844), - [anon_sym___vectorcall] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_signed] = ACTIONS(2844), - [anon_sym_unsigned] = ACTIONS(2844), - [anon_sym_long] = ACTIONS(2844), - [anon_sym_short] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_static] = ACTIONS(2844), - [anon_sym_register] = ACTIONS(2844), - [anon_sym_inline] = ACTIONS(2844), - [anon_sym___inline] = ACTIONS(2844), - [anon_sym___inline__] = ACTIONS(2844), - [anon_sym___forceinline] = ACTIONS(2844), - [anon_sym_thread_local] = ACTIONS(2844), - [anon_sym___thread] = ACTIONS(2844), - [anon_sym_const] = ACTIONS(2844), - [anon_sym_constexpr] = ACTIONS(2844), - [anon_sym_volatile] = ACTIONS(2844), - [anon_sym_restrict] = ACTIONS(2844), - [anon_sym___restrict__] = ACTIONS(2844), - [anon_sym__Atomic] = ACTIONS(2844), - [anon_sym__Noreturn] = ACTIONS(2844), - [anon_sym_noreturn] = ACTIONS(2844), - [anon_sym_mutable] = ACTIONS(2844), - [anon_sym_constinit] = ACTIONS(2844), - [anon_sym_consteval] = ACTIONS(2844), - [sym_primitive_type] = ACTIONS(2844), - [anon_sym_enum] = ACTIONS(2844), - [anon_sym_class] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_else] = ACTIONS(2844), - [anon_sym_switch] = ACTIONS(2844), - [anon_sym_case] = ACTIONS(2844), - [anon_sym_default] = ACTIONS(2844), - [anon_sym_while] = ACTIONS(2844), - [anon_sym_do] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2844), - [anon_sym_return] = ACTIONS(2844), - [anon_sym_break] = ACTIONS(2844), - [anon_sym_continue] = ACTIONS(2844), - [anon_sym_goto] = ACTIONS(2844), - [anon_sym_not] = ACTIONS(2844), - [anon_sym_compl] = ACTIONS(2844), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_sizeof] = ACTIONS(2844), - [anon_sym___alignof__] = ACTIONS(2844), - [anon_sym___alignof] = ACTIONS(2844), - [anon_sym__alignof] = ACTIONS(2844), - [anon_sym_alignof] = ACTIONS(2844), - [anon_sym__Alignof] = ACTIONS(2844), - [anon_sym_offsetof] = ACTIONS(2844), - [anon_sym__Generic] = ACTIONS(2844), - [anon_sym_asm] = ACTIONS(2844), - [anon_sym___asm__] = ACTIONS(2844), - [sym_number_literal] = ACTIONS(2846), - [anon_sym_L_SQUOTE] = ACTIONS(2846), - [anon_sym_u_SQUOTE] = ACTIONS(2846), - [anon_sym_U_SQUOTE] = ACTIONS(2846), - [anon_sym_u8_SQUOTE] = ACTIONS(2846), - [anon_sym_SQUOTE] = ACTIONS(2846), - [anon_sym_L_DQUOTE] = ACTIONS(2846), - [anon_sym_u_DQUOTE] = ACTIONS(2846), - [anon_sym_U_DQUOTE] = ACTIONS(2846), - [anon_sym_u8_DQUOTE] = ACTIONS(2846), - [anon_sym_DQUOTE] = ACTIONS(2846), - [sym_true] = ACTIONS(2844), - [sym_false] = ACTIONS(2844), - [anon_sym_NULL] = ACTIONS(2844), - [anon_sym_nullptr] = ACTIONS(2844), + [sym_identifier] = ACTIONS(2965), + [aux_sym_preproc_include_token1] = ACTIONS(2965), + [aux_sym_preproc_def_token1] = ACTIONS(2965), + [aux_sym_preproc_if_token1] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), + [sym_preproc_directive] = ACTIONS(2965), + [anon_sym_LPAREN2] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_PLUS] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_SEMI] = ACTIONS(2967), + [anon_sym___extension__] = ACTIONS(2965), + [anon_sym_typedef] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2965), + [anon_sym___attribute__] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(2967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), + [anon_sym___declspec] = ACTIONS(2965), + [anon_sym___based] = ACTIONS(2965), + [anon_sym___cdecl] = ACTIONS(2965), + [anon_sym___clrcall] = ACTIONS(2965), + [anon_sym___stdcall] = ACTIONS(2965), + [anon_sym___fastcall] = ACTIONS(2965), + [anon_sym___thiscall] = ACTIONS(2965), + [anon_sym___vectorcall] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_RBRACE] = ACTIONS(2967), + [anon_sym_signed] = ACTIONS(2965), + [anon_sym_unsigned] = ACTIONS(2965), + [anon_sym_long] = ACTIONS(2965), + [anon_sym_short] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_static] = ACTIONS(2965), + [anon_sym_register] = ACTIONS(2965), + [anon_sym_inline] = ACTIONS(2965), + [anon_sym___inline] = ACTIONS(2965), + [anon_sym___inline__] = ACTIONS(2965), + [anon_sym___forceinline] = ACTIONS(2965), + [anon_sym_thread_local] = ACTIONS(2965), + [anon_sym___thread] = ACTIONS(2965), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_constexpr] = ACTIONS(2965), + [anon_sym_volatile] = ACTIONS(2965), + [anon_sym_restrict] = ACTIONS(2965), + [anon_sym___restrict__] = ACTIONS(2965), + [anon_sym__Atomic] = ACTIONS(2965), + [anon_sym__Noreturn] = ACTIONS(2965), + [anon_sym_noreturn] = ACTIONS(2965), + [anon_sym_mutable] = ACTIONS(2965), + [anon_sym_constinit] = ACTIONS(2965), + [anon_sym_consteval] = ACTIONS(2965), + [sym_primitive_type] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_class] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_union] = ACTIONS(2965), + [anon_sym_if] = ACTIONS(2965), + [anon_sym_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), + [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(2844), - [anon_sym_decltype] = ACTIONS(2844), - [anon_sym_virtual] = ACTIONS(2844), - [anon_sym_alignas] = ACTIONS(2844), - [anon_sym_explicit] = ACTIONS(2844), - [anon_sym_typename] = ACTIONS(2844), - [anon_sym_template] = ACTIONS(2844), - [anon_sym_operator] = ACTIONS(2844), - [anon_sym_try] = ACTIONS(2844), - [anon_sym_delete] = ACTIONS(2844), - [anon_sym_throw] = ACTIONS(2844), - [anon_sym_namespace] = ACTIONS(2844), - [anon_sym_using] = ACTIONS(2844), - [anon_sym_static_assert] = ACTIONS(2844), - [anon_sym_concept] = ACTIONS(2844), - [anon_sym_co_return] = ACTIONS(2844), - [anon_sym_co_yield] = ACTIONS(2844), - [anon_sym_R_DQUOTE] = ACTIONS(2846), - [anon_sym_LR_DQUOTE] = ACTIONS(2846), - [anon_sym_uR_DQUOTE] = ACTIONS(2846), - [anon_sym_UR_DQUOTE] = ACTIONS(2846), - [anon_sym_u8R_DQUOTE] = ACTIONS(2846), - [anon_sym_co_await] = ACTIONS(2844), - [anon_sym_new] = ACTIONS(2844), - [anon_sym_requires] = ACTIONS(2844), - [sym_this] = ACTIONS(2844), + [sym_auto] = ACTIONS(2965), + [anon_sym_decltype] = ACTIONS(2965), + [anon_sym_virtual] = ACTIONS(2965), + [anon_sym_alignas] = ACTIONS(2965), + [anon_sym_explicit] = ACTIONS(2965), + [anon_sym_typename] = ACTIONS(2965), + [anon_sym_template] = ACTIONS(2965), + [anon_sym_operator] = ACTIONS(2965), + [anon_sym_try] = ACTIONS(2965), + [anon_sym_delete] = ACTIONS(2965), + [anon_sym_throw] = ACTIONS(2965), + [anon_sym_namespace] = ACTIONS(2965), + [anon_sym_using] = ACTIONS(2965), + [anon_sym_static_assert] = ACTIONS(2965), + [anon_sym_concept] = ACTIONS(2965), + [anon_sym_co_return] = ACTIONS(2965), + [anon_sym_co_yield] = ACTIONS(2965), + [anon_sym_R_DQUOTE] = ACTIONS(2967), + [anon_sym_LR_DQUOTE] = ACTIONS(2967), + [anon_sym_uR_DQUOTE] = ACTIONS(2967), + [anon_sym_UR_DQUOTE] = ACTIONS(2967), + [anon_sym_u8R_DQUOTE] = ACTIONS(2967), + [anon_sym_co_await] = ACTIONS(2965), + [anon_sym_new] = ACTIONS(2965), + [anon_sym_requires] = ACTIONS(2965), + [sym_this] = ACTIONS(2965), }, [849] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [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_extern] = ACTIONS(3067), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3067), + [anon_sym_constinit] = ACTIONS(3067), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3067), + [anon_sym_alignas] = 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_using] = 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), }, [850] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [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_extern] = ACTIONS(3115), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3115), + [anon_sym_constinit] = ACTIONS(3115), + [anon_sym_consteval] = 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), + [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(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(3115), + [anon_sym_decltype] = ACTIONS(3115), + [anon_sym_virtual] = ACTIONS(3115), + [anon_sym_alignas] = 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_using] = 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), }, [851] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_identifier] = ACTIONS(3063), + [aux_sym_preproc_include_token1] = ACTIONS(3063), + [aux_sym_preproc_def_token1] = ACTIONS(3063), + [aux_sym_preproc_if_token1] = ACTIONS(3063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), + [sym_preproc_directive] = ACTIONS(3063), + [anon_sym_LPAREN2] = ACTIONS(3065), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_TILDE] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym___extension__] = ACTIONS(3063), + [anon_sym_typedef] = ACTIONS(3063), + [anon_sym_extern] = ACTIONS(3063), + [anon_sym___attribute__] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(3065), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), + [anon_sym___declspec] = ACTIONS(3063), + [anon_sym___based] = ACTIONS(3063), + [anon_sym___cdecl] = ACTIONS(3063), + [anon_sym___clrcall] = ACTIONS(3063), + [anon_sym___stdcall] = ACTIONS(3063), + [anon_sym___fastcall] = ACTIONS(3063), + [anon_sym___thiscall] = ACTIONS(3063), + [anon_sym___vectorcall] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_signed] = ACTIONS(3063), + [anon_sym_unsigned] = ACTIONS(3063), + [anon_sym_long] = ACTIONS(3063), + [anon_sym_short] = ACTIONS(3063), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_static] = ACTIONS(3063), + [anon_sym_register] = ACTIONS(3063), + [anon_sym_inline] = ACTIONS(3063), + [anon_sym___inline] = ACTIONS(3063), + [anon_sym___inline__] = ACTIONS(3063), + [anon_sym___forceinline] = ACTIONS(3063), + [anon_sym_thread_local] = ACTIONS(3063), + [anon_sym___thread] = ACTIONS(3063), + [anon_sym_const] = ACTIONS(3063), + [anon_sym_constexpr] = ACTIONS(3063), + [anon_sym_volatile] = ACTIONS(3063), + [anon_sym_restrict] = ACTIONS(3063), + [anon_sym___restrict__] = ACTIONS(3063), + [anon_sym__Atomic] = ACTIONS(3063), + [anon_sym__Noreturn] = ACTIONS(3063), + [anon_sym_noreturn] = ACTIONS(3063), + [anon_sym_mutable] = ACTIONS(3063), + [anon_sym_constinit] = ACTIONS(3063), + [anon_sym_consteval] = ACTIONS(3063), + [sym_primitive_type] = ACTIONS(3063), + [anon_sym_enum] = ACTIONS(3063), + [anon_sym_class] = ACTIONS(3063), + [anon_sym_struct] = ACTIONS(3063), + [anon_sym_union] = ACTIONS(3063), + [anon_sym_if] = ACTIONS(3063), + [anon_sym_switch] = ACTIONS(3063), + [anon_sym_case] = ACTIONS(3063), + [anon_sym_default] = ACTIONS(3063), + [anon_sym_while] = ACTIONS(3063), + [anon_sym_do] = ACTIONS(3063), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(3063), + [anon_sym_break] = ACTIONS(3063), + [anon_sym_continue] = ACTIONS(3063), + [anon_sym_goto] = ACTIONS(3063), + [anon_sym_not] = ACTIONS(3063), + [anon_sym_compl] = ACTIONS(3063), + [anon_sym_DASH_DASH] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_sizeof] = ACTIONS(3063), + [anon_sym___alignof__] = ACTIONS(3063), + [anon_sym___alignof] = ACTIONS(3063), + [anon_sym__alignof] = ACTIONS(3063), + [anon_sym_alignof] = ACTIONS(3063), + [anon_sym__Alignof] = ACTIONS(3063), + [anon_sym_offsetof] = ACTIONS(3063), + [anon_sym__Generic] = ACTIONS(3063), + [anon_sym_asm] = ACTIONS(3063), + [anon_sym___asm__] = ACTIONS(3063), + [sym_number_literal] = ACTIONS(3065), + [anon_sym_L_SQUOTE] = ACTIONS(3065), + [anon_sym_u_SQUOTE] = ACTIONS(3065), + [anon_sym_U_SQUOTE] = ACTIONS(3065), + [anon_sym_u8_SQUOTE] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3065), + [anon_sym_L_DQUOTE] = ACTIONS(3065), + [anon_sym_u_DQUOTE] = ACTIONS(3065), + [anon_sym_U_DQUOTE] = ACTIONS(3065), + [anon_sym_u8_DQUOTE] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [sym_true] = ACTIONS(3063), + [sym_false] = ACTIONS(3063), + [anon_sym_NULL] = ACTIONS(3063), + [anon_sym_nullptr] = ACTIONS(3063), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3063), + [anon_sym_decltype] = ACTIONS(3063), + [anon_sym_virtual] = ACTIONS(3063), + [anon_sym_alignas] = ACTIONS(3063), + [anon_sym_explicit] = ACTIONS(3063), + [anon_sym_typename] = ACTIONS(3063), + [anon_sym_template] = ACTIONS(3063), + [anon_sym_operator] = ACTIONS(3063), + [anon_sym_try] = ACTIONS(3063), + [anon_sym_delete] = ACTIONS(3063), + [anon_sym_throw] = ACTIONS(3063), + [anon_sym_namespace] = ACTIONS(3063), + [anon_sym_using] = ACTIONS(3063), + [anon_sym_static_assert] = ACTIONS(3063), + [anon_sym_concept] = ACTIONS(3063), + [anon_sym_co_return] = ACTIONS(3063), + [anon_sym_co_yield] = ACTIONS(3063), + [anon_sym_R_DQUOTE] = ACTIONS(3065), + [anon_sym_LR_DQUOTE] = ACTIONS(3065), + [anon_sym_uR_DQUOTE] = ACTIONS(3065), + [anon_sym_UR_DQUOTE] = ACTIONS(3065), + [anon_sym_u8R_DQUOTE] = ACTIONS(3065), + [anon_sym_co_await] = ACTIONS(3063), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_requires] = ACTIONS(3063), + [sym_this] = ACTIONS(3063), }, [852] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2969), + [aux_sym_preproc_include_token1] = ACTIONS(2969), + [aux_sym_preproc_def_token1] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(2969), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), + [sym_preproc_directive] = ACTIONS(2969), + [anon_sym_LPAREN2] = ACTIONS(2971), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2969), + [anon_sym_SEMI] = ACTIONS(2971), + [anon_sym___extension__] = ACTIONS(2969), + [anon_sym_typedef] = ACTIONS(2969), + [anon_sym_extern] = ACTIONS(2969), + [anon_sym___attribute__] = ACTIONS(2969), + [anon_sym_COLON_COLON] = ACTIONS(2971), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), + [anon_sym___declspec] = ACTIONS(2969), + [anon_sym___based] = ACTIONS(2969), + [anon_sym___cdecl] = ACTIONS(2969), + [anon_sym___clrcall] = ACTIONS(2969), + [anon_sym___stdcall] = ACTIONS(2969), + [anon_sym___fastcall] = ACTIONS(2969), + [anon_sym___thiscall] = ACTIONS(2969), + [anon_sym___vectorcall] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_RBRACE] = ACTIONS(2971), + [anon_sym_signed] = ACTIONS(2969), + [anon_sym_unsigned] = ACTIONS(2969), + [anon_sym_long] = ACTIONS(2969), + [anon_sym_short] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(2969), + [anon_sym_register] = ACTIONS(2969), + [anon_sym_inline] = ACTIONS(2969), + [anon_sym___inline] = ACTIONS(2969), + [anon_sym___inline__] = ACTIONS(2969), + [anon_sym___forceinline] = ACTIONS(2969), + [anon_sym_thread_local] = ACTIONS(2969), + [anon_sym___thread] = ACTIONS(2969), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_constexpr] = ACTIONS(2969), + [anon_sym_volatile] = ACTIONS(2969), + [anon_sym_restrict] = ACTIONS(2969), + [anon_sym___restrict__] = ACTIONS(2969), + [anon_sym__Atomic] = ACTIONS(2969), + [anon_sym__Noreturn] = ACTIONS(2969), + [anon_sym_noreturn] = ACTIONS(2969), + [anon_sym_mutable] = ACTIONS(2969), + [anon_sym_constinit] = ACTIONS(2969), + [anon_sym_consteval] = ACTIONS(2969), + [sym_primitive_type] = ACTIONS(2969), + [anon_sym_enum] = ACTIONS(2969), + [anon_sym_class] = ACTIONS(2969), + [anon_sym_struct] = ACTIONS(2969), + [anon_sym_union] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_switch] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2969), + [anon_sym_default] = ACTIONS(2969), + [anon_sym_while] = ACTIONS(2969), + [anon_sym_do] = ACTIONS(2969), + [anon_sym_for] = ACTIONS(2969), + [anon_sym_return] = ACTIONS(2969), + [anon_sym_break] = ACTIONS(2969), + [anon_sym_continue] = ACTIONS(2969), + [anon_sym_goto] = ACTIONS(2969), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(2971), + [anon_sym_PLUS_PLUS] = ACTIONS(2971), + [anon_sym_sizeof] = ACTIONS(2969), + [anon_sym___alignof__] = ACTIONS(2969), + [anon_sym___alignof] = ACTIONS(2969), + [anon_sym__alignof] = ACTIONS(2969), + [anon_sym_alignof] = ACTIONS(2969), + [anon_sym__Alignof] = ACTIONS(2969), + [anon_sym_offsetof] = ACTIONS(2969), + [anon_sym__Generic] = ACTIONS(2969), + [anon_sym_asm] = ACTIONS(2969), + [anon_sym___asm__] = ACTIONS(2969), + [sym_number_literal] = ACTIONS(2971), + [anon_sym_L_SQUOTE] = ACTIONS(2971), + [anon_sym_u_SQUOTE] = ACTIONS(2971), + [anon_sym_U_SQUOTE] = ACTIONS(2971), + [anon_sym_u8_SQUOTE] = ACTIONS(2971), + [anon_sym_SQUOTE] = ACTIONS(2971), + [anon_sym_L_DQUOTE] = ACTIONS(2971), + [anon_sym_u_DQUOTE] = ACTIONS(2971), + [anon_sym_U_DQUOTE] = ACTIONS(2971), + [anon_sym_u8_DQUOTE] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [sym_true] = ACTIONS(2969), + [sym_false] = ACTIONS(2969), + [anon_sym_NULL] = ACTIONS(2969), + [anon_sym_nullptr] = ACTIONS(2969), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2969), + [anon_sym_decltype] = ACTIONS(2969), + [anon_sym_virtual] = ACTIONS(2969), + [anon_sym_alignas] = ACTIONS(2969), + [anon_sym_explicit] = ACTIONS(2969), + [anon_sym_typename] = ACTIONS(2969), + [anon_sym_template] = ACTIONS(2969), + [anon_sym_operator] = ACTIONS(2969), + [anon_sym_try] = ACTIONS(2969), + [anon_sym_delete] = ACTIONS(2969), + [anon_sym_throw] = ACTIONS(2969), + [anon_sym_namespace] = ACTIONS(2969), + [anon_sym_using] = ACTIONS(2969), + [anon_sym_static_assert] = ACTIONS(2969), + [anon_sym_concept] = ACTIONS(2969), + [anon_sym_co_return] = ACTIONS(2969), + [anon_sym_co_yield] = ACTIONS(2969), + [anon_sym_R_DQUOTE] = ACTIONS(2971), + [anon_sym_LR_DQUOTE] = ACTIONS(2971), + [anon_sym_uR_DQUOTE] = ACTIONS(2971), + [anon_sym_UR_DQUOTE] = ACTIONS(2971), + [anon_sym_u8R_DQUOTE] = ACTIONS(2971), + [anon_sym_co_await] = ACTIONS(2969), + [anon_sym_new] = ACTIONS(2969), + [anon_sym_requires] = ACTIONS(2969), + [sym_this] = ACTIONS(2969), }, [853] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [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_extern] = ACTIONS(3059), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3059), + [anon_sym_constinit] = ACTIONS(3059), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3059), + [anon_sym_alignas] = 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_using] = 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), }, [854] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [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_extern] = ACTIONS(3055), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3055), + [anon_sym_constinit] = ACTIONS(3055), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3055), + [anon_sym_alignas] = 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_using] = 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), }, [855] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [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_extern] = ACTIONS(3051), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3051), + [anon_sym_constinit] = ACTIONS(3051), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3051), + [anon_sym_alignas] = 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_using] = 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), }, [856] = { - [ts_builtin_sym_end] = ACTIONS(2975), + [sym_identifier] = ACTIONS(3047), + [aux_sym_preproc_include_token1] = ACTIONS(3047), + [aux_sym_preproc_def_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token1] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3047), + [sym_preproc_directive] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3047), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym___extension__] = ACTIONS(3047), + [anon_sym_typedef] = ACTIONS(3047), + [anon_sym_extern] = ACTIONS(3047), + [anon_sym___attribute__] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3049), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3049), + [anon_sym___declspec] = ACTIONS(3047), + [anon_sym___based] = ACTIONS(3047), + [anon_sym___cdecl] = ACTIONS(3047), + [anon_sym___clrcall] = ACTIONS(3047), + [anon_sym___stdcall] = ACTIONS(3047), + [anon_sym___fastcall] = ACTIONS(3047), + [anon_sym___thiscall] = ACTIONS(3047), + [anon_sym___vectorcall] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_signed] = ACTIONS(3047), + [anon_sym_unsigned] = ACTIONS(3047), + [anon_sym_long] = ACTIONS(3047), + [anon_sym_short] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_static] = ACTIONS(3047), + [anon_sym_register] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym___inline] = ACTIONS(3047), + [anon_sym___inline__] = ACTIONS(3047), + [anon_sym___forceinline] = ACTIONS(3047), + [anon_sym_thread_local] = ACTIONS(3047), + [anon_sym___thread] = ACTIONS(3047), + [anon_sym_const] = ACTIONS(3047), + [anon_sym_constexpr] = ACTIONS(3047), + [anon_sym_volatile] = ACTIONS(3047), + [anon_sym_restrict] = ACTIONS(3047), + [anon_sym___restrict__] = ACTIONS(3047), + [anon_sym__Atomic] = ACTIONS(3047), + [anon_sym__Noreturn] = ACTIONS(3047), + [anon_sym_noreturn] = ACTIONS(3047), + [anon_sym_mutable] = ACTIONS(3047), + [anon_sym_constinit] = ACTIONS(3047), + [anon_sym_consteval] = ACTIONS(3047), + [sym_primitive_type] = ACTIONS(3047), + [anon_sym_enum] = ACTIONS(3047), + [anon_sym_class] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_union] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_switch] = ACTIONS(3047), + [anon_sym_case] = ACTIONS(3047), + [anon_sym_default] = ACTIONS(3047), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_do] = ACTIONS(3047), + [anon_sym_for] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_goto] = ACTIONS(3047), + [anon_sym_not] = ACTIONS(3047), + [anon_sym_compl] = ACTIONS(3047), + [anon_sym_DASH_DASH] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_sizeof] = ACTIONS(3047), + [anon_sym___alignof__] = ACTIONS(3047), + [anon_sym___alignof] = ACTIONS(3047), + [anon_sym__alignof] = ACTIONS(3047), + [anon_sym_alignof] = ACTIONS(3047), + [anon_sym__Alignof] = ACTIONS(3047), + [anon_sym_offsetof] = ACTIONS(3047), + [anon_sym__Generic] = ACTIONS(3047), + [anon_sym_asm] = ACTIONS(3047), + [anon_sym___asm__] = ACTIONS(3047), + [sym_number_literal] = ACTIONS(3049), + [anon_sym_L_SQUOTE] = ACTIONS(3049), + [anon_sym_u_SQUOTE] = ACTIONS(3049), + [anon_sym_U_SQUOTE] = ACTIONS(3049), + [anon_sym_u8_SQUOTE] = ACTIONS(3049), + [anon_sym_SQUOTE] = ACTIONS(3049), + [anon_sym_L_DQUOTE] = ACTIONS(3049), + [anon_sym_u_DQUOTE] = ACTIONS(3049), + [anon_sym_U_DQUOTE] = ACTIONS(3049), + [anon_sym_u8_DQUOTE] = ACTIONS(3049), + [anon_sym_DQUOTE] = ACTIONS(3049), + [sym_true] = ACTIONS(3047), + [sym_false] = ACTIONS(3047), + [anon_sym_NULL] = ACTIONS(3047), + [anon_sym_nullptr] = ACTIONS(3047), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3047), + [anon_sym_decltype] = ACTIONS(3047), + [anon_sym_virtual] = ACTIONS(3047), + [anon_sym_alignas] = ACTIONS(3047), + [anon_sym_explicit] = ACTIONS(3047), + [anon_sym_typename] = ACTIONS(3047), + [anon_sym_template] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_delete] = ACTIONS(3047), + [anon_sym_throw] = ACTIONS(3047), + [anon_sym_namespace] = ACTIONS(3047), + [anon_sym_using] = ACTIONS(3047), + [anon_sym_static_assert] = ACTIONS(3047), + [anon_sym_concept] = ACTIONS(3047), + [anon_sym_co_return] = ACTIONS(3047), + [anon_sym_co_yield] = ACTIONS(3047), + [anon_sym_R_DQUOTE] = ACTIONS(3049), + [anon_sym_LR_DQUOTE] = ACTIONS(3049), + [anon_sym_uR_DQUOTE] = ACTIONS(3049), + [anon_sym_UR_DQUOTE] = ACTIONS(3049), + [anon_sym_u8R_DQUOTE] = ACTIONS(3049), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_requires] = ACTIONS(3047), + [sym_this] = ACTIONS(3047), + }, + [857] = { + [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_extern] = ACTIONS(3111), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3111), + [anon_sym_constinit] = ACTIONS(3111), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3111), + [anon_sym_alignas] = 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_using] = 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), + }, + [858] = { + [sym_identifier] = ACTIONS(3216), + [aux_sym_preproc_include_token1] = ACTIONS(3216), + [aux_sym_preproc_def_token1] = ACTIONS(3216), + [aux_sym_preproc_if_token1] = ACTIONS(3216), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3216), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3216), + [sym_preproc_directive] = ACTIONS(3216), + [anon_sym_LPAREN2] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym___extension__] = ACTIONS(3216), + [anon_sym_typedef] = ACTIONS(3216), + [anon_sym_extern] = ACTIONS(3216), + [anon_sym___attribute__] = ACTIONS(3216), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3218), + [anon_sym___declspec] = ACTIONS(3216), + [anon_sym___based] = ACTIONS(3216), + [anon_sym___cdecl] = ACTIONS(3216), + [anon_sym___clrcall] = ACTIONS(3216), + [anon_sym___stdcall] = ACTIONS(3216), + [anon_sym___fastcall] = ACTIONS(3216), + [anon_sym___thiscall] = ACTIONS(3216), + [anon_sym___vectorcall] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_signed] = ACTIONS(3216), + [anon_sym_unsigned] = ACTIONS(3216), + [anon_sym_long] = ACTIONS(3216), + [anon_sym_short] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_static] = ACTIONS(3216), + [anon_sym_register] = ACTIONS(3216), + [anon_sym_inline] = ACTIONS(3216), + [anon_sym___inline] = ACTIONS(3216), + [anon_sym___inline__] = ACTIONS(3216), + [anon_sym___forceinline] = ACTIONS(3216), + [anon_sym_thread_local] = ACTIONS(3216), + [anon_sym___thread] = ACTIONS(3216), + [anon_sym_const] = ACTIONS(3216), + [anon_sym_constexpr] = ACTIONS(3216), + [anon_sym_volatile] = ACTIONS(3216), + [anon_sym_restrict] = ACTIONS(3216), + [anon_sym___restrict__] = ACTIONS(3216), + [anon_sym__Atomic] = ACTIONS(3216), + [anon_sym__Noreturn] = ACTIONS(3216), + [anon_sym_noreturn] = ACTIONS(3216), + [anon_sym_mutable] = ACTIONS(3216), + [anon_sym_constinit] = ACTIONS(3216), + [anon_sym_consteval] = ACTIONS(3216), + [sym_primitive_type] = ACTIONS(3216), + [anon_sym_enum] = ACTIONS(3216), + [anon_sym_class] = ACTIONS(3216), + [anon_sym_struct] = ACTIONS(3216), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_if] = ACTIONS(3216), + [anon_sym_switch] = ACTIONS(3216), + [anon_sym_case] = ACTIONS(3216), + [anon_sym_default] = ACTIONS(3216), + [anon_sym_while] = ACTIONS(3216), + [anon_sym_do] = ACTIONS(3216), + [anon_sym_for] = ACTIONS(3216), + [anon_sym_return] = ACTIONS(3216), + [anon_sym_break] = ACTIONS(3216), + [anon_sym_continue] = ACTIONS(3216), + [anon_sym_goto] = ACTIONS(3216), + [anon_sym_not] = ACTIONS(3216), + [anon_sym_compl] = ACTIONS(3216), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_sizeof] = ACTIONS(3216), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3216), + [anon_sym__Generic] = ACTIONS(3216), + [anon_sym_asm] = ACTIONS(3216), + [anon_sym___asm__] = ACTIONS(3216), + [sym_number_literal] = ACTIONS(3218), + [anon_sym_L_SQUOTE] = ACTIONS(3218), + [anon_sym_u_SQUOTE] = ACTIONS(3218), + [anon_sym_U_SQUOTE] = ACTIONS(3218), + [anon_sym_u8_SQUOTE] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3218), + [anon_sym_L_DQUOTE] = ACTIONS(3218), + [anon_sym_u_DQUOTE] = ACTIONS(3218), + [anon_sym_U_DQUOTE] = ACTIONS(3218), + [anon_sym_u8_DQUOTE] = ACTIONS(3218), + [anon_sym_DQUOTE] = ACTIONS(3218), + [sym_true] = ACTIONS(3216), + [sym_false] = ACTIONS(3216), + [anon_sym_NULL] = ACTIONS(3216), + [anon_sym_nullptr] = ACTIONS(3216), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3216), + [anon_sym_decltype] = ACTIONS(3216), + [anon_sym_virtual] = ACTIONS(3216), + [anon_sym_alignas] = ACTIONS(3216), + [anon_sym_explicit] = ACTIONS(3216), + [anon_sym_typename] = ACTIONS(3216), + [anon_sym_template] = ACTIONS(3216), + [anon_sym_operator] = ACTIONS(3216), + [anon_sym_try] = ACTIONS(3216), + [anon_sym_delete] = ACTIONS(3216), + [anon_sym_throw] = ACTIONS(3216), + [anon_sym_namespace] = ACTIONS(3216), + [anon_sym_using] = ACTIONS(3216), + [anon_sym_static_assert] = ACTIONS(3216), + [anon_sym_concept] = ACTIONS(3216), + [anon_sym_co_return] = ACTIONS(3216), + [anon_sym_co_yield] = ACTIONS(3216), + [anon_sym_R_DQUOTE] = ACTIONS(3218), + [anon_sym_LR_DQUOTE] = ACTIONS(3218), + [anon_sym_uR_DQUOTE] = ACTIONS(3218), + [anon_sym_UR_DQUOTE] = ACTIONS(3218), + [anon_sym_u8R_DQUOTE] = ACTIONS(3218), + [anon_sym_co_await] = ACTIONS(3216), + [anon_sym_new] = ACTIONS(3216), + [anon_sym_requires] = ACTIONS(3216), + [sym_this] = ACTIONS(3216), + }, + [859] = { + [sym_identifier] = ACTIONS(3043), + [aux_sym_preproc_include_token1] = ACTIONS(3043), + [aux_sym_preproc_def_token1] = ACTIONS(3043), + [aux_sym_preproc_if_token1] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym___extension__] = ACTIONS(3043), + [anon_sym_typedef] = ACTIONS(3043), + [anon_sym_extern] = ACTIONS(3043), + [anon_sym___attribute__] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3045), + [anon_sym___declspec] = ACTIONS(3043), + [anon_sym___based] = ACTIONS(3043), + [anon_sym___cdecl] = ACTIONS(3043), + [anon_sym___clrcall] = ACTIONS(3043), + [anon_sym___stdcall] = ACTIONS(3043), + [anon_sym___fastcall] = ACTIONS(3043), + [anon_sym___thiscall] = ACTIONS(3043), + [anon_sym___vectorcall] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_signed] = ACTIONS(3043), + [anon_sym_unsigned] = ACTIONS(3043), + [anon_sym_long] = ACTIONS(3043), + [anon_sym_short] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_static] = ACTIONS(3043), + [anon_sym_register] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym___inline] = ACTIONS(3043), + [anon_sym___inline__] = ACTIONS(3043), + [anon_sym___forceinline] = ACTIONS(3043), + [anon_sym_thread_local] = ACTIONS(3043), + [anon_sym___thread] = ACTIONS(3043), + [anon_sym_const] = ACTIONS(3043), + [anon_sym_constexpr] = ACTIONS(3043), + [anon_sym_volatile] = ACTIONS(3043), + [anon_sym_restrict] = ACTIONS(3043), + [anon_sym___restrict__] = ACTIONS(3043), + [anon_sym__Atomic] = ACTIONS(3043), + [anon_sym__Noreturn] = ACTIONS(3043), + [anon_sym_noreturn] = ACTIONS(3043), + [anon_sym_mutable] = ACTIONS(3043), + [anon_sym_constinit] = ACTIONS(3043), + [anon_sym_consteval] = ACTIONS(3043), + [sym_primitive_type] = ACTIONS(3043), + [anon_sym_enum] = ACTIONS(3043), + [anon_sym_class] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3043), + [anon_sym_union] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_switch] = ACTIONS(3043), + [anon_sym_case] = ACTIONS(3043), + [anon_sym_default] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_do] = ACTIONS(3043), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_goto] = ACTIONS(3043), + [anon_sym_not] = ACTIONS(3043), + [anon_sym_compl] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_sizeof] = ACTIONS(3043), + [anon_sym___alignof__] = ACTIONS(3043), + [anon_sym___alignof] = ACTIONS(3043), + [anon_sym__alignof] = ACTIONS(3043), + [anon_sym_alignof] = ACTIONS(3043), + [anon_sym__Alignof] = ACTIONS(3043), + [anon_sym_offsetof] = ACTIONS(3043), + [anon_sym__Generic] = ACTIONS(3043), + [anon_sym_asm] = ACTIONS(3043), + [anon_sym___asm__] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(3045), + [anon_sym_L_SQUOTE] = ACTIONS(3045), + [anon_sym_u_SQUOTE] = ACTIONS(3045), + [anon_sym_U_SQUOTE] = ACTIONS(3045), + [anon_sym_u8_SQUOTE] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_L_DQUOTE] = ACTIONS(3045), + [anon_sym_u_DQUOTE] = ACTIONS(3045), + [anon_sym_U_DQUOTE] = ACTIONS(3045), + [anon_sym_u8_DQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [sym_true] = ACTIONS(3043), + [sym_false] = ACTIONS(3043), + [anon_sym_NULL] = ACTIONS(3043), + [anon_sym_nullptr] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3043), + [anon_sym_decltype] = ACTIONS(3043), + [anon_sym_virtual] = ACTIONS(3043), + [anon_sym_alignas] = ACTIONS(3043), + [anon_sym_explicit] = ACTIONS(3043), + [anon_sym_typename] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_delete] = ACTIONS(3043), + [anon_sym_throw] = ACTIONS(3043), + [anon_sym_namespace] = ACTIONS(3043), + [anon_sym_using] = ACTIONS(3043), + [anon_sym_static_assert] = ACTIONS(3043), + [anon_sym_concept] = ACTIONS(3043), + [anon_sym_co_return] = ACTIONS(3043), + [anon_sym_co_yield] = ACTIONS(3043), + [anon_sym_R_DQUOTE] = ACTIONS(3045), + [anon_sym_LR_DQUOTE] = ACTIONS(3045), + [anon_sym_uR_DQUOTE] = ACTIONS(3045), + [anon_sym_UR_DQUOTE] = ACTIONS(3045), + [anon_sym_u8R_DQUOTE] = ACTIONS(3045), + [anon_sym_co_await] = ACTIONS(3043), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_requires] = ACTIONS(3043), + [sym_this] = ACTIONS(3043), + }, + [860] = { + [sym_identifier] = ACTIONS(3039), + [aux_sym_preproc_include_token1] = ACTIONS(3039), + [aux_sym_preproc_def_token1] = ACTIONS(3039), + [aux_sym_preproc_if_token1] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3039), + [sym_preproc_directive] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3041), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_AMP_AMP] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_SEMI] = ACTIONS(3041), + [anon_sym___extension__] = ACTIONS(3039), + [anon_sym_typedef] = ACTIONS(3039), + [anon_sym_extern] = ACTIONS(3039), + [anon_sym___attribute__] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3041), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3041), + [anon_sym___declspec] = ACTIONS(3039), + [anon_sym___based] = ACTIONS(3039), + [anon_sym___cdecl] = ACTIONS(3039), + [anon_sym___clrcall] = ACTIONS(3039), + [anon_sym___stdcall] = ACTIONS(3039), + [anon_sym___fastcall] = ACTIONS(3039), + [anon_sym___thiscall] = ACTIONS(3039), + [anon_sym___vectorcall] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(3041), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_signed] = ACTIONS(3039), + [anon_sym_unsigned] = ACTIONS(3039), + [anon_sym_long] = ACTIONS(3039), + [anon_sym_short] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_static] = ACTIONS(3039), + [anon_sym_register] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym___inline] = ACTIONS(3039), + [anon_sym___inline__] = ACTIONS(3039), + [anon_sym___forceinline] = ACTIONS(3039), + [anon_sym_thread_local] = ACTIONS(3039), + [anon_sym___thread] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(3039), + [anon_sym_constexpr] = ACTIONS(3039), + [anon_sym_volatile] = ACTIONS(3039), + [anon_sym_restrict] = ACTIONS(3039), + [anon_sym___restrict__] = ACTIONS(3039), + [anon_sym__Atomic] = ACTIONS(3039), + [anon_sym__Noreturn] = ACTIONS(3039), + [anon_sym_noreturn] = ACTIONS(3039), + [anon_sym_mutable] = ACTIONS(3039), + [anon_sym_constinit] = ACTIONS(3039), + [anon_sym_consteval] = ACTIONS(3039), + [sym_primitive_type] = ACTIONS(3039), + [anon_sym_enum] = ACTIONS(3039), + [anon_sym_class] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3039), + [anon_sym_union] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_switch] = ACTIONS(3039), + [anon_sym_case] = ACTIONS(3039), + [anon_sym_default] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_goto] = ACTIONS(3039), + [anon_sym_not] = ACTIONS(3039), + [anon_sym_compl] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3039), + [anon_sym___alignof__] = ACTIONS(3039), + [anon_sym___alignof] = ACTIONS(3039), + [anon_sym__alignof] = ACTIONS(3039), + [anon_sym_alignof] = ACTIONS(3039), + [anon_sym__Alignof] = ACTIONS(3039), + [anon_sym_offsetof] = ACTIONS(3039), + [anon_sym__Generic] = ACTIONS(3039), + [anon_sym_asm] = ACTIONS(3039), + [anon_sym___asm__] = ACTIONS(3039), + [sym_number_literal] = ACTIONS(3041), + [anon_sym_L_SQUOTE] = ACTIONS(3041), + [anon_sym_u_SQUOTE] = ACTIONS(3041), + [anon_sym_U_SQUOTE] = ACTIONS(3041), + [anon_sym_u8_SQUOTE] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_L_DQUOTE] = ACTIONS(3041), + [anon_sym_u_DQUOTE] = ACTIONS(3041), + [anon_sym_U_DQUOTE] = ACTIONS(3041), + [anon_sym_u8_DQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(3041), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [anon_sym_NULL] = ACTIONS(3039), + [anon_sym_nullptr] = ACTIONS(3039), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3039), + [anon_sym_decltype] = ACTIONS(3039), + [anon_sym_virtual] = ACTIONS(3039), + [anon_sym_alignas] = ACTIONS(3039), + [anon_sym_explicit] = ACTIONS(3039), + [anon_sym_typename] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3039), + [anon_sym_operator] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_delete] = ACTIONS(3039), + [anon_sym_throw] = ACTIONS(3039), + [anon_sym_namespace] = ACTIONS(3039), + [anon_sym_using] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3039), + [anon_sym_concept] = ACTIONS(3039), + [anon_sym_co_return] = ACTIONS(3039), + [anon_sym_co_yield] = ACTIONS(3039), + [anon_sym_R_DQUOTE] = ACTIONS(3041), + [anon_sym_LR_DQUOTE] = ACTIONS(3041), + [anon_sym_uR_DQUOTE] = ACTIONS(3041), + [anon_sym_UR_DQUOTE] = ACTIONS(3041), + [anon_sym_u8R_DQUOTE] = ACTIONS(3041), + [anon_sym_co_await] = ACTIONS(3039), + [anon_sym_new] = ACTIONS(3039), + [anon_sym_requires] = ACTIONS(3039), + [sym_this] = ACTIONS(3039), + }, + [861] = { + [sym_identifier] = ACTIONS(3107), + [aux_sym_preproc_include_token1] = ACTIONS(3107), + [aux_sym_preproc_def_token1] = ACTIONS(3107), + [aux_sym_preproc_if_token1] = ACTIONS(3107), + [aux_sym_preproc_if_token2] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3107), + [sym_preproc_directive] = ACTIONS(3107), + [anon_sym_LPAREN2] = ACTIONS(3109), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym___extension__] = ACTIONS(3107), + [anon_sym_typedef] = ACTIONS(3107), + [anon_sym_extern] = ACTIONS(3107), + [anon_sym___attribute__] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), + [anon_sym___declspec] = ACTIONS(3107), + [anon_sym___based] = ACTIONS(3107), + [anon_sym___cdecl] = ACTIONS(3107), + [anon_sym___clrcall] = ACTIONS(3107), + [anon_sym___stdcall] = ACTIONS(3107), + [anon_sym___fastcall] = ACTIONS(3107), + [anon_sym___thiscall] = ACTIONS(3107), + [anon_sym___vectorcall] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_signed] = ACTIONS(3107), + [anon_sym_unsigned] = ACTIONS(3107), + [anon_sym_long] = ACTIONS(3107), + [anon_sym_short] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_register] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym___inline] = ACTIONS(3107), + [anon_sym___inline__] = ACTIONS(3107), + [anon_sym___forceinline] = ACTIONS(3107), + [anon_sym_thread_local] = ACTIONS(3107), + [anon_sym___thread] = ACTIONS(3107), + [anon_sym_const] = ACTIONS(3107), + [anon_sym_constexpr] = ACTIONS(3107), + [anon_sym_volatile] = ACTIONS(3107), + [anon_sym_restrict] = ACTIONS(3107), + [anon_sym___restrict__] = ACTIONS(3107), + [anon_sym__Atomic] = ACTIONS(3107), + [anon_sym__Noreturn] = ACTIONS(3107), + [anon_sym_noreturn] = ACTIONS(3107), + [anon_sym_mutable] = ACTIONS(3107), + [anon_sym_constinit] = ACTIONS(3107), + [anon_sym_consteval] = ACTIONS(3107), + [sym_primitive_type] = ACTIONS(3107), + [anon_sym_enum] = ACTIONS(3107), + [anon_sym_class] = ACTIONS(3107), + [anon_sym_struct] = ACTIONS(3107), + [anon_sym_union] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_switch] = ACTIONS(3107), + [anon_sym_case] = ACTIONS(3107), + [anon_sym_default] = ACTIONS(3107), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_do] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_goto] = ACTIONS(3107), + [anon_sym_not] = ACTIONS(3107), + [anon_sym_compl] = ACTIONS(3107), + [anon_sym_DASH_DASH] = ACTIONS(3109), + [anon_sym_PLUS_PLUS] = ACTIONS(3109), + [anon_sym_sizeof] = ACTIONS(3107), + [anon_sym___alignof__] = ACTIONS(3107), + [anon_sym___alignof] = ACTIONS(3107), + [anon_sym__alignof] = ACTIONS(3107), + [anon_sym_alignof] = ACTIONS(3107), + [anon_sym__Alignof] = ACTIONS(3107), + [anon_sym_offsetof] = ACTIONS(3107), + [anon_sym__Generic] = ACTIONS(3107), + [anon_sym_asm] = ACTIONS(3107), + [anon_sym___asm__] = ACTIONS(3107), + [sym_number_literal] = ACTIONS(3109), + [anon_sym_L_SQUOTE] = ACTIONS(3109), + [anon_sym_u_SQUOTE] = ACTIONS(3109), + [anon_sym_U_SQUOTE] = ACTIONS(3109), + [anon_sym_u8_SQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3109), + [anon_sym_L_DQUOTE] = ACTIONS(3109), + [anon_sym_u_DQUOTE] = ACTIONS(3109), + [anon_sym_U_DQUOTE] = ACTIONS(3109), + [anon_sym_u8_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [sym_true] = ACTIONS(3107), + [sym_false] = ACTIONS(3107), + [anon_sym_NULL] = ACTIONS(3107), + [anon_sym_nullptr] = ACTIONS(3107), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3107), + [anon_sym_decltype] = ACTIONS(3107), + [anon_sym_virtual] = ACTIONS(3107), + [anon_sym_alignas] = ACTIONS(3107), + [anon_sym_explicit] = ACTIONS(3107), + [anon_sym_typename] = ACTIONS(3107), + [anon_sym_template] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_delete] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_namespace] = ACTIONS(3107), + [anon_sym_using] = ACTIONS(3107), + [anon_sym_static_assert] = ACTIONS(3107), + [anon_sym_concept] = ACTIONS(3107), + [anon_sym_co_return] = ACTIONS(3107), + [anon_sym_co_yield] = ACTIONS(3107), + [anon_sym_R_DQUOTE] = ACTIONS(3109), + [anon_sym_LR_DQUOTE] = ACTIONS(3109), + [anon_sym_uR_DQUOTE] = ACTIONS(3109), + [anon_sym_UR_DQUOTE] = ACTIONS(3109), + [anon_sym_u8R_DQUOTE] = ACTIONS(3109), + [anon_sym_co_await] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3107), + [anon_sym_requires] = ACTIONS(3107), + [sym_this] = ACTIONS(3107), + }, + [862] = { [sym_identifier] = ACTIONS(2973), [aux_sym_preproc_include_token1] = ACTIONS(2973), [aux_sym_preproc_def_token1] = ACTIONS(2973), @@ -175696,6 +171944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -175726,7 +171975,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2973), [anon_sym_union] = ACTIONS(2973), [anon_sym_if] = ACTIONS(2973), - [anon_sym_else] = ACTIONS(2973), [anon_sym_switch] = ACTIONS(2973), [anon_sym_case] = ACTIONS(2973), [anon_sym_default] = ACTIONS(2973), @@ -175794,12 +172042,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2973), [sym_this] = ACTIONS(2973), }, - [857] = { - [ts_builtin_sym_end] = ACTIONS(2971), + [863] = { + [sym_identifier] = ACTIONS(2965), + [aux_sym_preproc_include_token1] = ACTIONS(2965), + [aux_sym_preproc_def_token1] = ACTIONS(2965), + [aux_sym_preproc_if_token1] = ACTIONS(2965), + [aux_sym_preproc_if_token2] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), + [sym_preproc_directive] = ACTIONS(2965), + [anon_sym_LPAREN2] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_PLUS] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_SEMI] = ACTIONS(2967), + [anon_sym___extension__] = ACTIONS(2965), + [anon_sym_typedef] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2965), + [anon_sym___attribute__] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(2967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), + [anon_sym___declspec] = ACTIONS(2965), + [anon_sym___based] = ACTIONS(2965), + [anon_sym___cdecl] = ACTIONS(2965), + [anon_sym___clrcall] = ACTIONS(2965), + [anon_sym___stdcall] = ACTIONS(2965), + [anon_sym___fastcall] = ACTIONS(2965), + [anon_sym___thiscall] = ACTIONS(2965), + [anon_sym___vectorcall] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_signed] = ACTIONS(2965), + [anon_sym_unsigned] = ACTIONS(2965), + [anon_sym_long] = ACTIONS(2965), + [anon_sym_short] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_static] = ACTIONS(2965), + [anon_sym_register] = ACTIONS(2965), + [anon_sym_inline] = ACTIONS(2965), + [anon_sym___inline] = ACTIONS(2965), + [anon_sym___inline__] = ACTIONS(2965), + [anon_sym___forceinline] = ACTIONS(2965), + [anon_sym_thread_local] = ACTIONS(2965), + [anon_sym___thread] = ACTIONS(2965), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_constexpr] = ACTIONS(2965), + [anon_sym_volatile] = ACTIONS(2965), + [anon_sym_restrict] = ACTIONS(2965), + [anon_sym___restrict__] = ACTIONS(2965), + [anon_sym__Atomic] = ACTIONS(2965), + [anon_sym__Noreturn] = ACTIONS(2965), + [anon_sym_noreturn] = ACTIONS(2965), + [anon_sym_mutable] = ACTIONS(2965), + [anon_sym_constinit] = ACTIONS(2965), + [anon_sym_consteval] = ACTIONS(2965), + [sym_primitive_type] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_class] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_union] = ACTIONS(2965), + [anon_sym_if] = ACTIONS(2965), + [anon_sym_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), + [sym_number_literal] = ACTIONS(2967), + [anon_sym_L_SQUOTE] = ACTIONS(2967), + [anon_sym_u_SQUOTE] = ACTIONS(2967), + [anon_sym_U_SQUOTE] = ACTIONS(2967), + [anon_sym_u8_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2967), + [anon_sym_L_DQUOTE] = ACTIONS(2967), + [anon_sym_u_DQUOTE] = ACTIONS(2967), + [anon_sym_U_DQUOTE] = ACTIONS(2967), + [anon_sym_u8_DQUOTE] = ACTIONS(2967), + [anon_sym_DQUOTE] = ACTIONS(2967), + [sym_true] = ACTIONS(2965), + [sym_false] = ACTIONS(2965), + [anon_sym_NULL] = ACTIONS(2965), + [anon_sym_nullptr] = ACTIONS(2965), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2965), + [anon_sym_decltype] = ACTIONS(2965), + [anon_sym_virtual] = ACTIONS(2965), + [anon_sym_alignas] = ACTIONS(2965), + [anon_sym_explicit] = ACTIONS(2965), + [anon_sym_typename] = ACTIONS(2965), + [anon_sym_template] = ACTIONS(2965), + [anon_sym_operator] = ACTIONS(2965), + [anon_sym_try] = ACTIONS(2965), + [anon_sym_delete] = ACTIONS(2965), + [anon_sym_throw] = ACTIONS(2965), + [anon_sym_namespace] = ACTIONS(2965), + [anon_sym_using] = ACTIONS(2965), + [anon_sym_static_assert] = ACTIONS(2965), + [anon_sym_concept] = ACTIONS(2965), + [anon_sym_co_return] = ACTIONS(2965), + [anon_sym_co_yield] = ACTIONS(2965), + [anon_sym_R_DQUOTE] = ACTIONS(2967), + [anon_sym_LR_DQUOTE] = ACTIONS(2967), + [anon_sym_uR_DQUOTE] = ACTIONS(2967), + [anon_sym_UR_DQUOTE] = ACTIONS(2967), + [anon_sym_u8R_DQUOTE] = ACTIONS(2967), + [anon_sym_co_await] = ACTIONS(2965), + [anon_sym_new] = ACTIONS(2965), + [anon_sym_requires] = ACTIONS(2965), + [sym_this] = ACTIONS(2965), + }, + [864] = { [sym_identifier] = ACTIONS(2969), [aux_sym_preproc_include_token1] = ACTIONS(2969), [aux_sym_preproc_def_token1] = ACTIONS(2969), [aux_sym_preproc_if_token1] = ACTIONS(2969), + [aux_sym_preproc_if_token2] = ACTIONS(2969), [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), [sym_preproc_directive] = ACTIONS(2969), @@ -175857,7 +172235,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2969), [anon_sym_union] = ACTIONS(2969), [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), [anon_sym_switch] = ACTIONS(2969), [anon_sym_case] = ACTIONS(2969), [anon_sym_default] = ACTIONS(2969), @@ -175925,928 +172302,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2969), [sym_this] = ACTIONS(2969), }, - [858] = { - [ts_builtin_sym_end] = ACTIONS(2899), - [sym_identifier] = ACTIONS(2897), - [aux_sym_preproc_include_token1] = ACTIONS(2897), - [aux_sym_preproc_def_token1] = ACTIONS(2897), - [aux_sym_preproc_if_token1] = ACTIONS(2897), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2897), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2897), - [sym_preproc_directive] = ACTIONS(2897), - [anon_sym_LPAREN2] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym___extension__] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2897), - [anon_sym_extern] = ACTIONS(2897), - [anon_sym___attribute__] = ACTIONS(2897), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2899), - [anon_sym___declspec] = ACTIONS(2897), - [anon_sym___based] = ACTIONS(2897), - [anon_sym___cdecl] = ACTIONS(2897), - [anon_sym___clrcall] = ACTIONS(2897), - [anon_sym___stdcall] = ACTIONS(2897), - [anon_sym___fastcall] = ACTIONS(2897), - [anon_sym___thiscall] = ACTIONS(2897), - [anon_sym___vectorcall] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_signed] = ACTIONS(2897), - [anon_sym_unsigned] = ACTIONS(2897), - [anon_sym_long] = ACTIONS(2897), - [anon_sym_short] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_register] = ACTIONS(2897), - [anon_sym_inline] = ACTIONS(2897), - [anon_sym___inline] = ACTIONS(2897), - [anon_sym___inline__] = ACTIONS(2897), - [anon_sym___forceinline] = ACTIONS(2897), - [anon_sym_thread_local] = ACTIONS(2897), - [anon_sym___thread] = ACTIONS(2897), - [anon_sym_const] = ACTIONS(2897), - [anon_sym_constexpr] = ACTIONS(2897), - [anon_sym_volatile] = ACTIONS(2897), - [anon_sym_restrict] = ACTIONS(2897), - [anon_sym___restrict__] = ACTIONS(2897), - [anon_sym__Atomic] = ACTIONS(2897), - [anon_sym__Noreturn] = ACTIONS(2897), - [anon_sym_noreturn] = ACTIONS(2897), - [anon_sym_mutable] = ACTIONS(2897), - [anon_sym_constinit] = ACTIONS(2897), - [anon_sym_consteval] = ACTIONS(2897), - [sym_primitive_type] = ACTIONS(2897), - [anon_sym_enum] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2897), - [anon_sym_union] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2897), - [anon_sym_else] = ACTIONS(2897), - [anon_sym_switch] = ACTIONS(2897), - [anon_sym_case] = ACTIONS(2897), - [anon_sym_default] = ACTIONS(2897), - [anon_sym_while] = ACTIONS(2897), - [anon_sym_do] = ACTIONS(2897), - [anon_sym_for] = ACTIONS(2897), - [anon_sym_return] = ACTIONS(2897), - [anon_sym_break] = ACTIONS(2897), - [anon_sym_continue] = ACTIONS(2897), - [anon_sym_goto] = ACTIONS(2897), - [anon_sym_not] = ACTIONS(2897), - [anon_sym_compl] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_sizeof] = ACTIONS(2897), - [anon_sym___alignof__] = ACTIONS(2897), - [anon_sym___alignof] = ACTIONS(2897), - [anon_sym__alignof] = ACTIONS(2897), - [anon_sym_alignof] = ACTIONS(2897), - [anon_sym__Alignof] = ACTIONS(2897), - [anon_sym_offsetof] = ACTIONS(2897), - [anon_sym__Generic] = ACTIONS(2897), - [anon_sym_asm] = ACTIONS(2897), - [anon_sym___asm__] = ACTIONS(2897), - [sym_number_literal] = ACTIONS(2899), - [anon_sym_L_SQUOTE] = ACTIONS(2899), - [anon_sym_u_SQUOTE] = ACTIONS(2899), - [anon_sym_U_SQUOTE] = ACTIONS(2899), - [anon_sym_u8_SQUOTE] = ACTIONS(2899), - [anon_sym_SQUOTE] = ACTIONS(2899), - [anon_sym_L_DQUOTE] = ACTIONS(2899), - [anon_sym_u_DQUOTE] = ACTIONS(2899), - [anon_sym_U_DQUOTE] = ACTIONS(2899), - [anon_sym_u8_DQUOTE] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [sym_true] = ACTIONS(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2897), - [anon_sym_nullptr] = ACTIONS(2897), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2897), - [anon_sym_decltype] = ACTIONS(2897), - [anon_sym_virtual] = ACTIONS(2897), - [anon_sym_alignas] = ACTIONS(2897), - [anon_sym_explicit] = ACTIONS(2897), - [anon_sym_typename] = ACTIONS(2897), - [anon_sym_template] = ACTIONS(2897), - [anon_sym_operator] = ACTIONS(2897), - [anon_sym_try] = ACTIONS(2897), - [anon_sym_delete] = ACTIONS(2897), - [anon_sym_throw] = ACTIONS(2897), - [anon_sym_namespace] = ACTIONS(2897), - [anon_sym_using] = ACTIONS(2897), - [anon_sym_static_assert] = ACTIONS(2897), - [anon_sym_concept] = ACTIONS(2897), - [anon_sym_co_return] = ACTIONS(2897), - [anon_sym_co_yield] = ACTIONS(2897), - [anon_sym_R_DQUOTE] = ACTIONS(2899), - [anon_sym_LR_DQUOTE] = ACTIONS(2899), - [anon_sym_uR_DQUOTE] = ACTIONS(2899), - [anon_sym_UR_DQUOTE] = ACTIONS(2899), - [anon_sym_u8R_DQUOTE] = ACTIONS(2899), - [anon_sym_co_await] = ACTIONS(2897), - [anon_sym_new] = ACTIONS(2897), - [anon_sym_requires] = ACTIONS(2897), - [sym_this] = ACTIONS(2897), - }, - [859] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), - }, - [860] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), - }, - [861] = { - [ts_builtin_sym_end] = ACTIONS(2903), - [sym_identifier] = ACTIONS(2901), - [aux_sym_preproc_include_token1] = ACTIONS(2901), - [aux_sym_preproc_def_token1] = ACTIONS(2901), - [aux_sym_preproc_if_token1] = ACTIONS(2901), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2901), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2901), - [sym_preproc_directive] = ACTIONS(2901), - [anon_sym_LPAREN2] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2901), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym___extension__] = ACTIONS(2901), - [anon_sym_typedef] = ACTIONS(2901), - [anon_sym_extern] = ACTIONS(2901), - [anon_sym___attribute__] = ACTIONS(2901), - [anon_sym_COLON_COLON] = ACTIONS(2903), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2903), - [anon_sym___declspec] = ACTIONS(2901), - [anon_sym___based] = ACTIONS(2901), - [anon_sym___cdecl] = ACTIONS(2901), - [anon_sym___clrcall] = ACTIONS(2901), - [anon_sym___stdcall] = ACTIONS(2901), - [anon_sym___fastcall] = ACTIONS(2901), - [anon_sym___thiscall] = ACTIONS(2901), - [anon_sym___vectorcall] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_signed] = ACTIONS(2901), - [anon_sym_unsigned] = ACTIONS(2901), - [anon_sym_long] = ACTIONS(2901), - [anon_sym_short] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_register] = ACTIONS(2901), - [anon_sym_inline] = ACTIONS(2901), - [anon_sym___inline] = ACTIONS(2901), - [anon_sym___inline__] = ACTIONS(2901), - [anon_sym___forceinline] = ACTIONS(2901), - [anon_sym_thread_local] = ACTIONS(2901), - [anon_sym___thread] = ACTIONS(2901), - [anon_sym_const] = ACTIONS(2901), - [anon_sym_constexpr] = ACTIONS(2901), - [anon_sym_volatile] = ACTIONS(2901), - [anon_sym_restrict] = ACTIONS(2901), - [anon_sym___restrict__] = ACTIONS(2901), - [anon_sym__Atomic] = ACTIONS(2901), - [anon_sym__Noreturn] = ACTIONS(2901), - [anon_sym_noreturn] = ACTIONS(2901), - [anon_sym_mutable] = ACTIONS(2901), - [anon_sym_constinit] = ACTIONS(2901), - [anon_sym_consteval] = ACTIONS(2901), - [sym_primitive_type] = ACTIONS(2901), - [anon_sym_enum] = ACTIONS(2901), - [anon_sym_class] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2901), - [anon_sym_union] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2901), - [anon_sym_else] = ACTIONS(2901), - [anon_sym_switch] = ACTIONS(2901), - [anon_sym_case] = ACTIONS(2901), - [anon_sym_default] = ACTIONS(2901), - [anon_sym_while] = ACTIONS(2901), - [anon_sym_do] = ACTIONS(2901), - [anon_sym_for] = ACTIONS(2901), - [anon_sym_return] = ACTIONS(2901), - [anon_sym_break] = ACTIONS(2901), - [anon_sym_continue] = ACTIONS(2901), - [anon_sym_goto] = ACTIONS(2901), - [anon_sym_not] = ACTIONS(2901), - [anon_sym_compl] = ACTIONS(2901), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_sizeof] = ACTIONS(2901), - [anon_sym___alignof__] = ACTIONS(2901), - [anon_sym___alignof] = ACTIONS(2901), - [anon_sym__alignof] = ACTIONS(2901), - [anon_sym_alignof] = ACTIONS(2901), - [anon_sym__Alignof] = ACTIONS(2901), - [anon_sym_offsetof] = ACTIONS(2901), - [anon_sym__Generic] = ACTIONS(2901), - [anon_sym_asm] = ACTIONS(2901), - [anon_sym___asm__] = ACTIONS(2901), - [sym_number_literal] = ACTIONS(2903), - [anon_sym_L_SQUOTE] = ACTIONS(2903), - [anon_sym_u_SQUOTE] = ACTIONS(2903), - [anon_sym_U_SQUOTE] = ACTIONS(2903), - [anon_sym_u8_SQUOTE] = ACTIONS(2903), - [anon_sym_SQUOTE] = ACTIONS(2903), - [anon_sym_L_DQUOTE] = ACTIONS(2903), - [anon_sym_u_DQUOTE] = ACTIONS(2903), - [anon_sym_U_DQUOTE] = ACTIONS(2903), - [anon_sym_u8_DQUOTE] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym_true] = ACTIONS(2901), - [sym_false] = ACTIONS(2901), - [anon_sym_NULL] = ACTIONS(2901), - [anon_sym_nullptr] = ACTIONS(2901), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2901), - [anon_sym_virtual] = ACTIONS(2901), - [anon_sym_alignas] = ACTIONS(2901), - [anon_sym_explicit] = ACTIONS(2901), - [anon_sym_typename] = ACTIONS(2901), - [anon_sym_template] = ACTIONS(2901), - [anon_sym_operator] = ACTIONS(2901), - [anon_sym_try] = ACTIONS(2901), - [anon_sym_delete] = ACTIONS(2901), - [anon_sym_throw] = ACTIONS(2901), - [anon_sym_namespace] = ACTIONS(2901), - [anon_sym_using] = ACTIONS(2901), - [anon_sym_static_assert] = ACTIONS(2901), - [anon_sym_concept] = ACTIONS(2901), - [anon_sym_co_return] = ACTIONS(2901), - [anon_sym_co_yield] = ACTIONS(2901), - [anon_sym_R_DQUOTE] = ACTIONS(2903), - [anon_sym_LR_DQUOTE] = ACTIONS(2903), - [anon_sym_uR_DQUOTE] = ACTIONS(2903), - [anon_sym_UR_DQUOTE] = ACTIONS(2903), - [anon_sym_u8R_DQUOTE] = ACTIONS(2903), - [anon_sym_co_await] = ACTIONS(2901), - [anon_sym_new] = ACTIONS(2901), - [anon_sym_requires] = ACTIONS(2901), - [sym_this] = ACTIONS(2901), - }, - [862] = { - [ts_builtin_sym_end] = ACTIONS(2907), - [sym_identifier] = ACTIONS(2905), - [aux_sym_preproc_include_token1] = ACTIONS(2905), - [aux_sym_preproc_def_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token1] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2905), - [sym_preproc_directive] = ACTIONS(2905), - [anon_sym_LPAREN2] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym___extension__] = ACTIONS(2905), - [anon_sym_typedef] = ACTIONS(2905), - [anon_sym_extern] = ACTIONS(2905), - [anon_sym___attribute__] = ACTIONS(2905), - [anon_sym_COLON_COLON] = ACTIONS(2907), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2907), - [anon_sym___declspec] = ACTIONS(2905), - [anon_sym___based] = ACTIONS(2905), - [anon_sym___cdecl] = ACTIONS(2905), - [anon_sym___clrcall] = ACTIONS(2905), - [anon_sym___stdcall] = ACTIONS(2905), - [anon_sym___fastcall] = ACTIONS(2905), - [anon_sym___thiscall] = ACTIONS(2905), - [anon_sym___vectorcall] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_signed] = ACTIONS(2905), - [anon_sym_unsigned] = ACTIONS(2905), - [anon_sym_long] = ACTIONS(2905), - [anon_sym_short] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_register] = ACTIONS(2905), - [anon_sym_inline] = ACTIONS(2905), - [anon_sym___inline] = ACTIONS(2905), - [anon_sym___inline__] = ACTIONS(2905), - [anon_sym___forceinline] = ACTIONS(2905), - [anon_sym_thread_local] = ACTIONS(2905), - [anon_sym___thread] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_constexpr] = ACTIONS(2905), - [anon_sym_volatile] = ACTIONS(2905), - [anon_sym_restrict] = ACTIONS(2905), - [anon_sym___restrict__] = ACTIONS(2905), - [anon_sym__Atomic] = ACTIONS(2905), - [anon_sym__Noreturn] = ACTIONS(2905), - [anon_sym_noreturn] = ACTIONS(2905), - [anon_sym_mutable] = ACTIONS(2905), - [anon_sym_constinit] = ACTIONS(2905), - [anon_sym_consteval] = ACTIONS(2905), - [sym_primitive_type] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_union] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2905), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2905), - [anon_sym_default] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_do] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_goto] = ACTIONS(2905), - [anon_sym_not] = ACTIONS(2905), - [anon_sym_compl] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_sizeof] = ACTIONS(2905), - [anon_sym___alignof__] = ACTIONS(2905), - [anon_sym___alignof] = ACTIONS(2905), - [anon_sym__alignof] = ACTIONS(2905), - [anon_sym_alignof] = ACTIONS(2905), - [anon_sym__Alignof] = ACTIONS(2905), - [anon_sym_offsetof] = ACTIONS(2905), - [anon_sym__Generic] = ACTIONS(2905), - [anon_sym_asm] = ACTIONS(2905), - [anon_sym___asm__] = ACTIONS(2905), - [sym_number_literal] = ACTIONS(2907), - [anon_sym_L_SQUOTE] = ACTIONS(2907), - [anon_sym_u_SQUOTE] = ACTIONS(2907), - [anon_sym_U_SQUOTE] = ACTIONS(2907), - [anon_sym_u8_SQUOTE] = ACTIONS(2907), - [anon_sym_SQUOTE] = ACTIONS(2907), - [anon_sym_L_DQUOTE] = ACTIONS(2907), - [anon_sym_u_DQUOTE] = ACTIONS(2907), - [anon_sym_U_DQUOTE] = ACTIONS(2907), - [anon_sym_u8_DQUOTE] = ACTIONS(2907), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_true] = ACTIONS(2905), - [sym_false] = ACTIONS(2905), - [anon_sym_NULL] = ACTIONS(2905), - [anon_sym_nullptr] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2905), - [anon_sym_decltype] = ACTIONS(2905), - [anon_sym_virtual] = ACTIONS(2905), - [anon_sym_alignas] = ACTIONS(2905), - [anon_sym_explicit] = ACTIONS(2905), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(2905), - [anon_sym_operator] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_throw] = ACTIONS(2905), - [anon_sym_namespace] = ACTIONS(2905), - [anon_sym_using] = ACTIONS(2905), - [anon_sym_static_assert] = ACTIONS(2905), - [anon_sym_concept] = ACTIONS(2905), - [anon_sym_co_return] = ACTIONS(2905), - [anon_sym_co_yield] = ACTIONS(2905), - [anon_sym_R_DQUOTE] = ACTIONS(2907), - [anon_sym_LR_DQUOTE] = ACTIONS(2907), - [anon_sym_uR_DQUOTE] = ACTIONS(2907), - [anon_sym_UR_DQUOTE] = ACTIONS(2907), - [anon_sym_u8R_DQUOTE] = ACTIONS(2907), - [anon_sym_co_await] = ACTIONS(2905), - [anon_sym_new] = ACTIONS(2905), - [anon_sym_requires] = ACTIONS(2905), - [sym_this] = ACTIONS(2905), - }, - [863] = { - [sym_identifier] = ACTIONS(3091), - [aux_sym_preproc_include_token1] = ACTIONS(3091), - [aux_sym_preproc_def_token1] = ACTIONS(3091), - [aux_sym_preproc_if_token1] = ACTIONS(3091), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), - [sym_preproc_directive] = ACTIONS(3091), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3091), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3091), - [anon_sym_SEMI] = ACTIONS(3093), - [anon_sym___extension__] = ACTIONS(3091), - [anon_sym_typedef] = ACTIONS(3091), - [anon_sym_extern] = ACTIONS(3091), - [anon_sym___attribute__] = ACTIONS(3091), - [anon_sym_COLON_COLON] = ACTIONS(3093), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), - [anon_sym___declspec] = ACTIONS(3091), - [anon_sym___based] = ACTIONS(3091), - [anon_sym___cdecl] = ACTIONS(3091), - [anon_sym___clrcall] = ACTIONS(3091), - [anon_sym___stdcall] = ACTIONS(3091), - [anon_sym___fastcall] = ACTIONS(3091), - [anon_sym___thiscall] = ACTIONS(3091), - [anon_sym___vectorcall] = ACTIONS(3091), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_RBRACE] = ACTIONS(3093), - [anon_sym_signed] = ACTIONS(3091), - [anon_sym_unsigned] = ACTIONS(3091), - [anon_sym_long] = ACTIONS(3091), - [anon_sym_short] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_register] = ACTIONS(3091), - [anon_sym_inline] = ACTIONS(3091), - [anon_sym___inline] = ACTIONS(3091), - [anon_sym___inline__] = ACTIONS(3091), - [anon_sym___forceinline] = ACTIONS(3091), - [anon_sym_thread_local] = ACTIONS(3091), - [anon_sym___thread] = ACTIONS(3091), - [anon_sym_const] = ACTIONS(3091), - [anon_sym_constexpr] = ACTIONS(3091), - [anon_sym_volatile] = ACTIONS(3091), - [anon_sym_restrict] = ACTIONS(3091), - [anon_sym___restrict__] = ACTIONS(3091), - [anon_sym__Atomic] = ACTIONS(3091), - [anon_sym__Noreturn] = ACTIONS(3091), - [anon_sym_noreturn] = ACTIONS(3091), - [anon_sym_mutable] = ACTIONS(3091), - [anon_sym_constinit] = ACTIONS(3091), - [anon_sym_consteval] = ACTIONS(3091), - [sym_primitive_type] = ACTIONS(3091), - [anon_sym_enum] = ACTIONS(3091), - [anon_sym_class] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(3091), - [anon_sym_union] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3091), - [anon_sym_switch] = ACTIONS(3091), - [anon_sym_case] = ACTIONS(3091), - [anon_sym_default] = ACTIONS(3091), - [anon_sym_while] = ACTIONS(3091), - [anon_sym_do] = ACTIONS(3091), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_break] = ACTIONS(3091), - [anon_sym_continue] = ACTIONS(3091), - [anon_sym_goto] = ACTIONS(3091), - [anon_sym_not] = ACTIONS(3091), - [anon_sym_compl] = ACTIONS(3091), - [anon_sym_DASH_DASH] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3093), - [anon_sym_sizeof] = ACTIONS(3091), - [anon_sym___alignof__] = ACTIONS(3091), - [anon_sym___alignof] = ACTIONS(3091), - [anon_sym__alignof] = ACTIONS(3091), - [anon_sym_alignof] = ACTIONS(3091), - [anon_sym__Alignof] = ACTIONS(3091), - [anon_sym_offsetof] = ACTIONS(3091), - [anon_sym__Generic] = ACTIONS(3091), - [anon_sym_asm] = ACTIONS(3091), - [anon_sym___asm__] = ACTIONS(3091), - [sym_number_literal] = ACTIONS(3093), - [anon_sym_L_SQUOTE] = ACTIONS(3093), - [anon_sym_u_SQUOTE] = ACTIONS(3093), - [anon_sym_U_SQUOTE] = ACTIONS(3093), - [anon_sym_u8_SQUOTE] = ACTIONS(3093), - [anon_sym_SQUOTE] = ACTIONS(3093), - [anon_sym_L_DQUOTE] = ACTIONS(3093), - [anon_sym_u_DQUOTE] = ACTIONS(3093), - [anon_sym_U_DQUOTE] = ACTIONS(3093), - [anon_sym_u8_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [sym_true] = ACTIONS(3091), - [sym_false] = ACTIONS(3091), - [anon_sym_NULL] = ACTIONS(3091), - [anon_sym_nullptr] = ACTIONS(3091), + [865] = { + [sym_identifier] = ACTIONS(2977), + [aux_sym_preproc_include_token1] = ACTIONS(2977), + [aux_sym_preproc_def_token1] = ACTIONS(2977), + [aux_sym_preproc_if_token1] = ACTIONS(2977), + [aux_sym_preproc_if_token2] = ACTIONS(2977), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2977), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2977), + [sym_preproc_directive] = ACTIONS(2977), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_BANG] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym___extension__] = ACTIONS(2977), + [anon_sym_typedef] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2977), + [anon_sym___attribute__] = ACTIONS(2977), + [anon_sym_COLON_COLON] = ACTIONS(2979), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), + [anon_sym___declspec] = ACTIONS(2977), + [anon_sym___based] = ACTIONS(2977), + [anon_sym___cdecl] = ACTIONS(2977), + [anon_sym___clrcall] = ACTIONS(2977), + [anon_sym___stdcall] = ACTIONS(2977), + [anon_sym___fastcall] = ACTIONS(2977), + [anon_sym___thiscall] = ACTIONS(2977), + [anon_sym___vectorcall] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_signed] = ACTIONS(2977), + [anon_sym_unsigned] = ACTIONS(2977), + [anon_sym_long] = ACTIONS(2977), + [anon_sym_short] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2977), + [anon_sym_register] = ACTIONS(2977), + [anon_sym_inline] = ACTIONS(2977), + [anon_sym___inline] = ACTIONS(2977), + [anon_sym___inline__] = ACTIONS(2977), + [anon_sym___forceinline] = ACTIONS(2977), + [anon_sym_thread_local] = ACTIONS(2977), + [anon_sym___thread] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_constexpr] = ACTIONS(2977), + [anon_sym_volatile] = ACTIONS(2977), + [anon_sym_restrict] = ACTIONS(2977), + [anon_sym___restrict__] = ACTIONS(2977), + [anon_sym__Atomic] = ACTIONS(2977), + [anon_sym__Noreturn] = ACTIONS(2977), + [anon_sym_noreturn] = ACTIONS(2977), + [anon_sym_mutable] = ACTIONS(2977), + [anon_sym_constinit] = ACTIONS(2977), + [anon_sym_consteval] = ACTIONS(2977), + [sym_primitive_type] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_union] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_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), + [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(3091), - [anon_sym_decltype] = ACTIONS(3091), - [anon_sym_virtual] = ACTIONS(3091), - [anon_sym_alignas] = ACTIONS(3091), - [anon_sym_explicit] = ACTIONS(3091), - [anon_sym_typename] = ACTIONS(3091), - [anon_sym_template] = ACTIONS(3091), - [anon_sym_operator] = ACTIONS(3091), - [anon_sym_try] = ACTIONS(3091), - [anon_sym_delete] = ACTIONS(3091), - [anon_sym_throw] = ACTIONS(3091), - [anon_sym_namespace] = ACTIONS(3091), - [anon_sym_using] = ACTIONS(3091), - [anon_sym_static_assert] = ACTIONS(3091), - [anon_sym_concept] = ACTIONS(3091), - [anon_sym_co_return] = ACTIONS(3091), - [anon_sym_co_yield] = ACTIONS(3091), - [anon_sym_R_DQUOTE] = ACTIONS(3093), - [anon_sym_LR_DQUOTE] = ACTIONS(3093), - [anon_sym_uR_DQUOTE] = ACTIONS(3093), - [anon_sym_UR_DQUOTE] = ACTIONS(3093), - [anon_sym_u8R_DQUOTE] = ACTIONS(3093), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3091), - [anon_sym_requires] = ACTIONS(3091), - [sym_this] = ACTIONS(3091), + [sym_auto] = ACTIONS(2977), + [anon_sym_decltype] = ACTIONS(2977), + [anon_sym_virtual] = ACTIONS(2977), + [anon_sym_alignas] = ACTIONS(2977), + [anon_sym_explicit] = ACTIONS(2977), + [anon_sym_typename] = ACTIONS(2977), + [anon_sym_template] = ACTIONS(2977), + [anon_sym_operator] = ACTIONS(2977), + [anon_sym_try] = ACTIONS(2977), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_throw] = ACTIONS(2977), + [anon_sym_namespace] = ACTIONS(2977), + [anon_sym_using] = ACTIONS(2977), + [anon_sym_static_assert] = ACTIONS(2977), + [anon_sym_concept] = ACTIONS(2977), + [anon_sym_co_return] = ACTIONS(2977), + [anon_sym_co_yield] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2979), + [anon_sym_LR_DQUOTE] = ACTIONS(2979), + [anon_sym_uR_DQUOTE] = ACTIONS(2979), + [anon_sym_UR_DQUOTE] = ACTIONS(2979), + [anon_sym_u8R_DQUOTE] = ACTIONS(2979), + [anon_sym_co_await] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(2977), + [anon_sym_requires] = ACTIONS(2977), + [sym_this] = ACTIONS(2977), }, - [864] = { - [sym_identifier] = ACTIONS(3095), - [aux_sym_preproc_include_token1] = ACTIONS(3095), - [aux_sym_preproc_def_token1] = ACTIONS(3095), - [aux_sym_preproc_if_token1] = ACTIONS(3095), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), - [sym_preproc_directive] = ACTIONS(3095), - [anon_sym_LPAREN2] = ACTIONS(3097), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym___extension__] = ACTIONS(3095), - [anon_sym_typedef] = ACTIONS(3095), - [anon_sym_extern] = ACTIONS(3095), - [anon_sym___attribute__] = ACTIONS(3095), - [anon_sym_COLON_COLON] = ACTIONS(3097), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), - [anon_sym___declspec] = ACTIONS(3095), - [anon_sym___based] = ACTIONS(3095), - [anon_sym___cdecl] = ACTIONS(3095), - [anon_sym___clrcall] = ACTIONS(3095), - [anon_sym___stdcall] = ACTIONS(3095), - [anon_sym___fastcall] = ACTIONS(3095), - [anon_sym___thiscall] = ACTIONS(3095), - [anon_sym___vectorcall] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_RBRACE] = ACTIONS(3097), - [anon_sym_signed] = ACTIONS(3095), - [anon_sym_unsigned] = ACTIONS(3095), - [anon_sym_long] = ACTIONS(3095), - [anon_sym_short] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_register] = ACTIONS(3095), - [anon_sym_inline] = ACTIONS(3095), - [anon_sym___inline] = ACTIONS(3095), - [anon_sym___inline__] = ACTIONS(3095), - [anon_sym___forceinline] = ACTIONS(3095), - [anon_sym_thread_local] = ACTIONS(3095), - [anon_sym___thread] = ACTIONS(3095), - [anon_sym_const] = ACTIONS(3095), - [anon_sym_constexpr] = ACTIONS(3095), - [anon_sym_volatile] = ACTIONS(3095), - [anon_sym_restrict] = ACTIONS(3095), - [anon_sym___restrict__] = ACTIONS(3095), - [anon_sym__Atomic] = ACTIONS(3095), - [anon_sym__Noreturn] = ACTIONS(3095), - [anon_sym_noreturn] = ACTIONS(3095), - [anon_sym_mutable] = ACTIONS(3095), - [anon_sym_constinit] = ACTIONS(3095), - [anon_sym_consteval] = ACTIONS(3095), - [sym_primitive_type] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_union] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3095), - [anon_sym_else] = ACTIONS(3095), - [anon_sym_switch] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_default] = ACTIONS(3095), - [anon_sym_while] = ACTIONS(3095), - [anon_sym_do] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3095), - [anon_sym_return] = ACTIONS(3095), - [anon_sym_break] = ACTIONS(3095), - [anon_sym_continue] = ACTIONS(3095), - [anon_sym_goto] = ACTIONS(3095), - [anon_sym_not] = ACTIONS(3095), - [anon_sym_compl] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_sizeof] = ACTIONS(3095), - [anon_sym___alignof__] = ACTIONS(3095), - [anon_sym___alignof] = ACTIONS(3095), - [anon_sym__alignof] = ACTIONS(3095), - [anon_sym_alignof] = ACTIONS(3095), - [anon_sym__Alignof] = ACTIONS(3095), - [anon_sym_offsetof] = ACTIONS(3095), - [anon_sym__Generic] = ACTIONS(3095), - [anon_sym_asm] = ACTIONS(3095), - [anon_sym___asm__] = ACTIONS(3095), - [sym_number_literal] = ACTIONS(3097), - [anon_sym_L_SQUOTE] = ACTIONS(3097), - [anon_sym_u_SQUOTE] = ACTIONS(3097), - [anon_sym_U_SQUOTE] = ACTIONS(3097), - [anon_sym_u8_SQUOTE] = ACTIONS(3097), - [anon_sym_SQUOTE] = ACTIONS(3097), - [anon_sym_L_DQUOTE] = ACTIONS(3097), - [anon_sym_u_DQUOTE] = ACTIONS(3097), - [anon_sym_U_DQUOTE] = ACTIONS(3097), - [anon_sym_u8_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE] = ACTIONS(3097), - [sym_true] = ACTIONS(3095), - [sym_false] = ACTIONS(3095), - [anon_sym_NULL] = ACTIONS(3095), - [anon_sym_nullptr] = ACTIONS(3095), + [866] = { + [sym_identifier] = ACTIONS(2981), + [aux_sym_preproc_include_token1] = ACTIONS(2981), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token2] = ACTIONS(2981), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2981), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2981), + [sym_preproc_directive] = ACTIONS(2981), + [anon_sym_LPAREN2] = ACTIONS(2983), + [anon_sym_BANG] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym___extension__] = ACTIONS(2981), + [anon_sym_typedef] = ACTIONS(2981), + [anon_sym_extern] = ACTIONS(2981), + [anon_sym___attribute__] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(2983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), + [anon_sym___declspec] = ACTIONS(2981), + [anon_sym___based] = ACTIONS(2981), + [anon_sym___cdecl] = ACTIONS(2981), + [anon_sym___clrcall] = ACTIONS(2981), + [anon_sym___stdcall] = ACTIONS(2981), + [anon_sym___fastcall] = ACTIONS(2981), + [anon_sym___thiscall] = ACTIONS(2981), + [anon_sym___vectorcall] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_signed] = ACTIONS(2981), + [anon_sym_unsigned] = ACTIONS(2981), + [anon_sym_long] = ACTIONS(2981), + [anon_sym_short] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_static] = ACTIONS(2981), + [anon_sym_register] = ACTIONS(2981), + [anon_sym_inline] = ACTIONS(2981), + [anon_sym___inline] = ACTIONS(2981), + [anon_sym___inline__] = ACTIONS(2981), + [anon_sym___forceinline] = ACTIONS(2981), + [anon_sym_thread_local] = ACTIONS(2981), + [anon_sym___thread] = ACTIONS(2981), + [anon_sym_const] = ACTIONS(2981), + [anon_sym_constexpr] = ACTIONS(2981), + [anon_sym_volatile] = ACTIONS(2981), + [anon_sym_restrict] = ACTIONS(2981), + [anon_sym___restrict__] = ACTIONS(2981), + [anon_sym__Atomic] = ACTIONS(2981), + [anon_sym__Noreturn] = ACTIONS(2981), + [anon_sym_noreturn] = ACTIONS(2981), + [anon_sym_mutable] = ACTIONS(2981), + [anon_sym_constinit] = ACTIONS(2981), + [anon_sym_consteval] = ACTIONS(2981), + [sym_primitive_type] = ACTIONS(2981), + [anon_sym_enum] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(2981), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_union] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_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), + [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(3095), - [anon_sym_decltype] = ACTIONS(3095), - [anon_sym_virtual] = ACTIONS(3095), - [anon_sym_alignas] = ACTIONS(3095), - [anon_sym_explicit] = ACTIONS(3095), - [anon_sym_typename] = ACTIONS(3095), - [anon_sym_template] = ACTIONS(3095), - [anon_sym_operator] = ACTIONS(3095), - [anon_sym_try] = ACTIONS(3095), - [anon_sym_delete] = ACTIONS(3095), - [anon_sym_throw] = ACTIONS(3095), - [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_using] = ACTIONS(3095), - [anon_sym_static_assert] = ACTIONS(3095), - [anon_sym_concept] = ACTIONS(3095), - [anon_sym_co_return] = ACTIONS(3095), - [anon_sym_co_yield] = ACTIONS(3095), - [anon_sym_R_DQUOTE] = ACTIONS(3097), - [anon_sym_LR_DQUOTE] = ACTIONS(3097), - [anon_sym_uR_DQUOTE] = ACTIONS(3097), - [anon_sym_UR_DQUOTE] = ACTIONS(3097), - [anon_sym_u8R_DQUOTE] = ACTIONS(3097), - [anon_sym_co_await] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_requires] = ACTIONS(3095), - [sym_this] = ACTIONS(3095), + [sym_auto] = ACTIONS(2981), + [anon_sym_decltype] = ACTIONS(2981), + [anon_sym_virtual] = ACTIONS(2981), + [anon_sym_alignas] = ACTIONS(2981), + [anon_sym_explicit] = ACTIONS(2981), + [anon_sym_typename] = ACTIONS(2981), + [anon_sym_template] = ACTIONS(2981), + [anon_sym_operator] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2981), + [anon_sym_delete] = ACTIONS(2981), + [anon_sym_throw] = ACTIONS(2981), + [anon_sym_namespace] = ACTIONS(2981), + [anon_sym_using] = ACTIONS(2981), + [anon_sym_static_assert] = ACTIONS(2981), + [anon_sym_concept] = ACTIONS(2981), + [anon_sym_co_return] = ACTIONS(2981), + [anon_sym_co_yield] = ACTIONS(2981), + [anon_sym_R_DQUOTE] = ACTIONS(2983), + [anon_sym_LR_DQUOTE] = ACTIONS(2983), + [anon_sym_uR_DQUOTE] = ACTIONS(2983), + [anon_sym_UR_DQUOTE] = ACTIONS(2983), + [anon_sym_u8R_DQUOTE] = ACTIONS(2983), + [anon_sym_co_await] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2981), + [anon_sym_requires] = ACTIONS(2981), + [sym_this] = ACTIONS(2981), }, - [865] = { + [867] = { [sym_identifier] = ACTIONS(3099), [aux_sym_preproc_include_token1] = ACTIONS(3099), [aux_sym_preproc_def_token1] = ACTIONS(3099), [aux_sym_preproc_if_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token2] = ACTIONS(3099), [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), [sym_preproc_directive] = ACTIONS(3099), @@ -176874,7 +172595,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(3099), [anon_sym___vectorcall] = ACTIONS(3099), [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_RBRACE] = ACTIONS(3101), [anon_sym_signed] = ACTIONS(3099), [anon_sym_unsigned] = ACTIONS(3099), [anon_sym_long] = ACTIONS(3099), @@ -176905,7 +172625,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(3099), [anon_sym_union] = ACTIONS(3099), [anon_sym_if] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3099), [anon_sym_switch] = ACTIONS(3099), [anon_sym_case] = ACTIONS(3099), [anon_sym_default] = ACTIONS(3099), @@ -176973,1750 +172692,2517 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3099), [sym_this] = ACTIONS(3099), }, - [866] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [868] = { + [sym_identifier] = ACTIONS(2977), + [aux_sym_preproc_include_token1] = ACTIONS(2977), + [aux_sym_preproc_def_token1] = ACTIONS(2977), + [aux_sym_preproc_if_token1] = ACTIONS(2977), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2977), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2977), + [sym_preproc_directive] = ACTIONS(2977), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_BANG] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym___extension__] = ACTIONS(2977), + [anon_sym_typedef] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2977), + [anon_sym___attribute__] = ACTIONS(2977), + [anon_sym_COLON_COLON] = ACTIONS(2979), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), + [anon_sym___declspec] = ACTIONS(2977), + [anon_sym___based] = ACTIONS(2977), + [anon_sym___cdecl] = ACTIONS(2977), + [anon_sym___clrcall] = ACTIONS(2977), + [anon_sym___stdcall] = ACTIONS(2977), + [anon_sym___fastcall] = ACTIONS(2977), + [anon_sym___thiscall] = ACTIONS(2977), + [anon_sym___vectorcall] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_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_mutable] = ACTIONS(2977), + [anon_sym_constinit] = ACTIONS(2977), + [anon_sym_consteval] = ACTIONS(2977), + [sym_primitive_type] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_union] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_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), + [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(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), - }, - [867] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), - }, - [868] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2977), + [anon_sym_decltype] = ACTIONS(2977), + [anon_sym_virtual] = ACTIONS(2977), + [anon_sym_alignas] = ACTIONS(2977), + [anon_sym_explicit] = ACTIONS(2977), + [anon_sym_typename] = ACTIONS(2977), + [anon_sym_template] = ACTIONS(2977), + [anon_sym_operator] = ACTIONS(2977), + [anon_sym_try] = ACTIONS(2977), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_throw] = ACTIONS(2977), + [anon_sym_namespace] = ACTIONS(2977), + [anon_sym_using] = ACTIONS(2977), + [anon_sym_static_assert] = ACTIONS(2977), + [anon_sym_concept] = ACTIONS(2977), + [anon_sym_co_return] = ACTIONS(2977), + [anon_sym_co_yield] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2979), + [anon_sym_LR_DQUOTE] = ACTIONS(2979), + [anon_sym_uR_DQUOTE] = ACTIONS(2979), + [anon_sym_UR_DQUOTE] = ACTIONS(2979), + [anon_sym_u8R_DQUOTE] = ACTIONS(2979), + [anon_sym_co_await] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(2977), + [anon_sym_requires] = ACTIONS(2977), + [sym_this] = ACTIONS(2977), }, [869] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2981), + [aux_sym_preproc_include_token1] = ACTIONS(2981), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2981), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2981), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2981), + [sym_preproc_directive] = ACTIONS(2981), + [anon_sym_LPAREN2] = ACTIONS(2983), + [anon_sym_BANG] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym___extension__] = ACTIONS(2981), + [anon_sym_typedef] = ACTIONS(2981), + [anon_sym_extern] = ACTIONS(2981), + [anon_sym___attribute__] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(2983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), + [anon_sym___declspec] = ACTIONS(2981), + [anon_sym___based] = ACTIONS(2981), + [anon_sym___cdecl] = ACTIONS(2981), + [anon_sym___clrcall] = ACTIONS(2981), + [anon_sym___stdcall] = ACTIONS(2981), + [anon_sym___fastcall] = ACTIONS(2981), + [anon_sym___thiscall] = ACTIONS(2981), + [anon_sym___vectorcall] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_RBRACE] = ACTIONS(2983), + [anon_sym_signed] = ACTIONS(2981), + [anon_sym_unsigned] = ACTIONS(2981), + [anon_sym_long] = ACTIONS(2981), + [anon_sym_short] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_static] = ACTIONS(2981), + [anon_sym_register] = ACTIONS(2981), + [anon_sym_inline] = ACTIONS(2981), + [anon_sym___inline] = ACTIONS(2981), + [anon_sym___inline__] = ACTIONS(2981), + [anon_sym___forceinline] = ACTIONS(2981), + [anon_sym_thread_local] = ACTIONS(2981), + [anon_sym___thread] = ACTIONS(2981), + [anon_sym_const] = ACTIONS(2981), + [anon_sym_constexpr] = ACTIONS(2981), + [anon_sym_volatile] = ACTIONS(2981), + [anon_sym_restrict] = ACTIONS(2981), + [anon_sym___restrict__] = ACTIONS(2981), + [anon_sym__Atomic] = ACTIONS(2981), + [anon_sym__Noreturn] = ACTIONS(2981), + [anon_sym_noreturn] = ACTIONS(2981), + [anon_sym_mutable] = ACTIONS(2981), + [anon_sym_constinit] = ACTIONS(2981), + [anon_sym_consteval] = ACTIONS(2981), + [sym_primitive_type] = ACTIONS(2981), + [anon_sym_enum] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(2981), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_union] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_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), + [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(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2981), + [anon_sym_decltype] = ACTIONS(2981), + [anon_sym_virtual] = ACTIONS(2981), + [anon_sym_alignas] = ACTIONS(2981), + [anon_sym_explicit] = ACTIONS(2981), + [anon_sym_typename] = ACTIONS(2981), + [anon_sym_template] = ACTIONS(2981), + [anon_sym_operator] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2981), + [anon_sym_delete] = ACTIONS(2981), + [anon_sym_throw] = ACTIONS(2981), + [anon_sym_namespace] = ACTIONS(2981), + [anon_sym_using] = ACTIONS(2981), + [anon_sym_static_assert] = ACTIONS(2981), + [anon_sym_concept] = ACTIONS(2981), + [anon_sym_co_return] = ACTIONS(2981), + [anon_sym_co_yield] = ACTIONS(2981), + [anon_sym_R_DQUOTE] = ACTIONS(2983), + [anon_sym_LR_DQUOTE] = ACTIONS(2983), + [anon_sym_uR_DQUOTE] = ACTIONS(2983), + [anon_sym_UR_DQUOTE] = ACTIONS(2983), + [anon_sym_u8R_DQUOTE] = ACTIONS(2983), + [anon_sym_co_await] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2981), + [anon_sym_requires] = ACTIONS(2981), + [sym_this] = ACTIONS(2981), }, [870] = { - [ts_builtin_sym_end] = ACTIONS(2935), - [sym_identifier] = ACTIONS(2933), - [aux_sym_preproc_include_token1] = ACTIONS(2933), - [aux_sym_preproc_def_token1] = ACTIONS(2933), - [aux_sym_preproc_if_token1] = ACTIONS(2933), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2933), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2933), - [sym_preproc_directive] = ACTIONS(2933), - [anon_sym_LPAREN2] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2933), - [anon_sym_SEMI] = ACTIONS(2935), - [anon_sym___extension__] = ACTIONS(2933), - [anon_sym_typedef] = ACTIONS(2933), - [anon_sym_extern] = ACTIONS(2933), - [anon_sym___attribute__] = ACTIONS(2933), - [anon_sym_COLON_COLON] = ACTIONS(2935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), - [anon_sym___declspec] = ACTIONS(2933), - [anon_sym___based] = ACTIONS(2933), - [anon_sym___cdecl] = ACTIONS(2933), - [anon_sym___clrcall] = ACTIONS(2933), - [anon_sym___stdcall] = ACTIONS(2933), - [anon_sym___fastcall] = ACTIONS(2933), - [anon_sym___thiscall] = ACTIONS(2933), - [anon_sym___vectorcall] = ACTIONS(2933), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_signed] = ACTIONS(2933), - [anon_sym_unsigned] = ACTIONS(2933), - [anon_sym_long] = ACTIONS(2933), - [anon_sym_short] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_static] = ACTIONS(2933), - [anon_sym_register] = ACTIONS(2933), - [anon_sym_inline] = ACTIONS(2933), - [anon_sym___inline] = ACTIONS(2933), - [anon_sym___inline__] = ACTIONS(2933), - [anon_sym___forceinline] = ACTIONS(2933), - [anon_sym_thread_local] = ACTIONS(2933), - [anon_sym___thread] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2933), - [anon_sym_constexpr] = ACTIONS(2933), - [anon_sym_volatile] = ACTIONS(2933), - [anon_sym_restrict] = ACTIONS(2933), - [anon_sym___restrict__] = ACTIONS(2933), - [anon_sym__Atomic] = ACTIONS(2933), - [anon_sym__Noreturn] = ACTIONS(2933), - [anon_sym_noreturn] = ACTIONS(2933), - [anon_sym_mutable] = ACTIONS(2933), - [anon_sym_constinit] = ACTIONS(2933), - [anon_sym_consteval] = ACTIONS(2933), - [sym_primitive_type] = ACTIONS(2933), - [anon_sym_enum] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2933), - [anon_sym_union] = ACTIONS(2933), - [anon_sym_if] = ACTIONS(2933), - [anon_sym_else] = ACTIONS(2933), - [anon_sym_switch] = ACTIONS(2933), - [anon_sym_case] = ACTIONS(2933), - [anon_sym_default] = ACTIONS(2933), - [anon_sym_while] = ACTIONS(2933), - [anon_sym_do] = ACTIONS(2933), - [anon_sym_for] = ACTIONS(2933), - [anon_sym_return] = ACTIONS(2933), - [anon_sym_break] = ACTIONS(2933), - [anon_sym_continue] = ACTIONS(2933), - [anon_sym_goto] = ACTIONS(2933), - [anon_sym_not] = ACTIONS(2933), - [anon_sym_compl] = ACTIONS(2933), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_sizeof] = ACTIONS(2933), - [anon_sym___alignof__] = ACTIONS(2933), - [anon_sym___alignof] = ACTIONS(2933), - [anon_sym__alignof] = ACTIONS(2933), - [anon_sym_alignof] = ACTIONS(2933), - [anon_sym__Alignof] = ACTIONS(2933), - [anon_sym_offsetof] = ACTIONS(2933), - [anon_sym__Generic] = ACTIONS(2933), - [anon_sym_asm] = ACTIONS(2933), - [anon_sym___asm__] = ACTIONS(2933), - [sym_number_literal] = ACTIONS(2935), - [anon_sym_L_SQUOTE] = ACTIONS(2935), - [anon_sym_u_SQUOTE] = ACTIONS(2935), - [anon_sym_U_SQUOTE] = ACTIONS(2935), - [anon_sym_u8_SQUOTE] = ACTIONS(2935), - [anon_sym_SQUOTE] = ACTIONS(2935), - [anon_sym_L_DQUOTE] = ACTIONS(2935), - [anon_sym_u_DQUOTE] = ACTIONS(2935), - [anon_sym_U_DQUOTE] = ACTIONS(2935), - [anon_sym_u8_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [sym_true] = ACTIONS(2933), - [sym_false] = ACTIONS(2933), - [anon_sym_NULL] = ACTIONS(2933), - [anon_sym_nullptr] = ACTIONS(2933), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2933), - [anon_sym_decltype] = ACTIONS(2933), - [anon_sym_virtual] = ACTIONS(2933), - [anon_sym_alignas] = ACTIONS(2933), - [anon_sym_explicit] = ACTIONS(2933), - [anon_sym_typename] = ACTIONS(2933), - [anon_sym_template] = ACTIONS(2933), - [anon_sym_operator] = ACTIONS(2933), - [anon_sym_try] = ACTIONS(2933), - [anon_sym_delete] = ACTIONS(2933), - [anon_sym_throw] = ACTIONS(2933), - [anon_sym_namespace] = ACTIONS(2933), - [anon_sym_using] = ACTIONS(2933), - [anon_sym_static_assert] = ACTIONS(2933), - [anon_sym_concept] = ACTIONS(2933), - [anon_sym_co_return] = ACTIONS(2933), - [anon_sym_co_yield] = ACTIONS(2933), - [anon_sym_R_DQUOTE] = ACTIONS(2935), - [anon_sym_LR_DQUOTE] = ACTIONS(2935), - [anon_sym_uR_DQUOTE] = ACTIONS(2935), - [anon_sym_UR_DQUOTE] = ACTIONS(2935), - [anon_sym_u8R_DQUOTE] = ACTIONS(2935), - [anon_sym_co_await] = ACTIONS(2933), - [anon_sym_new] = ACTIONS(2933), - [anon_sym_requires] = ACTIONS(2933), - [sym_this] = ACTIONS(2933), + [sym_identifier] = ACTIONS(2989), + [aux_sym_preproc_include_token1] = ACTIONS(2989), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token2] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), + [sym_preproc_directive] = ACTIONS(2989), + [anon_sym_LPAREN2] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_SEMI] = ACTIONS(2991), + [anon_sym___extension__] = ACTIONS(2989), + [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_extern] = ACTIONS(2989), + [anon_sym___attribute__] = ACTIONS(2989), + [anon_sym_COLON_COLON] = ACTIONS(2991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), + [anon_sym___declspec] = ACTIONS(2989), + [anon_sym___based] = ACTIONS(2989), + [anon_sym___cdecl] = ACTIONS(2989), + [anon_sym___clrcall] = ACTIONS(2989), + [anon_sym___stdcall] = ACTIONS(2989), + [anon_sym___fastcall] = ACTIONS(2989), + [anon_sym___thiscall] = ACTIONS(2989), + [anon_sym___vectorcall] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_signed] = ACTIONS(2989), + [anon_sym_unsigned] = ACTIONS(2989), + [anon_sym_long] = ACTIONS(2989), + [anon_sym_short] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2989), + [anon_sym_static] = ACTIONS(2989), + [anon_sym_register] = ACTIONS(2989), + [anon_sym_inline] = ACTIONS(2989), + [anon_sym___inline] = ACTIONS(2989), + [anon_sym___inline__] = ACTIONS(2989), + [anon_sym___forceinline] = ACTIONS(2989), + [anon_sym_thread_local] = ACTIONS(2989), + [anon_sym___thread] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_constexpr] = ACTIONS(2989), + [anon_sym_volatile] = ACTIONS(2989), + [anon_sym_restrict] = ACTIONS(2989), + [anon_sym___restrict__] = ACTIONS(2989), + [anon_sym__Atomic] = ACTIONS(2989), + [anon_sym__Noreturn] = ACTIONS(2989), + [anon_sym_noreturn] = ACTIONS(2989), + [anon_sym_mutable] = ACTIONS(2989), + [anon_sym_constinit] = ACTIONS(2989), + [anon_sym_consteval] = ACTIONS(2989), + [sym_primitive_type] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_class] = ACTIONS(2989), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_union] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_switch] = ACTIONS(2989), + [anon_sym_case] = ACTIONS(2989), + [anon_sym_default] = ACTIONS(2989), + [anon_sym_while] = ACTIONS(2989), + [anon_sym_do] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_goto] = ACTIONS(2989), + [anon_sym_not] = ACTIONS(2989), + [anon_sym_compl] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_sizeof] = ACTIONS(2989), + [anon_sym___alignof__] = ACTIONS(2989), + [anon_sym___alignof] = ACTIONS(2989), + [anon_sym__alignof] = ACTIONS(2989), + [anon_sym_alignof] = ACTIONS(2989), + [anon_sym__Alignof] = ACTIONS(2989), + [anon_sym_offsetof] = ACTIONS(2989), + [anon_sym__Generic] = ACTIONS(2989), + [anon_sym_asm] = ACTIONS(2989), + [anon_sym___asm__] = ACTIONS(2989), + [sym_number_literal] = ACTIONS(2991), + [anon_sym_L_SQUOTE] = ACTIONS(2991), + [anon_sym_u_SQUOTE] = ACTIONS(2991), + [anon_sym_U_SQUOTE] = ACTIONS(2991), + [anon_sym_u8_SQUOTE] = ACTIONS(2991), + [anon_sym_SQUOTE] = ACTIONS(2991), + [anon_sym_L_DQUOTE] = ACTIONS(2991), + [anon_sym_u_DQUOTE] = ACTIONS(2991), + [anon_sym_U_DQUOTE] = ACTIONS(2991), + [anon_sym_u8_DQUOTE] = ACTIONS(2991), + [anon_sym_DQUOTE] = ACTIONS(2991), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [anon_sym_NULL] = ACTIONS(2989), + [anon_sym_nullptr] = ACTIONS(2989), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2989), + [anon_sym_decltype] = ACTIONS(2989), + [anon_sym_virtual] = ACTIONS(2989), + [anon_sym_alignas] = ACTIONS(2989), + [anon_sym_explicit] = ACTIONS(2989), + [anon_sym_typename] = ACTIONS(2989), + [anon_sym_template] = ACTIONS(2989), + [anon_sym_operator] = ACTIONS(2989), + [anon_sym_try] = ACTIONS(2989), + [anon_sym_delete] = ACTIONS(2989), + [anon_sym_throw] = ACTIONS(2989), + [anon_sym_namespace] = ACTIONS(2989), + [anon_sym_using] = ACTIONS(2989), + [anon_sym_static_assert] = ACTIONS(2989), + [anon_sym_concept] = ACTIONS(2989), + [anon_sym_co_return] = ACTIONS(2989), + [anon_sym_co_yield] = ACTIONS(2989), + [anon_sym_R_DQUOTE] = ACTIONS(2991), + [anon_sym_LR_DQUOTE] = ACTIONS(2991), + [anon_sym_uR_DQUOTE] = ACTIONS(2991), + [anon_sym_UR_DQUOTE] = ACTIONS(2991), + [anon_sym_u8R_DQUOTE] = ACTIONS(2991), + [anon_sym_co_await] = ACTIONS(2989), + [anon_sym_new] = ACTIONS(2989), + [anon_sym_requires] = ACTIONS(2989), + [sym_this] = ACTIONS(2989), }, [871] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2997), + [aux_sym_preproc_include_token1] = ACTIONS(2997), + [aux_sym_preproc_def_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token2] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2997), + [sym_preproc_directive] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(2999), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(2999), + [anon_sym___extension__] = ACTIONS(2997), + [anon_sym_typedef] = ACTIONS(2997), + [anon_sym_extern] = ACTIONS(2997), + [anon_sym___attribute__] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2999), + [anon_sym___declspec] = ACTIONS(2997), + [anon_sym___based] = ACTIONS(2997), + [anon_sym___cdecl] = ACTIONS(2997), + [anon_sym___clrcall] = ACTIONS(2997), + [anon_sym___stdcall] = ACTIONS(2997), + [anon_sym___fastcall] = ACTIONS(2997), + [anon_sym___thiscall] = ACTIONS(2997), + [anon_sym___vectorcall] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_signed] = ACTIONS(2997), + [anon_sym_unsigned] = ACTIONS(2997), + [anon_sym_long] = ACTIONS(2997), + [anon_sym_short] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(2997), + [anon_sym_register] = ACTIONS(2997), + [anon_sym_inline] = ACTIONS(2997), + [anon_sym___inline] = ACTIONS(2997), + [anon_sym___inline__] = ACTIONS(2997), + [anon_sym___forceinline] = ACTIONS(2997), + [anon_sym_thread_local] = ACTIONS(2997), + [anon_sym___thread] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_volatile] = ACTIONS(2997), + [anon_sym_restrict] = ACTIONS(2997), + [anon_sym___restrict__] = ACTIONS(2997), + [anon_sym__Atomic] = ACTIONS(2997), + [anon_sym__Noreturn] = ACTIONS(2997), + [anon_sym_noreturn] = ACTIONS(2997), + [anon_sym_mutable] = ACTIONS(2997), + [anon_sym_constinit] = ACTIONS(2997), + [anon_sym_consteval] = ACTIONS(2997), + [sym_primitive_type] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_class] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_switch] = ACTIONS(2997), + [anon_sym_case] = ACTIONS(2997), + [anon_sym_default] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_goto] = ACTIONS(2997), + [anon_sym_not] = ACTIONS(2997), + [anon_sym_compl] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_sizeof] = ACTIONS(2997), + [anon_sym___alignof__] = ACTIONS(2997), + [anon_sym___alignof] = ACTIONS(2997), + [anon_sym__alignof] = ACTIONS(2997), + [anon_sym_alignof] = ACTIONS(2997), + [anon_sym__Alignof] = ACTIONS(2997), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2997), + [anon_sym_asm] = ACTIONS(2997), + [anon_sym___asm__] = ACTIONS(2997), + [sym_number_literal] = ACTIONS(2999), + [anon_sym_L_SQUOTE] = ACTIONS(2999), + [anon_sym_u_SQUOTE] = ACTIONS(2999), + [anon_sym_U_SQUOTE] = ACTIONS(2999), + [anon_sym_u8_SQUOTE] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_L_DQUOTE] = ACTIONS(2999), + [anon_sym_u_DQUOTE] = ACTIONS(2999), + [anon_sym_U_DQUOTE] = ACTIONS(2999), + [anon_sym_u8_DQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE] = ACTIONS(2999), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [anon_sym_NULL] = ACTIONS(2997), + [anon_sym_nullptr] = ACTIONS(2997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2997), + [anon_sym_decltype] = ACTIONS(2997), + [anon_sym_virtual] = ACTIONS(2997), + [anon_sym_alignas] = ACTIONS(2997), + [anon_sym_explicit] = ACTIONS(2997), + [anon_sym_typename] = ACTIONS(2997), + [anon_sym_template] = ACTIONS(2997), + [anon_sym_operator] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_delete] = ACTIONS(2997), + [anon_sym_throw] = ACTIONS(2997), + [anon_sym_namespace] = ACTIONS(2997), + [anon_sym_using] = ACTIONS(2997), + [anon_sym_static_assert] = ACTIONS(2997), + [anon_sym_concept] = ACTIONS(2997), + [anon_sym_co_return] = ACTIONS(2997), + [anon_sym_co_yield] = ACTIONS(2997), + [anon_sym_R_DQUOTE] = ACTIONS(2999), + [anon_sym_LR_DQUOTE] = ACTIONS(2999), + [anon_sym_uR_DQUOTE] = ACTIONS(2999), + [anon_sym_UR_DQUOTE] = ACTIONS(2999), + [anon_sym_u8R_DQUOTE] = ACTIONS(2999), + [anon_sym_co_await] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_requires] = ACTIONS(2997), + [sym_this] = ACTIONS(2997), }, [872] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2985), + [aux_sym_preproc_include_token1] = ACTIONS(2985), + [aux_sym_preproc_def_token1] = ACTIONS(2985), + [aux_sym_preproc_if_token1] = ACTIONS(2985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2985), + [sym_preproc_directive] = ACTIONS(2985), + [anon_sym_LPAREN2] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_AMP_AMP] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym___extension__] = ACTIONS(2985), + [anon_sym_typedef] = ACTIONS(2985), + [anon_sym_extern] = ACTIONS(2985), + [anon_sym___attribute__] = ACTIONS(2985), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), + [anon_sym___declspec] = ACTIONS(2985), + [anon_sym___based] = ACTIONS(2985), + [anon_sym___cdecl] = ACTIONS(2985), + [anon_sym___clrcall] = ACTIONS(2985), + [anon_sym___stdcall] = ACTIONS(2985), + [anon_sym___fastcall] = ACTIONS(2985), + [anon_sym___thiscall] = ACTIONS(2985), + [anon_sym___vectorcall] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_RBRACE] = ACTIONS(2987), + [anon_sym_signed] = ACTIONS(2985), + [anon_sym_unsigned] = ACTIONS(2985), + [anon_sym_long] = ACTIONS(2985), + [anon_sym_short] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_static] = ACTIONS(2985), + [anon_sym_register] = ACTIONS(2985), + [anon_sym_inline] = ACTIONS(2985), + [anon_sym___inline] = ACTIONS(2985), + [anon_sym___inline__] = ACTIONS(2985), + [anon_sym___forceinline] = ACTIONS(2985), + [anon_sym_thread_local] = ACTIONS(2985), + [anon_sym___thread] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_constexpr] = ACTIONS(2985), + [anon_sym_volatile] = ACTIONS(2985), + [anon_sym_restrict] = ACTIONS(2985), + [anon_sym___restrict__] = ACTIONS(2985), + [anon_sym__Atomic] = ACTIONS(2985), + [anon_sym__Noreturn] = ACTIONS(2985), + [anon_sym_noreturn] = ACTIONS(2985), + [anon_sym_mutable] = ACTIONS(2985), + [anon_sym_constinit] = ACTIONS(2985), + [anon_sym_consteval] = ACTIONS(2985), + [sym_primitive_type] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_class] = ACTIONS(2985), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_union] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_switch] = ACTIONS(2985), + [anon_sym_case] = ACTIONS(2985), + [anon_sym_default] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_do] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym_not] = ACTIONS(2985), + [anon_sym_compl] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_sizeof] = ACTIONS(2985), + [anon_sym___alignof__] = ACTIONS(2985), + [anon_sym___alignof] = ACTIONS(2985), + [anon_sym__alignof] = ACTIONS(2985), + [anon_sym_alignof] = ACTIONS(2985), + [anon_sym__Alignof] = ACTIONS(2985), + [anon_sym_offsetof] = ACTIONS(2985), + [anon_sym__Generic] = ACTIONS(2985), + [anon_sym_asm] = ACTIONS(2985), + [anon_sym___asm__] = ACTIONS(2985), + [sym_number_literal] = ACTIONS(2987), + [anon_sym_L_SQUOTE] = ACTIONS(2987), + [anon_sym_u_SQUOTE] = ACTIONS(2987), + [anon_sym_U_SQUOTE] = ACTIONS(2987), + [anon_sym_u8_SQUOTE] = ACTIONS(2987), + [anon_sym_SQUOTE] = ACTIONS(2987), + [anon_sym_L_DQUOTE] = ACTIONS(2987), + [anon_sym_u_DQUOTE] = ACTIONS(2987), + [anon_sym_U_DQUOTE] = ACTIONS(2987), + [anon_sym_u8_DQUOTE] = ACTIONS(2987), + [anon_sym_DQUOTE] = ACTIONS(2987), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [anon_sym_NULL] = ACTIONS(2985), + [anon_sym_nullptr] = ACTIONS(2985), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2985), + [anon_sym_decltype] = ACTIONS(2985), + [anon_sym_virtual] = ACTIONS(2985), + [anon_sym_alignas] = ACTIONS(2985), + [anon_sym_explicit] = ACTIONS(2985), + [anon_sym_typename] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(2985), + [anon_sym_operator] = ACTIONS(2985), + [anon_sym_try] = ACTIONS(2985), + [anon_sym_delete] = ACTIONS(2985), + [anon_sym_throw] = ACTIONS(2985), + [anon_sym_namespace] = ACTIONS(2985), + [anon_sym_using] = ACTIONS(2985), + [anon_sym_static_assert] = ACTIONS(2985), + [anon_sym_concept] = ACTIONS(2985), + [anon_sym_co_return] = ACTIONS(2985), + [anon_sym_co_yield] = ACTIONS(2985), + [anon_sym_R_DQUOTE] = ACTIONS(2987), + [anon_sym_LR_DQUOTE] = ACTIONS(2987), + [anon_sym_uR_DQUOTE] = ACTIONS(2987), + [anon_sym_UR_DQUOTE] = ACTIONS(2987), + [anon_sym_u8R_DQUOTE] = ACTIONS(2987), + [anon_sym_co_await] = ACTIONS(2985), + [anon_sym_new] = ACTIONS(2985), + [anon_sym_requires] = ACTIONS(2985), + [sym_this] = ACTIONS(2985), }, [873] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym_identifier] = ACTIONS(3091), + [aux_sym_preproc_include_token1] = ACTIONS(3091), + [aux_sym_preproc_def_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token2] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), + [sym_preproc_directive] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym___based] = ACTIONS(3091), + [anon_sym___cdecl] = ACTIONS(3091), + [anon_sym___clrcall] = ACTIONS(3091), + [anon_sym___stdcall] = ACTIONS(3091), + [anon_sym___fastcall] = ACTIONS(3091), + [anon_sym___thiscall] = ACTIONS(3091), + [anon_sym___vectorcall] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_switch] = ACTIONS(3091), + [anon_sym_case] = ACTIONS(3091), + [anon_sym_default] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_goto] = ACTIONS(3091), + [anon_sym_not] = ACTIONS(3091), + [anon_sym_compl] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3093), + [anon_sym_sizeof] = ACTIONS(3091), + [anon_sym___alignof__] = ACTIONS(3091), + [anon_sym___alignof] = ACTIONS(3091), + [anon_sym__alignof] = ACTIONS(3091), + [anon_sym_alignof] = ACTIONS(3091), + [anon_sym__Alignof] = ACTIONS(3091), + [anon_sym_offsetof] = ACTIONS(3091), + [anon_sym__Generic] = ACTIONS(3091), + [anon_sym_asm] = ACTIONS(3091), + [anon_sym___asm__] = ACTIONS(3091), + [sym_number_literal] = ACTIONS(3093), + [anon_sym_L_SQUOTE] = ACTIONS(3093), + [anon_sym_u_SQUOTE] = ACTIONS(3093), + [anon_sym_U_SQUOTE] = ACTIONS(3093), + [anon_sym_u8_SQUOTE] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_L_DQUOTE] = ACTIONS(3093), + [anon_sym_u_DQUOTE] = ACTIONS(3093), + [anon_sym_U_DQUOTE] = ACTIONS(3093), + [anon_sym_u8_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [anon_sym_NULL] = ACTIONS(3091), + [anon_sym_nullptr] = ACTIONS(3091), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym_explicit] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_operator] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_delete] = ACTIONS(3091), + [anon_sym_throw] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_static_assert] = ACTIONS(3091), + [anon_sym_concept] = ACTIONS(3091), + [anon_sym_co_return] = ACTIONS(3091), + [anon_sym_co_yield] = ACTIONS(3091), + [anon_sym_R_DQUOTE] = ACTIONS(3093), + [anon_sym_LR_DQUOTE] = ACTIONS(3093), + [anon_sym_uR_DQUOTE] = ACTIONS(3093), + [anon_sym_UR_DQUOTE] = ACTIONS(3093), + [anon_sym_u8R_DQUOTE] = ACTIONS(3093), + [anon_sym_co_await] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_requires] = ACTIONS(3091), + [sym_this] = ACTIONS(3091), }, [874] = { - [sym_identifier] = ACTIONS(3087), - [aux_sym_preproc_include_token1] = ACTIONS(3087), - [aux_sym_preproc_def_token1] = ACTIONS(3087), - [aux_sym_preproc_if_token1] = ACTIONS(3087), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), - [sym_preproc_directive] = ACTIONS(3087), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_SEMI] = ACTIONS(3089), - [anon_sym___extension__] = ACTIONS(3087), - [anon_sym_typedef] = ACTIONS(3087), - [anon_sym_extern] = ACTIONS(3087), - [anon_sym___attribute__] = ACTIONS(3087), - [anon_sym_COLON_COLON] = ACTIONS(3089), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), - [anon_sym___declspec] = ACTIONS(3087), - [anon_sym___based] = ACTIONS(3087), - [anon_sym___cdecl] = ACTIONS(3087), - [anon_sym___clrcall] = ACTIONS(3087), - [anon_sym___stdcall] = ACTIONS(3087), - [anon_sym___fastcall] = ACTIONS(3087), - [anon_sym___thiscall] = ACTIONS(3087), - [anon_sym___vectorcall] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_signed] = ACTIONS(3087), - [anon_sym_unsigned] = ACTIONS(3087), - [anon_sym_long] = ACTIONS(3087), - [anon_sym_short] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_register] = ACTIONS(3087), - [anon_sym_inline] = ACTIONS(3087), - [anon_sym___inline] = ACTIONS(3087), - [anon_sym___inline__] = ACTIONS(3087), - [anon_sym___forceinline] = ACTIONS(3087), - [anon_sym_thread_local] = ACTIONS(3087), - [anon_sym___thread] = ACTIONS(3087), - [anon_sym_const] = ACTIONS(3087), - [anon_sym_constexpr] = ACTIONS(3087), - [anon_sym_volatile] = ACTIONS(3087), - [anon_sym_restrict] = ACTIONS(3087), - [anon_sym___restrict__] = ACTIONS(3087), - [anon_sym__Atomic] = ACTIONS(3087), - [anon_sym__Noreturn] = ACTIONS(3087), - [anon_sym_noreturn] = ACTIONS(3087), - [anon_sym_mutable] = ACTIONS(3087), - [anon_sym_constinit] = ACTIONS(3087), - [anon_sym_consteval] = ACTIONS(3087), - [sym_primitive_type] = ACTIONS(3087), - [anon_sym_enum] = ACTIONS(3087), - [anon_sym_class] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_union] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_else] = ACTIONS(3087), - [anon_sym_switch] = ACTIONS(3087), - [anon_sym_case] = ACTIONS(3087), - [anon_sym_default] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_goto] = ACTIONS(3087), - [anon_sym_not] = ACTIONS(3087), - [anon_sym_compl] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_sizeof] = ACTIONS(3087), - [anon_sym___alignof__] = ACTIONS(3087), - [anon_sym___alignof] = ACTIONS(3087), - [anon_sym__alignof] = ACTIONS(3087), - [anon_sym_alignof] = ACTIONS(3087), - [anon_sym__Alignof] = ACTIONS(3087), - [anon_sym_offsetof] = ACTIONS(3087), - [anon_sym__Generic] = ACTIONS(3087), - [anon_sym_asm] = ACTIONS(3087), - [anon_sym___asm__] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(3089), - [anon_sym_L_SQUOTE] = ACTIONS(3089), - [anon_sym_u_SQUOTE] = ACTIONS(3089), - [anon_sym_U_SQUOTE] = ACTIONS(3089), - [anon_sym_u8_SQUOTE] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_L_DQUOTE] = ACTIONS(3089), - [anon_sym_u_DQUOTE] = ACTIONS(3089), - [anon_sym_U_DQUOTE] = ACTIONS(3089), - [anon_sym_u8_DQUOTE] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(3089), - [sym_true] = ACTIONS(3087), - [sym_false] = ACTIONS(3087), - [anon_sym_NULL] = ACTIONS(3087), - [anon_sym_nullptr] = ACTIONS(3087), + [sym_identifier] = ACTIONS(3035), + [aux_sym_preproc_include_token1] = ACTIONS(3035), + [aux_sym_preproc_def_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token1] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), + [sym_preproc_directive] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_BANG] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(3037), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP_AMP] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_SEMI] = ACTIONS(3037), + [anon_sym___extension__] = ACTIONS(3035), + [anon_sym_typedef] = ACTIONS(3035), + [anon_sym_extern] = ACTIONS(3035), + [anon_sym___attribute__] = ACTIONS(3035), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), + [anon_sym___declspec] = ACTIONS(3035), + [anon_sym___based] = ACTIONS(3035), + [anon_sym___cdecl] = ACTIONS(3035), + [anon_sym___clrcall] = ACTIONS(3035), + [anon_sym___stdcall] = ACTIONS(3035), + [anon_sym___fastcall] = ACTIONS(3035), + [anon_sym___thiscall] = ACTIONS(3035), + [anon_sym___vectorcall] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3037), + [anon_sym_RBRACE] = ACTIONS(3037), + [anon_sym_signed] = ACTIONS(3035), + [anon_sym_unsigned] = ACTIONS(3035), + [anon_sym_long] = ACTIONS(3035), + [anon_sym_short] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_static] = ACTIONS(3035), + [anon_sym_register] = ACTIONS(3035), + [anon_sym_inline] = ACTIONS(3035), + [anon_sym___inline] = ACTIONS(3035), + [anon_sym___inline__] = ACTIONS(3035), + [anon_sym___forceinline] = ACTIONS(3035), + [anon_sym_thread_local] = ACTIONS(3035), + [anon_sym___thread] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_constexpr] = ACTIONS(3035), + [anon_sym_volatile] = ACTIONS(3035), + [anon_sym_restrict] = ACTIONS(3035), + [anon_sym___restrict__] = ACTIONS(3035), + [anon_sym__Atomic] = ACTIONS(3035), + [anon_sym__Noreturn] = ACTIONS(3035), + [anon_sym_noreturn] = ACTIONS(3035), + [anon_sym_mutable] = ACTIONS(3035), + [anon_sym_constinit] = ACTIONS(3035), + [anon_sym_consteval] = ACTIONS(3035), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_class] = ACTIONS(3035), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_switch] = ACTIONS(3035), + [anon_sym_case] = ACTIONS(3035), + [anon_sym_default] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_break] = ACTIONS(3035), + [anon_sym_continue] = ACTIONS(3035), + [anon_sym_goto] = ACTIONS(3035), + [anon_sym_not] = ACTIONS(3035), + [anon_sym_compl] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3037), + [anon_sym_PLUS_PLUS] = ACTIONS(3037), + [anon_sym_sizeof] = ACTIONS(3035), + [anon_sym___alignof__] = ACTIONS(3035), + [anon_sym___alignof] = ACTIONS(3035), + [anon_sym__alignof] = ACTIONS(3035), + [anon_sym_alignof] = ACTIONS(3035), + [anon_sym__Alignof] = ACTIONS(3035), + [anon_sym_offsetof] = ACTIONS(3035), + [anon_sym__Generic] = ACTIONS(3035), + [anon_sym_asm] = ACTIONS(3035), + [anon_sym___asm__] = ACTIONS(3035), + [sym_number_literal] = ACTIONS(3037), + [anon_sym_L_SQUOTE] = ACTIONS(3037), + [anon_sym_u_SQUOTE] = ACTIONS(3037), + [anon_sym_U_SQUOTE] = ACTIONS(3037), + [anon_sym_u8_SQUOTE] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_L_DQUOTE] = ACTIONS(3037), + [anon_sym_u_DQUOTE] = ACTIONS(3037), + [anon_sym_U_DQUOTE] = ACTIONS(3037), + [anon_sym_u8_DQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE] = ACTIONS(3037), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [anon_sym_NULL] = ACTIONS(3035), + [anon_sym_nullptr] = ACTIONS(3035), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3087), - [anon_sym_decltype] = ACTIONS(3087), - [anon_sym_virtual] = ACTIONS(3087), - [anon_sym_alignas] = ACTIONS(3087), - [anon_sym_explicit] = ACTIONS(3087), - [anon_sym_typename] = ACTIONS(3087), - [anon_sym_template] = ACTIONS(3087), - [anon_sym_operator] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_delete] = ACTIONS(3087), - [anon_sym_throw] = ACTIONS(3087), - [anon_sym_namespace] = ACTIONS(3087), - [anon_sym_using] = ACTIONS(3087), - [anon_sym_static_assert] = ACTIONS(3087), - [anon_sym_concept] = ACTIONS(3087), - [anon_sym_co_return] = ACTIONS(3087), - [anon_sym_co_yield] = ACTIONS(3087), - [anon_sym_R_DQUOTE] = ACTIONS(3089), - [anon_sym_LR_DQUOTE] = ACTIONS(3089), - [anon_sym_uR_DQUOTE] = ACTIONS(3089), - [anon_sym_UR_DQUOTE] = ACTIONS(3089), - [anon_sym_u8R_DQUOTE] = ACTIONS(3089), - [anon_sym_co_await] = ACTIONS(3087), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_requires] = ACTIONS(3087), - [sym_this] = ACTIONS(3087), + [sym_auto] = ACTIONS(3035), + [anon_sym_decltype] = ACTIONS(3035), + [anon_sym_virtual] = ACTIONS(3035), + [anon_sym_alignas] = ACTIONS(3035), + [anon_sym_explicit] = ACTIONS(3035), + [anon_sym_typename] = ACTIONS(3035), + [anon_sym_template] = ACTIONS(3035), + [anon_sym_operator] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_delete] = ACTIONS(3035), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_namespace] = ACTIONS(3035), + [anon_sym_using] = ACTIONS(3035), + [anon_sym_static_assert] = ACTIONS(3035), + [anon_sym_concept] = ACTIONS(3035), + [anon_sym_co_return] = ACTIONS(3035), + [anon_sym_co_yield] = ACTIONS(3035), + [anon_sym_R_DQUOTE] = ACTIONS(3037), + [anon_sym_LR_DQUOTE] = ACTIONS(3037), + [anon_sym_uR_DQUOTE] = ACTIONS(3037), + [anon_sym_UR_DQUOTE] = ACTIONS(3037), + [anon_sym_u8R_DQUOTE] = ACTIONS(3037), + [anon_sym_co_await] = ACTIONS(3035), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(3035), + [sym_this] = ACTIONS(3035), }, [875] = { - [sym_identifier] = ACTIONS(3053), - [aux_sym_preproc_include_token1] = ACTIONS(3053), - [aux_sym_preproc_def_token1] = ACTIONS(3053), - [aux_sym_preproc_if_token1] = ACTIONS(3053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3053), - [sym_preproc_directive] = ACTIONS(3053), - [anon_sym_LPAREN2] = ACTIONS(3055), - [anon_sym_BANG] = ACTIONS(3055), - [anon_sym_TILDE] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_AMP_AMP] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym___extension__] = ACTIONS(3053), - [anon_sym_typedef] = ACTIONS(3053), - [anon_sym_extern] = ACTIONS(3053), - [anon_sym___attribute__] = ACTIONS(3053), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3055), - [anon_sym___declspec] = ACTIONS(3053), - [anon_sym___based] = ACTIONS(3053), - [anon_sym___cdecl] = ACTIONS(3053), - [anon_sym___clrcall] = ACTIONS(3053), - [anon_sym___stdcall] = ACTIONS(3053), - [anon_sym___fastcall] = ACTIONS(3053), - [anon_sym___thiscall] = ACTIONS(3053), - [anon_sym___vectorcall] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3055), - [anon_sym_RBRACE] = ACTIONS(3055), - [anon_sym_signed] = ACTIONS(3053), - [anon_sym_unsigned] = ACTIONS(3053), - [anon_sym_long] = ACTIONS(3053), - [anon_sym_short] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_static] = ACTIONS(3053), - [anon_sym_register] = ACTIONS(3053), - [anon_sym_inline] = ACTIONS(3053), - [anon_sym___inline] = ACTIONS(3053), - [anon_sym___inline__] = ACTIONS(3053), - [anon_sym___forceinline] = ACTIONS(3053), - [anon_sym_thread_local] = ACTIONS(3053), - [anon_sym___thread] = ACTIONS(3053), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_constexpr] = ACTIONS(3053), - [anon_sym_volatile] = ACTIONS(3053), - [anon_sym_restrict] = ACTIONS(3053), - [anon_sym___restrict__] = ACTIONS(3053), - [anon_sym__Atomic] = ACTIONS(3053), - [anon_sym__Noreturn] = ACTIONS(3053), - [anon_sym_noreturn] = ACTIONS(3053), - [anon_sym_mutable] = ACTIONS(3053), - [anon_sym_constinit] = ACTIONS(3053), - [anon_sym_consteval] = ACTIONS(3053), - [sym_primitive_type] = ACTIONS(3053), - [anon_sym_enum] = ACTIONS(3053), - [anon_sym_class] = ACTIONS(3053), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_union] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_else] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3053), - [anon_sym_case] = ACTIONS(3053), - [anon_sym_default] = ACTIONS(3053), - [anon_sym_while] = ACTIONS(3053), - [anon_sym_do] = ACTIONS(3053), - [anon_sym_for] = ACTIONS(3053), - [anon_sym_return] = ACTIONS(3053), - [anon_sym_break] = ACTIONS(3053), - [anon_sym_continue] = ACTIONS(3053), - [anon_sym_goto] = ACTIONS(3053), - [anon_sym_not] = ACTIONS(3053), - [anon_sym_compl] = ACTIONS(3053), - [anon_sym_DASH_DASH] = ACTIONS(3055), - [anon_sym_PLUS_PLUS] = ACTIONS(3055), - [anon_sym_sizeof] = ACTIONS(3053), - [anon_sym___alignof__] = ACTIONS(3053), - [anon_sym___alignof] = ACTIONS(3053), - [anon_sym__alignof] = ACTIONS(3053), - [anon_sym_alignof] = ACTIONS(3053), - [anon_sym__Alignof] = ACTIONS(3053), - [anon_sym_offsetof] = ACTIONS(3053), - [anon_sym__Generic] = ACTIONS(3053), - [anon_sym_asm] = ACTIONS(3053), - [anon_sym___asm__] = ACTIONS(3053), - [sym_number_literal] = ACTIONS(3055), - [anon_sym_L_SQUOTE] = ACTIONS(3055), - [anon_sym_u_SQUOTE] = ACTIONS(3055), - [anon_sym_U_SQUOTE] = ACTIONS(3055), - [anon_sym_u8_SQUOTE] = ACTIONS(3055), - [anon_sym_SQUOTE] = ACTIONS(3055), - [anon_sym_L_DQUOTE] = ACTIONS(3055), - [anon_sym_u_DQUOTE] = ACTIONS(3055), - [anon_sym_U_DQUOTE] = ACTIONS(3055), - [anon_sym_u8_DQUOTE] = ACTIONS(3055), - [anon_sym_DQUOTE] = ACTIONS(3055), - [sym_true] = ACTIONS(3053), - [sym_false] = ACTIONS(3053), - [anon_sym_NULL] = ACTIONS(3053), - [anon_sym_nullptr] = ACTIONS(3053), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3053), - [anon_sym_decltype] = ACTIONS(3053), - [anon_sym_virtual] = ACTIONS(3053), - [anon_sym_alignas] = ACTIONS(3053), - [anon_sym_explicit] = ACTIONS(3053), - [anon_sym_typename] = ACTIONS(3053), - [anon_sym_template] = ACTIONS(3053), - [anon_sym_operator] = ACTIONS(3053), - [anon_sym_try] = ACTIONS(3053), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_throw] = ACTIONS(3053), - [anon_sym_namespace] = ACTIONS(3053), - [anon_sym_using] = ACTIONS(3053), - [anon_sym_static_assert] = ACTIONS(3053), - [anon_sym_concept] = ACTIONS(3053), - [anon_sym_co_return] = ACTIONS(3053), - [anon_sym_co_yield] = ACTIONS(3053), - [anon_sym_R_DQUOTE] = ACTIONS(3055), - [anon_sym_LR_DQUOTE] = ACTIONS(3055), - [anon_sym_uR_DQUOTE] = ACTIONS(3055), - [anon_sym_UR_DQUOTE] = ACTIONS(3055), - [anon_sym_u8R_DQUOTE] = ACTIONS(3055), - [anon_sym_co_await] = ACTIONS(3053), - [anon_sym_new] = ACTIONS(3053), - [anon_sym_requires] = ACTIONS(3053), - [sym_this] = ACTIONS(3053), + [sym_identifier] = ACTIONS(2989), + [aux_sym_preproc_include_token1] = ACTIONS(2989), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), + [sym_preproc_directive] = ACTIONS(2989), + [anon_sym_LPAREN2] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_SEMI] = ACTIONS(2991), + [anon_sym___extension__] = ACTIONS(2989), + [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_extern] = ACTIONS(2989), + [anon_sym___attribute__] = ACTIONS(2989), + [anon_sym_COLON_COLON] = ACTIONS(2991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), + [anon_sym___declspec] = ACTIONS(2989), + [anon_sym___based] = ACTIONS(2989), + [anon_sym___cdecl] = ACTIONS(2989), + [anon_sym___clrcall] = ACTIONS(2989), + [anon_sym___stdcall] = ACTIONS(2989), + [anon_sym___fastcall] = ACTIONS(2989), + [anon_sym___thiscall] = ACTIONS(2989), + [anon_sym___vectorcall] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_RBRACE] = ACTIONS(2991), + [anon_sym_signed] = ACTIONS(2989), + [anon_sym_unsigned] = ACTIONS(2989), + [anon_sym_long] = ACTIONS(2989), + [anon_sym_short] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2989), + [anon_sym_static] = ACTIONS(2989), + [anon_sym_register] = ACTIONS(2989), + [anon_sym_inline] = ACTIONS(2989), + [anon_sym___inline] = ACTIONS(2989), + [anon_sym___inline__] = ACTIONS(2989), + [anon_sym___forceinline] = ACTIONS(2989), + [anon_sym_thread_local] = ACTIONS(2989), + [anon_sym___thread] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_constexpr] = ACTIONS(2989), + [anon_sym_volatile] = ACTIONS(2989), + [anon_sym_restrict] = ACTIONS(2989), + [anon_sym___restrict__] = ACTIONS(2989), + [anon_sym__Atomic] = ACTIONS(2989), + [anon_sym__Noreturn] = ACTIONS(2989), + [anon_sym_noreturn] = ACTIONS(2989), + [anon_sym_mutable] = ACTIONS(2989), + [anon_sym_constinit] = ACTIONS(2989), + [anon_sym_consteval] = ACTIONS(2989), + [sym_primitive_type] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_class] = ACTIONS(2989), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_union] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_switch] = ACTIONS(2989), + [anon_sym_case] = ACTIONS(2989), + [anon_sym_default] = ACTIONS(2989), + [anon_sym_while] = ACTIONS(2989), + [anon_sym_do] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_goto] = ACTIONS(2989), + [anon_sym_not] = ACTIONS(2989), + [anon_sym_compl] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_sizeof] = ACTIONS(2989), + [anon_sym___alignof__] = ACTIONS(2989), + [anon_sym___alignof] = ACTIONS(2989), + [anon_sym__alignof] = ACTIONS(2989), + [anon_sym_alignof] = ACTIONS(2989), + [anon_sym__Alignof] = ACTIONS(2989), + [anon_sym_offsetof] = ACTIONS(2989), + [anon_sym__Generic] = ACTIONS(2989), + [anon_sym_asm] = ACTIONS(2989), + [anon_sym___asm__] = ACTIONS(2989), + [sym_number_literal] = ACTIONS(2991), + [anon_sym_L_SQUOTE] = ACTIONS(2991), + [anon_sym_u_SQUOTE] = ACTIONS(2991), + [anon_sym_U_SQUOTE] = ACTIONS(2991), + [anon_sym_u8_SQUOTE] = ACTIONS(2991), + [anon_sym_SQUOTE] = ACTIONS(2991), + [anon_sym_L_DQUOTE] = ACTIONS(2991), + [anon_sym_u_DQUOTE] = ACTIONS(2991), + [anon_sym_U_DQUOTE] = ACTIONS(2991), + [anon_sym_u8_DQUOTE] = ACTIONS(2991), + [anon_sym_DQUOTE] = ACTIONS(2991), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [anon_sym_NULL] = ACTIONS(2989), + [anon_sym_nullptr] = ACTIONS(2989), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2989), + [anon_sym_decltype] = ACTIONS(2989), + [anon_sym_virtual] = ACTIONS(2989), + [anon_sym_alignas] = ACTIONS(2989), + [anon_sym_explicit] = ACTIONS(2989), + [anon_sym_typename] = ACTIONS(2989), + [anon_sym_template] = ACTIONS(2989), + [anon_sym_operator] = ACTIONS(2989), + [anon_sym_try] = ACTIONS(2989), + [anon_sym_delete] = ACTIONS(2989), + [anon_sym_throw] = ACTIONS(2989), + [anon_sym_namespace] = ACTIONS(2989), + [anon_sym_using] = ACTIONS(2989), + [anon_sym_static_assert] = ACTIONS(2989), + [anon_sym_concept] = ACTIONS(2989), + [anon_sym_co_return] = ACTIONS(2989), + [anon_sym_co_yield] = ACTIONS(2989), + [anon_sym_R_DQUOTE] = ACTIONS(2991), + [anon_sym_LR_DQUOTE] = ACTIONS(2991), + [anon_sym_uR_DQUOTE] = ACTIONS(2991), + [anon_sym_UR_DQUOTE] = ACTIONS(2991), + [anon_sym_u8R_DQUOTE] = ACTIONS(2991), + [anon_sym_co_await] = ACTIONS(2989), + [anon_sym_new] = ACTIONS(2989), + [anon_sym_requires] = ACTIONS(2989), + [sym_this] = ACTIONS(2989), }, [876] = { - [sym_identifier] = ACTIONS(3049), - [aux_sym_preproc_include_token1] = ACTIONS(3049), - [aux_sym_preproc_def_token1] = ACTIONS(3049), - [aux_sym_preproc_if_token1] = ACTIONS(3049), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3049), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3049), - [sym_preproc_directive] = ACTIONS(3049), - [anon_sym_LPAREN2] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_SEMI] = ACTIONS(3051), - [anon_sym___extension__] = ACTIONS(3049), - [anon_sym_typedef] = ACTIONS(3049), - [anon_sym_extern] = ACTIONS(3049), - [anon_sym___attribute__] = ACTIONS(3049), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3051), - [anon_sym___declspec] = ACTIONS(3049), - [anon_sym___based] = ACTIONS(3049), - [anon_sym___cdecl] = ACTIONS(3049), - [anon_sym___clrcall] = ACTIONS(3049), - [anon_sym___stdcall] = ACTIONS(3049), - [anon_sym___fastcall] = ACTIONS(3049), - [anon_sym___thiscall] = ACTIONS(3049), - [anon_sym___vectorcall] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_RBRACE] = ACTIONS(3051), - [anon_sym_signed] = ACTIONS(3049), - [anon_sym_unsigned] = ACTIONS(3049), - [anon_sym_long] = ACTIONS(3049), - [anon_sym_short] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_static] = ACTIONS(3049), - [anon_sym_register] = ACTIONS(3049), - [anon_sym_inline] = ACTIONS(3049), - [anon_sym___inline] = ACTIONS(3049), - [anon_sym___inline__] = ACTIONS(3049), - [anon_sym___forceinline] = ACTIONS(3049), - [anon_sym_thread_local] = ACTIONS(3049), - [anon_sym___thread] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_constexpr] = ACTIONS(3049), - [anon_sym_volatile] = ACTIONS(3049), - [anon_sym_restrict] = ACTIONS(3049), - [anon_sym___restrict__] = ACTIONS(3049), - [anon_sym__Atomic] = ACTIONS(3049), - [anon_sym__Noreturn] = ACTIONS(3049), - [anon_sym_noreturn] = ACTIONS(3049), - [anon_sym_mutable] = ACTIONS(3049), - [anon_sym_constinit] = ACTIONS(3049), - [anon_sym_consteval] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3049), - [anon_sym_enum] = ACTIONS(3049), - [anon_sym_class] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_union] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3049), - [anon_sym_switch] = ACTIONS(3049), - [anon_sym_case] = ACTIONS(3049), - [anon_sym_default] = ACTIONS(3049), - [anon_sym_while] = ACTIONS(3049), - [anon_sym_do] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3049), - [anon_sym_return] = ACTIONS(3049), - [anon_sym_break] = ACTIONS(3049), - [anon_sym_continue] = ACTIONS(3049), - [anon_sym_goto] = ACTIONS(3049), - [anon_sym_not] = ACTIONS(3049), - [anon_sym_compl] = ACTIONS(3049), - [anon_sym_DASH_DASH] = ACTIONS(3051), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_sizeof] = ACTIONS(3049), - [anon_sym___alignof__] = ACTIONS(3049), - [anon_sym___alignof] = ACTIONS(3049), - [anon_sym__alignof] = ACTIONS(3049), - [anon_sym_alignof] = ACTIONS(3049), - [anon_sym__Alignof] = ACTIONS(3049), - [anon_sym_offsetof] = ACTIONS(3049), - [anon_sym__Generic] = ACTIONS(3049), - [anon_sym_asm] = ACTIONS(3049), - [anon_sym___asm__] = ACTIONS(3049), - [sym_number_literal] = ACTIONS(3051), - [anon_sym_L_SQUOTE] = ACTIONS(3051), - [anon_sym_u_SQUOTE] = ACTIONS(3051), - [anon_sym_U_SQUOTE] = ACTIONS(3051), - [anon_sym_u8_SQUOTE] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3051), - [anon_sym_L_DQUOTE] = ACTIONS(3051), - [anon_sym_u_DQUOTE] = ACTIONS(3051), - [anon_sym_U_DQUOTE] = ACTIONS(3051), - [anon_sym_u8_DQUOTE] = ACTIONS(3051), - [anon_sym_DQUOTE] = ACTIONS(3051), - [sym_true] = ACTIONS(3049), - [sym_false] = ACTIONS(3049), - [anon_sym_NULL] = ACTIONS(3049), - [anon_sym_nullptr] = ACTIONS(3049), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3049), - [anon_sym_decltype] = ACTIONS(3049), - [anon_sym_virtual] = ACTIONS(3049), - [anon_sym_alignas] = ACTIONS(3049), - [anon_sym_explicit] = ACTIONS(3049), - [anon_sym_typename] = ACTIONS(3049), - [anon_sym_template] = ACTIONS(3049), - [anon_sym_operator] = ACTIONS(3049), - [anon_sym_try] = ACTIONS(3049), - [anon_sym_delete] = ACTIONS(3049), - [anon_sym_throw] = ACTIONS(3049), - [anon_sym_namespace] = ACTIONS(3049), - [anon_sym_using] = ACTIONS(3049), - [anon_sym_static_assert] = ACTIONS(3049), - [anon_sym_concept] = ACTIONS(3049), - [anon_sym_co_return] = ACTIONS(3049), - [anon_sym_co_yield] = ACTIONS(3049), - [anon_sym_R_DQUOTE] = ACTIONS(3051), - [anon_sym_LR_DQUOTE] = ACTIONS(3051), - [anon_sym_uR_DQUOTE] = ACTIONS(3051), - [anon_sym_UR_DQUOTE] = ACTIONS(3051), - [anon_sym_u8R_DQUOTE] = ACTIONS(3051), - [anon_sym_co_await] = ACTIONS(3049), - [anon_sym_new] = ACTIONS(3049), - [anon_sym_requires] = ACTIONS(3049), - [sym_this] = ACTIONS(3049), + [sym_identifier] = ACTIONS(3035), + [aux_sym_preproc_include_token1] = ACTIONS(3035), + [aux_sym_preproc_def_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token1] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), + [sym_preproc_directive] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_BANG] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(3037), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP_AMP] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_SEMI] = ACTIONS(3037), + [anon_sym___extension__] = ACTIONS(3035), + [anon_sym_typedef] = ACTIONS(3035), + [anon_sym_extern] = ACTIONS(3035), + [anon_sym___attribute__] = ACTIONS(3035), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), + [anon_sym___declspec] = ACTIONS(3035), + [anon_sym___based] = ACTIONS(3035), + [anon_sym___cdecl] = ACTIONS(3035), + [anon_sym___clrcall] = ACTIONS(3035), + [anon_sym___stdcall] = ACTIONS(3035), + [anon_sym___fastcall] = ACTIONS(3035), + [anon_sym___thiscall] = ACTIONS(3035), + [anon_sym___vectorcall] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3037), + [anon_sym_RBRACE] = ACTIONS(3037), + [anon_sym_signed] = ACTIONS(3035), + [anon_sym_unsigned] = ACTIONS(3035), + [anon_sym_long] = ACTIONS(3035), + [anon_sym_short] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_static] = ACTIONS(3035), + [anon_sym_register] = ACTIONS(3035), + [anon_sym_inline] = ACTIONS(3035), + [anon_sym___inline] = ACTIONS(3035), + [anon_sym___inline__] = ACTIONS(3035), + [anon_sym___forceinline] = ACTIONS(3035), + [anon_sym_thread_local] = ACTIONS(3035), + [anon_sym___thread] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_constexpr] = ACTIONS(3035), + [anon_sym_volatile] = ACTIONS(3035), + [anon_sym_restrict] = ACTIONS(3035), + [anon_sym___restrict__] = ACTIONS(3035), + [anon_sym__Atomic] = ACTIONS(3035), + [anon_sym__Noreturn] = ACTIONS(3035), + [anon_sym_noreturn] = ACTIONS(3035), + [anon_sym_mutable] = ACTIONS(3035), + [anon_sym_constinit] = ACTIONS(3035), + [anon_sym_consteval] = ACTIONS(3035), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_class] = ACTIONS(3035), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_switch] = ACTIONS(3035), + [anon_sym_case] = ACTIONS(3035), + [anon_sym_default] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_break] = ACTIONS(3035), + [anon_sym_continue] = ACTIONS(3035), + [anon_sym_goto] = ACTIONS(3035), + [anon_sym_not] = ACTIONS(3035), + [anon_sym_compl] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3037), + [anon_sym_PLUS_PLUS] = ACTIONS(3037), + [anon_sym_sizeof] = ACTIONS(3035), + [anon_sym___alignof__] = ACTIONS(3035), + [anon_sym___alignof] = ACTIONS(3035), + [anon_sym__alignof] = ACTIONS(3035), + [anon_sym_alignof] = ACTIONS(3035), + [anon_sym__Alignof] = ACTIONS(3035), + [anon_sym_offsetof] = ACTIONS(3035), + [anon_sym__Generic] = ACTIONS(3035), + [anon_sym_asm] = ACTIONS(3035), + [anon_sym___asm__] = ACTIONS(3035), + [sym_number_literal] = ACTIONS(3037), + [anon_sym_L_SQUOTE] = ACTIONS(3037), + [anon_sym_u_SQUOTE] = ACTIONS(3037), + [anon_sym_U_SQUOTE] = ACTIONS(3037), + [anon_sym_u8_SQUOTE] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_L_DQUOTE] = ACTIONS(3037), + [anon_sym_u_DQUOTE] = ACTIONS(3037), + [anon_sym_U_DQUOTE] = ACTIONS(3037), + [anon_sym_u8_DQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE] = ACTIONS(3037), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [anon_sym_NULL] = ACTIONS(3035), + [anon_sym_nullptr] = ACTIONS(3035), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3035), + [anon_sym_decltype] = ACTIONS(3035), + [anon_sym_virtual] = ACTIONS(3035), + [anon_sym_alignas] = ACTIONS(3035), + [anon_sym_explicit] = ACTIONS(3035), + [anon_sym_typename] = ACTIONS(3035), + [anon_sym_template] = ACTIONS(3035), + [anon_sym_operator] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_delete] = ACTIONS(3035), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_namespace] = ACTIONS(3035), + [anon_sym_using] = ACTIONS(3035), + [anon_sym_static_assert] = ACTIONS(3035), + [anon_sym_concept] = ACTIONS(3035), + [anon_sym_co_return] = ACTIONS(3035), + [anon_sym_co_yield] = ACTIONS(3035), + [anon_sym_R_DQUOTE] = ACTIONS(3037), + [anon_sym_LR_DQUOTE] = ACTIONS(3037), + [anon_sym_uR_DQUOTE] = ACTIONS(3037), + [anon_sym_UR_DQUOTE] = ACTIONS(3037), + [anon_sym_u8R_DQUOTE] = ACTIONS(3037), + [anon_sym_co_await] = ACTIONS(3035), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(3035), + [sym_this] = ACTIONS(3035), }, [877] = { - [ts_builtin_sym_end] = ACTIONS(2788), - [sym_identifier] = ACTIONS(2786), - [aux_sym_preproc_include_token1] = ACTIONS(2786), - [aux_sym_preproc_def_token1] = ACTIONS(2786), - [aux_sym_preproc_if_token1] = ACTIONS(2786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2786), - [sym_preproc_directive] = ACTIONS(2786), - [anon_sym_LPAREN2] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2786), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym___extension__] = ACTIONS(2786), - [anon_sym_typedef] = ACTIONS(2786), - [anon_sym_extern] = ACTIONS(2786), - [anon_sym___attribute__] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2788), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2788), - [anon_sym___declspec] = ACTIONS(2786), - [anon_sym___based] = ACTIONS(2786), - [anon_sym___cdecl] = ACTIONS(2786), - [anon_sym___clrcall] = ACTIONS(2786), - [anon_sym___stdcall] = ACTIONS(2786), - [anon_sym___fastcall] = ACTIONS(2786), - [anon_sym___thiscall] = ACTIONS(2786), - [anon_sym___vectorcall] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_signed] = ACTIONS(2786), - [anon_sym_unsigned] = ACTIONS(2786), - [anon_sym_long] = ACTIONS(2786), - [anon_sym_short] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_static] = ACTIONS(2786), - [anon_sym_register] = ACTIONS(2786), - [anon_sym_inline] = ACTIONS(2786), - [anon_sym___inline] = ACTIONS(2786), - [anon_sym___inline__] = ACTIONS(2786), - [anon_sym___forceinline] = ACTIONS(2786), - [anon_sym_thread_local] = ACTIONS(2786), - [anon_sym___thread] = ACTIONS(2786), - [anon_sym_const] = ACTIONS(2786), - [anon_sym_constexpr] = ACTIONS(2786), - [anon_sym_volatile] = ACTIONS(2786), - [anon_sym_restrict] = ACTIONS(2786), - [anon_sym___restrict__] = ACTIONS(2786), - [anon_sym__Atomic] = ACTIONS(2786), - [anon_sym__Noreturn] = ACTIONS(2786), - [anon_sym_noreturn] = ACTIONS(2786), - [anon_sym_mutable] = ACTIONS(2786), - [anon_sym_constinit] = ACTIONS(2786), - [anon_sym_consteval] = ACTIONS(2786), - [sym_primitive_type] = ACTIONS(2786), - [anon_sym_enum] = ACTIONS(2786), - [anon_sym_class] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2786), - [anon_sym_union] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2786), - [anon_sym_else] = ACTIONS(2786), - [anon_sym_switch] = ACTIONS(2786), - [anon_sym_case] = ACTIONS(2786), - [anon_sym_default] = ACTIONS(2786), - [anon_sym_while] = ACTIONS(2786), - [anon_sym_do] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2786), - [anon_sym_return] = ACTIONS(2786), - [anon_sym_break] = ACTIONS(2786), - [anon_sym_continue] = ACTIONS(2786), - [anon_sym_goto] = ACTIONS(2786), - [anon_sym_not] = ACTIONS(2786), - [anon_sym_compl] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_sizeof] = ACTIONS(2786), - [anon_sym___alignof__] = ACTIONS(2786), - [anon_sym___alignof] = ACTIONS(2786), - [anon_sym__alignof] = ACTIONS(2786), - [anon_sym_alignof] = ACTIONS(2786), - [anon_sym__Alignof] = ACTIONS(2786), - [anon_sym_offsetof] = ACTIONS(2786), - [anon_sym__Generic] = ACTIONS(2786), - [anon_sym_asm] = ACTIONS(2786), - [anon_sym___asm__] = ACTIONS(2786), - [sym_number_literal] = ACTIONS(2788), - [anon_sym_L_SQUOTE] = ACTIONS(2788), - [anon_sym_u_SQUOTE] = ACTIONS(2788), - [anon_sym_U_SQUOTE] = ACTIONS(2788), - [anon_sym_u8_SQUOTE] = ACTIONS(2788), - [anon_sym_SQUOTE] = ACTIONS(2788), - [anon_sym_L_DQUOTE] = ACTIONS(2788), - [anon_sym_u_DQUOTE] = ACTIONS(2788), - [anon_sym_U_DQUOTE] = ACTIONS(2788), - [anon_sym_u8_DQUOTE] = ACTIONS(2788), - [anon_sym_DQUOTE] = ACTIONS(2788), - [sym_true] = ACTIONS(2786), - [sym_false] = ACTIONS(2786), - [anon_sym_NULL] = ACTIONS(2786), - [anon_sym_nullptr] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2993), + [aux_sym_preproc_include_token1] = ACTIONS(2993), + [aux_sym_preproc_def_token1] = ACTIONS(2993), + [aux_sym_preproc_if_token1] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_TILDE] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym___extension__] = ACTIONS(2993), + [anon_sym_typedef] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2993), + [anon_sym___attribute__] = ACTIONS(2993), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2995), + [anon_sym___declspec] = ACTIONS(2993), + [anon_sym___based] = ACTIONS(2993), + [anon_sym___cdecl] = ACTIONS(2993), + [anon_sym___clrcall] = ACTIONS(2993), + [anon_sym___stdcall] = ACTIONS(2993), + [anon_sym___fastcall] = ACTIONS(2993), + [anon_sym___thiscall] = ACTIONS(2993), + [anon_sym___vectorcall] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_RBRACE] = ACTIONS(2995), + [anon_sym_signed] = ACTIONS(2993), + [anon_sym_unsigned] = ACTIONS(2993), + [anon_sym_long] = ACTIONS(2993), + [anon_sym_short] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_static] = ACTIONS(2993), + [anon_sym_register] = ACTIONS(2993), + [anon_sym_inline] = ACTIONS(2993), + [anon_sym___inline] = ACTIONS(2993), + [anon_sym___inline__] = ACTIONS(2993), + [anon_sym___forceinline] = ACTIONS(2993), + [anon_sym_thread_local] = ACTIONS(2993), + [anon_sym___thread] = ACTIONS(2993), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_constexpr] = ACTIONS(2993), + [anon_sym_volatile] = ACTIONS(2993), + [anon_sym_restrict] = ACTIONS(2993), + [anon_sym___restrict__] = ACTIONS(2993), + [anon_sym__Atomic] = ACTIONS(2993), + [anon_sym__Noreturn] = ACTIONS(2993), + [anon_sym_noreturn] = ACTIONS(2993), + [anon_sym_mutable] = ACTIONS(2993), + [anon_sym_constinit] = ACTIONS(2993), + [anon_sym_consteval] = ACTIONS(2993), + [sym_primitive_type] = ACTIONS(2993), + [anon_sym_enum] = ACTIONS(2993), + [anon_sym_class] = ACTIONS(2993), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_union] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_switch] = ACTIONS(2993), + [anon_sym_case] = ACTIONS(2993), + [anon_sym_default] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_goto] = ACTIONS(2993), + [anon_sym_not] = ACTIONS(2993), + [anon_sym_compl] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2993), + [anon_sym___alignof] = ACTIONS(2993), + [anon_sym__alignof] = ACTIONS(2993), + [anon_sym_alignof] = ACTIONS(2993), + [anon_sym__Alignof] = ACTIONS(2993), + [anon_sym_offsetof] = ACTIONS(2993), + [anon_sym__Generic] = ACTIONS(2993), + [anon_sym_asm] = ACTIONS(2993), + [anon_sym___asm__] = ACTIONS(2993), + [sym_number_literal] = ACTIONS(2995), + [anon_sym_L_SQUOTE] = ACTIONS(2995), + [anon_sym_u_SQUOTE] = ACTIONS(2995), + [anon_sym_U_SQUOTE] = ACTIONS(2995), + [anon_sym_u8_SQUOTE] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_L_DQUOTE] = ACTIONS(2995), + [anon_sym_u_DQUOTE] = ACTIONS(2995), + [anon_sym_U_DQUOTE] = ACTIONS(2995), + [anon_sym_u8_DQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [anon_sym_NULL] = ACTIONS(2993), + [anon_sym_nullptr] = ACTIONS(2993), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2786), - [anon_sym_decltype] = ACTIONS(2786), - [anon_sym_virtual] = ACTIONS(2786), - [anon_sym_alignas] = ACTIONS(2786), - [anon_sym_explicit] = ACTIONS(2786), - [anon_sym_typename] = ACTIONS(2786), - [anon_sym_template] = ACTIONS(2786), - [anon_sym_operator] = ACTIONS(2786), - [anon_sym_try] = ACTIONS(2786), - [anon_sym_delete] = ACTIONS(2786), - [anon_sym_throw] = ACTIONS(2786), - [anon_sym_namespace] = ACTIONS(2786), - [anon_sym_using] = ACTIONS(2786), - [anon_sym_static_assert] = ACTIONS(2786), - [anon_sym_concept] = ACTIONS(2786), - [anon_sym_co_return] = ACTIONS(2786), - [anon_sym_co_yield] = ACTIONS(2786), - [anon_sym_R_DQUOTE] = ACTIONS(2788), - [anon_sym_LR_DQUOTE] = ACTIONS(2788), - [anon_sym_uR_DQUOTE] = ACTIONS(2788), - [anon_sym_UR_DQUOTE] = ACTIONS(2788), - [anon_sym_u8R_DQUOTE] = ACTIONS(2788), - [anon_sym_co_await] = ACTIONS(2786), - [anon_sym_new] = ACTIONS(2786), - [anon_sym_requires] = ACTIONS(2786), - [sym_this] = ACTIONS(2786), + [sym_auto] = ACTIONS(2993), + [anon_sym_decltype] = ACTIONS(2993), + [anon_sym_virtual] = ACTIONS(2993), + [anon_sym_alignas] = ACTIONS(2993), + [anon_sym_explicit] = ACTIONS(2993), + [anon_sym_typename] = ACTIONS(2993), + [anon_sym_template] = ACTIONS(2993), + [anon_sym_operator] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_delete] = ACTIONS(2993), + [anon_sym_throw] = ACTIONS(2993), + [anon_sym_namespace] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(2993), + [anon_sym_static_assert] = ACTIONS(2993), + [anon_sym_concept] = ACTIONS(2993), + [anon_sym_co_return] = ACTIONS(2993), + [anon_sym_co_yield] = ACTIONS(2993), + [anon_sym_R_DQUOTE] = ACTIONS(2995), + [anon_sym_LR_DQUOTE] = ACTIONS(2995), + [anon_sym_uR_DQUOTE] = ACTIONS(2995), + [anon_sym_UR_DQUOTE] = ACTIONS(2995), + [anon_sym_u8R_DQUOTE] = ACTIONS(2995), + [anon_sym_co_await] = ACTIONS(2993), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_requires] = ACTIONS(2993), + [sym_this] = ACTIONS(2993), }, [878] = { - [ts_builtin_sym_end] = ACTIONS(2931), - [sym_identifier] = ACTIONS(2929), - [aux_sym_preproc_include_token1] = ACTIONS(2929), - [aux_sym_preproc_def_token1] = ACTIONS(2929), - [aux_sym_preproc_if_token1] = ACTIONS(2929), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2929), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2929), - [sym_preproc_directive] = ACTIONS(2929), - [anon_sym_LPAREN2] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2929), - [anon_sym_PLUS] = ACTIONS(2929), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_SEMI] = ACTIONS(2931), - [anon_sym___extension__] = ACTIONS(2929), - [anon_sym_typedef] = ACTIONS(2929), - [anon_sym_extern] = ACTIONS(2929), - [anon_sym___attribute__] = ACTIONS(2929), - [anon_sym_COLON_COLON] = ACTIONS(2931), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2931), - [anon_sym___declspec] = ACTIONS(2929), - [anon_sym___based] = ACTIONS(2929), - [anon_sym___cdecl] = ACTIONS(2929), - [anon_sym___clrcall] = ACTIONS(2929), - [anon_sym___stdcall] = ACTIONS(2929), - [anon_sym___fastcall] = ACTIONS(2929), - [anon_sym___thiscall] = ACTIONS(2929), - [anon_sym___vectorcall] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_signed] = ACTIONS(2929), - [anon_sym_unsigned] = ACTIONS(2929), - [anon_sym_long] = ACTIONS(2929), - [anon_sym_short] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_static] = ACTIONS(2929), - [anon_sym_register] = ACTIONS(2929), - [anon_sym_inline] = ACTIONS(2929), - [anon_sym___inline] = ACTIONS(2929), - [anon_sym___inline__] = ACTIONS(2929), - [anon_sym___forceinline] = ACTIONS(2929), - [anon_sym_thread_local] = ACTIONS(2929), - [anon_sym___thread] = ACTIONS(2929), - [anon_sym_const] = ACTIONS(2929), - [anon_sym_constexpr] = ACTIONS(2929), - [anon_sym_volatile] = ACTIONS(2929), - [anon_sym_restrict] = ACTIONS(2929), - [anon_sym___restrict__] = ACTIONS(2929), - [anon_sym__Atomic] = ACTIONS(2929), - [anon_sym__Noreturn] = ACTIONS(2929), - [anon_sym_noreturn] = ACTIONS(2929), - [anon_sym_mutable] = ACTIONS(2929), - [anon_sym_constinit] = ACTIONS(2929), - [anon_sym_consteval] = ACTIONS(2929), - [sym_primitive_type] = ACTIONS(2929), - [anon_sym_enum] = ACTIONS(2929), - [anon_sym_class] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2929), - [anon_sym_union] = ACTIONS(2929), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_else] = ACTIONS(2929), - [anon_sym_switch] = ACTIONS(2929), - [anon_sym_case] = ACTIONS(2929), - [anon_sym_default] = ACTIONS(2929), - [anon_sym_while] = ACTIONS(2929), - [anon_sym_do] = ACTIONS(2929), - [anon_sym_for] = ACTIONS(2929), - [anon_sym_return] = ACTIONS(2929), - [anon_sym_break] = ACTIONS(2929), - [anon_sym_continue] = ACTIONS(2929), - [anon_sym_goto] = ACTIONS(2929), - [anon_sym_not] = ACTIONS(2929), - [anon_sym_compl] = ACTIONS(2929), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_sizeof] = ACTIONS(2929), - [anon_sym___alignof__] = ACTIONS(2929), - [anon_sym___alignof] = ACTIONS(2929), - [anon_sym__alignof] = ACTIONS(2929), - [anon_sym_alignof] = ACTIONS(2929), - [anon_sym__Alignof] = ACTIONS(2929), - [anon_sym_offsetof] = ACTIONS(2929), - [anon_sym__Generic] = ACTIONS(2929), - [anon_sym_asm] = ACTIONS(2929), - [anon_sym___asm__] = ACTIONS(2929), - [sym_number_literal] = ACTIONS(2931), - [anon_sym_L_SQUOTE] = ACTIONS(2931), - [anon_sym_u_SQUOTE] = ACTIONS(2931), - [anon_sym_U_SQUOTE] = ACTIONS(2931), - [anon_sym_u8_SQUOTE] = ACTIONS(2931), - [anon_sym_SQUOTE] = ACTIONS(2931), - [anon_sym_L_DQUOTE] = ACTIONS(2931), - [anon_sym_u_DQUOTE] = ACTIONS(2931), - [anon_sym_U_DQUOTE] = ACTIONS(2931), - [anon_sym_u8_DQUOTE] = ACTIONS(2931), - [anon_sym_DQUOTE] = ACTIONS(2931), - [sym_true] = ACTIONS(2929), - [sym_false] = ACTIONS(2929), - [anon_sym_NULL] = ACTIONS(2929), - [anon_sym_nullptr] = ACTIONS(2929), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2929), - [anon_sym_decltype] = ACTIONS(2929), - [anon_sym_virtual] = ACTIONS(2929), - [anon_sym_alignas] = ACTIONS(2929), - [anon_sym_explicit] = ACTIONS(2929), - [anon_sym_typename] = ACTIONS(2929), - [anon_sym_template] = ACTIONS(2929), - [anon_sym_operator] = ACTIONS(2929), - [anon_sym_try] = ACTIONS(2929), - [anon_sym_delete] = ACTIONS(2929), - [anon_sym_throw] = ACTIONS(2929), - [anon_sym_namespace] = ACTIONS(2929), - [anon_sym_using] = ACTIONS(2929), - [anon_sym_static_assert] = ACTIONS(2929), - [anon_sym_concept] = ACTIONS(2929), - [anon_sym_co_return] = ACTIONS(2929), - [anon_sym_co_yield] = ACTIONS(2929), - [anon_sym_R_DQUOTE] = ACTIONS(2931), - [anon_sym_LR_DQUOTE] = ACTIONS(2931), - [anon_sym_uR_DQUOTE] = ACTIONS(2931), - [anon_sym_UR_DQUOTE] = ACTIONS(2931), - [anon_sym_u8R_DQUOTE] = ACTIONS(2931), - [anon_sym_co_await] = ACTIONS(2929), - [anon_sym_new] = ACTIONS(2929), - [anon_sym_requires] = ACTIONS(2929), - [sym_this] = ACTIONS(2929), + [sym_identifier] = ACTIONS(2997), + [aux_sym_preproc_include_token1] = ACTIONS(2997), + [aux_sym_preproc_def_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2997), + [sym_preproc_directive] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(2999), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(2999), + [anon_sym___extension__] = ACTIONS(2997), + [anon_sym_typedef] = ACTIONS(2997), + [anon_sym_extern] = ACTIONS(2997), + [anon_sym___attribute__] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2999), + [anon_sym___declspec] = ACTIONS(2997), + [anon_sym___based] = ACTIONS(2997), + [anon_sym___cdecl] = ACTIONS(2997), + [anon_sym___clrcall] = ACTIONS(2997), + [anon_sym___stdcall] = ACTIONS(2997), + [anon_sym___fastcall] = ACTIONS(2997), + [anon_sym___thiscall] = ACTIONS(2997), + [anon_sym___vectorcall] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_RBRACE] = ACTIONS(2999), + [anon_sym_signed] = ACTIONS(2997), + [anon_sym_unsigned] = ACTIONS(2997), + [anon_sym_long] = ACTIONS(2997), + [anon_sym_short] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(2997), + [anon_sym_register] = ACTIONS(2997), + [anon_sym_inline] = ACTIONS(2997), + [anon_sym___inline] = ACTIONS(2997), + [anon_sym___inline__] = ACTIONS(2997), + [anon_sym___forceinline] = ACTIONS(2997), + [anon_sym_thread_local] = ACTIONS(2997), + [anon_sym___thread] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_volatile] = ACTIONS(2997), + [anon_sym_restrict] = ACTIONS(2997), + [anon_sym___restrict__] = ACTIONS(2997), + [anon_sym__Atomic] = ACTIONS(2997), + [anon_sym__Noreturn] = ACTIONS(2997), + [anon_sym_noreturn] = ACTIONS(2997), + [anon_sym_mutable] = ACTIONS(2997), + [anon_sym_constinit] = ACTIONS(2997), + [anon_sym_consteval] = ACTIONS(2997), + [sym_primitive_type] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_class] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_switch] = ACTIONS(2997), + [anon_sym_case] = ACTIONS(2997), + [anon_sym_default] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_goto] = ACTIONS(2997), + [anon_sym_not] = ACTIONS(2997), + [anon_sym_compl] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_sizeof] = ACTIONS(2997), + [anon_sym___alignof__] = ACTIONS(2997), + [anon_sym___alignof] = ACTIONS(2997), + [anon_sym__alignof] = ACTIONS(2997), + [anon_sym_alignof] = ACTIONS(2997), + [anon_sym__Alignof] = ACTIONS(2997), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2997), + [anon_sym_asm] = ACTIONS(2997), + [anon_sym___asm__] = ACTIONS(2997), + [sym_number_literal] = ACTIONS(2999), + [anon_sym_L_SQUOTE] = ACTIONS(2999), + [anon_sym_u_SQUOTE] = ACTIONS(2999), + [anon_sym_U_SQUOTE] = ACTIONS(2999), + [anon_sym_u8_SQUOTE] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_L_DQUOTE] = ACTIONS(2999), + [anon_sym_u_DQUOTE] = ACTIONS(2999), + [anon_sym_U_DQUOTE] = ACTIONS(2999), + [anon_sym_u8_DQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE] = ACTIONS(2999), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [anon_sym_NULL] = ACTIONS(2997), + [anon_sym_nullptr] = ACTIONS(2997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2997), + [anon_sym_decltype] = ACTIONS(2997), + [anon_sym_virtual] = ACTIONS(2997), + [anon_sym_alignas] = ACTIONS(2997), + [anon_sym_explicit] = ACTIONS(2997), + [anon_sym_typename] = ACTIONS(2997), + [anon_sym_template] = ACTIONS(2997), + [anon_sym_operator] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_delete] = ACTIONS(2997), + [anon_sym_throw] = ACTIONS(2997), + [anon_sym_namespace] = ACTIONS(2997), + [anon_sym_using] = ACTIONS(2997), + [anon_sym_static_assert] = ACTIONS(2997), + [anon_sym_concept] = ACTIONS(2997), + [anon_sym_co_return] = ACTIONS(2997), + [anon_sym_co_yield] = ACTIONS(2997), + [anon_sym_R_DQUOTE] = ACTIONS(2999), + [anon_sym_LR_DQUOTE] = ACTIONS(2999), + [anon_sym_uR_DQUOTE] = ACTIONS(2999), + [anon_sym_UR_DQUOTE] = ACTIONS(2999), + [anon_sym_u8R_DQUOTE] = ACTIONS(2999), + [anon_sym_co_await] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_requires] = ACTIONS(2997), + [sym_this] = ACTIONS(2997), }, [879] = { - [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_extern] = ACTIONS(3027), - [anon_sym___attribute__] = 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), + [sym_identifier] = ACTIONS(3063), + [aux_sym_preproc_include_token1] = ACTIONS(3063), + [aux_sym_preproc_def_token1] = ACTIONS(3063), + [aux_sym_preproc_if_token1] = ACTIONS(3063), + [aux_sym_preproc_if_token2] = ACTIONS(3063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), + [sym_preproc_directive] = ACTIONS(3063), + [anon_sym_LPAREN2] = ACTIONS(3065), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_TILDE] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym___extension__] = ACTIONS(3063), + [anon_sym_typedef] = ACTIONS(3063), + [anon_sym_extern] = ACTIONS(3063), + [anon_sym___attribute__] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(3065), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), + [anon_sym___declspec] = ACTIONS(3063), + [anon_sym___based] = ACTIONS(3063), + [anon_sym___cdecl] = ACTIONS(3063), + [anon_sym___clrcall] = ACTIONS(3063), + [anon_sym___stdcall] = ACTIONS(3063), + [anon_sym___fastcall] = ACTIONS(3063), + [anon_sym___thiscall] = ACTIONS(3063), + [anon_sym___vectorcall] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_signed] = ACTIONS(3063), + [anon_sym_unsigned] = ACTIONS(3063), + [anon_sym_long] = ACTIONS(3063), + [anon_sym_short] = ACTIONS(3063), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_static] = ACTIONS(3063), + [anon_sym_register] = ACTIONS(3063), + [anon_sym_inline] = ACTIONS(3063), + [anon_sym___inline] = ACTIONS(3063), + [anon_sym___inline__] = ACTIONS(3063), + [anon_sym___forceinline] = ACTIONS(3063), + [anon_sym_thread_local] = ACTIONS(3063), + [anon_sym___thread] = ACTIONS(3063), + [anon_sym_const] = ACTIONS(3063), + [anon_sym_constexpr] = ACTIONS(3063), + [anon_sym_volatile] = ACTIONS(3063), + [anon_sym_restrict] = ACTIONS(3063), + [anon_sym___restrict__] = ACTIONS(3063), + [anon_sym__Atomic] = ACTIONS(3063), + [anon_sym__Noreturn] = ACTIONS(3063), + [anon_sym_noreturn] = ACTIONS(3063), + [anon_sym_mutable] = ACTIONS(3063), + [anon_sym_constinit] = ACTIONS(3063), + [anon_sym_consteval] = ACTIONS(3063), + [sym_primitive_type] = ACTIONS(3063), + [anon_sym_enum] = ACTIONS(3063), + [anon_sym_class] = ACTIONS(3063), + [anon_sym_struct] = ACTIONS(3063), + [anon_sym_union] = ACTIONS(3063), + [anon_sym_if] = ACTIONS(3063), + [anon_sym_switch] = ACTIONS(3063), + [anon_sym_case] = ACTIONS(3063), + [anon_sym_default] = ACTIONS(3063), + [anon_sym_while] = ACTIONS(3063), + [anon_sym_do] = ACTIONS(3063), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(3063), + [anon_sym_break] = ACTIONS(3063), + [anon_sym_continue] = ACTIONS(3063), + [anon_sym_goto] = ACTIONS(3063), + [anon_sym_not] = ACTIONS(3063), + [anon_sym_compl] = ACTIONS(3063), + [anon_sym_DASH_DASH] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_sizeof] = ACTIONS(3063), + [anon_sym___alignof__] = ACTIONS(3063), + [anon_sym___alignof] = ACTIONS(3063), + [anon_sym__alignof] = ACTIONS(3063), + [anon_sym_alignof] = ACTIONS(3063), + [anon_sym__Alignof] = ACTIONS(3063), + [anon_sym_offsetof] = ACTIONS(3063), + [anon_sym__Generic] = ACTIONS(3063), + [anon_sym_asm] = ACTIONS(3063), + [anon_sym___asm__] = ACTIONS(3063), + [sym_number_literal] = ACTIONS(3065), + [anon_sym_L_SQUOTE] = ACTIONS(3065), + [anon_sym_u_SQUOTE] = ACTIONS(3065), + [anon_sym_U_SQUOTE] = ACTIONS(3065), + [anon_sym_u8_SQUOTE] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3065), + [anon_sym_L_DQUOTE] = ACTIONS(3065), + [anon_sym_u_DQUOTE] = ACTIONS(3065), + [anon_sym_U_DQUOTE] = ACTIONS(3065), + [anon_sym_u8_DQUOTE] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [sym_true] = ACTIONS(3063), + [sym_false] = ACTIONS(3063), + [anon_sym_NULL] = ACTIONS(3063), + [anon_sym_nullptr] = ACTIONS(3063), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3063), + [anon_sym_decltype] = ACTIONS(3063), + [anon_sym_virtual] = ACTIONS(3063), + [anon_sym_alignas] = ACTIONS(3063), + [anon_sym_explicit] = ACTIONS(3063), + [anon_sym_typename] = ACTIONS(3063), + [anon_sym_template] = ACTIONS(3063), + [anon_sym_operator] = ACTIONS(3063), + [anon_sym_try] = ACTIONS(3063), + [anon_sym_delete] = ACTIONS(3063), + [anon_sym_throw] = ACTIONS(3063), + [anon_sym_namespace] = ACTIONS(3063), + [anon_sym_using] = ACTIONS(3063), + [anon_sym_static_assert] = ACTIONS(3063), + [anon_sym_concept] = ACTIONS(3063), + [anon_sym_co_return] = ACTIONS(3063), + [anon_sym_co_yield] = ACTIONS(3063), + [anon_sym_R_DQUOTE] = ACTIONS(3065), + [anon_sym_LR_DQUOTE] = ACTIONS(3065), + [anon_sym_uR_DQUOTE] = ACTIONS(3065), + [anon_sym_UR_DQUOTE] = ACTIONS(3065), + [anon_sym_u8R_DQUOTE] = ACTIONS(3065), + [anon_sym_co_await] = ACTIONS(3063), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_requires] = ACTIONS(3063), + [sym_this] = ACTIONS(3063), + }, + [880] = { + [sym_identifier] = ACTIONS(3059), + [aux_sym_preproc_include_token1] = ACTIONS(3059), + [aux_sym_preproc_def_token1] = ACTIONS(3059), + [aux_sym_preproc_if_token1] = ACTIONS(3059), + [aux_sym_preproc_if_token2] = ACTIONS(3059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3059), + [sym_preproc_directive] = ACTIONS(3059), + [anon_sym_LPAREN2] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3059), + [anon_sym_PLUS] = ACTIONS(3059), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3059), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym___extension__] = ACTIONS(3059), + [anon_sym_typedef] = ACTIONS(3059), + [anon_sym_extern] = ACTIONS(3059), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3059), + [anon_sym_constinit] = ACTIONS(3059), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3059), + [anon_sym_alignas] = 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_using] = 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), + }, + [881] = { + [sym_identifier] = ACTIONS(3001), + [aux_sym_preproc_include_token1] = ACTIONS(3001), + [aux_sym_preproc_def_token1] = ACTIONS(3001), + [aux_sym_preproc_if_token1] = ACTIONS(3001), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3001), + [anon_sym_LPAREN2] = ACTIONS(3003), + [anon_sym_BANG] = ACTIONS(3003), + [anon_sym_TILDE] = ACTIONS(3003), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3003), + [anon_sym_AMP_AMP] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_SEMI] = ACTIONS(3003), + [anon_sym___extension__] = ACTIONS(3001), + [anon_sym_typedef] = ACTIONS(3001), + [anon_sym_extern] = ACTIONS(3001), + [anon_sym___attribute__] = ACTIONS(3001), + [anon_sym_COLON_COLON] = ACTIONS(3003), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3003), + [anon_sym___declspec] = ACTIONS(3001), + [anon_sym___based] = ACTIONS(3001), + [anon_sym___cdecl] = ACTIONS(3001), + [anon_sym___clrcall] = ACTIONS(3001), + [anon_sym___stdcall] = ACTIONS(3001), + [anon_sym___fastcall] = ACTIONS(3001), + [anon_sym___thiscall] = ACTIONS(3001), + [anon_sym___vectorcall] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_RBRACE] = ACTIONS(3003), + [anon_sym_signed] = ACTIONS(3001), + [anon_sym_unsigned] = ACTIONS(3001), + [anon_sym_long] = ACTIONS(3001), + [anon_sym_short] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_static] = ACTIONS(3001), + [anon_sym_register] = ACTIONS(3001), + [anon_sym_inline] = ACTIONS(3001), + [anon_sym___inline] = ACTIONS(3001), + [anon_sym___inline__] = ACTIONS(3001), + [anon_sym___forceinline] = ACTIONS(3001), + [anon_sym_thread_local] = ACTIONS(3001), + [anon_sym___thread] = ACTIONS(3001), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_constexpr] = ACTIONS(3001), + [anon_sym_volatile] = ACTIONS(3001), + [anon_sym_restrict] = ACTIONS(3001), + [anon_sym___restrict__] = ACTIONS(3001), + [anon_sym__Atomic] = ACTIONS(3001), + [anon_sym__Noreturn] = ACTIONS(3001), + [anon_sym_noreturn] = ACTIONS(3001), + [anon_sym_mutable] = ACTIONS(3001), + [anon_sym_constinit] = ACTIONS(3001), + [anon_sym_consteval] = ACTIONS(3001), + [sym_primitive_type] = ACTIONS(3001), + [anon_sym_enum] = ACTIONS(3001), + [anon_sym_class] = ACTIONS(3001), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_union] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_switch] = ACTIONS(3001), + [anon_sym_case] = ACTIONS(3001), + [anon_sym_default] = ACTIONS(3001), + [anon_sym_while] = ACTIONS(3001), + [anon_sym_do] = ACTIONS(3001), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_break] = ACTIONS(3001), + [anon_sym_continue] = ACTIONS(3001), + [anon_sym_goto] = ACTIONS(3001), + [anon_sym_not] = ACTIONS(3001), + [anon_sym_compl] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3003), + [anon_sym_PLUS_PLUS] = ACTIONS(3003), + [anon_sym_sizeof] = ACTIONS(3001), + [anon_sym___alignof__] = ACTIONS(3001), + [anon_sym___alignof] = ACTIONS(3001), + [anon_sym__alignof] = ACTIONS(3001), + [anon_sym_alignof] = ACTIONS(3001), + [anon_sym__Alignof] = ACTIONS(3001), + [anon_sym_offsetof] = ACTIONS(3001), + [anon_sym__Generic] = ACTIONS(3001), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3003), + [anon_sym_u_SQUOTE] = ACTIONS(3003), + [anon_sym_U_SQUOTE] = ACTIONS(3003), + [anon_sym_u8_SQUOTE] = ACTIONS(3003), + [anon_sym_SQUOTE] = ACTIONS(3003), + [anon_sym_L_DQUOTE] = ACTIONS(3003), + [anon_sym_u_DQUOTE] = ACTIONS(3003), + [anon_sym_U_DQUOTE] = ACTIONS(3003), + [anon_sym_u8_DQUOTE] = ACTIONS(3003), + [anon_sym_DQUOTE] = ACTIONS(3003), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [anon_sym_NULL] = ACTIONS(3001), + [anon_sym_nullptr] = ACTIONS(3001), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3001), + [anon_sym_decltype] = ACTIONS(3001), + [anon_sym_virtual] = ACTIONS(3001), + [anon_sym_alignas] = ACTIONS(3001), + [anon_sym_explicit] = ACTIONS(3001), + [anon_sym_typename] = ACTIONS(3001), + [anon_sym_template] = ACTIONS(3001), + [anon_sym_operator] = ACTIONS(3001), + [anon_sym_try] = ACTIONS(3001), + [anon_sym_delete] = ACTIONS(3001), + [anon_sym_throw] = ACTIONS(3001), + [anon_sym_namespace] = ACTIONS(3001), + [anon_sym_using] = ACTIONS(3001), + [anon_sym_static_assert] = ACTIONS(3001), + [anon_sym_concept] = ACTIONS(3001), + [anon_sym_co_return] = ACTIONS(3001), + [anon_sym_co_yield] = ACTIONS(3001), + [anon_sym_R_DQUOTE] = ACTIONS(3003), + [anon_sym_LR_DQUOTE] = ACTIONS(3003), + [anon_sym_uR_DQUOTE] = ACTIONS(3003), + [anon_sym_UR_DQUOTE] = ACTIONS(3003), + [anon_sym_u8R_DQUOTE] = ACTIONS(3003), + [anon_sym_co_await] = ACTIONS(3001), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_requires] = ACTIONS(3001), + [sym_this] = ACTIONS(3001), + }, + [882] = { + [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_extern] = ACTIONS(3055), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3055), + [anon_sym_constinit] = ACTIONS(3055), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3055), + [anon_sym_alignas] = 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_using] = 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), + }, + [883] = { + [sym_identifier] = ACTIONS(3005), + [aux_sym_preproc_include_token1] = ACTIONS(3005), + [aux_sym_preproc_def_token1] = ACTIONS(3005), + [aux_sym_preproc_if_token1] = ACTIONS(3005), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3005), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3005), + [sym_preproc_directive] = ACTIONS(3005), + [anon_sym_LPAREN2] = ACTIONS(3007), + [anon_sym_BANG] = ACTIONS(3007), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3007), + [anon_sym_AMP_AMP] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_SEMI] = ACTIONS(3007), + [anon_sym___extension__] = ACTIONS(3005), + [anon_sym_typedef] = ACTIONS(3005), + [anon_sym_extern] = ACTIONS(3005), + [anon_sym___attribute__] = ACTIONS(3005), + [anon_sym_COLON_COLON] = ACTIONS(3007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3007), + [anon_sym___declspec] = ACTIONS(3005), + [anon_sym___based] = ACTIONS(3005), + [anon_sym___cdecl] = ACTIONS(3005), + [anon_sym___clrcall] = ACTIONS(3005), + [anon_sym___stdcall] = ACTIONS(3005), + [anon_sym___fastcall] = ACTIONS(3005), + [anon_sym___thiscall] = ACTIONS(3005), + [anon_sym___vectorcall] = ACTIONS(3005), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_RBRACE] = ACTIONS(3007), + [anon_sym_signed] = ACTIONS(3005), + [anon_sym_unsigned] = ACTIONS(3005), + [anon_sym_long] = ACTIONS(3005), + [anon_sym_short] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_static] = ACTIONS(3005), + [anon_sym_register] = ACTIONS(3005), + [anon_sym_inline] = ACTIONS(3005), + [anon_sym___inline] = ACTIONS(3005), + [anon_sym___inline__] = ACTIONS(3005), + [anon_sym___forceinline] = ACTIONS(3005), + [anon_sym_thread_local] = ACTIONS(3005), + [anon_sym___thread] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3005), + [anon_sym_constexpr] = ACTIONS(3005), + [anon_sym_volatile] = ACTIONS(3005), + [anon_sym_restrict] = ACTIONS(3005), + [anon_sym___restrict__] = ACTIONS(3005), + [anon_sym__Atomic] = ACTIONS(3005), + [anon_sym__Noreturn] = ACTIONS(3005), + [anon_sym_noreturn] = ACTIONS(3005), + [anon_sym_mutable] = ACTIONS(3005), + [anon_sym_constinit] = ACTIONS(3005), + [anon_sym_consteval] = ACTIONS(3005), + [sym_primitive_type] = ACTIONS(3005), + [anon_sym_enum] = ACTIONS(3005), + [anon_sym_class] = ACTIONS(3005), + [anon_sym_struct] = ACTIONS(3005), + [anon_sym_union] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_switch] = ACTIONS(3005), + [anon_sym_case] = ACTIONS(3005), + [anon_sym_default] = ACTIONS(3005), + [anon_sym_while] = ACTIONS(3005), + [anon_sym_do] = ACTIONS(3005), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_break] = ACTIONS(3005), + [anon_sym_continue] = ACTIONS(3005), + [anon_sym_goto] = ACTIONS(3005), + [anon_sym_not] = ACTIONS(3005), + [anon_sym_compl] = ACTIONS(3005), + [anon_sym_DASH_DASH] = ACTIONS(3007), + [anon_sym_PLUS_PLUS] = ACTIONS(3007), + [anon_sym_sizeof] = ACTIONS(3005), + [anon_sym___alignof__] = ACTIONS(3005), + [anon_sym___alignof] = ACTIONS(3005), + [anon_sym__alignof] = ACTIONS(3005), + [anon_sym_alignof] = ACTIONS(3005), + [anon_sym__Alignof] = ACTIONS(3005), + [anon_sym_offsetof] = ACTIONS(3005), + [anon_sym__Generic] = ACTIONS(3005), + [anon_sym_asm] = ACTIONS(3005), + [anon_sym___asm__] = ACTIONS(3005), + [sym_number_literal] = ACTIONS(3007), + [anon_sym_L_SQUOTE] = ACTIONS(3007), + [anon_sym_u_SQUOTE] = ACTIONS(3007), + [anon_sym_U_SQUOTE] = ACTIONS(3007), + [anon_sym_u8_SQUOTE] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3005), + [sym_false] = ACTIONS(3005), + [anon_sym_NULL] = ACTIONS(3005), + [anon_sym_nullptr] = ACTIONS(3005), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3005), + [anon_sym_decltype] = ACTIONS(3005), + [anon_sym_virtual] = ACTIONS(3005), + [anon_sym_alignas] = ACTIONS(3005), + [anon_sym_explicit] = ACTIONS(3005), + [anon_sym_typename] = ACTIONS(3005), + [anon_sym_template] = ACTIONS(3005), + [anon_sym_operator] = ACTIONS(3005), + [anon_sym_try] = ACTIONS(3005), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_throw] = ACTIONS(3005), + [anon_sym_namespace] = ACTIONS(3005), + [anon_sym_using] = ACTIONS(3005), + [anon_sym_static_assert] = ACTIONS(3005), + [anon_sym_concept] = ACTIONS(3005), + [anon_sym_co_return] = ACTIONS(3005), + [anon_sym_co_yield] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(3007), + [anon_sym_LR_DQUOTE] = ACTIONS(3007), + [anon_sym_uR_DQUOTE] = ACTIONS(3007), + [anon_sym_UR_DQUOTE] = ACTIONS(3007), + [anon_sym_u8R_DQUOTE] = ACTIONS(3007), + [anon_sym_co_await] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3005), + [anon_sym_requires] = ACTIONS(3005), + [sym_this] = ACTIONS(3005), + }, + [884] = { + [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_extern] = ACTIONS(3051), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3051), + [anon_sym_constinit] = ACTIONS(3051), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3051), + [anon_sym_alignas] = 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_using] = 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), + }, + [885] = { + [sym_identifier] = ACTIONS(3047), + [aux_sym_preproc_include_token1] = ACTIONS(3047), + [aux_sym_preproc_def_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token2] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3047), + [sym_preproc_directive] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3047), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym___extension__] = ACTIONS(3047), + [anon_sym_typedef] = ACTIONS(3047), + [anon_sym_extern] = ACTIONS(3047), + [anon_sym___attribute__] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3049), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3049), + [anon_sym___declspec] = ACTIONS(3047), + [anon_sym___based] = ACTIONS(3047), + [anon_sym___cdecl] = ACTIONS(3047), + [anon_sym___clrcall] = ACTIONS(3047), + [anon_sym___stdcall] = ACTIONS(3047), + [anon_sym___fastcall] = ACTIONS(3047), + [anon_sym___thiscall] = ACTIONS(3047), + [anon_sym___vectorcall] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_signed] = ACTIONS(3047), + [anon_sym_unsigned] = ACTIONS(3047), + [anon_sym_long] = ACTIONS(3047), + [anon_sym_short] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_static] = ACTIONS(3047), + [anon_sym_register] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym___inline] = ACTIONS(3047), + [anon_sym___inline__] = ACTIONS(3047), + [anon_sym___forceinline] = ACTIONS(3047), + [anon_sym_thread_local] = ACTIONS(3047), + [anon_sym___thread] = ACTIONS(3047), + [anon_sym_const] = ACTIONS(3047), + [anon_sym_constexpr] = ACTIONS(3047), + [anon_sym_volatile] = ACTIONS(3047), + [anon_sym_restrict] = ACTIONS(3047), + [anon_sym___restrict__] = ACTIONS(3047), + [anon_sym__Atomic] = ACTIONS(3047), + [anon_sym__Noreturn] = ACTIONS(3047), + [anon_sym_noreturn] = ACTIONS(3047), + [anon_sym_mutable] = ACTIONS(3047), + [anon_sym_constinit] = ACTIONS(3047), + [anon_sym_consteval] = ACTIONS(3047), + [sym_primitive_type] = ACTIONS(3047), + [anon_sym_enum] = ACTIONS(3047), + [anon_sym_class] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_union] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_switch] = ACTIONS(3047), + [anon_sym_case] = ACTIONS(3047), + [anon_sym_default] = ACTIONS(3047), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_do] = ACTIONS(3047), + [anon_sym_for] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_goto] = ACTIONS(3047), + [anon_sym_not] = ACTIONS(3047), + [anon_sym_compl] = ACTIONS(3047), + [anon_sym_DASH_DASH] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_sizeof] = ACTIONS(3047), + [anon_sym___alignof__] = ACTIONS(3047), + [anon_sym___alignof] = ACTIONS(3047), + [anon_sym__alignof] = ACTIONS(3047), + [anon_sym_alignof] = ACTIONS(3047), + [anon_sym__Alignof] = ACTIONS(3047), + [anon_sym_offsetof] = ACTIONS(3047), + [anon_sym__Generic] = ACTIONS(3047), + [anon_sym_asm] = ACTIONS(3047), + [anon_sym___asm__] = ACTIONS(3047), + [sym_number_literal] = ACTIONS(3049), + [anon_sym_L_SQUOTE] = ACTIONS(3049), + [anon_sym_u_SQUOTE] = ACTIONS(3049), + [anon_sym_U_SQUOTE] = ACTIONS(3049), + [anon_sym_u8_SQUOTE] = ACTIONS(3049), + [anon_sym_SQUOTE] = ACTIONS(3049), + [anon_sym_L_DQUOTE] = ACTIONS(3049), + [anon_sym_u_DQUOTE] = ACTIONS(3049), + [anon_sym_U_DQUOTE] = ACTIONS(3049), + [anon_sym_u8_DQUOTE] = ACTIONS(3049), + [anon_sym_DQUOTE] = ACTIONS(3049), + [sym_true] = ACTIONS(3047), + [sym_false] = ACTIONS(3047), + [anon_sym_NULL] = ACTIONS(3047), + [anon_sym_nullptr] = ACTIONS(3047), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3047), + [anon_sym_decltype] = ACTIONS(3047), + [anon_sym_virtual] = ACTIONS(3047), + [anon_sym_alignas] = ACTIONS(3047), + [anon_sym_explicit] = ACTIONS(3047), + [anon_sym_typename] = ACTIONS(3047), + [anon_sym_template] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_delete] = ACTIONS(3047), + [anon_sym_throw] = ACTIONS(3047), + [anon_sym_namespace] = ACTIONS(3047), + [anon_sym_using] = ACTIONS(3047), + [anon_sym_static_assert] = ACTIONS(3047), + [anon_sym_concept] = ACTIONS(3047), + [anon_sym_co_return] = ACTIONS(3047), + [anon_sym_co_yield] = ACTIONS(3047), + [anon_sym_R_DQUOTE] = ACTIONS(3049), + [anon_sym_LR_DQUOTE] = ACTIONS(3049), + [anon_sym_uR_DQUOTE] = ACTIONS(3049), + [anon_sym_UR_DQUOTE] = ACTIONS(3049), + [anon_sym_u8R_DQUOTE] = ACTIONS(3049), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_requires] = ACTIONS(3047), + [sym_this] = ACTIONS(3047), + }, + [886] = { + [sym_identifier] = ACTIONS(3031), + [aux_sym_preproc_include_token1] = ACTIONS(3031), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3031), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3031), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3031), + [sym_preproc_directive] = ACTIONS(3031), + [anon_sym_LPAREN2] = ACTIONS(3033), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_TILDE] = ACTIONS(3033), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_STAR] = ACTIONS(3033), + [anon_sym_AMP_AMP] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_SEMI] = ACTIONS(3033), + [anon_sym___extension__] = ACTIONS(3031), + [anon_sym_typedef] = ACTIONS(3031), + [anon_sym_extern] = ACTIONS(3031), + [anon_sym___attribute__] = ACTIONS(3031), + [anon_sym_COLON_COLON] = ACTIONS(3033), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3033), + [anon_sym___declspec] = ACTIONS(3031), + [anon_sym___based] = ACTIONS(3031), + [anon_sym___cdecl] = ACTIONS(3031), + [anon_sym___clrcall] = ACTIONS(3031), + [anon_sym___stdcall] = ACTIONS(3031), + [anon_sym___fastcall] = ACTIONS(3031), + [anon_sym___thiscall] = ACTIONS(3031), + [anon_sym___vectorcall] = ACTIONS(3031), + [anon_sym_LBRACE] = ACTIONS(3033), + [anon_sym_RBRACE] = ACTIONS(3033), + [anon_sym_signed] = ACTIONS(3031), + [anon_sym_unsigned] = ACTIONS(3031), + [anon_sym_long] = ACTIONS(3031), + [anon_sym_short] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_static] = ACTIONS(3031), + [anon_sym_register] = ACTIONS(3031), + [anon_sym_inline] = ACTIONS(3031), + [anon_sym___inline] = ACTIONS(3031), + [anon_sym___inline__] = ACTIONS(3031), + [anon_sym___forceinline] = ACTIONS(3031), + [anon_sym_thread_local] = ACTIONS(3031), + [anon_sym___thread] = ACTIONS(3031), + [anon_sym_const] = ACTIONS(3031), + [anon_sym_constexpr] = ACTIONS(3031), + [anon_sym_volatile] = ACTIONS(3031), + [anon_sym_restrict] = ACTIONS(3031), + [anon_sym___restrict__] = ACTIONS(3031), + [anon_sym__Atomic] = ACTIONS(3031), + [anon_sym__Noreturn] = ACTIONS(3031), + [anon_sym_noreturn] = ACTIONS(3031), + [anon_sym_mutable] = ACTIONS(3031), + [anon_sym_constinit] = ACTIONS(3031), + [anon_sym_consteval] = ACTIONS(3031), + [sym_primitive_type] = ACTIONS(3031), + [anon_sym_enum] = ACTIONS(3031), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3031), + [anon_sym_union] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_switch] = ACTIONS(3031), + [anon_sym_case] = ACTIONS(3031), + [anon_sym_default] = ACTIONS(3031), + [anon_sym_while] = ACTIONS(3031), + [anon_sym_do] = ACTIONS(3031), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_break] = ACTIONS(3031), + [anon_sym_continue] = ACTIONS(3031), + [anon_sym_goto] = ACTIONS(3031), + [anon_sym_not] = ACTIONS(3031), + [anon_sym_compl] = ACTIONS(3031), + [anon_sym_DASH_DASH] = ACTIONS(3033), + [anon_sym_PLUS_PLUS] = ACTIONS(3033), + [anon_sym_sizeof] = ACTIONS(3031), + [anon_sym___alignof__] = ACTIONS(3031), + [anon_sym___alignof] = ACTIONS(3031), + [anon_sym__alignof] = ACTIONS(3031), + [anon_sym_alignof] = ACTIONS(3031), + [anon_sym__Alignof] = ACTIONS(3031), + [anon_sym_offsetof] = ACTIONS(3031), + [anon_sym__Generic] = ACTIONS(3031), + [anon_sym_asm] = ACTIONS(3031), + [anon_sym___asm__] = ACTIONS(3031), + [sym_number_literal] = ACTIONS(3033), + [anon_sym_L_SQUOTE] = ACTIONS(3033), + [anon_sym_u_SQUOTE] = ACTIONS(3033), + [anon_sym_U_SQUOTE] = ACTIONS(3033), + [anon_sym_u8_SQUOTE] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3033), + [anon_sym_L_DQUOTE] = ACTIONS(3033), + [anon_sym_u_DQUOTE] = ACTIONS(3033), + [anon_sym_U_DQUOTE] = ACTIONS(3033), + [anon_sym_u8_DQUOTE] = ACTIONS(3033), + [anon_sym_DQUOTE] = ACTIONS(3033), + [sym_true] = ACTIONS(3031), + [sym_false] = ACTIONS(3031), + [anon_sym_NULL] = ACTIONS(3031), + [anon_sym_nullptr] = ACTIONS(3031), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3031), + [anon_sym_decltype] = ACTIONS(3031), + [anon_sym_virtual] = ACTIONS(3031), + [anon_sym_alignas] = ACTIONS(3031), + [anon_sym_explicit] = ACTIONS(3031), + [anon_sym_typename] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3031), + [anon_sym_operator] = ACTIONS(3031), + [anon_sym_try] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_throw] = ACTIONS(3031), + [anon_sym_namespace] = ACTIONS(3031), + [anon_sym_using] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3031), + [anon_sym_concept] = ACTIONS(3031), + [anon_sym_co_return] = ACTIONS(3031), + [anon_sym_co_yield] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(3033), + [anon_sym_LR_DQUOTE] = ACTIONS(3033), + [anon_sym_uR_DQUOTE] = ACTIONS(3033), + [anon_sym_UR_DQUOTE] = ACTIONS(3033), + [anon_sym_u8R_DQUOTE] = ACTIONS(3033), + [anon_sym_co_await] = ACTIONS(3031), + [anon_sym_new] = ACTIONS(3031), + [anon_sym_requires] = ACTIONS(3031), + [sym_this] = ACTIONS(3031), + }, + [887] = { + [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_extern] = ACTIONS(3027), + [anon_sym___attribute__] = 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), @@ -178739,7 +175225,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(3027), [anon_sym_union] = ACTIONS(3027), [anon_sym_if] = ACTIONS(3027), - [anon_sym_else] = ACTIONS(3027), [anon_sym_switch] = ACTIONS(3027), [anon_sym_case] = ACTIONS(3027), [anon_sym_default] = ACTIONS(3027), @@ -178807,1841 +175292,4143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3027), [sym_this] = ACTIONS(3027), }, - [880] = { - [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_extern] = ACTIONS(3045), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3045), - [anon_sym_constinit] = ACTIONS(3045), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3045), - [anon_sym_alignas] = 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_using] = 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), + [888] = { + [sym_identifier] = ACTIONS(3021), + [aux_sym_preproc_include_token1] = ACTIONS(3021), + [aux_sym_preproc_def_token1] = ACTIONS(3021), + [aux_sym_preproc_if_token1] = ACTIONS(3021), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3021), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3021), + [sym_preproc_directive] = ACTIONS(3021), + [anon_sym_LPAREN2] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3021), + [anon_sym_PLUS] = ACTIONS(3021), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3021), + [anon_sym_SEMI] = ACTIONS(3023), + [anon_sym___extension__] = ACTIONS(3021), + [anon_sym_typedef] = ACTIONS(3021), + [anon_sym_extern] = ACTIONS(3021), + [anon_sym___attribute__] = ACTIONS(3021), + [anon_sym_COLON_COLON] = ACTIONS(3023), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3023), + [anon_sym___declspec] = ACTIONS(3021), + [anon_sym___based] = ACTIONS(3021), + [anon_sym___cdecl] = ACTIONS(3021), + [anon_sym___clrcall] = ACTIONS(3021), + [anon_sym___stdcall] = ACTIONS(3021), + [anon_sym___fastcall] = ACTIONS(3021), + [anon_sym___thiscall] = ACTIONS(3021), + [anon_sym___vectorcall] = ACTIONS(3021), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_RBRACE] = ACTIONS(3023), + [anon_sym_signed] = ACTIONS(3021), + [anon_sym_unsigned] = ACTIONS(3021), + [anon_sym_long] = ACTIONS(3021), + [anon_sym_short] = ACTIONS(3021), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_static] = ACTIONS(3021), + [anon_sym_register] = ACTIONS(3021), + [anon_sym_inline] = ACTIONS(3021), + [anon_sym___inline] = ACTIONS(3021), + [anon_sym___inline__] = ACTIONS(3021), + [anon_sym___forceinline] = ACTIONS(3021), + [anon_sym_thread_local] = ACTIONS(3021), + [anon_sym___thread] = ACTIONS(3021), + [anon_sym_const] = ACTIONS(3021), + [anon_sym_constexpr] = ACTIONS(3021), + [anon_sym_volatile] = ACTIONS(3021), + [anon_sym_restrict] = ACTIONS(3021), + [anon_sym___restrict__] = ACTIONS(3021), + [anon_sym__Atomic] = ACTIONS(3021), + [anon_sym__Noreturn] = ACTIONS(3021), + [anon_sym_noreturn] = ACTIONS(3021), + [anon_sym_mutable] = ACTIONS(3021), + [anon_sym_constinit] = ACTIONS(3021), + [anon_sym_consteval] = ACTIONS(3021), + [sym_primitive_type] = ACTIONS(3021), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3021), + [anon_sym_struct] = ACTIONS(3021), + [anon_sym_union] = ACTIONS(3021), + [anon_sym_if] = ACTIONS(3021), + [anon_sym_switch] = ACTIONS(3021), + [anon_sym_case] = ACTIONS(3021), + [anon_sym_default] = ACTIONS(3021), + [anon_sym_while] = ACTIONS(3021), + [anon_sym_do] = ACTIONS(3021), + [anon_sym_for] = ACTIONS(3021), + [anon_sym_return] = ACTIONS(3021), + [anon_sym_break] = ACTIONS(3021), + [anon_sym_continue] = ACTIONS(3021), + [anon_sym_goto] = ACTIONS(3021), + [anon_sym_not] = ACTIONS(3021), + [anon_sym_compl] = ACTIONS(3021), + [anon_sym_DASH_DASH] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(3023), + [anon_sym_sizeof] = ACTIONS(3021), + [anon_sym___alignof__] = ACTIONS(3021), + [anon_sym___alignof] = ACTIONS(3021), + [anon_sym__alignof] = ACTIONS(3021), + [anon_sym_alignof] = ACTIONS(3021), + [anon_sym__Alignof] = ACTIONS(3021), + [anon_sym_offsetof] = ACTIONS(3021), + [anon_sym__Generic] = ACTIONS(3021), + [anon_sym_asm] = ACTIONS(3021), + [anon_sym___asm__] = ACTIONS(3021), + [sym_number_literal] = ACTIONS(3023), + [anon_sym_L_SQUOTE] = ACTIONS(3023), + [anon_sym_u_SQUOTE] = ACTIONS(3023), + [anon_sym_U_SQUOTE] = ACTIONS(3023), + [anon_sym_u8_SQUOTE] = ACTIONS(3023), + [anon_sym_SQUOTE] = ACTIONS(3023), + [anon_sym_L_DQUOTE] = ACTIONS(3023), + [anon_sym_u_DQUOTE] = ACTIONS(3023), + [anon_sym_U_DQUOTE] = ACTIONS(3023), + [anon_sym_u8_DQUOTE] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(3023), + [sym_true] = ACTIONS(3021), + [sym_false] = ACTIONS(3021), + [anon_sym_NULL] = ACTIONS(3021), + [anon_sym_nullptr] = ACTIONS(3021), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3021), + [anon_sym_decltype] = ACTIONS(3021), + [anon_sym_virtual] = ACTIONS(3021), + [anon_sym_alignas] = ACTIONS(3021), + [anon_sym_explicit] = ACTIONS(3021), + [anon_sym_typename] = ACTIONS(3021), + [anon_sym_template] = ACTIONS(3021), + [anon_sym_operator] = ACTIONS(3021), + [anon_sym_try] = ACTIONS(3021), + [anon_sym_delete] = ACTIONS(3021), + [anon_sym_throw] = ACTIONS(3021), + [anon_sym_namespace] = ACTIONS(3021), + [anon_sym_using] = ACTIONS(3021), + [anon_sym_static_assert] = ACTIONS(3021), + [anon_sym_concept] = ACTIONS(3021), + [anon_sym_co_return] = ACTIONS(3021), + [anon_sym_co_yield] = ACTIONS(3021), + [anon_sym_R_DQUOTE] = ACTIONS(3023), + [anon_sym_LR_DQUOTE] = ACTIONS(3023), + [anon_sym_uR_DQUOTE] = ACTIONS(3023), + [anon_sym_UR_DQUOTE] = ACTIONS(3023), + [anon_sym_u8R_DQUOTE] = ACTIONS(3023), + [anon_sym_co_await] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3021), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3021), }, - [881] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [889] = { + [sym_identifier] = ACTIONS(3043), + [aux_sym_preproc_include_token1] = ACTIONS(3043), + [aux_sym_preproc_def_token1] = ACTIONS(3043), + [aux_sym_preproc_if_token1] = ACTIONS(3043), + [aux_sym_preproc_if_token2] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym___extension__] = ACTIONS(3043), + [anon_sym_typedef] = ACTIONS(3043), + [anon_sym_extern] = ACTIONS(3043), + [anon_sym___attribute__] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3045), + [anon_sym___declspec] = ACTIONS(3043), + [anon_sym___based] = ACTIONS(3043), + [anon_sym___cdecl] = ACTIONS(3043), + [anon_sym___clrcall] = ACTIONS(3043), + [anon_sym___stdcall] = ACTIONS(3043), + [anon_sym___fastcall] = ACTIONS(3043), + [anon_sym___thiscall] = ACTIONS(3043), + [anon_sym___vectorcall] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_signed] = ACTIONS(3043), + [anon_sym_unsigned] = ACTIONS(3043), + [anon_sym_long] = ACTIONS(3043), + [anon_sym_short] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_static] = ACTIONS(3043), + [anon_sym_register] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym___inline] = ACTIONS(3043), + [anon_sym___inline__] = ACTIONS(3043), + [anon_sym___forceinline] = ACTIONS(3043), + [anon_sym_thread_local] = ACTIONS(3043), + [anon_sym___thread] = ACTIONS(3043), + [anon_sym_const] = ACTIONS(3043), + [anon_sym_constexpr] = ACTIONS(3043), + [anon_sym_volatile] = ACTIONS(3043), + [anon_sym_restrict] = ACTIONS(3043), + [anon_sym___restrict__] = ACTIONS(3043), + [anon_sym__Atomic] = ACTIONS(3043), + [anon_sym__Noreturn] = ACTIONS(3043), + [anon_sym_noreturn] = ACTIONS(3043), + [anon_sym_mutable] = ACTIONS(3043), + [anon_sym_constinit] = ACTIONS(3043), + [anon_sym_consteval] = ACTIONS(3043), + [sym_primitive_type] = ACTIONS(3043), + [anon_sym_enum] = ACTIONS(3043), + [anon_sym_class] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3043), + [anon_sym_union] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_switch] = ACTIONS(3043), + [anon_sym_case] = ACTIONS(3043), + [anon_sym_default] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_do] = ACTIONS(3043), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_goto] = ACTIONS(3043), + [anon_sym_not] = ACTIONS(3043), + [anon_sym_compl] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_sizeof] = ACTIONS(3043), + [anon_sym___alignof__] = ACTIONS(3043), + [anon_sym___alignof] = ACTIONS(3043), + [anon_sym__alignof] = ACTIONS(3043), + [anon_sym_alignof] = ACTIONS(3043), + [anon_sym__Alignof] = ACTIONS(3043), + [anon_sym_offsetof] = ACTIONS(3043), + [anon_sym__Generic] = ACTIONS(3043), + [anon_sym_asm] = ACTIONS(3043), + [anon_sym___asm__] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(3045), + [anon_sym_L_SQUOTE] = ACTIONS(3045), + [anon_sym_u_SQUOTE] = ACTIONS(3045), + [anon_sym_U_SQUOTE] = ACTIONS(3045), + [anon_sym_u8_SQUOTE] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_L_DQUOTE] = ACTIONS(3045), + [anon_sym_u_DQUOTE] = ACTIONS(3045), + [anon_sym_U_DQUOTE] = ACTIONS(3045), + [anon_sym_u8_DQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [sym_true] = ACTIONS(3043), + [sym_false] = ACTIONS(3043), + [anon_sym_NULL] = ACTIONS(3043), + [anon_sym_nullptr] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3043), + [anon_sym_decltype] = ACTIONS(3043), + [anon_sym_virtual] = ACTIONS(3043), + [anon_sym_alignas] = ACTIONS(3043), + [anon_sym_explicit] = ACTIONS(3043), + [anon_sym_typename] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_delete] = ACTIONS(3043), + [anon_sym_throw] = ACTIONS(3043), + [anon_sym_namespace] = ACTIONS(3043), + [anon_sym_using] = ACTIONS(3043), + [anon_sym_static_assert] = ACTIONS(3043), + [anon_sym_concept] = ACTIONS(3043), + [anon_sym_co_return] = ACTIONS(3043), + [anon_sym_co_yield] = ACTIONS(3043), + [anon_sym_R_DQUOTE] = ACTIONS(3045), + [anon_sym_LR_DQUOTE] = ACTIONS(3045), + [anon_sym_uR_DQUOTE] = ACTIONS(3045), + [anon_sym_UR_DQUOTE] = ACTIONS(3045), + [anon_sym_u8R_DQUOTE] = ACTIONS(3045), + [anon_sym_co_await] = ACTIONS(3043), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_requires] = ACTIONS(3043), + [sym_this] = ACTIONS(3043), }, - [882] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [890] = { + [sym_identifier] = ACTIONS(3017), + [aux_sym_preproc_include_token1] = ACTIONS(3017), + [aux_sym_preproc_def_token1] = ACTIONS(3017), + [aux_sym_preproc_if_token1] = ACTIONS(3017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3017), + [sym_preproc_directive] = ACTIONS(3017), + [anon_sym_LPAREN2] = ACTIONS(3019), + [anon_sym_BANG] = ACTIONS(3019), + [anon_sym_TILDE] = ACTIONS(3019), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_AMP] = ACTIONS(3017), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym___extension__] = ACTIONS(3017), + [anon_sym_typedef] = ACTIONS(3017), + [anon_sym_extern] = ACTIONS(3017), + [anon_sym___attribute__] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(3019), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3019), + [anon_sym___declspec] = ACTIONS(3017), + [anon_sym___based] = ACTIONS(3017), + [anon_sym___cdecl] = ACTIONS(3017), + [anon_sym___clrcall] = ACTIONS(3017), + [anon_sym___stdcall] = ACTIONS(3017), + [anon_sym___fastcall] = ACTIONS(3017), + [anon_sym___thiscall] = ACTIONS(3017), + [anon_sym___vectorcall] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3019), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_signed] = ACTIONS(3017), + [anon_sym_unsigned] = ACTIONS(3017), + [anon_sym_long] = ACTIONS(3017), + [anon_sym_short] = ACTIONS(3017), + [anon_sym_LBRACK] = ACTIONS(3017), + [anon_sym_static] = ACTIONS(3017), + [anon_sym_register] = ACTIONS(3017), + [anon_sym_inline] = ACTIONS(3017), + [anon_sym___inline] = ACTIONS(3017), + [anon_sym___inline__] = ACTIONS(3017), + [anon_sym___forceinline] = ACTIONS(3017), + [anon_sym_thread_local] = ACTIONS(3017), + [anon_sym___thread] = ACTIONS(3017), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_constexpr] = ACTIONS(3017), + [anon_sym_volatile] = ACTIONS(3017), + [anon_sym_restrict] = ACTIONS(3017), + [anon_sym___restrict__] = ACTIONS(3017), + [anon_sym__Atomic] = ACTIONS(3017), + [anon_sym__Noreturn] = ACTIONS(3017), + [anon_sym_noreturn] = ACTIONS(3017), + [anon_sym_mutable] = ACTIONS(3017), + [anon_sym_constinit] = ACTIONS(3017), + [anon_sym_consteval] = ACTIONS(3017), + [sym_primitive_type] = ACTIONS(3017), + [anon_sym_enum] = ACTIONS(3017), + [anon_sym_class] = ACTIONS(3017), + [anon_sym_struct] = ACTIONS(3017), + [anon_sym_union] = ACTIONS(3017), + [anon_sym_if] = ACTIONS(3017), + [anon_sym_switch] = ACTIONS(3017), + [anon_sym_case] = ACTIONS(3017), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3017), + [anon_sym_do] = ACTIONS(3017), + [anon_sym_for] = ACTIONS(3017), + [anon_sym_return] = ACTIONS(3017), + [anon_sym_break] = ACTIONS(3017), + [anon_sym_continue] = ACTIONS(3017), + [anon_sym_goto] = ACTIONS(3017), + [anon_sym_not] = ACTIONS(3017), + [anon_sym_compl] = ACTIONS(3017), + [anon_sym_DASH_DASH] = ACTIONS(3019), + [anon_sym_PLUS_PLUS] = ACTIONS(3019), + [anon_sym_sizeof] = ACTIONS(3017), + [anon_sym___alignof__] = ACTIONS(3017), + [anon_sym___alignof] = ACTIONS(3017), + [anon_sym__alignof] = ACTIONS(3017), + [anon_sym_alignof] = ACTIONS(3017), + [anon_sym__Alignof] = ACTIONS(3017), + [anon_sym_offsetof] = ACTIONS(3017), + [anon_sym__Generic] = ACTIONS(3017), + [anon_sym_asm] = ACTIONS(3017), + [anon_sym___asm__] = ACTIONS(3017), + [sym_number_literal] = ACTIONS(3019), + [anon_sym_L_SQUOTE] = ACTIONS(3019), + [anon_sym_u_SQUOTE] = ACTIONS(3019), + [anon_sym_U_SQUOTE] = ACTIONS(3019), + [anon_sym_u8_SQUOTE] = ACTIONS(3019), + [anon_sym_SQUOTE] = ACTIONS(3019), + [anon_sym_L_DQUOTE] = ACTIONS(3019), + [anon_sym_u_DQUOTE] = ACTIONS(3019), + [anon_sym_U_DQUOTE] = ACTIONS(3019), + [anon_sym_u8_DQUOTE] = ACTIONS(3019), + [anon_sym_DQUOTE] = ACTIONS(3019), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [anon_sym_NULL] = ACTIONS(3017), + [anon_sym_nullptr] = ACTIONS(3017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3017), + [anon_sym_decltype] = ACTIONS(3017), + [anon_sym_virtual] = ACTIONS(3017), + [anon_sym_alignas] = ACTIONS(3017), + [anon_sym_explicit] = ACTIONS(3017), + [anon_sym_typename] = ACTIONS(3017), + [anon_sym_template] = ACTIONS(3017), + [anon_sym_operator] = ACTIONS(3017), + [anon_sym_try] = ACTIONS(3017), + [anon_sym_delete] = ACTIONS(3017), + [anon_sym_throw] = ACTIONS(3017), + [anon_sym_namespace] = ACTIONS(3017), + [anon_sym_using] = ACTIONS(3017), + [anon_sym_static_assert] = ACTIONS(3017), + [anon_sym_concept] = ACTIONS(3017), + [anon_sym_co_return] = ACTIONS(3017), + [anon_sym_co_yield] = ACTIONS(3017), + [anon_sym_R_DQUOTE] = ACTIONS(3019), + [anon_sym_LR_DQUOTE] = ACTIONS(3019), + [anon_sym_uR_DQUOTE] = ACTIONS(3019), + [anon_sym_UR_DQUOTE] = ACTIONS(3019), + [anon_sym_u8R_DQUOTE] = ACTIONS(3019), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3017), + [anon_sym_requires] = ACTIONS(3017), + [sym_this] = ACTIONS(3017), }, - [883] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [891] = { + [sym_identifier] = ACTIONS(3039), + [aux_sym_preproc_include_token1] = ACTIONS(3039), + [aux_sym_preproc_def_token1] = ACTIONS(3039), + [aux_sym_preproc_if_token1] = ACTIONS(3039), + [aux_sym_preproc_if_token2] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3039), + [sym_preproc_directive] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3041), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_AMP_AMP] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_SEMI] = ACTIONS(3041), + [anon_sym___extension__] = ACTIONS(3039), + [anon_sym_typedef] = ACTIONS(3039), + [anon_sym_extern] = ACTIONS(3039), + [anon_sym___attribute__] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3041), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3041), + [anon_sym___declspec] = ACTIONS(3039), + [anon_sym___based] = ACTIONS(3039), + [anon_sym___cdecl] = ACTIONS(3039), + [anon_sym___clrcall] = ACTIONS(3039), + [anon_sym___stdcall] = ACTIONS(3039), + [anon_sym___fastcall] = ACTIONS(3039), + [anon_sym___thiscall] = ACTIONS(3039), + [anon_sym___vectorcall] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(3041), + [anon_sym_signed] = ACTIONS(3039), + [anon_sym_unsigned] = ACTIONS(3039), + [anon_sym_long] = ACTIONS(3039), + [anon_sym_short] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_static] = ACTIONS(3039), + [anon_sym_register] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym___inline] = ACTIONS(3039), + [anon_sym___inline__] = ACTIONS(3039), + [anon_sym___forceinline] = ACTIONS(3039), + [anon_sym_thread_local] = ACTIONS(3039), + [anon_sym___thread] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(3039), + [anon_sym_constexpr] = ACTIONS(3039), + [anon_sym_volatile] = ACTIONS(3039), + [anon_sym_restrict] = ACTIONS(3039), + [anon_sym___restrict__] = ACTIONS(3039), + [anon_sym__Atomic] = ACTIONS(3039), + [anon_sym__Noreturn] = ACTIONS(3039), + [anon_sym_noreturn] = ACTIONS(3039), + [anon_sym_mutable] = ACTIONS(3039), + [anon_sym_constinit] = ACTIONS(3039), + [anon_sym_consteval] = ACTIONS(3039), + [sym_primitive_type] = ACTIONS(3039), + [anon_sym_enum] = ACTIONS(3039), + [anon_sym_class] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3039), + [anon_sym_union] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_switch] = ACTIONS(3039), + [anon_sym_case] = ACTIONS(3039), + [anon_sym_default] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_goto] = ACTIONS(3039), + [anon_sym_not] = ACTIONS(3039), + [anon_sym_compl] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3039), + [anon_sym___alignof__] = ACTIONS(3039), + [anon_sym___alignof] = ACTIONS(3039), + [anon_sym__alignof] = ACTIONS(3039), + [anon_sym_alignof] = ACTIONS(3039), + [anon_sym__Alignof] = ACTIONS(3039), + [anon_sym_offsetof] = ACTIONS(3039), + [anon_sym__Generic] = ACTIONS(3039), + [anon_sym_asm] = ACTIONS(3039), + [anon_sym___asm__] = ACTIONS(3039), + [sym_number_literal] = ACTIONS(3041), + [anon_sym_L_SQUOTE] = ACTIONS(3041), + [anon_sym_u_SQUOTE] = ACTIONS(3041), + [anon_sym_U_SQUOTE] = ACTIONS(3041), + [anon_sym_u8_SQUOTE] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_L_DQUOTE] = ACTIONS(3041), + [anon_sym_u_DQUOTE] = ACTIONS(3041), + [anon_sym_U_DQUOTE] = ACTIONS(3041), + [anon_sym_u8_DQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(3041), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [anon_sym_NULL] = ACTIONS(3039), + [anon_sym_nullptr] = ACTIONS(3039), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3039), + [anon_sym_decltype] = ACTIONS(3039), + [anon_sym_virtual] = ACTIONS(3039), + [anon_sym_alignas] = ACTIONS(3039), + [anon_sym_explicit] = ACTIONS(3039), + [anon_sym_typename] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3039), + [anon_sym_operator] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_delete] = ACTIONS(3039), + [anon_sym_throw] = ACTIONS(3039), + [anon_sym_namespace] = ACTIONS(3039), + [anon_sym_using] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3039), + [anon_sym_concept] = ACTIONS(3039), + [anon_sym_co_return] = ACTIONS(3039), + [anon_sym_co_yield] = ACTIONS(3039), + [anon_sym_R_DQUOTE] = ACTIONS(3041), + [anon_sym_LR_DQUOTE] = ACTIONS(3041), + [anon_sym_uR_DQUOTE] = ACTIONS(3041), + [anon_sym_UR_DQUOTE] = ACTIONS(3041), + [anon_sym_u8R_DQUOTE] = ACTIONS(3041), + [anon_sym_co_await] = ACTIONS(3039), + [anon_sym_new] = ACTIONS(3039), + [anon_sym_requires] = ACTIONS(3039), + [sym_this] = ACTIONS(3039), }, - [884] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [892] = { + [sym_identifier] = ACTIONS(3013), + [aux_sym_preproc_include_token1] = ACTIONS(3013), + [aux_sym_preproc_def_token1] = ACTIONS(3013), + [aux_sym_preproc_if_token1] = ACTIONS(3013), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3013), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3013), + [sym_preproc_directive] = ACTIONS(3013), + [anon_sym_LPAREN2] = ACTIONS(3015), + [anon_sym_BANG] = ACTIONS(3015), + [anon_sym_TILDE] = ACTIONS(3015), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_SEMI] = ACTIONS(3015), + [anon_sym___extension__] = ACTIONS(3013), + [anon_sym_typedef] = ACTIONS(3013), + [anon_sym_extern] = ACTIONS(3013), + [anon_sym___attribute__] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(3015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3015), + [anon_sym___declspec] = ACTIONS(3013), + [anon_sym___based] = ACTIONS(3013), + [anon_sym___cdecl] = ACTIONS(3013), + [anon_sym___clrcall] = ACTIONS(3013), + [anon_sym___stdcall] = ACTIONS(3013), + [anon_sym___fastcall] = ACTIONS(3013), + [anon_sym___thiscall] = ACTIONS(3013), + [anon_sym___vectorcall] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3015), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_signed] = ACTIONS(3013), + [anon_sym_unsigned] = ACTIONS(3013), + [anon_sym_long] = ACTIONS(3013), + [anon_sym_short] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_static] = ACTIONS(3013), + [anon_sym_register] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym___inline] = ACTIONS(3013), + [anon_sym___inline__] = ACTIONS(3013), + [anon_sym___forceinline] = ACTIONS(3013), + [anon_sym_thread_local] = ACTIONS(3013), + [anon_sym___thread] = ACTIONS(3013), + [anon_sym_const] = ACTIONS(3013), + [anon_sym_constexpr] = ACTIONS(3013), + [anon_sym_volatile] = ACTIONS(3013), + [anon_sym_restrict] = ACTIONS(3013), + [anon_sym___restrict__] = ACTIONS(3013), + [anon_sym__Atomic] = ACTIONS(3013), + [anon_sym__Noreturn] = ACTIONS(3013), + [anon_sym_noreturn] = ACTIONS(3013), + [anon_sym_mutable] = ACTIONS(3013), + [anon_sym_constinit] = ACTIONS(3013), + [anon_sym_consteval] = ACTIONS(3013), + [sym_primitive_type] = ACTIONS(3013), + [anon_sym_enum] = ACTIONS(3013), + [anon_sym_class] = ACTIONS(3013), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3013), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_while] = ACTIONS(3013), + [anon_sym_do] = ACTIONS(3013), + [anon_sym_for] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_goto] = ACTIONS(3013), + [anon_sym_not] = ACTIONS(3013), + [anon_sym_compl] = ACTIONS(3013), + [anon_sym_DASH_DASH] = ACTIONS(3015), + [anon_sym_PLUS_PLUS] = ACTIONS(3015), + [anon_sym_sizeof] = ACTIONS(3013), + [anon_sym___alignof__] = ACTIONS(3013), + [anon_sym___alignof] = ACTIONS(3013), + [anon_sym__alignof] = ACTIONS(3013), + [anon_sym_alignof] = ACTIONS(3013), + [anon_sym__Alignof] = ACTIONS(3013), + [anon_sym_offsetof] = ACTIONS(3013), + [anon_sym__Generic] = ACTIONS(3013), + [anon_sym_asm] = ACTIONS(3013), + [anon_sym___asm__] = ACTIONS(3013), + [sym_number_literal] = ACTIONS(3015), + [anon_sym_L_SQUOTE] = ACTIONS(3015), + [anon_sym_u_SQUOTE] = ACTIONS(3015), + [anon_sym_U_SQUOTE] = ACTIONS(3015), + [anon_sym_u8_SQUOTE] = ACTIONS(3015), + [anon_sym_SQUOTE] = ACTIONS(3015), + [anon_sym_L_DQUOTE] = ACTIONS(3015), + [anon_sym_u_DQUOTE] = ACTIONS(3015), + [anon_sym_U_DQUOTE] = ACTIONS(3015), + [anon_sym_u8_DQUOTE] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [anon_sym_NULL] = ACTIONS(3013), + [anon_sym_nullptr] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3013), + [anon_sym_decltype] = ACTIONS(3013), + [anon_sym_virtual] = ACTIONS(3013), + [anon_sym_alignas] = ACTIONS(3013), + [anon_sym_explicit] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3013), + [anon_sym_template] = ACTIONS(3013), + [anon_sym_operator] = ACTIONS(3013), + [anon_sym_try] = ACTIONS(3013), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_throw] = ACTIONS(3013), + [anon_sym_namespace] = ACTIONS(3013), + [anon_sym_using] = ACTIONS(3013), + [anon_sym_static_assert] = ACTIONS(3013), + [anon_sym_concept] = ACTIONS(3013), + [anon_sym_co_return] = ACTIONS(3013), + [anon_sym_co_yield] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3013), + [anon_sym_new] = ACTIONS(3013), + [anon_sym_requires] = ACTIONS(3013), + [sym_this] = ACTIONS(3013), }, - [885] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [893] = { + [sym_identifier] = ACTIONS(3031), + [aux_sym_preproc_include_token1] = ACTIONS(3031), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token2] = ACTIONS(3031), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3031), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3031), + [sym_preproc_directive] = ACTIONS(3031), + [anon_sym_LPAREN2] = ACTIONS(3033), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_TILDE] = ACTIONS(3033), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_STAR] = ACTIONS(3033), + [anon_sym_AMP_AMP] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_SEMI] = ACTIONS(3033), + [anon_sym___extension__] = ACTIONS(3031), + [anon_sym_typedef] = ACTIONS(3031), + [anon_sym_extern] = ACTIONS(3031), + [anon_sym___attribute__] = ACTIONS(3031), + [anon_sym_COLON_COLON] = ACTIONS(3033), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3033), + [anon_sym___declspec] = ACTIONS(3031), + [anon_sym___based] = ACTIONS(3031), + [anon_sym___cdecl] = ACTIONS(3031), + [anon_sym___clrcall] = ACTIONS(3031), + [anon_sym___stdcall] = ACTIONS(3031), + [anon_sym___fastcall] = ACTIONS(3031), + [anon_sym___thiscall] = ACTIONS(3031), + [anon_sym___vectorcall] = ACTIONS(3031), + [anon_sym_LBRACE] = ACTIONS(3033), + [anon_sym_signed] = ACTIONS(3031), + [anon_sym_unsigned] = ACTIONS(3031), + [anon_sym_long] = ACTIONS(3031), + [anon_sym_short] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_static] = ACTIONS(3031), + [anon_sym_register] = ACTIONS(3031), + [anon_sym_inline] = ACTIONS(3031), + [anon_sym___inline] = ACTIONS(3031), + [anon_sym___inline__] = ACTIONS(3031), + [anon_sym___forceinline] = ACTIONS(3031), + [anon_sym_thread_local] = ACTIONS(3031), + [anon_sym___thread] = ACTIONS(3031), + [anon_sym_const] = ACTIONS(3031), + [anon_sym_constexpr] = ACTIONS(3031), + [anon_sym_volatile] = ACTIONS(3031), + [anon_sym_restrict] = ACTIONS(3031), + [anon_sym___restrict__] = ACTIONS(3031), + [anon_sym__Atomic] = ACTIONS(3031), + [anon_sym__Noreturn] = ACTIONS(3031), + [anon_sym_noreturn] = ACTIONS(3031), + [anon_sym_mutable] = ACTIONS(3031), + [anon_sym_constinit] = ACTIONS(3031), + [anon_sym_consteval] = ACTIONS(3031), + [sym_primitive_type] = ACTIONS(3031), + [anon_sym_enum] = ACTIONS(3031), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3031), + [anon_sym_union] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_switch] = ACTIONS(3031), + [anon_sym_case] = ACTIONS(3031), + [anon_sym_default] = ACTIONS(3031), + [anon_sym_while] = ACTIONS(3031), + [anon_sym_do] = ACTIONS(3031), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_break] = ACTIONS(3031), + [anon_sym_continue] = ACTIONS(3031), + [anon_sym_goto] = ACTIONS(3031), + [anon_sym_not] = ACTIONS(3031), + [anon_sym_compl] = ACTIONS(3031), + [anon_sym_DASH_DASH] = ACTIONS(3033), + [anon_sym_PLUS_PLUS] = ACTIONS(3033), + [anon_sym_sizeof] = ACTIONS(3031), + [anon_sym___alignof__] = ACTIONS(3031), + [anon_sym___alignof] = ACTIONS(3031), + [anon_sym__alignof] = ACTIONS(3031), + [anon_sym_alignof] = ACTIONS(3031), + [anon_sym__Alignof] = ACTIONS(3031), + [anon_sym_offsetof] = ACTIONS(3031), + [anon_sym__Generic] = ACTIONS(3031), + [anon_sym_asm] = ACTIONS(3031), + [anon_sym___asm__] = ACTIONS(3031), + [sym_number_literal] = ACTIONS(3033), + [anon_sym_L_SQUOTE] = ACTIONS(3033), + [anon_sym_u_SQUOTE] = ACTIONS(3033), + [anon_sym_U_SQUOTE] = ACTIONS(3033), + [anon_sym_u8_SQUOTE] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3033), + [anon_sym_L_DQUOTE] = ACTIONS(3033), + [anon_sym_u_DQUOTE] = ACTIONS(3033), + [anon_sym_U_DQUOTE] = ACTIONS(3033), + [anon_sym_u8_DQUOTE] = ACTIONS(3033), + [anon_sym_DQUOTE] = ACTIONS(3033), + [sym_true] = ACTIONS(3031), + [sym_false] = ACTIONS(3031), + [anon_sym_NULL] = ACTIONS(3031), + [anon_sym_nullptr] = ACTIONS(3031), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(3031), + [anon_sym_decltype] = ACTIONS(3031), + [anon_sym_virtual] = ACTIONS(3031), + [anon_sym_alignas] = ACTIONS(3031), + [anon_sym_explicit] = ACTIONS(3031), + [anon_sym_typename] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3031), + [anon_sym_operator] = ACTIONS(3031), + [anon_sym_try] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_throw] = ACTIONS(3031), + [anon_sym_namespace] = ACTIONS(3031), + [anon_sym_using] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3031), + [anon_sym_concept] = ACTIONS(3031), + [anon_sym_co_return] = ACTIONS(3031), + [anon_sym_co_yield] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(3033), + [anon_sym_LR_DQUOTE] = ACTIONS(3033), + [anon_sym_uR_DQUOTE] = ACTIONS(3033), + [anon_sym_UR_DQUOTE] = ACTIONS(3033), + [anon_sym_u8R_DQUOTE] = ACTIONS(3033), + [anon_sym_co_await] = ACTIONS(3031), + [anon_sym_new] = ACTIONS(3031), + [anon_sym_requires] = ACTIONS(3031), + [sym_this] = ACTIONS(3031), }, - [886] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [894] = { + [sym_identifier] = ACTIONS(3009), + [aux_sym_preproc_include_token1] = ACTIONS(3009), + [aux_sym_preproc_def_token1] = ACTIONS(3009), + [aux_sym_preproc_if_token1] = ACTIONS(3009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3009), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3009), + [sym_preproc_directive] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(3011), + [anon_sym_BANG] = ACTIONS(3011), + [anon_sym_TILDE] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_AMP_AMP] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym___extension__] = ACTIONS(3009), + [anon_sym_typedef] = ACTIONS(3009), + [anon_sym_extern] = ACTIONS(3009), + [anon_sym___attribute__] = ACTIONS(3009), + [anon_sym_COLON_COLON] = ACTIONS(3011), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3011), + [anon_sym___declspec] = ACTIONS(3009), + [anon_sym___based] = ACTIONS(3009), + [anon_sym___cdecl] = ACTIONS(3009), + [anon_sym___clrcall] = ACTIONS(3009), + [anon_sym___stdcall] = ACTIONS(3009), + [anon_sym___fastcall] = ACTIONS(3009), + [anon_sym___thiscall] = ACTIONS(3009), + [anon_sym___vectorcall] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_RBRACE] = ACTIONS(3011), + [anon_sym_signed] = ACTIONS(3009), + [anon_sym_unsigned] = ACTIONS(3009), + [anon_sym_long] = ACTIONS(3009), + [anon_sym_short] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_static] = ACTIONS(3009), + [anon_sym_register] = ACTIONS(3009), + [anon_sym_inline] = ACTIONS(3009), + [anon_sym___inline] = ACTIONS(3009), + [anon_sym___inline__] = ACTIONS(3009), + [anon_sym___forceinline] = ACTIONS(3009), + [anon_sym_thread_local] = ACTIONS(3009), + [anon_sym___thread] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3009), + [anon_sym_constexpr] = ACTIONS(3009), + [anon_sym_volatile] = ACTIONS(3009), + [anon_sym_restrict] = ACTIONS(3009), + [anon_sym___restrict__] = ACTIONS(3009), + [anon_sym__Atomic] = ACTIONS(3009), + [anon_sym__Noreturn] = ACTIONS(3009), + [anon_sym_noreturn] = ACTIONS(3009), + [anon_sym_mutable] = ACTIONS(3009), + [anon_sym_constinit] = ACTIONS(3009), + [anon_sym_consteval] = ACTIONS(3009), + [sym_primitive_type] = ACTIONS(3009), + [anon_sym_enum] = ACTIONS(3009), + [anon_sym_class] = ACTIONS(3009), + [anon_sym_struct] = ACTIONS(3009), + [anon_sym_union] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_switch] = ACTIONS(3009), + [anon_sym_case] = ACTIONS(3009), + [anon_sym_default] = ACTIONS(3009), + [anon_sym_while] = ACTIONS(3009), + [anon_sym_do] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_break] = ACTIONS(3009), + [anon_sym_continue] = ACTIONS(3009), + [anon_sym_goto] = ACTIONS(3009), + [anon_sym_not] = ACTIONS(3009), + [anon_sym_compl] = ACTIONS(3009), + [anon_sym_DASH_DASH] = ACTIONS(3011), + [anon_sym_PLUS_PLUS] = ACTIONS(3011), + [anon_sym_sizeof] = ACTIONS(3009), + [anon_sym___alignof__] = ACTIONS(3009), + [anon_sym___alignof] = ACTIONS(3009), + [anon_sym__alignof] = ACTIONS(3009), + [anon_sym_alignof] = ACTIONS(3009), + [anon_sym__Alignof] = ACTIONS(3009), + [anon_sym_offsetof] = ACTIONS(3009), + [anon_sym__Generic] = ACTIONS(3009), + [anon_sym_asm] = ACTIONS(3009), + [anon_sym___asm__] = ACTIONS(3009), + [sym_number_literal] = ACTIONS(3011), + [anon_sym_L_SQUOTE] = ACTIONS(3011), + [anon_sym_u_SQUOTE] = ACTIONS(3011), + [anon_sym_U_SQUOTE] = ACTIONS(3011), + [anon_sym_u8_SQUOTE] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_L_DQUOTE] = ACTIONS(3011), + [anon_sym_u_DQUOTE] = ACTIONS(3011), + [anon_sym_U_DQUOTE] = ACTIONS(3011), + [anon_sym_u8_DQUOTE] = ACTIONS(3011), + [anon_sym_DQUOTE] = ACTIONS(3011), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3009), + [anon_sym_nullptr] = ACTIONS(3009), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3009), + [anon_sym_decltype] = ACTIONS(3009), + [anon_sym_virtual] = ACTIONS(3009), + [anon_sym_alignas] = ACTIONS(3009), + [anon_sym_explicit] = ACTIONS(3009), + [anon_sym_typename] = ACTIONS(3009), + [anon_sym_template] = ACTIONS(3009), + [anon_sym_operator] = ACTIONS(3009), + [anon_sym_try] = ACTIONS(3009), + [anon_sym_delete] = ACTIONS(3009), + [anon_sym_throw] = ACTIONS(3009), + [anon_sym_namespace] = ACTIONS(3009), + [anon_sym_using] = ACTIONS(3009), + [anon_sym_static_assert] = ACTIONS(3009), + [anon_sym_concept] = ACTIONS(3009), + [anon_sym_co_return] = ACTIONS(3009), + [anon_sym_co_yield] = ACTIONS(3009), + [anon_sym_R_DQUOTE] = ACTIONS(3011), + [anon_sym_LR_DQUOTE] = ACTIONS(3011), + [anon_sym_uR_DQUOTE] = ACTIONS(3011), + [anon_sym_UR_DQUOTE] = ACTIONS(3011), + [anon_sym_u8R_DQUOTE] = ACTIONS(3011), + [anon_sym_co_await] = ACTIONS(3009), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(3009), + [sym_this] = ACTIONS(3009), }, - [887] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [895] = { + [sym_identifier] = ACTIONS(3013), + [aux_sym_preproc_include_token1] = ACTIONS(3013), + [aux_sym_preproc_def_token1] = ACTIONS(3013), + [aux_sym_preproc_if_token1] = ACTIONS(3013), + [aux_sym_preproc_if_token2] = ACTIONS(3013), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3013), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3013), + [sym_preproc_directive] = ACTIONS(3013), + [anon_sym_LPAREN2] = ACTIONS(3015), + [anon_sym_BANG] = ACTIONS(3015), + [anon_sym_TILDE] = ACTIONS(3015), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_SEMI] = ACTIONS(3015), + [anon_sym___extension__] = ACTIONS(3013), + [anon_sym_typedef] = ACTIONS(3013), + [anon_sym_extern] = ACTIONS(3013), + [anon_sym___attribute__] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(3015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3015), + [anon_sym___declspec] = ACTIONS(3013), + [anon_sym___based] = ACTIONS(3013), + [anon_sym___cdecl] = ACTIONS(3013), + [anon_sym___clrcall] = ACTIONS(3013), + [anon_sym___stdcall] = ACTIONS(3013), + [anon_sym___fastcall] = ACTIONS(3013), + [anon_sym___thiscall] = ACTIONS(3013), + [anon_sym___vectorcall] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3015), + [anon_sym_signed] = ACTIONS(3013), + [anon_sym_unsigned] = ACTIONS(3013), + [anon_sym_long] = ACTIONS(3013), + [anon_sym_short] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_static] = ACTIONS(3013), + [anon_sym_register] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym___inline] = ACTIONS(3013), + [anon_sym___inline__] = ACTIONS(3013), + [anon_sym___forceinline] = ACTIONS(3013), + [anon_sym_thread_local] = ACTIONS(3013), + [anon_sym___thread] = ACTIONS(3013), + [anon_sym_const] = ACTIONS(3013), + [anon_sym_constexpr] = ACTIONS(3013), + [anon_sym_volatile] = ACTIONS(3013), + [anon_sym_restrict] = ACTIONS(3013), + [anon_sym___restrict__] = ACTIONS(3013), + [anon_sym__Atomic] = ACTIONS(3013), + [anon_sym__Noreturn] = ACTIONS(3013), + [anon_sym_noreturn] = ACTIONS(3013), + [anon_sym_mutable] = ACTIONS(3013), + [anon_sym_constinit] = ACTIONS(3013), + [anon_sym_consteval] = ACTIONS(3013), + [sym_primitive_type] = ACTIONS(3013), + [anon_sym_enum] = ACTIONS(3013), + [anon_sym_class] = ACTIONS(3013), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3013), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_while] = ACTIONS(3013), + [anon_sym_do] = ACTIONS(3013), + [anon_sym_for] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_goto] = ACTIONS(3013), + [anon_sym_not] = ACTIONS(3013), + [anon_sym_compl] = ACTIONS(3013), + [anon_sym_DASH_DASH] = ACTIONS(3015), + [anon_sym_PLUS_PLUS] = ACTIONS(3015), + [anon_sym_sizeof] = ACTIONS(3013), + [anon_sym___alignof__] = ACTIONS(3013), + [anon_sym___alignof] = ACTIONS(3013), + [anon_sym__alignof] = ACTIONS(3013), + [anon_sym_alignof] = ACTIONS(3013), + [anon_sym__Alignof] = ACTIONS(3013), + [anon_sym_offsetof] = ACTIONS(3013), + [anon_sym__Generic] = ACTIONS(3013), + [anon_sym_asm] = ACTIONS(3013), + [anon_sym___asm__] = ACTIONS(3013), + [sym_number_literal] = ACTIONS(3015), + [anon_sym_L_SQUOTE] = ACTIONS(3015), + [anon_sym_u_SQUOTE] = ACTIONS(3015), + [anon_sym_U_SQUOTE] = ACTIONS(3015), + [anon_sym_u8_SQUOTE] = ACTIONS(3015), + [anon_sym_SQUOTE] = ACTIONS(3015), + [anon_sym_L_DQUOTE] = ACTIONS(3015), + [anon_sym_u_DQUOTE] = ACTIONS(3015), + [anon_sym_U_DQUOTE] = ACTIONS(3015), + [anon_sym_u8_DQUOTE] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [anon_sym_NULL] = ACTIONS(3013), + [anon_sym_nullptr] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3013), + [anon_sym_decltype] = ACTIONS(3013), + [anon_sym_virtual] = ACTIONS(3013), + [anon_sym_alignas] = ACTIONS(3013), + [anon_sym_explicit] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3013), + [anon_sym_template] = ACTIONS(3013), + [anon_sym_operator] = ACTIONS(3013), + [anon_sym_try] = ACTIONS(3013), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_throw] = ACTIONS(3013), + [anon_sym_namespace] = ACTIONS(3013), + [anon_sym_using] = ACTIONS(3013), + [anon_sym_static_assert] = ACTIONS(3013), + [anon_sym_concept] = ACTIONS(3013), + [anon_sym_co_return] = ACTIONS(3013), + [anon_sym_co_yield] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3013), + [anon_sym_new] = ACTIONS(3013), + [anon_sym_requires] = ACTIONS(3013), + [sym_this] = ACTIONS(3013), }, - [888] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [896] = { + [ts_builtin_sym_end] = ACTIONS(3182), + [sym_identifier] = ACTIONS(3180), + [aux_sym_preproc_include_token1] = ACTIONS(3180), + [aux_sym_preproc_def_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3180), + [sym_preproc_directive] = ACTIONS(3180), + [anon_sym_LPAREN2] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_PLUS] = ACTIONS(3180), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym___extension__] = ACTIONS(3180), + [anon_sym_typedef] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(3180), + [anon_sym___attribute__] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3182), + [anon_sym___declspec] = ACTIONS(3180), + [anon_sym___based] = ACTIONS(3180), + [anon_sym___cdecl] = ACTIONS(3180), + [anon_sym___clrcall] = ACTIONS(3180), + [anon_sym___stdcall] = ACTIONS(3180), + [anon_sym___fastcall] = ACTIONS(3180), + [anon_sym___thiscall] = ACTIONS(3180), + [anon_sym___vectorcall] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_signed] = ACTIONS(3180), + [anon_sym_unsigned] = ACTIONS(3180), + [anon_sym_long] = ACTIONS(3180), + [anon_sym_short] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_register] = ACTIONS(3180), + [anon_sym_inline] = ACTIONS(3180), + [anon_sym___inline] = ACTIONS(3180), + [anon_sym___inline__] = ACTIONS(3180), + [anon_sym___forceinline] = ACTIONS(3180), + [anon_sym_thread_local] = ACTIONS(3180), + [anon_sym___thread] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym___restrict__] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym__Noreturn] = ACTIONS(3180), + [anon_sym_noreturn] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3180), + [anon_sym_union] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3180), + [anon_sym_case] = ACTIONS(3180), + [anon_sym_default] = ACTIONS(3180), + [anon_sym_while] = ACTIONS(3180), + [anon_sym_do] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_break] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(3180), + [anon_sym_goto] = ACTIONS(3180), + [anon_sym_not] = ACTIONS(3180), + [anon_sym_compl] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_sizeof] = ACTIONS(3180), + [anon_sym___alignof__] = ACTIONS(3180), + [anon_sym___alignof] = ACTIONS(3180), + [anon_sym__alignof] = ACTIONS(3180), + [anon_sym_alignof] = ACTIONS(3180), + [anon_sym__Alignof] = ACTIONS(3180), + [anon_sym_offsetof] = ACTIONS(3180), + [anon_sym__Generic] = ACTIONS(3180), + [anon_sym_asm] = ACTIONS(3180), + [anon_sym___asm__] = ACTIONS(3180), + [sym_number_literal] = ACTIONS(3182), + [anon_sym_L_SQUOTE] = ACTIONS(3182), + [anon_sym_u_SQUOTE] = ACTIONS(3182), + [anon_sym_U_SQUOTE] = ACTIONS(3182), + [anon_sym_u8_SQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_L_DQUOTE] = ACTIONS(3182), + [anon_sym_u_DQUOTE] = ACTIONS(3182), + [anon_sym_U_DQUOTE] = ACTIONS(3182), + [anon_sym_u8_DQUOTE] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3180), + [anon_sym_nullptr] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3180), + [anon_sym_decltype] = ACTIONS(3180), + [anon_sym_virtual] = ACTIONS(3180), + [anon_sym_alignas] = ACTIONS(3180), + [anon_sym_explicit] = ACTIONS(3180), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(3180), + [anon_sym_operator] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3180), + [anon_sym_delete] = ACTIONS(3180), + [anon_sym_throw] = ACTIONS(3180), + [anon_sym_namespace] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_static_assert] = ACTIONS(3180), + [anon_sym_concept] = ACTIONS(3180), + [anon_sym_co_return] = ACTIONS(3180), + [anon_sym_co_yield] = ACTIONS(3180), + [anon_sym_R_DQUOTE] = ACTIONS(3182), + [anon_sym_LR_DQUOTE] = ACTIONS(3182), + [anon_sym_uR_DQUOTE] = ACTIONS(3182), + [anon_sym_UR_DQUOTE] = ACTIONS(3182), + [anon_sym_u8R_DQUOTE] = ACTIONS(3182), + [anon_sym_co_await] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3180), + [anon_sym_requires] = ACTIONS(3180), + [sym_this] = ACTIONS(3180), }, - [889] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [897] = { + [ts_builtin_sym_end] = ACTIONS(2991), + [sym_identifier] = ACTIONS(2989), + [aux_sym_preproc_include_token1] = ACTIONS(2989), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), + [sym_preproc_directive] = ACTIONS(2989), + [anon_sym_LPAREN2] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym___extension__] = ACTIONS(2989), + [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_extern] = ACTIONS(2989), + [anon_sym___attribute__] = ACTIONS(2989), + [anon_sym_COLON_COLON] = ACTIONS(2991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), + [anon_sym___declspec] = ACTIONS(2989), + [anon_sym___based] = ACTIONS(2989), + [anon_sym___cdecl] = ACTIONS(2989), + [anon_sym___clrcall] = ACTIONS(2989), + [anon_sym___stdcall] = ACTIONS(2989), + [anon_sym___fastcall] = ACTIONS(2989), + [anon_sym___thiscall] = ACTIONS(2989), + [anon_sym___vectorcall] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_signed] = ACTIONS(2989), + [anon_sym_unsigned] = ACTIONS(2989), + [anon_sym_long] = ACTIONS(2989), + [anon_sym_short] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2989), + [anon_sym_static] = ACTIONS(2989), + [anon_sym_register] = ACTIONS(2989), + [anon_sym_inline] = ACTIONS(2989), + [anon_sym___inline] = ACTIONS(2989), + [anon_sym___inline__] = ACTIONS(2989), + [anon_sym___forceinline] = ACTIONS(2989), + [anon_sym_thread_local] = ACTIONS(2989), + [anon_sym___thread] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_constexpr] = ACTIONS(2989), + [anon_sym_volatile] = ACTIONS(2989), + [anon_sym_restrict] = ACTIONS(2989), + [anon_sym___restrict__] = ACTIONS(2989), + [anon_sym__Atomic] = ACTIONS(2989), + [anon_sym__Noreturn] = ACTIONS(2989), + [anon_sym_noreturn] = ACTIONS(2989), + [anon_sym_mutable] = ACTIONS(2989), + [anon_sym_constinit] = ACTIONS(2989), + [anon_sym_consteval] = ACTIONS(2989), + [sym_primitive_type] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_class] = ACTIONS(2989), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_union] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_switch] = ACTIONS(2989), + [anon_sym_case] = ACTIONS(2989), + [anon_sym_default] = ACTIONS(2989), + [anon_sym_while] = ACTIONS(2989), + [anon_sym_do] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_goto] = ACTIONS(2989), + [anon_sym_not] = ACTIONS(2989), + [anon_sym_compl] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_sizeof] = ACTIONS(2989), + [anon_sym___alignof__] = ACTIONS(2989), + [anon_sym___alignof] = ACTIONS(2989), + [anon_sym__alignof] = ACTIONS(2989), + [anon_sym_alignof] = ACTIONS(2989), + [anon_sym__Alignof] = ACTIONS(2989), + [anon_sym_offsetof] = ACTIONS(2989), + [anon_sym__Generic] = ACTIONS(2989), + [anon_sym_asm] = ACTIONS(2989), + [anon_sym___asm__] = ACTIONS(2989), + [sym_number_literal] = ACTIONS(2991), + [anon_sym_L_SQUOTE] = ACTIONS(2991), + [anon_sym_u_SQUOTE] = ACTIONS(2991), + [anon_sym_U_SQUOTE] = ACTIONS(2991), + [anon_sym_u8_SQUOTE] = ACTIONS(2991), + [anon_sym_SQUOTE] = ACTIONS(2991), + [anon_sym_L_DQUOTE] = ACTIONS(2991), + [anon_sym_u_DQUOTE] = ACTIONS(2991), + [anon_sym_U_DQUOTE] = ACTIONS(2991), + [anon_sym_u8_DQUOTE] = ACTIONS(2991), + [anon_sym_DQUOTE] = ACTIONS(2991), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [anon_sym_NULL] = ACTIONS(2989), + [anon_sym_nullptr] = ACTIONS(2989), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2989), + [anon_sym_decltype] = ACTIONS(2989), + [anon_sym_virtual] = ACTIONS(2989), + [anon_sym_alignas] = ACTIONS(2989), + [anon_sym_explicit] = ACTIONS(2989), + [anon_sym_typename] = ACTIONS(2989), + [anon_sym_template] = ACTIONS(2989), + [anon_sym_operator] = ACTIONS(2989), + [anon_sym_try] = ACTIONS(2989), + [anon_sym_delete] = ACTIONS(2989), + [anon_sym_throw] = ACTIONS(2989), + [anon_sym_namespace] = ACTIONS(2989), + [anon_sym_using] = ACTIONS(2989), + [anon_sym_static_assert] = ACTIONS(2989), + [anon_sym_concept] = ACTIONS(2989), + [anon_sym_co_return] = ACTIONS(2989), + [anon_sym_co_yield] = ACTIONS(2989), + [anon_sym_R_DQUOTE] = ACTIONS(2991), + [anon_sym_LR_DQUOTE] = ACTIONS(2991), + [anon_sym_uR_DQUOTE] = ACTIONS(2991), + [anon_sym_UR_DQUOTE] = ACTIONS(2991), + [anon_sym_u8R_DQUOTE] = ACTIONS(2991), + [anon_sym_co_await] = ACTIONS(2989), + [anon_sym_new] = ACTIONS(2989), + [anon_sym_requires] = ACTIONS(2989), + [sym_this] = ACTIONS(2989), }, - [890] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [898] = { + [sym_preproc_def] = STATE(898), + [sym_preproc_function_def] = STATE(898), + [sym_preproc_call] = STATE(898), + [sym_preproc_if_in_field_declaration_list] = STATE(898), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(898), + [sym_type_definition] = STATE(898), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5178), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(898), + [sym_field_declaration] = STATE(898), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(898), + [sym_operator_cast] = STATE(6136), + [sym_inline_method_definition] = STATE(898), + [sym__constructor_specifiers] = STATE(1777), + [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_access_specifier] = STATE(7545), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(898), + [sym_alias_declaration] = STATE(898), + [sym_static_assert_declaration] = STATE(898), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(898), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(3283), + [aux_sym_preproc_def_token1] = ACTIONS(3445), + [aux_sym_preproc_if_token1] = ACTIONS(3448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3451), + [sym_preproc_directive] = ACTIONS(3454), + [anon_sym_LPAREN2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_AMP_AMP] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym___extension__] = ACTIONS(3457), + [anon_sym_typedef] = ACTIONS(3460), + [anon_sym_extern] = ACTIONS(3321), + [anon_sym___attribute__] = ACTIONS(3324), + [anon_sym_COLON_COLON] = ACTIONS(3327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3330), + [anon_sym___declspec] = ACTIONS(3333), + [anon_sym___based] = ACTIONS(3336), + [anon_sym_RBRACE] = ACTIONS(3463), + [anon_sym_signed] = ACTIONS(3339), + [anon_sym_unsigned] = ACTIONS(3339), + [anon_sym_long] = ACTIONS(3339), + [anon_sym_short] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3321), + [anon_sym_register] = ACTIONS(3321), + [anon_sym_inline] = ACTIONS(3321), + [anon_sym___inline] = ACTIONS(3321), + [anon_sym___inline__] = ACTIONS(3321), + [anon_sym___forceinline] = ACTIONS(3321), + [anon_sym_thread_local] = ACTIONS(3321), + [anon_sym___thread] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3345), + [anon_sym_constexpr] = ACTIONS(3345), + [anon_sym_volatile] = ACTIONS(3345), + [anon_sym_restrict] = ACTIONS(3345), + [anon_sym___restrict__] = ACTIONS(3345), + [anon_sym__Atomic] = ACTIONS(3345), + [anon_sym__Noreturn] = ACTIONS(3345), + [anon_sym_noreturn] = ACTIONS(3345), + [anon_sym_mutable] = ACTIONS(3345), + [anon_sym_constinit] = ACTIONS(3345), + [anon_sym_consteval] = ACTIONS(3345), + [sym_primitive_type] = ACTIONS(3348), + [anon_sym_enum] = ACTIONS(3351), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3357), + [anon_sym_union] = ACTIONS(3360), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3363), + [anon_sym_decltype] = ACTIONS(3366), + [anon_sym_virtual] = ACTIONS(3369), + [anon_sym_alignas] = ACTIONS(3372), + [anon_sym_explicit] = ACTIONS(3375), + [anon_sym_typename] = ACTIONS(3378), + [anon_sym_template] = ACTIONS(3465), + [anon_sym_operator] = ACTIONS(3384), + [anon_sym_friend] = ACTIONS(3468), + [anon_sym_public] = ACTIONS(3390), + [anon_sym_private] = ACTIONS(3390), + [anon_sym_protected] = ACTIONS(3390), + [anon_sym_using] = ACTIONS(3471), + [anon_sym_static_assert] = ACTIONS(3474), + }, + [899] = { + [ts_builtin_sym_end] = ACTIONS(3023), + [sym_identifier] = ACTIONS(3021), + [aux_sym_preproc_include_token1] = ACTIONS(3021), + [aux_sym_preproc_def_token1] = ACTIONS(3021), + [aux_sym_preproc_if_token1] = ACTIONS(3021), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3021), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3021), + [sym_preproc_directive] = ACTIONS(3021), + [anon_sym_LPAREN2] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3021), + [anon_sym_PLUS] = ACTIONS(3021), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3021), + [anon_sym___extension__] = ACTIONS(3021), + [anon_sym_typedef] = ACTIONS(3021), + [anon_sym_extern] = ACTIONS(3021), + [anon_sym___attribute__] = ACTIONS(3021), + [anon_sym_COLON_COLON] = ACTIONS(3023), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3023), + [anon_sym___declspec] = ACTIONS(3021), + [anon_sym___based] = ACTIONS(3021), + [anon_sym___cdecl] = ACTIONS(3021), + [anon_sym___clrcall] = ACTIONS(3021), + [anon_sym___stdcall] = ACTIONS(3021), + [anon_sym___fastcall] = ACTIONS(3021), + [anon_sym___thiscall] = ACTIONS(3021), + [anon_sym___vectorcall] = ACTIONS(3021), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_signed] = ACTIONS(3021), + [anon_sym_unsigned] = ACTIONS(3021), + [anon_sym_long] = ACTIONS(3021), + [anon_sym_short] = ACTIONS(3021), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_static] = ACTIONS(3021), + [anon_sym_register] = ACTIONS(3021), + [anon_sym_inline] = ACTIONS(3021), + [anon_sym___inline] = ACTIONS(3021), + [anon_sym___inline__] = ACTIONS(3021), + [anon_sym___forceinline] = ACTIONS(3021), + [anon_sym_thread_local] = ACTIONS(3021), + [anon_sym___thread] = ACTIONS(3021), + [anon_sym_const] = ACTIONS(3021), + [anon_sym_constexpr] = ACTIONS(3021), + [anon_sym_volatile] = ACTIONS(3021), + [anon_sym_restrict] = ACTIONS(3021), + [anon_sym___restrict__] = ACTIONS(3021), + [anon_sym__Atomic] = ACTIONS(3021), + [anon_sym__Noreturn] = ACTIONS(3021), + [anon_sym_noreturn] = ACTIONS(3021), + [anon_sym_mutable] = ACTIONS(3021), + [anon_sym_constinit] = ACTIONS(3021), + [anon_sym_consteval] = ACTIONS(3021), + [sym_primitive_type] = ACTIONS(3021), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3021), + [anon_sym_struct] = ACTIONS(3021), + [anon_sym_union] = ACTIONS(3021), + [anon_sym_if] = ACTIONS(3021), + [anon_sym_switch] = ACTIONS(3021), + [anon_sym_case] = ACTIONS(3021), + [anon_sym_default] = ACTIONS(3021), + [anon_sym_while] = ACTIONS(3021), + [anon_sym_do] = ACTIONS(3021), + [anon_sym_for] = ACTIONS(3021), + [anon_sym_return] = ACTIONS(3021), + [anon_sym_break] = ACTIONS(3021), + [anon_sym_continue] = ACTIONS(3021), + [anon_sym_goto] = ACTIONS(3021), + [anon_sym_not] = ACTIONS(3021), + [anon_sym_compl] = ACTIONS(3021), + [anon_sym_DASH_DASH] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(3023), + [anon_sym_sizeof] = ACTIONS(3021), + [anon_sym___alignof__] = ACTIONS(3021), + [anon_sym___alignof] = ACTIONS(3021), + [anon_sym__alignof] = ACTIONS(3021), + [anon_sym_alignof] = ACTIONS(3021), + [anon_sym__Alignof] = ACTIONS(3021), + [anon_sym_offsetof] = ACTIONS(3021), + [anon_sym__Generic] = ACTIONS(3021), + [anon_sym_asm] = ACTIONS(3021), + [anon_sym___asm__] = ACTIONS(3021), + [sym_number_literal] = ACTIONS(3023), + [anon_sym_L_SQUOTE] = ACTIONS(3023), + [anon_sym_u_SQUOTE] = ACTIONS(3023), + [anon_sym_U_SQUOTE] = ACTIONS(3023), + [anon_sym_u8_SQUOTE] = ACTIONS(3023), + [anon_sym_SQUOTE] = ACTIONS(3023), + [anon_sym_L_DQUOTE] = ACTIONS(3023), + [anon_sym_u_DQUOTE] = ACTIONS(3023), + [anon_sym_U_DQUOTE] = ACTIONS(3023), + [anon_sym_u8_DQUOTE] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(3023), + [sym_true] = ACTIONS(3021), + [sym_false] = ACTIONS(3021), + [anon_sym_NULL] = ACTIONS(3021), + [anon_sym_nullptr] = ACTIONS(3021), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3021), + [anon_sym_decltype] = ACTIONS(3021), + [anon_sym_virtual] = ACTIONS(3021), + [anon_sym_alignas] = ACTIONS(3021), + [anon_sym_explicit] = ACTIONS(3021), + [anon_sym_typename] = ACTIONS(3021), + [anon_sym_template] = ACTIONS(3021), + [anon_sym_operator] = ACTIONS(3021), + [anon_sym_try] = ACTIONS(3021), + [anon_sym_delete] = ACTIONS(3021), + [anon_sym_throw] = ACTIONS(3021), + [anon_sym_namespace] = ACTIONS(3021), + [anon_sym_using] = ACTIONS(3021), + [anon_sym_static_assert] = ACTIONS(3021), + [anon_sym_concept] = ACTIONS(3021), + [anon_sym_co_return] = ACTIONS(3021), + [anon_sym_co_yield] = ACTIONS(3021), + [anon_sym_R_DQUOTE] = ACTIONS(3023), + [anon_sym_LR_DQUOTE] = ACTIONS(3023), + [anon_sym_uR_DQUOTE] = ACTIONS(3023), + [anon_sym_UR_DQUOTE] = ACTIONS(3023), + [anon_sym_u8R_DQUOTE] = ACTIONS(3023), + [anon_sym_co_await] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3021), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3021), + }, + [900] = { + [sym_preproc_def] = STATE(935), + [sym_preproc_function_def] = STATE(935), + [sym_preproc_call] = STATE(935), + [sym_preproc_if_in_field_declaration_list] = STATE(935), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(935), + [sym_type_definition] = STATE(935), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5159), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5758), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(935), + [sym_field_declaration] = STATE(935), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1783), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(935), + [sym_operator_cast] = STATE(6134), + [sym_inline_method_definition] = STATE(935), + [sym__constructor_specifiers] = STATE(1783), + [sym_operator_cast_definition] = STATE(935), + [sym_operator_cast_declaration] = STATE(935), + [sym_constructor_or_destructor_definition] = STATE(935), + [sym_constructor_or_destructor_declaration] = STATE(935), + [sym_friend_declaration] = STATE(935), + [sym_access_specifier] = STATE(7375), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(935), + [sym_alias_declaration] = STATE(935), + [sym_static_assert_declaration] = STATE(935), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6134), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(935), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3477), + [aux_sym_preproc_if_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token2] = ACTIONS(3481), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3487), + [anon_sym_typedef] = ACTIONS(3489), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3495), + [anon_sym_static_assert] = ACTIONS(3497), }, - [891] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [901] = { + [sym_preproc_def] = STATE(965), + [sym_preproc_function_def] = STATE(965), + [sym_preproc_call] = STATE(965), + [sym_preproc_if_in_field_declaration_list] = STATE(965), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(965), + [sym_type_definition] = STATE(965), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5178), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(965), + [sym_field_declaration] = STATE(965), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(965), + [sym_operator_cast] = STATE(6136), + [sym_inline_method_definition] = STATE(965), + [sym__constructor_specifiers] = STATE(1777), + [sym_operator_cast_definition] = STATE(965), + [sym_operator_cast_declaration] = STATE(965), + [sym_constructor_or_destructor_definition] = STATE(965), + [sym_constructor_or_destructor_declaration] = STATE(965), + [sym_friend_declaration] = STATE(965), + [sym_access_specifier] = STATE(7545), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(965), + [sym_alias_declaration] = STATE(965), + [sym_static_assert_declaration] = STATE(965), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(965), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3501), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3505), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3507), + [anon_sym_typedef] = ACTIONS(3509), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3511), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3515), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3517), + [anon_sym_static_assert] = ACTIONS(3519), }, - [892] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [902] = { + [ts_builtin_sym_end] = ACTIONS(3045), + [sym_identifier] = ACTIONS(3043), + [aux_sym_preproc_include_token1] = ACTIONS(3043), + [aux_sym_preproc_def_token1] = ACTIONS(3043), + [aux_sym_preproc_if_token1] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym___extension__] = ACTIONS(3043), + [anon_sym_typedef] = ACTIONS(3043), + [anon_sym_extern] = ACTIONS(3043), + [anon_sym___attribute__] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3045), + [anon_sym___declspec] = ACTIONS(3043), + [anon_sym___based] = ACTIONS(3043), + [anon_sym___cdecl] = ACTIONS(3043), + [anon_sym___clrcall] = ACTIONS(3043), + [anon_sym___stdcall] = ACTIONS(3043), + [anon_sym___fastcall] = ACTIONS(3043), + [anon_sym___thiscall] = ACTIONS(3043), + [anon_sym___vectorcall] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_signed] = ACTIONS(3043), + [anon_sym_unsigned] = ACTIONS(3043), + [anon_sym_long] = ACTIONS(3043), + [anon_sym_short] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_static] = ACTIONS(3043), + [anon_sym_register] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym___inline] = ACTIONS(3043), + [anon_sym___inline__] = ACTIONS(3043), + [anon_sym___forceinline] = ACTIONS(3043), + [anon_sym_thread_local] = ACTIONS(3043), + [anon_sym___thread] = ACTIONS(3043), + [anon_sym_const] = ACTIONS(3043), + [anon_sym_constexpr] = ACTIONS(3043), + [anon_sym_volatile] = ACTIONS(3043), + [anon_sym_restrict] = ACTIONS(3043), + [anon_sym___restrict__] = ACTIONS(3043), + [anon_sym__Atomic] = ACTIONS(3043), + [anon_sym__Noreturn] = ACTIONS(3043), + [anon_sym_noreturn] = ACTIONS(3043), + [anon_sym_mutable] = ACTIONS(3043), + [anon_sym_constinit] = ACTIONS(3043), + [anon_sym_consteval] = ACTIONS(3043), + [sym_primitive_type] = ACTIONS(3043), + [anon_sym_enum] = ACTIONS(3043), + [anon_sym_class] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3043), + [anon_sym_union] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_switch] = ACTIONS(3043), + [anon_sym_case] = ACTIONS(3043), + [anon_sym_default] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_do] = ACTIONS(3043), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_goto] = ACTIONS(3043), + [anon_sym_not] = ACTIONS(3043), + [anon_sym_compl] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_sizeof] = ACTIONS(3043), + [anon_sym___alignof__] = ACTIONS(3043), + [anon_sym___alignof] = ACTIONS(3043), + [anon_sym__alignof] = ACTIONS(3043), + [anon_sym_alignof] = ACTIONS(3043), + [anon_sym__Alignof] = ACTIONS(3043), + [anon_sym_offsetof] = ACTIONS(3043), + [anon_sym__Generic] = ACTIONS(3043), + [anon_sym_asm] = ACTIONS(3043), + [anon_sym___asm__] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(3045), + [anon_sym_L_SQUOTE] = ACTIONS(3045), + [anon_sym_u_SQUOTE] = ACTIONS(3045), + [anon_sym_U_SQUOTE] = ACTIONS(3045), + [anon_sym_u8_SQUOTE] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_L_DQUOTE] = ACTIONS(3045), + [anon_sym_u_DQUOTE] = ACTIONS(3045), + [anon_sym_U_DQUOTE] = ACTIONS(3045), + [anon_sym_u8_DQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [sym_true] = ACTIONS(3043), + [sym_false] = ACTIONS(3043), + [anon_sym_NULL] = ACTIONS(3043), + [anon_sym_nullptr] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3043), + [anon_sym_decltype] = ACTIONS(3043), + [anon_sym_virtual] = ACTIONS(3043), + [anon_sym_alignas] = ACTIONS(3043), + [anon_sym_explicit] = ACTIONS(3043), + [anon_sym_typename] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_delete] = ACTIONS(3043), + [anon_sym_throw] = ACTIONS(3043), + [anon_sym_namespace] = ACTIONS(3043), + [anon_sym_using] = ACTIONS(3043), + [anon_sym_static_assert] = ACTIONS(3043), + [anon_sym_concept] = ACTIONS(3043), + [anon_sym_co_return] = ACTIONS(3043), + [anon_sym_co_yield] = ACTIONS(3043), + [anon_sym_R_DQUOTE] = ACTIONS(3045), + [anon_sym_LR_DQUOTE] = ACTIONS(3045), + [anon_sym_uR_DQUOTE] = ACTIONS(3045), + [anon_sym_UR_DQUOTE] = ACTIONS(3045), + [anon_sym_u8R_DQUOTE] = ACTIONS(3045), + [anon_sym_co_await] = ACTIONS(3043), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_requires] = ACTIONS(3043), + [sym_this] = ACTIONS(3043), + }, + [903] = { + [ts_builtin_sym_end] = ACTIONS(3019), + [sym_identifier] = ACTIONS(3017), + [aux_sym_preproc_include_token1] = ACTIONS(3017), + [aux_sym_preproc_def_token1] = ACTIONS(3017), + [aux_sym_preproc_if_token1] = ACTIONS(3017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3017), + [sym_preproc_directive] = ACTIONS(3017), + [anon_sym_LPAREN2] = ACTIONS(3019), + [anon_sym_BANG] = ACTIONS(3019), + [anon_sym_TILDE] = ACTIONS(3019), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_AMP] = ACTIONS(3017), + [anon_sym___extension__] = ACTIONS(3017), + [anon_sym_typedef] = ACTIONS(3017), + [anon_sym_extern] = ACTIONS(3017), + [anon_sym___attribute__] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(3019), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3019), + [anon_sym___declspec] = ACTIONS(3017), + [anon_sym___based] = ACTIONS(3017), + [anon_sym___cdecl] = ACTIONS(3017), + [anon_sym___clrcall] = ACTIONS(3017), + [anon_sym___stdcall] = ACTIONS(3017), + [anon_sym___fastcall] = ACTIONS(3017), + [anon_sym___thiscall] = ACTIONS(3017), + [anon_sym___vectorcall] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3019), + [anon_sym_signed] = ACTIONS(3017), + [anon_sym_unsigned] = ACTIONS(3017), + [anon_sym_long] = ACTIONS(3017), + [anon_sym_short] = ACTIONS(3017), + [anon_sym_LBRACK] = ACTIONS(3017), + [anon_sym_static] = ACTIONS(3017), + [anon_sym_register] = ACTIONS(3017), + [anon_sym_inline] = ACTIONS(3017), + [anon_sym___inline] = ACTIONS(3017), + [anon_sym___inline__] = ACTIONS(3017), + [anon_sym___forceinline] = ACTIONS(3017), + [anon_sym_thread_local] = ACTIONS(3017), + [anon_sym___thread] = ACTIONS(3017), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_constexpr] = ACTIONS(3017), + [anon_sym_volatile] = ACTIONS(3017), + [anon_sym_restrict] = ACTIONS(3017), + [anon_sym___restrict__] = ACTIONS(3017), + [anon_sym__Atomic] = ACTIONS(3017), + [anon_sym__Noreturn] = ACTIONS(3017), + [anon_sym_noreturn] = ACTIONS(3017), + [anon_sym_mutable] = ACTIONS(3017), + [anon_sym_constinit] = ACTIONS(3017), + [anon_sym_consteval] = ACTIONS(3017), + [sym_primitive_type] = ACTIONS(3017), + [anon_sym_enum] = ACTIONS(3017), + [anon_sym_class] = ACTIONS(3017), + [anon_sym_struct] = ACTIONS(3017), + [anon_sym_union] = ACTIONS(3017), + [anon_sym_if] = ACTIONS(3017), + [anon_sym_switch] = ACTIONS(3017), + [anon_sym_case] = ACTIONS(3017), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3017), + [anon_sym_do] = ACTIONS(3017), + [anon_sym_for] = ACTIONS(3017), + [anon_sym_return] = ACTIONS(3017), + [anon_sym_break] = ACTIONS(3017), + [anon_sym_continue] = ACTIONS(3017), + [anon_sym_goto] = ACTIONS(3017), + [anon_sym_not] = ACTIONS(3017), + [anon_sym_compl] = ACTIONS(3017), + [anon_sym_DASH_DASH] = ACTIONS(3019), + [anon_sym_PLUS_PLUS] = ACTIONS(3019), + [anon_sym_sizeof] = ACTIONS(3017), + [anon_sym___alignof__] = ACTIONS(3017), + [anon_sym___alignof] = ACTIONS(3017), + [anon_sym__alignof] = ACTIONS(3017), + [anon_sym_alignof] = ACTIONS(3017), + [anon_sym__Alignof] = ACTIONS(3017), + [anon_sym_offsetof] = ACTIONS(3017), + [anon_sym__Generic] = ACTIONS(3017), + [anon_sym_asm] = ACTIONS(3017), + [anon_sym___asm__] = ACTIONS(3017), + [sym_number_literal] = ACTIONS(3019), + [anon_sym_L_SQUOTE] = ACTIONS(3019), + [anon_sym_u_SQUOTE] = ACTIONS(3019), + [anon_sym_U_SQUOTE] = ACTIONS(3019), + [anon_sym_u8_SQUOTE] = ACTIONS(3019), + [anon_sym_SQUOTE] = ACTIONS(3019), + [anon_sym_L_DQUOTE] = ACTIONS(3019), + [anon_sym_u_DQUOTE] = ACTIONS(3019), + [anon_sym_U_DQUOTE] = ACTIONS(3019), + [anon_sym_u8_DQUOTE] = ACTIONS(3019), + [anon_sym_DQUOTE] = ACTIONS(3019), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [anon_sym_NULL] = ACTIONS(3017), + [anon_sym_nullptr] = ACTIONS(3017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3017), + [anon_sym_decltype] = ACTIONS(3017), + [anon_sym_virtual] = ACTIONS(3017), + [anon_sym_alignas] = ACTIONS(3017), + [anon_sym_explicit] = ACTIONS(3017), + [anon_sym_typename] = ACTIONS(3017), + [anon_sym_template] = ACTIONS(3017), + [anon_sym_operator] = ACTIONS(3017), + [anon_sym_try] = ACTIONS(3017), + [anon_sym_delete] = ACTIONS(3017), + [anon_sym_throw] = ACTIONS(3017), + [anon_sym_namespace] = ACTIONS(3017), + [anon_sym_using] = ACTIONS(3017), + [anon_sym_static_assert] = ACTIONS(3017), + [anon_sym_concept] = ACTIONS(3017), + [anon_sym_co_return] = ACTIONS(3017), + [anon_sym_co_yield] = ACTIONS(3017), + [anon_sym_R_DQUOTE] = ACTIONS(3019), + [anon_sym_LR_DQUOTE] = ACTIONS(3019), + [anon_sym_uR_DQUOTE] = ACTIONS(3019), + [anon_sym_UR_DQUOTE] = ACTIONS(3019), + [anon_sym_u8R_DQUOTE] = ACTIONS(3019), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3017), + [anon_sym_requires] = ACTIONS(3017), + [sym_this] = ACTIONS(3017), + }, + [904] = { + [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___extension__] = ACTIONS(3051), + [anon_sym_typedef] = ACTIONS(3051), + [anon_sym_extern] = ACTIONS(3051), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3051), + [anon_sym_constinit] = ACTIONS(3051), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3051), + [anon_sym_alignas] = 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_using] = 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), + }, + [905] = { + [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___extension__] = ACTIONS(3055), + [anon_sym_typedef] = ACTIONS(3055), + [anon_sym_extern] = ACTIONS(3055), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3055), + [anon_sym_constinit] = ACTIONS(3055), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3055), + [anon_sym_alignas] = 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_using] = 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), + }, + [906] = { + [ts_builtin_sym_end] = ACTIONS(3186), + [sym_identifier] = ACTIONS(3184), + [aux_sym_preproc_include_token1] = ACTIONS(3184), + [aux_sym_preproc_def_token1] = ACTIONS(3184), + [aux_sym_preproc_if_token1] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym___extension__] = ACTIONS(3184), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym___attribute__] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3186), + [anon_sym___declspec] = ACTIONS(3184), + [anon_sym___based] = ACTIONS(3184), + [anon_sym___cdecl] = ACTIONS(3184), + [anon_sym___clrcall] = ACTIONS(3184), + [anon_sym___stdcall] = ACTIONS(3184), + [anon_sym___fastcall] = ACTIONS(3184), + [anon_sym___thiscall] = ACTIONS(3184), + [anon_sym___vectorcall] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_signed] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym___inline] = ACTIONS(3184), + [anon_sym___inline__] = ACTIONS(3184), + [anon_sym___forceinline] = ACTIONS(3184), + [anon_sym_thread_local] = ACTIONS(3184), + [anon_sym___thread] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym___restrict__] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym__Noreturn] = ACTIONS(3184), + [anon_sym_noreturn] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_constinit] = ACTIONS(3184), + [anon_sym_consteval] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_class] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3184), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_goto] = ACTIONS(3184), + [anon_sym_not] = ACTIONS(3184), + [anon_sym_compl] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_sizeof] = ACTIONS(3184), + [anon_sym___alignof__] = ACTIONS(3184), + [anon_sym___alignof] = ACTIONS(3184), + [anon_sym__alignof] = ACTIONS(3184), + [anon_sym_alignof] = ACTIONS(3184), + [anon_sym__Alignof] = ACTIONS(3184), + [anon_sym_offsetof] = ACTIONS(3184), + [anon_sym__Generic] = ACTIONS(3184), + [anon_sym_asm] = ACTIONS(3184), + [anon_sym___asm__] = ACTIONS(3184), + [sym_number_literal] = ACTIONS(3186), + [anon_sym_L_SQUOTE] = ACTIONS(3186), + [anon_sym_u_SQUOTE] = ACTIONS(3186), + [anon_sym_U_SQUOTE] = ACTIONS(3186), + [anon_sym_u8_SQUOTE] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_L_DQUOTE] = ACTIONS(3186), + [anon_sym_u_DQUOTE] = ACTIONS(3186), + [anon_sym_U_DQUOTE] = ACTIONS(3186), + [anon_sym_u8_DQUOTE] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [anon_sym_NULL] = ACTIONS(3184), + [anon_sym_nullptr] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3184), + [anon_sym_virtual] = ACTIONS(3184), + [anon_sym_alignas] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [anon_sym_template] = ACTIONS(3184), + [anon_sym_operator] = ACTIONS(3184), + [anon_sym_try] = ACTIONS(3184), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_throw] = ACTIONS(3184), + [anon_sym_namespace] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_static_assert] = ACTIONS(3184), + [anon_sym_concept] = ACTIONS(3184), + [anon_sym_co_return] = ACTIONS(3184), + [anon_sym_co_yield] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_requires] = ACTIONS(3184), + [sym_this] = ACTIONS(3184), + }, + [907] = { + [ts_builtin_sym_end] = ACTIONS(3190), + [sym_identifier] = ACTIONS(3188), + [aux_sym_preproc_include_token1] = ACTIONS(3188), + [aux_sym_preproc_def_token1] = ACTIONS(3188), + [aux_sym_preproc_if_token1] = ACTIONS(3188), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3188), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3188), + [sym_preproc_directive] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(3190), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_AMP_AMP] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym___extension__] = ACTIONS(3188), + [anon_sym_typedef] = ACTIONS(3188), + [anon_sym_extern] = ACTIONS(3188), + [anon_sym___attribute__] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3190), + [anon_sym___declspec] = ACTIONS(3188), + [anon_sym___based] = ACTIONS(3188), + [anon_sym___cdecl] = ACTIONS(3188), + [anon_sym___clrcall] = ACTIONS(3188), + [anon_sym___stdcall] = ACTIONS(3188), + [anon_sym___fastcall] = ACTIONS(3188), + [anon_sym___thiscall] = ACTIONS(3188), + [anon_sym___vectorcall] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_signed] = ACTIONS(3188), + [anon_sym_unsigned] = ACTIONS(3188), + [anon_sym_long] = ACTIONS(3188), + [anon_sym_short] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_register] = ACTIONS(3188), + [anon_sym_inline] = ACTIONS(3188), + [anon_sym___inline] = ACTIONS(3188), + [anon_sym___inline__] = ACTIONS(3188), + [anon_sym___forceinline] = ACTIONS(3188), + [anon_sym_thread_local] = ACTIONS(3188), + [anon_sym___thread] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_constexpr] = ACTIONS(3188), + [anon_sym_volatile] = ACTIONS(3188), + [anon_sym_restrict] = ACTIONS(3188), + [anon_sym___restrict__] = ACTIONS(3188), + [anon_sym__Atomic] = ACTIONS(3188), + [anon_sym__Noreturn] = ACTIONS(3188), + [anon_sym_noreturn] = ACTIONS(3188), + [anon_sym_mutable] = ACTIONS(3188), + [anon_sym_constinit] = ACTIONS(3188), + [anon_sym_consteval] = ACTIONS(3188), + [sym_primitive_type] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_struct] = ACTIONS(3188), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3188), + [anon_sym_case] = ACTIONS(3188), + [anon_sym_default] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_break] = ACTIONS(3188), + [anon_sym_continue] = ACTIONS(3188), + [anon_sym_goto] = ACTIONS(3188), + [anon_sym_not] = ACTIONS(3188), + [anon_sym_compl] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3190), + [anon_sym_PLUS_PLUS] = ACTIONS(3190), + [anon_sym_sizeof] = ACTIONS(3188), + [anon_sym___alignof__] = ACTIONS(3188), + [anon_sym___alignof] = ACTIONS(3188), + [anon_sym__alignof] = ACTIONS(3188), + [anon_sym_alignof] = ACTIONS(3188), + [anon_sym__Alignof] = ACTIONS(3188), + [anon_sym_offsetof] = ACTIONS(3188), + [anon_sym__Generic] = ACTIONS(3188), + [anon_sym_asm] = ACTIONS(3188), + [anon_sym___asm__] = ACTIONS(3188), + [sym_number_literal] = ACTIONS(3190), + [anon_sym_L_SQUOTE] = ACTIONS(3190), + [anon_sym_u_SQUOTE] = ACTIONS(3190), + [anon_sym_U_SQUOTE] = ACTIONS(3190), + [anon_sym_u8_SQUOTE] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3190), + [anon_sym_L_DQUOTE] = ACTIONS(3190), + [anon_sym_u_DQUOTE] = ACTIONS(3190), + [anon_sym_U_DQUOTE] = ACTIONS(3190), + [anon_sym_u8_DQUOTE] = ACTIONS(3190), + [anon_sym_DQUOTE] = ACTIONS(3190), + [sym_true] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [anon_sym_NULL] = ACTIONS(3188), + [anon_sym_nullptr] = ACTIONS(3188), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3188), + [anon_sym_decltype] = ACTIONS(3188), + [anon_sym_virtual] = ACTIONS(3188), + [anon_sym_alignas] = ACTIONS(3188), + [anon_sym_explicit] = ACTIONS(3188), + [anon_sym_typename] = ACTIONS(3188), + [anon_sym_template] = ACTIONS(3188), + [anon_sym_operator] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_throw] = ACTIONS(3188), + [anon_sym_namespace] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3188), + [anon_sym_static_assert] = ACTIONS(3188), + [anon_sym_concept] = ACTIONS(3188), + [anon_sym_co_return] = ACTIONS(3188), + [anon_sym_co_yield] = ACTIONS(3188), + [anon_sym_R_DQUOTE] = ACTIONS(3190), + [anon_sym_LR_DQUOTE] = ACTIONS(3190), + [anon_sym_uR_DQUOTE] = ACTIONS(3190), + [anon_sym_UR_DQUOTE] = ACTIONS(3190), + [anon_sym_u8R_DQUOTE] = ACTIONS(3190), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_requires] = ACTIONS(3188), + [sym_this] = ACTIONS(3188), + }, + [908] = { + [ts_builtin_sym_end] = ACTIONS(3218), + [sym_identifier] = ACTIONS(3216), + [aux_sym_preproc_include_token1] = ACTIONS(3216), + [aux_sym_preproc_def_token1] = ACTIONS(3216), + [aux_sym_preproc_if_token1] = ACTIONS(3216), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3216), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3216), + [sym_preproc_directive] = ACTIONS(3216), + [anon_sym_LPAREN2] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym___extension__] = ACTIONS(3216), + [anon_sym_typedef] = ACTIONS(3216), + [anon_sym_extern] = ACTIONS(3216), + [anon_sym___attribute__] = ACTIONS(3216), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3218), + [anon_sym___declspec] = ACTIONS(3216), + [anon_sym___based] = ACTIONS(3216), + [anon_sym___cdecl] = ACTIONS(3216), + [anon_sym___clrcall] = ACTIONS(3216), + [anon_sym___stdcall] = ACTIONS(3216), + [anon_sym___fastcall] = ACTIONS(3216), + [anon_sym___thiscall] = ACTIONS(3216), + [anon_sym___vectorcall] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_signed] = ACTIONS(3216), + [anon_sym_unsigned] = ACTIONS(3216), + [anon_sym_long] = ACTIONS(3216), + [anon_sym_short] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_static] = ACTIONS(3216), + [anon_sym_register] = ACTIONS(3216), + [anon_sym_inline] = ACTIONS(3216), + [anon_sym___inline] = ACTIONS(3216), + [anon_sym___inline__] = ACTIONS(3216), + [anon_sym___forceinline] = ACTIONS(3216), + [anon_sym_thread_local] = ACTIONS(3216), + [anon_sym___thread] = ACTIONS(3216), + [anon_sym_const] = ACTIONS(3216), + [anon_sym_constexpr] = ACTIONS(3216), + [anon_sym_volatile] = ACTIONS(3216), + [anon_sym_restrict] = ACTIONS(3216), + [anon_sym___restrict__] = ACTIONS(3216), + [anon_sym__Atomic] = ACTIONS(3216), + [anon_sym__Noreturn] = ACTIONS(3216), + [anon_sym_noreturn] = ACTIONS(3216), + [anon_sym_mutable] = ACTIONS(3216), + [anon_sym_constinit] = ACTIONS(3216), + [anon_sym_consteval] = ACTIONS(3216), + [sym_primitive_type] = ACTIONS(3216), + [anon_sym_enum] = ACTIONS(3216), + [anon_sym_class] = ACTIONS(3216), + [anon_sym_struct] = ACTIONS(3216), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_if] = ACTIONS(3216), + [anon_sym_switch] = ACTIONS(3216), + [anon_sym_case] = ACTIONS(3216), + [anon_sym_default] = ACTIONS(3216), + [anon_sym_while] = ACTIONS(3216), + [anon_sym_do] = ACTIONS(3216), + [anon_sym_for] = ACTIONS(3216), + [anon_sym_return] = ACTIONS(3216), + [anon_sym_break] = ACTIONS(3216), + [anon_sym_continue] = ACTIONS(3216), + [anon_sym_goto] = ACTIONS(3216), + [anon_sym_not] = ACTIONS(3216), + [anon_sym_compl] = ACTIONS(3216), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_sizeof] = ACTIONS(3216), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3216), + [anon_sym__Generic] = ACTIONS(3216), + [anon_sym_asm] = ACTIONS(3216), + [anon_sym___asm__] = ACTIONS(3216), + [sym_number_literal] = ACTIONS(3218), + [anon_sym_L_SQUOTE] = ACTIONS(3218), + [anon_sym_u_SQUOTE] = ACTIONS(3218), + [anon_sym_U_SQUOTE] = ACTIONS(3218), + [anon_sym_u8_SQUOTE] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3218), + [anon_sym_L_DQUOTE] = ACTIONS(3218), + [anon_sym_u_DQUOTE] = ACTIONS(3218), + [anon_sym_U_DQUOTE] = ACTIONS(3218), + [anon_sym_u8_DQUOTE] = ACTIONS(3218), + [anon_sym_DQUOTE] = ACTIONS(3218), + [sym_true] = ACTIONS(3216), + [sym_false] = ACTIONS(3216), + [anon_sym_NULL] = ACTIONS(3216), + [anon_sym_nullptr] = ACTIONS(3216), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3216), + [anon_sym_decltype] = ACTIONS(3216), + [anon_sym_virtual] = ACTIONS(3216), + [anon_sym_alignas] = ACTIONS(3216), + [anon_sym_explicit] = ACTIONS(3216), + [anon_sym_typename] = ACTIONS(3216), + [anon_sym_template] = ACTIONS(3216), + [anon_sym_operator] = ACTIONS(3216), + [anon_sym_try] = ACTIONS(3216), + [anon_sym_delete] = ACTIONS(3216), + [anon_sym_throw] = ACTIONS(3216), + [anon_sym_namespace] = ACTIONS(3216), + [anon_sym_using] = ACTIONS(3216), + [anon_sym_static_assert] = ACTIONS(3216), + [anon_sym_concept] = ACTIONS(3216), + [anon_sym_co_return] = ACTIONS(3216), + [anon_sym_co_yield] = ACTIONS(3216), + [anon_sym_R_DQUOTE] = ACTIONS(3218), + [anon_sym_LR_DQUOTE] = ACTIONS(3218), + [anon_sym_uR_DQUOTE] = ACTIONS(3218), + [anon_sym_UR_DQUOTE] = ACTIONS(3218), + [anon_sym_u8R_DQUOTE] = ACTIONS(3218), + [anon_sym_co_await] = ACTIONS(3216), + [anon_sym_new] = ACTIONS(3216), + [anon_sym_requires] = ACTIONS(3216), + [sym_this] = ACTIONS(3216), + }, + [909] = { + [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___extension__] = ACTIONS(3071), + [anon_sym_typedef] = ACTIONS(3071), + [anon_sym_extern] = ACTIONS(3071), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3071), + [anon_sym_constinit] = ACTIONS(3071), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3071), + [anon_sym_alignas] = 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_using] = 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), + }, + [910] = { + [ts_builtin_sym_end] = ACTIONS(3007), + [sym_identifier] = ACTIONS(3005), + [aux_sym_preproc_include_token1] = ACTIONS(3005), + [aux_sym_preproc_def_token1] = ACTIONS(3005), + [aux_sym_preproc_if_token1] = ACTIONS(3005), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3005), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3005), + [sym_preproc_directive] = ACTIONS(3005), + [anon_sym_LPAREN2] = ACTIONS(3007), + [anon_sym_BANG] = ACTIONS(3007), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3007), + [anon_sym_AMP_AMP] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym___extension__] = ACTIONS(3005), + [anon_sym_typedef] = ACTIONS(3005), + [anon_sym_extern] = ACTIONS(3005), + [anon_sym___attribute__] = ACTIONS(3005), + [anon_sym_COLON_COLON] = ACTIONS(3007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3007), + [anon_sym___declspec] = ACTIONS(3005), + [anon_sym___based] = ACTIONS(3005), + [anon_sym___cdecl] = ACTIONS(3005), + [anon_sym___clrcall] = ACTIONS(3005), + [anon_sym___stdcall] = ACTIONS(3005), + [anon_sym___fastcall] = ACTIONS(3005), + [anon_sym___thiscall] = ACTIONS(3005), + [anon_sym___vectorcall] = ACTIONS(3005), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_signed] = ACTIONS(3005), + [anon_sym_unsigned] = ACTIONS(3005), + [anon_sym_long] = ACTIONS(3005), + [anon_sym_short] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_static] = ACTIONS(3005), + [anon_sym_register] = ACTIONS(3005), + [anon_sym_inline] = ACTIONS(3005), + [anon_sym___inline] = ACTIONS(3005), + [anon_sym___inline__] = ACTIONS(3005), + [anon_sym___forceinline] = ACTIONS(3005), + [anon_sym_thread_local] = ACTIONS(3005), + [anon_sym___thread] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3005), + [anon_sym_constexpr] = ACTIONS(3005), + [anon_sym_volatile] = ACTIONS(3005), + [anon_sym_restrict] = ACTIONS(3005), + [anon_sym___restrict__] = ACTIONS(3005), + [anon_sym__Atomic] = ACTIONS(3005), + [anon_sym__Noreturn] = ACTIONS(3005), + [anon_sym_noreturn] = ACTIONS(3005), + [anon_sym_mutable] = ACTIONS(3005), + [anon_sym_constinit] = ACTIONS(3005), + [anon_sym_consteval] = ACTIONS(3005), + [sym_primitive_type] = ACTIONS(3005), + [anon_sym_enum] = ACTIONS(3005), + [anon_sym_class] = ACTIONS(3005), + [anon_sym_struct] = ACTIONS(3005), + [anon_sym_union] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_switch] = ACTIONS(3005), + [anon_sym_case] = ACTIONS(3005), + [anon_sym_default] = ACTIONS(3005), + [anon_sym_while] = ACTIONS(3005), + [anon_sym_do] = ACTIONS(3005), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_break] = ACTIONS(3005), + [anon_sym_continue] = ACTIONS(3005), + [anon_sym_goto] = ACTIONS(3005), + [anon_sym_not] = ACTIONS(3005), + [anon_sym_compl] = ACTIONS(3005), + [anon_sym_DASH_DASH] = ACTIONS(3007), + [anon_sym_PLUS_PLUS] = ACTIONS(3007), + [anon_sym_sizeof] = ACTIONS(3005), + [anon_sym___alignof__] = ACTIONS(3005), + [anon_sym___alignof] = ACTIONS(3005), + [anon_sym__alignof] = ACTIONS(3005), + [anon_sym_alignof] = ACTIONS(3005), + [anon_sym__Alignof] = ACTIONS(3005), + [anon_sym_offsetof] = ACTIONS(3005), + [anon_sym__Generic] = ACTIONS(3005), + [anon_sym_asm] = ACTIONS(3005), + [anon_sym___asm__] = ACTIONS(3005), + [sym_number_literal] = ACTIONS(3007), + [anon_sym_L_SQUOTE] = ACTIONS(3007), + [anon_sym_u_SQUOTE] = ACTIONS(3007), + [anon_sym_U_SQUOTE] = ACTIONS(3007), + [anon_sym_u8_SQUOTE] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3005), + [sym_false] = ACTIONS(3005), + [anon_sym_NULL] = ACTIONS(3005), + [anon_sym_nullptr] = ACTIONS(3005), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3005), + [anon_sym_decltype] = ACTIONS(3005), + [anon_sym_virtual] = ACTIONS(3005), + [anon_sym_alignas] = ACTIONS(3005), + [anon_sym_explicit] = ACTIONS(3005), + [anon_sym_typename] = ACTIONS(3005), + [anon_sym_template] = ACTIONS(3005), + [anon_sym_operator] = ACTIONS(3005), + [anon_sym_try] = ACTIONS(3005), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_throw] = ACTIONS(3005), + [anon_sym_namespace] = ACTIONS(3005), + [anon_sym_using] = ACTIONS(3005), + [anon_sym_static_assert] = ACTIONS(3005), + [anon_sym_concept] = ACTIONS(3005), + [anon_sym_co_return] = ACTIONS(3005), + [anon_sym_co_yield] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(3007), + [anon_sym_LR_DQUOTE] = ACTIONS(3007), + [anon_sym_uR_DQUOTE] = ACTIONS(3007), + [anon_sym_UR_DQUOTE] = ACTIONS(3007), + [anon_sym_u8R_DQUOTE] = ACTIONS(3007), + [anon_sym_co_await] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3005), + [anon_sym_requires] = ACTIONS(3005), + [sym_this] = ACTIONS(3005), + }, + [911] = { + [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___extension__] = ACTIONS(3075), + [anon_sym_typedef] = ACTIONS(3075), + [anon_sym_extern] = ACTIONS(3075), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3075), + [anon_sym_constinit] = ACTIONS(3075), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3075), + [anon_sym_alignas] = 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_using] = 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), + }, + [912] = { + [ts_builtin_sym_end] = ACTIONS(3194), + [sym_identifier] = ACTIONS(3192), + [aux_sym_preproc_include_token1] = ACTIONS(3192), + [aux_sym_preproc_def_token1] = ACTIONS(3192), + [aux_sym_preproc_if_token1] = ACTIONS(3192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3192), + [sym_preproc_directive] = ACTIONS(3192), + [anon_sym_LPAREN2] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3192), + [anon_sym___extension__] = ACTIONS(3192), + [anon_sym_typedef] = ACTIONS(3192), + [anon_sym_extern] = ACTIONS(3192), + [anon_sym___attribute__] = ACTIONS(3192), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3194), + [anon_sym___declspec] = ACTIONS(3192), + [anon_sym___based] = ACTIONS(3192), + [anon_sym___cdecl] = ACTIONS(3192), + [anon_sym___clrcall] = ACTIONS(3192), + [anon_sym___stdcall] = ACTIONS(3192), + [anon_sym___fastcall] = ACTIONS(3192), + [anon_sym___thiscall] = ACTIONS(3192), + [anon_sym___vectorcall] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_signed] = ACTIONS(3192), + [anon_sym_unsigned] = ACTIONS(3192), + [anon_sym_long] = ACTIONS(3192), + [anon_sym_short] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3192), + [anon_sym_register] = ACTIONS(3192), + [anon_sym_inline] = ACTIONS(3192), + [anon_sym___inline] = ACTIONS(3192), + [anon_sym___inline__] = ACTIONS(3192), + [anon_sym___forceinline] = ACTIONS(3192), + [anon_sym_thread_local] = ACTIONS(3192), + [anon_sym___thread] = ACTIONS(3192), + [anon_sym_const] = ACTIONS(3192), + [anon_sym_constexpr] = ACTIONS(3192), + [anon_sym_volatile] = ACTIONS(3192), + [anon_sym_restrict] = ACTIONS(3192), + [anon_sym___restrict__] = ACTIONS(3192), + [anon_sym__Atomic] = ACTIONS(3192), + [anon_sym__Noreturn] = ACTIONS(3192), + [anon_sym_noreturn] = ACTIONS(3192), + [anon_sym_mutable] = ACTIONS(3192), + [anon_sym_constinit] = ACTIONS(3192), + [anon_sym_consteval] = ACTIONS(3192), + [sym_primitive_type] = ACTIONS(3192), + [anon_sym_enum] = ACTIONS(3192), + [anon_sym_class] = ACTIONS(3192), + [anon_sym_struct] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3192), + [anon_sym_if] = ACTIONS(3192), + [anon_sym_switch] = ACTIONS(3192), + [anon_sym_case] = ACTIONS(3192), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_while] = ACTIONS(3192), + [anon_sym_do] = ACTIONS(3192), + [anon_sym_for] = ACTIONS(3192), + [anon_sym_return] = ACTIONS(3192), + [anon_sym_break] = ACTIONS(3192), + [anon_sym_continue] = ACTIONS(3192), + [anon_sym_goto] = ACTIONS(3192), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_sizeof] = ACTIONS(3192), + [anon_sym___alignof__] = ACTIONS(3192), + [anon_sym___alignof] = ACTIONS(3192), + [anon_sym__alignof] = ACTIONS(3192), + [anon_sym_alignof] = ACTIONS(3192), + [anon_sym__Alignof] = ACTIONS(3192), + [anon_sym_offsetof] = ACTIONS(3192), + [anon_sym__Generic] = ACTIONS(3192), + [anon_sym_asm] = ACTIONS(3192), + [anon_sym___asm__] = ACTIONS(3192), + [sym_number_literal] = ACTIONS(3194), + [anon_sym_L_SQUOTE] = ACTIONS(3194), + [anon_sym_u_SQUOTE] = ACTIONS(3194), + [anon_sym_U_SQUOTE] = ACTIONS(3194), + [anon_sym_u8_SQUOTE] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3194), + [anon_sym_L_DQUOTE] = ACTIONS(3194), + [anon_sym_u_DQUOTE] = ACTIONS(3194), + [anon_sym_U_DQUOTE] = ACTIONS(3194), + [anon_sym_u8_DQUOTE] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(3194), + [sym_true] = ACTIONS(3192), + [sym_false] = ACTIONS(3192), + [anon_sym_NULL] = ACTIONS(3192), + [anon_sym_nullptr] = ACTIONS(3192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3192), + [anon_sym_decltype] = ACTIONS(3192), + [anon_sym_virtual] = ACTIONS(3192), + [anon_sym_alignas] = ACTIONS(3192), + [anon_sym_explicit] = ACTIONS(3192), + [anon_sym_typename] = ACTIONS(3192), + [anon_sym_template] = ACTIONS(3192), + [anon_sym_operator] = ACTIONS(3192), + [anon_sym_try] = ACTIONS(3192), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_throw] = ACTIONS(3192), + [anon_sym_namespace] = ACTIONS(3192), + [anon_sym_using] = ACTIONS(3192), + [anon_sym_static_assert] = ACTIONS(3192), + [anon_sym_concept] = ACTIONS(3192), + [anon_sym_co_return] = ACTIONS(3192), + [anon_sym_co_yield] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3192), + [anon_sym_new] = ACTIONS(3192), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3192), + }, + [913] = { + [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___extension__] = ACTIONS(2973), + [anon_sym_typedef] = ACTIONS(2973), + [anon_sym_extern] = ACTIONS(2973), + [anon_sym___attribute__] = ACTIONS(2973), + [anon_sym_COLON_COLON] = ACTIONS(2975), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), + [anon_sym___declspec] = ACTIONS(2973), + [anon_sym___based] = ACTIONS(2973), + [anon_sym___cdecl] = ACTIONS(2973), + [anon_sym___clrcall] = ACTIONS(2973), + [anon_sym___stdcall] = ACTIONS(2973), + [anon_sym___fastcall] = ACTIONS(2973), + [anon_sym___thiscall] = ACTIONS(2973), + [anon_sym___vectorcall] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2975), + [anon_sym_signed] = ACTIONS(2973), + [anon_sym_unsigned] = ACTIONS(2973), + [anon_sym_long] = ACTIONS(2973), + [anon_sym_short] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_static] = ACTIONS(2973), + [anon_sym_register] = ACTIONS(2973), + [anon_sym_inline] = ACTIONS(2973), + [anon_sym___inline] = ACTIONS(2973), + [anon_sym___inline__] = ACTIONS(2973), + [anon_sym___forceinline] = ACTIONS(2973), + [anon_sym_thread_local] = ACTIONS(2973), + [anon_sym___thread] = ACTIONS(2973), + [anon_sym_const] = ACTIONS(2973), + [anon_sym_constexpr] = ACTIONS(2973), + [anon_sym_volatile] = ACTIONS(2973), + [anon_sym_restrict] = ACTIONS(2973), + [anon_sym___restrict__] = ACTIONS(2973), + [anon_sym__Atomic] = ACTIONS(2973), + [anon_sym__Noreturn] = ACTIONS(2973), + [anon_sym_noreturn] = ACTIONS(2973), + [anon_sym_mutable] = ACTIONS(2973), + [anon_sym_constinit] = ACTIONS(2973), + [anon_sym_consteval] = ACTIONS(2973), + [sym_primitive_type] = ACTIONS(2973), + [anon_sym_enum] = ACTIONS(2973), + [anon_sym_class] = ACTIONS(2973), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_union] = ACTIONS(2973), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_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), + [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(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2973), + [anon_sym_decltype] = ACTIONS(2973), + [anon_sym_virtual] = ACTIONS(2973), + [anon_sym_alignas] = ACTIONS(2973), + [anon_sym_explicit] = ACTIONS(2973), + [anon_sym_typename] = ACTIONS(2973), + [anon_sym_template] = ACTIONS(2973), + [anon_sym_operator] = ACTIONS(2973), + [anon_sym_try] = ACTIONS(2973), + [anon_sym_delete] = ACTIONS(2973), + [anon_sym_throw] = ACTIONS(2973), + [anon_sym_namespace] = ACTIONS(2973), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_static_assert] = ACTIONS(2973), + [anon_sym_concept] = ACTIONS(2973), + [anon_sym_co_return] = ACTIONS(2973), + [anon_sym_co_yield] = ACTIONS(2973), + [anon_sym_R_DQUOTE] = ACTIONS(2975), + [anon_sym_LR_DQUOTE] = ACTIONS(2975), + [anon_sym_uR_DQUOTE] = ACTIONS(2975), + [anon_sym_UR_DQUOTE] = ACTIONS(2975), + [anon_sym_u8R_DQUOTE] = ACTIONS(2975), + [anon_sym_co_await] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(2973), + [anon_sym_requires] = ACTIONS(2973), + [sym_this] = ACTIONS(2973), }, - [893] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [914] = { + [ts_builtin_sym_end] = ACTIONS(2971), + [sym_identifier] = ACTIONS(2969), + [aux_sym_preproc_include_token1] = ACTIONS(2969), + [aux_sym_preproc_def_token1] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(2969), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), + [sym_preproc_directive] = ACTIONS(2969), + [anon_sym_LPAREN2] = ACTIONS(2971), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2969), + [anon_sym___extension__] = ACTIONS(2969), + [anon_sym_typedef] = ACTIONS(2969), + [anon_sym_extern] = ACTIONS(2969), + [anon_sym___attribute__] = ACTIONS(2969), + [anon_sym_COLON_COLON] = ACTIONS(2971), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), + [anon_sym___declspec] = ACTIONS(2969), + [anon_sym___based] = ACTIONS(2969), + [anon_sym___cdecl] = ACTIONS(2969), + [anon_sym___clrcall] = ACTIONS(2969), + [anon_sym___stdcall] = ACTIONS(2969), + [anon_sym___fastcall] = ACTIONS(2969), + [anon_sym___thiscall] = ACTIONS(2969), + [anon_sym___vectorcall] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_signed] = ACTIONS(2969), + [anon_sym_unsigned] = ACTIONS(2969), + [anon_sym_long] = ACTIONS(2969), + [anon_sym_short] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(2969), + [anon_sym_register] = ACTIONS(2969), + [anon_sym_inline] = ACTIONS(2969), + [anon_sym___inline] = ACTIONS(2969), + [anon_sym___inline__] = ACTIONS(2969), + [anon_sym___forceinline] = ACTIONS(2969), + [anon_sym_thread_local] = ACTIONS(2969), + [anon_sym___thread] = ACTIONS(2969), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_constexpr] = ACTIONS(2969), + [anon_sym_volatile] = ACTIONS(2969), + [anon_sym_restrict] = ACTIONS(2969), + [anon_sym___restrict__] = ACTIONS(2969), + [anon_sym__Atomic] = ACTIONS(2969), + [anon_sym__Noreturn] = ACTIONS(2969), + [anon_sym_noreturn] = ACTIONS(2969), + [anon_sym_mutable] = ACTIONS(2969), + [anon_sym_constinit] = ACTIONS(2969), + [anon_sym_consteval] = ACTIONS(2969), + [sym_primitive_type] = ACTIONS(2969), + [anon_sym_enum] = ACTIONS(2969), + [anon_sym_class] = ACTIONS(2969), + [anon_sym_struct] = ACTIONS(2969), + [anon_sym_union] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_switch] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2969), + [anon_sym_default] = ACTIONS(2969), + [anon_sym_while] = ACTIONS(2969), + [anon_sym_do] = ACTIONS(2969), + [anon_sym_for] = ACTIONS(2969), + [anon_sym_return] = ACTIONS(2969), + [anon_sym_break] = ACTIONS(2969), + [anon_sym_continue] = ACTIONS(2969), + [anon_sym_goto] = ACTIONS(2969), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(2971), + [anon_sym_PLUS_PLUS] = ACTIONS(2971), + [anon_sym_sizeof] = ACTIONS(2969), + [anon_sym___alignof__] = ACTIONS(2969), + [anon_sym___alignof] = ACTIONS(2969), + [anon_sym__alignof] = ACTIONS(2969), + [anon_sym_alignof] = ACTIONS(2969), + [anon_sym__Alignof] = ACTIONS(2969), + [anon_sym_offsetof] = ACTIONS(2969), + [anon_sym__Generic] = ACTIONS(2969), + [anon_sym_asm] = ACTIONS(2969), + [anon_sym___asm__] = ACTIONS(2969), + [sym_number_literal] = ACTIONS(2971), + [anon_sym_L_SQUOTE] = ACTIONS(2971), + [anon_sym_u_SQUOTE] = ACTIONS(2971), + [anon_sym_U_SQUOTE] = ACTIONS(2971), + [anon_sym_u8_SQUOTE] = ACTIONS(2971), + [anon_sym_SQUOTE] = ACTIONS(2971), + [anon_sym_L_DQUOTE] = ACTIONS(2971), + [anon_sym_u_DQUOTE] = ACTIONS(2971), + [anon_sym_U_DQUOTE] = ACTIONS(2971), + [anon_sym_u8_DQUOTE] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [sym_true] = ACTIONS(2969), + [sym_false] = ACTIONS(2969), + [anon_sym_NULL] = ACTIONS(2969), + [anon_sym_nullptr] = ACTIONS(2969), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2969), + [anon_sym_decltype] = ACTIONS(2969), + [anon_sym_virtual] = ACTIONS(2969), + [anon_sym_alignas] = ACTIONS(2969), + [anon_sym_explicit] = ACTIONS(2969), + [anon_sym_typename] = ACTIONS(2969), + [anon_sym_template] = ACTIONS(2969), + [anon_sym_operator] = ACTIONS(2969), + [anon_sym_try] = ACTIONS(2969), + [anon_sym_delete] = ACTIONS(2969), + [anon_sym_throw] = ACTIONS(2969), + [anon_sym_namespace] = ACTIONS(2969), + [anon_sym_using] = ACTIONS(2969), + [anon_sym_static_assert] = ACTIONS(2969), + [anon_sym_concept] = ACTIONS(2969), + [anon_sym_co_return] = ACTIONS(2969), + [anon_sym_co_yield] = ACTIONS(2969), + [anon_sym_R_DQUOTE] = ACTIONS(2971), + [anon_sym_LR_DQUOTE] = ACTIONS(2971), + [anon_sym_uR_DQUOTE] = ACTIONS(2971), + [anon_sym_UR_DQUOTE] = ACTIONS(2971), + [anon_sym_u8R_DQUOTE] = ACTIONS(2971), + [anon_sym_co_await] = ACTIONS(2969), + [anon_sym_new] = ACTIONS(2969), + [anon_sym_requires] = ACTIONS(2969), + [sym_this] = ACTIONS(2969), }, - [894] = { + [915] = { + [ts_builtin_sym_end] = ACTIONS(3049), + [sym_identifier] = ACTIONS(3047), + [aux_sym_preproc_include_token1] = ACTIONS(3047), + [aux_sym_preproc_def_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token1] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3047), + [sym_preproc_directive] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3047), + [anon_sym___extension__] = ACTIONS(3047), + [anon_sym_typedef] = ACTIONS(3047), + [anon_sym_extern] = ACTIONS(3047), + [anon_sym___attribute__] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3049), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3049), + [anon_sym___declspec] = ACTIONS(3047), + [anon_sym___based] = ACTIONS(3047), + [anon_sym___cdecl] = ACTIONS(3047), + [anon_sym___clrcall] = ACTIONS(3047), + [anon_sym___stdcall] = ACTIONS(3047), + [anon_sym___fastcall] = ACTIONS(3047), + [anon_sym___thiscall] = ACTIONS(3047), + [anon_sym___vectorcall] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_signed] = ACTIONS(3047), + [anon_sym_unsigned] = ACTIONS(3047), + [anon_sym_long] = ACTIONS(3047), + [anon_sym_short] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_static] = ACTIONS(3047), + [anon_sym_register] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym___inline] = ACTIONS(3047), + [anon_sym___inline__] = ACTIONS(3047), + [anon_sym___forceinline] = ACTIONS(3047), + [anon_sym_thread_local] = ACTIONS(3047), + [anon_sym___thread] = ACTIONS(3047), + [anon_sym_const] = ACTIONS(3047), + [anon_sym_constexpr] = ACTIONS(3047), + [anon_sym_volatile] = ACTIONS(3047), + [anon_sym_restrict] = ACTIONS(3047), + [anon_sym___restrict__] = ACTIONS(3047), + [anon_sym__Atomic] = ACTIONS(3047), + [anon_sym__Noreturn] = ACTIONS(3047), + [anon_sym_noreturn] = ACTIONS(3047), + [anon_sym_mutable] = ACTIONS(3047), + [anon_sym_constinit] = ACTIONS(3047), + [anon_sym_consteval] = ACTIONS(3047), + [sym_primitive_type] = ACTIONS(3047), + [anon_sym_enum] = ACTIONS(3047), + [anon_sym_class] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_union] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_switch] = ACTIONS(3047), + [anon_sym_case] = ACTIONS(3047), + [anon_sym_default] = ACTIONS(3047), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_do] = ACTIONS(3047), + [anon_sym_for] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_goto] = ACTIONS(3047), + [anon_sym_not] = ACTIONS(3047), + [anon_sym_compl] = ACTIONS(3047), + [anon_sym_DASH_DASH] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_sizeof] = ACTIONS(3047), + [anon_sym___alignof__] = ACTIONS(3047), + [anon_sym___alignof] = ACTIONS(3047), + [anon_sym__alignof] = ACTIONS(3047), + [anon_sym_alignof] = ACTIONS(3047), + [anon_sym__Alignof] = ACTIONS(3047), + [anon_sym_offsetof] = ACTIONS(3047), + [anon_sym__Generic] = ACTIONS(3047), + [anon_sym_asm] = ACTIONS(3047), + [anon_sym___asm__] = ACTIONS(3047), + [sym_number_literal] = ACTIONS(3049), + [anon_sym_L_SQUOTE] = ACTIONS(3049), + [anon_sym_u_SQUOTE] = ACTIONS(3049), + [anon_sym_U_SQUOTE] = ACTIONS(3049), + [anon_sym_u8_SQUOTE] = ACTIONS(3049), + [anon_sym_SQUOTE] = ACTIONS(3049), + [anon_sym_L_DQUOTE] = ACTIONS(3049), + [anon_sym_u_DQUOTE] = ACTIONS(3049), + [anon_sym_U_DQUOTE] = ACTIONS(3049), + [anon_sym_u8_DQUOTE] = ACTIONS(3049), + [anon_sym_DQUOTE] = ACTIONS(3049), + [sym_true] = ACTIONS(3047), + [sym_false] = ACTIONS(3047), + [anon_sym_NULL] = ACTIONS(3047), + [anon_sym_nullptr] = ACTIONS(3047), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3047), + [anon_sym_decltype] = ACTIONS(3047), + [anon_sym_virtual] = ACTIONS(3047), + [anon_sym_alignas] = ACTIONS(3047), + [anon_sym_explicit] = ACTIONS(3047), + [anon_sym_typename] = ACTIONS(3047), + [anon_sym_template] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_delete] = ACTIONS(3047), + [anon_sym_throw] = ACTIONS(3047), + [anon_sym_namespace] = ACTIONS(3047), + [anon_sym_using] = ACTIONS(3047), + [anon_sym_static_assert] = ACTIONS(3047), + [anon_sym_concept] = ACTIONS(3047), + [anon_sym_co_return] = ACTIONS(3047), + [anon_sym_co_yield] = ACTIONS(3047), + [anon_sym_R_DQUOTE] = ACTIONS(3049), + [anon_sym_LR_DQUOTE] = ACTIONS(3049), + [anon_sym_uR_DQUOTE] = ACTIONS(3049), + [anon_sym_UR_DQUOTE] = ACTIONS(3049), + [anon_sym_u8R_DQUOTE] = ACTIONS(3049), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_requires] = ACTIONS(3047), + [sym_this] = ACTIONS(3047), + }, + [916] = { + [ts_builtin_sym_end] = ACTIONS(3033), + [sym_identifier] = ACTIONS(3031), + [aux_sym_preproc_include_token1] = ACTIONS(3031), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3031), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3031), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3031), + [sym_preproc_directive] = ACTIONS(3031), + [anon_sym_LPAREN2] = ACTIONS(3033), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_TILDE] = ACTIONS(3033), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_STAR] = ACTIONS(3033), + [anon_sym_AMP_AMP] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym___extension__] = ACTIONS(3031), + [anon_sym_typedef] = ACTIONS(3031), + [anon_sym_extern] = ACTIONS(3031), + [anon_sym___attribute__] = ACTIONS(3031), + [anon_sym_COLON_COLON] = ACTIONS(3033), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3033), + [anon_sym___declspec] = ACTIONS(3031), + [anon_sym___based] = ACTIONS(3031), + [anon_sym___cdecl] = ACTIONS(3031), + [anon_sym___clrcall] = ACTIONS(3031), + [anon_sym___stdcall] = ACTIONS(3031), + [anon_sym___fastcall] = ACTIONS(3031), + [anon_sym___thiscall] = ACTIONS(3031), + [anon_sym___vectorcall] = ACTIONS(3031), + [anon_sym_LBRACE] = ACTIONS(3033), + [anon_sym_signed] = ACTIONS(3031), + [anon_sym_unsigned] = ACTIONS(3031), + [anon_sym_long] = ACTIONS(3031), + [anon_sym_short] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_static] = ACTIONS(3031), + [anon_sym_register] = ACTIONS(3031), + [anon_sym_inline] = ACTIONS(3031), + [anon_sym___inline] = ACTIONS(3031), + [anon_sym___inline__] = ACTIONS(3031), + [anon_sym___forceinline] = ACTIONS(3031), + [anon_sym_thread_local] = ACTIONS(3031), + [anon_sym___thread] = ACTIONS(3031), + [anon_sym_const] = ACTIONS(3031), + [anon_sym_constexpr] = ACTIONS(3031), + [anon_sym_volatile] = ACTIONS(3031), + [anon_sym_restrict] = ACTIONS(3031), + [anon_sym___restrict__] = ACTIONS(3031), + [anon_sym__Atomic] = ACTIONS(3031), + [anon_sym__Noreturn] = ACTIONS(3031), + [anon_sym_noreturn] = ACTIONS(3031), + [anon_sym_mutable] = ACTIONS(3031), + [anon_sym_constinit] = ACTIONS(3031), + [anon_sym_consteval] = ACTIONS(3031), + [sym_primitive_type] = ACTIONS(3031), + [anon_sym_enum] = ACTIONS(3031), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3031), + [anon_sym_union] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_switch] = ACTIONS(3031), + [anon_sym_case] = ACTIONS(3031), + [anon_sym_default] = ACTIONS(3031), + [anon_sym_while] = ACTIONS(3031), + [anon_sym_do] = ACTIONS(3031), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_break] = ACTIONS(3031), + [anon_sym_continue] = ACTIONS(3031), + [anon_sym_goto] = ACTIONS(3031), + [anon_sym_not] = ACTIONS(3031), + [anon_sym_compl] = ACTIONS(3031), + [anon_sym_DASH_DASH] = ACTIONS(3033), + [anon_sym_PLUS_PLUS] = ACTIONS(3033), + [anon_sym_sizeof] = ACTIONS(3031), + [anon_sym___alignof__] = ACTIONS(3031), + [anon_sym___alignof] = ACTIONS(3031), + [anon_sym__alignof] = ACTIONS(3031), + [anon_sym_alignof] = ACTIONS(3031), + [anon_sym__Alignof] = ACTIONS(3031), + [anon_sym_offsetof] = ACTIONS(3031), + [anon_sym__Generic] = ACTIONS(3031), + [anon_sym_asm] = ACTIONS(3031), + [anon_sym___asm__] = ACTIONS(3031), + [sym_number_literal] = ACTIONS(3033), + [anon_sym_L_SQUOTE] = ACTIONS(3033), + [anon_sym_u_SQUOTE] = ACTIONS(3033), + [anon_sym_U_SQUOTE] = ACTIONS(3033), + [anon_sym_u8_SQUOTE] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3033), + [anon_sym_L_DQUOTE] = ACTIONS(3033), + [anon_sym_u_DQUOTE] = ACTIONS(3033), + [anon_sym_U_DQUOTE] = ACTIONS(3033), + [anon_sym_u8_DQUOTE] = ACTIONS(3033), + [anon_sym_DQUOTE] = ACTIONS(3033), + [sym_true] = ACTIONS(3031), + [sym_false] = ACTIONS(3031), + [anon_sym_NULL] = ACTIONS(3031), + [anon_sym_nullptr] = ACTIONS(3031), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3031), + [anon_sym_decltype] = ACTIONS(3031), + [anon_sym_virtual] = ACTIONS(3031), + [anon_sym_alignas] = ACTIONS(3031), + [anon_sym_explicit] = ACTIONS(3031), + [anon_sym_typename] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3031), + [anon_sym_operator] = ACTIONS(3031), + [anon_sym_try] = ACTIONS(3031), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_throw] = ACTIONS(3031), + [anon_sym_namespace] = ACTIONS(3031), + [anon_sym_using] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3031), + [anon_sym_concept] = ACTIONS(3031), + [anon_sym_co_return] = ACTIONS(3031), + [anon_sym_co_yield] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(3033), + [anon_sym_LR_DQUOTE] = ACTIONS(3033), + [anon_sym_uR_DQUOTE] = ACTIONS(3033), + [anon_sym_UR_DQUOTE] = ACTIONS(3033), + [anon_sym_u8R_DQUOTE] = ACTIONS(3033), + [anon_sym_co_await] = ACTIONS(3031), + [anon_sym_new] = ACTIONS(3031), + [anon_sym_requires] = ACTIONS(3031), + [sym_this] = ACTIONS(3031), + }, + [917] = { + [ts_builtin_sym_end] = ACTIONS(3521), + [sym_identifier] = ACTIONS(3523), + [aux_sym_preproc_include_token1] = ACTIONS(3523), + [aux_sym_preproc_def_token1] = ACTIONS(3523), + [aux_sym_preproc_if_token1] = ACTIONS(3523), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3523), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3523), + [sym_preproc_directive] = ACTIONS(3523), + [anon_sym_LPAREN2] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3523), + [anon_sym_PLUS] = ACTIONS(3523), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_AMP] = ACTIONS(3523), + [anon_sym___extension__] = ACTIONS(3523), + [anon_sym_typedef] = ACTIONS(3523), + [anon_sym_extern] = ACTIONS(3523), + [anon_sym___attribute__] = ACTIONS(3523), + [anon_sym_COLON_COLON] = ACTIONS(3521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3521), + [anon_sym___declspec] = ACTIONS(3523), + [anon_sym___based] = ACTIONS(3523), + [anon_sym___cdecl] = ACTIONS(3523), + [anon_sym___clrcall] = ACTIONS(3523), + [anon_sym___stdcall] = ACTIONS(3523), + [anon_sym___fastcall] = ACTIONS(3523), + [anon_sym___thiscall] = ACTIONS(3523), + [anon_sym___vectorcall] = ACTIONS(3523), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_signed] = ACTIONS(3523), + [anon_sym_unsigned] = ACTIONS(3523), + [anon_sym_long] = ACTIONS(3523), + [anon_sym_short] = ACTIONS(3523), + [anon_sym_LBRACK] = ACTIONS(3523), + [anon_sym_static] = ACTIONS(3523), + [anon_sym_register] = ACTIONS(3523), + [anon_sym_inline] = ACTIONS(3523), + [anon_sym___inline] = ACTIONS(3523), + [anon_sym___inline__] = ACTIONS(3523), + [anon_sym___forceinline] = ACTIONS(3523), + [anon_sym_thread_local] = ACTIONS(3523), + [anon_sym___thread] = ACTIONS(3523), + [anon_sym_const] = ACTIONS(3523), + [anon_sym_constexpr] = ACTIONS(3523), + [anon_sym_volatile] = ACTIONS(3523), + [anon_sym_restrict] = ACTIONS(3523), + [anon_sym___restrict__] = ACTIONS(3523), + [anon_sym__Atomic] = ACTIONS(3523), + [anon_sym__Noreturn] = ACTIONS(3523), + [anon_sym_noreturn] = ACTIONS(3523), + [anon_sym_mutable] = ACTIONS(3523), + [anon_sym_constinit] = ACTIONS(3523), + [anon_sym_consteval] = ACTIONS(3523), + [sym_primitive_type] = ACTIONS(3523), + [anon_sym_enum] = ACTIONS(3523), + [anon_sym_class] = ACTIONS(3523), + [anon_sym_struct] = ACTIONS(3523), + [anon_sym_union] = ACTIONS(3523), + [anon_sym_if] = ACTIONS(3523), + [anon_sym_switch] = ACTIONS(3523), + [anon_sym_case] = ACTIONS(3523), + [anon_sym_default] = ACTIONS(3523), + [anon_sym_while] = ACTIONS(3523), + [anon_sym_do] = ACTIONS(3523), + [anon_sym_for] = ACTIONS(3523), + [anon_sym_return] = ACTIONS(3523), + [anon_sym_break] = ACTIONS(3523), + [anon_sym_continue] = ACTIONS(3523), + [anon_sym_goto] = ACTIONS(3523), + [anon_sym_not] = ACTIONS(3523), + [anon_sym_compl] = ACTIONS(3523), + [anon_sym_DASH_DASH] = ACTIONS(3521), + [anon_sym_PLUS_PLUS] = ACTIONS(3521), + [anon_sym_sizeof] = ACTIONS(3523), + [anon_sym___alignof__] = ACTIONS(3523), + [anon_sym___alignof] = ACTIONS(3523), + [anon_sym__alignof] = ACTIONS(3523), + [anon_sym_alignof] = ACTIONS(3523), + [anon_sym__Alignof] = ACTIONS(3523), + [anon_sym_offsetof] = ACTIONS(3523), + [anon_sym__Generic] = ACTIONS(3523), + [anon_sym_asm] = ACTIONS(3523), + [anon_sym___asm__] = ACTIONS(3523), + [sym_number_literal] = ACTIONS(3521), + [anon_sym_L_SQUOTE] = ACTIONS(3521), + [anon_sym_u_SQUOTE] = ACTIONS(3521), + [anon_sym_U_SQUOTE] = ACTIONS(3521), + [anon_sym_u8_SQUOTE] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_L_DQUOTE] = ACTIONS(3521), + [anon_sym_u_DQUOTE] = ACTIONS(3521), + [anon_sym_U_DQUOTE] = ACTIONS(3521), + [anon_sym_u8_DQUOTE] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3521), + [sym_true] = ACTIONS(3523), + [sym_false] = ACTIONS(3523), + [anon_sym_NULL] = ACTIONS(3523), + [anon_sym_nullptr] = ACTIONS(3523), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3523), + [anon_sym_decltype] = ACTIONS(3523), + [anon_sym_virtual] = ACTIONS(3523), + [anon_sym_alignas] = ACTIONS(3523), + [anon_sym_explicit] = ACTIONS(3523), + [anon_sym_typename] = ACTIONS(3523), + [anon_sym_template] = ACTIONS(3523), + [anon_sym_operator] = ACTIONS(3523), + [anon_sym_try] = ACTIONS(3523), + [anon_sym_delete] = ACTIONS(3523), + [anon_sym_throw] = ACTIONS(3523), + [anon_sym_namespace] = ACTIONS(3523), + [anon_sym_using] = ACTIONS(3523), + [anon_sym_static_assert] = ACTIONS(3523), + [anon_sym_concept] = ACTIONS(3523), + [anon_sym_co_return] = ACTIONS(3523), + [anon_sym_co_yield] = ACTIONS(3523), + [anon_sym_R_DQUOTE] = ACTIONS(3521), + [anon_sym_LR_DQUOTE] = ACTIONS(3521), + [anon_sym_uR_DQUOTE] = ACTIONS(3521), + [anon_sym_UR_DQUOTE] = ACTIONS(3521), + [anon_sym_u8R_DQUOTE] = ACTIONS(3521), + [anon_sym_co_await] = ACTIONS(3523), + [anon_sym_new] = ACTIONS(3523), + [anon_sym_requires] = ACTIONS(3523), + [sym_this] = ACTIONS(3523), + }, + [918] = { + [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___extension__] = ACTIONS(2977), + [anon_sym_typedef] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2977), + [anon_sym___attribute__] = ACTIONS(2977), + [anon_sym_COLON_COLON] = ACTIONS(2979), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), + [anon_sym___declspec] = ACTIONS(2977), + [anon_sym___based] = ACTIONS(2977), + [anon_sym___cdecl] = ACTIONS(2977), + [anon_sym___clrcall] = ACTIONS(2977), + [anon_sym___stdcall] = ACTIONS(2977), + [anon_sym___fastcall] = ACTIONS(2977), + [anon_sym___thiscall] = ACTIONS(2977), + [anon_sym___vectorcall] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_signed] = ACTIONS(2977), + [anon_sym_unsigned] = ACTIONS(2977), + [anon_sym_long] = ACTIONS(2977), + [anon_sym_short] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2977), + [anon_sym_register] = ACTIONS(2977), + [anon_sym_inline] = ACTIONS(2977), + [anon_sym___inline] = ACTIONS(2977), + [anon_sym___inline__] = ACTIONS(2977), + [anon_sym___forceinline] = ACTIONS(2977), + [anon_sym_thread_local] = ACTIONS(2977), + [anon_sym___thread] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_constexpr] = ACTIONS(2977), + [anon_sym_volatile] = ACTIONS(2977), + [anon_sym_restrict] = ACTIONS(2977), + [anon_sym___restrict__] = ACTIONS(2977), + [anon_sym__Atomic] = ACTIONS(2977), + [anon_sym__Noreturn] = ACTIONS(2977), + [anon_sym_noreturn] = ACTIONS(2977), + [anon_sym_mutable] = ACTIONS(2977), + [anon_sym_constinit] = ACTIONS(2977), + [anon_sym_consteval] = ACTIONS(2977), + [sym_primitive_type] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_union] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_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), + [sym_number_literal] = ACTIONS(2979), + [anon_sym_L_SQUOTE] = ACTIONS(2979), + [anon_sym_u_SQUOTE] = ACTIONS(2979), + [anon_sym_U_SQUOTE] = ACTIONS(2979), + [anon_sym_u8_SQUOTE] = ACTIONS(2979), + [anon_sym_SQUOTE] = ACTIONS(2979), + [anon_sym_L_DQUOTE] = ACTIONS(2979), + [anon_sym_u_DQUOTE] = ACTIONS(2979), + [anon_sym_U_DQUOTE] = ACTIONS(2979), + [anon_sym_u8_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym_true] = ACTIONS(2977), + [sym_false] = ACTIONS(2977), + [anon_sym_NULL] = ACTIONS(2977), + [anon_sym_nullptr] = ACTIONS(2977), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2977), + [anon_sym_decltype] = ACTIONS(2977), + [anon_sym_virtual] = ACTIONS(2977), + [anon_sym_alignas] = ACTIONS(2977), + [anon_sym_explicit] = ACTIONS(2977), + [anon_sym_typename] = ACTIONS(2977), + [anon_sym_template] = ACTIONS(2977), + [anon_sym_operator] = ACTIONS(2977), + [anon_sym_try] = ACTIONS(2977), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_throw] = ACTIONS(2977), + [anon_sym_namespace] = ACTIONS(2977), + [anon_sym_using] = ACTIONS(2977), + [anon_sym_static_assert] = ACTIONS(2977), + [anon_sym_concept] = ACTIONS(2977), + [anon_sym_co_return] = ACTIONS(2977), + [anon_sym_co_yield] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2979), + [anon_sym_LR_DQUOTE] = ACTIONS(2979), + [anon_sym_uR_DQUOTE] = ACTIONS(2979), + [anon_sym_UR_DQUOTE] = ACTIONS(2979), + [anon_sym_u8R_DQUOTE] = ACTIONS(2979), + [anon_sym_co_await] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(2977), + [anon_sym_requires] = ACTIONS(2977), + [sym_this] = ACTIONS(2977), + }, + [919] = { + [ts_builtin_sym_end] = ACTIONS(3015), + [sym_identifier] = ACTIONS(3013), + [aux_sym_preproc_include_token1] = ACTIONS(3013), + [aux_sym_preproc_def_token1] = ACTIONS(3013), + [aux_sym_preproc_if_token1] = ACTIONS(3013), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3013), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3013), + [sym_preproc_directive] = ACTIONS(3013), + [anon_sym_LPAREN2] = ACTIONS(3015), + [anon_sym_BANG] = ACTIONS(3015), + [anon_sym_TILDE] = ACTIONS(3015), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym___extension__] = ACTIONS(3013), + [anon_sym_typedef] = ACTIONS(3013), + [anon_sym_extern] = ACTIONS(3013), + [anon_sym___attribute__] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(3015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3015), + [anon_sym___declspec] = ACTIONS(3013), + [anon_sym___based] = ACTIONS(3013), + [anon_sym___cdecl] = ACTIONS(3013), + [anon_sym___clrcall] = ACTIONS(3013), + [anon_sym___stdcall] = ACTIONS(3013), + [anon_sym___fastcall] = ACTIONS(3013), + [anon_sym___thiscall] = ACTIONS(3013), + [anon_sym___vectorcall] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3015), + [anon_sym_signed] = ACTIONS(3013), + [anon_sym_unsigned] = ACTIONS(3013), + [anon_sym_long] = ACTIONS(3013), + [anon_sym_short] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_static] = ACTIONS(3013), + [anon_sym_register] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym___inline] = ACTIONS(3013), + [anon_sym___inline__] = ACTIONS(3013), + [anon_sym___forceinline] = ACTIONS(3013), + [anon_sym_thread_local] = ACTIONS(3013), + [anon_sym___thread] = ACTIONS(3013), + [anon_sym_const] = ACTIONS(3013), + [anon_sym_constexpr] = ACTIONS(3013), + [anon_sym_volatile] = ACTIONS(3013), + [anon_sym_restrict] = ACTIONS(3013), + [anon_sym___restrict__] = ACTIONS(3013), + [anon_sym__Atomic] = ACTIONS(3013), + [anon_sym__Noreturn] = ACTIONS(3013), + [anon_sym_noreturn] = ACTIONS(3013), + [anon_sym_mutable] = ACTIONS(3013), + [anon_sym_constinit] = ACTIONS(3013), + [anon_sym_consteval] = ACTIONS(3013), + [sym_primitive_type] = ACTIONS(3013), + [anon_sym_enum] = ACTIONS(3013), + [anon_sym_class] = ACTIONS(3013), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3013), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_while] = ACTIONS(3013), + [anon_sym_do] = ACTIONS(3013), + [anon_sym_for] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_goto] = ACTIONS(3013), + [anon_sym_not] = ACTIONS(3013), + [anon_sym_compl] = ACTIONS(3013), + [anon_sym_DASH_DASH] = ACTIONS(3015), + [anon_sym_PLUS_PLUS] = ACTIONS(3015), + [anon_sym_sizeof] = ACTIONS(3013), + [anon_sym___alignof__] = ACTIONS(3013), + [anon_sym___alignof] = ACTIONS(3013), + [anon_sym__alignof] = ACTIONS(3013), + [anon_sym_alignof] = ACTIONS(3013), + [anon_sym__Alignof] = ACTIONS(3013), + [anon_sym_offsetof] = ACTIONS(3013), + [anon_sym__Generic] = ACTIONS(3013), + [anon_sym_asm] = ACTIONS(3013), + [anon_sym___asm__] = ACTIONS(3013), + [sym_number_literal] = ACTIONS(3015), + [anon_sym_L_SQUOTE] = ACTIONS(3015), + [anon_sym_u_SQUOTE] = ACTIONS(3015), + [anon_sym_U_SQUOTE] = ACTIONS(3015), + [anon_sym_u8_SQUOTE] = ACTIONS(3015), + [anon_sym_SQUOTE] = ACTIONS(3015), + [anon_sym_L_DQUOTE] = ACTIONS(3015), + [anon_sym_u_DQUOTE] = ACTIONS(3015), + [anon_sym_U_DQUOTE] = ACTIONS(3015), + [anon_sym_u8_DQUOTE] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [anon_sym_NULL] = ACTIONS(3013), + [anon_sym_nullptr] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3013), + [anon_sym_decltype] = ACTIONS(3013), + [anon_sym_virtual] = ACTIONS(3013), + [anon_sym_alignas] = ACTIONS(3013), + [anon_sym_explicit] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3013), + [anon_sym_template] = ACTIONS(3013), + [anon_sym_operator] = ACTIONS(3013), + [anon_sym_try] = ACTIONS(3013), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_throw] = ACTIONS(3013), + [anon_sym_namespace] = ACTIONS(3013), + [anon_sym_using] = ACTIONS(3013), + [anon_sym_static_assert] = ACTIONS(3013), + [anon_sym_concept] = ACTIONS(3013), + [anon_sym_co_return] = ACTIONS(3013), + [anon_sym_co_yield] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3013), + [anon_sym_new] = ACTIONS(3013), + [anon_sym_requires] = ACTIONS(3013), + [sym_this] = ACTIONS(3013), + }, + [920] = { [ts_builtin_sym_end] = ACTIONS(2983), [sym_identifier] = ACTIONS(2981), [aux_sym_preproc_include_token1] = ACTIONS(2981), @@ -180658,7 +179445,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(2983), [anon_sym_AMP_AMP] = ACTIONS(2983), [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_SEMI] = ACTIONS(2983), [anon_sym___extension__] = ACTIONS(2981), [anon_sym_typedef] = ACTIONS(2981), [anon_sym_extern] = ACTIONS(2981), @@ -180704,7 +179490,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2981), [anon_sym_union] = ACTIONS(2981), [anon_sym_if] = ACTIONS(2981), - [anon_sym_else] = ACTIONS(2981), [anon_sym_switch] = ACTIONS(2981), [anon_sym_case] = ACTIONS(2981), [anon_sym_default] = ACTIONS(2981), @@ -180772,4068 +179557,4652 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2981), [sym_this] = ACTIONS(2981), }, - [895] = { - [ts_builtin_sym_end] = ACTIONS(2887), - [sym_identifier] = ACTIONS(2885), - [aux_sym_preproc_include_token1] = ACTIONS(2885), - [aux_sym_preproc_def_token1] = ACTIONS(2885), - [aux_sym_preproc_if_token1] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2885), - [sym_preproc_directive] = ACTIONS(2885), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym___extension__] = ACTIONS(2885), - [anon_sym_typedef] = ACTIONS(2885), - [anon_sym_extern] = ACTIONS(2885), - [anon_sym___attribute__] = ACTIONS(2885), - [anon_sym_COLON_COLON] = ACTIONS(2887), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2887), - [anon_sym___declspec] = ACTIONS(2885), - [anon_sym___based] = ACTIONS(2885), - [anon_sym___cdecl] = ACTIONS(2885), - [anon_sym___clrcall] = ACTIONS(2885), - [anon_sym___stdcall] = ACTIONS(2885), - [anon_sym___fastcall] = ACTIONS(2885), - [anon_sym___thiscall] = ACTIONS(2885), - [anon_sym___vectorcall] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_signed] = ACTIONS(2885), - [anon_sym_unsigned] = ACTIONS(2885), - [anon_sym_long] = ACTIONS(2885), - [anon_sym_short] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_register] = ACTIONS(2885), - [anon_sym_inline] = ACTIONS(2885), - [anon_sym___inline] = ACTIONS(2885), - [anon_sym___inline__] = ACTIONS(2885), - [anon_sym___forceinline] = ACTIONS(2885), - [anon_sym_thread_local] = ACTIONS(2885), - [anon_sym___thread] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_constexpr] = ACTIONS(2885), - [anon_sym_volatile] = ACTIONS(2885), - [anon_sym_restrict] = ACTIONS(2885), - [anon_sym___restrict__] = ACTIONS(2885), - [anon_sym__Atomic] = ACTIONS(2885), - [anon_sym__Noreturn] = ACTIONS(2885), - [anon_sym_noreturn] = ACTIONS(2885), - [anon_sym_mutable] = ACTIONS(2885), - [anon_sym_constinit] = ACTIONS(2885), - [anon_sym_consteval] = ACTIONS(2885), - [sym_primitive_type] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_union] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_else] = ACTIONS(2885), - [anon_sym_switch] = ACTIONS(2885), - [anon_sym_case] = ACTIONS(2885), - [anon_sym_default] = ACTIONS(2885), - [anon_sym_while] = ACTIONS(2885), - [anon_sym_do] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_goto] = ACTIONS(2885), - [anon_sym_not] = ACTIONS(2885), - [anon_sym_compl] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_sizeof] = ACTIONS(2885), - [anon_sym___alignof__] = ACTIONS(2885), - [anon_sym___alignof] = ACTIONS(2885), - [anon_sym__alignof] = ACTIONS(2885), - [anon_sym_alignof] = ACTIONS(2885), - [anon_sym__Alignof] = ACTIONS(2885), - [anon_sym_offsetof] = ACTIONS(2885), - [anon_sym__Generic] = ACTIONS(2885), - [anon_sym_asm] = ACTIONS(2885), - [anon_sym___asm__] = ACTIONS(2885), - [sym_number_literal] = ACTIONS(2887), - [anon_sym_L_SQUOTE] = ACTIONS(2887), - [anon_sym_u_SQUOTE] = ACTIONS(2887), - [anon_sym_U_SQUOTE] = ACTIONS(2887), - [anon_sym_u8_SQUOTE] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_L_DQUOTE] = ACTIONS(2887), - [anon_sym_u_DQUOTE] = ACTIONS(2887), - [anon_sym_U_DQUOTE] = ACTIONS(2887), - [anon_sym_u8_DQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [sym_true] = ACTIONS(2885), - [sym_false] = ACTIONS(2885), - [anon_sym_NULL] = ACTIONS(2885), - [anon_sym_nullptr] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2885), - [anon_sym_decltype] = ACTIONS(2885), - [anon_sym_virtual] = ACTIONS(2885), - [anon_sym_alignas] = ACTIONS(2885), - [anon_sym_explicit] = ACTIONS(2885), - [anon_sym_typename] = ACTIONS(2885), - [anon_sym_template] = ACTIONS(2885), - [anon_sym_operator] = ACTIONS(2885), - [anon_sym_try] = ACTIONS(2885), - [anon_sym_delete] = ACTIONS(2885), - [anon_sym_throw] = ACTIONS(2885), - [anon_sym_namespace] = ACTIONS(2885), - [anon_sym_using] = ACTIONS(2885), - [anon_sym_static_assert] = ACTIONS(2885), - [anon_sym_concept] = ACTIONS(2885), - [anon_sym_co_return] = ACTIONS(2885), - [anon_sym_co_yield] = ACTIONS(2885), - [anon_sym_R_DQUOTE] = ACTIONS(2887), - [anon_sym_LR_DQUOTE] = ACTIONS(2887), - [anon_sym_uR_DQUOTE] = ACTIONS(2887), - [anon_sym_UR_DQUOTE] = ACTIONS(2887), - [anon_sym_u8R_DQUOTE] = ACTIONS(2887), - [anon_sym_co_await] = ACTIONS(2885), - [anon_sym_new] = ACTIONS(2885), - [anon_sym_requires] = ACTIONS(2885), - [sym_this] = ACTIONS(2885), + [921] = { + [sym_preproc_def] = STATE(898), + [sym_preproc_function_def] = STATE(898), + [sym_preproc_call] = STATE(898), + [sym_preproc_if_in_field_declaration_list] = STATE(898), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(898), + [sym_type_definition] = STATE(898), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5178), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(898), + [sym_field_declaration] = STATE(898), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(898), + [sym_operator_cast] = STATE(6136), + [sym_inline_method_definition] = STATE(898), + [sym__constructor_specifiers] = STATE(1777), + [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_access_specifier] = STATE(7545), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(898), + [sym_alias_declaration] = STATE(898), + [sym_static_assert_declaration] = STATE(898), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(898), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3501), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3505), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3507), + [anon_sym_typedef] = ACTIONS(3509), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3525), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3515), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3517), + [anon_sym_static_assert] = ACTIONS(3519), }, - [896] = { - [sym_identifier] = ACTIONS(2985), - [aux_sym_preproc_include_token1] = ACTIONS(2985), - [aux_sym_preproc_def_token1] = ACTIONS(2985), - [aux_sym_preproc_if_token1] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2985), - [sym_preproc_directive] = ACTIONS(2985), - [anon_sym_LPAREN2] = ACTIONS(2987), - [anon_sym_BANG] = ACTIONS(2987), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym___extension__] = ACTIONS(2985), - [anon_sym_typedef] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym___attribute__] = ACTIONS(2985), - [anon_sym_COLON_COLON] = ACTIONS(2987), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), - [anon_sym___declspec] = ACTIONS(2985), - [anon_sym___based] = ACTIONS(2985), - [anon_sym___cdecl] = ACTIONS(2985), - [anon_sym___clrcall] = ACTIONS(2985), - [anon_sym___stdcall] = ACTIONS(2985), - [anon_sym___fastcall] = ACTIONS(2985), - [anon_sym___thiscall] = ACTIONS(2985), - [anon_sym___vectorcall] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_signed] = ACTIONS(2985), - [anon_sym_unsigned] = ACTIONS(2985), - [anon_sym_long] = ACTIONS(2985), - [anon_sym_short] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_register] = ACTIONS(2985), - [anon_sym_inline] = ACTIONS(2985), - [anon_sym___inline] = ACTIONS(2985), - [anon_sym___inline__] = ACTIONS(2985), - [anon_sym___forceinline] = ACTIONS(2985), - [anon_sym_thread_local] = ACTIONS(2985), - [anon_sym___thread] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_constexpr] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_restrict] = ACTIONS(2985), - [anon_sym___restrict__] = ACTIONS(2985), - [anon_sym__Atomic] = ACTIONS(2985), - [anon_sym__Noreturn] = ACTIONS(2985), - [anon_sym_noreturn] = ACTIONS(2985), - [anon_sym_mutable] = ACTIONS(2985), - [anon_sym_constinit] = ACTIONS(2985), - [anon_sym_consteval] = ACTIONS(2985), - [sym_primitive_type] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_class] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_union] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_switch] = ACTIONS(2985), - [anon_sym_case] = ACTIONS(2985), - [anon_sym_default] = ACTIONS(2985), - [anon_sym_while] = ACTIONS(2985), - [anon_sym_do] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym_not] = ACTIONS(2985), - [anon_sym_compl] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_sizeof] = ACTIONS(2985), - [anon_sym___alignof__] = ACTIONS(2985), - [anon_sym___alignof] = ACTIONS(2985), - [anon_sym__alignof] = ACTIONS(2985), - [anon_sym_alignof] = ACTIONS(2985), - [anon_sym__Alignof] = ACTIONS(2985), - [anon_sym_offsetof] = ACTIONS(2985), - [anon_sym__Generic] = ACTIONS(2985), - [anon_sym_asm] = ACTIONS(2985), - [anon_sym___asm__] = ACTIONS(2985), - [sym_number_literal] = ACTIONS(2987), - [anon_sym_L_SQUOTE] = ACTIONS(2987), - [anon_sym_u_SQUOTE] = ACTIONS(2987), - [anon_sym_U_SQUOTE] = ACTIONS(2987), - [anon_sym_u8_SQUOTE] = ACTIONS(2987), - [anon_sym_SQUOTE] = ACTIONS(2987), - [anon_sym_L_DQUOTE] = ACTIONS(2987), - [anon_sym_u_DQUOTE] = ACTIONS(2987), - [anon_sym_U_DQUOTE] = ACTIONS(2987), - [anon_sym_u8_DQUOTE] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [anon_sym_NULL] = ACTIONS(2985), - [anon_sym_nullptr] = ACTIONS(2985), + [922] = { + [ts_builtin_sym_end] = ACTIONS(3178), + [sym_identifier] = ACTIONS(3176), + [aux_sym_preproc_include_token1] = ACTIONS(3176), + [aux_sym_preproc_def_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), + [sym_preproc_directive] = ACTIONS(3176), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3176), + [anon_sym___extension__] = ACTIONS(3176), + [anon_sym_typedef] = ACTIONS(3176), + [anon_sym_extern] = ACTIONS(3176), + [anon_sym___attribute__] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(3178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), + [anon_sym___declspec] = ACTIONS(3176), + [anon_sym___based] = ACTIONS(3176), + [anon_sym___cdecl] = ACTIONS(3176), + [anon_sym___clrcall] = ACTIONS(3176), + [anon_sym___stdcall] = ACTIONS(3176), + [anon_sym___fastcall] = ACTIONS(3176), + [anon_sym___thiscall] = ACTIONS(3176), + [anon_sym___vectorcall] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_signed] = ACTIONS(3176), + [anon_sym_unsigned] = ACTIONS(3176), + [anon_sym_long] = ACTIONS(3176), + [anon_sym_short] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_register] = ACTIONS(3176), + [anon_sym_inline] = ACTIONS(3176), + [anon_sym___inline] = ACTIONS(3176), + [anon_sym___inline__] = ACTIONS(3176), + [anon_sym___forceinline] = ACTIONS(3176), + [anon_sym_thread_local] = ACTIONS(3176), + [anon_sym___thread] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_constexpr] = ACTIONS(3176), + [anon_sym_volatile] = ACTIONS(3176), + [anon_sym_restrict] = ACTIONS(3176), + [anon_sym___restrict__] = ACTIONS(3176), + [anon_sym__Atomic] = ACTIONS(3176), + [anon_sym__Noreturn] = ACTIONS(3176), + [anon_sym_noreturn] = ACTIONS(3176), + [anon_sym_mutable] = ACTIONS(3176), + [anon_sym_constinit] = ACTIONS(3176), + [anon_sym_consteval] = ACTIONS(3176), + [sym_primitive_type] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_case] = ACTIONS(3176), + [anon_sym_default] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_goto] = ACTIONS(3176), + [anon_sym_not] = ACTIONS(3176), + [anon_sym_compl] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_sizeof] = ACTIONS(3176), + [anon_sym___alignof__] = ACTIONS(3176), + [anon_sym___alignof] = ACTIONS(3176), + [anon_sym__alignof] = ACTIONS(3176), + [anon_sym_alignof] = ACTIONS(3176), + [anon_sym__Alignof] = ACTIONS(3176), + [anon_sym_offsetof] = ACTIONS(3176), + [anon_sym__Generic] = ACTIONS(3176), + [anon_sym_asm] = ACTIONS(3176), + [anon_sym___asm__] = ACTIONS(3176), + [sym_number_literal] = ACTIONS(3178), + [anon_sym_L_SQUOTE] = ACTIONS(3178), + [anon_sym_u_SQUOTE] = ACTIONS(3178), + [anon_sym_U_SQUOTE] = ACTIONS(3178), + [anon_sym_u8_SQUOTE] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3178), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [anon_sym_NULL] = ACTIONS(3176), + [anon_sym_nullptr] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3176), + [anon_sym_virtual] = ACTIONS(3176), + [anon_sym_alignas] = ACTIONS(3176), + [anon_sym_explicit] = ACTIONS(3176), + [anon_sym_typename] = ACTIONS(3176), + [anon_sym_template] = ACTIONS(3176), + [anon_sym_operator] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_static_assert] = ACTIONS(3176), + [anon_sym_concept] = ACTIONS(3176), + [anon_sym_co_return] = ACTIONS(3176), + [anon_sym_co_yield] = ACTIONS(3176), + [anon_sym_R_DQUOTE] = ACTIONS(3178), + [anon_sym_LR_DQUOTE] = ACTIONS(3178), + [anon_sym_uR_DQUOTE] = ACTIONS(3178), + [anon_sym_UR_DQUOTE] = ACTIONS(3178), + [anon_sym_u8R_DQUOTE] = ACTIONS(3178), + [anon_sym_co_await] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_requires] = ACTIONS(3176), + [sym_this] = ACTIONS(3176), + }, + [923] = { + [ts_builtin_sym_end] = ACTIONS(3011), + [sym_identifier] = ACTIONS(3009), + [aux_sym_preproc_include_token1] = ACTIONS(3009), + [aux_sym_preproc_def_token1] = ACTIONS(3009), + [aux_sym_preproc_if_token1] = ACTIONS(3009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3009), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3009), + [sym_preproc_directive] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(3011), + [anon_sym_BANG] = ACTIONS(3011), + [anon_sym_TILDE] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_AMP_AMP] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym___extension__] = ACTIONS(3009), + [anon_sym_typedef] = ACTIONS(3009), + [anon_sym_extern] = ACTIONS(3009), + [anon_sym___attribute__] = ACTIONS(3009), + [anon_sym_COLON_COLON] = ACTIONS(3011), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3011), + [anon_sym___declspec] = ACTIONS(3009), + [anon_sym___based] = ACTIONS(3009), + [anon_sym___cdecl] = ACTIONS(3009), + [anon_sym___clrcall] = ACTIONS(3009), + [anon_sym___stdcall] = ACTIONS(3009), + [anon_sym___fastcall] = ACTIONS(3009), + [anon_sym___thiscall] = ACTIONS(3009), + [anon_sym___vectorcall] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_signed] = ACTIONS(3009), + [anon_sym_unsigned] = ACTIONS(3009), + [anon_sym_long] = ACTIONS(3009), + [anon_sym_short] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_static] = ACTIONS(3009), + [anon_sym_register] = ACTIONS(3009), + [anon_sym_inline] = ACTIONS(3009), + [anon_sym___inline] = ACTIONS(3009), + [anon_sym___inline__] = ACTIONS(3009), + [anon_sym___forceinline] = ACTIONS(3009), + [anon_sym_thread_local] = ACTIONS(3009), + [anon_sym___thread] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3009), + [anon_sym_constexpr] = ACTIONS(3009), + [anon_sym_volatile] = ACTIONS(3009), + [anon_sym_restrict] = ACTIONS(3009), + [anon_sym___restrict__] = ACTIONS(3009), + [anon_sym__Atomic] = ACTIONS(3009), + [anon_sym__Noreturn] = ACTIONS(3009), + [anon_sym_noreturn] = ACTIONS(3009), + [anon_sym_mutable] = ACTIONS(3009), + [anon_sym_constinit] = ACTIONS(3009), + [anon_sym_consteval] = ACTIONS(3009), + [sym_primitive_type] = ACTIONS(3009), + [anon_sym_enum] = ACTIONS(3009), + [anon_sym_class] = ACTIONS(3009), + [anon_sym_struct] = ACTIONS(3009), + [anon_sym_union] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_switch] = ACTIONS(3009), + [anon_sym_case] = ACTIONS(3009), + [anon_sym_default] = ACTIONS(3009), + [anon_sym_while] = ACTIONS(3009), + [anon_sym_do] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_break] = ACTIONS(3009), + [anon_sym_continue] = ACTIONS(3009), + [anon_sym_goto] = ACTIONS(3009), + [anon_sym_not] = ACTIONS(3009), + [anon_sym_compl] = ACTIONS(3009), + [anon_sym_DASH_DASH] = ACTIONS(3011), + [anon_sym_PLUS_PLUS] = ACTIONS(3011), + [anon_sym_sizeof] = ACTIONS(3009), + [anon_sym___alignof__] = ACTIONS(3009), + [anon_sym___alignof] = ACTIONS(3009), + [anon_sym__alignof] = ACTIONS(3009), + [anon_sym_alignof] = ACTIONS(3009), + [anon_sym__Alignof] = ACTIONS(3009), + [anon_sym_offsetof] = ACTIONS(3009), + [anon_sym__Generic] = ACTIONS(3009), + [anon_sym_asm] = ACTIONS(3009), + [anon_sym___asm__] = ACTIONS(3009), + [sym_number_literal] = ACTIONS(3011), + [anon_sym_L_SQUOTE] = ACTIONS(3011), + [anon_sym_u_SQUOTE] = ACTIONS(3011), + [anon_sym_U_SQUOTE] = ACTIONS(3011), + [anon_sym_u8_SQUOTE] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_L_DQUOTE] = ACTIONS(3011), + [anon_sym_u_DQUOTE] = ACTIONS(3011), + [anon_sym_U_DQUOTE] = ACTIONS(3011), + [anon_sym_u8_DQUOTE] = ACTIONS(3011), + [anon_sym_DQUOTE] = ACTIONS(3011), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3009), + [anon_sym_nullptr] = ACTIONS(3009), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3009), + [anon_sym_decltype] = ACTIONS(3009), + [anon_sym_virtual] = ACTIONS(3009), + [anon_sym_alignas] = ACTIONS(3009), + [anon_sym_explicit] = ACTIONS(3009), + [anon_sym_typename] = ACTIONS(3009), + [anon_sym_template] = ACTIONS(3009), + [anon_sym_operator] = ACTIONS(3009), + [anon_sym_try] = ACTIONS(3009), + [anon_sym_delete] = ACTIONS(3009), + [anon_sym_throw] = ACTIONS(3009), + [anon_sym_namespace] = ACTIONS(3009), + [anon_sym_using] = ACTIONS(3009), + [anon_sym_static_assert] = ACTIONS(3009), + [anon_sym_concept] = ACTIONS(3009), + [anon_sym_co_return] = ACTIONS(3009), + [anon_sym_co_yield] = ACTIONS(3009), + [anon_sym_R_DQUOTE] = ACTIONS(3011), + [anon_sym_LR_DQUOTE] = ACTIONS(3011), + [anon_sym_uR_DQUOTE] = ACTIONS(3011), + [anon_sym_UR_DQUOTE] = ACTIONS(3011), + [anon_sym_u8R_DQUOTE] = ACTIONS(3011), + [anon_sym_co_await] = ACTIONS(3009), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(3009), + [sym_this] = ACTIONS(3009), + }, + [924] = { + [sym_preproc_def] = STATE(898), + [sym_preproc_function_def] = STATE(898), + [sym_preproc_call] = STATE(898), + [sym_preproc_if_in_field_declaration_list] = STATE(898), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(898), + [sym_type_definition] = STATE(898), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5178), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(898), + [sym_field_declaration] = STATE(898), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(898), + [sym_operator_cast] = STATE(6136), + [sym_inline_method_definition] = STATE(898), + [sym__constructor_specifiers] = STATE(1777), + [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_access_specifier] = STATE(7545), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(898), + [sym_alias_declaration] = STATE(898), + [sym_static_assert_declaration] = STATE(898), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(898), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3501), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3505), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3507), + [anon_sym_typedef] = ACTIONS(3509), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3527), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2985), - [anon_sym_decltype] = ACTIONS(2985), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_alignas] = ACTIONS(2985), - [anon_sym_explicit] = ACTIONS(2985), - [anon_sym_typename] = ACTIONS(2985), - [anon_sym_template] = ACTIONS(2985), - [anon_sym_operator] = ACTIONS(2985), - [anon_sym_try] = ACTIONS(2985), - [anon_sym_delete] = ACTIONS(2985), - [anon_sym_throw] = ACTIONS(2985), - [anon_sym_namespace] = ACTIONS(2985), - [anon_sym_using] = ACTIONS(2985), - [anon_sym_static_assert] = ACTIONS(2985), - [anon_sym_concept] = ACTIONS(2985), - [anon_sym_co_return] = ACTIONS(2985), - [anon_sym_co_yield] = ACTIONS(2985), - [anon_sym_R_DQUOTE] = ACTIONS(2987), - [anon_sym_LR_DQUOTE] = ACTIONS(2987), - [anon_sym_uR_DQUOTE] = ACTIONS(2987), - [anon_sym_UR_DQUOTE] = ACTIONS(2987), - [anon_sym_u8R_DQUOTE] = ACTIONS(2987), - [anon_sym_co_await] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_requires] = ACTIONS(2985), - [sym_this] = ACTIONS(2985), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3515), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3517), + [anon_sym_static_assert] = ACTIONS(3519), }, - [897] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [925] = { + [ts_builtin_sym_end] = ACTIONS(3174), + [sym_identifier] = ACTIONS(3172), + [aux_sym_preproc_include_token1] = ACTIONS(3172), + [aux_sym_preproc_def_token1] = ACTIONS(3172), + [aux_sym_preproc_if_token1] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3172), + [sym_preproc_directive] = ACTIONS(3172), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3172), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym___extension__] = ACTIONS(3172), + [anon_sym_typedef] = ACTIONS(3172), + [anon_sym_extern] = ACTIONS(3172), + [anon_sym___attribute__] = ACTIONS(3172), + [anon_sym_COLON_COLON] = ACTIONS(3174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3174), + [anon_sym___declspec] = ACTIONS(3172), + [anon_sym___based] = ACTIONS(3172), + [anon_sym___cdecl] = ACTIONS(3172), + [anon_sym___clrcall] = ACTIONS(3172), + [anon_sym___stdcall] = ACTIONS(3172), + [anon_sym___fastcall] = ACTIONS(3172), + [anon_sym___thiscall] = ACTIONS(3172), + [anon_sym___vectorcall] = ACTIONS(3172), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_signed] = ACTIONS(3172), + [anon_sym_unsigned] = ACTIONS(3172), + [anon_sym_long] = ACTIONS(3172), + [anon_sym_short] = ACTIONS(3172), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3172), + [anon_sym_register] = ACTIONS(3172), + [anon_sym_inline] = ACTIONS(3172), + [anon_sym___inline] = ACTIONS(3172), + [anon_sym___inline__] = ACTIONS(3172), + [anon_sym___forceinline] = ACTIONS(3172), + [anon_sym_thread_local] = ACTIONS(3172), + [anon_sym___thread] = ACTIONS(3172), + [anon_sym_const] = ACTIONS(3172), + [anon_sym_constexpr] = ACTIONS(3172), + [anon_sym_volatile] = ACTIONS(3172), + [anon_sym_restrict] = ACTIONS(3172), + [anon_sym___restrict__] = ACTIONS(3172), + [anon_sym__Atomic] = ACTIONS(3172), + [anon_sym__Noreturn] = ACTIONS(3172), + [anon_sym_noreturn] = ACTIONS(3172), + [anon_sym_mutable] = ACTIONS(3172), + [anon_sym_constinit] = ACTIONS(3172), + [anon_sym_consteval] = ACTIONS(3172), + [sym_primitive_type] = ACTIONS(3172), + [anon_sym_enum] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3172), + [anon_sym_union] = ACTIONS(3172), + [anon_sym_if] = ACTIONS(3172), + [anon_sym_switch] = ACTIONS(3172), + [anon_sym_case] = ACTIONS(3172), + [anon_sym_default] = ACTIONS(3172), + [anon_sym_while] = ACTIONS(3172), + [anon_sym_do] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_return] = ACTIONS(3172), + [anon_sym_break] = ACTIONS(3172), + [anon_sym_continue] = ACTIONS(3172), + [anon_sym_goto] = ACTIONS(3172), + [anon_sym_not] = ACTIONS(3172), + [anon_sym_compl] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_sizeof] = ACTIONS(3172), + [anon_sym___alignof__] = ACTIONS(3172), + [anon_sym___alignof] = ACTIONS(3172), + [anon_sym__alignof] = ACTIONS(3172), + [anon_sym_alignof] = ACTIONS(3172), + [anon_sym__Alignof] = ACTIONS(3172), + [anon_sym_offsetof] = ACTIONS(3172), + [anon_sym__Generic] = ACTIONS(3172), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3174), + [anon_sym_u_SQUOTE] = ACTIONS(3174), + [anon_sym_U_SQUOTE] = ACTIONS(3174), + [anon_sym_u8_SQUOTE] = ACTIONS(3174), + [anon_sym_SQUOTE] = ACTIONS(3174), + [anon_sym_L_DQUOTE] = ACTIONS(3174), + [anon_sym_u_DQUOTE] = ACTIONS(3174), + [anon_sym_U_DQUOTE] = ACTIONS(3174), + [anon_sym_u8_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3172), + [anon_sym_nullptr] = ACTIONS(3172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3172), + [anon_sym_decltype] = ACTIONS(3172), + [anon_sym_virtual] = ACTIONS(3172), + [anon_sym_alignas] = ACTIONS(3172), + [anon_sym_explicit] = ACTIONS(3172), + [anon_sym_typename] = ACTIONS(3172), + [anon_sym_template] = ACTIONS(3172), + [anon_sym_operator] = ACTIONS(3172), + [anon_sym_try] = ACTIONS(3172), + [anon_sym_delete] = ACTIONS(3172), + [anon_sym_throw] = ACTIONS(3172), + [anon_sym_namespace] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3172), + [anon_sym_static_assert] = ACTIONS(3172), + [anon_sym_concept] = ACTIONS(3172), + [anon_sym_co_return] = ACTIONS(3172), + [anon_sym_co_yield] = ACTIONS(3172), + [anon_sym_R_DQUOTE] = ACTIONS(3174), + [anon_sym_LR_DQUOTE] = ACTIONS(3174), + [anon_sym_uR_DQUOTE] = ACTIONS(3174), + [anon_sym_UR_DQUOTE] = ACTIONS(3174), + [anon_sym_u8R_DQUOTE] = ACTIONS(3174), + [anon_sym_co_await] = ACTIONS(3172), + [anon_sym_new] = ACTIONS(3172), + [anon_sym_requires] = ACTIONS(3172), + [sym_this] = ACTIONS(3172), }, - [898] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [926] = { + [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___extension__] = ACTIONS(2965), + [anon_sym_typedef] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2965), + [anon_sym___attribute__] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(2967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), + [anon_sym___declspec] = ACTIONS(2965), + [anon_sym___based] = ACTIONS(2965), + [anon_sym___cdecl] = ACTIONS(2965), + [anon_sym___clrcall] = ACTIONS(2965), + [anon_sym___stdcall] = ACTIONS(2965), + [anon_sym___fastcall] = ACTIONS(2965), + [anon_sym___thiscall] = ACTIONS(2965), + [anon_sym___vectorcall] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_signed] = ACTIONS(2965), + [anon_sym_unsigned] = ACTIONS(2965), + [anon_sym_long] = ACTIONS(2965), + [anon_sym_short] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_static] = ACTIONS(2965), + [anon_sym_register] = ACTIONS(2965), + [anon_sym_inline] = ACTIONS(2965), + [anon_sym___inline] = ACTIONS(2965), + [anon_sym___inline__] = ACTIONS(2965), + [anon_sym___forceinline] = ACTIONS(2965), + [anon_sym_thread_local] = ACTIONS(2965), + [anon_sym___thread] = ACTIONS(2965), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_constexpr] = ACTIONS(2965), + [anon_sym_volatile] = ACTIONS(2965), + [anon_sym_restrict] = ACTIONS(2965), + [anon_sym___restrict__] = ACTIONS(2965), + [anon_sym__Atomic] = ACTIONS(2965), + [anon_sym__Noreturn] = ACTIONS(2965), + [anon_sym_noreturn] = ACTIONS(2965), + [anon_sym_mutable] = ACTIONS(2965), + [anon_sym_constinit] = ACTIONS(2965), + [anon_sym_consteval] = ACTIONS(2965), + [sym_primitive_type] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_class] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_union] = ACTIONS(2965), + [anon_sym_if] = ACTIONS(2965), + [anon_sym_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), + [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(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2965), + [anon_sym_decltype] = ACTIONS(2965), + [anon_sym_virtual] = ACTIONS(2965), + [anon_sym_alignas] = ACTIONS(2965), + [anon_sym_explicit] = ACTIONS(2965), + [anon_sym_typename] = ACTIONS(2965), + [anon_sym_template] = ACTIONS(2965), + [anon_sym_operator] = ACTIONS(2965), + [anon_sym_try] = ACTIONS(2965), + [anon_sym_delete] = ACTIONS(2965), + [anon_sym_throw] = ACTIONS(2965), + [anon_sym_namespace] = ACTIONS(2965), + [anon_sym_using] = ACTIONS(2965), + [anon_sym_static_assert] = ACTIONS(2965), + [anon_sym_concept] = ACTIONS(2965), + [anon_sym_co_return] = ACTIONS(2965), + [anon_sym_co_yield] = ACTIONS(2965), + [anon_sym_R_DQUOTE] = ACTIONS(2967), + [anon_sym_LR_DQUOTE] = ACTIONS(2967), + [anon_sym_uR_DQUOTE] = ACTIONS(2967), + [anon_sym_UR_DQUOTE] = ACTIONS(2967), + [anon_sym_u8R_DQUOTE] = ACTIONS(2967), + [anon_sym_co_await] = ACTIONS(2965), + [anon_sym_new] = ACTIONS(2965), + [anon_sym_requires] = ACTIONS(2965), + [sym_this] = ACTIONS(2965), }, - [899] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [927] = { + [ts_builtin_sym_end] = ACTIONS(3105), + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_include_token1] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym___cdecl] = ACTIONS(3103), + [anon_sym___clrcall] = ACTIONS(3103), + [anon_sym___stdcall] = ACTIONS(3103), + [anon_sym___fastcall] = ACTIONS(3103), + [anon_sym___thiscall] = ACTIONS(3103), + [anon_sym___vectorcall] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3103), + [anon_sym_case] = ACTIONS(3103), + [anon_sym_default] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_do] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_compl] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_sizeof] = ACTIONS(3103), + [anon_sym___alignof__] = ACTIONS(3103), + [anon_sym___alignof] = ACTIONS(3103), + [anon_sym__alignof] = ACTIONS(3103), + [anon_sym_alignof] = ACTIONS(3103), + [anon_sym__Alignof] = ACTIONS(3103), + [anon_sym_offsetof] = ACTIONS(3103), + [anon_sym__Generic] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym___asm__] = ACTIONS(3103), + [sym_number_literal] = ACTIONS(3105), + [anon_sym_L_SQUOTE] = ACTIONS(3105), + [anon_sym_u_SQUOTE] = ACTIONS(3105), + [anon_sym_U_SQUOTE] = ACTIONS(3105), + [anon_sym_u8_SQUOTE] = ACTIONS(3105), + [anon_sym_SQUOTE] = ACTIONS(3105), + [anon_sym_L_DQUOTE] = ACTIONS(3105), + [anon_sym_u_DQUOTE] = ACTIONS(3105), + [anon_sym_U_DQUOTE] = ACTIONS(3105), + [anon_sym_u8_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [sym_true] = ACTIONS(3103), + [sym_false] = ACTIONS(3103), + [anon_sym_NULL] = ACTIONS(3103), + [anon_sym_nullptr] = ACTIONS(3103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_delete] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + [anon_sym_concept] = ACTIONS(3103), + [anon_sym_co_return] = ACTIONS(3103), + [anon_sym_co_yield] = ACTIONS(3103), + [anon_sym_R_DQUOTE] = ACTIONS(3105), + [anon_sym_LR_DQUOTE] = ACTIONS(3105), + [anon_sym_uR_DQUOTE] = ACTIONS(3105), + [anon_sym_UR_DQUOTE] = ACTIONS(3105), + [anon_sym_u8R_DQUOTE] = ACTIONS(3105), + [anon_sym_co_await] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(3103), + [sym_this] = ACTIONS(3103), }, - [900] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [928] = { + [sym_preproc_def] = STATE(928), + [sym_preproc_function_def] = STATE(928), + [sym_preproc_call] = STATE(928), + [sym_preproc_if_in_field_declaration_list] = STATE(928), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(928), + [sym_type_definition] = STATE(928), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5159), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5758), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(928), + [sym_field_declaration] = STATE(928), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1783), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(928), + [sym_operator_cast] = STATE(6134), + [sym_inline_method_definition] = STATE(928), + [sym__constructor_specifiers] = STATE(1783), + [sym_operator_cast_definition] = STATE(928), + [sym_operator_cast_declaration] = STATE(928), + [sym_constructor_or_destructor_definition] = STATE(928), + [sym_constructor_or_destructor_declaration] = STATE(928), + [sym_friend_declaration] = STATE(928), + [sym_access_specifier] = STATE(7375), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(928), + [sym_alias_declaration] = STATE(928), + [sym_static_assert_declaration] = STATE(928), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6134), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(928), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [sym_identifier] = ACTIONS(3283), + [aux_sym_preproc_def_token1] = ACTIONS(3529), + [aux_sym_preproc_if_token1] = ACTIONS(3532), + [aux_sym_preproc_if_token2] = ACTIONS(3292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3535), + [sym_preproc_directive] = ACTIONS(3538), + [anon_sym_LPAREN2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_AMP_AMP] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym___extension__] = ACTIONS(3541), + [anon_sym_typedef] = ACTIONS(3544), + [anon_sym_extern] = ACTIONS(3321), + [anon_sym___attribute__] = ACTIONS(3324), + [anon_sym_COLON_COLON] = ACTIONS(3327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3330), + [anon_sym___declspec] = ACTIONS(3333), + [anon_sym___based] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3339), + [anon_sym_unsigned] = ACTIONS(3339), + [anon_sym_long] = ACTIONS(3339), + [anon_sym_short] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3321), + [anon_sym_register] = ACTIONS(3321), + [anon_sym_inline] = ACTIONS(3321), + [anon_sym___inline] = ACTIONS(3321), + [anon_sym___inline__] = ACTIONS(3321), + [anon_sym___forceinline] = ACTIONS(3321), + [anon_sym_thread_local] = ACTIONS(3321), + [anon_sym___thread] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3345), + [anon_sym_constexpr] = ACTIONS(3345), + [anon_sym_volatile] = ACTIONS(3345), + [anon_sym_restrict] = ACTIONS(3345), + [anon_sym___restrict__] = ACTIONS(3345), + [anon_sym__Atomic] = ACTIONS(3345), + [anon_sym__Noreturn] = ACTIONS(3345), + [anon_sym_noreturn] = ACTIONS(3345), + [anon_sym_mutable] = ACTIONS(3345), + [anon_sym_constinit] = ACTIONS(3345), + [anon_sym_consteval] = ACTIONS(3345), + [sym_primitive_type] = ACTIONS(3348), + [anon_sym_enum] = ACTIONS(3351), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3357), + [anon_sym_union] = ACTIONS(3360), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3363), + [anon_sym_decltype] = ACTIONS(3366), + [anon_sym_virtual] = ACTIONS(3369), + [anon_sym_alignas] = ACTIONS(3372), + [anon_sym_explicit] = ACTIONS(3375), + [anon_sym_typename] = ACTIONS(3378), + [anon_sym_template] = ACTIONS(3547), + [anon_sym_operator] = ACTIONS(3384), + [anon_sym_friend] = ACTIONS(3550), + [anon_sym_public] = ACTIONS(3390), + [anon_sym_private] = ACTIONS(3390), + [anon_sym_protected] = ACTIONS(3390), + [anon_sym_using] = ACTIONS(3553), + [anon_sym_static_assert] = ACTIONS(3556), + }, + [929] = { + [ts_builtin_sym_end] = ACTIONS(3170), + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_include_token1] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3170), + [anon_sym_AMP_AMP] = ACTIONS(3170), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3170), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym___cdecl] = ACTIONS(3168), + [anon_sym___clrcall] = ACTIONS(3168), + [anon_sym___stdcall] = ACTIONS(3168), + [anon_sym___fastcall] = ACTIONS(3168), + [anon_sym___thiscall] = ACTIONS(3168), + [anon_sym___vectorcall] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_goto] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym___alignof__] = ACTIONS(3168), + [anon_sym___alignof] = ACTIONS(3168), + [anon_sym__alignof] = ACTIONS(3168), + [anon_sym_alignof] = ACTIONS(3168), + [anon_sym__Alignof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3170), + [anon_sym_L_SQUOTE] = ACTIONS(3170), + [anon_sym_u_SQUOTE] = ACTIONS(3170), + [anon_sym_U_SQUOTE] = ACTIONS(3170), + [anon_sym_u8_SQUOTE] = ACTIONS(3170), + [anon_sym_SQUOTE] = ACTIONS(3170), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_concept] = ACTIONS(3168), + [anon_sym_co_return] = ACTIONS(3168), + [anon_sym_co_yield] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3170), + [anon_sym_LR_DQUOTE] = ACTIONS(3170), + [anon_sym_uR_DQUOTE] = ACTIONS(3170), + [anon_sym_UR_DQUOTE] = ACTIONS(3170), + [anon_sym_u8R_DQUOTE] = ACTIONS(3170), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [sym_this] = ACTIONS(3168), + }, + [930] = { + [ts_builtin_sym_end] = ACTIONS(3105), + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_include_token1] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym___cdecl] = ACTIONS(3103), + [anon_sym___clrcall] = ACTIONS(3103), + [anon_sym___stdcall] = ACTIONS(3103), + [anon_sym___fastcall] = ACTIONS(3103), + [anon_sym___thiscall] = ACTIONS(3103), + [anon_sym___vectorcall] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3103), + [anon_sym_case] = ACTIONS(3103), + [anon_sym_default] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_do] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_compl] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_sizeof] = ACTIONS(3103), + [anon_sym___alignof__] = ACTIONS(3103), + [anon_sym___alignof] = ACTIONS(3103), + [anon_sym__alignof] = ACTIONS(3103), + [anon_sym_alignof] = ACTIONS(3103), + [anon_sym__Alignof] = ACTIONS(3103), + [anon_sym_offsetof] = ACTIONS(3103), + [anon_sym__Generic] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym___asm__] = ACTIONS(3103), + [sym_number_literal] = ACTIONS(3105), + [anon_sym_L_SQUOTE] = ACTIONS(3105), + [anon_sym_u_SQUOTE] = ACTIONS(3105), + [anon_sym_U_SQUOTE] = ACTIONS(3105), + [anon_sym_u8_SQUOTE] = ACTIONS(3105), + [anon_sym_SQUOTE] = ACTIONS(3105), + [anon_sym_L_DQUOTE] = ACTIONS(3105), + [anon_sym_u_DQUOTE] = ACTIONS(3105), + [anon_sym_U_DQUOTE] = ACTIONS(3105), + [anon_sym_u8_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [sym_true] = ACTIONS(3103), + [sym_false] = ACTIONS(3103), + [anon_sym_NULL] = ACTIONS(3103), + [anon_sym_nullptr] = ACTIONS(3103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_delete] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + [anon_sym_concept] = ACTIONS(3103), + [anon_sym_co_return] = ACTIONS(3103), + [anon_sym_co_yield] = ACTIONS(3103), + [anon_sym_R_DQUOTE] = ACTIONS(3105), + [anon_sym_LR_DQUOTE] = ACTIONS(3105), + [anon_sym_uR_DQUOTE] = ACTIONS(3105), + [anon_sym_UR_DQUOTE] = ACTIONS(3105), + [anon_sym_u8R_DQUOTE] = ACTIONS(3105), + [anon_sym_co_await] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(3103), + [sym_this] = ACTIONS(3103), }, - [901] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [931] = { + [sym_preproc_def] = STATE(924), + [sym_preproc_function_def] = STATE(924), + [sym_preproc_call] = STATE(924), + [sym_preproc_if_in_field_declaration_list] = STATE(924), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(924), + [sym_type_definition] = STATE(924), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5178), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(924), + [sym_field_declaration] = STATE(924), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(924), + [sym_operator_cast] = STATE(6136), + [sym_inline_method_definition] = STATE(924), + [sym__constructor_specifiers] = STATE(1777), + [sym_operator_cast_definition] = STATE(924), + [sym_operator_cast_declaration] = STATE(924), + [sym_constructor_or_destructor_definition] = STATE(924), + [sym_constructor_or_destructor_declaration] = STATE(924), + [sym_friend_declaration] = STATE(924), + [sym_access_specifier] = STATE(7545), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(924), + [sym_alias_declaration] = STATE(924), + [sym_static_assert_declaration] = STATE(924), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(924), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3501), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3505), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3507), + [anon_sym_typedef] = ACTIONS(3509), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3559), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3515), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3517), + [anon_sym_static_assert] = ACTIONS(3519), }, - [902] = { - [ts_builtin_sym_end] = ACTIONS(2784), - [sym_identifier] = ACTIONS(2782), - [aux_sym_preproc_include_token1] = ACTIONS(2782), - [aux_sym_preproc_def_token1] = ACTIONS(2782), - [aux_sym_preproc_if_token1] = ACTIONS(2782), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2782), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2782), - [sym_preproc_directive] = ACTIONS(2782), - [anon_sym_LPAREN2] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym___extension__] = ACTIONS(2782), - [anon_sym_typedef] = ACTIONS(2782), - [anon_sym_extern] = ACTIONS(2782), - [anon_sym___attribute__] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2784), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2784), - [anon_sym___declspec] = ACTIONS(2782), - [anon_sym___based] = ACTIONS(2782), - [anon_sym___cdecl] = ACTIONS(2782), - [anon_sym___clrcall] = ACTIONS(2782), - [anon_sym___stdcall] = ACTIONS(2782), - [anon_sym___fastcall] = ACTIONS(2782), - [anon_sym___thiscall] = ACTIONS(2782), - [anon_sym___vectorcall] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_signed] = ACTIONS(2782), - [anon_sym_unsigned] = ACTIONS(2782), - [anon_sym_long] = ACTIONS(2782), - [anon_sym_short] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_static] = ACTIONS(2782), - [anon_sym_register] = ACTIONS(2782), - [anon_sym_inline] = ACTIONS(2782), - [anon_sym___inline] = ACTIONS(2782), - [anon_sym___inline__] = ACTIONS(2782), - [anon_sym___forceinline] = ACTIONS(2782), - [anon_sym_thread_local] = ACTIONS(2782), - [anon_sym___thread] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_constexpr] = ACTIONS(2782), - [anon_sym_volatile] = ACTIONS(2782), - [anon_sym_restrict] = ACTIONS(2782), - [anon_sym___restrict__] = ACTIONS(2782), - [anon_sym__Atomic] = ACTIONS(2782), - [anon_sym__Noreturn] = ACTIONS(2782), - [anon_sym_noreturn] = ACTIONS(2782), - [anon_sym_mutable] = ACTIONS(2782), - [anon_sym_constinit] = ACTIONS(2782), - [anon_sym_consteval] = ACTIONS(2782), - [sym_primitive_type] = ACTIONS(2782), - [anon_sym_enum] = ACTIONS(2782), - [anon_sym_class] = ACTIONS(2782), - [anon_sym_struct] = ACTIONS(2782), - [anon_sym_union] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_else] = ACTIONS(2782), - [anon_sym_switch] = ACTIONS(2782), - [anon_sym_case] = ACTIONS(2782), - [anon_sym_default] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_goto] = ACTIONS(2782), - [anon_sym_not] = ACTIONS(2782), - [anon_sym_compl] = ACTIONS(2782), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_sizeof] = ACTIONS(2782), - [anon_sym___alignof__] = ACTIONS(2782), - [anon_sym___alignof] = ACTIONS(2782), - [anon_sym__alignof] = ACTIONS(2782), - [anon_sym_alignof] = ACTIONS(2782), - [anon_sym__Alignof] = ACTIONS(2782), - [anon_sym_offsetof] = ACTIONS(2782), - [anon_sym__Generic] = ACTIONS(2782), - [anon_sym_asm] = ACTIONS(2782), - [anon_sym___asm__] = ACTIONS(2782), - [sym_number_literal] = ACTIONS(2784), - [anon_sym_L_SQUOTE] = ACTIONS(2784), - [anon_sym_u_SQUOTE] = ACTIONS(2784), - [anon_sym_U_SQUOTE] = ACTIONS(2784), - [anon_sym_u8_SQUOTE] = ACTIONS(2784), - [anon_sym_SQUOTE] = ACTIONS(2784), - [anon_sym_L_DQUOTE] = ACTIONS(2784), - [anon_sym_u_DQUOTE] = ACTIONS(2784), - [anon_sym_U_DQUOTE] = ACTIONS(2784), - [anon_sym_u8_DQUOTE] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [sym_true] = ACTIONS(2782), - [sym_false] = ACTIONS(2782), - [anon_sym_NULL] = ACTIONS(2782), - [anon_sym_nullptr] = ACTIONS(2782), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2782), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_virtual] = ACTIONS(2782), - [anon_sym_alignas] = ACTIONS(2782), - [anon_sym_explicit] = ACTIONS(2782), - [anon_sym_typename] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2782), - [anon_sym_operator] = ACTIONS(2782), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_delete] = ACTIONS(2782), - [anon_sym_throw] = ACTIONS(2782), - [anon_sym_namespace] = ACTIONS(2782), - [anon_sym_using] = ACTIONS(2782), - [anon_sym_static_assert] = ACTIONS(2782), - [anon_sym_concept] = ACTIONS(2782), - [anon_sym_co_return] = ACTIONS(2782), - [anon_sym_co_yield] = ACTIONS(2782), - [anon_sym_R_DQUOTE] = ACTIONS(2784), - [anon_sym_LR_DQUOTE] = ACTIONS(2784), - [anon_sym_uR_DQUOTE] = ACTIONS(2784), - [anon_sym_UR_DQUOTE] = ACTIONS(2784), - [anon_sym_u8R_DQUOTE] = ACTIONS(2784), - [anon_sym_co_await] = ACTIONS(2782), - [anon_sym_new] = ACTIONS(2782), - [anon_sym_requires] = ACTIONS(2782), - [sym_this] = ACTIONS(2782), + [932] = { + [ts_builtin_sym_end] = ACTIONS(3166), + [sym_identifier] = ACTIONS(3164), + [aux_sym_preproc_include_token1] = ACTIONS(3164), + [aux_sym_preproc_def_token1] = ACTIONS(3164), + [aux_sym_preproc_if_token1] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3164), + [sym_preproc_directive] = ACTIONS(3164), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3164), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3164), + [anon_sym___extension__] = ACTIONS(3164), + [anon_sym_typedef] = ACTIONS(3164), + [anon_sym_extern] = ACTIONS(3164), + [anon_sym___attribute__] = ACTIONS(3164), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3164), + [anon_sym___based] = ACTIONS(3164), + [anon_sym___cdecl] = ACTIONS(3164), + [anon_sym___clrcall] = ACTIONS(3164), + [anon_sym___stdcall] = ACTIONS(3164), + [anon_sym___fastcall] = ACTIONS(3164), + [anon_sym___thiscall] = ACTIONS(3164), + [anon_sym___vectorcall] = ACTIONS(3164), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_signed] = ACTIONS(3164), + [anon_sym_unsigned] = ACTIONS(3164), + [anon_sym_long] = ACTIONS(3164), + [anon_sym_short] = ACTIONS(3164), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_static] = ACTIONS(3164), + [anon_sym_register] = ACTIONS(3164), + [anon_sym_inline] = ACTIONS(3164), + [anon_sym___inline] = ACTIONS(3164), + [anon_sym___inline__] = ACTIONS(3164), + [anon_sym___forceinline] = ACTIONS(3164), + [anon_sym_thread_local] = ACTIONS(3164), + [anon_sym___thread] = ACTIONS(3164), + [anon_sym_const] = ACTIONS(3164), + [anon_sym_constexpr] = ACTIONS(3164), + [anon_sym_volatile] = ACTIONS(3164), + [anon_sym_restrict] = ACTIONS(3164), + [anon_sym___restrict__] = ACTIONS(3164), + [anon_sym__Atomic] = ACTIONS(3164), + [anon_sym__Noreturn] = ACTIONS(3164), + [anon_sym_noreturn] = ACTIONS(3164), + [anon_sym_mutable] = ACTIONS(3164), + [anon_sym_constinit] = ACTIONS(3164), + [anon_sym_consteval] = ACTIONS(3164), + [sym_primitive_type] = ACTIONS(3164), + [anon_sym_enum] = ACTIONS(3164), + [anon_sym_class] = ACTIONS(3164), + [anon_sym_struct] = ACTIONS(3164), + [anon_sym_union] = ACTIONS(3164), + [anon_sym_if] = ACTIONS(3164), + [anon_sym_switch] = ACTIONS(3164), + [anon_sym_case] = ACTIONS(3164), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_while] = ACTIONS(3164), + [anon_sym_do] = ACTIONS(3164), + [anon_sym_for] = ACTIONS(3164), + [anon_sym_return] = ACTIONS(3164), + [anon_sym_break] = ACTIONS(3164), + [anon_sym_continue] = ACTIONS(3164), + [anon_sym_goto] = ACTIONS(3164), + [anon_sym_not] = ACTIONS(3164), + [anon_sym_compl] = ACTIONS(3164), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3164), + [anon_sym___alignof] = ACTIONS(3164), + [anon_sym__alignof] = ACTIONS(3164), + [anon_sym_alignof] = ACTIONS(3164), + [anon_sym__Alignof] = ACTIONS(3164), + [anon_sym_offsetof] = ACTIONS(3164), + [anon_sym__Generic] = ACTIONS(3164), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3166), + [anon_sym_u_SQUOTE] = ACTIONS(3166), + [anon_sym_U_SQUOTE] = ACTIONS(3166), + [anon_sym_u8_SQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_L_DQUOTE] = ACTIONS(3166), + [anon_sym_u_DQUOTE] = ACTIONS(3166), + [anon_sym_U_DQUOTE] = ACTIONS(3166), + [anon_sym_u8_DQUOTE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [sym_true] = ACTIONS(3164), + [sym_false] = ACTIONS(3164), + [anon_sym_NULL] = ACTIONS(3164), + [anon_sym_nullptr] = ACTIONS(3164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3164), + [anon_sym_decltype] = ACTIONS(3164), + [anon_sym_virtual] = ACTIONS(3164), + [anon_sym_alignas] = ACTIONS(3164), + [anon_sym_explicit] = ACTIONS(3164), + [anon_sym_typename] = ACTIONS(3164), + [anon_sym_template] = ACTIONS(3164), + [anon_sym_operator] = ACTIONS(3164), + [anon_sym_try] = ACTIONS(3164), + [anon_sym_delete] = ACTIONS(3164), + [anon_sym_throw] = ACTIONS(3164), + [anon_sym_namespace] = ACTIONS(3164), + [anon_sym_using] = ACTIONS(3164), + [anon_sym_static_assert] = ACTIONS(3164), + [anon_sym_concept] = ACTIONS(3164), + [anon_sym_co_return] = ACTIONS(3164), + [anon_sym_co_yield] = ACTIONS(3164), + [anon_sym_R_DQUOTE] = ACTIONS(3166), + [anon_sym_LR_DQUOTE] = ACTIONS(3166), + [anon_sym_uR_DQUOTE] = ACTIONS(3166), + [anon_sym_UR_DQUOTE] = ACTIONS(3166), + [anon_sym_u8R_DQUOTE] = ACTIONS(3166), + [anon_sym_co_await] = ACTIONS(3164), + [anon_sym_new] = ACTIONS(3164), + [anon_sym_requires] = ACTIONS(3164), + [sym_this] = ACTIONS(3164), }, - [903] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [933] = { + [sym_preproc_def] = STATE(940), + [sym_preproc_function_def] = STATE(940), + [sym_preproc_call] = STATE(940), + [sym_preproc_if_in_field_declaration_list] = STATE(940), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(940), + [sym_type_definition] = STATE(940), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5178), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(940), + [sym_field_declaration] = STATE(940), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(940), + [sym_operator_cast] = STATE(6136), + [sym_inline_method_definition] = STATE(940), + [sym__constructor_specifiers] = STATE(1777), + [sym_operator_cast_definition] = STATE(940), + [sym_operator_cast_declaration] = STATE(940), + [sym_constructor_or_destructor_definition] = STATE(940), + [sym_constructor_or_destructor_declaration] = STATE(940), + [sym_friend_declaration] = STATE(940), + [sym_access_specifier] = STATE(7545), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(940), + [sym_alias_declaration] = STATE(940), + [sym_static_assert_declaration] = STATE(940), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(940), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3501), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3505), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3507), + [anon_sym_typedef] = ACTIONS(3509), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3561), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3515), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3517), + [anon_sym_static_assert] = ACTIONS(3519), }, - [904] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [934] = { + [ts_builtin_sym_end] = ACTIONS(3162), + [sym_identifier] = ACTIONS(3160), + [aux_sym_preproc_include_token1] = ACTIONS(3160), + [aux_sym_preproc_def_token1] = ACTIONS(3160), + [aux_sym_preproc_if_token1] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), + [sym_preproc_directive] = ACTIONS(3160), + [anon_sym_LPAREN2] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym___extension__] = ACTIONS(3160), + [anon_sym_typedef] = ACTIONS(3160), + [anon_sym_extern] = ACTIONS(3160), + [anon_sym___attribute__] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), + [anon_sym___declspec] = ACTIONS(3160), + [anon_sym___based] = ACTIONS(3160), + [anon_sym___cdecl] = ACTIONS(3160), + [anon_sym___clrcall] = ACTIONS(3160), + [anon_sym___stdcall] = ACTIONS(3160), + [anon_sym___fastcall] = ACTIONS(3160), + [anon_sym___thiscall] = ACTIONS(3160), + [anon_sym___vectorcall] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_signed] = ACTIONS(3160), + [anon_sym_unsigned] = ACTIONS(3160), + [anon_sym_long] = ACTIONS(3160), + [anon_sym_short] = ACTIONS(3160), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_static] = ACTIONS(3160), + [anon_sym_register] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym___inline] = ACTIONS(3160), + [anon_sym___inline__] = ACTIONS(3160), + [anon_sym___forceinline] = ACTIONS(3160), + [anon_sym_thread_local] = ACTIONS(3160), + [anon_sym___thread] = ACTIONS(3160), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_constexpr] = ACTIONS(3160), + [anon_sym_volatile] = ACTIONS(3160), + [anon_sym_restrict] = ACTIONS(3160), + [anon_sym___restrict__] = ACTIONS(3160), + [anon_sym__Atomic] = ACTIONS(3160), + [anon_sym__Noreturn] = ACTIONS(3160), + [anon_sym_noreturn] = ACTIONS(3160), + [anon_sym_mutable] = ACTIONS(3160), + [anon_sym_constinit] = ACTIONS(3160), + [anon_sym_consteval] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), + [anon_sym_class] = ACTIONS(3160), + [anon_sym_struct] = ACTIONS(3160), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_switch] = ACTIONS(3160), + [anon_sym_case] = ACTIONS(3160), + [anon_sym_default] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_do] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_goto] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3160), + [anon_sym_compl] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3160), + [anon_sym___alignof__] = ACTIONS(3160), + [anon_sym___alignof] = ACTIONS(3160), + [anon_sym__alignof] = ACTIONS(3160), + [anon_sym_alignof] = ACTIONS(3160), + [anon_sym__Alignof] = ACTIONS(3160), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3160), + [anon_sym_asm] = ACTIONS(3160), + [anon_sym___asm__] = ACTIONS(3160), + [sym_number_literal] = ACTIONS(3162), + [anon_sym_L_SQUOTE] = ACTIONS(3162), + [anon_sym_u_SQUOTE] = ACTIONS(3162), + [anon_sym_U_SQUOTE] = ACTIONS(3162), + [anon_sym_u8_SQUOTE] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3162), + [anon_sym_L_DQUOTE] = ACTIONS(3162), + [anon_sym_u_DQUOTE] = ACTIONS(3162), + [anon_sym_U_DQUOTE] = ACTIONS(3162), + [anon_sym_u8_DQUOTE] = ACTIONS(3162), + [anon_sym_DQUOTE] = ACTIONS(3162), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [anon_sym_NULL] = ACTIONS(3160), + [anon_sym_nullptr] = ACTIONS(3160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3160), + [anon_sym_decltype] = ACTIONS(3160), + [anon_sym_virtual] = ACTIONS(3160), + [anon_sym_alignas] = ACTIONS(3160), + [anon_sym_explicit] = ACTIONS(3160), + [anon_sym_typename] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_delete] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_namespace] = ACTIONS(3160), + [anon_sym_using] = ACTIONS(3160), + [anon_sym_static_assert] = ACTIONS(3160), + [anon_sym_concept] = ACTIONS(3160), + [anon_sym_co_return] = ACTIONS(3160), + [anon_sym_co_yield] = ACTIONS(3160), + [anon_sym_R_DQUOTE] = ACTIONS(3162), + [anon_sym_LR_DQUOTE] = ACTIONS(3162), + [anon_sym_uR_DQUOTE] = ACTIONS(3162), + [anon_sym_UR_DQUOTE] = ACTIONS(3162), + [anon_sym_u8R_DQUOTE] = ACTIONS(3162), + [anon_sym_co_await] = ACTIONS(3160), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_requires] = ACTIONS(3160), + [sym_this] = ACTIONS(3160), }, - [905] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [935] = { + [sym_preproc_def] = STATE(928), + [sym_preproc_function_def] = STATE(928), + [sym_preproc_call] = STATE(928), + [sym_preproc_if_in_field_declaration_list] = STATE(928), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(928), + [sym_type_definition] = STATE(928), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5159), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5758), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(928), + [sym_field_declaration] = STATE(928), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1783), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(928), + [sym_operator_cast] = STATE(6134), + [sym_inline_method_definition] = STATE(928), + [sym__constructor_specifiers] = STATE(1783), + [sym_operator_cast_definition] = STATE(928), + [sym_operator_cast_declaration] = STATE(928), + [sym_constructor_or_destructor_definition] = STATE(928), + [sym_constructor_or_destructor_declaration] = STATE(928), + [sym_friend_declaration] = STATE(928), + [sym_access_specifier] = STATE(7375), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(928), + [sym_alias_declaration] = STATE(928), + [sym_static_assert_declaration] = STATE(928), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6134), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(928), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3477), + [aux_sym_preproc_if_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token2] = ACTIONS(3563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3487), + [anon_sym_typedef] = ACTIONS(3489), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3495), + [anon_sym_static_assert] = ACTIONS(3497), }, - [906] = { - [sym_identifier] = ACTIONS(2853), - [aux_sym_preproc_include_token1] = ACTIONS(2853), - [aux_sym_preproc_def_token1] = ACTIONS(2853), - [aux_sym_preproc_if_token1] = ACTIONS(2853), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2853), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2853), - [sym_preproc_directive] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym___extension__] = ACTIONS(2853), - [anon_sym_typedef] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym___attribute__] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2858), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), - [anon_sym___declspec] = ACTIONS(2853), - [anon_sym___based] = ACTIONS(2853), - [anon_sym___cdecl] = ACTIONS(2853), - [anon_sym___clrcall] = ACTIONS(2853), - [anon_sym___stdcall] = ACTIONS(2853), - [anon_sym___fastcall] = ACTIONS(2853), - [anon_sym___thiscall] = ACTIONS(2853), - [anon_sym___vectorcall] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_RBRACE] = ACTIONS(2858), - [anon_sym_signed] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym___inline] = ACTIONS(2853), - [anon_sym___inline__] = ACTIONS(2853), - [anon_sym___forceinline] = ACTIONS(2853), - [anon_sym_thread_local] = ACTIONS(2853), - [anon_sym___thread] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_constexpr] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym___restrict__] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym__Noreturn] = ACTIONS(2853), - [anon_sym_noreturn] = ACTIONS(2853), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_constinit] = ACTIONS(2853), - [anon_sym_consteval] = ACTIONS(2853), - [sym_primitive_type] = ACTIONS(2853), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_else] = ACTIONS(2853), - [anon_sym_switch] = ACTIONS(2853), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_default] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_do] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_goto] = ACTIONS(2853), - [anon_sym_not] = ACTIONS(2853), - [anon_sym_compl] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_sizeof] = ACTIONS(2853), - [anon_sym___alignof__] = ACTIONS(2853), - [anon_sym___alignof] = ACTIONS(2853), - [anon_sym__alignof] = ACTIONS(2853), - [anon_sym_alignof] = ACTIONS(2853), - [anon_sym__Alignof] = ACTIONS(2853), - [anon_sym_offsetof] = ACTIONS(2853), - [anon_sym__Generic] = ACTIONS(2853), - [anon_sym_asm] = ACTIONS(2853), - [anon_sym___asm__] = ACTIONS(2853), - [sym_number_literal] = ACTIONS(2858), - [anon_sym_L_SQUOTE] = ACTIONS(2858), - [anon_sym_u_SQUOTE] = ACTIONS(2858), - [anon_sym_U_SQUOTE] = ACTIONS(2858), - [anon_sym_u8_SQUOTE] = ACTIONS(2858), - [anon_sym_SQUOTE] = ACTIONS(2858), - [anon_sym_L_DQUOTE] = ACTIONS(2858), - [anon_sym_u_DQUOTE] = ACTIONS(2858), - [anon_sym_U_DQUOTE] = ACTIONS(2858), - [anon_sym_u8_DQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [sym_true] = ACTIONS(2853), - [sym_false] = ACTIONS(2853), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2853), - [anon_sym_decltype] = ACTIONS(2853), - [anon_sym_virtual] = ACTIONS(2853), - [anon_sym_alignas] = ACTIONS(2853), - [anon_sym_explicit] = ACTIONS(2853), - [anon_sym_typename] = ACTIONS(2853), - [anon_sym_template] = ACTIONS(2853), - [anon_sym_operator] = ACTIONS(2853), - [anon_sym_try] = ACTIONS(2853), - [anon_sym_delete] = ACTIONS(2853), - [anon_sym_throw] = ACTIONS(2853), - [anon_sym_namespace] = ACTIONS(2853), - [anon_sym_using] = ACTIONS(2853), - [anon_sym_static_assert] = ACTIONS(2853), - [anon_sym_concept] = ACTIONS(2853), - [anon_sym_co_return] = ACTIONS(2853), - [anon_sym_co_yield] = ACTIONS(2853), - [anon_sym_R_DQUOTE] = ACTIONS(2858), - [anon_sym_LR_DQUOTE] = ACTIONS(2858), - [anon_sym_uR_DQUOTE] = ACTIONS(2858), - [anon_sym_UR_DQUOTE] = ACTIONS(2858), - [anon_sym_u8R_DQUOTE] = ACTIONS(2858), - [anon_sym_co_await] = ACTIONS(2853), - [anon_sym_new] = ACTIONS(2853), - [anon_sym_requires] = ACTIONS(2853), - [sym_this] = ACTIONS(2853), + [936] = { + [ts_builtin_sym_end] = ACTIONS(3041), + [sym_identifier] = ACTIONS(3039), + [aux_sym_preproc_include_token1] = ACTIONS(3039), + [aux_sym_preproc_def_token1] = ACTIONS(3039), + [aux_sym_preproc_if_token1] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3039), + [sym_preproc_directive] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3041), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_AMP_AMP] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym___extension__] = ACTIONS(3039), + [anon_sym_typedef] = ACTIONS(3039), + [anon_sym_extern] = ACTIONS(3039), + [anon_sym___attribute__] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3041), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3041), + [anon_sym___declspec] = ACTIONS(3039), + [anon_sym___based] = ACTIONS(3039), + [anon_sym___cdecl] = ACTIONS(3039), + [anon_sym___clrcall] = ACTIONS(3039), + [anon_sym___stdcall] = ACTIONS(3039), + [anon_sym___fastcall] = ACTIONS(3039), + [anon_sym___thiscall] = ACTIONS(3039), + [anon_sym___vectorcall] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(3041), + [anon_sym_signed] = ACTIONS(3039), + [anon_sym_unsigned] = ACTIONS(3039), + [anon_sym_long] = ACTIONS(3039), + [anon_sym_short] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_static] = ACTIONS(3039), + [anon_sym_register] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym___inline] = ACTIONS(3039), + [anon_sym___inline__] = ACTIONS(3039), + [anon_sym___forceinline] = ACTIONS(3039), + [anon_sym_thread_local] = ACTIONS(3039), + [anon_sym___thread] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(3039), + [anon_sym_constexpr] = ACTIONS(3039), + [anon_sym_volatile] = ACTIONS(3039), + [anon_sym_restrict] = ACTIONS(3039), + [anon_sym___restrict__] = ACTIONS(3039), + [anon_sym__Atomic] = ACTIONS(3039), + [anon_sym__Noreturn] = ACTIONS(3039), + [anon_sym_noreturn] = ACTIONS(3039), + [anon_sym_mutable] = ACTIONS(3039), + [anon_sym_constinit] = ACTIONS(3039), + [anon_sym_consteval] = ACTIONS(3039), + [sym_primitive_type] = ACTIONS(3039), + [anon_sym_enum] = ACTIONS(3039), + [anon_sym_class] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3039), + [anon_sym_union] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_switch] = ACTIONS(3039), + [anon_sym_case] = ACTIONS(3039), + [anon_sym_default] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_goto] = ACTIONS(3039), + [anon_sym_not] = ACTIONS(3039), + [anon_sym_compl] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3039), + [anon_sym___alignof__] = ACTIONS(3039), + [anon_sym___alignof] = ACTIONS(3039), + [anon_sym__alignof] = ACTIONS(3039), + [anon_sym_alignof] = ACTIONS(3039), + [anon_sym__Alignof] = ACTIONS(3039), + [anon_sym_offsetof] = ACTIONS(3039), + [anon_sym__Generic] = ACTIONS(3039), + [anon_sym_asm] = ACTIONS(3039), + [anon_sym___asm__] = ACTIONS(3039), + [sym_number_literal] = ACTIONS(3041), + [anon_sym_L_SQUOTE] = ACTIONS(3041), + [anon_sym_u_SQUOTE] = ACTIONS(3041), + [anon_sym_U_SQUOTE] = ACTIONS(3041), + [anon_sym_u8_SQUOTE] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_L_DQUOTE] = ACTIONS(3041), + [anon_sym_u_DQUOTE] = ACTIONS(3041), + [anon_sym_U_DQUOTE] = ACTIONS(3041), + [anon_sym_u8_DQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(3041), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [anon_sym_NULL] = ACTIONS(3039), + [anon_sym_nullptr] = ACTIONS(3039), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3039), + [anon_sym_decltype] = ACTIONS(3039), + [anon_sym_virtual] = ACTIONS(3039), + [anon_sym_alignas] = ACTIONS(3039), + [anon_sym_explicit] = ACTIONS(3039), + [anon_sym_typename] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3039), + [anon_sym_operator] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_delete] = ACTIONS(3039), + [anon_sym_throw] = ACTIONS(3039), + [anon_sym_namespace] = ACTIONS(3039), + [anon_sym_using] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3039), + [anon_sym_concept] = ACTIONS(3039), + [anon_sym_co_return] = ACTIONS(3039), + [anon_sym_co_yield] = ACTIONS(3039), + [anon_sym_R_DQUOTE] = ACTIONS(3041), + [anon_sym_LR_DQUOTE] = ACTIONS(3041), + [anon_sym_uR_DQUOTE] = ACTIONS(3041), + [anon_sym_UR_DQUOTE] = ACTIONS(3041), + [anon_sym_u8R_DQUOTE] = ACTIONS(3041), + [anon_sym_co_await] = ACTIONS(3039), + [anon_sym_new] = ACTIONS(3039), + [anon_sym_requires] = ACTIONS(3039), + [sym_this] = ACTIONS(3039), }, - [907] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [937] = { + [sym_preproc_def] = STATE(898), + [sym_preproc_function_def] = STATE(898), + [sym_preproc_call] = STATE(898), + [sym_preproc_if_in_field_declaration_list] = STATE(898), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(898), + [sym_type_definition] = STATE(898), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5178), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(898), + [sym_field_declaration] = STATE(898), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(898), + [sym_operator_cast] = STATE(6136), + [sym_inline_method_definition] = STATE(898), + [sym__constructor_specifiers] = STATE(1777), + [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_access_specifier] = STATE(7545), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(898), + [sym_alias_declaration] = STATE(898), + [sym_static_assert_declaration] = STATE(898), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(898), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3501), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3505), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3507), + [anon_sym_typedef] = ACTIONS(3509), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3565), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3515), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3517), + [anon_sym_static_assert] = ACTIONS(3519), }, - [908] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [938] = { + [sym_preproc_def] = STATE(959), + [sym_preproc_function_def] = STATE(959), + [sym_preproc_call] = STATE(959), + [sym_preproc_if_in_field_declaration_list] = STATE(959), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(959), + [sym_type_definition] = STATE(959), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5178), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(959), + [sym_field_declaration] = STATE(959), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(959), + [sym_operator_cast] = STATE(6136), + [sym_inline_method_definition] = STATE(959), + [sym__constructor_specifiers] = STATE(1777), + [sym_operator_cast_definition] = STATE(959), + [sym_operator_cast_declaration] = STATE(959), + [sym_constructor_or_destructor_definition] = STATE(959), + [sym_constructor_or_destructor_declaration] = STATE(959), + [sym_friend_declaration] = STATE(959), + [sym_access_specifier] = STATE(7545), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(959), + [sym_alias_declaration] = STATE(959), + [sym_static_assert_declaration] = STATE(959), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(959), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3501), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3505), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3507), + [anon_sym_typedef] = ACTIONS(3509), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3567), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3515), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3517), + [anon_sym_static_assert] = ACTIONS(3519), }, - [909] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [939] = { + [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___extension__] = ACTIONS(3131), + [anon_sym_typedef] = ACTIONS(3131), + [anon_sym_extern] = ACTIONS(3131), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3131), + [anon_sym_constinit] = ACTIONS(3131), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3131), + [anon_sym_alignas] = 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_using] = 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), + }, + [940] = { + [sym_preproc_def] = STATE(898), + [sym_preproc_function_def] = STATE(898), + [sym_preproc_call] = STATE(898), + [sym_preproc_if_in_field_declaration_list] = STATE(898), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(898), + [sym_type_definition] = STATE(898), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5178), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(898), + [sym_field_declaration] = STATE(898), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(898), + [sym_operator_cast] = STATE(6136), + [sym_inline_method_definition] = STATE(898), + [sym__constructor_specifiers] = STATE(1777), + [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_access_specifier] = STATE(7545), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(898), + [sym_alias_declaration] = STATE(898), + [sym_static_assert_declaration] = STATE(898), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(898), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3501), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3505), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3507), + [anon_sym_typedef] = ACTIONS(3509), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3569), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3515), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3517), + [anon_sym_static_assert] = ACTIONS(3519), }, - [910] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [941] = { + [sym__expression] = STATE(3827), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(3866), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2004), + [anon_sym_COMMA] = ACTIONS(2004), + [anon_sym_RPAREN] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(2012), + [anon_sym_PERCENT] = ACTIONS(2004), + [anon_sym_PIPE_PIPE] = ACTIONS(2004), + [anon_sym_AMP_AMP] = ACTIONS(2004), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_CARET] = ACTIONS(2004), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_EQ_EQ] = ACTIONS(2004), + [anon_sym_BANG_EQ] = ACTIONS(2004), + [anon_sym_GT] = ACTIONS(2012), + [anon_sym_GT_EQ] = ACTIONS(2004), + [anon_sym_LT_EQ] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2004), + [anon_sym_GT_GT] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2004), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_RBRACE] = ACTIONS(2004), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_QMARK] = ACTIONS(2004), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_LT_EQ_GT] = ACTIONS(2004), + [anon_sym_or] = ACTIONS(2012), + [anon_sym_and] = ACTIONS(2012), + [anon_sym_bitor] = ACTIONS(2012), + [anon_sym_xor] = ACTIONS(2012), + [anon_sym_bitand] = ACTIONS(2012), + [anon_sym_not_eq] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(2012), + [anon_sym_DOT_STAR] = ACTIONS(2004), + [anon_sym_DASH_GT] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [911] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [942] = { + [ts_builtin_sym_end] = ACTIONS(3109), + [sym_identifier] = ACTIONS(3107), + [aux_sym_preproc_include_token1] = ACTIONS(3107), + [aux_sym_preproc_def_token1] = ACTIONS(3107), + [aux_sym_preproc_if_token1] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3107), + [sym_preproc_directive] = ACTIONS(3107), + [anon_sym_LPAREN2] = ACTIONS(3109), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3107), + [anon_sym___extension__] = ACTIONS(3107), + [anon_sym_typedef] = ACTIONS(3107), + [anon_sym_extern] = ACTIONS(3107), + [anon_sym___attribute__] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), + [anon_sym___declspec] = ACTIONS(3107), + [anon_sym___based] = ACTIONS(3107), + [anon_sym___cdecl] = ACTIONS(3107), + [anon_sym___clrcall] = ACTIONS(3107), + [anon_sym___stdcall] = ACTIONS(3107), + [anon_sym___fastcall] = ACTIONS(3107), + [anon_sym___thiscall] = ACTIONS(3107), + [anon_sym___vectorcall] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_signed] = ACTIONS(3107), + [anon_sym_unsigned] = ACTIONS(3107), + [anon_sym_long] = ACTIONS(3107), + [anon_sym_short] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_register] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym___inline] = ACTIONS(3107), + [anon_sym___inline__] = ACTIONS(3107), + [anon_sym___forceinline] = ACTIONS(3107), + [anon_sym_thread_local] = ACTIONS(3107), + [anon_sym___thread] = ACTIONS(3107), + [anon_sym_const] = ACTIONS(3107), + [anon_sym_constexpr] = ACTIONS(3107), + [anon_sym_volatile] = ACTIONS(3107), + [anon_sym_restrict] = ACTIONS(3107), + [anon_sym___restrict__] = ACTIONS(3107), + [anon_sym__Atomic] = ACTIONS(3107), + [anon_sym__Noreturn] = ACTIONS(3107), + [anon_sym_noreturn] = ACTIONS(3107), + [anon_sym_mutable] = ACTIONS(3107), + [anon_sym_constinit] = ACTIONS(3107), + [anon_sym_consteval] = ACTIONS(3107), + [sym_primitive_type] = ACTIONS(3107), + [anon_sym_enum] = ACTIONS(3107), + [anon_sym_class] = ACTIONS(3107), + [anon_sym_struct] = ACTIONS(3107), + [anon_sym_union] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_switch] = ACTIONS(3107), + [anon_sym_case] = ACTIONS(3107), + [anon_sym_default] = ACTIONS(3107), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_do] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_goto] = ACTIONS(3107), + [anon_sym_not] = ACTIONS(3107), + [anon_sym_compl] = ACTIONS(3107), + [anon_sym_DASH_DASH] = ACTIONS(3109), + [anon_sym_PLUS_PLUS] = ACTIONS(3109), + [anon_sym_sizeof] = ACTIONS(3107), + [anon_sym___alignof__] = ACTIONS(3107), + [anon_sym___alignof] = ACTIONS(3107), + [anon_sym__alignof] = ACTIONS(3107), + [anon_sym_alignof] = ACTIONS(3107), + [anon_sym__Alignof] = ACTIONS(3107), + [anon_sym_offsetof] = ACTIONS(3107), + [anon_sym__Generic] = ACTIONS(3107), + [anon_sym_asm] = ACTIONS(3107), + [anon_sym___asm__] = ACTIONS(3107), + [sym_number_literal] = ACTIONS(3109), + [anon_sym_L_SQUOTE] = ACTIONS(3109), + [anon_sym_u_SQUOTE] = ACTIONS(3109), + [anon_sym_U_SQUOTE] = ACTIONS(3109), + [anon_sym_u8_SQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3109), + [anon_sym_L_DQUOTE] = ACTIONS(3109), + [anon_sym_u_DQUOTE] = ACTIONS(3109), + [anon_sym_U_DQUOTE] = ACTIONS(3109), + [anon_sym_u8_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [sym_true] = ACTIONS(3107), + [sym_false] = ACTIONS(3107), + [anon_sym_NULL] = ACTIONS(3107), + [anon_sym_nullptr] = ACTIONS(3107), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(3107), + [anon_sym_decltype] = ACTIONS(3107), + [anon_sym_virtual] = ACTIONS(3107), + [anon_sym_alignas] = ACTIONS(3107), + [anon_sym_explicit] = ACTIONS(3107), + [anon_sym_typename] = ACTIONS(3107), + [anon_sym_template] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_delete] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_namespace] = ACTIONS(3107), + [anon_sym_using] = ACTIONS(3107), + [anon_sym_static_assert] = ACTIONS(3107), + [anon_sym_concept] = ACTIONS(3107), + [anon_sym_co_return] = ACTIONS(3107), + [anon_sym_co_yield] = ACTIONS(3107), + [anon_sym_R_DQUOTE] = ACTIONS(3109), + [anon_sym_LR_DQUOTE] = ACTIONS(3109), + [anon_sym_uR_DQUOTE] = ACTIONS(3109), + [anon_sym_UR_DQUOTE] = ACTIONS(3109), + [anon_sym_u8R_DQUOTE] = ACTIONS(3109), + [anon_sym_co_await] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3107), + [anon_sym_requires] = ACTIONS(3107), + [sym_this] = ACTIONS(3107), }, - [912] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [943] = { + [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___extension__] = ACTIONS(3127), + [anon_sym_typedef] = ACTIONS(3127), + [anon_sym_extern] = ACTIONS(3127), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3127), + [anon_sym_constinit] = ACTIONS(3127), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3127), + [anon_sym_alignas] = 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_using] = 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), }, - [913] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [944] = { + [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___extension__] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3123), + [anon_sym_extern] = ACTIONS(3123), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3123), + [anon_sym_constinit] = ACTIONS(3123), + [anon_sym_consteval] = 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), + [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(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(3123), + [anon_sym_decltype] = ACTIONS(3123), + [anon_sym_virtual] = ACTIONS(3123), + [anon_sym_alignas] = 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_using] = 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), }, - [914] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [945] = { + [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___extension__] = ACTIONS(3119), + [anon_sym_typedef] = ACTIONS(3119), + [anon_sym_extern] = ACTIONS(3119), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3119), + [anon_sym_constinit] = ACTIONS(3119), + [anon_sym_consteval] = 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), + [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(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(3119), + [anon_sym_decltype] = ACTIONS(3119), + [anon_sym_virtual] = ACTIONS(3119), + [anon_sym_alignas] = 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_using] = 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), }, - [915] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [946] = { + [ts_builtin_sym_end] = ACTIONS(3003), + [sym_identifier] = ACTIONS(3001), + [aux_sym_preproc_include_token1] = ACTIONS(3001), + [aux_sym_preproc_def_token1] = ACTIONS(3001), + [aux_sym_preproc_if_token1] = ACTIONS(3001), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3001), + [anon_sym_LPAREN2] = ACTIONS(3003), + [anon_sym_BANG] = ACTIONS(3003), + [anon_sym_TILDE] = ACTIONS(3003), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3003), + [anon_sym_AMP_AMP] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym___extension__] = ACTIONS(3001), + [anon_sym_typedef] = ACTIONS(3001), + [anon_sym_extern] = ACTIONS(3001), + [anon_sym___attribute__] = ACTIONS(3001), + [anon_sym_COLON_COLON] = ACTIONS(3003), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3003), + [anon_sym___declspec] = ACTIONS(3001), + [anon_sym___based] = ACTIONS(3001), + [anon_sym___cdecl] = ACTIONS(3001), + [anon_sym___clrcall] = ACTIONS(3001), + [anon_sym___stdcall] = ACTIONS(3001), + [anon_sym___fastcall] = ACTIONS(3001), + [anon_sym___thiscall] = ACTIONS(3001), + [anon_sym___vectorcall] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_signed] = ACTIONS(3001), + [anon_sym_unsigned] = ACTIONS(3001), + [anon_sym_long] = ACTIONS(3001), + [anon_sym_short] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_static] = ACTIONS(3001), + [anon_sym_register] = ACTIONS(3001), + [anon_sym_inline] = ACTIONS(3001), + [anon_sym___inline] = ACTIONS(3001), + [anon_sym___inline__] = ACTIONS(3001), + [anon_sym___forceinline] = ACTIONS(3001), + [anon_sym_thread_local] = ACTIONS(3001), + [anon_sym___thread] = ACTIONS(3001), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_constexpr] = ACTIONS(3001), + [anon_sym_volatile] = ACTIONS(3001), + [anon_sym_restrict] = ACTIONS(3001), + [anon_sym___restrict__] = ACTIONS(3001), + [anon_sym__Atomic] = ACTIONS(3001), + [anon_sym__Noreturn] = ACTIONS(3001), + [anon_sym_noreturn] = ACTIONS(3001), + [anon_sym_mutable] = ACTIONS(3001), + [anon_sym_constinit] = ACTIONS(3001), + [anon_sym_consteval] = ACTIONS(3001), + [sym_primitive_type] = ACTIONS(3001), + [anon_sym_enum] = ACTIONS(3001), + [anon_sym_class] = ACTIONS(3001), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_union] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_switch] = ACTIONS(3001), + [anon_sym_case] = ACTIONS(3001), + [anon_sym_default] = ACTIONS(3001), + [anon_sym_while] = ACTIONS(3001), + [anon_sym_do] = ACTIONS(3001), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_break] = ACTIONS(3001), + [anon_sym_continue] = ACTIONS(3001), + [anon_sym_goto] = ACTIONS(3001), + [anon_sym_not] = ACTIONS(3001), + [anon_sym_compl] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3003), + [anon_sym_PLUS_PLUS] = ACTIONS(3003), + [anon_sym_sizeof] = ACTIONS(3001), + [anon_sym___alignof__] = ACTIONS(3001), + [anon_sym___alignof] = ACTIONS(3001), + [anon_sym__alignof] = ACTIONS(3001), + [anon_sym_alignof] = ACTIONS(3001), + [anon_sym__Alignof] = ACTIONS(3001), + [anon_sym_offsetof] = ACTIONS(3001), + [anon_sym__Generic] = ACTIONS(3001), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3003), + [anon_sym_u_SQUOTE] = ACTIONS(3003), + [anon_sym_U_SQUOTE] = ACTIONS(3003), + [anon_sym_u8_SQUOTE] = ACTIONS(3003), + [anon_sym_SQUOTE] = ACTIONS(3003), + [anon_sym_L_DQUOTE] = ACTIONS(3003), + [anon_sym_u_DQUOTE] = ACTIONS(3003), + [anon_sym_U_DQUOTE] = ACTIONS(3003), + [anon_sym_u8_DQUOTE] = ACTIONS(3003), + [anon_sym_DQUOTE] = ACTIONS(3003), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [anon_sym_NULL] = ACTIONS(3001), + [anon_sym_nullptr] = ACTIONS(3001), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3001), + [anon_sym_decltype] = ACTIONS(3001), + [anon_sym_virtual] = ACTIONS(3001), + [anon_sym_alignas] = ACTIONS(3001), + [anon_sym_explicit] = ACTIONS(3001), + [anon_sym_typename] = ACTIONS(3001), + [anon_sym_template] = ACTIONS(3001), + [anon_sym_operator] = ACTIONS(3001), + [anon_sym_try] = ACTIONS(3001), + [anon_sym_delete] = ACTIONS(3001), + [anon_sym_throw] = ACTIONS(3001), + [anon_sym_namespace] = ACTIONS(3001), + [anon_sym_using] = ACTIONS(3001), + [anon_sym_static_assert] = ACTIONS(3001), + [anon_sym_concept] = ACTIONS(3001), + [anon_sym_co_return] = ACTIONS(3001), + [anon_sym_co_yield] = ACTIONS(3001), + [anon_sym_R_DQUOTE] = ACTIONS(3003), + [anon_sym_LR_DQUOTE] = ACTIONS(3003), + [anon_sym_uR_DQUOTE] = ACTIONS(3003), + [anon_sym_UR_DQUOTE] = ACTIONS(3003), + [anon_sym_u8R_DQUOTE] = ACTIONS(3003), + [anon_sym_co_await] = ACTIONS(3001), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_requires] = ACTIONS(3001), + [sym_this] = ACTIONS(3001), }, - [916] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [947] = { + [ts_builtin_sym_end] = ACTIONS(2886), + [sym_identifier] = ACTIONS(2884), + [aux_sym_preproc_include_token1] = ACTIONS(2884), + [aux_sym_preproc_def_token1] = ACTIONS(2884), + [aux_sym_preproc_if_token1] = ACTIONS(2884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2884), + [sym_preproc_directive] = ACTIONS(2884), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_STAR] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym___extension__] = ACTIONS(2884), + [anon_sym_typedef] = ACTIONS(2884), + [anon_sym_extern] = ACTIONS(2884), + [anon_sym___attribute__] = ACTIONS(2884), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2886), + [anon_sym___declspec] = ACTIONS(2884), + [anon_sym___based] = ACTIONS(2884), + [anon_sym___cdecl] = ACTIONS(2884), + [anon_sym___clrcall] = ACTIONS(2884), + [anon_sym___stdcall] = ACTIONS(2884), + [anon_sym___fastcall] = ACTIONS(2884), + [anon_sym___thiscall] = ACTIONS(2884), + [anon_sym___vectorcall] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_signed] = ACTIONS(2884), + [anon_sym_unsigned] = ACTIONS(2884), + [anon_sym_long] = ACTIONS(2884), + [anon_sym_short] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(2884), + [anon_sym_register] = ACTIONS(2884), + [anon_sym_inline] = ACTIONS(2884), + [anon_sym___inline] = ACTIONS(2884), + [anon_sym___inline__] = ACTIONS(2884), + [anon_sym___forceinline] = ACTIONS(2884), + [anon_sym_thread_local] = ACTIONS(2884), + [anon_sym___thread] = ACTIONS(2884), + [anon_sym_const] = ACTIONS(2884), + [anon_sym_constexpr] = ACTIONS(2884), + [anon_sym_volatile] = ACTIONS(2884), + [anon_sym_restrict] = ACTIONS(2884), + [anon_sym___restrict__] = ACTIONS(2884), + [anon_sym__Atomic] = ACTIONS(2884), + [anon_sym__Noreturn] = ACTIONS(2884), + [anon_sym_noreturn] = ACTIONS(2884), + [anon_sym_mutable] = ACTIONS(2884), + [anon_sym_constinit] = ACTIONS(2884), + [anon_sym_consteval] = ACTIONS(2884), + [sym_primitive_type] = ACTIONS(2884), + [anon_sym_enum] = ACTIONS(2884), + [anon_sym_class] = ACTIONS(2884), + [anon_sym_struct] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_switch] = ACTIONS(2884), + [anon_sym_case] = ACTIONS(2884), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_break] = ACTIONS(2884), + [anon_sym_continue] = ACTIONS(2884), + [anon_sym_goto] = ACTIONS(2884), + [anon_sym_not] = ACTIONS(2884), + [anon_sym_compl] = ACTIONS(2884), + [anon_sym_DASH_DASH] = ACTIONS(2886), + [anon_sym_PLUS_PLUS] = ACTIONS(2886), + [anon_sym_sizeof] = ACTIONS(2884), + [anon_sym___alignof__] = ACTIONS(2884), + [anon_sym___alignof] = ACTIONS(2884), + [anon_sym__alignof] = ACTIONS(2884), + [anon_sym_alignof] = ACTIONS(2884), + [anon_sym__Alignof] = ACTIONS(2884), + [anon_sym_offsetof] = ACTIONS(2884), + [anon_sym__Generic] = ACTIONS(2884), + [anon_sym_asm] = ACTIONS(2884), + [anon_sym___asm__] = ACTIONS(2884), + [sym_number_literal] = ACTIONS(2886), + [anon_sym_L_SQUOTE] = ACTIONS(2886), + [anon_sym_u_SQUOTE] = ACTIONS(2886), + [anon_sym_U_SQUOTE] = ACTIONS(2886), + [anon_sym_u8_SQUOTE] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_L_DQUOTE] = ACTIONS(2886), + [anon_sym_u_DQUOTE] = ACTIONS(2886), + [anon_sym_U_DQUOTE] = ACTIONS(2886), + [anon_sym_u8_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [sym_true] = ACTIONS(2884), + [sym_false] = ACTIONS(2884), + [anon_sym_NULL] = ACTIONS(2884), + [anon_sym_nullptr] = ACTIONS(2884), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2884), + [anon_sym_decltype] = ACTIONS(2884), + [anon_sym_virtual] = ACTIONS(2884), + [anon_sym_alignas] = ACTIONS(2884), + [anon_sym_explicit] = ACTIONS(2884), + [anon_sym_typename] = ACTIONS(2884), + [anon_sym_template] = ACTIONS(2884), + [anon_sym_operator] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_delete] = ACTIONS(2884), + [anon_sym_throw] = ACTIONS(2884), + [anon_sym_namespace] = ACTIONS(2884), + [anon_sym_using] = ACTIONS(2884), + [anon_sym_static_assert] = ACTIONS(2884), + [anon_sym_concept] = ACTIONS(2884), + [anon_sym_co_return] = ACTIONS(2884), + [anon_sym_co_yield] = ACTIONS(2884), + [anon_sym_R_DQUOTE] = ACTIONS(2886), + [anon_sym_LR_DQUOTE] = ACTIONS(2886), + [anon_sym_uR_DQUOTE] = ACTIONS(2886), + [anon_sym_UR_DQUOTE] = ACTIONS(2886), + [anon_sym_u8R_DQUOTE] = ACTIONS(2886), + [anon_sym_co_await] = ACTIONS(2884), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_requires] = ACTIONS(2884), + [sym_this] = ACTIONS(2884), }, - [917] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [948] = { + [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___extension__] = ACTIONS(3111), + [anon_sym_typedef] = ACTIONS(3111), + [anon_sym_extern] = ACTIONS(3111), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3111), + [anon_sym_constinit] = ACTIONS(3111), + [anon_sym_consteval] = 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), + [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(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(3111), + [anon_sym_decltype] = ACTIONS(3111), + [anon_sym_virtual] = ACTIONS(3111), + [anon_sym_alignas] = 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_using] = 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), }, - [918] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [949] = { + [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___extension__] = ACTIONS(3027), + [anon_sym_typedef] = ACTIONS(3027), + [anon_sym_extern] = ACTIONS(3027), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3027), + [anon_sym_constinit] = ACTIONS(3027), + [anon_sym_consteval] = 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), + [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(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(3027), + [anon_sym_decltype] = ACTIONS(3027), + [anon_sym_virtual] = ACTIONS(3027), + [anon_sym_alignas] = 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_using] = 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), }, - [919] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [950] = { + [sym_preproc_def] = STATE(898), + [sym_preproc_function_def] = STATE(898), + [sym_preproc_call] = STATE(898), + [sym_preproc_if_in_field_declaration_list] = STATE(898), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(898), + [sym_type_definition] = STATE(898), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5178), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(898), + [sym_field_declaration] = STATE(898), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(898), + [sym_operator_cast] = STATE(6136), + [sym_inline_method_definition] = STATE(898), + [sym__constructor_specifiers] = STATE(1777), + [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_access_specifier] = STATE(7545), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(898), + [sym_alias_declaration] = STATE(898), + [sym_static_assert_declaration] = STATE(898), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(898), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3501), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3505), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3507), + [anon_sym_typedef] = ACTIONS(3509), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3573), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3515), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3517), + [anon_sym_static_assert] = ACTIONS(3519), }, - [920] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [951] = { + [ts_builtin_sym_end] = ACTIONS(2995), + [sym_identifier] = ACTIONS(2993), + [aux_sym_preproc_include_token1] = ACTIONS(2993), + [aux_sym_preproc_def_token1] = ACTIONS(2993), + [aux_sym_preproc_if_token1] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_TILDE] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym___extension__] = ACTIONS(2993), + [anon_sym_typedef] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2993), + [anon_sym___attribute__] = ACTIONS(2993), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2995), + [anon_sym___declspec] = ACTIONS(2993), + [anon_sym___based] = ACTIONS(2993), + [anon_sym___cdecl] = ACTIONS(2993), + [anon_sym___clrcall] = ACTIONS(2993), + [anon_sym___stdcall] = ACTIONS(2993), + [anon_sym___fastcall] = ACTIONS(2993), + [anon_sym___thiscall] = ACTIONS(2993), + [anon_sym___vectorcall] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_signed] = ACTIONS(2993), + [anon_sym_unsigned] = ACTIONS(2993), + [anon_sym_long] = ACTIONS(2993), + [anon_sym_short] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_static] = ACTIONS(2993), + [anon_sym_register] = ACTIONS(2993), + [anon_sym_inline] = ACTIONS(2993), + [anon_sym___inline] = ACTIONS(2993), + [anon_sym___inline__] = ACTIONS(2993), + [anon_sym___forceinline] = ACTIONS(2993), + [anon_sym_thread_local] = ACTIONS(2993), + [anon_sym___thread] = ACTIONS(2993), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_constexpr] = ACTIONS(2993), + [anon_sym_volatile] = ACTIONS(2993), + [anon_sym_restrict] = ACTIONS(2993), + [anon_sym___restrict__] = ACTIONS(2993), + [anon_sym__Atomic] = ACTIONS(2993), + [anon_sym__Noreturn] = ACTIONS(2993), + [anon_sym_noreturn] = ACTIONS(2993), + [anon_sym_mutable] = ACTIONS(2993), + [anon_sym_constinit] = ACTIONS(2993), + [anon_sym_consteval] = ACTIONS(2993), + [sym_primitive_type] = ACTIONS(2993), + [anon_sym_enum] = ACTIONS(2993), + [anon_sym_class] = ACTIONS(2993), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_union] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_switch] = ACTIONS(2993), + [anon_sym_case] = ACTIONS(2993), + [anon_sym_default] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_goto] = ACTIONS(2993), + [anon_sym_not] = ACTIONS(2993), + [anon_sym_compl] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2993), + [anon_sym___alignof] = ACTIONS(2993), + [anon_sym__alignof] = ACTIONS(2993), + [anon_sym_alignof] = ACTIONS(2993), + [anon_sym__Alignof] = ACTIONS(2993), + [anon_sym_offsetof] = ACTIONS(2993), + [anon_sym__Generic] = ACTIONS(2993), + [anon_sym_asm] = ACTIONS(2993), + [anon_sym___asm__] = ACTIONS(2993), + [sym_number_literal] = ACTIONS(2995), + [anon_sym_L_SQUOTE] = ACTIONS(2995), + [anon_sym_u_SQUOTE] = ACTIONS(2995), + [anon_sym_U_SQUOTE] = ACTIONS(2995), + [anon_sym_u8_SQUOTE] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_L_DQUOTE] = ACTIONS(2995), + [anon_sym_u_DQUOTE] = ACTIONS(2995), + [anon_sym_U_DQUOTE] = ACTIONS(2995), + [anon_sym_u8_DQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [anon_sym_NULL] = ACTIONS(2993), + [anon_sym_nullptr] = ACTIONS(2993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2993), + [anon_sym_decltype] = ACTIONS(2993), + [anon_sym_virtual] = ACTIONS(2993), + [anon_sym_alignas] = ACTIONS(2993), + [anon_sym_explicit] = ACTIONS(2993), + [anon_sym_typename] = ACTIONS(2993), + [anon_sym_template] = ACTIONS(2993), + [anon_sym_operator] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_delete] = ACTIONS(2993), + [anon_sym_throw] = ACTIONS(2993), + [anon_sym_namespace] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(2993), + [anon_sym_static_assert] = ACTIONS(2993), + [anon_sym_concept] = ACTIONS(2993), + [anon_sym_co_return] = ACTIONS(2993), + [anon_sym_co_yield] = ACTIONS(2993), + [anon_sym_R_DQUOTE] = ACTIONS(2995), + [anon_sym_LR_DQUOTE] = ACTIONS(2995), + [anon_sym_uR_DQUOTE] = ACTIONS(2995), + [anon_sym_UR_DQUOTE] = ACTIONS(2995), + [anon_sym_u8R_DQUOTE] = ACTIONS(2995), + [anon_sym_co_await] = ACTIONS(2993), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_requires] = ACTIONS(2993), + [sym_this] = ACTIONS(2993), }, - [921] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [952] = { + [ts_builtin_sym_end] = ACTIONS(3085), + [sym_identifier] = ACTIONS(3083), + [aux_sym_preproc_include_token1] = ACTIONS(3083), + [aux_sym_preproc_def_token1] = ACTIONS(3083), + [aux_sym_preproc_if_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), + [sym_preproc_directive] = ACTIONS(3083), + [anon_sym_LPAREN2] = ACTIONS(3085), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(3083), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym___extension__] = ACTIONS(3083), + [anon_sym_typedef] = ACTIONS(3083), + [anon_sym_extern] = ACTIONS(3083), + [anon_sym___attribute__] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3085), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), + [anon_sym___declspec] = ACTIONS(3083), + [anon_sym___based] = ACTIONS(3083), + [anon_sym___cdecl] = ACTIONS(3083), + [anon_sym___clrcall] = ACTIONS(3083), + [anon_sym___stdcall] = ACTIONS(3083), + [anon_sym___fastcall] = ACTIONS(3083), + [anon_sym___thiscall] = ACTIONS(3083), + [anon_sym___vectorcall] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3083), + [anon_sym_unsigned] = ACTIONS(3083), + [anon_sym_long] = ACTIONS(3083), + [anon_sym_short] = ACTIONS(3083), + [anon_sym_LBRACK] = ACTIONS(3083), + [anon_sym_static] = ACTIONS(3083), + [anon_sym_register] = ACTIONS(3083), + [anon_sym_inline] = ACTIONS(3083), + [anon_sym___inline] = ACTIONS(3083), + [anon_sym___inline__] = ACTIONS(3083), + [anon_sym___forceinline] = ACTIONS(3083), + [anon_sym_thread_local] = ACTIONS(3083), + [anon_sym___thread] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3083), + [anon_sym_constexpr] = ACTIONS(3083), + [anon_sym_volatile] = ACTIONS(3083), + [anon_sym_restrict] = ACTIONS(3083), + [anon_sym___restrict__] = ACTIONS(3083), + [anon_sym__Atomic] = ACTIONS(3083), + [anon_sym__Noreturn] = ACTIONS(3083), + [anon_sym_noreturn] = ACTIONS(3083), + [anon_sym_mutable] = ACTIONS(3083), + [anon_sym_constinit] = ACTIONS(3083), + [anon_sym_consteval] = ACTIONS(3083), + [sym_primitive_type] = ACTIONS(3083), + [anon_sym_enum] = ACTIONS(3083), + [anon_sym_class] = ACTIONS(3083), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_switch] = ACTIONS(3083), + [anon_sym_case] = ACTIONS(3083), + [anon_sym_default] = ACTIONS(3083), + [anon_sym_while] = ACTIONS(3083), + [anon_sym_do] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3083), + [anon_sym_return] = ACTIONS(3083), + [anon_sym_break] = ACTIONS(3083), + [anon_sym_continue] = ACTIONS(3083), + [anon_sym_goto] = ACTIONS(3083), + [anon_sym_not] = ACTIONS(3083), + [anon_sym_compl] = ACTIONS(3083), + [anon_sym_DASH_DASH] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_sizeof] = ACTIONS(3083), + [anon_sym___alignof__] = ACTIONS(3083), + [anon_sym___alignof] = ACTIONS(3083), + [anon_sym__alignof] = ACTIONS(3083), + [anon_sym_alignof] = ACTIONS(3083), + [anon_sym__Alignof] = ACTIONS(3083), + [anon_sym_offsetof] = ACTIONS(3083), + [anon_sym__Generic] = ACTIONS(3083), + [anon_sym_asm] = ACTIONS(3083), + [anon_sym___asm__] = ACTIONS(3083), + [sym_number_literal] = ACTIONS(3085), + [anon_sym_L_SQUOTE] = ACTIONS(3085), + [anon_sym_u_SQUOTE] = ACTIONS(3085), + [anon_sym_U_SQUOTE] = ACTIONS(3085), + [anon_sym_u8_SQUOTE] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(3085), + [anon_sym_L_DQUOTE] = ACTIONS(3085), + [anon_sym_u_DQUOTE] = ACTIONS(3085), + [anon_sym_U_DQUOTE] = ACTIONS(3085), + [anon_sym_u8_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [sym_true] = ACTIONS(3083), + [sym_false] = ACTIONS(3083), + [anon_sym_NULL] = ACTIONS(3083), + [anon_sym_nullptr] = ACTIONS(3083), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(3083), + [anon_sym_decltype] = ACTIONS(3083), + [anon_sym_virtual] = ACTIONS(3083), + [anon_sym_alignas] = ACTIONS(3083), + [anon_sym_explicit] = ACTIONS(3083), + [anon_sym_typename] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3083), + [anon_sym_operator] = ACTIONS(3083), + [anon_sym_try] = ACTIONS(3083), + [anon_sym_delete] = ACTIONS(3083), + [anon_sym_throw] = ACTIONS(3083), + [anon_sym_namespace] = ACTIONS(3083), + [anon_sym_using] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3083), + [anon_sym_concept] = ACTIONS(3083), + [anon_sym_co_return] = ACTIONS(3083), + [anon_sym_co_yield] = ACTIONS(3083), + [anon_sym_R_DQUOTE] = ACTIONS(3085), + [anon_sym_LR_DQUOTE] = ACTIONS(3085), + [anon_sym_uR_DQUOTE] = ACTIONS(3085), + [anon_sym_UR_DQUOTE] = ACTIONS(3085), + [anon_sym_u8R_DQUOTE] = ACTIONS(3085), + [anon_sym_co_await] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_requires] = ACTIONS(3083), + [sym_this] = ACTIONS(3083), }, - [922] = { - [ts_builtin_sym_end] = ACTIONS(2947), - [sym_identifier] = ACTIONS(2945), - [aux_sym_preproc_include_token1] = ACTIONS(2945), - [aux_sym_preproc_def_token1] = ACTIONS(2945), - [aux_sym_preproc_if_token1] = ACTIONS(2945), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2945), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2945), - [sym_preproc_directive] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2945), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2945), - [anon_sym_SEMI] = ACTIONS(2947), - [anon_sym___extension__] = ACTIONS(2945), - [anon_sym_typedef] = ACTIONS(2945), - [anon_sym_extern] = ACTIONS(2945), - [anon_sym___attribute__] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2947), - [anon_sym___declspec] = ACTIONS(2945), - [anon_sym___based] = ACTIONS(2945), - [anon_sym___cdecl] = ACTIONS(2945), - [anon_sym___clrcall] = ACTIONS(2945), - [anon_sym___stdcall] = ACTIONS(2945), - [anon_sym___fastcall] = ACTIONS(2945), - [anon_sym___thiscall] = ACTIONS(2945), - [anon_sym___vectorcall] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_signed] = ACTIONS(2945), - [anon_sym_unsigned] = ACTIONS(2945), - [anon_sym_long] = ACTIONS(2945), - [anon_sym_short] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_static] = ACTIONS(2945), - [anon_sym_register] = ACTIONS(2945), - [anon_sym_inline] = ACTIONS(2945), - [anon_sym___inline] = ACTIONS(2945), - [anon_sym___inline__] = ACTIONS(2945), - [anon_sym___forceinline] = ACTIONS(2945), - [anon_sym_thread_local] = ACTIONS(2945), - [anon_sym___thread] = ACTIONS(2945), - [anon_sym_const] = ACTIONS(2945), - [anon_sym_constexpr] = ACTIONS(2945), - [anon_sym_volatile] = ACTIONS(2945), - [anon_sym_restrict] = ACTIONS(2945), - [anon_sym___restrict__] = ACTIONS(2945), - [anon_sym__Atomic] = ACTIONS(2945), - [anon_sym__Noreturn] = ACTIONS(2945), - [anon_sym_noreturn] = ACTIONS(2945), - [anon_sym_mutable] = ACTIONS(2945), - [anon_sym_constinit] = ACTIONS(2945), - [anon_sym_consteval] = ACTIONS(2945), - [sym_primitive_type] = ACTIONS(2945), - [anon_sym_enum] = ACTIONS(2945), - [anon_sym_class] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2945), - [anon_sym_union] = ACTIONS(2945), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(2945), - [anon_sym_switch] = ACTIONS(2945), - [anon_sym_case] = ACTIONS(2945), - [anon_sym_default] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_break] = ACTIONS(2945), - [anon_sym_continue] = ACTIONS(2945), - [anon_sym_goto] = ACTIONS(2945), - [anon_sym_not] = ACTIONS(2945), - [anon_sym_compl] = ACTIONS(2945), - [anon_sym_DASH_DASH] = ACTIONS(2947), - [anon_sym_PLUS_PLUS] = ACTIONS(2947), - [anon_sym_sizeof] = ACTIONS(2945), - [anon_sym___alignof__] = ACTIONS(2945), - [anon_sym___alignof] = ACTIONS(2945), - [anon_sym__alignof] = ACTIONS(2945), - [anon_sym_alignof] = ACTIONS(2945), - [anon_sym__Alignof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2945), - [anon_sym__Generic] = ACTIONS(2945), - [anon_sym_asm] = ACTIONS(2945), - [anon_sym___asm__] = ACTIONS(2945), - [sym_number_literal] = ACTIONS(2947), - [anon_sym_L_SQUOTE] = ACTIONS(2947), - [anon_sym_u_SQUOTE] = ACTIONS(2947), - [anon_sym_U_SQUOTE] = ACTIONS(2947), - [anon_sym_u8_SQUOTE] = ACTIONS(2947), - [anon_sym_SQUOTE] = ACTIONS(2947), - [anon_sym_L_DQUOTE] = ACTIONS(2947), - [anon_sym_u_DQUOTE] = ACTIONS(2947), - [anon_sym_U_DQUOTE] = ACTIONS(2947), - [anon_sym_u8_DQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(2947), - [sym_true] = ACTIONS(2945), - [sym_false] = ACTIONS(2945), - [anon_sym_NULL] = ACTIONS(2945), - [anon_sym_nullptr] = ACTIONS(2945), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2945), - [anon_sym_decltype] = ACTIONS(2945), - [anon_sym_virtual] = ACTIONS(2945), - [anon_sym_alignas] = ACTIONS(2945), - [anon_sym_explicit] = ACTIONS(2945), - [anon_sym_typename] = ACTIONS(2945), - [anon_sym_template] = ACTIONS(2945), - [anon_sym_operator] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_delete] = ACTIONS(2945), - [anon_sym_throw] = ACTIONS(2945), - [anon_sym_namespace] = ACTIONS(2945), - [anon_sym_using] = ACTIONS(2945), - [anon_sym_static_assert] = ACTIONS(2945), - [anon_sym_concept] = ACTIONS(2945), - [anon_sym_co_return] = ACTIONS(2945), - [anon_sym_co_yield] = ACTIONS(2945), - [anon_sym_R_DQUOTE] = ACTIONS(2947), - [anon_sym_LR_DQUOTE] = ACTIONS(2947), - [anon_sym_uR_DQUOTE] = ACTIONS(2947), - [anon_sym_UR_DQUOTE] = ACTIONS(2947), - [anon_sym_u8R_DQUOTE] = ACTIONS(2947), - [anon_sym_co_await] = ACTIONS(2945), - [anon_sym_new] = ACTIONS(2945), - [anon_sym_requires] = ACTIONS(2945), - [sym_this] = ACTIONS(2945), + [953] = { + [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___extension__] = ACTIONS(3059), + [anon_sym_typedef] = ACTIONS(3059), + [anon_sym_extern] = ACTIONS(3059), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3059), + [anon_sym_constinit] = ACTIONS(3059), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3059), + [anon_sym_alignas] = 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_using] = 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), }, - [923] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [954] = { + [ts_builtin_sym_end] = ACTIONS(3081), + [sym_identifier] = ACTIONS(3079), + [aux_sym_preproc_include_token1] = ACTIONS(3079), + [aux_sym_preproc_def_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), + [sym_preproc_directive] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym___extension__] = ACTIONS(3079), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym___based] = ACTIONS(3079), + [anon_sym___cdecl] = ACTIONS(3079), + [anon_sym___clrcall] = ACTIONS(3079), + [anon_sym___stdcall] = ACTIONS(3079), + [anon_sym___fastcall] = ACTIONS(3079), + [anon_sym___thiscall] = ACTIONS(3079), + [anon_sym___vectorcall] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym___inline] = ACTIONS(3079), + [anon_sym___inline__] = ACTIONS(3079), + [anon_sym___forceinline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym___thread] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3079), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_goto] = ACTIONS(3079), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_compl] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3079), + [anon_sym___alignof__] = ACTIONS(3079), + [anon_sym___alignof] = ACTIONS(3079), + [anon_sym__alignof] = ACTIONS(3079), + [anon_sym_alignof] = ACTIONS(3079), + [anon_sym__Alignof] = ACTIONS(3079), + [anon_sym_offsetof] = ACTIONS(3079), + [anon_sym__Generic] = ACTIONS(3079), + [anon_sym_asm] = ACTIONS(3079), + [anon_sym___asm__] = ACTIONS(3079), + [sym_number_literal] = ACTIONS(3081), + [anon_sym_L_SQUOTE] = ACTIONS(3081), + [anon_sym_u_SQUOTE] = ACTIONS(3081), + [anon_sym_U_SQUOTE] = ACTIONS(3081), + [anon_sym_u8_SQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_L_DQUOTE] = ACTIONS(3081), + [anon_sym_u_DQUOTE] = ACTIONS(3081), + [anon_sym_U_DQUOTE] = ACTIONS(3081), + [anon_sym_u8_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [anon_sym_NULL] = ACTIONS(3079), + [anon_sym_nullptr] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_alignas] = ACTIONS(3079), + [anon_sym_explicit] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_static_assert] = ACTIONS(3079), + [anon_sym_concept] = ACTIONS(3079), + [anon_sym_co_return] = ACTIONS(3079), + [anon_sym_co_yield] = ACTIONS(3079), + [anon_sym_R_DQUOTE] = ACTIONS(3081), + [anon_sym_LR_DQUOTE] = ACTIONS(3081), + [anon_sym_uR_DQUOTE] = ACTIONS(3081), + [anon_sym_UR_DQUOTE] = ACTIONS(3081), + [anon_sym_u8R_DQUOTE] = ACTIONS(3081), + [anon_sym_co_await] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_requires] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), }, - [924] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [955] = { + [ts_builtin_sym_end] = ACTIONS(2959), + [sym_identifier] = ACTIONS(2957), + [aux_sym_preproc_include_token1] = ACTIONS(2957), + [aux_sym_preproc_def_token1] = ACTIONS(2957), + [aux_sym_preproc_if_token1] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2957), + [sym_preproc_directive] = ACTIONS(2957), + [anon_sym_LPAREN2] = ACTIONS(2959), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym___extension__] = ACTIONS(2957), + [anon_sym_typedef] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym___attribute__] = ACTIONS(2957), + [anon_sym_COLON_COLON] = ACTIONS(2959), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), + [anon_sym___declspec] = ACTIONS(2957), + [anon_sym___based] = ACTIONS(2957), + [anon_sym___cdecl] = ACTIONS(2957), + [anon_sym___clrcall] = ACTIONS(2957), + [anon_sym___stdcall] = ACTIONS(2957), + [anon_sym___fastcall] = ACTIONS(2957), + [anon_sym___thiscall] = ACTIONS(2957), + [anon_sym___vectorcall] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_signed] = ACTIONS(2957), + [anon_sym_unsigned] = ACTIONS(2957), + [anon_sym_long] = ACTIONS(2957), + [anon_sym_short] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_static] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_inline] = ACTIONS(2957), + [anon_sym___inline] = ACTIONS(2957), + [anon_sym___inline__] = ACTIONS(2957), + [anon_sym___forceinline] = ACTIONS(2957), + [anon_sym_thread_local] = ACTIONS(2957), + [anon_sym___thread] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_constexpr] = ACTIONS(2957), + [anon_sym_volatile] = ACTIONS(2957), + [anon_sym_restrict] = ACTIONS(2957), + [anon_sym___restrict__] = ACTIONS(2957), + [anon_sym__Atomic] = ACTIONS(2957), + [anon_sym__Noreturn] = ACTIONS(2957), + [anon_sym_noreturn] = ACTIONS(2957), + [anon_sym_mutable] = ACTIONS(2957), + [anon_sym_constinit] = ACTIONS(2957), + [anon_sym_consteval] = ACTIONS(2957), + [sym_primitive_type] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [anon_sym_class] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_union] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_switch] = ACTIONS(2957), + [anon_sym_case] = ACTIONS(2957), + [anon_sym_default] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_goto] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [anon_sym_compl] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_sizeof] = ACTIONS(2957), + [anon_sym___alignof__] = ACTIONS(2957), + [anon_sym___alignof] = ACTIONS(2957), + [anon_sym__alignof] = ACTIONS(2957), + [anon_sym_alignof] = ACTIONS(2957), + [anon_sym__Alignof] = ACTIONS(2957), + [anon_sym_offsetof] = ACTIONS(2957), + [anon_sym__Generic] = ACTIONS(2957), + [anon_sym_asm] = ACTIONS(2957), + [anon_sym___asm__] = ACTIONS(2957), + [sym_number_literal] = ACTIONS(2959), + [anon_sym_L_SQUOTE] = ACTIONS(2959), + [anon_sym_u_SQUOTE] = ACTIONS(2959), + [anon_sym_U_SQUOTE] = ACTIONS(2959), + [anon_sym_u8_SQUOTE] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2959), + [anon_sym_L_DQUOTE] = ACTIONS(2959), + [anon_sym_u_DQUOTE] = ACTIONS(2959), + [anon_sym_U_DQUOTE] = ACTIONS(2959), + [anon_sym_u8_DQUOTE] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [anon_sym_NULL] = ACTIONS(2957), + [anon_sym_nullptr] = ACTIONS(2957), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(2957), + [anon_sym_decltype] = ACTIONS(2957), + [anon_sym_virtual] = ACTIONS(2957), + [anon_sym_alignas] = ACTIONS(2957), + [anon_sym_explicit] = ACTIONS(2957), + [anon_sym_typename] = ACTIONS(2957), + [anon_sym_template] = ACTIONS(2957), + [anon_sym_operator] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_delete] = ACTIONS(2957), + [anon_sym_throw] = ACTIONS(2957), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_using] = ACTIONS(2957), + [anon_sym_static_assert] = ACTIONS(2957), + [anon_sym_concept] = ACTIONS(2957), + [anon_sym_co_return] = ACTIONS(2957), + [anon_sym_co_yield] = ACTIONS(2957), + [anon_sym_R_DQUOTE] = ACTIONS(2959), + [anon_sym_LR_DQUOTE] = ACTIONS(2959), + [anon_sym_uR_DQUOTE] = ACTIONS(2959), + [anon_sym_UR_DQUOTE] = ACTIONS(2959), + [anon_sym_u8R_DQUOTE] = ACTIONS(2959), + [anon_sym_co_await] = ACTIONS(2957), + [anon_sym_new] = ACTIONS(2957), + [anon_sym_requires] = ACTIONS(2957), + [sym_this] = ACTIONS(2957), }, - [925] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [956] = { + [ts_builtin_sym_end] = ACTIONS(3037), + [sym_identifier] = ACTIONS(3035), + [aux_sym_preproc_include_token1] = ACTIONS(3035), + [aux_sym_preproc_def_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token1] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), + [sym_preproc_directive] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_BANG] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(3037), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP_AMP] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym___extension__] = ACTIONS(3035), + [anon_sym_typedef] = ACTIONS(3035), + [anon_sym_extern] = ACTIONS(3035), + [anon_sym___attribute__] = ACTIONS(3035), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), + [anon_sym___declspec] = ACTIONS(3035), + [anon_sym___based] = ACTIONS(3035), + [anon_sym___cdecl] = ACTIONS(3035), + [anon_sym___clrcall] = ACTIONS(3035), + [anon_sym___stdcall] = ACTIONS(3035), + [anon_sym___fastcall] = ACTIONS(3035), + [anon_sym___thiscall] = ACTIONS(3035), + [anon_sym___vectorcall] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3037), + [anon_sym_signed] = ACTIONS(3035), + [anon_sym_unsigned] = ACTIONS(3035), + [anon_sym_long] = ACTIONS(3035), + [anon_sym_short] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_static] = ACTIONS(3035), + [anon_sym_register] = ACTIONS(3035), + [anon_sym_inline] = ACTIONS(3035), + [anon_sym___inline] = ACTIONS(3035), + [anon_sym___inline__] = ACTIONS(3035), + [anon_sym___forceinline] = ACTIONS(3035), + [anon_sym_thread_local] = ACTIONS(3035), + [anon_sym___thread] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_constexpr] = ACTIONS(3035), + [anon_sym_volatile] = ACTIONS(3035), + [anon_sym_restrict] = ACTIONS(3035), + [anon_sym___restrict__] = ACTIONS(3035), + [anon_sym__Atomic] = ACTIONS(3035), + [anon_sym__Noreturn] = ACTIONS(3035), + [anon_sym_noreturn] = ACTIONS(3035), + [anon_sym_mutable] = ACTIONS(3035), + [anon_sym_constinit] = ACTIONS(3035), + [anon_sym_consteval] = ACTIONS(3035), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_class] = ACTIONS(3035), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_switch] = ACTIONS(3035), + [anon_sym_case] = ACTIONS(3035), + [anon_sym_default] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_break] = ACTIONS(3035), + [anon_sym_continue] = ACTIONS(3035), + [anon_sym_goto] = ACTIONS(3035), + [anon_sym_not] = ACTIONS(3035), + [anon_sym_compl] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3037), + [anon_sym_PLUS_PLUS] = ACTIONS(3037), + [anon_sym_sizeof] = ACTIONS(3035), + [anon_sym___alignof__] = ACTIONS(3035), + [anon_sym___alignof] = ACTIONS(3035), + [anon_sym__alignof] = ACTIONS(3035), + [anon_sym_alignof] = ACTIONS(3035), + [anon_sym__Alignof] = ACTIONS(3035), + [anon_sym_offsetof] = ACTIONS(3035), + [anon_sym__Generic] = ACTIONS(3035), + [anon_sym_asm] = ACTIONS(3035), + [anon_sym___asm__] = ACTIONS(3035), + [sym_number_literal] = ACTIONS(3037), + [anon_sym_L_SQUOTE] = ACTIONS(3037), + [anon_sym_u_SQUOTE] = ACTIONS(3037), + [anon_sym_U_SQUOTE] = ACTIONS(3037), + [anon_sym_u8_SQUOTE] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_L_DQUOTE] = ACTIONS(3037), + [anon_sym_u_DQUOTE] = ACTIONS(3037), + [anon_sym_U_DQUOTE] = ACTIONS(3037), + [anon_sym_u8_DQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE] = ACTIONS(3037), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [anon_sym_NULL] = ACTIONS(3035), + [anon_sym_nullptr] = ACTIONS(3035), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(3035), + [anon_sym_decltype] = ACTIONS(3035), + [anon_sym_virtual] = ACTIONS(3035), + [anon_sym_alignas] = ACTIONS(3035), + [anon_sym_explicit] = ACTIONS(3035), + [anon_sym_typename] = ACTIONS(3035), + [anon_sym_template] = ACTIONS(3035), + [anon_sym_operator] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_delete] = ACTIONS(3035), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_namespace] = ACTIONS(3035), + [anon_sym_using] = ACTIONS(3035), + [anon_sym_static_assert] = ACTIONS(3035), + [anon_sym_concept] = ACTIONS(3035), + [anon_sym_co_return] = ACTIONS(3035), + [anon_sym_co_yield] = ACTIONS(3035), + [anon_sym_R_DQUOTE] = ACTIONS(3037), + [anon_sym_LR_DQUOTE] = ACTIONS(3037), + [anon_sym_uR_DQUOTE] = ACTIONS(3037), + [anon_sym_UR_DQUOTE] = ACTIONS(3037), + [anon_sym_u8R_DQUOTE] = ACTIONS(3037), + [anon_sym_co_await] = ACTIONS(3035), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(3035), + [sym_this] = ACTIONS(3035), }, - [926] = { + [957] = { + [ts_builtin_sym_end] = ACTIONS(2963), [sym_identifier] = ACTIONS(2961), [aux_sym_preproc_include_token1] = ACTIONS(2961), [aux_sym_preproc_def_token1] = ACTIONS(2961), @@ -184849,7 +184218,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(2963), [anon_sym_AMP_AMP] = ACTIONS(2963), [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_SEMI] = ACTIONS(2963), [anon_sym___extension__] = ACTIONS(2961), [anon_sym_typedef] = ACTIONS(2961), [anon_sym_extern] = ACTIONS(2961), @@ -184865,7 +184233,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -184896,7 +184263,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2961), [anon_sym_union] = ACTIONS(2961), [anon_sym_if] = ACTIONS(2961), - [anon_sym_else] = ACTIONS(2961), [anon_sym_switch] = ACTIONS(2961), [anon_sym_case] = ACTIONS(2961), [anon_sym_default] = ACTIONS(2961), @@ -184964,11288 +184330,13109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2961), [sym_this] = ACTIONS(2961), }, - [927] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [958] = { + [ts_builtin_sym_end] = ACTIONS(3037), + [sym_identifier] = ACTIONS(3035), + [aux_sym_preproc_include_token1] = ACTIONS(3035), + [aux_sym_preproc_def_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token1] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), + [sym_preproc_directive] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_BANG] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(3037), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP_AMP] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym___extension__] = ACTIONS(3035), + [anon_sym_typedef] = ACTIONS(3035), + [anon_sym_extern] = ACTIONS(3035), + [anon_sym___attribute__] = ACTIONS(3035), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), + [anon_sym___declspec] = ACTIONS(3035), + [anon_sym___based] = ACTIONS(3035), + [anon_sym___cdecl] = ACTIONS(3035), + [anon_sym___clrcall] = ACTIONS(3035), + [anon_sym___stdcall] = ACTIONS(3035), + [anon_sym___fastcall] = ACTIONS(3035), + [anon_sym___thiscall] = ACTIONS(3035), + [anon_sym___vectorcall] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3037), + [anon_sym_signed] = ACTIONS(3035), + [anon_sym_unsigned] = ACTIONS(3035), + [anon_sym_long] = ACTIONS(3035), + [anon_sym_short] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_static] = ACTIONS(3035), + [anon_sym_register] = ACTIONS(3035), + [anon_sym_inline] = ACTIONS(3035), + [anon_sym___inline] = ACTIONS(3035), + [anon_sym___inline__] = ACTIONS(3035), + [anon_sym___forceinline] = ACTIONS(3035), + [anon_sym_thread_local] = ACTIONS(3035), + [anon_sym___thread] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_constexpr] = ACTIONS(3035), + [anon_sym_volatile] = ACTIONS(3035), + [anon_sym_restrict] = ACTIONS(3035), + [anon_sym___restrict__] = ACTIONS(3035), + [anon_sym__Atomic] = ACTIONS(3035), + [anon_sym__Noreturn] = ACTIONS(3035), + [anon_sym_noreturn] = ACTIONS(3035), + [anon_sym_mutable] = ACTIONS(3035), + [anon_sym_constinit] = ACTIONS(3035), + [anon_sym_consteval] = ACTIONS(3035), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_class] = ACTIONS(3035), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_switch] = ACTIONS(3035), + [anon_sym_case] = ACTIONS(3035), + [anon_sym_default] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_break] = ACTIONS(3035), + [anon_sym_continue] = ACTIONS(3035), + [anon_sym_goto] = ACTIONS(3035), + [anon_sym_not] = ACTIONS(3035), + [anon_sym_compl] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3037), + [anon_sym_PLUS_PLUS] = ACTIONS(3037), + [anon_sym_sizeof] = ACTIONS(3035), + [anon_sym___alignof__] = ACTIONS(3035), + [anon_sym___alignof] = ACTIONS(3035), + [anon_sym__alignof] = ACTIONS(3035), + [anon_sym_alignof] = ACTIONS(3035), + [anon_sym__Alignof] = ACTIONS(3035), + [anon_sym_offsetof] = ACTIONS(3035), + [anon_sym__Generic] = ACTIONS(3035), + [anon_sym_asm] = ACTIONS(3035), + [anon_sym___asm__] = ACTIONS(3035), + [sym_number_literal] = ACTIONS(3037), + [anon_sym_L_SQUOTE] = ACTIONS(3037), + [anon_sym_u_SQUOTE] = ACTIONS(3037), + [anon_sym_U_SQUOTE] = ACTIONS(3037), + [anon_sym_u8_SQUOTE] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_L_DQUOTE] = ACTIONS(3037), + [anon_sym_u_DQUOTE] = ACTIONS(3037), + [anon_sym_U_DQUOTE] = ACTIONS(3037), + [anon_sym_u8_DQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE] = ACTIONS(3037), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [anon_sym_NULL] = ACTIONS(3035), + [anon_sym_nullptr] = ACTIONS(3035), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(3035), + [anon_sym_decltype] = ACTIONS(3035), + [anon_sym_virtual] = ACTIONS(3035), + [anon_sym_alignas] = ACTIONS(3035), + [anon_sym_explicit] = ACTIONS(3035), + [anon_sym_typename] = ACTIONS(3035), + [anon_sym_template] = ACTIONS(3035), + [anon_sym_operator] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_delete] = ACTIONS(3035), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_namespace] = ACTIONS(3035), + [anon_sym_using] = ACTIONS(3035), + [anon_sym_static_assert] = ACTIONS(3035), + [anon_sym_concept] = ACTIONS(3035), + [anon_sym_co_return] = ACTIONS(3035), + [anon_sym_co_yield] = ACTIONS(3035), + [anon_sym_R_DQUOTE] = ACTIONS(3037), + [anon_sym_LR_DQUOTE] = ACTIONS(3037), + [anon_sym_uR_DQUOTE] = ACTIONS(3037), + [anon_sym_UR_DQUOTE] = ACTIONS(3037), + [anon_sym_u8R_DQUOTE] = ACTIONS(3037), + [anon_sym_co_await] = ACTIONS(3035), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(3035), + [sym_this] = ACTIONS(3035), }, - [928] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [959] = { + [sym_preproc_def] = STATE(898), + [sym_preproc_function_def] = STATE(898), + [sym_preproc_call] = STATE(898), + [sym_preproc_if_in_field_declaration_list] = STATE(898), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(898), + [sym_type_definition] = STATE(898), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5178), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(898), + [sym_field_declaration] = STATE(898), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(898), + [sym_operator_cast] = STATE(6136), + [sym_inline_method_definition] = STATE(898), + [sym__constructor_specifiers] = STATE(1777), + [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_access_specifier] = STATE(7545), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(898), + [sym_alias_declaration] = STATE(898), + [sym_static_assert_declaration] = STATE(898), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(898), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3501), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3505), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3507), + [anon_sym_typedef] = ACTIONS(3509), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3575), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3515), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3517), + [anon_sym_static_assert] = ACTIONS(3519), }, - [929] = { - [sym_identifier] = ACTIONS(2917), - [aux_sym_preproc_include_token1] = ACTIONS(2917), - [aux_sym_preproc_def_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), - [sym_preproc_directive] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym___based] = ACTIONS(2917), - [anon_sym___cdecl] = ACTIONS(2917), - [anon_sym___clrcall] = ACTIONS(2917), - [anon_sym___stdcall] = ACTIONS(2917), - [anon_sym___fastcall] = ACTIONS(2917), - [anon_sym___thiscall] = ACTIONS(2917), - [anon_sym___vectorcall] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_RBRACE] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2917), - [anon_sym_switch] = ACTIONS(2917), - [anon_sym_case] = ACTIONS(2917), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_goto] = ACTIONS(2917), - [anon_sym_not] = ACTIONS(2917), - [anon_sym_compl] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_sizeof] = ACTIONS(2917), - [anon_sym___alignof__] = ACTIONS(2917), - [anon_sym___alignof] = ACTIONS(2917), - [anon_sym__alignof] = ACTIONS(2917), - [anon_sym_alignof] = ACTIONS(2917), - [anon_sym__Alignof] = ACTIONS(2917), - [anon_sym_offsetof] = ACTIONS(2917), - [anon_sym__Generic] = ACTIONS(2917), - [anon_sym_asm] = ACTIONS(2917), - [anon_sym___asm__] = ACTIONS(2917), - [sym_number_literal] = ACTIONS(2919), - [anon_sym_L_SQUOTE] = ACTIONS(2919), - [anon_sym_u_SQUOTE] = ACTIONS(2919), - [anon_sym_U_SQUOTE] = ACTIONS(2919), - [anon_sym_u8_SQUOTE] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2919), - [anon_sym_L_DQUOTE] = ACTIONS(2919), - [anon_sym_u_DQUOTE] = ACTIONS(2919), - [anon_sym_U_DQUOTE] = ACTIONS(2919), - [anon_sym_u8_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [anon_sym_NULL] = ACTIONS(2917), - [anon_sym_nullptr] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_explicit] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_operator] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_delete] = ACTIONS(2917), - [anon_sym_throw] = ACTIONS(2917), - [anon_sym_namespace] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_static_assert] = ACTIONS(2917), - [anon_sym_concept] = ACTIONS(2917), - [anon_sym_co_return] = ACTIONS(2917), - [anon_sym_co_yield] = ACTIONS(2917), - [anon_sym_R_DQUOTE] = ACTIONS(2919), - [anon_sym_LR_DQUOTE] = ACTIONS(2919), - [anon_sym_uR_DQUOTE] = ACTIONS(2919), - [anon_sym_UR_DQUOTE] = ACTIONS(2919), - [anon_sym_u8R_DQUOTE] = ACTIONS(2919), - [anon_sym_co_await] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2917), + [960] = { + [sym_preproc_def] = STATE(950), + [sym_preproc_function_def] = STATE(950), + [sym_preproc_call] = STATE(950), + [sym_preproc_if_in_field_declaration_list] = STATE(950), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(950), + [sym_type_definition] = STATE(950), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5178), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(950), + [sym_field_declaration] = STATE(950), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(950), + [sym_operator_cast] = STATE(6136), + [sym_inline_method_definition] = STATE(950), + [sym__constructor_specifiers] = STATE(1777), + [sym_operator_cast_definition] = STATE(950), + [sym_operator_cast_declaration] = STATE(950), + [sym_constructor_or_destructor_definition] = STATE(950), + [sym_constructor_or_destructor_declaration] = STATE(950), + [sym_friend_declaration] = STATE(950), + [sym_access_specifier] = STATE(7545), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(950), + [sym_alias_declaration] = STATE(950), + [sym_static_assert_declaration] = STATE(950), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(950), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3501), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3505), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3507), + [anon_sym_typedef] = ACTIONS(3509), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3577), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3515), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3517), + [anon_sym_static_assert] = ACTIONS(3519), }, - [930] = { - [sym_identifier] = ACTIONS(2917), - [aux_sym_preproc_include_token1] = ACTIONS(2917), - [aux_sym_preproc_def_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), - [sym_preproc_directive] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym___based] = ACTIONS(2917), - [anon_sym___cdecl] = ACTIONS(2917), - [anon_sym___clrcall] = ACTIONS(2917), - [anon_sym___stdcall] = ACTIONS(2917), - [anon_sym___fastcall] = ACTIONS(2917), - [anon_sym___thiscall] = ACTIONS(2917), - [anon_sym___vectorcall] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_RBRACE] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2917), - [anon_sym_switch] = ACTIONS(2917), - [anon_sym_case] = ACTIONS(2917), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_goto] = ACTIONS(2917), - [anon_sym_not] = ACTIONS(2917), - [anon_sym_compl] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_sizeof] = ACTIONS(2917), - [anon_sym___alignof__] = ACTIONS(2917), - [anon_sym___alignof] = ACTIONS(2917), - [anon_sym__alignof] = ACTIONS(2917), - [anon_sym_alignof] = ACTIONS(2917), - [anon_sym__Alignof] = ACTIONS(2917), - [anon_sym_offsetof] = ACTIONS(2917), - [anon_sym__Generic] = ACTIONS(2917), - [anon_sym_asm] = ACTIONS(2917), - [anon_sym___asm__] = ACTIONS(2917), - [sym_number_literal] = ACTIONS(2919), - [anon_sym_L_SQUOTE] = ACTIONS(2919), - [anon_sym_u_SQUOTE] = ACTIONS(2919), - [anon_sym_U_SQUOTE] = ACTIONS(2919), - [anon_sym_u8_SQUOTE] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2919), - [anon_sym_L_DQUOTE] = ACTIONS(2919), - [anon_sym_u_DQUOTE] = ACTIONS(2919), - [anon_sym_U_DQUOTE] = ACTIONS(2919), - [anon_sym_u8_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [anon_sym_NULL] = ACTIONS(2917), - [anon_sym_nullptr] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_explicit] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_operator] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_delete] = ACTIONS(2917), - [anon_sym_throw] = ACTIONS(2917), - [anon_sym_namespace] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_static_assert] = ACTIONS(2917), - [anon_sym_concept] = ACTIONS(2917), - [anon_sym_co_return] = ACTIONS(2917), - [anon_sym_co_yield] = ACTIONS(2917), - [anon_sym_R_DQUOTE] = ACTIONS(2919), - [anon_sym_LR_DQUOTE] = ACTIONS(2919), - [anon_sym_uR_DQUOTE] = ACTIONS(2919), - [anon_sym_UR_DQUOTE] = ACTIONS(2919), - [anon_sym_u8R_DQUOTE] = ACTIONS(2919), - [anon_sym_co_await] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2917), + [961] = { + [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___extension__] = ACTIONS(3115), + [anon_sym_typedef] = ACTIONS(3115), + [anon_sym_extern] = ACTIONS(3115), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3115), + [anon_sym_constinit] = ACTIONS(3115), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3115), + [anon_sym_alignas] = 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_using] = 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), }, - [931] = { - [sym_identifier] = ACTIONS(2913), - [aux_sym_preproc_include_token1] = ACTIONS(2913), - [aux_sym_preproc_def_token1] = ACTIONS(2913), - [aux_sym_preproc_if_token1] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2913), - [sym_preproc_directive] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym___extension__] = ACTIONS(2913), - [anon_sym_typedef] = ACTIONS(2913), - [anon_sym_extern] = ACTIONS(2913), - [anon_sym___attribute__] = ACTIONS(2913), - [anon_sym_COLON_COLON] = ACTIONS(2915), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2915), - [anon_sym___declspec] = ACTIONS(2913), - [anon_sym___based] = ACTIONS(2913), - [anon_sym___cdecl] = ACTIONS(2913), - [anon_sym___clrcall] = ACTIONS(2913), - [anon_sym___stdcall] = ACTIONS(2913), - [anon_sym___fastcall] = ACTIONS(2913), - [anon_sym___thiscall] = ACTIONS(2913), - [anon_sym___vectorcall] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_RBRACE] = ACTIONS(2915), - [anon_sym_signed] = ACTIONS(2913), - [anon_sym_unsigned] = ACTIONS(2913), - [anon_sym_long] = ACTIONS(2913), - [anon_sym_short] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_static] = ACTIONS(2913), - [anon_sym_register] = ACTIONS(2913), - [anon_sym_inline] = ACTIONS(2913), - [anon_sym___inline] = ACTIONS(2913), - [anon_sym___inline__] = ACTIONS(2913), - [anon_sym___forceinline] = ACTIONS(2913), - [anon_sym_thread_local] = ACTIONS(2913), - [anon_sym___thread] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_constexpr] = ACTIONS(2913), - [anon_sym_volatile] = ACTIONS(2913), - [anon_sym_restrict] = ACTIONS(2913), - [anon_sym___restrict__] = ACTIONS(2913), - [anon_sym__Atomic] = ACTIONS(2913), - [anon_sym__Noreturn] = ACTIONS(2913), - [anon_sym_noreturn] = ACTIONS(2913), - [anon_sym_mutable] = ACTIONS(2913), - [anon_sym_constinit] = ACTIONS(2913), - [anon_sym_consteval] = ACTIONS(2913), - [sym_primitive_type] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), - [anon_sym_class] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_union] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_else] = ACTIONS(2913), - [anon_sym_switch] = ACTIONS(2913), - [anon_sym_case] = ACTIONS(2913), - [anon_sym_default] = ACTIONS(2913), - [anon_sym_while] = ACTIONS(2913), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_goto] = ACTIONS(2913), - [anon_sym_not] = ACTIONS(2913), - [anon_sym_compl] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2913), - [anon_sym___alignof__] = ACTIONS(2913), - [anon_sym___alignof] = ACTIONS(2913), - [anon_sym__alignof] = ACTIONS(2913), - [anon_sym_alignof] = ACTIONS(2913), - [anon_sym__Alignof] = ACTIONS(2913), - [anon_sym_offsetof] = ACTIONS(2913), - [anon_sym__Generic] = ACTIONS(2913), - [anon_sym_asm] = ACTIONS(2913), - [anon_sym___asm__] = ACTIONS(2913), - [sym_number_literal] = ACTIONS(2915), - [anon_sym_L_SQUOTE] = ACTIONS(2915), - [anon_sym_u_SQUOTE] = ACTIONS(2915), - [anon_sym_U_SQUOTE] = ACTIONS(2915), - [anon_sym_u8_SQUOTE] = ACTIONS(2915), - [anon_sym_SQUOTE] = ACTIONS(2915), - [anon_sym_L_DQUOTE] = ACTIONS(2915), - [anon_sym_u_DQUOTE] = ACTIONS(2915), - [anon_sym_U_DQUOTE] = ACTIONS(2915), - [anon_sym_u8_DQUOTE] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(2915), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [anon_sym_NULL] = ACTIONS(2913), - [anon_sym_nullptr] = ACTIONS(2913), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2913), - [anon_sym_decltype] = ACTIONS(2913), - [anon_sym_virtual] = ACTIONS(2913), - [anon_sym_alignas] = ACTIONS(2913), - [anon_sym_explicit] = ACTIONS(2913), - [anon_sym_typename] = ACTIONS(2913), - [anon_sym_template] = ACTIONS(2913), - [anon_sym_operator] = ACTIONS(2913), - [anon_sym_try] = ACTIONS(2913), - [anon_sym_delete] = ACTIONS(2913), - [anon_sym_throw] = ACTIONS(2913), - [anon_sym_namespace] = ACTIONS(2913), - [anon_sym_using] = ACTIONS(2913), - [anon_sym_static_assert] = ACTIONS(2913), - [anon_sym_concept] = ACTIONS(2913), - [anon_sym_co_return] = ACTIONS(2913), - [anon_sym_co_yield] = ACTIONS(2913), - [anon_sym_R_DQUOTE] = ACTIONS(2915), - [anon_sym_LR_DQUOTE] = ACTIONS(2915), - [anon_sym_uR_DQUOTE] = ACTIONS(2915), - [anon_sym_UR_DQUOTE] = ACTIONS(2915), - [anon_sym_u8R_DQUOTE] = ACTIONS(2915), - [anon_sym_co_await] = ACTIONS(2913), - [anon_sym_new] = ACTIONS(2913), - [anon_sym_requires] = ACTIONS(2913), - [sym_this] = ACTIONS(2913), + [962] = { + [sym_preproc_def] = STATE(898), + [sym_preproc_function_def] = STATE(898), + [sym_preproc_call] = STATE(898), + [sym_preproc_if_in_field_declaration_list] = STATE(898), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(898), + [sym_type_definition] = STATE(898), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5178), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(898), + [sym_field_declaration] = STATE(898), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(898), + [sym_operator_cast] = STATE(6136), + [sym_inline_method_definition] = STATE(898), + [sym__constructor_specifiers] = STATE(1777), + [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_access_specifier] = STATE(7545), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(898), + [sym_alias_declaration] = STATE(898), + [sym_static_assert_declaration] = STATE(898), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(898), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3501), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3505), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3507), + [anon_sym_typedef] = ACTIONS(3509), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3579), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3515), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3517), + [anon_sym_static_assert] = ACTIONS(3519), }, - [932] = { - [sym_identifier] = ACTIONS(2953), - [aux_sym_preproc_include_token1] = ACTIONS(2953), - [aux_sym_preproc_def_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token1] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2953), - [sym_preproc_directive] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2955), - [anon_sym___extension__] = ACTIONS(2953), - [anon_sym_typedef] = ACTIONS(2953), - [anon_sym_extern] = ACTIONS(2953), - [anon_sym___attribute__] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), - [anon_sym___declspec] = ACTIONS(2953), - [anon_sym___based] = ACTIONS(2953), - [anon_sym___cdecl] = ACTIONS(2953), - [anon_sym___clrcall] = ACTIONS(2953), - [anon_sym___stdcall] = ACTIONS(2953), - [anon_sym___fastcall] = ACTIONS(2953), - [anon_sym___thiscall] = ACTIONS(2953), - [anon_sym___vectorcall] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_RBRACE] = ACTIONS(2955), - [anon_sym_signed] = ACTIONS(2953), - [anon_sym_unsigned] = ACTIONS(2953), - [anon_sym_long] = ACTIONS(2953), - [anon_sym_short] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2953), - [anon_sym_register] = ACTIONS(2953), - [anon_sym_inline] = ACTIONS(2953), - [anon_sym___inline] = ACTIONS(2953), - [anon_sym___inline__] = ACTIONS(2953), - [anon_sym___forceinline] = ACTIONS(2953), - [anon_sym_thread_local] = ACTIONS(2953), - [anon_sym___thread] = ACTIONS(2953), - [anon_sym_const] = ACTIONS(2953), - [anon_sym_constexpr] = ACTIONS(2953), - [anon_sym_volatile] = ACTIONS(2953), - [anon_sym_restrict] = ACTIONS(2953), - [anon_sym___restrict__] = ACTIONS(2953), - [anon_sym__Atomic] = ACTIONS(2953), - [anon_sym__Noreturn] = ACTIONS(2953), - [anon_sym_noreturn] = ACTIONS(2953), - [anon_sym_mutable] = ACTIONS(2953), - [anon_sym_constinit] = ACTIONS(2953), - [anon_sym_consteval] = ACTIONS(2953), - [sym_primitive_type] = ACTIONS(2953), - [anon_sym_enum] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2953), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_union] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_else] = ACTIONS(2953), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_case] = ACTIONS(2953), - [anon_sym_default] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_break] = ACTIONS(2953), - [anon_sym_continue] = ACTIONS(2953), - [anon_sym_goto] = ACTIONS(2953), - [anon_sym_not] = ACTIONS(2953), - [anon_sym_compl] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2955), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2953), - [anon_sym___alignof] = ACTIONS(2953), - [anon_sym__alignof] = ACTIONS(2953), - [anon_sym_alignof] = ACTIONS(2953), - [anon_sym__Alignof] = ACTIONS(2953), - [anon_sym_offsetof] = ACTIONS(2953), - [anon_sym__Generic] = ACTIONS(2953), - [anon_sym_asm] = ACTIONS(2953), - [anon_sym___asm__] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(2955), - [anon_sym_L_SQUOTE] = ACTIONS(2955), - [anon_sym_u_SQUOTE] = ACTIONS(2955), - [anon_sym_U_SQUOTE] = ACTIONS(2955), - [anon_sym_u8_SQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2955), - [anon_sym_L_DQUOTE] = ACTIONS(2955), - [anon_sym_u_DQUOTE] = ACTIONS(2955), - [anon_sym_U_DQUOTE] = ACTIONS(2955), - [anon_sym_u8_DQUOTE] = ACTIONS(2955), - [anon_sym_DQUOTE] = ACTIONS(2955), - [sym_true] = ACTIONS(2953), - [sym_false] = ACTIONS(2953), - [anon_sym_NULL] = ACTIONS(2953), - [anon_sym_nullptr] = ACTIONS(2953), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2953), - [anon_sym_decltype] = ACTIONS(2953), - [anon_sym_virtual] = ACTIONS(2953), - [anon_sym_alignas] = ACTIONS(2953), - [anon_sym_explicit] = ACTIONS(2953), - [anon_sym_typename] = ACTIONS(2953), - [anon_sym_template] = ACTIONS(2953), - [anon_sym_operator] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_delete] = ACTIONS(2953), - [anon_sym_throw] = ACTIONS(2953), - [anon_sym_namespace] = ACTIONS(2953), - [anon_sym_using] = ACTIONS(2953), - [anon_sym_static_assert] = ACTIONS(2953), - [anon_sym_concept] = ACTIONS(2953), - [anon_sym_co_return] = ACTIONS(2953), - [anon_sym_co_yield] = ACTIONS(2953), - [anon_sym_R_DQUOTE] = ACTIONS(2955), - [anon_sym_LR_DQUOTE] = ACTIONS(2955), - [anon_sym_uR_DQUOTE] = ACTIONS(2955), - [anon_sym_UR_DQUOTE] = ACTIONS(2955), - [anon_sym_u8R_DQUOTE] = ACTIONS(2955), - [anon_sym_co_await] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_requires] = ACTIONS(2953), - [sym_this] = ACTIONS(2953), + [963] = { + [ts_builtin_sym_end] = ACTIONS(2987), + [sym_identifier] = ACTIONS(2985), + [aux_sym_preproc_include_token1] = ACTIONS(2985), + [aux_sym_preproc_def_token1] = ACTIONS(2985), + [aux_sym_preproc_if_token1] = ACTIONS(2985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2985), + [sym_preproc_directive] = ACTIONS(2985), + [anon_sym_LPAREN2] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_AMP_AMP] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym___extension__] = ACTIONS(2985), + [anon_sym_typedef] = ACTIONS(2985), + [anon_sym_extern] = ACTIONS(2985), + [anon_sym___attribute__] = ACTIONS(2985), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), + [anon_sym___declspec] = ACTIONS(2985), + [anon_sym___based] = ACTIONS(2985), + [anon_sym___cdecl] = ACTIONS(2985), + [anon_sym___clrcall] = ACTIONS(2985), + [anon_sym___stdcall] = ACTIONS(2985), + [anon_sym___fastcall] = ACTIONS(2985), + [anon_sym___thiscall] = ACTIONS(2985), + [anon_sym___vectorcall] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_signed] = ACTIONS(2985), + [anon_sym_unsigned] = ACTIONS(2985), + [anon_sym_long] = ACTIONS(2985), + [anon_sym_short] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_static] = ACTIONS(2985), + [anon_sym_register] = ACTIONS(2985), + [anon_sym_inline] = ACTIONS(2985), + [anon_sym___inline] = ACTIONS(2985), + [anon_sym___inline__] = ACTIONS(2985), + [anon_sym___forceinline] = ACTIONS(2985), + [anon_sym_thread_local] = ACTIONS(2985), + [anon_sym___thread] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_constexpr] = ACTIONS(2985), + [anon_sym_volatile] = ACTIONS(2985), + [anon_sym_restrict] = ACTIONS(2985), + [anon_sym___restrict__] = ACTIONS(2985), + [anon_sym__Atomic] = ACTIONS(2985), + [anon_sym__Noreturn] = ACTIONS(2985), + [anon_sym_noreturn] = ACTIONS(2985), + [anon_sym_mutable] = ACTIONS(2985), + [anon_sym_constinit] = ACTIONS(2985), + [anon_sym_consteval] = ACTIONS(2985), + [sym_primitive_type] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_class] = ACTIONS(2985), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_union] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_switch] = ACTIONS(2985), + [anon_sym_case] = ACTIONS(2985), + [anon_sym_default] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_do] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym_not] = ACTIONS(2985), + [anon_sym_compl] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_sizeof] = ACTIONS(2985), + [anon_sym___alignof__] = ACTIONS(2985), + [anon_sym___alignof] = ACTIONS(2985), + [anon_sym__alignof] = ACTIONS(2985), + [anon_sym_alignof] = ACTIONS(2985), + [anon_sym__Alignof] = ACTIONS(2985), + [anon_sym_offsetof] = ACTIONS(2985), + [anon_sym__Generic] = ACTIONS(2985), + [anon_sym_asm] = ACTIONS(2985), + [anon_sym___asm__] = ACTIONS(2985), + [sym_number_literal] = ACTIONS(2987), + [anon_sym_L_SQUOTE] = ACTIONS(2987), + [anon_sym_u_SQUOTE] = ACTIONS(2987), + [anon_sym_U_SQUOTE] = ACTIONS(2987), + [anon_sym_u8_SQUOTE] = ACTIONS(2987), + [anon_sym_SQUOTE] = ACTIONS(2987), + [anon_sym_L_DQUOTE] = ACTIONS(2987), + [anon_sym_u_DQUOTE] = ACTIONS(2987), + [anon_sym_U_DQUOTE] = ACTIONS(2987), + [anon_sym_u8_DQUOTE] = ACTIONS(2987), + [anon_sym_DQUOTE] = ACTIONS(2987), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [anon_sym_NULL] = ACTIONS(2985), + [anon_sym_nullptr] = ACTIONS(2985), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2985), + [anon_sym_decltype] = ACTIONS(2985), + [anon_sym_virtual] = ACTIONS(2985), + [anon_sym_alignas] = ACTIONS(2985), + [anon_sym_explicit] = ACTIONS(2985), + [anon_sym_typename] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(2985), + [anon_sym_operator] = ACTIONS(2985), + [anon_sym_try] = ACTIONS(2985), + [anon_sym_delete] = ACTIONS(2985), + [anon_sym_throw] = ACTIONS(2985), + [anon_sym_namespace] = ACTIONS(2985), + [anon_sym_using] = ACTIONS(2985), + [anon_sym_static_assert] = ACTIONS(2985), + [anon_sym_concept] = ACTIONS(2985), + [anon_sym_co_return] = ACTIONS(2985), + [anon_sym_co_yield] = ACTIONS(2985), + [anon_sym_R_DQUOTE] = ACTIONS(2987), + [anon_sym_LR_DQUOTE] = ACTIONS(2987), + [anon_sym_uR_DQUOTE] = ACTIONS(2987), + [anon_sym_UR_DQUOTE] = ACTIONS(2987), + [anon_sym_u8R_DQUOTE] = ACTIONS(2987), + [anon_sym_co_await] = ACTIONS(2985), + [anon_sym_new] = ACTIONS(2985), + [anon_sym_requires] = ACTIONS(2985), + [sym_this] = ACTIONS(2985), }, - [933] = { - [sym_identifier] = ACTIONS(2949), - [aux_sym_preproc_include_token1] = ACTIONS(2949), - [aux_sym_preproc_def_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token1] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), - [sym_preproc_directive] = ACTIONS(2949), - [anon_sym_LPAREN2] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2949), - [anon_sym_SEMI] = ACTIONS(2951), - [anon_sym___extension__] = ACTIONS(2949), - [anon_sym_typedef] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2949), - [anon_sym___attribute__] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), - [anon_sym___declspec] = ACTIONS(2949), - [anon_sym___based] = ACTIONS(2949), - [anon_sym___cdecl] = ACTIONS(2949), - [anon_sym___clrcall] = ACTIONS(2949), - [anon_sym___stdcall] = ACTIONS(2949), - [anon_sym___fastcall] = ACTIONS(2949), - [anon_sym___thiscall] = ACTIONS(2949), - [anon_sym___vectorcall] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_RBRACE] = ACTIONS(2951), - [anon_sym_signed] = ACTIONS(2949), - [anon_sym_unsigned] = ACTIONS(2949), - [anon_sym_long] = ACTIONS(2949), - [anon_sym_short] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_register] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2949), - [anon_sym___inline] = ACTIONS(2949), - [anon_sym___inline__] = ACTIONS(2949), - [anon_sym___forceinline] = ACTIONS(2949), - [anon_sym_thread_local] = ACTIONS(2949), - [anon_sym___thread] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_constexpr] = ACTIONS(2949), - [anon_sym_volatile] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2949), - [anon_sym___restrict__] = ACTIONS(2949), - [anon_sym__Atomic] = ACTIONS(2949), - [anon_sym__Noreturn] = ACTIONS(2949), - [anon_sym_noreturn] = ACTIONS(2949), - [anon_sym_mutable] = ACTIONS(2949), - [anon_sym_constinit] = ACTIONS(2949), - [anon_sym_consteval] = ACTIONS(2949), - [sym_primitive_type] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_else] = ACTIONS(2949), - [anon_sym_switch] = ACTIONS(2949), - [anon_sym_case] = ACTIONS(2949), - [anon_sym_default] = ACTIONS(2949), - [anon_sym_while] = ACTIONS(2949), - [anon_sym_do] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym_not] = ACTIONS(2949), - [anon_sym_compl] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2949), - [anon_sym___alignof__] = ACTIONS(2949), - [anon_sym___alignof] = ACTIONS(2949), - [anon_sym__alignof] = ACTIONS(2949), - [anon_sym_alignof] = ACTIONS(2949), - [anon_sym__Alignof] = ACTIONS(2949), - [anon_sym_offsetof] = ACTIONS(2949), - [anon_sym__Generic] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym___asm__] = ACTIONS(2949), - [sym_number_literal] = ACTIONS(2951), - [anon_sym_L_SQUOTE] = ACTIONS(2951), - [anon_sym_u_SQUOTE] = ACTIONS(2951), - [anon_sym_U_SQUOTE] = ACTIONS(2951), - [anon_sym_u8_SQUOTE] = ACTIONS(2951), - [anon_sym_SQUOTE] = ACTIONS(2951), - [anon_sym_L_DQUOTE] = ACTIONS(2951), - [anon_sym_u_DQUOTE] = ACTIONS(2951), - [anon_sym_U_DQUOTE] = ACTIONS(2951), - [anon_sym_u8_DQUOTE] = ACTIONS(2951), - [anon_sym_DQUOTE] = ACTIONS(2951), - [sym_true] = ACTIONS(2949), - [sym_false] = ACTIONS(2949), - [anon_sym_NULL] = ACTIONS(2949), - [anon_sym_nullptr] = ACTIONS(2949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2949), - [anon_sym_decltype] = ACTIONS(2949), - [anon_sym_virtual] = ACTIONS(2949), - [anon_sym_alignas] = ACTIONS(2949), - [anon_sym_explicit] = ACTIONS(2949), - [anon_sym_typename] = ACTIONS(2949), - [anon_sym_template] = ACTIONS(2949), - [anon_sym_operator] = ACTIONS(2949), - [anon_sym_try] = ACTIONS(2949), - [anon_sym_delete] = ACTIONS(2949), - [anon_sym_throw] = ACTIONS(2949), - [anon_sym_namespace] = ACTIONS(2949), - [anon_sym_using] = ACTIONS(2949), - [anon_sym_static_assert] = ACTIONS(2949), - [anon_sym_concept] = ACTIONS(2949), - [anon_sym_co_return] = ACTIONS(2949), - [anon_sym_co_yield] = ACTIONS(2949), - [anon_sym_R_DQUOTE] = ACTIONS(2951), - [anon_sym_LR_DQUOTE] = ACTIONS(2951), - [anon_sym_uR_DQUOTE] = ACTIONS(2951), - [anon_sym_UR_DQUOTE] = ACTIONS(2951), - [anon_sym_u8R_DQUOTE] = ACTIONS(2951), - [anon_sym_co_await] = ACTIONS(2949), - [anon_sym_new] = ACTIONS(2949), - [anon_sym_requires] = ACTIONS(2949), - [sym_this] = ACTIONS(2949), + [964] = { + [ts_builtin_sym_end] = ACTIONS(3065), + [sym_identifier] = ACTIONS(3063), + [aux_sym_preproc_include_token1] = ACTIONS(3063), + [aux_sym_preproc_def_token1] = ACTIONS(3063), + [aux_sym_preproc_if_token1] = ACTIONS(3063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), + [sym_preproc_directive] = ACTIONS(3063), + [anon_sym_LPAREN2] = ACTIONS(3065), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_TILDE] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym___extension__] = ACTIONS(3063), + [anon_sym_typedef] = ACTIONS(3063), + [anon_sym_extern] = ACTIONS(3063), + [anon_sym___attribute__] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(3065), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), + [anon_sym___declspec] = ACTIONS(3063), + [anon_sym___based] = ACTIONS(3063), + [anon_sym___cdecl] = ACTIONS(3063), + [anon_sym___clrcall] = ACTIONS(3063), + [anon_sym___stdcall] = ACTIONS(3063), + [anon_sym___fastcall] = ACTIONS(3063), + [anon_sym___thiscall] = ACTIONS(3063), + [anon_sym___vectorcall] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_signed] = ACTIONS(3063), + [anon_sym_unsigned] = ACTIONS(3063), + [anon_sym_long] = ACTIONS(3063), + [anon_sym_short] = ACTIONS(3063), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_static] = ACTIONS(3063), + [anon_sym_register] = ACTIONS(3063), + [anon_sym_inline] = ACTIONS(3063), + [anon_sym___inline] = ACTIONS(3063), + [anon_sym___inline__] = ACTIONS(3063), + [anon_sym___forceinline] = ACTIONS(3063), + [anon_sym_thread_local] = ACTIONS(3063), + [anon_sym___thread] = ACTIONS(3063), + [anon_sym_const] = ACTIONS(3063), + [anon_sym_constexpr] = ACTIONS(3063), + [anon_sym_volatile] = ACTIONS(3063), + [anon_sym_restrict] = ACTIONS(3063), + [anon_sym___restrict__] = ACTIONS(3063), + [anon_sym__Atomic] = ACTIONS(3063), + [anon_sym__Noreturn] = ACTIONS(3063), + [anon_sym_noreturn] = ACTIONS(3063), + [anon_sym_mutable] = ACTIONS(3063), + [anon_sym_constinit] = ACTIONS(3063), + [anon_sym_consteval] = ACTIONS(3063), + [sym_primitive_type] = ACTIONS(3063), + [anon_sym_enum] = ACTIONS(3063), + [anon_sym_class] = ACTIONS(3063), + [anon_sym_struct] = ACTIONS(3063), + [anon_sym_union] = ACTIONS(3063), + [anon_sym_if] = ACTIONS(3063), + [anon_sym_switch] = ACTIONS(3063), + [anon_sym_case] = ACTIONS(3063), + [anon_sym_default] = ACTIONS(3063), + [anon_sym_while] = ACTIONS(3063), + [anon_sym_do] = ACTIONS(3063), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(3063), + [anon_sym_break] = ACTIONS(3063), + [anon_sym_continue] = ACTIONS(3063), + [anon_sym_goto] = ACTIONS(3063), + [anon_sym_not] = ACTIONS(3063), + [anon_sym_compl] = ACTIONS(3063), + [anon_sym_DASH_DASH] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_sizeof] = ACTIONS(3063), + [anon_sym___alignof__] = ACTIONS(3063), + [anon_sym___alignof] = ACTIONS(3063), + [anon_sym__alignof] = ACTIONS(3063), + [anon_sym_alignof] = ACTIONS(3063), + [anon_sym__Alignof] = ACTIONS(3063), + [anon_sym_offsetof] = ACTIONS(3063), + [anon_sym__Generic] = ACTIONS(3063), + [anon_sym_asm] = ACTIONS(3063), + [anon_sym___asm__] = ACTIONS(3063), + [sym_number_literal] = ACTIONS(3065), + [anon_sym_L_SQUOTE] = ACTIONS(3065), + [anon_sym_u_SQUOTE] = ACTIONS(3065), + [anon_sym_U_SQUOTE] = ACTIONS(3065), + [anon_sym_u8_SQUOTE] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3065), + [anon_sym_L_DQUOTE] = ACTIONS(3065), + [anon_sym_u_DQUOTE] = ACTIONS(3065), + [anon_sym_U_DQUOTE] = ACTIONS(3065), + [anon_sym_u8_DQUOTE] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [sym_true] = ACTIONS(3063), + [sym_false] = ACTIONS(3063), + [anon_sym_NULL] = ACTIONS(3063), + [anon_sym_nullptr] = ACTIONS(3063), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3063), + [anon_sym_decltype] = ACTIONS(3063), + [anon_sym_virtual] = ACTIONS(3063), + [anon_sym_alignas] = ACTIONS(3063), + [anon_sym_explicit] = ACTIONS(3063), + [anon_sym_typename] = ACTIONS(3063), + [anon_sym_template] = ACTIONS(3063), + [anon_sym_operator] = ACTIONS(3063), + [anon_sym_try] = ACTIONS(3063), + [anon_sym_delete] = ACTIONS(3063), + [anon_sym_throw] = ACTIONS(3063), + [anon_sym_namespace] = ACTIONS(3063), + [anon_sym_using] = ACTIONS(3063), + [anon_sym_static_assert] = ACTIONS(3063), + [anon_sym_concept] = ACTIONS(3063), + [anon_sym_co_return] = ACTIONS(3063), + [anon_sym_co_yield] = ACTIONS(3063), + [anon_sym_R_DQUOTE] = ACTIONS(3065), + [anon_sym_LR_DQUOTE] = ACTIONS(3065), + [anon_sym_uR_DQUOTE] = ACTIONS(3065), + [anon_sym_UR_DQUOTE] = ACTIONS(3065), + [anon_sym_u8R_DQUOTE] = ACTIONS(3065), + [anon_sym_co_await] = ACTIONS(3063), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_requires] = ACTIONS(3063), + [sym_this] = ACTIONS(3063), }, - [934] = { - [sym_identifier] = ACTIONS(2937), - [aux_sym_preproc_include_token1] = ACTIONS(2937), - [aux_sym_preproc_def_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token1] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), - [sym_preproc_directive] = ACTIONS(2937), - [anon_sym_LPAREN2] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2939), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym_typedef] = ACTIONS(2937), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), - [anon_sym___declspec] = ACTIONS(2937), - [anon_sym___based] = ACTIONS(2937), - [anon_sym___cdecl] = ACTIONS(2937), - [anon_sym___clrcall] = ACTIONS(2937), - [anon_sym___stdcall] = ACTIONS(2937), - [anon_sym___fastcall] = ACTIONS(2937), - [anon_sym___thiscall] = ACTIONS(2937), - [anon_sym___vectorcall] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_RBRACE] = ACTIONS(2939), - [anon_sym_signed] = ACTIONS(2937), - [anon_sym_unsigned] = ACTIONS(2937), - [anon_sym_long] = ACTIONS(2937), - [anon_sym_short] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(2937), - [anon_sym_register] = ACTIONS(2937), - [anon_sym_inline] = ACTIONS(2937), - [anon_sym___inline] = ACTIONS(2937), - [anon_sym___inline__] = ACTIONS(2937), - [anon_sym___forceinline] = ACTIONS(2937), - [anon_sym_thread_local] = ACTIONS(2937), - [anon_sym___thread] = ACTIONS(2937), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_class] = ACTIONS(2937), - [anon_sym_struct] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_if] = ACTIONS(2937), - [anon_sym_else] = ACTIONS(2937), - [anon_sym_switch] = ACTIONS(2937), - [anon_sym_case] = ACTIONS(2937), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_while] = ACTIONS(2937), - [anon_sym_do] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2937), - [anon_sym_break] = ACTIONS(2937), - [anon_sym_continue] = ACTIONS(2937), - [anon_sym_goto] = ACTIONS(2937), - [anon_sym_not] = ACTIONS(2937), - [anon_sym_compl] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_sizeof] = ACTIONS(2937), - [anon_sym___alignof__] = ACTIONS(2937), - [anon_sym___alignof] = ACTIONS(2937), - [anon_sym__alignof] = ACTIONS(2937), - [anon_sym_alignof] = ACTIONS(2937), - [anon_sym__Alignof] = ACTIONS(2937), - [anon_sym_offsetof] = ACTIONS(2937), - [anon_sym__Generic] = ACTIONS(2937), - [anon_sym_asm] = ACTIONS(2937), - [anon_sym___asm__] = ACTIONS(2937), - [sym_number_literal] = ACTIONS(2939), - [anon_sym_L_SQUOTE] = ACTIONS(2939), - [anon_sym_u_SQUOTE] = ACTIONS(2939), - [anon_sym_U_SQUOTE] = ACTIONS(2939), - [anon_sym_u8_SQUOTE] = ACTIONS(2939), - [anon_sym_SQUOTE] = ACTIONS(2939), - [anon_sym_L_DQUOTE] = ACTIONS(2939), - [anon_sym_u_DQUOTE] = ACTIONS(2939), - [anon_sym_U_DQUOTE] = ACTIONS(2939), - [anon_sym_u8_DQUOTE] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym_true] = ACTIONS(2937), - [sym_false] = ACTIONS(2937), - [anon_sym_NULL] = ACTIONS(2937), - [anon_sym_nullptr] = ACTIONS(2937), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2937), - [anon_sym_decltype] = ACTIONS(2937), - [anon_sym_virtual] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2937), - [anon_sym_explicit] = ACTIONS(2937), - [anon_sym_typename] = ACTIONS(2937), - [anon_sym_template] = ACTIONS(2937), - [anon_sym_operator] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2937), - [anon_sym_delete] = ACTIONS(2937), - [anon_sym_throw] = ACTIONS(2937), - [anon_sym_namespace] = ACTIONS(2937), - [anon_sym_using] = ACTIONS(2937), - [anon_sym_static_assert] = ACTIONS(2937), - [anon_sym_concept] = ACTIONS(2937), - [anon_sym_co_return] = ACTIONS(2937), - [anon_sym_co_yield] = ACTIONS(2937), - [anon_sym_R_DQUOTE] = ACTIONS(2939), - [anon_sym_LR_DQUOTE] = ACTIONS(2939), - [anon_sym_uR_DQUOTE] = ACTIONS(2939), - [anon_sym_UR_DQUOTE] = ACTIONS(2939), - [anon_sym_u8R_DQUOTE] = ACTIONS(2939), - [anon_sym_co_await] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2937), - [anon_sym_requires] = ACTIONS(2937), - [sym_this] = ACTIONS(2937), + [965] = { + [sym_preproc_def] = STATE(898), + [sym_preproc_function_def] = STATE(898), + [sym_preproc_call] = STATE(898), + [sym_preproc_if_in_field_declaration_list] = STATE(898), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(898), + [sym_type_definition] = STATE(898), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5178), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(898), + [sym_field_declaration] = STATE(898), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(898), + [sym_operator_cast] = STATE(6136), + [sym_inline_method_definition] = STATE(898), + [sym__constructor_specifiers] = STATE(1777), + [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_access_specifier] = STATE(7545), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(898), + [sym_alias_declaration] = STATE(898), + [sym_static_assert_declaration] = STATE(898), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(898), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3501), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3505), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3507), + [anon_sym_typedef] = ACTIONS(3509), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3581), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3515), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3517), + [anon_sym_static_assert] = ACTIONS(3519), }, - [935] = { - [sym_identifier] = ACTIONS(2818), - [aux_sym_preproc_include_token1] = ACTIONS(2818), - [aux_sym_preproc_def_token1] = ACTIONS(2818), - [aux_sym_preproc_if_token1] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2818), - [sym_preproc_directive] = ACTIONS(2818), - [anon_sym_LPAREN2] = ACTIONS(2823), - [anon_sym_BANG] = ACTIONS(2823), - [anon_sym_TILDE] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2823), - [anon_sym_AMP_AMP] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2823), - [anon_sym___extension__] = ACTIONS(2818), - [anon_sym_typedef] = ACTIONS(2818), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym___attribute__] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), - [anon_sym___declspec] = ACTIONS(2818), - [anon_sym___based] = ACTIONS(2818), - [anon_sym___cdecl] = ACTIONS(2818), - [anon_sym___clrcall] = ACTIONS(2818), - [anon_sym___stdcall] = ACTIONS(2818), - [anon_sym___fastcall] = ACTIONS(2818), - [anon_sym___thiscall] = ACTIONS(2818), - [anon_sym___vectorcall] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_RBRACE] = ACTIONS(2823), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym___inline] = ACTIONS(2818), - [anon_sym___inline__] = ACTIONS(2818), - [anon_sym___forceinline] = ACTIONS(2818), - [anon_sym_thread_local] = ACTIONS(2818), - [anon_sym___thread] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_restrict] = ACTIONS(2818), - [anon_sym___restrict__] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [anon_sym__Noreturn] = ACTIONS(2818), - [anon_sym_noreturn] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [anon_sym_constinit] = ACTIONS(2818), - [anon_sym_consteval] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_else] = ACTIONS(2818), - [anon_sym_switch] = ACTIONS(2818), - [anon_sym_case] = ACTIONS(2818), - [anon_sym_default] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [anon_sym_goto] = ACTIONS(2818), - [anon_sym_not] = ACTIONS(2818), - [anon_sym_compl] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2823), - [anon_sym_PLUS_PLUS] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2818), - [anon_sym___alignof__] = ACTIONS(2818), - [anon_sym___alignof] = ACTIONS(2818), - [anon_sym__alignof] = ACTIONS(2818), - [anon_sym_alignof] = ACTIONS(2818), - [anon_sym__Alignof] = ACTIONS(2818), - [anon_sym_offsetof] = ACTIONS(2818), - [anon_sym__Generic] = ACTIONS(2818), - [anon_sym_asm] = ACTIONS(2818), - [anon_sym___asm__] = ACTIONS(2818), - [sym_number_literal] = ACTIONS(2823), - [anon_sym_L_SQUOTE] = ACTIONS(2823), - [anon_sym_u_SQUOTE] = ACTIONS(2823), - [anon_sym_U_SQUOTE] = ACTIONS(2823), - [anon_sym_u8_SQUOTE] = ACTIONS(2823), - [anon_sym_SQUOTE] = ACTIONS(2823), - [anon_sym_L_DQUOTE] = ACTIONS(2823), - [anon_sym_u_DQUOTE] = ACTIONS(2823), - [anon_sym_U_DQUOTE] = ACTIONS(2823), - [anon_sym_u8_DQUOTE] = ACTIONS(2823), - [anon_sym_DQUOTE] = ACTIONS(2823), - [sym_true] = ACTIONS(2818), - [sym_false] = ACTIONS(2818), - [anon_sym_NULL] = ACTIONS(2818), - [anon_sym_nullptr] = ACTIONS(2818), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2818), - [anon_sym_decltype] = ACTIONS(2818), - [anon_sym_virtual] = ACTIONS(2818), - [anon_sym_alignas] = ACTIONS(2818), - [anon_sym_explicit] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_template] = ACTIONS(2818), - [anon_sym_operator] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_delete] = ACTIONS(2818), - [anon_sym_throw] = ACTIONS(2818), - [anon_sym_namespace] = ACTIONS(2818), - [anon_sym_using] = ACTIONS(2818), - [anon_sym_static_assert] = ACTIONS(2818), - [anon_sym_concept] = ACTIONS(2818), - [anon_sym_co_return] = ACTIONS(2818), - [anon_sym_co_yield] = ACTIONS(2818), - [anon_sym_R_DQUOTE] = ACTIONS(2823), - [anon_sym_LR_DQUOTE] = ACTIONS(2823), - [anon_sym_uR_DQUOTE] = ACTIONS(2823), - [anon_sym_UR_DQUOTE] = ACTIONS(2823), - [anon_sym_u8R_DQUOTE] = ACTIONS(2823), - [anon_sym_co_await] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_requires] = ACTIONS(2818), - [sym_this] = ACTIONS(2818), + [966] = { + [ts_builtin_sym_end] = ACTIONS(3101), + [sym_identifier] = ACTIONS(3099), + [aux_sym_preproc_include_token1] = ACTIONS(3099), + [aux_sym_preproc_def_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), + [sym_preproc_directive] = ACTIONS(3099), + [anon_sym_LPAREN2] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym___extension__] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym___attribute__] = ACTIONS(3099), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), + [anon_sym___declspec] = ACTIONS(3099), + [anon_sym___based] = ACTIONS(3099), + [anon_sym___cdecl] = ACTIONS(3099), + [anon_sym___clrcall] = ACTIONS(3099), + [anon_sym___stdcall] = ACTIONS(3099), + [anon_sym___fastcall] = ACTIONS(3099), + [anon_sym___thiscall] = ACTIONS(3099), + [anon_sym___vectorcall] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3099), + [anon_sym_unsigned] = ACTIONS(3099), + [anon_sym_long] = ACTIONS(3099), + [anon_sym_short] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_register] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym___inline] = ACTIONS(3099), + [anon_sym___inline__] = ACTIONS(3099), + [anon_sym___forceinline] = ACTIONS(3099), + [anon_sym_thread_local] = ACTIONS(3099), + [anon_sym___thread] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_constexpr] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_restrict] = ACTIONS(3099), + [anon_sym___restrict__] = ACTIONS(3099), + [anon_sym__Atomic] = ACTIONS(3099), + [anon_sym__Noreturn] = ACTIONS(3099), + [anon_sym_noreturn] = ACTIONS(3099), + [anon_sym_mutable] = ACTIONS(3099), + [anon_sym_constinit] = ACTIONS(3099), + [anon_sym_consteval] = ACTIONS(3099), + [sym_primitive_type] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3099), + [anon_sym_case] = ACTIONS(3099), + [anon_sym_default] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_do] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym_not] = ACTIONS(3099), + [anon_sym_compl] = ACTIONS(3099), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym___alignof__] = ACTIONS(3099), + [anon_sym___alignof] = ACTIONS(3099), + [anon_sym__alignof] = ACTIONS(3099), + [anon_sym_alignof] = ACTIONS(3099), + [anon_sym__Alignof] = ACTIONS(3099), + [anon_sym_offsetof] = ACTIONS(3099), + [anon_sym__Generic] = ACTIONS(3099), + [anon_sym_asm] = ACTIONS(3099), + [anon_sym___asm__] = ACTIONS(3099), + [sym_number_literal] = ACTIONS(3101), + [anon_sym_L_SQUOTE] = ACTIONS(3101), + [anon_sym_u_SQUOTE] = ACTIONS(3101), + [anon_sym_U_SQUOTE] = ACTIONS(3101), + [anon_sym_u8_SQUOTE] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3101), + [anon_sym_L_DQUOTE] = ACTIONS(3101), + [anon_sym_u_DQUOTE] = ACTIONS(3101), + [anon_sym_U_DQUOTE] = ACTIONS(3101), + [anon_sym_u8_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [anon_sym_NULL] = ACTIONS(3099), + [anon_sym_nullptr] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_alignas] = ACTIONS(3099), + [anon_sym_explicit] = ACTIONS(3099), + [anon_sym_typename] = ACTIONS(3099), + [anon_sym_template] = ACTIONS(3099), + [anon_sym_operator] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_throw] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_static_assert] = ACTIONS(3099), + [anon_sym_concept] = ACTIONS(3099), + [anon_sym_co_return] = ACTIONS(3099), + [anon_sym_co_yield] = ACTIONS(3099), + [anon_sym_R_DQUOTE] = ACTIONS(3101), + [anon_sym_LR_DQUOTE] = ACTIONS(3101), + [anon_sym_uR_DQUOTE] = ACTIONS(3101), + [anon_sym_UR_DQUOTE] = ACTIONS(3101), + [anon_sym_u8R_DQUOTE] = ACTIONS(3101), + [anon_sym_co_await] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_requires] = ACTIONS(3099), + [sym_this] = ACTIONS(3099), }, - [936] = { - [sym_identifier] = ACTIONS(2881), - [aux_sym_preproc_include_token1] = ACTIONS(2881), - [aux_sym_preproc_def_token1] = ACTIONS(2881), - [aux_sym_preproc_if_token1] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2881), - [sym_preproc_directive] = ACTIONS(2881), - [anon_sym_LPAREN2] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2881), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym___extension__] = ACTIONS(2881), - [anon_sym_typedef] = ACTIONS(2881), - [anon_sym_extern] = ACTIONS(2881), - [anon_sym___attribute__] = ACTIONS(2881), - [anon_sym_COLON_COLON] = ACTIONS(2883), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2883), - [anon_sym___declspec] = ACTIONS(2881), - [anon_sym___based] = ACTIONS(2881), - [anon_sym___cdecl] = ACTIONS(2881), - [anon_sym___clrcall] = ACTIONS(2881), - [anon_sym___stdcall] = ACTIONS(2881), - [anon_sym___fastcall] = ACTIONS(2881), - [anon_sym___thiscall] = ACTIONS(2881), - [anon_sym___vectorcall] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_RBRACE] = ACTIONS(2883), - [anon_sym_signed] = ACTIONS(2881), - [anon_sym_unsigned] = ACTIONS(2881), - [anon_sym_long] = ACTIONS(2881), - [anon_sym_short] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_register] = ACTIONS(2881), - [anon_sym_inline] = ACTIONS(2881), - [anon_sym___inline] = ACTIONS(2881), - [anon_sym___inline__] = ACTIONS(2881), - [anon_sym___forceinline] = ACTIONS(2881), - [anon_sym_thread_local] = ACTIONS(2881), - [anon_sym___thread] = ACTIONS(2881), - [anon_sym_const] = ACTIONS(2881), - [anon_sym_constexpr] = ACTIONS(2881), - [anon_sym_volatile] = ACTIONS(2881), - [anon_sym_restrict] = ACTIONS(2881), - [anon_sym___restrict__] = ACTIONS(2881), - [anon_sym__Atomic] = ACTIONS(2881), - [anon_sym__Noreturn] = ACTIONS(2881), - [anon_sym_noreturn] = ACTIONS(2881), - [anon_sym_mutable] = ACTIONS(2881), - [anon_sym_constinit] = ACTIONS(2881), - [anon_sym_consteval] = ACTIONS(2881), - [sym_primitive_type] = ACTIONS(2881), - [anon_sym_enum] = ACTIONS(2881), - [anon_sym_class] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2881), - [anon_sym_union] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2881), - [anon_sym_else] = ACTIONS(2881), - [anon_sym_switch] = ACTIONS(2881), - [anon_sym_case] = ACTIONS(2881), - [anon_sym_default] = ACTIONS(2881), - [anon_sym_while] = ACTIONS(2881), - [anon_sym_do] = ACTIONS(2881), - [anon_sym_for] = ACTIONS(2881), - [anon_sym_return] = ACTIONS(2881), - [anon_sym_break] = ACTIONS(2881), - [anon_sym_continue] = ACTIONS(2881), - [anon_sym_goto] = ACTIONS(2881), - [anon_sym_not] = ACTIONS(2881), - [anon_sym_compl] = ACTIONS(2881), - [anon_sym_DASH_DASH] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_sizeof] = ACTIONS(2881), - [anon_sym___alignof__] = ACTIONS(2881), - [anon_sym___alignof] = ACTIONS(2881), - [anon_sym__alignof] = ACTIONS(2881), - [anon_sym_alignof] = ACTIONS(2881), - [anon_sym__Alignof] = ACTIONS(2881), - [anon_sym_offsetof] = ACTIONS(2881), - [anon_sym__Generic] = ACTIONS(2881), - [anon_sym_asm] = ACTIONS(2881), - [anon_sym___asm__] = ACTIONS(2881), - [sym_number_literal] = ACTIONS(2883), - [anon_sym_L_SQUOTE] = ACTIONS(2883), - [anon_sym_u_SQUOTE] = ACTIONS(2883), - [anon_sym_U_SQUOTE] = ACTIONS(2883), - [anon_sym_u8_SQUOTE] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2883), - [anon_sym_L_DQUOTE] = ACTIONS(2883), - [anon_sym_u_DQUOTE] = ACTIONS(2883), - [anon_sym_U_DQUOTE] = ACTIONS(2883), - [anon_sym_u8_DQUOTE] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [sym_true] = ACTIONS(2881), - [sym_false] = ACTIONS(2881), - [anon_sym_NULL] = ACTIONS(2881), - [anon_sym_nullptr] = ACTIONS(2881), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2881), - [anon_sym_decltype] = ACTIONS(2881), - [anon_sym_virtual] = ACTIONS(2881), - [anon_sym_alignas] = ACTIONS(2881), - [anon_sym_explicit] = ACTIONS(2881), - [anon_sym_typename] = ACTIONS(2881), - [anon_sym_template] = ACTIONS(2881), - [anon_sym_operator] = ACTIONS(2881), - [anon_sym_try] = ACTIONS(2881), - [anon_sym_delete] = ACTIONS(2881), - [anon_sym_throw] = ACTIONS(2881), - [anon_sym_namespace] = ACTIONS(2881), - [anon_sym_using] = ACTIONS(2881), - [anon_sym_static_assert] = ACTIONS(2881), - [anon_sym_concept] = ACTIONS(2881), - [anon_sym_co_return] = ACTIONS(2881), - [anon_sym_co_yield] = ACTIONS(2881), - [anon_sym_R_DQUOTE] = ACTIONS(2883), - [anon_sym_LR_DQUOTE] = ACTIONS(2883), - [anon_sym_uR_DQUOTE] = ACTIONS(2883), - [anon_sym_UR_DQUOTE] = ACTIONS(2883), - [anon_sym_u8R_DQUOTE] = ACTIONS(2883), - [anon_sym_co_await] = ACTIONS(2881), - [anon_sym_new] = ACTIONS(2881), - [anon_sym_requires] = ACTIONS(2881), - [sym_this] = ACTIONS(2881), + [967] = { + [sym_preproc_def] = STATE(937), + [sym_preproc_function_def] = STATE(937), + [sym_preproc_call] = STATE(937), + [sym_preproc_if_in_field_declaration_list] = STATE(937), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(937), + [sym_type_definition] = STATE(937), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5178), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(937), + [sym_field_declaration] = STATE(937), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(937), + [sym_operator_cast] = STATE(6136), + [sym_inline_method_definition] = STATE(937), + [sym__constructor_specifiers] = STATE(1777), + [sym_operator_cast_definition] = STATE(937), + [sym_operator_cast_declaration] = STATE(937), + [sym_constructor_or_destructor_definition] = STATE(937), + [sym_constructor_or_destructor_declaration] = STATE(937), + [sym_friend_declaration] = STATE(937), + [sym_access_specifier] = STATE(7545), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(937), + [sym_alias_declaration] = STATE(937), + [sym_static_assert_declaration] = STATE(937), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(937), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3501), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3505), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3507), + [anon_sym_typedef] = ACTIONS(3509), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3583), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3515), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3517), + [anon_sym_static_assert] = ACTIONS(3519), }, - [937] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [968] = { + [sym_preproc_def] = STATE(962), + [sym_preproc_function_def] = STATE(962), + [sym_preproc_call] = STATE(962), + [sym_preproc_if_in_field_declaration_list] = STATE(962), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(962), + [sym_type_definition] = STATE(962), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5178), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(962), + [sym_field_declaration] = STATE(962), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(962), + [sym_operator_cast] = STATE(6136), + [sym_inline_method_definition] = STATE(962), + [sym__constructor_specifiers] = STATE(1777), + [sym_operator_cast_definition] = STATE(962), + [sym_operator_cast_declaration] = STATE(962), + [sym_constructor_or_destructor_definition] = STATE(962), + [sym_constructor_or_destructor_declaration] = STATE(962), + [sym_friend_declaration] = STATE(962), + [sym_access_specifier] = STATE(7545), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(962), + [sym_alias_declaration] = STATE(962), + [sym_static_assert_declaration] = STATE(962), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(962), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3501), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3505), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3507), + [anon_sym_typedef] = ACTIONS(3509), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3585), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3515), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3517), + [anon_sym_static_assert] = ACTIONS(3519), }, - [938] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [969] = { + [ts_builtin_sym_end] = ACTIONS(3214), + [sym_identifier] = ACTIONS(3212), + [aux_sym_preproc_include_token1] = ACTIONS(3212), + [aux_sym_preproc_def_token1] = ACTIONS(3212), + [aux_sym_preproc_if_token1] = ACTIONS(3212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3212), + [sym_preproc_directive] = ACTIONS(3212), + [anon_sym_LPAREN2] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3214), + [anon_sym_AMP_AMP] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym___extension__] = ACTIONS(3212), + [anon_sym_typedef] = ACTIONS(3212), + [anon_sym_extern] = ACTIONS(3212), + [anon_sym___attribute__] = ACTIONS(3212), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3214), + [anon_sym___declspec] = ACTIONS(3212), + [anon_sym___based] = ACTIONS(3212), + [anon_sym___cdecl] = ACTIONS(3212), + [anon_sym___clrcall] = ACTIONS(3212), + [anon_sym___stdcall] = ACTIONS(3212), + [anon_sym___fastcall] = ACTIONS(3212), + [anon_sym___thiscall] = ACTIONS(3212), + [anon_sym___vectorcall] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_signed] = ACTIONS(3212), + [anon_sym_unsigned] = ACTIONS(3212), + [anon_sym_long] = ACTIONS(3212), + [anon_sym_short] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_static] = ACTIONS(3212), + [anon_sym_register] = ACTIONS(3212), + [anon_sym_inline] = ACTIONS(3212), + [anon_sym___inline] = ACTIONS(3212), + [anon_sym___inline__] = ACTIONS(3212), + [anon_sym___forceinline] = ACTIONS(3212), + [anon_sym_thread_local] = ACTIONS(3212), + [anon_sym___thread] = ACTIONS(3212), + [anon_sym_const] = ACTIONS(3212), + [anon_sym_constexpr] = ACTIONS(3212), + [anon_sym_volatile] = ACTIONS(3212), + [anon_sym_restrict] = ACTIONS(3212), + [anon_sym___restrict__] = ACTIONS(3212), + [anon_sym__Atomic] = ACTIONS(3212), + [anon_sym__Noreturn] = ACTIONS(3212), + [anon_sym_noreturn] = ACTIONS(3212), + [anon_sym_mutable] = ACTIONS(3212), + [anon_sym_constinit] = ACTIONS(3212), + [anon_sym_consteval] = ACTIONS(3212), + [sym_primitive_type] = ACTIONS(3212), + [anon_sym_enum] = ACTIONS(3212), + [anon_sym_class] = ACTIONS(3212), + [anon_sym_struct] = ACTIONS(3212), + [anon_sym_union] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_switch] = ACTIONS(3212), + [anon_sym_case] = ACTIONS(3212), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_break] = ACTIONS(3212), + [anon_sym_continue] = ACTIONS(3212), + [anon_sym_goto] = ACTIONS(3212), + [anon_sym_not] = ACTIONS(3212), + [anon_sym_compl] = ACTIONS(3212), + [anon_sym_DASH_DASH] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3214), + [anon_sym_sizeof] = ACTIONS(3212), + [anon_sym___alignof__] = ACTIONS(3212), + [anon_sym___alignof] = ACTIONS(3212), + [anon_sym__alignof] = ACTIONS(3212), + [anon_sym_alignof] = ACTIONS(3212), + [anon_sym__Alignof] = ACTIONS(3212), + [anon_sym_offsetof] = ACTIONS(3212), + [anon_sym__Generic] = ACTIONS(3212), + [anon_sym_asm] = ACTIONS(3212), + [anon_sym___asm__] = ACTIONS(3212), + [sym_number_literal] = ACTIONS(3214), + [anon_sym_L_SQUOTE] = ACTIONS(3214), + [anon_sym_u_SQUOTE] = ACTIONS(3214), + [anon_sym_U_SQUOTE] = ACTIONS(3214), + [anon_sym_u8_SQUOTE] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3214), + [anon_sym_L_DQUOTE] = ACTIONS(3214), + [anon_sym_u_DQUOTE] = ACTIONS(3214), + [anon_sym_U_DQUOTE] = ACTIONS(3214), + [anon_sym_u8_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE] = ACTIONS(3214), + [sym_true] = ACTIONS(3212), + [sym_false] = ACTIONS(3212), + [anon_sym_NULL] = ACTIONS(3212), + [anon_sym_nullptr] = ACTIONS(3212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3212), + [anon_sym_decltype] = ACTIONS(3212), + [anon_sym_virtual] = ACTIONS(3212), + [anon_sym_alignas] = ACTIONS(3212), + [anon_sym_explicit] = ACTIONS(3212), + [anon_sym_typename] = ACTIONS(3212), + [anon_sym_template] = ACTIONS(3212), + [anon_sym_operator] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_delete] = ACTIONS(3212), + [anon_sym_throw] = ACTIONS(3212), + [anon_sym_namespace] = ACTIONS(3212), + [anon_sym_using] = ACTIONS(3212), + [anon_sym_static_assert] = ACTIONS(3212), + [anon_sym_concept] = ACTIONS(3212), + [anon_sym_co_return] = ACTIONS(3212), + [anon_sym_co_yield] = ACTIONS(3212), + [anon_sym_R_DQUOTE] = ACTIONS(3214), + [anon_sym_LR_DQUOTE] = ACTIONS(3214), + [anon_sym_uR_DQUOTE] = ACTIONS(3214), + [anon_sym_UR_DQUOTE] = ACTIONS(3214), + [anon_sym_u8R_DQUOTE] = ACTIONS(3214), + [anon_sym_co_await] = ACTIONS(3212), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_requires] = ACTIONS(3212), + [sym_this] = ACTIONS(3212), }, - [939] = { - [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_extern] = ACTIONS(2999), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(2999), - [anon_sym_constinit] = ACTIONS(2999), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(2999), - [anon_sym_alignas] = 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_using] = 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), + [970] = { + [ts_builtin_sym_end] = ACTIONS(3210), + [sym_identifier] = ACTIONS(3208), + [aux_sym_preproc_include_token1] = ACTIONS(3208), + [aux_sym_preproc_def_token1] = ACTIONS(3208), + [aux_sym_preproc_if_token1] = ACTIONS(3208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3208), + [sym_preproc_directive] = ACTIONS(3208), + [anon_sym_LPAREN2] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_AMP_AMP] = ACTIONS(3210), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym___extension__] = ACTIONS(3208), + [anon_sym_typedef] = ACTIONS(3208), + [anon_sym_extern] = ACTIONS(3208), + [anon_sym___attribute__] = ACTIONS(3208), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3210), + [anon_sym___declspec] = ACTIONS(3208), + [anon_sym___based] = ACTIONS(3208), + [anon_sym___cdecl] = ACTIONS(3208), + [anon_sym___clrcall] = ACTIONS(3208), + [anon_sym___stdcall] = ACTIONS(3208), + [anon_sym___fastcall] = ACTIONS(3208), + [anon_sym___thiscall] = ACTIONS(3208), + [anon_sym___vectorcall] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_signed] = ACTIONS(3208), + [anon_sym_unsigned] = ACTIONS(3208), + [anon_sym_long] = ACTIONS(3208), + [anon_sym_short] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_static] = ACTIONS(3208), + [anon_sym_register] = ACTIONS(3208), + [anon_sym_inline] = ACTIONS(3208), + [anon_sym___inline] = ACTIONS(3208), + [anon_sym___inline__] = ACTIONS(3208), + [anon_sym___forceinline] = ACTIONS(3208), + [anon_sym_thread_local] = ACTIONS(3208), + [anon_sym___thread] = ACTIONS(3208), + [anon_sym_const] = ACTIONS(3208), + [anon_sym_constexpr] = ACTIONS(3208), + [anon_sym_volatile] = ACTIONS(3208), + [anon_sym_restrict] = ACTIONS(3208), + [anon_sym___restrict__] = ACTIONS(3208), + [anon_sym__Atomic] = ACTIONS(3208), + [anon_sym__Noreturn] = ACTIONS(3208), + [anon_sym_noreturn] = ACTIONS(3208), + [anon_sym_mutable] = ACTIONS(3208), + [anon_sym_constinit] = ACTIONS(3208), + [anon_sym_consteval] = ACTIONS(3208), + [sym_primitive_type] = ACTIONS(3208), + [anon_sym_enum] = ACTIONS(3208), + [anon_sym_class] = ACTIONS(3208), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3208), + [anon_sym_if] = ACTIONS(3208), + [anon_sym_switch] = ACTIONS(3208), + [anon_sym_case] = ACTIONS(3208), + [anon_sym_default] = ACTIONS(3208), + [anon_sym_while] = ACTIONS(3208), + [anon_sym_do] = ACTIONS(3208), + [anon_sym_for] = ACTIONS(3208), + [anon_sym_return] = ACTIONS(3208), + [anon_sym_break] = ACTIONS(3208), + [anon_sym_continue] = ACTIONS(3208), + [anon_sym_goto] = ACTIONS(3208), + [anon_sym_not] = ACTIONS(3208), + [anon_sym_compl] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3210), + [anon_sym_sizeof] = ACTIONS(3208), + [anon_sym___alignof__] = ACTIONS(3208), + [anon_sym___alignof] = ACTIONS(3208), + [anon_sym__alignof] = ACTIONS(3208), + [anon_sym_alignof] = ACTIONS(3208), + [anon_sym__Alignof] = ACTIONS(3208), + [anon_sym_offsetof] = ACTIONS(3208), + [anon_sym__Generic] = ACTIONS(3208), + [anon_sym_asm] = ACTIONS(3208), + [anon_sym___asm__] = ACTIONS(3208), + [sym_number_literal] = ACTIONS(3210), + [anon_sym_L_SQUOTE] = ACTIONS(3210), + [anon_sym_u_SQUOTE] = ACTIONS(3210), + [anon_sym_U_SQUOTE] = ACTIONS(3210), + [anon_sym_u8_SQUOTE] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3210), + [anon_sym_L_DQUOTE] = ACTIONS(3210), + [anon_sym_u_DQUOTE] = ACTIONS(3210), + [anon_sym_U_DQUOTE] = ACTIONS(3210), + [anon_sym_u8_DQUOTE] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(3210), + [sym_true] = ACTIONS(3208), + [sym_false] = ACTIONS(3208), + [anon_sym_NULL] = ACTIONS(3208), + [anon_sym_nullptr] = ACTIONS(3208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3208), + [anon_sym_decltype] = ACTIONS(3208), + [anon_sym_virtual] = ACTIONS(3208), + [anon_sym_alignas] = ACTIONS(3208), + [anon_sym_explicit] = ACTIONS(3208), + [anon_sym_typename] = ACTIONS(3208), + [anon_sym_template] = ACTIONS(3208), + [anon_sym_operator] = ACTIONS(3208), + [anon_sym_try] = ACTIONS(3208), + [anon_sym_delete] = ACTIONS(3208), + [anon_sym_throw] = ACTIONS(3208), + [anon_sym_namespace] = ACTIONS(3208), + [anon_sym_using] = ACTIONS(3208), + [anon_sym_static_assert] = ACTIONS(3208), + [anon_sym_concept] = ACTIONS(3208), + [anon_sym_co_return] = ACTIONS(3208), + [anon_sym_co_yield] = ACTIONS(3208), + [anon_sym_R_DQUOTE] = ACTIONS(3210), + [anon_sym_LR_DQUOTE] = ACTIONS(3210), + [anon_sym_uR_DQUOTE] = ACTIONS(3210), + [anon_sym_UR_DQUOTE] = ACTIONS(3210), + [anon_sym_u8R_DQUOTE] = ACTIONS(3210), + [anon_sym_co_await] = ACTIONS(3208), + [anon_sym_new] = ACTIONS(3208), + [anon_sym_requires] = ACTIONS(3208), + [sym_this] = ACTIONS(3208), }, - [940] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [971] = { + [ts_builtin_sym_end] = ACTIONS(3200), + [sym_identifier] = ACTIONS(3198), + [aux_sym_preproc_include_token1] = ACTIONS(3198), + [aux_sym_preproc_def_token1] = ACTIONS(3198), + [aux_sym_preproc_if_token1] = ACTIONS(3198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3198), + [sym_preproc_directive] = ACTIONS(3198), + [anon_sym_LPAREN2] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym___extension__] = ACTIONS(3198), + [anon_sym_typedef] = ACTIONS(3198), + [anon_sym_extern] = ACTIONS(3198), + [anon_sym___attribute__] = ACTIONS(3198), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3200), + [anon_sym___declspec] = ACTIONS(3198), + [anon_sym___based] = ACTIONS(3198), + [anon_sym___cdecl] = ACTIONS(3198), + [anon_sym___clrcall] = ACTIONS(3198), + [anon_sym___stdcall] = ACTIONS(3198), + [anon_sym___fastcall] = ACTIONS(3198), + [anon_sym___thiscall] = ACTIONS(3198), + [anon_sym___vectorcall] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_signed] = ACTIONS(3198), + [anon_sym_unsigned] = ACTIONS(3198), + [anon_sym_long] = ACTIONS(3198), + [anon_sym_short] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_register] = ACTIONS(3198), + [anon_sym_inline] = ACTIONS(3198), + [anon_sym___inline] = ACTIONS(3198), + [anon_sym___inline__] = ACTIONS(3198), + [anon_sym___forceinline] = ACTIONS(3198), + [anon_sym_thread_local] = ACTIONS(3198), + [anon_sym___thread] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_constexpr] = ACTIONS(3198), + [anon_sym_volatile] = ACTIONS(3198), + [anon_sym_restrict] = ACTIONS(3198), + [anon_sym___restrict__] = ACTIONS(3198), + [anon_sym__Atomic] = ACTIONS(3198), + [anon_sym__Noreturn] = ACTIONS(3198), + [anon_sym_noreturn] = ACTIONS(3198), + [anon_sym_mutable] = ACTIONS(3198), + [anon_sym_constinit] = ACTIONS(3198), + [anon_sym_consteval] = ACTIONS(3198), + [sym_primitive_type] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_goto] = ACTIONS(3198), + [anon_sym_not] = ACTIONS(3198), + [anon_sym_compl] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_sizeof] = ACTIONS(3198), + [anon_sym___alignof__] = ACTIONS(3198), + [anon_sym___alignof] = ACTIONS(3198), + [anon_sym__alignof] = ACTIONS(3198), + [anon_sym_alignof] = ACTIONS(3198), + [anon_sym__Alignof] = ACTIONS(3198), + [anon_sym_offsetof] = ACTIONS(3198), + [anon_sym__Generic] = ACTIONS(3198), + [anon_sym_asm] = ACTIONS(3198), + [anon_sym___asm__] = ACTIONS(3198), + [sym_number_literal] = ACTIONS(3200), + [anon_sym_L_SQUOTE] = ACTIONS(3200), + [anon_sym_u_SQUOTE] = ACTIONS(3200), + [anon_sym_U_SQUOTE] = ACTIONS(3200), + [anon_sym_u8_SQUOTE] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3200), + [anon_sym_L_DQUOTE] = ACTIONS(3200), + [anon_sym_u_DQUOTE] = ACTIONS(3200), + [anon_sym_U_DQUOTE] = ACTIONS(3200), + [anon_sym_u8_DQUOTE] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(3200), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [anon_sym_NULL] = ACTIONS(3198), + [anon_sym_nullptr] = ACTIONS(3198), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3198), + [anon_sym_decltype] = ACTIONS(3198), + [anon_sym_virtual] = ACTIONS(3198), + [anon_sym_alignas] = ACTIONS(3198), + [anon_sym_explicit] = ACTIONS(3198), + [anon_sym_typename] = ACTIONS(3198), + [anon_sym_template] = ACTIONS(3198), + [anon_sym_operator] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_static_assert] = ACTIONS(3198), + [anon_sym_concept] = ACTIONS(3198), + [anon_sym_co_return] = ACTIONS(3198), + [anon_sym_co_yield] = ACTIONS(3198), + [anon_sym_R_DQUOTE] = ACTIONS(3200), + [anon_sym_LR_DQUOTE] = ACTIONS(3200), + [anon_sym_uR_DQUOTE] = ACTIONS(3200), + [anon_sym_UR_DQUOTE] = ACTIONS(3200), + [anon_sym_u8R_DQUOTE] = ACTIONS(3200), + [anon_sym_co_await] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), }, - [941] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [972] = { + [ts_builtin_sym_end] = ACTIONS(3097), + [sym_identifier] = ACTIONS(3095), + [aux_sym_preproc_include_token1] = ACTIONS(3095), + [aux_sym_preproc_def_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), + [sym_preproc_directive] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_AMP_AMP] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(3095), + [anon_sym___attribute__] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), + [anon_sym___declspec] = ACTIONS(3095), + [anon_sym___based] = ACTIONS(3095), + [anon_sym___cdecl] = ACTIONS(3095), + [anon_sym___clrcall] = ACTIONS(3095), + [anon_sym___stdcall] = ACTIONS(3095), + [anon_sym___fastcall] = ACTIONS(3095), + [anon_sym___thiscall] = ACTIONS(3095), + [anon_sym___vectorcall] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3095), + [anon_sym_unsigned] = ACTIONS(3095), + [anon_sym_long] = ACTIONS(3095), + [anon_sym_short] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_register] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym___inline] = ACTIONS(3095), + [anon_sym___inline__] = ACTIONS(3095), + [anon_sym___forceinline] = ACTIONS(3095), + [anon_sym_thread_local] = ACTIONS(3095), + [anon_sym___thread] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_constexpr] = ACTIONS(3095), + [anon_sym_volatile] = ACTIONS(3095), + [anon_sym_restrict] = ACTIONS(3095), + [anon_sym___restrict__] = ACTIONS(3095), + [anon_sym__Atomic] = ACTIONS(3095), + [anon_sym__Noreturn] = ACTIONS(3095), + [anon_sym_noreturn] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [sym_primitive_type] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3095), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_switch] = ACTIONS(3095), + [anon_sym_case] = ACTIONS(3095), + [anon_sym_default] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_break] = ACTIONS(3095), + [anon_sym_continue] = ACTIONS(3095), + [anon_sym_goto] = ACTIONS(3095), + [anon_sym_not] = ACTIONS(3095), + [anon_sym_compl] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3097), + [anon_sym_PLUS_PLUS] = ACTIONS(3097), + [anon_sym_sizeof] = ACTIONS(3095), + [anon_sym___alignof__] = ACTIONS(3095), + [anon_sym___alignof] = ACTIONS(3095), + [anon_sym__alignof] = ACTIONS(3095), + [anon_sym_alignof] = ACTIONS(3095), + [anon_sym__Alignof] = ACTIONS(3095), + [anon_sym_offsetof] = ACTIONS(3095), + [anon_sym__Generic] = ACTIONS(3095), + [anon_sym_asm] = ACTIONS(3095), + [anon_sym___asm__] = ACTIONS(3095), + [sym_number_literal] = ACTIONS(3097), + [anon_sym_L_SQUOTE] = ACTIONS(3097), + [anon_sym_u_SQUOTE] = ACTIONS(3097), + [anon_sym_U_SQUOTE] = ACTIONS(3097), + [anon_sym_u8_SQUOTE] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(3097), + [anon_sym_u_DQUOTE] = ACTIONS(3097), + [anon_sym_U_DQUOTE] = ACTIONS(3097), + [anon_sym_u8_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE] = ACTIONS(3097), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [anon_sym_NULL] = ACTIONS(3095), + [anon_sym_nullptr] = ACTIONS(3095), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_virtual] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym_explicit] = ACTIONS(3095), + [anon_sym_typename] = ACTIONS(3095), + [anon_sym_template] = ACTIONS(3095), + [anon_sym_operator] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_delete] = ACTIONS(3095), + [anon_sym_throw] = ACTIONS(3095), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_using] = ACTIONS(3095), + [anon_sym_static_assert] = ACTIONS(3095), + [anon_sym_concept] = ACTIONS(3095), + [anon_sym_co_return] = ACTIONS(3095), + [anon_sym_co_yield] = ACTIONS(3095), + [anon_sym_R_DQUOTE] = ACTIONS(3097), + [anon_sym_LR_DQUOTE] = ACTIONS(3097), + [anon_sym_uR_DQUOTE] = ACTIONS(3097), + [anon_sym_UR_DQUOTE] = ACTIONS(3097), + [anon_sym_u8R_DQUOTE] = ACTIONS(3097), + [anon_sym_co_await] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_requires] = ACTIONS(3095), + [sym_this] = ACTIONS(3095), }, - [942] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [973] = { + [sym_preproc_def] = STATE(980), + [sym_preproc_function_def] = STATE(980), + [sym_preproc_call] = STATE(980), + [sym_preproc_if_in_field_declaration_list] = STATE(980), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(980), + [sym_type_definition] = STATE(980), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5178), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(980), + [sym_field_declaration] = STATE(980), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(980), + [sym_operator_cast] = STATE(6136), + [sym_inline_method_definition] = STATE(980), + [sym__constructor_specifiers] = STATE(1777), + [sym_operator_cast_definition] = STATE(980), + [sym_operator_cast_declaration] = STATE(980), + [sym_constructor_or_destructor_definition] = STATE(980), + [sym_constructor_or_destructor_declaration] = STATE(980), + [sym_friend_declaration] = STATE(980), + [sym_access_specifier] = STATE(7545), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(980), + [sym_alias_declaration] = STATE(980), + [sym_static_assert_declaration] = STATE(980), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(980), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3501), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3505), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3507), + [anon_sym_typedef] = ACTIONS(3509), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3587), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3515), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3517), + [anon_sym_static_assert] = ACTIONS(3519), }, - [943] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [974] = { + [ts_builtin_sym_end] = ACTIONS(3204), + [sym_identifier] = ACTIONS(3202), + [aux_sym_preproc_include_token1] = ACTIONS(3202), + [aux_sym_preproc_def_token1] = ACTIONS(3202), + [aux_sym_preproc_if_token1] = ACTIONS(3202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3202), + [sym_preproc_directive] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym___extension__] = ACTIONS(3202), + [anon_sym_typedef] = ACTIONS(3202), + [anon_sym_extern] = ACTIONS(3202), + [anon_sym___attribute__] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3204), + [anon_sym___declspec] = ACTIONS(3202), + [anon_sym___based] = ACTIONS(3202), + [anon_sym___cdecl] = ACTIONS(3202), + [anon_sym___clrcall] = ACTIONS(3202), + [anon_sym___stdcall] = ACTIONS(3202), + [anon_sym___fastcall] = ACTIONS(3202), + [anon_sym___thiscall] = ACTIONS(3202), + [anon_sym___vectorcall] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_signed] = ACTIONS(3202), + [anon_sym_unsigned] = ACTIONS(3202), + [anon_sym_long] = ACTIONS(3202), + [anon_sym_short] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_register] = ACTIONS(3202), + [anon_sym_inline] = ACTIONS(3202), + [anon_sym___inline] = ACTIONS(3202), + [anon_sym___inline__] = ACTIONS(3202), + [anon_sym___forceinline] = ACTIONS(3202), + [anon_sym_thread_local] = ACTIONS(3202), + [anon_sym___thread] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_constexpr] = ACTIONS(3202), + [anon_sym_volatile] = ACTIONS(3202), + [anon_sym_restrict] = ACTIONS(3202), + [anon_sym___restrict__] = ACTIONS(3202), + [anon_sym__Atomic] = ACTIONS(3202), + [anon_sym__Noreturn] = ACTIONS(3202), + [anon_sym_noreturn] = ACTIONS(3202), + [anon_sym_mutable] = ACTIONS(3202), + [anon_sym_constinit] = ACTIONS(3202), + [anon_sym_consteval] = ACTIONS(3202), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_union] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_case] = ACTIONS(3202), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_goto] = ACTIONS(3202), + [anon_sym_not] = ACTIONS(3202), + [anon_sym_compl] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3204), + [anon_sym_PLUS_PLUS] = ACTIONS(3204), + [anon_sym_sizeof] = ACTIONS(3202), + [anon_sym___alignof__] = ACTIONS(3202), + [anon_sym___alignof] = ACTIONS(3202), + [anon_sym__alignof] = ACTIONS(3202), + [anon_sym_alignof] = ACTIONS(3202), + [anon_sym__Alignof] = ACTIONS(3202), + [anon_sym_offsetof] = ACTIONS(3202), + [anon_sym__Generic] = ACTIONS(3202), + [anon_sym_asm] = ACTIONS(3202), + [anon_sym___asm__] = ACTIONS(3202), + [sym_number_literal] = ACTIONS(3204), + [anon_sym_L_SQUOTE] = ACTIONS(3204), + [anon_sym_u_SQUOTE] = ACTIONS(3204), + [anon_sym_U_SQUOTE] = ACTIONS(3204), + [anon_sym_u8_SQUOTE] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3204), + [anon_sym_L_DQUOTE] = ACTIONS(3204), + [anon_sym_u_DQUOTE] = ACTIONS(3204), + [anon_sym_U_DQUOTE] = ACTIONS(3204), + [anon_sym_u8_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(3204), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [anon_sym_NULL] = ACTIONS(3202), + [anon_sym_nullptr] = ACTIONS(3202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3202), + [anon_sym_decltype] = ACTIONS(3202), + [anon_sym_virtual] = ACTIONS(3202), + [anon_sym_alignas] = ACTIONS(3202), + [anon_sym_explicit] = ACTIONS(3202), + [anon_sym_typename] = ACTIONS(3202), + [anon_sym_template] = ACTIONS(3202), + [anon_sym_operator] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(3202), + [anon_sym_throw] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_using] = ACTIONS(3202), + [anon_sym_static_assert] = ACTIONS(3202), + [anon_sym_concept] = ACTIONS(3202), + [anon_sym_co_return] = ACTIONS(3202), + [anon_sym_co_yield] = ACTIONS(3202), + [anon_sym_R_DQUOTE] = ACTIONS(3204), + [anon_sym_LR_DQUOTE] = ACTIONS(3204), + [anon_sym_uR_DQUOTE] = ACTIONS(3204), + [anon_sym_UR_DQUOTE] = ACTIONS(3204), + [anon_sym_u8R_DQUOTE] = ACTIONS(3204), + [anon_sym_co_await] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_requires] = ACTIONS(3202), + [sym_this] = ACTIONS(3202), }, - [944] = { - [ts_builtin_sym_end] = ACTIONS(2959), - [sym_identifier] = ACTIONS(2957), - [aux_sym_preproc_include_token1] = ACTIONS(2957), - [aux_sym_preproc_def_token1] = ACTIONS(2957), - [aux_sym_preproc_if_token1] = ACTIONS(2957), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2957), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2957), - [sym_preproc_directive] = ACTIONS(2957), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2957), - [anon_sym_SEMI] = ACTIONS(2959), - [anon_sym___extension__] = ACTIONS(2957), - [anon_sym_typedef] = ACTIONS(2957), - [anon_sym_extern] = ACTIONS(2957), - [anon_sym___attribute__] = ACTIONS(2957), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), - [anon_sym___declspec] = ACTIONS(2957), - [anon_sym___based] = ACTIONS(2957), - [anon_sym___cdecl] = ACTIONS(2957), - [anon_sym___clrcall] = ACTIONS(2957), - [anon_sym___stdcall] = ACTIONS(2957), - [anon_sym___fastcall] = ACTIONS(2957), - [anon_sym___thiscall] = ACTIONS(2957), - [anon_sym___vectorcall] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_signed] = ACTIONS(2957), - [anon_sym_unsigned] = ACTIONS(2957), - [anon_sym_long] = ACTIONS(2957), - [anon_sym_short] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_static] = ACTIONS(2957), - [anon_sym_register] = ACTIONS(2957), - [anon_sym_inline] = ACTIONS(2957), - [anon_sym___inline] = ACTIONS(2957), - [anon_sym___inline__] = ACTIONS(2957), - [anon_sym___forceinline] = ACTIONS(2957), - [anon_sym_thread_local] = ACTIONS(2957), - [anon_sym___thread] = ACTIONS(2957), - [anon_sym_const] = ACTIONS(2957), - [anon_sym_constexpr] = ACTIONS(2957), - [anon_sym_volatile] = ACTIONS(2957), - [anon_sym_restrict] = ACTIONS(2957), - [anon_sym___restrict__] = ACTIONS(2957), - [anon_sym__Atomic] = ACTIONS(2957), - [anon_sym__Noreturn] = ACTIONS(2957), - [anon_sym_noreturn] = ACTIONS(2957), - [anon_sym_mutable] = ACTIONS(2957), - [anon_sym_constinit] = ACTIONS(2957), - [anon_sym_consteval] = ACTIONS(2957), - [sym_primitive_type] = ACTIONS(2957), - [anon_sym_enum] = ACTIONS(2957), - [anon_sym_class] = ACTIONS(2957), - [anon_sym_struct] = ACTIONS(2957), - [anon_sym_union] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2957), - [anon_sym_else] = ACTIONS(2957), - [anon_sym_switch] = ACTIONS(2957), - [anon_sym_case] = ACTIONS(2957), - [anon_sym_default] = ACTIONS(2957), - [anon_sym_while] = ACTIONS(2957), - [anon_sym_do] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2957), - [anon_sym_break] = ACTIONS(2957), - [anon_sym_continue] = ACTIONS(2957), - [anon_sym_goto] = ACTIONS(2957), - [anon_sym_not] = ACTIONS(2957), - [anon_sym_compl] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_sizeof] = ACTIONS(2957), - [anon_sym___alignof__] = ACTIONS(2957), - [anon_sym___alignof] = ACTIONS(2957), - [anon_sym__alignof] = ACTIONS(2957), - [anon_sym_alignof] = ACTIONS(2957), - [anon_sym__Alignof] = ACTIONS(2957), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2957), - [anon_sym_asm] = ACTIONS(2957), - [anon_sym___asm__] = ACTIONS(2957), - [sym_number_literal] = ACTIONS(2959), - [anon_sym_L_SQUOTE] = ACTIONS(2959), - [anon_sym_u_SQUOTE] = ACTIONS(2959), - [anon_sym_U_SQUOTE] = ACTIONS(2959), - [anon_sym_u8_SQUOTE] = ACTIONS(2959), - [anon_sym_SQUOTE] = ACTIONS(2959), - [anon_sym_L_DQUOTE] = ACTIONS(2959), - [anon_sym_u_DQUOTE] = ACTIONS(2959), - [anon_sym_U_DQUOTE] = ACTIONS(2959), - [anon_sym_u8_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [anon_sym_NULL] = ACTIONS(2957), - [anon_sym_nullptr] = ACTIONS(2957), + [975] = { + [ts_builtin_sym_end] = ACTIONS(2999), + [sym_identifier] = ACTIONS(2997), + [aux_sym_preproc_include_token1] = ACTIONS(2997), + [aux_sym_preproc_def_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2997), + [sym_preproc_directive] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(2999), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym___extension__] = ACTIONS(2997), + [anon_sym_typedef] = ACTIONS(2997), + [anon_sym_extern] = ACTIONS(2997), + [anon_sym___attribute__] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2999), + [anon_sym___declspec] = ACTIONS(2997), + [anon_sym___based] = ACTIONS(2997), + [anon_sym___cdecl] = ACTIONS(2997), + [anon_sym___clrcall] = ACTIONS(2997), + [anon_sym___stdcall] = ACTIONS(2997), + [anon_sym___fastcall] = ACTIONS(2997), + [anon_sym___thiscall] = ACTIONS(2997), + [anon_sym___vectorcall] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_signed] = ACTIONS(2997), + [anon_sym_unsigned] = ACTIONS(2997), + [anon_sym_long] = ACTIONS(2997), + [anon_sym_short] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(2997), + [anon_sym_register] = ACTIONS(2997), + [anon_sym_inline] = ACTIONS(2997), + [anon_sym___inline] = ACTIONS(2997), + [anon_sym___inline__] = ACTIONS(2997), + [anon_sym___forceinline] = ACTIONS(2997), + [anon_sym_thread_local] = ACTIONS(2997), + [anon_sym___thread] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_volatile] = ACTIONS(2997), + [anon_sym_restrict] = ACTIONS(2997), + [anon_sym___restrict__] = ACTIONS(2997), + [anon_sym__Atomic] = ACTIONS(2997), + [anon_sym__Noreturn] = ACTIONS(2997), + [anon_sym_noreturn] = ACTIONS(2997), + [anon_sym_mutable] = ACTIONS(2997), + [anon_sym_constinit] = ACTIONS(2997), + [anon_sym_consteval] = ACTIONS(2997), + [sym_primitive_type] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_class] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_switch] = ACTIONS(2997), + [anon_sym_case] = ACTIONS(2997), + [anon_sym_default] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_goto] = ACTIONS(2997), + [anon_sym_not] = ACTIONS(2997), + [anon_sym_compl] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_sizeof] = ACTIONS(2997), + [anon_sym___alignof__] = ACTIONS(2997), + [anon_sym___alignof] = ACTIONS(2997), + [anon_sym__alignof] = ACTIONS(2997), + [anon_sym_alignof] = ACTIONS(2997), + [anon_sym__Alignof] = ACTIONS(2997), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2997), + [anon_sym_asm] = ACTIONS(2997), + [anon_sym___asm__] = ACTIONS(2997), + [sym_number_literal] = ACTIONS(2999), + [anon_sym_L_SQUOTE] = ACTIONS(2999), + [anon_sym_u_SQUOTE] = ACTIONS(2999), + [anon_sym_U_SQUOTE] = ACTIONS(2999), + [anon_sym_u8_SQUOTE] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_L_DQUOTE] = ACTIONS(2999), + [anon_sym_u_DQUOTE] = ACTIONS(2999), + [anon_sym_U_DQUOTE] = ACTIONS(2999), + [anon_sym_u8_DQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE] = ACTIONS(2999), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [anon_sym_NULL] = ACTIONS(2997), + [anon_sym_nullptr] = ACTIONS(2997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2997), + [anon_sym_decltype] = ACTIONS(2997), + [anon_sym_virtual] = ACTIONS(2997), + [anon_sym_alignas] = ACTIONS(2997), + [anon_sym_explicit] = ACTIONS(2997), + [anon_sym_typename] = ACTIONS(2997), + [anon_sym_template] = ACTIONS(2997), + [anon_sym_operator] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_delete] = ACTIONS(2997), + [anon_sym_throw] = ACTIONS(2997), + [anon_sym_namespace] = ACTIONS(2997), + [anon_sym_using] = ACTIONS(2997), + [anon_sym_static_assert] = ACTIONS(2997), + [anon_sym_concept] = ACTIONS(2997), + [anon_sym_co_return] = ACTIONS(2997), + [anon_sym_co_yield] = ACTIONS(2997), + [anon_sym_R_DQUOTE] = ACTIONS(2999), + [anon_sym_LR_DQUOTE] = ACTIONS(2999), + [anon_sym_uR_DQUOTE] = ACTIONS(2999), + [anon_sym_UR_DQUOTE] = ACTIONS(2999), + [anon_sym_u8R_DQUOTE] = ACTIONS(2999), + [anon_sym_co_await] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_requires] = ACTIONS(2997), + [sym_this] = ACTIONS(2997), + }, + [976] = { + [ts_builtin_sym_end] = ACTIONS(3093), + [sym_identifier] = ACTIONS(3091), + [aux_sym_preproc_include_token1] = ACTIONS(3091), + [aux_sym_preproc_def_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), + [sym_preproc_directive] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym___based] = ACTIONS(3091), + [anon_sym___cdecl] = ACTIONS(3091), + [anon_sym___clrcall] = ACTIONS(3091), + [anon_sym___stdcall] = ACTIONS(3091), + [anon_sym___fastcall] = ACTIONS(3091), + [anon_sym___thiscall] = ACTIONS(3091), + [anon_sym___vectorcall] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_switch] = ACTIONS(3091), + [anon_sym_case] = ACTIONS(3091), + [anon_sym_default] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_goto] = ACTIONS(3091), + [anon_sym_not] = ACTIONS(3091), + [anon_sym_compl] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3093), + [anon_sym_sizeof] = ACTIONS(3091), + [anon_sym___alignof__] = ACTIONS(3091), + [anon_sym___alignof] = ACTIONS(3091), + [anon_sym__alignof] = ACTIONS(3091), + [anon_sym_alignof] = ACTIONS(3091), + [anon_sym__Alignof] = ACTIONS(3091), + [anon_sym_offsetof] = ACTIONS(3091), + [anon_sym__Generic] = ACTIONS(3091), + [anon_sym_asm] = ACTIONS(3091), + [anon_sym___asm__] = ACTIONS(3091), + [sym_number_literal] = ACTIONS(3093), + [anon_sym_L_SQUOTE] = ACTIONS(3093), + [anon_sym_u_SQUOTE] = ACTIONS(3093), + [anon_sym_U_SQUOTE] = ACTIONS(3093), + [anon_sym_u8_SQUOTE] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_L_DQUOTE] = ACTIONS(3093), + [anon_sym_u_DQUOTE] = ACTIONS(3093), + [anon_sym_U_DQUOTE] = ACTIONS(3093), + [anon_sym_u8_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [anon_sym_NULL] = ACTIONS(3091), + [anon_sym_nullptr] = ACTIONS(3091), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2957), - [anon_sym_decltype] = ACTIONS(2957), - [anon_sym_virtual] = ACTIONS(2957), - [anon_sym_alignas] = ACTIONS(2957), - [anon_sym_explicit] = ACTIONS(2957), - [anon_sym_typename] = ACTIONS(2957), - [anon_sym_template] = ACTIONS(2957), - [anon_sym_operator] = ACTIONS(2957), - [anon_sym_try] = ACTIONS(2957), - [anon_sym_delete] = ACTIONS(2957), - [anon_sym_throw] = ACTIONS(2957), - [anon_sym_namespace] = ACTIONS(2957), - [anon_sym_using] = ACTIONS(2957), - [anon_sym_static_assert] = ACTIONS(2957), - [anon_sym_concept] = ACTIONS(2957), - [anon_sym_co_return] = ACTIONS(2957), - [anon_sym_co_yield] = ACTIONS(2957), - [anon_sym_R_DQUOTE] = ACTIONS(2959), - [anon_sym_LR_DQUOTE] = ACTIONS(2959), - [anon_sym_uR_DQUOTE] = ACTIONS(2959), - [anon_sym_UR_DQUOTE] = ACTIONS(2959), - [anon_sym_u8R_DQUOTE] = ACTIONS(2959), - [anon_sym_co_await] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2957), - [anon_sym_requires] = ACTIONS(2957), - [sym_this] = ACTIONS(2957), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym_explicit] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_operator] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_delete] = ACTIONS(3091), + [anon_sym_throw] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_static_assert] = ACTIONS(3091), + [anon_sym_concept] = ACTIONS(3091), + [anon_sym_co_return] = ACTIONS(3091), + [anon_sym_co_yield] = ACTIONS(3091), + [anon_sym_R_DQUOTE] = ACTIONS(3093), + [anon_sym_LR_DQUOTE] = ACTIONS(3093), + [anon_sym_uR_DQUOTE] = ACTIONS(3093), + [anon_sym_UR_DQUOTE] = ACTIONS(3093), + [anon_sym_u8R_DQUOTE] = ACTIONS(3093), + [anon_sym_co_await] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_requires] = ACTIONS(3091), + [sym_this] = ACTIONS(3091), }, - [945] = { - [ts_builtin_sym_end] = ACTIONS(2927), - [sym_identifier] = ACTIONS(2925), - [aux_sym_preproc_include_token1] = ACTIONS(2925), - [aux_sym_preproc_def_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token1] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2925), - [sym_preproc_directive] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2927), - [anon_sym___extension__] = ACTIONS(2925), - [anon_sym_typedef] = ACTIONS(2925), - [anon_sym_extern] = ACTIONS(2925), - [anon_sym___attribute__] = ACTIONS(2925), - [anon_sym_COLON_COLON] = ACTIONS(2927), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), - [anon_sym___declspec] = ACTIONS(2925), - [anon_sym___based] = ACTIONS(2925), - [anon_sym___cdecl] = ACTIONS(2925), - [anon_sym___clrcall] = ACTIONS(2925), - [anon_sym___stdcall] = ACTIONS(2925), - [anon_sym___fastcall] = ACTIONS(2925), - [anon_sym___thiscall] = ACTIONS(2925), - [anon_sym___vectorcall] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_signed] = ACTIONS(2925), - [anon_sym_unsigned] = ACTIONS(2925), - [anon_sym_long] = ACTIONS(2925), - [anon_sym_short] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_static] = ACTIONS(2925), - [anon_sym_register] = ACTIONS(2925), - [anon_sym_inline] = ACTIONS(2925), - [anon_sym___inline] = ACTIONS(2925), - [anon_sym___inline__] = ACTIONS(2925), - [anon_sym___forceinline] = ACTIONS(2925), - [anon_sym_thread_local] = ACTIONS(2925), - [anon_sym___thread] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(2925), - [anon_sym_constexpr] = ACTIONS(2925), - [anon_sym_volatile] = ACTIONS(2925), - [anon_sym_restrict] = ACTIONS(2925), - [anon_sym___restrict__] = ACTIONS(2925), - [anon_sym__Atomic] = ACTIONS(2925), - [anon_sym__Noreturn] = ACTIONS(2925), - [anon_sym_noreturn] = ACTIONS(2925), - [anon_sym_mutable] = ACTIONS(2925), - [anon_sym_constinit] = ACTIONS(2925), - [anon_sym_consteval] = ACTIONS(2925), - [sym_primitive_type] = ACTIONS(2925), - [anon_sym_enum] = ACTIONS(2925), - [anon_sym_class] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_union] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_else] = ACTIONS(2925), - [anon_sym_switch] = ACTIONS(2925), - [anon_sym_case] = ACTIONS(2925), - [anon_sym_default] = ACTIONS(2925), - [anon_sym_while] = ACTIONS(2925), - [anon_sym_do] = ACTIONS(2925), - [anon_sym_for] = ACTIONS(2925), - [anon_sym_return] = ACTIONS(2925), - [anon_sym_break] = ACTIONS(2925), - [anon_sym_continue] = ACTIONS(2925), - [anon_sym_goto] = ACTIONS(2925), - [anon_sym_not] = ACTIONS(2925), - [anon_sym_compl] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2927), - [anon_sym_sizeof] = ACTIONS(2925), - [anon_sym___alignof__] = ACTIONS(2925), - [anon_sym___alignof] = ACTIONS(2925), - [anon_sym__alignof] = ACTIONS(2925), - [anon_sym_alignof] = ACTIONS(2925), - [anon_sym__Alignof] = ACTIONS(2925), - [anon_sym_offsetof] = ACTIONS(2925), - [anon_sym__Generic] = ACTIONS(2925), - [anon_sym_asm] = ACTIONS(2925), - [anon_sym___asm__] = ACTIONS(2925), - [sym_number_literal] = ACTIONS(2927), - [anon_sym_L_SQUOTE] = ACTIONS(2927), - [anon_sym_u_SQUOTE] = ACTIONS(2927), - [anon_sym_U_SQUOTE] = ACTIONS(2927), - [anon_sym_u8_SQUOTE] = ACTIONS(2927), - [anon_sym_SQUOTE] = ACTIONS(2927), - [anon_sym_L_DQUOTE] = ACTIONS(2927), - [anon_sym_u_DQUOTE] = ACTIONS(2927), - [anon_sym_U_DQUOTE] = ACTIONS(2927), - [anon_sym_u8_DQUOTE] = ACTIONS(2927), - [anon_sym_DQUOTE] = ACTIONS(2927), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [anon_sym_NULL] = ACTIONS(2925), - [anon_sym_nullptr] = ACTIONS(2925), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2925), - [anon_sym_decltype] = ACTIONS(2925), - [anon_sym_virtual] = ACTIONS(2925), - [anon_sym_alignas] = ACTIONS(2925), - [anon_sym_explicit] = ACTIONS(2925), - [anon_sym_typename] = ACTIONS(2925), - [anon_sym_template] = ACTIONS(2925), - [anon_sym_operator] = ACTIONS(2925), - [anon_sym_try] = ACTIONS(2925), - [anon_sym_delete] = ACTIONS(2925), - [anon_sym_throw] = ACTIONS(2925), - [anon_sym_namespace] = ACTIONS(2925), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_static_assert] = ACTIONS(2925), - [anon_sym_concept] = ACTIONS(2925), - [anon_sym_co_return] = ACTIONS(2925), - [anon_sym_co_yield] = ACTIONS(2925), - [anon_sym_R_DQUOTE] = ACTIONS(2927), - [anon_sym_LR_DQUOTE] = ACTIONS(2927), - [anon_sym_uR_DQUOTE] = ACTIONS(2927), - [anon_sym_UR_DQUOTE] = ACTIONS(2927), - [anon_sym_u8R_DQUOTE] = ACTIONS(2927), - [anon_sym_co_await] = ACTIONS(2925), - [anon_sym_new] = ACTIONS(2925), - [anon_sym_requires] = ACTIONS(2925), - [sym_this] = ACTIONS(2925), + [977] = { + [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___extension__] = ACTIONS(3067), + [anon_sym_typedef] = ACTIONS(3067), + [anon_sym_extern] = ACTIONS(3067), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3067), + [anon_sym_constinit] = ACTIONS(3067), + [anon_sym_consteval] = 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), + [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_virtual] = ACTIONS(3067), + [anon_sym_alignas] = 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_using] = 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), }, - [946] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [978] = { + [ts_builtin_sym_end] = ACTIONS(3089), + [sym_identifier] = ACTIONS(3087), + [aux_sym_preproc_include_token1] = ACTIONS(3087), + [aux_sym_preproc_def_token1] = ACTIONS(3087), + [aux_sym_preproc_if_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), + [sym_preproc_directive] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_BANG] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3089), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym___cdecl] = ACTIONS(3087), + [anon_sym___clrcall] = ACTIONS(3087), + [anon_sym___stdcall] = ACTIONS(3087), + [anon_sym___fastcall] = ACTIONS(3087), + [anon_sym___thiscall] = ACTIONS(3087), + [anon_sym___vectorcall] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3087), + [anon_sym_unsigned] = ACTIONS(3087), + [anon_sym_long] = ACTIONS(3087), + [anon_sym_short] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_register] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym___inline] = ACTIONS(3087), + [anon_sym___inline__] = ACTIONS(3087), + [anon_sym___forceinline] = ACTIONS(3087), + [anon_sym_thread_local] = ACTIONS(3087), + [anon_sym___thread] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_constexpr] = ACTIONS(3087), + [anon_sym_volatile] = ACTIONS(3087), + [anon_sym_restrict] = ACTIONS(3087), + [anon_sym___restrict__] = ACTIONS(3087), + [anon_sym__Atomic] = ACTIONS(3087), + [anon_sym__Noreturn] = ACTIONS(3087), + [anon_sym_noreturn] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [sym_primitive_type] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_switch] = ACTIONS(3087), + [anon_sym_case] = ACTIONS(3087), + [anon_sym_default] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3087), + [anon_sym_do] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_goto] = ACTIONS(3087), + [anon_sym_not] = ACTIONS(3087), + [anon_sym_compl] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_sizeof] = ACTIONS(3087), + [anon_sym___alignof__] = ACTIONS(3087), + [anon_sym___alignof] = ACTIONS(3087), + [anon_sym__alignof] = ACTIONS(3087), + [anon_sym_alignof] = ACTIONS(3087), + [anon_sym__Alignof] = ACTIONS(3087), + [anon_sym_offsetof] = ACTIONS(3087), + [anon_sym__Generic] = ACTIONS(3087), + [anon_sym_asm] = ACTIONS(3087), + [anon_sym___asm__] = ACTIONS(3087), + [sym_number_literal] = ACTIONS(3089), + [anon_sym_L_SQUOTE] = ACTIONS(3089), + [anon_sym_u_SQUOTE] = ACTIONS(3089), + [anon_sym_U_SQUOTE] = ACTIONS(3089), + [anon_sym_u8_SQUOTE] = ACTIONS(3089), + [anon_sym_SQUOTE] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(3089), + [anon_sym_u_DQUOTE] = ACTIONS(3089), + [anon_sym_U_DQUOTE] = ACTIONS(3089), + [anon_sym_u8_DQUOTE] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [anon_sym_NULL] = ACTIONS(3087), + [anon_sym_nullptr] = ACTIONS(3087), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym_explicit] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_try] = ACTIONS(3087), + [anon_sym_delete] = ACTIONS(3087), + [anon_sym_throw] = ACTIONS(3087), + [anon_sym_namespace] = ACTIONS(3087), + [anon_sym_using] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), + [anon_sym_concept] = ACTIONS(3087), + [anon_sym_co_return] = ACTIONS(3087), + [anon_sym_co_yield] = ACTIONS(3087), + [anon_sym_R_DQUOTE] = ACTIONS(3089), + [anon_sym_LR_DQUOTE] = ACTIONS(3089), + [anon_sym_uR_DQUOTE] = ACTIONS(3089), + [anon_sym_UR_DQUOTE] = ACTIONS(3089), + [anon_sym_u8R_DQUOTE] = ACTIONS(3089), + [anon_sym_co_await] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_requires] = ACTIONS(3087), + [sym_this] = ACTIONS(3087), }, - [947] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [979] = { + [sym_preproc_def] = STATE(921), + [sym_preproc_function_def] = STATE(921), + [sym_preproc_call] = STATE(921), + [sym_preproc_if_in_field_declaration_list] = STATE(921), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(921), + [sym_type_definition] = STATE(921), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5178), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(921), + [sym_field_declaration] = STATE(921), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(921), + [sym_operator_cast] = STATE(6136), + [sym_inline_method_definition] = STATE(921), + [sym__constructor_specifiers] = STATE(1777), + [sym_operator_cast_definition] = STATE(921), + [sym_operator_cast_declaration] = STATE(921), + [sym_constructor_or_destructor_definition] = STATE(921), + [sym_constructor_or_destructor_declaration] = STATE(921), + [sym_friend_declaration] = STATE(921), + [sym_access_specifier] = STATE(7545), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(921), + [sym_alias_declaration] = STATE(921), + [sym_static_assert_declaration] = STATE(921), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(921), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3501), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3505), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3507), + [anon_sym_typedef] = ACTIONS(3509), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3589), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3515), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3517), + [anon_sym_static_assert] = ACTIONS(3519), }, - [948] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [980] = { + [sym_preproc_def] = STATE(898), + [sym_preproc_function_def] = STATE(898), + [sym_preproc_call] = STATE(898), + [sym_preproc_if_in_field_declaration_list] = STATE(898), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(898), + [sym_type_definition] = STATE(898), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(5178), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__field_declaration_list_item] = STATE(898), + [sym_field_declaration] = STATE(898), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(898), + [sym_operator_cast] = STATE(6136), + [sym_inline_method_definition] = STATE(898), + [sym__constructor_specifiers] = STATE(1777), + [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_access_specifier] = STATE(7545), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_using_declaration] = STATE(898), + [sym_alias_declaration] = STATE(898), + [sym_static_assert_declaration] = STATE(898), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(4979), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(898), + [aux_sym__declaration_specifiers_repeat1] = STATE(2102), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3501), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3505), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(3507), + [anon_sym_typedef] = ACTIONS(3509), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3591), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3515), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(3517), + [anon_sym_static_assert] = ACTIONS(3519), }, - [949] = { - [sym_identifier] = ACTIONS(2873), - [aux_sym_preproc_include_token1] = ACTIONS(2873), - [aux_sym_preproc_def_token1] = ACTIONS(2873), - [aux_sym_preproc_if_token1] = ACTIONS(2873), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2873), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2873), - [sym_preproc_directive] = ACTIONS(2873), - [anon_sym_LPAREN2] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2875), - [anon_sym_TILDE] = ACTIONS(2875), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_STAR] = ACTIONS(2875), - [anon_sym_AMP_AMP] = ACTIONS(2875), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym___extension__] = ACTIONS(2873), - [anon_sym_typedef] = ACTIONS(2873), - [anon_sym_extern] = ACTIONS(2873), - [anon_sym___attribute__] = ACTIONS(2873), - [anon_sym_COLON_COLON] = ACTIONS(2875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2875), - [anon_sym___declspec] = ACTIONS(2873), - [anon_sym___based] = ACTIONS(2873), - [anon_sym___cdecl] = ACTIONS(2873), - [anon_sym___clrcall] = ACTIONS(2873), - [anon_sym___stdcall] = ACTIONS(2873), - [anon_sym___fastcall] = ACTIONS(2873), - [anon_sym___thiscall] = ACTIONS(2873), - [anon_sym___vectorcall] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2875), - [anon_sym_RBRACE] = ACTIONS(2875), - [anon_sym_signed] = ACTIONS(2873), - [anon_sym_unsigned] = ACTIONS(2873), - [anon_sym_long] = ACTIONS(2873), - [anon_sym_short] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_register] = ACTIONS(2873), - [anon_sym_inline] = ACTIONS(2873), - [anon_sym___inline] = ACTIONS(2873), - [anon_sym___inline__] = ACTIONS(2873), - [anon_sym___forceinline] = ACTIONS(2873), - [anon_sym_thread_local] = ACTIONS(2873), - [anon_sym___thread] = ACTIONS(2873), - [anon_sym_const] = ACTIONS(2873), - [anon_sym_constexpr] = ACTIONS(2873), - [anon_sym_volatile] = ACTIONS(2873), - [anon_sym_restrict] = ACTIONS(2873), - [anon_sym___restrict__] = ACTIONS(2873), - [anon_sym__Atomic] = ACTIONS(2873), - [anon_sym__Noreturn] = ACTIONS(2873), - [anon_sym_noreturn] = ACTIONS(2873), - [anon_sym_mutable] = ACTIONS(2873), - [anon_sym_constinit] = ACTIONS(2873), - [anon_sym_consteval] = ACTIONS(2873), - [sym_primitive_type] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2873), - [anon_sym_union] = ACTIONS(2873), - [anon_sym_if] = ACTIONS(2873), - [anon_sym_else] = ACTIONS(2873), - [anon_sym_switch] = ACTIONS(2873), - [anon_sym_case] = ACTIONS(2873), - [anon_sym_default] = ACTIONS(2873), - [anon_sym_while] = ACTIONS(2873), - [anon_sym_do] = ACTIONS(2873), - [anon_sym_for] = ACTIONS(2873), - [anon_sym_return] = ACTIONS(2873), - [anon_sym_break] = ACTIONS(2873), - [anon_sym_continue] = ACTIONS(2873), - [anon_sym_goto] = ACTIONS(2873), - [anon_sym_not] = ACTIONS(2873), - [anon_sym_compl] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2875), - [anon_sym_PLUS_PLUS] = ACTIONS(2875), - [anon_sym_sizeof] = ACTIONS(2873), - [anon_sym___alignof__] = ACTIONS(2873), - [anon_sym___alignof] = ACTIONS(2873), - [anon_sym__alignof] = ACTIONS(2873), - [anon_sym_alignof] = ACTIONS(2873), - [anon_sym__Alignof] = ACTIONS(2873), - [anon_sym_offsetof] = ACTIONS(2873), - [anon_sym__Generic] = ACTIONS(2873), - [anon_sym_asm] = ACTIONS(2873), - [anon_sym___asm__] = ACTIONS(2873), - [sym_number_literal] = ACTIONS(2875), - [anon_sym_L_SQUOTE] = ACTIONS(2875), - [anon_sym_u_SQUOTE] = ACTIONS(2875), - [anon_sym_U_SQUOTE] = ACTIONS(2875), - [anon_sym_u8_SQUOTE] = ACTIONS(2875), - [anon_sym_SQUOTE] = ACTIONS(2875), - [anon_sym_L_DQUOTE] = ACTIONS(2875), - [anon_sym_u_DQUOTE] = ACTIONS(2875), - [anon_sym_U_DQUOTE] = ACTIONS(2875), - [anon_sym_u8_DQUOTE] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [sym_true] = ACTIONS(2873), - [sym_false] = ACTIONS(2873), - [anon_sym_NULL] = ACTIONS(2873), - [anon_sym_nullptr] = ACTIONS(2873), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2873), - [anon_sym_decltype] = ACTIONS(2873), - [anon_sym_virtual] = ACTIONS(2873), - [anon_sym_alignas] = ACTIONS(2873), - [anon_sym_explicit] = ACTIONS(2873), - [anon_sym_typename] = ACTIONS(2873), - [anon_sym_template] = ACTIONS(2873), - [anon_sym_operator] = ACTIONS(2873), - [anon_sym_try] = ACTIONS(2873), - [anon_sym_delete] = ACTIONS(2873), - [anon_sym_throw] = ACTIONS(2873), - [anon_sym_namespace] = ACTIONS(2873), - [anon_sym_using] = ACTIONS(2873), - [anon_sym_static_assert] = ACTIONS(2873), - [anon_sym_concept] = ACTIONS(2873), - [anon_sym_co_return] = ACTIONS(2873), - [anon_sym_co_yield] = ACTIONS(2873), - [anon_sym_R_DQUOTE] = ACTIONS(2875), - [anon_sym_LR_DQUOTE] = ACTIONS(2875), - [anon_sym_uR_DQUOTE] = ACTIONS(2875), - [anon_sym_UR_DQUOTE] = ACTIONS(2875), - [anon_sym_u8R_DQUOTE] = ACTIONS(2875), - [anon_sym_co_await] = ACTIONS(2873), - [anon_sym_new] = ACTIONS(2873), - [anon_sym_requires] = ACTIONS(2873), - [sym_this] = ACTIONS(2873), + [981] = { + [sym__expression] = STATE(3827), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_initializer_list] = STATE(3866), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2004), + [anon_sym_COMMA] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3597), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_SLASH] = ACTIONS(2012), + [anon_sym_PERCENT] = ACTIONS(2004), + [anon_sym_PIPE_PIPE] = ACTIONS(2004), + [anon_sym_AMP_AMP] = ACTIONS(2004), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_CARET] = ACTIONS(2004), + [anon_sym_AMP] = ACTIONS(2112), + [anon_sym_EQ_EQ] = ACTIONS(2004), + [anon_sym_BANG_EQ] = ACTIONS(2004), + [anon_sym_GT] = ACTIONS(2012), + [anon_sym_GT_EQ] = ACTIONS(2004), + [anon_sym_LT_EQ] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2004), + [anon_sym_GT_GT] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2012), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_QMARK] = ACTIONS(2004), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_LT_EQ_GT] = ACTIONS(2004), + [anon_sym_or] = ACTIONS(2012), + [anon_sym_and] = ACTIONS(2012), + [anon_sym_bitor] = ACTIONS(2012), + [anon_sym_xor] = ACTIONS(2012), + [anon_sym_bitand] = ACTIONS(2012), + [anon_sym_not_eq] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(2012), + [anon_sym_DOT_STAR] = ACTIONS(2004), + [anon_sym_DASH_GT] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [950] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [982] = { + [sym__expression] = STATE(4086), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_initializer_list] = STATE(4335), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2004), + [anon_sym_COMMA] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_SLASH] = ACTIONS(2012), + [anon_sym_PERCENT] = ACTIONS(2004), + [anon_sym_PIPE_PIPE] = ACTIONS(2004), + [anon_sym_AMP_AMP] = ACTIONS(2004), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_CARET] = ACTIONS(2004), + [anon_sym_AMP] = ACTIONS(2148), + [anon_sym_EQ_EQ] = ACTIONS(2004), + [anon_sym_BANG_EQ] = ACTIONS(2004), + [anon_sym_GT] = ACTIONS(2012), + [anon_sym_GT_EQ] = ACTIONS(2012), + [anon_sym_LT_EQ] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2004), + [anon_sym_GT_GT] = ACTIONS(2012), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_QMARK] = ACTIONS(2004), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_LT_EQ_GT] = ACTIONS(2004), + [anon_sym_or] = ACTIONS(2012), + [anon_sym_and] = ACTIONS(2012), + [anon_sym_bitor] = ACTIONS(2012), + [anon_sym_xor] = ACTIONS(2012), + [anon_sym_bitand] = ACTIONS(2012), + [anon_sym_not_eq] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [anon_sym_DOT] = ACTIONS(2012), + [anon_sym_DOT_STAR] = ACTIONS(2004), + [anon_sym_DASH_GT] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_GT2] = ACTIONS(2004), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), + }, + [983] = { + [sym__expression] = STATE(3827), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_initializer_list] = STATE(3866), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2004), + [anon_sym_COMMA] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3631), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(2012), + [anon_sym_PERCENT] = ACTIONS(2004), + [anon_sym_PIPE_PIPE] = ACTIONS(2004), + [anon_sym_AMP_AMP] = ACTIONS(2004), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_CARET] = ACTIONS(2004), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_EQ_EQ] = ACTIONS(2004), + [anon_sym_BANG_EQ] = ACTIONS(2004), + [anon_sym_GT] = ACTIONS(2012), + [anon_sym_GT_EQ] = ACTIONS(2004), + [anon_sym_LT_EQ] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2004), + [anon_sym_GT_GT] = ACTIONS(2004), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_QMARK] = ACTIONS(2004), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_LT_EQ_GT] = ACTIONS(2004), + [anon_sym_or] = ACTIONS(2012), + [anon_sym_and] = ACTIONS(2012), + [anon_sym_bitor] = ACTIONS(2012), + [anon_sym_xor] = ACTIONS(2012), + [anon_sym_bitand] = ACTIONS(2012), + [anon_sym_not_eq] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(2012), + [anon_sym_DOT_STAR] = ACTIONS(2004), + [anon_sym_DASH_GT] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [951] = { - [ts_builtin_sym_end] = ACTIONS(2995), - [sym_identifier] = ACTIONS(2993), - [aux_sym_preproc_include_token1] = ACTIONS(2993), - [aux_sym_preproc_def_token1] = ACTIONS(2993), - [aux_sym_preproc_if_token1] = ACTIONS(2993), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2993), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2993), - [sym_preproc_directive] = ACTIONS(2993), - [anon_sym_LPAREN2] = ACTIONS(2995), - [anon_sym_BANG] = ACTIONS(2995), - [anon_sym_TILDE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_AMP_AMP] = ACTIONS(2995), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_SEMI] = ACTIONS(2995), - [anon_sym___extension__] = ACTIONS(2993), - [anon_sym_typedef] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(2993), - [anon_sym___attribute__] = ACTIONS(2993), - [anon_sym_COLON_COLON] = ACTIONS(2995), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2995), - [anon_sym___declspec] = ACTIONS(2993), - [anon_sym___based] = ACTIONS(2993), - [anon_sym___cdecl] = ACTIONS(2993), - [anon_sym___clrcall] = ACTIONS(2993), - [anon_sym___stdcall] = ACTIONS(2993), - [anon_sym___fastcall] = ACTIONS(2993), - [anon_sym___thiscall] = ACTIONS(2993), - [anon_sym___vectorcall] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_signed] = ACTIONS(2993), - [anon_sym_unsigned] = ACTIONS(2993), - [anon_sym_long] = ACTIONS(2993), - [anon_sym_short] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_static] = ACTIONS(2993), - [anon_sym_register] = ACTIONS(2993), - [anon_sym_inline] = ACTIONS(2993), - [anon_sym___inline] = ACTIONS(2993), - [anon_sym___inline__] = ACTIONS(2993), - [anon_sym___forceinline] = ACTIONS(2993), - [anon_sym_thread_local] = ACTIONS(2993), - [anon_sym___thread] = ACTIONS(2993), - [anon_sym_const] = ACTIONS(2993), - [anon_sym_constexpr] = ACTIONS(2993), - [anon_sym_volatile] = ACTIONS(2993), - [anon_sym_restrict] = ACTIONS(2993), - [anon_sym___restrict__] = ACTIONS(2993), - [anon_sym__Atomic] = ACTIONS(2993), - [anon_sym__Noreturn] = ACTIONS(2993), - [anon_sym_noreturn] = ACTIONS(2993), - [anon_sym_mutable] = ACTIONS(2993), - [anon_sym_constinit] = ACTIONS(2993), - [anon_sym_consteval] = ACTIONS(2993), - [sym_primitive_type] = ACTIONS(2993), - [anon_sym_enum] = ACTIONS(2993), - [anon_sym_class] = ACTIONS(2993), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_union] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_else] = ACTIONS(2993), - [anon_sym_switch] = ACTIONS(2993), - [anon_sym_case] = ACTIONS(2993), - [anon_sym_default] = ACTIONS(2993), - [anon_sym_while] = ACTIONS(2993), - [anon_sym_do] = ACTIONS(2993), - [anon_sym_for] = ACTIONS(2993), - [anon_sym_return] = ACTIONS(2993), - [anon_sym_break] = ACTIONS(2993), - [anon_sym_continue] = ACTIONS(2993), - [anon_sym_goto] = ACTIONS(2993), - [anon_sym_not] = ACTIONS(2993), - [anon_sym_compl] = ACTIONS(2993), - [anon_sym_DASH_DASH] = ACTIONS(2995), - [anon_sym_PLUS_PLUS] = ACTIONS(2995), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2993), - [anon_sym___alignof] = ACTIONS(2993), - [anon_sym__alignof] = ACTIONS(2993), - [anon_sym_alignof] = ACTIONS(2993), - [anon_sym__Alignof] = ACTIONS(2993), - [anon_sym_offsetof] = ACTIONS(2993), - [anon_sym__Generic] = ACTIONS(2993), - [anon_sym_asm] = ACTIONS(2993), - [anon_sym___asm__] = ACTIONS(2993), - [sym_number_literal] = ACTIONS(2995), - [anon_sym_L_SQUOTE] = ACTIONS(2995), - [anon_sym_u_SQUOTE] = ACTIONS(2995), - [anon_sym_U_SQUOTE] = ACTIONS(2995), - [anon_sym_u8_SQUOTE] = ACTIONS(2995), - [anon_sym_SQUOTE] = ACTIONS(2995), - [anon_sym_L_DQUOTE] = ACTIONS(2995), - [anon_sym_u_DQUOTE] = ACTIONS(2995), - [anon_sym_U_DQUOTE] = ACTIONS(2995), - [anon_sym_u8_DQUOTE] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2995), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [anon_sym_NULL] = ACTIONS(2993), - [anon_sym_nullptr] = ACTIONS(2993), + [984] = { + [sym__expression] = STATE(4210), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_initializer_list] = STATE(3866), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_SLASH] = ACTIONS(2012), + [anon_sym_PERCENT] = ACTIONS(2004), + [anon_sym_PIPE_PIPE] = ACTIONS(2004), + [anon_sym_AMP_AMP] = ACTIONS(2004), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_CARET] = ACTIONS(2004), + [anon_sym_AMP] = ACTIONS(2194), + [anon_sym_EQ_EQ] = ACTIONS(2004), + [anon_sym_BANG_EQ] = ACTIONS(2004), + [anon_sym_GT] = ACTIONS(2012), + [anon_sym_GT_EQ] = ACTIONS(2004), + [anon_sym_LT_EQ] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2004), + [anon_sym_GT_GT] = ACTIONS(2004), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_COLON] = ACTIONS(2012), + [anon_sym_QMARK] = ACTIONS(2004), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_LT_EQ_GT] = ACTIONS(2004), + [anon_sym_or] = ACTIONS(2012), + [anon_sym_and] = ACTIONS(2012), + [anon_sym_bitor] = ACTIONS(2012), + [anon_sym_xor] = ACTIONS(2012), + [anon_sym_bitand] = ACTIONS(2012), + [anon_sym_not_eq] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(2012), + [anon_sym_DOT_STAR] = ACTIONS(2004), + [anon_sym_DASH_GT] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2993), - [anon_sym_decltype] = ACTIONS(2993), - [anon_sym_virtual] = ACTIONS(2993), - [anon_sym_alignas] = ACTIONS(2993), - [anon_sym_explicit] = ACTIONS(2993), - [anon_sym_typename] = ACTIONS(2993), - [anon_sym_template] = ACTIONS(2993), - [anon_sym_operator] = ACTIONS(2993), - [anon_sym_try] = ACTIONS(2993), - [anon_sym_delete] = ACTIONS(2993), - [anon_sym_throw] = ACTIONS(2993), - [anon_sym_namespace] = ACTIONS(2993), - [anon_sym_using] = ACTIONS(2993), - [anon_sym_static_assert] = ACTIONS(2993), - [anon_sym_concept] = ACTIONS(2993), - [anon_sym_co_return] = ACTIONS(2993), - [anon_sym_co_yield] = ACTIONS(2993), - [anon_sym_R_DQUOTE] = ACTIONS(2995), - [anon_sym_LR_DQUOTE] = ACTIONS(2995), - [anon_sym_uR_DQUOTE] = ACTIONS(2995), - [anon_sym_UR_DQUOTE] = ACTIONS(2995), - [anon_sym_u8R_DQUOTE] = ACTIONS(2995), - [anon_sym_co_await] = ACTIONS(2993), - [anon_sym_new] = ACTIONS(2993), - [anon_sym_requires] = ACTIONS(2993), - [sym_this] = ACTIONS(2993), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [952] = { - [sym_identifier] = ACTIONS(2869), - [aux_sym_preproc_include_token1] = ACTIONS(2869), - [aux_sym_preproc_def_token1] = ACTIONS(2869), - [aux_sym_preproc_if_token1] = ACTIONS(2869), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2869), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2869), - [sym_preproc_directive] = ACTIONS(2869), - [anon_sym_LPAREN2] = ACTIONS(2871), - [anon_sym_BANG] = ACTIONS(2871), - [anon_sym_TILDE] = ACTIONS(2871), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2871), - [anon_sym_AMP_AMP] = ACTIONS(2871), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym___extension__] = ACTIONS(2869), - [anon_sym_typedef] = ACTIONS(2869), - [anon_sym_extern] = ACTIONS(2869), - [anon_sym___attribute__] = ACTIONS(2869), - [anon_sym_COLON_COLON] = ACTIONS(2871), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2871), - [anon_sym___declspec] = ACTIONS(2869), - [anon_sym___based] = ACTIONS(2869), - [anon_sym___cdecl] = ACTIONS(2869), - [anon_sym___clrcall] = ACTIONS(2869), - [anon_sym___stdcall] = ACTIONS(2869), - [anon_sym___fastcall] = ACTIONS(2869), - [anon_sym___thiscall] = ACTIONS(2869), - [anon_sym___vectorcall] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_RBRACE] = ACTIONS(2871), - [anon_sym_signed] = ACTIONS(2869), - [anon_sym_unsigned] = ACTIONS(2869), - [anon_sym_long] = ACTIONS(2869), - [anon_sym_short] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_static] = ACTIONS(2869), - [anon_sym_register] = ACTIONS(2869), - [anon_sym_inline] = ACTIONS(2869), - [anon_sym___inline] = ACTIONS(2869), - [anon_sym___inline__] = ACTIONS(2869), - [anon_sym___forceinline] = ACTIONS(2869), - [anon_sym_thread_local] = ACTIONS(2869), - [anon_sym___thread] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2869), - [anon_sym_constexpr] = ACTIONS(2869), - [anon_sym_volatile] = ACTIONS(2869), - [anon_sym_restrict] = ACTIONS(2869), - [anon_sym___restrict__] = ACTIONS(2869), - [anon_sym__Atomic] = ACTIONS(2869), - [anon_sym__Noreturn] = ACTIONS(2869), - [anon_sym_noreturn] = ACTIONS(2869), - [anon_sym_mutable] = ACTIONS(2869), - [anon_sym_constinit] = ACTIONS(2869), - [anon_sym_consteval] = ACTIONS(2869), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2869), - [anon_sym_class] = ACTIONS(2869), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_union] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_else] = ACTIONS(2869), - [anon_sym_switch] = ACTIONS(2869), - [anon_sym_case] = ACTIONS(2869), - [anon_sym_default] = ACTIONS(2869), - [anon_sym_while] = ACTIONS(2869), - [anon_sym_do] = ACTIONS(2869), - [anon_sym_for] = ACTIONS(2869), - [anon_sym_return] = ACTIONS(2869), - [anon_sym_break] = ACTIONS(2869), - [anon_sym_continue] = ACTIONS(2869), - [anon_sym_goto] = ACTIONS(2869), - [anon_sym_not] = ACTIONS(2869), - [anon_sym_compl] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2871), - [anon_sym_PLUS_PLUS] = ACTIONS(2871), - [anon_sym_sizeof] = ACTIONS(2869), - [anon_sym___alignof__] = ACTIONS(2869), - [anon_sym___alignof] = ACTIONS(2869), - [anon_sym__alignof] = ACTIONS(2869), - [anon_sym_alignof] = ACTIONS(2869), - [anon_sym__Alignof] = ACTIONS(2869), - [anon_sym_offsetof] = ACTIONS(2869), - [anon_sym__Generic] = ACTIONS(2869), - [anon_sym_asm] = ACTIONS(2869), - [anon_sym___asm__] = ACTIONS(2869), - [sym_number_literal] = ACTIONS(2871), - [anon_sym_L_SQUOTE] = ACTIONS(2871), - [anon_sym_u_SQUOTE] = ACTIONS(2871), - [anon_sym_U_SQUOTE] = ACTIONS(2871), - [anon_sym_u8_SQUOTE] = ACTIONS(2871), - [anon_sym_SQUOTE] = ACTIONS(2871), - [anon_sym_L_DQUOTE] = ACTIONS(2871), - [anon_sym_u_DQUOTE] = ACTIONS(2871), - [anon_sym_U_DQUOTE] = ACTIONS(2871), - [anon_sym_u8_DQUOTE] = ACTIONS(2871), - [anon_sym_DQUOTE] = ACTIONS(2871), - [sym_true] = ACTIONS(2869), - [sym_false] = ACTIONS(2869), - [anon_sym_NULL] = ACTIONS(2869), - [anon_sym_nullptr] = ACTIONS(2869), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2869), - [anon_sym_decltype] = ACTIONS(2869), - [anon_sym_virtual] = ACTIONS(2869), - [anon_sym_alignas] = ACTIONS(2869), - [anon_sym_explicit] = ACTIONS(2869), - [anon_sym_typename] = ACTIONS(2869), - [anon_sym_template] = ACTIONS(2869), - [anon_sym_operator] = ACTIONS(2869), - [anon_sym_try] = ACTIONS(2869), - [anon_sym_delete] = ACTIONS(2869), - [anon_sym_throw] = ACTIONS(2869), - [anon_sym_namespace] = ACTIONS(2869), - [anon_sym_using] = ACTIONS(2869), - [anon_sym_static_assert] = ACTIONS(2869), - [anon_sym_concept] = ACTIONS(2869), - [anon_sym_co_return] = ACTIONS(2869), - [anon_sym_co_yield] = ACTIONS(2869), - [anon_sym_R_DQUOTE] = ACTIONS(2871), - [anon_sym_LR_DQUOTE] = ACTIONS(2871), - [anon_sym_uR_DQUOTE] = ACTIONS(2871), - [anon_sym_UR_DQUOTE] = ACTIONS(2871), - [anon_sym_u8R_DQUOTE] = ACTIONS(2871), - [anon_sym_co_await] = ACTIONS(2869), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2869), - [sym_this] = ACTIONS(2869), + [985] = { + [sym__declaration_modifiers] = STATE(2097), + [sym__declaration_specifiers] = STATE(5736), + [sym_attribute_specifier] = STATE(2097), + [sym_attribute_declaration] = STATE(2097), + [sym_ms_declspec_modifier] = STATE(2097), + [sym_storage_class_specifier] = STATE(2097), + [sym_type_qualifier] = STATE(2097), + [sym__type_specifier] = STATE(3803), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2097), + [sym_alignas_specifier] = STATE(2097), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5983), + [sym_qualified_type_identifier] = STATE(2910), + [aux_sym__declaration_specifiers_repeat1] = STATE(2097), + [aux_sym_sized_type_specifier_repeat1] = STATE(3112), + [sym_identifier] = ACTIONS(3667), + [anon_sym_COMMA] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3671), + [anon_sym_TILDE] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3671), + [anon_sym_STAR] = ACTIONS(3671), + [anon_sym_SLASH] = ACTIONS(3671), + [anon_sym_PERCENT] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3669), + [anon_sym_AMP_AMP] = ACTIONS(3669), + [anon_sym_PIPE] = ACTIONS(3671), + [anon_sym_CARET] = ACTIONS(3671), + [anon_sym_AMP] = ACTIONS(3671), + [anon_sym_EQ_EQ] = ACTIONS(3669), + [anon_sym_BANG_EQ] = ACTIONS(3669), + [anon_sym_GT] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3669), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_LT] = ACTIONS(3671), + [anon_sym_LT_LT] = ACTIONS(3671), + [anon_sym_GT_GT] = ACTIONS(3671), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3673), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(3675), + [anon_sym_unsigned] = ACTIONS(3675), + [anon_sym_long] = ACTIONS(3675), + [anon_sym_short] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3671), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(3677), + [anon_sym_class] = ACTIONS(3679), + [anon_sym_struct] = ACTIONS(3681), + [anon_sym_union] = ACTIONS(3683), + [anon_sym_STAR_EQ] = ACTIONS(3669), + [anon_sym_SLASH_EQ] = ACTIONS(3669), + [anon_sym_PERCENT_EQ] = ACTIONS(3669), + [anon_sym_PLUS_EQ] = ACTIONS(3669), + [anon_sym_DASH_EQ] = ACTIONS(3669), + [anon_sym_LT_LT_EQ] = ACTIONS(3669), + [anon_sym_GT_GT_EQ] = ACTIONS(3669), + [anon_sym_AMP_EQ] = ACTIONS(3669), + [anon_sym_CARET_EQ] = ACTIONS(3669), + [anon_sym_PIPE_EQ] = ACTIONS(3669), + [anon_sym_and_eq] = ACTIONS(3671), + [anon_sym_or_eq] = ACTIONS(3671), + [anon_sym_xor_eq] = ACTIONS(3671), + [anon_sym_not] = ACTIONS(3671), + [anon_sym_compl] = ACTIONS(3671), + [anon_sym_LT_EQ_GT] = ACTIONS(3669), + [anon_sym_or] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3671), + [anon_sym_bitor] = ACTIONS(3671), + [anon_sym_xor] = ACTIONS(3671), + [anon_sym_bitand] = ACTIONS(3671), + [anon_sym_not_eq] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3669), + [anon_sym_PLUS_PLUS] = ACTIONS(3669), + [anon_sym_DASH_GT] = ACTIONS(3671), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(3685), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3687), + [anon_sym_co_await] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3687), + [anon_sym_DASH_GT_STAR] = ACTIONS(3669), + [anon_sym_LPAREN_RPAREN] = ACTIONS(3669), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3669), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3689), }, - [953] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [986] = { + [sym__declaration_modifiers] = STATE(2097), + [sym__declaration_specifiers] = STATE(5736), + [sym_attribute_specifier] = STATE(2097), + [sym_attribute_declaration] = STATE(2097), + [sym_ms_declspec_modifier] = STATE(2097), + [sym_storage_class_specifier] = STATE(2097), + [sym_type_qualifier] = STATE(2097), + [sym__type_specifier] = STATE(3803), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2097), + [sym_alignas_specifier] = STATE(2097), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5983), + [sym_qualified_type_identifier] = STATE(2910), + [aux_sym__declaration_specifiers_repeat1] = STATE(2097), + [aux_sym_sized_type_specifier_repeat1] = STATE(3112), + [sym_identifier] = ACTIONS(3667), + [anon_sym_COMMA] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3693), + [anon_sym_TILDE] = ACTIONS(3691), + [anon_sym_DASH] = ACTIONS(3693), + [anon_sym_PLUS] = ACTIONS(3693), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_SLASH] = ACTIONS(3693), + [anon_sym_PERCENT] = ACTIONS(3693), + [anon_sym_PIPE_PIPE] = ACTIONS(3691), + [anon_sym_AMP_AMP] = ACTIONS(3691), + [anon_sym_PIPE] = ACTIONS(3693), + [anon_sym_CARET] = ACTIONS(3693), + [anon_sym_AMP] = ACTIONS(3693), + [anon_sym_EQ_EQ] = ACTIONS(3691), + [anon_sym_BANG_EQ] = ACTIONS(3691), + [anon_sym_GT] = ACTIONS(3693), + [anon_sym_GT_EQ] = ACTIONS(3691), + [anon_sym_LT_EQ] = ACTIONS(3693), + [anon_sym_LT] = ACTIONS(3693), + [anon_sym_LT_LT] = ACTIONS(3693), + [anon_sym_GT_GT] = ACTIONS(3693), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3673), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(3675), + [anon_sym_unsigned] = ACTIONS(3675), + [anon_sym_long] = ACTIONS(3675), + [anon_sym_short] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3693), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(3677), + [anon_sym_class] = ACTIONS(3679), + [anon_sym_struct] = ACTIONS(3681), + [anon_sym_union] = ACTIONS(3683), + [anon_sym_STAR_EQ] = ACTIONS(3691), + [anon_sym_SLASH_EQ] = ACTIONS(3691), + [anon_sym_PERCENT_EQ] = ACTIONS(3691), + [anon_sym_PLUS_EQ] = ACTIONS(3691), + [anon_sym_DASH_EQ] = ACTIONS(3691), + [anon_sym_LT_LT_EQ] = ACTIONS(3691), + [anon_sym_GT_GT_EQ] = ACTIONS(3691), + [anon_sym_AMP_EQ] = ACTIONS(3691), + [anon_sym_CARET_EQ] = ACTIONS(3691), + [anon_sym_PIPE_EQ] = ACTIONS(3691), + [anon_sym_and_eq] = ACTIONS(3693), + [anon_sym_or_eq] = ACTIONS(3693), + [anon_sym_xor_eq] = ACTIONS(3693), + [anon_sym_not] = ACTIONS(3693), + [anon_sym_compl] = ACTIONS(3693), + [anon_sym_LT_EQ_GT] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3693), + [anon_sym_and] = ACTIONS(3693), + [anon_sym_bitor] = ACTIONS(3693), + [anon_sym_xor] = ACTIONS(3693), + [anon_sym_bitand] = ACTIONS(3693), + [anon_sym_not_eq] = ACTIONS(3693), + [anon_sym_DASH_DASH] = ACTIONS(3691), + [anon_sym_PLUS_PLUS] = ACTIONS(3691), + [anon_sym_DASH_GT] = ACTIONS(3693), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(3685), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3695), + [anon_sym_co_await] = ACTIONS(3693), + [anon_sym_new] = ACTIONS(3695), + [anon_sym_DASH_GT_STAR] = ACTIONS(3691), + [anon_sym_LPAREN_RPAREN] = ACTIONS(3691), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3691), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3697), }, - [954] = { - [sym_identifier] = ACTIONS(2933), - [aux_sym_preproc_include_token1] = ACTIONS(2933), - [aux_sym_preproc_def_token1] = ACTIONS(2933), - [aux_sym_preproc_if_token1] = ACTIONS(2933), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2933), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2933), - [sym_preproc_directive] = ACTIONS(2933), - [anon_sym_LPAREN2] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2933), - [anon_sym_SEMI] = ACTIONS(2935), - [anon_sym___extension__] = ACTIONS(2933), - [anon_sym_typedef] = ACTIONS(2933), - [anon_sym_extern] = ACTIONS(2933), - [anon_sym___attribute__] = ACTIONS(2933), - [anon_sym_COLON_COLON] = ACTIONS(2935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), - [anon_sym___declspec] = ACTIONS(2933), - [anon_sym___based] = ACTIONS(2933), - [anon_sym___cdecl] = ACTIONS(2933), - [anon_sym___clrcall] = ACTIONS(2933), - [anon_sym___stdcall] = ACTIONS(2933), - [anon_sym___fastcall] = ACTIONS(2933), - [anon_sym___thiscall] = ACTIONS(2933), - [anon_sym___vectorcall] = ACTIONS(2933), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_RBRACE] = ACTIONS(2935), - [anon_sym_signed] = ACTIONS(2933), - [anon_sym_unsigned] = ACTIONS(2933), - [anon_sym_long] = ACTIONS(2933), - [anon_sym_short] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_static] = ACTIONS(2933), - [anon_sym_register] = ACTIONS(2933), - [anon_sym_inline] = ACTIONS(2933), - [anon_sym___inline] = ACTIONS(2933), - [anon_sym___inline__] = ACTIONS(2933), - [anon_sym___forceinline] = ACTIONS(2933), - [anon_sym_thread_local] = ACTIONS(2933), - [anon_sym___thread] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2933), - [anon_sym_constexpr] = ACTIONS(2933), - [anon_sym_volatile] = ACTIONS(2933), - [anon_sym_restrict] = ACTIONS(2933), - [anon_sym___restrict__] = ACTIONS(2933), - [anon_sym__Atomic] = ACTIONS(2933), - [anon_sym__Noreturn] = ACTIONS(2933), - [anon_sym_noreturn] = ACTIONS(2933), - [anon_sym_mutable] = ACTIONS(2933), - [anon_sym_constinit] = ACTIONS(2933), - [anon_sym_consteval] = ACTIONS(2933), - [sym_primitive_type] = ACTIONS(2933), - [anon_sym_enum] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2933), - [anon_sym_union] = ACTIONS(2933), - [anon_sym_if] = ACTIONS(2933), - [anon_sym_else] = ACTIONS(2933), - [anon_sym_switch] = ACTIONS(2933), - [anon_sym_case] = ACTIONS(2933), - [anon_sym_default] = ACTIONS(2933), - [anon_sym_while] = ACTIONS(2933), - [anon_sym_do] = ACTIONS(2933), - [anon_sym_for] = ACTIONS(2933), - [anon_sym_return] = ACTIONS(2933), - [anon_sym_break] = ACTIONS(2933), - [anon_sym_continue] = ACTIONS(2933), - [anon_sym_goto] = ACTIONS(2933), - [anon_sym_not] = ACTIONS(2933), - [anon_sym_compl] = ACTIONS(2933), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_sizeof] = ACTIONS(2933), - [anon_sym___alignof__] = ACTIONS(2933), - [anon_sym___alignof] = ACTIONS(2933), - [anon_sym__alignof] = ACTIONS(2933), - [anon_sym_alignof] = ACTIONS(2933), - [anon_sym__Alignof] = ACTIONS(2933), - [anon_sym_offsetof] = ACTIONS(2933), - [anon_sym__Generic] = ACTIONS(2933), - [anon_sym_asm] = ACTIONS(2933), - [anon_sym___asm__] = ACTIONS(2933), - [sym_number_literal] = ACTIONS(2935), - [anon_sym_L_SQUOTE] = ACTIONS(2935), - [anon_sym_u_SQUOTE] = ACTIONS(2935), - [anon_sym_U_SQUOTE] = ACTIONS(2935), - [anon_sym_u8_SQUOTE] = ACTIONS(2935), - [anon_sym_SQUOTE] = ACTIONS(2935), - [anon_sym_L_DQUOTE] = ACTIONS(2935), - [anon_sym_u_DQUOTE] = ACTIONS(2935), - [anon_sym_U_DQUOTE] = ACTIONS(2935), - [anon_sym_u8_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [sym_true] = ACTIONS(2933), - [sym_false] = ACTIONS(2933), - [anon_sym_NULL] = ACTIONS(2933), - [anon_sym_nullptr] = ACTIONS(2933), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2933), - [anon_sym_decltype] = ACTIONS(2933), - [anon_sym_virtual] = ACTIONS(2933), - [anon_sym_alignas] = ACTIONS(2933), - [anon_sym_explicit] = ACTIONS(2933), - [anon_sym_typename] = ACTIONS(2933), - [anon_sym_template] = ACTIONS(2933), - [anon_sym_operator] = ACTIONS(2933), - [anon_sym_try] = ACTIONS(2933), - [anon_sym_delete] = ACTIONS(2933), - [anon_sym_throw] = ACTIONS(2933), - [anon_sym_namespace] = ACTIONS(2933), - [anon_sym_using] = ACTIONS(2933), - [anon_sym_static_assert] = ACTIONS(2933), - [anon_sym_concept] = ACTIONS(2933), - [anon_sym_co_return] = ACTIONS(2933), - [anon_sym_co_yield] = ACTIONS(2933), - [anon_sym_R_DQUOTE] = ACTIONS(2935), - [anon_sym_LR_DQUOTE] = ACTIONS(2935), - [anon_sym_uR_DQUOTE] = ACTIONS(2935), - [anon_sym_UR_DQUOTE] = ACTIONS(2935), - [anon_sym_u8R_DQUOTE] = ACTIONS(2935), - [anon_sym_co_await] = ACTIONS(2933), - [anon_sym_new] = ACTIONS(2933), - [anon_sym_requires] = ACTIONS(2933), - [sym_this] = ACTIONS(2933), + [987] = { + [sym_function_definition] = STATE(892), + [sym_declaration] = STATE(892), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5772), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__empty_declaration] = STATE(892), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1778), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(892), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1778), + [sym_operator_cast_definition] = STATE(892), + [sym_operator_cast_declaration] = STATE(892), + [sym_constructor_or_destructor_definition] = STATE(892), + [sym_constructor_or_destructor_declaration] = STATE(892), + [sym_friend_declaration] = STATE(892), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_alias_declaration] = STATE(892), + [sym_concept_definition] = STATE(892), + [sym_requires_clause] = STATE(1002), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5038), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3703), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3705), + [anon_sym_using] = ACTIONS(3707), + [anon_sym_concept] = ACTIONS(227), + [anon_sym_requires] = ACTIONS(3709), }, - [955] = { - [sym_identifier] = ACTIONS(2929), - [aux_sym_preproc_include_token1] = ACTIONS(2929), - [aux_sym_preproc_def_token1] = ACTIONS(2929), - [aux_sym_preproc_if_token1] = ACTIONS(2929), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2929), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2929), - [sym_preproc_directive] = ACTIONS(2929), - [anon_sym_LPAREN2] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2929), - [anon_sym_PLUS] = ACTIONS(2929), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_SEMI] = ACTIONS(2931), - [anon_sym___extension__] = ACTIONS(2929), - [anon_sym_typedef] = ACTIONS(2929), - [anon_sym_extern] = ACTIONS(2929), - [anon_sym___attribute__] = ACTIONS(2929), - [anon_sym_COLON_COLON] = ACTIONS(2931), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2931), - [anon_sym___declspec] = ACTIONS(2929), - [anon_sym___based] = ACTIONS(2929), - [anon_sym___cdecl] = ACTIONS(2929), - [anon_sym___clrcall] = ACTIONS(2929), - [anon_sym___stdcall] = ACTIONS(2929), - [anon_sym___fastcall] = ACTIONS(2929), - [anon_sym___thiscall] = ACTIONS(2929), - [anon_sym___vectorcall] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_RBRACE] = ACTIONS(2931), - [anon_sym_signed] = ACTIONS(2929), - [anon_sym_unsigned] = ACTIONS(2929), - [anon_sym_long] = ACTIONS(2929), - [anon_sym_short] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_static] = ACTIONS(2929), - [anon_sym_register] = ACTIONS(2929), - [anon_sym_inline] = ACTIONS(2929), - [anon_sym___inline] = ACTIONS(2929), - [anon_sym___inline__] = ACTIONS(2929), - [anon_sym___forceinline] = ACTIONS(2929), - [anon_sym_thread_local] = ACTIONS(2929), - [anon_sym___thread] = ACTIONS(2929), - [anon_sym_const] = ACTIONS(2929), - [anon_sym_constexpr] = ACTIONS(2929), - [anon_sym_volatile] = ACTIONS(2929), - [anon_sym_restrict] = ACTIONS(2929), - [anon_sym___restrict__] = ACTIONS(2929), - [anon_sym__Atomic] = ACTIONS(2929), - [anon_sym__Noreturn] = ACTIONS(2929), - [anon_sym_noreturn] = ACTIONS(2929), - [anon_sym_mutable] = ACTIONS(2929), - [anon_sym_constinit] = ACTIONS(2929), - [anon_sym_consteval] = ACTIONS(2929), - [sym_primitive_type] = ACTIONS(2929), - [anon_sym_enum] = ACTIONS(2929), - [anon_sym_class] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2929), - [anon_sym_union] = ACTIONS(2929), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_else] = ACTIONS(2929), - [anon_sym_switch] = ACTIONS(2929), - [anon_sym_case] = ACTIONS(2929), - [anon_sym_default] = ACTIONS(2929), - [anon_sym_while] = ACTIONS(2929), - [anon_sym_do] = ACTIONS(2929), - [anon_sym_for] = ACTIONS(2929), - [anon_sym_return] = ACTIONS(2929), - [anon_sym_break] = ACTIONS(2929), - [anon_sym_continue] = ACTIONS(2929), - [anon_sym_goto] = ACTIONS(2929), - [anon_sym_not] = ACTIONS(2929), - [anon_sym_compl] = ACTIONS(2929), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_sizeof] = ACTIONS(2929), - [anon_sym___alignof__] = ACTIONS(2929), - [anon_sym___alignof] = ACTIONS(2929), - [anon_sym__alignof] = ACTIONS(2929), - [anon_sym_alignof] = ACTIONS(2929), - [anon_sym__Alignof] = ACTIONS(2929), - [anon_sym_offsetof] = ACTIONS(2929), - [anon_sym__Generic] = ACTIONS(2929), - [anon_sym_asm] = ACTIONS(2929), - [anon_sym___asm__] = ACTIONS(2929), - [sym_number_literal] = ACTIONS(2931), - [anon_sym_L_SQUOTE] = ACTIONS(2931), - [anon_sym_u_SQUOTE] = ACTIONS(2931), - [anon_sym_U_SQUOTE] = ACTIONS(2931), - [anon_sym_u8_SQUOTE] = ACTIONS(2931), - [anon_sym_SQUOTE] = ACTIONS(2931), - [anon_sym_L_DQUOTE] = ACTIONS(2931), - [anon_sym_u_DQUOTE] = ACTIONS(2931), - [anon_sym_U_DQUOTE] = ACTIONS(2931), - [anon_sym_u8_DQUOTE] = ACTIONS(2931), - [anon_sym_DQUOTE] = ACTIONS(2931), - [sym_true] = ACTIONS(2929), - [sym_false] = ACTIONS(2929), - [anon_sym_NULL] = ACTIONS(2929), - [anon_sym_nullptr] = ACTIONS(2929), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2929), - [anon_sym_decltype] = ACTIONS(2929), - [anon_sym_virtual] = ACTIONS(2929), - [anon_sym_alignas] = ACTIONS(2929), - [anon_sym_explicit] = ACTIONS(2929), - [anon_sym_typename] = ACTIONS(2929), - [anon_sym_template] = ACTIONS(2929), - [anon_sym_operator] = ACTIONS(2929), - [anon_sym_try] = ACTIONS(2929), - [anon_sym_delete] = ACTIONS(2929), - [anon_sym_throw] = ACTIONS(2929), - [anon_sym_namespace] = ACTIONS(2929), - [anon_sym_using] = ACTIONS(2929), - [anon_sym_static_assert] = ACTIONS(2929), - [anon_sym_concept] = ACTIONS(2929), - [anon_sym_co_return] = ACTIONS(2929), - [anon_sym_co_yield] = ACTIONS(2929), - [anon_sym_R_DQUOTE] = ACTIONS(2931), - [anon_sym_LR_DQUOTE] = ACTIONS(2931), - [anon_sym_uR_DQUOTE] = ACTIONS(2931), - [anon_sym_UR_DQUOTE] = ACTIONS(2931), - [anon_sym_u8R_DQUOTE] = ACTIONS(2931), - [anon_sym_co_await] = ACTIONS(2929), - [anon_sym_new] = ACTIONS(2929), - [anon_sym_requires] = ACTIONS(2929), - [sym_this] = ACTIONS(2929), + [988] = { + [sym_function_definition] = STATE(895), + [sym_declaration] = STATE(895), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4550), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1928), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5730), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3360), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__empty_declaration] = STATE(895), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1781), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(895), + [sym_operator_cast] = STATE(6117), + [sym__constructor_specifiers] = STATE(1781), + [sym_operator_cast_definition] = STATE(895), + [sym_operator_cast_declaration] = STATE(895), + [sym_constructor_or_destructor_definition] = STATE(895), + [sym_constructor_or_destructor_declaration] = STATE(895), + [sym_friend_declaration] = STATE(895), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_alias_declaration] = STATE(895), + [sym_concept_definition] = STATE(895), + [sym_requires_clause] = STATE(996), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5038), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6117), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1781), + [sym_identifier] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3711), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3713), + [anon_sym_using] = ACTIONS(3715), + [anon_sym_concept] = ACTIONS(856), + [anon_sym_requires] = ACTIONS(3709), }, - [956] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [989] = { + [sym_function_definition] = STATE(2202), + [sym_declaration] = STATE(2202), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4573), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(2002), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3453), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__empty_declaration] = STATE(2202), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(2202), + [sym_operator_cast] = STATE(6136), + [sym__constructor_specifiers] = STATE(1777), + [sym_operator_cast_definition] = STATE(2202), + [sym_operator_cast_declaration] = STATE(2202), + [sym_constructor_or_destructor_definition] = STATE(2202), + [sym_constructor_or_destructor_declaration] = STATE(2202), + [sym_friend_declaration] = STATE(2202), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_alias_declaration] = STATE(2202), + [sym_concept_definition] = STATE(2202), + [sym_requires_clause] = STATE(1000), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5038), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3515), + [anon_sym_using] = ACTIONS(3717), + [anon_sym_concept] = ACTIONS(3719), + [anon_sym_requires] = ACTIONS(3709), }, - [957] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [990] = { + [sym_function_definition] = STATE(2272), + [sym_declaration] = STATE(2272), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4590), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1999), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5758), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3361), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__empty_declaration] = STATE(2272), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1783), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(2272), + [sym_operator_cast] = STATE(6134), + [sym__constructor_specifiers] = STATE(1783), + [sym_operator_cast_definition] = STATE(2272), + [sym_operator_cast_declaration] = STATE(2272), + [sym_constructor_or_destructor_definition] = STATE(2272), + [sym_constructor_or_destructor_declaration] = STATE(2272), + [sym_friend_declaration] = STATE(2272), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_alias_declaration] = STATE(2272), + [sym_concept_definition] = STATE(2272), + [sym_requires_clause] = STATE(998), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5038), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6134), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [sym_identifier] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_using] = ACTIONS(3721), + [anon_sym_concept] = ACTIONS(3723), + [anon_sym_requires] = ACTIONS(3709), }, - [958] = { - [sym_identifier] = ACTIONS(2945), - [aux_sym_preproc_include_token1] = ACTIONS(2945), - [aux_sym_preproc_def_token1] = ACTIONS(2945), - [aux_sym_preproc_if_token1] = ACTIONS(2945), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2945), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2945), - [sym_preproc_directive] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2945), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2945), - [anon_sym_SEMI] = ACTIONS(2947), - [anon_sym___extension__] = ACTIONS(2945), - [anon_sym_typedef] = ACTIONS(2945), - [anon_sym_extern] = ACTIONS(2945), - [anon_sym___attribute__] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2947), - [anon_sym___declspec] = ACTIONS(2945), - [anon_sym___based] = ACTIONS(2945), - [anon_sym___cdecl] = ACTIONS(2945), - [anon_sym___clrcall] = ACTIONS(2945), - [anon_sym___stdcall] = ACTIONS(2945), - [anon_sym___fastcall] = ACTIONS(2945), - [anon_sym___thiscall] = ACTIONS(2945), - [anon_sym___vectorcall] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_RBRACE] = ACTIONS(2947), - [anon_sym_signed] = ACTIONS(2945), - [anon_sym_unsigned] = ACTIONS(2945), - [anon_sym_long] = ACTIONS(2945), - [anon_sym_short] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_static] = ACTIONS(2945), - [anon_sym_register] = ACTIONS(2945), - [anon_sym_inline] = ACTIONS(2945), - [anon_sym___inline] = ACTIONS(2945), - [anon_sym___inline__] = ACTIONS(2945), - [anon_sym___forceinline] = ACTIONS(2945), - [anon_sym_thread_local] = ACTIONS(2945), - [anon_sym___thread] = ACTIONS(2945), - [anon_sym_const] = ACTIONS(2945), - [anon_sym_constexpr] = ACTIONS(2945), - [anon_sym_volatile] = ACTIONS(2945), - [anon_sym_restrict] = ACTIONS(2945), - [anon_sym___restrict__] = ACTIONS(2945), - [anon_sym__Atomic] = ACTIONS(2945), - [anon_sym__Noreturn] = ACTIONS(2945), - [anon_sym_noreturn] = ACTIONS(2945), - [anon_sym_mutable] = ACTIONS(2945), - [anon_sym_constinit] = ACTIONS(2945), - [anon_sym_consteval] = ACTIONS(2945), - [sym_primitive_type] = ACTIONS(2945), - [anon_sym_enum] = ACTIONS(2945), - [anon_sym_class] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2945), - [anon_sym_union] = ACTIONS(2945), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(2945), - [anon_sym_switch] = ACTIONS(2945), - [anon_sym_case] = ACTIONS(2945), - [anon_sym_default] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_break] = ACTIONS(2945), - [anon_sym_continue] = ACTIONS(2945), - [anon_sym_goto] = ACTIONS(2945), - [anon_sym_not] = ACTIONS(2945), - [anon_sym_compl] = ACTIONS(2945), - [anon_sym_DASH_DASH] = ACTIONS(2947), - [anon_sym_PLUS_PLUS] = ACTIONS(2947), - [anon_sym_sizeof] = ACTIONS(2945), - [anon_sym___alignof__] = ACTIONS(2945), - [anon_sym___alignof] = ACTIONS(2945), - [anon_sym__alignof] = ACTIONS(2945), - [anon_sym_alignof] = ACTIONS(2945), - [anon_sym__Alignof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2945), - [anon_sym__Generic] = ACTIONS(2945), - [anon_sym_asm] = ACTIONS(2945), - [anon_sym___asm__] = ACTIONS(2945), - [sym_number_literal] = ACTIONS(2947), - [anon_sym_L_SQUOTE] = ACTIONS(2947), - [anon_sym_u_SQUOTE] = ACTIONS(2947), - [anon_sym_U_SQUOTE] = ACTIONS(2947), - [anon_sym_u8_SQUOTE] = ACTIONS(2947), - [anon_sym_SQUOTE] = ACTIONS(2947), - [anon_sym_L_DQUOTE] = ACTIONS(2947), - [anon_sym_u_DQUOTE] = ACTIONS(2947), - [anon_sym_U_DQUOTE] = ACTIONS(2947), - [anon_sym_u8_DQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(2947), - [sym_true] = ACTIONS(2945), - [sym_false] = ACTIONS(2945), - [anon_sym_NULL] = ACTIONS(2945), - [anon_sym_nullptr] = ACTIONS(2945), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2945), - [anon_sym_decltype] = ACTIONS(2945), - [anon_sym_virtual] = ACTIONS(2945), - [anon_sym_alignas] = ACTIONS(2945), - [anon_sym_explicit] = ACTIONS(2945), - [anon_sym_typename] = ACTIONS(2945), - [anon_sym_template] = ACTIONS(2945), - [anon_sym_operator] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_delete] = ACTIONS(2945), - [anon_sym_throw] = ACTIONS(2945), - [anon_sym_namespace] = ACTIONS(2945), - [anon_sym_using] = ACTIONS(2945), - [anon_sym_static_assert] = ACTIONS(2945), - [anon_sym_concept] = ACTIONS(2945), - [anon_sym_co_return] = ACTIONS(2945), - [anon_sym_co_yield] = ACTIONS(2945), - [anon_sym_R_DQUOTE] = ACTIONS(2947), - [anon_sym_LR_DQUOTE] = ACTIONS(2947), - [anon_sym_uR_DQUOTE] = ACTIONS(2947), - [anon_sym_UR_DQUOTE] = ACTIONS(2947), - [anon_sym_u8R_DQUOTE] = ACTIONS(2947), - [anon_sym_co_await] = ACTIONS(2945), - [anon_sym_new] = ACTIONS(2945), - [anon_sym_requires] = ACTIONS(2945), - [sym_this] = ACTIONS(2945), + [991] = { + [sym_function_definition] = STATE(1824), + [sym_declaration] = STATE(1824), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4578), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1927), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5750), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3387), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__empty_declaration] = STATE(1824), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1790), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(1824), + [sym_operator_cast] = STATE(6091), + [sym__constructor_specifiers] = STATE(1790), + [sym_operator_cast_definition] = STATE(1824), + [sym_operator_cast_declaration] = STATE(1824), + [sym_constructor_or_destructor_definition] = STATE(1824), + [sym_constructor_or_destructor_declaration] = STATE(1824), + [sym_friend_declaration] = STATE(1824), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_alias_declaration] = STATE(1824), + [sym_concept_definition] = STATE(1824), + [sym_requires_clause] = STATE(999), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5038), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6091), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_identifier] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(2719), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(3725), + [anon_sym_concept] = ACTIONS(3727), + [anon_sym_requires] = ACTIONS(3709), }, - [959] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [992] = { + [sym_function_definition] = STATE(351), + [sym_declaration] = STATE(351), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4552), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1937), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5705), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3480), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__empty_declaration] = STATE(351), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1788), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(351), + [sym_operator_cast] = STATE(6095), + [sym__constructor_specifiers] = STATE(1788), + [sym_operator_cast_definition] = STATE(351), + [sym_operator_cast_declaration] = STATE(351), + [sym_constructor_or_destructor_definition] = STATE(351), + [sym_constructor_or_destructor_declaration] = STATE(351), + [sym_friend_declaration] = STATE(351), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_alias_declaration] = STATE(351), + [sym_concept_definition] = STATE(351), + [sym_requires_clause] = STATE(1003), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5038), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6095), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3729), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3731), + [anon_sym_using] = ACTIONS(3733), + [anon_sym_concept] = ACTIONS(301), + [anon_sym_requires] = ACTIONS(3709), }, - [960] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [993] = { + [sym_function_definition] = STATE(547), + [sym_declaration] = STATE(547), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4564), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(2008), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5664), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3465), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__empty_declaration] = STATE(547), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1793), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(547), + [sym_operator_cast] = STATE(6121), + [sym__constructor_specifiers] = STATE(1793), + [sym_operator_cast_definition] = STATE(547), + [sym_operator_cast_declaration] = STATE(547), + [sym_constructor_or_destructor_definition] = STATE(547), + [sym_constructor_or_destructor_declaration] = STATE(547), + [sym_friend_declaration] = STATE(547), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_alias_declaration] = STATE(547), + [sym_concept_definition] = STATE(547), + [sym_requires_clause] = STATE(1001), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5038), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6121), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1793), + [sym_identifier] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3735), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3737), + [anon_sym_using] = ACTIONS(3739), + [anon_sym_concept] = ACTIONS(409), + [anon_sym_requires] = ACTIONS(3709), }, - [961] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [994] = { + [sym_function_definition] = STATE(2108), + [sym_declaration] = STATE(2108), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4598), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1966), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5775), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3442), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__empty_declaration] = STATE(2108), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1795), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(2108), + [sym_operator_cast] = STATE(6107), + [sym__constructor_specifiers] = STATE(1795), + [sym_operator_cast_definition] = STATE(2108), + [sym_operator_cast_declaration] = STATE(2108), + [sym_constructor_or_destructor_definition] = STATE(2108), + [sym_constructor_or_destructor_declaration] = STATE(2108), + [sym_friend_declaration] = STATE(2108), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_alias_declaration] = STATE(2108), + [sym_concept_definition] = STATE(2108), + [sym_requires_clause] = STATE(997), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5038), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6107), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1795), + [sym_identifier] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3245), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3247), + [anon_sym_using] = ACTIONS(3741), + [anon_sym_concept] = ACTIONS(3743), + [anon_sym_requires] = ACTIONS(3709), }, - [962] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [995] = { + [sym_function_definition] = STATE(919), + [sym_declaration] = STATE(919), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4561), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5710), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3475), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__empty_declaration] = STATE(919), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1789), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(919), + [sym_operator_cast] = STATE(6099), + [sym__constructor_specifiers] = STATE(1789), + [sym_operator_cast_definition] = STATE(919), + [sym_operator_cast_declaration] = STATE(919), + [sym_constructor_or_destructor_definition] = STATE(919), + [sym_constructor_or_destructor_declaration] = STATE(919), + [sym_friend_declaration] = STATE(919), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_alias_declaration] = STATE(919), + [sym_concept_definition] = STATE(919), + [sym_requires_clause] = STATE(1004), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5038), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6099), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1789), + [sym_identifier] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3745), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3747), + [anon_sym_using] = ACTIONS(3749), + [anon_sym_concept] = ACTIONS(145), + [anon_sym_requires] = ACTIONS(3709), }, - [963] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [996] = { + [sym_function_definition] = STATE(873), + [sym_declaration] = STATE(873), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4550), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1928), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5730), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3360), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__empty_declaration] = STATE(873), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1781), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(873), + [sym_operator_cast] = STATE(6117), + [sym__constructor_specifiers] = STATE(1781), + [sym_operator_cast_definition] = STATE(873), + [sym_operator_cast_declaration] = STATE(873), + [sym_constructor_or_destructor_definition] = STATE(873), + [sym_constructor_or_destructor_declaration] = STATE(873), + [sym_friend_declaration] = STATE(873), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_alias_declaration] = STATE(873), + [sym_concept_definition] = STATE(873), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5038), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6117), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1781), + [sym_identifier] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3711), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3713), + [anon_sym_using] = ACTIONS(3715), + [anon_sym_concept] = ACTIONS(856), }, - [964] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [997] = { + [sym_function_definition] = STATE(2058), + [sym_declaration] = STATE(2058), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4598), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1966), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5775), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3442), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__empty_declaration] = STATE(2058), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1795), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(2058), + [sym_operator_cast] = STATE(6107), + [sym__constructor_specifiers] = STATE(1795), + [sym_operator_cast_definition] = STATE(2058), + [sym_operator_cast_declaration] = STATE(2058), + [sym_constructor_or_destructor_definition] = STATE(2058), + [sym_constructor_or_destructor_declaration] = STATE(2058), + [sym_friend_declaration] = STATE(2058), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_alias_declaration] = STATE(2058), + [sym_concept_definition] = STATE(2058), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5038), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6107), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1795), + [sym_identifier] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3245), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3247), + [anon_sym_using] = ACTIONS(3741), + [anon_sym_concept] = ACTIONS(3743), }, - [965] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [998] = { + [sym_function_definition] = STATE(2136), + [sym_declaration] = STATE(2136), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4590), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1999), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5758), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3361), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__empty_declaration] = STATE(2136), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1783), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(2136), + [sym_operator_cast] = STATE(6134), + [sym__constructor_specifiers] = STATE(1783), + [sym_operator_cast_definition] = STATE(2136), + [sym_operator_cast_declaration] = STATE(2136), + [sym_constructor_or_destructor_definition] = STATE(2136), + [sym_constructor_or_destructor_declaration] = STATE(2136), + [sym_friend_declaration] = STATE(2136), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_alias_declaration] = STATE(2136), + [sym_concept_definition] = STATE(2136), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5038), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6134), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [sym_identifier] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_using] = ACTIONS(3721), + [anon_sym_concept] = ACTIONS(3723), }, - [966] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [999] = { + [sym_function_definition] = STATE(1848), + [sym_declaration] = STATE(1848), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4578), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1927), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5750), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3387), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__empty_declaration] = STATE(1848), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1790), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(1848), + [sym_operator_cast] = STATE(6091), + [sym__constructor_specifiers] = STATE(1790), + [sym_operator_cast_definition] = STATE(1848), + [sym_operator_cast_declaration] = STATE(1848), + [sym_constructor_or_destructor_definition] = STATE(1848), + [sym_constructor_or_destructor_declaration] = STATE(1848), + [sym_friend_declaration] = STATE(1848), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_alias_declaration] = STATE(1848), + [sym_concept_definition] = STATE(1848), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5038), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6091), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_identifier] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(2719), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(3725), + [anon_sym_concept] = ACTIONS(3727), }, - [967] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1000] = { + [sym_function_definition] = STATE(2125), + [sym_declaration] = STATE(2125), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4573), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(2002), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5685), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3453), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__empty_declaration] = STATE(2125), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1777), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(2125), + [sym_operator_cast] = STATE(6136), + [sym__constructor_specifiers] = STATE(1777), + [sym_operator_cast_definition] = STATE(2125), + [sym_operator_cast_declaration] = STATE(2125), + [sym_constructor_or_destructor_definition] = STATE(2125), + [sym_constructor_or_destructor_declaration] = STATE(2125), + [sym_friend_declaration] = STATE(2125), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_alias_declaration] = STATE(2125), + [sym_concept_definition] = STATE(2125), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5038), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6136), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3515), + [anon_sym_using] = ACTIONS(3717), + [anon_sym_concept] = ACTIONS(3719), }, - [968] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1001] = { + [sym_function_definition] = STATE(519), + [sym_declaration] = STATE(519), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4564), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(2008), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5664), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3465), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__empty_declaration] = STATE(519), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1793), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(519), + [sym_operator_cast] = STATE(6121), + [sym__constructor_specifiers] = STATE(1793), + [sym_operator_cast_definition] = STATE(519), + [sym_operator_cast_declaration] = STATE(519), + [sym_constructor_or_destructor_definition] = STATE(519), + [sym_constructor_or_destructor_declaration] = STATE(519), + [sym_friend_declaration] = STATE(519), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_alias_declaration] = STATE(519), + [sym_concept_definition] = STATE(519), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5038), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6121), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1793), + [sym_identifier] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3735), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3737), + [anon_sym_using] = ACTIONS(3739), + [anon_sym_concept] = ACTIONS(409), }, - [969] = { - [ts_builtin_sym_end] = ACTIONS(2923), - [sym_identifier] = ACTIONS(2921), - [aux_sym_preproc_include_token1] = ACTIONS(2921), - [aux_sym_preproc_def_token1] = ACTIONS(2921), - [aux_sym_preproc_if_token1] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2921), - [sym_preproc_directive] = ACTIONS(2921), - [anon_sym_LPAREN2] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_SEMI] = ACTIONS(2923), - [anon_sym___extension__] = ACTIONS(2921), - [anon_sym_typedef] = ACTIONS(2921), - [anon_sym_extern] = ACTIONS(2921), - [anon_sym___attribute__] = ACTIONS(2921), - [anon_sym_COLON_COLON] = ACTIONS(2923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2923), - [anon_sym___declspec] = ACTIONS(2921), - [anon_sym___based] = ACTIONS(2921), - [anon_sym___cdecl] = ACTIONS(2921), - [anon_sym___clrcall] = ACTIONS(2921), - [anon_sym___stdcall] = ACTIONS(2921), - [anon_sym___fastcall] = ACTIONS(2921), - [anon_sym___thiscall] = ACTIONS(2921), - [anon_sym___vectorcall] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_signed] = ACTIONS(2921), - [anon_sym_unsigned] = ACTIONS(2921), - [anon_sym_long] = ACTIONS(2921), - [anon_sym_short] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(2921), - [anon_sym_register] = ACTIONS(2921), - [anon_sym_inline] = ACTIONS(2921), - [anon_sym___inline] = ACTIONS(2921), - [anon_sym___inline__] = ACTIONS(2921), - [anon_sym___forceinline] = ACTIONS(2921), - [anon_sym_thread_local] = ACTIONS(2921), - [anon_sym___thread] = ACTIONS(2921), - [anon_sym_const] = ACTIONS(2921), - [anon_sym_constexpr] = ACTIONS(2921), - [anon_sym_volatile] = ACTIONS(2921), - [anon_sym_restrict] = ACTIONS(2921), - [anon_sym___restrict__] = ACTIONS(2921), - [anon_sym__Atomic] = ACTIONS(2921), - [anon_sym__Noreturn] = ACTIONS(2921), - [anon_sym_noreturn] = ACTIONS(2921), - [anon_sym_mutable] = ACTIONS(2921), - [anon_sym_constinit] = ACTIONS(2921), - [anon_sym_consteval] = ACTIONS(2921), - [sym_primitive_type] = ACTIONS(2921), - [anon_sym_enum] = ACTIONS(2921), - [anon_sym_class] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_union] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_else] = ACTIONS(2921), - [anon_sym_switch] = ACTIONS(2921), - [anon_sym_case] = ACTIONS(2921), - [anon_sym_default] = ACTIONS(2921), - [anon_sym_while] = ACTIONS(2921), - [anon_sym_do] = ACTIONS(2921), - [anon_sym_for] = ACTIONS(2921), - [anon_sym_return] = ACTIONS(2921), - [anon_sym_break] = ACTIONS(2921), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2921), - [anon_sym_not] = ACTIONS(2921), - [anon_sym_compl] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2923), - [anon_sym_sizeof] = ACTIONS(2921), - [anon_sym___alignof__] = ACTIONS(2921), - [anon_sym___alignof] = ACTIONS(2921), - [anon_sym__alignof] = ACTIONS(2921), - [anon_sym_alignof] = ACTIONS(2921), - [anon_sym__Alignof] = ACTIONS(2921), - [anon_sym_offsetof] = ACTIONS(2921), - [anon_sym__Generic] = ACTIONS(2921), - [anon_sym_asm] = ACTIONS(2921), - [anon_sym___asm__] = ACTIONS(2921), - [sym_number_literal] = ACTIONS(2923), - [anon_sym_L_SQUOTE] = ACTIONS(2923), - [anon_sym_u_SQUOTE] = ACTIONS(2923), - [anon_sym_U_SQUOTE] = ACTIONS(2923), - [anon_sym_u8_SQUOTE] = ACTIONS(2923), - [anon_sym_SQUOTE] = ACTIONS(2923), - [anon_sym_L_DQUOTE] = ACTIONS(2923), - [anon_sym_u_DQUOTE] = ACTIONS(2923), - [anon_sym_U_DQUOTE] = ACTIONS(2923), - [anon_sym_u8_DQUOTE] = ACTIONS(2923), - [anon_sym_DQUOTE] = ACTIONS(2923), - [sym_true] = ACTIONS(2921), - [sym_false] = ACTIONS(2921), - [anon_sym_NULL] = ACTIONS(2921), - [anon_sym_nullptr] = ACTIONS(2921), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2921), - [anon_sym_decltype] = ACTIONS(2921), - [anon_sym_virtual] = ACTIONS(2921), - [anon_sym_alignas] = ACTIONS(2921), - [anon_sym_explicit] = ACTIONS(2921), - [anon_sym_typename] = ACTIONS(2921), - [anon_sym_template] = ACTIONS(2921), - [anon_sym_operator] = ACTIONS(2921), - [anon_sym_try] = ACTIONS(2921), - [anon_sym_delete] = ACTIONS(2921), - [anon_sym_throw] = ACTIONS(2921), - [anon_sym_namespace] = ACTIONS(2921), - [anon_sym_using] = ACTIONS(2921), - [anon_sym_static_assert] = ACTIONS(2921), - [anon_sym_concept] = ACTIONS(2921), - [anon_sym_co_return] = ACTIONS(2921), - [anon_sym_co_yield] = ACTIONS(2921), - [anon_sym_R_DQUOTE] = ACTIONS(2923), - [anon_sym_LR_DQUOTE] = ACTIONS(2923), - [anon_sym_uR_DQUOTE] = ACTIONS(2923), - [anon_sym_UR_DQUOTE] = ACTIONS(2923), - [anon_sym_u8R_DQUOTE] = ACTIONS(2923), - [anon_sym_co_await] = ACTIONS(2921), - [anon_sym_new] = ACTIONS(2921), - [anon_sym_requires] = ACTIONS(2921), - [sym_this] = ACTIONS(2921), + [1002] = { + [sym_function_definition] = STATE(838), + [sym_declaration] = STATE(838), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4574), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1972), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5772), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3451), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__empty_declaration] = STATE(838), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1778), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(838), + [sym_operator_cast] = STATE(6120), + [sym__constructor_specifiers] = STATE(1778), + [sym_operator_cast_definition] = STATE(838), + [sym_operator_cast_declaration] = STATE(838), + [sym_constructor_or_destructor_definition] = STATE(838), + [sym_constructor_or_destructor_declaration] = STATE(838), + [sym_friend_declaration] = STATE(838), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_alias_declaration] = STATE(838), + [sym_concept_definition] = STATE(838), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5038), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6120), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3703), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3705), + [anon_sym_using] = ACTIONS(3707), + [anon_sym_concept] = ACTIONS(227), }, - [970] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1003] = { + [sym_function_definition] = STATE(372), + [sym_declaration] = STATE(372), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4552), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1937), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5705), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3480), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__empty_declaration] = STATE(372), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1788), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(372), + [sym_operator_cast] = STATE(6095), + [sym__constructor_specifiers] = STATE(1788), + [sym_operator_cast_definition] = STATE(372), + [sym_operator_cast_declaration] = STATE(372), + [sym_constructor_or_destructor_definition] = STATE(372), + [sym_constructor_or_destructor_declaration] = STATE(372), + [sym_friend_declaration] = STATE(372), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_alias_declaration] = STATE(372), + [sym_concept_definition] = STATE(372), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5038), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6095), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1788), + [sym_identifier] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3729), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3731), + [anon_sym_using] = ACTIONS(3733), + [anon_sym_concept] = ACTIONS(301), }, - [971] = { - [ts_builtin_sym_end] = ACTIONS(2840), - [sym_identifier] = ACTIONS(2838), - [aux_sym_preproc_include_token1] = ACTIONS(2838), - [aux_sym_preproc_def_token1] = ACTIONS(2838), - [aux_sym_preproc_if_token1] = ACTIONS(2838), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2838), - [sym_preproc_directive] = ACTIONS(2838), - [anon_sym_LPAREN2] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym___extension__] = ACTIONS(2838), - [anon_sym_typedef] = ACTIONS(2838), - [anon_sym_extern] = ACTIONS(2838), - [anon_sym___attribute__] = ACTIONS(2838), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2840), - [anon_sym___declspec] = ACTIONS(2838), - [anon_sym___based] = ACTIONS(2838), - [anon_sym___cdecl] = ACTIONS(2838), - [anon_sym___clrcall] = ACTIONS(2838), - [anon_sym___stdcall] = ACTIONS(2838), - [anon_sym___fastcall] = ACTIONS(2838), - [anon_sym___thiscall] = ACTIONS(2838), - [anon_sym___vectorcall] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_signed] = ACTIONS(2838), - [anon_sym_unsigned] = ACTIONS(2838), - [anon_sym_long] = ACTIONS(2838), - [anon_sym_short] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_static] = ACTIONS(2838), - [anon_sym_register] = ACTIONS(2838), - [anon_sym_inline] = ACTIONS(2838), - [anon_sym___inline] = ACTIONS(2838), - [anon_sym___inline__] = ACTIONS(2838), - [anon_sym___forceinline] = ACTIONS(2838), - [anon_sym_thread_local] = ACTIONS(2838), - [anon_sym___thread] = ACTIONS(2838), - [anon_sym_const] = ACTIONS(2838), - [anon_sym_constexpr] = ACTIONS(2838), - [anon_sym_volatile] = ACTIONS(2838), - [anon_sym_restrict] = ACTIONS(2838), - [anon_sym___restrict__] = ACTIONS(2838), - [anon_sym__Atomic] = ACTIONS(2838), - [anon_sym__Noreturn] = ACTIONS(2838), - [anon_sym_noreturn] = ACTIONS(2838), - [anon_sym_mutable] = ACTIONS(2838), - [anon_sym_constinit] = ACTIONS(2838), - [anon_sym_consteval] = ACTIONS(2838), - [sym_primitive_type] = ACTIONS(2838), - [anon_sym_enum] = ACTIONS(2838), - [anon_sym_class] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2838), - [anon_sym_union] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_else] = ACTIONS(2838), - [anon_sym_switch] = ACTIONS(2838), - [anon_sym_case] = ACTIONS(2838), - [anon_sym_default] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_break] = ACTIONS(2838), - [anon_sym_continue] = ACTIONS(2838), - [anon_sym_goto] = ACTIONS(2838), - [anon_sym_not] = ACTIONS(2838), - [anon_sym_compl] = ACTIONS(2838), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_sizeof] = ACTIONS(2838), - [anon_sym___alignof__] = ACTIONS(2838), - [anon_sym___alignof] = ACTIONS(2838), - [anon_sym__alignof] = ACTIONS(2838), - [anon_sym_alignof] = ACTIONS(2838), - [anon_sym__Alignof] = ACTIONS(2838), - [anon_sym_offsetof] = ACTIONS(2838), - [anon_sym__Generic] = ACTIONS(2838), - [anon_sym_asm] = ACTIONS(2838), - [anon_sym___asm__] = ACTIONS(2838), - [sym_number_literal] = ACTIONS(2840), - [anon_sym_L_SQUOTE] = ACTIONS(2840), - [anon_sym_u_SQUOTE] = ACTIONS(2840), - [anon_sym_U_SQUOTE] = ACTIONS(2840), - [anon_sym_u8_SQUOTE] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_L_DQUOTE] = ACTIONS(2840), - [anon_sym_u_DQUOTE] = ACTIONS(2840), - [anon_sym_U_DQUOTE] = ACTIONS(2840), - [anon_sym_u8_DQUOTE] = ACTIONS(2840), - [anon_sym_DQUOTE] = ACTIONS(2840), - [sym_true] = ACTIONS(2838), - [sym_false] = ACTIONS(2838), - [anon_sym_NULL] = ACTIONS(2838), - [anon_sym_nullptr] = ACTIONS(2838), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2838), - [anon_sym_decltype] = ACTIONS(2838), - [anon_sym_virtual] = ACTIONS(2838), - [anon_sym_alignas] = ACTIONS(2838), - [anon_sym_explicit] = ACTIONS(2838), - [anon_sym_typename] = ACTIONS(2838), - [anon_sym_template] = ACTIONS(2838), - [anon_sym_operator] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_delete] = ACTIONS(2838), - [anon_sym_throw] = ACTIONS(2838), - [anon_sym_namespace] = ACTIONS(2838), - [anon_sym_using] = ACTIONS(2838), - [anon_sym_static_assert] = ACTIONS(2838), - [anon_sym_concept] = ACTIONS(2838), - [anon_sym_co_return] = ACTIONS(2838), - [anon_sym_co_yield] = ACTIONS(2838), - [anon_sym_R_DQUOTE] = ACTIONS(2840), - [anon_sym_LR_DQUOTE] = ACTIONS(2840), - [anon_sym_uR_DQUOTE] = ACTIONS(2840), - [anon_sym_UR_DQUOTE] = ACTIONS(2840), - [anon_sym_u8R_DQUOTE] = ACTIONS(2840), - [anon_sym_co_await] = ACTIONS(2838), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_requires] = ACTIONS(2838), - [sym_this] = ACTIONS(2838), + [1004] = { + [sym_function_definition] = STATE(976), + [sym_declaration] = STATE(976), + [sym__declaration_modifiers] = STATE(3353), + [sym__declaration_specifiers] = STATE(4561), + [sym_attribute_specifier] = STATE(3353), + [sym_attribute_declaration] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_ms_based_modifier] = STATE(7657), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5710), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym__type_specifier] = STATE(3475), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym__empty_declaration] = STATE(976), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3353), + [sym_alignas_specifier] = STATE(3353), + [sym_explicit_function_specifier] = STATE(1789), + [sym_dependent_type] = STATE(3114), + [sym_template_declaration] = STATE(976), + [sym_operator_cast] = STATE(6099), + [sym__constructor_specifiers] = STATE(1789), + [sym_operator_cast_definition] = STATE(976), + [sym_operator_cast_declaration] = STATE(976), + [sym_constructor_or_destructor_definition] = STATE(976), + [sym_constructor_or_destructor_declaration] = STATE(976), + [sym_friend_declaration] = STATE(976), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_alias_declaration] = STATE(976), + [sym_concept_definition] = STATE(976), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5038), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(6099), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [aux_sym_operator_cast_definition_repeat1] = STATE(1789), + [sym_identifier] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3745), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3747), + [anon_sym_using] = ACTIONS(3749), + [anon_sym_concept] = ACTIONS(145), }, - [972] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1005] = { + [sym_identifier] = ACTIONS(3751), + [anon_sym_COMMA] = ACTIONS(3753), + [anon_sym_RPAREN] = ACTIONS(3753), + [anon_sym_LPAREN2] = ACTIONS(3753), + [anon_sym_BANG] = ACTIONS(3753), + [anon_sym_TILDE] = ACTIONS(3753), + [anon_sym_DASH] = ACTIONS(3751), + [anon_sym_PLUS] = ACTIONS(3751), + [anon_sym_STAR] = ACTIONS(3753), + [anon_sym_AMP_AMP] = ACTIONS(3753), + [anon_sym_AMP] = ACTIONS(3751), + [anon_sym_SEMI] = ACTIONS(3753), + [anon_sym___extension__] = ACTIONS(3751), + [anon_sym_extern] = ACTIONS(3751), + [anon_sym___attribute__] = ACTIONS(3751), + [anon_sym_COLON_COLON] = ACTIONS(3753), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3753), + [anon_sym___declspec] = ACTIONS(3751), + [anon_sym___based] = ACTIONS(3751), + [anon_sym_LBRACE] = ACTIONS(3753), + [anon_sym_signed] = ACTIONS(3751), + [anon_sym_unsigned] = ACTIONS(3751), + [anon_sym_long] = ACTIONS(3751), + [anon_sym_short] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3751), + [anon_sym_EQ] = ACTIONS(3753), + [anon_sym_static] = ACTIONS(3751), + [anon_sym_register] = ACTIONS(3751), + [anon_sym_inline] = ACTIONS(3751), + [anon_sym___inline] = ACTIONS(3751), + [anon_sym___inline__] = ACTIONS(3751), + [anon_sym___forceinline] = ACTIONS(3751), + [anon_sym_thread_local] = ACTIONS(3751), + [anon_sym___thread] = ACTIONS(3751), + [anon_sym_const] = ACTIONS(3751), + [anon_sym_constexpr] = ACTIONS(3751), + [anon_sym_volatile] = ACTIONS(3751), + [anon_sym_restrict] = ACTIONS(3751), + [anon_sym___restrict__] = ACTIONS(3751), + [anon_sym__Atomic] = ACTIONS(3751), + [anon_sym__Noreturn] = ACTIONS(3751), + [anon_sym_noreturn] = ACTIONS(3751), + [anon_sym_mutable] = ACTIONS(3751), + [anon_sym_constinit] = ACTIONS(3751), + [anon_sym_consteval] = ACTIONS(3751), + [sym_primitive_type] = ACTIONS(3751), + [anon_sym_enum] = ACTIONS(3751), + [anon_sym_class] = ACTIONS(3751), + [anon_sym_struct] = ACTIONS(3751), + [anon_sym_union] = ACTIONS(3751), + [anon_sym_if] = ACTIONS(3751), + [anon_sym_switch] = ACTIONS(3751), + [anon_sym_case] = ACTIONS(3751), + [anon_sym_default] = ACTIONS(3751), + [anon_sym_while] = ACTIONS(3751), + [anon_sym_do] = ACTIONS(3751), + [anon_sym_for] = ACTIONS(3751), + [anon_sym_return] = ACTIONS(3751), + [anon_sym_break] = ACTIONS(3751), + [anon_sym_continue] = ACTIONS(3751), + [anon_sym_goto] = ACTIONS(3751), + [anon_sym_not] = ACTIONS(3751), + [anon_sym_compl] = ACTIONS(3751), + [anon_sym_DASH_DASH] = ACTIONS(3753), + [anon_sym_PLUS_PLUS] = ACTIONS(3753), + [anon_sym_sizeof] = ACTIONS(3751), + [anon_sym___alignof__] = ACTIONS(3751), + [anon_sym___alignof] = ACTIONS(3751), + [anon_sym__alignof] = ACTIONS(3751), + [anon_sym_alignof] = ACTIONS(3751), + [anon_sym__Alignof] = ACTIONS(3751), + [anon_sym_offsetof] = ACTIONS(3751), + [anon_sym__Generic] = ACTIONS(3751), + [anon_sym_asm] = ACTIONS(3751), + [anon_sym___asm__] = ACTIONS(3751), + [sym_number_literal] = ACTIONS(3753), + [anon_sym_L_SQUOTE] = ACTIONS(3753), + [anon_sym_u_SQUOTE] = ACTIONS(3753), + [anon_sym_U_SQUOTE] = ACTIONS(3753), + [anon_sym_u8_SQUOTE] = ACTIONS(3753), + [anon_sym_SQUOTE] = ACTIONS(3753), + [anon_sym_L_DQUOTE] = ACTIONS(3753), + [anon_sym_u_DQUOTE] = ACTIONS(3753), + [anon_sym_U_DQUOTE] = ACTIONS(3753), + [anon_sym_u8_DQUOTE] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3753), + [sym_true] = ACTIONS(3751), + [sym_false] = ACTIONS(3751), + [anon_sym_NULL] = ACTIONS(3751), + [anon_sym_nullptr] = ACTIONS(3751), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3751), + [anon_sym_decltype] = ACTIONS(3751), + [anon_sym_virtual] = ACTIONS(3751), + [anon_sym_alignas] = ACTIONS(3751), + [anon_sym_explicit] = ACTIONS(3751), + [anon_sym_typename] = ACTIONS(3751), + [anon_sym_template] = ACTIONS(3751), + [anon_sym_GT2] = ACTIONS(3753), + [anon_sym_operator] = ACTIONS(3751), + [anon_sym_try] = ACTIONS(3751), + [anon_sym_delete] = ACTIONS(3751), + [anon_sym_throw] = ACTIONS(3751), + [anon_sym_co_return] = ACTIONS(3751), + [anon_sym_co_yield] = ACTIONS(3751), + [anon_sym_R_DQUOTE] = ACTIONS(3753), + [anon_sym_LR_DQUOTE] = ACTIONS(3753), + [anon_sym_uR_DQUOTE] = ACTIONS(3753), + [anon_sym_UR_DQUOTE] = ACTIONS(3753), + [anon_sym_u8R_DQUOTE] = ACTIONS(3753), + [anon_sym_co_await] = ACTIONS(3751), + [anon_sym_new] = ACTIONS(3751), + [anon_sym_requires] = ACTIONS(3751), + [sym_this] = ACTIONS(3751), + }, + [1006] = { + [sym_identifier] = ACTIONS(3755), + [anon_sym_COMMA] = ACTIONS(3757), + [anon_sym_RPAREN] = ACTIONS(3757), + [anon_sym_LPAREN2] = ACTIONS(3757), + [anon_sym_BANG] = ACTIONS(3757), + [anon_sym_TILDE] = ACTIONS(3757), + [anon_sym_DASH] = ACTIONS(3755), + [anon_sym_PLUS] = ACTIONS(3755), + [anon_sym_STAR] = ACTIONS(3757), + [anon_sym_AMP_AMP] = ACTIONS(3757), + [anon_sym_AMP] = ACTIONS(3755), + [anon_sym_SEMI] = ACTIONS(3757), + [anon_sym___extension__] = ACTIONS(3755), + [anon_sym_extern] = ACTIONS(3755), + [anon_sym___attribute__] = ACTIONS(3755), + [anon_sym_COLON_COLON] = ACTIONS(3757), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3757), + [anon_sym___declspec] = ACTIONS(3755), + [anon_sym___based] = ACTIONS(3755), + [anon_sym_LBRACE] = ACTIONS(3757), + [anon_sym_signed] = ACTIONS(3755), + [anon_sym_unsigned] = ACTIONS(3755), + [anon_sym_long] = ACTIONS(3755), + [anon_sym_short] = ACTIONS(3755), + [anon_sym_LBRACK] = ACTIONS(3755), + [anon_sym_EQ] = ACTIONS(3757), + [anon_sym_static] = ACTIONS(3755), + [anon_sym_register] = ACTIONS(3755), + [anon_sym_inline] = ACTIONS(3755), + [anon_sym___inline] = ACTIONS(3755), + [anon_sym___inline__] = ACTIONS(3755), + [anon_sym___forceinline] = ACTIONS(3755), + [anon_sym_thread_local] = ACTIONS(3755), + [anon_sym___thread] = ACTIONS(3755), + [anon_sym_const] = ACTIONS(3755), + [anon_sym_constexpr] = ACTIONS(3755), + [anon_sym_volatile] = ACTIONS(3755), + [anon_sym_restrict] = ACTIONS(3755), + [anon_sym___restrict__] = ACTIONS(3755), + [anon_sym__Atomic] = ACTIONS(3755), + [anon_sym__Noreturn] = ACTIONS(3755), + [anon_sym_noreturn] = ACTIONS(3755), + [anon_sym_mutable] = ACTIONS(3755), + [anon_sym_constinit] = ACTIONS(3755), + [anon_sym_consteval] = ACTIONS(3755), + [sym_primitive_type] = ACTIONS(3755), + [anon_sym_enum] = ACTIONS(3755), + [anon_sym_class] = ACTIONS(3755), + [anon_sym_struct] = ACTIONS(3755), + [anon_sym_union] = ACTIONS(3755), + [anon_sym_if] = ACTIONS(3755), + [anon_sym_switch] = ACTIONS(3755), + [anon_sym_case] = ACTIONS(3755), + [anon_sym_default] = ACTIONS(3755), + [anon_sym_while] = ACTIONS(3755), + [anon_sym_do] = ACTIONS(3755), + [anon_sym_for] = ACTIONS(3755), + [anon_sym_return] = ACTIONS(3755), + [anon_sym_break] = ACTIONS(3755), + [anon_sym_continue] = ACTIONS(3755), + [anon_sym_goto] = ACTIONS(3755), + [anon_sym_not] = ACTIONS(3755), + [anon_sym_compl] = ACTIONS(3755), + [anon_sym_DASH_DASH] = ACTIONS(3757), + [anon_sym_PLUS_PLUS] = ACTIONS(3757), + [anon_sym_sizeof] = ACTIONS(3755), + [anon_sym___alignof__] = ACTIONS(3755), + [anon_sym___alignof] = ACTIONS(3755), + [anon_sym__alignof] = ACTIONS(3755), + [anon_sym_alignof] = ACTIONS(3755), + [anon_sym__Alignof] = ACTIONS(3755), + [anon_sym_offsetof] = ACTIONS(3755), + [anon_sym__Generic] = ACTIONS(3755), + [anon_sym_asm] = ACTIONS(3755), + [anon_sym___asm__] = ACTIONS(3755), + [sym_number_literal] = ACTIONS(3757), + [anon_sym_L_SQUOTE] = ACTIONS(3757), + [anon_sym_u_SQUOTE] = ACTIONS(3757), + [anon_sym_U_SQUOTE] = ACTIONS(3757), + [anon_sym_u8_SQUOTE] = ACTIONS(3757), + [anon_sym_SQUOTE] = ACTIONS(3757), + [anon_sym_L_DQUOTE] = ACTIONS(3757), + [anon_sym_u_DQUOTE] = ACTIONS(3757), + [anon_sym_U_DQUOTE] = ACTIONS(3757), + [anon_sym_u8_DQUOTE] = ACTIONS(3757), + [anon_sym_DQUOTE] = ACTIONS(3757), + [sym_true] = ACTIONS(3755), + [sym_false] = ACTIONS(3755), + [anon_sym_NULL] = ACTIONS(3755), + [anon_sym_nullptr] = ACTIONS(3755), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3755), + [anon_sym_decltype] = ACTIONS(3755), + [anon_sym_virtual] = ACTIONS(3755), + [anon_sym_alignas] = ACTIONS(3755), + [anon_sym_explicit] = ACTIONS(3755), + [anon_sym_typename] = ACTIONS(3755), + [anon_sym_template] = ACTIONS(3755), + [anon_sym_GT2] = ACTIONS(3757), + [anon_sym_operator] = ACTIONS(3755), + [anon_sym_try] = ACTIONS(3755), + [anon_sym_delete] = ACTIONS(3755), + [anon_sym_throw] = ACTIONS(3755), + [anon_sym_co_return] = ACTIONS(3755), + [anon_sym_co_yield] = ACTIONS(3755), + [anon_sym_R_DQUOTE] = ACTIONS(3757), + [anon_sym_LR_DQUOTE] = ACTIONS(3757), + [anon_sym_uR_DQUOTE] = ACTIONS(3757), + [anon_sym_UR_DQUOTE] = ACTIONS(3757), + [anon_sym_u8R_DQUOTE] = ACTIONS(3757), + [anon_sym_co_await] = ACTIONS(3755), + [anon_sym_new] = ACTIONS(3755), + [anon_sym_requires] = ACTIONS(3755), + [sym_this] = ACTIONS(3755), + }, + [1007] = { + [sym_type_qualifier] = STATE(1011), + [sym__expression] = STATE(4185), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1011), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3763), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [973] = { - [sym_identifier] = ACTIONS(2786), - [aux_sym_preproc_include_token1] = ACTIONS(2786), - [aux_sym_preproc_def_token1] = ACTIONS(2786), - [aux_sym_preproc_if_token1] = ACTIONS(2786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2786), - [sym_preproc_directive] = ACTIONS(2786), - [anon_sym_LPAREN2] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2786), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym___extension__] = ACTIONS(2786), - [anon_sym_typedef] = ACTIONS(2786), - [anon_sym_extern] = ACTIONS(2786), - [anon_sym___attribute__] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2788), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2788), - [anon_sym___declspec] = ACTIONS(2786), - [anon_sym___based] = ACTIONS(2786), - [anon_sym___cdecl] = ACTIONS(2786), - [anon_sym___clrcall] = ACTIONS(2786), - [anon_sym___stdcall] = ACTIONS(2786), - [anon_sym___fastcall] = ACTIONS(2786), - [anon_sym___thiscall] = ACTIONS(2786), - [anon_sym___vectorcall] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_RBRACE] = ACTIONS(2788), - [anon_sym_signed] = ACTIONS(2786), - [anon_sym_unsigned] = ACTIONS(2786), - [anon_sym_long] = ACTIONS(2786), - [anon_sym_short] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_static] = ACTIONS(2786), - [anon_sym_register] = ACTIONS(2786), - [anon_sym_inline] = ACTIONS(2786), - [anon_sym___inline] = ACTIONS(2786), - [anon_sym___inline__] = ACTIONS(2786), - [anon_sym___forceinline] = ACTIONS(2786), - [anon_sym_thread_local] = ACTIONS(2786), - [anon_sym___thread] = ACTIONS(2786), - [anon_sym_const] = ACTIONS(2786), - [anon_sym_constexpr] = ACTIONS(2786), - [anon_sym_volatile] = ACTIONS(2786), - [anon_sym_restrict] = ACTIONS(2786), - [anon_sym___restrict__] = ACTIONS(2786), - [anon_sym__Atomic] = ACTIONS(2786), - [anon_sym__Noreturn] = ACTIONS(2786), - [anon_sym_noreturn] = ACTIONS(2786), - [anon_sym_mutable] = ACTIONS(2786), - [anon_sym_constinit] = ACTIONS(2786), - [anon_sym_consteval] = ACTIONS(2786), - [sym_primitive_type] = ACTIONS(2786), - [anon_sym_enum] = ACTIONS(2786), - [anon_sym_class] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2786), - [anon_sym_union] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2786), - [anon_sym_else] = ACTIONS(2786), - [anon_sym_switch] = ACTIONS(2786), - [anon_sym_case] = ACTIONS(2786), - [anon_sym_default] = ACTIONS(2786), - [anon_sym_while] = ACTIONS(2786), - [anon_sym_do] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2786), - [anon_sym_return] = ACTIONS(2786), - [anon_sym_break] = ACTIONS(2786), - [anon_sym_continue] = ACTIONS(2786), - [anon_sym_goto] = ACTIONS(2786), - [anon_sym_not] = ACTIONS(2786), - [anon_sym_compl] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_sizeof] = ACTIONS(2786), - [anon_sym___alignof__] = ACTIONS(2786), - [anon_sym___alignof] = ACTIONS(2786), - [anon_sym__alignof] = ACTIONS(2786), - [anon_sym_alignof] = ACTIONS(2786), - [anon_sym__Alignof] = ACTIONS(2786), - [anon_sym_offsetof] = ACTIONS(2786), - [anon_sym__Generic] = ACTIONS(2786), - [anon_sym_asm] = ACTIONS(2786), - [anon_sym___asm__] = ACTIONS(2786), - [sym_number_literal] = ACTIONS(2788), - [anon_sym_L_SQUOTE] = ACTIONS(2788), - [anon_sym_u_SQUOTE] = ACTIONS(2788), - [anon_sym_U_SQUOTE] = ACTIONS(2788), - [anon_sym_u8_SQUOTE] = ACTIONS(2788), - [anon_sym_SQUOTE] = ACTIONS(2788), - [anon_sym_L_DQUOTE] = ACTIONS(2788), - [anon_sym_u_DQUOTE] = ACTIONS(2788), - [anon_sym_U_DQUOTE] = ACTIONS(2788), - [anon_sym_u8_DQUOTE] = ACTIONS(2788), - [anon_sym_DQUOTE] = ACTIONS(2788), - [sym_true] = ACTIONS(2786), - [sym_false] = ACTIONS(2786), - [anon_sym_NULL] = ACTIONS(2786), - [anon_sym_nullptr] = ACTIONS(2786), + [1008] = { + [sym_type_qualifier] = STATE(1858), + [sym__expression] = STATE(4326), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1858), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3765), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3767), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2786), - [anon_sym_decltype] = ACTIONS(2786), - [anon_sym_virtual] = ACTIONS(2786), - [anon_sym_alignas] = ACTIONS(2786), - [anon_sym_explicit] = ACTIONS(2786), - [anon_sym_typename] = ACTIONS(2786), - [anon_sym_template] = ACTIONS(2786), - [anon_sym_operator] = ACTIONS(2786), - [anon_sym_try] = ACTIONS(2786), - [anon_sym_delete] = ACTIONS(2786), - [anon_sym_throw] = ACTIONS(2786), - [anon_sym_namespace] = ACTIONS(2786), - [anon_sym_using] = ACTIONS(2786), - [anon_sym_static_assert] = ACTIONS(2786), - [anon_sym_concept] = ACTIONS(2786), - [anon_sym_co_return] = ACTIONS(2786), - [anon_sym_co_yield] = ACTIONS(2786), - [anon_sym_R_DQUOTE] = ACTIONS(2788), - [anon_sym_LR_DQUOTE] = ACTIONS(2788), - [anon_sym_uR_DQUOTE] = ACTIONS(2788), - [anon_sym_UR_DQUOTE] = ACTIONS(2788), - [anon_sym_u8R_DQUOTE] = ACTIONS(2788), - [anon_sym_co_await] = ACTIONS(2786), - [anon_sym_new] = ACTIONS(2786), - [anon_sym_requires] = ACTIONS(2786), - [sym_this] = ACTIONS(2786), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [974] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1009] = { + [sym_type_qualifier] = STATE(1858), + [sym__expression] = STATE(4222), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1858), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3769), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3771), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [975] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1010] = { + [sym_type_qualifier] = STATE(1858), + [sym__expression] = STATE(4287), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1858), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3773), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3775), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [976] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1011] = { + [sym_type_qualifier] = STATE(1858), + [sym__expression] = STATE(4259), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1858), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3777), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3779), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [977] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1012] = { + [sym_type_qualifier] = STATE(1022), + [sym__expression] = STATE(4320), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3781), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3783), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [978] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1013] = { + [sym_identifier] = ACTIONS(3785), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3791), + [anon_sym_TILDE] = ACTIONS(3788), + [anon_sym_DASH] = ACTIONS(3793), + [anon_sym_PLUS] = ACTIONS(3793), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_AMP_AMP] = ACTIONS(3795), + [anon_sym_AMP] = ACTIONS(3785), + [anon_sym_SEMI] = ACTIONS(3791), + [anon_sym___extension__] = ACTIONS(3797), + [anon_sym_extern] = ACTIONS(3797), + [anon_sym___attribute__] = ACTIONS(3797), + [anon_sym_COLON_COLON] = ACTIONS(3788), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3788), + [anon_sym___declspec] = ACTIONS(3797), + [anon_sym___based] = ACTIONS(3797), + [anon_sym_LBRACE] = ACTIONS(3791), + [anon_sym_signed] = ACTIONS(3797), + [anon_sym_unsigned] = ACTIONS(3797), + [anon_sym_long] = ACTIONS(3797), + [anon_sym_short] = ACTIONS(3797), + [anon_sym_LBRACK] = ACTIONS(3785), + [anon_sym_static] = ACTIONS(3797), + [anon_sym_register] = ACTIONS(3797), + [anon_sym_inline] = ACTIONS(3797), + [anon_sym___inline] = ACTIONS(3797), + [anon_sym___inline__] = ACTIONS(3797), + [anon_sym___forceinline] = ACTIONS(3797), + [anon_sym_thread_local] = ACTIONS(3797), + [anon_sym___thread] = ACTIONS(3797), + [anon_sym_const] = ACTIONS(3797), + [anon_sym_constexpr] = ACTIONS(3797), + [anon_sym_volatile] = ACTIONS(3797), + [anon_sym_restrict] = ACTIONS(3797), + [anon_sym___restrict__] = ACTIONS(3797), + [anon_sym__Atomic] = ACTIONS(3797), + [anon_sym__Noreturn] = ACTIONS(3797), + [anon_sym_noreturn] = ACTIONS(3797), + [anon_sym_mutable] = ACTIONS(3797), + [anon_sym_constinit] = ACTIONS(3797), + [anon_sym_consteval] = ACTIONS(3797), + [sym_primitive_type] = ACTIONS(3785), + [anon_sym_enum] = ACTIONS(3797), + [anon_sym_class] = ACTIONS(3797), + [anon_sym_struct] = ACTIONS(3797), + [anon_sym_union] = ACTIONS(3797), + [anon_sym_if] = ACTIONS(3793), + [anon_sym_switch] = ACTIONS(3793), + [anon_sym_case] = ACTIONS(3793), + [anon_sym_default] = ACTIONS(3793), + [anon_sym_while] = ACTIONS(3793), + [anon_sym_do] = ACTIONS(3793), + [anon_sym_for] = ACTIONS(3793), + [anon_sym_return] = ACTIONS(3793), + [anon_sym_break] = ACTIONS(3793), + [anon_sym_continue] = ACTIONS(3793), + [anon_sym_goto] = ACTIONS(3793), + [anon_sym_not] = ACTIONS(3793), + [anon_sym_compl] = ACTIONS(3793), + [anon_sym_DASH_DASH] = ACTIONS(3791), + [anon_sym_PLUS_PLUS] = ACTIONS(3791), + [anon_sym_sizeof] = ACTIONS(3793), + [anon_sym___alignof__] = ACTIONS(3793), + [anon_sym___alignof] = ACTIONS(3793), + [anon_sym__alignof] = ACTIONS(3793), + [anon_sym_alignof] = ACTIONS(3793), + [anon_sym__Alignof] = ACTIONS(3793), + [anon_sym_offsetof] = ACTIONS(3793), + [anon_sym__Generic] = ACTIONS(3793), + [anon_sym_asm] = ACTIONS(3793), + [anon_sym___asm__] = ACTIONS(3793), + [sym_number_literal] = ACTIONS(3791), + [anon_sym_L_SQUOTE] = ACTIONS(3791), + [anon_sym_u_SQUOTE] = ACTIONS(3791), + [anon_sym_U_SQUOTE] = ACTIONS(3791), + [anon_sym_u8_SQUOTE] = ACTIONS(3791), + [anon_sym_SQUOTE] = ACTIONS(3791), + [anon_sym_L_DQUOTE] = ACTIONS(3791), + [anon_sym_u_DQUOTE] = ACTIONS(3791), + [anon_sym_U_DQUOTE] = ACTIONS(3791), + [anon_sym_u8_DQUOTE] = ACTIONS(3791), + [anon_sym_DQUOTE] = ACTIONS(3791), + [sym_true] = ACTIONS(3793), + [sym_false] = ACTIONS(3793), + [anon_sym_NULL] = ACTIONS(3793), + [anon_sym_nullptr] = ACTIONS(3793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3797), + [anon_sym_decltype] = ACTIONS(3785), + [anon_sym_virtual] = ACTIONS(3797), + [anon_sym_alignas] = ACTIONS(3797), + [anon_sym_explicit] = ACTIONS(3797), + [anon_sym_typename] = ACTIONS(3797), + [anon_sym_template] = ACTIONS(3785), + [anon_sym_operator] = ACTIONS(3797), + [anon_sym_try] = ACTIONS(3793), + [anon_sym_delete] = ACTIONS(3793), + [anon_sym_throw] = ACTIONS(3793), + [anon_sym_co_return] = ACTIONS(3793), + [anon_sym_co_yield] = ACTIONS(3793), + [anon_sym_R_DQUOTE] = ACTIONS(3791), + [anon_sym_LR_DQUOTE] = ACTIONS(3791), + [anon_sym_uR_DQUOTE] = ACTIONS(3791), + [anon_sym_UR_DQUOTE] = ACTIONS(3791), + [anon_sym_u8R_DQUOTE] = ACTIONS(3791), + [anon_sym_co_await] = ACTIONS(3793), + [anon_sym_new] = ACTIONS(3793), + [anon_sym_requires] = ACTIONS(3793), + [sym_this] = ACTIONS(3793), + }, + [1014] = { + [sym_type_qualifier] = STATE(1858), + [sym__expression] = STATE(4298), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1858), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3799), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3801), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [979] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_include_token1] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2889), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym___cdecl] = ACTIONS(2194), - [anon_sym___clrcall] = ACTIONS(2194), - [anon_sym___stdcall] = ACTIONS(2194), - [anon_sym___fastcall] = ACTIONS(2194), - [anon_sym___thiscall] = ACTIONS(2194), - [anon_sym___vectorcall] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_RBRACE] = ACTIONS(2889), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_goto] = ACTIONS(2194), - [anon_sym_not] = ACTIONS(2194), - [anon_sym_compl] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_sizeof] = ACTIONS(2194), - [anon_sym___alignof__] = ACTIONS(2194), - [anon_sym___alignof] = ACTIONS(2194), - [anon_sym__alignof] = ACTIONS(2194), - [anon_sym_alignof] = ACTIONS(2194), - [anon_sym__Alignof] = ACTIONS(2194), - [anon_sym_offsetof] = ACTIONS(2194), - [anon_sym__Generic] = ACTIONS(2194), - [anon_sym_asm] = ACTIONS(2194), - [anon_sym___asm__] = ACTIONS(2194), - [sym_number_literal] = ACTIONS(2192), - [anon_sym_L_SQUOTE] = ACTIONS(2192), - [anon_sym_u_SQUOTE] = ACTIONS(2192), - [anon_sym_U_SQUOTE] = ACTIONS(2192), - [anon_sym_u8_SQUOTE] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_L_DQUOTE] = ACTIONS(2192), - [anon_sym_u_DQUOTE] = ACTIONS(2192), - [anon_sym_U_DQUOTE] = ACTIONS(2192), - [anon_sym_u8_DQUOTE] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [anon_sym_NULL] = ACTIONS(2194), - [anon_sym_nullptr] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_delete] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - [anon_sym_concept] = ACTIONS(2194), - [anon_sym_co_return] = ACTIONS(2194), - [anon_sym_co_yield] = ACTIONS(2194), - [anon_sym_R_DQUOTE] = ACTIONS(2192), - [anon_sym_LR_DQUOTE] = ACTIONS(2192), - [anon_sym_uR_DQUOTE] = ACTIONS(2192), - [anon_sym_UR_DQUOTE] = ACTIONS(2192), - [anon_sym_u8R_DQUOTE] = ACTIONS(2192), - [anon_sym_co_await] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_requires] = ACTIONS(2194), - [sym_this] = ACTIONS(2194), + [1015] = { + [sym_type_qualifier] = STATE(1020), + [sym__expression] = STATE(4257), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1020), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3803), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3805), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [980] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1016] = { + [sym_type_qualifier] = STATE(1025), + [sym__expression] = STATE(4305), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1025), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3809), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [981] = { - [sym_identifier] = ACTIONS(2782), - [aux_sym_preproc_include_token1] = ACTIONS(2782), - [aux_sym_preproc_def_token1] = ACTIONS(2782), - [aux_sym_preproc_if_token1] = ACTIONS(2782), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2782), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2782), - [sym_preproc_directive] = ACTIONS(2782), - [anon_sym_LPAREN2] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym___extension__] = ACTIONS(2782), - [anon_sym_typedef] = ACTIONS(2782), - [anon_sym_extern] = ACTIONS(2782), - [anon_sym___attribute__] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2784), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2784), - [anon_sym___declspec] = ACTIONS(2782), - [anon_sym___based] = ACTIONS(2782), - [anon_sym___cdecl] = ACTIONS(2782), - [anon_sym___clrcall] = ACTIONS(2782), - [anon_sym___stdcall] = ACTIONS(2782), - [anon_sym___fastcall] = ACTIONS(2782), - [anon_sym___thiscall] = ACTIONS(2782), - [anon_sym___vectorcall] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2784), - [anon_sym_signed] = ACTIONS(2782), - [anon_sym_unsigned] = ACTIONS(2782), - [anon_sym_long] = ACTIONS(2782), - [anon_sym_short] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_static] = ACTIONS(2782), - [anon_sym_register] = ACTIONS(2782), - [anon_sym_inline] = ACTIONS(2782), - [anon_sym___inline] = ACTIONS(2782), - [anon_sym___inline__] = ACTIONS(2782), - [anon_sym___forceinline] = ACTIONS(2782), - [anon_sym_thread_local] = ACTIONS(2782), - [anon_sym___thread] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_constexpr] = ACTIONS(2782), - [anon_sym_volatile] = ACTIONS(2782), - [anon_sym_restrict] = ACTIONS(2782), - [anon_sym___restrict__] = ACTIONS(2782), - [anon_sym__Atomic] = ACTIONS(2782), - [anon_sym__Noreturn] = ACTIONS(2782), - [anon_sym_noreturn] = ACTIONS(2782), - [anon_sym_mutable] = ACTIONS(2782), - [anon_sym_constinit] = ACTIONS(2782), - [anon_sym_consteval] = ACTIONS(2782), - [sym_primitive_type] = ACTIONS(2782), - [anon_sym_enum] = ACTIONS(2782), - [anon_sym_class] = ACTIONS(2782), - [anon_sym_struct] = ACTIONS(2782), - [anon_sym_union] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_else] = ACTIONS(2782), - [anon_sym_switch] = ACTIONS(2782), - [anon_sym_case] = ACTIONS(2782), - [anon_sym_default] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_goto] = ACTIONS(2782), - [anon_sym_not] = ACTIONS(2782), - [anon_sym_compl] = ACTIONS(2782), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_sizeof] = ACTIONS(2782), - [anon_sym___alignof__] = ACTIONS(2782), - [anon_sym___alignof] = ACTIONS(2782), - [anon_sym__alignof] = ACTIONS(2782), - [anon_sym_alignof] = ACTIONS(2782), - [anon_sym__Alignof] = ACTIONS(2782), - [anon_sym_offsetof] = ACTIONS(2782), - [anon_sym__Generic] = ACTIONS(2782), - [anon_sym_asm] = ACTIONS(2782), - [anon_sym___asm__] = ACTIONS(2782), - [sym_number_literal] = ACTIONS(2784), - [anon_sym_L_SQUOTE] = ACTIONS(2784), - [anon_sym_u_SQUOTE] = ACTIONS(2784), - [anon_sym_U_SQUOTE] = ACTIONS(2784), - [anon_sym_u8_SQUOTE] = ACTIONS(2784), - [anon_sym_SQUOTE] = ACTIONS(2784), - [anon_sym_L_DQUOTE] = ACTIONS(2784), - [anon_sym_u_DQUOTE] = ACTIONS(2784), - [anon_sym_U_DQUOTE] = ACTIONS(2784), - [anon_sym_u8_DQUOTE] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [sym_true] = ACTIONS(2782), - [sym_false] = ACTIONS(2782), - [anon_sym_NULL] = ACTIONS(2782), - [anon_sym_nullptr] = ACTIONS(2782), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2782), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_virtual] = ACTIONS(2782), - [anon_sym_alignas] = ACTIONS(2782), - [anon_sym_explicit] = ACTIONS(2782), - [anon_sym_typename] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2782), - [anon_sym_operator] = ACTIONS(2782), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_delete] = ACTIONS(2782), - [anon_sym_throw] = ACTIONS(2782), - [anon_sym_namespace] = ACTIONS(2782), - [anon_sym_using] = ACTIONS(2782), - [anon_sym_static_assert] = ACTIONS(2782), - [anon_sym_concept] = ACTIONS(2782), - [anon_sym_co_return] = ACTIONS(2782), - [anon_sym_co_yield] = ACTIONS(2782), - [anon_sym_R_DQUOTE] = ACTIONS(2784), - [anon_sym_LR_DQUOTE] = ACTIONS(2784), - [anon_sym_uR_DQUOTE] = ACTIONS(2784), - [anon_sym_UR_DQUOTE] = ACTIONS(2784), - [anon_sym_u8R_DQUOTE] = ACTIONS(2784), - [anon_sym_co_await] = ACTIONS(2782), - [anon_sym_new] = ACTIONS(2782), - [anon_sym_requires] = ACTIONS(2782), - [sym_this] = ACTIONS(2782), + [1017] = { + [sym_type_qualifier] = STATE(1010), + [sym__expression] = STATE(4191), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1010), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3811), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3813), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [982] = { - [ts_builtin_sym_end] = ACTIONS(2943), - [sym_identifier] = ACTIONS(2941), - [aux_sym_preproc_include_token1] = ACTIONS(2941), - [aux_sym_preproc_def_token1] = ACTIONS(2941), - [aux_sym_preproc_if_token1] = ACTIONS(2941), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2941), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2941), - [sym_preproc_directive] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2943), - [anon_sym___extension__] = ACTIONS(2941), - [anon_sym_typedef] = ACTIONS(2941), - [anon_sym_extern] = ACTIONS(2941), - [anon_sym___attribute__] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2943), - [anon_sym___declspec] = ACTIONS(2941), - [anon_sym___based] = ACTIONS(2941), - [anon_sym___cdecl] = ACTIONS(2941), - [anon_sym___clrcall] = ACTIONS(2941), - [anon_sym___stdcall] = ACTIONS(2941), - [anon_sym___fastcall] = ACTIONS(2941), - [anon_sym___thiscall] = ACTIONS(2941), - [anon_sym___vectorcall] = ACTIONS(2941), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_signed] = ACTIONS(2941), - [anon_sym_unsigned] = ACTIONS(2941), - [anon_sym_long] = ACTIONS(2941), - [anon_sym_short] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_static] = ACTIONS(2941), - [anon_sym_register] = ACTIONS(2941), - [anon_sym_inline] = ACTIONS(2941), - [anon_sym___inline] = ACTIONS(2941), - [anon_sym___inline__] = ACTIONS(2941), - [anon_sym___forceinline] = ACTIONS(2941), - [anon_sym_thread_local] = ACTIONS(2941), - [anon_sym___thread] = ACTIONS(2941), - [anon_sym_const] = ACTIONS(2941), - [anon_sym_constexpr] = ACTIONS(2941), - [anon_sym_volatile] = ACTIONS(2941), - [anon_sym_restrict] = ACTIONS(2941), - [anon_sym___restrict__] = ACTIONS(2941), - [anon_sym__Atomic] = ACTIONS(2941), - [anon_sym__Noreturn] = ACTIONS(2941), - [anon_sym_noreturn] = ACTIONS(2941), - [anon_sym_mutable] = ACTIONS(2941), - [anon_sym_constinit] = ACTIONS(2941), - [anon_sym_consteval] = ACTIONS(2941), - [sym_primitive_type] = ACTIONS(2941), - [anon_sym_enum] = ACTIONS(2941), - [anon_sym_class] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2941), - [anon_sym_union] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_else] = ACTIONS(2941), - [anon_sym_switch] = ACTIONS(2941), - [anon_sym_case] = ACTIONS(2941), - [anon_sym_default] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_break] = ACTIONS(2941), - [anon_sym_continue] = ACTIONS(2941), - [anon_sym_goto] = ACTIONS(2941), - [anon_sym_not] = ACTIONS(2941), - [anon_sym_compl] = ACTIONS(2941), - [anon_sym_DASH_DASH] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2943), - [anon_sym_sizeof] = ACTIONS(2941), - [anon_sym___alignof__] = ACTIONS(2941), - [anon_sym___alignof] = ACTIONS(2941), - [anon_sym__alignof] = ACTIONS(2941), - [anon_sym_alignof] = ACTIONS(2941), - [anon_sym__Alignof] = ACTIONS(2941), - [anon_sym_offsetof] = ACTIONS(2941), - [anon_sym__Generic] = ACTIONS(2941), - [anon_sym_asm] = ACTIONS(2941), - [anon_sym___asm__] = ACTIONS(2941), - [sym_number_literal] = ACTIONS(2943), - [anon_sym_L_SQUOTE] = ACTIONS(2943), - [anon_sym_u_SQUOTE] = ACTIONS(2943), - [anon_sym_U_SQUOTE] = ACTIONS(2943), - [anon_sym_u8_SQUOTE] = ACTIONS(2943), - [anon_sym_SQUOTE] = ACTIONS(2943), - [anon_sym_L_DQUOTE] = ACTIONS(2943), - [anon_sym_u_DQUOTE] = ACTIONS(2943), - [anon_sym_U_DQUOTE] = ACTIONS(2943), - [anon_sym_u8_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE] = ACTIONS(2943), - [sym_true] = ACTIONS(2941), - [sym_false] = ACTIONS(2941), - [anon_sym_NULL] = ACTIONS(2941), - [anon_sym_nullptr] = ACTIONS(2941), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2941), - [anon_sym_decltype] = ACTIONS(2941), - [anon_sym_virtual] = ACTIONS(2941), - [anon_sym_alignas] = ACTIONS(2941), - [anon_sym_explicit] = ACTIONS(2941), - [anon_sym_typename] = ACTIONS(2941), - [anon_sym_template] = ACTIONS(2941), - [anon_sym_operator] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_delete] = ACTIONS(2941), - [anon_sym_throw] = ACTIONS(2941), - [anon_sym_namespace] = ACTIONS(2941), - [anon_sym_using] = ACTIONS(2941), - [anon_sym_static_assert] = ACTIONS(2941), - [anon_sym_concept] = ACTIONS(2941), - [anon_sym_co_return] = ACTIONS(2941), - [anon_sym_co_yield] = ACTIONS(2941), - [anon_sym_R_DQUOTE] = ACTIONS(2943), - [anon_sym_LR_DQUOTE] = ACTIONS(2943), - [anon_sym_uR_DQUOTE] = ACTIONS(2943), - [anon_sym_UR_DQUOTE] = ACTIONS(2943), - [anon_sym_u8R_DQUOTE] = ACTIONS(2943), - [anon_sym_co_await] = ACTIONS(2941), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_requires] = ACTIONS(2941), - [sym_this] = ACTIONS(2941), + [1018] = { + [sym_type_qualifier] = STATE(1858), + [sym__expression] = STATE(4198), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1858), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3815), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3817), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [983] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1019] = { + [sym_type_qualifier] = STATE(1008), + [sym__expression] = STATE(4300), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1008), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3819), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3821), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [984] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1020] = { + [sym_type_qualifier] = STATE(1858), + [sym__expression] = STATE(4243), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1858), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3823), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3825), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [985] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1021] = { + [sym_type_qualifier] = STATE(1018), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1018), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3829), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [986] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1022] = { + [sym_type_qualifier] = STATE(1858), + [sym__expression] = STATE(4256), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1858), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3833), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [987] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1023] = { + [sym_type_qualifier] = STATE(1014), + [sym__expression] = STATE(4283), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3835), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3837), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [988] = { - [ts_builtin_sym_end] = ACTIONS(3063), - [sym_identifier] = ACTIONS(3061), - [aux_sym_preproc_include_token1] = ACTIONS(3061), - [aux_sym_preproc_def_token1] = ACTIONS(3061), - [aux_sym_preproc_if_token1] = ACTIONS(3061), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3061), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3061), - [sym_preproc_directive] = ACTIONS(3061), - [anon_sym_LPAREN2] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3063), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3063), - [anon_sym_AMP_AMP] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_SEMI] = ACTIONS(3063), - [anon_sym___extension__] = ACTIONS(3061), - [anon_sym_typedef] = ACTIONS(3061), - [anon_sym_extern] = ACTIONS(3061), - [anon_sym___attribute__] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3063), - [anon_sym___declspec] = ACTIONS(3061), - [anon_sym___based] = ACTIONS(3061), - [anon_sym___cdecl] = ACTIONS(3061), - [anon_sym___clrcall] = ACTIONS(3061), - [anon_sym___stdcall] = ACTIONS(3061), - [anon_sym___fastcall] = ACTIONS(3061), - [anon_sym___thiscall] = ACTIONS(3061), - [anon_sym___vectorcall] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3063), - [anon_sym_signed] = ACTIONS(3061), - [anon_sym_unsigned] = ACTIONS(3061), - [anon_sym_long] = ACTIONS(3061), - [anon_sym_short] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3061), - [anon_sym_static] = ACTIONS(3061), - [anon_sym_register] = ACTIONS(3061), - [anon_sym_inline] = ACTIONS(3061), - [anon_sym___inline] = ACTIONS(3061), - [anon_sym___inline__] = ACTIONS(3061), - [anon_sym___forceinline] = ACTIONS(3061), - [anon_sym_thread_local] = ACTIONS(3061), - [anon_sym___thread] = ACTIONS(3061), - [anon_sym_const] = ACTIONS(3061), - [anon_sym_constexpr] = ACTIONS(3061), - [anon_sym_volatile] = ACTIONS(3061), - [anon_sym_restrict] = ACTIONS(3061), - [anon_sym___restrict__] = ACTIONS(3061), - [anon_sym__Atomic] = ACTIONS(3061), - [anon_sym__Noreturn] = ACTIONS(3061), - [anon_sym_noreturn] = ACTIONS(3061), - [anon_sym_mutable] = ACTIONS(3061), - [anon_sym_constinit] = ACTIONS(3061), - [anon_sym_consteval] = ACTIONS(3061), - [sym_primitive_type] = ACTIONS(3061), - [anon_sym_enum] = ACTIONS(3061), - [anon_sym_class] = ACTIONS(3061), - [anon_sym_struct] = ACTIONS(3061), - [anon_sym_union] = ACTIONS(3061), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_else] = ACTIONS(3061), - [anon_sym_switch] = ACTIONS(3061), - [anon_sym_case] = ACTIONS(3061), - [anon_sym_default] = ACTIONS(3061), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_do] = ACTIONS(3061), - [anon_sym_for] = ACTIONS(3061), - [anon_sym_return] = ACTIONS(3061), - [anon_sym_break] = ACTIONS(3061), - [anon_sym_continue] = ACTIONS(3061), - [anon_sym_goto] = ACTIONS(3061), - [anon_sym_not] = ACTIONS(3061), - [anon_sym_compl] = ACTIONS(3061), - [anon_sym_DASH_DASH] = ACTIONS(3063), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_sizeof] = ACTIONS(3061), - [anon_sym___alignof__] = ACTIONS(3061), - [anon_sym___alignof] = ACTIONS(3061), - [anon_sym__alignof] = ACTIONS(3061), - [anon_sym_alignof] = ACTIONS(3061), - [anon_sym__Alignof] = ACTIONS(3061), - [anon_sym_offsetof] = ACTIONS(3061), - [anon_sym__Generic] = ACTIONS(3061), - [anon_sym_asm] = ACTIONS(3061), - [anon_sym___asm__] = ACTIONS(3061), - [sym_number_literal] = ACTIONS(3063), - [anon_sym_L_SQUOTE] = ACTIONS(3063), - [anon_sym_u_SQUOTE] = ACTIONS(3063), - [anon_sym_U_SQUOTE] = ACTIONS(3063), - [anon_sym_u8_SQUOTE] = ACTIONS(3063), - [anon_sym_SQUOTE] = ACTIONS(3063), - [anon_sym_L_DQUOTE] = ACTIONS(3063), - [anon_sym_u_DQUOTE] = ACTIONS(3063), - [anon_sym_U_DQUOTE] = ACTIONS(3063), - [anon_sym_u8_DQUOTE] = ACTIONS(3063), - [anon_sym_DQUOTE] = ACTIONS(3063), - [sym_true] = ACTIONS(3061), - [sym_false] = ACTIONS(3061), - [anon_sym_NULL] = ACTIONS(3061), - [anon_sym_nullptr] = ACTIONS(3061), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3061), - [anon_sym_decltype] = ACTIONS(3061), - [anon_sym_virtual] = ACTIONS(3061), - [anon_sym_alignas] = ACTIONS(3061), - [anon_sym_explicit] = ACTIONS(3061), - [anon_sym_typename] = ACTIONS(3061), - [anon_sym_template] = ACTIONS(3061), - [anon_sym_operator] = ACTIONS(3061), - [anon_sym_try] = ACTIONS(3061), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_throw] = ACTIONS(3061), - [anon_sym_namespace] = ACTIONS(3061), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_static_assert] = ACTIONS(3061), - [anon_sym_concept] = ACTIONS(3061), - [anon_sym_co_return] = ACTIONS(3061), - [anon_sym_co_yield] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(3063), - [anon_sym_LR_DQUOTE] = ACTIONS(3063), - [anon_sym_uR_DQUOTE] = ACTIONS(3063), - [anon_sym_UR_DQUOTE] = ACTIONS(3063), - [anon_sym_u8R_DQUOTE] = ACTIONS(3063), - [anon_sym_co_await] = ACTIONS(3061), - [anon_sym_new] = ACTIONS(3061), - [anon_sym_requires] = ACTIONS(3061), - [sym_this] = ACTIONS(3061), + [1024] = { + [sym_type_qualifier] = STATE(1858), + [sym__expression] = STATE(4250), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1858), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3841), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [989] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1025] = { + [sym_type_qualifier] = STATE(1858), + [sym__expression] = STATE(4252), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1858), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3843), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3845), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - }, - [990] = { - [ts_builtin_sym_end] = ACTIONS(3067), - [sym_identifier] = ACTIONS(3065), - [aux_sym_preproc_include_token1] = ACTIONS(3065), - [aux_sym_preproc_def_token1] = ACTIONS(3065), - [aux_sym_preproc_if_token1] = ACTIONS(3065), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3065), - [sym_preproc_directive] = ACTIONS(3065), - [anon_sym_LPAREN2] = ACTIONS(3067), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP_AMP] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym___extension__] = ACTIONS(3065), - [anon_sym_typedef] = ACTIONS(3065), - [anon_sym_extern] = ACTIONS(3065), - [anon_sym___attribute__] = ACTIONS(3065), - [anon_sym_COLON_COLON] = ACTIONS(3067), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3067), - [anon_sym___declspec] = ACTIONS(3065), - [anon_sym___based] = ACTIONS(3065), - [anon_sym___cdecl] = ACTIONS(3065), - [anon_sym___clrcall] = ACTIONS(3065), - [anon_sym___stdcall] = ACTIONS(3065), - [anon_sym___fastcall] = ACTIONS(3065), - [anon_sym___thiscall] = ACTIONS(3065), - [anon_sym___vectorcall] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_signed] = ACTIONS(3065), - [anon_sym_unsigned] = ACTIONS(3065), - [anon_sym_long] = ACTIONS(3065), - [anon_sym_short] = ACTIONS(3065), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(3065), - [anon_sym_register] = ACTIONS(3065), - [anon_sym_inline] = ACTIONS(3065), - [anon_sym___inline] = ACTIONS(3065), - [anon_sym___inline__] = ACTIONS(3065), - [anon_sym___forceinline] = ACTIONS(3065), - [anon_sym_thread_local] = ACTIONS(3065), - [anon_sym___thread] = ACTIONS(3065), - [anon_sym_const] = ACTIONS(3065), - [anon_sym_constexpr] = ACTIONS(3065), - [anon_sym_volatile] = ACTIONS(3065), - [anon_sym_restrict] = ACTIONS(3065), - [anon_sym___restrict__] = ACTIONS(3065), - [anon_sym__Atomic] = ACTIONS(3065), - [anon_sym__Noreturn] = ACTIONS(3065), - [anon_sym_noreturn] = ACTIONS(3065), - [anon_sym_mutable] = ACTIONS(3065), - [anon_sym_constinit] = ACTIONS(3065), - [anon_sym_consteval] = ACTIONS(3065), - [sym_primitive_type] = ACTIONS(3065), - [anon_sym_enum] = ACTIONS(3065), - [anon_sym_class] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(3065), - [anon_sym_union] = ACTIONS(3065), - [anon_sym_if] = ACTIONS(3065), - [anon_sym_else] = ACTIONS(3065), - [anon_sym_switch] = ACTIONS(3065), - [anon_sym_case] = ACTIONS(3065), - [anon_sym_default] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3065), - [anon_sym_do] = ACTIONS(3065), - [anon_sym_for] = ACTIONS(3065), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_break] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(3065), - [anon_sym_goto] = ACTIONS(3065), - [anon_sym_not] = ACTIONS(3065), - [anon_sym_compl] = ACTIONS(3065), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_sizeof] = ACTIONS(3065), - [anon_sym___alignof__] = ACTIONS(3065), - [anon_sym___alignof] = ACTIONS(3065), - [anon_sym__alignof] = ACTIONS(3065), - [anon_sym_alignof] = ACTIONS(3065), - [anon_sym__Alignof] = ACTIONS(3065), - [anon_sym_offsetof] = ACTIONS(3065), - [anon_sym__Generic] = ACTIONS(3065), - [anon_sym_asm] = ACTIONS(3065), - [anon_sym___asm__] = ACTIONS(3065), - [sym_number_literal] = ACTIONS(3067), - [anon_sym_L_SQUOTE] = ACTIONS(3067), - [anon_sym_u_SQUOTE] = ACTIONS(3067), - [anon_sym_U_SQUOTE] = ACTIONS(3067), - [anon_sym_u8_SQUOTE] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3067), - [anon_sym_L_DQUOTE] = ACTIONS(3067), - [anon_sym_u_DQUOTE] = ACTIONS(3067), - [anon_sym_U_DQUOTE] = ACTIONS(3067), - [anon_sym_u8_DQUOTE] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(3067), - [sym_true] = ACTIONS(3065), - [sym_false] = ACTIONS(3065), - [anon_sym_NULL] = ACTIONS(3065), - [anon_sym_nullptr] = ACTIONS(3065), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3065), - [anon_sym_decltype] = ACTIONS(3065), - [anon_sym_virtual] = ACTIONS(3065), - [anon_sym_alignas] = ACTIONS(3065), - [anon_sym_explicit] = ACTIONS(3065), - [anon_sym_typename] = ACTIONS(3065), - [anon_sym_template] = ACTIONS(3065), - [anon_sym_operator] = ACTIONS(3065), - [anon_sym_try] = ACTIONS(3065), - [anon_sym_delete] = ACTIONS(3065), - [anon_sym_throw] = ACTIONS(3065), - [anon_sym_namespace] = ACTIONS(3065), - [anon_sym_using] = ACTIONS(3065), - [anon_sym_static_assert] = ACTIONS(3065), - [anon_sym_concept] = ACTIONS(3065), - [anon_sym_co_return] = ACTIONS(3065), - [anon_sym_co_yield] = ACTIONS(3065), - [anon_sym_R_DQUOTE] = ACTIONS(3067), - [anon_sym_LR_DQUOTE] = ACTIONS(3067), - [anon_sym_uR_DQUOTE] = ACTIONS(3067), - [anon_sym_UR_DQUOTE] = ACTIONS(3067), - [anon_sym_u8R_DQUOTE] = ACTIONS(3067), - [anon_sym_co_await] = ACTIONS(3065), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(3065), - [sym_this] = ACTIONS(3065), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [991] = { - [sym_identifier] = ACTIONS(2985), - [aux_sym_preproc_include_token1] = ACTIONS(2985), - [aux_sym_preproc_def_token1] = ACTIONS(2985), - [aux_sym_preproc_if_token1] = ACTIONS(2985), - [aux_sym_preproc_if_token2] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2985), - [sym_preproc_directive] = ACTIONS(2985), - [anon_sym_LPAREN2] = ACTIONS(2987), - [anon_sym_BANG] = ACTIONS(2987), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym___extension__] = ACTIONS(2985), - [anon_sym_typedef] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym___attribute__] = ACTIONS(2985), - [anon_sym_COLON_COLON] = ACTIONS(2987), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), - [anon_sym___declspec] = ACTIONS(2985), - [anon_sym___based] = ACTIONS(2985), - [anon_sym___cdecl] = ACTIONS(2985), - [anon_sym___clrcall] = ACTIONS(2985), - [anon_sym___stdcall] = ACTIONS(2985), - [anon_sym___fastcall] = ACTIONS(2985), - [anon_sym___thiscall] = ACTIONS(2985), - [anon_sym___vectorcall] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_signed] = ACTIONS(2985), - [anon_sym_unsigned] = ACTIONS(2985), - [anon_sym_long] = ACTIONS(2985), - [anon_sym_short] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_register] = ACTIONS(2985), - [anon_sym_inline] = ACTIONS(2985), - [anon_sym___inline] = ACTIONS(2985), - [anon_sym___inline__] = ACTIONS(2985), - [anon_sym___forceinline] = ACTIONS(2985), - [anon_sym_thread_local] = ACTIONS(2985), - [anon_sym___thread] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_constexpr] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_restrict] = ACTIONS(2985), - [anon_sym___restrict__] = ACTIONS(2985), - [anon_sym__Atomic] = ACTIONS(2985), - [anon_sym__Noreturn] = ACTIONS(2985), - [anon_sym_noreturn] = ACTIONS(2985), - [anon_sym_mutable] = ACTIONS(2985), - [anon_sym_constinit] = ACTIONS(2985), - [anon_sym_consteval] = ACTIONS(2985), - [sym_primitive_type] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_class] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_union] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_switch] = ACTIONS(2985), - [anon_sym_case] = ACTIONS(2985), - [anon_sym_default] = ACTIONS(2985), - [anon_sym_while] = ACTIONS(2985), - [anon_sym_do] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym_not] = ACTIONS(2985), - [anon_sym_compl] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_sizeof] = ACTIONS(2985), - [anon_sym___alignof__] = ACTIONS(2985), - [anon_sym___alignof] = ACTIONS(2985), - [anon_sym__alignof] = ACTIONS(2985), - [anon_sym_alignof] = ACTIONS(2985), - [anon_sym__Alignof] = ACTIONS(2985), - [anon_sym_offsetof] = ACTIONS(2985), - [anon_sym__Generic] = ACTIONS(2985), - [anon_sym_asm] = ACTIONS(2985), - [anon_sym___asm__] = ACTIONS(2985), - [sym_number_literal] = ACTIONS(2987), - [anon_sym_L_SQUOTE] = ACTIONS(2987), - [anon_sym_u_SQUOTE] = ACTIONS(2987), - [anon_sym_U_SQUOTE] = ACTIONS(2987), - [anon_sym_u8_SQUOTE] = ACTIONS(2987), - [anon_sym_SQUOTE] = ACTIONS(2987), - [anon_sym_L_DQUOTE] = ACTIONS(2987), - [anon_sym_u_DQUOTE] = ACTIONS(2987), - [anon_sym_U_DQUOTE] = ACTIONS(2987), - [anon_sym_u8_DQUOTE] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [anon_sym_NULL] = ACTIONS(2985), - [anon_sym_nullptr] = ACTIONS(2985), + [1026] = { + [sym_type_qualifier] = STATE(1009), + [sym__expression] = STATE(4293), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1009), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3847), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3849), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2985), - [anon_sym_decltype] = ACTIONS(2985), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_alignas] = ACTIONS(2985), - [anon_sym_explicit] = ACTIONS(2985), - [anon_sym_typename] = ACTIONS(2985), - [anon_sym_template] = ACTIONS(2985), - [anon_sym_operator] = ACTIONS(2985), - [anon_sym_try] = ACTIONS(2985), - [anon_sym_delete] = ACTIONS(2985), - [anon_sym_throw] = ACTIONS(2985), - [anon_sym_namespace] = ACTIONS(2985), - [anon_sym_using] = ACTIONS(2985), - [anon_sym_static_assert] = ACTIONS(2985), - [anon_sym_concept] = ACTIONS(2985), - [anon_sym_co_return] = ACTIONS(2985), - [anon_sym_co_yield] = ACTIONS(2985), - [anon_sym_R_DQUOTE] = ACTIONS(2987), - [anon_sym_LR_DQUOTE] = ACTIONS(2987), - [anon_sym_uR_DQUOTE] = ACTIONS(2987), - [anon_sym_UR_DQUOTE] = ACTIONS(2987), - [anon_sym_u8R_DQUOTE] = ACTIONS(2987), - [anon_sym_co_await] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_requires] = ACTIONS(2985), - [sym_this] = ACTIONS(2985), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [992] = { - [sym_identifier] = ACTIONS(2981), - [aux_sym_preproc_include_token1] = ACTIONS(2981), - [aux_sym_preproc_def_token1] = ACTIONS(2981), - [aux_sym_preproc_if_token1] = ACTIONS(2981), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2981), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2981), - [sym_preproc_directive] = ACTIONS(2981), - [anon_sym_LPAREN2] = ACTIONS(2983), - [anon_sym_BANG] = ACTIONS(2983), - [anon_sym_TILDE] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_AMP_AMP] = ACTIONS(2983), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_SEMI] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(2981), - [anon_sym_typedef] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym___attribute__] = ACTIONS(2981), - [anon_sym_COLON_COLON] = ACTIONS(2983), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), - [anon_sym___declspec] = ACTIONS(2981), - [anon_sym___based] = ACTIONS(2981), - [anon_sym___cdecl] = ACTIONS(2981), - [anon_sym___clrcall] = ACTIONS(2981), - [anon_sym___stdcall] = ACTIONS(2981), - [anon_sym___fastcall] = ACTIONS(2981), - [anon_sym___thiscall] = ACTIONS(2981), - [anon_sym___vectorcall] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_signed] = ACTIONS(2981), - [anon_sym_unsigned] = ACTIONS(2981), - [anon_sym_long] = ACTIONS(2981), - [anon_sym_short] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_static] = ACTIONS(2981), - [anon_sym_register] = ACTIONS(2981), - [anon_sym_inline] = ACTIONS(2981), - [anon_sym___inline] = ACTIONS(2981), - [anon_sym___inline__] = ACTIONS(2981), - [anon_sym___forceinline] = ACTIONS(2981), - [anon_sym_thread_local] = ACTIONS(2981), - [anon_sym___thread] = ACTIONS(2981), - [anon_sym_const] = ACTIONS(2981), - [anon_sym_constexpr] = ACTIONS(2981), - [anon_sym_volatile] = ACTIONS(2981), - [anon_sym_restrict] = ACTIONS(2981), - [anon_sym___restrict__] = ACTIONS(2981), - [anon_sym__Atomic] = ACTIONS(2981), - [anon_sym__Noreturn] = ACTIONS(2981), - [anon_sym_noreturn] = ACTIONS(2981), - [anon_sym_mutable] = ACTIONS(2981), - [anon_sym_constinit] = ACTIONS(2981), - [anon_sym_consteval] = ACTIONS(2981), - [sym_primitive_type] = ACTIONS(2981), - [anon_sym_enum] = ACTIONS(2981), - [anon_sym_class] = ACTIONS(2981), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_union] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_else] = ACTIONS(2981), - [anon_sym_switch] = ACTIONS(2981), - [anon_sym_case] = ACTIONS(2981), - [anon_sym_default] = ACTIONS(2981), - [anon_sym_while] = ACTIONS(2981), - [anon_sym_do] = ACTIONS(2981), - [anon_sym_for] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_goto] = ACTIONS(2981), - [anon_sym_not] = ACTIONS(2981), - [anon_sym_compl] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_sizeof] = ACTIONS(2981), - [anon_sym___alignof__] = ACTIONS(2981), - [anon_sym___alignof] = ACTIONS(2981), - [anon_sym__alignof] = ACTIONS(2981), - [anon_sym_alignof] = ACTIONS(2981), - [anon_sym__Alignof] = ACTIONS(2981), - [anon_sym_offsetof] = ACTIONS(2981), - [anon_sym__Generic] = ACTIONS(2981), - [anon_sym_asm] = ACTIONS(2981), - [anon_sym___asm__] = ACTIONS(2981), - [sym_number_literal] = ACTIONS(2983), - [anon_sym_L_SQUOTE] = ACTIONS(2983), - [anon_sym_u_SQUOTE] = ACTIONS(2983), - [anon_sym_U_SQUOTE] = ACTIONS(2983), - [anon_sym_u8_SQUOTE] = ACTIONS(2983), - [anon_sym_SQUOTE] = ACTIONS(2983), - [anon_sym_L_DQUOTE] = ACTIONS(2983), - [anon_sym_u_DQUOTE] = ACTIONS(2983), - [anon_sym_U_DQUOTE] = ACTIONS(2983), - [anon_sym_u8_DQUOTE] = ACTIONS(2983), - [anon_sym_DQUOTE] = ACTIONS(2983), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [anon_sym_NULL] = ACTIONS(2981), - [anon_sym_nullptr] = ACTIONS(2981), + [1027] = { + [sym_type_qualifier] = STATE(1018), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1018), + [sym_identifier] = ACTIONS(3851), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3829), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2981), - [anon_sym_decltype] = ACTIONS(2981), - [anon_sym_virtual] = ACTIONS(2981), - [anon_sym_alignas] = ACTIONS(2981), - [anon_sym_explicit] = ACTIONS(2981), - [anon_sym_typename] = ACTIONS(2981), - [anon_sym_template] = ACTIONS(2981), - [anon_sym_operator] = ACTIONS(2981), - [anon_sym_try] = ACTIONS(2981), - [anon_sym_delete] = ACTIONS(2981), - [anon_sym_throw] = ACTIONS(2981), - [anon_sym_namespace] = ACTIONS(2981), - [anon_sym_using] = ACTIONS(2981), - [anon_sym_static_assert] = ACTIONS(2981), - [anon_sym_concept] = ACTIONS(2981), - [anon_sym_co_return] = ACTIONS(2981), - [anon_sym_co_yield] = ACTIONS(2981), - [anon_sym_R_DQUOTE] = ACTIONS(2983), - [anon_sym_LR_DQUOTE] = ACTIONS(2983), - [anon_sym_uR_DQUOTE] = ACTIONS(2983), - [anon_sym_UR_DQUOTE] = ACTIONS(2983), - [anon_sym_u8R_DQUOTE] = ACTIONS(2983), - [anon_sym_co_await] = ACTIONS(2981), - [anon_sym_new] = ACTIONS(2981), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2981), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [993] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1028] = { + [sym_type_qualifier] = STATE(1024), + [sym__expression] = STATE(4188), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [aux_sym__type_definition_type_repeat1] = STATE(1024), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3853), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(3855), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_constexpr] = ACTIONS(3761), + [anon_sym_volatile] = ACTIONS(3761), + [anon_sym_restrict] = ACTIONS(3761), + [anon_sym___restrict__] = ACTIONS(3761), + [anon_sym__Atomic] = ACTIONS(3761), + [anon_sym__Noreturn] = ACTIONS(3761), + [anon_sym_noreturn] = ACTIONS(3761), + [anon_sym_mutable] = ACTIONS(3761), + [anon_sym_constinit] = ACTIONS(3761), + [anon_sym_consteval] = ACTIONS(3761), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [994] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1029] = { + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(5895), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5742), + [sym_array_declarator] = STATE(5742), + [sym__expression] = STATE(2914), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3108), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5222), + [sym_qualified_identifier] = STATE(3111), + [sym_qualified_type_identifier] = STATE(7063), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(3403), + [anon_sym_LPAREN2] = ACTIONS(3405), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(3407), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1982), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_operator] = ACTIONS(2000), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, - [995] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [1030] = { + [sym_catch_clause] = STATE(1030), + [aux_sym_constructor_try_statement_repeat1] = STATE(1030), + [sym_identifier] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_PLUS] = ACTIONS(2218), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2218), + [anon_sym_typedef] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym___attribute__] = ACTIONS(2218), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2220), + [anon_sym___declspec] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_signed] = ACTIONS(2218), + [anon_sym_unsigned] = ACTIONS(2218), + [anon_sym_long] = ACTIONS(2218), + [anon_sym_short] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_inline] = ACTIONS(2218), + [anon_sym___inline] = ACTIONS(2218), + [anon_sym___inline__] = ACTIONS(2218), + [anon_sym___forceinline] = ACTIONS(2218), + [anon_sym_thread_local] = ACTIONS(2218), + [anon_sym___thread] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_constexpr] = ACTIONS(2218), + [anon_sym_volatile] = ACTIONS(2218), + [anon_sym_restrict] = ACTIONS(2218), + [anon_sym___restrict__] = ACTIONS(2218), + [anon_sym__Atomic] = ACTIONS(2218), + [anon_sym__Noreturn] = ACTIONS(2218), + [anon_sym_noreturn] = ACTIONS(2218), + [anon_sym_mutable] = ACTIONS(2218), + [anon_sym_constinit] = ACTIONS(2218), + [anon_sym_consteval] = ACTIONS(2218), + [sym_primitive_type] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_class] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_else] = ACTIONS(2218), + [anon_sym_switch] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_do] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_goto] = ACTIONS(2218), + [anon_sym_not] = ACTIONS(2218), + [anon_sym_compl] = ACTIONS(2218), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(2218), + [anon_sym___alignof__] = ACTIONS(2218), + [anon_sym___alignof] = ACTIONS(2218), + [anon_sym__alignof] = ACTIONS(2218), + [anon_sym_alignof] = ACTIONS(2218), + [anon_sym__Alignof] = ACTIONS(2218), + [anon_sym_offsetof] = ACTIONS(2218), + [anon_sym__Generic] = ACTIONS(2218), + [anon_sym_asm] = ACTIONS(2218), + [anon_sym___asm__] = ACTIONS(2218), + [sym_number_literal] = ACTIONS(2220), + [anon_sym_L_SQUOTE] = ACTIONS(2220), + [anon_sym_u_SQUOTE] = ACTIONS(2220), + [anon_sym_U_SQUOTE] = ACTIONS(2220), + [anon_sym_u8_SQUOTE] = ACTIONS(2220), + [anon_sym_SQUOTE] = ACTIONS(2220), + [anon_sym_L_DQUOTE] = ACTIONS(2220), + [anon_sym_u_DQUOTE] = ACTIONS(2220), + [anon_sym_U_DQUOTE] = ACTIONS(2220), + [anon_sym_u8_DQUOTE] = ACTIONS(2220), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_true] = ACTIONS(2218), + [sym_false] = ACTIONS(2218), + [anon_sym_NULL] = ACTIONS(2218), + [anon_sym_nullptr] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2218), + [anon_sym_virtual] = ACTIONS(2218), + [anon_sym_alignas] = ACTIONS(2218), + [anon_sym_typename] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_try] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(2218), + [anon_sym_throw] = ACTIONS(2218), + [anon_sym_co_return] = ACTIONS(2218), + [anon_sym_co_yield] = ACTIONS(2218), + [anon_sym_catch] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(2220), + [anon_sym_LR_DQUOTE] = ACTIONS(2220), + [anon_sym_uR_DQUOTE] = ACTIONS(2220), + [anon_sym_UR_DQUOTE] = ACTIONS(2220), + [anon_sym_u8R_DQUOTE] = ACTIONS(2220), + [anon_sym_co_await] = ACTIONS(2218), + [anon_sym_new] = ACTIONS(2218), + [anon_sym_requires] = ACTIONS(2218), + [sym_this] = ACTIONS(2218), }, - [996] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - }, - [997] = { - [sym_identifier] = ACTIONS(2905), - [aux_sym_preproc_include_token1] = ACTIONS(2905), - [aux_sym_preproc_def_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token2] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2905), - [sym_preproc_directive] = ACTIONS(2905), - [anon_sym_LPAREN2] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym___extension__] = ACTIONS(2905), - [anon_sym_typedef] = ACTIONS(2905), - [anon_sym_extern] = ACTIONS(2905), - [anon_sym___attribute__] = ACTIONS(2905), - [anon_sym_COLON_COLON] = ACTIONS(2907), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2907), - [anon_sym___declspec] = ACTIONS(2905), - [anon_sym___based] = ACTIONS(2905), - [anon_sym___cdecl] = ACTIONS(2905), - [anon_sym___clrcall] = ACTIONS(2905), - [anon_sym___stdcall] = ACTIONS(2905), - [anon_sym___fastcall] = ACTIONS(2905), - [anon_sym___thiscall] = ACTIONS(2905), - [anon_sym___vectorcall] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_signed] = ACTIONS(2905), - [anon_sym_unsigned] = ACTIONS(2905), - [anon_sym_long] = ACTIONS(2905), - [anon_sym_short] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_register] = ACTIONS(2905), - [anon_sym_inline] = ACTIONS(2905), - [anon_sym___inline] = ACTIONS(2905), - [anon_sym___inline__] = ACTIONS(2905), - [anon_sym___forceinline] = ACTIONS(2905), - [anon_sym_thread_local] = ACTIONS(2905), - [anon_sym___thread] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_constexpr] = ACTIONS(2905), - [anon_sym_volatile] = ACTIONS(2905), - [anon_sym_restrict] = ACTIONS(2905), - [anon_sym___restrict__] = ACTIONS(2905), - [anon_sym__Atomic] = ACTIONS(2905), - [anon_sym__Noreturn] = ACTIONS(2905), - [anon_sym_noreturn] = ACTIONS(2905), - [anon_sym_mutable] = ACTIONS(2905), - [anon_sym_constinit] = ACTIONS(2905), - [anon_sym_consteval] = ACTIONS(2905), - [sym_primitive_type] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_union] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2905), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2905), - [anon_sym_default] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_do] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_goto] = ACTIONS(2905), - [anon_sym_not] = ACTIONS(2905), - [anon_sym_compl] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_sizeof] = ACTIONS(2905), - [anon_sym___alignof__] = ACTIONS(2905), - [anon_sym___alignof] = ACTIONS(2905), - [anon_sym__alignof] = ACTIONS(2905), - [anon_sym_alignof] = ACTIONS(2905), - [anon_sym__Alignof] = ACTIONS(2905), - [anon_sym_offsetof] = ACTIONS(2905), - [anon_sym__Generic] = ACTIONS(2905), - [anon_sym_asm] = ACTIONS(2905), - [anon_sym___asm__] = ACTIONS(2905), - [sym_number_literal] = ACTIONS(2907), - [anon_sym_L_SQUOTE] = ACTIONS(2907), - [anon_sym_u_SQUOTE] = ACTIONS(2907), - [anon_sym_U_SQUOTE] = ACTIONS(2907), - [anon_sym_u8_SQUOTE] = ACTIONS(2907), - [anon_sym_SQUOTE] = ACTIONS(2907), - [anon_sym_L_DQUOTE] = ACTIONS(2907), - [anon_sym_u_DQUOTE] = ACTIONS(2907), - [anon_sym_U_DQUOTE] = ACTIONS(2907), - [anon_sym_u8_DQUOTE] = ACTIONS(2907), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_true] = ACTIONS(2905), - [sym_false] = ACTIONS(2905), - [anon_sym_NULL] = ACTIONS(2905), - [anon_sym_nullptr] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2905), - [anon_sym_decltype] = ACTIONS(2905), - [anon_sym_virtual] = ACTIONS(2905), - [anon_sym_alignas] = ACTIONS(2905), - [anon_sym_explicit] = ACTIONS(2905), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(2905), - [anon_sym_operator] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_throw] = ACTIONS(2905), - [anon_sym_namespace] = ACTIONS(2905), - [anon_sym_using] = ACTIONS(2905), - [anon_sym_static_assert] = ACTIONS(2905), - [anon_sym_concept] = ACTIONS(2905), - [anon_sym_co_return] = ACTIONS(2905), - [anon_sym_co_yield] = ACTIONS(2905), - [anon_sym_R_DQUOTE] = ACTIONS(2907), - [anon_sym_LR_DQUOTE] = ACTIONS(2907), - [anon_sym_uR_DQUOTE] = ACTIONS(2907), - [anon_sym_UR_DQUOTE] = ACTIONS(2907), - [anon_sym_u8R_DQUOTE] = ACTIONS(2907), - [anon_sym_co_await] = ACTIONS(2905), - [anon_sym_new] = ACTIONS(2905), - [anon_sym_requires] = ACTIONS(2905), - [sym_this] = ACTIONS(2905), + [1031] = { + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(5895), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5742), + [sym_array_declarator] = STATE(5742), + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3042), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5162), + [sym_qualified_identifier] = STATE(3040), + [sym_qualified_type_identifier] = STATE(7185), + [sym_operator_name] = STATE(5742), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(3257), + [anon_sym_LPAREN2] = ACTIONS(3259), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1982), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_operator] = ACTIONS(2000), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [998] = { - [sym_identifier] = ACTIONS(2901), - [aux_sym_preproc_include_token1] = ACTIONS(2901), - [aux_sym_preproc_def_token1] = ACTIONS(2901), - [aux_sym_preproc_if_token1] = ACTIONS(2901), - [aux_sym_preproc_if_token2] = ACTIONS(2901), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2901), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2901), - [sym_preproc_directive] = ACTIONS(2901), - [anon_sym_LPAREN2] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2901), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym___extension__] = ACTIONS(2901), - [anon_sym_typedef] = ACTIONS(2901), - [anon_sym_extern] = ACTIONS(2901), - [anon_sym___attribute__] = ACTIONS(2901), - [anon_sym_COLON_COLON] = ACTIONS(2903), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2903), - [anon_sym___declspec] = ACTIONS(2901), - [anon_sym___based] = ACTIONS(2901), - [anon_sym___cdecl] = ACTIONS(2901), - [anon_sym___clrcall] = ACTIONS(2901), - [anon_sym___stdcall] = ACTIONS(2901), - [anon_sym___fastcall] = ACTIONS(2901), - [anon_sym___thiscall] = ACTIONS(2901), - [anon_sym___vectorcall] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_signed] = ACTIONS(2901), - [anon_sym_unsigned] = ACTIONS(2901), - [anon_sym_long] = ACTIONS(2901), - [anon_sym_short] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_register] = ACTIONS(2901), - [anon_sym_inline] = ACTIONS(2901), - [anon_sym___inline] = ACTIONS(2901), - [anon_sym___inline__] = ACTIONS(2901), - [anon_sym___forceinline] = ACTIONS(2901), - [anon_sym_thread_local] = ACTIONS(2901), - [anon_sym___thread] = ACTIONS(2901), - [anon_sym_const] = ACTIONS(2901), - [anon_sym_constexpr] = ACTIONS(2901), - [anon_sym_volatile] = ACTIONS(2901), - [anon_sym_restrict] = ACTIONS(2901), - [anon_sym___restrict__] = ACTIONS(2901), - [anon_sym__Atomic] = ACTIONS(2901), - [anon_sym__Noreturn] = ACTIONS(2901), - [anon_sym_noreturn] = ACTIONS(2901), - [anon_sym_mutable] = ACTIONS(2901), - [anon_sym_constinit] = ACTIONS(2901), - [anon_sym_consteval] = ACTIONS(2901), - [sym_primitive_type] = ACTIONS(2901), - [anon_sym_enum] = ACTIONS(2901), - [anon_sym_class] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2901), - [anon_sym_union] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2901), - [anon_sym_else] = ACTIONS(2901), - [anon_sym_switch] = ACTIONS(2901), - [anon_sym_case] = ACTIONS(2901), - [anon_sym_default] = ACTIONS(2901), - [anon_sym_while] = ACTIONS(2901), - [anon_sym_do] = ACTIONS(2901), - [anon_sym_for] = ACTIONS(2901), - [anon_sym_return] = ACTIONS(2901), - [anon_sym_break] = ACTIONS(2901), - [anon_sym_continue] = ACTIONS(2901), - [anon_sym_goto] = ACTIONS(2901), - [anon_sym_not] = ACTIONS(2901), - [anon_sym_compl] = ACTIONS(2901), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_sizeof] = ACTIONS(2901), - [anon_sym___alignof__] = ACTIONS(2901), - [anon_sym___alignof] = ACTIONS(2901), - [anon_sym__alignof] = ACTIONS(2901), - [anon_sym_alignof] = ACTIONS(2901), - [anon_sym__Alignof] = ACTIONS(2901), - [anon_sym_offsetof] = ACTIONS(2901), - [anon_sym__Generic] = ACTIONS(2901), - [anon_sym_asm] = ACTIONS(2901), - [anon_sym___asm__] = ACTIONS(2901), - [sym_number_literal] = ACTIONS(2903), - [anon_sym_L_SQUOTE] = ACTIONS(2903), - [anon_sym_u_SQUOTE] = ACTIONS(2903), - [anon_sym_U_SQUOTE] = ACTIONS(2903), - [anon_sym_u8_SQUOTE] = ACTIONS(2903), - [anon_sym_SQUOTE] = ACTIONS(2903), - [anon_sym_L_DQUOTE] = ACTIONS(2903), - [anon_sym_u_DQUOTE] = ACTIONS(2903), - [anon_sym_U_DQUOTE] = ACTIONS(2903), - [anon_sym_u8_DQUOTE] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym_true] = ACTIONS(2901), - [sym_false] = ACTIONS(2901), - [anon_sym_NULL] = ACTIONS(2901), - [anon_sym_nullptr] = ACTIONS(2901), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2901), - [anon_sym_virtual] = ACTIONS(2901), - [anon_sym_alignas] = ACTIONS(2901), - [anon_sym_explicit] = ACTIONS(2901), - [anon_sym_typename] = ACTIONS(2901), - [anon_sym_template] = ACTIONS(2901), - [anon_sym_operator] = ACTIONS(2901), - [anon_sym_try] = ACTIONS(2901), - [anon_sym_delete] = ACTIONS(2901), - [anon_sym_throw] = ACTIONS(2901), - [anon_sym_namespace] = ACTIONS(2901), - [anon_sym_using] = ACTIONS(2901), - [anon_sym_static_assert] = ACTIONS(2901), - [anon_sym_concept] = ACTIONS(2901), - [anon_sym_co_return] = ACTIONS(2901), - [anon_sym_co_yield] = ACTIONS(2901), - [anon_sym_R_DQUOTE] = ACTIONS(2903), - [anon_sym_LR_DQUOTE] = ACTIONS(2903), - [anon_sym_uR_DQUOTE] = ACTIONS(2903), - [anon_sym_UR_DQUOTE] = ACTIONS(2903), - [anon_sym_u8R_DQUOTE] = ACTIONS(2903), - [anon_sym_co_await] = ACTIONS(2901), - [anon_sym_new] = ACTIONS(2901), - [anon_sym_requires] = ACTIONS(2901), - [sym_this] = ACTIONS(2901), + [1032] = { + [sym_catch_clause] = STATE(1030), + [aux_sym_constructor_try_statement_repeat1] = STATE(1030), + [sym_identifier] = ACTIONS(2212), + [anon_sym_LPAREN2] = ACTIONS(2214), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym___extension__] = ACTIONS(2212), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_extern] = ACTIONS(2212), + [anon_sym___attribute__] = ACTIONS(2212), + [anon_sym_COLON_COLON] = ACTIONS(2214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [anon_sym___declspec] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_signed] = ACTIONS(2212), + [anon_sym_unsigned] = ACTIONS(2212), + [anon_sym_long] = ACTIONS(2212), + [anon_sym_short] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_register] = ACTIONS(2212), + [anon_sym_inline] = ACTIONS(2212), + [anon_sym___inline] = ACTIONS(2212), + [anon_sym___inline__] = ACTIONS(2212), + [anon_sym___forceinline] = ACTIONS(2212), + [anon_sym_thread_local] = ACTIONS(2212), + [anon_sym___thread] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_constexpr] = ACTIONS(2212), + [anon_sym_volatile] = ACTIONS(2212), + [anon_sym_restrict] = ACTIONS(2212), + [anon_sym___restrict__] = ACTIONS(2212), + [anon_sym__Atomic] = ACTIONS(2212), + [anon_sym__Noreturn] = ACTIONS(2212), + [anon_sym_noreturn] = ACTIONS(2212), + [anon_sym_mutable] = ACTIONS(2212), + [anon_sym_constinit] = ACTIONS(2212), + [anon_sym_consteval] = ACTIONS(2212), + [sym_primitive_type] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_struct] = ACTIONS(2212), + [anon_sym_union] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_else] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_goto] = ACTIONS(2212), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2214), + [anon_sym_PLUS_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2212), + [anon_sym___alignof__] = ACTIONS(2212), + [anon_sym___alignof] = ACTIONS(2212), + [anon_sym__alignof] = ACTIONS(2212), + [anon_sym_alignof] = ACTIONS(2212), + [anon_sym__Alignof] = ACTIONS(2212), + [anon_sym_offsetof] = ACTIONS(2212), + [anon_sym__Generic] = ACTIONS(2212), + [anon_sym_asm] = ACTIONS(2212), + [anon_sym___asm__] = ACTIONS(2212), + [sym_number_literal] = ACTIONS(2214), + [anon_sym_L_SQUOTE] = ACTIONS(2214), + [anon_sym_u_SQUOTE] = ACTIONS(2214), + [anon_sym_U_SQUOTE] = ACTIONS(2214), + [anon_sym_u8_SQUOTE] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2214), + [anon_sym_L_DQUOTE] = ACTIONS(2214), + [anon_sym_u_DQUOTE] = ACTIONS(2214), + [anon_sym_U_DQUOTE] = ACTIONS(2214), + [anon_sym_u8_DQUOTE] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2214), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [anon_sym_NULL] = ACTIONS(2212), + [anon_sym_nullptr] = ACTIONS(2212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2212), + [anon_sym_decltype] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(2212), + [anon_sym_alignas] = ACTIONS(2212), + [anon_sym_typename] = ACTIONS(2212), + [anon_sym_template] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_co_return] = ACTIONS(2212), + [anon_sym_co_yield] = ACTIONS(2212), + [anon_sym_catch] = ACTIONS(3860), + [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(2212), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_requires] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), }, - [999] = { - [sym_identifier] = ACTIONS(2897), - [aux_sym_preproc_include_token1] = ACTIONS(2897), - [aux_sym_preproc_def_token1] = ACTIONS(2897), - [aux_sym_preproc_if_token1] = ACTIONS(2897), - [aux_sym_preproc_if_token2] = ACTIONS(2897), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2897), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2897), - [sym_preproc_directive] = ACTIONS(2897), - [anon_sym_LPAREN2] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym___extension__] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2897), - [anon_sym_extern] = ACTIONS(2897), - [anon_sym___attribute__] = ACTIONS(2897), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2899), - [anon_sym___declspec] = ACTIONS(2897), - [anon_sym___based] = ACTIONS(2897), - [anon_sym___cdecl] = ACTIONS(2897), - [anon_sym___clrcall] = ACTIONS(2897), - [anon_sym___stdcall] = ACTIONS(2897), - [anon_sym___fastcall] = ACTIONS(2897), - [anon_sym___thiscall] = ACTIONS(2897), - [anon_sym___vectorcall] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_signed] = ACTIONS(2897), - [anon_sym_unsigned] = ACTIONS(2897), - [anon_sym_long] = ACTIONS(2897), - [anon_sym_short] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_register] = ACTIONS(2897), - [anon_sym_inline] = ACTIONS(2897), - [anon_sym___inline] = ACTIONS(2897), - [anon_sym___inline__] = ACTIONS(2897), - [anon_sym___forceinline] = ACTIONS(2897), - [anon_sym_thread_local] = ACTIONS(2897), - [anon_sym___thread] = ACTIONS(2897), - [anon_sym_const] = ACTIONS(2897), - [anon_sym_constexpr] = ACTIONS(2897), - [anon_sym_volatile] = ACTIONS(2897), - [anon_sym_restrict] = ACTIONS(2897), - [anon_sym___restrict__] = ACTIONS(2897), - [anon_sym__Atomic] = ACTIONS(2897), - [anon_sym__Noreturn] = ACTIONS(2897), - [anon_sym_noreturn] = ACTIONS(2897), - [anon_sym_mutable] = ACTIONS(2897), - [anon_sym_constinit] = ACTIONS(2897), - [anon_sym_consteval] = ACTIONS(2897), - [sym_primitive_type] = ACTIONS(2897), - [anon_sym_enum] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2897), - [anon_sym_union] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2897), - [anon_sym_else] = ACTIONS(2897), - [anon_sym_switch] = ACTIONS(2897), - [anon_sym_case] = ACTIONS(2897), - [anon_sym_default] = ACTIONS(2897), - [anon_sym_while] = ACTIONS(2897), - [anon_sym_do] = ACTIONS(2897), - [anon_sym_for] = ACTIONS(2897), - [anon_sym_return] = ACTIONS(2897), - [anon_sym_break] = ACTIONS(2897), - [anon_sym_continue] = ACTIONS(2897), - [anon_sym_goto] = ACTIONS(2897), - [anon_sym_not] = ACTIONS(2897), - [anon_sym_compl] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_sizeof] = ACTIONS(2897), - [anon_sym___alignof__] = ACTIONS(2897), - [anon_sym___alignof] = ACTIONS(2897), - [anon_sym__alignof] = ACTIONS(2897), - [anon_sym_alignof] = ACTIONS(2897), - [anon_sym__Alignof] = ACTIONS(2897), - [anon_sym_offsetof] = ACTIONS(2897), - [anon_sym__Generic] = ACTIONS(2897), - [anon_sym_asm] = ACTIONS(2897), - [anon_sym___asm__] = ACTIONS(2897), - [sym_number_literal] = ACTIONS(2899), - [anon_sym_L_SQUOTE] = ACTIONS(2899), - [anon_sym_u_SQUOTE] = ACTIONS(2899), - [anon_sym_U_SQUOTE] = ACTIONS(2899), - [anon_sym_u8_SQUOTE] = ACTIONS(2899), - [anon_sym_SQUOTE] = ACTIONS(2899), - [anon_sym_L_DQUOTE] = ACTIONS(2899), - [anon_sym_u_DQUOTE] = ACTIONS(2899), - [anon_sym_U_DQUOTE] = ACTIONS(2899), - [anon_sym_u8_DQUOTE] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [sym_true] = ACTIONS(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2897), - [anon_sym_nullptr] = ACTIONS(2897), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2897), - [anon_sym_decltype] = ACTIONS(2897), - [anon_sym_virtual] = ACTIONS(2897), - [anon_sym_alignas] = ACTIONS(2897), - [anon_sym_explicit] = ACTIONS(2897), - [anon_sym_typename] = ACTIONS(2897), - [anon_sym_template] = ACTIONS(2897), - [anon_sym_operator] = ACTIONS(2897), - [anon_sym_try] = ACTIONS(2897), - [anon_sym_delete] = ACTIONS(2897), - [anon_sym_throw] = ACTIONS(2897), - [anon_sym_namespace] = ACTIONS(2897), - [anon_sym_using] = ACTIONS(2897), - [anon_sym_static_assert] = ACTIONS(2897), - [anon_sym_concept] = ACTIONS(2897), - [anon_sym_co_return] = ACTIONS(2897), - [anon_sym_co_yield] = ACTIONS(2897), - [anon_sym_R_DQUOTE] = ACTIONS(2899), - [anon_sym_LR_DQUOTE] = ACTIONS(2899), - [anon_sym_uR_DQUOTE] = ACTIONS(2899), - [anon_sym_UR_DQUOTE] = ACTIONS(2899), - [anon_sym_u8R_DQUOTE] = ACTIONS(2899), - [anon_sym_co_await] = ACTIONS(2897), - [anon_sym_new] = ACTIONS(2897), - [anon_sym_requires] = ACTIONS(2897), - [sym_this] = ACTIONS(2897), + [1033] = { + [sym_identifier] = ACTIONS(2134), + [anon_sym_LPAREN2] = ACTIONS(2132), + [anon_sym_BANG] = ACTIONS(2132), + [anon_sym_TILDE] = ACTIONS(2132), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2132), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym___extension__] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym___attribute__] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2134), + [anon_sym_unsigned] = ACTIONS(2134), + [anon_sym_long] = ACTIONS(2134), + [anon_sym_short] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_register] = ACTIONS(2134), + [anon_sym_inline] = ACTIONS(2134), + [anon_sym___inline] = ACTIONS(2134), + [anon_sym___inline__] = ACTIONS(2134), + [anon_sym___forceinline] = ACTIONS(2134), + [anon_sym_thread_local] = ACTIONS(2134), + [anon_sym___thread] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_constexpr] = ACTIONS(2134), + [anon_sym_volatile] = ACTIONS(2134), + [anon_sym_restrict] = ACTIONS(2134), + [anon_sym___restrict__] = ACTIONS(2134), + [anon_sym__Atomic] = ACTIONS(2134), + [anon_sym__Noreturn] = ACTIONS(2134), + [anon_sym_noreturn] = ACTIONS(2134), + [anon_sym_mutable] = ACTIONS(2134), + [anon_sym_constinit] = ACTIONS(2134), + [anon_sym_consteval] = ACTIONS(2134), + [sym_primitive_type] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_struct] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_else] = ACTIONS(2134), + [anon_sym_switch] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2134), + [anon_sym_not] = ACTIONS(2134), + [anon_sym_compl] = ACTIONS(2134), + [anon_sym_DASH_DASH] = ACTIONS(2132), + [anon_sym_PLUS_PLUS] = ACTIONS(2132), + [anon_sym_sizeof] = ACTIONS(2134), + [anon_sym___alignof__] = ACTIONS(2134), + [anon_sym___alignof] = ACTIONS(2134), + [anon_sym__alignof] = ACTIONS(2134), + [anon_sym_alignof] = ACTIONS(2134), + [anon_sym__Alignof] = ACTIONS(2134), + [anon_sym_offsetof] = ACTIONS(2134), + [anon_sym__Generic] = ACTIONS(2134), + [anon_sym_asm] = ACTIONS(2134), + [anon_sym___asm__] = ACTIONS(2134), + [sym_number_literal] = ACTIONS(2132), + [anon_sym_L_SQUOTE] = ACTIONS(2132), + [anon_sym_u_SQUOTE] = ACTIONS(2132), + [anon_sym_U_SQUOTE] = ACTIONS(2132), + [anon_sym_u8_SQUOTE] = ACTIONS(2132), + [anon_sym_SQUOTE] = ACTIONS(2132), + [anon_sym_L_DQUOTE] = ACTIONS(2132), + [anon_sym_u_DQUOTE] = ACTIONS(2132), + [anon_sym_U_DQUOTE] = ACTIONS(2132), + [anon_sym_u8_DQUOTE] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(2132), + [sym_true] = ACTIONS(2134), + [sym_false] = ACTIONS(2134), + [anon_sym_NULL] = ACTIONS(2134), + [anon_sym_nullptr] = ACTIONS(2134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2134), + [anon_sym_decltype] = ACTIONS(2134), + [anon_sym_virtual] = ACTIONS(2134), + [anon_sym_alignas] = ACTIONS(2134), + [anon_sym_typename] = ACTIONS(2134), + [anon_sym_template] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_delete] = ACTIONS(2134), + [anon_sym_throw] = ACTIONS(2134), + [anon_sym_co_return] = ACTIONS(2134), + [anon_sym_co_yield] = ACTIONS(2134), + [anon_sym_catch] = ACTIONS(2134), + [anon_sym_R_DQUOTE] = ACTIONS(2132), + [anon_sym_LR_DQUOTE] = ACTIONS(2132), + [anon_sym_uR_DQUOTE] = ACTIONS(2132), + [anon_sym_UR_DQUOTE] = ACTIONS(2132), + [anon_sym_u8R_DQUOTE] = ACTIONS(2132), + [anon_sym_co_await] = ACTIONS(2134), + [anon_sym_new] = ACTIONS(2134), + [anon_sym_requires] = ACTIONS(2134), + [sym_this] = ACTIONS(2134), }, - [1000] = { - [sym_identifier] = ACTIONS(2891), - [aux_sym_preproc_include_token1] = ACTIONS(2891), - [aux_sym_preproc_def_token1] = ACTIONS(2891), - [aux_sym_preproc_if_token1] = ACTIONS(2891), - [aux_sym_preproc_if_token2] = ACTIONS(2891), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2891), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2891), - [sym_preproc_directive] = ACTIONS(2891), - [anon_sym_LPAREN2] = ACTIONS(2893), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_TILDE] = ACTIONS(2893), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2893), - [anon_sym_AMP_AMP] = ACTIONS(2893), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(2893), - [anon_sym___extension__] = ACTIONS(2891), - [anon_sym_typedef] = ACTIONS(2891), - [anon_sym_extern] = ACTIONS(2891), - [anon_sym___attribute__] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2893), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2893), - [anon_sym___declspec] = ACTIONS(2891), - [anon_sym___based] = ACTIONS(2891), - [anon_sym___cdecl] = ACTIONS(2891), - [anon_sym___clrcall] = ACTIONS(2891), - [anon_sym___stdcall] = ACTIONS(2891), - [anon_sym___fastcall] = ACTIONS(2891), - [anon_sym___thiscall] = ACTIONS(2891), - [anon_sym___vectorcall] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2893), - [anon_sym_signed] = ACTIONS(2891), - [anon_sym_unsigned] = ACTIONS(2891), - [anon_sym_long] = ACTIONS(2891), - [anon_sym_short] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2891), - [anon_sym_static] = ACTIONS(2891), - [anon_sym_register] = ACTIONS(2891), - [anon_sym_inline] = ACTIONS(2891), - [anon_sym___inline] = ACTIONS(2891), - [anon_sym___inline__] = ACTIONS(2891), - [anon_sym___forceinline] = ACTIONS(2891), - [anon_sym_thread_local] = ACTIONS(2891), - [anon_sym___thread] = ACTIONS(2891), - [anon_sym_const] = ACTIONS(2891), - [anon_sym_constexpr] = ACTIONS(2891), - [anon_sym_volatile] = ACTIONS(2891), - [anon_sym_restrict] = ACTIONS(2891), - [anon_sym___restrict__] = ACTIONS(2891), - [anon_sym__Atomic] = ACTIONS(2891), - [anon_sym__Noreturn] = ACTIONS(2891), - [anon_sym_noreturn] = ACTIONS(2891), - [anon_sym_mutable] = ACTIONS(2891), - [anon_sym_constinit] = ACTIONS(2891), - [anon_sym_consteval] = ACTIONS(2891), - [sym_primitive_type] = ACTIONS(2891), - [anon_sym_enum] = ACTIONS(2891), - [anon_sym_class] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_union] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_else] = ACTIONS(2891), - [anon_sym_switch] = ACTIONS(2891), - [anon_sym_case] = ACTIONS(2891), - [anon_sym_default] = ACTIONS(2891), - [anon_sym_while] = ACTIONS(2891), - [anon_sym_do] = ACTIONS(2891), - [anon_sym_for] = ACTIONS(2891), - [anon_sym_return] = ACTIONS(2891), - [anon_sym_break] = ACTIONS(2891), - [anon_sym_continue] = ACTIONS(2891), - [anon_sym_goto] = ACTIONS(2891), - [anon_sym_not] = ACTIONS(2891), - [anon_sym_compl] = ACTIONS(2891), - [anon_sym_DASH_DASH] = ACTIONS(2893), - [anon_sym_PLUS_PLUS] = ACTIONS(2893), - [anon_sym_sizeof] = ACTIONS(2891), - [anon_sym___alignof__] = ACTIONS(2891), - [anon_sym___alignof] = ACTIONS(2891), - [anon_sym__alignof] = ACTIONS(2891), - [anon_sym_alignof] = ACTIONS(2891), - [anon_sym__Alignof] = ACTIONS(2891), - [anon_sym_offsetof] = ACTIONS(2891), - [anon_sym__Generic] = ACTIONS(2891), - [anon_sym_asm] = ACTIONS(2891), - [anon_sym___asm__] = ACTIONS(2891), - [sym_number_literal] = ACTIONS(2893), - [anon_sym_L_SQUOTE] = ACTIONS(2893), - [anon_sym_u_SQUOTE] = ACTIONS(2893), - [anon_sym_U_SQUOTE] = ACTIONS(2893), - [anon_sym_u8_SQUOTE] = ACTIONS(2893), - [anon_sym_SQUOTE] = ACTIONS(2893), - [anon_sym_L_DQUOTE] = ACTIONS(2893), - [anon_sym_u_DQUOTE] = ACTIONS(2893), - [anon_sym_U_DQUOTE] = ACTIONS(2893), - [anon_sym_u8_DQUOTE] = ACTIONS(2893), - [anon_sym_DQUOTE] = ACTIONS(2893), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [anon_sym_NULL] = ACTIONS(2891), - [anon_sym_nullptr] = ACTIONS(2891), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2891), - [anon_sym_decltype] = ACTIONS(2891), - [anon_sym_virtual] = ACTIONS(2891), - [anon_sym_alignas] = ACTIONS(2891), - [anon_sym_explicit] = ACTIONS(2891), - [anon_sym_typename] = ACTIONS(2891), - [anon_sym_template] = ACTIONS(2891), - [anon_sym_operator] = ACTIONS(2891), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_delete] = ACTIONS(2891), - [anon_sym_throw] = ACTIONS(2891), - [anon_sym_namespace] = ACTIONS(2891), - [anon_sym_using] = ACTIONS(2891), - [anon_sym_static_assert] = ACTIONS(2891), - [anon_sym_concept] = ACTIONS(2891), - [anon_sym_co_return] = ACTIONS(2891), - [anon_sym_co_yield] = ACTIONS(2891), - [anon_sym_R_DQUOTE] = ACTIONS(2893), - [anon_sym_LR_DQUOTE] = ACTIONS(2893), - [anon_sym_uR_DQUOTE] = ACTIONS(2893), - [anon_sym_UR_DQUOTE] = ACTIONS(2893), - [anon_sym_u8R_DQUOTE] = ACTIONS(2893), - [anon_sym_co_await] = ACTIONS(2891), - [anon_sym_new] = ACTIONS(2891), - [anon_sym_requires] = ACTIONS(2891), - [sym_this] = ACTIONS(2891), + [1034] = { + [sym_identifier] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2136), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_goto] = ACTIONS(2138), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_compl] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_PLUS_PLUS] = ACTIONS(2136), + [anon_sym_sizeof] = ACTIONS(2138), + [anon_sym___alignof__] = ACTIONS(2138), + [anon_sym___alignof] = ACTIONS(2138), + [anon_sym__alignof] = ACTIONS(2138), + [anon_sym_alignof] = ACTIONS(2138), + [anon_sym__Alignof] = ACTIONS(2138), + [anon_sym_offsetof] = ACTIONS(2138), + [anon_sym__Generic] = ACTIONS(2138), + [anon_sym_asm] = ACTIONS(2138), + [anon_sym___asm__] = ACTIONS(2138), + [sym_number_literal] = ACTIONS(2136), + [anon_sym_L_SQUOTE] = ACTIONS(2136), + [anon_sym_u_SQUOTE] = ACTIONS(2136), + [anon_sym_U_SQUOTE] = ACTIONS(2136), + [anon_sym_u8_SQUOTE] = ACTIONS(2136), + [anon_sym_SQUOTE] = ACTIONS(2136), + [anon_sym_L_DQUOTE] = ACTIONS(2136), + [anon_sym_u_DQUOTE] = ACTIONS(2136), + [anon_sym_U_DQUOTE] = ACTIONS(2136), + [anon_sym_u8_DQUOTE] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2136), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [anon_sym_NULL] = ACTIONS(2138), + [anon_sym_nullptr] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_co_return] = ACTIONS(2138), + [anon_sym_co_yield] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + [anon_sym_R_DQUOTE] = ACTIONS(2136), + [anon_sym_LR_DQUOTE] = ACTIONS(2136), + [anon_sym_uR_DQUOTE] = ACTIONS(2136), + [anon_sym_UR_DQUOTE] = ACTIONS(2136), + [anon_sym_u8R_DQUOTE] = ACTIONS(2136), + [anon_sym_co_await] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_requires] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), }, - [1001] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [1035] = { + [sym_identifier] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_BANG] = ACTIONS(2754), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym___extension__] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym___attribute__] = ACTIONS(2752), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2754), + [anon_sym___declspec] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_signed] = ACTIONS(2752), + [anon_sym_unsigned] = ACTIONS(2752), + [anon_sym_long] = ACTIONS(2752), + [anon_sym_short] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_register] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym___inline] = ACTIONS(2752), + [anon_sym___inline__] = ACTIONS(2752), + [anon_sym___forceinline] = ACTIONS(2752), + [anon_sym_thread_local] = ACTIONS(2752), + [anon_sym___thread] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_constexpr] = ACTIONS(2752), + [anon_sym_volatile] = ACTIONS(2752), + [anon_sym_restrict] = ACTIONS(2752), + [anon_sym___restrict__] = ACTIONS(2752), + [anon_sym__Atomic] = ACTIONS(2752), + [anon_sym__Noreturn] = ACTIONS(2752), + [anon_sym_noreturn] = ACTIONS(2752), + [anon_sym_mutable] = ACTIONS(2752), + [anon_sym_constinit] = ACTIONS(2752), + [anon_sym_consteval] = ACTIONS(2752), + [sym_primitive_type] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_class] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_else] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_goto] = ACTIONS(2752), + [anon_sym_not] = ACTIONS(2752), + [anon_sym_compl] = ACTIONS(2752), + [anon_sym_DASH_DASH] = ACTIONS(2754), + [anon_sym_PLUS_PLUS] = ACTIONS(2754), + [anon_sym_sizeof] = ACTIONS(2752), + [anon_sym___alignof__] = ACTIONS(2752), + [anon_sym___alignof] = ACTIONS(2752), + [anon_sym__alignof] = ACTIONS(2752), + [anon_sym_alignof] = ACTIONS(2752), + [anon_sym__Alignof] = ACTIONS(2752), + [anon_sym_offsetof] = ACTIONS(2752), + [anon_sym__Generic] = ACTIONS(2752), + [anon_sym_asm] = ACTIONS(2752), + [anon_sym___asm__] = ACTIONS(2752), + [sym_number_literal] = ACTIONS(2754), + [anon_sym_L_SQUOTE] = ACTIONS(2754), + [anon_sym_u_SQUOTE] = ACTIONS(2754), + [anon_sym_U_SQUOTE] = ACTIONS(2754), + [anon_sym_u8_SQUOTE] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_L_DQUOTE] = ACTIONS(2754), + [anon_sym_u_DQUOTE] = ACTIONS(2754), + [anon_sym_U_DQUOTE] = ACTIONS(2754), + [anon_sym_u8_DQUOTE] = ACTIONS(2754), + [anon_sym_DQUOTE] = ACTIONS(2754), + [sym_true] = ACTIONS(2752), + [sym_false] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_nullptr] = ACTIONS(2752), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2752), + [anon_sym_decltype] = ACTIONS(2752), + [anon_sym_virtual] = ACTIONS(2752), + [anon_sym_alignas] = ACTIONS(2752), + [anon_sym_typename] = ACTIONS(2752), + [anon_sym_template] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_delete] = ACTIONS(2752), + [anon_sym_throw] = ACTIONS(2752), + [anon_sym_co_return] = ACTIONS(2752), + [anon_sym_co_yield] = ACTIONS(2752), + [anon_sym_catch] = ACTIONS(2752), + [anon_sym_R_DQUOTE] = ACTIONS(2754), + [anon_sym_LR_DQUOTE] = ACTIONS(2754), + [anon_sym_uR_DQUOTE] = ACTIONS(2754), + [anon_sym_UR_DQUOTE] = ACTIONS(2754), + [anon_sym_u8R_DQUOTE] = ACTIONS(2754), + [anon_sym_co_await] = ACTIONS(2752), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_requires] = ACTIONS(2752), + [sym_this] = ACTIONS(2752), }, - [1002] = { - [sym_identifier] = ACTIONS(2885), - [aux_sym_preproc_include_token1] = ACTIONS(2885), - [aux_sym_preproc_def_token1] = ACTIONS(2885), - [aux_sym_preproc_if_token1] = ACTIONS(2885), - [aux_sym_preproc_if_token2] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2885), - [sym_preproc_directive] = ACTIONS(2885), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym___extension__] = ACTIONS(2885), - [anon_sym_typedef] = ACTIONS(2885), - [anon_sym_extern] = ACTIONS(2885), - [anon_sym___attribute__] = ACTIONS(2885), - [anon_sym_COLON_COLON] = ACTIONS(2887), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2887), - [anon_sym___declspec] = ACTIONS(2885), - [anon_sym___based] = ACTIONS(2885), - [anon_sym___cdecl] = ACTIONS(2885), - [anon_sym___clrcall] = ACTIONS(2885), - [anon_sym___stdcall] = ACTIONS(2885), - [anon_sym___fastcall] = ACTIONS(2885), - [anon_sym___thiscall] = ACTIONS(2885), - [anon_sym___vectorcall] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_signed] = ACTIONS(2885), - [anon_sym_unsigned] = ACTIONS(2885), - [anon_sym_long] = ACTIONS(2885), - [anon_sym_short] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_register] = ACTIONS(2885), - [anon_sym_inline] = ACTIONS(2885), - [anon_sym___inline] = ACTIONS(2885), - [anon_sym___inline__] = ACTIONS(2885), - [anon_sym___forceinline] = ACTIONS(2885), - [anon_sym_thread_local] = ACTIONS(2885), - [anon_sym___thread] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_constexpr] = ACTIONS(2885), - [anon_sym_volatile] = ACTIONS(2885), - [anon_sym_restrict] = ACTIONS(2885), - [anon_sym___restrict__] = ACTIONS(2885), - [anon_sym__Atomic] = ACTIONS(2885), - [anon_sym__Noreturn] = ACTIONS(2885), - [anon_sym_noreturn] = ACTIONS(2885), - [anon_sym_mutable] = ACTIONS(2885), - [anon_sym_constinit] = ACTIONS(2885), - [anon_sym_consteval] = ACTIONS(2885), - [sym_primitive_type] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_union] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_else] = ACTIONS(2885), - [anon_sym_switch] = ACTIONS(2885), - [anon_sym_case] = ACTIONS(2885), - [anon_sym_default] = ACTIONS(2885), - [anon_sym_while] = ACTIONS(2885), - [anon_sym_do] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_goto] = ACTIONS(2885), - [anon_sym_not] = ACTIONS(2885), - [anon_sym_compl] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_sizeof] = ACTIONS(2885), - [anon_sym___alignof__] = ACTIONS(2885), - [anon_sym___alignof] = ACTIONS(2885), - [anon_sym__alignof] = ACTIONS(2885), - [anon_sym_alignof] = ACTIONS(2885), - [anon_sym__Alignof] = ACTIONS(2885), - [anon_sym_offsetof] = ACTIONS(2885), - [anon_sym__Generic] = ACTIONS(2885), - [anon_sym_asm] = ACTIONS(2885), - [anon_sym___asm__] = ACTIONS(2885), - [sym_number_literal] = ACTIONS(2887), - [anon_sym_L_SQUOTE] = ACTIONS(2887), - [anon_sym_u_SQUOTE] = ACTIONS(2887), - [anon_sym_U_SQUOTE] = ACTIONS(2887), - [anon_sym_u8_SQUOTE] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_L_DQUOTE] = ACTIONS(2887), - [anon_sym_u_DQUOTE] = ACTIONS(2887), - [anon_sym_U_DQUOTE] = ACTIONS(2887), - [anon_sym_u8_DQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [sym_true] = ACTIONS(2885), - [sym_false] = ACTIONS(2885), - [anon_sym_NULL] = ACTIONS(2885), - [anon_sym_nullptr] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2885), - [anon_sym_decltype] = ACTIONS(2885), - [anon_sym_virtual] = ACTIONS(2885), - [anon_sym_alignas] = ACTIONS(2885), - [anon_sym_explicit] = ACTIONS(2885), - [anon_sym_typename] = ACTIONS(2885), - [anon_sym_template] = ACTIONS(2885), - [anon_sym_operator] = ACTIONS(2885), - [anon_sym_try] = ACTIONS(2885), - [anon_sym_delete] = ACTIONS(2885), - [anon_sym_throw] = ACTIONS(2885), - [anon_sym_namespace] = ACTIONS(2885), - [anon_sym_using] = ACTIONS(2885), - [anon_sym_static_assert] = ACTIONS(2885), - [anon_sym_concept] = ACTIONS(2885), - [anon_sym_co_return] = ACTIONS(2885), - [anon_sym_co_yield] = ACTIONS(2885), - [anon_sym_R_DQUOTE] = ACTIONS(2887), - [anon_sym_LR_DQUOTE] = ACTIONS(2887), - [anon_sym_uR_DQUOTE] = ACTIONS(2887), - [anon_sym_UR_DQUOTE] = ACTIONS(2887), - [anon_sym_u8R_DQUOTE] = ACTIONS(2887), - [anon_sym_co_await] = ACTIONS(2885), - [anon_sym_new] = ACTIONS(2885), - [anon_sym_requires] = ACTIONS(2885), - [sym_this] = ACTIONS(2885), + [1036] = { + [sym_else_clause] = STATE(1081), + [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_extern] = 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_mutable] = ACTIONS(2735), + [anon_sym_constinit] = ACTIONS(2735), + [anon_sym_consteval] = 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(3862), + [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_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), + [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_virtual] = ACTIONS(2735), + [anon_sym_alignas] = 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), }, - [1003] = { - [sym_identifier] = ACTIONS(3077), - [aux_sym_preproc_include_token1] = ACTIONS(3077), - [aux_sym_preproc_def_token1] = ACTIONS(3077), - [aux_sym_preproc_if_token1] = ACTIONS(3077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3077), - [sym_preproc_directive] = ACTIONS(3077), - [anon_sym_LPAREN2] = ACTIONS(3079), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_SEMI] = ACTIONS(3079), - [anon_sym___extension__] = ACTIONS(3077), - [anon_sym_typedef] = ACTIONS(3077), - [anon_sym_extern] = ACTIONS(3077), - [anon_sym___attribute__] = ACTIONS(3077), - [anon_sym_COLON_COLON] = ACTIONS(3079), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3079), - [anon_sym___declspec] = ACTIONS(3077), - [anon_sym___based] = ACTIONS(3077), - [anon_sym___cdecl] = ACTIONS(3077), - [anon_sym___clrcall] = ACTIONS(3077), - [anon_sym___stdcall] = ACTIONS(3077), - [anon_sym___fastcall] = ACTIONS(3077), - [anon_sym___thiscall] = ACTIONS(3077), - [anon_sym___vectorcall] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_RBRACE] = ACTIONS(3079), - [anon_sym_signed] = ACTIONS(3077), - [anon_sym_unsigned] = ACTIONS(3077), - [anon_sym_long] = ACTIONS(3077), - [anon_sym_short] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3077), - [anon_sym_static] = ACTIONS(3077), - [anon_sym_register] = ACTIONS(3077), - [anon_sym_inline] = ACTIONS(3077), - [anon_sym___inline] = ACTIONS(3077), - [anon_sym___inline__] = ACTIONS(3077), - [anon_sym___forceinline] = ACTIONS(3077), - [anon_sym_thread_local] = ACTIONS(3077), - [anon_sym___thread] = ACTIONS(3077), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_constexpr] = ACTIONS(3077), - [anon_sym_volatile] = ACTIONS(3077), - [anon_sym_restrict] = ACTIONS(3077), - [anon_sym___restrict__] = ACTIONS(3077), - [anon_sym__Atomic] = ACTIONS(3077), - [anon_sym__Noreturn] = ACTIONS(3077), - [anon_sym_noreturn] = ACTIONS(3077), - [anon_sym_mutable] = ACTIONS(3077), - [anon_sym_constinit] = ACTIONS(3077), - [anon_sym_consteval] = ACTIONS(3077), - [sym_primitive_type] = ACTIONS(3077), - [anon_sym_enum] = ACTIONS(3077), - [anon_sym_class] = ACTIONS(3077), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_if] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3077), - [anon_sym_switch] = ACTIONS(3077), - [anon_sym_case] = ACTIONS(3077), - [anon_sym_default] = ACTIONS(3077), - [anon_sym_while] = ACTIONS(3077), - [anon_sym_do] = ACTIONS(3077), - [anon_sym_for] = ACTIONS(3077), - [anon_sym_return] = ACTIONS(3077), - [anon_sym_break] = ACTIONS(3077), - [anon_sym_continue] = ACTIONS(3077), - [anon_sym_goto] = ACTIONS(3077), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3079), - [anon_sym_PLUS_PLUS] = ACTIONS(3079), - [anon_sym_sizeof] = ACTIONS(3077), - [anon_sym___alignof__] = ACTIONS(3077), - [anon_sym___alignof] = ACTIONS(3077), - [anon_sym__alignof] = ACTIONS(3077), - [anon_sym_alignof] = ACTIONS(3077), - [anon_sym__Alignof] = ACTIONS(3077), - [anon_sym_offsetof] = ACTIONS(3077), - [anon_sym__Generic] = ACTIONS(3077), - [anon_sym_asm] = ACTIONS(3077), - [anon_sym___asm__] = ACTIONS(3077), - [sym_number_literal] = ACTIONS(3079), - [anon_sym_L_SQUOTE] = ACTIONS(3079), - [anon_sym_u_SQUOTE] = ACTIONS(3079), - [anon_sym_U_SQUOTE] = ACTIONS(3079), - [anon_sym_u8_SQUOTE] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3079), - [anon_sym_L_DQUOTE] = ACTIONS(3079), - [anon_sym_u_DQUOTE] = ACTIONS(3079), - [anon_sym_U_DQUOTE] = ACTIONS(3079), - [anon_sym_u8_DQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [sym_true] = ACTIONS(3077), - [sym_false] = ACTIONS(3077), - [anon_sym_NULL] = ACTIONS(3077), - [anon_sym_nullptr] = ACTIONS(3077), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3077), - [anon_sym_decltype] = ACTIONS(3077), - [anon_sym_virtual] = ACTIONS(3077), - [anon_sym_alignas] = ACTIONS(3077), - [anon_sym_explicit] = ACTIONS(3077), - [anon_sym_typename] = ACTIONS(3077), - [anon_sym_template] = ACTIONS(3077), - [anon_sym_operator] = ACTIONS(3077), - [anon_sym_try] = ACTIONS(3077), - [anon_sym_delete] = ACTIONS(3077), - [anon_sym_throw] = ACTIONS(3077), - [anon_sym_namespace] = ACTIONS(3077), - [anon_sym_using] = ACTIONS(3077), - [anon_sym_static_assert] = ACTIONS(3077), - [anon_sym_concept] = ACTIONS(3077), - [anon_sym_co_return] = ACTIONS(3077), - [anon_sym_co_yield] = ACTIONS(3077), - [anon_sym_R_DQUOTE] = ACTIONS(3079), - [anon_sym_LR_DQUOTE] = ACTIONS(3079), - [anon_sym_uR_DQUOTE] = ACTIONS(3079), - [anon_sym_UR_DQUOTE] = ACTIONS(3079), - [anon_sym_u8R_DQUOTE] = ACTIONS(3079), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_requires] = ACTIONS(3077), - [sym_this] = ACTIONS(3077), + [1037] = { + [sym_else_clause] = STATE(1041), + [sym_identifier] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2760), + [anon_sym_BANG] = ACTIONS(2760), + [anon_sym_TILDE] = ACTIONS(2760), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_STAR] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2760), + [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym___extension__] = ACTIONS(2758), + [anon_sym_typedef] = ACTIONS(2758), + [anon_sym_extern] = ACTIONS(2758), + [anon_sym___attribute__] = ACTIONS(2758), + [anon_sym_COLON_COLON] = ACTIONS(2760), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2760), + [anon_sym___declspec] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2760), + [anon_sym_signed] = ACTIONS(2758), + [anon_sym_unsigned] = ACTIONS(2758), + [anon_sym_long] = ACTIONS(2758), + [anon_sym_short] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_static] = ACTIONS(2758), + [anon_sym_register] = ACTIONS(2758), + [anon_sym_inline] = ACTIONS(2758), + [anon_sym___inline] = ACTIONS(2758), + [anon_sym___inline__] = ACTIONS(2758), + [anon_sym___forceinline] = ACTIONS(2758), + [anon_sym_thread_local] = ACTIONS(2758), + [anon_sym___thread] = ACTIONS(2758), + [anon_sym_const] = ACTIONS(2758), + [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_mutable] = ACTIONS(2758), + [anon_sym_constinit] = ACTIONS(2758), + [anon_sym_consteval] = ACTIONS(2758), + [sym_primitive_type] = ACTIONS(2758), + [anon_sym_enum] = ACTIONS(2758), + [anon_sym_class] = ACTIONS(2758), + [anon_sym_struct] = ACTIONS(2758), + [anon_sym_union] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_else] = ACTIONS(3862), + [anon_sym_switch] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_break] = ACTIONS(2758), + [anon_sym_continue] = ACTIONS(2758), + [anon_sym_goto] = ACTIONS(2758), + [anon_sym_not] = ACTIONS(2758), + [anon_sym_compl] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2760), + [anon_sym_PLUS_PLUS] = ACTIONS(2760), + [anon_sym_sizeof] = ACTIONS(2758), + [anon_sym___alignof__] = ACTIONS(2758), + [anon_sym___alignof] = ACTIONS(2758), + [anon_sym__alignof] = ACTIONS(2758), + [anon_sym_alignof] = ACTIONS(2758), + [anon_sym__Alignof] = ACTIONS(2758), + [anon_sym_offsetof] = ACTIONS(2758), + [anon_sym__Generic] = ACTIONS(2758), + [anon_sym_asm] = ACTIONS(2758), + [anon_sym___asm__] = ACTIONS(2758), + [sym_number_literal] = ACTIONS(2760), + [anon_sym_L_SQUOTE] = ACTIONS(2760), + [anon_sym_u_SQUOTE] = ACTIONS(2760), + [anon_sym_U_SQUOTE] = ACTIONS(2760), + [anon_sym_u8_SQUOTE] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_L_DQUOTE] = ACTIONS(2760), + [anon_sym_u_DQUOTE] = ACTIONS(2760), + [anon_sym_U_DQUOTE] = ACTIONS(2760), + [anon_sym_u8_DQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2760), + [sym_true] = ACTIONS(2758), + [sym_false] = ACTIONS(2758), + [anon_sym_NULL] = ACTIONS(2758), + [anon_sym_nullptr] = ACTIONS(2758), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2758), + [anon_sym_decltype] = ACTIONS(2758), + [anon_sym_virtual] = ACTIONS(2758), + [anon_sym_alignas] = ACTIONS(2758), + [anon_sym_typename] = ACTIONS(2758), + [anon_sym_template] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_delete] = ACTIONS(2758), + [anon_sym_throw] = ACTIONS(2758), + [anon_sym_co_return] = ACTIONS(2758), + [anon_sym_co_yield] = ACTIONS(2758), + [anon_sym_R_DQUOTE] = ACTIONS(2760), + [anon_sym_LR_DQUOTE] = ACTIONS(2760), + [anon_sym_uR_DQUOTE] = ACTIONS(2760), + [anon_sym_UR_DQUOTE] = ACTIONS(2760), + [anon_sym_u8R_DQUOTE] = ACTIONS(2760), + [anon_sym_co_await] = ACTIONS(2758), + [anon_sym_new] = ACTIONS(2758), + [anon_sym_requires] = ACTIONS(2758), + [sym_this] = ACTIONS(2758), }, - [1004] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1038] = { + [sym_identifier] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [1005] = { - [sym_identifier] = ACTIONS(2965), - [aux_sym_preproc_include_token1] = ACTIONS(2965), - [aux_sym_preproc_def_token1] = ACTIONS(2965), - [aux_sym_preproc_if_token1] = ACTIONS(2965), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), - [sym_preproc_directive] = ACTIONS(2965), - [anon_sym_LPAREN2] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_AMP_AMP] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym___extension__] = ACTIONS(2965), - [anon_sym_typedef] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2965), - [anon_sym___attribute__] = ACTIONS(2965), - [anon_sym_COLON_COLON] = ACTIONS(2967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), - [anon_sym___declspec] = ACTIONS(2965), - [anon_sym___based] = ACTIONS(2965), - [anon_sym___cdecl] = ACTIONS(2965), - [anon_sym___clrcall] = ACTIONS(2965), - [anon_sym___stdcall] = ACTIONS(2965), - [anon_sym___fastcall] = ACTIONS(2965), - [anon_sym___thiscall] = ACTIONS(2965), - [anon_sym___vectorcall] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_RBRACE] = ACTIONS(2967), - [anon_sym_signed] = ACTIONS(2965), - [anon_sym_unsigned] = ACTIONS(2965), - [anon_sym_long] = ACTIONS(2965), - [anon_sym_short] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2965), - [anon_sym_static] = ACTIONS(2965), - [anon_sym_register] = ACTIONS(2965), - [anon_sym_inline] = ACTIONS(2965), - [anon_sym___inline] = ACTIONS(2965), - [anon_sym___inline__] = ACTIONS(2965), - [anon_sym___forceinline] = ACTIONS(2965), - [anon_sym_thread_local] = ACTIONS(2965), - [anon_sym___thread] = ACTIONS(2965), - [anon_sym_const] = ACTIONS(2965), - [anon_sym_constexpr] = ACTIONS(2965), - [anon_sym_volatile] = ACTIONS(2965), - [anon_sym_restrict] = ACTIONS(2965), - [anon_sym___restrict__] = ACTIONS(2965), - [anon_sym__Atomic] = ACTIONS(2965), - [anon_sym__Noreturn] = ACTIONS(2965), - [anon_sym_noreturn] = ACTIONS(2965), - [anon_sym_mutable] = ACTIONS(2965), - [anon_sym_constinit] = ACTIONS(2965), - [anon_sym_consteval] = ACTIONS(2965), - [sym_primitive_type] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2965), - [anon_sym_class] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_union] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_else] = ACTIONS(2965), - [anon_sym_switch] = ACTIONS(2965), - [anon_sym_case] = ACTIONS(2965), - [anon_sym_default] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2965), - [anon_sym_do] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2965), - [anon_sym_return] = ACTIONS(2965), - [anon_sym_break] = ACTIONS(2965), - [anon_sym_continue] = ACTIONS(2965), - [anon_sym_goto] = ACTIONS(2965), - [anon_sym_not] = ACTIONS(2965), - [anon_sym_compl] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_sizeof] = ACTIONS(2965), - [anon_sym___alignof__] = ACTIONS(2965), - [anon_sym___alignof] = ACTIONS(2965), - [anon_sym__alignof] = ACTIONS(2965), - [anon_sym_alignof] = ACTIONS(2965), - [anon_sym__Alignof] = ACTIONS(2965), - [anon_sym_offsetof] = ACTIONS(2965), - [anon_sym__Generic] = ACTIONS(2965), - [anon_sym_asm] = ACTIONS(2965), - [anon_sym___asm__] = ACTIONS(2965), - [sym_number_literal] = ACTIONS(2967), - [anon_sym_L_SQUOTE] = ACTIONS(2967), - [anon_sym_u_SQUOTE] = ACTIONS(2967), - [anon_sym_U_SQUOTE] = ACTIONS(2967), - [anon_sym_u8_SQUOTE] = ACTIONS(2967), - [anon_sym_SQUOTE] = ACTIONS(2967), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [anon_sym_NULL] = ACTIONS(2965), - [anon_sym_nullptr] = ACTIONS(2965), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2965), - [anon_sym_decltype] = ACTIONS(2965), - [anon_sym_virtual] = ACTIONS(2965), - [anon_sym_alignas] = ACTIONS(2965), - [anon_sym_explicit] = ACTIONS(2965), - [anon_sym_typename] = ACTIONS(2965), - [anon_sym_template] = ACTIONS(2965), - [anon_sym_operator] = ACTIONS(2965), - [anon_sym_try] = ACTIONS(2965), - [anon_sym_delete] = ACTIONS(2965), - [anon_sym_throw] = ACTIONS(2965), - [anon_sym_namespace] = ACTIONS(2965), - [anon_sym_using] = ACTIONS(2965), - [anon_sym_static_assert] = ACTIONS(2965), - [anon_sym_concept] = ACTIONS(2965), - [anon_sym_co_return] = ACTIONS(2965), - [anon_sym_co_yield] = ACTIONS(2965), - [anon_sym_R_DQUOTE] = ACTIONS(2967), - [anon_sym_LR_DQUOTE] = ACTIONS(2967), - [anon_sym_uR_DQUOTE] = ACTIONS(2967), - [anon_sym_UR_DQUOTE] = ACTIONS(2967), - [anon_sym_u8R_DQUOTE] = ACTIONS(2967), - [anon_sym_co_await] = ACTIONS(2965), - [anon_sym_new] = ACTIONS(2965), - [anon_sym_requires] = ACTIONS(2965), - [sym_this] = ACTIONS(2965), + [1039] = { + [sym_identifier] = ACTIONS(2816), + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2816), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym___extension__] = ACTIONS(2816), + [anon_sym_typedef] = ACTIONS(2816), + [anon_sym_extern] = ACTIONS(2816), + [anon_sym___attribute__] = ACTIONS(2816), + [anon_sym_COLON_COLON] = ACTIONS(2818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2818), + [anon_sym___declspec] = ACTIONS(2816), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_signed] = ACTIONS(2816), + [anon_sym_unsigned] = ACTIONS(2816), + [anon_sym_long] = ACTIONS(2816), + [anon_sym_short] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_register] = ACTIONS(2816), + [anon_sym_inline] = ACTIONS(2816), + [anon_sym___inline] = ACTIONS(2816), + [anon_sym___inline__] = ACTIONS(2816), + [anon_sym___forceinline] = ACTIONS(2816), + [anon_sym_thread_local] = ACTIONS(2816), + [anon_sym___thread] = ACTIONS(2816), + [anon_sym_const] = ACTIONS(2816), + [anon_sym_constexpr] = ACTIONS(2816), + [anon_sym_volatile] = ACTIONS(2816), + [anon_sym_restrict] = ACTIONS(2816), + [anon_sym___restrict__] = ACTIONS(2816), + [anon_sym__Atomic] = ACTIONS(2816), + [anon_sym__Noreturn] = ACTIONS(2816), + [anon_sym_noreturn] = ACTIONS(2816), + [anon_sym_mutable] = ACTIONS(2816), + [anon_sym_constinit] = ACTIONS(2816), + [anon_sym_consteval] = ACTIONS(2816), + [sym_primitive_type] = ACTIONS(2816), + [anon_sym_enum] = ACTIONS(2816), + [anon_sym_class] = ACTIONS(2816), + [anon_sym_struct] = ACTIONS(2816), + [anon_sym_union] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_else] = ACTIONS(2816), + [anon_sym_switch] = ACTIONS(2816), + [anon_sym_while] = ACTIONS(2816), + [anon_sym_do] = ACTIONS(2816), + [anon_sym_for] = ACTIONS(2816), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_break] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_goto] = ACTIONS(2816), + [anon_sym_not] = ACTIONS(2816), + [anon_sym_compl] = ACTIONS(2816), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_sizeof] = ACTIONS(2816), + [anon_sym___alignof__] = ACTIONS(2816), + [anon_sym___alignof] = ACTIONS(2816), + [anon_sym__alignof] = ACTIONS(2816), + [anon_sym_alignof] = ACTIONS(2816), + [anon_sym__Alignof] = ACTIONS(2816), + [anon_sym_offsetof] = ACTIONS(2816), + [anon_sym__Generic] = ACTIONS(2816), + [anon_sym_asm] = ACTIONS(2816), + [anon_sym___asm__] = ACTIONS(2816), + [sym_number_literal] = ACTIONS(2818), + [anon_sym_L_SQUOTE] = ACTIONS(2818), + [anon_sym_u_SQUOTE] = ACTIONS(2818), + [anon_sym_U_SQUOTE] = ACTIONS(2818), + [anon_sym_u8_SQUOTE] = ACTIONS(2818), + [anon_sym_SQUOTE] = ACTIONS(2818), + [anon_sym_L_DQUOTE] = ACTIONS(2818), + [anon_sym_u_DQUOTE] = ACTIONS(2818), + [anon_sym_U_DQUOTE] = ACTIONS(2818), + [anon_sym_u8_DQUOTE] = ACTIONS(2818), + [anon_sym_DQUOTE] = ACTIONS(2818), + [sym_true] = ACTIONS(2816), + [sym_false] = ACTIONS(2816), + [anon_sym_NULL] = ACTIONS(2816), + [anon_sym_nullptr] = ACTIONS(2816), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2816), + [anon_sym_decltype] = ACTIONS(2816), + [anon_sym_virtual] = ACTIONS(2816), + [anon_sym_alignas] = ACTIONS(2816), + [anon_sym_typename] = ACTIONS(2816), + [anon_sym_template] = ACTIONS(2816), + [anon_sym_try] = ACTIONS(2816), + [anon_sym_delete] = ACTIONS(2816), + [anon_sym_throw] = ACTIONS(2816), + [anon_sym_co_return] = ACTIONS(2816), + [anon_sym_co_yield] = ACTIONS(2816), + [anon_sym_R_DQUOTE] = ACTIONS(2818), + [anon_sym_LR_DQUOTE] = ACTIONS(2818), + [anon_sym_uR_DQUOTE] = ACTIONS(2818), + [anon_sym_UR_DQUOTE] = ACTIONS(2818), + [anon_sym_u8R_DQUOTE] = ACTIONS(2818), + [anon_sym_co_await] = ACTIONS(2816), + [anon_sym_new] = ACTIONS(2816), + [anon_sym_requires] = ACTIONS(2816), + [sym_this] = ACTIONS(2816), }, - [1006] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1040] = { + [sym_identifier] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [1007] = { - [sym_identifier] = ACTIONS(2977), - [aux_sym_preproc_include_token1] = ACTIONS(2977), - [aux_sym_preproc_def_token1] = ACTIONS(2977), - [aux_sym_preproc_if_token1] = ACTIONS(2977), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2977), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2977), - [sym_preproc_directive] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2979), - [anon_sym_BANG] = ACTIONS(2979), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym___extension__] = ACTIONS(2977), - [anon_sym_typedef] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym___attribute__] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2979), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), - [anon_sym___declspec] = ACTIONS(2977), - [anon_sym___based] = ACTIONS(2977), - [anon_sym___cdecl] = ACTIONS(2977), - [anon_sym___clrcall] = ACTIONS(2977), - [anon_sym___stdcall] = ACTIONS(2977), - [anon_sym___fastcall] = ACTIONS(2977), - [anon_sym___thiscall] = ACTIONS(2977), - [anon_sym___vectorcall] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_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_mutable] = ACTIONS(2977), - [anon_sym_constinit] = ACTIONS(2977), - [anon_sym_consteval] = ACTIONS(2977), - [sym_primitive_type] = ACTIONS(2977), - [anon_sym_enum] = ACTIONS(2977), - [anon_sym_class] = ACTIONS(2977), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_union] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_else] = ACTIONS(2977), - [anon_sym_switch] = ACTIONS(2977), - [anon_sym_case] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_break] = ACTIONS(2977), - [anon_sym_continue] = ACTIONS(2977), - [anon_sym_goto] = ACTIONS(2977), - [anon_sym_not] = ACTIONS(2977), - [anon_sym_compl] = ACTIONS(2977), - [anon_sym_DASH_DASH] = ACTIONS(2979), - [anon_sym_PLUS_PLUS] = ACTIONS(2979), - [anon_sym_sizeof] = ACTIONS(2977), - [anon_sym___alignof__] = ACTIONS(2977), - [anon_sym___alignof] = ACTIONS(2977), - [anon_sym__alignof] = ACTIONS(2977), - [anon_sym_alignof] = ACTIONS(2977), - [anon_sym__Alignof] = ACTIONS(2977), - [anon_sym_offsetof] = ACTIONS(2977), - [anon_sym__Generic] = ACTIONS(2977), - [anon_sym_asm] = ACTIONS(2977), - [anon_sym___asm__] = ACTIONS(2977), - [sym_number_literal] = ACTIONS(2979), - [anon_sym_L_SQUOTE] = ACTIONS(2979), - [anon_sym_u_SQUOTE] = ACTIONS(2979), - [anon_sym_U_SQUOTE] = ACTIONS(2979), - [anon_sym_u8_SQUOTE] = ACTIONS(2979), - [anon_sym_SQUOTE] = ACTIONS(2979), - [anon_sym_L_DQUOTE] = ACTIONS(2979), - [anon_sym_u_DQUOTE] = ACTIONS(2979), - [anon_sym_U_DQUOTE] = ACTIONS(2979), - [anon_sym_u8_DQUOTE] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym_true] = ACTIONS(2977), - [sym_false] = ACTIONS(2977), - [anon_sym_NULL] = ACTIONS(2977), - [anon_sym_nullptr] = ACTIONS(2977), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2977), - [anon_sym_decltype] = ACTIONS(2977), - [anon_sym_virtual] = ACTIONS(2977), - [anon_sym_alignas] = ACTIONS(2977), - [anon_sym_explicit] = ACTIONS(2977), - [anon_sym_typename] = ACTIONS(2977), - [anon_sym_template] = ACTIONS(2977), - [anon_sym_operator] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_delete] = ACTIONS(2977), - [anon_sym_throw] = ACTIONS(2977), - [anon_sym_namespace] = ACTIONS(2977), - [anon_sym_using] = ACTIONS(2977), - [anon_sym_static_assert] = ACTIONS(2977), - [anon_sym_concept] = ACTIONS(2977), - [anon_sym_co_return] = ACTIONS(2977), - [anon_sym_co_yield] = ACTIONS(2977), - [anon_sym_R_DQUOTE] = ACTIONS(2979), - [anon_sym_LR_DQUOTE] = ACTIONS(2979), - [anon_sym_uR_DQUOTE] = ACTIONS(2979), - [anon_sym_UR_DQUOTE] = ACTIONS(2979), - [anon_sym_u8R_DQUOTE] = ACTIONS(2979), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_requires] = ACTIONS(2977), - [sym_this] = ACTIONS(2977), + [1041] = { + [sym_identifier] = ACTIONS(2876), + [anon_sym_LPAREN2] = ACTIONS(2878), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_TILDE] = ACTIONS(2878), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym___extension__] = ACTIONS(2876), + [anon_sym_typedef] = ACTIONS(2876), + [anon_sym_extern] = ACTIONS(2876), + [anon_sym___attribute__] = ACTIONS(2876), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2878), + [anon_sym___declspec] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_signed] = ACTIONS(2876), + [anon_sym_unsigned] = ACTIONS(2876), + [anon_sym_long] = ACTIONS(2876), + [anon_sym_short] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_register] = ACTIONS(2876), + [anon_sym_inline] = ACTIONS(2876), + [anon_sym___inline] = ACTIONS(2876), + [anon_sym___inline__] = ACTIONS(2876), + [anon_sym___forceinline] = ACTIONS(2876), + [anon_sym_thread_local] = ACTIONS(2876), + [anon_sym___thread] = ACTIONS(2876), + [anon_sym_const] = ACTIONS(2876), + [anon_sym_constexpr] = ACTIONS(2876), + [anon_sym_volatile] = ACTIONS(2876), + [anon_sym_restrict] = ACTIONS(2876), + [anon_sym___restrict__] = ACTIONS(2876), + [anon_sym__Atomic] = ACTIONS(2876), + [anon_sym__Noreturn] = ACTIONS(2876), + [anon_sym_noreturn] = ACTIONS(2876), + [anon_sym_mutable] = ACTIONS(2876), + [anon_sym_constinit] = ACTIONS(2876), + [anon_sym_consteval] = ACTIONS(2876), + [sym_primitive_type] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), + [anon_sym_class] = ACTIONS(2876), + [anon_sym_struct] = ACTIONS(2876), + [anon_sym_union] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_else] = ACTIONS(2876), + [anon_sym_switch] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_goto] = ACTIONS(2876), + [anon_sym_not] = ACTIONS(2876), + [anon_sym_compl] = ACTIONS(2876), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_sizeof] = ACTIONS(2876), + [anon_sym___alignof__] = ACTIONS(2876), + [anon_sym___alignof] = ACTIONS(2876), + [anon_sym__alignof] = ACTIONS(2876), + [anon_sym_alignof] = ACTIONS(2876), + [anon_sym__Alignof] = ACTIONS(2876), + [anon_sym_offsetof] = ACTIONS(2876), + [anon_sym__Generic] = ACTIONS(2876), + [anon_sym_asm] = ACTIONS(2876), + [anon_sym___asm__] = ACTIONS(2876), + [sym_number_literal] = ACTIONS(2878), + [anon_sym_L_SQUOTE] = ACTIONS(2878), + [anon_sym_u_SQUOTE] = ACTIONS(2878), + [anon_sym_U_SQUOTE] = ACTIONS(2878), + [anon_sym_u8_SQUOTE] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_L_DQUOTE] = ACTIONS(2878), + [anon_sym_u_DQUOTE] = ACTIONS(2878), + [anon_sym_U_DQUOTE] = ACTIONS(2878), + [anon_sym_u8_DQUOTE] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [sym_true] = ACTIONS(2876), + [sym_false] = ACTIONS(2876), + [anon_sym_NULL] = ACTIONS(2876), + [anon_sym_nullptr] = ACTIONS(2876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2876), + [anon_sym_decltype] = ACTIONS(2876), + [anon_sym_virtual] = ACTIONS(2876), + [anon_sym_alignas] = ACTIONS(2876), + [anon_sym_typename] = ACTIONS(2876), + [anon_sym_template] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_delete] = ACTIONS(2876), + [anon_sym_throw] = ACTIONS(2876), + [anon_sym_co_return] = ACTIONS(2876), + [anon_sym_co_yield] = ACTIONS(2876), + [anon_sym_R_DQUOTE] = ACTIONS(2878), + [anon_sym_LR_DQUOTE] = ACTIONS(2878), + [anon_sym_uR_DQUOTE] = ACTIONS(2878), + [anon_sym_UR_DQUOTE] = ACTIONS(2878), + [anon_sym_u8R_DQUOTE] = ACTIONS(2878), + [anon_sym_co_await] = ACTIONS(2876), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_requires] = ACTIONS(2876), + [sym_this] = ACTIONS(2876), }, - [1008] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [1042] = { + [sym_identifier] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [1009] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [1043] = { + [sym_identifier] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [1010] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [1044] = { + [sym_identifier] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [1011] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [1045] = { + [sym_identifier] = ACTIONS(2804), + [anon_sym_LPAREN2] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2806), + [anon_sym_DASH] = ACTIONS(2804), + [anon_sym_PLUS] = ACTIONS(2804), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym___extension__] = ACTIONS(2804), + [anon_sym_typedef] = ACTIONS(2804), + [anon_sym_extern] = ACTIONS(2804), + [anon_sym___attribute__] = ACTIONS(2804), + [anon_sym_COLON_COLON] = ACTIONS(2806), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2806), + [anon_sym___declspec] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_signed] = ACTIONS(2804), + [anon_sym_unsigned] = ACTIONS(2804), + [anon_sym_long] = ACTIONS(2804), + [anon_sym_short] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2804), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_register] = ACTIONS(2804), + [anon_sym_inline] = ACTIONS(2804), + [anon_sym___inline] = ACTIONS(2804), + [anon_sym___inline__] = ACTIONS(2804), + [anon_sym___forceinline] = ACTIONS(2804), + [anon_sym_thread_local] = ACTIONS(2804), + [anon_sym___thread] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_constexpr] = ACTIONS(2804), + [anon_sym_volatile] = ACTIONS(2804), + [anon_sym_restrict] = ACTIONS(2804), + [anon_sym___restrict__] = ACTIONS(2804), + [anon_sym__Atomic] = ACTIONS(2804), + [anon_sym__Noreturn] = ACTIONS(2804), + [anon_sym_noreturn] = ACTIONS(2804), + [anon_sym_mutable] = ACTIONS(2804), + [anon_sym_constinit] = ACTIONS(2804), + [anon_sym_consteval] = ACTIONS(2804), + [sym_primitive_type] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [anon_sym_class] = ACTIONS(2804), + [anon_sym_struct] = ACTIONS(2804), + [anon_sym_union] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2804), + [anon_sym_else] = ACTIONS(2804), + [anon_sym_switch] = ACTIONS(2804), + [anon_sym_while] = ACTIONS(2804), + [anon_sym_do] = ACTIONS(2804), + [anon_sym_for] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2804), + [anon_sym_break] = ACTIONS(2804), + [anon_sym_continue] = ACTIONS(2804), + [anon_sym_goto] = ACTIONS(2804), + [anon_sym_not] = ACTIONS(2804), + [anon_sym_compl] = ACTIONS(2804), + [anon_sym_DASH_DASH] = ACTIONS(2806), + [anon_sym_PLUS_PLUS] = ACTIONS(2806), + [anon_sym_sizeof] = ACTIONS(2804), + [anon_sym___alignof__] = ACTIONS(2804), + [anon_sym___alignof] = ACTIONS(2804), + [anon_sym__alignof] = ACTIONS(2804), + [anon_sym_alignof] = ACTIONS(2804), + [anon_sym__Alignof] = ACTIONS(2804), + [anon_sym_offsetof] = ACTIONS(2804), + [anon_sym__Generic] = ACTIONS(2804), + [anon_sym_asm] = ACTIONS(2804), + [anon_sym___asm__] = ACTIONS(2804), + [sym_number_literal] = ACTIONS(2806), + [anon_sym_L_SQUOTE] = ACTIONS(2806), + [anon_sym_u_SQUOTE] = ACTIONS(2806), + [anon_sym_U_SQUOTE] = ACTIONS(2806), + [anon_sym_u8_SQUOTE] = ACTIONS(2806), + [anon_sym_SQUOTE] = ACTIONS(2806), + [anon_sym_L_DQUOTE] = ACTIONS(2806), + [anon_sym_u_DQUOTE] = ACTIONS(2806), + [anon_sym_U_DQUOTE] = ACTIONS(2806), + [anon_sym_u8_DQUOTE] = ACTIONS(2806), + [anon_sym_DQUOTE] = ACTIONS(2806), + [sym_true] = ACTIONS(2804), + [sym_false] = ACTIONS(2804), + [anon_sym_NULL] = ACTIONS(2804), + [anon_sym_nullptr] = ACTIONS(2804), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2804), + [anon_sym_decltype] = ACTIONS(2804), + [anon_sym_virtual] = ACTIONS(2804), + [anon_sym_alignas] = ACTIONS(2804), + [anon_sym_typename] = ACTIONS(2804), + [anon_sym_template] = ACTIONS(2804), + [anon_sym_try] = ACTIONS(2804), + [anon_sym_delete] = ACTIONS(2804), + [anon_sym_throw] = ACTIONS(2804), + [anon_sym_co_return] = ACTIONS(2804), + [anon_sym_co_yield] = ACTIONS(2804), + [anon_sym_R_DQUOTE] = ACTIONS(2806), + [anon_sym_LR_DQUOTE] = ACTIONS(2806), + [anon_sym_uR_DQUOTE] = ACTIONS(2806), + [anon_sym_UR_DQUOTE] = ACTIONS(2806), + [anon_sym_u8R_DQUOTE] = ACTIONS(2806), + [anon_sym_co_await] = ACTIONS(2804), + [anon_sym_new] = ACTIONS(2804), + [anon_sym_requires] = ACTIONS(2804), + [sym_this] = ACTIONS(2804), }, - [1012] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [1046] = { + [sym_identifier] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym___extension__] = ACTIONS(2872), + [anon_sym_typedef] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym___attribute__] = ACTIONS(2872), + [anon_sym_COLON_COLON] = ACTIONS(2874), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2874), + [anon_sym___declspec] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_signed] = ACTIONS(2872), + [anon_sym_unsigned] = ACTIONS(2872), + [anon_sym_long] = ACTIONS(2872), + [anon_sym_short] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_register] = ACTIONS(2872), + [anon_sym_inline] = ACTIONS(2872), + [anon_sym___inline] = ACTIONS(2872), + [anon_sym___inline__] = ACTIONS(2872), + [anon_sym___forceinline] = ACTIONS(2872), + [anon_sym_thread_local] = ACTIONS(2872), + [anon_sym___thread] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_constexpr] = ACTIONS(2872), + [anon_sym_volatile] = ACTIONS(2872), + [anon_sym_restrict] = ACTIONS(2872), + [anon_sym___restrict__] = ACTIONS(2872), + [anon_sym__Atomic] = ACTIONS(2872), + [anon_sym__Noreturn] = ACTIONS(2872), + [anon_sym_noreturn] = ACTIONS(2872), + [anon_sym_mutable] = ACTIONS(2872), + [anon_sym_constinit] = ACTIONS(2872), + [anon_sym_consteval] = ACTIONS(2872), + [sym_primitive_type] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_class] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_else] = ACTIONS(2872), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_goto] = ACTIONS(2872), + [anon_sym_not] = ACTIONS(2872), + [anon_sym_compl] = ACTIONS(2872), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_sizeof] = ACTIONS(2872), + [anon_sym___alignof__] = ACTIONS(2872), + [anon_sym___alignof] = ACTIONS(2872), + [anon_sym__alignof] = ACTIONS(2872), + [anon_sym_alignof] = ACTIONS(2872), + [anon_sym__Alignof] = ACTIONS(2872), + [anon_sym_offsetof] = ACTIONS(2872), + [anon_sym__Generic] = ACTIONS(2872), + [anon_sym_asm] = ACTIONS(2872), + [anon_sym___asm__] = ACTIONS(2872), + [sym_number_literal] = ACTIONS(2874), + [anon_sym_L_SQUOTE] = ACTIONS(2874), + [anon_sym_u_SQUOTE] = ACTIONS(2874), + [anon_sym_U_SQUOTE] = ACTIONS(2874), + [anon_sym_u8_SQUOTE] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_L_DQUOTE] = ACTIONS(2874), + [anon_sym_u_DQUOTE] = ACTIONS(2874), + [anon_sym_U_DQUOTE] = ACTIONS(2874), + [anon_sym_u8_DQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE] = ACTIONS(2874), + [sym_true] = ACTIONS(2872), + [sym_false] = ACTIONS(2872), + [anon_sym_NULL] = ACTIONS(2872), + [anon_sym_nullptr] = ACTIONS(2872), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2872), + [anon_sym_decltype] = ACTIONS(2872), + [anon_sym_virtual] = ACTIONS(2872), + [anon_sym_alignas] = ACTIONS(2872), + [anon_sym_typename] = ACTIONS(2872), + [anon_sym_template] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_delete] = ACTIONS(2872), + [anon_sym_throw] = ACTIONS(2872), + [anon_sym_co_return] = ACTIONS(2872), + [anon_sym_co_yield] = ACTIONS(2872), + [anon_sym_R_DQUOTE] = ACTIONS(2874), + [anon_sym_LR_DQUOTE] = ACTIONS(2874), + [anon_sym_uR_DQUOTE] = ACTIONS(2874), + [anon_sym_UR_DQUOTE] = ACTIONS(2874), + [anon_sym_u8R_DQUOTE] = ACTIONS(2874), + [anon_sym_co_await] = ACTIONS(2872), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_requires] = ACTIONS(2872), + [sym_this] = ACTIONS(2872), }, - [1013] = { + [1047] = { + [sym_identifier] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [1048] = { + [sym_identifier] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [1049] = { + [sym_identifier] = ACTIONS(3751), + [anon_sym_LPAREN2] = ACTIONS(3753), + [anon_sym_BANG] = ACTIONS(3753), + [anon_sym_TILDE] = ACTIONS(3753), + [anon_sym_DASH] = ACTIONS(3751), + [anon_sym_PLUS] = ACTIONS(3751), + [anon_sym_STAR] = ACTIONS(3753), + [anon_sym_AMP] = ACTIONS(3753), + [anon_sym_SEMI] = ACTIONS(3753), + [anon_sym___extension__] = ACTIONS(3751), + [anon_sym_extern] = ACTIONS(3751), + [anon_sym___attribute__] = ACTIONS(3751), + [anon_sym_COLON_COLON] = ACTIONS(3753), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3753), + [anon_sym___declspec] = ACTIONS(3751), + [anon_sym_LBRACE] = ACTIONS(3753), + [anon_sym_signed] = ACTIONS(3751), + [anon_sym_unsigned] = ACTIONS(3751), + [anon_sym_long] = ACTIONS(3751), + [anon_sym_short] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3751), + [anon_sym_static] = ACTIONS(3751), + [anon_sym_register] = ACTIONS(3751), + [anon_sym_inline] = ACTIONS(3751), + [anon_sym___inline] = ACTIONS(3751), + [anon_sym___inline__] = ACTIONS(3751), + [anon_sym___forceinline] = ACTIONS(3751), + [anon_sym_thread_local] = ACTIONS(3751), + [anon_sym___thread] = ACTIONS(3751), + [anon_sym_const] = ACTIONS(3751), + [anon_sym_constexpr] = ACTIONS(3751), + [anon_sym_volatile] = ACTIONS(3751), + [anon_sym_restrict] = ACTIONS(3751), + [anon_sym___restrict__] = ACTIONS(3751), + [anon_sym__Atomic] = ACTIONS(3751), + [anon_sym__Noreturn] = ACTIONS(3751), + [anon_sym_noreturn] = ACTIONS(3751), + [anon_sym_mutable] = ACTIONS(3751), + [anon_sym_constinit] = ACTIONS(3751), + [anon_sym_consteval] = ACTIONS(3751), + [sym_primitive_type] = ACTIONS(3751), + [anon_sym_enum] = ACTIONS(3751), + [anon_sym_class] = ACTIONS(3751), + [anon_sym_struct] = ACTIONS(3751), + [anon_sym_union] = ACTIONS(3751), + [anon_sym_if] = ACTIONS(3751), + [anon_sym_switch] = ACTIONS(3751), + [anon_sym_case] = ACTIONS(3751), + [anon_sym_default] = ACTIONS(3751), + [anon_sym_while] = ACTIONS(3751), + [anon_sym_do] = ACTIONS(3751), + [anon_sym_for] = ACTIONS(3751), + [anon_sym_return] = ACTIONS(3751), + [anon_sym_break] = ACTIONS(3751), + [anon_sym_continue] = ACTIONS(3751), + [anon_sym_goto] = ACTIONS(3751), + [anon_sym_not] = ACTIONS(3751), + [anon_sym_compl] = ACTIONS(3751), + [anon_sym_DASH_DASH] = ACTIONS(3753), + [anon_sym_PLUS_PLUS] = ACTIONS(3753), + [anon_sym_sizeof] = ACTIONS(3751), + [anon_sym___alignof__] = ACTIONS(3751), + [anon_sym___alignof] = ACTIONS(3751), + [anon_sym__alignof] = ACTIONS(3751), + [anon_sym_alignof] = ACTIONS(3751), + [anon_sym__Alignof] = ACTIONS(3751), + [anon_sym_offsetof] = ACTIONS(3751), + [anon_sym__Generic] = ACTIONS(3751), + [anon_sym_asm] = ACTIONS(3751), + [anon_sym___asm__] = ACTIONS(3751), + [sym_number_literal] = ACTIONS(3753), + [anon_sym_L_SQUOTE] = ACTIONS(3753), + [anon_sym_u_SQUOTE] = ACTIONS(3753), + [anon_sym_U_SQUOTE] = ACTIONS(3753), + [anon_sym_u8_SQUOTE] = ACTIONS(3753), + [anon_sym_SQUOTE] = ACTIONS(3753), + [anon_sym_L_DQUOTE] = ACTIONS(3753), + [anon_sym_u_DQUOTE] = ACTIONS(3753), + [anon_sym_U_DQUOTE] = ACTIONS(3753), + [anon_sym_u8_DQUOTE] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3753), + [sym_true] = ACTIONS(3751), + [sym_false] = ACTIONS(3751), + [anon_sym_NULL] = ACTIONS(3751), + [anon_sym_nullptr] = ACTIONS(3751), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3751), + [anon_sym_decltype] = ACTIONS(3751), + [anon_sym_virtual] = ACTIONS(3751), + [anon_sym_alignas] = ACTIONS(3751), + [anon_sym_typename] = ACTIONS(3751), + [anon_sym_template] = ACTIONS(3751), + [anon_sym_try] = ACTIONS(3751), + [anon_sym_delete] = ACTIONS(3751), + [anon_sym_throw] = ACTIONS(3751), + [anon_sym_co_return] = ACTIONS(3751), + [anon_sym_co_yield] = ACTIONS(3751), + [anon_sym_R_DQUOTE] = ACTIONS(3753), + [anon_sym_LR_DQUOTE] = ACTIONS(3753), + [anon_sym_uR_DQUOTE] = ACTIONS(3753), + [anon_sym_UR_DQUOTE] = ACTIONS(3753), + [anon_sym_u8R_DQUOTE] = ACTIONS(3753), + [anon_sym_co_await] = ACTIONS(3751), + [anon_sym_new] = ACTIONS(3751), + [anon_sym_requires] = ACTIONS(3751), + [sym_this] = ACTIONS(3751), + }, + [1050] = { + [sym_identifier] = ACTIONS(2830), + [anon_sym_LPAREN2] = ACTIONS(2832), + [anon_sym_BANG] = ACTIONS(2832), + [anon_sym_TILDE] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2830), + [anon_sym_PLUS] = ACTIONS(2830), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2832), + [anon_sym___extension__] = ACTIONS(2830), + [anon_sym_typedef] = ACTIONS(2830), + [anon_sym_extern] = ACTIONS(2830), + [anon_sym___attribute__] = ACTIONS(2830), + [anon_sym_COLON_COLON] = ACTIONS(2832), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2832), + [anon_sym___declspec] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_signed] = ACTIONS(2830), + [anon_sym_unsigned] = ACTIONS(2830), + [anon_sym_long] = ACTIONS(2830), + [anon_sym_short] = ACTIONS(2830), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2830), + [anon_sym_register] = ACTIONS(2830), + [anon_sym_inline] = ACTIONS(2830), + [anon_sym___inline] = ACTIONS(2830), + [anon_sym___inline__] = ACTIONS(2830), + [anon_sym___forceinline] = ACTIONS(2830), + [anon_sym_thread_local] = ACTIONS(2830), + [anon_sym___thread] = ACTIONS(2830), + [anon_sym_const] = ACTIONS(2830), + [anon_sym_constexpr] = ACTIONS(2830), + [anon_sym_volatile] = ACTIONS(2830), + [anon_sym_restrict] = ACTIONS(2830), + [anon_sym___restrict__] = ACTIONS(2830), + [anon_sym__Atomic] = ACTIONS(2830), + [anon_sym__Noreturn] = ACTIONS(2830), + [anon_sym_noreturn] = ACTIONS(2830), + [anon_sym_mutable] = ACTIONS(2830), + [anon_sym_constinit] = ACTIONS(2830), + [anon_sym_consteval] = ACTIONS(2830), + [sym_primitive_type] = ACTIONS(2830), + [anon_sym_enum] = ACTIONS(2830), + [anon_sym_class] = ACTIONS(2830), + [anon_sym_struct] = ACTIONS(2830), + [anon_sym_union] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2830), + [anon_sym_else] = ACTIONS(2830), + [anon_sym_switch] = ACTIONS(2830), + [anon_sym_while] = ACTIONS(2830), + [anon_sym_do] = ACTIONS(2830), + [anon_sym_for] = ACTIONS(2830), + [anon_sym_return] = ACTIONS(2830), + [anon_sym_break] = ACTIONS(2830), + [anon_sym_continue] = ACTIONS(2830), + [anon_sym_goto] = ACTIONS(2830), + [anon_sym_not] = ACTIONS(2830), + [anon_sym_compl] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_sizeof] = ACTIONS(2830), + [anon_sym___alignof__] = ACTIONS(2830), + [anon_sym___alignof] = ACTIONS(2830), + [anon_sym__alignof] = ACTIONS(2830), + [anon_sym_alignof] = ACTIONS(2830), + [anon_sym__Alignof] = ACTIONS(2830), + [anon_sym_offsetof] = ACTIONS(2830), + [anon_sym__Generic] = ACTIONS(2830), + [anon_sym_asm] = ACTIONS(2830), + [anon_sym___asm__] = ACTIONS(2830), + [sym_number_literal] = ACTIONS(2832), + [anon_sym_L_SQUOTE] = ACTIONS(2832), + [anon_sym_u_SQUOTE] = ACTIONS(2832), + [anon_sym_U_SQUOTE] = ACTIONS(2832), + [anon_sym_u8_SQUOTE] = ACTIONS(2832), + [anon_sym_SQUOTE] = ACTIONS(2832), + [anon_sym_L_DQUOTE] = ACTIONS(2832), + [anon_sym_u_DQUOTE] = ACTIONS(2832), + [anon_sym_U_DQUOTE] = ACTIONS(2832), + [anon_sym_u8_DQUOTE] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [anon_sym_NULL] = ACTIONS(2830), + [anon_sym_nullptr] = ACTIONS(2830), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2830), + [anon_sym_decltype] = ACTIONS(2830), + [anon_sym_virtual] = ACTIONS(2830), + [anon_sym_alignas] = ACTIONS(2830), + [anon_sym_typename] = ACTIONS(2830), + [anon_sym_template] = ACTIONS(2830), + [anon_sym_try] = ACTIONS(2830), + [anon_sym_delete] = ACTIONS(2830), + [anon_sym_throw] = ACTIONS(2830), + [anon_sym_co_return] = ACTIONS(2830), + [anon_sym_co_yield] = ACTIONS(2830), + [anon_sym_R_DQUOTE] = ACTIONS(2832), + [anon_sym_LR_DQUOTE] = ACTIONS(2832), + [anon_sym_uR_DQUOTE] = ACTIONS(2832), + [anon_sym_UR_DQUOTE] = ACTIONS(2832), + [anon_sym_u8R_DQUOTE] = ACTIONS(2832), + [anon_sym_co_await] = ACTIONS(2830), + [anon_sym_new] = ACTIONS(2830), + [anon_sym_requires] = ACTIONS(2830), + [sym_this] = ACTIONS(2830), + }, + [1051] = { + [sym_identifier] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [1052] = { + [sym_identifier] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [1053] = { + [sym_identifier] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [1054] = { + [sym_identifier] = ACTIONS(2880), + [anon_sym_LPAREN2] = ACTIONS(2882), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2882), + [anon_sym_SEMI] = ACTIONS(2882), + [anon_sym___extension__] = ACTIONS(2880), + [anon_sym_typedef] = ACTIONS(2880), + [anon_sym_extern] = ACTIONS(2880), + [anon_sym___attribute__] = ACTIONS(2880), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2882), + [anon_sym___declspec] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_signed] = ACTIONS(2880), + [anon_sym_unsigned] = ACTIONS(2880), + [anon_sym_long] = ACTIONS(2880), + [anon_sym_short] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_static] = ACTIONS(2880), + [anon_sym_register] = ACTIONS(2880), + [anon_sym_inline] = ACTIONS(2880), + [anon_sym___inline] = ACTIONS(2880), + [anon_sym___inline__] = ACTIONS(2880), + [anon_sym___forceinline] = ACTIONS(2880), + [anon_sym_thread_local] = ACTIONS(2880), + [anon_sym___thread] = ACTIONS(2880), + [anon_sym_const] = ACTIONS(2880), + [anon_sym_constexpr] = ACTIONS(2880), + [anon_sym_volatile] = ACTIONS(2880), + [anon_sym_restrict] = ACTIONS(2880), + [anon_sym___restrict__] = ACTIONS(2880), + [anon_sym__Atomic] = ACTIONS(2880), + [anon_sym__Noreturn] = ACTIONS(2880), + [anon_sym_noreturn] = ACTIONS(2880), + [anon_sym_mutable] = ACTIONS(2880), + [anon_sym_constinit] = ACTIONS(2880), + [anon_sym_consteval] = ACTIONS(2880), + [sym_primitive_type] = ACTIONS(2880), + [anon_sym_enum] = ACTIONS(2880), + [anon_sym_class] = ACTIONS(2880), + [anon_sym_struct] = ACTIONS(2880), + [anon_sym_union] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_else] = ACTIONS(2880), + [anon_sym_switch] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_break] = ACTIONS(2880), + [anon_sym_continue] = ACTIONS(2880), + [anon_sym_goto] = ACTIONS(2880), + [anon_sym_not] = ACTIONS(2880), + [anon_sym_compl] = ACTIONS(2880), + [anon_sym_DASH_DASH] = ACTIONS(2882), + [anon_sym_PLUS_PLUS] = ACTIONS(2882), + [anon_sym_sizeof] = ACTIONS(2880), + [anon_sym___alignof__] = ACTIONS(2880), + [anon_sym___alignof] = ACTIONS(2880), + [anon_sym__alignof] = ACTIONS(2880), + [anon_sym_alignof] = ACTIONS(2880), + [anon_sym__Alignof] = ACTIONS(2880), + [anon_sym_offsetof] = ACTIONS(2880), + [anon_sym__Generic] = ACTIONS(2880), + [anon_sym_asm] = ACTIONS(2880), + [anon_sym___asm__] = ACTIONS(2880), + [sym_number_literal] = ACTIONS(2882), + [anon_sym_L_SQUOTE] = ACTIONS(2882), + [anon_sym_u_SQUOTE] = ACTIONS(2882), + [anon_sym_U_SQUOTE] = ACTIONS(2882), + [anon_sym_u8_SQUOTE] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_L_DQUOTE] = ACTIONS(2882), + [anon_sym_u_DQUOTE] = ACTIONS(2882), + [anon_sym_U_DQUOTE] = ACTIONS(2882), + [anon_sym_u8_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE] = ACTIONS(2882), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [anon_sym_NULL] = ACTIONS(2880), + [anon_sym_nullptr] = ACTIONS(2880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2880), + [anon_sym_decltype] = ACTIONS(2880), + [anon_sym_virtual] = ACTIONS(2880), + [anon_sym_alignas] = ACTIONS(2880), + [anon_sym_typename] = ACTIONS(2880), + [anon_sym_template] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_delete] = ACTIONS(2880), + [anon_sym_throw] = ACTIONS(2880), + [anon_sym_co_return] = ACTIONS(2880), + [anon_sym_co_yield] = ACTIONS(2880), + [anon_sym_R_DQUOTE] = ACTIONS(2882), + [anon_sym_LR_DQUOTE] = ACTIONS(2882), + [anon_sym_uR_DQUOTE] = ACTIONS(2882), + [anon_sym_UR_DQUOTE] = ACTIONS(2882), + [anon_sym_u8R_DQUOTE] = ACTIONS(2882), + [anon_sym_co_await] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_requires] = ACTIONS(2880), + [sym_this] = ACTIONS(2880), + }, + [1055] = { + [sym_identifier] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [1056] = { + [sym_identifier] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [1057] = { + [sym_identifier] = ACTIONS(3785), + [anon_sym_LPAREN2] = ACTIONS(3791), + [anon_sym_BANG] = ACTIONS(3791), + [anon_sym_TILDE] = ACTIONS(3791), + [anon_sym_DASH] = ACTIONS(3793), + [anon_sym_PLUS] = ACTIONS(3793), + [anon_sym_STAR] = ACTIONS(3791), + [anon_sym_AMP] = ACTIONS(3791), + [anon_sym_SEMI] = ACTIONS(3791), + [anon_sym___extension__] = ACTIONS(3797), + [anon_sym_extern] = ACTIONS(3797), + [anon_sym___attribute__] = ACTIONS(3797), + [anon_sym_COLON_COLON] = ACTIONS(3788), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3788), + [anon_sym___declspec] = ACTIONS(3797), + [anon_sym_LBRACE] = ACTIONS(3791), + [anon_sym_signed] = ACTIONS(3797), + [anon_sym_unsigned] = ACTIONS(3797), + [anon_sym_long] = ACTIONS(3797), + [anon_sym_short] = ACTIONS(3797), + [anon_sym_LBRACK] = ACTIONS(3793), + [anon_sym_static] = ACTIONS(3797), + [anon_sym_register] = ACTIONS(3797), + [anon_sym_inline] = ACTIONS(3797), + [anon_sym___inline] = ACTIONS(3797), + [anon_sym___inline__] = ACTIONS(3797), + [anon_sym___forceinline] = ACTIONS(3797), + [anon_sym_thread_local] = ACTIONS(3797), + [anon_sym___thread] = ACTIONS(3797), + [anon_sym_const] = ACTIONS(3797), + [anon_sym_constexpr] = ACTIONS(3797), + [anon_sym_volatile] = ACTIONS(3797), + [anon_sym_restrict] = ACTIONS(3797), + [anon_sym___restrict__] = ACTIONS(3797), + [anon_sym__Atomic] = ACTIONS(3797), + [anon_sym__Noreturn] = ACTIONS(3797), + [anon_sym_noreturn] = ACTIONS(3797), + [anon_sym_mutable] = ACTIONS(3797), + [anon_sym_constinit] = ACTIONS(3797), + [anon_sym_consteval] = ACTIONS(3797), + [sym_primitive_type] = ACTIONS(3785), + [anon_sym_enum] = ACTIONS(3797), + [anon_sym_class] = ACTIONS(3797), + [anon_sym_struct] = ACTIONS(3797), + [anon_sym_union] = ACTIONS(3797), + [anon_sym_if] = ACTIONS(3793), + [anon_sym_switch] = ACTIONS(3793), + [anon_sym_case] = ACTIONS(3793), + [anon_sym_default] = ACTIONS(3793), + [anon_sym_while] = ACTIONS(3793), + [anon_sym_do] = ACTIONS(3793), + [anon_sym_for] = ACTIONS(3793), + [anon_sym_return] = ACTIONS(3793), + [anon_sym_break] = ACTIONS(3793), + [anon_sym_continue] = ACTIONS(3793), + [anon_sym_goto] = ACTIONS(3793), + [anon_sym_not] = ACTIONS(3793), + [anon_sym_compl] = ACTIONS(3793), + [anon_sym_DASH_DASH] = ACTIONS(3791), + [anon_sym_PLUS_PLUS] = ACTIONS(3791), + [anon_sym_sizeof] = ACTIONS(3793), + [anon_sym___alignof__] = ACTIONS(3793), + [anon_sym___alignof] = ACTIONS(3793), + [anon_sym__alignof] = ACTIONS(3793), + [anon_sym_alignof] = ACTIONS(3793), + [anon_sym__Alignof] = ACTIONS(3793), + [anon_sym_offsetof] = ACTIONS(3793), + [anon_sym__Generic] = ACTIONS(3793), + [anon_sym_asm] = ACTIONS(3793), + [anon_sym___asm__] = ACTIONS(3793), + [sym_number_literal] = ACTIONS(3791), + [anon_sym_L_SQUOTE] = ACTIONS(3791), + [anon_sym_u_SQUOTE] = ACTIONS(3791), + [anon_sym_U_SQUOTE] = ACTIONS(3791), + [anon_sym_u8_SQUOTE] = ACTIONS(3791), + [anon_sym_SQUOTE] = ACTIONS(3791), + [anon_sym_L_DQUOTE] = ACTIONS(3791), + [anon_sym_u_DQUOTE] = ACTIONS(3791), + [anon_sym_U_DQUOTE] = ACTIONS(3791), + [anon_sym_u8_DQUOTE] = ACTIONS(3791), + [anon_sym_DQUOTE] = ACTIONS(3791), + [sym_true] = ACTIONS(3793), + [sym_false] = ACTIONS(3793), + [anon_sym_NULL] = ACTIONS(3793), + [anon_sym_nullptr] = ACTIONS(3793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3797), + [anon_sym_decltype] = ACTIONS(3785), + [anon_sym_virtual] = ACTIONS(3797), + [anon_sym_alignas] = ACTIONS(3797), + [anon_sym_typename] = ACTIONS(3797), + [anon_sym_template] = ACTIONS(3785), + [anon_sym_try] = ACTIONS(3793), + [anon_sym_delete] = ACTIONS(3793), + [anon_sym_throw] = ACTIONS(3793), + [anon_sym_co_return] = ACTIONS(3793), + [anon_sym_co_yield] = ACTIONS(3793), + [anon_sym_R_DQUOTE] = ACTIONS(3791), + [anon_sym_LR_DQUOTE] = ACTIONS(3791), + [anon_sym_uR_DQUOTE] = ACTIONS(3791), + [anon_sym_UR_DQUOTE] = ACTIONS(3791), + [anon_sym_u8R_DQUOTE] = ACTIONS(3791), + [anon_sym_co_await] = ACTIONS(3793), + [anon_sym_new] = ACTIONS(3793), + [anon_sym_requires] = ACTIONS(3793), + [sym_this] = ACTIONS(3793), + }, + [1058] = { + [sym_identifier] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym___extension__] = ACTIONS(2868), + [anon_sym_typedef] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym___attribute__] = ACTIONS(2868), + [anon_sym_COLON_COLON] = ACTIONS(2870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2870), + [anon_sym___declspec] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_signed] = ACTIONS(2868), + [anon_sym_unsigned] = ACTIONS(2868), + [anon_sym_long] = ACTIONS(2868), + [anon_sym_short] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_register] = ACTIONS(2868), + [anon_sym_inline] = ACTIONS(2868), + [anon_sym___inline] = ACTIONS(2868), + [anon_sym___inline__] = ACTIONS(2868), + [anon_sym___forceinline] = ACTIONS(2868), + [anon_sym_thread_local] = ACTIONS(2868), + [anon_sym___thread] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_constexpr] = ACTIONS(2868), + [anon_sym_volatile] = ACTIONS(2868), + [anon_sym_restrict] = ACTIONS(2868), + [anon_sym___restrict__] = ACTIONS(2868), + [anon_sym__Atomic] = ACTIONS(2868), + [anon_sym__Noreturn] = ACTIONS(2868), + [anon_sym_noreturn] = ACTIONS(2868), + [anon_sym_mutable] = ACTIONS(2868), + [anon_sym_constinit] = ACTIONS(2868), + [anon_sym_consteval] = ACTIONS(2868), + [sym_primitive_type] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_class] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2868), + [anon_sym_union] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_goto] = ACTIONS(2868), + [anon_sym_not] = ACTIONS(2868), + [anon_sym_compl] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_sizeof] = ACTIONS(2868), + [anon_sym___alignof__] = ACTIONS(2868), + [anon_sym___alignof] = ACTIONS(2868), + [anon_sym__alignof] = ACTIONS(2868), + [anon_sym_alignof] = ACTIONS(2868), + [anon_sym__Alignof] = ACTIONS(2868), + [anon_sym_offsetof] = ACTIONS(2868), + [anon_sym__Generic] = ACTIONS(2868), + [anon_sym_asm] = ACTIONS(2868), + [anon_sym___asm__] = ACTIONS(2868), + [sym_number_literal] = ACTIONS(2870), + [anon_sym_L_SQUOTE] = ACTIONS(2870), + [anon_sym_u_SQUOTE] = ACTIONS(2870), + [anon_sym_U_SQUOTE] = ACTIONS(2870), + [anon_sym_u8_SQUOTE] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_L_DQUOTE] = ACTIONS(2870), + [anon_sym_u_DQUOTE] = ACTIONS(2870), + [anon_sym_U_DQUOTE] = ACTIONS(2870), + [anon_sym_u8_DQUOTE] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [sym_true] = ACTIONS(2868), + [sym_false] = ACTIONS(2868), + [anon_sym_NULL] = ACTIONS(2868), + [anon_sym_nullptr] = ACTIONS(2868), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2868), + [anon_sym_decltype] = ACTIONS(2868), + [anon_sym_virtual] = ACTIONS(2868), + [anon_sym_alignas] = ACTIONS(2868), + [anon_sym_typename] = ACTIONS(2868), + [anon_sym_template] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_delete] = ACTIONS(2868), + [anon_sym_throw] = ACTIONS(2868), + [anon_sym_co_return] = ACTIONS(2868), + [anon_sym_co_yield] = ACTIONS(2868), + [anon_sym_R_DQUOTE] = ACTIONS(2870), + [anon_sym_LR_DQUOTE] = ACTIONS(2870), + [anon_sym_uR_DQUOTE] = ACTIONS(2870), + [anon_sym_UR_DQUOTE] = ACTIONS(2870), + [anon_sym_u8R_DQUOTE] = ACTIONS(2870), + [anon_sym_co_await] = ACTIONS(2868), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_requires] = ACTIONS(2868), + [sym_this] = ACTIONS(2868), + }, + [1059] = { + [sym_identifier] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [1060] = { + [sym_identifier] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [1061] = { + [sym_identifier] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [1062] = { + [sym_identifier] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [1063] = { + [sym_identifier] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [1064] = { + [sym_identifier] = ACTIONS(2824), + [anon_sym_LPAREN2] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_PLUS] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym___extension__] = ACTIONS(2824), + [anon_sym_typedef] = ACTIONS(2824), + [anon_sym_extern] = ACTIONS(2824), + [anon_sym___attribute__] = ACTIONS(2824), + [anon_sym_COLON_COLON] = ACTIONS(2826), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2826), + [anon_sym___declspec] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_signed] = ACTIONS(2824), + [anon_sym_unsigned] = ACTIONS(2824), + [anon_sym_long] = ACTIONS(2824), + [anon_sym_short] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_register] = ACTIONS(2824), + [anon_sym_inline] = ACTIONS(2824), + [anon_sym___inline] = ACTIONS(2824), + [anon_sym___inline__] = ACTIONS(2824), + [anon_sym___forceinline] = ACTIONS(2824), + [anon_sym_thread_local] = ACTIONS(2824), + [anon_sym___thread] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2824), + [anon_sym_constexpr] = ACTIONS(2824), + [anon_sym_volatile] = ACTIONS(2824), + [anon_sym_restrict] = ACTIONS(2824), + [anon_sym___restrict__] = ACTIONS(2824), + [anon_sym__Atomic] = ACTIONS(2824), + [anon_sym__Noreturn] = ACTIONS(2824), + [anon_sym_noreturn] = ACTIONS(2824), + [anon_sym_mutable] = ACTIONS(2824), + [anon_sym_constinit] = ACTIONS(2824), + [anon_sym_consteval] = ACTIONS(2824), + [sym_primitive_type] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [anon_sym_class] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2824), + [anon_sym_union] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_else] = ACTIONS(2824), + [anon_sym_switch] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_do] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_goto] = ACTIONS(2824), + [anon_sym_not] = ACTIONS(2824), + [anon_sym_compl] = ACTIONS(2824), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_sizeof] = ACTIONS(2824), + [anon_sym___alignof__] = ACTIONS(2824), + [anon_sym___alignof] = ACTIONS(2824), + [anon_sym__alignof] = ACTIONS(2824), + [anon_sym_alignof] = ACTIONS(2824), + [anon_sym__Alignof] = ACTIONS(2824), + [anon_sym_offsetof] = ACTIONS(2824), + [anon_sym__Generic] = ACTIONS(2824), + [anon_sym_asm] = ACTIONS(2824), + [anon_sym___asm__] = ACTIONS(2824), + [sym_number_literal] = ACTIONS(2826), + [anon_sym_L_SQUOTE] = ACTIONS(2826), + [anon_sym_u_SQUOTE] = ACTIONS(2826), + [anon_sym_U_SQUOTE] = ACTIONS(2826), + [anon_sym_u8_SQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_L_DQUOTE] = ACTIONS(2826), + [anon_sym_u_DQUOTE] = ACTIONS(2826), + [anon_sym_U_DQUOTE] = ACTIONS(2826), + [anon_sym_u8_DQUOTE] = ACTIONS(2826), + [anon_sym_DQUOTE] = ACTIONS(2826), + [sym_true] = ACTIONS(2824), + [sym_false] = ACTIONS(2824), + [anon_sym_NULL] = ACTIONS(2824), + [anon_sym_nullptr] = ACTIONS(2824), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2824), + [anon_sym_decltype] = ACTIONS(2824), + [anon_sym_virtual] = ACTIONS(2824), + [anon_sym_alignas] = ACTIONS(2824), + [anon_sym_typename] = ACTIONS(2824), + [anon_sym_template] = ACTIONS(2824), + [anon_sym_try] = ACTIONS(2824), + [anon_sym_delete] = ACTIONS(2824), + [anon_sym_throw] = ACTIONS(2824), + [anon_sym_co_return] = ACTIONS(2824), + [anon_sym_co_yield] = ACTIONS(2824), + [anon_sym_R_DQUOTE] = ACTIONS(2826), + [anon_sym_LR_DQUOTE] = ACTIONS(2826), + [anon_sym_uR_DQUOTE] = ACTIONS(2826), + [anon_sym_UR_DQUOTE] = ACTIONS(2826), + [anon_sym_u8R_DQUOTE] = ACTIONS(2826), + [anon_sym_co_await] = ACTIONS(2824), + [anon_sym_new] = ACTIONS(2824), + [anon_sym_requires] = ACTIONS(2824), + [sym_this] = ACTIONS(2824), + }, + [1065] = { + [sym_identifier] = ACTIONS(2820), + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym___attribute__] = ACTIONS(2820), + [anon_sym_COLON_COLON] = ACTIONS(2822), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2822), + [anon_sym___declspec] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym___inline] = ACTIONS(2820), + [anon_sym___inline__] = ACTIONS(2820), + [anon_sym___forceinline] = ACTIONS(2820), + [anon_sym_thread_local] = ACTIONS(2820), + [anon_sym___thread] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym___restrict__] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym__Noreturn] = ACTIONS(2820), + [anon_sym_noreturn] = ACTIONS(2820), + [anon_sym_mutable] = ACTIONS(2820), + [anon_sym_constinit] = ACTIONS(2820), + [anon_sym_consteval] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_class] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_else] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_not] = ACTIONS(2820), + [anon_sym_compl] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym___alignof__] = ACTIONS(2820), + [anon_sym___alignof] = ACTIONS(2820), + [anon_sym__alignof] = ACTIONS(2820), + [anon_sym_alignof] = ACTIONS(2820), + [anon_sym__Alignof] = ACTIONS(2820), + [anon_sym_offsetof] = ACTIONS(2820), + [anon_sym__Generic] = ACTIONS(2820), + [anon_sym_asm] = ACTIONS(2820), + [anon_sym___asm__] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2822), + [anon_sym_L_SQUOTE] = ACTIONS(2822), + [anon_sym_u_SQUOTE] = ACTIONS(2822), + [anon_sym_U_SQUOTE] = ACTIONS(2822), + [anon_sym_u8_SQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_L_DQUOTE] = ACTIONS(2822), + [anon_sym_u_DQUOTE] = ACTIONS(2822), + [anon_sym_U_DQUOTE] = ACTIONS(2822), + [anon_sym_u8_DQUOTE] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(2822), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [anon_sym_NULL] = ACTIONS(2820), + [anon_sym_nullptr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2820), + [anon_sym_decltype] = ACTIONS(2820), + [anon_sym_virtual] = ACTIONS(2820), + [anon_sym_alignas] = ACTIONS(2820), + [anon_sym_typename] = ACTIONS(2820), + [anon_sym_template] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(2820), + [anon_sym_delete] = ACTIONS(2820), + [anon_sym_throw] = ACTIONS(2820), + [anon_sym_co_return] = ACTIONS(2820), + [anon_sym_co_yield] = ACTIONS(2820), + [anon_sym_R_DQUOTE] = ACTIONS(2822), + [anon_sym_LR_DQUOTE] = ACTIONS(2822), + [anon_sym_uR_DQUOTE] = ACTIONS(2822), + [anon_sym_UR_DQUOTE] = ACTIONS(2822), + [anon_sym_u8R_DQUOTE] = ACTIONS(2822), + [anon_sym_co_await] = ACTIONS(2820), + [anon_sym_new] = ACTIONS(2820), + [anon_sym_requires] = ACTIONS(2820), + [sym_this] = ACTIONS(2820), + }, + [1066] = { + [sym_identifier] = ACTIONS(2836), + [anon_sym_LPAREN2] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(2838), + [anon_sym_TILDE] = ACTIONS(2838), + [anon_sym_DASH] = ACTIONS(2836), + [anon_sym_PLUS] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym_SEMI] = ACTIONS(2838), + [anon_sym___extension__] = ACTIONS(2836), + [anon_sym_typedef] = ACTIONS(2836), + [anon_sym_extern] = ACTIONS(2836), + [anon_sym___attribute__] = ACTIONS(2836), + [anon_sym_COLON_COLON] = ACTIONS(2838), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2838), + [anon_sym___declspec] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_signed] = ACTIONS(2836), + [anon_sym_unsigned] = ACTIONS(2836), + [anon_sym_long] = ACTIONS(2836), + [anon_sym_short] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_static] = ACTIONS(2836), + [anon_sym_register] = ACTIONS(2836), + [anon_sym_inline] = ACTIONS(2836), + [anon_sym___inline] = ACTIONS(2836), + [anon_sym___inline__] = ACTIONS(2836), + [anon_sym___forceinline] = ACTIONS(2836), + [anon_sym_thread_local] = ACTIONS(2836), + [anon_sym___thread] = ACTIONS(2836), + [anon_sym_const] = ACTIONS(2836), + [anon_sym_constexpr] = ACTIONS(2836), + [anon_sym_volatile] = ACTIONS(2836), + [anon_sym_restrict] = ACTIONS(2836), + [anon_sym___restrict__] = ACTIONS(2836), + [anon_sym__Atomic] = ACTIONS(2836), + [anon_sym__Noreturn] = ACTIONS(2836), + [anon_sym_noreturn] = ACTIONS(2836), + [anon_sym_mutable] = ACTIONS(2836), + [anon_sym_constinit] = ACTIONS(2836), + [anon_sym_consteval] = ACTIONS(2836), + [sym_primitive_type] = ACTIONS(2836), + [anon_sym_enum] = ACTIONS(2836), + [anon_sym_class] = ACTIONS(2836), + [anon_sym_struct] = ACTIONS(2836), + [anon_sym_union] = ACTIONS(2836), + [anon_sym_if] = ACTIONS(2836), + [anon_sym_else] = ACTIONS(2836), + [anon_sym_switch] = ACTIONS(2836), + [anon_sym_while] = ACTIONS(2836), + [anon_sym_do] = ACTIONS(2836), + [anon_sym_for] = ACTIONS(2836), + [anon_sym_return] = ACTIONS(2836), + [anon_sym_break] = ACTIONS(2836), + [anon_sym_continue] = ACTIONS(2836), + [anon_sym_goto] = ACTIONS(2836), + [anon_sym_not] = ACTIONS(2836), + [anon_sym_compl] = ACTIONS(2836), + [anon_sym_DASH_DASH] = ACTIONS(2838), + [anon_sym_PLUS_PLUS] = ACTIONS(2838), + [anon_sym_sizeof] = ACTIONS(2836), + [anon_sym___alignof__] = ACTIONS(2836), + [anon_sym___alignof] = ACTIONS(2836), + [anon_sym__alignof] = ACTIONS(2836), + [anon_sym_alignof] = ACTIONS(2836), + [anon_sym__Alignof] = ACTIONS(2836), + [anon_sym_offsetof] = ACTIONS(2836), + [anon_sym__Generic] = ACTIONS(2836), + [anon_sym_asm] = ACTIONS(2836), + [anon_sym___asm__] = ACTIONS(2836), + [sym_number_literal] = ACTIONS(2838), + [anon_sym_L_SQUOTE] = ACTIONS(2838), + [anon_sym_u_SQUOTE] = ACTIONS(2838), + [anon_sym_U_SQUOTE] = ACTIONS(2838), + [anon_sym_u8_SQUOTE] = ACTIONS(2838), + [anon_sym_SQUOTE] = ACTIONS(2838), + [anon_sym_L_DQUOTE] = ACTIONS(2838), + [anon_sym_u_DQUOTE] = ACTIONS(2838), + [anon_sym_U_DQUOTE] = ACTIONS(2838), + [anon_sym_u8_DQUOTE] = ACTIONS(2838), + [anon_sym_DQUOTE] = ACTIONS(2838), + [sym_true] = ACTIONS(2836), + [sym_false] = ACTIONS(2836), + [anon_sym_NULL] = ACTIONS(2836), + [anon_sym_nullptr] = ACTIONS(2836), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2836), + [anon_sym_decltype] = ACTIONS(2836), + [anon_sym_virtual] = ACTIONS(2836), + [anon_sym_alignas] = ACTIONS(2836), + [anon_sym_typename] = ACTIONS(2836), + [anon_sym_template] = ACTIONS(2836), + [anon_sym_try] = ACTIONS(2836), + [anon_sym_delete] = ACTIONS(2836), + [anon_sym_throw] = ACTIONS(2836), + [anon_sym_co_return] = ACTIONS(2836), + [anon_sym_co_yield] = ACTIONS(2836), + [anon_sym_R_DQUOTE] = ACTIONS(2838), + [anon_sym_LR_DQUOTE] = ACTIONS(2838), + [anon_sym_uR_DQUOTE] = ACTIONS(2838), + [anon_sym_UR_DQUOTE] = ACTIONS(2838), + [anon_sym_u8R_DQUOTE] = ACTIONS(2838), + [anon_sym_co_await] = ACTIONS(2836), + [anon_sym_new] = ACTIONS(2836), + [anon_sym_requires] = ACTIONS(2836), + [sym_this] = ACTIONS(2836), + }, + [1067] = { + [sym_identifier] = ACTIONS(2840), + [anon_sym_LPAREN2] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_TILDE] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2842), + [anon_sym_SEMI] = ACTIONS(2842), + [anon_sym___extension__] = ACTIONS(2840), + [anon_sym_typedef] = ACTIONS(2840), + [anon_sym_extern] = ACTIONS(2840), + [anon_sym___attribute__] = ACTIONS(2840), + [anon_sym_COLON_COLON] = ACTIONS(2842), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2842), + [anon_sym___declspec] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_signed] = ACTIONS(2840), + [anon_sym_unsigned] = ACTIONS(2840), + [anon_sym_long] = ACTIONS(2840), + [anon_sym_short] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2840), + [anon_sym_static] = ACTIONS(2840), + [anon_sym_register] = ACTIONS(2840), + [anon_sym_inline] = ACTIONS(2840), + [anon_sym___inline] = ACTIONS(2840), + [anon_sym___inline__] = ACTIONS(2840), + [anon_sym___forceinline] = ACTIONS(2840), + [anon_sym_thread_local] = ACTIONS(2840), + [anon_sym___thread] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2840), + [anon_sym_constexpr] = ACTIONS(2840), + [anon_sym_volatile] = ACTIONS(2840), + [anon_sym_restrict] = ACTIONS(2840), + [anon_sym___restrict__] = ACTIONS(2840), + [anon_sym__Atomic] = ACTIONS(2840), + [anon_sym__Noreturn] = ACTIONS(2840), + [anon_sym_noreturn] = ACTIONS(2840), + [anon_sym_mutable] = ACTIONS(2840), + [anon_sym_constinit] = ACTIONS(2840), + [anon_sym_consteval] = ACTIONS(2840), + [sym_primitive_type] = ACTIONS(2840), + [anon_sym_enum] = ACTIONS(2840), + [anon_sym_class] = ACTIONS(2840), + [anon_sym_struct] = ACTIONS(2840), + [anon_sym_union] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_else] = ACTIONS(2840), + [anon_sym_switch] = ACTIONS(2840), + [anon_sym_while] = ACTIONS(2840), + [anon_sym_do] = ACTIONS(2840), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_goto] = ACTIONS(2840), + [anon_sym_not] = ACTIONS(2840), + [anon_sym_compl] = ACTIONS(2840), + [anon_sym_DASH_DASH] = ACTIONS(2842), + [anon_sym_PLUS_PLUS] = ACTIONS(2842), + [anon_sym_sizeof] = ACTIONS(2840), + [anon_sym___alignof__] = ACTIONS(2840), + [anon_sym___alignof] = ACTIONS(2840), + [anon_sym__alignof] = ACTIONS(2840), + [anon_sym_alignof] = ACTIONS(2840), + [anon_sym__Alignof] = ACTIONS(2840), + [anon_sym_offsetof] = ACTIONS(2840), + [anon_sym__Generic] = ACTIONS(2840), + [anon_sym_asm] = ACTIONS(2840), + [anon_sym___asm__] = ACTIONS(2840), + [sym_number_literal] = ACTIONS(2842), + [anon_sym_L_SQUOTE] = ACTIONS(2842), + [anon_sym_u_SQUOTE] = ACTIONS(2842), + [anon_sym_U_SQUOTE] = ACTIONS(2842), + [anon_sym_u8_SQUOTE] = ACTIONS(2842), + [anon_sym_SQUOTE] = ACTIONS(2842), + [anon_sym_L_DQUOTE] = ACTIONS(2842), + [anon_sym_u_DQUOTE] = ACTIONS(2842), + [anon_sym_U_DQUOTE] = ACTIONS(2842), + [anon_sym_u8_DQUOTE] = ACTIONS(2842), + [anon_sym_DQUOTE] = ACTIONS(2842), + [sym_true] = ACTIONS(2840), + [sym_false] = ACTIONS(2840), + [anon_sym_NULL] = ACTIONS(2840), + [anon_sym_nullptr] = ACTIONS(2840), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2840), + [anon_sym_decltype] = ACTIONS(2840), + [anon_sym_virtual] = ACTIONS(2840), + [anon_sym_alignas] = ACTIONS(2840), + [anon_sym_typename] = ACTIONS(2840), + [anon_sym_template] = ACTIONS(2840), + [anon_sym_try] = ACTIONS(2840), + [anon_sym_delete] = ACTIONS(2840), + [anon_sym_throw] = ACTIONS(2840), + [anon_sym_co_return] = ACTIONS(2840), + [anon_sym_co_yield] = ACTIONS(2840), + [anon_sym_R_DQUOTE] = ACTIONS(2842), + [anon_sym_LR_DQUOTE] = ACTIONS(2842), + [anon_sym_uR_DQUOTE] = ACTIONS(2842), + [anon_sym_UR_DQUOTE] = ACTIONS(2842), + [anon_sym_u8R_DQUOTE] = ACTIONS(2842), + [anon_sym_co_await] = ACTIONS(2840), + [anon_sym_new] = ACTIONS(2840), + [anon_sym_requires] = ACTIONS(2840), + [sym_this] = ACTIONS(2840), + }, + [1068] = { + [sym_identifier] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [1069] = { + [sym_identifier] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), + }, + [1070] = { + [sym_identifier] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym___extension__] = ACTIONS(2852), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym___attribute__] = ACTIONS(2852), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2854), + [anon_sym___declspec] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_signed] = ACTIONS(2852), + [anon_sym_unsigned] = ACTIONS(2852), + [anon_sym_long] = ACTIONS(2852), + [anon_sym_short] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_register] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym___inline] = ACTIONS(2852), + [anon_sym___inline__] = ACTIONS(2852), + [anon_sym___forceinline] = ACTIONS(2852), + [anon_sym_thread_local] = ACTIONS(2852), + [anon_sym___thread] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_constexpr] = ACTIONS(2852), + [anon_sym_volatile] = ACTIONS(2852), + [anon_sym_restrict] = ACTIONS(2852), + [anon_sym___restrict__] = ACTIONS(2852), + [anon_sym__Atomic] = ACTIONS(2852), + [anon_sym__Noreturn] = ACTIONS(2852), + [anon_sym_noreturn] = ACTIONS(2852), + [anon_sym_mutable] = ACTIONS(2852), + [anon_sym_constinit] = ACTIONS(2852), + [anon_sym_consteval] = ACTIONS(2852), + [sym_primitive_type] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_class] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_else] = ACTIONS(2852), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_goto] = ACTIONS(2852), + [anon_sym_not] = ACTIONS(2852), + [anon_sym_compl] = ACTIONS(2852), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_sizeof] = ACTIONS(2852), + [anon_sym___alignof__] = ACTIONS(2852), + [anon_sym___alignof] = ACTIONS(2852), + [anon_sym__alignof] = ACTIONS(2852), + [anon_sym_alignof] = ACTIONS(2852), + [anon_sym__Alignof] = ACTIONS(2852), + [anon_sym_offsetof] = ACTIONS(2852), + [anon_sym__Generic] = ACTIONS(2852), + [anon_sym_asm] = ACTIONS(2852), + [anon_sym___asm__] = ACTIONS(2852), + [sym_number_literal] = ACTIONS(2854), + [anon_sym_L_SQUOTE] = ACTIONS(2854), + [anon_sym_u_SQUOTE] = ACTIONS(2854), + [anon_sym_U_SQUOTE] = ACTIONS(2854), + [anon_sym_u8_SQUOTE] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_L_DQUOTE] = ACTIONS(2854), + [anon_sym_u_DQUOTE] = ACTIONS(2854), + [anon_sym_U_DQUOTE] = ACTIONS(2854), + [anon_sym_u8_DQUOTE] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [sym_true] = ACTIONS(2852), + [sym_false] = ACTIONS(2852), + [anon_sym_NULL] = ACTIONS(2852), + [anon_sym_nullptr] = ACTIONS(2852), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2852), + [anon_sym_decltype] = ACTIONS(2852), + [anon_sym_virtual] = ACTIONS(2852), + [anon_sym_alignas] = ACTIONS(2852), + [anon_sym_typename] = ACTIONS(2852), + [anon_sym_template] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_delete] = ACTIONS(2852), + [anon_sym_throw] = ACTIONS(2852), + [anon_sym_co_return] = ACTIONS(2852), + [anon_sym_co_yield] = ACTIONS(2852), + [anon_sym_R_DQUOTE] = ACTIONS(2854), + [anon_sym_LR_DQUOTE] = ACTIONS(2854), + [anon_sym_uR_DQUOTE] = ACTIONS(2854), + [anon_sym_UR_DQUOTE] = ACTIONS(2854), + [anon_sym_u8R_DQUOTE] = ACTIONS(2854), + [anon_sym_co_await] = ACTIONS(2852), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_requires] = ACTIONS(2852), + [sym_this] = ACTIONS(2852), + }, + [1071] = { [sym_identifier] = ACTIONS(2844), - [aux_sym_preproc_include_token1] = ACTIONS(2844), - [aux_sym_preproc_def_token1] = ACTIONS(2844), - [aux_sym_preproc_if_token1] = ACTIONS(2844), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2844), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2844), - [sym_preproc_directive] = ACTIONS(2844), [anon_sym_LPAREN2] = ACTIONS(2846), [anon_sym_BANG] = ACTIONS(2846), [anon_sym_TILDE] = ACTIONS(2846), [anon_sym_DASH] = ACTIONS(2844), [anon_sym_PLUS] = ACTIONS(2844), [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2844), + [anon_sym_AMP] = ACTIONS(2846), [anon_sym_SEMI] = ACTIONS(2846), [anon_sym___extension__] = ACTIONS(2844), [anon_sym_typedef] = ACTIONS(2844), @@ -196254,15 +197441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(2846), [anon_sym_LBRACK_LBRACK] = ACTIONS(2846), [anon_sym___declspec] = ACTIONS(2844), - [anon_sym___based] = ACTIONS(2844), - [anon_sym___cdecl] = ACTIONS(2844), - [anon_sym___clrcall] = ACTIONS(2844), - [anon_sym___stdcall] = ACTIONS(2844), - [anon_sym___fastcall] = ACTIONS(2844), - [anon_sym___thiscall] = ACTIONS(2844), - [anon_sym___vectorcall] = ACTIONS(2844), [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_RBRACE] = ACTIONS(2846), [anon_sym_signed] = ACTIONS(2844), [anon_sym_unsigned] = ACTIONS(2844), [anon_sym_long] = ACTIONS(2844), @@ -196295,8 +197474,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2844), [anon_sym_else] = ACTIONS(2844), [anon_sym_switch] = ACTIONS(2844), - [anon_sym_case] = ACTIONS(2844), - [anon_sym_default] = ACTIONS(2844), [anon_sym_while] = ACTIONS(2844), [anon_sym_do] = ACTIONS(2844), [anon_sym_for] = ACTIONS(2844), @@ -196338,17 +197515,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(2844), [anon_sym_virtual] = ACTIONS(2844), [anon_sym_alignas] = ACTIONS(2844), - [anon_sym_explicit] = ACTIONS(2844), [anon_sym_typename] = ACTIONS(2844), [anon_sym_template] = ACTIONS(2844), - [anon_sym_operator] = ACTIONS(2844), [anon_sym_try] = ACTIONS(2844), [anon_sym_delete] = ACTIONS(2844), [anon_sym_throw] = ACTIONS(2844), - [anon_sym_namespace] = ACTIONS(2844), - [anon_sym_using] = ACTIONS(2844), - [anon_sym_static_assert] = ACTIONS(2844), - [anon_sym_concept] = ACTIONS(2844), [anon_sym_co_return] = ACTIONS(2844), [anon_sym_co_yield] = ACTIONS(2844), [anon_sym_R_DQUOTE] = ACTIONS(2846), @@ -196361,3560 +197532,3363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2844), [sym_this] = ACTIONS(2844), }, - [1014] = { - [sym_identifier] = ACTIONS(2989), - [aux_sym_preproc_include_token1] = ACTIONS(2989), - [aux_sym_preproc_def_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token1] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), - [sym_preproc_directive] = ACTIONS(2989), - [anon_sym_LPAREN2] = ACTIONS(2991), - [anon_sym_BANG] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym___extension__] = ACTIONS(2989), - [anon_sym_typedef] = ACTIONS(2989), - [anon_sym_extern] = ACTIONS(2989), - [anon_sym___attribute__] = ACTIONS(2989), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), - [anon_sym___declspec] = ACTIONS(2989), - [anon_sym___based] = ACTIONS(2989), - [anon_sym___cdecl] = ACTIONS(2989), - [anon_sym___clrcall] = ACTIONS(2989), - [anon_sym___stdcall] = ACTIONS(2989), - [anon_sym___fastcall] = ACTIONS(2989), - [anon_sym___thiscall] = ACTIONS(2989), - [anon_sym___vectorcall] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_RBRACE] = ACTIONS(2991), - [anon_sym_signed] = ACTIONS(2989), - [anon_sym_unsigned] = ACTIONS(2989), - [anon_sym_long] = ACTIONS(2989), - [anon_sym_short] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_register] = ACTIONS(2989), - [anon_sym_inline] = ACTIONS(2989), - [anon_sym___inline] = ACTIONS(2989), - [anon_sym___inline__] = ACTIONS(2989), - [anon_sym___forceinline] = ACTIONS(2989), - [anon_sym_thread_local] = ACTIONS(2989), - [anon_sym___thread] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_constexpr] = ACTIONS(2989), - [anon_sym_volatile] = ACTIONS(2989), - [anon_sym_restrict] = ACTIONS(2989), - [anon_sym___restrict__] = ACTIONS(2989), - [anon_sym__Atomic] = ACTIONS(2989), - [anon_sym__Noreturn] = ACTIONS(2989), - [anon_sym_noreturn] = ACTIONS(2989), - [anon_sym_mutable] = ACTIONS(2989), - [anon_sym_constinit] = ACTIONS(2989), - [anon_sym_consteval] = ACTIONS(2989), - [sym_primitive_type] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_class] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_else] = ACTIONS(2989), - [anon_sym_switch] = ACTIONS(2989), - [anon_sym_case] = ACTIONS(2989), - [anon_sym_default] = ACTIONS(2989), - [anon_sym_while] = ACTIONS(2989), - [anon_sym_do] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_goto] = ACTIONS(2989), - [anon_sym_not] = ACTIONS(2989), - [anon_sym_compl] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_sizeof] = ACTIONS(2989), - [anon_sym___alignof__] = ACTIONS(2989), - [anon_sym___alignof] = ACTIONS(2989), - [anon_sym__alignof] = ACTIONS(2989), - [anon_sym_alignof] = ACTIONS(2989), - [anon_sym__Alignof] = ACTIONS(2989), - [anon_sym_offsetof] = ACTIONS(2989), - [anon_sym__Generic] = ACTIONS(2989), - [anon_sym_asm] = ACTIONS(2989), - [anon_sym___asm__] = ACTIONS(2989), - [sym_number_literal] = ACTIONS(2991), - [anon_sym_L_SQUOTE] = ACTIONS(2991), - [anon_sym_u_SQUOTE] = ACTIONS(2991), - [anon_sym_U_SQUOTE] = ACTIONS(2991), - [anon_sym_u8_SQUOTE] = ACTIONS(2991), - [anon_sym_SQUOTE] = ACTIONS(2991), - [anon_sym_L_DQUOTE] = ACTIONS(2991), - [anon_sym_u_DQUOTE] = ACTIONS(2991), - [anon_sym_U_DQUOTE] = ACTIONS(2991), - [anon_sym_u8_DQUOTE] = ACTIONS(2991), - [anon_sym_DQUOTE] = ACTIONS(2991), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [anon_sym_NULL] = ACTIONS(2989), - [anon_sym_nullptr] = ACTIONS(2989), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2989), - [anon_sym_decltype] = ACTIONS(2989), - [anon_sym_virtual] = ACTIONS(2989), - [anon_sym_alignas] = ACTIONS(2989), - [anon_sym_explicit] = ACTIONS(2989), - [anon_sym_typename] = ACTIONS(2989), - [anon_sym_template] = ACTIONS(2989), - [anon_sym_operator] = ACTIONS(2989), - [anon_sym_try] = ACTIONS(2989), - [anon_sym_delete] = ACTIONS(2989), - [anon_sym_throw] = ACTIONS(2989), - [anon_sym_namespace] = ACTIONS(2989), - [anon_sym_using] = ACTIONS(2989), - [anon_sym_static_assert] = ACTIONS(2989), - [anon_sym_concept] = ACTIONS(2989), - [anon_sym_co_return] = ACTIONS(2989), - [anon_sym_co_yield] = ACTIONS(2989), - [anon_sym_R_DQUOTE] = ACTIONS(2991), - [anon_sym_LR_DQUOTE] = ACTIONS(2991), - [anon_sym_uR_DQUOTE] = ACTIONS(2991), - [anon_sym_UR_DQUOTE] = ACTIONS(2991), - [anon_sym_u8R_DQUOTE] = ACTIONS(2991), - [anon_sym_co_await] = ACTIONS(2989), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_requires] = ACTIONS(2989), - [sym_this] = ACTIONS(2989), + [1072] = { + [sym_identifier] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym___extension__] = ACTIONS(2848), + [anon_sym_typedef] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym___attribute__] = ACTIONS(2848), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2850), + [anon_sym___declspec] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_signed] = ACTIONS(2848), + [anon_sym_unsigned] = ACTIONS(2848), + [anon_sym_long] = ACTIONS(2848), + [anon_sym_short] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_register] = ACTIONS(2848), + [anon_sym_inline] = ACTIONS(2848), + [anon_sym___inline] = ACTIONS(2848), + [anon_sym___inline__] = ACTIONS(2848), + [anon_sym___forceinline] = ACTIONS(2848), + [anon_sym_thread_local] = ACTIONS(2848), + [anon_sym___thread] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_constexpr] = ACTIONS(2848), + [anon_sym_volatile] = ACTIONS(2848), + [anon_sym_restrict] = ACTIONS(2848), + [anon_sym___restrict__] = ACTIONS(2848), + [anon_sym__Atomic] = ACTIONS(2848), + [anon_sym__Noreturn] = ACTIONS(2848), + [anon_sym_noreturn] = ACTIONS(2848), + [anon_sym_mutable] = ACTIONS(2848), + [anon_sym_constinit] = ACTIONS(2848), + [anon_sym_consteval] = ACTIONS(2848), + [sym_primitive_type] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_class] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2848), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_else] = ACTIONS(2848), + [anon_sym_switch] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_goto] = ACTIONS(2848), + [anon_sym_not] = ACTIONS(2848), + [anon_sym_compl] = ACTIONS(2848), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_sizeof] = ACTIONS(2848), + [anon_sym___alignof__] = ACTIONS(2848), + [anon_sym___alignof] = ACTIONS(2848), + [anon_sym__alignof] = ACTIONS(2848), + [anon_sym_alignof] = ACTIONS(2848), + [anon_sym__Alignof] = ACTIONS(2848), + [anon_sym_offsetof] = ACTIONS(2848), + [anon_sym__Generic] = ACTIONS(2848), + [anon_sym_asm] = ACTIONS(2848), + [anon_sym___asm__] = ACTIONS(2848), + [sym_number_literal] = ACTIONS(2850), + [anon_sym_L_SQUOTE] = ACTIONS(2850), + [anon_sym_u_SQUOTE] = ACTIONS(2850), + [anon_sym_U_SQUOTE] = ACTIONS(2850), + [anon_sym_u8_SQUOTE] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_L_DQUOTE] = ACTIONS(2850), + [anon_sym_u_DQUOTE] = ACTIONS(2850), + [anon_sym_U_DQUOTE] = ACTIONS(2850), + [anon_sym_u8_DQUOTE] = ACTIONS(2850), + [anon_sym_DQUOTE] = ACTIONS(2850), + [sym_true] = ACTIONS(2848), + [sym_false] = ACTIONS(2848), + [anon_sym_NULL] = ACTIONS(2848), + [anon_sym_nullptr] = ACTIONS(2848), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2848), + [anon_sym_decltype] = ACTIONS(2848), + [anon_sym_virtual] = ACTIONS(2848), + [anon_sym_alignas] = ACTIONS(2848), + [anon_sym_typename] = ACTIONS(2848), + [anon_sym_template] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_delete] = ACTIONS(2848), + [anon_sym_throw] = ACTIONS(2848), + [anon_sym_co_return] = ACTIONS(2848), + [anon_sym_co_yield] = ACTIONS(2848), + [anon_sym_R_DQUOTE] = ACTIONS(2850), + [anon_sym_LR_DQUOTE] = ACTIONS(2850), + [anon_sym_uR_DQUOTE] = ACTIONS(2850), + [anon_sym_UR_DQUOTE] = ACTIONS(2850), + [anon_sym_u8R_DQUOTE] = ACTIONS(2850), + [anon_sym_co_await] = ACTIONS(2848), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_requires] = ACTIONS(2848), + [sym_this] = ACTIONS(2848), }, - [1015] = { - [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_extern] = ACTIONS(3003), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3003), - [anon_sym_constinit] = ACTIONS(3003), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3003), - [anon_sym_alignas] = 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_using] = 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), + [1073] = { + [sym_identifier] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [1016] = { - [sym_identifier] = ACTIONS(2838), - [aux_sym_preproc_include_token1] = ACTIONS(2838), - [aux_sym_preproc_def_token1] = ACTIONS(2838), - [aux_sym_preproc_if_token1] = ACTIONS(2838), - [aux_sym_preproc_if_token2] = ACTIONS(2838), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2838), - [sym_preproc_directive] = ACTIONS(2838), - [anon_sym_LPAREN2] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym___extension__] = ACTIONS(2838), - [anon_sym_typedef] = ACTIONS(2838), - [anon_sym_extern] = ACTIONS(2838), - [anon_sym___attribute__] = ACTIONS(2838), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2840), - [anon_sym___declspec] = ACTIONS(2838), - [anon_sym___based] = ACTIONS(2838), - [anon_sym___cdecl] = ACTIONS(2838), - [anon_sym___clrcall] = ACTIONS(2838), - [anon_sym___stdcall] = ACTIONS(2838), - [anon_sym___fastcall] = ACTIONS(2838), - [anon_sym___thiscall] = ACTIONS(2838), - [anon_sym___vectorcall] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_signed] = ACTIONS(2838), - [anon_sym_unsigned] = ACTIONS(2838), - [anon_sym_long] = ACTIONS(2838), - [anon_sym_short] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_static] = ACTIONS(2838), - [anon_sym_register] = ACTIONS(2838), - [anon_sym_inline] = ACTIONS(2838), - [anon_sym___inline] = ACTIONS(2838), - [anon_sym___inline__] = ACTIONS(2838), - [anon_sym___forceinline] = ACTIONS(2838), - [anon_sym_thread_local] = ACTIONS(2838), - [anon_sym___thread] = ACTIONS(2838), - [anon_sym_const] = ACTIONS(2838), - [anon_sym_constexpr] = ACTIONS(2838), - [anon_sym_volatile] = ACTIONS(2838), - [anon_sym_restrict] = ACTIONS(2838), - [anon_sym___restrict__] = ACTIONS(2838), - [anon_sym__Atomic] = ACTIONS(2838), - [anon_sym__Noreturn] = ACTIONS(2838), - [anon_sym_noreturn] = ACTIONS(2838), - [anon_sym_mutable] = ACTIONS(2838), - [anon_sym_constinit] = ACTIONS(2838), - [anon_sym_consteval] = ACTIONS(2838), - [sym_primitive_type] = ACTIONS(2838), - [anon_sym_enum] = ACTIONS(2838), - [anon_sym_class] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2838), - [anon_sym_union] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_else] = ACTIONS(2838), - [anon_sym_switch] = ACTIONS(2838), - [anon_sym_case] = ACTIONS(2838), - [anon_sym_default] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_break] = ACTIONS(2838), - [anon_sym_continue] = ACTIONS(2838), - [anon_sym_goto] = ACTIONS(2838), - [anon_sym_not] = ACTIONS(2838), - [anon_sym_compl] = ACTIONS(2838), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_sizeof] = ACTIONS(2838), - [anon_sym___alignof__] = ACTIONS(2838), - [anon_sym___alignof] = ACTIONS(2838), - [anon_sym__alignof] = ACTIONS(2838), - [anon_sym_alignof] = ACTIONS(2838), - [anon_sym__Alignof] = ACTIONS(2838), - [anon_sym_offsetof] = ACTIONS(2838), - [anon_sym__Generic] = ACTIONS(2838), - [anon_sym_asm] = ACTIONS(2838), - [anon_sym___asm__] = ACTIONS(2838), - [sym_number_literal] = ACTIONS(2840), - [anon_sym_L_SQUOTE] = ACTIONS(2840), - [anon_sym_u_SQUOTE] = ACTIONS(2840), - [anon_sym_U_SQUOTE] = ACTIONS(2840), - [anon_sym_u8_SQUOTE] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_L_DQUOTE] = ACTIONS(2840), - [anon_sym_u_DQUOTE] = ACTIONS(2840), - [anon_sym_U_DQUOTE] = ACTIONS(2840), - [anon_sym_u8_DQUOTE] = ACTIONS(2840), - [anon_sym_DQUOTE] = ACTIONS(2840), - [sym_true] = ACTIONS(2838), - [sym_false] = ACTIONS(2838), - [anon_sym_NULL] = ACTIONS(2838), - [anon_sym_nullptr] = ACTIONS(2838), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2838), - [anon_sym_decltype] = ACTIONS(2838), - [anon_sym_virtual] = ACTIONS(2838), - [anon_sym_alignas] = ACTIONS(2838), - [anon_sym_explicit] = ACTIONS(2838), - [anon_sym_typename] = ACTIONS(2838), - [anon_sym_template] = ACTIONS(2838), - [anon_sym_operator] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_delete] = ACTIONS(2838), - [anon_sym_throw] = ACTIONS(2838), - [anon_sym_namespace] = ACTIONS(2838), - [anon_sym_using] = ACTIONS(2838), - [anon_sym_static_assert] = ACTIONS(2838), - [anon_sym_concept] = ACTIONS(2838), - [anon_sym_co_return] = ACTIONS(2838), - [anon_sym_co_yield] = ACTIONS(2838), - [anon_sym_R_DQUOTE] = ACTIONS(2840), - [anon_sym_LR_DQUOTE] = ACTIONS(2840), - [anon_sym_uR_DQUOTE] = ACTIONS(2840), - [anon_sym_UR_DQUOTE] = ACTIONS(2840), - [anon_sym_u8R_DQUOTE] = ACTIONS(2840), - [anon_sym_co_await] = ACTIONS(2838), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_requires] = ACTIONS(2838), - [sym_this] = ACTIONS(2838), + [1074] = { + [sym_identifier] = ACTIONS(2770), + [anon_sym_LPAREN2] = ACTIONS(2772), + [anon_sym_BANG] = ACTIONS(2772), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2770), + [anon_sym_PLUS] = ACTIONS(2770), + [anon_sym_STAR] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym___extension__] = ACTIONS(2770), + [anon_sym_typedef] = ACTIONS(2770), + [anon_sym_extern] = ACTIONS(2770), + [anon_sym___attribute__] = ACTIONS(2770), + [anon_sym_COLON_COLON] = ACTIONS(2772), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2772), + [anon_sym___declspec] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_signed] = ACTIONS(2770), + [anon_sym_unsigned] = ACTIONS(2770), + [anon_sym_long] = ACTIONS(2770), + [anon_sym_short] = ACTIONS(2770), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym_static] = ACTIONS(2770), + [anon_sym_register] = ACTIONS(2770), + [anon_sym_inline] = ACTIONS(2770), + [anon_sym___inline] = ACTIONS(2770), + [anon_sym___inline__] = ACTIONS(2770), + [anon_sym___forceinline] = ACTIONS(2770), + [anon_sym_thread_local] = ACTIONS(2770), + [anon_sym___thread] = ACTIONS(2770), + [anon_sym_const] = ACTIONS(2770), + [anon_sym_constexpr] = ACTIONS(2770), + [anon_sym_volatile] = ACTIONS(2770), + [anon_sym_restrict] = ACTIONS(2770), + [anon_sym___restrict__] = ACTIONS(2770), + [anon_sym__Atomic] = ACTIONS(2770), + [anon_sym__Noreturn] = ACTIONS(2770), + [anon_sym_noreturn] = ACTIONS(2770), + [anon_sym_mutable] = ACTIONS(2770), + [anon_sym_constinit] = ACTIONS(2770), + [anon_sym_consteval] = ACTIONS(2770), + [sym_primitive_type] = ACTIONS(2770), + [anon_sym_enum] = ACTIONS(2770), + [anon_sym_class] = ACTIONS(2770), + [anon_sym_struct] = ACTIONS(2770), + [anon_sym_union] = ACTIONS(2770), + [anon_sym_if] = ACTIONS(2770), + [anon_sym_else] = ACTIONS(2770), + [anon_sym_switch] = ACTIONS(2770), + [anon_sym_while] = ACTIONS(2770), + [anon_sym_do] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2770), + [anon_sym_return] = ACTIONS(2770), + [anon_sym_break] = ACTIONS(2770), + [anon_sym_continue] = ACTIONS(2770), + [anon_sym_goto] = ACTIONS(2770), + [anon_sym_not] = ACTIONS(2770), + [anon_sym_compl] = ACTIONS(2770), + [anon_sym_DASH_DASH] = ACTIONS(2772), + [anon_sym_PLUS_PLUS] = ACTIONS(2772), + [anon_sym_sizeof] = ACTIONS(2770), + [anon_sym___alignof__] = ACTIONS(2770), + [anon_sym___alignof] = ACTIONS(2770), + [anon_sym__alignof] = ACTIONS(2770), + [anon_sym_alignof] = ACTIONS(2770), + [anon_sym__Alignof] = ACTIONS(2770), + [anon_sym_offsetof] = ACTIONS(2770), + [anon_sym__Generic] = ACTIONS(2770), + [anon_sym_asm] = ACTIONS(2770), + [anon_sym___asm__] = ACTIONS(2770), + [sym_number_literal] = ACTIONS(2772), + [anon_sym_L_SQUOTE] = ACTIONS(2772), + [anon_sym_u_SQUOTE] = ACTIONS(2772), + [anon_sym_U_SQUOTE] = ACTIONS(2772), + [anon_sym_u8_SQUOTE] = ACTIONS(2772), + [anon_sym_SQUOTE] = ACTIONS(2772), + [anon_sym_L_DQUOTE] = ACTIONS(2772), + [anon_sym_u_DQUOTE] = ACTIONS(2772), + [anon_sym_U_DQUOTE] = ACTIONS(2772), + [anon_sym_u8_DQUOTE] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2772), + [sym_true] = ACTIONS(2770), + [sym_false] = ACTIONS(2770), + [anon_sym_NULL] = ACTIONS(2770), + [anon_sym_nullptr] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2770), + [anon_sym_decltype] = ACTIONS(2770), + [anon_sym_virtual] = ACTIONS(2770), + [anon_sym_alignas] = ACTIONS(2770), + [anon_sym_typename] = ACTIONS(2770), + [anon_sym_template] = ACTIONS(2770), + [anon_sym_try] = ACTIONS(2770), + [anon_sym_delete] = ACTIONS(2770), + [anon_sym_throw] = ACTIONS(2770), + [anon_sym_co_return] = ACTIONS(2770), + [anon_sym_co_yield] = ACTIONS(2770), + [anon_sym_R_DQUOTE] = ACTIONS(2772), + [anon_sym_LR_DQUOTE] = ACTIONS(2772), + [anon_sym_uR_DQUOTE] = ACTIONS(2772), + [anon_sym_UR_DQUOTE] = ACTIONS(2772), + [anon_sym_u8R_DQUOTE] = ACTIONS(2772), + [anon_sym_co_await] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2770), + [anon_sym_requires] = ACTIONS(2770), + [sym_this] = ACTIONS(2770), }, - [1017] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [1075] = { + [sym_identifier] = ACTIONS(2808), + [anon_sym_LPAREN2] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2808), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym___extension__] = ACTIONS(2808), + [anon_sym_typedef] = ACTIONS(2808), + [anon_sym_extern] = ACTIONS(2808), + [anon_sym___attribute__] = ACTIONS(2808), + [anon_sym_COLON_COLON] = ACTIONS(2810), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2810), + [anon_sym___declspec] = ACTIONS(2808), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_signed] = ACTIONS(2808), + [anon_sym_unsigned] = ACTIONS(2808), + [anon_sym_long] = ACTIONS(2808), + [anon_sym_short] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2808), + [anon_sym_static] = ACTIONS(2808), + [anon_sym_register] = ACTIONS(2808), + [anon_sym_inline] = ACTIONS(2808), + [anon_sym___inline] = ACTIONS(2808), + [anon_sym___inline__] = ACTIONS(2808), + [anon_sym___forceinline] = ACTIONS(2808), + [anon_sym_thread_local] = ACTIONS(2808), + [anon_sym___thread] = ACTIONS(2808), + [anon_sym_const] = ACTIONS(2808), + [anon_sym_constexpr] = ACTIONS(2808), + [anon_sym_volatile] = ACTIONS(2808), + [anon_sym_restrict] = ACTIONS(2808), + [anon_sym___restrict__] = ACTIONS(2808), + [anon_sym__Atomic] = ACTIONS(2808), + [anon_sym__Noreturn] = ACTIONS(2808), + [anon_sym_noreturn] = ACTIONS(2808), + [anon_sym_mutable] = ACTIONS(2808), + [anon_sym_constinit] = ACTIONS(2808), + [anon_sym_consteval] = ACTIONS(2808), + [sym_primitive_type] = ACTIONS(2808), + [anon_sym_enum] = ACTIONS(2808), + [anon_sym_class] = ACTIONS(2808), + [anon_sym_struct] = ACTIONS(2808), + [anon_sym_union] = ACTIONS(2808), + [anon_sym_if] = ACTIONS(2808), + [anon_sym_else] = ACTIONS(2808), + [anon_sym_switch] = ACTIONS(2808), + [anon_sym_while] = ACTIONS(2808), + [anon_sym_do] = ACTIONS(2808), + [anon_sym_for] = ACTIONS(2808), + [anon_sym_return] = ACTIONS(2808), + [anon_sym_break] = ACTIONS(2808), + [anon_sym_continue] = ACTIONS(2808), + [anon_sym_goto] = ACTIONS(2808), + [anon_sym_not] = ACTIONS(2808), + [anon_sym_compl] = ACTIONS(2808), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_sizeof] = ACTIONS(2808), + [anon_sym___alignof__] = ACTIONS(2808), + [anon_sym___alignof] = ACTIONS(2808), + [anon_sym__alignof] = ACTIONS(2808), + [anon_sym_alignof] = ACTIONS(2808), + [anon_sym__Alignof] = ACTIONS(2808), + [anon_sym_offsetof] = ACTIONS(2808), + [anon_sym__Generic] = ACTIONS(2808), + [anon_sym_asm] = ACTIONS(2808), + [anon_sym___asm__] = ACTIONS(2808), + [sym_number_literal] = ACTIONS(2810), + [anon_sym_L_SQUOTE] = ACTIONS(2810), + [anon_sym_u_SQUOTE] = ACTIONS(2810), + [anon_sym_U_SQUOTE] = ACTIONS(2810), + [anon_sym_u8_SQUOTE] = ACTIONS(2810), + [anon_sym_SQUOTE] = ACTIONS(2810), + [anon_sym_L_DQUOTE] = ACTIONS(2810), + [anon_sym_u_DQUOTE] = ACTIONS(2810), + [anon_sym_U_DQUOTE] = ACTIONS(2810), + [anon_sym_u8_DQUOTE] = ACTIONS(2810), + [anon_sym_DQUOTE] = ACTIONS(2810), + [sym_true] = ACTIONS(2808), + [sym_false] = ACTIONS(2808), + [anon_sym_NULL] = ACTIONS(2808), + [anon_sym_nullptr] = ACTIONS(2808), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2808), + [anon_sym_decltype] = ACTIONS(2808), + [anon_sym_virtual] = ACTIONS(2808), + [anon_sym_alignas] = ACTIONS(2808), + [anon_sym_typename] = ACTIONS(2808), + [anon_sym_template] = ACTIONS(2808), + [anon_sym_try] = ACTIONS(2808), + [anon_sym_delete] = ACTIONS(2808), + [anon_sym_throw] = ACTIONS(2808), + [anon_sym_co_return] = ACTIONS(2808), + [anon_sym_co_yield] = ACTIONS(2808), + [anon_sym_R_DQUOTE] = ACTIONS(2810), + [anon_sym_LR_DQUOTE] = ACTIONS(2810), + [anon_sym_uR_DQUOTE] = ACTIONS(2810), + [anon_sym_UR_DQUOTE] = ACTIONS(2810), + [anon_sym_u8R_DQUOTE] = ACTIONS(2810), + [anon_sym_co_await] = ACTIONS(2808), + [anon_sym_new] = ACTIONS(2808), + [anon_sym_requires] = ACTIONS(2808), + [sym_this] = ACTIONS(2808), }, - [1018] = { - [ts_builtin_sym_end] = ACTIONS(2915), - [sym_identifier] = ACTIONS(2913), - [aux_sym_preproc_include_token1] = ACTIONS(2913), - [aux_sym_preproc_def_token1] = ACTIONS(2913), - [aux_sym_preproc_if_token1] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2913), - [sym_preproc_directive] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym___extension__] = ACTIONS(2913), - [anon_sym_typedef] = ACTIONS(2913), - [anon_sym_extern] = ACTIONS(2913), - [anon_sym___attribute__] = ACTIONS(2913), - [anon_sym_COLON_COLON] = ACTIONS(2915), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2915), - [anon_sym___declspec] = ACTIONS(2913), - [anon_sym___based] = ACTIONS(2913), - [anon_sym___cdecl] = ACTIONS(2913), - [anon_sym___clrcall] = ACTIONS(2913), - [anon_sym___stdcall] = ACTIONS(2913), - [anon_sym___fastcall] = ACTIONS(2913), - [anon_sym___thiscall] = ACTIONS(2913), - [anon_sym___vectorcall] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_signed] = ACTIONS(2913), - [anon_sym_unsigned] = ACTIONS(2913), - [anon_sym_long] = ACTIONS(2913), - [anon_sym_short] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_static] = ACTIONS(2913), - [anon_sym_register] = ACTIONS(2913), - [anon_sym_inline] = ACTIONS(2913), - [anon_sym___inline] = ACTIONS(2913), - [anon_sym___inline__] = ACTIONS(2913), - [anon_sym___forceinline] = ACTIONS(2913), - [anon_sym_thread_local] = ACTIONS(2913), - [anon_sym___thread] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_constexpr] = ACTIONS(2913), - [anon_sym_volatile] = ACTIONS(2913), - [anon_sym_restrict] = ACTIONS(2913), - [anon_sym___restrict__] = ACTIONS(2913), - [anon_sym__Atomic] = ACTIONS(2913), - [anon_sym__Noreturn] = ACTIONS(2913), - [anon_sym_noreturn] = ACTIONS(2913), - [anon_sym_mutable] = ACTIONS(2913), - [anon_sym_constinit] = ACTIONS(2913), - [anon_sym_consteval] = ACTIONS(2913), - [sym_primitive_type] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), - [anon_sym_class] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_union] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_else] = ACTIONS(2913), - [anon_sym_switch] = ACTIONS(2913), - [anon_sym_case] = ACTIONS(2913), - [anon_sym_default] = ACTIONS(2913), - [anon_sym_while] = ACTIONS(2913), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_goto] = ACTIONS(2913), - [anon_sym_not] = ACTIONS(2913), - [anon_sym_compl] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2913), - [anon_sym___alignof__] = ACTIONS(2913), - [anon_sym___alignof] = ACTIONS(2913), - [anon_sym__alignof] = ACTIONS(2913), - [anon_sym_alignof] = ACTIONS(2913), - [anon_sym__Alignof] = ACTIONS(2913), - [anon_sym_offsetof] = ACTIONS(2913), - [anon_sym__Generic] = ACTIONS(2913), - [anon_sym_asm] = ACTIONS(2913), - [anon_sym___asm__] = ACTIONS(2913), - [sym_number_literal] = ACTIONS(2915), - [anon_sym_L_SQUOTE] = ACTIONS(2915), - [anon_sym_u_SQUOTE] = ACTIONS(2915), - [anon_sym_U_SQUOTE] = ACTIONS(2915), - [anon_sym_u8_SQUOTE] = ACTIONS(2915), - [anon_sym_SQUOTE] = ACTIONS(2915), - [anon_sym_L_DQUOTE] = ACTIONS(2915), - [anon_sym_u_DQUOTE] = ACTIONS(2915), - [anon_sym_U_DQUOTE] = ACTIONS(2915), - [anon_sym_u8_DQUOTE] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(2915), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [anon_sym_NULL] = ACTIONS(2913), - [anon_sym_nullptr] = ACTIONS(2913), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2913), - [anon_sym_decltype] = ACTIONS(2913), - [anon_sym_virtual] = ACTIONS(2913), - [anon_sym_alignas] = ACTIONS(2913), - [anon_sym_explicit] = ACTIONS(2913), - [anon_sym_typename] = ACTIONS(2913), - [anon_sym_template] = ACTIONS(2913), - [anon_sym_operator] = ACTIONS(2913), - [anon_sym_try] = ACTIONS(2913), - [anon_sym_delete] = ACTIONS(2913), - [anon_sym_throw] = ACTIONS(2913), - [anon_sym_namespace] = ACTIONS(2913), - [anon_sym_using] = ACTIONS(2913), - [anon_sym_static_assert] = ACTIONS(2913), - [anon_sym_concept] = ACTIONS(2913), - [anon_sym_co_return] = ACTIONS(2913), - [anon_sym_co_yield] = ACTIONS(2913), - [anon_sym_R_DQUOTE] = ACTIONS(2915), - [anon_sym_LR_DQUOTE] = ACTIONS(2915), - [anon_sym_uR_DQUOTE] = ACTIONS(2915), - [anon_sym_UR_DQUOTE] = ACTIONS(2915), - [anon_sym_u8R_DQUOTE] = ACTIONS(2915), - [anon_sym_co_await] = ACTIONS(2913), - [anon_sym_new] = ACTIONS(2913), - [anon_sym_requires] = ACTIONS(2913), - [sym_this] = ACTIONS(2913), + [1076] = { + [sym_identifier] = ACTIONS(2800), + [anon_sym_LPAREN2] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(2800), + [anon_sym_PLUS] = ACTIONS(2800), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym___extension__] = ACTIONS(2800), + [anon_sym_typedef] = ACTIONS(2800), + [anon_sym_extern] = ACTIONS(2800), + [anon_sym___attribute__] = ACTIONS(2800), + [anon_sym_COLON_COLON] = ACTIONS(2802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2802), + [anon_sym___declspec] = ACTIONS(2800), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_signed] = ACTIONS(2800), + [anon_sym_unsigned] = ACTIONS(2800), + [anon_sym_long] = ACTIONS(2800), + [anon_sym_short] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2800), + [anon_sym_register] = ACTIONS(2800), + [anon_sym_inline] = ACTIONS(2800), + [anon_sym___inline] = ACTIONS(2800), + [anon_sym___inline__] = ACTIONS(2800), + [anon_sym___forceinline] = ACTIONS(2800), + [anon_sym_thread_local] = ACTIONS(2800), + [anon_sym___thread] = ACTIONS(2800), + [anon_sym_const] = ACTIONS(2800), + [anon_sym_constexpr] = ACTIONS(2800), + [anon_sym_volatile] = ACTIONS(2800), + [anon_sym_restrict] = ACTIONS(2800), + [anon_sym___restrict__] = ACTIONS(2800), + [anon_sym__Atomic] = ACTIONS(2800), + [anon_sym__Noreturn] = ACTIONS(2800), + [anon_sym_noreturn] = ACTIONS(2800), + [anon_sym_mutable] = ACTIONS(2800), + [anon_sym_constinit] = ACTIONS(2800), + [anon_sym_consteval] = ACTIONS(2800), + [sym_primitive_type] = ACTIONS(2800), + [anon_sym_enum] = ACTIONS(2800), + [anon_sym_class] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2800), + [anon_sym_union] = ACTIONS(2800), + [anon_sym_if] = ACTIONS(2800), + [anon_sym_else] = ACTIONS(2800), + [anon_sym_switch] = ACTIONS(2800), + [anon_sym_while] = ACTIONS(2800), + [anon_sym_do] = ACTIONS(2800), + [anon_sym_for] = ACTIONS(2800), + [anon_sym_return] = ACTIONS(2800), + [anon_sym_break] = ACTIONS(2800), + [anon_sym_continue] = ACTIONS(2800), + [anon_sym_goto] = ACTIONS(2800), + [anon_sym_not] = ACTIONS(2800), + [anon_sym_compl] = ACTIONS(2800), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_sizeof] = ACTIONS(2800), + [anon_sym___alignof__] = ACTIONS(2800), + [anon_sym___alignof] = ACTIONS(2800), + [anon_sym__alignof] = ACTIONS(2800), + [anon_sym_alignof] = ACTIONS(2800), + [anon_sym__Alignof] = ACTIONS(2800), + [anon_sym_offsetof] = ACTIONS(2800), + [anon_sym__Generic] = ACTIONS(2800), + [anon_sym_asm] = ACTIONS(2800), + [anon_sym___asm__] = ACTIONS(2800), + [sym_number_literal] = ACTIONS(2802), + [anon_sym_L_SQUOTE] = ACTIONS(2802), + [anon_sym_u_SQUOTE] = ACTIONS(2802), + [anon_sym_U_SQUOTE] = ACTIONS(2802), + [anon_sym_u8_SQUOTE] = ACTIONS(2802), + [anon_sym_SQUOTE] = ACTIONS(2802), + [anon_sym_L_DQUOTE] = ACTIONS(2802), + [anon_sym_u_DQUOTE] = ACTIONS(2802), + [anon_sym_U_DQUOTE] = ACTIONS(2802), + [anon_sym_u8_DQUOTE] = ACTIONS(2802), + [anon_sym_DQUOTE] = ACTIONS(2802), + [sym_true] = ACTIONS(2800), + [sym_false] = ACTIONS(2800), + [anon_sym_NULL] = ACTIONS(2800), + [anon_sym_nullptr] = ACTIONS(2800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2800), + [anon_sym_decltype] = ACTIONS(2800), + [anon_sym_virtual] = ACTIONS(2800), + [anon_sym_alignas] = ACTIONS(2800), + [anon_sym_typename] = ACTIONS(2800), + [anon_sym_template] = ACTIONS(2800), + [anon_sym_try] = ACTIONS(2800), + [anon_sym_delete] = ACTIONS(2800), + [anon_sym_throw] = ACTIONS(2800), + [anon_sym_co_return] = ACTIONS(2800), + [anon_sym_co_yield] = ACTIONS(2800), + [anon_sym_R_DQUOTE] = ACTIONS(2802), + [anon_sym_LR_DQUOTE] = ACTIONS(2802), + [anon_sym_uR_DQUOTE] = ACTIONS(2802), + [anon_sym_UR_DQUOTE] = ACTIONS(2802), + [anon_sym_u8R_DQUOTE] = ACTIONS(2802), + [anon_sym_co_await] = ACTIONS(2800), + [anon_sym_new] = ACTIONS(2800), + [anon_sym_requires] = ACTIONS(2800), + [sym_this] = ACTIONS(2800), }, - [1019] = { - [ts_builtin_sym_end] = ACTIONS(2967), - [sym_identifier] = ACTIONS(2965), - [aux_sym_preproc_include_token1] = ACTIONS(2965), - [aux_sym_preproc_def_token1] = ACTIONS(2965), - [aux_sym_preproc_if_token1] = ACTIONS(2965), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), - [sym_preproc_directive] = ACTIONS(2965), - [anon_sym_LPAREN2] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_AMP_AMP] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym___extension__] = ACTIONS(2965), - [anon_sym_typedef] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2965), - [anon_sym___attribute__] = ACTIONS(2965), - [anon_sym_COLON_COLON] = ACTIONS(2967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), - [anon_sym___declspec] = ACTIONS(2965), - [anon_sym___based] = ACTIONS(2965), - [anon_sym___cdecl] = ACTIONS(2965), - [anon_sym___clrcall] = ACTIONS(2965), - [anon_sym___stdcall] = ACTIONS(2965), - [anon_sym___fastcall] = ACTIONS(2965), - [anon_sym___thiscall] = ACTIONS(2965), - [anon_sym___vectorcall] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_signed] = ACTIONS(2965), - [anon_sym_unsigned] = ACTIONS(2965), - [anon_sym_long] = ACTIONS(2965), - [anon_sym_short] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2965), - [anon_sym_static] = ACTIONS(2965), - [anon_sym_register] = ACTIONS(2965), - [anon_sym_inline] = ACTIONS(2965), - [anon_sym___inline] = ACTIONS(2965), - [anon_sym___inline__] = ACTIONS(2965), - [anon_sym___forceinline] = ACTIONS(2965), - [anon_sym_thread_local] = ACTIONS(2965), - [anon_sym___thread] = ACTIONS(2965), - [anon_sym_const] = ACTIONS(2965), - [anon_sym_constexpr] = ACTIONS(2965), - [anon_sym_volatile] = ACTIONS(2965), - [anon_sym_restrict] = ACTIONS(2965), - [anon_sym___restrict__] = ACTIONS(2965), - [anon_sym__Atomic] = ACTIONS(2965), - [anon_sym__Noreturn] = ACTIONS(2965), - [anon_sym_noreturn] = ACTIONS(2965), - [anon_sym_mutable] = ACTIONS(2965), - [anon_sym_constinit] = ACTIONS(2965), - [anon_sym_consteval] = ACTIONS(2965), - [sym_primitive_type] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2965), - [anon_sym_class] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_union] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_else] = ACTIONS(2965), - [anon_sym_switch] = ACTIONS(2965), - [anon_sym_case] = ACTIONS(2965), - [anon_sym_default] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2965), - [anon_sym_do] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2965), - [anon_sym_return] = ACTIONS(2965), - [anon_sym_break] = ACTIONS(2965), - [anon_sym_continue] = ACTIONS(2965), - [anon_sym_goto] = ACTIONS(2965), - [anon_sym_not] = ACTIONS(2965), - [anon_sym_compl] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_sizeof] = ACTIONS(2965), - [anon_sym___alignof__] = ACTIONS(2965), - [anon_sym___alignof] = ACTIONS(2965), - [anon_sym__alignof] = ACTIONS(2965), - [anon_sym_alignof] = ACTIONS(2965), - [anon_sym__Alignof] = ACTIONS(2965), - [anon_sym_offsetof] = ACTIONS(2965), - [anon_sym__Generic] = ACTIONS(2965), - [anon_sym_asm] = ACTIONS(2965), - [anon_sym___asm__] = ACTIONS(2965), - [sym_number_literal] = ACTIONS(2967), - [anon_sym_L_SQUOTE] = ACTIONS(2967), - [anon_sym_u_SQUOTE] = ACTIONS(2967), - [anon_sym_U_SQUOTE] = ACTIONS(2967), - [anon_sym_u8_SQUOTE] = ACTIONS(2967), - [anon_sym_SQUOTE] = ACTIONS(2967), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [anon_sym_NULL] = ACTIONS(2965), - [anon_sym_nullptr] = ACTIONS(2965), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2965), - [anon_sym_decltype] = ACTIONS(2965), - [anon_sym_virtual] = ACTIONS(2965), - [anon_sym_alignas] = ACTIONS(2965), - [anon_sym_explicit] = ACTIONS(2965), - [anon_sym_typename] = ACTIONS(2965), - [anon_sym_template] = ACTIONS(2965), - [anon_sym_operator] = ACTIONS(2965), - [anon_sym_try] = ACTIONS(2965), - [anon_sym_delete] = ACTIONS(2965), - [anon_sym_throw] = ACTIONS(2965), - [anon_sym_namespace] = ACTIONS(2965), - [anon_sym_using] = ACTIONS(2965), - [anon_sym_static_assert] = ACTIONS(2965), - [anon_sym_concept] = ACTIONS(2965), - [anon_sym_co_return] = ACTIONS(2965), - [anon_sym_co_yield] = ACTIONS(2965), - [anon_sym_R_DQUOTE] = ACTIONS(2967), - [anon_sym_LR_DQUOTE] = ACTIONS(2967), - [anon_sym_uR_DQUOTE] = ACTIONS(2967), - [anon_sym_UR_DQUOTE] = ACTIONS(2967), - [anon_sym_u8R_DQUOTE] = ACTIONS(2967), - [anon_sym_co_await] = ACTIONS(2965), - [anon_sym_new] = ACTIONS(2965), - [anon_sym_requires] = ACTIONS(2965), - [sym_this] = ACTIONS(2965), - }, - [1020] = { - [ts_builtin_sym_end] = ACTIONS(2919), - [sym_identifier] = ACTIONS(2917), - [aux_sym_preproc_include_token1] = ACTIONS(2917), - [aux_sym_preproc_def_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), - [sym_preproc_directive] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym___based] = ACTIONS(2917), - [anon_sym___cdecl] = ACTIONS(2917), - [anon_sym___clrcall] = ACTIONS(2917), - [anon_sym___stdcall] = ACTIONS(2917), - [anon_sym___fastcall] = ACTIONS(2917), - [anon_sym___thiscall] = ACTIONS(2917), - [anon_sym___vectorcall] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2917), - [anon_sym_switch] = ACTIONS(2917), - [anon_sym_case] = ACTIONS(2917), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_goto] = ACTIONS(2917), - [anon_sym_not] = ACTIONS(2917), - [anon_sym_compl] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_sizeof] = ACTIONS(2917), - [anon_sym___alignof__] = ACTIONS(2917), - [anon_sym___alignof] = ACTIONS(2917), - [anon_sym__alignof] = ACTIONS(2917), - [anon_sym_alignof] = ACTIONS(2917), - [anon_sym__Alignof] = ACTIONS(2917), - [anon_sym_offsetof] = ACTIONS(2917), - [anon_sym__Generic] = ACTIONS(2917), - [anon_sym_asm] = ACTIONS(2917), - [anon_sym___asm__] = ACTIONS(2917), - [sym_number_literal] = ACTIONS(2919), - [anon_sym_L_SQUOTE] = ACTIONS(2919), - [anon_sym_u_SQUOTE] = ACTIONS(2919), - [anon_sym_U_SQUOTE] = ACTIONS(2919), - [anon_sym_u8_SQUOTE] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2919), - [anon_sym_L_DQUOTE] = ACTIONS(2919), - [anon_sym_u_DQUOTE] = ACTIONS(2919), - [anon_sym_U_DQUOTE] = ACTIONS(2919), - [anon_sym_u8_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [anon_sym_NULL] = ACTIONS(2917), - [anon_sym_nullptr] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_explicit] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_operator] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_delete] = ACTIONS(2917), - [anon_sym_throw] = ACTIONS(2917), - [anon_sym_namespace] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_static_assert] = ACTIONS(2917), - [anon_sym_concept] = ACTIONS(2917), - [anon_sym_co_return] = ACTIONS(2917), - [anon_sym_co_yield] = ACTIONS(2917), - [anon_sym_R_DQUOTE] = ACTIONS(2919), - [anon_sym_LR_DQUOTE] = ACTIONS(2919), - [anon_sym_uR_DQUOTE] = ACTIONS(2919), - [anon_sym_UR_DQUOTE] = ACTIONS(2919), - [anon_sym_u8R_DQUOTE] = ACTIONS(2919), - [anon_sym_co_await] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2917), + [1077] = { + [sym_identifier] = ACTIONS(2790), + [anon_sym_LPAREN2] = ACTIONS(2792), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_TILDE] = ACTIONS(2792), + [anon_sym_DASH] = ACTIONS(2790), + [anon_sym_PLUS] = ACTIONS(2790), + [anon_sym_STAR] = ACTIONS(2792), + [anon_sym_AMP] = ACTIONS(2792), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym___extension__] = ACTIONS(2790), + [anon_sym_typedef] = ACTIONS(2790), + [anon_sym_extern] = ACTIONS(2790), + [anon_sym___attribute__] = ACTIONS(2790), + [anon_sym_COLON_COLON] = ACTIONS(2792), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2792), + [anon_sym___declspec] = ACTIONS(2790), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_signed] = ACTIONS(2790), + [anon_sym_unsigned] = ACTIONS(2790), + [anon_sym_long] = ACTIONS(2790), + [anon_sym_short] = ACTIONS(2790), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym_static] = ACTIONS(2790), + [anon_sym_register] = ACTIONS(2790), + [anon_sym_inline] = ACTIONS(2790), + [anon_sym___inline] = ACTIONS(2790), + [anon_sym___inline__] = ACTIONS(2790), + [anon_sym___forceinline] = ACTIONS(2790), + [anon_sym_thread_local] = ACTIONS(2790), + [anon_sym___thread] = ACTIONS(2790), + [anon_sym_const] = ACTIONS(2790), + [anon_sym_constexpr] = ACTIONS(2790), + [anon_sym_volatile] = ACTIONS(2790), + [anon_sym_restrict] = ACTIONS(2790), + [anon_sym___restrict__] = ACTIONS(2790), + [anon_sym__Atomic] = ACTIONS(2790), + [anon_sym__Noreturn] = ACTIONS(2790), + [anon_sym_noreturn] = ACTIONS(2790), + [anon_sym_mutable] = ACTIONS(2790), + [anon_sym_constinit] = ACTIONS(2790), + [anon_sym_consteval] = ACTIONS(2790), + [sym_primitive_type] = ACTIONS(2790), + [anon_sym_enum] = ACTIONS(2790), + [anon_sym_class] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(2790), + [anon_sym_union] = ACTIONS(2790), + [anon_sym_if] = ACTIONS(2790), + [anon_sym_else] = ACTIONS(2790), + [anon_sym_switch] = ACTIONS(2790), + [anon_sym_while] = ACTIONS(2790), + [anon_sym_do] = ACTIONS(2790), + [anon_sym_for] = ACTIONS(2790), + [anon_sym_return] = ACTIONS(2790), + [anon_sym_break] = ACTIONS(2790), + [anon_sym_continue] = ACTIONS(2790), + [anon_sym_goto] = ACTIONS(2790), + [anon_sym_not] = ACTIONS(2790), + [anon_sym_compl] = ACTIONS(2790), + [anon_sym_DASH_DASH] = ACTIONS(2792), + [anon_sym_PLUS_PLUS] = ACTIONS(2792), + [anon_sym_sizeof] = ACTIONS(2790), + [anon_sym___alignof__] = ACTIONS(2790), + [anon_sym___alignof] = ACTIONS(2790), + [anon_sym__alignof] = ACTIONS(2790), + [anon_sym_alignof] = ACTIONS(2790), + [anon_sym__Alignof] = ACTIONS(2790), + [anon_sym_offsetof] = ACTIONS(2790), + [anon_sym__Generic] = ACTIONS(2790), + [anon_sym_asm] = ACTIONS(2790), + [anon_sym___asm__] = ACTIONS(2790), + [sym_number_literal] = ACTIONS(2792), + [anon_sym_L_SQUOTE] = ACTIONS(2792), + [anon_sym_u_SQUOTE] = ACTIONS(2792), + [anon_sym_U_SQUOTE] = ACTIONS(2792), + [anon_sym_u8_SQUOTE] = ACTIONS(2792), + [anon_sym_SQUOTE] = ACTIONS(2792), + [anon_sym_L_DQUOTE] = ACTIONS(2792), + [anon_sym_u_DQUOTE] = ACTIONS(2792), + [anon_sym_U_DQUOTE] = ACTIONS(2792), + [anon_sym_u8_DQUOTE] = ACTIONS(2792), + [anon_sym_DQUOTE] = ACTIONS(2792), + [sym_true] = ACTIONS(2790), + [sym_false] = ACTIONS(2790), + [anon_sym_NULL] = ACTIONS(2790), + [anon_sym_nullptr] = ACTIONS(2790), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2790), + [anon_sym_decltype] = ACTIONS(2790), + [anon_sym_virtual] = ACTIONS(2790), + [anon_sym_alignas] = ACTIONS(2790), + [anon_sym_typename] = ACTIONS(2790), + [anon_sym_template] = ACTIONS(2790), + [anon_sym_try] = ACTIONS(2790), + [anon_sym_delete] = ACTIONS(2790), + [anon_sym_throw] = ACTIONS(2790), + [anon_sym_co_return] = ACTIONS(2790), + [anon_sym_co_yield] = ACTIONS(2790), + [anon_sym_R_DQUOTE] = ACTIONS(2792), + [anon_sym_LR_DQUOTE] = ACTIONS(2792), + [anon_sym_uR_DQUOTE] = ACTIONS(2792), + [anon_sym_UR_DQUOTE] = ACTIONS(2792), + [anon_sym_u8R_DQUOTE] = ACTIONS(2792), + [anon_sym_co_await] = ACTIONS(2790), + [anon_sym_new] = ACTIONS(2790), + [anon_sym_requires] = ACTIONS(2790), + [sym_this] = ACTIONS(2790), }, - [1021] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1078] = { + [sym_identifier] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [1022] = { - [ts_builtin_sym_end] = ACTIONS(2919), - [sym_identifier] = ACTIONS(2917), - [aux_sym_preproc_include_token1] = ACTIONS(2917), - [aux_sym_preproc_def_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), - [sym_preproc_directive] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym___based] = ACTIONS(2917), - [anon_sym___cdecl] = ACTIONS(2917), - [anon_sym___clrcall] = ACTIONS(2917), - [anon_sym___stdcall] = ACTIONS(2917), - [anon_sym___fastcall] = ACTIONS(2917), - [anon_sym___thiscall] = ACTIONS(2917), - [anon_sym___vectorcall] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2917), - [anon_sym_switch] = ACTIONS(2917), - [anon_sym_case] = ACTIONS(2917), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_goto] = ACTIONS(2917), - [anon_sym_not] = ACTIONS(2917), - [anon_sym_compl] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_sizeof] = ACTIONS(2917), - [anon_sym___alignof__] = ACTIONS(2917), - [anon_sym___alignof] = ACTIONS(2917), - [anon_sym__alignof] = ACTIONS(2917), - [anon_sym_alignof] = ACTIONS(2917), - [anon_sym__Alignof] = ACTIONS(2917), - [anon_sym_offsetof] = ACTIONS(2917), - [anon_sym__Generic] = ACTIONS(2917), - [anon_sym_asm] = ACTIONS(2917), - [anon_sym___asm__] = ACTIONS(2917), - [sym_number_literal] = ACTIONS(2919), - [anon_sym_L_SQUOTE] = ACTIONS(2919), - [anon_sym_u_SQUOTE] = ACTIONS(2919), - [anon_sym_U_SQUOTE] = ACTIONS(2919), - [anon_sym_u8_SQUOTE] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2919), - [anon_sym_L_DQUOTE] = ACTIONS(2919), - [anon_sym_u_DQUOTE] = ACTIONS(2919), - [anon_sym_U_DQUOTE] = ACTIONS(2919), - [anon_sym_u8_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [anon_sym_NULL] = ACTIONS(2917), - [anon_sym_nullptr] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_explicit] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_operator] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_delete] = ACTIONS(2917), - [anon_sym_throw] = ACTIONS(2917), - [anon_sym_namespace] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_static_assert] = ACTIONS(2917), - [anon_sym_concept] = ACTIONS(2917), - [anon_sym_co_return] = ACTIONS(2917), - [anon_sym_co_yield] = ACTIONS(2917), - [anon_sym_R_DQUOTE] = ACTIONS(2919), - [anon_sym_LR_DQUOTE] = ACTIONS(2919), - [anon_sym_uR_DQUOTE] = ACTIONS(2919), - [anon_sym_UR_DQUOTE] = ACTIONS(2919), - [anon_sym_u8R_DQUOTE] = ACTIONS(2919), - [anon_sym_co_await] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2917), + [1079] = { + [sym_identifier] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [1023] = { - [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_extern] = ACTIONS(3011), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3011), - [anon_sym_constinit] = ACTIONS(3011), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3011), - [anon_sym_alignas] = 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_using] = 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), + [1080] = { + [sym_identifier] = ACTIONS(2812), + [anon_sym_LPAREN2] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_TILDE] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym___extension__] = ACTIONS(2812), + [anon_sym_typedef] = ACTIONS(2812), + [anon_sym_extern] = ACTIONS(2812), + [anon_sym___attribute__] = ACTIONS(2812), + [anon_sym_COLON_COLON] = ACTIONS(2814), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2814), + [anon_sym___declspec] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_signed] = ACTIONS(2812), + [anon_sym_unsigned] = ACTIONS(2812), + [anon_sym_long] = ACTIONS(2812), + [anon_sym_short] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_register] = ACTIONS(2812), + [anon_sym_inline] = ACTIONS(2812), + [anon_sym___inline] = ACTIONS(2812), + [anon_sym___inline__] = ACTIONS(2812), + [anon_sym___forceinline] = ACTIONS(2812), + [anon_sym_thread_local] = ACTIONS(2812), + [anon_sym___thread] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_constexpr] = ACTIONS(2812), + [anon_sym_volatile] = ACTIONS(2812), + [anon_sym_restrict] = ACTIONS(2812), + [anon_sym___restrict__] = ACTIONS(2812), + [anon_sym__Atomic] = ACTIONS(2812), + [anon_sym__Noreturn] = ACTIONS(2812), + [anon_sym_noreturn] = ACTIONS(2812), + [anon_sym_mutable] = ACTIONS(2812), + [anon_sym_constinit] = ACTIONS(2812), + [anon_sym_consteval] = ACTIONS(2812), + [sym_primitive_type] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_class] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_union] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_else] = ACTIONS(2812), + [anon_sym_switch] = ACTIONS(2812), + [anon_sym_while] = ACTIONS(2812), + [anon_sym_do] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_goto] = ACTIONS(2812), + [anon_sym_not] = ACTIONS(2812), + [anon_sym_compl] = ACTIONS(2812), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_sizeof] = ACTIONS(2812), + [anon_sym___alignof__] = ACTIONS(2812), + [anon_sym___alignof] = ACTIONS(2812), + [anon_sym__alignof] = ACTIONS(2812), + [anon_sym_alignof] = ACTIONS(2812), + [anon_sym__Alignof] = ACTIONS(2812), + [anon_sym_offsetof] = ACTIONS(2812), + [anon_sym__Generic] = ACTIONS(2812), + [anon_sym_asm] = ACTIONS(2812), + [anon_sym___asm__] = ACTIONS(2812), + [sym_number_literal] = ACTIONS(2814), + [anon_sym_L_SQUOTE] = ACTIONS(2814), + [anon_sym_u_SQUOTE] = ACTIONS(2814), + [anon_sym_U_SQUOTE] = ACTIONS(2814), + [anon_sym_u8_SQUOTE] = ACTIONS(2814), + [anon_sym_SQUOTE] = ACTIONS(2814), + [anon_sym_L_DQUOTE] = ACTIONS(2814), + [anon_sym_u_DQUOTE] = ACTIONS(2814), + [anon_sym_U_DQUOTE] = ACTIONS(2814), + [anon_sym_u8_DQUOTE] = ACTIONS(2814), + [anon_sym_DQUOTE] = ACTIONS(2814), + [sym_true] = ACTIONS(2812), + [sym_false] = ACTIONS(2812), + [anon_sym_NULL] = ACTIONS(2812), + [anon_sym_nullptr] = ACTIONS(2812), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2812), + [anon_sym_decltype] = ACTIONS(2812), + [anon_sym_virtual] = ACTIONS(2812), + [anon_sym_alignas] = ACTIONS(2812), + [anon_sym_typename] = ACTIONS(2812), + [anon_sym_template] = ACTIONS(2812), + [anon_sym_try] = ACTIONS(2812), + [anon_sym_delete] = ACTIONS(2812), + [anon_sym_throw] = ACTIONS(2812), + [anon_sym_co_return] = ACTIONS(2812), + [anon_sym_co_yield] = ACTIONS(2812), + [anon_sym_R_DQUOTE] = ACTIONS(2814), + [anon_sym_LR_DQUOTE] = ACTIONS(2814), + [anon_sym_uR_DQUOTE] = ACTIONS(2814), + [anon_sym_UR_DQUOTE] = ACTIONS(2814), + [anon_sym_u8R_DQUOTE] = ACTIONS(2814), + [anon_sym_co_await] = ACTIONS(2812), + [anon_sym_new] = ACTIONS(2812), + [anon_sym_requires] = ACTIONS(2812), + [sym_this] = ACTIONS(2812), }, - [1024] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [1081] = { + [sym_identifier] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym___extension__] = ACTIONS(2856), + [anon_sym_typedef] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym___attribute__] = ACTIONS(2856), + [anon_sym_COLON_COLON] = ACTIONS(2858), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), + [anon_sym___declspec] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_signed] = ACTIONS(2856), + [anon_sym_unsigned] = ACTIONS(2856), + [anon_sym_long] = ACTIONS(2856), + [anon_sym_short] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_register] = ACTIONS(2856), + [anon_sym_inline] = ACTIONS(2856), + [anon_sym___inline] = ACTIONS(2856), + [anon_sym___inline__] = ACTIONS(2856), + [anon_sym___forceinline] = ACTIONS(2856), + [anon_sym_thread_local] = ACTIONS(2856), + [anon_sym___thread] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_constexpr] = ACTIONS(2856), + [anon_sym_volatile] = ACTIONS(2856), + [anon_sym_restrict] = ACTIONS(2856), + [anon_sym___restrict__] = ACTIONS(2856), + [anon_sym__Atomic] = ACTIONS(2856), + [anon_sym__Noreturn] = ACTIONS(2856), + [anon_sym_noreturn] = ACTIONS(2856), + [anon_sym_mutable] = ACTIONS(2856), + [anon_sym_constinit] = ACTIONS(2856), + [anon_sym_consteval] = ACTIONS(2856), + [sym_primitive_type] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_class] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_else] = ACTIONS(2856), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_goto] = ACTIONS(2856), + [anon_sym_not] = ACTIONS(2856), + [anon_sym_compl] = ACTIONS(2856), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_sizeof] = ACTIONS(2856), + [anon_sym___alignof__] = ACTIONS(2856), + [anon_sym___alignof] = ACTIONS(2856), + [anon_sym__alignof] = ACTIONS(2856), + [anon_sym_alignof] = ACTIONS(2856), + [anon_sym__Alignof] = ACTIONS(2856), + [anon_sym_offsetof] = ACTIONS(2856), + [anon_sym__Generic] = ACTIONS(2856), + [anon_sym_asm] = ACTIONS(2856), + [anon_sym___asm__] = ACTIONS(2856), + [sym_number_literal] = ACTIONS(2858), + [anon_sym_L_SQUOTE] = ACTIONS(2858), + [anon_sym_u_SQUOTE] = ACTIONS(2858), + [anon_sym_U_SQUOTE] = ACTIONS(2858), + [anon_sym_u8_SQUOTE] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_L_DQUOTE] = ACTIONS(2858), + [anon_sym_u_DQUOTE] = ACTIONS(2858), + [anon_sym_U_DQUOTE] = ACTIONS(2858), + [anon_sym_u8_DQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(2858), + [sym_true] = ACTIONS(2856), + [sym_false] = ACTIONS(2856), + [anon_sym_NULL] = ACTIONS(2856), + [anon_sym_nullptr] = ACTIONS(2856), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2856), + [anon_sym_decltype] = ACTIONS(2856), + [anon_sym_virtual] = ACTIONS(2856), + [anon_sym_alignas] = ACTIONS(2856), + [anon_sym_typename] = ACTIONS(2856), + [anon_sym_template] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_delete] = ACTIONS(2856), + [anon_sym_throw] = ACTIONS(2856), + [anon_sym_co_return] = ACTIONS(2856), + [anon_sym_co_yield] = ACTIONS(2856), + [anon_sym_R_DQUOTE] = ACTIONS(2858), + [anon_sym_LR_DQUOTE] = ACTIONS(2858), + [anon_sym_uR_DQUOTE] = ACTIONS(2858), + [anon_sym_UR_DQUOTE] = ACTIONS(2858), + [anon_sym_u8R_DQUOTE] = ACTIONS(2858), + [anon_sym_co_await] = ACTIONS(2856), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_requires] = ACTIONS(2856), + [sym_this] = ACTIONS(2856), }, - [1025] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1082] = { + [sym_identifier] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [1026] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1083] = { + [sym_identifier] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [1027] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1084] = { + [sym_identifier] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [1028] = { - [ts_builtin_sym_end] = ACTIONS(2979), - [sym_identifier] = ACTIONS(2977), - [aux_sym_preproc_include_token1] = ACTIONS(2977), - [aux_sym_preproc_def_token1] = ACTIONS(2977), - [aux_sym_preproc_if_token1] = ACTIONS(2977), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2977), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2977), - [sym_preproc_directive] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2979), - [anon_sym_BANG] = ACTIONS(2979), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym___extension__] = ACTIONS(2977), - [anon_sym_typedef] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym___attribute__] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2979), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), - [anon_sym___declspec] = ACTIONS(2977), - [anon_sym___based] = ACTIONS(2977), - [anon_sym___cdecl] = ACTIONS(2977), - [anon_sym___clrcall] = ACTIONS(2977), - [anon_sym___stdcall] = ACTIONS(2977), - [anon_sym___fastcall] = ACTIONS(2977), - [anon_sym___thiscall] = ACTIONS(2977), - [anon_sym___vectorcall] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_signed] = ACTIONS(2977), - [anon_sym_unsigned] = ACTIONS(2977), - [anon_sym_long] = ACTIONS(2977), - [anon_sym_short] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_static] = ACTIONS(2977), - [anon_sym_register] = ACTIONS(2977), - [anon_sym_inline] = ACTIONS(2977), - [anon_sym___inline] = ACTIONS(2977), - [anon_sym___inline__] = ACTIONS(2977), - [anon_sym___forceinline] = ACTIONS(2977), - [anon_sym_thread_local] = ACTIONS(2977), - [anon_sym___thread] = ACTIONS(2977), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_constexpr] = ACTIONS(2977), - [anon_sym_volatile] = ACTIONS(2977), - [anon_sym_restrict] = ACTIONS(2977), - [anon_sym___restrict__] = ACTIONS(2977), - [anon_sym__Atomic] = ACTIONS(2977), - [anon_sym__Noreturn] = ACTIONS(2977), - [anon_sym_noreturn] = ACTIONS(2977), - [anon_sym_mutable] = ACTIONS(2977), - [anon_sym_constinit] = ACTIONS(2977), - [anon_sym_consteval] = ACTIONS(2977), - [sym_primitive_type] = ACTIONS(2977), - [anon_sym_enum] = ACTIONS(2977), - [anon_sym_class] = ACTIONS(2977), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_union] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_else] = ACTIONS(2977), - [anon_sym_switch] = ACTIONS(2977), - [anon_sym_case] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_break] = ACTIONS(2977), - [anon_sym_continue] = ACTIONS(2977), - [anon_sym_goto] = ACTIONS(2977), - [anon_sym_not] = ACTIONS(2977), - [anon_sym_compl] = ACTIONS(2977), - [anon_sym_DASH_DASH] = ACTIONS(2979), - [anon_sym_PLUS_PLUS] = ACTIONS(2979), - [anon_sym_sizeof] = ACTIONS(2977), - [anon_sym___alignof__] = ACTIONS(2977), - [anon_sym___alignof] = ACTIONS(2977), - [anon_sym__alignof] = ACTIONS(2977), - [anon_sym_alignof] = ACTIONS(2977), - [anon_sym__Alignof] = ACTIONS(2977), - [anon_sym_offsetof] = ACTIONS(2977), - [anon_sym__Generic] = ACTIONS(2977), - [anon_sym_asm] = ACTIONS(2977), - [anon_sym___asm__] = ACTIONS(2977), - [sym_number_literal] = ACTIONS(2979), - [anon_sym_L_SQUOTE] = ACTIONS(2979), - [anon_sym_u_SQUOTE] = ACTIONS(2979), - [anon_sym_U_SQUOTE] = ACTIONS(2979), - [anon_sym_u8_SQUOTE] = ACTIONS(2979), - [anon_sym_SQUOTE] = ACTIONS(2979), - [anon_sym_L_DQUOTE] = ACTIONS(2979), - [anon_sym_u_DQUOTE] = ACTIONS(2979), - [anon_sym_U_DQUOTE] = ACTIONS(2979), - [anon_sym_u8_DQUOTE] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym_true] = ACTIONS(2977), - [sym_false] = ACTIONS(2977), - [anon_sym_NULL] = ACTIONS(2977), - [anon_sym_nullptr] = ACTIONS(2977), + [1085] = { + [sym_identifier] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2977), - [anon_sym_decltype] = ACTIONS(2977), - [anon_sym_virtual] = ACTIONS(2977), - [anon_sym_alignas] = ACTIONS(2977), - [anon_sym_explicit] = ACTIONS(2977), - [anon_sym_typename] = ACTIONS(2977), - [anon_sym_template] = ACTIONS(2977), - [anon_sym_operator] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_delete] = ACTIONS(2977), - [anon_sym_throw] = ACTIONS(2977), - [anon_sym_namespace] = ACTIONS(2977), - [anon_sym_using] = ACTIONS(2977), - [anon_sym_static_assert] = ACTIONS(2977), - [anon_sym_concept] = ACTIONS(2977), - [anon_sym_co_return] = ACTIONS(2977), - [anon_sym_co_yield] = ACTIONS(2977), - [anon_sym_R_DQUOTE] = ACTIONS(2979), - [anon_sym_LR_DQUOTE] = ACTIONS(2979), - [anon_sym_uR_DQUOTE] = ACTIONS(2979), - [anon_sym_UR_DQUOTE] = ACTIONS(2979), - [anon_sym_u8R_DQUOTE] = ACTIONS(2979), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_requires] = ACTIONS(2977), - [sym_this] = ACTIONS(2977), - }, - [1029] = { - [sym_identifier] = ACTIONS(2941), - [aux_sym_preproc_include_token1] = ACTIONS(2941), - [aux_sym_preproc_def_token1] = ACTIONS(2941), - [aux_sym_preproc_if_token1] = ACTIONS(2941), - [aux_sym_preproc_if_token2] = ACTIONS(2941), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2941), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2941), - [sym_preproc_directive] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2943), - [anon_sym___extension__] = ACTIONS(2941), - [anon_sym_typedef] = ACTIONS(2941), - [anon_sym_extern] = ACTIONS(2941), - [anon_sym___attribute__] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2943), - [anon_sym___declspec] = ACTIONS(2941), - [anon_sym___based] = ACTIONS(2941), - [anon_sym___cdecl] = ACTIONS(2941), - [anon_sym___clrcall] = ACTIONS(2941), - [anon_sym___stdcall] = ACTIONS(2941), - [anon_sym___fastcall] = ACTIONS(2941), - [anon_sym___thiscall] = ACTIONS(2941), - [anon_sym___vectorcall] = ACTIONS(2941), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_signed] = ACTIONS(2941), - [anon_sym_unsigned] = ACTIONS(2941), - [anon_sym_long] = ACTIONS(2941), - [anon_sym_short] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_static] = ACTIONS(2941), - [anon_sym_register] = ACTIONS(2941), - [anon_sym_inline] = ACTIONS(2941), - [anon_sym___inline] = ACTIONS(2941), - [anon_sym___inline__] = ACTIONS(2941), - [anon_sym___forceinline] = ACTIONS(2941), - [anon_sym_thread_local] = ACTIONS(2941), - [anon_sym___thread] = ACTIONS(2941), - [anon_sym_const] = ACTIONS(2941), - [anon_sym_constexpr] = ACTIONS(2941), - [anon_sym_volatile] = ACTIONS(2941), - [anon_sym_restrict] = ACTIONS(2941), - [anon_sym___restrict__] = ACTIONS(2941), - [anon_sym__Atomic] = ACTIONS(2941), - [anon_sym__Noreturn] = ACTIONS(2941), - [anon_sym_noreturn] = ACTIONS(2941), - [anon_sym_mutable] = ACTIONS(2941), - [anon_sym_constinit] = ACTIONS(2941), - [anon_sym_consteval] = ACTIONS(2941), - [sym_primitive_type] = ACTIONS(2941), - [anon_sym_enum] = ACTIONS(2941), - [anon_sym_class] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2941), - [anon_sym_union] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_else] = ACTIONS(2941), - [anon_sym_switch] = ACTIONS(2941), - [anon_sym_case] = ACTIONS(2941), - [anon_sym_default] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_break] = ACTIONS(2941), - [anon_sym_continue] = ACTIONS(2941), - [anon_sym_goto] = ACTIONS(2941), - [anon_sym_not] = ACTIONS(2941), - [anon_sym_compl] = ACTIONS(2941), - [anon_sym_DASH_DASH] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2943), - [anon_sym_sizeof] = ACTIONS(2941), - [anon_sym___alignof__] = ACTIONS(2941), - [anon_sym___alignof] = ACTIONS(2941), - [anon_sym__alignof] = ACTIONS(2941), - [anon_sym_alignof] = ACTIONS(2941), - [anon_sym__Alignof] = ACTIONS(2941), - [anon_sym_offsetof] = ACTIONS(2941), - [anon_sym__Generic] = ACTIONS(2941), - [anon_sym_asm] = ACTIONS(2941), - [anon_sym___asm__] = ACTIONS(2941), - [sym_number_literal] = ACTIONS(2943), - [anon_sym_L_SQUOTE] = ACTIONS(2943), - [anon_sym_u_SQUOTE] = ACTIONS(2943), - [anon_sym_U_SQUOTE] = ACTIONS(2943), - [anon_sym_u8_SQUOTE] = ACTIONS(2943), - [anon_sym_SQUOTE] = ACTIONS(2943), - [anon_sym_L_DQUOTE] = ACTIONS(2943), - [anon_sym_u_DQUOTE] = ACTIONS(2943), - [anon_sym_U_DQUOTE] = ACTIONS(2943), - [anon_sym_u8_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE] = ACTIONS(2943), - [sym_true] = ACTIONS(2941), - [sym_false] = ACTIONS(2941), - [anon_sym_NULL] = ACTIONS(2941), - [anon_sym_nullptr] = ACTIONS(2941), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2941), - [anon_sym_decltype] = ACTIONS(2941), - [anon_sym_virtual] = ACTIONS(2941), - [anon_sym_alignas] = ACTIONS(2941), - [anon_sym_explicit] = ACTIONS(2941), - [anon_sym_typename] = ACTIONS(2941), - [anon_sym_template] = ACTIONS(2941), - [anon_sym_operator] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_delete] = ACTIONS(2941), - [anon_sym_throw] = ACTIONS(2941), - [anon_sym_namespace] = ACTIONS(2941), - [anon_sym_using] = ACTIONS(2941), - [anon_sym_static_assert] = ACTIONS(2941), - [anon_sym_concept] = ACTIONS(2941), - [anon_sym_co_return] = ACTIONS(2941), - [anon_sym_co_yield] = ACTIONS(2941), - [anon_sym_R_DQUOTE] = ACTIONS(2943), - [anon_sym_LR_DQUOTE] = ACTIONS(2943), - [anon_sym_uR_DQUOTE] = ACTIONS(2943), - [anon_sym_UR_DQUOTE] = ACTIONS(2943), - [anon_sym_u8R_DQUOTE] = ACTIONS(2943), - [anon_sym_co_await] = ACTIONS(2941), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_requires] = ACTIONS(2941), - [sym_this] = ACTIONS(2941), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [1030] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1086] = { + [sym_identifier] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [1031] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_include_token1] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2889), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym___cdecl] = ACTIONS(2194), - [anon_sym___clrcall] = ACTIONS(2194), - [anon_sym___stdcall] = ACTIONS(2194), - [anon_sym___fastcall] = ACTIONS(2194), - [anon_sym___thiscall] = ACTIONS(2194), - [anon_sym___vectorcall] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_goto] = ACTIONS(2194), - [anon_sym_not] = ACTIONS(2194), - [anon_sym_compl] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_sizeof] = ACTIONS(2194), - [anon_sym___alignof__] = ACTIONS(2194), - [anon_sym___alignof] = ACTIONS(2194), - [anon_sym__alignof] = ACTIONS(2194), - [anon_sym_alignof] = ACTIONS(2194), - [anon_sym__Alignof] = ACTIONS(2194), - [anon_sym_offsetof] = ACTIONS(2194), - [anon_sym__Generic] = ACTIONS(2194), - [anon_sym_asm] = ACTIONS(2194), - [anon_sym___asm__] = ACTIONS(2194), - [sym_number_literal] = ACTIONS(2192), - [anon_sym_L_SQUOTE] = ACTIONS(2192), - [anon_sym_u_SQUOTE] = ACTIONS(2192), - [anon_sym_U_SQUOTE] = ACTIONS(2192), - [anon_sym_u8_SQUOTE] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_L_DQUOTE] = ACTIONS(2192), - [anon_sym_u_DQUOTE] = ACTIONS(2192), - [anon_sym_U_DQUOTE] = ACTIONS(2192), - [anon_sym_u8_DQUOTE] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [anon_sym_NULL] = ACTIONS(2194), - [anon_sym_nullptr] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_delete] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - [anon_sym_concept] = ACTIONS(2194), - [anon_sym_co_return] = ACTIONS(2194), - [anon_sym_co_yield] = ACTIONS(2194), - [anon_sym_R_DQUOTE] = ACTIONS(2192), - [anon_sym_LR_DQUOTE] = ACTIONS(2192), - [anon_sym_uR_DQUOTE] = ACTIONS(2192), - [anon_sym_UR_DQUOTE] = ACTIONS(2192), - [anon_sym_u8R_DQUOTE] = ACTIONS(2192), - [anon_sym_co_await] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_requires] = ACTIONS(2194), - [sym_this] = ACTIONS(2194), + [1087] = { + [sym_identifier] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym___extension__] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym___attribute__] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), + [anon_sym___declspec] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_signed] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym___inline] = ACTIONS(2860), + [anon_sym___inline__] = ACTIONS(2860), + [anon_sym___forceinline] = ACTIONS(2860), + [anon_sym_thread_local] = ACTIONS(2860), + [anon_sym___thread] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_constexpr] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym___restrict__] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym__Noreturn] = ACTIONS(2860), + [anon_sym_noreturn] = ACTIONS(2860), + [anon_sym_mutable] = ACTIONS(2860), + [anon_sym_constinit] = ACTIONS(2860), + [anon_sym_consteval] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_not] = ACTIONS(2860), + [anon_sym_compl] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [anon_sym___alignof__] = ACTIONS(2860), + [anon_sym___alignof] = ACTIONS(2860), + [anon_sym__alignof] = ACTIONS(2860), + [anon_sym_alignof] = ACTIONS(2860), + [anon_sym__Alignof] = ACTIONS(2860), + [anon_sym_offsetof] = ACTIONS(2860), + [anon_sym__Generic] = ACTIONS(2860), + [anon_sym_asm] = ACTIONS(2860), + [anon_sym___asm__] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_L_SQUOTE] = ACTIONS(2862), + [anon_sym_u_SQUOTE] = ACTIONS(2862), + [anon_sym_U_SQUOTE] = ACTIONS(2862), + [anon_sym_u8_SQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_L_DQUOTE] = ACTIONS(2862), + [anon_sym_u_DQUOTE] = ACTIONS(2862), + [anon_sym_U_DQUOTE] = ACTIONS(2862), + [anon_sym_u8_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_nullptr] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2860), + [anon_sym_decltype] = ACTIONS(2860), + [anon_sym_virtual] = ACTIONS(2860), + [anon_sym_alignas] = ACTIONS(2860), + [anon_sym_typename] = ACTIONS(2860), + [anon_sym_template] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_co_return] = ACTIONS(2860), + [anon_sym_co_yield] = ACTIONS(2860), + [anon_sym_R_DQUOTE] = ACTIONS(2862), + [anon_sym_LR_DQUOTE] = ACTIONS(2862), + [anon_sym_uR_DQUOTE] = ACTIONS(2862), + [anon_sym_UR_DQUOTE] = ACTIONS(2862), + [anon_sym_u8R_DQUOTE] = ACTIONS(2862), + [anon_sym_co_await] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_requires] = ACTIONS(2860), + [sym_this] = ACTIONS(2860), }, - [1032] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1088] = { + [sym_identifier] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_TILDE] = ACTIONS(2776), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_STAR] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym___extension__] = ACTIONS(2774), + [anon_sym_typedef] = ACTIONS(2774), + [anon_sym_extern] = ACTIONS(2774), + [anon_sym___attribute__] = ACTIONS(2774), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), + [anon_sym___declspec] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2776), + [anon_sym_signed] = ACTIONS(2774), + [anon_sym_unsigned] = ACTIONS(2774), + [anon_sym_long] = ACTIONS(2774), + [anon_sym_short] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_static] = ACTIONS(2774), + [anon_sym_register] = ACTIONS(2774), + [anon_sym_inline] = ACTIONS(2774), + [anon_sym___inline] = ACTIONS(2774), + [anon_sym___inline__] = ACTIONS(2774), + [anon_sym___forceinline] = ACTIONS(2774), + [anon_sym_thread_local] = ACTIONS(2774), + [anon_sym___thread] = ACTIONS(2774), + [anon_sym_const] = ACTIONS(2774), + [anon_sym_constexpr] = ACTIONS(2774), + [anon_sym_volatile] = ACTIONS(2774), + [anon_sym_restrict] = ACTIONS(2774), + [anon_sym___restrict__] = ACTIONS(2774), + [anon_sym__Atomic] = ACTIONS(2774), + [anon_sym__Noreturn] = ACTIONS(2774), + [anon_sym_noreturn] = ACTIONS(2774), + [anon_sym_mutable] = ACTIONS(2774), + [anon_sym_constinit] = ACTIONS(2774), + [anon_sym_consteval] = ACTIONS(2774), + [sym_primitive_type] = ACTIONS(2774), + [anon_sym_enum] = ACTIONS(2774), + [anon_sym_class] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(2774), + [anon_sym_union] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_else] = ACTIONS(2774), + [anon_sym_switch] = ACTIONS(2774), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_break] = ACTIONS(2774), + [anon_sym_continue] = ACTIONS(2774), + [anon_sym_goto] = ACTIONS(2774), + [anon_sym_not] = ACTIONS(2774), + [anon_sym_compl] = ACTIONS(2774), + [anon_sym_DASH_DASH] = ACTIONS(2776), + [anon_sym_PLUS_PLUS] = ACTIONS(2776), + [anon_sym_sizeof] = ACTIONS(2774), + [anon_sym___alignof__] = ACTIONS(2774), + [anon_sym___alignof] = ACTIONS(2774), + [anon_sym__alignof] = ACTIONS(2774), + [anon_sym_alignof] = ACTIONS(2774), + [anon_sym__Alignof] = ACTIONS(2774), + [anon_sym_offsetof] = ACTIONS(2774), + [anon_sym__Generic] = ACTIONS(2774), + [anon_sym_asm] = ACTIONS(2774), + [anon_sym___asm__] = ACTIONS(2774), + [sym_number_literal] = ACTIONS(2776), + [anon_sym_L_SQUOTE] = ACTIONS(2776), + [anon_sym_u_SQUOTE] = ACTIONS(2776), + [anon_sym_U_SQUOTE] = ACTIONS(2776), + [anon_sym_u8_SQUOTE] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_L_DQUOTE] = ACTIONS(2776), + [anon_sym_u_DQUOTE] = ACTIONS(2776), + [anon_sym_U_DQUOTE] = ACTIONS(2776), + [anon_sym_u8_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE] = ACTIONS(2776), + [sym_true] = ACTIONS(2774), + [sym_false] = ACTIONS(2774), + [anon_sym_NULL] = ACTIONS(2774), + [anon_sym_nullptr] = ACTIONS(2774), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2774), + [anon_sym_virtual] = ACTIONS(2774), + [anon_sym_alignas] = ACTIONS(2774), + [anon_sym_typename] = ACTIONS(2774), + [anon_sym_template] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_delete] = ACTIONS(2774), + [anon_sym_throw] = ACTIONS(2774), + [anon_sym_co_return] = ACTIONS(2774), + [anon_sym_co_yield] = ACTIONS(2774), + [anon_sym_R_DQUOTE] = ACTIONS(2776), + [anon_sym_LR_DQUOTE] = ACTIONS(2776), + [anon_sym_uR_DQUOTE] = ACTIONS(2776), + [anon_sym_UR_DQUOTE] = ACTIONS(2776), + [anon_sym_u8R_DQUOTE] = ACTIONS(2776), + [anon_sym_co_await] = ACTIONS(2774), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_requires] = ACTIONS(2774), + [sym_this] = ACTIONS(2774), }, - [1033] = { - [sym_identifier] = ACTIONS(2957), - [aux_sym_preproc_include_token1] = ACTIONS(2957), - [aux_sym_preproc_def_token1] = ACTIONS(2957), - [aux_sym_preproc_if_token1] = ACTIONS(2957), - [aux_sym_preproc_if_token2] = ACTIONS(2957), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2957), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2957), - [sym_preproc_directive] = ACTIONS(2957), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2957), - [anon_sym_SEMI] = ACTIONS(2959), - [anon_sym___extension__] = ACTIONS(2957), - [anon_sym_typedef] = ACTIONS(2957), - [anon_sym_extern] = ACTIONS(2957), - [anon_sym___attribute__] = ACTIONS(2957), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), - [anon_sym___declspec] = ACTIONS(2957), - [anon_sym___based] = ACTIONS(2957), - [anon_sym___cdecl] = ACTIONS(2957), - [anon_sym___clrcall] = ACTIONS(2957), - [anon_sym___stdcall] = ACTIONS(2957), - [anon_sym___fastcall] = ACTIONS(2957), - [anon_sym___thiscall] = ACTIONS(2957), - [anon_sym___vectorcall] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_signed] = ACTIONS(2957), - [anon_sym_unsigned] = ACTIONS(2957), - [anon_sym_long] = ACTIONS(2957), - [anon_sym_short] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_static] = ACTIONS(2957), - [anon_sym_register] = ACTIONS(2957), - [anon_sym_inline] = ACTIONS(2957), - [anon_sym___inline] = ACTIONS(2957), - [anon_sym___inline__] = ACTIONS(2957), - [anon_sym___forceinline] = ACTIONS(2957), - [anon_sym_thread_local] = ACTIONS(2957), - [anon_sym___thread] = ACTIONS(2957), - [anon_sym_const] = ACTIONS(2957), - [anon_sym_constexpr] = ACTIONS(2957), - [anon_sym_volatile] = ACTIONS(2957), - [anon_sym_restrict] = ACTIONS(2957), - [anon_sym___restrict__] = ACTIONS(2957), - [anon_sym__Atomic] = ACTIONS(2957), - [anon_sym__Noreturn] = ACTIONS(2957), - [anon_sym_noreturn] = ACTIONS(2957), - [anon_sym_mutable] = ACTIONS(2957), - [anon_sym_constinit] = ACTIONS(2957), - [anon_sym_consteval] = ACTIONS(2957), - [sym_primitive_type] = ACTIONS(2957), - [anon_sym_enum] = ACTIONS(2957), - [anon_sym_class] = ACTIONS(2957), - [anon_sym_struct] = ACTIONS(2957), - [anon_sym_union] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2957), - [anon_sym_else] = ACTIONS(2957), - [anon_sym_switch] = ACTIONS(2957), - [anon_sym_case] = ACTIONS(2957), - [anon_sym_default] = ACTIONS(2957), - [anon_sym_while] = ACTIONS(2957), - [anon_sym_do] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2957), - [anon_sym_break] = ACTIONS(2957), - [anon_sym_continue] = ACTIONS(2957), - [anon_sym_goto] = ACTIONS(2957), - [anon_sym_not] = ACTIONS(2957), - [anon_sym_compl] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_sizeof] = ACTIONS(2957), - [anon_sym___alignof__] = ACTIONS(2957), - [anon_sym___alignof] = ACTIONS(2957), - [anon_sym__alignof] = ACTIONS(2957), - [anon_sym_alignof] = ACTIONS(2957), - [anon_sym__Alignof] = ACTIONS(2957), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2957), - [anon_sym_asm] = ACTIONS(2957), - [anon_sym___asm__] = ACTIONS(2957), - [sym_number_literal] = ACTIONS(2959), - [anon_sym_L_SQUOTE] = ACTIONS(2959), - [anon_sym_u_SQUOTE] = ACTIONS(2959), - [anon_sym_U_SQUOTE] = ACTIONS(2959), - [anon_sym_u8_SQUOTE] = ACTIONS(2959), - [anon_sym_SQUOTE] = ACTIONS(2959), - [anon_sym_L_DQUOTE] = ACTIONS(2959), - [anon_sym_u_DQUOTE] = ACTIONS(2959), - [anon_sym_U_DQUOTE] = ACTIONS(2959), - [anon_sym_u8_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [anon_sym_NULL] = ACTIONS(2957), - [anon_sym_nullptr] = ACTIONS(2957), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2957), - [anon_sym_decltype] = ACTIONS(2957), - [anon_sym_virtual] = ACTIONS(2957), - [anon_sym_alignas] = ACTIONS(2957), - [anon_sym_explicit] = ACTIONS(2957), - [anon_sym_typename] = ACTIONS(2957), - [anon_sym_template] = ACTIONS(2957), - [anon_sym_operator] = ACTIONS(2957), - [anon_sym_try] = ACTIONS(2957), - [anon_sym_delete] = ACTIONS(2957), - [anon_sym_throw] = ACTIONS(2957), - [anon_sym_namespace] = ACTIONS(2957), - [anon_sym_using] = ACTIONS(2957), - [anon_sym_static_assert] = ACTIONS(2957), - [anon_sym_concept] = ACTIONS(2957), - [anon_sym_co_return] = ACTIONS(2957), - [anon_sym_co_yield] = ACTIONS(2957), - [anon_sym_R_DQUOTE] = ACTIONS(2959), - [anon_sym_LR_DQUOTE] = ACTIONS(2959), - [anon_sym_uR_DQUOTE] = ACTIONS(2959), - [anon_sym_UR_DQUOTE] = ACTIONS(2959), - [anon_sym_u8R_DQUOTE] = ACTIONS(2959), - [anon_sym_co_await] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2957), - [anon_sym_requires] = ACTIONS(2957), - [sym_this] = ACTIONS(2957), - }, - [1034] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [1089] = { + [sym_identifier] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [1035] = { - [sym_identifier] = ACTIONS(2973), - [aux_sym_preproc_include_token1] = ACTIONS(2973), - [aux_sym_preproc_def_token1] = ACTIONS(2973), - [aux_sym_preproc_if_token1] = ACTIONS(2973), - [aux_sym_preproc_if_token2] = ACTIONS(2973), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2975), - [anon_sym_BANG] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym___extension__] = ACTIONS(2973), - [anon_sym_typedef] = ACTIONS(2973), - [anon_sym_extern] = ACTIONS(2973), - [anon_sym___attribute__] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), - [anon_sym___declspec] = ACTIONS(2973), - [anon_sym___based] = ACTIONS(2973), - [anon_sym___cdecl] = ACTIONS(2973), - [anon_sym___clrcall] = ACTIONS(2973), - [anon_sym___stdcall] = ACTIONS(2973), - [anon_sym___fastcall] = ACTIONS(2973), - [anon_sym___thiscall] = ACTIONS(2973), - [anon_sym___vectorcall] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_signed] = ACTIONS(2973), - [anon_sym_unsigned] = ACTIONS(2973), - [anon_sym_long] = ACTIONS(2973), - [anon_sym_short] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_static] = ACTIONS(2973), - [anon_sym_register] = ACTIONS(2973), - [anon_sym_inline] = ACTIONS(2973), - [anon_sym___inline] = ACTIONS(2973), - [anon_sym___inline__] = ACTIONS(2973), - [anon_sym___forceinline] = ACTIONS(2973), - [anon_sym_thread_local] = ACTIONS(2973), - [anon_sym___thread] = ACTIONS(2973), - [anon_sym_const] = ACTIONS(2973), - [anon_sym_constexpr] = ACTIONS(2973), - [anon_sym_volatile] = ACTIONS(2973), - [anon_sym_restrict] = ACTIONS(2973), - [anon_sym___restrict__] = ACTIONS(2973), - [anon_sym__Atomic] = ACTIONS(2973), - [anon_sym__Noreturn] = ACTIONS(2973), - [anon_sym_noreturn] = ACTIONS(2973), - [anon_sym_mutable] = ACTIONS(2973), - [anon_sym_constinit] = ACTIONS(2973), - [anon_sym_consteval] = ACTIONS(2973), - [sym_primitive_type] = ACTIONS(2973), - [anon_sym_enum] = ACTIONS(2973), - [anon_sym_class] = ACTIONS(2973), - [anon_sym_struct] = ACTIONS(2973), - [anon_sym_union] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_else] = ACTIONS(2973), - [anon_sym_switch] = ACTIONS(2973), - [anon_sym_case] = ACTIONS(2973), - [anon_sym_default] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_break] = ACTIONS(2973), - [anon_sym_continue] = ACTIONS(2973), - [anon_sym_goto] = ACTIONS(2973), - [anon_sym_not] = ACTIONS(2973), - [anon_sym_compl] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2975), - [anon_sym_PLUS_PLUS] = ACTIONS(2975), - [anon_sym_sizeof] = ACTIONS(2973), - [anon_sym___alignof__] = ACTIONS(2973), - [anon_sym___alignof] = ACTIONS(2973), - [anon_sym__alignof] = ACTIONS(2973), - [anon_sym_alignof] = ACTIONS(2973), - [anon_sym__Alignof] = ACTIONS(2973), - [anon_sym_offsetof] = ACTIONS(2973), - [anon_sym__Generic] = ACTIONS(2973), - [anon_sym_asm] = ACTIONS(2973), - [anon_sym___asm__] = ACTIONS(2973), - [sym_number_literal] = ACTIONS(2975), - [anon_sym_L_SQUOTE] = ACTIONS(2975), - [anon_sym_u_SQUOTE] = ACTIONS(2975), - [anon_sym_U_SQUOTE] = ACTIONS(2975), - [anon_sym_u8_SQUOTE] = ACTIONS(2975), - [anon_sym_SQUOTE] = ACTIONS(2975), - [anon_sym_L_DQUOTE] = ACTIONS(2975), - [anon_sym_u_DQUOTE] = ACTIONS(2975), - [anon_sym_U_DQUOTE] = ACTIONS(2975), - [anon_sym_u8_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE] = ACTIONS(2975), - [sym_true] = ACTIONS(2973), - [sym_false] = ACTIONS(2973), - [anon_sym_NULL] = ACTIONS(2973), - [anon_sym_nullptr] = ACTIONS(2973), + [1090] = { + [sym_identifier] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2973), - [anon_sym_decltype] = ACTIONS(2973), - [anon_sym_virtual] = ACTIONS(2973), - [anon_sym_alignas] = ACTIONS(2973), - [anon_sym_explicit] = ACTIONS(2973), - [anon_sym_typename] = ACTIONS(2973), - [anon_sym_template] = ACTIONS(2973), - [anon_sym_operator] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_throw] = ACTIONS(2973), - [anon_sym_namespace] = ACTIONS(2973), - [anon_sym_using] = ACTIONS(2973), - [anon_sym_static_assert] = ACTIONS(2973), - [anon_sym_concept] = ACTIONS(2973), - [anon_sym_co_return] = ACTIONS(2973), - [anon_sym_co_yield] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_requires] = ACTIONS(2973), - [sym_this] = ACTIONS(2973), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [1036] = { - [sym_identifier] = ACTIONS(2993), - [aux_sym_preproc_include_token1] = ACTIONS(2993), - [aux_sym_preproc_def_token1] = ACTIONS(2993), - [aux_sym_preproc_if_token1] = ACTIONS(2993), - [aux_sym_preproc_if_token2] = ACTIONS(2993), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2993), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2993), - [sym_preproc_directive] = ACTIONS(2993), - [anon_sym_LPAREN2] = ACTIONS(2995), - [anon_sym_BANG] = ACTIONS(2995), - [anon_sym_TILDE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_AMP_AMP] = ACTIONS(2995), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_SEMI] = ACTIONS(2995), - [anon_sym___extension__] = ACTIONS(2993), - [anon_sym_typedef] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(2993), - [anon_sym___attribute__] = ACTIONS(2993), - [anon_sym_COLON_COLON] = ACTIONS(2995), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2995), - [anon_sym___declspec] = ACTIONS(2993), - [anon_sym___based] = ACTIONS(2993), - [anon_sym___cdecl] = ACTIONS(2993), - [anon_sym___clrcall] = ACTIONS(2993), - [anon_sym___stdcall] = ACTIONS(2993), - [anon_sym___fastcall] = ACTIONS(2993), - [anon_sym___thiscall] = ACTIONS(2993), - [anon_sym___vectorcall] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_signed] = ACTIONS(2993), - [anon_sym_unsigned] = ACTIONS(2993), - [anon_sym_long] = ACTIONS(2993), - [anon_sym_short] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_static] = ACTIONS(2993), - [anon_sym_register] = ACTIONS(2993), - [anon_sym_inline] = ACTIONS(2993), - [anon_sym___inline] = ACTIONS(2993), - [anon_sym___inline__] = ACTIONS(2993), - [anon_sym___forceinline] = ACTIONS(2993), - [anon_sym_thread_local] = ACTIONS(2993), - [anon_sym___thread] = ACTIONS(2993), - [anon_sym_const] = ACTIONS(2993), - [anon_sym_constexpr] = ACTIONS(2993), - [anon_sym_volatile] = ACTIONS(2993), - [anon_sym_restrict] = ACTIONS(2993), - [anon_sym___restrict__] = ACTIONS(2993), - [anon_sym__Atomic] = ACTIONS(2993), - [anon_sym__Noreturn] = ACTIONS(2993), - [anon_sym_noreturn] = ACTIONS(2993), - [anon_sym_mutable] = ACTIONS(2993), - [anon_sym_constinit] = ACTIONS(2993), - [anon_sym_consteval] = ACTIONS(2993), - [sym_primitive_type] = ACTIONS(2993), - [anon_sym_enum] = ACTIONS(2993), - [anon_sym_class] = ACTIONS(2993), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_union] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_else] = ACTIONS(2993), - [anon_sym_switch] = ACTIONS(2993), - [anon_sym_case] = ACTIONS(2993), - [anon_sym_default] = ACTIONS(2993), - [anon_sym_while] = ACTIONS(2993), - [anon_sym_do] = ACTIONS(2993), - [anon_sym_for] = ACTIONS(2993), - [anon_sym_return] = ACTIONS(2993), - [anon_sym_break] = ACTIONS(2993), - [anon_sym_continue] = ACTIONS(2993), - [anon_sym_goto] = ACTIONS(2993), - [anon_sym_not] = ACTIONS(2993), - [anon_sym_compl] = ACTIONS(2993), - [anon_sym_DASH_DASH] = ACTIONS(2995), - [anon_sym_PLUS_PLUS] = ACTIONS(2995), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2993), - [anon_sym___alignof] = ACTIONS(2993), - [anon_sym__alignof] = ACTIONS(2993), - [anon_sym_alignof] = ACTIONS(2993), - [anon_sym__Alignof] = ACTIONS(2993), - [anon_sym_offsetof] = ACTIONS(2993), - [anon_sym__Generic] = ACTIONS(2993), - [anon_sym_asm] = ACTIONS(2993), - [anon_sym___asm__] = ACTIONS(2993), - [sym_number_literal] = ACTIONS(2995), - [anon_sym_L_SQUOTE] = ACTIONS(2995), - [anon_sym_u_SQUOTE] = ACTIONS(2995), - [anon_sym_U_SQUOTE] = ACTIONS(2995), - [anon_sym_u8_SQUOTE] = ACTIONS(2995), - [anon_sym_SQUOTE] = ACTIONS(2995), - [anon_sym_L_DQUOTE] = ACTIONS(2995), - [anon_sym_u_DQUOTE] = ACTIONS(2995), - [anon_sym_U_DQUOTE] = ACTIONS(2995), - [anon_sym_u8_DQUOTE] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2995), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [anon_sym_NULL] = ACTIONS(2993), - [anon_sym_nullptr] = ACTIONS(2993), + [1091] = { + [sym_identifier] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2993), - [anon_sym_decltype] = ACTIONS(2993), - [anon_sym_virtual] = ACTIONS(2993), - [anon_sym_alignas] = ACTIONS(2993), - [anon_sym_explicit] = ACTIONS(2993), - [anon_sym_typename] = ACTIONS(2993), - [anon_sym_template] = ACTIONS(2993), - [anon_sym_operator] = ACTIONS(2993), - [anon_sym_try] = ACTIONS(2993), - [anon_sym_delete] = ACTIONS(2993), - [anon_sym_throw] = ACTIONS(2993), - [anon_sym_namespace] = ACTIONS(2993), - [anon_sym_using] = ACTIONS(2993), - [anon_sym_static_assert] = ACTIONS(2993), - [anon_sym_concept] = ACTIONS(2993), - [anon_sym_co_return] = ACTIONS(2993), - [anon_sym_co_yield] = ACTIONS(2993), - [anon_sym_R_DQUOTE] = ACTIONS(2995), - [anon_sym_LR_DQUOTE] = ACTIONS(2995), - [anon_sym_uR_DQUOTE] = ACTIONS(2995), - [anon_sym_UR_DQUOTE] = ACTIONS(2995), - [anon_sym_u8R_DQUOTE] = ACTIONS(2995), - [anon_sym_co_await] = ACTIONS(2993), - [anon_sym_new] = ACTIONS(2993), - [anon_sym_requires] = ACTIONS(2993), - [sym_this] = ACTIONS(2993), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [1037] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1092] = { + [sym_identifier] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [1038] = { - [ts_builtin_sym_end] = ACTIONS(2846), - [sym_identifier] = ACTIONS(2844), - [aux_sym_preproc_include_token1] = ACTIONS(2844), - [aux_sym_preproc_def_token1] = ACTIONS(2844), - [aux_sym_preproc_if_token1] = ACTIONS(2844), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2844), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2844), - [sym_preproc_directive] = ACTIONS(2844), - [anon_sym_LPAREN2] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2844), - [anon_sym_PLUS] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2844), - [anon_sym_SEMI] = ACTIONS(2846), - [anon_sym___extension__] = ACTIONS(2844), - [anon_sym_typedef] = ACTIONS(2844), - [anon_sym_extern] = ACTIONS(2844), - [anon_sym___attribute__] = ACTIONS(2844), - [anon_sym_COLON_COLON] = ACTIONS(2846), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2846), - [anon_sym___declspec] = ACTIONS(2844), - [anon_sym___based] = ACTIONS(2844), - [anon_sym___cdecl] = ACTIONS(2844), - [anon_sym___clrcall] = ACTIONS(2844), - [anon_sym___stdcall] = ACTIONS(2844), - [anon_sym___fastcall] = ACTIONS(2844), - [anon_sym___thiscall] = ACTIONS(2844), - [anon_sym___vectorcall] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_signed] = ACTIONS(2844), - [anon_sym_unsigned] = ACTIONS(2844), - [anon_sym_long] = ACTIONS(2844), - [anon_sym_short] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_static] = ACTIONS(2844), - [anon_sym_register] = ACTIONS(2844), - [anon_sym_inline] = ACTIONS(2844), - [anon_sym___inline] = ACTIONS(2844), - [anon_sym___inline__] = ACTIONS(2844), - [anon_sym___forceinline] = ACTIONS(2844), - [anon_sym_thread_local] = ACTIONS(2844), - [anon_sym___thread] = ACTIONS(2844), - [anon_sym_const] = ACTIONS(2844), - [anon_sym_constexpr] = ACTIONS(2844), - [anon_sym_volatile] = ACTIONS(2844), - [anon_sym_restrict] = ACTIONS(2844), - [anon_sym___restrict__] = ACTIONS(2844), - [anon_sym__Atomic] = ACTIONS(2844), - [anon_sym__Noreturn] = ACTIONS(2844), - [anon_sym_noreturn] = ACTIONS(2844), - [anon_sym_mutable] = ACTIONS(2844), - [anon_sym_constinit] = ACTIONS(2844), - [anon_sym_consteval] = ACTIONS(2844), - [sym_primitive_type] = ACTIONS(2844), - [anon_sym_enum] = ACTIONS(2844), - [anon_sym_class] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_else] = ACTIONS(2844), - [anon_sym_switch] = ACTIONS(2844), - [anon_sym_case] = ACTIONS(2844), - [anon_sym_default] = ACTIONS(2844), - [anon_sym_while] = ACTIONS(2844), - [anon_sym_do] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2844), - [anon_sym_return] = ACTIONS(2844), - [anon_sym_break] = ACTIONS(2844), - [anon_sym_continue] = ACTIONS(2844), - [anon_sym_goto] = ACTIONS(2844), - [anon_sym_not] = ACTIONS(2844), - [anon_sym_compl] = ACTIONS(2844), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_sizeof] = ACTIONS(2844), - [anon_sym___alignof__] = ACTIONS(2844), - [anon_sym___alignof] = ACTIONS(2844), - [anon_sym__alignof] = ACTIONS(2844), - [anon_sym_alignof] = ACTIONS(2844), - [anon_sym__Alignof] = ACTIONS(2844), - [anon_sym_offsetof] = ACTIONS(2844), - [anon_sym__Generic] = ACTIONS(2844), - [anon_sym_asm] = ACTIONS(2844), - [anon_sym___asm__] = ACTIONS(2844), - [sym_number_literal] = ACTIONS(2846), - [anon_sym_L_SQUOTE] = ACTIONS(2846), - [anon_sym_u_SQUOTE] = ACTIONS(2846), - [anon_sym_U_SQUOTE] = ACTIONS(2846), - [anon_sym_u8_SQUOTE] = ACTIONS(2846), - [anon_sym_SQUOTE] = ACTIONS(2846), - [anon_sym_L_DQUOTE] = ACTIONS(2846), - [anon_sym_u_DQUOTE] = ACTIONS(2846), - [anon_sym_U_DQUOTE] = ACTIONS(2846), - [anon_sym_u8_DQUOTE] = ACTIONS(2846), - [anon_sym_DQUOTE] = ACTIONS(2846), - [sym_true] = ACTIONS(2844), - [sym_false] = ACTIONS(2844), - [anon_sym_NULL] = ACTIONS(2844), - [anon_sym_nullptr] = ACTIONS(2844), + [1093] = { + [sym_identifier] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2844), - [anon_sym_decltype] = ACTIONS(2844), - [anon_sym_virtual] = ACTIONS(2844), - [anon_sym_alignas] = ACTIONS(2844), - [anon_sym_explicit] = ACTIONS(2844), - [anon_sym_typename] = ACTIONS(2844), - [anon_sym_template] = ACTIONS(2844), - [anon_sym_operator] = ACTIONS(2844), - [anon_sym_try] = ACTIONS(2844), - [anon_sym_delete] = ACTIONS(2844), - [anon_sym_throw] = ACTIONS(2844), - [anon_sym_namespace] = ACTIONS(2844), - [anon_sym_using] = ACTIONS(2844), - [anon_sym_static_assert] = ACTIONS(2844), - [anon_sym_concept] = ACTIONS(2844), - [anon_sym_co_return] = ACTIONS(2844), - [anon_sym_co_yield] = ACTIONS(2844), - [anon_sym_R_DQUOTE] = ACTIONS(2846), - [anon_sym_LR_DQUOTE] = ACTIONS(2846), - [anon_sym_uR_DQUOTE] = ACTIONS(2846), - [anon_sym_UR_DQUOTE] = ACTIONS(2846), - [anon_sym_u8R_DQUOTE] = ACTIONS(2846), - [anon_sym_co_await] = ACTIONS(2844), - [anon_sym_new] = ACTIONS(2844), - [anon_sym_requires] = ACTIONS(2844), - [sym_this] = ACTIONS(2844), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [1039] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1094] = { + [sym_identifier] = ACTIONS(3755), + [anon_sym_LPAREN2] = ACTIONS(3757), + [anon_sym_BANG] = ACTIONS(3757), + [anon_sym_TILDE] = ACTIONS(3757), + [anon_sym_DASH] = ACTIONS(3755), + [anon_sym_PLUS] = ACTIONS(3755), + [anon_sym_STAR] = ACTIONS(3757), + [anon_sym_AMP] = ACTIONS(3757), + [anon_sym_SEMI] = ACTIONS(3757), + [anon_sym___extension__] = ACTIONS(3755), + [anon_sym_extern] = ACTIONS(3755), + [anon_sym___attribute__] = ACTIONS(3755), + [anon_sym_COLON_COLON] = ACTIONS(3757), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3757), + [anon_sym___declspec] = ACTIONS(3755), + [anon_sym_LBRACE] = ACTIONS(3757), + [anon_sym_signed] = ACTIONS(3755), + [anon_sym_unsigned] = ACTIONS(3755), + [anon_sym_long] = ACTIONS(3755), + [anon_sym_short] = ACTIONS(3755), + [anon_sym_LBRACK] = ACTIONS(3755), + [anon_sym_static] = ACTIONS(3755), + [anon_sym_register] = ACTIONS(3755), + [anon_sym_inline] = ACTIONS(3755), + [anon_sym___inline] = ACTIONS(3755), + [anon_sym___inline__] = ACTIONS(3755), + [anon_sym___forceinline] = ACTIONS(3755), + [anon_sym_thread_local] = ACTIONS(3755), + [anon_sym___thread] = ACTIONS(3755), + [anon_sym_const] = ACTIONS(3755), + [anon_sym_constexpr] = ACTIONS(3755), + [anon_sym_volatile] = ACTIONS(3755), + [anon_sym_restrict] = ACTIONS(3755), + [anon_sym___restrict__] = ACTIONS(3755), + [anon_sym__Atomic] = ACTIONS(3755), + [anon_sym__Noreturn] = ACTIONS(3755), + [anon_sym_noreturn] = ACTIONS(3755), + [anon_sym_mutable] = ACTIONS(3755), + [anon_sym_constinit] = ACTIONS(3755), + [anon_sym_consteval] = ACTIONS(3755), + [sym_primitive_type] = ACTIONS(3755), + [anon_sym_enum] = ACTIONS(3755), + [anon_sym_class] = ACTIONS(3755), + [anon_sym_struct] = ACTIONS(3755), + [anon_sym_union] = ACTIONS(3755), + [anon_sym_if] = ACTIONS(3755), + [anon_sym_switch] = ACTIONS(3755), + [anon_sym_case] = ACTIONS(3755), + [anon_sym_default] = ACTIONS(3755), + [anon_sym_while] = ACTIONS(3755), + [anon_sym_do] = ACTIONS(3755), + [anon_sym_for] = ACTIONS(3755), + [anon_sym_return] = ACTIONS(3755), + [anon_sym_break] = ACTIONS(3755), + [anon_sym_continue] = ACTIONS(3755), + [anon_sym_goto] = ACTIONS(3755), + [anon_sym_not] = ACTIONS(3755), + [anon_sym_compl] = ACTIONS(3755), + [anon_sym_DASH_DASH] = ACTIONS(3757), + [anon_sym_PLUS_PLUS] = ACTIONS(3757), + [anon_sym_sizeof] = ACTIONS(3755), + [anon_sym___alignof__] = ACTIONS(3755), + [anon_sym___alignof] = ACTIONS(3755), + [anon_sym__alignof] = ACTIONS(3755), + [anon_sym_alignof] = ACTIONS(3755), + [anon_sym__Alignof] = ACTIONS(3755), + [anon_sym_offsetof] = ACTIONS(3755), + [anon_sym__Generic] = ACTIONS(3755), + [anon_sym_asm] = ACTIONS(3755), + [anon_sym___asm__] = ACTIONS(3755), + [sym_number_literal] = ACTIONS(3757), + [anon_sym_L_SQUOTE] = ACTIONS(3757), + [anon_sym_u_SQUOTE] = ACTIONS(3757), + [anon_sym_U_SQUOTE] = ACTIONS(3757), + [anon_sym_u8_SQUOTE] = ACTIONS(3757), + [anon_sym_SQUOTE] = ACTIONS(3757), + [anon_sym_L_DQUOTE] = ACTIONS(3757), + [anon_sym_u_DQUOTE] = ACTIONS(3757), + [anon_sym_U_DQUOTE] = ACTIONS(3757), + [anon_sym_u8_DQUOTE] = ACTIONS(3757), + [anon_sym_DQUOTE] = ACTIONS(3757), + [sym_true] = ACTIONS(3755), + [sym_false] = ACTIONS(3755), + [anon_sym_NULL] = ACTIONS(3755), + [anon_sym_nullptr] = ACTIONS(3755), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3755), + [anon_sym_decltype] = ACTIONS(3755), + [anon_sym_virtual] = ACTIONS(3755), + [anon_sym_alignas] = ACTIONS(3755), + [anon_sym_typename] = ACTIONS(3755), + [anon_sym_template] = ACTIONS(3755), + [anon_sym_try] = ACTIONS(3755), + [anon_sym_delete] = ACTIONS(3755), + [anon_sym_throw] = ACTIONS(3755), + [anon_sym_co_return] = ACTIONS(3755), + [anon_sym_co_yield] = ACTIONS(3755), + [anon_sym_R_DQUOTE] = ACTIONS(3757), + [anon_sym_LR_DQUOTE] = ACTIONS(3757), + [anon_sym_uR_DQUOTE] = ACTIONS(3757), + [anon_sym_UR_DQUOTE] = ACTIONS(3757), + [anon_sym_u8R_DQUOTE] = ACTIONS(3757), + [anon_sym_co_await] = ACTIONS(3755), + [anon_sym_new] = ACTIONS(3755), + [anon_sym_requires] = ACTIONS(3755), + [sym_this] = ACTIONS(3755), + }, + [1095] = { + [sym_identifier] = ACTIONS(2786), + [anon_sym_LPAREN2] = ACTIONS(2788), + [anon_sym_BANG] = ACTIONS(2788), + [anon_sym_TILDE] = ACTIONS(2788), + [anon_sym_DASH] = ACTIONS(2786), + [anon_sym_PLUS] = ACTIONS(2786), + [anon_sym_STAR] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(2788), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym___extension__] = ACTIONS(2786), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_extern] = ACTIONS(2786), + [anon_sym___attribute__] = ACTIONS(2786), + [anon_sym_COLON_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2788), + [anon_sym___declspec] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2788), + [anon_sym_signed] = ACTIONS(2786), + [anon_sym_unsigned] = ACTIONS(2786), + [anon_sym_long] = ACTIONS(2786), + [anon_sym_short] = ACTIONS(2786), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_static] = ACTIONS(2786), + [anon_sym_register] = ACTIONS(2786), + [anon_sym_inline] = ACTIONS(2786), + [anon_sym___inline] = ACTIONS(2786), + [anon_sym___inline__] = ACTIONS(2786), + [anon_sym___forceinline] = ACTIONS(2786), + [anon_sym_thread_local] = ACTIONS(2786), + [anon_sym___thread] = ACTIONS(2786), + [anon_sym_const] = ACTIONS(2786), + [anon_sym_constexpr] = ACTIONS(2786), + [anon_sym_volatile] = ACTIONS(2786), + [anon_sym_restrict] = ACTIONS(2786), + [anon_sym___restrict__] = ACTIONS(2786), + [anon_sym__Atomic] = ACTIONS(2786), + [anon_sym__Noreturn] = ACTIONS(2786), + [anon_sym_noreturn] = ACTIONS(2786), + [anon_sym_mutable] = ACTIONS(2786), + [anon_sym_constinit] = ACTIONS(2786), + [anon_sym_consteval] = ACTIONS(2786), + [sym_primitive_type] = ACTIONS(2786), + [anon_sym_enum] = ACTIONS(2786), + [anon_sym_class] = ACTIONS(2786), + [anon_sym_struct] = ACTIONS(2786), + [anon_sym_union] = ACTIONS(2786), + [anon_sym_if] = ACTIONS(2786), + [anon_sym_else] = ACTIONS(2786), + [anon_sym_switch] = ACTIONS(2786), + [anon_sym_while] = ACTIONS(2786), + [anon_sym_do] = ACTIONS(2786), + [anon_sym_for] = ACTIONS(2786), + [anon_sym_return] = ACTIONS(2786), + [anon_sym_break] = ACTIONS(2786), + [anon_sym_continue] = ACTIONS(2786), + [anon_sym_goto] = ACTIONS(2786), + [anon_sym_not] = ACTIONS(2786), + [anon_sym_compl] = ACTIONS(2786), + [anon_sym_DASH_DASH] = ACTIONS(2788), + [anon_sym_PLUS_PLUS] = ACTIONS(2788), + [anon_sym_sizeof] = ACTIONS(2786), + [anon_sym___alignof__] = ACTIONS(2786), + [anon_sym___alignof] = ACTIONS(2786), + [anon_sym__alignof] = ACTIONS(2786), + [anon_sym_alignof] = ACTIONS(2786), + [anon_sym__Alignof] = ACTIONS(2786), + [anon_sym_offsetof] = ACTIONS(2786), + [anon_sym__Generic] = ACTIONS(2786), + [anon_sym_asm] = ACTIONS(2786), + [anon_sym___asm__] = ACTIONS(2786), + [sym_number_literal] = ACTIONS(2788), + [anon_sym_L_SQUOTE] = ACTIONS(2788), + [anon_sym_u_SQUOTE] = ACTIONS(2788), + [anon_sym_U_SQUOTE] = ACTIONS(2788), + [anon_sym_u8_SQUOTE] = ACTIONS(2788), + [anon_sym_SQUOTE] = ACTIONS(2788), + [anon_sym_L_DQUOTE] = ACTIONS(2788), + [anon_sym_u_DQUOTE] = ACTIONS(2788), + [anon_sym_U_DQUOTE] = ACTIONS(2788), + [anon_sym_u8_DQUOTE] = ACTIONS(2788), + [anon_sym_DQUOTE] = ACTIONS(2788), + [sym_true] = ACTIONS(2786), + [sym_false] = ACTIONS(2786), + [anon_sym_NULL] = ACTIONS(2786), + [anon_sym_nullptr] = ACTIONS(2786), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(2786), + [anon_sym_decltype] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(2786), + [anon_sym_alignas] = ACTIONS(2786), + [anon_sym_typename] = ACTIONS(2786), + [anon_sym_template] = ACTIONS(2786), + [anon_sym_try] = ACTIONS(2786), + [anon_sym_delete] = ACTIONS(2786), + [anon_sym_throw] = ACTIONS(2786), + [anon_sym_co_return] = ACTIONS(2786), + [anon_sym_co_yield] = ACTIONS(2786), + [anon_sym_R_DQUOTE] = ACTIONS(2788), + [anon_sym_LR_DQUOTE] = ACTIONS(2788), + [anon_sym_uR_DQUOTE] = ACTIONS(2788), + [anon_sym_UR_DQUOTE] = ACTIONS(2788), + [anon_sym_u8R_DQUOTE] = ACTIONS(2788), + [anon_sym_co_await] = ACTIONS(2786), + [anon_sym_new] = ACTIONS(2786), + [anon_sym_requires] = ACTIONS(2786), + [sym_this] = ACTIONS(2786), }, - [1040] = { - [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_extern] = ACTIONS(2999), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(2999), - [anon_sym_constinit] = ACTIONS(2999), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(2999), - [anon_sym_alignas] = 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_using] = 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), + [1096] = { + [sym_identifier] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), }, - [1041] = { - [ts_builtin_sym_end] = ACTIONS(2780), + [1097] = { + [sym_identifier] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), + }, + [1098] = { + [sym_identifier] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym___extension__] = ACTIONS(2864), + [anon_sym_typedef] = ACTIONS(2864), + [anon_sym_extern] = ACTIONS(2864), + [anon_sym___attribute__] = ACTIONS(2864), + [anon_sym_COLON_COLON] = ACTIONS(2866), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2866), + [anon_sym___declspec] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_signed] = ACTIONS(2864), + [anon_sym_unsigned] = ACTIONS(2864), + [anon_sym_long] = ACTIONS(2864), + [anon_sym_short] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_register] = ACTIONS(2864), + [anon_sym_inline] = ACTIONS(2864), + [anon_sym___inline] = ACTIONS(2864), + [anon_sym___inline__] = ACTIONS(2864), + [anon_sym___forceinline] = ACTIONS(2864), + [anon_sym_thread_local] = ACTIONS(2864), + [anon_sym___thread] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym___restrict__] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym__Noreturn] = ACTIONS(2864), + [anon_sym_noreturn] = ACTIONS(2864), + [anon_sym_mutable] = ACTIONS(2864), + [anon_sym_constinit] = ACTIONS(2864), + [anon_sym_consteval] = ACTIONS(2864), + [sym_primitive_type] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [anon_sym_class] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2864), + [anon_sym_union] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_else] = ACTIONS(2864), + [anon_sym_switch] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_goto] = ACTIONS(2864), + [anon_sym_not] = ACTIONS(2864), + [anon_sym_compl] = ACTIONS(2864), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_sizeof] = ACTIONS(2864), + [anon_sym___alignof__] = ACTIONS(2864), + [anon_sym___alignof] = ACTIONS(2864), + [anon_sym__alignof] = ACTIONS(2864), + [anon_sym_alignof] = ACTIONS(2864), + [anon_sym__Alignof] = ACTIONS(2864), + [anon_sym_offsetof] = ACTIONS(2864), + [anon_sym__Generic] = ACTIONS(2864), + [anon_sym_asm] = ACTIONS(2864), + [anon_sym___asm__] = ACTIONS(2864), + [sym_number_literal] = ACTIONS(2866), + [anon_sym_L_SQUOTE] = ACTIONS(2866), + [anon_sym_u_SQUOTE] = ACTIONS(2866), + [anon_sym_U_SQUOTE] = ACTIONS(2866), + [anon_sym_u8_SQUOTE] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_L_DQUOTE] = ACTIONS(2866), + [anon_sym_u_DQUOTE] = ACTIONS(2866), + [anon_sym_U_DQUOTE] = ACTIONS(2866), + [anon_sym_u8_DQUOTE] = ACTIONS(2866), + [anon_sym_DQUOTE] = ACTIONS(2866), + [sym_true] = ACTIONS(2864), + [sym_false] = ACTIONS(2864), + [anon_sym_NULL] = ACTIONS(2864), + [anon_sym_nullptr] = ACTIONS(2864), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2864), + [anon_sym_decltype] = ACTIONS(2864), + [anon_sym_virtual] = ACTIONS(2864), + [anon_sym_alignas] = ACTIONS(2864), + [anon_sym_typename] = ACTIONS(2864), + [anon_sym_template] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_delete] = ACTIONS(2864), + [anon_sym_throw] = ACTIONS(2864), + [anon_sym_co_return] = ACTIONS(2864), + [anon_sym_co_yield] = ACTIONS(2864), + [anon_sym_R_DQUOTE] = ACTIONS(2866), + [anon_sym_LR_DQUOTE] = ACTIONS(2866), + [anon_sym_uR_DQUOTE] = ACTIONS(2866), + [anon_sym_UR_DQUOTE] = ACTIONS(2866), + [anon_sym_u8R_DQUOTE] = ACTIONS(2866), + [anon_sym_co_await] = ACTIONS(2864), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_requires] = ACTIONS(2864), + [sym_this] = ACTIONS(2864), + }, + [1099] = { + [sym_identifier] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), + }, + [1100] = { + [sym_identifier] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), + }, + [1101] = { + [sym_identifier] = ACTIONS(2766), + [anon_sym_LPAREN2] = ACTIONS(2768), + [anon_sym_BANG] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym___extension__] = ACTIONS(2766), + [anon_sym_typedef] = ACTIONS(2766), + [anon_sym_extern] = ACTIONS(2766), + [anon_sym___attribute__] = ACTIONS(2766), + [anon_sym_COLON_COLON] = ACTIONS(2768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2768), + [anon_sym___declspec] = ACTIONS(2766), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_signed] = ACTIONS(2766), + [anon_sym_unsigned] = ACTIONS(2766), + [anon_sym_long] = ACTIONS(2766), + [anon_sym_short] = ACTIONS(2766), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym_static] = ACTIONS(2766), + [anon_sym_register] = ACTIONS(2766), + [anon_sym_inline] = ACTIONS(2766), + [anon_sym___inline] = ACTIONS(2766), + [anon_sym___inline__] = ACTIONS(2766), + [anon_sym___forceinline] = ACTIONS(2766), + [anon_sym_thread_local] = ACTIONS(2766), + [anon_sym___thread] = ACTIONS(2766), + [anon_sym_const] = ACTIONS(2766), + [anon_sym_constexpr] = ACTIONS(2766), + [anon_sym_volatile] = ACTIONS(2766), + [anon_sym_restrict] = ACTIONS(2766), + [anon_sym___restrict__] = ACTIONS(2766), + [anon_sym__Atomic] = ACTIONS(2766), + [anon_sym__Noreturn] = ACTIONS(2766), + [anon_sym_noreturn] = ACTIONS(2766), + [anon_sym_mutable] = ACTIONS(2766), + [anon_sym_constinit] = ACTIONS(2766), + [anon_sym_consteval] = ACTIONS(2766), + [sym_primitive_type] = ACTIONS(2766), + [anon_sym_enum] = ACTIONS(2766), + [anon_sym_class] = ACTIONS(2766), + [anon_sym_struct] = ACTIONS(2766), + [anon_sym_union] = ACTIONS(2766), + [anon_sym_if] = ACTIONS(2766), + [anon_sym_else] = ACTIONS(2766), + [anon_sym_switch] = ACTIONS(2766), + [anon_sym_while] = ACTIONS(2766), + [anon_sym_do] = ACTIONS(2766), + [anon_sym_for] = ACTIONS(2766), + [anon_sym_return] = ACTIONS(2766), + [anon_sym_break] = ACTIONS(2766), + [anon_sym_continue] = ACTIONS(2766), + [anon_sym_goto] = ACTIONS(2766), + [anon_sym_not] = ACTIONS(2766), + [anon_sym_compl] = ACTIONS(2766), + [anon_sym_DASH_DASH] = ACTIONS(2768), + [anon_sym_PLUS_PLUS] = ACTIONS(2768), + [anon_sym_sizeof] = ACTIONS(2766), + [anon_sym___alignof__] = ACTIONS(2766), + [anon_sym___alignof] = ACTIONS(2766), + [anon_sym__alignof] = ACTIONS(2766), + [anon_sym_alignof] = ACTIONS(2766), + [anon_sym__Alignof] = ACTIONS(2766), + [anon_sym_offsetof] = ACTIONS(2766), + [anon_sym__Generic] = ACTIONS(2766), + [anon_sym_asm] = ACTIONS(2766), + [anon_sym___asm__] = ACTIONS(2766), + [sym_number_literal] = ACTIONS(2768), + [anon_sym_L_SQUOTE] = ACTIONS(2768), + [anon_sym_u_SQUOTE] = ACTIONS(2768), + [anon_sym_U_SQUOTE] = ACTIONS(2768), + [anon_sym_u8_SQUOTE] = ACTIONS(2768), + [anon_sym_SQUOTE] = ACTIONS(2768), + [anon_sym_L_DQUOTE] = ACTIONS(2768), + [anon_sym_u_DQUOTE] = ACTIONS(2768), + [anon_sym_U_DQUOTE] = ACTIONS(2768), + [anon_sym_u8_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [sym_true] = ACTIONS(2766), + [sym_false] = ACTIONS(2766), + [anon_sym_NULL] = ACTIONS(2766), + [anon_sym_nullptr] = ACTIONS(2766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2766), + [anon_sym_decltype] = ACTIONS(2766), + [anon_sym_virtual] = ACTIONS(2766), + [anon_sym_alignas] = ACTIONS(2766), + [anon_sym_typename] = ACTIONS(2766), + [anon_sym_template] = ACTIONS(2766), + [anon_sym_try] = ACTIONS(2766), + [anon_sym_delete] = ACTIONS(2766), + [anon_sym_throw] = ACTIONS(2766), + [anon_sym_co_return] = ACTIONS(2766), + [anon_sym_co_yield] = ACTIONS(2766), + [anon_sym_R_DQUOTE] = ACTIONS(2768), + [anon_sym_LR_DQUOTE] = ACTIONS(2768), + [anon_sym_uR_DQUOTE] = ACTIONS(2768), + [anon_sym_UR_DQUOTE] = ACTIONS(2768), + [anon_sym_u8R_DQUOTE] = ACTIONS(2768), + [anon_sym_co_await] = ACTIONS(2766), + [anon_sym_new] = ACTIONS(2766), + [anon_sym_requires] = ACTIONS(2766), + [sym_this] = ACTIONS(2766), + }, + [1102] = { + [sym_identifier] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym___extension__] = ACTIONS(2762), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym___attribute__] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), + [anon_sym___declspec] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_signed] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym___inline] = ACTIONS(2762), + [anon_sym___inline__] = ACTIONS(2762), + [anon_sym___forceinline] = ACTIONS(2762), + [anon_sym_thread_local] = ACTIONS(2762), + [anon_sym___thread] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_constexpr] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym___restrict__] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym__Noreturn] = ACTIONS(2762), + [anon_sym_noreturn] = ACTIONS(2762), + [anon_sym_mutable] = ACTIONS(2762), + [anon_sym_constinit] = ACTIONS(2762), + [anon_sym_consteval] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_not] = ACTIONS(2762), + [anon_sym_compl] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [anon_sym___alignof__] = ACTIONS(2762), + [anon_sym___alignof] = ACTIONS(2762), + [anon_sym__alignof] = ACTIONS(2762), + [anon_sym_alignof] = ACTIONS(2762), + [anon_sym__Alignof] = ACTIONS(2762), + [anon_sym_offsetof] = ACTIONS(2762), + [anon_sym__Generic] = ACTIONS(2762), + [anon_sym_asm] = ACTIONS(2762), + [anon_sym___asm__] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_L_SQUOTE] = ACTIONS(2764), + [anon_sym_u_SQUOTE] = ACTIONS(2764), + [anon_sym_U_SQUOTE] = ACTIONS(2764), + [anon_sym_u8_SQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_L_DQUOTE] = ACTIONS(2764), + [anon_sym_u_DQUOTE] = ACTIONS(2764), + [anon_sym_U_DQUOTE] = ACTIONS(2764), + [anon_sym_u8_DQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [anon_sym_NULL] = ACTIONS(2762), + [anon_sym_nullptr] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2762), + [anon_sym_virtual] = ACTIONS(2762), + [anon_sym_alignas] = ACTIONS(2762), + [anon_sym_typename] = ACTIONS(2762), + [anon_sym_template] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_co_return] = ACTIONS(2762), + [anon_sym_co_yield] = ACTIONS(2762), + [anon_sym_R_DQUOTE] = ACTIONS(2764), + [anon_sym_LR_DQUOTE] = ACTIONS(2764), + [anon_sym_uR_DQUOTE] = ACTIONS(2764), + [anon_sym_UR_DQUOTE] = ACTIONS(2764), + [anon_sym_u8R_DQUOTE] = ACTIONS(2764), + [anon_sym_co_await] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_requires] = ACTIONS(2762), + [sym_this] = ACTIONS(2762), + }, + [1103] = { [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), [anon_sym_LPAREN2] = ACTIONS(2780), [anon_sym_BANG] = ACTIONS(2780), [anon_sym_TILDE] = ACTIONS(2780), [anon_sym_DASH] = ACTIONS(2778), [anon_sym_PLUS] = ACTIONS(2778), [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_AMP] = ACTIONS(2780), [anon_sym_SEMI] = ACTIONS(2780), [anon_sym___extension__] = ACTIONS(2778), [anon_sym_typedef] = ACTIONS(2778), @@ -199923,13 +200897,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(2780), [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), [anon_sym_LBRACE] = ACTIONS(2780), [anon_sym_signed] = ACTIONS(2778), [anon_sym_unsigned] = ACTIONS(2778), @@ -199963,8 +200930,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2778), [anon_sym_else] = ACTIONS(2778), [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), [anon_sym_while] = ACTIONS(2778), [anon_sym_do] = ACTIONS(2778), [anon_sym_for] = ACTIONS(2778), @@ -200006,17 +200971,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(2778), [anon_sym_virtual] = ACTIONS(2778), [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), [anon_sym_typename] = ACTIONS(2778), [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), [anon_sym_try] = ACTIONS(2778), [anon_sym_delete] = ACTIONS(2778), [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), [anon_sym_co_return] = ACTIONS(2778), [anon_sym_co_yield] = ACTIONS(2778), [anon_sym_R_DQUOTE] = ACTIONS(2780), @@ -200029,49679 +200988,35447 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2778), [sym_this] = ACTIONS(2778), }, - [1042] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1104] = { + [sym_expression_statement] = STATE(2600), + [sym__expression] = STATE(4069), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7341), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_type_requirement] = STATE(1110), + [sym_compound_requirement] = STATE(1110), + [sym__requirement] = STATE(1110), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_requirement_seq_repeat1] = STATE(1110), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(3870), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1043] = { - [ts_builtin_sym_end] = ACTIONS(2871), - [sym_identifier] = ACTIONS(2869), - [aux_sym_preproc_include_token1] = ACTIONS(2869), - [aux_sym_preproc_def_token1] = ACTIONS(2869), - [aux_sym_preproc_if_token1] = ACTIONS(2869), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2869), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2869), - [sym_preproc_directive] = ACTIONS(2869), - [anon_sym_LPAREN2] = ACTIONS(2871), - [anon_sym_BANG] = ACTIONS(2871), - [anon_sym_TILDE] = ACTIONS(2871), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2871), - [anon_sym_AMP_AMP] = ACTIONS(2871), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym___extension__] = ACTIONS(2869), - [anon_sym_typedef] = ACTIONS(2869), - [anon_sym_extern] = ACTIONS(2869), - [anon_sym___attribute__] = ACTIONS(2869), - [anon_sym_COLON_COLON] = ACTIONS(2871), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2871), - [anon_sym___declspec] = ACTIONS(2869), - [anon_sym___based] = ACTIONS(2869), - [anon_sym___cdecl] = ACTIONS(2869), - [anon_sym___clrcall] = ACTIONS(2869), - [anon_sym___stdcall] = ACTIONS(2869), - [anon_sym___fastcall] = ACTIONS(2869), - [anon_sym___thiscall] = ACTIONS(2869), - [anon_sym___vectorcall] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_signed] = ACTIONS(2869), - [anon_sym_unsigned] = ACTIONS(2869), - [anon_sym_long] = ACTIONS(2869), - [anon_sym_short] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_static] = ACTIONS(2869), - [anon_sym_register] = ACTIONS(2869), - [anon_sym_inline] = ACTIONS(2869), - [anon_sym___inline] = ACTIONS(2869), - [anon_sym___inline__] = ACTIONS(2869), - [anon_sym___forceinline] = ACTIONS(2869), - [anon_sym_thread_local] = ACTIONS(2869), - [anon_sym___thread] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2869), - [anon_sym_constexpr] = ACTIONS(2869), - [anon_sym_volatile] = ACTIONS(2869), - [anon_sym_restrict] = ACTIONS(2869), - [anon_sym___restrict__] = ACTIONS(2869), - [anon_sym__Atomic] = ACTIONS(2869), - [anon_sym__Noreturn] = ACTIONS(2869), - [anon_sym_noreturn] = ACTIONS(2869), - [anon_sym_mutable] = ACTIONS(2869), - [anon_sym_constinit] = ACTIONS(2869), - [anon_sym_consteval] = ACTIONS(2869), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2869), - [anon_sym_class] = ACTIONS(2869), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_union] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_else] = ACTIONS(2869), - [anon_sym_switch] = ACTIONS(2869), - [anon_sym_case] = ACTIONS(2869), - [anon_sym_default] = ACTIONS(2869), - [anon_sym_while] = ACTIONS(2869), - [anon_sym_do] = ACTIONS(2869), - [anon_sym_for] = ACTIONS(2869), - [anon_sym_return] = ACTIONS(2869), - [anon_sym_break] = ACTIONS(2869), - [anon_sym_continue] = ACTIONS(2869), - [anon_sym_goto] = ACTIONS(2869), - [anon_sym_not] = ACTIONS(2869), - [anon_sym_compl] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2871), - [anon_sym_PLUS_PLUS] = ACTIONS(2871), - [anon_sym_sizeof] = ACTIONS(2869), - [anon_sym___alignof__] = ACTIONS(2869), - [anon_sym___alignof] = ACTIONS(2869), - [anon_sym__alignof] = ACTIONS(2869), - [anon_sym_alignof] = ACTIONS(2869), - [anon_sym__Alignof] = ACTIONS(2869), - [anon_sym_offsetof] = ACTIONS(2869), - [anon_sym__Generic] = ACTIONS(2869), - [anon_sym_asm] = ACTIONS(2869), - [anon_sym___asm__] = ACTIONS(2869), - [sym_number_literal] = ACTIONS(2871), - [anon_sym_L_SQUOTE] = ACTIONS(2871), - [anon_sym_u_SQUOTE] = ACTIONS(2871), - [anon_sym_U_SQUOTE] = ACTIONS(2871), - [anon_sym_u8_SQUOTE] = ACTIONS(2871), - [anon_sym_SQUOTE] = ACTIONS(2871), - [anon_sym_L_DQUOTE] = ACTIONS(2871), - [anon_sym_u_DQUOTE] = ACTIONS(2871), - [anon_sym_U_DQUOTE] = ACTIONS(2871), - [anon_sym_u8_DQUOTE] = ACTIONS(2871), - [anon_sym_DQUOTE] = ACTIONS(2871), - [sym_true] = ACTIONS(2869), - [sym_false] = ACTIONS(2869), - [anon_sym_NULL] = ACTIONS(2869), - [anon_sym_nullptr] = ACTIONS(2869), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2869), - [anon_sym_decltype] = ACTIONS(2869), - [anon_sym_virtual] = ACTIONS(2869), - [anon_sym_alignas] = ACTIONS(2869), - [anon_sym_explicit] = ACTIONS(2869), - [anon_sym_typename] = ACTIONS(2869), - [anon_sym_template] = ACTIONS(2869), - [anon_sym_operator] = ACTIONS(2869), - [anon_sym_try] = ACTIONS(2869), - [anon_sym_delete] = ACTIONS(2869), - [anon_sym_throw] = ACTIONS(2869), - [anon_sym_namespace] = ACTIONS(2869), - [anon_sym_using] = ACTIONS(2869), - [anon_sym_static_assert] = ACTIONS(2869), - [anon_sym_concept] = ACTIONS(2869), - [anon_sym_co_return] = ACTIONS(2869), - [anon_sym_co_yield] = ACTIONS(2869), - [anon_sym_R_DQUOTE] = ACTIONS(2871), - [anon_sym_LR_DQUOTE] = ACTIONS(2871), - [anon_sym_uR_DQUOTE] = ACTIONS(2871), - [anon_sym_UR_DQUOTE] = ACTIONS(2871), - [anon_sym_u8R_DQUOTE] = ACTIONS(2871), - [anon_sym_co_await] = ACTIONS(2869), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2869), - [sym_this] = ACTIONS(2869), + [1105] = { + [sym_expression_statement] = STATE(2600), + [sym__expression] = STATE(4069), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7341), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_type_requirement] = STATE(1107), + [sym_compound_requirement] = STATE(1107), + [sym__requirement] = STATE(1107), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_requirement_seq_repeat1] = STATE(1107), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3872), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(3870), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1044] = { - [sym_identifier] = ACTIONS(2925), - [aux_sym_preproc_include_token1] = ACTIONS(2925), - [aux_sym_preproc_def_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token2] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2925), - [sym_preproc_directive] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2927), - [anon_sym___extension__] = ACTIONS(2925), - [anon_sym_typedef] = ACTIONS(2925), - [anon_sym_extern] = ACTIONS(2925), - [anon_sym___attribute__] = ACTIONS(2925), - [anon_sym_COLON_COLON] = ACTIONS(2927), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), - [anon_sym___declspec] = ACTIONS(2925), - [anon_sym___based] = ACTIONS(2925), - [anon_sym___cdecl] = ACTIONS(2925), - [anon_sym___clrcall] = ACTIONS(2925), - [anon_sym___stdcall] = ACTIONS(2925), - [anon_sym___fastcall] = ACTIONS(2925), - [anon_sym___thiscall] = ACTIONS(2925), - [anon_sym___vectorcall] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_signed] = ACTIONS(2925), - [anon_sym_unsigned] = ACTIONS(2925), - [anon_sym_long] = ACTIONS(2925), - [anon_sym_short] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_static] = ACTIONS(2925), - [anon_sym_register] = ACTIONS(2925), - [anon_sym_inline] = ACTIONS(2925), - [anon_sym___inline] = ACTIONS(2925), - [anon_sym___inline__] = ACTIONS(2925), - [anon_sym___forceinline] = ACTIONS(2925), - [anon_sym_thread_local] = ACTIONS(2925), - [anon_sym___thread] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(2925), - [anon_sym_constexpr] = ACTIONS(2925), - [anon_sym_volatile] = ACTIONS(2925), - [anon_sym_restrict] = ACTIONS(2925), - [anon_sym___restrict__] = ACTIONS(2925), - [anon_sym__Atomic] = ACTIONS(2925), - [anon_sym__Noreturn] = ACTIONS(2925), - [anon_sym_noreturn] = ACTIONS(2925), - [anon_sym_mutable] = ACTIONS(2925), - [anon_sym_constinit] = ACTIONS(2925), - [anon_sym_consteval] = ACTIONS(2925), - [sym_primitive_type] = ACTIONS(2925), - [anon_sym_enum] = ACTIONS(2925), - [anon_sym_class] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_union] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_else] = ACTIONS(2925), - [anon_sym_switch] = ACTIONS(2925), - [anon_sym_case] = ACTIONS(2925), - [anon_sym_default] = ACTIONS(2925), - [anon_sym_while] = ACTIONS(2925), - [anon_sym_do] = ACTIONS(2925), - [anon_sym_for] = ACTIONS(2925), - [anon_sym_return] = ACTIONS(2925), - [anon_sym_break] = ACTIONS(2925), - [anon_sym_continue] = ACTIONS(2925), - [anon_sym_goto] = ACTIONS(2925), - [anon_sym_not] = ACTIONS(2925), - [anon_sym_compl] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2927), - [anon_sym_sizeof] = ACTIONS(2925), - [anon_sym___alignof__] = ACTIONS(2925), - [anon_sym___alignof] = ACTIONS(2925), - [anon_sym__alignof] = ACTIONS(2925), - [anon_sym_alignof] = ACTIONS(2925), - [anon_sym__Alignof] = ACTIONS(2925), - [anon_sym_offsetof] = ACTIONS(2925), - [anon_sym__Generic] = ACTIONS(2925), - [anon_sym_asm] = ACTIONS(2925), - [anon_sym___asm__] = ACTIONS(2925), - [sym_number_literal] = ACTIONS(2927), - [anon_sym_L_SQUOTE] = ACTIONS(2927), - [anon_sym_u_SQUOTE] = ACTIONS(2927), - [anon_sym_U_SQUOTE] = ACTIONS(2927), - [anon_sym_u8_SQUOTE] = ACTIONS(2927), - [anon_sym_SQUOTE] = ACTIONS(2927), - [anon_sym_L_DQUOTE] = ACTIONS(2927), - [anon_sym_u_DQUOTE] = ACTIONS(2927), - [anon_sym_U_DQUOTE] = ACTIONS(2927), - [anon_sym_u8_DQUOTE] = ACTIONS(2927), - [anon_sym_DQUOTE] = ACTIONS(2927), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [anon_sym_NULL] = ACTIONS(2925), - [anon_sym_nullptr] = ACTIONS(2925), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2925), - [anon_sym_decltype] = ACTIONS(2925), - [anon_sym_virtual] = ACTIONS(2925), - [anon_sym_alignas] = ACTIONS(2925), - [anon_sym_explicit] = ACTIONS(2925), - [anon_sym_typename] = ACTIONS(2925), - [anon_sym_template] = ACTIONS(2925), - [anon_sym_operator] = ACTIONS(2925), - [anon_sym_try] = ACTIONS(2925), - [anon_sym_delete] = ACTIONS(2925), - [anon_sym_throw] = ACTIONS(2925), - [anon_sym_namespace] = ACTIONS(2925), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_static_assert] = ACTIONS(2925), - [anon_sym_concept] = ACTIONS(2925), - [anon_sym_co_return] = ACTIONS(2925), - [anon_sym_co_yield] = ACTIONS(2925), - [anon_sym_R_DQUOTE] = ACTIONS(2927), - [anon_sym_LR_DQUOTE] = ACTIONS(2927), - [anon_sym_uR_DQUOTE] = ACTIONS(2927), - [anon_sym_UR_DQUOTE] = ACTIONS(2927), - [anon_sym_u8R_DQUOTE] = ACTIONS(2927), - [anon_sym_co_await] = ACTIONS(2925), - [anon_sym_new] = ACTIONS(2925), - [anon_sym_requires] = ACTIONS(2925), - [sym_this] = ACTIONS(2925), + [1106] = { + [sym_expression_statement] = STATE(2600), + [sym__expression] = STATE(4069), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7341), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_type_requirement] = STATE(1110), + [sym_compound_requirement] = STATE(1110), + [sym__requirement] = STATE(1110), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_requirement_seq_repeat1] = STATE(1110), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3874), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(3870), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1045] = { - [sym_identifier] = ACTIONS(3083), - [aux_sym_preproc_include_token1] = ACTIONS(3083), - [aux_sym_preproc_def_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token2] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), - [sym_preproc_directive] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym___extension__] = ACTIONS(3083), - [anon_sym_typedef] = ACTIONS(3083), - [anon_sym_extern] = ACTIONS(3083), - [anon_sym___attribute__] = ACTIONS(3083), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), - [anon_sym___declspec] = ACTIONS(3083), - [anon_sym___based] = ACTIONS(3083), - [anon_sym___cdecl] = ACTIONS(3083), - [anon_sym___clrcall] = ACTIONS(3083), - [anon_sym___stdcall] = ACTIONS(3083), - [anon_sym___fastcall] = ACTIONS(3083), - [anon_sym___thiscall] = ACTIONS(3083), - [anon_sym___vectorcall] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_signed] = ACTIONS(3083), - [anon_sym_unsigned] = ACTIONS(3083), - [anon_sym_long] = ACTIONS(3083), - [anon_sym_short] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_static] = ACTIONS(3083), - [anon_sym_register] = ACTIONS(3083), - [anon_sym_inline] = ACTIONS(3083), - [anon_sym___inline] = ACTIONS(3083), - [anon_sym___inline__] = ACTIONS(3083), - [anon_sym___forceinline] = ACTIONS(3083), - [anon_sym_thread_local] = ACTIONS(3083), - [anon_sym___thread] = ACTIONS(3083), - [anon_sym_const] = ACTIONS(3083), - [anon_sym_constexpr] = ACTIONS(3083), - [anon_sym_volatile] = ACTIONS(3083), - [anon_sym_restrict] = ACTIONS(3083), - [anon_sym___restrict__] = ACTIONS(3083), - [anon_sym__Atomic] = ACTIONS(3083), - [anon_sym__Noreturn] = ACTIONS(3083), - [anon_sym_noreturn] = ACTIONS(3083), - [anon_sym_mutable] = ACTIONS(3083), - [anon_sym_constinit] = ACTIONS(3083), - [anon_sym_consteval] = ACTIONS(3083), - [sym_primitive_type] = ACTIONS(3083), - [anon_sym_enum] = ACTIONS(3083), - [anon_sym_class] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_else] = ACTIONS(3083), - [anon_sym_switch] = ACTIONS(3083), - [anon_sym_case] = ACTIONS(3083), - [anon_sym_default] = ACTIONS(3083), - [anon_sym_while] = ACTIONS(3083), - [anon_sym_do] = ACTIONS(3083), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_break] = ACTIONS(3083), - [anon_sym_continue] = ACTIONS(3083), - [anon_sym_goto] = ACTIONS(3083), - [anon_sym_not] = ACTIONS(3083), - [anon_sym_compl] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3083), - [anon_sym___alignof__] = ACTIONS(3083), - [anon_sym___alignof] = ACTIONS(3083), - [anon_sym__alignof] = ACTIONS(3083), - [anon_sym_alignof] = ACTIONS(3083), - [anon_sym__Alignof] = ACTIONS(3083), - [anon_sym_offsetof] = ACTIONS(3083), - [anon_sym__Generic] = ACTIONS(3083), - [anon_sym_asm] = ACTIONS(3083), - [anon_sym___asm__] = ACTIONS(3083), - [sym_number_literal] = ACTIONS(3085), - [anon_sym_L_SQUOTE] = ACTIONS(3085), - [anon_sym_u_SQUOTE] = ACTIONS(3085), - [anon_sym_U_SQUOTE] = ACTIONS(3085), - [anon_sym_u8_SQUOTE] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3085), - [anon_sym_L_DQUOTE] = ACTIONS(3085), - [anon_sym_u_DQUOTE] = ACTIONS(3085), - [anon_sym_U_DQUOTE] = ACTIONS(3085), - [anon_sym_u8_DQUOTE] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(3085), - [sym_true] = ACTIONS(3083), - [sym_false] = ACTIONS(3083), - [anon_sym_NULL] = ACTIONS(3083), - [anon_sym_nullptr] = ACTIONS(3083), + [1107] = { + [sym_expression_statement] = STATE(2600), + [sym__expression] = STATE(4069), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7341), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_type_requirement] = STATE(1110), + [sym_compound_requirement] = STATE(1110), + [sym__requirement] = STATE(1110), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_requirement_seq_repeat1] = STATE(1110), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3083), - [anon_sym_decltype] = ACTIONS(3083), - [anon_sym_virtual] = ACTIONS(3083), - [anon_sym_alignas] = ACTIONS(3083), - [anon_sym_explicit] = ACTIONS(3083), - [anon_sym_typename] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3083), - [anon_sym_operator] = ACTIONS(3083), - [anon_sym_try] = ACTIONS(3083), - [anon_sym_delete] = ACTIONS(3083), - [anon_sym_throw] = ACTIONS(3083), - [anon_sym_namespace] = ACTIONS(3083), - [anon_sym_using] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3083), - [anon_sym_concept] = ACTIONS(3083), - [anon_sym_co_return] = ACTIONS(3083), - [anon_sym_co_yield] = ACTIONS(3083), - [anon_sym_R_DQUOTE] = ACTIONS(3085), - [anon_sym_LR_DQUOTE] = ACTIONS(3085), - [anon_sym_uR_DQUOTE] = ACTIONS(3085), - [anon_sym_UR_DQUOTE] = ACTIONS(3085), - [anon_sym_u8R_DQUOTE] = ACTIONS(3085), - [anon_sym_co_await] = ACTIONS(3083), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_requires] = ACTIONS(3083), - [sym_this] = ACTIONS(3083), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(3870), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1046] = { - [sym_identifier] = ACTIONS(3107), - [aux_sym_preproc_include_token1] = ACTIONS(3107), - [aux_sym_preproc_def_token1] = ACTIONS(3107), - [aux_sym_preproc_if_token1] = ACTIONS(3107), - [aux_sym_preproc_if_token2] = ACTIONS(3107), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3107), - [sym_preproc_directive] = ACTIONS(3107), - [anon_sym_LPAREN2] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3109), - [anon_sym___extension__] = ACTIONS(3107), - [anon_sym_typedef] = ACTIONS(3107), - [anon_sym_extern] = ACTIONS(3107), - [anon_sym___attribute__] = ACTIONS(3107), - [anon_sym_COLON_COLON] = ACTIONS(3109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), - [anon_sym___declspec] = ACTIONS(3107), - [anon_sym___based] = ACTIONS(3107), - [anon_sym___cdecl] = ACTIONS(3107), - [anon_sym___clrcall] = ACTIONS(3107), - [anon_sym___stdcall] = ACTIONS(3107), - [anon_sym___fastcall] = ACTIONS(3107), - [anon_sym___thiscall] = ACTIONS(3107), - [anon_sym___vectorcall] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_signed] = ACTIONS(3107), - [anon_sym_unsigned] = ACTIONS(3107), - [anon_sym_long] = ACTIONS(3107), - [anon_sym_short] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_register] = ACTIONS(3107), - [anon_sym_inline] = ACTIONS(3107), - [anon_sym___inline] = ACTIONS(3107), - [anon_sym___inline__] = ACTIONS(3107), - [anon_sym___forceinline] = ACTIONS(3107), - [anon_sym_thread_local] = ACTIONS(3107), - [anon_sym___thread] = ACTIONS(3107), - [anon_sym_const] = ACTIONS(3107), - [anon_sym_constexpr] = ACTIONS(3107), - [anon_sym_volatile] = ACTIONS(3107), - [anon_sym_restrict] = ACTIONS(3107), - [anon_sym___restrict__] = ACTIONS(3107), - [anon_sym__Atomic] = ACTIONS(3107), - [anon_sym__Noreturn] = ACTIONS(3107), - [anon_sym_noreturn] = ACTIONS(3107), - [anon_sym_mutable] = ACTIONS(3107), - [anon_sym_constinit] = ACTIONS(3107), - [anon_sym_consteval] = ACTIONS(3107), - [sym_primitive_type] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3107), - [anon_sym_union] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3107), - [anon_sym_else] = ACTIONS(3107), - [anon_sym_switch] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_default] = ACTIONS(3107), - [anon_sym_while] = ACTIONS(3107), - [anon_sym_do] = ACTIONS(3107), - [anon_sym_for] = ACTIONS(3107), - [anon_sym_return] = ACTIONS(3107), - [anon_sym_break] = ACTIONS(3107), - [anon_sym_continue] = ACTIONS(3107), - [anon_sym_goto] = ACTIONS(3107), - [anon_sym_not] = ACTIONS(3107), - [anon_sym_compl] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3109), - [anon_sym_sizeof] = ACTIONS(3107), - [anon_sym___alignof__] = ACTIONS(3107), - [anon_sym___alignof] = ACTIONS(3107), - [anon_sym__alignof] = ACTIONS(3107), - [anon_sym_alignof] = ACTIONS(3107), - [anon_sym__Alignof] = ACTIONS(3107), - [anon_sym_offsetof] = ACTIONS(3107), - [anon_sym__Generic] = ACTIONS(3107), - [anon_sym_asm] = ACTIONS(3107), - [anon_sym___asm__] = ACTIONS(3107), - [sym_number_literal] = ACTIONS(3109), - [anon_sym_L_SQUOTE] = ACTIONS(3109), - [anon_sym_u_SQUOTE] = ACTIONS(3109), - [anon_sym_U_SQUOTE] = ACTIONS(3109), - [anon_sym_u8_SQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3109), - [anon_sym_L_DQUOTE] = ACTIONS(3109), - [anon_sym_u_DQUOTE] = ACTIONS(3109), - [anon_sym_U_DQUOTE] = ACTIONS(3109), - [anon_sym_u8_DQUOTE] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(3109), - [sym_true] = ACTIONS(3107), - [sym_false] = ACTIONS(3107), - [anon_sym_NULL] = ACTIONS(3107), - [anon_sym_nullptr] = ACTIONS(3107), + [1108] = { + [sym_expression_statement] = STATE(2600), + [sym__expression] = STATE(4069), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7341), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_type_requirement] = STATE(1109), + [sym_compound_requirement] = STATE(1109), + [sym__requirement] = STATE(1109), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_requirement_seq_repeat1] = STATE(1109), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3878), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3107), - [anon_sym_decltype] = ACTIONS(3107), - [anon_sym_virtual] = ACTIONS(3107), - [anon_sym_alignas] = ACTIONS(3107), - [anon_sym_explicit] = ACTIONS(3107), - [anon_sym_typename] = ACTIONS(3107), - [anon_sym_template] = ACTIONS(3107), - [anon_sym_operator] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(3107), - [anon_sym_delete] = ACTIONS(3107), - [anon_sym_throw] = ACTIONS(3107), - [anon_sym_namespace] = ACTIONS(3107), - [anon_sym_using] = ACTIONS(3107), - [anon_sym_static_assert] = ACTIONS(3107), - [anon_sym_concept] = ACTIONS(3107), - [anon_sym_co_return] = ACTIONS(3107), - [anon_sym_co_yield] = ACTIONS(3107), - [anon_sym_R_DQUOTE] = ACTIONS(3109), - [anon_sym_LR_DQUOTE] = ACTIONS(3109), - [anon_sym_uR_DQUOTE] = ACTIONS(3109), - [anon_sym_UR_DQUOTE] = ACTIONS(3109), - [anon_sym_u8R_DQUOTE] = ACTIONS(3109), - [anon_sym_co_await] = ACTIONS(3107), - [anon_sym_new] = ACTIONS(3107), - [anon_sym_requires] = ACTIONS(3107), - [sym_this] = ACTIONS(3107), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(3870), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1047] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1109] = { + [sym_expression_statement] = STATE(2600), + [sym__expression] = STATE(4069), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7341), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_type_requirement] = STATE(1110), + [sym_compound_requirement] = STATE(1110), + [sym__requirement] = STATE(1110), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_requirement_seq_repeat1] = STATE(1110), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3880), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(3870), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1048] = { - [ts_builtin_sym_end] = ACTIONS(2875), - [sym_identifier] = ACTIONS(2873), - [aux_sym_preproc_include_token1] = ACTIONS(2873), - [aux_sym_preproc_def_token1] = ACTIONS(2873), - [aux_sym_preproc_if_token1] = ACTIONS(2873), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2873), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2873), - [sym_preproc_directive] = ACTIONS(2873), - [anon_sym_LPAREN2] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2875), - [anon_sym_TILDE] = ACTIONS(2875), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_STAR] = ACTIONS(2875), - [anon_sym_AMP_AMP] = ACTIONS(2875), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym___extension__] = ACTIONS(2873), - [anon_sym_typedef] = ACTIONS(2873), - [anon_sym_extern] = ACTIONS(2873), - [anon_sym___attribute__] = ACTIONS(2873), - [anon_sym_COLON_COLON] = ACTIONS(2875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2875), - [anon_sym___declspec] = ACTIONS(2873), - [anon_sym___based] = ACTIONS(2873), - [anon_sym___cdecl] = ACTIONS(2873), - [anon_sym___clrcall] = ACTIONS(2873), - [anon_sym___stdcall] = ACTIONS(2873), - [anon_sym___fastcall] = ACTIONS(2873), - [anon_sym___thiscall] = ACTIONS(2873), - [anon_sym___vectorcall] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2875), - [anon_sym_signed] = ACTIONS(2873), - [anon_sym_unsigned] = ACTIONS(2873), - [anon_sym_long] = ACTIONS(2873), - [anon_sym_short] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_register] = ACTIONS(2873), - [anon_sym_inline] = ACTIONS(2873), - [anon_sym___inline] = ACTIONS(2873), - [anon_sym___inline__] = ACTIONS(2873), - [anon_sym___forceinline] = ACTIONS(2873), - [anon_sym_thread_local] = ACTIONS(2873), - [anon_sym___thread] = ACTIONS(2873), - [anon_sym_const] = ACTIONS(2873), - [anon_sym_constexpr] = ACTIONS(2873), - [anon_sym_volatile] = ACTIONS(2873), - [anon_sym_restrict] = ACTIONS(2873), - [anon_sym___restrict__] = ACTIONS(2873), - [anon_sym__Atomic] = ACTIONS(2873), - [anon_sym__Noreturn] = ACTIONS(2873), - [anon_sym_noreturn] = ACTIONS(2873), - [anon_sym_mutable] = ACTIONS(2873), - [anon_sym_constinit] = ACTIONS(2873), - [anon_sym_consteval] = ACTIONS(2873), - [sym_primitive_type] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2873), - [anon_sym_union] = ACTIONS(2873), - [anon_sym_if] = ACTIONS(2873), - [anon_sym_else] = ACTIONS(2873), - [anon_sym_switch] = ACTIONS(2873), - [anon_sym_case] = ACTIONS(2873), - [anon_sym_default] = ACTIONS(2873), - [anon_sym_while] = ACTIONS(2873), - [anon_sym_do] = ACTIONS(2873), - [anon_sym_for] = ACTIONS(2873), - [anon_sym_return] = ACTIONS(2873), - [anon_sym_break] = ACTIONS(2873), - [anon_sym_continue] = ACTIONS(2873), - [anon_sym_goto] = ACTIONS(2873), - [anon_sym_not] = ACTIONS(2873), - [anon_sym_compl] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2875), - [anon_sym_PLUS_PLUS] = ACTIONS(2875), - [anon_sym_sizeof] = ACTIONS(2873), - [anon_sym___alignof__] = ACTIONS(2873), - [anon_sym___alignof] = ACTIONS(2873), - [anon_sym__alignof] = ACTIONS(2873), - [anon_sym_alignof] = ACTIONS(2873), - [anon_sym__Alignof] = ACTIONS(2873), - [anon_sym_offsetof] = ACTIONS(2873), - [anon_sym__Generic] = ACTIONS(2873), - [anon_sym_asm] = ACTIONS(2873), - [anon_sym___asm__] = ACTIONS(2873), - [sym_number_literal] = ACTIONS(2875), - [anon_sym_L_SQUOTE] = ACTIONS(2875), - [anon_sym_u_SQUOTE] = ACTIONS(2875), - [anon_sym_U_SQUOTE] = ACTIONS(2875), - [anon_sym_u8_SQUOTE] = ACTIONS(2875), - [anon_sym_SQUOTE] = ACTIONS(2875), - [anon_sym_L_DQUOTE] = ACTIONS(2875), - [anon_sym_u_DQUOTE] = ACTIONS(2875), - [anon_sym_U_DQUOTE] = ACTIONS(2875), - [anon_sym_u8_DQUOTE] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [sym_true] = ACTIONS(2873), - [sym_false] = ACTIONS(2873), - [anon_sym_NULL] = ACTIONS(2873), - [anon_sym_nullptr] = ACTIONS(2873), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2873), - [anon_sym_decltype] = ACTIONS(2873), - [anon_sym_virtual] = ACTIONS(2873), - [anon_sym_alignas] = ACTIONS(2873), - [anon_sym_explicit] = ACTIONS(2873), - [anon_sym_typename] = ACTIONS(2873), - [anon_sym_template] = ACTIONS(2873), - [anon_sym_operator] = ACTIONS(2873), - [anon_sym_try] = ACTIONS(2873), - [anon_sym_delete] = ACTIONS(2873), - [anon_sym_throw] = ACTIONS(2873), - [anon_sym_namespace] = ACTIONS(2873), - [anon_sym_using] = ACTIONS(2873), - [anon_sym_static_assert] = ACTIONS(2873), - [anon_sym_concept] = ACTIONS(2873), - [anon_sym_co_return] = ACTIONS(2873), - [anon_sym_co_yield] = ACTIONS(2873), - [anon_sym_R_DQUOTE] = ACTIONS(2875), - [anon_sym_LR_DQUOTE] = ACTIONS(2875), - [anon_sym_uR_DQUOTE] = ACTIONS(2875), - [anon_sym_UR_DQUOTE] = ACTIONS(2875), - [anon_sym_u8R_DQUOTE] = ACTIONS(2875), - [anon_sym_co_await] = ACTIONS(2873), - [anon_sym_new] = ACTIONS(2873), - [anon_sym_requires] = ACTIONS(2873), - [sym_this] = ACTIONS(2873), + [1110] = { + [sym_expression_statement] = STATE(2600), + [sym__expression] = STATE(4069), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7341), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_type_requirement] = STATE(1110), + [sym_compound_requirement] = STATE(1110), + [sym__requirement] = STATE(1110), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_requirement_seq_repeat1] = STATE(1110), + [sym_identifier] = ACTIONS(3882), + [anon_sym_LPAREN2] = ACTIONS(3885), + [anon_sym_BANG] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3891), + [anon_sym_PLUS] = ACTIONS(3891), + [anon_sym_STAR] = ACTIONS(3894), + [anon_sym_AMP] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3900), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_RBRACE] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3908), + [sym_primitive_type] = ACTIONS(3911), + [anon_sym_not] = ACTIONS(3891), + [anon_sym_compl] = ACTIONS(3891), + [anon_sym_DASH_DASH] = ACTIONS(3914), + [anon_sym_PLUS_PLUS] = ACTIONS(3914), + [anon_sym_sizeof] = ACTIONS(3917), + [anon_sym___alignof__] = ACTIONS(3920), + [anon_sym___alignof] = ACTIONS(3920), + [anon_sym__alignof] = ACTIONS(3920), + [anon_sym_alignof] = ACTIONS(3920), + [anon_sym__Alignof] = ACTIONS(3920), + [anon_sym_offsetof] = ACTIONS(3923), + [anon_sym__Generic] = ACTIONS(3926), + [anon_sym_asm] = ACTIONS(3929), + [anon_sym___asm__] = ACTIONS(3929), + [sym_number_literal] = ACTIONS(3932), + [anon_sym_L_SQUOTE] = ACTIONS(3935), + [anon_sym_u_SQUOTE] = ACTIONS(3935), + [anon_sym_U_SQUOTE] = ACTIONS(3935), + [anon_sym_u8_SQUOTE] = ACTIONS(3935), + [anon_sym_SQUOTE] = ACTIONS(3935), + [anon_sym_L_DQUOTE] = ACTIONS(3938), + [anon_sym_u_DQUOTE] = ACTIONS(3938), + [anon_sym_U_DQUOTE] = ACTIONS(3938), + [anon_sym_u8_DQUOTE] = ACTIONS(3938), + [anon_sym_DQUOTE] = ACTIONS(3938), + [sym_true] = ACTIONS(3941), + [sym_false] = ACTIONS(3941), + [anon_sym_NULL] = ACTIONS(3944), + [anon_sym_nullptr] = ACTIONS(3944), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3947), + [anon_sym_typename] = ACTIONS(3950), + [anon_sym_template] = ACTIONS(3953), + [anon_sym_delete] = ACTIONS(3956), + [anon_sym_R_DQUOTE] = ACTIONS(3959), + [anon_sym_LR_DQUOTE] = ACTIONS(3959), + [anon_sym_uR_DQUOTE] = ACTIONS(3959), + [anon_sym_UR_DQUOTE] = ACTIONS(3959), + [anon_sym_u8R_DQUOTE] = ACTIONS(3959), + [anon_sym_co_await] = ACTIONS(3962), + [anon_sym_new] = ACTIONS(3965), + [anon_sym_requires] = ACTIONS(3968), + [sym_this] = ACTIONS(3941), }, - [1049] = { - [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_extern] = ACTIONS(3111), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3111), - [anon_sym_constinit] = ACTIONS(3111), - [anon_sym_consteval] = 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_else] = 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), - [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), + [1111] = { + [sym_expression_statement] = STATE(2600), + [sym__expression] = STATE(4069), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7341), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_type_requirement] = STATE(1110), + [sym_compound_requirement] = STATE(1110), + [sym__requirement] = STATE(1110), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_requirement_seq_repeat1] = STATE(1110), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3971), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3111), - [anon_sym_decltype] = ACTIONS(3111), - [anon_sym_virtual] = ACTIONS(3111), - [anon_sym_alignas] = 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_using] = 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), - }, - [1050] = { - [sym_identifier] = ACTIONS(3073), - [aux_sym_preproc_include_token1] = ACTIONS(3073), - [aux_sym_preproc_def_token1] = ACTIONS(3073), - [aux_sym_preproc_if_token1] = ACTIONS(3073), - [aux_sym_preproc_if_token2] = ACTIONS(3073), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3073), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3073), - [sym_preproc_directive] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3075), - [anon_sym_TILDE] = ACTIONS(3075), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_AMP_AMP] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_SEMI] = ACTIONS(3075), - [anon_sym___extension__] = ACTIONS(3073), - [anon_sym_typedef] = ACTIONS(3073), - [anon_sym_extern] = ACTIONS(3073), - [anon_sym___attribute__] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3075), - [anon_sym___declspec] = ACTIONS(3073), - [anon_sym___based] = ACTIONS(3073), - [anon_sym___cdecl] = ACTIONS(3073), - [anon_sym___clrcall] = ACTIONS(3073), - [anon_sym___stdcall] = ACTIONS(3073), - [anon_sym___fastcall] = ACTIONS(3073), - [anon_sym___thiscall] = ACTIONS(3073), - [anon_sym___vectorcall] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_signed] = ACTIONS(3073), - [anon_sym_unsigned] = ACTIONS(3073), - [anon_sym_long] = ACTIONS(3073), - [anon_sym_short] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_register] = ACTIONS(3073), - [anon_sym_inline] = ACTIONS(3073), - [anon_sym___inline] = ACTIONS(3073), - [anon_sym___inline__] = ACTIONS(3073), - [anon_sym___forceinline] = ACTIONS(3073), - [anon_sym_thread_local] = ACTIONS(3073), - [anon_sym___thread] = ACTIONS(3073), - [anon_sym_const] = ACTIONS(3073), - [anon_sym_constexpr] = ACTIONS(3073), - [anon_sym_volatile] = ACTIONS(3073), - [anon_sym_restrict] = ACTIONS(3073), - [anon_sym___restrict__] = ACTIONS(3073), - [anon_sym__Atomic] = ACTIONS(3073), - [anon_sym__Noreturn] = ACTIONS(3073), - [anon_sym_noreturn] = ACTIONS(3073), - [anon_sym_mutable] = ACTIONS(3073), - [anon_sym_constinit] = ACTIONS(3073), - [anon_sym_consteval] = ACTIONS(3073), - [sym_primitive_type] = ACTIONS(3073), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3073), - [anon_sym_struct] = ACTIONS(3073), - [anon_sym_union] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3073), - [anon_sym_switch] = ACTIONS(3073), - [anon_sym_case] = ACTIONS(3073), - [anon_sym_default] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_break] = ACTIONS(3073), - [anon_sym_continue] = ACTIONS(3073), - [anon_sym_goto] = ACTIONS(3073), - [anon_sym_not] = ACTIONS(3073), - [anon_sym_compl] = ACTIONS(3073), - [anon_sym_DASH_DASH] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(3075), - [anon_sym_sizeof] = ACTIONS(3073), - [anon_sym___alignof__] = ACTIONS(3073), - [anon_sym___alignof] = ACTIONS(3073), - [anon_sym__alignof] = ACTIONS(3073), - [anon_sym_alignof] = ACTIONS(3073), - [anon_sym__Alignof] = ACTIONS(3073), - [anon_sym_offsetof] = ACTIONS(3073), - [anon_sym__Generic] = ACTIONS(3073), - [anon_sym_asm] = ACTIONS(3073), - [anon_sym___asm__] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(3075), - [anon_sym_L_SQUOTE] = ACTIONS(3075), - [anon_sym_u_SQUOTE] = ACTIONS(3075), - [anon_sym_U_SQUOTE] = ACTIONS(3075), - [anon_sym_u8_SQUOTE] = ACTIONS(3075), - [anon_sym_SQUOTE] = ACTIONS(3075), - [anon_sym_L_DQUOTE] = ACTIONS(3075), - [anon_sym_u_DQUOTE] = ACTIONS(3075), - [anon_sym_U_DQUOTE] = ACTIONS(3075), - [anon_sym_u8_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE] = ACTIONS(3075), - [sym_true] = ACTIONS(3073), - [sym_false] = ACTIONS(3073), - [anon_sym_NULL] = ACTIONS(3073), - [anon_sym_nullptr] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3073), - [anon_sym_decltype] = ACTIONS(3073), - [anon_sym_virtual] = ACTIONS(3073), - [anon_sym_alignas] = ACTIONS(3073), - [anon_sym_explicit] = ACTIONS(3073), - [anon_sym_typename] = ACTIONS(3073), - [anon_sym_template] = ACTIONS(3073), - [anon_sym_operator] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_delete] = ACTIONS(3073), - [anon_sym_throw] = ACTIONS(3073), - [anon_sym_namespace] = ACTIONS(3073), - [anon_sym_using] = ACTIONS(3073), - [anon_sym_static_assert] = ACTIONS(3073), - [anon_sym_concept] = ACTIONS(3073), - [anon_sym_co_return] = ACTIONS(3073), - [anon_sym_co_yield] = ACTIONS(3073), - [anon_sym_R_DQUOTE] = ACTIONS(3075), - [anon_sym_LR_DQUOTE] = ACTIONS(3075), - [anon_sym_uR_DQUOTE] = ACTIONS(3075), - [anon_sym_UR_DQUOTE] = ACTIONS(3075), - [anon_sym_u8R_DQUOTE] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3073), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_requires] = ACTIONS(3073), - [sym_this] = ACTIONS(3073), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(3870), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1051] = { - [ts_builtin_sym_end] = ACTIONS(2883), - [sym_identifier] = ACTIONS(2881), - [aux_sym_preproc_include_token1] = ACTIONS(2881), - [aux_sym_preproc_def_token1] = ACTIONS(2881), - [aux_sym_preproc_if_token1] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2881), - [sym_preproc_directive] = ACTIONS(2881), - [anon_sym_LPAREN2] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2881), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym___extension__] = ACTIONS(2881), - [anon_sym_typedef] = ACTIONS(2881), - [anon_sym_extern] = ACTIONS(2881), - [anon_sym___attribute__] = ACTIONS(2881), - [anon_sym_COLON_COLON] = ACTIONS(2883), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2883), - [anon_sym___declspec] = ACTIONS(2881), - [anon_sym___based] = ACTIONS(2881), - [anon_sym___cdecl] = ACTIONS(2881), - [anon_sym___clrcall] = ACTIONS(2881), - [anon_sym___stdcall] = ACTIONS(2881), - [anon_sym___fastcall] = ACTIONS(2881), - [anon_sym___thiscall] = ACTIONS(2881), - [anon_sym___vectorcall] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_signed] = ACTIONS(2881), - [anon_sym_unsigned] = ACTIONS(2881), - [anon_sym_long] = ACTIONS(2881), - [anon_sym_short] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_register] = ACTIONS(2881), - [anon_sym_inline] = ACTIONS(2881), - [anon_sym___inline] = ACTIONS(2881), - [anon_sym___inline__] = ACTIONS(2881), - [anon_sym___forceinline] = ACTIONS(2881), - [anon_sym_thread_local] = ACTIONS(2881), - [anon_sym___thread] = ACTIONS(2881), - [anon_sym_const] = ACTIONS(2881), - [anon_sym_constexpr] = ACTIONS(2881), - [anon_sym_volatile] = ACTIONS(2881), - [anon_sym_restrict] = ACTIONS(2881), - [anon_sym___restrict__] = ACTIONS(2881), - [anon_sym__Atomic] = ACTIONS(2881), - [anon_sym__Noreturn] = ACTIONS(2881), - [anon_sym_noreturn] = ACTIONS(2881), - [anon_sym_mutable] = ACTIONS(2881), - [anon_sym_constinit] = ACTIONS(2881), - [anon_sym_consteval] = ACTIONS(2881), - [sym_primitive_type] = ACTIONS(2881), - [anon_sym_enum] = ACTIONS(2881), - [anon_sym_class] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2881), - [anon_sym_union] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2881), - [anon_sym_else] = ACTIONS(2881), - [anon_sym_switch] = ACTIONS(2881), - [anon_sym_case] = ACTIONS(2881), - [anon_sym_default] = ACTIONS(2881), - [anon_sym_while] = ACTIONS(2881), - [anon_sym_do] = ACTIONS(2881), - [anon_sym_for] = ACTIONS(2881), - [anon_sym_return] = ACTIONS(2881), - [anon_sym_break] = ACTIONS(2881), - [anon_sym_continue] = ACTIONS(2881), - [anon_sym_goto] = ACTIONS(2881), - [anon_sym_not] = ACTIONS(2881), - [anon_sym_compl] = ACTIONS(2881), - [anon_sym_DASH_DASH] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_sizeof] = ACTIONS(2881), - [anon_sym___alignof__] = ACTIONS(2881), - [anon_sym___alignof] = ACTIONS(2881), - [anon_sym__alignof] = ACTIONS(2881), - [anon_sym_alignof] = ACTIONS(2881), - [anon_sym__Alignof] = ACTIONS(2881), - [anon_sym_offsetof] = ACTIONS(2881), - [anon_sym__Generic] = ACTIONS(2881), - [anon_sym_asm] = ACTIONS(2881), - [anon_sym___asm__] = ACTIONS(2881), - [sym_number_literal] = ACTIONS(2883), - [anon_sym_L_SQUOTE] = ACTIONS(2883), - [anon_sym_u_SQUOTE] = ACTIONS(2883), - [anon_sym_U_SQUOTE] = ACTIONS(2883), - [anon_sym_u8_SQUOTE] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2883), - [anon_sym_L_DQUOTE] = ACTIONS(2883), - [anon_sym_u_DQUOTE] = ACTIONS(2883), - [anon_sym_U_DQUOTE] = ACTIONS(2883), - [anon_sym_u8_DQUOTE] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [sym_true] = ACTIONS(2881), - [sym_false] = ACTIONS(2881), - [anon_sym_NULL] = ACTIONS(2881), - [anon_sym_nullptr] = ACTIONS(2881), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2881), - [anon_sym_decltype] = ACTIONS(2881), - [anon_sym_virtual] = ACTIONS(2881), - [anon_sym_alignas] = ACTIONS(2881), - [anon_sym_explicit] = ACTIONS(2881), - [anon_sym_typename] = ACTIONS(2881), - [anon_sym_template] = ACTIONS(2881), - [anon_sym_operator] = ACTIONS(2881), - [anon_sym_try] = ACTIONS(2881), - [anon_sym_delete] = ACTIONS(2881), - [anon_sym_throw] = ACTIONS(2881), - [anon_sym_namespace] = ACTIONS(2881), - [anon_sym_using] = ACTIONS(2881), - [anon_sym_static_assert] = ACTIONS(2881), - [anon_sym_concept] = ACTIONS(2881), - [anon_sym_co_return] = ACTIONS(2881), - [anon_sym_co_yield] = ACTIONS(2881), - [anon_sym_R_DQUOTE] = ACTIONS(2883), - [anon_sym_LR_DQUOTE] = ACTIONS(2883), - [anon_sym_uR_DQUOTE] = ACTIONS(2883), - [anon_sym_UR_DQUOTE] = ACTIONS(2883), - [anon_sym_u8R_DQUOTE] = ACTIONS(2883), - [anon_sym_co_await] = ACTIONS(2881), - [anon_sym_new] = ACTIONS(2881), - [anon_sym_requires] = ACTIONS(2881), - [sym_this] = ACTIONS(2881), + [1112] = { + [sym_expression_statement] = STATE(2600), + [sym__expression] = STATE(4069), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7341), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_type_requirement] = STATE(1113), + [sym_compound_requirement] = STATE(1113), + [sym__requirement] = STATE(1113), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_requirement_seq_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(3870), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1052] = { - [sym_identifier] = ACTIONS(3031), - [aux_sym_preproc_include_token1] = ACTIONS(3031), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token2] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3031), - [sym_preproc_directive] = ACTIONS(3031), - [anon_sym_LPAREN2] = ACTIONS(3033), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym___extension__] = ACTIONS(3031), - [anon_sym_typedef] = ACTIONS(3031), - [anon_sym_extern] = ACTIONS(3031), - [anon_sym___attribute__] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3033), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3033), - [anon_sym___declspec] = ACTIONS(3031), - [anon_sym___based] = ACTIONS(3031), - [anon_sym___cdecl] = ACTIONS(3031), - [anon_sym___clrcall] = ACTIONS(3031), - [anon_sym___stdcall] = ACTIONS(3031), - [anon_sym___fastcall] = ACTIONS(3031), - [anon_sym___thiscall] = ACTIONS(3031), - [anon_sym___vectorcall] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_signed] = ACTIONS(3031), - [anon_sym_unsigned] = ACTIONS(3031), - [anon_sym_long] = ACTIONS(3031), - [anon_sym_short] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_static] = ACTIONS(3031), - [anon_sym_register] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym___inline] = ACTIONS(3031), - [anon_sym___inline__] = ACTIONS(3031), - [anon_sym___forceinline] = ACTIONS(3031), - [anon_sym_thread_local] = ACTIONS(3031), - [anon_sym___thread] = ACTIONS(3031), - [anon_sym_const] = ACTIONS(3031), - [anon_sym_constexpr] = ACTIONS(3031), - [anon_sym_volatile] = ACTIONS(3031), - [anon_sym_restrict] = ACTIONS(3031), - [anon_sym___restrict__] = ACTIONS(3031), - [anon_sym__Atomic] = ACTIONS(3031), - [anon_sym__Noreturn] = ACTIONS(3031), - [anon_sym_noreturn] = ACTIONS(3031), - [anon_sym_mutable] = ACTIONS(3031), - [anon_sym_constinit] = ACTIONS(3031), - [anon_sym_consteval] = ACTIONS(3031), - [sym_primitive_type] = ACTIONS(3031), - [anon_sym_enum] = ACTIONS(3031), - [anon_sym_class] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_union] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_switch] = ACTIONS(3031), - [anon_sym_case] = ACTIONS(3031), - [anon_sym_default] = ACTIONS(3031), - [anon_sym_while] = ACTIONS(3031), - [anon_sym_do] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_goto] = ACTIONS(3031), - [anon_sym_not] = ACTIONS(3031), - [anon_sym_compl] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3033), - [anon_sym_PLUS_PLUS] = ACTIONS(3033), - [anon_sym_sizeof] = ACTIONS(3031), - [anon_sym___alignof__] = ACTIONS(3031), - [anon_sym___alignof] = ACTIONS(3031), - [anon_sym__alignof] = ACTIONS(3031), - [anon_sym_alignof] = ACTIONS(3031), - [anon_sym__Alignof] = ACTIONS(3031), - [anon_sym_offsetof] = ACTIONS(3031), - [anon_sym__Generic] = ACTIONS(3031), - [anon_sym_asm] = ACTIONS(3031), - [anon_sym___asm__] = ACTIONS(3031), - [sym_number_literal] = ACTIONS(3033), - [anon_sym_L_SQUOTE] = ACTIONS(3033), - [anon_sym_u_SQUOTE] = ACTIONS(3033), - [anon_sym_U_SQUOTE] = ACTIONS(3033), - [anon_sym_u8_SQUOTE] = ACTIONS(3033), - [anon_sym_SQUOTE] = ACTIONS(3033), - [anon_sym_L_DQUOTE] = ACTIONS(3033), - [anon_sym_u_DQUOTE] = ACTIONS(3033), - [anon_sym_U_DQUOTE] = ACTIONS(3033), - [anon_sym_u8_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [anon_sym_NULL] = ACTIONS(3031), - [anon_sym_nullptr] = ACTIONS(3031), + [1113] = { + [sym_expression_statement] = STATE(2600), + [sym__expression] = STATE(4069), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7341), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_type_requirement] = STATE(1110), + [sym_compound_requirement] = STATE(1110), + [sym__requirement] = STATE(1110), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_requirement_seq_repeat1] = STATE(1110), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3975), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3031), - [anon_sym_decltype] = ACTIONS(3031), - [anon_sym_virtual] = ACTIONS(3031), - [anon_sym_alignas] = ACTIONS(3031), - [anon_sym_explicit] = ACTIONS(3031), - [anon_sym_typename] = ACTIONS(3031), - [anon_sym_template] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3031), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_throw] = ACTIONS(3031), - [anon_sym_namespace] = ACTIONS(3031), - [anon_sym_using] = ACTIONS(3031), - [anon_sym_static_assert] = ACTIONS(3031), - [anon_sym_concept] = ACTIONS(3031), - [anon_sym_co_return] = ACTIONS(3031), - [anon_sym_co_yield] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3031), - [anon_sym_new] = ACTIONS(3031), - [anon_sym_requires] = ACTIONS(3031), - [sym_this] = ACTIONS(3031), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(3870), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1053] = { - [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_extern] = ACTIONS(3011), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3011), - [anon_sym_constinit] = ACTIONS(3011), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3011), - [anon_sym_alignas] = 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_using] = 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), + [1114] = { + [sym_expression_statement] = STATE(2600), + [sym__expression] = STATE(4069), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7341), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_type_requirement] = STATE(1110), + [sym_compound_requirement] = STATE(1110), + [sym__requirement] = STATE(1110), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_requirement_seq_repeat1] = STATE(1110), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(3870), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1054] = { - [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_extern] = ACTIONS(3003), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3003), - [anon_sym_constinit] = ACTIONS(3003), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3003), - [anon_sym_alignas] = 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_using] = 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), + [1115] = { + [sym_expression_statement] = STATE(2600), + [sym__expression] = STATE(4069), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7341), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_type_requirement] = STATE(1110), + [sym_compound_requirement] = STATE(1110), + [sym__requirement] = STATE(1110), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_requirement_seq_repeat1] = STATE(1110), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3979), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(3870), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1055] = { - [sym_identifier] = ACTIONS(2989), - [aux_sym_preproc_include_token1] = ACTIONS(2989), - [aux_sym_preproc_def_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token2] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), - [sym_preproc_directive] = ACTIONS(2989), - [anon_sym_LPAREN2] = ACTIONS(2991), - [anon_sym_BANG] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym___extension__] = ACTIONS(2989), - [anon_sym_typedef] = ACTIONS(2989), - [anon_sym_extern] = ACTIONS(2989), - [anon_sym___attribute__] = ACTIONS(2989), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), - [anon_sym___declspec] = ACTIONS(2989), - [anon_sym___based] = ACTIONS(2989), - [anon_sym___cdecl] = ACTIONS(2989), - [anon_sym___clrcall] = ACTIONS(2989), - [anon_sym___stdcall] = ACTIONS(2989), - [anon_sym___fastcall] = ACTIONS(2989), - [anon_sym___thiscall] = ACTIONS(2989), - [anon_sym___vectorcall] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_signed] = ACTIONS(2989), - [anon_sym_unsigned] = ACTIONS(2989), - [anon_sym_long] = ACTIONS(2989), - [anon_sym_short] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_register] = ACTIONS(2989), - [anon_sym_inline] = ACTIONS(2989), - [anon_sym___inline] = ACTIONS(2989), - [anon_sym___inline__] = ACTIONS(2989), - [anon_sym___forceinline] = ACTIONS(2989), - [anon_sym_thread_local] = ACTIONS(2989), - [anon_sym___thread] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_constexpr] = ACTIONS(2989), - [anon_sym_volatile] = ACTIONS(2989), - [anon_sym_restrict] = ACTIONS(2989), - [anon_sym___restrict__] = ACTIONS(2989), - [anon_sym__Atomic] = ACTIONS(2989), - [anon_sym__Noreturn] = ACTIONS(2989), - [anon_sym_noreturn] = ACTIONS(2989), - [anon_sym_mutable] = ACTIONS(2989), - [anon_sym_constinit] = ACTIONS(2989), - [anon_sym_consteval] = ACTIONS(2989), - [sym_primitive_type] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_class] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_else] = ACTIONS(2989), - [anon_sym_switch] = ACTIONS(2989), - [anon_sym_case] = ACTIONS(2989), - [anon_sym_default] = ACTIONS(2989), - [anon_sym_while] = ACTIONS(2989), - [anon_sym_do] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_goto] = ACTIONS(2989), - [anon_sym_not] = ACTIONS(2989), - [anon_sym_compl] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_sizeof] = ACTIONS(2989), - [anon_sym___alignof__] = ACTIONS(2989), - [anon_sym___alignof] = ACTIONS(2989), - [anon_sym__alignof] = ACTIONS(2989), - [anon_sym_alignof] = ACTIONS(2989), - [anon_sym__Alignof] = ACTIONS(2989), - [anon_sym_offsetof] = ACTIONS(2989), - [anon_sym__Generic] = ACTIONS(2989), - [anon_sym_asm] = ACTIONS(2989), - [anon_sym___asm__] = ACTIONS(2989), - [sym_number_literal] = ACTIONS(2991), - [anon_sym_L_SQUOTE] = ACTIONS(2991), - [anon_sym_u_SQUOTE] = ACTIONS(2991), - [anon_sym_U_SQUOTE] = ACTIONS(2991), - [anon_sym_u8_SQUOTE] = ACTIONS(2991), - [anon_sym_SQUOTE] = ACTIONS(2991), - [anon_sym_L_DQUOTE] = ACTIONS(2991), - [anon_sym_u_DQUOTE] = ACTIONS(2991), - [anon_sym_U_DQUOTE] = ACTIONS(2991), - [anon_sym_u8_DQUOTE] = ACTIONS(2991), - [anon_sym_DQUOTE] = ACTIONS(2991), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [anon_sym_NULL] = ACTIONS(2989), - [anon_sym_nullptr] = ACTIONS(2989), + [1116] = { + [sym_expression_statement] = STATE(2600), + [sym__expression] = STATE(4069), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7341), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_type_requirement] = STATE(1111), + [sym_compound_requirement] = STATE(1111), + [sym__requirement] = STATE(1111), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_requirement_seq_repeat1] = STATE(1111), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3981), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2989), - [anon_sym_decltype] = ACTIONS(2989), - [anon_sym_virtual] = ACTIONS(2989), - [anon_sym_alignas] = ACTIONS(2989), - [anon_sym_explicit] = ACTIONS(2989), - [anon_sym_typename] = ACTIONS(2989), - [anon_sym_template] = ACTIONS(2989), - [anon_sym_operator] = ACTIONS(2989), - [anon_sym_try] = ACTIONS(2989), - [anon_sym_delete] = ACTIONS(2989), - [anon_sym_throw] = ACTIONS(2989), - [anon_sym_namespace] = ACTIONS(2989), - [anon_sym_using] = ACTIONS(2989), - [anon_sym_static_assert] = ACTIONS(2989), - [anon_sym_concept] = ACTIONS(2989), - [anon_sym_co_return] = ACTIONS(2989), - [anon_sym_co_yield] = ACTIONS(2989), - [anon_sym_R_DQUOTE] = ACTIONS(2991), - [anon_sym_LR_DQUOTE] = ACTIONS(2991), - [anon_sym_uR_DQUOTE] = ACTIONS(2991), - [anon_sym_UR_DQUOTE] = ACTIONS(2991), - [anon_sym_u8R_DQUOTE] = ACTIONS(2991), - [anon_sym_co_await] = ACTIONS(2989), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_requires] = ACTIONS(2989), - [sym_this] = ACTIONS(2989), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(3870), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1056] = { - [ts_builtin_sym_end] = ACTIONS(2893), - [sym_identifier] = ACTIONS(2891), - [aux_sym_preproc_include_token1] = ACTIONS(2891), - [aux_sym_preproc_def_token1] = ACTIONS(2891), - [aux_sym_preproc_if_token1] = ACTIONS(2891), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2891), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2891), - [sym_preproc_directive] = ACTIONS(2891), - [anon_sym_LPAREN2] = ACTIONS(2893), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_TILDE] = ACTIONS(2893), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2893), - [anon_sym_AMP_AMP] = ACTIONS(2893), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(2893), - [anon_sym___extension__] = ACTIONS(2891), - [anon_sym_typedef] = ACTIONS(2891), - [anon_sym_extern] = ACTIONS(2891), - [anon_sym___attribute__] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2893), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2893), - [anon_sym___declspec] = ACTIONS(2891), - [anon_sym___based] = ACTIONS(2891), - [anon_sym___cdecl] = ACTIONS(2891), - [anon_sym___clrcall] = ACTIONS(2891), - [anon_sym___stdcall] = ACTIONS(2891), - [anon_sym___fastcall] = ACTIONS(2891), - [anon_sym___thiscall] = ACTIONS(2891), - [anon_sym___vectorcall] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2893), - [anon_sym_signed] = ACTIONS(2891), - [anon_sym_unsigned] = ACTIONS(2891), - [anon_sym_long] = ACTIONS(2891), - [anon_sym_short] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2891), - [anon_sym_static] = ACTIONS(2891), - [anon_sym_register] = ACTIONS(2891), - [anon_sym_inline] = ACTIONS(2891), - [anon_sym___inline] = ACTIONS(2891), - [anon_sym___inline__] = ACTIONS(2891), - [anon_sym___forceinline] = ACTIONS(2891), - [anon_sym_thread_local] = ACTIONS(2891), - [anon_sym___thread] = ACTIONS(2891), - [anon_sym_const] = ACTIONS(2891), - [anon_sym_constexpr] = ACTIONS(2891), - [anon_sym_volatile] = ACTIONS(2891), - [anon_sym_restrict] = ACTIONS(2891), - [anon_sym___restrict__] = ACTIONS(2891), - [anon_sym__Atomic] = ACTIONS(2891), - [anon_sym__Noreturn] = ACTIONS(2891), - [anon_sym_noreturn] = ACTIONS(2891), - [anon_sym_mutable] = ACTIONS(2891), - [anon_sym_constinit] = ACTIONS(2891), - [anon_sym_consteval] = ACTIONS(2891), - [sym_primitive_type] = ACTIONS(2891), - [anon_sym_enum] = ACTIONS(2891), - [anon_sym_class] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_union] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_else] = ACTIONS(2891), - [anon_sym_switch] = ACTIONS(2891), - [anon_sym_case] = ACTIONS(2891), - [anon_sym_default] = ACTIONS(2891), - [anon_sym_while] = ACTIONS(2891), - [anon_sym_do] = ACTIONS(2891), - [anon_sym_for] = ACTIONS(2891), - [anon_sym_return] = ACTIONS(2891), - [anon_sym_break] = ACTIONS(2891), - [anon_sym_continue] = ACTIONS(2891), - [anon_sym_goto] = ACTIONS(2891), - [anon_sym_not] = ACTIONS(2891), - [anon_sym_compl] = ACTIONS(2891), - [anon_sym_DASH_DASH] = ACTIONS(2893), - [anon_sym_PLUS_PLUS] = ACTIONS(2893), - [anon_sym_sizeof] = ACTIONS(2891), - [anon_sym___alignof__] = ACTIONS(2891), - [anon_sym___alignof] = ACTIONS(2891), - [anon_sym__alignof] = ACTIONS(2891), - [anon_sym_alignof] = ACTIONS(2891), - [anon_sym__Alignof] = ACTIONS(2891), - [anon_sym_offsetof] = ACTIONS(2891), - [anon_sym__Generic] = ACTIONS(2891), - [anon_sym_asm] = ACTIONS(2891), - [anon_sym___asm__] = ACTIONS(2891), - [sym_number_literal] = ACTIONS(2893), - [anon_sym_L_SQUOTE] = ACTIONS(2893), - [anon_sym_u_SQUOTE] = ACTIONS(2893), - [anon_sym_U_SQUOTE] = ACTIONS(2893), - [anon_sym_u8_SQUOTE] = ACTIONS(2893), - [anon_sym_SQUOTE] = ACTIONS(2893), - [anon_sym_L_DQUOTE] = ACTIONS(2893), - [anon_sym_u_DQUOTE] = ACTIONS(2893), - [anon_sym_U_DQUOTE] = ACTIONS(2893), - [anon_sym_u8_DQUOTE] = ACTIONS(2893), - [anon_sym_DQUOTE] = ACTIONS(2893), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [anon_sym_NULL] = ACTIONS(2891), - [anon_sym_nullptr] = ACTIONS(2891), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2891), - [anon_sym_decltype] = ACTIONS(2891), - [anon_sym_virtual] = ACTIONS(2891), - [anon_sym_alignas] = ACTIONS(2891), - [anon_sym_explicit] = ACTIONS(2891), - [anon_sym_typename] = ACTIONS(2891), - [anon_sym_template] = ACTIONS(2891), - [anon_sym_operator] = ACTIONS(2891), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_delete] = ACTIONS(2891), - [anon_sym_throw] = ACTIONS(2891), - [anon_sym_namespace] = ACTIONS(2891), - [anon_sym_using] = ACTIONS(2891), - [anon_sym_static_assert] = ACTIONS(2891), - [anon_sym_concept] = ACTIONS(2891), - [anon_sym_co_return] = ACTIONS(2891), - [anon_sym_co_yield] = ACTIONS(2891), - [anon_sym_R_DQUOTE] = ACTIONS(2893), - [anon_sym_LR_DQUOTE] = ACTIONS(2893), - [anon_sym_uR_DQUOTE] = ACTIONS(2893), - [anon_sym_UR_DQUOTE] = ACTIONS(2893), - [anon_sym_u8R_DQUOTE] = ACTIONS(2893), - [anon_sym_co_await] = ACTIONS(2891), - [anon_sym_new] = ACTIONS(2891), - [anon_sym_requires] = ACTIONS(2891), - [sym_this] = ACTIONS(2891), + [1117] = { + [sym_expression_statement] = STATE(2600), + [sym__expression] = STATE(4069), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7341), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_type_requirement] = STATE(1115), + [sym_compound_requirement] = STATE(1115), + [sym__requirement] = STATE(1115), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_requirement_seq_repeat1] = STATE(1115), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3983), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(3870), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1057] = { - [sym_identifier] = ACTIONS(2977), - [aux_sym_preproc_include_token1] = ACTIONS(2977), - [aux_sym_preproc_def_token1] = ACTIONS(2977), - [aux_sym_preproc_if_token1] = ACTIONS(2977), - [aux_sym_preproc_if_token2] = ACTIONS(2977), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2977), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2977), - [sym_preproc_directive] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2979), - [anon_sym_BANG] = ACTIONS(2979), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym___extension__] = ACTIONS(2977), - [anon_sym_typedef] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym___attribute__] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2979), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), - [anon_sym___declspec] = ACTIONS(2977), - [anon_sym___based] = ACTIONS(2977), - [anon_sym___cdecl] = ACTIONS(2977), - [anon_sym___clrcall] = ACTIONS(2977), - [anon_sym___stdcall] = ACTIONS(2977), - [anon_sym___fastcall] = ACTIONS(2977), - [anon_sym___thiscall] = ACTIONS(2977), - [anon_sym___vectorcall] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_signed] = ACTIONS(2977), - [anon_sym_unsigned] = ACTIONS(2977), - [anon_sym_long] = ACTIONS(2977), - [anon_sym_short] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_static] = ACTIONS(2977), - [anon_sym_register] = ACTIONS(2977), - [anon_sym_inline] = ACTIONS(2977), - [anon_sym___inline] = ACTIONS(2977), - [anon_sym___inline__] = ACTIONS(2977), - [anon_sym___forceinline] = ACTIONS(2977), - [anon_sym_thread_local] = ACTIONS(2977), - [anon_sym___thread] = ACTIONS(2977), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_constexpr] = ACTIONS(2977), - [anon_sym_volatile] = ACTIONS(2977), - [anon_sym_restrict] = ACTIONS(2977), - [anon_sym___restrict__] = ACTIONS(2977), - [anon_sym__Atomic] = ACTIONS(2977), - [anon_sym__Noreturn] = ACTIONS(2977), - [anon_sym_noreturn] = ACTIONS(2977), - [anon_sym_mutable] = ACTIONS(2977), - [anon_sym_constinit] = ACTIONS(2977), - [anon_sym_consteval] = ACTIONS(2977), - [sym_primitive_type] = ACTIONS(2977), - [anon_sym_enum] = ACTIONS(2977), - [anon_sym_class] = ACTIONS(2977), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_union] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_else] = ACTIONS(2977), - [anon_sym_switch] = ACTIONS(2977), - [anon_sym_case] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_break] = ACTIONS(2977), - [anon_sym_continue] = ACTIONS(2977), - [anon_sym_goto] = ACTIONS(2977), - [anon_sym_not] = ACTIONS(2977), - [anon_sym_compl] = ACTIONS(2977), - [anon_sym_DASH_DASH] = ACTIONS(2979), - [anon_sym_PLUS_PLUS] = ACTIONS(2979), - [anon_sym_sizeof] = ACTIONS(2977), - [anon_sym___alignof__] = ACTIONS(2977), - [anon_sym___alignof] = ACTIONS(2977), - [anon_sym__alignof] = ACTIONS(2977), - [anon_sym_alignof] = ACTIONS(2977), - [anon_sym__Alignof] = ACTIONS(2977), - [anon_sym_offsetof] = ACTIONS(2977), - [anon_sym__Generic] = ACTIONS(2977), - [anon_sym_asm] = ACTIONS(2977), - [anon_sym___asm__] = ACTIONS(2977), - [sym_number_literal] = ACTIONS(2979), - [anon_sym_L_SQUOTE] = ACTIONS(2979), - [anon_sym_u_SQUOTE] = ACTIONS(2979), - [anon_sym_U_SQUOTE] = ACTIONS(2979), - [anon_sym_u8_SQUOTE] = ACTIONS(2979), - [anon_sym_SQUOTE] = ACTIONS(2979), - [anon_sym_L_DQUOTE] = ACTIONS(2979), - [anon_sym_u_DQUOTE] = ACTIONS(2979), - [anon_sym_U_DQUOTE] = ACTIONS(2979), - [anon_sym_u8_DQUOTE] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym_true] = ACTIONS(2977), - [sym_false] = ACTIONS(2977), - [anon_sym_NULL] = ACTIONS(2977), - [anon_sym_nullptr] = ACTIONS(2977), + [1118] = { + [sym_expression_statement] = STATE(2600), + [sym__expression] = STATE(4069), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7341), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_type_requirement] = STATE(1106), + [sym_compound_requirement] = STATE(1106), + [sym__requirement] = STATE(1106), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_requirement_seq_repeat1] = STATE(1106), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2977), - [anon_sym_decltype] = ACTIONS(2977), - [anon_sym_virtual] = ACTIONS(2977), - [anon_sym_alignas] = ACTIONS(2977), - [anon_sym_explicit] = ACTIONS(2977), - [anon_sym_typename] = ACTIONS(2977), - [anon_sym_template] = ACTIONS(2977), - [anon_sym_operator] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_delete] = ACTIONS(2977), - [anon_sym_throw] = ACTIONS(2977), - [anon_sym_namespace] = ACTIONS(2977), - [anon_sym_using] = ACTIONS(2977), - [anon_sym_static_assert] = ACTIONS(2977), - [anon_sym_concept] = ACTIONS(2977), - [anon_sym_co_return] = ACTIONS(2977), - [anon_sym_co_yield] = ACTIONS(2977), - [anon_sym_R_DQUOTE] = ACTIONS(2979), - [anon_sym_LR_DQUOTE] = ACTIONS(2979), - [anon_sym_uR_DQUOTE] = ACTIONS(2979), - [anon_sym_UR_DQUOTE] = ACTIONS(2979), - [anon_sym_u8R_DQUOTE] = ACTIONS(2979), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_requires] = ACTIONS(2977), - [sym_this] = ACTIONS(2977), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(3870), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1058] = { - [sym_identifier] = ACTIONS(2965), - [aux_sym_preproc_include_token1] = ACTIONS(2965), - [aux_sym_preproc_def_token1] = ACTIONS(2965), - [aux_sym_preproc_if_token1] = ACTIONS(2965), - [aux_sym_preproc_if_token2] = ACTIONS(2965), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), - [sym_preproc_directive] = ACTIONS(2965), - [anon_sym_LPAREN2] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_AMP_AMP] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym___extension__] = ACTIONS(2965), - [anon_sym_typedef] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2965), - [anon_sym___attribute__] = ACTIONS(2965), - [anon_sym_COLON_COLON] = ACTIONS(2967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), - [anon_sym___declspec] = ACTIONS(2965), - [anon_sym___based] = ACTIONS(2965), - [anon_sym___cdecl] = ACTIONS(2965), - [anon_sym___clrcall] = ACTIONS(2965), - [anon_sym___stdcall] = ACTIONS(2965), - [anon_sym___fastcall] = ACTIONS(2965), - [anon_sym___thiscall] = ACTIONS(2965), - [anon_sym___vectorcall] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_signed] = ACTIONS(2965), - [anon_sym_unsigned] = ACTIONS(2965), - [anon_sym_long] = ACTIONS(2965), - [anon_sym_short] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2965), - [anon_sym_static] = ACTIONS(2965), - [anon_sym_register] = ACTIONS(2965), - [anon_sym_inline] = ACTIONS(2965), - [anon_sym___inline] = ACTIONS(2965), - [anon_sym___inline__] = ACTIONS(2965), - [anon_sym___forceinline] = ACTIONS(2965), - [anon_sym_thread_local] = ACTIONS(2965), - [anon_sym___thread] = ACTIONS(2965), - [anon_sym_const] = ACTIONS(2965), - [anon_sym_constexpr] = ACTIONS(2965), - [anon_sym_volatile] = ACTIONS(2965), - [anon_sym_restrict] = ACTIONS(2965), - [anon_sym___restrict__] = ACTIONS(2965), - [anon_sym__Atomic] = ACTIONS(2965), - [anon_sym__Noreturn] = ACTIONS(2965), - [anon_sym_noreturn] = ACTIONS(2965), - [anon_sym_mutable] = ACTIONS(2965), - [anon_sym_constinit] = ACTIONS(2965), - [anon_sym_consteval] = ACTIONS(2965), - [sym_primitive_type] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2965), - [anon_sym_class] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_union] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_else] = ACTIONS(2965), - [anon_sym_switch] = ACTIONS(2965), - [anon_sym_case] = ACTIONS(2965), - [anon_sym_default] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2965), - [anon_sym_do] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2965), - [anon_sym_return] = ACTIONS(2965), - [anon_sym_break] = ACTIONS(2965), - [anon_sym_continue] = ACTIONS(2965), - [anon_sym_goto] = ACTIONS(2965), - [anon_sym_not] = ACTIONS(2965), - [anon_sym_compl] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_sizeof] = ACTIONS(2965), - [anon_sym___alignof__] = ACTIONS(2965), - [anon_sym___alignof] = ACTIONS(2965), - [anon_sym__alignof] = ACTIONS(2965), - [anon_sym_alignof] = ACTIONS(2965), - [anon_sym__Alignof] = ACTIONS(2965), - [anon_sym_offsetof] = ACTIONS(2965), - [anon_sym__Generic] = ACTIONS(2965), - [anon_sym_asm] = ACTIONS(2965), - [anon_sym___asm__] = ACTIONS(2965), - [sym_number_literal] = ACTIONS(2967), - [anon_sym_L_SQUOTE] = ACTIONS(2967), - [anon_sym_u_SQUOTE] = ACTIONS(2967), - [anon_sym_U_SQUOTE] = ACTIONS(2967), - [anon_sym_u8_SQUOTE] = ACTIONS(2967), - [anon_sym_SQUOTE] = ACTIONS(2967), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [anon_sym_NULL] = ACTIONS(2965), - [anon_sym_nullptr] = ACTIONS(2965), + [1119] = { + [sym_expression_statement] = STATE(2600), + [sym__expression] = STATE(4069), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7341), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_type_requirement] = STATE(1114), + [sym_compound_requirement] = STATE(1114), + [sym__requirement] = STATE(1114), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_requirement_seq_repeat1] = STATE(1114), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3987), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2965), - [anon_sym_decltype] = ACTIONS(2965), - [anon_sym_virtual] = ACTIONS(2965), - [anon_sym_alignas] = ACTIONS(2965), - [anon_sym_explicit] = ACTIONS(2965), - [anon_sym_typename] = ACTIONS(2965), - [anon_sym_template] = ACTIONS(2965), - [anon_sym_operator] = ACTIONS(2965), - [anon_sym_try] = ACTIONS(2965), - [anon_sym_delete] = ACTIONS(2965), - [anon_sym_throw] = ACTIONS(2965), - [anon_sym_namespace] = ACTIONS(2965), - [anon_sym_using] = ACTIONS(2965), - [anon_sym_static_assert] = ACTIONS(2965), - [anon_sym_concept] = ACTIONS(2965), - [anon_sym_co_return] = ACTIONS(2965), - [anon_sym_co_yield] = ACTIONS(2965), - [anon_sym_R_DQUOTE] = ACTIONS(2967), - [anon_sym_LR_DQUOTE] = ACTIONS(2967), - [anon_sym_uR_DQUOTE] = ACTIONS(2967), - [anon_sym_UR_DQUOTE] = ACTIONS(2967), - [anon_sym_u8R_DQUOTE] = ACTIONS(2967), - [anon_sym_co_await] = ACTIONS(2965), - [anon_sym_new] = ACTIONS(2965), - [anon_sym_requires] = ACTIONS(2965), - [sym_this] = ACTIONS(2965), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(3870), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1059] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1120] = { + [sym_expression_statement] = STATE(2600), + [sym__expression] = STATE(4069), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7341), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_type_requirement] = STATE(1104), + [sym_compound_requirement] = STATE(1104), + [sym__requirement] = STATE(1104), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_requirement_seq_repeat1] = STATE(1104), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3989), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(3870), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1060] = { - [ts_builtin_sym_end] = ACTIONS(2991), - [sym_identifier] = ACTIONS(2989), - [aux_sym_preproc_include_token1] = ACTIONS(2989), - [aux_sym_preproc_def_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token1] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), - [sym_preproc_directive] = ACTIONS(2989), - [anon_sym_LPAREN2] = ACTIONS(2991), - [anon_sym_BANG] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym___extension__] = ACTIONS(2989), - [anon_sym_typedef] = ACTIONS(2989), - [anon_sym_extern] = ACTIONS(2989), - [anon_sym___attribute__] = ACTIONS(2989), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), - [anon_sym___declspec] = ACTIONS(2989), - [anon_sym___based] = ACTIONS(2989), - [anon_sym___cdecl] = ACTIONS(2989), - [anon_sym___clrcall] = ACTIONS(2989), - [anon_sym___stdcall] = ACTIONS(2989), - [anon_sym___fastcall] = ACTIONS(2989), - [anon_sym___thiscall] = ACTIONS(2989), - [anon_sym___vectorcall] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_signed] = ACTIONS(2989), - [anon_sym_unsigned] = ACTIONS(2989), - [anon_sym_long] = ACTIONS(2989), - [anon_sym_short] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_register] = ACTIONS(2989), - [anon_sym_inline] = ACTIONS(2989), - [anon_sym___inline] = ACTIONS(2989), - [anon_sym___inline__] = ACTIONS(2989), - [anon_sym___forceinline] = ACTIONS(2989), - [anon_sym_thread_local] = ACTIONS(2989), - [anon_sym___thread] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_constexpr] = ACTIONS(2989), - [anon_sym_volatile] = ACTIONS(2989), - [anon_sym_restrict] = ACTIONS(2989), - [anon_sym___restrict__] = ACTIONS(2989), - [anon_sym__Atomic] = ACTIONS(2989), - [anon_sym__Noreturn] = ACTIONS(2989), - [anon_sym_noreturn] = ACTIONS(2989), - [anon_sym_mutable] = ACTIONS(2989), - [anon_sym_constinit] = ACTIONS(2989), - [anon_sym_consteval] = ACTIONS(2989), - [sym_primitive_type] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_class] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_else] = ACTIONS(2989), - [anon_sym_switch] = ACTIONS(2989), - [anon_sym_case] = ACTIONS(2989), - [anon_sym_default] = ACTIONS(2989), - [anon_sym_while] = ACTIONS(2989), - [anon_sym_do] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_goto] = ACTIONS(2989), - [anon_sym_not] = ACTIONS(2989), - [anon_sym_compl] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_sizeof] = ACTIONS(2989), - [anon_sym___alignof__] = ACTIONS(2989), - [anon_sym___alignof] = ACTIONS(2989), - [anon_sym__alignof] = ACTIONS(2989), - [anon_sym_alignof] = ACTIONS(2989), - [anon_sym__Alignof] = ACTIONS(2989), - [anon_sym_offsetof] = ACTIONS(2989), - [anon_sym__Generic] = ACTIONS(2989), - [anon_sym_asm] = ACTIONS(2989), - [anon_sym___asm__] = ACTIONS(2989), - [sym_number_literal] = ACTIONS(2991), - [anon_sym_L_SQUOTE] = ACTIONS(2991), - [anon_sym_u_SQUOTE] = ACTIONS(2991), - [anon_sym_U_SQUOTE] = ACTIONS(2991), - [anon_sym_u8_SQUOTE] = ACTIONS(2991), - [anon_sym_SQUOTE] = ACTIONS(2991), - [anon_sym_L_DQUOTE] = ACTIONS(2991), - [anon_sym_u_DQUOTE] = ACTIONS(2991), - [anon_sym_U_DQUOTE] = ACTIONS(2991), - [anon_sym_u8_DQUOTE] = ACTIONS(2991), - [anon_sym_DQUOTE] = ACTIONS(2991), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [anon_sym_NULL] = ACTIONS(2989), - [anon_sym_nullptr] = ACTIONS(2989), + [1121] = { + [sym_expression_statement] = STATE(2600), + [sym__expression] = STATE(4069), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7341), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_type_requirement] = STATE(1110), + [sym_compound_requirement] = STATE(1110), + [sym__requirement] = STATE(1110), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_requirement_seq_repeat1] = STATE(1110), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2989), - [anon_sym_decltype] = ACTIONS(2989), - [anon_sym_virtual] = ACTIONS(2989), - [anon_sym_alignas] = ACTIONS(2989), - [anon_sym_explicit] = ACTIONS(2989), - [anon_sym_typename] = ACTIONS(2989), - [anon_sym_template] = ACTIONS(2989), - [anon_sym_operator] = ACTIONS(2989), - [anon_sym_try] = ACTIONS(2989), - [anon_sym_delete] = ACTIONS(2989), - [anon_sym_throw] = ACTIONS(2989), - [anon_sym_namespace] = ACTIONS(2989), - [anon_sym_using] = ACTIONS(2989), - [anon_sym_static_assert] = ACTIONS(2989), - [anon_sym_concept] = ACTIONS(2989), - [anon_sym_co_return] = ACTIONS(2989), - [anon_sym_co_yield] = ACTIONS(2989), - [anon_sym_R_DQUOTE] = ACTIONS(2991), - [anon_sym_LR_DQUOTE] = ACTIONS(2991), - [anon_sym_uR_DQUOTE] = ACTIONS(2991), - [anon_sym_UR_DQUOTE] = ACTIONS(2991), - [anon_sym_u8R_DQUOTE] = ACTIONS(2991), - [anon_sym_co_await] = ACTIONS(2989), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_requires] = ACTIONS(2989), - [sym_this] = ACTIONS(2989), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(3870), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1061] = { - [ts_builtin_sym_end] = ACTIONS(3085), - [sym_identifier] = ACTIONS(3083), - [aux_sym_preproc_include_token1] = ACTIONS(3083), - [aux_sym_preproc_def_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token1] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), - [sym_preproc_directive] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym___extension__] = ACTIONS(3083), - [anon_sym_typedef] = ACTIONS(3083), - [anon_sym_extern] = ACTIONS(3083), - [anon_sym___attribute__] = ACTIONS(3083), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), - [anon_sym___declspec] = ACTIONS(3083), - [anon_sym___based] = ACTIONS(3083), - [anon_sym___cdecl] = ACTIONS(3083), - [anon_sym___clrcall] = ACTIONS(3083), - [anon_sym___stdcall] = ACTIONS(3083), - [anon_sym___fastcall] = ACTIONS(3083), - [anon_sym___thiscall] = ACTIONS(3083), - [anon_sym___vectorcall] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_signed] = ACTIONS(3083), - [anon_sym_unsigned] = ACTIONS(3083), - [anon_sym_long] = ACTIONS(3083), - [anon_sym_short] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_static] = ACTIONS(3083), - [anon_sym_register] = ACTIONS(3083), - [anon_sym_inline] = ACTIONS(3083), - [anon_sym___inline] = ACTIONS(3083), - [anon_sym___inline__] = ACTIONS(3083), - [anon_sym___forceinline] = ACTIONS(3083), - [anon_sym_thread_local] = ACTIONS(3083), - [anon_sym___thread] = ACTIONS(3083), - [anon_sym_const] = ACTIONS(3083), - [anon_sym_constexpr] = ACTIONS(3083), - [anon_sym_volatile] = ACTIONS(3083), - [anon_sym_restrict] = ACTIONS(3083), - [anon_sym___restrict__] = ACTIONS(3083), - [anon_sym__Atomic] = ACTIONS(3083), - [anon_sym__Noreturn] = ACTIONS(3083), - [anon_sym_noreturn] = ACTIONS(3083), - [anon_sym_mutable] = ACTIONS(3083), - [anon_sym_constinit] = ACTIONS(3083), - [anon_sym_consteval] = ACTIONS(3083), - [sym_primitive_type] = ACTIONS(3083), - [anon_sym_enum] = ACTIONS(3083), - [anon_sym_class] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_else] = ACTIONS(3083), - [anon_sym_switch] = ACTIONS(3083), - [anon_sym_case] = ACTIONS(3083), - [anon_sym_default] = ACTIONS(3083), - [anon_sym_while] = ACTIONS(3083), - [anon_sym_do] = ACTIONS(3083), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_break] = ACTIONS(3083), - [anon_sym_continue] = ACTIONS(3083), - [anon_sym_goto] = ACTIONS(3083), - [anon_sym_not] = ACTIONS(3083), - [anon_sym_compl] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3083), - [anon_sym___alignof__] = ACTIONS(3083), - [anon_sym___alignof] = ACTIONS(3083), - [anon_sym__alignof] = ACTIONS(3083), - [anon_sym_alignof] = ACTIONS(3083), - [anon_sym__Alignof] = ACTIONS(3083), - [anon_sym_offsetof] = ACTIONS(3083), - [anon_sym__Generic] = ACTIONS(3083), - [anon_sym_asm] = ACTIONS(3083), - [anon_sym___asm__] = ACTIONS(3083), - [sym_number_literal] = ACTIONS(3085), - [anon_sym_L_SQUOTE] = ACTIONS(3085), - [anon_sym_u_SQUOTE] = ACTIONS(3085), - [anon_sym_U_SQUOTE] = ACTIONS(3085), - [anon_sym_u8_SQUOTE] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3085), - [anon_sym_L_DQUOTE] = ACTIONS(3085), - [anon_sym_u_DQUOTE] = ACTIONS(3085), - [anon_sym_U_DQUOTE] = ACTIONS(3085), - [anon_sym_u8_DQUOTE] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(3085), - [sym_true] = ACTIONS(3083), - [sym_false] = ACTIONS(3083), - [anon_sym_NULL] = ACTIONS(3083), - [anon_sym_nullptr] = ACTIONS(3083), + [1122] = { + [sym_expression_statement] = STATE(2600), + [sym__expression] = STATE(4069), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7341), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_type_requirement] = STATE(1121), + [sym_compound_requirement] = STATE(1121), + [sym__requirement] = STATE(1121), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_requirement_seq_repeat1] = STATE(1121), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3993), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3083), - [anon_sym_decltype] = ACTIONS(3083), - [anon_sym_virtual] = ACTIONS(3083), - [anon_sym_alignas] = ACTIONS(3083), - [anon_sym_explicit] = ACTIONS(3083), - [anon_sym_typename] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3083), - [anon_sym_operator] = ACTIONS(3083), - [anon_sym_try] = ACTIONS(3083), - [anon_sym_delete] = ACTIONS(3083), - [anon_sym_throw] = ACTIONS(3083), - [anon_sym_namespace] = ACTIONS(3083), - [anon_sym_using] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3083), - [anon_sym_concept] = ACTIONS(3083), - [anon_sym_co_return] = ACTIONS(3083), - [anon_sym_co_yield] = ACTIONS(3083), - [anon_sym_R_DQUOTE] = ACTIONS(3085), - [anon_sym_LR_DQUOTE] = ACTIONS(3085), - [anon_sym_uR_DQUOTE] = ACTIONS(3085), - [anon_sym_UR_DQUOTE] = ACTIONS(3085), - [anon_sym_u8R_DQUOTE] = ACTIONS(3085), - [anon_sym_co_await] = ACTIONS(3083), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_requires] = ACTIONS(3083), - [sym_this] = ACTIONS(3083), - }, - [1062] = { - [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_extern] = ACTIONS(3015), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3015), - [anon_sym_constinit] = ACTIONS(3015), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3015), - [anon_sym_alignas] = 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_using] = 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), - }, - [1063] = { - [sym_identifier] = ACTIONS(2869), - [aux_sym_preproc_include_token1] = ACTIONS(2869), - [aux_sym_preproc_def_token1] = ACTIONS(2869), - [aux_sym_preproc_if_token1] = ACTIONS(2869), - [aux_sym_preproc_if_token2] = ACTIONS(2869), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2869), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2869), - [sym_preproc_directive] = ACTIONS(2869), - [anon_sym_LPAREN2] = ACTIONS(2871), - [anon_sym_BANG] = ACTIONS(2871), - [anon_sym_TILDE] = ACTIONS(2871), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2871), - [anon_sym_AMP_AMP] = ACTIONS(2871), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym___extension__] = ACTIONS(2869), - [anon_sym_typedef] = ACTIONS(2869), - [anon_sym_extern] = ACTIONS(2869), - [anon_sym___attribute__] = ACTIONS(2869), - [anon_sym_COLON_COLON] = ACTIONS(2871), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2871), - [anon_sym___declspec] = ACTIONS(2869), - [anon_sym___based] = ACTIONS(2869), - [anon_sym___cdecl] = ACTIONS(2869), - [anon_sym___clrcall] = ACTIONS(2869), - [anon_sym___stdcall] = ACTIONS(2869), - [anon_sym___fastcall] = ACTIONS(2869), - [anon_sym___thiscall] = ACTIONS(2869), - [anon_sym___vectorcall] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_signed] = ACTIONS(2869), - [anon_sym_unsigned] = ACTIONS(2869), - [anon_sym_long] = ACTIONS(2869), - [anon_sym_short] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_static] = ACTIONS(2869), - [anon_sym_register] = ACTIONS(2869), - [anon_sym_inline] = ACTIONS(2869), - [anon_sym___inline] = ACTIONS(2869), - [anon_sym___inline__] = ACTIONS(2869), - [anon_sym___forceinline] = ACTIONS(2869), - [anon_sym_thread_local] = ACTIONS(2869), - [anon_sym___thread] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2869), - [anon_sym_constexpr] = ACTIONS(2869), - [anon_sym_volatile] = ACTIONS(2869), - [anon_sym_restrict] = ACTIONS(2869), - [anon_sym___restrict__] = ACTIONS(2869), - [anon_sym__Atomic] = ACTIONS(2869), - [anon_sym__Noreturn] = ACTIONS(2869), - [anon_sym_noreturn] = ACTIONS(2869), - [anon_sym_mutable] = ACTIONS(2869), - [anon_sym_constinit] = ACTIONS(2869), - [anon_sym_consteval] = ACTIONS(2869), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2869), - [anon_sym_class] = ACTIONS(2869), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_union] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_else] = ACTIONS(2869), - [anon_sym_switch] = ACTIONS(2869), - [anon_sym_case] = ACTIONS(2869), - [anon_sym_default] = ACTIONS(2869), - [anon_sym_while] = ACTIONS(2869), - [anon_sym_do] = ACTIONS(2869), - [anon_sym_for] = ACTIONS(2869), - [anon_sym_return] = ACTIONS(2869), - [anon_sym_break] = ACTIONS(2869), - [anon_sym_continue] = ACTIONS(2869), - [anon_sym_goto] = ACTIONS(2869), - [anon_sym_not] = ACTIONS(2869), - [anon_sym_compl] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2871), - [anon_sym_PLUS_PLUS] = ACTIONS(2871), - [anon_sym_sizeof] = ACTIONS(2869), - [anon_sym___alignof__] = ACTIONS(2869), - [anon_sym___alignof] = ACTIONS(2869), - [anon_sym__alignof] = ACTIONS(2869), - [anon_sym_alignof] = ACTIONS(2869), - [anon_sym__Alignof] = ACTIONS(2869), - [anon_sym_offsetof] = ACTIONS(2869), - [anon_sym__Generic] = ACTIONS(2869), - [anon_sym_asm] = ACTIONS(2869), - [anon_sym___asm__] = ACTIONS(2869), - [sym_number_literal] = ACTIONS(2871), - [anon_sym_L_SQUOTE] = ACTIONS(2871), - [anon_sym_u_SQUOTE] = ACTIONS(2871), - [anon_sym_U_SQUOTE] = ACTIONS(2871), - [anon_sym_u8_SQUOTE] = ACTIONS(2871), - [anon_sym_SQUOTE] = ACTIONS(2871), - [anon_sym_L_DQUOTE] = ACTIONS(2871), - [anon_sym_u_DQUOTE] = ACTIONS(2871), - [anon_sym_U_DQUOTE] = ACTIONS(2871), - [anon_sym_u8_DQUOTE] = ACTIONS(2871), - [anon_sym_DQUOTE] = ACTIONS(2871), - [sym_true] = ACTIONS(2869), - [sym_false] = ACTIONS(2869), - [anon_sym_NULL] = ACTIONS(2869), - [anon_sym_nullptr] = ACTIONS(2869), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2869), - [anon_sym_decltype] = ACTIONS(2869), - [anon_sym_virtual] = ACTIONS(2869), - [anon_sym_alignas] = ACTIONS(2869), - [anon_sym_explicit] = ACTIONS(2869), - [anon_sym_typename] = ACTIONS(2869), - [anon_sym_template] = ACTIONS(2869), - [anon_sym_operator] = ACTIONS(2869), - [anon_sym_try] = ACTIONS(2869), - [anon_sym_delete] = ACTIONS(2869), - [anon_sym_throw] = ACTIONS(2869), - [anon_sym_namespace] = ACTIONS(2869), - [anon_sym_using] = ACTIONS(2869), - [anon_sym_static_assert] = ACTIONS(2869), - [anon_sym_concept] = ACTIONS(2869), - [anon_sym_co_return] = ACTIONS(2869), - [anon_sym_co_yield] = ACTIONS(2869), - [anon_sym_R_DQUOTE] = ACTIONS(2871), - [anon_sym_LR_DQUOTE] = ACTIONS(2871), - [anon_sym_uR_DQUOTE] = ACTIONS(2871), - [anon_sym_UR_DQUOTE] = ACTIONS(2871), - [anon_sym_u8R_DQUOTE] = ACTIONS(2871), - [anon_sym_co_await] = ACTIONS(2869), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2869), - [sym_this] = ACTIONS(2869), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(3870), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1064] = { - [sym_identifier] = ACTIONS(2873), - [aux_sym_preproc_include_token1] = ACTIONS(2873), - [aux_sym_preproc_def_token1] = ACTIONS(2873), - [aux_sym_preproc_if_token1] = ACTIONS(2873), - [aux_sym_preproc_if_token2] = ACTIONS(2873), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2873), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2873), - [sym_preproc_directive] = ACTIONS(2873), - [anon_sym_LPAREN2] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2875), - [anon_sym_TILDE] = ACTIONS(2875), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_STAR] = ACTIONS(2875), - [anon_sym_AMP_AMP] = ACTIONS(2875), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym___extension__] = ACTIONS(2873), - [anon_sym_typedef] = ACTIONS(2873), - [anon_sym_extern] = ACTIONS(2873), - [anon_sym___attribute__] = ACTIONS(2873), - [anon_sym_COLON_COLON] = ACTIONS(2875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2875), - [anon_sym___declspec] = ACTIONS(2873), - [anon_sym___based] = ACTIONS(2873), - [anon_sym___cdecl] = ACTIONS(2873), - [anon_sym___clrcall] = ACTIONS(2873), - [anon_sym___stdcall] = ACTIONS(2873), - [anon_sym___fastcall] = ACTIONS(2873), - [anon_sym___thiscall] = ACTIONS(2873), - [anon_sym___vectorcall] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2875), - [anon_sym_signed] = ACTIONS(2873), - [anon_sym_unsigned] = ACTIONS(2873), - [anon_sym_long] = ACTIONS(2873), - [anon_sym_short] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_register] = ACTIONS(2873), - [anon_sym_inline] = ACTIONS(2873), - [anon_sym___inline] = ACTIONS(2873), - [anon_sym___inline__] = ACTIONS(2873), - [anon_sym___forceinline] = ACTIONS(2873), - [anon_sym_thread_local] = ACTIONS(2873), - [anon_sym___thread] = ACTIONS(2873), - [anon_sym_const] = ACTIONS(2873), - [anon_sym_constexpr] = ACTIONS(2873), - [anon_sym_volatile] = ACTIONS(2873), - [anon_sym_restrict] = ACTIONS(2873), - [anon_sym___restrict__] = ACTIONS(2873), - [anon_sym__Atomic] = ACTIONS(2873), - [anon_sym__Noreturn] = ACTIONS(2873), - [anon_sym_noreturn] = ACTIONS(2873), - [anon_sym_mutable] = ACTIONS(2873), - [anon_sym_constinit] = ACTIONS(2873), - [anon_sym_consteval] = ACTIONS(2873), - [sym_primitive_type] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2873), - [anon_sym_union] = ACTIONS(2873), - [anon_sym_if] = ACTIONS(2873), - [anon_sym_else] = ACTIONS(2873), - [anon_sym_switch] = ACTIONS(2873), - [anon_sym_case] = ACTIONS(2873), - [anon_sym_default] = ACTIONS(2873), - [anon_sym_while] = ACTIONS(2873), - [anon_sym_do] = ACTIONS(2873), - [anon_sym_for] = ACTIONS(2873), - [anon_sym_return] = ACTIONS(2873), - [anon_sym_break] = ACTIONS(2873), - [anon_sym_continue] = ACTIONS(2873), - [anon_sym_goto] = ACTIONS(2873), - [anon_sym_not] = ACTIONS(2873), - [anon_sym_compl] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2875), - [anon_sym_PLUS_PLUS] = ACTIONS(2875), - [anon_sym_sizeof] = ACTIONS(2873), - [anon_sym___alignof__] = ACTIONS(2873), - [anon_sym___alignof] = ACTIONS(2873), - [anon_sym__alignof] = ACTIONS(2873), - [anon_sym_alignof] = ACTIONS(2873), - [anon_sym__Alignof] = ACTIONS(2873), - [anon_sym_offsetof] = ACTIONS(2873), - [anon_sym__Generic] = ACTIONS(2873), - [anon_sym_asm] = ACTIONS(2873), - [anon_sym___asm__] = ACTIONS(2873), - [sym_number_literal] = ACTIONS(2875), - [anon_sym_L_SQUOTE] = ACTIONS(2875), - [anon_sym_u_SQUOTE] = ACTIONS(2875), - [anon_sym_U_SQUOTE] = ACTIONS(2875), - [anon_sym_u8_SQUOTE] = ACTIONS(2875), - [anon_sym_SQUOTE] = ACTIONS(2875), - [anon_sym_L_DQUOTE] = ACTIONS(2875), - [anon_sym_u_DQUOTE] = ACTIONS(2875), - [anon_sym_U_DQUOTE] = ACTIONS(2875), - [anon_sym_u8_DQUOTE] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [sym_true] = ACTIONS(2873), - [sym_false] = ACTIONS(2873), - [anon_sym_NULL] = ACTIONS(2873), - [anon_sym_nullptr] = ACTIONS(2873), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2873), - [anon_sym_decltype] = ACTIONS(2873), - [anon_sym_virtual] = ACTIONS(2873), - [anon_sym_alignas] = ACTIONS(2873), - [anon_sym_explicit] = ACTIONS(2873), - [anon_sym_typename] = ACTIONS(2873), - [anon_sym_template] = ACTIONS(2873), - [anon_sym_operator] = ACTIONS(2873), - [anon_sym_try] = ACTIONS(2873), - [anon_sym_delete] = ACTIONS(2873), - [anon_sym_throw] = ACTIONS(2873), - [anon_sym_namespace] = ACTIONS(2873), - [anon_sym_using] = ACTIONS(2873), - [anon_sym_static_assert] = ACTIONS(2873), - [anon_sym_concept] = ACTIONS(2873), - [anon_sym_co_return] = ACTIONS(2873), - [anon_sym_co_yield] = ACTIONS(2873), - [anon_sym_R_DQUOTE] = ACTIONS(2875), - [anon_sym_LR_DQUOTE] = ACTIONS(2875), - [anon_sym_uR_DQUOTE] = ACTIONS(2875), - [anon_sym_UR_DQUOTE] = ACTIONS(2875), - [anon_sym_u8R_DQUOTE] = ACTIONS(2875), - [anon_sym_co_await] = ACTIONS(2873), - [anon_sym_new] = ACTIONS(2873), - [anon_sym_requires] = ACTIONS(2873), - [sym_this] = ACTIONS(2873), + [1123] = { + [sym__expression] = STATE(3952), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6822), + [sym_initializer_pair] = STATE(6822), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(2782), + [anon_sym_COMMA] = ACTIONS(3995), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_RBRACE] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(3999), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1065] = { - [sym_identifier] = ACTIONS(2881), - [aux_sym_preproc_include_token1] = ACTIONS(2881), - [aux_sym_preproc_def_token1] = ACTIONS(2881), - [aux_sym_preproc_if_token1] = ACTIONS(2881), - [aux_sym_preproc_if_token2] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2881), - [sym_preproc_directive] = ACTIONS(2881), - [anon_sym_LPAREN2] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2881), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym___extension__] = ACTIONS(2881), - [anon_sym_typedef] = ACTIONS(2881), - [anon_sym_extern] = ACTIONS(2881), - [anon_sym___attribute__] = ACTIONS(2881), - [anon_sym_COLON_COLON] = ACTIONS(2883), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2883), - [anon_sym___declspec] = ACTIONS(2881), - [anon_sym___based] = ACTIONS(2881), - [anon_sym___cdecl] = ACTIONS(2881), - [anon_sym___clrcall] = ACTIONS(2881), - [anon_sym___stdcall] = ACTIONS(2881), - [anon_sym___fastcall] = ACTIONS(2881), - [anon_sym___thiscall] = ACTIONS(2881), - [anon_sym___vectorcall] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_signed] = ACTIONS(2881), - [anon_sym_unsigned] = ACTIONS(2881), - [anon_sym_long] = ACTIONS(2881), - [anon_sym_short] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_register] = ACTIONS(2881), - [anon_sym_inline] = ACTIONS(2881), - [anon_sym___inline] = ACTIONS(2881), - [anon_sym___inline__] = ACTIONS(2881), - [anon_sym___forceinline] = ACTIONS(2881), - [anon_sym_thread_local] = ACTIONS(2881), - [anon_sym___thread] = ACTIONS(2881), - [anon_sym_const] = ACTIONS(2881), - [anon_sym_constexpr] = ACTIONS(2881), - [anon_sym_volatile] = ACTIONS(2881), - [anon_sym_restrict] = ACTIONS(2881), - [anon_sym___restrict__] = ACTIONS(2881), - [anon_sym__Atomic] = ACTIONS(2881), - [anon_sym__Noreturn] = ACTIONS(2881), - [anon_sym_noreturn] = ACTIONS(2881), - [anon_sym_mutable] = ACTIONS(2881), - [anon_sym_constinit] = ACTIONS(2881), - [anon_sym_consteval] = ACTIONS(2881), - [sym_primitive_type] = ACTIONS(2881), - [anon_sym_enum] = ACTIONS(2881), - [anon_sym_class] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2881), - [anon_sym_union] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2881), - [anon_sym_else] = ACTIONS(2881), - [anon_sym_switch] = ACTIONS(2881), - [anon_sym_case] = ACTIONS(2881), - [anon_sym_default] = ACTIONS(2881), - [anon_sym_while] = ACTIONS(2881), - [anon_sym_do] = ACTIONS(2881), - [anon_sym_for] = ACTIONS(2881), - [anon_sym_return] = ACTIONS(2881), - [anon_sym_break] = ACTIONS(2881), - [anon_sym_continue] = ACTIONS(2881), - [anon_sym_goto] = ACTIONS(2881), - [anon_sym_not] = ACTIONS(2881), - [anon_sym_compl] = ACTIONS(2881), - [anon_sym_DASH_DASH] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_sizeof] = ACTIONS(2881), - [anon_sym___alignof__] = ACTIONS(2881), - [anon_sym___alignof] = ACTIONS(2881), - [anon_sym__alignof] = ACTIONS(2881), - [anon_sym_alignof] = ACTIONS(2881), - [anon_sym__Alignof] = ACTIONS(2881), - [anon_sym_offsetof] = ACTIONS(2881), - [anon_sym__Generic] = ACTIONS(2881), - [anon_sym_asm] = ACTIONS(2881), - [anon_sym___asm__] = ACTIONS(2881), - [sym_number_literal] = ACTIONS(2883), - [anon_sym_L_SQUOTE] = ACTIONS(2883), - [anon_sym_u_SQUOTE] = ACTIONS(2883), - [anon_sym_U_SQUOTE] = ACTIONS(2883), - [anon_sym_u8_SQUOTE] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2883), - [anon_sym_L_DQUOTE] = ACTIONS(2883), - [anon_sym_u_DQUOTE] = ACTIONS(2883), - [anon_sym_U_DQUOTE] = ACTIONS(2883), - [anon_sym_u8_DQUOTE] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [sym_true] = ACTIONS(2881), - [sym_false] = ACTIONS(2881), - [anon_sym_NULL] = ACTIONS(2881), - [anon_sym_nullptr] = ACTIONS(2881), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2881), - [anon_sym_decltype] = ACTIONS(2881), - [anon_sym_virtual] = ACTIONS(2881), - [anon_sym_alignas] = ACTIONS(2881), - [anon_sym_explicit] = ACTIONS(2881), - [anon_sym_typename] = ACTIONS(2881), - [anon_sym_template] = ACTIONS(2881), - [anon_sym_operator] = ACTIONS(2881), - [anon_sym_try] = ACTIONS(2881), - [anon_sym_delete] = ACTIONS(2881), - [anon_sym_throw] = ACTIONS(2881), - [anon_sym_namespace] = ACTIONS(2881), - [anon_sym_using] = ACTIONS(2881), - [anon_sym_static_assert] = ACTIONS(2881), - [anon_sym_concept] = ACTIONS(2881), - [anon_sym_co_return] = ACTIONS(2881), - [anon_sym_co_yield] = ACTIONS(2881), - [anon_sym_R_DQUOTE] = ACTIONS(2883), - [anon_sym_LR_DQUOTE] = ACTIONS(2883), - [anon_sym_uR_DQUOTE] = ACTIONS(2883), - [anon_sym_UR_DQUOTE] = ACTIONS(2883), - [anon_sym_u8R_DQUOTE] = ACTIONS(2883), - [anon_sym_co_await] = ACTIONS(2881), - [anon_sym_new] = ACTIONS(2881), - [anon_sym_requires] = ACTIONS(2881), - [sym_this] = ACTIONS(2881), + [1124] = { + [sym__expression] = STATE(4039), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(6879), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7003), + [sym_initializer_pair] = STATE(7003), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_RBRACE] = ACTIONS(4001), + [anon_sym_LBRACK] = ACTIONS(3999), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1066] = { - [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_extern] = ACTIONS(3019), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3019), - [anon_sym_constinit] = ACTIONS(3019), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3019), - [anon_sym_alignas] = 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_using] = 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), + [1125] = { + [sym__expression] = STATE(3962), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6733), + [sym_initializer_pair] = STATE(6733), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(2782), + [anon_sym_COMMA] = ACTIONS(4003), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_RBRACE] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(3999), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1067] = { - [sym_identifier] = ACTIONS(2937), - [aux_sym_preproc_include_token1] = ACTIONS(2937), - [aux_sym_preproc_def_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token2] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), - [sym_preproc_directive] = ACTIONS(2937), - [anon_sym_LPAREN2] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2939), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym_typedef] = ACTIONS(2937), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), - [anon_sym___declspec] = ACTIONS(2937), - [anon_sym___based] = ACTIONS(2937), - [anon_sym___cdecl] = ACTIONS(2937), - [anon_sym___clrcall] = ACTIONS(2937), - [anon_sym___stdcall] = ACTIONS(2937), - [anon_sym___fastcall] = ACTIONS(2937), - [anon_sym___thiscall] = ACTIONS(2937), - [anon_sym___vectorcall] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_signed] = ACTIONS(2937), - [anon_sym_unsigned] = ACTIONS(2937), - [anon_sym_long] = ACTIONS(2937), - [anon_sym_short] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(2937), - [anon_sym_register] = ACTIONS(2937), - [anon_sym_inline] = ACTIONS(2937), - [anon_sym___inline] = ACTIONS(2937), - [anon_sym___inline__] = ACTIONS(2937), - [anon_sym___forceinline] = ACTIONS(2937), - [anon_sym_thread_local] = ACTIONS(2937), - [anon_sym___thread] = ACTIONS(2937), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_class] = ACTIONS(2937), - [anon_sym_struct] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_if] = ACTIONS(2937), - [anon_sym_else] = ACTIONS(2937), - [anon_sym_switch] = ACTIONS(2937), - [anon_sym_case] = ACTIONS(2937), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_while] = ACTIONS(2937), - [anon_sym_do] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2937), - [anon_sym_break] = ACTIONS(2937), - [anon_sym_continue] = ACTIONS(2937), - [anon_sym_goto] = ACTIONS(2937), - [anon_sym_not] = ACTIONS(2937), - [anon_sym_compl] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_sizeof] = ACTIONS(2937), - [anon_sym___alignof__] = ACTIONS(2937), - [anon_sym___alignof] = ACTIONS(2937), - [anon_sym__alignof] = ACTIONS(2937), - [anon_sym_alignof] = ACTIONS(2937), - [anon_sym__Alignof] = ACTIONS(2937), - [anon_sym_offsetof] = ACTIONS(2937), - [anon_sym__Generic] = ACTIONS(2937), - [anon_sym_asm] = ACTIONS(2937), - [anon_sym___asm__] = ACTIONS(2937), - [sym_number_literal] = ACTIONS(2939), - [anon_sym_L_SQUOTE] = ACTIONS(2939), - [anon_sym_u_SQUOTE] = ACTIONS(2939), - [anon_sym_U_SQUOTE] = ACTIONS(2939), - [anon_sym_u8_SQUOTE] = ACTIONS(2939), - [anon_sym_SQUOTE] = ACTIONS(2939), - [anon_sym_L_DQUOTE] = ACTIONS(2939), - [anon_sym_u_DQUOTE] = ACTIONS(2939), - [anon_sym_U_DQUOTE] = ACTIONS(2939), - [anon_sym_u8_DQUOTE] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym_true] = ACTIONS(2937), - [sym_false] = ACTIONS(2937), - [anon_sym_NULL] = ACTIONS(2937), - [anon_sym_nullptr] = ACTIONS(2937), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2937), - [anon_sym_decltype] = ACTIONS(2937), - [anon_sym_virtual] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2937), - [anon_sym_explicit] = ACTIONS(2937), - [anon_sym_typename] = ACTIONS(2937), - [anon_sym_template] = ACTIONS(2937), - [anon_sym_operator] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2937), - [anon_sym_delete] = ACTIONS(2937), - [anon_sym_throw] = ACTIONS(2937), - [anon_sym_namespace] = ACTIONS(2937), - [anon_sym_using] = ACTIONS(2937), - [anon_sym_static_assert] = ACTIONS(2937), - [anon_sym_concept] = ACTIONS(2937), - [anon_sym_co_return] = ACTIONS(2937), - [anon_sym_co_yield] = ACTIONS(2937), - [anon_sym_R_DQUOTE] = ACTIONS(2939), - [anon_sym_LR_DQUOTE] = ACTIONS(2939), - [anon_sym_uR_DQUOTE] = ACTIONS(2939), - [anon_sym_UR_DQUOTE] = ACTIONS(2939), - [anon_sym_u8R_DQUOTE] = ACTIONS(2939), - [anon_sym_co_await] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2937), - [anon_sym_requires] = ACTIONS(2937), - [sym_this] = ACTIONS(2937), + [1126] = { + [sym__expression] = STATE(3942), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6635), + [sym_initializer_pair] = STATE(6635), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(2782), + [anon_sym_COMMA] = ACTIONS(4007), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LBRACK] = ACTIONS(3999), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1068] = { - [sym_identifier] = ACTIONS(2949), - [aux_sym_preproc_include_token1] = ACTIONS(2949), - [aux_sym_preproc_def_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token2] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), - [sym_preproc_directive] = ACTIONS(2949), - [anon_sym_LPAREN2] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2949), - [anon_sym_SEMI] = ACTIONS(2951), - [anon_sym___extension__] = ACTIONS(2949), - [anon_sym_typedef] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2949), - [anon_sym___attribute__] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), - [anon_sym___declspec] = ACTIONS(2949), - [anon_sym___based] = ACTIONS(2949), - [anon_sym___cdecl] = ACTIONS(2949), - [anon_sym___clrcall] = ACTIONS(2949), - [anon_sym___stdcall] = ACTIONS(2949), - [anon_sym___fastcall] = ACTIONS(2949), - [anon_sym___thiscall] = ACTIONS(2949), - [anon_sym___vectorcall] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_signed] = ACTIONS(2949), - [anon_sym_unsigned] = ACTIONS(2949), - [anon_sym_long] = ACTIONS(2949), - [anon_sym_short] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_register] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2949), - [anon_sym___inline] = ACTIONS(2949), - [anon_sym___inline__] = ACTIONS(2949), - [anon_sym___forceinline] = ACTIONS(2949), - [anon_sym_thread_local] = ACTIONS(2949), - [anon_sym___thread] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_constexpr] = ACTIONS(2949), - [anon_sym_volatile] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2949), - [anon_sym___restrict__] = ACTIONS(2949), - [anon_sym__Atomic] = ACTIONS(2949), - [anon_sym__Noreturn] = ACTIONS(2949), - [anon_sym_noreturn] = ACTIONS(2949), - [anon_sym_mutable] = ACTIONS(2949), - [anon_sym_constinit] = ACTIONS(2949), - [anon_sym_consteval] = ACTIONS(2949), - [sym_primitive_type] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_else] = ACTIONS(2949), - [anon_sym_switch] = ACTIONS(2949), - [anon_sym_case] = ACTIONS(2949), - [anon_sym_default] = ACTIONS(2949), - [anon_sym_while] = ACTIONS(2949), - [anon_sym_do] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym_not] = ACTIONS(2949), - [anon_sym_compl] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2949), - [anon_sym___alignof__] = ACTIONS(2949), - [anon_sym___alignof] = ACTIONS(2949), - [anon_sym__alignof] = ACTIONS(2949), - [anon_sym_alignof] = ACTIONS(2949), - [anon_sym__Alignof] = ACTIONS(2949), - [anon_sym_offsetof] = ACTIONS(2949), - [anon_sym__Generic] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym___asm__] = ACTIONS(2949), - [sym_number_literal] = ACTIONS(2951), - [anon_sym_L_SQUOTE] = ACTIONS(2951), - [anon_sym_u_SQUOTE] = ACTIONS(2951), - [anon_sym_U_SQUOTE] = ACTIONS(2951), - [anon_sym_u8_SQUOTE] = ACTIONS(2951), - [anon_sym_SQUOTE] = ACTIONS(2951), - [anon_sym_L_DQUOTE] = ACTIONS(2951), - [anon_sym_u_DQUOTE] = ACTIONS(2951), - [anon_sym_U_DQUOTE] = ACTIONS(2951), - [anon_sym_u8_DQUOTE] = ACTIONS(2951), - [anon_sym_DQUOTE] = ACTIONS(2951), - [sym_true] = ACTIONS(2949), - [sym_false] = ACTIONS(2949), - [anon_sym_NULL] = ACTIONS(2949), - [anon_sym_nullptr] = ACTIONS(2949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2949), - [anon_sym_decltype] = ACTIONS(2949), - [anon_sym_virtual] = ACTIONS(2949), - [anon_sym_alignas] = ACTIONS(2949), - [anon_sym_explicit] = ACTIONS(2949), - [anon_sym_typename] = ACTIONS(2949), - [anon_sym_template] = ACTIONS(2949), - [anon_sym_operator] = ACTIONS(2949), - [anon_sym_try] = ACTIONS(2949), - [anon_sym_delete] = ACTIONS(2949), - [anon_sym_throw] = ACTIONS(2949), - [anon_sym_namespace] = ACTIONS(2949), - [anon_sym_using] = ACTIONS(2949), - [anon_sym_static_assert] = ACTIONS(2949), - [anon_sym_concept] = ACTIONS(2949), - [anon_sym_co_return] = ACTIONS(2949), - [anon_sym_co_yield] = ACTIONS(2949), - [anon_sym_R_DQUOTE] = ACTIONS(2951), - [anon_sym_LR_DQUOTE] = ACTIONS(2951), - [anon_sym_uR_DQUOTE] = ACTIONS(2951), - [anon_sym_UR_DQUOTE] = ACTIONS(2951), - [anon_sym_u8R_DQUOTE] = ACTIONS(2951), - [anon_sym_co_await] = ACTIONS(2949), - [anon_sym_new] = ACTIONS(2949), - [anon_sym_requires] = ACTIONS(2949), - [sym_this] = ACTIONS(2949), + [1127] = { + [sym__expression] = STATE(3975), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6786), + [sym_initializer_pair] = STATE(6786), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(2782), + [anon_sym_COMMA] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_RBRACE] = ACTIONS(4011), + [anon_sym_LBRACK] = ACTIONS(3999), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1069] = { - [sym_identifier] = ACTIONS(2953), - [aux_sym_preproc_include_token1] = ACTIONS(2953), - [aux_sym_preproc_def_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token2] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2953), - [sym_preproc_directive] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2955), - [anon_sym___extension__] = ACTIONS(2953), - [anon_sym_typedef] = ACTIONS(2953), - [anon_sym_extern] = ACTIONS(2953), - [anon_sym___attribute__] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), - [anon_sym___declspec] = ACTIONS(2953), - [anon_sym___based] = ACTIONS(2953), - [anon_sym___cdecl] = ACTIONS(2953), - [anon_sym___clrcall] = ACTIONS(2953), - [anon_sym___stdcall] = ACTIONS(2953), - [anon_sym___fastcall] = ACTIONS(2953), - [anon_sym___thiscall] = ACTIONS(2953), - [anon_sym___vectorcall] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_signed] = ACTIONS(2953), - [anon_sym_unsigned] = ACTIONS(2953), - [anon_sym_long] = ACTIONS(2953), - [anon_sym_short] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2953), - [anon_sym_register] = ACTIONS(2953), - [anon_sym_inline] = ACTIONS(2953), - [anon_sym___inline] = ACTIONS(2953), - [anon_sym___inline__] = ACTIONS(2953), - [anon_sym___forceinline] = ACTIONS(2953), - [anon_sym_thread_local] = ACTIONS(2953), - [anon_sym___thread] = ACTIONS(2953), - [anon_sym_const] = ACTIONS(2953), - [anon_sym_constexpr] = ACTIONS(2953), - [anon_sym_volatile] = ACTIONS(2953), - [anon_sym_restrict] = ACTIONS(2953), - [anon_sym___restrict__] = ACTIONS(2953), - [anon_sym__Atomic] = ACTIONS(2953), - [anon_sym__Noreturn] = ACTIONS(2953), - [anon_sym_noreturn] = ACTIONS(2953), - [anon_sym_mutable] = ACTIONS(2953), - [anon_sym_constinit] = ACTIONS(2953), - [anon_sym_consteval] = ACTIONS(2953), - [sym_primitive_type] = ACTIONS(2953), - [anon_sym_enum] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2953), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_union] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_else] = ACTIONS(2953), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_case] = ACTIONS(2953), - [anon_sym_default] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_break] = ACTIONS(2953), - [anon_sym_continue] = ACTIONS(2953), - [anon_sym_goto] = ACTIONS(2953), - [anon_sym_not] = ACTIONS(2953), - [anon_sym_compl] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2955), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2953), - [anon_sym___alignof] = ACTIONS(2953), - [anon_sym__alignof] = ACTIONS(2953), - [anon_sym_alignof] = ACTIONS(2953), - [anon_sym__Alignof] = ACTIONS(2953), - [anon_sym_offsetof] = ACTIONS(2953), - [anon_sym__Generic] = ACTIONS(2953), - [anon_sym_asm] = ACTIONS(2953), - [anon_sym___asm__] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(2955), - [anon_sym_L_SQUOTE] = ACTIONS(2955), - [anon_sym_u_SQUOTE] = ACTIONS(2955), - [anon_sym_U_SQUOTE] = ACTIONS(2955), - [anon_sym_u8_SQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2955), - [anon_sym_L_DQUOTE] = ACTIONS(2955), - [anon_sym_u_DQUOTE] = ACTIONS(2955), - [anon_sym_U_DQUOTE] = ACTIONS(2955), - [anon_sym_u8_DQUOTE] = ACTIONS(2955), - [anon_sym_DQUOTE] = ACTIONS(2955), - [sym_true] = ACTIONS(2953), - [sym_false] = ACTIONS(2953), - [anon_sym_NULL] = ACTIONS(2953), - [anon_sym_nullptr] = ACTIONS(2953), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2953), - [anon_sym_decltype] = ACTIONS(2953), - [anon_sym_virtual] = ACTIONS(2953), - [anon_sym_alignas] = ACTIONS(2953), - [anon_sym_explicit] = ACTIONS(2953), - [anon_sym_typename] = ACTIONS(2953), - [anon_sym_template] = ACTIONS(2953), - [anon_sym_operator] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_delete] = ACTIONS(2953), - [anon_sym_throw] = ACTIONS(2953), - [anon_sym_namespace] = ACTIONS(2953), - [anon_sym_using] = ACTIONS(2953), - [anon_sym_static_assert] = ACTIONS(2953), - [anon_sym_concept] = ACTIONS(2953), - [anon_sym_co_return] = ACTIONS(2953), - [anon_sym_co_yield] = ACTIONS(2953), - [anon_sym_R_DQUOTE] = ACTIONS(2955), - [anon_sym_LR_DQUOTE] = ACTIONS(2955), - [anon_sym_uR_DQUOTE] = ACTIONS(2955), - [anon_sym_UR_DQUOTE] = ACTIONS(2955), - [anon_sym_u8R_DQUOTE] = ACTIONS(2955), - [anon_sym_co_await] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_requires] = ACTIONS(2953), - [sym_this] = ACTIONS(2953), + [1128] = { + [sym__expression] = STATE(3974), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6489), + [sym_initializer_pair] = STATE(6489), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(2782), + [anon_sym_COMMA] = ACTIONS(4013), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_LBRACK] = ACTIONS(3999), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1070] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1129] = { + [sym__expression] = STATE(4026), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6685), + [sym_initializer_pair] = STATE(6685), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(2782), + [anon_sym_COMMA] = ACTIONS(4017), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_RBRACE] = ACTIONS(4019), + [anon_sym_LBRACK] = ACTIONS(3999), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1071] = { - [sym_identifier] = ACTIONS(2961), - [aux_sym_preproc_include_token1] = ACTIONS(2961), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token2] = ACTIONS(2961), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2961), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2961), - [sym_preproc_directive] = ACTIONS(2961), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_SEMI] = ACTIONS(2963), - [anon_sym___extension__] = ACTIONS(2961), - [anon_sym_typedef] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym_COLON_COLON] = ACTIONS(2963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), - [anon_sym___declspec] = ACTIONS(2961), - [anon_sym___based] = ACTIONS(2961), - [anon_sym___cdecl] = ACTIONS(2961), - [anon_sym___clrcall] = ACTIONS(2961), - [anon_sym___stdcall] = ACTIONS(2961), - [anon_sym___fastcall] = ACTIONS(2961), - [anon_sym___thiscall] = ACTIONS(2961), - [anon_sym___vectorcall] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_signed] = ACTIONS(2961), - [anon_sym_unsigned] = ACTIONS(2961), - [anon_sym_long] = ACTIONS(2961), - [anon_sym_short] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_static] = ACTIONS(2961), - [anon_sym_register] = ACTIONS(2961), - [anon_sym_inline] = ACTIONS(2961), - [anon_sym___inline] = ACTIONS(2961), - [anon_sym___inline__] = ACTIONS(2961), - [anon_sym___forceinline] = ACTIONS(2961), - [anon_sym_thread_local] = ACTIONS(2961), - [anon_sym___thread] = ACTIONS(2961), - [anon_sym_const] = ACTIONS(2961), - [anon_sym_constexpr] = ACTIONS(2961), - [anon_sym_volatile] = ACTIONS(2961), - [anon_sym_restrict] = ACTIONS(2961), - [anon_sym___restrict__] = ACTIONS(2961), - [anon_sym__Atomic] = ACTIONS(2961), - [anon_sym__Noreturn] = ACTIONS(2961), - [anon_sym_noreturn] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [sym_primitive_type] = ACTIONS(2961), - [anon_sym_enum] = ACTIONS(2961), - [anon_sym_class] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_union] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_else] = ACTIONS(2961), - [anon_sym_switch] = ACTIONS(2961), - [anon_sym_case] = ACTIONS(2961), - [anon_sym_default] = ACTIONS(2961), - [anon_sym_while] = ACTIONS(2961), - [anon_sym_do] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2961), - [anon_sym_break] = ACTIONS(2961), - [anon_sym_continue] = ACTIONS(2961), - [anon_sym_goto] = ACTIONS(2961), - [anon_sym_not] = ACTIONS(2961), - [anon_sym_compl] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_sizeof] = ACTIONS(2961), - [anon_sym___alignof__] = ACTIONS(2961), - [anon_sym___alignof] = ACTIONS(2961), - [anon_sym__alignof] = ACTIONS(2961), - [anon_sym_alignof] = ACTIONS(2961), - [anon_sym__Alignof] = ACTIONS(2961), - [anon_sym_offsetof] = ACTIONS(2961), - [anon_sym__Generic] = ACTIONS(2961), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2963), - [anon_sym_u_SQUOTE] = ACTIONS(2963), - [anon_sym_U_SQUOTE] = ACTIONS(2963), - [anon_sym_u8_SQUOTE] = ACTIONS(2963), - [anon_sym_SQUOTE] = ACTIONS(2963), - [anon_sym_L_DQUOTE] = ACTIONS(2963), - [anon_sym_u_DQUOTE] = ACTIONS(2963), - [anon_sym_U_DQUOTE] = ACTIONS(2963), - [anon_sym_u8_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [anon_sym_NULL] = ACTIONS(2961), - [anon_sym_nullptr] = ACTIONS(2961), + [1130] = { + [sym__expression] = STATE(4122), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7003), + [sym_initializer_pair] = STATE(7003), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_RBRACE] = ACTIONS(4021), + [anon_sym_LBRACK] = ACTIONS(3999), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2961), - [anon_sym_decltype] = ACTIONS(2961), - [anon_sym_virtual] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym_explicit] = ACTIONS(2961), - [anon_sym_typename] = ACTIONS(2961), - [anon_sym_template] = ACTIONS(2961), - [anon_sym_operator] = ACTIONS(2961), - [anon_sym_try] = ACTIONS(2961), - [anon_sym_delete] = ACTIONS(2961), - [anon_sym_throw] = ACTIONS(2961), - [anon_sym_namespace] = ACTIONS(2961), - [anon_sym_using] = ACTIONS(2961), - [anon_sym_static_assert] = ACTIONS(2961), - [anon_sym_concept] = ACTIONS(2961), - [anon_sym_co_return] = ACTIONS(2961), - [anon_sym_co_yield] = ACTIONS(2961), - [anon_sym_R_DQUOTE] = ACTIONS(2963), - [anon_sym_LR_DQUOTE] = ACTIONS(2963), - [anon_sym_uR_DQUOTE] = ACTIONS(2963), - [anon_sym_UR_DQUOTE] = ACTIONS(2963), - [anon_sym_u8R_DQUOTE] = ACTIONS(2963), - [anon_sym_co_await] = ACTIONS(2961), - [anon_sym_new] = ACTIONS(2961), - [anon_sym_requires] = ACTIONS(2961), - [sym_this] = ACTIONS(2961), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1072] = { - [sym_identifier] = ACTIONS(3031), - [aux_sym_preproc_include_token1] = ACTIONS(3031), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3031), - [sym_preproc_directive] = ACTIONS(3031), - [anon_sym_LPAREN2] = ACTIONS(3033), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym___extension__] = ACTIONS(3031), - [anon_sym_typedef] = ACTIONS(3031), - [anon_sym_extern] = ACTIONS(3031), - [anon_sym___attribute__] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3033), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3033), - [anon_sym___declspec] = ACTIONS(3031), - [anon_sym___based] = ACTIONS(3031), - [anon_sym___cdecl] = ACTIONS(3031), - [anon_sym___clrcall] = ACTIONS(3031), - [anon_sym___stdcall] = ACTIONS(3031), - [anon_sym___fastcall] = ACTIONS(3031), - [anon_sym___thiscall] = ACTIONS(3031), - [anon_sym___vectorcall] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_signed] = ACTIONS(3031), - [anon_sym_unsigned] = ACTIONS(3031), - [anon_sym_long] = ACTIONS(3031), - [anon_sym_short] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_static] = ACTIONS(3031), - [anon_sym_register] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym___inline] = ACTIONS(3031), - [anon_sym___inline__] = ACTIONS(3031), - [anon_sym___forceinline] = ACTIONS(3031), - [anon_sym_thread_local] = ACTIONS(3031), - [anon_sym___thread] = ACTIONS(3031), - [anon_sym_const] = ACTIONS(3031), - [anon_sym_constexpr] = ACTIONS(3031), - [anon_sym_volatile] = ACTIONS(3031), - [anon_sym_restrict] = ACTIONS(3031), - [anon_sym___restrict__] = ACTIONS(3031), - [anon_sym__Atomic] = ACTIONS(3031), - [anon_sym__Noreturn] = ACTIONS(3031), - [anon_sym_noreturn] = ACTIONS(3031), - [anon_sym_mutable] = ACTIONS(3031), - [anon_sym_constinit] = ACTIONS(3031), - [anon_sym_consteval] = ACTIONS(3031), - [sym_primitive_type] = ACTIONS(3031), - [anon_sym_enum] = ACTIONS(3031), - [anon_sym_class] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_union] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_switch] = ACTIONS(3031), - [anon_sym_case] = ACTIONS(3031), - [anon_sym_default] = ACTIONS(3031), - [anon_sym_while] = ACTIONS(3031), - [anon_sym_do] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_goto] = ACTIONS(3031), - [anon_sym_not] = ACTIONS(3031), - [anon_sym_compl] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3033), - [anon_sym_PLUS_PLUS] = ACTIONS(3033), - [anon_sym_sizeof] = ACTIONS(3031), - [anon_sym___alignof__] = ACTIONS(3031), - [anon_sym___alignof] = ACTIONS(3031), - [anon_sym__alignof] = ACTIONS(3031), - [anon_sym_alignof] = ACTIONS(3031), - [anon_sym__Alignof] = ACTIONS(3031), - [anon_sym_offsetof] = ACTIONS(3031), - [anon_sym__Generic] = ACTIONS(3031), - [anon_sym_asm] = ACTIONS(3031), - [anon_sym___asm__] = ACTIONS(3031), - [sym_number_literal] = ACTIONS(3033), - [anon_sym_L_SQUOTE] = ACTIONS(3033), - [anon_sym_u_SQUOTE] = ACTIONS(3033), - [anon_sym_U_SQUOTE] = ACTIONS(3033), - [anon_sym_u8_SQUOTE] = ACTIONS(3033), - [anon_sym_SQUOTE] = ACTIONS(3033), - [anon_sym_L_DQUOTE] = ACTIONS(3033), - [anon_sym_u_DQUOTE] = ACTIONS(3033), - [anon_sym_U_DQUOTE] = ACTIONS(3033), - [anon_sym_u8_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [anon_sym_NULL] = ACTIONS(3031), - [anon_sym_nullptr] = ACTIONS(3031), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3031), - [anon_sym_decltype] = ACTIONS(3031), - [anon_sym_virtual] = ACTIONS(3031), - [anon_sym_alignas] = ACTIONS(3031), - [anon_sym_explicit] = ACTIONS(3031), - [anon_sym_typename] = ACTIONS(3031), - [anon_sym_template] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3031), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_throw] = ACTIONS(3031), - [anon_sym_namespace] = ACTIONS(3031), - [anon_sym_using] = ACTIONS(3031), - [anon_sym_static_assert] = ACTIONS(3031), - [anon_sym_concept] = ACTIONS(3031), - [anon_sym_co_return] = ACTIONS(3031), - [anon_sym_co_yield] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3031), - [anon_sym_new] = ACTIONS(3031), - [anon_sym_requires] = ACTIONS(3031), - [sym_this] = ACTIONS(3031), - }, - [1073] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1131] = { + [sym__expression] = STATE(4122), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7003), + [sym_initializer_pair] = STATE(7003), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_RBRACE] = ACTIONS(4023), + [anon_sym_LBRACK] = ACTIONS(3999), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1074] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1132] = { + [sym__expression] = STATE(4122), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7003), + [sym_initializer_pair] = STATE(7003), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_RBRACE] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3999), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1075] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1133] = { + [sym__expression] = STATE(4122), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7003), + [sym_initializer_pair] = STATE(7003), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3999), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1076] = { - [sym_identifier] = ACTIONS(3035), - [aux_sym_preproc_include_token1] = ACTIONS(3035), - [aux_sym_preproc_def_token1] = ACTIONS(3035), - [aux_sym_preproc_if_token1] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), - [sym_preproc_directive] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym___extension__] = ACTIONS(3035), - [anon_sym_typedef] = ACTIONS(3035), - [anon_sym_extern] = ACTIONS(3035), - [anon_sym___attribute__] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3037), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), - [anon_sym___declspec] = ACTIONS(3035), - [anon_sym___based] = ACTIONS(3035), - [anon_sym___cdecl] = ACTIONS(3035), - [anon_sym___clrcall] = ACTIONS(3035), - [anon_sym___stdcall] = ACTIONS(3035), - [anon_sym___fastcall] = ACTIONS(3035), - [anon_sym___thiscall] = ACTIONS(3035), - [anon_sym___vectorcall] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_signed] = ACTIONS(3035), - [anon_sym_unsigned] = ACTIONS(3035), - [anon_sym_long] = ACTIONS(3035), - [anon_sym_short] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_static] = ACTIONS(3035), - [anon_sym_register] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym___inline] = ACTIONS(3035), - [anon_sym___inline__] = ACTIONS(3035), - [anon_sym___forceinline] = ACTIONS(3035), - [anon_sym_thread_local] = ACTIONS(3035), - [anon_sym___thread] = ACTIONS(3035), - [anon_sym_const] = ACTIONS(3035), - [anon_sym_constexpr] = ACTIONS(3035), - [anon_sym_volatile] = ACTIONS(3035), - [anon_sym_restrict] = ACTIONS(3035), - [anon_sym___restrict__] = ACTIONS(3035), - [anon_sym__Atomic] = ACTIONS(3035), - [anon_sym__Noreturn] = ACTIONS(3035), - [anon_sym_noreturn] = ACTIONS(3035), - [anon_sym_mutable] = ACTIONS(3035), - [anon_sym_constinit] = ACTIONS(3035), - [anon_sym_consteval] = ACTIONS(3035), - [sym_primitive_type] = ACTIONS(3035), - [anon_sym_enum] = ACTIONS(3035), - [anon_sym_class] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_union] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_switch] = ACTIONS(3035), - [anon_sym_case] = ACTIONS(3035), - [anon_sym_default] = ACTIONS(3035), - [anon_sym_while] = ACTIONS(3035), - [anon_sym_do] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_goto] = ACTIONS(3035), - [anon_sym_not] = ACTIONS(3035), - [anon_sym_compl] = ACTIONS(3035), - [anon_sym_DASH_DASH] = ACTIONS(3037), - [anon_sym_PLUS_PLUS] = ACTIONS(3037), - [anon_sym_sizeof] = ACTIONS(3035), - [anon_sym___alignof__] = ACTIONS(3035), - [anon_sym___alignof] = ACTIONS(3035), - [anon_sym__alignof] = ACTIONS(3035), - [anon_sym_alignof] = ACTIONS(3035), - [anon_sym__Alignof] = ACTIONS(3035), - [anon_sym_offsetof] = ACTIONS(3035), - [anon_sym__Generic] = ACTIONS(3035), - [anon_sym_asm] = ACTIONS(3035), - [anon_sym___asm__] = ACTIONS(3035), - [sym_number_literal] = ACTIONS(3037), - [anon_sym_L_SQUOTE] = ACTIONS(3037), - [anon_sym_u_SQUOTE] = ACTIONS(3037), - [anon_sym_U_SQUOTE] = ACTIONS(3037), - [anon_sym_u8_SQUOTE] = ACTIONS(3037), - [anon_sym_SQUOTE] = ACTIONS(3037), - [anon_sym_L_DQUOTE] = ACTIONS(3037), - [anon_sym_u_DQUOTE] = ACTIONS(3037), - [anon_sym_U_DQUOTE] = ACTIONS(3037), - [anon_sym_u8_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [sym_true] = ACTIONS(3035), - [sym_false] = ACTIONS(3035), - [anon_sym_NULL] = ACTIONS(3035), - [anon_sym_nullptr] = ACTIONS(3035), + [1134] = { + [sym__expression] = STATE(4122), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7003), + [sym_initializer_pair] = STATE(7003), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_RBRACE] = ACTIONS(4029), + [anon_sym_LBRACK] = ACTIONS(3999), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3035), - [anon_sym_decltype] = ACTIONS(3035), - [anon_sym_virtual] = ACTIONS(3035), - [anon_sym_alignas] = ACTIONS(3035), - [anon_sym_explicit] = ACTIONS(3035), - [anon_sym_typename] = ACTIONS(3035), - [anon_sym_template] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_try] = ACTIONS(3035), - [anon_sym_delete] = ACTIONS(3035), - [anon_sym_throw] = ACTIONS(3035), - [anon_sym_namespace] = ACTIONS(3035), - [anon_sym_using] = ACTIONS(3035), - [anon_sym_static_assert] = ACTIONS(3035), - [anon_sym_concept] = ACTIONS(3035), - [anon_sym_co_return] = ACTIONS(3035), - [anon_sym_co_yield] = ACTIONS(3035), - [anon_sym_R_DQUOTE] = ACTIONS(3037), - [anon_sym_LR_DQUOTE] = ACTIONS(3037), - [anon_sym_uR_DQUOTE] = ACTIONS(3037), - [anon_sym_UR_DQUOTE] = ACTIONS(3037), - [anon_sym_u8R_DQUOTE] = ACTIONS(3037), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(3035), - [sym_this] = ACTIONS(3035), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1077] = { - [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_extern] = ACTIONS(3027), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = 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_else] = 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), - [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), + [1135] = { + [sym__expression] = STATE(4122), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7003), + [sym_initializer_pair] = STATE(7003), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_RBRACE] = ACTIONS(4031), + [anon_sym_LBRACK] = ACTIONS(3999), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3027), - [anon_sym_decltype] = ACTIONS(3027), - [anon_sym_virtual] = ACTIONS(3027), - [anon_sym_alignas] = 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_using] = 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_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1078] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1136] = { + [sym__expression] = STATE(4122), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7003), + [sym_initializer_pair] = STATE(7003), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_RBRACE] = ACTIONS(4033), + [anon_sym_LBRACK] = ACTIONS(3999), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1079] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1137] = { + [sym__expression] = STATE(4122), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7003), + [sym_initializer_pair] = STATE(7003), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LBRACK] = ACTIONS(3999), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1080] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1138] = { + [sym__expression] = STATE(4122), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7003), + [sym_initializer_pair] = STATE(7003), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_RBRACE] = ACTIONS(4037), + [anon_sym_LBRACK] = ACTIONS(3999), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - }, - [1081] = { - [ts_builtin_sym_end] = ACTIONS(2939), - [sym_identifier] = ACTIONS(2937), - [aux_sym_preproc_include_token1] = ACTIONS(2937), - [aux_sym_preproc_def_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token1] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), - [sym_preproc_directive] = ACTIONS(2937), - [anon_sym_LPAREN2] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2939), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym_typedef] = ACTIONS(2937), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), - [anon_sym___declspec] = ACTIONS(2937), - [anon_sym___based] = ACTIONS(2937), - [anon_sym___cdecl] = ACTIONS(2937), - [anon_sym___clrcall] = ACTIONS(2937), - [anon_sym___stdcall] = ACTIONS(2937), - [anon_sym___fastcall] = ACTIONS(2937), - [anon_sym___thiscall] = ACTIONS(2937), - [anon_sym___vectorcall] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_signed] = ACTIONS(2937), - [anon_sym_unsigned] = ACTIONS(2937), - [anon_sym_long] = ACTIONS(2937), - [anon_sym_short] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(2937), - [anon_sym_register] = ACTIONS(2937), - [anon_sym_inline] = ACTIONS(2937), - [anon_sym___inline] = ACTIONS(2937), - [anon_sym___inline__] = ACTIONS(2937), - [anon_sym___forceinline] = ACTIONS(2937), - [anon_sym_thread_local] = ACTIONS(2937), - [anon_sym___thread] = ACTIONS(2937), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_class] = ACTIONS(2937), - [anon_sym_struct] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_if] = ACTIONS(2937), - [anon_sym_else] = ACTIONS(2937), - [anon_sym_switch] = ACTIONS(2937), - [anon_sym_case] = ACTIONS(2937), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_while] = ACTIONS(2937), - [anon_sym_do] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2937), - [anon_sym_break] = ACTIONS(2937), - [anon_sym_continue] = ACTIONS(2937), - [anon_sym_goto] = ACTIONS(2937), - [anon_sym_not] = ACTIONS(2937), - [anon_sym_compl] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_sizeof] = ACTIONS(2937), - [anon_sym___alignof__] = ACTIONS(2937), - [anon_sym___alignof] = ACTIONS(2937), - [anon_sym__alignof] = ACTIONS(2937), - [anon_sym_alignof] = ACTIONS(2937), - [anon_sym__Alignof] = ACTIONS(2937), - [anon_sym_offsetof] = ACTIONS(2937), - [anon_sym__Generic] = ACTIONS(2937), - [anon_sym_asm] = ACTIONS(2937), - [anon_sym___asm__] = ACTIONS(2937), - [sym_number_literal] = ACTIONS(2939), - [anon_sym_L_SQUOTE] = ACTIONS(2939), - [anon_sym_u_SQUOTE] = ACTIONS(2939), - [anon_sym_U_SQUOTE] = ACTIONS(2939), - [anon_sym_u8_SQUOTE] = ACTIONS(2939), - [anon_sym_SQUOTE] = ACTIONS(2939), - [anon_sym_L_DQUOTE] = ACTIONS(2939), - [anon_sym_u_DQUOTE] = ACTIONS(2939), - [anon_sym_U_DQUOTE] = ACTIONS(2939), - [anon_sym_u8_DQUOTE] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym_true] = ACTIONS(2937), - [sym_false] = ACTIONS(2937), - [anon_sym_NULL] = ACTIONS(2937), - [anon_sym_nullptr] = ACTIONS(2937), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2937), - [anon_sym_decltype] = ACTIONS(2937), - [anon_sym_virtual] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2937), - [anon_sym_explicit] = ACTIONS(2937), - [anon_sym_typename] = ACTIONS(2937), - [anon_sym_template] = ACTIONS(2937), - [anon_sym_operator] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2937), - [anon_sym_delete] = ACTIONS(2937), - [anon_sym_throw] = ACTIONS(2937), - [anon_sym_namespace] = ACTIONS(2937), - [anon_sym_using] = ACTIONS(2937), - [anon_sym_static_assert] = ACTIONS(2937), - [anon_sym_concept] = ACTIONS(2937), - [anon_sym_co_return] = ACTIONS(2937), - [anon_sym_co_yield] = ACTIONS(2937), - [anon_sym_R_DQUOTE] = ACTIONS(2939), - [anon_sym_LR_DQUOTE] = ACTIONS(2939), - [anon_sym_uR_DQUOTE] = ACTIONS(2939), - [anon_sym_UR_DQUOTE] = ACTIONS(2939), - [anon_sym_u8R_DQUOTE] = ACTIONS(2939), - [anon_sym_co_await] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2937), - [anon_sym_requires] = ACTIONS(2937), - [sym_this] = ACTIONS(2937), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1082] = { - [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_extern] = ACTIONS(3027), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = 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_else] = 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), - [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), + [1139] = { + [sym__expression] = STATE(4122), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7003), + [sym_initializer_pair] = STATE(7003), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_RBRACE] = ACTIONS(4001), + [anon_sym_LBRACK] = ACTIONS(3999), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3027), - [anon_sym_decltype] = ACTIONS(3027), - [anon_sym_virtual] = ACTIONS(3027), - [anon_sym_alignas] = 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_using] = 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), - }, - [1083] = { - [sym_identifier] = ACTIONS(3057), - [aux_sym_preproc_include_token1] = ACTIONS(3057), - [aux_sym_preproc_def_token1] = ACTIONS(3057), - [aux_sym_preproc_if_token1] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3057), - [sym_preproc_directive] = ACTIONS(3057), - [anon_sym_LPAREN2] = ACTIONS(3059), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_SEMI] = ACTIONS(3059), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3057), - [anon_sym_extern] = ACTIONS(3057), - [anon_sym___attribute__] = ACTIONS(3057), - [anon_sym_COLON_COLON] = ACTIONS(3059), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3059), - [anon_sym___declspec] = ACTIONS(3057), - [anon_sym___based] = ACTIONS(3057), - [anon_sym___cdecl] = ACTIONS(3057), - [anon_sym___clrcall] = ACTIONS(3057), - [anon_sym___stdcall] = ACTIONS(3057), - [anon_sym___fastcall] = ACTIONS(3057), - [anon_sym___thiscall] = ACTIONS(3057), - [anon_sym___vectorcall] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_RBRACE] = ACTIONS(3059), - [anon_sym_signed] = ACTIONS(3057), - [anon_sym_unsigned] = ACTIONS(3057), - [anon_sym_long] = ACTIONS(3057), - [anon_sym_short] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_register] = ACTIONS(3057), - [anon_sym_inline] = ACTIONS(3057), - [anon_sym___inline] = ACTIONS(3057), - [anon_sym___inline__] = ACTIONS(3057), - [anon_sym___forceinline] = ACTIONS(3057), - [anon_sym_thread_local] = ACTIONS(3057), - [anon_sym___thread] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_constexpr] = ACTIONS(3057), - [anon_sym_volatile] = ACTIONS(3057), - [anon_sym_restrict] = ACTIONS(3057), - [anon_sym___restrict__] = ACTIONS(3057), - [anon_sym__Atomic] = ACTIONS(3057), - [anon_sym__Noreturn] = ACTIONS(3057), - [anon_sym_noreturn] = ACTIONS(3057), - [anon_sym_mutable] = ACTIONS(3057), - [anon_sym_constinit] = ACTIONS(3057), - [anon_sym_consteval] = ACTIONS(3057), - [sym_primitive_type] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_class] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_else] = ACTIONS(3057), - [anon_sym_switch] = ACTIONS(3057), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3057), - [anon_sym_while] = ACTIONS(3057), - [anon_sym_do] = ACTIONS(3057), - [anon_sym_for] = ACTIONS(3057), - [anon_sym_return] = ACTIONS(3057), - [anon_sym_break] = ACTIONS(3057), - [anon_sym_continue] = ACTIONS(3057), - [anon_sym_goto] = ACTIONS(3057), - [anon_sym_not] = ACTIONS(3057), - [anon_sym_compl] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_sizeof] = ACTIONS(3057), - [anon_sym___alignof__] = ACTIONS(3057), - [anon_sym___alignof] = ACTIONS(3057), - [anon_sym__alignof] = ACTIONS(3057), - [anon_sym_alignof] = ACTIONS(3057), - [anon_sym__Alignof] = ACTIONS(3057), - [anon_sym_offsetof] = ACTIONS(3057), - [anon_sym__Generic] = ACTIONS(3057), - [anon_sym_asm] = ACTIONS(3057), - [anon_sym___asm__] = ACTIONS(3057), - [sym_number_literal] = ACTIONS(3059), - [anon_sym_L_SQUOTE] = ACTIONS(3059), - [anon_sym_u_SQUOTE] = ACTIONS(3059), - [anon_sym_U_SQUOTE] = ACTIONS(3059), - [anon_sym_u8_SQUOTE] = ACTIONS(3059), - [anon_sym_SQUOTE] = ACTIONS(3059), - [anon_sym_L_DQUOTE] = ACTIONS(3059), - [anon_sym_u_DQUOTE] = ACTIONS(3059), - [anon_sym_U_DQUOTE] = ACTIONS(3059), - [anon_sym_u8_DQUOTE] = ACTIONS(3059), - [anon_sym_DQUOTE] = ACTIONS(3059), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [anon_sym_NULL] = ACTIONS(3057), - [anon_sym_nullptr] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3057), - [anon_sym_decltype] = ACTIONS(3057), - [anon_sym_virtual] = ACTIONS(3057), - [anon_sym_alignas] = ACTIONS(3057), - [anon_sym_explicit] = ACTIONS(3057), - [anon_sym_typename] = ACTIONS(3057), - [anon_sym_template] = ACTIONS(3057), - [anon_sym_operator] = ACTIONS(3057), - [anon_sym_try] = ACTIONS(3057), - [anon_sym_delete] = ACTIONS(3057), - [anon_sym_throw] = ACTIONS(3057), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_using] = ACTIONS(3057), - [anon_sym_static_assert] = ACTIONS(3057), - [anon_sym_concept] = ACTIONS(3057), - [anon_sym_co_return] = ACTIONS(3057), - [anon_sym_co_yield] = ACTIONS(3057), - [anon_sym_R_DQUOTE] = ACTIONS(3059), - [anon_sym_LR_DQUOTE] = ACTIONS(3059), - [anon_sym_uR_DQUOTE] = ACTIONS(3059), - [anon_sym_UR_DQUOTE] = ACTIONS(3059), - [anon_sym_u8R_DQUOTE] = ACTIONS(3059), - [anon_sym_co_await] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(3057), - [sym_this] = ACTIONS(3057), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1084] = { - [sym_identifier] = ACTIONS(3087), - [aux_sym_preproc_include_token1] = ACTIONS(3087), - [aux_sym_preproc_def_token1] = ACTIONS(3087), - [aux_sym_preproc_if_token1] = ACTIONS(3087), - [aux_sym_preproc_if_token2] = ACTIONS(3087), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), - [sym_preproc_directive] = ACTIONS(3087), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_SEMI] = ACTIONS(3089), - [anon_sym___extension__] = ACTIONS(3087), - [anon_sym_typedef] = ACTIONS(3087), - [anon_sym_extern] = ACTIONS(3087), - [anon_sym___attribute__] = ACTIONS(3087), - [anon_sym_COLON_COLON] = ACTIONS(3089), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), - [anon_sym___declspec] = ACTIONS(3087), - [anon_sym___based] = ACTIONS(3087), - [anon_sym___cdecl] = ACTIONS(3087), - [anon_sym___clrcall] = ACTIONS(3087), - [anon_sym___stdcall] = ACTIONS(3087), - [anon_sym___fastcall] = ACTIONS(3087), - [anon_sym___thiscall] = ACTIONS(3087), - [anon_sym___vectorcall] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_signed] = ACTIONS(3087), - [anon_sym_unsigned] = ACTIONS(3087), - [anon_sym_long] = ACTIONS(3087), - [anon_sym_short] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_register] = ACTIONS(3087), - [anon_sym_inline] = ACTIONS(3087), - [anon_sym___inline] = ACTIONS(3087), - [anon_sym___inline__] = ACTIONS(3087), - [anon_sym___forceinline] = ACTIONS(3087), - [anon_sym_thread_local] = ACTIONS(3087), - [anon_sym___thread] = ACTIONS(3087), - [anon_sym_const] = ACTIONS(3087), - [anon_sym_constexpr] = ACTIONS(3087), - [anon_sym_volatile] = ACTIONS(3087), - [anon_sym_restrict] = ACTIONS(3087), - [anon_sym___restrict__] = ACTIONS(3087), - [anon_sym__Atomic] = ACTIONS(3087), - [anon_sym__Noreturn] = ACTIONS(3087), - [anon_sym_noreturn] = ACTIONS(3087), - [anon_sym_mutable] = ACTIONS(3087), - [anon_sym_constinit] = ACTIONS(3087), - [anon_sym_consteval] = ACTIONS(3087), - [sym_primitive_type] = ACTIONS(3087), - [anon_sym_enum] = ACTIONS(3087), - [anon_sym_class] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_union] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_else] = ACTIONS(3087), - [anon_sym_switch] = ACTIONS(3087), - [anon_sym_case] = ACTIONS(3087), - [anon_sym_default] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_goto] = ACTIONS(3087), - [anon_sym_not] = ACTIONS(3087), - [anon_sym_compl] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_sizeof] = ACTIONS(3087), - [anon_sym___alignof__] = ACTIONS(3087), - [anon_sym___alignof] = ACTIONS(3087), - [anon_sym__alignof] = ACTIONS(3087), - [anon_sym_alignof] = ACTIONS(3087), - [anon_sym__Alignof] = ACTIONS(3087), - [anon_sym_offsetof] = ACTIONS(3087), - [anon_sym__Generic] = ACTIONS(3087), - [anon_sym_asm] = ACTIONS(3087), - [anon_sym___asm__] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(3089), - [anon_sym_L_SQUOTE] = ACTIONS(3089), - [anon_sym_u_SQUOTE] = ACTIONS(3089), - [anon_sym_U_SQUOTE] = ACTIONS(3089), - [anon_sym_u8_SQUOTE] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_L_DQUOTE] = ACTIONS(3089), - [anon_sym_u_DQUOTE] = ACTIONS(3089), - [anon_sym_U_DQUOTE] = ACTIONS(3089), - [anon_sym_u8_DQUOTE] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(3089), - [sym_true] = ACTIONS(3087), - [sym_false] = ACTIONS(3087), - [anon_sym_NULL] = ACTIONS(3087), - [anon_sym_nullptr] = ACTIONS(3087), + [1140] = { + [sym__expression] = STATE(4122), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7003), + [sym_initializer_pair] = STATE(7003), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_RBRACE] = ACTIONS(4039), + [anon_sym_LBRACK] = ACTIONS(3999), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3087), - [anon_sym_decltype] = ACTIONS(3087), - [anon_sym_virtual] = ACTIONS(3087), - [anon_sym_alignas] = ACTIONS(3087), - [anon_sym_explicit] = ACTIONS(3087), - [anon_sym_typename] = ACTIONS(3087), - [anon_sym_template] = ACTIONS(3087), - [anon_sym_operator] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_delete] = ACTIONS(3087), - [anon_sym_throw] = ACTIONS(3087), - [anon_sym_namespace] = ACTIONS(3087), - [anon_sym_using] = ACTIONS(3087), - [anon_sym_static_assert] = ACTIONS(3087), - [anon_sym_concept] = ACTIONS(3087), - [anon_sym_co_return] = ACTIONS(3087), - [anon_sym_co_yield] = ACTIONS(3087), - [anon_sym_R_DQUOTE] = ACTIONS(3089), - [anon_sym_LR_DQUOTE] = ACTIONS(3089), - [anon_sym_uR_DQUOTE] = ACTIONS(3089), - [anon_sym_UR_DQUOTE] = ACTIONS(3089), - [anon_sym_u8R_DQUOTE] = ACTIONS(3089), - [anon_sym_co_await] = ACTIONS(3087), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_requires] = ACTIONS(3087), - [sym_this] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1085] = { - [sym_identifier] = ACTIONS(3053), - [aux_sym_preproc_include_token1] = ACTIONS(3053), - [aux_sym_preproc_def_token1] = ACTIONS(3053), - [aux_sym_preproc_if_token1] = ACTIONS(3053), - [aux_sym_preproc_if_token2] = ACTIONS(3053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3053), - [sym_preproc_directive] = ACTIONS(3053), - [anon_sym_LPAREN2] = ACTIONS(3055), - [anon_sym_BANG] = ACTIONS(3055), - [anon_sym_TILDE] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_AMP_AMP] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym___extension__] = ACTIONS(3053), - [anon_sym_typedef] = ACTIONS(3053), - [anon_sym_extern] = ACTIONS(3053), - [anon_sym___attribute__] = ACTIONS(3053), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3055), - [anon_sym___declspec] = ACTIONS(3053), - [anon_sym___based] = ACTIONS(3053), - [anon_sym___cdecl] = ACTIONS(3053), - [anon_sym___clrcall] = ACTIONS(3053), - [anon_sym___stdcall] = ACTIONS(3053), - [anon_sym___fastcall] = ACTIONS(3053), - [anon_sym___thiscall] = ACTIONS(3053), - [anon_sym___vectorcall] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3055), - [anon_sym_signed] = ACTIONS(3053), - [anon_sym_unsigned] = ACTIONS(3053), - [anon_sym_long] = ACTIONS(3053), - [anon_sym_short] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_static] = ACTIONS(3053), - [anon_sym_register] = ACTIONS(3053), - [anon_sym_inline] = ACTIONS(3053), - [anon_sym___inline] = ACTIONS(3053), - [anon_sym___inline__] = ACTIONS(3053), - [anon_sym___forceinline] = ACTIONS(3053), - [anon_sym_thread_local] = ACTIONS(3053), - [anon_sym___thread] = ACTIONS(3053), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_constexpr] = ACTIONS(3053), - [anon_sym_volatile] = ACTIONS(3053), - [anon_sym_restrict] = ACTIONS(3053), - [anon_sym___restrict__] = ACTIONS(3053), - [anon_sym__Atomic] = ACTIONS(3053), - [anon_sym__Noreturn] = ACTIONS(3053), - [anon_sym_noreturn] = ACTIONS(3053), - [anon_sym_mutable] = ACTIONS(3053), - [anon_sym_constinit] = ACTIONS(3053), - [anon_sym_consteval] = ACTIONS(3053), - [sym_primitive_type] = ACTIONS(3053), - [anon_sym_enum] = ACTIONS(3053), - [anon_sym_class] = ACTIONS(3053), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_union] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_else] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3053), - [anon_sym_case] = ACTIONS(3053), - [anon_sym_default] = ACTIONS(3053), - [anon_sym_while] = ACTIONS(3053), - [anon_sym_do] = ACTIONS(3053), - [anon_sym_for] = ACTIONS(3053), - [anon_sym_return] = ACTIONS(3053), - [anon_sym_break] = ACTIONS(3053), - [anon_sym_continue] = ACTIONS(3053), - [anon_sym_goto] = ACTIONS(3053), - [anon_sym_not] = ACTIONS(3053), - [anon_sym_compl] = ACTIONS(3053), - [anon_sym_DASH_DASH] = ACTIONS(3055), - [anon_sym_PLUS_PLUS] = ACTIONS(3055), - [anon_sym_sizeof] = ACTIONS(3053), - [anon_sym___alignof__] = ACTIONS(3053), - [anon_sym___alignof] = ACTIONS(3053), - [anon_sym__alignof] = ACTIONS(3053), - [anon_sym_alignof] = ACTIONS(3053), - [anon_sym__Alignof] = ACTIONS(3053), - [anon_sym_offsetof] = ACTIONS(3053), - [anon_sym__Generic] = ACTIONS(3053), - [anon_sym_asm] = ACTIONS(3053), - [anon_sym___asm__] = ACTIONS(3053), - [sym_number_literal] = ACTIONS(3055), - [anon_sym_L_SQUOTE] = ACTIONS(3055), - [anon_sym_u_SQUOTE] = ACTIONS(3055), - [anon_sym_U_SQUOTE] = ACTIONS(3055), - [anon_sym_u8_SQUOTE] = ACTIONS(3055), - [anon_sym_SQUOTE] = ACTIONS(3055), - [anon_sym_L_DQUOTE] = ACTIONS(3055), - [anon_sym_u_DQUOTE] = ACTIONS(3055), - [anon_sym_U_DQUOTE] = ACTIONS(3055), - [anon_sym_u8_DQUOTE] = ACTIONS(3055), - [anon_sym_DQUOTE] = ACTIONS(3055), - [sym_true] = ACTIONS(3053), - [sym_false] = ACTIONS(3053), - [anon_sym_NULL] = ACTIONS(3053), - [anon_sym_nullptr] = ACTIONS(3053), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3053), - [anon_sym_decltype] = ACTIONS(3053), - [anon_sym_virtual] = ACTIONS(3053), - [anon_sym_alignas] = ACTIONS(3053), - [anon_sym_explicit] = ACTIONS(3053), - [anon_sym_typename] = ACTIONS(3053), - [anon_sym_template] = ACTIONS(3053), - [anon_sym_operator] = ACTIONS(3053), - [anon_sym_try] = ACTIONS(3053), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_throw] = ACTIONS(3053), - [anon_sym_namespace] = ACTIONS(3053), - [anon_sym_using] = ACTIONS(3053), - [anon_sym_static_assert] = ACTIONS(3053), - [anon_sym_concept] = ACTIONS(3053), - [anon_sym_co_return] = ACTIONS(3053), - [anon_sym_co_yield] = ACTIONS(3053), - [anon_sym_R_DQUOTE] = ACTIONS(3055), - [anon_sym_LR_DQUOTE] = ACTIONS(3055), - [anon_sym_uR_DQUOTE] = ACTIONS(3055), - [anon_sym_UR_DQUOTE] = ACTIONS(3055), - [anon_sym_u8R_DQUOTE] = ACTIONS(3055), - [anon_sym_co_await] = ACTIONS(3053), - [anon_sym_new] = ACTIONS(3053), - [anon_sym_requires] = ACTIONS(3053), - [sym_this] = ACTIONS(3053), + [1141] = { + [sym__expression] = STATE(4122), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7003), + [sym_initializer_pair] = STATE(7003), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_RBRACE] = ACTIONS(4041), + [anon_sym_LBRACK] = ACTIONS(3999), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1086] = { - [sym_identifier] = ACTIONS(3049), - [aux_sym_preproc_include_token1] = ACTIONS(3049), - [aux_sym_preproc_def_token1] = ACTIONS(3049), - [aux_sym_preproc_if_token1] = ACTIONS(3049), - [aux_sym_preproc_if_token2] = ACTIONS(3049), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3049), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3049), - [sym_preproc_directive] = ACTIONS(3049), - [anon_sym_LPAREN2] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_SEMI] = ACTIONS(3051), - [anon_sym___extension__] = ACTIONS(3049), - [anon_sym_typedef] = ACTIONS(3049), - [anon_sym_extern] = ACTIONS(3049), - [anon_sym___attribute__] = ACTIONS(3049), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3051), - [anon_sym___declspec] = ACTIONS(3049), - [anon_sym___based] = ACTIONS(3049), - [anon_sym___cdecl] = ACTIONS(3049), - [anon_sym___clrcall] = ACTIONS(3049), - [anon_sym___stdcall] = ACTIONS(3049), - [anon_sym___fastcall] = ACTIONS(3049), - [anon_sym___thiscall] = ACTIONS(3049), - [anon_sym___vectorcall] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_signed] = ACTIONS(3049), - [anon_sym_unsigned] = ACTIONS(3049), - [anon_sym_long] = ACTIONS(3049), - [anon_sym_short] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_static] = ACTIONS(3049), - [anon_sym_register] = ACTIONS(3049), - [anon_sym_inline] = ACTIONS(3049), - [anon_sym___inline] = ACTIONS(3049), - [anon_sym___inline__] = ACTIONS(3049), - [anon_sym___forceinline] = ACTIONS(3049), - [anon_sym_thread_local] = ACTIONS(3049), - [anon_sym___thread] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_constexpr] = ACTIONS(3049), - [anon_sym_volatile] = ACTIONS(3049), - [anon_sym_restrict] = ACTIONS(3049), - [anon_sym___restrict__] = ACTIONS(3049), - [anon_sym__Atomic] = ACTIONS(3049), - [anon_sym__Noreturn] = ACTIONS(3049), - [anon_sym_noreturn] = ACTIONS(3049), - [anon_sym_mutable] = ACTIONS(3049), - [anon_sym_constinit] = ACTIONS(3049), - [anon_sym_consteval] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3049), - [anon_sym_enum] = ACTIONS(3049), - [anon_sym_class] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_union] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3049), - [anon_sym_switch] = ACTIONS(3049), - [anon_sym_case] = ACTIONS(3049), - [anon_sym_default] = ACTIONS(3049), - [anon_sym_while] = ACTIONS(3049), - [anon_sym_do] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3049), - [anon_sym_return] = ACTIONS(3049), - [anon_sym_break] = ACTIONS(3049), - [anon_sym_continue] = ACTIONS(3049), - [anon_sym_goto] = ACTIONS(3049), - [anon_sym_not] = ACTIONS(3049), - [anon_sym_compl] = ACTIONS(3049), - [anon_sym_DASH_DASH] = ACTIONS(3051), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_sizeof] = ACTIONS(3049), - [anon_sym___alignof__] = ACTIONS(3049), - [anon_sym___alignof] = ACTIONS(3049), - [anon_sym__alignof] = ACTIONS(3049), - [anon_sym_alignof] = ACTIONS(3049), - [anon_sym__Alignof] = ACTIONS(3049), - [anon_sym_offsetof] = ACTIONS(3049), - [anon_sym__Generic] = ACTIONS(3049), - [anon_sym_asm] = ACTIONS(3049), - [anon_sym___asm__] = ACTIONS(3049), - [sym_number_literal] = ACTIONS(3051), - [anon_sym_L_SQUOTE] = ACTIONS(3051), - [anon_sym_u_SQUOTE] = ACTIONS(3051), - [anon_sym_U_SQUOTE] = ACTIONS(3051), - [anon_sym_u8_SQUOTE] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3051), - [anon_sym_L_DQUOTE] = ACTIONS(3051), - [anon_sym_u_DQUOTE] = ACTIONS(3051), - [anon_sym_U_DQUOTE] = ACTIONS(3051), - [anon_sym_u8_DQUOTE] = ACTIONS(3051), - [anon_sym_DQUOTE] = ACTIONS(3051), - [sym_true] = ACTIONS(3049), - [sym_false] = ACTIONS(3049), - [anon_sym_NULL] = ACTIONS(3049), - [anon_sym_nullptr] = ACTIONS(3049), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3049), - [anon_sym_decltype] = ACTIONS(3049), - [anon_sym_virtual] = ACTIONS(3049), - [anon_sym_alignas] = ACTIONS(3049), - [anon_sym_explicit] = ACTIONS(3049), - [anon_sym_typename] = ACTIONS(3049), - [anon_sym_template] = ACTIONS(3049), - [anon_sym_operator] = ACTIONS(3049), - [anon_sym_try] = ACTIONS(3049), - [anon_sym_delete] = ACTIONS(3049), - [anon_sym_throw] = ACTIONS(3049), - [anon_sym_namespace] = ACTIONS(3049), - [anon_sym_using] = ACTIONS(3049), - [anon_sym_static_assert] = ACTIONS(3049), - [anon_sym_concept] = ACTIONS(3049), - [anon_sym_co_return] = ACTIONS(3049), - [anon_sym_co_yield] = ACTIONS(3049), - [anon_sym_R_DQUOTE] = ACTIONS(3051), - [anon_sym_LR_DQUOTE] = ACTIONS(3051), - [anon_sym_uR_DQUOTE] = ACTIONS(3051), - [anon_sym_UR_DQUOTE] = ACTIONS(3051), - [anon_sym_u8R_DQUOTE] = ACTIONS(3051), - [anon_sym_co_await] = ACTIONS(3049), - [anon_sym_new] = ACTIONS(3049), - [anon_sym_requires] = ACTIONS(3049), - [sym_this] = ACTIONS(3049), + [1142] = { + [sym__expression] = STATE(4122), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7003), + [sym_initializer_pair] = STATE(7003), + [sym_subscript_designator] = STATE(6129), + [sym_field_designator] = STATE(6129), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [aux_sym_initializer_pair_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(3999), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(211), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1087] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1143] = { + [sym__declaration_modifiers] = STATE(2020), + [sym__declaration_specifiers] = STATE(3794), + [sym_attribute_specifier] = STATE(2020), + [sym_attribute_declaration] = STATE(2020), + [sym_ms_declspec_modifier] = STATE(2020), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6034), + [sym__abstract_declarator] = STATE(6170), + [sym_parenthesized_declarator] = STATE(5742), + [sym_abstract_parenthesized_declarator] = STATE(5647), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_abstract_pointer_declarator] = STATE(5647), + [sym_function_declarator] = STATE(5742), + [sym_abstract_function_declarator] = STATE(5647), + [sym_array_declarator] = STATE(5742), + [sym_abstract_array_declarator] = STATE(5647), + [sym_storage_class_specifier] = STATE(2020), + [sym_type_qualifier] = STATE(2020), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_parameter_list] = STATE(3550), + [sym_parameter_declaration] = STATE(6840), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2020), + [sym_alignas_specifier] = STATE(2020), + [sym_dependent_type] = STATE(3114), + [sym_optional_parameter_declaration] = STATE(6840), + [sym_variadic_parameter_declaration] = STATE(6840), + [sym_reference_declarator] = STATE(5742), + [sym_abstract_reference_declarator] = STATE(5647), + [sym_structured_binding_declarator] = STATE(5742), + [sym__function_declarator_seq] = STATE(5604), + [sym_template_type] = STATE(2911), + [sym_template_function] = STATE(5742), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5185), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2020), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1962), + [anon_sym_RPAREN] = ACTIONS(4045), + [anon_sym_LPAREN2] = ACTIONS(4047), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(4049), + [anon_sym_AMP_AMP] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4053), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4055), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(4057), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(1948), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_operator] = ACTIONS(2000), }, - [1088] = { - [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), - [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_extern] = ACTIONS(3045), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3045), - [anon_sym_constinit] = ACTIONS(3045), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3045), - [anon_sym_alignas] = 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_using] = 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), + [1144] = { + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(1746), + [sym_raw_string_literal] = STATE(2643), + [sym_identifier] = ACTIONS(4059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4063), + [anon_sym_TILDE] = ACTIONS(4067), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4071), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4074), + [anon_sym___extension__] = ACTIONS(4059), + [anon_sym_extern] = ACTIONS(4059), + [anon_sym___attribute__] = ACTIONS(4059), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), + [anon_sym___declspec] = ACTIONS(4059), + [anon_sym___based] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4061), + [anon_sym_LBRACK] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(4091), + [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_mutable] = ACTIONS(4059), + [anon_sym_constinit] = ACTIONS(4059), + [anon_sym_consteval] = ACTIONS(4059), + [anon_sym_COLON] = ACTIONS(4093), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4091), + [anon_sym_or_eq] = ACTIONS(4091), + [anon_sym_xor_eq] = ACTIONS(4091), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4069), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4069), + [anon_sym_not_eq] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4059), + [anon_sym_decltype] = ACTIONS(4059), + [anon_sym_virtual] = ACTIONS(4059), + [anon_sym_alignas] = ACTIONS(4059), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(4059), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, - [1089] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1145] = { + [sym_string_literal] = STATE(2154), + [sym_template_argument_list] = STATE(1698), + [sym_raw_string_literal] = STATE(2154), + [sym_identifier] = ACTIONS(4059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4074), + [anon_sym_COMMA] = ACTIONS(4074), + [anon_sym_RPAREN] = ACTIONS(4074), + [anon_sym_LPAREN2] = ACTIONS(4074), + [anon_sym_TILDE] = ACTIONS(4067), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4071), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4101), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym___extension__] = ACTIONS(4059), + [anon_sym_extern] = ACTIONS(4059), + [anon_sym___attribute__] = ACTIONS(4059), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4067), + [anon_sym___declspec] = ACTIONS(4059), + [anon_sym___based] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4071), + [anon_sym_EQ] = ACTIONS(4071), + [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_mutable] = ACTIONS(4059), + [anon_sym_constinit] = ACTIONS(4059), + [anon_sym_consteval] = ACTIONS(4059), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4061), + [anon_sym_SLASH_EQ] = ACTIONS(4061), + [anon_sym_PERCENT_EQ] = ACTIONS(4061), + [anon_sym_PLUS_EQ] = ACTIONS(4061), + [anon_sym_DASH_EQ] = ACTIONS(4061), + [anon_sym_LT_LT_EQ] = ACTIONS(4061), + [anon_sym_GT_GT_EQ] = ACTIONS(4061), + [anon_sym_AMP_EQ] = ACTIONS(4061), + [anon_sym_CARET_EQ] = ACTIONS(4061), + [anon_sym_PIPE_EQ] = ACTIONS(4061), + [anon_sym_and_eq] = ACTIONS(4104), + [anon_sym_or_eq] = ACTIONS(4104), + [anon_sym_xor_eq] = ACTIONS(4104), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4069), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4069), + [anon_sym_not_eq] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4069), + [anon_sym_L_DQUOTE] = ACTIONS(4106), + [anon_sym_u_DQUOTE] = ACTIONS(4106), + [anon_sym_U_DQUOTE] = ACTIONS(4106), + [anon_sym_u8_DQUOTE] = ACTIONS(4106), + [anon_sym_DQUOTE] = ACTIONS(4106), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4059), + [anon_sym_decltype] = ACTIONS(4059), + [anon_sym_virtual] = ACTIONS(4059), + [anon_sym_alignas] = ACTIONS(4059), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(4059), + [anon_sym_R_DQUOTE] = ACTIONS(4108), + [anon_sym_LR_DQUOTE] = ACTIONS(4108), + [anon_sym_uR_DQUOTE] = ACTIONS(4108), + [anon_sym_UR_DQUOTE] = ACTIONS(4108), + [anon_sym_u8R_DQUOTE] = ACTIONS(4108), + [anon_sym_DASH_GT_STAR] = ACTIONS(4061), + }, + [1146] = { + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(1746), + [sym_raw_string_literal] = STATE(2643), + [sym_identifier] = ACTIONS(4059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4063), + [anon_sym_TILDE] = ACTIONS(4067), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4071), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4074), + [anon_sym___extension__] = ACTIONS(4059), + [anon_sym_extern] = ACTIONS(4059), + [anon_sym___attribute__] = ACTIONS(4059), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), + [anon_sym___declspec] = ACTIONS(4059), + [anon_sym___based] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(4091), + [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_mutable] = ACTIONS(4059), + [anon_sym_constinit] = ACTIONS(4059), + [anon_sym_consteval] = ACTIONS(4059), + [anon_sym_COLON] = ACTIONS(4110), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4091), + [anon_sym_or_eq] = ACTIONS(4091), + [anon_sym_xor_eq] = ACTIONS(4091), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4069), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4069), + [anon_sym_not_eq] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4059), + [anon_sym_decltype] = ACTIONS(4059), + [anon_sym_virtual] = ACTIONS(4059), + [anon_sym_alignas] = ACTIONS(4059), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(4059), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), + }, + [1147] = { + [sym_compound_statement] = STATE(6811), + [sym__expression] = STATE(3947), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6811), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(4112), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1090] = { - [sym_identifier] = ACTIONS(3103), - [aux_sym_preproc_include_token1] = ACTIONS(3103), - [aux_sym_preproc_def_token1] = ACTIONS(3103), - [aux_sym_preproc_if_token1] = ACTIONS(3103), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), - [sym_preproc_directive] = ACTIONS(3103), - [anon_sym_LPAREN2] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_AMP_AMP] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_SEMI] = ACTIONS(3105), - [anon_sym___extension__] = ACTIONS(3103), - [anon_sym_typedef] = ACTIONS(3103), - [anon_sym_extern] = ACTIONS(3103), - [anon_sym___attribute__] = ACTIONS(3103), - [anon_sym_COLON_COLON] = ACTIONS(3105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), - [anon_sym___declspec] = ACTIONS(3103), - [anon_sym___based] = ACTIONS(3103), - [anon_sym___cdecl] = ACTIONS(3103), - [anon_sym___clrcall] = ACTIONS(3103), - [anon_sym___stdcall] = ACTIONS(3103), - [anon_sym___fastcall] = ACTIONS(3103), - [anon_sym___thiscall] = ACTIONS(3103), - [anon_sym___vectorcall] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_RBRACE] = ACTIONS(3105), - [anon_sym_signed] = ACTIONS(3103), - [anon_sym_unsigned] = ACTIONS(3103), - [anon_sym_long] = ACTIONS(3103), - [anon_sym_short] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_register] = ACTIONS(3103), - [anon_sym_inline] = ACTIONS(3103), - [anon_sym___inline] = ACTIONS(3103), - [anon_sym___inline__] = ACTIONS(3103), - [anon_sym___forceinline] = ACTIONS(3103), - [anon_sym_thread_local] = ACTIONS(3103), - [anon_sym___thread] = ACTIONS(3103), - [anon_sym_const] = ACTIONS(3103), - [anon_sym_constexpr] = ACTIONS(3103), - [anon_sym_volatile] = ACTIONS(3103), - [anon_sym_restrict] = ACTIONS(3103), - [anon_sym___restrict__] = ACTIONS(3103), - [anon_sym__Atomic] = ACTIONS(3103), - [anon_sym__Noreturn] = ACTIONS(3103), - [anon_sym_noreturn] = ACTIONS(3103), - [anon_sym_mutable] = ACTIONS(3103), - [anon_sym_constinit] = ACTIONS(3103), - [anon_sym_consteval] = ACTIONS(3103), - [sym_primitive_type] = ACTIONS(3103), - [anon_sym_enum] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_union] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3103), - [anon_sym_else] = ACTIONS(3103), - [anon_sym_switch] = ACTIONS(3103), - [anon_sym_case] = ACTIONS(3103), - [anon_sym_default] = ACTIONS(3103), - [anon_sym_while] = ACTIONS(3103), - [anon_sym_do] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3103), - [anon_sym_return] = ACTIONS(3103), - [anon_sym_break] = ACTIONS(3103), - [anon_sym_continue] = ACTIONS(3103), - [anon_sym_goto] = ACTIONS(3103), - [anon_sym_not] = ACTIONS(3103), - [anon_sym_compl] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3105), - [anon_sym_sizeof] = ACTIONS(3103), - [anon_sym___alignof__] = ACTIONS(3103), - [anon_sym___alignof] = ACTIONS(3103), - [anon_sym__alignof] = ACTIONS(3103), - [anon_sym_alignof] = ACTIONS(3103), - [anon_sym__Alignof] = ACTIONS(3103), - [anon_sym_offsetof] = ACTIONS(3103), - [anon_sym__Generic] = ACTIONS(3103), - [anon_sym_asm] = ACTIONS(3103), - [anon_sym___asm__] = ACTIONS(3103), - [sym_number_literal] = ACTIONS(3105), - [anon_sym_L_SQUOTE] = ACTIONS(3105), - [anon_sym_u_SQUOTE] = ACTIONS(3105), - [anon_sym_U_SQUOTE] = ACTIONS(3105), - [anon_sym_u8_SQUOTE] = ACTIONS(3105), - [anon_sym_SQUOTE] = ACTIONS(3105), - [anon_sym_L_DQUOTE] = ACTIONS(3105), - [anon_sym_u_DQUOTE] = ACTIONS(3105), - [anon_sym_U_DQUOTE] = ACTIONS(3105), - [anon_sym_u8_DQUOTE] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym_true] = ACTIONS(3103), - [sym_false] = ACTIONS(3103), - [anon_sym_NULL] = ACTIONS(3103), - [anon_sym_nullptr] = ACTIONS(3103), + [1148] = { + [sym_compound_statement] = STATE(6633), + [sym__expression] = STATE(3939), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6633), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(4116), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(4118), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3103), - [anon_sym_decltype] = ACTIONS(3103), - [anon_sym_virtual] = ACTIONS(3103), - [anon_sym_alignas] = ACTIONS(3103), - [anon_sym_explicit] = ACTIONS(3103), - [anon_sym_typename] = ACTIONS(3103), - [anon_sym_template] = ACTIONS(3103), - [anon_sym_operator] = ACTIONS(3103), - [anon_sym_try] = ACTIONS(3103), - [anon_sym_delete] = ACTIONS(3103), - [anon_sym_throw] = ACTIONS(3103), - [anon_sym_namespace] = ACTIONS(3103), - [anon_sym_using] = ACTIONS(3103), - [anon_sym_static_assert] = ACTIONS(3103), - [anon_sym_concept] = ACTIONS(3103), - [anon_sym_co_return] = ACTIONS(3103), - [anon_sym_co_yield] = ACTIONS(3103), - [anon_sym_R_DQUOTE] = ACTIONS(3105), - [anon_sym_LR_DQUOTE] = ACTIONS(3105), - [anon_sym_uR_DQUOTE] = ACTIONS(3105), - [anon_sym_UR_DQUOTE] = ACTIONS(3105), - [anon_sym_u8R_DQUOTE] = ACTIONS(3105), - [anon_sym_co_await] = ACTIONS(3103), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_requires] = ACTIONS(3103), - [sym_this] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1091] = { - [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_extern] = ACTIONS(3023), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3023), - [anon_sym_constinit] = ACTIONS(3023), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3023), - [anon_sym_alignas] = 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_using] = 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), + [1149] = { + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(1747), + [sym_raw_string_literal] = STATE(2643), + [sym_identifier] = ACTIONS(4059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4074), + [anon_sym_TILDE] = ACTIONS(4067), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4071), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym___extension__] = ACTIONS(4059), + [anon_sym_extern] = ACTIONS(4059), + [anon_sym___attribute__] = ACTIONS(4059), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4067), + [anon_sym___declspec] = ACTIONS(4059), + [anon_sym___based] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4071), + [anon_sym_EQ] = ACTIONS(4091), + [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_mutable] = ACTIONS(4059), + [anon_sym_constinit] = ACTIONS(4059), + [anon_sym_consteval] = ACTIONS(4059), + [anon_sym_COLON] = ACTIONS(4110), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4091), + [anon_sym_or_eq] = ACTIONS(4091), + [anon_sym_xor_eq] = ACTIONS(4091), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4069), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4069), + [anon_sym_not_eq] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4059), + [anon_sym_decltype] = ACTIONS(4059), + [anon_sym_virtual] = ACTIONS(4059), + [anon_sym_alignas] = ACTIONS(4059), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(4059), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, - [1092] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [1150] = { + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(1747), + [sym_raw_string_literal] = STATE(2643), + [sym_identifier] = ACTIONS(4059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4074), + [anon_sym_TILDE] = ACTIONS(4067), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4071), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym___extension__] = ACTIONS(4059), + [anon_sym_extern] = ACTIONS(4059), + [anon_sym___attribute__] = ACTIONS(4059), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4067), + [anon_sym___declspec] = ACTIONS(4059), + [anon_sym___based] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4071), + [anon_sym_EQ] = ACTIONS(4091), + [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_mutable] = ACTIONS(4059), + [anon_sym_constinit] = ACTIONS(4059), + [anon_sym_consteval] = ACTIONS(4059), + [anon_sym_COLON] = ACTIONS(4120), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4091), + [anon_sym_or_eq] = ACTIONS(4091), + [anon_sym_xor_eq] = ACTIONS(4091), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4069), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4069), + [anon_sym_not_eq] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4059), + [anon_sym_decltype] = ACTIONS(4059), + [anon_sym_virtual] = ACTIONS(4059), + [anon_sym_alignas] = ACTIONS(4059), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(4059), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, - [1093] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [1151] = { + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(1747), + [sym_raw_string_literal] = STATE(2643), + [sym_identifier] = ACTIONS(4059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4074), + [anon_sym_TILDE] = ACTIONS(4067), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4071), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym___extension__] = ACTIONS(4059), + [anon_sym_extern] = ACTIONS(4059), + [anon_sym___attribute__] = ACTIONS(4059), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4067), + [anon_sym___declspec] = ACTIONS(4059), + [anon_sym___based] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4071), + [anon_sym_EQ] = ACTIONS(4091), + [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_mutable] = ACTIONS(4059), + [anon_sym_constinit] = ACTIONS(4059), + [anon_sym_consteval] = ACTIONS(4059), + [anon_sym_COLON] = ACTIONS(4122), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4091), + [anon_sym_or_eq] = ACTIONS(4091), + [anon_sym_xor_eq] = ACTIONS(4091), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4069), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4069), + [anon_sym_not_eq] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4059), + [anon_sym_decltype] = ACTIONS(4059), + [anon_sym_virtual] = ACTIONS(4059), + [anon_sym_alignas] = ACTIONS(4059), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(4059), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, - [1094] = { - [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_extern] = ACTIONS(3019), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3019), - [anon_sym_constinit] = ACTIONS(3019), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3019), - [anon_sym_alignas] = 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_using] = 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), + [1152] = { + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(1746), + [sym_raw_string_literal] = STATE(2643), + [sym_identifier] = ACTIONS(4059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4063), + [anon_sym_TILDE] = ACTIONS(4067), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4071), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4074), + [anon_sym___extension__] = ACTIONS(4059), + [anon_sym_extern] = ACTIONS(4059), + [anon_sym___attribute__] = ACTIONS(4059), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), + [anon_sym___declspec] = ACTIONS(4059), + [anon_sym___based] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(4091), + [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_mutable] = ACTIONS(4059), + [anon_sym_constinit] = ACTIONS(4059), + [anon_sym_consteval] = ACTIONS(4059), + [anon_sym_COLON] = ACTIONS(4124), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4091), + [anon_sym_or_eq] = ACTIONS(4091), + [anon_sym_xor_eq] = ACTIONS(4091), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4069), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4069), + [anon_sym_not_eq] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4059), + [anon_sym_decltype] = ACTIONS(4059), + [anon_sym_virtual] = ACTIONS(4059), + [anon_sym_alignas] = ACTIONS(4059), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(4059), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, - [1095] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1153] = { + [sym_compound_statement] = STATE(6739), + [sym__expression] = STATE(3963), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6739), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(4126), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(4128), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1096] = { - [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_extern] = ACTIONS(3015), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3015), - [anon_sym_constinit] = ACTIONS(3015), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3015), - [anon_sym_alignas] = 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_using] = 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), + [1154] = { + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(1747), + [sym_raw_string_literal] = STATE(2643), + [sym_identifier] = ACTIONS(4059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_RPAREN] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4074), + [anon_sym_TILDE] = ACTIONS(4067), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4071), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym___extension__] = ACTIONS(4059), + [anon_sym_extern] = ACTIONS(4059), + [anon_sym___attribute__] = ACTIONS(4059), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4067), + [anon_sym___declspec] = ACTIONS(4059), + [anon_sym___based] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4071), + [anon_sym_EQ] = ACTIONS(4091), + [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_mutable] = ACTIONS(4059), + [anon_sym_constinit] = ACTIONS(4059), + [anon_sym_consteval] = ACTIONS(4059), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4091), + [anon_sym_or_eq] = ACTIONS(4091), + [anon_sym_xor_eq] = ACTIONS(4091), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4069), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4069), + [anon_sym_not_eq] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4059), + [anon_sym_decltype] = ACTIONS(4059), + [anon_sym_virtual] = ACTIONS(4059), + [anon_sym_alignas] = ACTIONS(4059), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(4059), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, - [1097] = { - [ts_builtin_sym_end] = ACTIONS(2951), - [sym_identifier] = ACTIONS(2949), - [aux_sym_preproc_include_token1] = ACTIONS(2949), - [aux_sym_preproc_def_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token1] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), - [sym_preproc_directive] = ACTIONS(2949), - [anon_sym_LPAREN2] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2949), - [anon_sym_SEMI] = ACTIONS(2951), - [anon_sym___extension__] = ACTIONS(2949), - [anon_sym_typedef] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2949), - [anon_sym___attribute__] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), - [anon_sym___declspec] = ACTIONS(2949), - [anon_sym___based] = ACTIONS(2949), - [anon_sym___cdecl] = ACTIONS(2949), - [anon_sym___clrcall] = ACTIONS(2949), - [anon_sym___stdcall] = ACTIONS(2949), - [anon_sym___fastcall] = ACTIONS(2949), - [anon_sym___thiscall] = ACTIONS(2949), - [anon_sym___vectorcall] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_signed] = ACTIONS(2949), - [anon_sym_unsigned] = ACTIONS(2949), - [anon_sym_long] = ACTIONS(2949), - [anon_sym_short] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_register] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2949), - [anon_sym___inline] = ACTIONS(2949), - [anon_sym___inline__] = ACTIONS(2949), - [anon_sym___forceinline] = ACTIONS(2949), - [anon_sym_thread_local] = ACTIONS(2949), - [anon_sym___thread] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_constexpr] = ACTIONS(2949), - [anon_sym_volatile] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2949), - [anon_sym___restrict__] = ACTIONS(2949), - [anon_sym__Atomic] = ACTIONS(2949), - [anon_sym__Noreturn] = ACTIONS(2949), - [anon_sym_noreturn] = ACTIONS(2949), - [anon_sym_mutable] = ACTIONS(2949), - [anon_sym_constinit] = ACTIONS(2949), - [anon_sym_consteval] = ACTIONS(2949), - [sym_primitive_type] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_else] = ACTIONS(2949), - [anon_sym_switch] = ACTIONS(2949), - [anon_sym_case] = ACTIONS(2949), - [anon_sym_default] = ACTIONS(2949), - [anon_sym_while] = ACTIONS(2949), - [anon_sym_do] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym_not] = ACTIONS(2949), - [anon_sym_compl] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2949), - [anon_sym___alignof__] = ACTIONS(2949), - [anon_sym___alignof] = ACTIONS(2949), - [anon_sym__alignof] = ACTIONS(2949), - [anon_sym_alignof] = ACTIONS(2949), - [anon_sym__Alignof] = ACTIONS(2949), - [anon_sym_offsetof] = ACTIONS(2949), - [anon_sym__Generic] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym___asm__] = ACTIONS(2949), - [sym_number_literal] = ACTIONS(2951), - [anon_sym_L_SQUOTE] = ACTIONS(2951), - [anon_sym_u_SQUOTE] = ACTIONS(2951), - [anon_sym_U_SQUOTE] = ACTIONS(2951), - [anon_sym_u8_SQUOTE] = ACTIONS(2951), - [anon_sym_SQUOTE] = ACTIONS(2951), - [anon_sym_L_DQUOTE] = ACTIONS(2951), - [anon_sym_u_DQUOTE] = ACTIONS(2951), - [anon_sym_U_DQUOTE] = ACTIONS(2951), - [anon_sym_u8_DQUOTE] = ACTIONS(2951), - [anon_sym_DQUOTE] = ACTIONS(2951), - [sym_true] = ACTIONS(2949), - [sym_false] = ACTIONS(2949), - [anon_sym_NULL] = ACTIONS(2949), - [anon_sym_nullptr] = ACTIONS(2949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2949), - [anon_sym_decltype] = ACTIONS(2949), - [anon_sym_virtual] = ACTIONS(2949), - [anon_sym_alignas] = ACTIONS(2949), - [anon_sym_explicit] = ACTIONS(2949), - [anon_sym_typename] = ACTIONS(2949), - [anon_sym_template] = ACTIONS(2949), - [anon_sym_operator] = ACTIONS(2949), - [anon_sym_try] = ACTIONS(2949), - [anon_sym_delete] = ACTIONS(2949), - [anon_sym_throw] = ACTIONS(2949), - [anon_sym_namespace] = ACTIONS(2949), - [anon_sym_using] = ACTIONS(2949), - [anon_sym_static_assert] = ACTIONS(2949), - [anon_sym_concept] = ACTIONS(2949), - [anon_sym_co_return] = ACTIONS(2949), - [anon_sym_co_yield] = ACTIONS(2949), - [anon_sym_R_DQUOTE] = ACTIONS(2951), - [anon_sym_LR_DQUOTE] = ACTIONS(2951), - [anon_sym_uR_DQUOTE] = ACTIONS(2951), - [anon_sym_UR_DQUOTE] = ACTIONS(2951), - [anon_sym_u8R_DQUOTE] = ACTIONS(2951), - [anon_sym_co_await] = ACTIONS(2949), - [anon_sym_new] = ACTIONS(2949), - [anon_sym_requires] = ACTIONS(2949), - [sym_this] = ACTIONS(2949), + [1155] = { + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(1747), + [sym_raw_string_literal] = STATE(2643), + [sym_identifier] = ACTIONS(4059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4074), + [anon_sym_TILDE] = ACTIONS(4067), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4071), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym___extension__] = ACTIONS(4059), + [anon_sym_extern] = ACTIONS(4059), + [anon_sym___attribute__] = ACTIONS(4059), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4067), + [anon_sym___declspec] = ACTIONS(4059), + [anon_sym___based] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4071), + [anon_sym_EQ] = ACTIONS(4091), + [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_mutable] = ACTIONS(4059), + [anon_sym_constinit] = ACTIONS(4059), + [anon_sym_consteval] = ACTIONS(4059), + [anon_sym_COLON] = ACTIONS(4093), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4091), + [anon_sym_or_eq] = ACTIONS(4091), + [anon_sym_xor_eq] = ACTIONS(4091), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4069), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4069), + [anon_sym_not_eq] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4059), + [anon_sym_decltype] = ACTIONS(4059), + [anon_sym_virtual] = ACTIONS(4059), + [anon_sym_alignas] = ACTIONS(4059), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(4059), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, - [1098] = { - [ts_builtin_sym_end] = ACTIONS(2955), - [sym_identifier] = ACTIONS(2953), - [aux_sym_preproc_include_token1] = ACTIONS(2953), - [aux_sym_preproc_def_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token1] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2953), - [sym_preproc_directive] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2955), - [anon_sym___extension__] = ACTIONS(2953), - [anon_sym_typedef] = ACTIONS(2953), - [anon_sym_extern] = ACTIONS(2953), - [anon_sym___attribute__] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), - [anon_sym___declspec] = ACTIONS(2953), - [anon_sym___based] = ACTIONS(2953), - [anon_sym___cdecl] = ACTIONS(2953), - [anon_sym___clrcall] = ACTIONS(2953), - [anon_sym___stdcall] = ACTIONS(2953), - [anon_sym___fastcall] = ACTIONS(2953), - [anon_sym___thiscall] = ACTIONS(2953), - [anon_sym___vectorcall] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_signed] = ACTIONS(2953), - [anon_sym_unsigned] = ACTIONS(2953), - [anon_sym_long] = ACTIONS(2953), - [anon_sym_short] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2953), - [anon_sym_register] = ACTIONS(2953), - [anon_sym_inline] = ACTIONS(2953), - [anon_sym___inline] = ACTIONS(2953), - [anon_sym___inline__] = ACTIONS(2953), - [anon_sym___forceinline] = ACTIONS(2953), - [anon_sym_thread_local] = ACTIONS(2953), - [anon_sym___thread] = ACTIONS(2953), - [anon_sym_const] = ACTIONS(2953), - [anon_sym_constexpr] = ACTIONS(2953), - [anon_sym_volatile] = ACTIONS(2953), - [anon_sym_restrict] = ACTIONS(2953), - [anon_sym___restrict__] = ACTIONS(2953), - [anon_sym__Atomic] = ACTIONS(2953), - [anon_sym__Noreturn] = ACTIONS(2953), - [anon_sym_noreturn] = ACTIONS(2953), - [anon_sym_mutable] = ACTIONS(2953), - [anon_sym_constinit] = ACTIONS(2953), - [anon_sym_consteval] = ACTIONS(2953), - [sym_primitive_type] = ACTIONS(2953), - [anon_sym_enum] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2953), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_union] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_else] = ACTIONS(2953), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_case] = ACTIONS(2953), - [anon_sym_default] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_break] = ACTIONS(2953), - [anon_sym_continue] = ACTIONS(2953), - [anon_sym_goto] = ACTIONS(2953), - [anon_sym_not] = ACTIONS(2953), - [anon_sym_compl] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2955), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2953), - [anon_sym___alignof] = ACTIONS(2953), - [anon_sym__alignof] = ACTIONS(2953), - [anon_sym_alignof] = ACTIONS(2953), - [anon_sym__Alignof] = ACTIONS(2953), - [anon_sym_offsetof] = ACTIONS(2953), - [anon_sym__Generic] = ACTIONS(2953), - [anon_sym_asm] = ACTIONS(2953), - [anon_sym___asm__] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(2955), - [anon_sym_L_SQUOTE] = ACTIONS(2955), - [anon_sym_u_SQUOTE] = ACTIONS(2955), - [anon_sym_U_SQUOTE] = ACTIONS(2955), - [anon_sym_u8_SQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2955), - [anon_sym_L_DQUOTE] = ACTIONS(2955), - [anon_sym_u_DQUOTE] = ACTIONS(2955), - [anon_sym_U_DQUOTE] = ACTIONS(2955), - [anon_sym_u8_DQUOTE] = ACTIONS(2955), - [anon_sym_DQUOTE] = ACTIONS(2955), - [sym_true] = ACTIONS(2953), - [sym_false] = ACTIONS(2953), - [anon_sym_NULL] = ACTIONS(2953), - [anon_sym_nullptr] = ACTIONS(2953), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2953), - [anon_sym_decltype] = ACTIONS(2953), - [anon_sym_virtual] = ACTIONS(2953), - [anon_sym_alignas] = ACTIONS(2953), - [anon_sym_explicit] = ACTIONS(2953), - [anon_sym_typename] = ACTIONS(2953), - [anon_sym_template] = ACTIONS(2953), - [anon_sym_operator] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_delete] = ACTIONS(2953), - [anon_sym_throw] = ACTIONS(2953), - [anon_sym_namespace] = ACTIONS(2953), - [anon_sym_using] = ACTIONS(2953), - [anon_sym_static_assert] = ACTIONS(2953), - [anon_sym_concept] = ACTIONS(2953), - [anon_sym_co_return] = ACTIONS(2953), - [anon_sym_co_yield] = ACTIONS(2953), - [anon_sym_R_DQUOTE] = ACTIONS(2955), - [anon_sym_LR_DQUOTE] = ACTIONS(2955), - [anon_sym_uR_DQUOTE] = ACTIONS(2955), - [anon_sym_UR_DQUOTE] = ACTIONS(2955), - [anon_sym_u8R_DQUOTE] = ACTIONS(2955), - [anon_sym_co_await] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_requires] = ACTIONS(2953), - [sym_this] = ACTIONS(2953), + [1156] = { + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(1747), + [sym_raw_string_literal] = STATE(2643), + [sym_identifier] = ACTIONS(4059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4074), + [anon_sym_TILDE] = ACTIONS(4067), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4071), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym___extension__] = ACTIONS(4059), + [anon_sym_extern] = ACTIONS(4059), + [anon_sym___attribute__] = ACTIONS(4059), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4067), + [anon_sym___declspec] = ACTIONS(4059), + [anon_sym___based] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4071), + [anon_sym_EQ] = ACTIONS(4091), + [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_mutable] = ACTIONS(4059), + [anon_sym_constinit] = ACTIONS(4059), + [anon_sym_consteval] = ACTIONS(4059), + [anon_sym_COLON] = ACTIONS(4130), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4091), + [anon_sym_or_eq] = ACTIONS(4091), + [anon_sym_xor_eq] = ACTIONS(4091), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4069), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4069), + [anon_sym_not_eq] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4059), + [anon_sym_decltype] = ACTIONS(4059), + [anon_sym_virtual] = ACTIONS(4059), + [anon_sym_alignas] = ACTIONS(4059), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(4059), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, - [1099] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1157] = { + [sym_compound_statement] = STATE(6697), + [sym__expression] = STATE(4022), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6697), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(4132), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1100] = { - [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_extern] = ACTIONS(3027), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = 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_else] = 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), - [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), + [1158] = { + [sym_compound_statement] = STATE(6761), + [sym__expression] = STATE(4003), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6761), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(4136), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(4138), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3027), - [anon_sym_decltype] = ACTIONS(3027), - [anon_sym_virtual] = ACTIONS(3027), - [anon_sym_alignas] = 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_using] = 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_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1101] = { - [ts_builtin_sym_end] = ACTIONS(2963), - [sym_identifier] = ACTIONS(2961), - [aux_sym_preproc_include_token1] = ACTIONS(2961), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2961), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2961), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2961), - [sym_preproc_directive] = ACTIONS(2961), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_SEMI] = ACTIONS(2963), - [anon_sym___extension__] = ACTIONS(2961), - [anon_sym_typedef] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym_COLON_COLON] = ACTIONS(2963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), - [anon_sym___declspec] = ACTIONS(2961), - [anon_sym___based] = ACTIONS(2961), - [anon_sym___cdecl] = ACTIONS(2961), - [anon_sym___clrcall] = ACTIONS(2961), - [anon_sym___stdcall] = ACTIONS(2961), - [anon_sym___fastcall] = ACTIONS(2961), - [anon_sym___thiscall] = ACTIONS(2961), - [anon_sym___vectorcall] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_signed] = ACTIONS(2961), - [anon_sym_unsigned] = ACTIONS(2961), - [anon_sym_long] = ACTIONS(2961), - [anon_sym_short] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_static] = ACTIONS(2961), - [anon_sym_register] = ACTIONS(2961), - [anon_sym_inline] = ACTIONS(2961), - [anon_sym___inline] = ACTIONS(2961), - [anon_sym___inline__] = ACTIONS(2961), - [anon_sym___forceinline] = ACTIONS(2961), - [anon_sym_thread_local] = ACTIONS(2961), - [anon_sym___thread] = ACTIONS(2961), - [anon_sym_const] = ACTIONS(2961), - [anon_sym_constexpr] = ACTIONS(2961), - [anon_sym_volatile] = ACTIONS(2961), - [anon_sym_restrict] = ACTIONS(2961), - [anon_sym___restrict__] = ACTIONS(2961), - [anon_sym__Atomic] = ACTIONS(2961), - [anon_sym__Noreturn] = ACTIONS(2961), - [anon_sym_noreturn] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [sym_primitive_type] = ACTIONS(2961), - [anon_sym_enum] = ACTIONS(2961), - [anon_sym_class] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_union] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_else] = ACTIONS(2961), - [anon_sym_switch] = ACTIONS(2961), - [anon_sym_case] = ACTIONS(2961), - [anon_sym_default] = ACTIONS(2961), - [anon_sym_while] = ACTIONS(2961), - [anon_sym_do] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2961), - [anon_sym_break] = ACTIONS(2961), - [anon_sym_continue] = ACTIONS(2961), - [anon_sym_goto] = ACTIONS(2961), - [anon_sym_not] = ACTIONS(2961), - [anon_sym_compl] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_sizeof] = ACTIONS(2961), - [anon_sym___alignof__] = ACTIONS(2961), - [anon_sym___alignof] = ACTIONS(2961), - [anon_sym__alignof] = ACTIONS(2961), - [anon_sym_alignof] = ACTIONS(2961), - [anon_sym__Alignof] = ACTIONS(2961), - [anon_sym_offsetof] = ACTIONS(2961), - [anon_sym__Generic] = ACTIONS(2961), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2963), - [anon_sym_u_SQUOTE] = ACTIONS(2963), - [anon_sym_U_SQUOTE] = ACTIONS(2963), - [anon_sym_u8_SQUOTE] = ACTIONS(2963), - [anon_sym_SQUOTE] = ACTIONS(2963), - [anon_sym_L_DQUOTE] = ACTIONS(2963), - [anon_sym_u_DQUOTE] = ACTIONS(2963), - [anon_sym_U_DQUOTE] = ACTIONS(2963), - [anon_sym_u8_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [anon_sym_NULL] = ACTIONS(2961), - [anon_sym_nullptr] = ACTIONS(2961), + [1159] = { + [sym_compound_statement] = STATE(6614), + [sym__expression] = STATE(3971), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6614), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(4140), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(4142), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2961), - [anon_sym_decltype] = ACTIONS(2961), - [anon_sym_virtual] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym_explicit] = ACTIONS(2961), - [anon_sym_typename] = ACTIONS(2961), - [anon_sym_template] = ACTIONS(2961), - [anon_sym_operator] = ACTIONS(2961), - [anon_sym_try] = ACTIONS(2961), - [anon_sym_delete] = ACTIONS(2961), - [anon_sym_throw] = ACTIONS(2961), - [anon_sym_namespace] = ACTIONS(2961), - [anon_sym_using] = ACTIONS(2961), - [anon_sym_static_assert] = ACTIONS(2961), - [anon_sym_concept] = ACTIONS(2961), - [anon_sym_co_return] = ACTIONS(2961), - [anon_sym_co_yield] = ACTIONS(2961), - [anon_sym_R_DQUOTE] = ACTIONS(2963), - [anon_sym_LR_DQUOTE] = ACTIONS(2963), - [anon_sym_uR_DQUOTE] = ACTIONS(2963), - [anon_sym_UR_DQUOTE] = ACTIONS(2963), - [anon_sym_u8R_DQUOTE] = ACTIONS(2963), - [anon_sym_co_await] = ACTIONS(2961), - [anon_sym_new] = ACTIONS(2961), - [anon_sym_requires] = ACTIONS(2961), - [sym_this] = ACTIONS(2961), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1102] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1160] = { + [sym_compound_statement] = STATE(6486), + [sym__expression] = STATE(3976), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6486), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(4144), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(4146), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1103] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1161] = { + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(1746), + [sym_raw_string_literal] = STATE(2643), + [sym_identifier] = ACTIONS(4059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4063), + [anon_sym_TILDE] = ACTIONS(4067), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4071), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4074), + [anon_sym___extension__] = ACTIONS(4059), + [anon_sym_extern] = ACTIONS(4059), + [anon_sym___attribute__] = ACTIONS(4059), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), + [anon_sym___declspec] = ACTIONS(4059), + [anon_sym___based] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(4091), + [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_mutable] = ACTIONS(4059), + [anon_sym_constinit] = ACTIONS(4059), + [anon_sym_consteval] = ACTIONS(4059), + [anon_sym_COLON] = ACTIONS(4130), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4091), + [anon_sym_or_eq] = ACTIONS(4091), + [anon_sym_xor_eq] = ACTIONS(4091), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4069), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4069), + [anon_sym_not_eq] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4059), + [anon_sym_decltype] = ACTIONS(4059), + [anon_sym_virtual] = ACTIONS(4059), + [anon_sym_alignas] = ACTIONS(4059), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(4059), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), + }, + [1162] = { + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(1747), + [sym_raw_string_literal] = STATE(2643), + [sym_identifier] = ACTIONS(4059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4074), + [anon_sym_TILDE] = ACTIONS(4067), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4071), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym___extension__] = ACTIONS(4059), + [anon_sym_extern] = ACTIONS(4059), + [anon_sym___attribute__] = ACTIONS(4059), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4067), + [anon_sym___declspec] = ACTIONS(4059), + [anon_sym___based] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4071), + [anon_sym_EQ] = ACTIONS(4091), + [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_mutable] = ACTIONS(4059), + [anon_sym_constinit] = ACTIONS(4059), + [anon_sym_consteval] = ACTIONS(4059), + [anon_sym_COLON] = ACTIONS(4124), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4091), + [anon_sym_or_eq] = ACTIONS(4091), + [anon_sym_xor_eq] = ACTIONS(4091), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4069), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4069), + [anon_sym_not_eq] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4059), + [anon_sym_decltype] = ACTIONS(4059), + [anon_sym_virtual] = ACTIONS(4059), + [anon_sym_alignas] = ACTIONS(4059), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(4059), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), + }, + [1163] = { + [sym__expression] = STATE(3113), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7946), + [sym__unary_right_fold] = STATE(7957), + [sym__binary_fold] = STATE(7965), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [1164] = { + [sym__expression] = STATE(3013), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7814), + [sym__unary_right_fold] = STATE(7815), + [sym__binary_fold] = STATE(7817), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [1165] = { + [sym__expression] = STATE(3038), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7684), + [sym__unary_right_fold] = STATE(7685), + [sym__binary_fold] = STATE(7686), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [1166] = { + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(1746), + [sym_raw_string_literal] = STATE(2643), + [sym_identifier] = ACTIONS(4059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4063), + [anon_sym_TILDE] = ACTIONS(4067), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4071), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4074), + [anon_sym___extension__] = ACTIONS(4059), + [anon_sym_extern] = ACTIONS(4059), + [anon_sym___attribute__] = ACTIONS(4059), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), + [anon_sym___declspec] = ACTIONS(4059), + [anon_sym___based] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(4091), + [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_mutable] = ACTIONS(4059), + [anon_sym_constinit] = ACTIONS(4059), + [anon_sym_consteval] = ACTIONS(4059), + [anon_sym_COLON] = ACTIONS(4122), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4091), + [anon_sym_or_eq] = ACTIONS(4091), + [anon_sym_xor_eq] = ACTIONS(4091), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4069), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4069), + [anon_sym_not_eq] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4059), + [anon_sym_decltype] = ACTIONS(4059), + [anon_sym_virtual] = ACTIONS(4059), + [anon_sym_alignas] = ACTIONS(4059), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(4059), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), + }, + [1167] = { + [sym__expression] = STATE(4113), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7484), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7484), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(4148), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1104] = { - [ts_builtin_sym_end] = ACTIONS(3037), - [sym_identifier] = ACTIONS(3035), - [aux_sym_preproc_include_token1] = ACTIONS(3035), - [aux_sym_preproc_def_token1] = ACTIONS(3035), - [aux_sym_preproc_if_token1] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), - [sym_preproc_directive] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym___extension__] = ACTIONS(3035), - [anon_sym_typedef] = ACTIONS(3035), - [anon_sym_extern] = ACTIONS(3035), - [anon_sym___attribute__] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3037), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), - [anon_sym___declspec] = ACTIONS(3035), - [anon_sym___based] = ACTIONS(3035), - [anon_sym___cdecl] = ACTIONS(3035), - [anon_sym___clrcall] = ACTIONS(3035), - [anon_sym___stdcall] = ACTIONS(3035), - [anon_sym___fastcall] = ACTIONS(3035), - [anon_sym___thiscall] = ACTIONS(3035), - [anon_sym___vectorcall] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_signed] = ACTIONS(3035), - [anon_sym_unsigned] = ACTIONS(3035), - [anon_sym_long] = ACTIONS(3035), - [anon_sym_short] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_static] = ACTIONS(3035), - [anon_sym_register] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym___inline] = ACTIONS(3035), - [anon_sym___inline__] = ACTIONS(3035), - [anon_sym___forceinline] = ACTIONS(3035), - [anon_sym_thread_local] = ACTIONS(3035), - [anon_sym___thread] = ACTIONS(3035), - [anon_sym_const] = ACTIONS(3035), - [anon_sym_constexpr] = ACTIONS(3035), - [anon_sym_volatile] = ACTIONS(3035), - [anon_sym_restrict] = ACTIONS(3035), - [anon_sym___restrict__] = ACTIONS(3035), - [anon_sym__Atomic] = ACTIONS(3035), - [anon_sym__Noreturn] = ACTIONS(3035), - [anon_sym_noreturn] = ACTIONS(3035), - [anon_sym_mutable] = ACTIONS(3035), - [anon_sym_constinit] = ACTIONS(3035), - [anon_sym_consteval] = ACTIONS(3035), - [sym_primitive_type] = ACTIONS(3035), - [anon_sym_enum] = ACTIONS(3035), - [anon_sym_class] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_union] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_switch] = ACTIONS(3035), - [anon_sym_case] = ACTIONS(3035), - [anon_sym_default] = ACTIONS(3035), - [anon_sym_while] = ACTIONS(3035), - [anon_sym_do] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_goto] = ACTIONS(3035), - [anon_sym_not] = ACTIONS(3035), - [anon_sym_compl] = ACTIONS(3035), - [anon_sym_DASH_DASH] = ACTIONS(3037), - [anon_sym_PLUS_PLUS] = ACTIONS(3037), - [anon_sym_sizeof] = ACTIONS(3035), - [anon_sym___alignof__] = ACTIONS(3035), - [anon_sym___alignof] = ACTIONS(3035), - [anon_sym__alignof] = ACTIONS(3035), - [anon_sym_alignof] = ACTIONS(3035), - [anon_sym__Alignof] = ACTIONS(3035), - [anon_sym_offsetof] = ACTIONS(3035), - [anon_sym__Generic] = ACTIONS(3035), - [anon_sym_asm] = ACTIONS(3035), - [anon_sym___asm__] = ACTIONS(3035), - [sym_number_literal] = ACTIONS(3037), - [anon_sym_L_SQUOTE] = ACTIONS(3037), - [anon_sym_u_SQUOTE] = ACTIONS(3037), - [anon_sym_U_SQUOTE] = ACTIONS(3037), - [anon_sym_u8_SQUOTE] = ACTIONS(3037), - [anon_sym_SQUOTE] = ACTIONS(3037), - [anon_sym_L_DQUOTE] = ACTIONS(3037), - [anon_sym_u_DQUOTE] = ACTIONS(3037), - [anon_sym_U_DQUOTE] = ACTIONS(3037), - [anon_sym_u8_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [sym_true] = ACTIONS(3035), - [sym_false] = ACTIONS(3035), - [anon_sym_NULL] = ACTIONS(3035), - [anon_sym_nullptr] = ACTIONS(3035), + [1168] = { + [sym__expression] = STATE(4156), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7446), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7446), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3035), - [anon_sym_decltype] = ACTIONS(3035), - [anon_sym_virtual] = ACTIONS(3035), - [anon_sym_alignas] = ACTIONS(3035), - [anon_sym_explicit] = ACTIONS(3035), - [anon_sym_typename] = ACTIONS(3035), - [anon_sym_template] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_try] = ACTIONS(3035), - [anon_sym_delete] = ACTIONS(3035), - [anon_sym_throw] = ACTIONS(3035), - [anon_sym_namespace] = ACTIONS(3035), - [anon_sym_using] = ACTIONS(3035), - [anon_sym_static_assert] = ACTIONS(3035), - [anon_sym_concept] = ACTIONS(3035), - [anon_sym_co_return] = ACTIONS(3035), - [anon_sym_co_yield] = ACTIONS(3035), - [anon_sym_R_DQUOTE] = ACTIONS(3037), - [anon_sym_LR_DQUOTE] = ACTIONS(3037), - [anon_sym_uR_DQUOTE] = ACTIONS(3037), - [anon_sym_UR_DQUOTE] = ACTIONS(3037), - [anon_sym_u8R_DQUOTE] = ACTIONS(3037), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(3035), - [sym_this] = ACTIONS(3035), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1105] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1169] = { + [sym__expression] = STATE(2996), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7884), + [sym__unary_right_fold] = STATE(7892), + [sym__binary_fold] = STATE(7903), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [1170] = { + [sym__expression] = STATE(4106), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7343), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7343), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1106] = { - [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), - [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_extern] = ACTIONS(3045), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3045), - [anon_sym_constinit] = ACTIONS(3045), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3045), - [anon_sym_alignas] = 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_using] = 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), + [1171] = { + [sym__expression] = STATE(3102), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7502), + [sym__unary_right_fold] = STATE(7503), + [sym__binary_fold] = STATE(7505), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1107] = { - [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_extern] = ACTIONS(2999), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(2999), - [anon_sym_constinit] = ACTIONS(2999), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(2999), - [anon_sym_alignas] = 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_using] = 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), + [1172] = { + [sym__expression] = STATE(3107), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7459), + [sym__unary_right_fold] = STATE(7457), + [sym__binary_fold] = STATE(7456), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1108] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1173] = { + [sym__expression] = STATE(4115), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7514), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7514), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1109] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [1174] = { + [sym__expression] = STATE(3096), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7329), + [sym__unary_right_fold] = STATE(7330), + [sym__binary_fold] = STATE(7334), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1110] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1175] = { + [sym_compound_statement] = STATE(6987), + [sym__expression] = STATE(4047), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6987), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1111] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [1176] = { + [sym__expression] = STATE(3105), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7920), + [sym__unary_right_fold] = STATE(7917), + [sym__binary_fold] = STATE(7911), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1112] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1177] = { + [sym__expression] = STATE(4108), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7689), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7689), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1113] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [1178] = { + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(1748), + [sym_raw_string_literal] = STATE(2643), + [sym_identifier] = ACTIONS(4059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4074), + [anon_sym_COMMA] = ACTIONS(4074), + [anon_sym_RPAREN] = ACTIONS(4074), + [anon_sym_LPAREN2] = ACTIONS(4074), + [anon_sym_TILDE] = ACTIONS(4067), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4071), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym___extension__] = ACTIONS(4059), + [anon_sym_extern] = ACTIONS(4059), + [anon_sym___attribute__] = ACTIONS(4059), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4067), + [anon_sym___declspec] = ACTIONS(4059), + [anon_sym___based] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4071), + [anon_sym_EQ] = ACTIONS(4059), + [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_mutable] = ACTIONS(4059), + [anon_sym_constinit] = ACTIONS(4059), + [anon_sym_consteval] = ACTIONS(4059), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4091), + [anon_sym_or_eq] = ACTIONS(4091), + [anon_sym_xor_eq] = ACTIONS(4091), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4069), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4069), + [anon_sym_not_eq] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4059), + [anon_sym_decltype] = ACTIONS(4059), + [anon_sym_virtual] = ACTIONS(4059), + [anon_sym_alignas] = ACTIONS(4059), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(4059), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, - [1114] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [1179] = { + [sym__expression] = STATE(3079), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym__unary_left_fold] = STATE(7227), + [sym__unary_right_fold] = STATE(7226), + [sym__binary_fold] = STATE(7224), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1115] = { - [sym_identifier] = ACTIONS(2993), - [aux_sym_preproc_include_token1] = ACTIONS(2993), - [aux_sym_preproc_def_token1] = ACTIONS(2993), - [aux_sym_preproc_if_token1] = ACTIONS(2993), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2993), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2993), - [sym_preproc_directive] = ACTIONS(2993), - [anon_sym_LPAREN2] = ACTIONS(2995), - [anon_sym_BANG] = ACTIONS(2995), - [anon_sym_TILDE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_AMP_AMP] = ACTIONS(2995), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_SEMI] = ACTIONS(2995), - [anon_sym___extension__] = ACTIONS(2993), - [anon_sym_typedef] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(2993), - [anon_sym___attribute__] = ACTIONS(2993), - [anon_sym_COLON_COLON] = ACTIONS(2995), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2995), - [anon_sym___declspec] = ACTIONS(2993), - [anon_sym___based] = ACTIONS(2993), - [anon_sym___cdecl] = ACTIONS(2993), - [anon_sym___clrcall] = ACTIONS(2993), - [anon_sym___stdcall] = ACTIONS(2993), - [anon_sym___fastcall] = ACTIONS(2993), - [anon_sym___thiscall] = ACTIONS(2993), - [anon_sym___vectorcall] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_RBRACE] = ACTIONS(2995), - [anon_sym_signed] = ACTIONS(2993), - [anon_sym_unsigned] = ACTIONS(2993), - [anon_sym_long] = ACTIONS(2993), - [anon_sym_short] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_static] = ACTIONS(2993), - [anon_sym_register] = ACTIONS(2993), - [anon_sym_inline] = ACTIONS(2993), - [anon_sym___inline] = ACTIONS(2993), - [anon_sym___inline__] = ACTIONS(2993), - [anon_sym___forceinline] = ACTIONS(2993), - [anon_sym_thread_local] = ACTIONS(2993), - [anon_sym___thread] = ACTIONS(2993), - [anon_sym_const] = ACTIONS(2993), - [anon_sym_constexpr] = ACTIONS(2993), - [anon_sym_volatile] = ACTIONS(2993), - [anon_sym_restrict] = ACTIONS(2993), - [anon_sym___restrict__] = ACTIONS(2993), - [anon_sym__Atomic] = ACTIONS(2993), - [anon_sym__Noreturn] = ACTIONS(2993), - [anon_sym_noreturn] = ACTIONS(2993), - [anon_sym_mutable] = ACTIONS(2993), - [anon_sym_constinit] = ACTIONS(2993), - [anon_sym_consteval] = ACTIONS(2993), - [sym_primitive_type] = ACTIONS(2993), - [anon_sym_enum] = ACTIONS(2993), - [anon_sym_class] = ACTIONS(2993), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_union] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_else] = ACTIONS(2993), - [anon_sym_switch] = ACTIONS(2993), - [anon_sym_case] = ACTIONS(2993), - [anon_sym_default] = ACTIONS(2993), - [anon_sym_while] = ACTIONS(2993), - [anon_sym_do] = ACTIONS(2993), - [anon_sym_for] = ACTIONS(2993), - [anon_sym_return] = ACTIONS(2993), - [anon_sym_break] = ACTIONS(2993), - [anon_sym_continue] = ACTIONS(2993), - [anon_sym_goto] = ACTIONS(2993), - [anon_sym_not] = ACTIONS(2993), - [anon_sym_compl] = ACTIONS(2993), - [anon_sym_DASH_DASH] = ACTIONS(2995), - [anon_sym_PLUS_PLUS] = ACTIONS(2995), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2993), - [anon_sym___alignof] = ACTIONS(2993), - [anon_sym__alignof] = ACTIONS(2993), - [anon_sym_alignof] = ACTIONS(2993), - [anon_sym__Alignof] = ACTIONS(2993), - [anon_sym_offsetof] = ACTIONS(2993), - [anon_sym__Generic] = ACTIONS(2993), - [anon_sym_asm] = ACTIONS(2993), - [anon_sym___asm__] = ACTIONS(2993), - [sym_number_literal] = ACTIONS(2995), - [anon_sym_L_SQUOTE] = ACTIONS(2995), - [anon_sym_u_SQUOTE] = ACTIONS(2995), - [anon_sym_U_SQUOTE] = ACTIONS(2995), - [anon_sym_u8_SQUOTE] = ACTIONS(2995), - [anon_sym_SQUOTE] = ACTIONS(2995), - [anon_sym_L_DQUOTE] = ACTIONS(2995), - [anon_sym_u_DQUOTE] = ACTIONS(2995), - [anon_sym_U_DQUOTE] = ACTIONS(2995), - [anon_sym_u8_DQUOTE] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2995), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [anon_sym_NULL] = ACTIONS(2993), - [anon_sym_nullptr] = ACTIONS(2993), + [1180] = { + [sym__expression] = STATE(4162), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7208), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7208), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2993), - [anon_sym_decltype] = ACTIONS(2993), - [anon_sym_virtual] = ACTIONS(2993), - [anon_sym_alignas] = ACTIONS(2993), - [anon_sym_explicit] = ACTIONS(2993), - [anon_sym_typename] = ACTIONS(2993), - [anon_sym_template] = ACTIONS(2993), - [anon_sym_operator] = ACTIONS(2993), - [anon_sym_try] = ACTIONS(2993), - [anon_sym_delete] = ACTIONS(2993), - [anon_sym_throw] = ACTIONS(2993), - [anon_sym_namespace] = ACTIONS(2993), - [anon_sym_using] = ACTIONS(2993), - [anon_sym_static_assert] = ACTIONS(2993), - [anon_sym_concept] = ACTIONS(2993), - [anon_sym_co_return] = ACTIONS(2993), - [anon_sym_co_yield] = ACTIONS(2993), - [anon_sym_R_DQUOTE] = ACTIONS(2995), - [anon_sym_LR_DQUOTE] = ACTIONS(2995), - [anon_sym_uR_DQUOTE] = ACTIONS(2995), - [anon_sym_UR_DQUOTE] = ACTIONS(2995), - [anon_sym_u8R_DQUOTE] = ACTIONS(2995), - [anon_sym_co_await] = ACTIONS(2993), - [anon_sym_new] = ACTIONS(2993), - [anon_sym_requires] = ACTIONS(2993), - [sym_this] = ACTIONS(2993), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1116] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [1181] = { + [sym__expression] = STATE(3199), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1117] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1182] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4168), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1118] = { - [ts_builtin_sym_end] = ACTIONS(3051), - [sym_identifier] = ACTIONS(3049), - [aux_sym_preproc_include_token1] = ACTIONS(3049), - [aux_sym_preproc_def_token1] = ACTIONS(3049), - [aux_sym_preproc_if_token1] = ACTIONS(3049), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3049), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3049), - [sym_preproc_directive] = ACTIONS(3049), - [anon_sym_LPAREN2] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_SEMI] = ACTIONS(3051), - [anon_sym___extension__] = ACTIONS(3049), - [anon_sym_typedef] = ACTIONS(3049), - [anon_sym_extern] = ACTIONS(3049), - [anon_sym___attribute__] = ACTIONS(3049), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3051), - [anon_sym___declspec] = ACTIONS(3049), - [anon_sym___based] = ACTIONS(3049), - [anon_sym___cdecl] = ACTIONS(3049), - [anon_sym___clrcall] = ACTIONS(3049), - [anon_sym___stdcall] = ACTIONS(3049), - [anon_sym___fastcall] = ACTIONS(3049), - [anon_sym___thiscall] = ACTIONS(3049), - [anon_sym___vectorcall] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_signed] = ACTIONS(3049), - [anon_sym_unsigned] = ACTIONS(3049), - [anon_sym_long] = ACTIONS(3049), - [anon_sym_short] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_static] = ACTIONS(3049), - [anon_sym_register] = ACTIONS(3049), - [anon_sym_inline] = ACTIONS(3049), - [anon_sym___inline] = ACTIONS(3049), - [anon_sym___inline__] = ACTIONS(3049), - [anon_sym___forceinline] = ACTIONS(3049), - [anon_sym_thread_local] = ACTIONS(3049), - [anon_sym___thread] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_constexpr] = ACTIONS(3049), - [anon_sym_volatile] = ACTIONS(3049), - [anon_sym_restrict] = ACTIONS(3049), - [anon_sym___restrict__] = ACTIONS(3049), - [anon_sym__Atomic] = ACTIONS(3049), - [anon_sym__Noreturn] = ACTIONS(3049), - [anon_sym_noreturn] = ACTIONS(3049), - [anon_sym_mutable] = ACTIONS(3049), - [anon_sym_constinit] = ACTIONS(3049), - [anon_sym_consteval] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3049), - [anon_sym_enum] = ACTIONS(3049), - [anon_sym_class] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_union] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3049), - [anon_sym_switch] = ACTIONS(3049), - [anon_sym_case] = ACTIONS(3049), - [anon_sym_default] = ACTIONS(3049), - [anon_sym_while] = ACTIONS(3049), - [anon_sym_do] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3049), - [anon_sym_return] = ACTIONS(3049), - [anon_sym_break] = ACTIONS(3049), - [anon_sym_continue] = ACTIONS(3049), - [anon_sym_goto] = ACTIONS(3049), - [anon_sym_not] = ACTIONS(3049), - [anon_sym_compl] = ACTIONS(3049), - [anon_sym_DASH_DASH] = ACTIONS(3051), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_sizeof] = ACTIONS(3049), - [anon_sym___alignof__] = ACTIONS(3049), - [anon_sym___alignof] = ACTIONS(3049), - [anon_sym__alignof] = ACTIONS(3049), - [anon_sym_alignof] = ACTIONS(3049), - [anon_sym__Alignof] = ACTIONS(3049), - [anon_sym_offsetof] = ACTIONS(3049), - [anon_sym__Generic] = ACTIONS(3049), - [anon_sym_asm] = ACTIONS(3049), - [anon_sym___asm__] = ACTIONS(3049), - [sym_number_literal] = ACTIONS(3051), - [anon_sym_L_SQUOTE] = ACTIONS(3051), - [anon_sym_u_SQUOTE] = ACTIONS(3051), - [anon_sym_U_SQUOTE] = ACTIONS(3051), - [anon_sym_u8_SQUOTE] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3051), - [anon_sym_L_DQUOTE] = ACTIONS(3051), - [anon_sym_u_DQUOTE] = ACTIONS(3051), - [anon_sym_U_DQUOTE] = ACTIONS(3051), - [anon_sym_u8_DQUOTE] = ACTIONS(3051), - [anon_sym_DQUOTE] = ACTIONS(3051), - [sym_true] = ACTIONS(3049), - [sym_false] = ACTIONS(3049), - [anon_sym_NULL] = ACTIONS(3049), - [anon_sym_nullptr] = ACTIONS(3049), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3049), - [anon_sym_decltype] = ACTIONS(3049), - [anon_sym_virtual] = ACTIONS(3049), - [anon_sym_alignas] = ACTIONS(3049), - [anon_sym_explicit] = ACTIONS(3049), - [anon_sym_typename] = ACTIONS(3049), - [anon_sym_template] = ACTIONS(3049), - [anon_sym_operator] = ACTIONS(3049), - [anon_sym_try] = ACTIONS(3049), - [anon_sym_delete] = ACTIONS(3049), - [anon_sym_throw] = ACTIONS(3049), - [anon_sym_namespace] = ACTIONS(3049), - [anon_sym_using] = ACTIONS(3049), - [anon_sym_static_assert] = ACTIONS(3049), - [anon_sym_concept] = ACTIONS(3049), - [anon_sym_co_return] = ACTIONS(3049), - [anon_sym_co_yield] = ACTIONS(3049), - [anon_sym_R_DQUOTE] = ACTIONS(3051), - [anon_sym_LR_DQUOTE] = ACTIONS(3051), - [anon_sym_uR_DQUOTE] = ACTIONS(3051), - [anon_sym_UR_DQUOTE] = ACTIONS(3051), - [anon_sym_u8R_DQUOTE] = ACTIONS(3051), - [anon_sym_co_await] = ACTIONS(3049), - [anon_sym_new] = ACTIONS(3049), - [anon_sym_requires] = ACTIONS(3049), - [sym_this] = ACTIONS(3049), + [1183] = { + [sym__expression] = STATE(3437), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1119] = { - [sym_identifier] = ACTIONS(2981), - [aux_sym_preproc_include_token1] = ACTIONS(2981), - [aux_sym_preproc_def_token1] = ACTIONS(2981), - [aux_sym_preproc_if_token1] = ACTIONS(2981), - [aux_sym_preproc_if_token2] = ACTIONS(2981), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2981), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2981), - [sym_preproc_directive] = ACTIONS(2981), - [anon_sym_LPAREN2] = ACTIONS(2983), - [anon_sym_BANG] = ACTIONS(2983), - [anon_sym_TILDE] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_AMP_AMP] = ACTIONS(2983), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_SEMI] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(2981), - [anon_sym_typedef] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym___attribute__] = ACTIONS(2981), - [anon_sym_COLON_COLON] = ACTIONS(2983), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), - [anon_sym___declspec] = ACTIONS(2981), - [anon_sym___based] = ACTIONS(2981), - [anon_sym___cdecl] = ACTIONS(2981), - [anon_sym___clrcall] = ACTIONS(2981), - [anon_sym___stdcall] = ACTIONS(2981), - [anon_sym___fastcall] = ACTIONS(2981), - [anon_sym___thiscall] = ACTIONS(2981), - [anon_sym___vectorcall] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_signed] = ACTIONS(2981), - [anon_sym_unsigned] = ACTIONS(2981), - [anon_sym_long] = ACTIONS(2981), - [anon_sym_short] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_static] = ACTIONS(2981), - [anon_sym_register] = ACTIONS(2981), - [anon_sym_inline] = ACTIONS(2981), - [anon_sym___inline] = ACTIONS(2981), - [anon_sym___inline__] = ACTIONS(2981), - [anon_sym___forceinline] = ACTIONS(2981), - [anon_sym_thread_local] = ACTIONS(2981), - [anon_sym___thread] = ACTIONS(2981), - [anon_sym_const] = ACTIONS(2981), - [anon_sym_constexpr] = ACTIONS(2981), - [anon_sym_volatile] = ACTIONS(2981), - [anon_sym_restrict] = ACTIONS(2981), - [anon_sym___restrict__] = ACTIONS(2981), - [anon_sym__Atomic] = ACTIONS(2981), - [anon_sym__Noreturn] = ACTIONS(2981), - [anon_sym_noreturn] = ACTIONS(2981), - [anon_sym_mutable] = ACTIONS(2981), - [anon_sym_constinit] = ACTIONS(2981), - [anon_sym_consteval] = ACTIONS(2981), - [sym_primitive_type] = ACTIONS(2981), - [anon_sym_enum] = ACTIONS(2981), - [anon_sym_class] = ACTIONS(2981), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_union] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_else] = ACTIONS(2981), - [anon_sym_switch] = ACTIONS(2981), - [anon_sym_case] = ACTIONS(2981), - [anon_sym_default] = ACTIONS(2981), - [anon_sym_while] = ACTIONS(2981), - [anon_sym_do] = ACTIONS(2981), - [anon_sym_for] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_goto] = ACTIONS(2981), - [anon_sym_not] = ACTIONS(2981), - [anon_sym_compl] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_sizeof] = ACTIONS(2981), - [anon_sym___alignof__] = ACTIONS(2981), - [anon_sym___alignof] = ACTIONS(2981), - [anon_sym__alignof] = ACTIONS(2981), - [anon_sym_alignof] = ACTIONS(2981), - [anon_sym__Alignof] = ACTIONS(2981), - [anon_sym_offsetof] = ACTIONS(2981), - [anon_sym__Generic] = ACTIONS(2981), - [anon_sym_asm] = ACTIONS(2981), - [anon_sym___asm__] = ACTIONS(2981), - [sym_number_literal] = ACTIONS(2983), - [anon_sym_L_SQUOTE] = ACTIONS(2983), - [anon_sym_u_SQUOTE] = ACTIONS(2983), - [anon_sym_U_SQUOTE] = ACTIONS(2983), - [anon_sym_u8_SQUOTE] = ACTIONS(2983), - [anon_sym_SQUOTE] = ACTIONS(2983), - [anon_sym_L_DQUOTE] = ACTIONS(2983), - [anon_sym_u_DQUOTE] = ACTIONS(2983), - [anon_sym_U_DQUOTE] = ACTIONS(2983), - [anon_sym_u8_DQUOTE] = ACTIONS(2983), - [anon_sym_DQUOTE] = ACTIONS(2983), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [anon_sym_NULL] = ACTIONS(2981), - [anon_sym_nullptr] = ACTIONS(2981), + [1184] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4172), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2981), - [anon_sym_decltype] = ACTIONS(2981), - [anon_sym_virtual] = ACTIONS(2981), - [anon_sym_alignas] = ACTIONS(2981), - [anon_sym_explicit] = ACTIONS(2981), - [anon_sym_typename] = ACTIONS(2981), - [anon_sym_template] = ACTIONS(2981), - [anon_sym_operator] = ACTIONS(2981), - [anon_sym_try] = ACTIONS(2981), - [anon_sym_delete] = ACTIONS(2981), - [anon_sym_throw] = ACTIONS(2981), - [anon_sym_namespace] = ACTIONS(2981), - [anon_sym_using] = ACTIONS(2981), - [anon_sym_static_assert] = ACTIONS(2981), - [anon_sym_concept] = ACTIONS(2981), - [anon_sym_co_return] = ACTIONS(2981), - [anon_sym_co_yield] = ACTIONS(2981), - [anon_sym_R_DQUOTE] = ACTIONS(2983), - [anon_sym_LR_DQUOTE] = ACTIONS(2983), - [anon_sym_uR_DQUOTE] = ACTIONS(2983), - [anon_sym_UR_DQUOTE] = ACTIONS(2983), - [anon_sym_u8R_DQUOTE] = ACTIONS(2983), - [anon_sym_co_await] = ACTIONS(2981), - [anon_sym_new] = ACTIONS(2981), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2981), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1120] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1185] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4174), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1121] = { - [ts_builtin_sym_end] = ACTIONS(3055), - [sym_identifier] = ACTIONS(3053), - [aux_sym_preproc_include_token1] = ACTIONS(3053), - [aux_sym_preproc_def_token1] = ACTIONS(3053), - [aux_sym_preproc_if_token1] = ACTIONS(3053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3053), - [sym_preproc_directive] = ACTIONS(3053), - [anon_sym_LPAREN2] = ACTIONS(3055), - [anon_sym_BANG] = ACTIONS(3055), - [anon_sym_TILDE] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_AMP_AMP] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym___extension__] = ACTIONS(3053), - [anon_sym_typedef] = ACTIONS(3053), - [anon_sym_extern] = ACTIONS(3053), - [anon_sym___attribute__] = ACTIONS(3053), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3055), - [anon_sym___declspec] = ACTIONS(3053), - [anon_sym___based] = ACTIONS(3053), - [anon_sym___cdecl] = ACTIONS(3053), - [anon_sym___clrcall] = ACTIONS(3053), - [anon_sym___stdcall] = ACTIONS(3053), - [anon_sym___fastcall] = ACTIONS(3053), - [anon_sym___thiscall] = ACTIONS(3053), - [anon_sym___vectorcall] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3055), - [anon_sym_signed] = ACTIONS(3053), - [anon_sym_unsigned] = ACTIONS(3053), - [anon_sym_long] = ACTIONS(3053), - [anon_sym_short] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_static] = ACTIONS(3053), - [anon_sym_register] = ACTIONS(3053), - [anon_sym_inline] = ACTIONS(3053), - [anon_sym___inline] = ACTIONS(3053), - [anon_sym___inline__] = ACTIONS(3053), - [anon_sym___forceinline] = ACTIONS(3053), - [anon_sym_thread_local] = ACTIONS(3053), - [anon_sym___thread] = ACTIONS(3053), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_constexpr] = ACTIONS(3053), - [anon_sym_volatile] = ACTIONS(3053), - [anon_sym_restrict] = ACTIONS(3053), - [anon_sym___restrict__] = ACTIONS(3053), - [anon_sym__Atomic] = ACTIONS(3053), - [anon_sym__Noreturn] = ACTIONS(3053), - [anon_sym_noreturn] = ACTIONS(3053), - [anon_sym_mutable] = ACTIONS(3053), - [anon_sym_constinit] = ACTIONS(3053), - [anon_sym_consteval] = ACTIONS(3053), - [sym_primitive_type] = ACTIONS(3053), - [anon_sym_enum] = ACTIONS(3053), - [anon_sym_class] = ACTIONS(3053), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_union] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_else] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3053), - [anon_sym_case] = ACTIONS(3053), - [anon_sym_default] = ACTIONS(3053), - [anon_sym_while] = ACTIONS(3053), - [anon_sym_do] = ACTIONS(3053), - [anon_sym_for] = ACTIONS(3053), - [anon_sym_return] = ACTIONS(3053), - [anon_sym_break] = ACTIONS(3053), - [anon_sym_continue] = ACTIONS(3053), - [anon_sym_goto] = ACTIONS(3053), - [anon_sym_not] = ACTIONS(3053), - [anon_sym_compl] = ACTIONS(3053), - [anon_sym_DASH_DASH] = ACTIONS(3055), - [anon_sym_PLUS_PLUS] = ACTIONS(3055), - [anon_sym_sizeof] = ACTIONS(3053), - [anon_sym___alignof__] = ACTIONS(3053), - [anon_sym___alignof] = ACTIONS(3053), - [anon_sym__alignof] = ACTIONS(3053), - [anon_sym_alignof] = ACTIONS(3053), - [anon_sym__Alignof] = ACTIONS(3053), - [anon_sym_offsetof] = ACTIONS(3053), - [anon_sym__Generic] = ACTIONS(3053), - [anon_sym_asm] = ACTIONS(3053), - [anon_sym___asm__] = ACTIONS(3053), - [sym_number_literal] = ACTIONS(3055), - [anon_sym_L_SQUOTE] = ACTIONS(3055), - [anon_sym_u_SQUOTE] = ACTIONS(3055), - [anon_sym_U_SQUOTE] = ACTIONS(3055), - [anon_sym_u8_SQUOTE] = ACTIONS(3055), - [anon_sym_SQUOTE] = ACTIONS(3055), - [anon_sym_L_DQUOTE] = ACTIONS(3055), - [anon_sym_u_DQUOTE] = ACTIONS(3055), - [anon_sym_U_DQUOTE] = ACTIONS(3055), - [anon_sym_u8_DQUOTE] = ACTIONS(3055), - [anon_sym_DQUOTE] = ACTIONS(3055), - [sym_true] = ACTIONS(3053), - [sym_false] = ACTIONS(3053), - [anon_sym_NULL] = ACTIONS(3053), - [anon_sym_nullptr] = ACTIONS(3053), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3053), - [anon_sym_decltype] = ACTIONS(3053), - [anon_sym_virtual] = ACTIONS(3053), - [anon_sym_alignas] = ACTIONS(3053), - [anon_sym_explicit] = ACTIONS(3053), - [anon_sym_typename] = ACTIONS(3053), - [anon_sym_template] = ACTIONS(3053), - [anon_sym_operator] = ACTIONS(3053), - [anon_sym_try] = ACTIONS(3053), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_throw] = ACTIONS(3053), - [anon_sym_namespace] = ACTIONS(3053), - [anon_sym_using] = ACTIONS(3053), - [anon_sym_static_assert] = ACTIONS(3053), - [anon_sym_concept] = ACTIONS(3053), - [anon_sym_co_return] = ACTIONS(3053), - [anon_sym_co_yield] = ACTIONS(3053), - [anon_sym_R_DQUOTE] = ACTIONS(3055), - [anon_sym_LR_DQUOTE] = ACTIONS(3055), - [anon_sym_uR_DQUOTE] = ACTIONS(3055), - [anon_sym_UR_DQUOTE] = ACTIONS(3055), - [anon_sym_u8R_DQUOTE] = ACTIONS(3055), - [anon_sym_co_await] = ACTIONS(3053), - [anon_sym_new] = ACTIONS(3053), - [anon_sym_requires] = ACTIONS(3053), - [sym_this] = ACTIONS(3053), + [1186] = { + [sym__expression] = STATE(4139), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [1122] = { - [sym_identifier] = ACTIONS(2973), - [aux_sym_preproc_include_token1] = ACTIONS(2973), - [aux_sym_preproc_def_token1] = ACTIONS(2973), - [aux_sym_preproc_if_token1] = ACTIONS(2973), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2975), - [anon_sym_BANG] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym___extension__] = ACTIONS(2973), - [anon_sym_typedef] = ACTIONS(2973), - [anon_sym_extern] = ACTIONS(2973), - [anon_sym___attribute__] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), - [anon_sym___declspec] = ACTIONS(2973), - [anon_sym___based] = ACTIONS(2973), - [anon_sym___cdecl] = ACTIONS(2973), - [anon_sym___clrcall] = ACTIONS(2973), - [anon_sym___stdcall] = ACTIONS(2973), - [anon_sym___fastcall] = ACTIONS(2973), - [anon_sym___thiscall] = ACTIONS(2973), - [anon_sym___vectorcall] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_RBRACE] = ACTIONS(2975), - [anon_sym_signed] = ACTIONS(2973), - [anon_sym_unsigned] = ACTIONS(2973), - [anon_sym_long] = ACTIONS(2973), - [anon_sym_short] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_static] = ACTIONS(2973), - [anon_sym_register] = ACTIONS(2973), - [anon_sym_inline] = ACTIONS(2973), - [anon_sym___inline] = ACTIONS(2973), - [anon_sym___inline__] = ACTIONS(2973), - [anon_sym___forceinline] = ACTIONS(2973), - [anon_sym_thread_local] = ACTIONS(2973), - [anon_sym___thread] = ACTIONS(2973), - [anon_sym_const] = ACTIONS(2973), - [anon_sym_constexpr] = ACTIONS(2973), - [anon_sym_volatile] = ACTIONS(2973), - [anon_sym_restrict] = ACTIONS(2973), - [anon_sym___restrict__] = ACTIONS(2973), - [anon_sym__Atomic] = ACTIONS(2973), - [anon_sym__Noreturn] = ACTIONS(2973), - [anon_sym_noreturn] = ACTIONS(2973), - [anon_sym_mutable] = ACTIONS(2973), - [anon_sym_constinit] = ACTIONS(2973), - [anon_sym_consteval] = ACTIONS(2973), - [sym_primitive_type] = ACTIONS(2973), - [anon_sym_enum] = ACTIONS(2973), - [anon_sym_class] = ACTIONS(2973), - [anon_sym_struct] = ACTIONS(2973), - [anon_sym_union] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_else] = ACTIONS(2973), - [anon_sym_switch] = ACTIONS(2973), - [anon_sym_case] = ACTIONS(2973), - [anon_sym_default] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_break] = ACTIONS(2973), - [anon_sym_continue] = ACTIONS(2973), - [anon_sym_goto] = ACTIONS(2973), - [anon_sym_not] = ACTIONS(2973), - [anon_sym_compl] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2975), - [anon_sym_PLUS_PLUS] = ACTIONS(2975), - [anon_sym_sizeof] = ACTIONS(2973), - [anon_sym___alignof__] = ACTIONS(2973), - [anon_sym___alignof] = ACTIONS(2973), - [anon_sym__alignof] = ACTIONS(2973), - [anon_sym_alignof] = ACTIONS(2973), - [anon_sym__Alignof] = ACTIONS(2973), - [anon_sym_offsetof] = ACTIONS(2973), - [anon_sym__Generic] = ACTIONS(2973), - [anon_sym_asm] = ACTIONS(2973), - [anon_sym___asm__] = ACTIONS(2973), - [sym_number_literal] = ACTIONS(2975), - [anon_sym_L_SQUOTE] = ACTIONS(2975), - [anon_sym_u_SQUOTE] = ACTIONS(2975), - [anon_sym_U_SQUOTE] = ACTIONS(2975), - [anon_sym_u8_SQUOTE] = ACTIONS(2975), - [anon_sym_SQUOTE] = ACTIONS(2975), - [anon_sym_L_DQUOTE] = ACTIONS(2975), - [anon_sym_u_DQUOTE] = ACTIONS(2975), - [anon_sym_U_DQUOTE] = ACTIONS(2975), - [anon_sym_u8_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE] = ACTIONS(2975), - [sym_true] = ACTIONS(2973), - [sym_false] = ACTIONS(2973), - [anon_sym_NULL] = ACTIONS(2973), - [anon_sym_nullptr] = ACTIONS(2973), + [1187] = { + [sym__expression] = STATE(3945), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_initializer_list] = STATE(6496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4176), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2973), - [anon_sym_decltype] = ACTIONS(2973), - [anon_sym_virtual] = ACTIONS(2973), - [anon_sym_alignas] = ACTIONS(2973), - [anon_sym_explicit] = ACTIONS(2973), - [anon_sym_typename] = ACTIONS(2973), - [anon_sym_template] = ACTIONS(2973), - [anon_sym_operator] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_throw] = ACTIONS(2973), - [anon_sym_namespace] = ACTIONS(2973), - [anon_sym_using] = ACTIONS(2973), - [anon_sym_static_assert] = ACTIONS(2973), - [anon_sym_concept] = ACTIONS(2973), - [anon_sym_co_return] = ACTIONS(2973), - [anon_sym_co_yield] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_requires] = ACTIONS(2973), - [sym_this] = ACTIONS(2973), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1123] = { - [ts_builtin_sym_end] = ACTIONS(3089), - [sym_identifier] = ACTIONS(3087), - [aux_sym_preproc_include_token1] = ACTIONS(3087), - [aux_sym_preproc_def_token1] = ACTIONS(3087), - [aux_sym_preproc_if_token1] = ACTIONS(3087), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), - [sym_preproc_directive] = ACTIONS(3087), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_SEMI] = ACTIONS(3089), - [anon_sym___extension__] = ACTIONS(3087), - [anon_sym_typedef] = ACTIONS(3087), - [anon_sym_extern] = ACTIONS(3087), - [anon_sym___attribute__] = ACTIONS(3087), - [anon_sym_COLON_COLON] = ACTIONS(3089), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), - [anon_sym___declspec] = ACTIONS(3087), - [anon_sym___based] = ACTIONS(3087), - [anon_sym___cdecl] = ACTIONS(3087), - [anon_sym___clrcall] = ACTIONS(3087), - [anon_sym___stdcall] = ACTIONS(3087), - [anon_sym___fastcall] = ACTIONS(3087), - [anon_sym___thiscall] = ACTIONS(3087), - [anon_sym___vectorcall] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_signed] = ACTIONS(3087), - [anon_sym_unsigned] = ACTIONS(3087), - [anon_sym_long] = ACTIONS(3087), - [anon_sym_short] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_register] = ACTIONS(3087), - [anon_sym_inline] = ACTIONS(3087), - [anon_sym___inline] = ACTIONS(3087), - [anon_sym___inline__] = ACTIONS(3087), - [anon_sym___forceinline] = ACTIONS(3087), - [anon_sym_thread_local] = ACTIONS(3087), - [anon_sym___thread] = ACTIONS(3087), - [anon_sym_const] = ACTIONS(3087), - [anon_sym_constexpr] = ACTIONS(3087), - [anon_sym_volatile] = ACTIONS(3087), - [anon_sym_restrict] = ACTIONS(3087), - [anon_sym___restrict__] = ACTIONS(3087), - [anon_sym__Atomic] = ACTIONS(3087), - [anon_sym__Noreturn] = ACTIONS(3087), - [anon_sym_noreturn] = ACTIONS(3087), - [anon_sym_mutable] = ACTIONS(3087), - [anon_sym_constinit] = ACTIONS(3087), - [anon_sym_consteval] = ACTIONS(3087), - [sym_primitive_type] = ACTIONS(3087), - [anon_sym_enum] = ACTIONS(3087), - [anon_sym_class] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_union] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_else] = ACTIONS(3087), - [anon_sym_switch] = ACTIONS(3087), - [anon_sym_case] = ACTIONS(3087), - [anon_sym_default] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_goto] = ACTIONS(3087), - [anon_sym_not] = ACTIONS(3087), - [anon_sym_compl] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_sizeof] = ACTIONS(3087), - [anon_sym___alignof__] = ACTIONS(3087), - [anon_sym___alignof] = ACTIONS(3087), - [anon_sym__alignof] = ACTIONS(3087), - [anon_sym_alignof] = ACTIONS(3087), - [anon_sym__Alignof] = ACTIONS(3087), - [anon_sym_offsetof] = ACTIONS(3087), - [anon_sym__Generic] = ACTIONS(3087), - [anon_sym_asm] = ACTIONS(3087), - [anon_sym___asm__] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(3089), - [anon_sym_L_SQUOTE] = ACTIONS(3089), - [anon_sym_u_SQUOTE] = ACTIONS(3089), - [anon_sym_U_SQUOTE] = ACTIONS(3089), - [anon_sym_u8_SQUOTE] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_L_DQUOTE] = ACTIONS(3089), - [anon_sym_u_DQUOTE] = ACTIONS(3089), - [anon_sym_U_DQUOTE] = ACTIONS(3089), - [anon_sym_u8_DQUOTE] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(3089), - [sym_true] = ACTIONS(3087), - [sym_false] = ACTIONS(3087), - [anon_sym_NULL] = ACTIONS(3087), - [anon_sym_nullptr] = ACTIONS(3087), + [1188] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3087), - [anon_sym_decltype] = ACTIONS(3087), - [anon_sym_virtual] = ACTIONS(3087), - [anon_sym_alignas] = ACTIONS(3087), - [anon_sym_explicit] = ACTIONS(3087), - [anon_sym_typename] = ACTIONS(3087), - [anon_sym_template] = ACTIONS(3087), - [anon_sym_operator] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_delete] = ACTIONS(3087), - [anon_sym_throw] = ACTIONS(3087), - [anon_sym_namespace] = ACTIONS(3087), - [anon_sym_using] = ACTIONS(3087), - [anon_sym_static_assert] = ACTIONS(3087), - [anon_sym_concept] = ACTIONS(3087), - [anon_sym_co_return] = ACTIONS(3087), - [anon_sym_co_yield] = ACTIONS(3087), - [anon_sym_R_DQUOTE] = ACTIONS(3089), - [anon_sym_LR_DQUOTE] = ACTIONS(3089), - [anon_sym_uR_DQUOTE] = ACTIONS(3089), - [anon_sym_UR_DQUOTE] = ACTIONS(3089), - [anon_sym_u8R_DQUOTE] = ACTIONS(3089), - [anon_sym_co_await] = ACTIONS(3087), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_requires] = ACTIONS(3087), - [sym_this] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1124] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [1189] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4180), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1125] = { - [sym_identifier] = ACTIONS(2957), - [aux_sym_preproc_include_token1] = ACTIONS(2957), - [aux_sym_preproc_def_token1] = ACTIONS(2957), - [aux_sym_preproc_if_token1] = ACTIONS(2957), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2957), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2957), - [sym_preproc_directive] = ACTIONS(2957), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2957), - [anon_sym_SEMI] = ACTIONS(2959), - [anon_sym___extension__] = ACTIONS(2957), - [anon_sym_typedef] = ACTIONS(2957), - [anon_sym_extern] = ACTIONS(2957), - [anon_sym___attribute__] = ACTIONS(2957), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), - [anon_sym___declspec] = ACTIONS(2957), - [anon_sym___based] = ACTIONS(2957), - [anon_sym___cdecl] = ACTIONS(2957), - [anon_sym___clrcall] = ACTIONS(2957), - [anon_sym___stdcall] = ACTIONS(2957), - [anon_sym___fastcall] = ACTIONS(2957), - [anon_sym___thiscall] = ACTIONS(2957), - [anon_sym___vectorcall] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_RBRACE] = ACTIONS(2959), - [anon_sym_signed] = ACTIONS(2957), - [anon_sym_unsigned] = ACTIONS(2957), - [anon_sym_long] = ACTIONS(2957), - [anon_sym_short] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_static] = ACTIONS(2957), - [anon_sym_register] = ACTIONS(2957), - [anon_sym_inline] = ACTIONS(2957), - [anon_sym___inline] = ACTIONS(2957), - [anon_sym___inline__] = ACTIONS(2957), - [anon_sym___forceinline] = ACTIONS(2957), - [anon_sym_thread_local] = ACTIONS(2957), - [anon_sym___thread] = ACTIONS(2957), - [anon_sym_const] = ACTIONS(2957), - [anon_sym_constexpr] = ACTIONS(2957), - [anon_sym_volatile] = ACTIONS(2957), - [anon_sym_restrict] = ACTIONS(2957), - [anon_sym___restrict__] = ACTIONS(2957), - [anon_sym__Atomic] = ACTIONS(2957), - [anon_sym__Noreturn] = ACTIONS(2957), - [anon_sym_noreturn] = ACTIONS(2957), - [anon_sym_mutable] = ACTIONS(2957), - [anon_sym_constinit] = ACTIONS(2957), - [anon_sym_consteval] = ACTIONS(2957), - [sym_primitive_type] = ACTIONS(2957), - [anon_sym_enum] = ACTIONS(2957), - [anon_sym_class] = ACTIONS(2957), - [anon_sym_struct] = ACTIONS(2957), - [anon_sym_union] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2957), - [anon_sym_else] = ACTIONS(2957), - [anon_sym_switch] = ACTIONS(2957), - [anon_sym_case] = ACTIONS(2957), - [anon_sym_default] = ACTIONS(2957), - [anon_sym_while] = ACTIONS(2957), - [anon_sym_do] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2957), - [anon_sym_break] = ACTIONS(2957), - [anon_sym_continue] = ACTIONS(2957), - [anon_sym_goto] = ACTIONS(2957), - [anon_sym_not] = ACTIONS(2957), - [anon_sym_compl] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_sizeof] = ACTIONS(2957), - [anon_sym___alignof__] = ACTIONS(2957), - [anon_sym___alignof] = ACTIONS(2957), - [anon_sym__alignof] = ACTIONS(2957), - [anon_sym_alignof] = ACTIONS(2957), - [anon_sym__Alignof] = ACTIONS(2957), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2957), - [anon_sym_asm] = ACTIONS(2957), - [anon_sym___asm__] = ACTIONS(2957), - [sym_number_literal] = ACTIONS(2959), - [anon_sym_L_SQUOTE] = ACTIONS(2959), - [anon_sym_u_SQUOTE] = ACTIONS(2959), - [anon_sym_U_SQUOTE] = ACTIONS(2959), - [anon_sym_u8_SQUOTE] = ACTIONS(2959), - [anon_sym_SQUOTE] = ACTIONS(2959), - [anon_sym_L_DQUOTE] = ACTIONS(2959), - [anon_sym_u_DQUOTE] = ACTIONS(2959), - [anon_sym_U_DQUOTE] = ACTIONS(2959), - [anon_sym_u8_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [anon_sym_NULL] = ACTIONS(2957), - [anon_sym_nullptr] = ACTIONS(2957), + [1190] = { + [sym__expression] = STATE(3837), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_initializer_list] = STATE(6175), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_default] = ACTIONS(4182), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2957), - [anon_sym_decltype] = ACTIONS(2957), - [anon_sym_virtual] = ACTIONS(2957), - [anon_sym_alignas] = ACTIONS(2957), - [anon_sym_explicit] = ACTIONS(2957), - [anon_sym_typename] = ACTIONS(2957), - [anon_sym_template] = ACTIONS(2957), - [anon_sym_operator] = ACTIONS(2957), - [anon_sym_try] = ACTIONS(2957), - [anon_sym_delete] = ACTIONS(2957), - [anon_sym_throw] = ACTIONS(2957), - [anon_sym_namespace] = ACTIONS(2957), - [anon_sym_using] = ACTIONS(2957), - [anon_sym_static_assert] = ACTIONS(2957), - [anon_sym_concept] = ACTIONS(2957), - [anon_sym_co_return] = ACTIONS(2957), - [anon_sym_co_yield] = ACTIONS(2957), - [anon_sym_R_DQUOTE] = ACTIONS(2959), - [anon_sym_LR_DQUOTE] = ACTIONS(2959), - [anon_sym_uR_DQUOTE] = ACTIONS(2959), - [anon_sym_UR_DQUOTE] = ACTIONS(2959), - [anon_sym_u8R_DQUOTE] = ACTIONS(2959), - [anon_sym_co_await] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2957), - [anon_sym_requires] = ACTIONS(2957), - [sym_this] = ACTIONS(2957), - }, - [1126] = { - [sym_identifier] = ACTIONS(2921), - [aux_sym_preproc_include_token1] = ACTIONS(2921), - [aux_sym_preproc_def_token1] = ACTIONS(2921), - [aux_sym_preproc_if_token1] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2921), - [sym_preproc_directive] = ACTIONS(2921), - [anon_sym_LPAREN2] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_SEMI] = ACTIONS(2923), - [anon_sym___extension__] = ACTIONS(2921), - [anon_sym_typedef] = ACTIONS(2921), - [anon_sym_extern] = ACTIONS(2921), - [anon_sym___attribute__] = ACTIONS(2921), - [anon_sym_COLON_COLON] = ACTIONS(2923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2923), - [anon_sym___declspec] = ACTIONS(2921), - [anon_sym___based] = ACTIONS(2921), - [anon_sym___cdecl] = ACTIONS(2921), - [anon_sym___clrcall] = ACTIONS(2921), - [anon_sym___stdcall] = ACTIONS(2921), - [anon_sym___fastcall] = ACTIONS(2921), - [anon_sym___thiscall] = ACTIONS(2921), - [anon_sym___vectorcall] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_RBRACE] = ACTIONS(2923), - [anon_sym_signed] = ACTIONS(2921), - [anon_sym_unsigned] = ACTIONS(2921), - [anon_sym_long] = ACTIONS(2921), - [anon_sym_short] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(2921), - [anon_sym_register] = ACTIONS(2921), - [anon_sym_inline] = ACTIONS(2921), - [anon_sym___inline] = ACTIONS(2921), - [anon_sym___inline__] = ACTIONS(2921), - [anon_sym___forceinline] = ACTIONS(2921), - [anon_sym_thread_local] = ACTIONS(2921), - [anon_sym___thread] = ACTIONS(2921), - [anon_sym_const] = ACTIONS(2921), - [anon_sym_constexpr] = ACTIONS(2921), - [anon_sym_volatile] = ACTIONS(2921), - [anon_sym_restrict] = ACTIONS(2921), - [anon_sym___restrict__] = ACTIONS(2921), - [anon_sym__Atomic] = ACTIONS(2921), - [anon_sym__Noreturn] = ACTIONS(2921), - [anon_sym_noreturn] = ACTIONS(2921), - [anon_sym_mutable] = ACTIONS(2921), - [anon_sym_constinit] = ACTIONS(2921), - [anon_sym_consteval] = ACTIONS(2921), - [sym_primitive_type] = ACTIONS(2921), - [anon_sym_enum] = ACTIONS(2921), - [anon_sym_class] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_union] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_else] = ACTIONS(2921), - [anon_sym_switch] = ACTIONS(2921), - [anon_sym_case] = ACTIONS(2921), - [anon_sym_default] = ACTIONS(2921), - [anon_sym_while] = ACTIONS(2921), - [anon_sym_do] = ACTIONS(2921), - [anon_sym_for] = ACTIONS(2921), - [anon_sym_return] = ACTIONS(2921), - [anon_sym_break] = ACTIONS(2921), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2921), - [anon_sym_not] = ACTIONS(2921), - [anon_sym_compl] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2923), - [anon_sym_sizeof] = ACTIONS(2921), - [anon_sym___alignof__] = ACTIONS(2921), - [anon_sym___alignof] = ACTIONS(2921), - [anon_sym__alignof] = ACTIONS(2921), - [anon_sym_alignof] = ACTIONS(2921), - [anon_sym__Alignof] = ACTIONS(2921), - [anon_sym_offsetof] = ACTIONS(2921), - [anon_sym__Generic] = ACTIONS(2921), - [anon_sym_asm] = ACTIONS(2921), - [anon_sym___asm__] = ACTIONS(2921), - [sym_number_literal] = ACTIONS(2923), - [anon_sym_L_SQUOTE] = ACTIONS(2923), - [anon_sym_u_SQUOTE] = ACTIONS(2923), - [anon_sym_U_SQUOTE] = ACTIONS(2923), - [anon_sym_u8_SQUOTE] = ACTIONS(2923), - [anon_sym_SQUOTE] = ACTIONS(2923), - [anon_sym_L_DQUOTE] = ACTIONS(2923), - [anon_sym_u_DQUOTE] = ACTIONS(2923), - [anon_sym_U_DQUOTE] = ACTIONS(2923), - [anon_sym_u8_DQUOTE] = ACTIONS(2923), - [anon_sym_DQUOTE] = ACTIONS(2923), - [sym_true] = ACTIONS(2921), - [sym_false] = ACTIONS(2921), - [anon_sym_NULL] = ACTIONS(2921), - [anon_sym_nullptr] = ACTIONS(2921), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2921), - [anon_sym_decltype] = ACTIONS(2921), - [anon_sym_virtual] = ACTIONS(2921), - [anon_sym_alignas] = ACTIONS(2921), - [anon_sym_explicit] = ACTIONS(2921), - [anon_sym_typename] = ACTIONS(2921), - [anon_sym_template] = ACTIONS(2921), - [anon_sym_operator] = ACTIONS(2921), - [anon_sym_try] = ACTIONS(2921), - [anon_sym_delete] = ACTIONS(2921), - [anon_sym_throw] = ACTIONS(2921), - [anon_sym_namespace] = ACTIONS(2921), - [anon_sym_using] = ACTIONS(2921), - [anon_sym_static_assert] = ACTIONS(2921), - [anon_sym_concept] = ACTIONS(2921), - [anon_sym_co_return] = ACTIONS(2921), - [anon_sym_co_yield] = ACTIONS(2921), - [anon_sym_R_DQUOTE] = ACTIONS(2923), - [anon_sym_LR_DQUOTE] = ACTIONS(2923), - [anon_sym_uR_DQUOTE] = ACTIONS(2923), - [anon_sym_UR_DQUOTE] = ACTIONS(2923), - [anon_sym_u8R_DQUOTE] = ACTIONS(2923), - [anon_sym_co_await] = ACTIONS(2921), - [anon_sym_new] = ACTIONS(2921), - [anon_sym_requires] = ACTIONS(2921), - [sym_this] = ACTIONS(2921), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(4184), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1127] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1191] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4186), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - }, - [1128] = { - [sym_identifier] = ACTIONS(2941), - [aux_sym_preproc_include_token1] = ACTIONS(2941), - [aux_sym_preproc_def_token1] = ACTIONS(2941), - [aux_sym_preproc_if_token1] = ACTIONS(2941), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2941), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2941), - [sym_preproc_directive] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2943), - [anon_sym___extension__] = ACTIONS(2941), - [anon_sym_typedef] = ACTIONS(2941), - [anon_sym_extern] = ACTIONS(2941), - [anon_sym___attribute__] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2943), - [anon_sym___declspec] = ACTIONS(2941), - [anon_sym___based] = ACTIONS(2941), - [anon_sym___cdecl] = ACTIONS(2941), - [anon_sym___clrcall] = ACTIONS(2941), - [anon_sym___stdcall] = ACTIONS(2941), - [anon_sym___fastcall] = ACTIONS(2941), - [anon_sym___thiscall] = ACTIONS(2941), - [anon_sym___vectorcall] = ACTIONS(2941), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_RBRACE] = ACTIONS(2943), - [anon_sym_signed] = ACTIONS(2941), - [anon_sym_unsigned] = ACTIONS(2941), - [anon_sym_long] = ACTIONS(2941), - [anon_sym_short] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_static] = ACTIONS(2941), - [anon_sym_register] = ACTIONS(2941), - [anon_sym_inline] = ACTIONS(2941), - [anon_sym___inline] = ACTIONS(2941), - [anon_sym___inline__] = ACTIONS(2941), - [anon_sym___forceinline] = ACTIONS(2941), - [anon_sym_thread_local] = ACTIONS(2941), - [anon_sym___thread] = ACTIONS(2941), - [anon_sym_const] = ACTIONS(2941), - [anon_sym_constexpr] = ACTIONS(2941), - [anon_sym_volatile] = ACTIONS(2941), - [anon_sym_restrict] = ACTIONS(2941), - [anon_sym___restrict__] = ACTIONS(2941), - [anon_sym__Atomic] = ACTIONS(2941), - [anon_sym__Noreturn] = ACTIONS(2941), - [anon_sym_noreturn] = ACTIONS(2941), - [anon_sym_mutable] = ACTIONS(2941), - [anon_sym_constinit] = ACTIONS(2941), - [anon_sym_consteval] = ACTIONS(2941), - [sym_primitive_type] = ACTIONS(2941), - [anon_sym_enum] = ACTIONS(2941), - [anon_sym_class] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2941), - [anon_sym_union] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_else] = ACTIONS(2941), - [anon_sym_switch] = ACTIONS(2941), - [anon_sym_case] = ACTIONS(2941), - [anon_sym_default] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_break] = ACTIONS(2941), - [anon_sym_continue] = ACTIONS(2941), - [anon_sym_goto] = ACTIONS(2941), - [anon_sym_not] = ACTIONS(2941), - [anon_sym_compl] = ACTIONS(2941), - [anon_sym_DASH_DASH] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2943), - [anon_sym_sizeof] = ACTIONS(2941), - [anon_sym___alignof__] = ACTIONS(2941), - [anon_sym___alignof] = ACTIONS(2941), - [anon_sym__alignof] = ACTIONS(2941), - [anon_sym_alignof] = ACTIONS(2941), - [anon_sym__Alignof] = ACTIONS(2941), - [anon_sym_offsetof] = ACTIONS(2941), - [anon_sym__Generic] = ACTIONS(2941), - [anon_sym_asm] = ACTIONS(2941), - [anon_sym___asm__] = ACTIONS(2941), - [sym_number_literal] = ACTIONS(2943), - [anon_sym_L_SQUOTE] = ACTIONS(2943), - [anon_sym_u_SQUOTE] = ACTIONS(2943), - [anon_sym_U_SQUOTE] = ACTIONS(2943), - [anon_sym_u8_SQUOTE] = ACTIONS(2943), - [anon_sym_SQUOTE] = ACTIONS(2943), - [anon_sym_L_DQUOTE] = ACTIONS(2943), - [anon_sym_u_DQUOTE] = ACTIONS(2943), - [anon_sym_U_DQUOTE] = ACTIONS(2943), - [anon_sym_u8_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE] = ACTIONS(2943), - [sym_true] = ACTIONS(2941), - [sym_false] = ACTIONS(2941), - [anon_sym_NULL] = ACTIONS(2941), - [anon_sym_nullptr] = ACTIONS(2941), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2941), - [anon_sym_decltype] = ACTIONS(2941), - [anon_sym_virtual] = ACTIONS(2941), - [anon_sym_alignas] = ACTIONS(2941), - [anon_sym_explicit] = ACTIONS(2941), - [anon_sym_typename] = ACTIONS(2941), - [anon_sym_template] = ACTIONS(2941), - [anon_sym_operator] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_delete] = ACTIONS(2941), - [anon_sym_throw] = ACTIONS(2941), - [anon_sym_namespace] = ACTIONS(2941), - [anon_sym_using] = ACTIONS(2941), - [anon_sym_static_assert] = ACTIONS(2941), - [anon_sym_concept] = ACTIONS(2941), - [anon_sym_co_return] = ACTIONS(2941), - [anon_sym_co_yield] = ACTIONS(2941), - [anon_sym_R_DQUOTE] = ACTIONS(2943), - [anon_sym_LR_DQUOTE] = ACTIONS(2943), - [anon_sym_uR_DQUOTE] = ACTIONS(2943), - [anon_sym_UR_DQUOTE] = ACTIONS(2943), - [anon_sym_u8R_DQUOTE] = ACTIONS(2943), - [anon_sym_co_await] = ACTIONS(2941), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_requires] = ACTIONS(2941), - [sym_this] = ACTIONS(2941), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1129] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1192] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4188), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), - }, - [1130] = { - [sym_preproc_def] = STATE(1130), - [sym_preproc_function_def] = STATE(1130), - [sym_preproc_call] = STATE(1130), - [sym_preproc_if_in_field_declaration_list] = STATE(1130), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1130), - [sym_type_definition] = STATE(1130), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6371), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6947), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1130), - [sym_field_declaration] = STATE(1130), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2398), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1130), - [sym_operator_cast] = STATE(7504), - [sym_inline_method_definition] = STATE(1130), - [sym__constructor_specifiers] = STATE(2398), - [sym_operator_cast_definition] = STATE(1130), - [sym_operator_cast_declaration] = STATE(1130), - [sym_constructor_or_destructor_definition] = STATE(1130), - [sym_constructor_or_destructor_declaration] = STATE(1130), - [sym_friend_declaration] = STATE(1130), - [sym_access_specifier] = STATE(9393), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1130), - [sym_alias_declaration] = STATE(1130), - [sym_static_assert_declaration] = STATE(1130), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7504), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1130), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2398), - [sym_identifier] = ACTIONS(3518), - [aux_sym_preproc_def_token1] = ACTIONS(3648), - [aux_sym_preproc_if_token1] = ACTIONS(3651), - [aux_sym_preproc_if_token2] = ACTIONS(3527), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3654), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3654), - [aux_sym_preproc_else_token1] = ACTIONS(3527), - [aux_sym_preproc_elif_token1] = ACTIONS(3527), - [sym_preproc_directive] = ACTIONS(3657), - [anon_sym_LPAREN2] = ACTIONS(3535), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3541), - [anon_sym_AMP_AMP] = ACTIONS(3544), - [anon_sym_AMP] = ACTIONS(3547), - [anon_sym___extension__] = ACTIONS(3660), - [anon_sym_typedef] = ACTIONS(3663), - [anon_sym_extern] = ACTIONS(3556), - [anon_sym___attribute__] = ACTIONS(3559), - [anon_sym_COLON_COLON] = ACTIONS(3562), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3565), - [anon_sym___declspec] = ACTIONS(3568), - [anon_sym___based] = ACTIONS(3571), - [anon_sym_signed] = ACTIONS(3574), - [anon_sym_unsigned] = ACTIONS(3574), - [anon_sym_long] = ACTIONS(3574), - [anon_sym_short] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3577), - [anon_sym_static] = ACTIONS(3556), - [anon_sym_register] = ACTIONS(3556), - [anon_sym_inline] = ACTIONS(3556), - [anon_sym___inline] = ACTIONS(3556), - [anon_sym___inline__] = ACTIONS(3556), - [anon_sym___forceinline] = ACTIONS(3556), - [anon_sym_thread_local] = ACTIONS(3556), - [anon_sym___thread] = ACTIONS(3556), - [anon_sym_const] = ACTIONS(3580), - [anon_sym_constexpr] = ACTIONS(3580), - [anon_sym_volatile] = ACTIONS(3580), - [anon_sym_restrict] = ACTIONS(3580), - [anon_sym___restrict__] = ACTIONS(3580), - [anon_sym__Atomic] = ACTIONS(3580), - [anon_sym__Noreturn] = ACTIONS(3580), - [anon_sym_noreturn] = ACTIONS(3580), - [anon_sym_mutable] = ACTIONS(3580), - [anon_sym_constinit] = ACTIONS(3580), - [anon_sym_consteval] = ACTIONS(3580), - [sym_primitive_type] = ACTIONS(3583), - [anon_sym_enum] = ACTIONS(3586), - [anon_sym_class] = ACTIONS(3589), - [anon_sym_struct] = ACTIONS(3592), - [anon_sym_union] = ACTIONS(3595), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3598), - [anon_sym_decltype] = ACTIONS(3601), - [anon_sym_virtual] = ACTIONS(3604), - [anon_sym_alignas] = ACTIONS(3607), - [anon_sym_explicit] = ACTIONS(3610), - [anon_sym_typename] = ACTIONS(3613), - [anon_sym_template] = ACTIONS(3666), - [anon_sym_operator] = ACTIONS(3619), - [anon_sym_friend] = ACTIONS(3669), - [anon_sym_public] = ACTIONS(3625), - [anon_sym_private] = ACTIONS(3625), - [anon_sym_protected] = ACTIONS(3625), - [anon_sym_using] = ACTIONS(3672), - [anon_sym_static_assert] = ACTIONS(3675), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1131] = { - [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_extern] = ACTIONS(3003), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3003), - [anon_sym_constinit] = ACTIONS(3003), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3003), - [anon_sym_alignas] = 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_using] = 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), + [1193] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1132] = { - [sym_identifier] = ACTIONS(2945), - [aux_sym_preproc_include_token1] = ACTIONS(2945), - [aux_sym_preproc_def_token1] = ACTIONS(2945), - [aux_sym_preproc_if_token1] = ACTIONS(2945), - [aux_sym_preproc_if_token2] = ACTIONS(2945), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2945), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2945), - [sym_preproc_directive] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2945), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2945), - [anon_sym_SEMI] = ACTIONS(2947), - [anon_sym___extension__] = ACTIONS(2945), - [anon_sym_typedef] = ACTIONS(2945), - [anon_sym_extern] = ACTIONS(2945), - [anon_sym___attribute__] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2947), - [anon_sym___declspec] = ACTIONS(2945), - [anon_sym___based] = ACTIONS(2945), - [anon_sym___cdecl] = ACTIONS(2945), - [anon_sym___clrcall] = ACTIONS(2945), - [anon_sym___stdcall] = ACTIONS(2945), - [anon_sym___fastcall] = ACTIONS(2945), - [anon_sym___thiscall] = ACTIONS(2945), - [anon_sym___vectorcall] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_signed] = ACTIONS(2945), - [anon_sym_unsigned] = ACTIONS(2945), - [anon_sym_long] = ACTIONS(2945), - [anon_sym_short] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_static] = ACTIONS(2945), - [anon_sym_register] = ACTIONS(2945), - [anon_sym_inline] = ACTIONS(2945), - [anon_sym___inline] = ACTIONS(2945), - [anon_sym___inline__] = ACTIONS(2945), - [anon_sym___forceinline] = ACTIONS(2945), - [anon_sym_thread_local] = ACTIONS(2945), - [anon_sym___thread] = ACTIONS(2945), - [anon_sym_const] = ACTIONS(2945), - [anon_sym_constexpr] = ACTIONS(2945), - [anon_sym_volatile] = ACTIONS(2945), - [anon_sym_restrict] = ACTIONS(2945), - [anon_sym___restrict__] = ACTIONS(2945), - [anon_sym__Atomic] = ACTIONS(2945), - [anon_sym__Noreturn] = ACTIONS(2945), - [anon_sym_noreturn] = ACTIONS(2945), - [anon_sym_mutable] = ACTIONS(2945), - [anon_sym_constinit] = ACTIONS(2945), - [anon_sym_consteval] = ACTIONS(2945), - [sym_primitive_type] = ACTIONS(2945), - [anon_sym_enum] = ACTIONS(2945), - [anon_sym_class] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2945), - [anon_sym_union] = ACTIONS(2945), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(2945), - [anon_sym_switch] = ACTIONS(2945), - [anon_sym_case] = ACTIONS(2945), - [anon_sym_default] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_break] = ACTIONS(2945), - [anon_sym_continue] = ACTIONS(2945), - [anon_sym_goto] = ACTIONS(2945), - [anon_sym_not] = ACTIONS(2945), - [anon_sym_compl] = ACTIONS(2945), - [anon_sym_DASH_DASH] = ACTIONS(2947), - [anon_sym_PLUS_PLUS] = ACTIONS(2947), - [anon_sym_sizeof] = ACTIONS(2945), - [anon_sym___alignof__] = ACTIONS(2945), - [anon_sym___alignof] = ACTIONS(2945), - [anon_sym__alignof] = ACTIONS(2945), - [anon_sym_alignof] = ACTIONS(2945), - [anon_sym__Alignof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2945), - [anon_sym__Generic] = ACTIONS(2945), - [anon_sym_asm] = ACTIONS(2945), - [anon_sym___asm__] = ACTIONS(2945), - [sym_number_literal] = ACTIONS(2947), - [anon_sym_L_SQUOTE] = ACTIONS(2947), - [anon_sym_u_SQUOTE] = ACTIONS(2947), - [anon_sym_U_SQUOTE] = ACTIONS(2947), - [anon_sym_u8_SQUOTE] = ACTIONS(2947), - [anon_sym_SQUOTE] = ACTIONS(2947), - [anon_sym_L_DQUOTE] = ACTIONS(2947), - [anon_sym_u_DQUOTE] = ACTIONS(2947), - [anon_sym_U_DQUOTE] = ACTIONS(2947), - [anon_sym_u8_DQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(2947), - [sym_true] = ACTIONS(2945), - [sym_false] = ACTIONS(2945), - [anon_sym_NULL] = ACTIONS(2945), - [anon_sym_nullptr] = ACTIONS(2945), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2945), - [anon_sym_decltype] = ACTIONS(2945), - [anon_sym_virtual] = ACTIONS(2945), - [anon_sym_alignas] = ACTIONS(2945), - [anon_sym_explicit] = ACTIONS(2945), - [anon_sym_typename] = ACTIONS(2945), - [anon_sym_template] = ACTIONS(2945), - [anon_sym_operator] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_delete] = ACTIONS(2945), - [anon_sym_throw] = ACTIONS(2945), - [anon_sym_namespace] = ACTIONS(2945), - [anon_sym_using] = ACTIONS(2945), - [anon_sym_static_assert] = ACTIONS(2945), - [anon_sym_concept] = ACTIONS(2945), - [anon_sym_co_return] = ACTIONS(2945), - [anon_sym_co_yield] = ACTIONS(2945), - [anon_sym_R_DQUOTE] = ACTIONS(2947), - [anon_sym_LR_DQUOTE] = ACTIONS(2947), - [anon_sym_uR_DQUOTE] = ACTIONS(2947), - [anon_sym_UR_DQUOTE] = ACTIONS(2947), - [anon_sym_u8R_DQUOTE] = ACTIONS(2947), - [anon_sym_co_await] = ACTIONS(2945), - [anon_sym_new] = ACTIONS(2945), - [anon_sym_requires] = ACTIONS(2945), - [sym_this] = ACTIONS(2945), + [1194] = { + [sym__expression] = STATE(2721), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1133] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1195] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4192), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1134] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1196] = { + [sym__expression] = STATE(3896), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - }, - [1135] = { - [sym_identifier] = ACTIONS(2818), - [aux_sym_preproc_include_token1] = ACTIONS(2818), - [aux_sym_preproc_def_token1] = ACTIONS(2818), - [aux_sym_preproc_if_token1] = ACTIONS(2818), - [aux_sym_preproc_if_token2] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2818), - [sym_preproc_directive] = ACTIONS(2818), - [anon_sym_LPAREN2] = ACTIONS(2823), - [anon_sym_BANG] = ACTIONS(2823), - [anon_sym_TILDE] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2823), - [anon_sym_AMP_AMP] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2823), - [anon_sym___extension__] = ACTIONS(2818), - [anon_sym_typedef] = ACTIONS(2818), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym___attribute__] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), - [anon_sym___declspec] = ACTIONS(2818), - [anon_sym___based] = ACTIONS(2818), - [anon_sym___cdecl] = ACTIONS(2818), - [anon_sym___clrcall] = ACTIONS(2818), - [anon_sym___stdcall] = ACTIONS(2818), - [anon_sym___fastcall] = ACTIONS(2818), - [anon_sym___thiscall] = ACTIONS(2818), - [anon_sym___vectorcall] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym___inline] = ACTIONS(2818), - [anon_sym___inline__] = ACTIONS(2818), - [anon_sym___forceinline] = ACTIONS(2818), - [anon_sym_thread_local] = ACTIONS(2818), - [anon_sym___thread] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_restrict] = ACTIONS(2818), - [anon_sym___restrict__] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [anon_sym__Noreturn] = ACTIONS(2818), - [anon_sym_noreturn] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [anon_sym_constinit] = ACTIONS(2818), - [anon_sym_consteval] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_else] = ACTIONS(2818), - [anon_sym_switch] = ACTIONS(2818), - [anon_sym_case] = ACTIONS(2818), - [anon_sym_default] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [anon_sym_goto] = ACTIONS(2818), - [anon_sym_not] = ACTIONS(2818), - [anon_sym_compl] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2823), - [anon_sym_PLUS_PLUS] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2818), - [anon_sym___alignof__] = ACTIONS(2818), - [anon_sym___alignof] = ACTIONS(2818), - [anon_sym__alignof] = ACTIONS(2818), - [anon_sym_alignof] = ACTIONS(2818), - [anon_sym__Alignof] = ACTIONS(2818), - [anon_sym_offsetof] = ACTIONS(2818), - [anon_sym__Generic] = ACTIONS(2818), - [anon_sym_asm] = ACTIONS(2818), - [anon_sym___asm__] = ACTIONS(2818), - [sym_number_literal] = ACTIONS(2823), - [anon_sym_L_SQUOTE] = ACTIONS(2823), - [anon_sym_u_SQUOTE] = ACTIONS(2823), - [anon_sym_U_SQUOTE] = ACTIONS(2823), - [anon_sym_u8_SQUOTE] = ACTIONS(2823), - [anon_sym_SQUOTE] = ACTIONS(2823), - [anon_sym_L_DQUOTE] = ACTIONS(2823), - [anon_sym_u_DQUOTE] = ACTIONS(2823), - [anon_sym_U_DQUOTE] = ACTIONS(2823), - [anon_sym_u8_DQUOTE] = ACTIONS(2823), - [anon_sym_DQUOTE] = ACTIONS(2823), - [sym_true] = ACTIONS(2818), - [sym_false] = ACTIONS(2818), - [anon_sym_NULL] = ACTIONS(2818), - [anon_sym_nullptr] = ACTIONS(2818), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2818), - [anon_sym_decltype] = ACTIONS(2818), - [anon_sym_virtual] = ACTIONS(2818), - [anon_sym_alignas] = ACTIONS(2818), - [anon_sym_explicit] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_template] = ACTIONS(2818), - [anon_sym_operator] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_delete] = ACTIONS(2818), - [anon_sym_throw] = ACTIONS(2818), - [anon_sym_namespace] = ACTIONS(2818), - [anon_sym_using] = ACTIONS(2818), - [anon_sym_static_assert] = ACTIONS(2818), - [anon_sym_concept] = ACTIONS(2818), - [anon_sym_co_return] = ACTIONS(2818), - [anon_sym_co_yield] = ACTIONS(2818), - [anon_sym_R_DQUOTE] = ACTIONS(2823), - [anon_sym_LR_DQUOTE] = ACTIONS(2823), - [anon_sym_uR_DQUOTE] = ACTIONS(2823), - [anon_sym_UR_DQUOTE] = ACTIONS(2823), - [anon_sym_u8R_DQUOTE] = ACTIONS(2823), - [anon_sym_co_await] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_requires] = ACTIONS(2818), - [sym_this] = ACTIONS(2818), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1136] = { - [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_extern] = ACTIONS(3011), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3011), - [anon_sym_constinit] = ACTIONS(3011), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3011), - [anon_sym_alignas] = 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_using] = 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), + [1197] = { + [sym__expression] = STATE(3842), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_initializer_list] = STATE(6149), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_default] = ACTIONS(4194), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(4196), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1137] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1198] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4198), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1138] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1199] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4200), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1139] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1200] = { + [sym__expression] = STATE(4000), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(4202), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1140] = { - [sym_identifier] = ACTIONS(3073), - [aux_sym_preproc_include_token1] = ACTIONS(3073), - [aux_sym_preproc_def_token1] = ACTIONS(3073), - [aux_sym_preproc_if_token1] = ACTIONS(3073), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3073), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3073), - [sym_preproc_directive] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3075), - [anon_sym_TILDE] = ACTIONS(3075), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_AMP_AMP] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_SEMI] = ACTIONS(3075), - [anon_sym___extension__] = ACTIONS(3073), - [anon_sym_typedef] = ACTIONS(3073), - [anon_sym_extern] = ACTIONS(3073), - [anon_sym___attribute__] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3075), - [anon_sym___declspec] = ACTIONS(3073), - [anon_sym___based] = ACTIONS(3073), - [anon_sym___cdecl] = ACTIONS(3073), - [anon_sym___clrcall] = ACTIONS(3073), - [anon_sym___stdcall] = ACTIONS(3073), - [anon_sym___fastcall] = ACTIONS(3073), - [anon_sym___thiscall] = ACTIONS(3073), - [anon_sym___vectorcall] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_RBRACE] = ACTIONS(3075), - [anon_sym_signed] = ACTIONS(3073), - [anon_sym_unsigned] = ACTIONS(3073), - [anon_sym_long] = ACTIONS(3073), - [anon_sym_short] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_register] = ACTIONS(3073), - [anon_sym_inline] = ACTIONS(3073), - [anon_sym___inline] = ACTIONS(3073), - [anon_sym___inline__] = ACTIONS(3073), - [anon_sym___forceinline] = ACTIONS(3073), - [anon_sym_thread_local] = ACTIONS(3073), - [anon_sym___thread] = ACTIONS(3073), - [anon_sym_const] = ACTIONS(3073), - [anon_sym_constexpr] = ACTIONS(3073), - [anon_sym_volatile] = ACTIONS(3073), - [anon_sym_restrict] = ACTIONS(3073), - [anon_sym___restrict__] = ACTIONS(3073), - [anon_sym__Atomic] = ACTIONS(3073), - [anon_sym__Noreturn] = ACTIONS(3073), - [anon_sym_noreturn] = ACTIONS(3073), - [anon_sym_mutable] = ACTIONS(3073), - [anon_sym_constinit] = ACTIONS(3073), - [anon_sym_consteval] = ACTIONS(3073), - [sym_primitive_type] = ACTIONS(3073), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3073), - [anon_sym_struct] = ACTIONS(3073), - [anon_sym_union] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3073), - [anon_sym_switch] = ACTIONS(3073), - [anon_sym_case] = ACTIONS(3073), - [anon_sym_default] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_break] = ACTIONS(3073), - [anon_sym_continue] = ACTIONS(3073), - [anon_sym_goto] = ACTIONS(3073), - [anon_sym_not] = ACTIONS(3073), - [anon_sym_compl] = ACTIONS(3073), - [anon_sym_DASH_DASH] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(3075), - [anon_sym_sizeof] = ACTIONS(3073), - [anon_sym___alignof__] = ACTIONS(3073), - [anon_sym___alignof] = ACTIONS(3073), - [anon_sym__alignof] = ACTIONS(3073), - [anon_sym_alignof] = ACTIONS(3073), - [anon_sym__Alignof] = ACTIONS(3073), - [anon_sym_offsetof] = ACTIONS(3073), - [anon_sym__Generic] = ACTIONS(3073), - [anon_sym_asm] = ACTIONS(3073), - [anon_sym___asm__] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(3075), - [anon_sym_L_SQUOTE] = ACTIONS(3075), - [anon_sym_u_SQUOTE] = ACTIONS(3075), - [anon_sym_U_SQUOTE] = ACTIONS(3075), - [anon_sym_u8_SQUOTE] = ACTIONS(3075), - [anon_sym_SQUOTE] = ACTIONS(3075), - [anon_sym_L_DQUOTE] = ACTIONS(3075), - [anon_sym_u_DQUOTE] = ACTIONS(3075), - [anon_sym_U_DQUOTE] = ACTIONS(3075), - [anon_sym_u8_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE] = ACTIONS(3075), - [sym_true] = ACTIONS(3073), - [sym_false] = ACTIONS(3073), - [anon_sym_NULL] = ACTIONS(3073), - [anon_sym_nullptr] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3073), - [anon_sym_decltype] = ACTIONS(3073), - [anon_sym_virtual] = ACTIONS(3073), - [anon_sym_alignas] = ACTIONS(3073), - [anon_sym_explicit] = ACTIONS(3073), - [anon_sym_typename] = ACTIONS(3073), - [anon_sym_template] = ACTIONS(3073), - [anon_sym_operator] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_delete] = ACTIONS(3073), - [anon_sym_throw] = ACTIONS(3073), - [anon_sym_namespace] = ACTIONS(3073), - [anon_sym_using] = ACTIONS(3073), - [anon_sym_static_assert] = ACTIONS(3073), - [anon_sym_concept] = ACTIONS(3073), - [anon_sym_co_return] = ACTIONS(3073), - [anon_sym_co_yield] = ACTIONS(3073), - [anon_sym_R_DQUOTE] = ACTIONS(3075), - [anon_sym_LR_DQUOTE] = ACTIONS(3075), - [anon_sym_uR_DQUOTE] = ACTIONS(3075), - [anon_sym_UR_DQUOTE] = ACTIONS(3075), - [anon_sym_u8R_DQUOTE] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3073), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_requires] = ACTIONS(3073), - [sym_this] = ACTIONS(3073), + [1201] = { + [sym__expression] = STATE(3850), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_initializer_list] = STATE(6156), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_default] = ACTIONS(4206), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(4208), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1141] = { - [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_extern] = ACTIONS(3111), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3111), - [anon_sym_constinit] = ACTIONS(3111), - [anon_sym_consteval] = 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_else] = 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), - [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), + [1202] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(4202), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3111), - [anon_sym_decltype] = ACTIONS(3111), - [anon_sym_virtual] = ACTIONS(3111), - [anon_sym_alignas] = 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_using] = 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), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1142] = { - [sym_identifier] = ACTIONS(3107), - [aux_sym_preproc_include_token1] = ACTIONS(3107), - [aux_sym_preproc_def_token1] = ACTIONS(3107), - [aux_sym_preproc_if_token1] = ACTIONS(3107), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3107), - [sym_preproc_directive] = ACTIONS(3107), - [anon_sym_LPAREN2] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3109), - [anon_sym___extension__] = ACTIONS(3107), - [anon_sym_typedef] = ACTIONS(3107), - [anon_sym_extern] = ACTIONS(3107), - [anon_sym___attribute__] = ACTIONS(3107), - [anon_sym_COLON_COLON] = ACTIONS(3109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), - [anon_sym___declspec] = ACTIONS(3107), - [anon_sym___based] = ACTIONS(3107), - [anon_sym___cdecl] = ACTIONS(3107), - [anon_sym___clrcall] = ACTIONS(3107), - [anon_sym___stdcall] = ACTIONS(3107), - [anon_sym___fastcall] = ACTIONS(3107), - [anon_sym___thiscall] = ACTIONS(3107), - [anon_sym___vectorcall] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_RBRACE] = ACTIONS(3109), - [anon_sym_signed] = ACTIONS(3107), - [anon_sym_unsigned] = ACTIONS(3107), - [anon_sym_long] = ACTIONS(3107), - [anon_sym_short] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_register] = ACTIONS(3107), - [anon_sym_inline] = ACTIONS(3107), - [anon_sym___inline] = ACTIONS(3107), - [anon_sym___inline__] = ACTIONS(3107), - [anon_sym___forceinline] = ACTIONS(3107), - [anon_sym_thread_local] = ACTIONS(3107), - [anon_sym___thread] = ACTIONS(3107), - [anon_sym_const] = ACTIONS(3107), - [anon_sym_constexpr] = ACTIONS(3107), - [anon_sym_volatile] = ACTIONS(3107), - [anon_sym_restrict] = ACTIONS(3107), - [anon_sym___restrict__] = ACTIONS(3107), - [anon_sym__Atomic] = ACTIONS(3107), - [anon_sym__Noreturn] = ACTIONS(3107), - [anon_sym_noreturn] = ACTIONS(3107), - [anon_sym_mutable] = ACTIONS(3107), - [anon_sym_constinit] = ACTIONS(3107), - [anon_sym_consteval] = ACTIONS(3107), - [sym_primitive_type] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3107), - [anon_sym_union] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3107), - [anon_sym_else] = ACTIONS(3107), - [anon_sym_switch] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_default] = ACTIONS(3107), - [anon_sym_while] = ACTIONS(3107), - [anon_sym_do] = ACTIONS(3107), - [anon_sym_for] = ACTIONS(3107), - [anon_sym_return] = ACTIONS(3107), - [anon_sym_break] = ACTIONS(3107), - [anon_sym_continue] = ACTIONS(3107), - [anon_sym_goto] = ACTIONS(3107), - [anon_sym_not] = ACTIONS(3107), - [anon_sym_compl] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3109), - [anon_sym_sizeof] = ACTIONS(3107), - [anon_sym___alignof__] = ACTIONS(3107), - [anon_sym___alignof] = ACTIONS(3107), - [anon_sym__alignof] = ACTIONS(3107), - [anon_sym_alignof] = ACTIONS(3107), - [anon_sym__Alignof] = ACTIONS(3107), - [anon_sym_offsetof] = ACTIONS(3107), - [anon_sym__Generic] = ACTIONS(3107), - [anon_sym_asm] = ACTIONS(3107), - [anon_sym___asm__] = ACTIONS(3107), - [sym_number_literal] = ACTIONS(3109), - [anon_sym_L_SQUOTE] = ACTIONS(3109), - [anon_sym_u_SQUOTE] = ACTIONS(3109), - [anon_sym_U_SQUOTE] = ACTIONS(3109), - [anon_sym_u8_SQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3109), - [anon_sym_L_DQUOTE] = ACTIONS(3109), - [anon_sym_u_DQUOTE] = ACTIONS(3109), - [anon_sym_U_DQUOTE] = ACTIONS(3109), - [anon_sym_u8_DQUOTE] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(3109), - [sym_true] = ACTIONS(3107), - [sym_false] = ACTIONS(3107), - [anon_sym_NULL] = ACTIONS(3107), - [anon_sym_nullptr] = ACTIONS(3107), + [1203] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4210), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3107), - [anon_sym_decltype] = ACTIONS(3107), - [anon_sym_virtual] = ACTIONS(3107), - [anon_sym_alignas] = ACTIONS(3107), - [anon_sym_explicit] = ACTIONS(3107), - [anon_sym_typename] = ACTIONS(3107), - [anon_sym_template] = ACTIONS(3107), - [anon_sym_operator] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(3107), - [anon_sym_delete] = ACTIONS(3107), - [anon_sym_throw] = ACTIONS(3107), - [anon_sym_namespace] = ACTIONS(3107), - [anon_sym_using] = ACTIONS(3107), - [anon_sym_static_assert] = ACTIONS(3107), - [anon_sym_concept] = ACTIONS(3107), - [anon_sym_co_return] = ACTIONS(3107), - [anon_sym_co_yield] = ACTIONS(3107), - [anon_sym_R_DQUOTE] = ACTIONS(3109), - [anon_sym_LR_DQUOTE] = ACTIONS(3109), - [anon_sym_uR_DQUOTE] = ACTIONS(3109), - [anon_sym_UR_DQUOTE] = ACTIONS(3109), - [anon_sym_u8R_DQUOTE] = ACTIONS(3109), - [anon_sym_co_await] = ACTIONS(3107), - [anon_sym_new] = ACTIONS(3107), - [anon_sym_requires] = ACTIONS(3107), - [sym_this] = ACTIONS(3107), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1143] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1204] = { + [sym__expression] = STATE(3323), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1205] = { + [sym__expression] = STATE(4028), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_initializer_list] = STATE(6826), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4212), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1144] = { - [ts_builtin_sym_end] = ACTIONS(3059), - [sym_identifier] = ACTIONS(3057), - [aux_sym_preproc_include_token1] = ACTIONS(3057), - [aux_sym_preproc_def_token1] = ACTIONS(3057), - [aux_sym_preproc_if_token1] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3057), - [sym_preproc_directive] = ACTIONS(3057), - [anon_sym_LPAREN2] = ACTIONS(3059), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_SEMI] = ACTIONS(3059), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3057), - [anon_sym_extern] = ACTIONS(3057), - [anon_sym___attribute__] = ACTIONS(3057), - [anon_sym_COLON_COLON] = ACTIONS(3059), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3059), - [anon_sym___declspec] = ACTIONS(3057), - [anon_sym___based] = ACTIONS(3057), - [anon_sym___cdecl] = ACTIONS(3057), - [anon_sym___clrcall] = ACTIONS(3057), - [anon_sym___stdcall] = ACTIONS(3057), - [anon_sym___fastcall] = ACTIONS(3057), - [anon_sym___thiscall] = ACTIONS(3057), - [anon_sym___vectorcall] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_signed] = ACTIONS(3057), - [anon_sym_unsigned] = ACTIONS(3057), - [anon_sym_long] = ACTIONS(3057), - [anon_sym_short] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_register] = ACTIONS(3057), - [anon_sym_inline] = ACTIONS(3057), - [anon_sym___inline] = ACTIONS(3057), - [anon_sym___inline__] = ACTIONS(3057), - [anon_sym___forceinline] = ACTIONS(3057), - [anon_sym_thread_local] = ACTIONS(3057), - [anon_sym___thread] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_constexpr] = ACTIONS(3057), - [anon_sym_volatile] = ACTIONS(3057), - [anon_sym_restrict] = ACTIONS(3057), - [anon_sym___restrict__] = ACTIONS(3057), - [anon_sym__Atomic] = ACTIONS(3057), - [anon_sym__Noreturn] = ACTIONS(3057), - [anon_sym_noreturn] = ACTIONS(3057), - [anon_sym_mutable] = ACTIONS(3057), - [anon_sym_constinit] = ACTIONS(3057), - [anon_sym_consteval] = ACTIONS(3057), - [sym_primitive_type] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_class] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_else] = ACTIONS(3057), - [anon_sym_switch] = ACTIONS(3057), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3057), - [anon_sym_while] = ACTIONS(3057), - [anon_sym_do] = ACTIONS(3057), - [anon_sym_for] = ACTIONS(3057), - [anon_sym_return] = ACTIONS(3057), - [anon_sym_break] = ACTIONS(3057), - [anon_sym_continue] = ACTIONS(3057), - [anon_sym_goto] = ACTIONS(3057), - [anon_sym_not] = ACTIONS(3057), - [anon_sym_compl] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_sizeof] = ACTIONS(3057), - [anon_sym___alignof__] = ACTIONS(3057), - [anon_sym___alignof] = ACTIONS(3057), - [anon_sym__alignof] = ACTIONS(3057), - [anon_sym_alignof] = ACTIONS(3057), - [anon_sym__Alignof] = ACTIONS(3057), - [anon_sym_offsetof] = ACTIONS(3057), - [anon_sym__Generic] = ACTIONS(3057), - [anon_sym_asm] = ACTIONS(3057), - [anon_sym___asm__] = ACTIONS(3057), - [sym_number_literal] = ACTIONS(3059), - [anon_sym_L_SQUOTE] = ACTIONS(3059), - [anon_sym_u_SQUOTE] = ACTIONS(3059), - [anon_sym_U_SQUOTE] = ACTIONS(3059), - [anon_sym_u8_SQUOTE] = ACTIONS(3059), - [anon_sym_SQUOTE] = ACTIONS(3059), - [anon_sym_L_DQUOTE] = ACTIONS(3059), - [anon_sym_u_DQUOTE] = ACTIONS(3059), - [anon_sym_U_DQUOTE] = ACTIONS(3059), - [anon_sym_u8_DQUOTE] = ACTIONS(3059), - [anon_sym_DQUOTE] = ACTIONS(3059), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [anon_sym_NULL] = ACTIONS(3057), - [anon_sym_nullptr] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3057), - [anon_sym_decltype] = ACTIONS(3057), - [anon_sym_virtual] = ACTIONS(3057), - [anon_sym_alignas] = ACTIONS(3057), - [anon_sym_explicit] = ACTIONS(3057), - [anon_sym_typename] = ACTIONS(3057), - [anon_sym_template] = ACTIONS(3057), - [anon_sym_operator] = ACTIONS(3057), - [anon_sym_try] = ACTIONS(3057), - [anon_sym_delete] = ACTIONS(3057), - [anon_sym_throw] = ACTIONS(3057), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_using] = ACTIONS(3057), - [anon_sym_static_assert] = ACTIONS(3057), - [anon_sym_concept] = ACTIONS(3057), - [anon_sym_co_return] = ACTIONS(3057), - [anon_sym_co_yield] = ACTIONS(3057), - [anon_sym_R_DQUOTE] = ACTIONS(3059), - [anon_sym_LR_DQUOTE] = ACTIONS(3059), - [anon_sym_uR_DQUOTE] = ACTIONS(3059), - [anon_sym_UR_DQUOTE] = ACTIONS(3059), - [anon_sym_u8R_DQUOTE] = ACTIONS(3059), - [anon_sym_co_await] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(3057), - [sym_this] = ACTIONS(3057), + [1206] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1145] = { - [sym_identifier] = ACTIONS(3083), - [aux_sym_preproc_include_token1] = ACTIONS(3083), - [aux_sym_preproc_def_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token1] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), - [sym_preproc_directive] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym___extension__] = ACTIONS(3083), - [anon_sym_typedef] = ACTIONS(3083), - [anon_sym_extern] = ACTIONS(3083), - [anon_sym___attribute__] = ACTIONS(3083), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), - [anon_sym___declspec] = ACTIONS(3083), - [anon_sym___based] = ACTIONS(3083), - [anon_sym___cdecl] = ACTIONS(3083), - [anon_sym___clrcall] = ACTIONS(3083), - [anon_sym___stdcall] = ACTIONS(3083), - [anon_sym___fastcall] = ACTIONS(3083), - [anon_sym___thiscall] = ACTIONS(3083), - [anon_sym___vectorcall] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_signed] = ACTIONS(3083), - [anon_sym_unsigned] = ACTIONS(3083), - [anon_sym_long] = ACTIONS(3083), - [anon_sym_short] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_static] = ACTIONS(3083), - [anon_sym_register] = ACTIONS(3083), - [anon_sym_inline] = ACTIONS(3083), - [anon_sym___inline] = ACTIONS(3083), - [anon_sym___inline__] = ACTIONS(3083), - [anon_sym___forceinline] = ACTIONS(3083), - [anon_sym_thread_local] = ACTIONS(3083), - [anon_sym___thread] = ACTIONS(3083), - [anon_sym_const] = ACTIONS(3083), - [anon_sym_constexpr] = ACTIONS(3083), - [anon_sym_volatile] = ACTIONS(3083), - [anon_sym_restrict] = ACTIONS(3083), - [anon_sym___restrict__] = ACTIONS(3083), - [anon_sym__Atomic] = ACTIONS(3083), - [anon_sym__Noreturn] = ACTIONS(3083), - [anon_sym_noreturn] = ACTIONS(3083), - [anon_sym_mutable] = ACTIONS(3083), - [anon_sym_constinit] = ACTIONS(3083), - [anon_sym_consteval] = ACTIONS(3083), - [sym_primitive_type] = ACTIONS(3083), - [anon_sym_enum] = ACTIONS(3083), - [anon_sym_class] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_else] = ACTIONS(3083), - [anon_sym_switch] = ACTIONS(3083), - [anon_sym_case] = ACTIONS(3083), - [anon_sym_default] = ACTIONS(3083), - [anon_sym_while] = ACTIONS(3083), - [anon_sym_do] = ACTIONS(3083), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_break] = ACTIONS(3083), - [anon_sym_continue] = ACTIONS(3083), - [anon_sym_goto] = ACTIONS(3083), - [anon_sym_not] = ACTIONS(3083), - [anon_sym_compl] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3083), - [anon_sym___alignof__] = ACTIONS(3083), - [anon_sym___alignof] = ACTIONS(3083), - [anon_sym__alignof] = ACTIONS(3083), - [anon_sym_alignof] = ACTIONS(3083), - [anon_sym__Alignof] = ACTIONS(3083), - [anon_sym_offsetof] = ACTIONS(3083), - [anon_sym__Generic] = ACTIONS(3083), - [anon_sym_asm] = ACTIONS(3083), - [anon_sym___asm__] = ACTIONS(3083), - [sym_number_literal] = ACTIONS(3085), - [anon_sym_L_SQUOTE] = ACTIONS(3085), - [anon_sym_u_SQUOTE] = ACTIONS(3085), - [anon_sym_U_SQUOTE] = ACTIONS(3085), - [anon_sym_u8_SQUOTE] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3085), - [anon_sym_L_DQUOTE] = ACTIONS(3085), - [anon_sym_u_DQUOTE] = ACTIONS(3085), - [anon_sym_U_DQUOTE] = ACTIONS(3085), - [anon_sym_u8_DQUOTE] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(3085), - [sym_true] = ACTIONS(3083), - [sym_false] = ACTIONS(3083), - [anon_sym_NULL] = ACTIONS(3083), - [anon_sym_nullptr] = ACTIONS(3083), + [1207] = { + [sym__expression] = STATE(3934), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3083), - [anon_sym_decltype] = ACTIONS(3083), - [anon_sym_virtual] = ACTIONS(3083), - [anon_sym_alignas] = ACTIONS(3083), - [anon_sym_explicit] = ACTIONS(3083), - [anon_sym_typename] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3083), - [anon_sym_operator] = ACTIONS(3083), - [anon_sym_try] = ACTIONS(3083), - [anon_sym_delete] = ACTIONS(3083), - [anon_sym_throw] = ACTIONS(3083), - [anon_sym_namespace] = ACTIONS(3083), - [anon_sym_using] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3083), - [anon_sym_concept] = ACTIONS(3083), - [anon_sym_co_return] = ACTIONS(3083), - [anon_sym_co_yield] = ACTIONS(3083), - [anon_sym_R_DQUOTE] = ACTIONS(3085), - [anon_sym_LR_DQUOTE] = ACTIONS(3085), - [anon_sym_uR_DQUOTE] = ACTIONS(3085), - [anon_sym_UR_DQUOTE] = ACTIONS(3085), - [anon_sym_u8R_DQUOTE] = ACTIONS(3085), - [anon_sym_co_await] = ACTIONS(3083), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_requires] = ACTIONS(3083), - [sym_this] = ACTIONS(3083), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1146] = { - [ts_builtin_sym_end] = ACTIONS(2858), - [sym_identifier] = ACTIONS(2853), - [aux_sym_preproc_include_token1] = ACTIONS(2853), - [aux_sym_preproc_def_token1] = ACTIONS(2853), - [aux_sym_preproc_if_token1] = ACTIONS(2853), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2853), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2853), - [sym_preproc_directive] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym___extension__] = ACTIONS(2853), - [anon_sym_typedef] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym___attribute__] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2858), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), - [anon_sym___declspec] = ACTIONS(2853), - [anon_sym___based] = ACTIONS(2853), - [anon_sym___cdecl] = ACTIONS(2853), - [anon_sym___clrcall] = ACTIONS(2853), - [anon_sym___stdcall] = ACTIONS(2853), - [anon_sym___fastcall] = ACTIONS(2853), - [anon_sym___thiscall] = ACTIONS(2853), - [anon_sym___vectorcall] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_signed] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym___inline] = ACTIONS(2853), - [anon_sym___inline__] = ACTIONS(2853), - [anon_sym___forceinline] = ACTIONS(2853), - [anon_sym_thread_local] = ACTIONS(2853), - [anon_sym___thread] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_constexpr] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym___restrict__] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym__Noreturn] = ACTIONS(2853), - [anon_sym_noreturn] = ACTIONS(2853), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_constinit] = ACTIONS(2853), - [anon_sym_consteval] = ACTIONS(2853), - [sym_primitive_type] = ACTIONS(2853), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_else] = ACTIONS(2853), - [anon_sym_switch] = ACTIONS(2853), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_default] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_do] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_goto] = ACTIONS(2853), - [anon_sym_not] = ACTIONS(2853), - [anon_sym_compl] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_sizeof] = ACTIONS(2853), - [anon_sym___alignof__] = ACTIONS(2853), - [anon_sym___alignof] = ACTIONS(2853), - [anon_sym__alignof] = ACTIONS(2853), - [anon_sym_alignof] = ACTIONS(2853), - [anon_sym__Alignof] = ACTIONS(2853), - [anon_sym_offsetof] = ACTIONS(2853), - [anon_sym__Generic] = ACTIONS(2853), - [anon_sym_asm] = ACTIONS(2853), - [anon_sym___asm__] = ACTIONS(2853), - [sym_number_literal] = ACTIONS(2858), - [anon_sym_L_SQUOTE] = ACTIONS(2858), - [anon_sym_u_SQUOTE] = ACTIONS(2858), - [anon_sym_U_SQUOTE] = ACTIONS(2858), - [anon_sym_u8_SQUOTE] = ACTIONS(2858), - [anon_sym_SQUOTE] = ACTIONS(2858), - [anon_sym_L_DQUOTE] = ACTIONS(2858), - [anon_sym_u_DQUOTE] = ACTIONS(2858), - [anon_sym_U_DQUOTE] = ACTIONS(2858), - [anon_sym_u8_DQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [sym_true] = ACTIONS(2853), - [sym_false] = ACTIONS(2853), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2853), - [anon_sym_decltype] = ACTIONS(2853), - [anon_sym_virtual] = ACTIONS(2853), - [anon_sym_alignas] = ACTIONS(2853), - [anon_sym_explicit] = ACTIONS(2853), - [anon_sym_typename] = ACTIONS(2853), - [anon_sym_template] = ACTIONS(2853), - [anon_sym_operator] = ACTIONS(2853), - [anon_sym_try] = ACTIONS(2853), - [anon_sym_delete] = ACTIONS(2853), - [anon_sym_throw] = ACTIONS(2853), - [anon_sym_namespace] = ACTIONS(2853), - [anon_sym_using] = ACTIONS(2853), - [anon_sym_static_assert] = ACTIONS(2853), - [anon_sym_concept] = ACTIONS(2853), - [anon_sym_co_return] = ACTIONS(2853), - [anon_sym_co_yield] = ACTIONS(2853), - [anon_sym_R_DQUOTE] = ACTIONS(2858), - [anon_sym_LR_DQUOTE] = ACTIONS(2858), - [anon_sym_uR_DQUOTE] = ACTIONS(2858), - [anon_sym_UR_DQUOTE] = ACTIONS(2858), - [anon_sym_u8R_DQUOTE] = ACTIONS(2858), - [anon_sym_co_await] = ACTIONS(2853), - [anon_sym_new] = ACTIONS(2853), - [anon_sym_requires] = ACTIONS(2853), - [sym_this] = ACTIONS(2853), + [1208] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1147] = { - [sym_identifier] = ACTIONS(3065), - [aux_sym_preproc_include_token1] = ACTIONS(3065), - [aux_sym_preproc_def_token1] = ACTIONS(3065), - [aux_sym_preproc_if_token1] = ACTIONS(3065), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3065), - [sym_preproc_directive] = ACTIONS(3065), - [anon_sym_LPAREN2] = ACTIONS(3067), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP_AMP] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym___extension__] = ACTIONS(3065), - [anon_sym_typedef] = ACTIONS(3065), - [anon_sym_extern] = ACTIONS(3065), - [anon_sym___attribute__] = ACTIONS(3065), - [anon_sym_COLON_COLON] = ACTIONS(3067), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3067), - [anon_sym___declspec] = ACTIONS(3065), - [anon_sym___based] = ACTIONS(3065), - [anon_sym___cdecl] = ACTIONS(3065), - [anon_sym___clrcall] = ACTIONS(3065), - [anon_sym___stdcall] = ACTIONS(3065), - [anon_sym___fastcall] = ACTIONS(3065), - [anon_sym___thiscall] = ACTIONS(3065), - [anon_sym___vectorcall] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_RBRACE] = ACTIONS(3067), - [anon_sym_signed] = ACTIONS(3065), - [anon_sym_unsigned] = ACTIONS(3065), - [anon_sym_long] = ACTIONS(3065), - [anon_sym_short] = ACTIONS(3065), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(3065), - [anon_sym_register] = ACTIONS(3065), - [anon_sym_inline] = ACTIONS(3065), - [anon_sym___inline] = ACTIONS(3065), - [anon_sym___inline__] = ACTIONS(3065), - [anon_sym___forceinline] = ACTIONS(3065), - [anon_sym_thread_local] = ACTIONS(3065), - [anon_sym___thread] = ACTIONS(3065), - [anon_sym_const] = ACTIONS(3065), - [anon_sym_constexpr] = ACTIONS(3065), - [anon_sym_volatile] = ACTIONS(3065), - [anon_sym_restrict] = ACTIONS(3065), - [anon_sym___restrict__] = ACTIONS(3065), - [anon_sym__Atomic] = ACTIONS(3065), - [anon_sym__Noreturn] = ACTIONS(3065), - [anon_sym_noreturn] = ACTIONS(3065), - [anon_sym_mutable] = ACTIONS(3065), - [anon_sym_constinit] = ACTIONS(3065), - [anon_sym_consteval] = ACTIONS(3065), - [sym_primitive_type] = ACTIONS(3065), - [anon_sym_enum] = ACTIONS(3065), - [anon_sym_class] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(3065), - [anon_sym_union] = ACTIONS(3065), - [anon_sym_if] = ACTIONS(3065), - [anon_sym_else] = ACTIONS(3065), - [anon_sym_switch] = ACTIONS(3065), - [anon_sym_case] = ACTIONS(3065), - [anon_sym_default] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3065), - [anon_sym_do] = ACTIONS(3065), - [anon_sym_for] = ACTIONS(3065), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_break] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(3065), - [anon_sym_goto] = ACTIONS(3065), - [anon_sym_not] = ACTIONS(3065), - [anon_sym_compl] = ACTIONS(3065), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_sizeof] = ACTIONS(3065), - [anon_sym___alignof__] = ACTIONS(3065), - [anon_sym___alignof] = ACTIONS(3065), - [anon_sym__alignof] = ACTIONS(3065), - [anon_sym_alignof] = ACTIONS(3065), - [anon_sym__Alignof] = ACTIONS(3065), - [anon_sym_offsetof] = ACTIONS(3065), - [anon_sym__Generic] = ACTIONS(3065), - [anon_sym_asm] = ACTIONS(3065), - [anon_sym___asm__] = ACTIONS(3065), - [sym_number_literal] = ACTIONS(3067), - [anon_sym_L_SQUOTE] = ACTIONS(3067), - [anon_sym_u_SQUOTE] = ACTIONS(3067), - [anon_sym_U_SQUOTE] = ACTIONS(3067), - [anon_sym_u8_SQUOTE] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3067), - [anon_sym_L_DQUOTE] = ACTIONS(3067), - [anon_sym_u_DQUOTE] = ACTIONS(3067), - [anon_sym_U_DQUOTE] = ACTIONS(3067), - [anon_sym_u8_DQUOTE] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(3067), - [sym_true] = ACTIONS(3065), - [sym_false] = ACTIONS(3065), - [anon_sym_NULL] = ACTIONS(3065), - [anon_sym_nullptr] = ACTIONS(3065), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3065), - [anon_sym_decltype] = ACTIONS(3065), - [anon_sym_virtual] = ACTIONS(3065), - [anon_sym_alignas] = ACTIONS(3065), - [anon_sym_explicit] = ACTIONS(3065), - [anon_sym_typename] = ACTIONS(3065), - [anon_sym_template] = ACTIONS(3065), - [anon_sym_operator] = ACTIONS(3065), - [anon_sym_try] = ACTIONS(3065), - [anon_sym_delete] = ACTIONS(3065), - [anon_sym_throw] = ACTIONS(3065), - [anon_sym_namespace] = ACTIONS(3065), - [anon_sym_using] = ACTIONS(3065), - [anon_sym_static_assert] = ACTIONS(3065), - [anon_sym_concept] = ACTIONS(3065), - [anon_sym_co_return] = ACTIONS(3065), - [anon_sym_co_yield] = ACTIONS(3065), - [anon_sym_R_DQUOTE] = ACTIONS(3067), - [anon_sym_LR_DQUOTE] = ACTIONS(3067), - [anon_sym_uR_DQUOTE] = ACTIONS(3067), - [anon_sym_UR_DQUOTE] = ACTIONS(3067), - [anon_sym_u8R_DQUOTE] = ACTIONS(3067), - [anon_sym_co_await] = ACTIONS(3065), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(3065), - [sym_this] = ACTIONS(3065), + [1209] = { + [sym__expression] = STATE(3957), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1148] = { - [sym_identifier] = ACTIONS(3061), - [aux_sym_preproc_include_token1] = ACTIONS(3061), - [aux_sym_preproc_def_token1] = ACTIONS(3061), - [aux_sym_preproc_if_token1] = ACTIONS(3061), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3061), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3061), - [sym_preproc_directive] = ACTIONS(3061), - [anon_sym_LPAREN2] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3063), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3063), - [anon_sym_AMP_AMP] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_SEMI] = ACTIONS(3063), - [anon_sym___extension__] = ACTIONS(3061), - [anon_sym_typedef] = ACTIONS(3061), - [anon_sym_extern] = ACTIONS(3061), - [anon_sym___attribute__] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3063), - [anon_sym___declspec] = ACTIONS(3061), - [anon_sym___based] = ACTIONS(3061), - [anon_sym___cdecl] = ACTIONS(3061), - [anon_sym___clrcall] = ACTIONS(3061), - [anon_sym___stdcall] = ACTIONS(3061), - [anon_sym___fastcall] = ACTIONS(3061), - [anon_sym___thiscall] = ACTIONS(3061), - [anon_sym___vectorcall] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3063), - [anon_sym_RBRACE] = ACTIONS(3063), - [anon_sym_signed] = ACTIONS(3061), - [anon_sym_unsigned] = ACTIONS(3061), - [anon_sym_long] = ACTIONS(3061), - [anon_sym_short] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3061), - [anon_sym_static] = ACTIONS(3061), - [anon_sym_register] = ACTIONS(3061), - [anon_sym_inline] = ACTIONS(3061), - [anon_sym___inline] = ACTIONS(3061), - [anon_sym___inline__] = ACTIONS(3061), - [anon_sym___forceinline] = ACTIONS(3061), - [anon_sym_thread_local] = ACTIONS(3061), - [anon_sym___thread] = ACTIONS(3061), - [anon_sym_const] = ACTIONS(3061), - [anon_sym_constexpr] = ACTIONS(3061), - [anon_sym_volatile] = ACTIONS(3061), - [anon_sym_restrict] = ACTIONS(3061), - [anon_sym___restrict__] = ACTIONS(3061), - [anon_sym__Atomic] = ACTIONS(3061), - [anon_sym__Noreturn] = ACTIONS(3061), - [anon_sym_noreturn] = ACTIONS(3061), - [anon_sym_mutable] = ACTIONS(3061), - [anon_sym_constinit] = ACTIONS(3061), - [anon_sym_consteval] = ACTIONS(3061), - [sym_primitive_type] = ACTIONS(3061), - [anon_sym_enum] = ACTIONS(3061), - [anon_sym_class] = ACTIONS(3061), - [anon_sym_struct] = ACTIONS(3061), - [anon_sym_union] = ACTIONS(3061), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_else] = ACTIONS(3061), - [anon_sym_switch] = ACTIONS(3061), - [anon_sym_case] = ACTIONS(3061), - [anon_sym_default] = ACTIONS(3061), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_do] = ACTIONS(3061), - [anon_sym_for] = ACTIONS(3061), - [anon_sym_return] = ACTIONS(3061), - [anon_sym_break] = ACTIONS(3061), - [anon_sym_continue] = ACTIONS(3061), - [anon_sym_goto] = ACTIONS(3061), - [anon_sym_not] = ACTIONS(3061), - [anon_sym_compl] = ACTIONS(3061), - [anon_sym_DASH_DASH] = ACTIONS(3063), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_sizeof] = ACTIONS(3061), - [anon_sym___alignof__] = ACTIONS(3061), - [anon_sym___alignof] = ACTIONS(3061), - [anon_sym__alignof] = ACTIONS(3061), - [anon_sym_alignof] = ACTIONS(3061), - [anon_sym__Alignof] = ACTIONS(3061), - [anon_sym_offsetof] = ACTIONS(3061), - [anon_sym__Generic] = ACTIONS(3061), - [anon_sym_asm] = ACTIONS(3061), - [anon_sym___asm__] = ACTIONS(3061), - [sym_number_literal] = ACTIONS(3063), - [anon_sym_L_SQUOTE] = ACTIONS(3063), - [anon_sym_u_SQUOTE] = ACTIONS(3063), - [anon_sym_U_SQUOTE] = ACTIONS(3063), - [anon_sym_u8_SQUOTE] = ACTIONS(3063), - [anon_sym_SQUOTE] = ACTIONS(3063), - [anon_sym_L_DQUOTE] = ACTIONS(3063), - [anon_sym_u_DQUOTE] = ACTIONS(3063), - [anon_sym_U_DQUOTE] = ACTIONS(3063), - [anon_sym_u8_DQUOTE] = ACTIONS(3063), - [anon_sym_DQUOTE] = ACTIONS(3063), - [sym_true] = ACTIONS(3061), - [sym_false] = ACTIONS(3061), - [anon_sym_NULL] = ACTIONS(3061), - [anon_sym_nullptr] = ACTIONS(3061), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3061), - [anon_sym_decltype] = ACTIONS(3061), - [anon_sym_virtual] = ACTIONS(3061), - [anon_sym_alignas] = ACTIONS(3061), - [anon_sym_explicit] = ACTIONS(3061), - [anon_sym_typename] = ACTIONS(3061), - [anon_sym_template] = ACTIONS(3061), - [anon_sym_operator] = ACTIONS(3061), - [anon_sym_try] = ACTIONS(3061), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_throw] = ACTIONS(3061), - [anon_sym_namespace] = ACTIONS(3061), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_static_assert] = ACTIONS(3061), - [anon_sym_concept] = ACTIONS(3061), - [anon_sym_co_return] = ACTIONS(3061), - [anon_sym_co_yield] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(3063), - [anon_sym_LR_DQUOTE] = ACTIONS(3063), - [anon_sym_uR_DQUOTE] = ACTIONS(3063), - [anon_sym_UR_DQUOTE] = ACTIONS(3063), - [anon_sym_u8R_DQUOTE] = ACTIONS(3063), - [anon_sym_co_await] = ACTIONS(3061), - [anon_sym_new] = ACTIONS(3061), - [anon_sym_requires] = ACTIONS(3061), - [sym_this] = ACTIONS(3061), + [1210] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1149] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1211] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1150] = { - [sym_identifier] = ACTIONS(2921), - [aux_sym_preproc_include_token1] = ACTIONS(2921), - [aux_sym_preproc_def_token1] = ACTIONS(2921), - [aux_sym_preproc_if_token1] = ACTIONS(2921), - [aux_sym_preproc_if_token2] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2921), - [sym_preproc_directive] = ACTIONS(2921), - [anon_sym_LPAREN2] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_SEMI] = ACTIONS(2923), - [anon_sym___extension__] = ACTIONS(2921), - [anon_sym_typedef] = ACTIONS(2921), - [anon_sym_extern] = ACTIONS(2921), - [anon_sym___attribute__] = ACTIONS(2921), - [anon_sym_COLON_COLON] = ACTIONS(2923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2923), - [anon_sym___declspec] = ACTIONS(2921), - [anon_sym___based] = ACTIONS(2921), - [anon_sym___cdecl] = ACTIONS(2921), - [anon_sym___clrcall] = ACTIONS(2921), - [anon_sym___stdcall] = ACTIONS(2921), - [anon_sym___fastcall] = ACTIONS(2921), - [anon_sym___thiscall] = ACTIONS(2921), - [anon_sym___vectorcall] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_signed] = ACTIONS(2921), - [anon_sym_unsigned] = ACTIONS(2921), - [anon_sym_long] = ACTIONS(2921), - [anon_sym_short] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(2921), - [anon_sym_register] = ACTIONS(2921), - [anon_sym_inline] = ACTIONS(2921), - [anon_sym___inline] = ACTIONS(2921), - [anon_sym___inline__] = ACTIONS(2921), - [anon_sym___forceinline] = ACTIONS(2921), - [anon_sym_thread_local] = ACTIONS(2921), - [anon_sym___thread] = ACTIONS(2921), - [anon_sym_const] = ACTIONS(2921), - [anon_sym_constexpr] = ACTIONS(2921), - [anon_sym_volatile] = ACTIONS(2921), - [anon_sym_restrict] = ACTIONS(2921), - [anon_sym___restrict__] = ACTIONS(2921), - [anon_sym__Atomic] = ACTIONS(2921), - [anon_sym__Noreturn] = ACTIONS(2921), - [anon_sym_noreturn] = ACTIONS(2921), - [anon_sym_mutable] = ACTIONS(2921), - [anon_sym_constinit] = ACTIONS(2921), - [anon_sym_consteval] = ACTIONS(2921), - [sym_primitive_type] = ACTIONS(2921), - [anon_sym_enum] = ACTIONS(2921), - [anon_sym_class] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_union] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_else] = ACTIONS(2921), - [anon_sym_switch] = ACTIONS(2921), - [anon_sym_case] = ACTIONS(2921), - [anon_sym_default] = ACTIONS(2921), - [anon_sym_while] = ACTIONS(2921), - [anon_sym_do] = ACTIONS(2921), - [anon_sym_for] = ACTIONS(2921), - [anon_sym_return] = ACTIONS(2921), - [anon_sym_break] = ACTIONS(2921), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2921), - [anon_sym_not] = ACTIONS(2921), - [anon_sym_compl] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2923), - [anon_sym_sizeof] = ACTIONS(2921), - [anon_sym___alignof__] = ACTIONS(2921), - [anon_sym___alignof] = ACTIONS(2921), - [anon_sym__alignof] = ACTIONS(2921), - [anon_sym_alignof] = ACTIONS(2921), - [anon_sym__Alignof] = ACTIONS(2921), - [anon_sym_offsetof] = ACTIONS(2921), - [anon_sym__Generic] = ACTIONS(2921), - [anon_sym_asm] = ACTIONS(2921), - [anon_sym___asm__] = ACTIONS(2921), - [sym_number_literal] = ACTIONS(2923), - [anon_sym_L_SQUOTE] = ACTIONS(2923), - [anon_sym_u_SQUOTE] = ACTIONS(2923), - [anon_sym_U_SQUOTE] = ACTIONS(2923), - [anon_sym_u8_SQUOTE] = ACTIONS(2923), - [anon_sym_SQUOTE] = ACTIONS(2923), - [anon_sym_L_DQUOTE] = ACTIONS(2923), - [anon_sym_u_DQUOTE] = ACTIONS(2923), - [anon_sym_U_DQUOTE] = ACTIONS(2923), - [anon_sym_u8_DQUOTE] = ACTIONS(2923), - [anon_sym_DQUOTE] = ACTIONS(2923), - [sym_true] = ACTIONS(2921), - [sym_false] = ACTIONS(2921), - [anon_sym_NULL] = ACTIONS(2921), - [anon_sym_nullptr] = ACTIONS(2921), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2921), - [anon_sym_decltype] = ACTIONS(2921), - [anon_sym_virtual] = ACTIONS(2921), - [anon_sym_alignas] = ACTIONS(2921), - [anon_sym_explicit] = ACTIONS(2921), - [anon_sym_typename] = ACTIONS(2921), - [anon_sym_template] = ACTIONS(2921), - [anon_sym_operator] = ACTIONS(2921), - [anon_sym_try] = ACTIONS(2921), - [anon_sym_delete] = ACTIONS(2921), - [anon_sym_throw] = ACTIONS(2921), - [anon_sym_namespace] = ACTIONS(2921), - [anon_sym_using] = ACTIONS(2921), - [anon_sym_static_assert] = ACTIONS(2921), - [anon_sym_concept] = ACTIONS(2921), - [anon_sym_co_return] = ACTIONS(2921), - [anon_sym_co_yield] = ACTIONS(2921), - [anon_sym_R_DQUOTE] = ACTIONS(2923), - [anon_sym_LR_DQUOTE] = ACTIONS(2923), - [anon_sym_uR_DQUOTE] = ACTIONS(2923), - [anon_sym_UR_DQUOTE] = ACTIONS(2923), - [anon_sym_u8R_DQUOTE] = ACTIONS(2923), - [anon_sym_co_await] = ACTIONS(2921), - [anon_sym_new] = ACTIONS(2921), - [anon_sym_requires] = ACTIONS(2921), - [sym_this] = ACTIONS(2921), + [1212] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4220), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1151] = { - [sym_identifier] = ACTIONS(2929), - [aux_sym_preproc_include_token1] = ACTIONS(2929), - [aux_sym_preproc_def_token1] = ACTIONS(2929), - [aux_sym_preproc_if_token1] = ACTIONS(2929), - [aux_sym_preproc_if_token2] = ACTIONS(2929), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2929), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2929), - [sym_preproc_directive] = ACTIONS(2929), - [anon_sym_LPAREN2] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2929), - [anon_sym_PLUS] = ACTIONS(2929), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_SEMI] = ACTIONS(2931), - [anon_sym___extension__] = ACTIONS(2929), - [anon_sym_typedef] = ACTIONS(2929), - [anon_sym_extern] = ACTIONS(2929), - [anon_sym___attribute__] = ACTIONS(2929), - [anon_sym_COLON_COLON] = ACTIONS(2931), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2931), - [anon_sym___declspec] = ACTIONS(2929), - [anon_sym___based] = ACTIONS(2929), - [anon_sym___cdecl] = ACTIONS(2929), - [anon_sym___clrcall] = ACTIONS(2929), - [anon_sym___stdcall] = ACTIONS(2929), - [anon_sym___fastcall] = ACTIONS(2929), - [anon_sym___thiscall] = ACTIONS(2929), - [anon_sym___vectorcall] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_signed] = ACTIONS(2929), - [anon_sym_unsigned] = ACTIONS(2929), - [anon_sym_long] = ACTIONS(2929), - [anon_sym_short] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_static] = ACTIONS(2929), - [anon_sym_register] = ACTIONS(2929), - [anon_sym_inline] = ACTIONS(2929), - [anon_sym___inline] = ACTIONS(2929), - [anon_sym___inline__] = ACTIONS(2929), - [anon_sym___forceinline] = ACTIONS(2929), - [anon_sym_thread_local] = ACTIONS(2929), - [anon_sym___thread] = ACTIONS(2929), - [anon_sym_const] = ACTIONS(2929), - [anon_sym_constexpr] = ACTIONS(2929), - [anon_sym_volatile] = ACTIONS(2929), - [anon_sym_restrict] = ACTIONS(2929), - [anon_sym___restrict__] = ACTIONS(2929), - [anon_sym__Atomic] = ACTIONS(2929), - [anon_sym__Noreturn] = ACTIONS(2929), - [anon_sym_noreturn] = ACTIONS(2929), - [anon_sym_mutable] = ACTIONS(2929), - [anon_sym_constinit] = ACTIONS(2929), - [anon_sym_consteval] = ACTIONS(2929), - [sym_primitive_type] = ACTIONS(2929), - [anon_sym_enum] = ACTIONS(2929), - [anon_sym_class] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2929), - [anon_sym_union] = ACTIONS(2929), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_else] = ACTIONS(2929), - [anon_sym_switch] = ACTIONS(2929), - [anon_sym_case] = ACTIONS(2929), - [anon_sym_default] = ACTIONS(2929), - [anon_sym_while] = ACTIONS(2929), - [anon_sym_do] = ACTIONS(2929), - [anon_sym_for] = ACTIONS(2929), - [anon_sym_return] = ACTIONS(2929), - [anon_sym_break] = ACTIONS(2929), - [anon_sym_continue] = ACTIONS(2929), - [anon_sym_goto] = ACTIONS(2929), - [anon_sym_not] = ACTIONS(2929), - [anon_sym_compl] = ACTIONS(2929), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_sizeof] = ACTIONS(2929), - [anon_sym___alignof__] = ACTIONS(2929), - [anon_sym___alignof] = ACTIONS(2929), - [anon_sym__alignof] = ACTIONS(2929), - [anon_sym_alignof] = ACTIONS(2929), - [anon_sym__Alignof] = ACTIONS(2929), - [anon_sym_offsetof] = ACTIONS(2929), - [anon_sym__Generic] = ACTIONS(2929), - [anon_sym_asm] = ACTIONS(2929), - [anon_sym___asm__] = ACTIONS(2929), - [sym_number_literal] = ACTIONS(2931), - [anon_sym_L_SQUOTE] = ACTIONS(2931), - [anon_sym_u_SQUOTE] = ACTIONS(2931), - [anon_sym_U_SQUOTE] = ACTIONS(2931), - [anon_sym_u8_SQUOTE] = ACTIONS(2931), - [anon_sym_SQUOTE] = ACTIONS(2931), - [anon_sym_L_DQUOTE] = ACTIONS(2931), - [anon_sym_u_DQUOTE] = ACTIONS(2931), - [anon_sym_U_DQUOTE] = ACTIONS(2931), - [anon_sym_u8_DQUOTE] = ACTIONS(2931), - [anon_sym_DQUOTE] = ACTIONS(2931), - [sym_true] = ACTIONS(2929), - [sym_false] = ACTIONS(2929), - [anon_sym_NULL] = ACTIONS(2929), - [anon_sym_nullptr] = ACTIONS(2929), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2929), - [anon_sym_decltype] = ACTIONS(2929), - [anon_sym_virtual] = ACTIONS(2929), - [anon_sym_alignas] = ACTIONS(2929), - [anon_sym_explicit] = ACTIONS(2929), - [anon_sym_typename] = ACTIONS(2929), - [anon_sym_template] = ACTIONS(2929), - [anon_sym_operator] = ACTIONS(2929), - [anon_sym_try] = ACTIONS(2929), - [anon_sym_delete] = ACTIONS(2929), - [anon_sym_throw] = ACTIONS(2929), - [anon_sym_namespace] = ACTIONS(2929), - [anon_sym_using] = ACTIONS(2929), - [anon_sym_static_assert] = ACTIONS(2929), - [anon_sym_concept] = ACTIONS(2929), - [anon_sym_co_return] = ACTIONS(2929), - [anon_sym_co_yield] = ACTIONS(2929), - [anon_sym_R_DQUOTE] = ACTIONS(2931), - [anon_sym_LR_DQUOTE] = ACTIONS(2931), - [anon_sym_uR_DQUOTE] = ACTIONS(2931), - [anon_sym_UR_DQUOTE] = ACTIONS(2931), - [anon_sym_u8R_DQUOTE] = ACTIONS(2931), - [anon_sym_co_await] = ACTIONS(2929), - [anon_sym_new] = ACTIONS(2929), - [anon_sym_requires] = ACTIONS(2929), - [sym_this] = ACTIONS(2929), + [1213] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1152] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1214] = { + [sym__expression] = STATE(2646), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1215] = { + [sym__expression] = STATE(4328), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1153] = { - [ts_builtin_sym_end] = ACTIONS(3033), - [sym_identifier] = ACTIONS(3031), - [aux_sym_preproc_include_token1] = ACTIONS(3031), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3031), - [sym_preproc_directive] = ACTIONS(3031), - [anon_sym_LPAREN2] = ACTIONS(3033), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym___extension__] = ACTIONS(3031), - [anon_sym_typedef] = ACTIONS(3031), - [anon_sym_extern] = ACTIONS(3031), - [anon_sym___attribute__] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3033), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3033), - [anon_sym___declspec] = ACTIONS(3031), - [anon_sym___based] = ACTIONS(3031), - [anon_sym___cdecl] = ACTIONS(3031), - [anon_sym___clrcall] = ACTIONS(3031), - [anon_sym___stdcall] = ACTIONS(3031), - [anon_sym___fastcall] = ACTIONS(3031), - [anon_sym___thiscall] = ACTIONS(3031), - [anon_sym___vectorcall] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_signed] = ACTIONS(3031), - [anon_sym_unsigned] = ACTIONS(3031), - [anon_sym_long] = ACTIONS(3031), - [anon_sym_short] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_static] = ACTIONS(3031), - [anon_sym_register] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym___inline] = ACTIONS(3031), - [anon_sym___inline__] = ACTIONS(3031), - [anon_sym___forceinline] = ACTIONS(3031), - [anon_sym_thread_local] = ACTIONS(3031), - [anon_sym___thread] = ACTIONS(3031), - [anon_sym_const] = ACTIONS(3031), - [anon_sym_constexpr] = ACTIONS(3031), - [anon_sym_volatile] = ACTIONS(3031), - [anon_sym_restrict] = ACTIONS(3031), - [anon_sym___restrict__] = ACTIONS(3031), - [anon_sym__Atomic] = ACTIONS(3031), - [anon_sym__Noreturn] = ACTIONS(3031), - [anon_sym_noreturn] = ACTIONS(3031), - [anon_sym_mutable] = ACTIONS(3031), - [anon_sym_constinit] = ACTIONS(3031), - [anon_sym_consteval] = ACTIONS(3031), - [sym_primitive_type] = ACTIONS(3031), - [anon_sym_enum] = ACTIONS(3031), - [anon_sym_class] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_union] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_switch] = ACTIONS(3031), - [anon_sym_case] = ACTIONS(3031), - [anon_sym_default] = ACTIONS(3031), - [anon_sym_while] = ACTIONS(3031), - [anon_sym_do] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_goto] = ACTIONS(3031), - [anon_sym_not] = ACTIONS(3031), - [anon_sym_compl] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3033), - [anon_sym_PLUS_PLUS] = ACTIONS(3033), - [anon_sym_sizeof] = ACTIONS(3031), - [anon_sym___alignof__] = ACTIONS(3031), - [anon_sym___alignof] = ACTIONS(3031), - [anon_sym__alignof] = ACTIONS(3031), - [anon_sym_alignof] = ACTIONS(3031), - [anon_sym__Alignof] = ACTIONS(3031), - [anon_sym_offsetof] = ACTIONS(3031), - [anon_sym__Generic] = ACTIONS(3031), - [anon_sym_asm] = ACTIONS(3031), - [anon_sym___asm__] = ACTIONS(3031), - [sym_number_literal] = ACTIONS(3033), - [anon_sym_L_SQUOTE] = ACTIONS(3033), - [anon_sym_u_SQUOTE] = ACTIONS(3033), - [anon_sym_U_SQUOTE] = ACTIONS(3033), - [anon_sym_u8_SQUOTE] = ACTIONS(3033), - [anon_sym_SQUOTE] = ACTIONS(3033), - [anon_sym_L_DQUOTE] = ACTIONS(3033), - [anon_sym_u_DQUOTE] = ACTIONS(3033), - [anon_sym_U_DQUOTE] = ACTIONS(3033), - [anon_sym_u8_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [anon_sym_NULL] = ACTIONS(3031), - [anon_sym_nullptr] = ACTIONS(3031), + [1216] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4224), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3031), - [anon_sym_decltype] = ACTIONS(3031), - [anon_sym_virtual] = ACTIONS(3031), - [anon_sym_alignas] = ACTIONS(3031), - [anon_sym_explicit] = ACTIONS(3031), - [anon_sym_typename] = ACTIONS(3031), - [anon_sym_template] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3031), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_throw] = ACTIONS(3031), - [anon_sym_namespace] = ACTIONS(3031), - [anon_sym_using] = ACTIONS(3031), - [anon_sym_static_assert] = ACTIONS(3031), - [anon_sym_concept] = ACTIONS(3031), - [anon_sym_co_return] = ACTIONS(3031), - [anon_sym_co_yield] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3031), - [anon_sym_new] = ACTIONS(3031), - [anon_sym_requires] = ACTIONS(3031), - [sym_this] = ACTIONS(3031), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1154] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1217] = { + [sym__expression] = STATE(3134), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), + }, + [1218] = { + [sym__expression] = STATE(4000), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1155] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1219] = { + [sym__expression] = STATE(3859), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_initializer_list] = STATE(6198), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_default] = ACTIONS(4226), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(4228), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1156] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1220] = { + [sym__expression] = STATE(4272), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1157] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1221] = { + [sym__expression] = STATE(4040), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_initializer_list] = STATE(6627), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4230), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1158] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1222] = { + [sym__expression] = STATE(2909), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1223] = { + [sym__expression] = STATE(2905), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1224] = { + [sym__expression] = STATE(4074), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1159] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1225] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1160] = { - [sym_identifier] = ACTIONS(2933), - [aux_sym_preproc_include_token1] = ACTIONS(2933), - [aux_sym_preproc_def_token1] = ACTIONS(2933), - [aux_sym_preproc_if_token1] = ACTIONS(2933), - [aux_sym_preproc_if_token2] = ACTIONS(2933), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2933), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2933), - [sym_preproc_directive] = ACTIONS(2933), - [anon_sym_LPAREN2] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2933), - [anon_sym_SEMI] = ACTIONS(2935), - [anon_sym___extension__] = ACTIONS(2933), - [anon_sym_typedef] = ACTIONS(2933), - [anon_sym_extern] = ACTIONS(2933), - [anon_sym___attribute__] = ACTIONS(2933), - [anon_sym_COLON_COLON] = ACTIONS(2935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), - [anon_sym___declspec] = ACTIONS(2933), - [anon_sym___based] = ACTIONS(2933), - [anon_sym___cdecl] = ACTIONS(2933), - [anon_sym___clrcall] = ACTIONS(2933), - [anon_sym___stdcall] = ACTIONS(2933), - [anon_sym___fastcall] = ACTIONS(2933), - [anon_sym___thiscall] = ACTIONS(2933), - [anon_sym___vectorcall] = ACTIONS(2933), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_signed] = ACTIONS(2933), - [anon_sym_unsigned] = ACTIONS(2933), - [anon_sym_long] = ACTIONS(2933), - [anon_sym_short] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_static] = ACTIONS(2933), - [anon_sym_register] = ACTIONS(2933), - [anon_sym_inline] = ACTIONS(2933), - [anon_sym___inline] = ACTIONS(2933), - [anon_sym___inline__] = ACTIONS(2933), - [anon_sym___forceinline] = ACTIONS(2933), - [anon_sym_thread_local] = ACTIONS(2933), - [anon_sym___thread] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2933), - [anon_sym_constexpr] = ACTIONS(2933), - [anon_sym_volatile] = ACTIONS(2933), - [anon_sym_restrict] = ACTIONS(2933), - [anon_sym___restrict__] = ACTIONS(2933), - [anon_sym__Atomic] = ACTIONS(2933), - [anon_sym__Noreturn] = ACTIONS(2933), - [anon_sym_noreturn] = ACTIONS(2933), - [anon_sym_mutable] = ACTIONS(2933), - [anon_sym_constinit] = ACTIONS(2933), - [anon_sym_consteval] = ACTIONS(2933), - [sym_primitive_type] = ACTIONS(2933), - [anon_sym_enum] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2933), - [anon_sym_union] = ACTIONS(2933), - [anon_sym_if] = ACTIONS(2933), - [anon_sym_else] = ACTIONS(2933), - [anon_sym_switch] = ACTIONS(2933), - [anon_sym_case] = ACTIONS(2933), - [anon_sym_default] = ACTIONS(2933), - [anon_sym_while] = ACTIONS(2933), - [anon_sym_do] = ACTIONS(2933), - [anon_sym_for] = ACTIONS(2933), - [anon_sym_return] = ACTIONS(2933), - [anon_sym_break] = ACTIONS(2933), - [anon_sym_continue] = ACTIONS(2933), - [anon_sym_goto] = ACTIONS(2933), - [anon_sym_not] = ACTIONS(2933), - [anon_sym_compl] = ACTIONS(2933), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_sizeof] = ACTIONS(2933), - [anon_sym___alignof__] = ACTIONS(2933), - [anon_sym___alignof] = ACTIONS(2933), - [anon_sym__alignof] = ACTIONS(2933), - [anon_sym_alignof] = ACTIONS(2933), - [anon_sym__Alignof] = ACTIONS(2933), - [anon_sym_offsetof] = ACTIONS(2933), - [anon_sym__Generic] = ACTIONS(2933), - [anon_sym_asm] = ACTIONS(2933), - [anon_sym___asm__] = ACTIONS(2933), - [sym_number_literal] = ACTIONS(2935), - [anon_sym_L_SQUOTE] = ACTIONS(2935), - [anon_sym_u_SQUOTE] = ACTIONS(2935), - [anon_sym_U_SQUOTE] = ACTIONS(2935), - [anon_sym_u8_SQUOTE] = ACTIONS(2935), - [anon_sym_SQUOTE] = ACTIONS(2935), - [anon_sym_L_DQUOTE] = ACTIONS(2935), - [anon_sym_u_DQUOTE] = ACTIONS(2935), - [anon_sym_U_DQUOTE] = ACTIONS(2935), - [anon_sym_u8_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [sym_true] = ACTIONS(2933), - [sym_false] = ACTIONS(2933), - [anon_sym_NULL] = ACTIONS(2933), - [anon_sym_nullptr] = ACTIONS(2933), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2933), - [anon_sym_decltype] = ACTIONS(2933), - [anon_sym_virtual] = ACTIONS(2933), - [anon_sym_alignas] = ACTIONS(2933), - [anon_sym_explicit] = ACTIONS(2933), - [anon_sym_typename] = ACTIONS(2933), - [anon_sym_template] = ACTIONS(2933), - [anon_sym_operator] = ACTIONS(2933), - [anon_sym_try] = ACTIONS(2933), - [anon_sym_delete] = ACTIONS(2933), - [anon_sym_throw] = ACTIONS(2933), - [anon_sym_namespace] = ACTIONS(2933), - [anon_sym_using] = ACTIONS(2933), - [anon_sym_static_assert] = ACTIONS(2933), - [anon_sym_concept] = ACTIONS(2933), - [anon_sym_co_return] = ACTIONS(2933), - [anon_sym_co_yield] = ACTIONS(2933), - [anon_sym_R_DQUOTE] = ACTIONS(2935), - [anon_sym_LR_DQUOTE] = ACTIONS(2935), - [anon_sym_uR_DQUOTE] = ACTIONS(2935), - [anon_sym_UR_DQUOTE] = ACTIONS(2935), - [anon_sym_u8R_DQUOTE] = ACTIONS(2935), - [anon_sym_co_await] = ACTIONS(2933), - [anon_sym_new] = ACTIONS(2933), - [anon_sym_requires] = ACTIONS(2933), - [sym_this] = ACTIONS(2933), + [1226] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4234), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1161] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1227] = { + [sym__expression] = STATE(2920), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, - [1162] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1228] = { + [sym__expression] = STATE(3071), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), + }, + [1229] = { + [sym__expression] = STATE(4054), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1163] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1230] = { + [sym__expression] = STATE(3908), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1164] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1231] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4236), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1165] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1232] = { + [sym__expression] = STATE(3472), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [1233] = { + [sym__expression] = STATE(3991), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_lambda_default_capture] = STATE(6929), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(4170), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1166] = { - [sym_identifier] = ACTIONS(2917), - [aux_sym_preproc_include_token1] = ACTIONS(2917), - [aux_sym_preproc_def_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token2] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), - [sym_preproc_directive] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym___based] = ACTIONS(2917), - [anon_sym___cdecl] = ACTIONS(2917), - [anon_sym___clrcall] = ACTIONS(2917), - [anon_sym___stdcall] = ACTIONS(2917), - [anon_sym___fastcall] = ACTIONS(2917), - [anon_sym___thiscall] = ACTIONS(2917), - [anon_sym___vectorcall] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2917), - [anon_sym_switch] = ACTIONS(2917), - [anon_sym_case] = ACTIONS(2917), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_goto] = ACTIONS(2917), - [anon_sym_not] = ACTIONS(2917), - [anon_sym_compl] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_sizeof] = ACTIONS(2917), - [anon_sym___alignof__] = ACTIONS(2917), - [anon_sym___alignof] = ACTIONS(2917), - [anon_sym__alignof] = ACTIONS(2917), - [anon_sym_alignof] = ACTIONS(2917), - [anon_sym__Alignof] = ACTIONS(2917), - [anon_sym_offsetof] = ACTIONS(2917), - [anon_sym__Generic] = ACTIONS(2917), - [anon_sym_asm] = ACTIONS(2917), - [anon_sym___asm__] = ACTIONS(2917), - [sym_number_literal] = ACTIONS(2919), - [anon_sym_L_SQUOTE] = ACTIONS(2919), - [anon_sym_u_SQUOTE] = ACTIONS(2919), - [anon_sym_U_SQUOTE] = ACTIONS(2919), - [anon_sym_u8_SQUOTE] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2919), - [anon_sym_L_DQUOTE] = ACTIONS(2919), - [anon_sym_u_DQUOTE] = ACTIONS(2919), - [anon_sym_U_DQUOTE] = ACTIONS(2919), - [anon_sym_u8_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [anon_sym_NULL] = ACTIONS(2917), - [anon_sym_nullptr] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_explicit] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_operator] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_delete] = ACTIONS(2917), - [anon_sym_throw] = ACTIONS(2917), - [anon_sym_namespace] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_static_assert] = ACTIONS(2917), - [anon_sym_concept] = ACTIONS(2917), - [anon_sym_co_return] = ACTIONS(2917), - [anon_sym_co_yield] = ACTIONS(2917), - [anon_sym_R_DQUOTE] = ACTIONS(2919), - [anon_sym_LR_DQUOTE] = ACTIONS(2919), - [anon_sym_uR_DQUOTE] = ACTIONS(2919), - [anon_sym_UR_DQUOTE] = ACTIONS(2919), - [anon_sym_u8R_DQUOTE] = ACTIONS(2919), - [anon_sym_co_await] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2917), + [1234] = { + [sym__expression] = STATE(4158), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [1167] = { - [sym_identifier] = ACTIONS(2917), - [aux_sym_preproc_include_token1] = ACTIONS(2917), - [aux_sym_preproc_def_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token2] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), - [sym_preproc_directive] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym___based] = ACTIONS(2917), - [anon_sym___cdecl] = ACTIONS(2917), - [anon_sym___clrcall] = ACTIONS(2917), - [anon_sym___stdcall] = ACTIONS(2917), - [anon_sym___fastcall] = ACTIONS(2917), - [anon_sym___thiscall] = ACTIONS(2917), - [anon_sym___vectorcall] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2917), - [anon_sym_switch] = ACTIONS(2917), - [anon_sym_case] = ACTIONS(2917), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_goto] = ACTIONS(2917), - [anon_sym_not] = ACTIONS(2917), - [anon_sym_compl] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_sizeof] = ACTIONS(2917), - [anon_sym___alignof__] = ACTIONS(2917), - [anon_sym___alignof] = ACTIONS(2917), - [anon_sym__alignof] = ACTIONS(2917), - [anon_sym_alignof] = ACTIONS(2917), - [anon_sym__Alignof] = ACTIONS(2917), - [anon_sym_offsetof] = ACTIONS(2917), - [anon_sym__Generic] = ACTIONS(2917), - [anon_sym_asm] = ACTIONS(2917), - [anon_sym___asm__] = ACTIONS(2917), - [sym_number_literal] = ACTIONS(2919), - [anon_sym_L_SQUOTE] = ACTIONS(2919), - [anon_sym_u_SQUOTE] = ACTIONS(2919), - [anon_sym_U_SQUOTE] = ACTIONS(2919), - [anon_sym_u8_SQUOTE] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2919), - [anon_sym_L_DQUOTE] = ACTIONS(2919), - [anon_sym_u_DQUOTE] = ACTIONS(2919), - [anon_sym_U_DQUOTE] = ACTIONS(2919), - [anon_sym_u8_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [anon_sym_NULL] = ACTIONS(2917), - [anon_sym_nullptr] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_explicit] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_operator] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_delete] = ACTIONS(2917), - [anon_sym_throw] = ACTIONS(2917), - [anon_sym_namespace] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_static_assert] = ACTIONS(2917), - [anon_sym_concept] = ACTIONS(2917), - [anon_sym_co_return] = ACTIONS(2917), - [anon_sym_co_yield] = ACTIONS(2917), - [anon_sym_R_DQUOTE] = ACTIONS(2919), - [anon_sym_LR_DQUOTE] = ACTIONS(2919), - [anon_sym_uR_DQUOTE] = ACTIONS(2919), - [anon_sym_UR_DQUOTE] = ACTIONS(2919), - [anon_sym_u8R_DQUOTE] = ACTIONS(2919), - [anon_sym_co_await] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2917), + [1235] = { + [sym__expression] = STATE(2886), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, - [1168] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1236] = { + [sym__expression] = STATE(3367), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_initializer_list] = STATE(3563), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [1237] = { + [sym__expression] = STATE(3827), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(3866), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1169] = { - [ts_builtin_sym_end] = ACTIONS(3079), - [sym_identifier] = ACTIONS(3077), - [aux_sym_preproc_include_token1] = ACTIONS(3077), - [aux_sym_preproc_def_token1] = ACTIONS(3077), - [aux_sym_preproc_if_token1] = ACTIONS(3077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3077), - [sym_preproc_directive] = ACTIONS(3077), - [anon_sym_LPAREN2] = ACTIONS(3079), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_SEMI] = ACTIONS(3079), - [anon_sym___extension__] = ACTIONS(3077), - [anon_sym_typedef] = ACTIONS(3077), - [anon_sym_extern] = ACTIONS(3077), - [anon_sym___attribute__] = ACTIONS(3077), - [anon_sym_COLON_COLON] = ACTIONS(3079), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3079), - [anon_sym___declspec] = ACTIONS(3077), - [anon_sym___based] = ACTIONS(3077), - [anon_sym___cdecl] = ACTIONS(3077), - [anon_sym___clrcall] = ACTIONS(3077), - [anon_sym___stdcall] = ACTIONS(3077), - [anon_sym___fastcall] = ACTIONS(3077), - [anon_sym___thiscall] = ACTIONS(3077), - [anon_sym___vectorcall] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_signed] = ACTIONS(3077), - [anon_sym_unsigned] = ACTIONS(3077), - [anon_sym_long] = ACTIONS(3077), - [anon_sym_short] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3077), - [anon_sym_static] = ACTIONS(3077), - [anon_sym_register] = ACTIONS(3077), - [anon_sym_inline] = ACTIONS(3077), - [anon_sym___inline] = ACTIONS(3077), - [anon_sym___inline__] = ACTIONS(3077), - [anon_sym___forceinline] = ACTIONS(3077), - [anon_sym_thread_local] = ACTIONS(3077), - [anon_sym___thread] = ACTIONS(3077), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_constexpr] = ACTIONS(3077), - [anon_sym_volatile] = ACTIONS(3077), - [anon_sym_restrict] = ACTIONS(3077), - [anon_sym___restrict__] = ACTIONS(3077), - [anon_sym__Atomic] = ACTIONS(3077), - [anon_sym__Noreturn] = ACTIONS(3077), - [anon_sym_noreturn] = ACTIONS(3077), - [anon_sym_mutable] = ACTIONS(3077), - [anon_sym_constinit] = ACTIONS(3077), - [anon_sym_consteval] = ACTIONS(3077), - [sym_primitive_type] = ACTIONS(3077), - [anon_sym_enum] = ACTIONS(3077), - [anon_sym_class] = ACTIONS(3077), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_if] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3077), - [anon_sym_switch] = ACTIONS(3077), - [anon_sym_case] = ACTIONS(3077), - [anon_sym_default] = ACTIONS(3077), - [anon_sym_while] = ACTIONS(3077), - [anon_sym_do] = ACTIONS(3077), - [anon_sym_for] = ACTIONS(3077), - [anon_sym_return] = ACTIONS(3077), - [anon_sym_break] = ACTIONS(3077), - [anon_sym_continue] = ACTIONS(3077), - [anon_sym_goto] = ACTIONS(3077), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3079), - [anon_sym_PLUS_PLUS] = ACTIONS(3079), - [anon_sym_sizeof] = ACTIONS(3077), - [anon_sym___alignof__] = ACTIONS(3077), - [anon_sym___alignof] = ACTIONS(3077), - [anon_sym__alignof] = ACTIONS(3077), - [anon_sym_alignof] = ACTIONS(3077), - [anon_sym__Alignof] = ACTIONS(3077), - [anon_sym_offsetof] = ACTIONS(3077), - [anon_sym__Generic] = ACTIONS(3077), - [anon_sym_asm] = ACTIONS(3077), - [anon_sym___asm__] = ACTIONS(3077), - [sym_number_literal] = ACTIONS(3079), - [anon_sym_L_SQUOTE] = ACTIONS(3079), - [anon_sym_u_SQUOTE] = ACTIONS(3079), - [anon_sym_U_SQUOTE] = ACTIONS(3079), - [anon_sym_u8_SQUOTE] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3079), - [anon_sym_L_DQUOTE] = ACTIONS(3079), - [anon_sym_u_DQUOTE] = ACTIONS(3079), - [anon_sym_U_DQUOTE] = ACTIONS(3079), - [anon_sym_u8_DQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [sym_true] = ACTIONS(3077), - [sym_false] = ACTIONS(3077), - [anon_sym_NULL] = ACTIONS(3077), - [anon_sym_nullptr] = ACTIONS(3077), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3077), - [anon_sym_decltype] = ACTIONS(3077), - [anon_sym_virtual] = ACTIONS(3077), - [anon_sym_alignas] = ACTIONS(3077), - [anon_sym_explicit] = ACTIONS(3077), - [anon_sym_typename] = ACTIONS(3077), - [anon_sym_template] = ACTIONS(3077), - [anon_sym_operator] = ACTIONS(3077), - [anon_sym_try] = ACTIONS(3077), - [anon_sym_delete] = ACTIONS(3077), - [anon_sym_throw] = ACTIONS(3077), - [anon_sym_namespace] = ACTIONS(3077), - [anon_sym_using] = ACTIONS(3077), - [anon_sym_static_assert] = ACTIONS(3077), - [anon_sym_concept] = ACTIONS(3077), - [anon_sym_co_return] = ACTIONS(3077), - [anon_sym_co_yield] = ACTIONS(3077), - [anon_sym_R_DQUOTE] = ACTIONS(3079), - [anon_sym_LR_DQUOTE] = ACTIONS(3079), - [anon_sym_uR_DQUOTE] = ACTIONS(3079), - [anon_sym_UR_DQUOTE] = ACTIONS(3079), - [anon_sym_u8R_DQUOTE] = ACTIONS(3079), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_requires] = ACTIONS(3077), - [sym_this] = ACTIONS(3077), + [1238] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_COMMA] = ACTIONS(4240), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4240), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1170] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1239] = { + [sym__expression] = STATE(4079), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7982), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(4242), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1171] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1240] = { + [sym__expression] = STATE(4154), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7919), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(4244), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1172] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1241] = { + [sym__expression] = STATE(3827), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_initializer_list] = STATE(3866), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1173] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1242] = { + [sym__expression] = STATE(2934), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_initializer_list] = STATE(3205), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, - [1174] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1243] = { + [sym__expression] = STATE(4245), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_initializer_list] = STATE(3839), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1175] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1244] = { + [sym__expression] = STATE(4146), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7788), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(4246), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1176] = { - [sym_identifier] = ACTIONS(3099), - [aux_sym_preproc_include_token1] = ACTIONS(3099), - [aux_sym_preproc_def_token1] = ACTIONS(3099), - [aux_sym_preproc_if_token1] = ACTIONS(3099), - [aux_sym_preproc_if_token2] = ACTIONS(3099), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), - [sym_preproc_directive] = ACTIONS(3099), - [anon_sym_LPAREN2] = ACTIONS(3101), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3101), - [anon_sym___extension__] = ACTIONS(3099), - [anon_sym_typedef] = ACTIONS(3099), - [anon_sym_extern] = ACTIONS(3099), - [anon_sym___attribute__] = ACTIONS(3099), - [anon_sym_COLON_COLON] = ACTIONS(3101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), - [anon_sym___declspec] = ACTIONS(3099), - [anon_sym___based] = ACTIONS(3099), - [anon_sym___cdecl] = ACTIONS(3099), - [anon_sym___clrcall] = ACTIONS(3099), - [anon_sym___stdcall] = ACTIONS(3099), - [anon_sym___fastcall] = ACTIONS(3099), - [anon_sym___thiscall] = ACTIONS(3099), - [anon_sym___vectorcall] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_signed] = ACTIONS(3099), - [anon_sym_unsigned] = ACTIONS(3099), - [anon_sym_long] = ACTIONS(3099), - [anon_sym_short] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_register] = ACTIONS(3099), - [anon_sym_inline] = ACTIONS(3099), - [anon_sym___inline] = ACTIONS(3099), - [anon_sym___inline__] = ACTIONS(3099), - [anon_sym___forceinline] = ACTIONS(3099), - [anon_sym_thread_local] = ACTIONS(3099), - [anon_sym___thread] = ACTIONS(3099), - [anon_sym_const] = ACTIONS(3099), - [anon_sym_constexpr] = ACTIONS(3099), - [anon_sym_volatile] = ACTIONS(3099), - [anon_sym_restrict] = ACTIONS(3099), - [anon_sym___restrict__] = ACTIONS(3099), - [anon_sym__Atomic] = ACTIONS(3099), - [anon_sym__Noreturn] = ACTIONS(3099), - [anon_sym_noreturn] = ACTIONS(3099), - [anon_sym_mutable] = ACTIONS(3099), - [anon_sym_constinit] = ACTIONS(3099), - [anon_sym_consteval] = ACTIONS(3099), - [sym_primitive_type] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_union] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3099), - [anon_sym_switch] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_default] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_break] = ACTIONS(3099), - [anon_sym_continue] = ACTIONS(3099), - [anon_sym_goto] = ACTIONS(3099), - [anon_sym_not] = ACTIONS(3099), - [anon_sym_compl] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3101), - [anon_sym_sizeof] = ACTIONS(3099), - [anon_sym___alignof__] = ACTIONS(3099), - [anon_sym___alignof] = ACTIONS(3099), - [anon_sym__alignof] = ACTIONS(3099), - [anon_sym_alignof] = ACTIONS(3099), - [anon_sym__Alignof] = ACTIONS(3099), - [anon_sym_offsetof] = ACTIONS(3099), - [anon_sym__Generic] = ACTIONS(3099), - [anon_sym_asm] = ACTIONS(3099), - [anon_sym___asm__] = ACTIONS(3099), - [sym_number_literal] = ACTIONS(3101), - [anon_sym_L_SQUOTE] = ACTIONS(3101), - [anon_sym_u_SQUOTE] = ACTIONS(3101), - [anon_sym_U_SQUOTE] = ACTIONS(3101), - [anon_sym_u8_SQUOTE] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3101), - [anon_sym_L_DQUOTE] = ACTIONS(3101), - [anon_sym_u_DQUOTE] = ACTIONS(3101), - [anon_sym_U_DQUOTE] = ACTIONS(3101), - [anon_sym_u8_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [anon_sym_NULL] = ACTIONS(3099), - [anon_sym_nullptr] = ACTIONS(3099), + [1245] = { + [sym__expression] = STATE(4116), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7791), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(4248), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3099), - [anon_sym_decltype] = ACTIONS(3099), - [anon_sym_virtual] = ACTIONS(3099), - [anon_sym_alignas] = ACTIONS(3099), - [anon_sym_explicit] = ACTIONS(3099), - [anon_sym_typename] = ACTIONS(3099), - [anon_sym_template] = ACTIONS(3099), - [anon_sym_operator] = ACTIONS(3099), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_delete] = ACTIONS(3099), - [anon_sym_throw] = ACTIONS(3099), - [anon_sym_namespace] = ACTIONS(3099), - [anon_sym_using] = ACTIONS(3099), - [anon_sym_static_assert] = ACTIONS(3099), - [anon_sym_concept] = ACTIONS(3099), - [anon_sym_co_return] = ACTIONS(3099), - [anon_sym_co_yield] = ACTIONS(3099), - [anon_sym_R_DQUOTE] = ACTIONS(3101), - [anon_sym_LR_DQUOTE] = ACTIONS(3101), - [anon_sym_uR_DQUOTE] = ACTIONS(3101), - [anon_sym_UR_DQUOTE] = ACTIONS(3101), - [anon_sym_u8R_DQUOTE] = ACTIONS(3101), - [anon_sym_co_await] = ACTIONS(3099), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_requires] = ACTIONS(3099), - [sym_this] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1177] = { - [sym_identifier] = ACTIONS(3095), - [aux_sym_preproc_include_token1] = ACTIONS(3095), - [aux_sym_preproc_def_token1] = ACTIONS(3095), - [aux_sym_preproc_if_token1] = ACTIONS(3095), - [aux_sym_preproc_if_token2] = ACTIONS(3095), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), - [sym_preproc_directive] = ACTIONS(3095), - [anon_sym_LPAREN2] = ACTIONS(3097), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym___extension__] = ACTIONS(3095), - [anon_sym_typedef] = ACTIONS(3095), - [anon_sym_extern] = ACTIONS(3095), - [anon_sym___attribute__] = ACTIONS(3095), - [anon_sym_COLON_COLON] = ACTIONS(3097), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), - [anon_sym___declspec] = ACTIONS(3095), - [anon_sym___based] = ACTIONS(3095), - [anon_sym___cdecl] = ACTIONS(3095), - [anon_sym___clrcall] = ACTIONS(3095), - [anon_sym___stdcall] = ACTIONS(3095), - [anon_sym___fastcall] = ACTIONS(3095), - [anon_sym___thiscall] = ACTIONS(3095), - [anon_sym___vectorcall] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_signed] = ACTIONS(3095), - [anon_sym_unsigned] = ACTIONS(3095), - [anon_sym_long] = ACTIONS(3095), - [anon_sym_short] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_register] = ACTIONS(3095), - [anon_sym_inline] = ACTIONS(3095), - [anon_sym___inline] = ACTIONS(3095), - [anon_sym___inline__] = ACTIONS(3095), - [anon_sym___forceinline] = ACTIONS(3095), - [anon_sym_thread_local] = ACTIONS(3095), - [anon_sym___thread] = ACTIONS(3095), - [anon_sym_const] = ACTIONS(3095), - [anon_sym_constexpr] = ACTIONS(3095), - [anon_sym_volatile] = ACTIONS(3095), - [anon_sym_restrict] = ACTIONS(3095), - [anon_sym___restrict__] = ACTIONS(3095), - [anon_sym__Atomic] = ACTIONS(3095), - [anon_sym__Noreturn] = ACTIONS(3095), - [anon_sym_noreturn] = ACTIONS(3095), - [anon_sym_mutable] = ACTIONS(3095), - [anon_sym_constinit] = ACTIONS(3095), - [anon_sym_consteval] = ACTIONS(3095), - [sym_primitive_type] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_union] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3095), - [anon_sym_else] = ACTIONS(3095), - [anon_sym_switch] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_default] = ACTIONS(3095), - [anon_sym_while] = ACTIONS(3095), - [anon_sym_do] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3095), - [anon_sym_return] = ACTIONS(3095), - [anon_sym_break] = ACTIONS(3095), - [anon_sym_continue] = ACTIONS(3095), - [anon_sym_goto] = ACTIONS(3095), - [anon_sym_not] = ACTIONS(3095), - [anon_sym_compl] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_sizeof] = ACTIONS(3095), - [anon_sym___alignof__] = ACTIONS(3095), - [anon_sym___alignof] = ACTIONS(3095), - [anon_sym__alignof] = ACTIONS(3095), - [anon_sym_alignof] = ACTIONS(3095), - [anon_sym__Alignof] = ACTIONS(3095), - [anon_sym_offsetof] = ACTIONS(3095), - [anon_sym__Generic] = ACTIONS(3095), - [anon_sym_asm] = ACTIONS(3095), - [anon_sym___asm__] = ACTIONS(3095), - [sym_number_literal] = ACTIONS(3097), - [anon_sym_L_SQUOTE] = ACTIONS(3097), - [anon_sym_u_SQUOTE] = ACTIONS(3097), - [anon_sym_U_SQUOTE] = ACTIONS(3097), - [anon_sym_u8_SQUOTE] = ACTIONS(3097), - [anon_sym_SQUOTE] = ACTIONS(3097), - [anon_sym_L_DQUOTE] = ACTIONS(3097), - [anon_sym_u_DQUOTE] = ACTIONS(3097), - [anon_sym_U_DQUOTE] = ACTIONS(3097), - [anon_sym_u8_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE] = ACTIONS(3097), - [sym_true] = ACTIONS(3095), - [sym_false] = ACTIONS(3095), - [anon_sym_NULL] = ACTIONS(3095), - [anon_sym_nullptr] = ACTIONS(3095), + [1246] = { + [sym__expression] = STATE(2567), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_initializer_list] = STATE(2738), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1247] = { + [sym__expression] = STATE(3456), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_initializer_list] = STATE(3585), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [1248] = { + [sym__expression] = STATE(4150), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_initializer_list] = STATE(3839), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3095), - [anon_sym_decltype] = ACTIONS(3095), - [anon_sym_virtual] = ACTIONS(3095), - [anon_sym_alignas] = ACTIONS(3095), - [anon_sym_explicit] = ACTIONS(3095), - [anon_sym_typename] = ACTIONS(3095), - [anon_sym_template] = ACTIONS(3095), - [anon_sym_operator] = ACTIONS(3095), - [anon_sym_try] = ACTIONS(3095), - [anon_sym_delete] = ACTIONS(3095), - [anon_sym_throw] = ACTIONS(3095), - [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_using] = ACTIONS(3095), - [anon_sym_static_assert] = ACTIONS(3095), - [anon_sym_concept] = ACTIONS(3095), - [anon_sym_co_return] = ACTIONS(3095), - [anon_sym_co_yield] = ACTIONS(3095), - [anon_sym_R_DQUOTE] = ACTIONS(3097), - [anon_sym_LR_DQUOTE] = ACTIONS(3097), - [anon_sym_uR_DQUOTE] = ACTIONS(3097), - [anon_sym_UR_DQUOTE] = ACTIONS(3097), - [anon_sym_u8R_DQUOTE] = ACTIONS(3097), - [anon_sym_co_await] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_requires] = ACTIONS(3095), - [sym_this] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1178] = { - [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_extern] = ACTIONS(3027), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = 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_else] = 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), - [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), + [1249] = { + [sym__expression] = STATE(4280), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7988), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3027), - [anon_sym_decltype] = ACTIONS(3027), - [anon_sym_virtual] = ACTIONS(3027), - [anon_sym_alignas] = 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_using] = 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_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1179] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1250] = { + [sym__expression] = STATE(4065), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7992), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(4250), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1180] = { - [sym_identifier] = ACTIONS(2913), - [aux_sym_preproc_include_token1] = ACTIONS(2913), - [aux_sym_preproc_def_token1] = ACTIONS(2913), - [aux_sym_preproc_if_token1] = ACTIONS(2913), - [aux_sym_preproc_if_token2] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2913), - [sym_preproc_directive] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym___extension__] = ACTIONS(2913), - [anon_sym_typedef] = ACTIONS(2913), - [anon_sym_extern] = ACTIONS(2913), - [anon_sym___attribute__] = ACTIONS(2913), - [anon_sym_COLON_COLON] = ACTIONS(2915), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2915), - [anon_sym___declspec] = ACTIONS(2913), - [anon_sym___based] = ACTIONS(2913), - [anon_sym___cdecl] = ACTIONS(2913), - [anon_sym___clrcall] = ACTIONS(2913), - [anon_sym___stdcall] = ACTIONS(2913), - [anon_sym___fastcall] = ACTIONS(2913), - [anon_sym___thiscall] = ACTIONS(2913), - [anon_sym___vectorcall] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_signed] = ACTIONS(2913), - [anon_sym_unsigned] = ACTIONS(2913), - [anon_sym_long] = ACTIONS(2913), - [anon_sym_short] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_static] = ACTIONS(2913), - [anon_sym_register] = ACTIONS(2913), - [anon_sym_inline] = ACTIONS(2913), - [anon_sym___inline] = ACTIONS(2913), - [anon_sym___inline__] = ACTIONS(2913), - [anon_sym___forceinline] = ACTIONS(2913), - [anon_sym_thread_local] = ACTIONS(2913), - [anon_sym___thread] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_constexpr] = ACTIONS(2913), - [anon_sym_volatile] = ACTIONS(2913), - [anon_sym_restrict] = ACTIONS(2913), - [anon_sym___restrict__] = ACTIONS(2913), - [anon_sym__Atomic] = ACTIONS(2913), - [anon_sym__Noreturn] = ACTIONS(2913), - [anon_sym_noreturn] = ACTIONS(2913), - [anon_sym_mutable] = ACTIONS(2913), - [anon_sym_constinit] = ACTIONS(2913), - [anon_sym_consteval] = ACTIONS(2913), - [sym_primitive_type] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), - [anon_sym_class] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_union] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_else] = ACTIONS(2913), - [anon_sym_switch] = ACTIONS(2913), - [anon_sym_case] = ACTIONS(2913), - [anon_sym_default] = ACTIONS(2913), - [anon_sym_while] = ACTIONS(2913), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_goto] = ACTIONS(2913), - [anon_sym_not] = ACTIONS(2913), - [anon_sym_compl] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2913), - [anon_sym___alignof__] = ACTIONS(2913), - [anon_sym___alignof] = ACTIONS(2913), - [anon_sym__alignof] = ACTIONS(2913), - [anon_sym_alignof] = ACTIONS(2913), - [anon_sym__Alignof] = ACTIONS(2913), - [anon_sym_offsetof] = ACTIONS(2913), - [anon_sym__Generic] = ACTIONS(2913), - [anon_sym_asm] = ACTIONS(2913), - [anon_sym___asm__] = ACTIONS(2913), - [sym_number_literal] = ACTIONS(2915), - [anon_sym_L_SQUOTE] = ACTIONS(2915), - [anon_sym_u_SQUOTE] = ACTIONS(2915), - [anon_sym_U_SQUOTE] = ACTIONS(2915), - [anon_sym_u8_SQUOTE] = ACTIONS(2915), - [anon_sym_SQUOTE] = ACTIONS(2915), - [anon_sym_L_DQUOTE] = ACTIONS(2915), - [anon_sym_u_DQUOTE] = ACTIONS(2915), - [anon_sym_U_DQUOTE] = ACTIONS(2915), - [anon_sym_u8_DQUOTE] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(2915), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [anon_sym_NULL] = ACTIONS(2913), - [anon_sym_nullptr] = ACTIONS(2913), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2913), - [anon_sym_decltype] = ACTIONS(2913), - [anon_sym_virtual] = ACTIONS(2913), - [anon_sym_alignas] = ACTIONS(2913), - [anon_sym_explicit] = ACTIONS(2913), - [anon_sym_typename] = ACTIONS(2913), - [anon_sym_template] = ACTIONS(2913), - [anon_sym_operator] = ACTIONS(2913), - [anon_sym_try] = ACTIONS(2913), - [anon_sym_delete] = ACTIONS(2913), - [anon_sym_throw] = ACTIONS(2913), - [anon_sym_namespace] = ACTIONS(2913), - [anon_sym_using] = ACTIONS(2913), - [anon_sym_static_assert] = ACTIONS(2913), - [anon_sym_concept] = ACTIONS(2913), - [anon_sym_co_return] = ACTIONS(2913), - [anon_sym_co_yield] = ACTIONS(2913), - [anon_sym_R_DQUOTE] = ACTIONS(2915), - [anon_sym_LR_DQUOTE] = ACTIONS(2915), - [anon_sym_uR_DQUOTE] = ACTIONS(2915), - [anon_sym_UR_DQUOTE] = ACTIONS(2915), - [anon_sym_u8R_DQUOTE] = ACTIONS(2915), - [anon_sym_co_await] = ACTIONS(2913), - [anon_sym_new] = ACTIONS(2913), - [anon_sym_requires] = ACTIONS(2913), - [sym_this] = ACTIONS(2913), + [1251] = { + [sym__expression] = STATE(3100), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_initializer_list] = STATE(3379), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, - [1181] = { - [ts_builtin_sym_end] = ACTIONS(3109), - [sym_identifier] = ACTIONS(3107), - [aux_sym_preproc_include_token1] = ACTIONS(3107), - [aux_sym_preproc_def_token1] = ACTIONS(3107), - [aux_sym_preproc_if_token1] = ACTIONS(3107), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3107), - [sym_preproc_directive] = ACTIONS(3107), - [anon_sym_LPAREN2] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3109), - [anon_sym___extension__] = ACTIONS(3107), - [anon_sym_typedef] = ACTIONS(3107), - [anon_sym_extern] = ACTIONS(3107), - [anon_sym___attribute__] = ACTIONS(3107), - [anon_sym_COLON_COLON] = ACTIONS(3109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), - [anon_sym___declspec] = ACTIONS(3107), - [anon_sym___based] = ACTIONS(3107), - [anon_sym___cdecl] = ACTIONS(3107), - [anon_sym___clrcall] = ACTIONS(3107), - [anon_sym___stdcall] = ACTIONS(3107), - [anon_sym___fastcall] = ACTIONS(3107), - [anon_sym___thiscall] = ACTIONS(3107), - [anon_sym___vectorcall] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_signed] = ACTIONS(3107), - [anon_sym_unsigned] = ACTIONS(3107), - [anon_sym_long] = ACTIONS(3107), - [anon_sym_short] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_register] = ACTIONS(3107), - [anon_sym_inline] = ACTIONS(3107), - [anon_sym___inline] = ACTIONS(3107), - [anon_sym___inline__] = ACTIONS(3107), - [anon_sym___forceinline] = ACTIONS(3107), - [anon_sym_thread_local] = ACTIONS(3107), - [anon_sym___thread] = ACTIONS(3107), - [anon_sym_const] = ACTIONS(3107), - [anon_sym_constexpr] = ACTIONS(3107), - [anon_sym_volatile] = ACTIONS(3107), - [anon_sym_restrict] = ACTIONS(3107), - [anon_sym___restrict__] = ACTIONS(3107), - [anon_sym__Atomic] = ACTIONS(3107), - [anon_sym__Noreturn] = ACTIONS(3107), - [anon_sym_noreturn] = ACTIONS(3107), - [anon_sym_mutable] = ACTIONS(3107), - [anon_sym_constinit] = ACTIONS(3107), - [anon_sym_consteval] = ACTIONS(3107), - [sym_primitive_type] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3107), - [anon_sym_union] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3107), - [anon_sym_else] = ACTIONS(3107), - [anon_sym_switch] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_default] = ACTIONS(3107), - [anon_sym_while] = ACTIONS(3107), - [anon_sym_do] = ACTIONS(3107), - [anon_sym_for] = ACTIONS(3107), - [anon_sym_return] = ACTIONS(3107), - [anon_sym_break] = ACTIONS(3107), - [anon_sym_continue] = ACTIONS(3107), - [anon_sym_goto] = ACTIONS(3107), - [anon_sym_not] = ACTIONS(3107), - [anon_sym_compl] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3109), - [anon_sym_sizeof] = ACTIONS(3107), - [anon_sym___alignof__] = ACTIONS(3107), - [anon_sym___alignof] = ACTIONS(3107), - [anon_sym__alignof] = ACTIONS(3107), - [anon_sym_alignof] = ACTIONS(3107), - [anon_sym__Alignof] = ACTIONS(3107), - [anon_sym_offsetof] = ACTIONS(3107), - [anon_sym__Generic] = ACTIONS(3107), - [anon_sym_asm] = ACTIONS(3107), - [anon_sym___asm__] = ACTIONS(3107), - [sym_number_literal] = ACTIONS(3109), - [anon_sym_L_SQUOTE] = ACTIONS(3109), - [anon_sym_u_SQUOTE] = ACTIONS(3109), - [anon_sym_U_SQUOTE] = ACTIONS(3109), - [anon_sym_u8_SQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3109), - [anon_sym_L_DQUOTE] = ACTIONS(3109), - [anon_sym_u_DQUOTE] = ACTIONS(3109), - [anon_sym_U_DQUOTE] = ACTIONS(3109), - [anon_sym_u8_DQUOTE] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(3109), - [sym_true] = ACTIONS(3107), - [sym_false] = ACTIONS(3107), - [anon_sym_NULL] = ACTIONS(3107), - [anon_sym_nullptr] = ACTIONS(3107), + [1252] = { + [sym__expression] = STATE(4099), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(8009), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(4252), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3107), - [anon_sym_decltype] = ACTIONS(3107), - [anon_sym_virtual] = ACTIONS(3107), - [anon_sym_alignas] = ACTIONS(3107), - [anon_sym_explicit] = ACTIONS(3107), - [anon_sym_typename] = ACTIONS(3107), - [anon_sym_template] = ACTIONS(3107), - [anon_sym_operator] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(3107), - [anon_sym_delete] = ACTIONS(3107), - [anon_sym_throw] = ACTIONS(3107), - [anon_sym_namespace] = ACTIONS(3107), - [anon_sym_using] = ACTIONS(3107), - [anon_sym_static_assert] = ACTIONS(3107), - [anon_sym_concept] = ACTIONS(3107), - [anon_sym_co_return] = ACTIONS(3107), - [anon_sym_co_yield] = ACTIONS(3107), - [anon_sym_R_DQUOTE] = ACTIONS(3109), - [anon_sym_LR_DQUOTE] = ACTIONS(3109), - [anon_sym_uR_DQUOTE] = ACTIONS(3109), - [anon_sym_UR_DQUOTE] = ACTIONS(3109), - [anon_sym_u8R_DQUOTE] = ACTIONS(3109), - [anon_sym_co_await] = ACTIONS(3107), - [anon_sym_new] = ACTIONS(3107), - [anon_sym_requires] = ACTIONS(3107), - [sym_this] = ACTIONS(3107), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1182] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1253] = { + [sym__expression] = STATE(4141), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6995), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1183] = { - [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_extern] = ACTIONS(3027), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3027), - [anon_sym_alignas] = 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_using] = 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), + [1254] = { + [sym__expression] = STATE(3214), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_initializer_list] = STATE(2738), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1184] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1255] = { + [sym__expression] = STATE(3909), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(3839), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1185] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1256] = { + [sym__expression] = STATE(4144), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6956), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1186] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1257] = { + [sym__expression] = STATE(4210), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_initializer_list] = STATE(3866), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1187] = { - [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_extern] = ACTIONS(3111), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3111), - [anon_sym_constinit] = ACTIONS(3111), - [anon_sym_consteval] = 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_else] = 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), - [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), + [1258] = { + [sym__expression] = STATE(4093), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_initializer_list] = STATE(7058), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3111), - [anon_sym_decltype] = ACTIONS(3111), - [anon_sym_virtual] = ACTIONS(3111), - [anon_sym_alignas] = 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_using] = 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), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1188] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1259] = { + [sym__expression] = STATE(3984), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(6956), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1189] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1260] = { + [sym__expression] = STATE(3827), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_initializer_list] = STATE(3866), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1190] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1261] = { + [sym__expression] = STATE(3959), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(6879), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4254), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1191] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1262] = { + [sym__expression] = STATE(4038), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_initializer_list] = STATE(3839), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1192] = { - [sym_identifier] = ACTIONS(3091), - [aux_sym_preproc_include_token1] = ACTIONS(3091), - [aux_sym_preproc_def_token1] = ACTIONS(3091), - [aux_sym_preproc_if_token1] = ACTIONS(3091), - [aux_sym_preproc_if_token2] = ACTIONS(3091), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), - [sym_preproc_directive] = ACTIONS(3091), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3091), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3091), - [anon_sym_SEMI] = ACTIONS(3093), - [anon_sym___extension__] = ACTIONS(3091), - [anon_sym_typedef] = ACTIONS(3091), - [anon_sym_extern] = ACTIONS(3091), - [anon_sym___attribute__] = ACTIONS(3091), - [anon_sym_COLON_COLON] = ACTIONS(3093), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), - [anon_sym___declspec] = ACTIONS(3091), - [anon_sym___based] = ACTIONS(3091), - [anon_sym___cdecl] = ACTIONS(3091), - [anon_sym___clrcall] = ACTIONS(3091), - [anon_sym___stdcall] = ACTIONS(3091), - [anon_sym___fastcall] = ACTIONS(3091), - [anon_sym___thiscall] = ACTIONS(3091), - [anon_sym___vectorcall] = ACTIONS(3091), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_signed] = ACTIONS(3091), - [anon_sym_unsigned] = ACTIONS(3091), - [anon_sym_long] = ACTIONS(3091), - [anon_sym_short] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_register] = ACTIONS(3091), - [anon_sym_inline] = ACTIONS(3091), - [anon_sym___inline] = ACTIONS(3091), - [anon_sym___inline__] = ACTIONS(3091), - [anon_sym___forceinline] = ACTIONS(3091), - [anon_sym_thread_local] = ACTIONS(3091), - [anon_sym___thread] = ACTIONS(3091), - [anon_sym_const] = ACTIONS(3091), - [anon_sym_constexpr] = ACTIONS(3091), - [anon_sym_volatile] = ACTIONS(3091), - [anon_sym_restrict] = ACTIONS(3091), - [anon_sym___restrict__] = ACTIONS(3091), - [anon_sym__Atomic] = ACTIONS(3091), - [anon_sym__Noreturn] = ACTIONS(3091), - [anon_sym_noreturn] = ACTIONS(3091), - [anon_sym_mutable] = ACTIONS(3091), - [anon_sym_constinit] = ACTIONS(3091), - [anon_sym_consteval] = ACTIONS(3091), - [sym_primitive_type] = ACTIONS(3091), - [anon_sym_enum] = ACTIONS(3091), - [anon_sym_class] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(3091), - [anon_sym_union] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3091), - [anon_sym_switch] = ACTIONS(3091), - [anon_sym_case] = ACTIONS(3091), - [anon_sym_default] = ACTIONS(3091), - [anon_sym_while] = ACTIONS(3091), - [anon_sym_do] = ACTIONS(3091), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_break] = ACTIONS(3091), - [anon_sym_continue] = ACTIONS(3091), - [anon_sym_goto] = ACTIONS(3091), - [anon_sym_not] = ACTIONS(3091), - [anon_sym_compl] = ACTIONS(3091), - [anon_sym_DASH_DASH] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3093), - [anon_sym_sizeof] = ACTIONS(3091), - [anon_sym___alignof__] = ACTIONS(3091), - [anon_sym___alignof] = ACTIONS(3091), - [anon_sym__alignof] = ACTIONS(3091), - [anon_sym_alignof] = ACTIONS(3091), - [anon_sym__Alignof] = ACTIONS(3091), - [anon_sym_offsetof] = ACTIONS(3091), - [anon_sym__Generic] = ACTIONS(3091), - [anon_sym_asm] = ACTIONS(3091), - [anon_sym___asm__] = ACTIONS(3091), - [sym_number_literal] = ACTIONS(3093), - [anon_sym_L_SQUOTE] = ACTIONS(3093), - [anon_sym_u_SQUOTE] = ACTIONS(3093), - [anon_sym_U_SQUOTE] = ACTIONS(3093), - [anon_sym_u8_SQUOTE] = ACTIONS(3093), - [anon_sym_SQUOTE] = ACTIONS(3093), - [anon_sym_L_DQUOTE] = ACTIONS(3093), - [anon_sym_u_DQUOTE] = ACTIONS(3093), - [anon_sym_U_DQUOTE] = ACTIONS(3093), - [anon_sym_u8_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [sym_true] = ACTIONS(3091), - [sym_false] = ACTIONS(3091), - [anon_sym_NULL] = ACTIONS(3091), - [anon_sym_nullptr] = ACTIONS(3091), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3091), - [anon_sym_decltype] = ACTIONS(3091), - [anon_sym_virtual] = ACTIONS(3091), - [anon_sym_alignas] = ACTIONS(3091), - [anon_sym_explicit] = ACTIONS(3091), - [anon_sym_typename] = ACTIONS(3091), - [anon_sym_template] = ACTIONS(3091), - [anon_sym_operator] = ACTIONS(3091), - [anon_sym_try] = ACTIONS(3091), - [anon_sym_delete] = ACTIONS(3091), - [anon_sym_throw] = ACTIONS(3091), - [anon_sym_namespace] = ACTIONS(3091), - [anon_sym_using] = ACTIONS(3091), - [anon_sym_static_assert] = ACTIONS(3091), - [anon_sym_concept] = ACTIONS(3091), - [anon_sym_co_return] = ACTIONS(3091), - [anon_sym_co_yield] = ACTIONS(3091), - [anon_sym_R_DQUOTE] = ACTIONS(3093), - [anon_sym_LR_DQUOTE] = ACTIONS(3093), - [anon_sym_uR_DQUOTE] = ACTIONS(3093), - [anon_sym_UR_DQUOTE] = ACTIONS(3093), - [anon_sym_u8R_DQUOTE] = ACTIONS(3093), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3091), - [anon_sym_requires] = ACTIONS(3091), - [sym_this] = ACTIONS(3091), + [1263] = { + [sym__expression] = STATE(4101), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_initializer_list] = STATE(4342), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [1193] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [1264] = { + [sym__expression] = STATE(4086), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_initializer_list] = STATE(4335), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [1194] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1265] = { + [sym__expression] = STATE(4034), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_initializer_list] = STATE(6547), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1195] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1266] = { + [sym__expression] = STATE(4220), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_initializer_list] = STATE(7918), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1196] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1267] = { + [sym__expression] = STATE(2567), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_initializer_list] = STATE(2738), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1268] = { + [sym__expression] = STATE(3435), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4257), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [1269] = { + [sym__expression] = STATE(2885), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4260), + [anon_sym_LPAREN2] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, - [1197] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1270] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4264), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1271] = { + [sym__expression] = STATE(4316), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(4266), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1198] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1272] = { + [sym__expression] = STATE(2951), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4268), + [anon_sym_LPAREN2] = ACTIONS(4270), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1273] = { + [sym__expression] = STATE(4307), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_COLON] = ACTIONS(4272), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1199] = { - [sym_identifier] = ACTIONS(2853), - [aux_sym_preproc_include_token1] = ACTIONS(2853), - [aux_sym_preproc_def_token1] = ACTIONS(2853), - [aux_sym_preproc_if_token1] = ACTIONS(2853), - [aux_sym_preproc_if_token2] = ACTIONS(2853), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2853), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2853), - [sym_preproc_directive] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym___extension__] = ACTIONS(2853), - [anon_sym_typedef] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym___attribute__] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2858), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), - [anon_sym___declspec] = ACTIONS(2853), - [anon_sym___based] = ACTIONS(2853), - [anon_sym___cdecl] = ACTIONS(2853), - [anon_sym___clrcall] = ACTIONS(2853), - [anon_sym___stdcall] = ACTIONS(2853), - [anon_sym___fastcall] = ACTIONS(2853), - [anon_sym___thiscall] = ACTIONS(2853), - [anon_sym___vectorcall] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_signed] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym___inline] = ACTIONS(2853), - [anon_sym___inline__] = ACTIONS(2853), - [anon_sym___forceinline] = ACTIONS(2853), - [anon_sym_thread_local] = ACTIONS(2853), - [anon_sym___thread] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_constexpr] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym___restrict__] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym__Noreturn] = ACTIONS(2853), - [anon_sym_noreturn] = ACTIONS(2853), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_constinit] = ACTIONS(2853), - [anon_sym_consteval] = ACTIONS(2853), - [sym_primitive_type] = ACTIONS(2853), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_else] = ACTIONS(2853), - [anon_sym_switch] = ACTIONS(2853), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_default] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_do] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_goto] = ACTIONS(2853), - [anon_sym_not] = ACTIONS(2853), - [anon_sym_compl] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_sizeof] = ACTIONS(2853), - [anon_sym___alignof__] = ACTIONS(2853), - [anon_sym___alignof] = ACTIONS(2853), - [anon_sym__alignof] = ACTIONS(2853), - [anon_sym_alignof] = ACTIONS(2853), - [anon_sym__Alignof] = ACTIONS(2853), - [anon_sym_offsetof] = ACTIONS(2853), - [anon_sym__Generic] = ACTIONS(2853), - [anon_sym_asm] = ACTIONS(2853), - [anon_sym___asm__] = ACTIONS(2853), - [sym_number_literal] = ACTIONS(2858), - [anon_sym_L_SQUOTE] = ACTIONS(2858), - [anon_sym_u_SQUOTE] = ACTIONS(2858), - [anon_sym_U_SQUOTE] = ACTIONS(2858), - [anon_sym_u8_SQUOTE] = ACTIONS(2858), - [anon_sym_SQUOTE] = ACTIONS(2858), - [anon_sym_L_DQUOTE] = ACTIONS(2858), - [anon_sym_u_DQUOTE] = ACTIONS(2858), - [anon_sym_U_DQUOTE] = ACTIONS(2858), - [anon_sym_u8_DQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [sym_true] = ACTIONS(2853), - [sym_false] = ACTIONS(2853), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2853), - [anon_sym_decltype] = ACTIONS(2853), - [anon_sym_virtual] = ACTIONS(2853), - [anon_sym_alignas] = ACTIONS(2853), - [anon_sym_explicit] = ACTIONS(2853), - [anon_sym_typename] = ACTIONS(2853), - [anon_sym_template] = ACTIONS(2853), - [anon_sym_operator] = ACTIONS(2853), - [anon_sym_try] = ACTIONS(2853), - [anon_sym_delete] = ACTIONS(2853), - [anon_sym_throw] = ACTIONS(2853), - [anon_sym_namespace] = ACTIONS(2853), - [anon_sym_using] = ACTIONS(2853), - [anon_sym_static_assert] = ACTIONS(2853), - [anon_sym_concept] = ACTIONS(2853), - [anon_sym_co_return] = ACTIONS(2853), - [anon_sym_co_yield] = ACTIONS(2853), - [anon_sym_R_DQUOTE] = ACTIONS(2858), - [anon_sym_LR_DQUOTE] = ACTIONS(2858), - [anon_sym_uR_DQUOTE] = ACTIONS(2858), - [anon_sym_UR_DQUOTE] = ACTIONS(2858), - [anon_sym_u8R_DQUOTE] = ACTIONS(2858), - [anon_sym_co_await] = ACTIONS(2853), - [anon_sym_new] = ACTIONS(2853), - [anon_sym_requires] = ACTIONS(2853), - [sym_this] = ACTIONS(2853), + [1274] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4274), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1200] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1275] = { + [sym__expression] = STATE(4219), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_COLON] = ACTIONS(4276), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1201] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1276] = { + [sym__expression] = STATE(3405), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [1277] = { + [sym__expression] = STATE(3987), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1202] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [1278] = { + [sym__expression] = STATE(3405), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4285), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1203] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [1279] = { + [sym__expression] = STATE(3406), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4288), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1204] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1280] = { + [sym__expression] = STATE(4236), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_COLON] = ACTIONS(4291), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1205] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1281] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4293), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1282] = { + [sym__expression] = STATE(4294), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_COLON] = ACTIONS(4295), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1206] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1283] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4297), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1284] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4299), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1285] = { + [sym__expression] = STATE(3928), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(4303), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1207] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1286] = { + [sym__expression] = STATE(4193), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1208] = { - [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_extern] = ACTIONS(3019), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3019), - [anon_sym_constinit] = ACTIONS(3019), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3019), - [anon_sym_alignas] = 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_using] = 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), + [1287] = { + [sym__expression] = STATE(4199), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_COLON] = ACTIONS(4307), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1209] = { - [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_extern] = ACTIONS(3015), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3015), - [anon_sym_constinit] = ACTIONS(3015), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3015), - [anon_sym_alignas] = 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_using] = 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), + [1288] = { + [sym__expression] = STATE(4149), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(7869), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1210] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1289] = { + [sym__expression] = STATE(4197), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1211] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1290] = { + [sym__expression] = STATE(4297), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(4311), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1212] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1291] = { + [sym__expression] = STATE(3450), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4313), + [anon_sym_LPAREN2] = ACTIONS(4315), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [1292] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4317), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1293] = { + [sym__expression] = STATE(4249), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_COLON] = ACTIONS(4319), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1213] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1294] = { + [sym__expression] = STATE(3925), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(4321), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1214] = { - [sym_identifier] = ACTIONS(2838), - [aux_sym_preproc_include_token1] = ACTIONS(2838), - [aux_sym_preproc_def_token1] = ACTIONS(2838), - [aux_sym_preproc_if_token1] = ACTIONS(2838), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2838), - [sym_preproc_directive] = ACTIONS(2838), - [anon_sym_LPAREN2] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym___extension__] = ACTIONS(2838), - [anon_sym_typedef] = ACTIONS(2838), - [anon_sym_extern] = ACTIONS(2838), - [anon_sym___attribute__] = ACTIONS(2838), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2840), - [anon_sym___declspec] = ACTIONS(2838), - [anon_sym___based] = ACTIONS(2838), - [anon_sym___cdecl] = ACTIONS(2838), - [anon_sym___clrcall] = ACTIONS(2838), - [anon_sym___stdcall] = ACTIONS(2838), - [anon_sym___fastcall] = ACTIONS(2838), - [anon_sym___thiscall] = ACTIONS(2838), - [anon_sym___vectorcall] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_RBRACE] = ACTIONS(2840), - [anon_sym_signed] = ACTIONS(2838), - [anon_sym_unsigned] = ACTIONS(2838), - [anon_sym_long] = ACTIONS(2838), - [anon_sym_short] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_static] = ACTIONS(2838), - [anon_sym_register] = ACTIONS(2838), - [anon_sym_inline] = ACTIONS(2838), - [anon_sym___inline] = ACTIONS(2838), - [anon_sym___inline__] = ACTIONS(2838), - [anon_sym___forceinline] = ACTIONS(2838), - [anon_sym_thread_local] = ACTIONS(2838), - [anon_sym___thread] = ACTIONS(2838), - [anon_sym_const] = ACTIONS(2838), - [anon_sym_constexpr] = ACTIONS(2838), - [anon_sym_volatile] = ACTIONS(2838), - [anon_sym_restrict] = ACTIONS(2838), - [anon_sym___restrict__] = ACTIONS(2838), - [anon_sym__Atomic] = ACTIONS(2838), - [anon_sym__Noreturn] = ACTIONS(2838), - [anon_sym_noreturn] = ACTIONS(2838), - [anon_sym_mutable] = ACTIONS(2838), - [anon_sym_constinit] = ACTIONS(2838), - [anon_sym_consteval] = ACTIONS(2838), - [sym_primitive_type] = ACTIONS(2838), - [anon_sym_enum] = ACTIONS(2838), - [anon_sym_class] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2838), - [anon_sym_union] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_else] = ACTIONS(2838), - [anon_sym_switch] = ACTIONS(2838), - [anon_sym_case] = ACTIONS(2838), - [anon_sym_default] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_break] = ACTIONS(2838), - [anon_sym_continue] = ACTIONS(2838), - [anon_sym_goto] = ACTIONS(2838), - [anon_sym_not] = ACTIONS(2838), - [anon_sym_compl] = ACTIONS(2838), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_sizeof] = ACTIONS(2838), - [anon_sym___alignof__] = ACTIONS(2838), - [anon_sym___alignof] = ACTIONS(2838), - [anon_sym__alignof] = ACTIONS(2838), - [anon_sym_alignof] = ACTIONS(2838), - [anon_sym__Alignof] = ACTIONS(2838), - [anon_sym_offsetof] = ACTIONS(2838), - [anon_sym__Generic] = ACTIONS(2838), - [anon_sym_asm] = ACTIONS(2838), - [anon_sym___asm__] = ACTIONS(2838), - [sym_number_literal] = ACTIONS(2840), - [anon_sym_L_SQUOTE] = ACTIONS(2840), - [anon_sym_u_SQUOTE] = ACTIONS(2840), - [anon_sym_U_SQUOTE] = ACTIONS(2840), - [anon_sym_u8_SQUOTE] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_L_DQUOTE] = ACTIONS(2840), - [anon_sym_u_DQUOTE] = ACTIONS(2840), - [anon_sym_U_DQUOTE] = ACTIONS(2840), - [anon_sym_u8_DQUOTE] = ACTIONS(2840), - [anon_sym_DQUOTE] = ACTIONS(2840), - [sym_true] = ACTIONS(2838), - [sym_false] = ACTIONS(2838), - [anon_sym_NULL] = ACTIONS(2838), - [anon_sym_nullptr] = ACTIONS(2838), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2838), - [anon_sym_decltype] = ACTIONS(2838), - [anon_sym_virtual] = ACTIONS(2838), - [anon_sym_alignas] = ACTIONS(2838), - [anon_sym_explicit] = ACTIONS(2838), - [anon_sym_typename] = ACTIONS(2838), - [anon_sym_template] = ACTIONS(2838), - [anon_sym_operator] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_delete] = ACTIONS(2838), - [anon_sym_throw] = ACTIONS(2838), - [anon_sym_namespace] = ACTIONS(2838), - [anon_sym_using] = ACTIONS(2838), - [anon_sym_static_assert] = ACTIONS(2838), - [anon_sym_concept] = ACTIONS(2838), - [anon_sym_co_return] = ACTIONS(2838), - [anon_sym_co_yield] = ACTIONS(2838), - [anon_sym_R_DQUOTE] = ACTIONS(2840), - [anon_sym_LR_DQUOTE] = ACTIONS(2840), - [anon_sym_uR_DQUOTE] = ACTIONS(2840), - [anon_sym_UR_DQUOTE] = ACTIONS(2840), - [anon_sym_u8R_DQUOTE] = ACTIONS(2840), - [anon_sym_co_await] = ACTIONS(2838), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_requires] = ACTIONS(2838), - [sym_this] = ACTIONS(2838), + [1295] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4323), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1215] = { - [ts_builtin_sym_end] = ACTIONS(2987), - [sym_identifier] = ACTIONS(2985), - [aux_sym_preproc_include_token1] = ACTIONS(2985), - [aux_sym_preproc_def_token1] = ACTIONS(2985), - [aux_sym_preproc_if_token1] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2985), - [sym_preproc_directive] = ACTIONS(2985), - [anon_sym_LPAREN2] = ACTIONS(2987), - [anon_sym_BANG] = ACTIONS(2987), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym___extension__] = ACTIONS(2985), - [anon_sym_typedef] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym___attribute__] = ACTIONS(2985), - [anon_sym_COLON_COLON] = ACTIONS(2987), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), - [anon_sym___declspec] = ACTIONS(2985), - [anon_sym___based] = ACTIONS(2985), - [anon_sym___cdecl] = ACTIONS(2985), - [anon_sym___clrcall] = ACTIONS(2985), - [anon_sym___stdcall] = ACTIONS(2985), - [anon_sym___fastcall] = ACTIONS(2985), - [anon_sym___thiscall] = ACTIONS(2985), - [anon_sym___vectorcall] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_signed] = ACTIONS(2985), - [anon_sym_unsigned] = ACTIONS(2985), - [anon_sym_long] = ACTIONS(2985), - [anon_sym_short] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_register] = ACTIONS(2985), - [anon_sym_inline] = ACTIONS(2985), - [anon_sym___inline] = ACTIONS(2985), - [anon_sym___inline__] = ACTIONS(2985), - [anon_sym___forceinline] = ACTIONS(2985), - [anon_sym_thread_local] = ACTIONS(2985), - [anon_sym___thread] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_constexpr] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_restrict] = ACTIONS(2985), - [anon_sym___restrict__] = ACTIONS(2985), - [anon_sym__Atomic] = ACTIONS(2985), - [anon_sym__Noreturn] = ACTIONS(2985), - [anon_sym_noreturn] = ACTIONS(2985), - [anon_sym_mutable] = ACTIONS(2985), - [anon_sym_constinit] = ACTIONS(2985), - [anon_sym_consteval] = ACTIONS(2985), - [sym_primitive_type] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_class] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_union] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_switch] = ACTIONS(2985), - [anon_sym_case] = ACTIONS(2985), - [anon_sym_default] = ACTIONS(2985), - [anon_sym_while] = ACTIONS(2985), - [anon_sym_do] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym_not] = ACTIONS(2985), - [anon_sym_compl] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_sizeof] = ACTIONS(2985), - [anon_sym___alignof__] = ACTIONS(2985), - [anon_sym___alignof] = ACTIONS(2985), - [anon_sym__alignof] = ACTIONS(2985), - [anon_sym_alignof] = ACTIONS(2985), - [anon_sym__Alignof] = ACTIONS(2985), - [anon_sym_offsetof] = ACTIONS(2985), - [anon_sym__Generic] = ACTIONS(2985), - [anon_sym_asm] = ACTIONS(2985), - [anon_sym___asm__] = ACTIONS(2985), - [sym_number_literal] = ACTIONS(2987), - [anon_sym_L_SQUOTE] = ACTIONS(2987), - [anon_sym_u_SQUOTE] = ACTIONS(2987), - [anon_sym_U_SQUOTE] = ACTIONS(2987), - [anon_sym_u8_SQUOTE] = ACTIONS(2987), - [anon_sym_SQUOTE] = ACTIONS(2987), - [anon_sym_L_DQUOTE] = ACTIONS(2987), - [anon_sym_u_DQUOTE] = ACTIONS(2987), - [anon_sym_U_DQUOTE] = ACTIONS(2987), - [anon_sym_u8_DQUOTE] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [anon_sym_NULL] = ACTIONS(2985), - [anon_sym_nullptr] = ACTIONS(2985), + [1296] = { + [sym__expression] = STATE(3928), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_SEMI] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(4303), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2985), - [anon_sym_decltype] = ACTIONS(2985), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_alignas] = ACTIONS(2985), - [anon_sym_explicit] = ACTIONS(2985), - [anon_sym_typename] = ACTIONS(2985), - [anon_sym_template] = ACTIONS(2985), - [anon_sym_operator] = ACTIONS(2985), - [anon_sym_try] = ACTIONS(2985), - [anon_sym_delete] = ACTIONS(2985), - [anon_sym_throw] = ACTIONS(2985), - [anon_sym_namespace] = ACTIONS(2985), - [anon_sym_using] = ACTIONS(2985), - [anon_sym_static_assert] = ACTIONS(2985), - [anon_sym_concept] = ACTIONS(2985), - [anon_sym_co_return] = ACTIONS(2985), - [anon_sym_co_yield] = ACTIONS(2985), - [anon_sym_R_DQUOTE] = ACTIONS(2987), - [anon_sym_LR_DQUOTE] = ACTIONS(2987), - [anon_sym_uR_DQUOTE] = ACTIONS(2987), - [anon_sym_UR_DQUOTE] = ACTIONS(2987), - [anon_sym_u8R_DQUOTE] = ACTIONS(2987), - [anon_sym_co_await] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_requires] = ACTIONS(2985), - [sym_this] = ACTIONS(2985), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1216] = { - [ts_builtin_sym_end] = ACTIONS(3101), - [sym_identifier] = ACTIONS(3099), - [aux_sym_preproc_include_token1] = ACTIONS(3099), - [aux_sym_preproc_def_token1] = ACTIONS(3099), - [aux_sym_preproc_if_token1] = ACTIONS(3099), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), - [sym_preproc_directive] = ACTIONS(3099), - [anon_sym_LPAREN2] = ACTIONS(3101), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3101), - [anon_sym___extension__] = ACTIONS(3099), - [anon_sym_typedef] = ACTIONS(3099), - [anon_sym_extern] = ACTIONS(3099), - [anon_sym___attribute__] = ACTIONS(3099), - [anon_sym_COLON_COLON] = ACTIONS(3101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), - [anon_sym___declspec] = ACTIONS(3099), - [anon_sym___based] = ACTIONS(3099), - [anon_sym___cdecl] = ACTIONS(3099), - [anon_sym___clrcall] = ACTIONS(3099), - [anon_sym___stdcall] = ACTIONS(3099), - [anon_sym___fastcall] = ACTIONS(3099), - [anon_sym___thiscall] = ACTIONS(3099), - [anon_sym___vectorcall] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_signed] = ACTIONS(3099), - [anon_sym_unsigned] = ACTIONS(3099), - [anon_sym_long] = ACTIONS(3099), - [anon_sym_short] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_register] = ACTIONS(3099), - [anon_sym_inline] = ACTIONS(3099), - [anon_sym___inline] = ACTIONS(3099), - [anon_sym___inline__] = ACTIONS(3099), - [anon_sym___forceinline] = ACTIONS(3099), - [anon_sym_thread_local] = ACTIONS(3099), - [anon_sym___thread] = ACTIONS(3099), - [anon_sym_const] = ACTIONS(3099), - [anon_sym_constexpr] = ACTIONS(3099), - [anon_sym_volatile] = ACTIONS(3099), - [anon_sym_restrict] = ACTIONS(3099), - [anon_sym___restrict__] = ACTIONS(3099), - [anon_sym__Atomic] = ACTIONS(3099), - [anon_sym__Noreturn] = ACTIONS(3099), - [anon_sym_noreturn] = ACTIONS(3099), - [anon_sym_mutable] = ACTIONS(3099), - [anon_sym_constinit] = ACTIONS(3099), - [anon_sym_consteval] = ACTIONS(3099), - [sym_primitive_type] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_union] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3099), - [anon_sym_switch] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_default] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_break] = ACTIONS(3099), - [anon_sym_continue] = ACTIONS(3099), - [anon_sym_goto] = ACTIONS(3099), - [anon_sym_not] = ACTIONS(3099), - [anon_sym_compl] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3101), - [anon_sym_sizeof] = ACTIONS(3099), - [anon_sym___alignof__] = ACTIONS(3099), - [anon_sym___alignof] = ACTIONS(3099), - [anon_sym__alignof] = ACTIONS(3099), - [anon_sym_alignof] = ACTIONS(3099), - [anon_sym__Alignof] = ACTIONS(3099), - [anon_sym_offsetof] = ACTIONS(3099), - [anon_sym__Generic] = ACTIONS(3099), - [anon_sym_asm] = ACTIONS(3099), - [anon_sym___asm__] = ACTIONS(3099), - [sym_number_literal] = ACTIONS(3101), - [anon_sym_L_SQUOTE] = ACTIONS(3101), - [anon_sym_u_SQUOTE] = ACTIONS(3101), - [anon_sym_U_SQUOTE] = ACTIONS(3101), - [anon_sym_u8_SQUOTE] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3101), - [anon_sym_L_DQUOTE] = ACTIONS(3101), - [anon_sym_u_DQUOTE] = ACTIONS(3101), - [anon_sym_U_DQUOTE] = ACTIONS(3101), - [anon_sym_u8_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [anon_sym_NULL] = ACTIONS(3099), - [anon_sym_nullptr] = ACTIONS(3099), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3099), - [anon_sym_decltype] = ACTIONS(3099), - [anon_sym_virtual] = ACTIONS(3099), - [anon_sym_alignas] = ACTIONS(3099), - [anon_sym_explicit] = ACTIONS(3099), - [anon_sym_typename] = ACTIONS(3099), - [anon_sym_template] = ACTIONS(3099), - [anon_sym_operator] = ACTIONS(3099), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_delete] = ACTIONS(3099), - [anon_sym_throw] = ACTIONS(3099), - [anon_sym_namespace] = ACTIONS(3099), - [anon_sym_using] = ACTIONS(3099), - [anon_sym_static_assert] = ACTIONS(3099), - [anon_sym_concept] = ACTIONS(3099), - [anon_sym_co_return] = ACTIONS(3099), - [anon_sym_co_yield] = ACTIONS(3099), - [anon_sym_R_DQUOTE] = ACTIONS(3101), - [anon_sym_LR_DQUOTE] = ACTIONS(3101), - [anon_sym_uR_DQUOTE] = ACTIONS(3101), - [anon_sym_UR_DQUOTE] = ACTIONS(3101), - [anon_sym_u8R_DQUOTE] = ACTIONS(3101), - [anon_sym_co_await] = ACTIONS(3099), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_requires] = ACTIONS(3099), - [sym_this] = ACTIONS(3099), + [1297] = { + [sym__expression] = STATE(3435), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1217] = { - [ts_builtin_sym_end] = ACTIONS(3097), - [sym_identifier] = ACTIONS(3095), - [aux_sym_preproc_include_token1] = ACTIONS(3095), - [aux_sym_preproc_def_token1] = ACTIONS(3095), - [aux_sym_preproc_if_token1] = ACTIONS(3095), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), - [sym_preproc_directive] = ACTIONS(3095), - [anon_sym_LPAREN2] = ACTIONS(3097), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym___extension__] = ACTIONS(3095), - [anon_sym_typedef] = ACTIONS(3095), - [anon_sym_extern] = ACTIONS(3095), - [anon_sym___attribute__] = ACTIONS(3095), - [anon_sym_COLON_COLON] = ACTIONS(3097), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), - [anon_sym___declspec] = ACTIONS(3095), - [anon_sym___based] = ACTIONS(3095), - [anon_sym___cdecl] = ACTIONS(3095), - [anon_sym___clrcall] = ACTIONS(3095), - [anon_sym___stdcall] = ACTIONS(3095), - [anon_sym___fastcall] = ACTIONS(3095), - [anon_sym___thiscall] = ACTIONS(3095), - [anon_sym___vectorcall] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_signed] = ACTIONS(3095), - [anon_sym_unsigned] = ACTIONS(3095), - [anon_sym_long] = ACTIONS(3095), - [anon_sym_short] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_register] = ACTIONS(3095), - [anon_sym_inline] = ACTIONS(3095), - [anon_sym___inline] = ACTIONS(3095), - [anon_sym___inline__] = ACTIONS(3095), - [anon_sym___forceinline] = ACTIONS(3095), - [anon_sym_thread_local] = ACTIONS(3095), - [anon_sym___thread] = ACTIONS(3095), - [anon_sym_const] = ACTIONS(3095), - [anon_sym_constexpr] = ACTIONS(3095), - [anon_sym_volatile] = ACTIONS(3095), - [anon_sym_restrict] = ACTIONS(3095), - [anon_sym___restrict__] = ACTIONS(3095), - [anon_sym__Atomic] = ACTIONS(3095), - [anon_sym__Noreturn] = ACTIONS(3095), - [anon_sym_noreturn] = ACTIONS(3095), - [anon_sym_mutable] = ACTIONS(3095), - [anon_sym_constinit] = ACTIONS(3095), - [anon_sym_consteval] = ACTIONS(3095), - [sym_primitive_type] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_union] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3095), - [anon_sym_else] = ACTIONS(3095), - [anon_sym_switch] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_default] = ACTIONS(3095), - [anon_sym_while] = ACTIONS(3095), - [anon_sym_do] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3095), - [anon_sym_return] = ACTIONS(3095), - [anon_sym_break] = ACTIONS(3095), - [anon_sym_continue] = ACTIONS(3095), - [anon_sym_goto] = ACTIONS(3095), - [anon_sym_not] = ACTIONS(3095), - [anon_sym_compl] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_sizeof] = ACTIONS(3095), - [anon_sym___alignof__] = ACTIONS(3095), - [anon_sym___alignof] = ACTIONS(3095), - [anon_sym__alignof] = ACTIONS(3095), - [anon_sym_alignof] = ACTIONS(3095), - [anon_sym__Alignof] = ACTIONS(3095), - [anon_sym_offsetof] = ACTIONS(3095), - [anon_sym__Generic] = ACTIONS(3095), - [anon_sym_asm] = ACTIONS(3095), - [anon_sym___asm__] = ACTIONS(3095), - [sym_number_literal] = ACTIONS(3097), - [anon_sym_L_SQUOTE] = ACTIONS(3097), - [anon_sym_u_SQUOTE] = ACTIONS(3097), - [anon_sym_U_SQUOTE] = ACTIONS(3097), - [anon_sym_u8_SQUOTE] = ACTIONS(3097), - [anon_sym_SQUOTE] = ACTIONS(3097), - [anon_sym_L_DQUOTE] = ACTIONS(3097), - [anon_sym_u_DQUOTE] = ACTIONS(3097), - [anon_sym_U_DQUOTE] = ACTIONS(3097), - [anon_sym_u8_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE] = ACTIONS(3097), - [sym_true] = ACTIONS(3095), - [sym_false] = ACTIONS(3095), - [anon_sym_NULL] = ACTIONS(3095), - [anon_sym_nullptr] = ACTIONS(3095), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3095), - [anon_sym_decltype] = ACTIONS(3095), - [anon_sym_virtual] = ACTIONS(3095), - [anon_sym_alignas] = ACTIONS(3095), - [anon_sym_explicit] = ACTIONS(3095), - [anon_sym_typename] = ACTIONS(3095), - [anon_sym_template] = ACTIONS(3095), - [anon_sym_operator] = ACTIONS(3095), - [anon_sym_try] = ACTIONS(3095), - [anon_sym_delete] = ACTIONS(3095), - [anon_sym_throw] = ACTIONS(3095), - [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_using] = ACTIONS(3095), - [anon_sym_static_assert] = ACTIONS(3095), - [anon_sym_concept] = ACTIONS(3095), - [anon_sym_co_return] = ACTIONS(3095), - [anon_sym_co_yield] = ACTIONS(3095), - [anon_sym_R_DQUOTE] = ACTIONS(3097), - [anon_sym_LR_DQUOTE] = ACTIONS(3097), - [anon_sym_uR_DQUOTE] = ACTIONS(3097), - [anon_sym_UR_DQUOTE] = ACTIONS(3097), - [anon_sym_u8R_DQUOTE] = ACTIONS(3097), - [anon_sym_co_await] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_requires] = ACTIONS(3095), - [sym_this] = ACTIONS(3095), + [1298] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4330), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1218] = { - [sym_identifier] = ACTIONS(2786), - [aux_sym_preproc_include_token1] = ACTIONS(2786), - [aux_sym_preproc_def_token1] = ACTIONS(2786), - [aux_sym_preproc_if_token1] = ACTIONS(2786), - [aux_sym_preproc_if_token2] = ACTIONS(2786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2786), - [sym_preproc_directive] = ACTIONS(2786), - [anon_sym_LPAREN2] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2786), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym___extension__] = ACTIONS(2786), - [anon_sym_typedef] = ACTIONS(2786), - [anon_sym_extern] = ACTIONS(2786), - [anon_sym___attribute__] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2788), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2788), - [anon_sym___declspec] = ACTIONS(2786), - [anon_sym___based] = ACTIONS(2786), - [anon_sym___cdecl] = ACTIONS(2786), - [anon_sym___clrcall] = ACTIONS(2786), - [anon_sym___stdcall] = ACTIONS(2786), - [anon_sym___fastcall] = ACTIONS(2786), - [anon_sym___thiscall] = ACTIONS(2786), - [anon_sym___vectorcall] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_signed] = ACTIONS(2786), - [anon_sym_unsigned] = ACTIONS(2786), - [anon_sym_long] = ACTIONS(2786), - [anon_sym_short] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_static] = ACTIONS(2786), - [anon_sym_register] = ACTIONS(2786), - [anon_sym_inline] = ACTIONS(2786), - [anon_sym___inline] = ACTIONS(2786), - [anon_sym___inline__] = ACTIONS(2786), - [anon_sym___forceinline] = ACTIONS(2786), - [anon_sym_thread_local] = ACTIONS(2786), - [anon_sym___thread] = ACTIONS(2786), - [anon_sym_const] = ACTIONS(2786), - [anon_sym_constexpr] = ACTIONS(2786), - [anon_sym_volatile] = ACTIONS(2786), - [anon_sym_restrict] = ACTIONS(2786), - [anon_sym___restrict__] = ACTIONS(2786), - [anon_sym__Atomic] = ACTIONS(2786), - [anon_sym__Noreturn] = ACTIONS(2786), - [anon_sym_noreturn] = ACTIONS(2786), - [anon_sym_mutable] = ACTIONS(2786), - [anon_sym_constinit] = ACTIONS(2786), - [anon_sym_consteval] = ACTIONS(2786), - [sym_primitive_type] = ACTIONS(2786), - [anon_sym_enum] = ACTIONS(2786), - [anon_sym_class] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2786), - [anon_sym_union] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2786), - [anon_sym_else] = ACTIONS(2786), - [anon_sym_switch] = ACTIONS(2786), - [anon_sym_case] = ACTIONS(2786), - [anon_sym_default] = ACTIONS(2786), - [anon_sym_while] = ACTIONS(2786), - [anon_sym_do] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2786), - [anon_sym_return] = ACTIONS(2786), - [anon_sym_break] = ACTIONS(2786), - [anon_sym_continue] = ACTIONS(2786), - [anon_sym_goto] = ACTIONS(2786), - [anon_sym_not] = ACTIONS(2786), - [anon_sym_compl] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_sizeof] = ACTIONS(2786), - [anon_sym___alignof__] = ACTIONS(2786), - [anon_sym___alignof] = ACTIONS(2786), - [anon_sym__alignof] = ACTIONS(2786), - [anon_sym_alignof] = ACTIONS(2786), - [anon_sym__Alignof] = ACTIONS(2786), - [anon_sym_offsetof] = ACTIONS(2786), - [anon_sym__Generic] = ACTIONS(2786), - [anon_sym_asm] = ACTIONS(2786), - [anon_sym___asm__] = ACTIONS(2786), - [sym_number_literal] = ACTIONS(2788), - [anon_sym_L_SQUOTE] = ACTIONS(2788), - [anon_sym_u_SQUOTE] = ACTIONS(2788), - [anon_sym_U_SQUOTE] = ACTIONS(2788), - [anon_sym_u8_SQUOTE] = ACTIONS(2788), - [anon_sym_SQUOTE] = ACTIONS(2788), - [anon_sym_L_DQUOTE] = ACTIONS(2788), - [anon_sym_u_DQUOTE] = ACTIONS(2788), - [anon_sym_U_DQUOTE] = ACTIONS(2788), - [anon_sym_u8_DQUOTE] = ACTIONS(2788), - [anon_sym_DQUOTE] = ACTIONS(2788), - [sym_true] = ACTIONS(2786), - [sym_false] = ACTIONS(2786), - [anon_sym_NULL] = ACTIONS(2786), - [anon_sym_nullptr] = ACTIONS(2786), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2786), - [anon_sym_decltype] = ACTIONS(2786), - [anon_sym_virtual] = ACTIONS(2786), - [anon_sym_alignas] = ACTIONS(2786), - [anon_sym_explicit] = ACTIONS(2786), - [anon_sym_typename] = ACTIONS(2786), - [anon_sym_template] = ACTIONS(2786), - [anon_sym_operator] = ACTIONS(2786), - [anon_sym_try] = ACTIONS(2786), - [anon_sym_delete] = ACTIONS(2786), - [anon_sym_throw] = ACTIONS(2786), - [anon_sym_namespace] = ACTIONS(2786), - [anon_sym_using] = ACTIONS(2786), - [anon_sym_static_assert] = ACTIONS(2786), - [anon_sym_concept] = ACTIONS(2786), - [anon_sym_co_return] = ACTIONS(2786), - [anon_sym_co_yield] = ACTIONS(2786), - [anon_sym_R_DQUOTE] = ACTIONS(2788), - [anon_sym_LR_DQUOTE] = ACTIONS(2788), - [anon_sym_uR_DQUOTE] = ACTIONS(2788), - [anon_sym_UR_DQUOTE] = ACTIONS(2788), - [anon_sym_u8R_DQUOTE] = ACTIONS(2788), - [anon_sym_co_await] = ACTIONS(2786), - [anon_sym_new] = ACTIONS(2786), - [anon_sym_requires] = ACTIONS(2786), - [sym_this] = ACTIONS(2786), + [1299] = { + [sym__expression] = STATE(3435), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4332), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1219] = { - [ts_builtin_sym_end] = ACTIONS(3093), - [sym_identifier] = ACTIONS(3091), - [aux_sym_preproc_include_token1] = ACTIONS(3091), - [aux_sym_preproc_def_token1] = ACTIONS(3091), - [aux_sym_preproc_if_token1] = ACTIONS(3091), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), - [sym_preproc_directive] = ACTIONS(3091), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3091), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3091), - [anon_sym_SEMI] = ACTIONS(3093), - [anon_sym___extension__] = ACTIONS(3091), - [anon_sym_typedef] = ACTIONS(3091), - [anon_sym_extern] = ACTIONS(3091), - [anon_sym___attribute__] = ACTIONS(3091), - [anon_sym_COLON_COLON] = ACTIONS(3093), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), - [anon_sym___declspec] = ACTIONS(3091), - [anon_sym___based] = ACTIONS(3091), - [anon_sym___cdecl] = ACTIONS(3091), - [anon_sym___clrcall] = ACTIONS(3091), - [anon_sym___stdcall] = ACTIONS(3091), - [anon_sym___fastcall] = ACTIONS(3091), - [anon_sym___thiscall] = ACTIONS(3091), - [anon_sym___vectorcall] = ACTIONS(3091), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_signed] = ACTIONS(3091), - [anon_sym_unsigned] = ACTIONS(3091), - [anon_sym_long] = ACTIONS(3091), - [anon_sym_short] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_register] = ACTIONS(3091), - [anon_sym_inline] = ACTIONS(3091), - [anon_sym___inline] = ACTIONS(3091), - [anon_sym___inline__] = ACTIONS(3091), - [anon_sym___forceinline] = ACTIONS(3091), - [anon_sym_thread_local] = ACTIONS(3091), - [anon_sym___thread] = ACTIONS(3091), - [anon_sym_const] = ACTIONS(3091), - [anon_sym_constexpr] = ACTIONS(3091), - [anon_sym_volatile] = ACTIONS(3091), - [anon_sym_restrict] = ACTIONS(3091), - [anon_sym___restrict__] = ACTIONS(3091), - [anon_sym__Atomic] = ACTIONS(3091), - [anon_sym__Noreturn] = ACTIONS(3091), - [anon_sym_noreturn] = ACTIONS(3091), - [anon_sym_mutable] = ACTIONS(3091), - [anon_sym_constinit] = ACTIONS(3091), - [anon_sym_consteval] = ACTIONS(3091), - [sym_primitive_type] = ACTIONS(3091), - [anon_sym_enum] = ACTIONS(3091), - [anon_sym_class] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(3091), - [anon_sym_union] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3091), - [anon_sym_switch] = ACTIONS(3091), - [anon_sym_case] = ACTIONS(3091), - [anon_sym_default] = ACTIONS(3091), - [anon_sym_while] = ACTIONS(3091), - [anon_sym_do] = ACTIONS(3091), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_break] = ACTIONS(3091), - [anon_sym_continue] = ACTIONS(3091), - [anon_sym_goto] = ACTIONS(3091), - [anon_sym_not] = ACTIONS(3091), - [anon_sym_compl] = ACTIONS(3091), - [anon_sym_DASH_DASH] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3093), - [anon_sym_sizeof] = ACTIONS(3091), - [anon_sym___alignof__] = ACTIONS(3091), - [anon_sym___alignof] = ACTIONS(3091), - [anon_sym__alignof] = ACTIONS(3091), - [anon_sym_alignof] = ACTIONS(3091), - [anon_sym__Alignof] = ACTIONS(3091), - [anon_sym_offsetof] = ACTIONS(3091), - [anon_sym__Generic] = ACTIONS(3091), - [anon_sym_asm] = ACTIONS(3091), - [anon_sym___asm__] = ACTIONS(3091), - [sym_number_literal] = ACTIONS(3093), - [anon_sym_L_SQUOTE] = ACTIONS(3093), - [anon_sym_u_SQUOTE] = ACTIONS(3093), - [anon_sym_U_SQUOTE] = ACTIONS(3093), - [anon_sym_u8_SQUOTE] = ACTIONS(3093), - [anon_sym_SQUOTE] = ACTIONS(3093), - [anon_sym_L_DQUOTE] = ACTIONS(3093), - [anon_sym_u_DQUOTE] = ACTIONS(3093), - [anon_sym_U_DQUOTE] = ACTIONS(3093), - [anon_sym_u8_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [sym_true] = ACTIONS(3091), - [sym_false] = ACTIONS(3091), - [anon_sym_NULL] = ACTIONS(3091), - [anon_sym_nullptr] = ACTIONS(3091), + [1300] = { + [sym__expression] = STATE(4216), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3091), - [anon_sym_decltype] = ACTIONS(3091), - [anon_sym_virtual] = ACTIONS(3091), - [anon_sym_alignas] = ACTIONS(3091), - [anon_sym_explicit] = ACTIONS(3091), - [anon_sym_typename] = ACTIONS(3091), - [anon_sym_template] = ACTIONS(3091), - [anon_sym_operator] = ACTIONS(3091), - [anon_sym_try] = ACTIONS(3091), - [anon_sym_delete] = ACTIONS(3091), - [anon_sym_throw] = ACTIONS(3091), - [anon_sym_namespace] = ACTIONS(3091), - [anon_sym_using] = ACTIONS(3091), - [anon_sym_static_assert] = ACTIONS(3091), - [anon_sym_concept] = ACTIONS(3091), - [anon_sym_co_return] = ACTIONS(3091), - [anon_sym_co_yield] = ACTIONS(3091), - [anon_sym_R_DQUOTE] = ACTIONS(3093), - [anon_sym_LR_DQUOTE] = ACTIONS(3093), - [anon_sym_uR_DQUOTE] = ACTIONS(3093), - [anon_sym_UR_DQUOTE] = ACTIONS(3093), - [anon_sym_u8R_DQUOTE] = ACTIONS(3093), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3091), - [anon_sym_requires] = ACTIONS(3091), - [sym_this] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1220] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1301] = { + [sym__expression] = STATE(4201), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1221] = { + [1302] = { + [sym__expression] = STATE(4264), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), [sym_identifier] = ACTIONS(2782), - [aux_sym_preproc_include_token1] = ACTIONS(2782), - [aux_sym_preproc_def_token1] = ACTIONS(2782), - [aux_sym_preproc_if_token1] = ACTIONS(2782), - [aux_sym_preproc_if_token2] = ACTIONS(2782), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2782), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2782), - [sym_preproc_directive] = ACTIONS(2782), - [anon_sym_LPAREN2] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym___extension__] = ACTIONS(2782), - [anon_sym_typedef] = ACTIONS(2782), - [anon_sym_extern] = ACTIONS(2782), - [anon_sym___attribute__] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2784), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2784), - [anon_sym___declspec] = ACTIONS(2782), - [anon_sym___based] = ACTIONS(2782), - [anon_sym___cdecl] = ACTIONS(2782), - [anon_sym___clrcall] = ACTIONS(2782), - [anon_sym___stdcall] = ACTIONS(2782), - [anon_sym___fastcall] = ACTIONS(2782), - [anon_sym___thiscall] = ACTIONS(2782), - [anon_sym___vectorcall] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_signed] = ACTIONS(2782), - [anon_sym_unsigned] = ACTIONS(2782), - [anon_sym_long] = ACTIONS(2782), - [anon_sym_short] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_static] = ACTIONS(2782), - [anon_sym_register] = ACTIONS(2782), - [anon_sym_inline] = ACTIONS(2782), - [anon_sym___inline] = ACTIONS(2782), - [anon_sym___inline__] = ACTIONS(2782), - [anon_sym___forceinline] = ACTIONS(2782), - [anon_sym_thread_local] = ACTIONS(2782), - [anon_sym___thread] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_constexpr] = ACTIONS(2782), - [anon_sym_volatile] = ACTIONS(2782), - [anon_sym_restrict] = ACTIONS(2782), - [anon_sym___restrict__] = ACTIONS(2782), - [anon_sym__Atomic] = ACTIONS(2782), - [anon_sym__Noreturn] = ACTIONS(2782), - [anon_sym_noreturn] = ACTIONS(2782), - [anon_sym_mutable] = ACTIONS(2782), - [anon_sym_constinit] = ACTIONS(2782), - [anon_sym_consteval] = ACTIONS(2782), - [sym_primitive_type] = ACTIONS(2782), - [anon_sym_enum] = ACTIONS(2782), - [anon_sym_class] = ACTIONS(2782), - [anon_sym_struct] = ACTIONS(2782), - [anon_sym_union] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_else] = ACTIONS(2782), - [anon_sym_switch] = ACTIONS(2782), - [anon_sym_case] = ACTIONS(2782), - [anon_sym_default] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_goto] = ACTIONS(2782), - [anon_sym_not] = ACTIONS(2782), - [anon_sym_compl] = ACTIONS(2782), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_sizeof] = ACTIONS(2782), - [anon_sym___alignof__] = ACTIONS(2782), - [anon_sym___alignof] = ACTIONS(2782), - [anon_sym__alignof] = ACTIONS(2782), - [anon_sym_alignof] = ACTIONS(2782), - [anon_sym__Alignof] = ACTIONS(2782), - [anon_sym_offsetof] = ACTIONS(2782), - [anon_sym__Generic] = ACTIONS(2782), - [anon_sym_asm] = ACTIONS(2782), - [anon_sym___asm__] = ACTIONS(2782), - [sym_number_literal] = ACTIONS(2784), - [anon_sym_L_SQUOTE] = ACTIONS(2784), - [anon_sym_u_SQUOTE] = ACTIONS(2784), - [anon_sym_U_SQUOTE] = ACTIONS(2784), - [anon_sym_u8_SQUOTE] = ACTIONS(2784), - [anon_sym_SQUOTE] = ACTIONS(2784), - [anon_sym_L_DQUOTE] = ACTIONS(2784), - [anon_sym_u_DQUOTE] = ACTIONS(2784), - [anon_sym_U_DQUOTE] = ACTIONS(2784), - [anon_sym_u8_DQUOTE] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [sym_true] = ACTIONS(2782), - [sym_false] = ACTIONS(2782), - [anon_sym_NULL] = ACTIONS(2782), - [anon_sym_nullptr] = ACTIONS(2782), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2782), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_virtual] = ACTIONS(2782), - [anon_sym_alignas] = ACTIONS(2782), - [anon_sym_explicit] = ACTIONS(2782), - [anon_sym_typename] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2782), - [anon_sym_operator] = ACTIONS(2782), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_delete] = ACTIONS(2782), - [anon_sym_throw] = ACTIONS(2782), - [anon_sym_namespace] = ACTIONS(2782), - [anon_sym_using] = ACTIONS(2782), - [anon_sym_static_assert] = ACTIONS(2782), - [anon_sym_concept] = ACTIONS(2782), - [anon_sym_co_return] = ACTIONS(2782), - [anon_sym_co_yield] = ACTIONS(2782), - [anon_sym_R_DQUOTE] = ACTIONS(2784), - [anon_sym_LR_DQUOTE] = ACTIONS(2784), - [anon_sym_uR_DQUOTE] = ACTIONS(2784), - [anon_sym_UR_DQUOTE] = ACTIONS(2784), - [anon_sym_u8R_DQUOTE] = ACTIONS(2784), - [anon_sym_co_await] = ACTIONS(2782), - [anon_sym_new] = ACTIONS(2782), - [anon_sym_requires] = ACTIONS(2782), - [sym_this] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(4339), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1222] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1303] = { + [sym__expression] = STATE(4304), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_COLON] = ACTIONS(4341), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1223] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1304] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4343), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1305] = { + [sym__expression] = STATE(3959), + [sym__expression_not_binary] = STATE(3876), + [sym_comma_expression] = STATE(6879), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1224] = { - [ts_builtin_sym_end] = ACTIONS(3105), - [sym_identifier] = ACTIONS(3103), - [aux_sym_preproc_include_token1] = ACTIONS(3103), - [aux_sym_preproc_def_token1] = ACTIONS(3103), - [aux_sym_preproc_if_token1] = ACTIONS(3103), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), - [sym_preproc_directive] = ACTIONS(3103), - [anon_sym_LPAREN2] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_AMP_AMP] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_SEMI] = ACTIONS(3105), - [anon_sym___extension__] = ACTIONS(3103), - [anon_sym_typedef] = ACTIONS(3103), - [anon_sym_extern] = ACTIONS(3103), - [anon_sym___attribute__] = ACTIONS(3103), - [anon_sym_COLON_COLON] = ACTIONS(3105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), - [anon_sym___declspec] = ACTIONS(3103), - [anon_sym___based] = ACTIONS(3103), - [anon_sym___cdecl] = ACTIONS(3103), - [anon_sym___clrcall] = ACTIONS(3103), - [anon_sym___stdcall] = ACTIONS(3103), - [anon_sym___fastcall] = ACTIONS(3103), - [anon_sym___thiscall] = ACTIONS(3103), - [anon_sym___vectorcall] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_signed] = ACTIONS(3103), - [anon_sym_unsigned] = ACTIONS(3103), - [anon_sym_long] = ACTIONS(3103), - [anon_sym_short] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_register] = ACTIONS(3103), - [anon_sym_inline] = ACTIONS(3103), - [anon_sym___inline] = ACTIONS(3103), - [anon_sym___inline__] = ACTIONS(3103), - [anon_sym___forceinline] = ACTIONS(3103), - [anon_sym_thread_local] = ACTIONS(3103), - [anon_sym___thread] = ACTIONS(3103), - [anon_sym_const] = ACTIONS(3103), - [anon_sym_constexpr] = ACTIONS(3103), - [anon_sym_volatile] = ACTIONS(3103), - [anon_sym_restrict] = ACTIONS(3103), - [anon_sym___restrict__] = ACTIONS(3103), - [anon_sym__Atomic] = ACTIONS(3103), - [anon_sym__Noreturn] = ACTIONS(3103), - [anon_sym_noreturn] = ACTIONS(3103), - [anon_sym_mutable] = ACTIONS(3103), - [anon_sym_constinit] = ACTIONS(3103), - [anon_sym_consteval] = ACTIONS(3103), - [sym_primitive_type] = ACTIONS(3103), - [anon_sym_enum] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_union] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3103), - [anon_sym_else] = ACTIONS(3103), - [anon_sym_switch] = ACTIONS(3103), - [anon_sym_case] = ACTIONS(3103), - [anon_sym_default] = ACTIONS(3103), - [anon_sym_while] = ACTIONS(3103), - [anon_sym_do] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3103), - [anon_sym_return] = ACTIONS(3103), - [anon_sym_break] = ACTIONS(3103), - [anon_sym_continue] = ACTIONS(3103), - [anon_sym_goto] = ACTIONS(3103), - [anon_sym_not] = ACTIONS(3103), - [anon_sym_compl] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3105), - [anon_sym_sizeof] = ACTIONS(3103), - [anon_sym___alignof__] = ACTIONS(3103), - [anon_sym___alignof] = ACTIONS(3103), - [anon_sym__alignof] = ACTIONS(3103), - [anon_sym_alignof] = ACTIONS(3103), - [anon_sym__Alignof] = ACTIONS(3103), - [anon_sym_offsetof] = ACTIONS(3103), - [anon_sym__Generic] = ACTIONS(3103), - [anon_sym_asm] = ACTIONS(3103), - [anon_sym___asm__] = ACTIONS(3103), - [sym_number_literal] = ACTIONS(3105), - [anon_sym_L_SQUOTE] = ACTIONS(3105), - [anon_sym_u_SQUOTE] = ACTIONS(3105), - [anon_sym_U_SQUOTE] = ACTIONS(3105), - [anon_sym_u8_SQUOTE] = ACTIONS(3105), - [anon_sym_SQUOTE] = ACTIONS(3105), - [anon_sym_L_DQUOTE] = ACTIONS(3105), - [anon_sym_u_DQUOTE] = ACTIONS(3105), - [anon_sym_U_DQUOTE] = ACTIONS(3105), - [anon_sym_u8_DQUOTE] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym_true] = ACTIONS(3103), - [sym_false] = ACTIONS(3103), - [anon_sym_NULL] = ACTIONS(3103), - [anon_sym_nullptr] = ACTIONS(3103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3103), - [anon_sym_decltype] = ACTIONS(3103), - [anon_sym_virtual] = ACTIONS(3103), - [anon_sym_alignas] = ACTIONS(3103), - [anon_sym_explicit] = ACTIONS(3103), - [anon_sym_typename] = ACTIONS(3103), - [anon_sym_template] = ACTIONS(3103), - [anon_sym_operator] = ACTIONS(3103), - [anon_sym_try] = ACTIONS(3103), - [anon_sym_delete] = ACTIONS(3103), - [anon_sym_throw] = ACTIONS(3103), - [anon_sym_namespace] = ACTIONS(3103), - [anon_sym_using] = ACTIONS(3103), - [anon_sym_static_assert] = ACTIONS(3103), - [anon_sym_concept] = ACTIONS(3103), - [anon_sym_co_return] = ACTIONS(3103), - [anon_sym_co_yield] = ACTIONS(3103), - [anon_sym_R_DQUOTE] = ACTIONS(3105), - [anon_sym_LR_DQUOTE] = ACTIONS(3105), - [anon_sym_uR_DQUOTE] = ACTIONS(3105), - [anon_sym_UR_DQUOTE] = ACTIONS(3105), - [anon_sym_u8R_DQUOTE] = ACTIONS(3105), - [anon_sym_co_await] = ACTIONS(3103), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_requires] = ACTIONS(3103), - [sym_this] = ACTIONS(3103), + [1306] = { + [sym__expression] = STATE(4060), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4345), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [1225] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [1307] = { + [sym__expression] = STATE(3406), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4349), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1226] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1308] = { + [sym__expression] = STATE(4309), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1227] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [1309] = { + [sym__expression] = STATE(3412), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4354), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1228] = { - [sym_identifier] = ACTIONS(3035), - [aux_sym_preproc_include_token1] = ACTIONS(3035), - [aux_sym_preproc_def_token1] = ACTIONS(3035), - [aux_sym_preproc_if_token1] = ACTIONS(3035), - [aux_sym_preproc_if_token2] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), - [sym_preproc_directive] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym___extension__] = ACTIONS(3035), - [anon_sym_typedef] = ACTIONS(3035), - [anon_sym_extern] = ACTIONS(3035), - [anon_sym___attribute__] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3037), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), - [anon_sym___declspec] = ACTIONS(3035), - [anon_sym___based] = ACTIONS(3035), - [anon_sym___cdecl] = ACTIONS(3035), - [anon_sym___clrcall] = ACTIONS(3035), - [anon_sym___stdcall] = ACTIONS(3035), - [anon_sym___fastcall] = ACTIONS(3035), - [anon_sym___thiscall] = ACTIONS(3035), - [anon_sym___vectorcall] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_signed] = ACTIONS(3035), - [anon_sym_unsigned] = ACTIONS(3035), - [anon_sym_long] = ACTIONS(3035), - [anon_sym_short] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_static] = ACTIONS(3035), - [anon_sym_register] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym___inline] = ACTIONS(3035), - [anon_sym___inline__] = ACTIONS(3035), - [anon_sym___forceinline] = ACTIONS(3035), - [anon_sym_thread_local] = ACTIONS(3035), - [anon_sym___thread] = ACTIONS(3035), - [anon_sym_const] = ACTIONS(3035), - [anon_sym_constexpr] = ACTIONS(3035), - [anon_sym_volatile] = ACTIONS(3035), - [anon_sym_restrict] = ACTIONS(3035), - [anon_sym___restrict__] = ACTIONS(3035), - [anon_sym__Atomic] = ACTIONS(3035), - [anon_sym__Noreturn] = ACTIONS(3035), - [anon_sym_noreturn] = ACTIONS(3035), - [anon_sym_mutable] = ACTIONS(3035), - [anon_sym_constinit] = ACTIONS(3035), - [anon_sym_consteval] = ACTIONS(3035), - [sym_primitive_type] = ACTIONS(3035), - [anon_sym_enum] = ACTIONS(3035), - [anon_sym_class] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_union] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_switch] = ACTIONS(3035), - [anon_sym_case] = ACTIONS(3035), - [anon_sym_default] = ACTIONS(3035), - [anon_sym_while] = ACTIONS(3035), - [anon_sym_do] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_goto] = ACTIONS(3035), - [anon_sym_not] = ACTIONS(3035), - [anon_sym_compl] = ACTIONS(3035), - [anon_sym_DASH_DASH] = ACTIONS(3037), - [anon_sym_PLUS_PLUS] = ACTIONS(3037), - [anon_sym_sizeof] = ACTIONS(3035), - [anon_sym___alignof__] = ACTIONS(3035), - [anon_sym___alignof] = ACTIONS(3035), - [anon_sym__alignof] = ACTIONS(3035), - [anon_sym_alignof] = ACTIONS(3035), - [anon_sym__Alignof] = ACTIONS(3035), - [anon_sym_offsetof] = ACTIONS(3035), - [anon_sym__Generic] = ACTIONS(3035), - [anon_sym_asm] = ACTIONS(3035), - [anon_sym___asm__] = ACTIONS(3035), - [sym_number_literal] = ACTIONS(3037), - [anon_sym_L_SQUOTE] = ACTIONS(3037), - [anon_sym_u_SQUOTE] = ACTIONS(3037), - [anon_sym_U_SQUOTE] = ACTIONS(3037), - [anon_sym_u8_SQUOTE] = ACTIONS(3037), - [anon_sym_SQUOTE] = ACTIONS(3037), - [anon_sym_L_DQUOTE] = ACTIONS(3037), - [anon_sym_u_DQUOTE] = ACTIONS(3037), - [anon_sym_U_DQUOTE] = ACTIONS(3037), - [anon_sym_u8_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [sym_true] = ACTIONS(3035), - [sym_false] = ACTIONS(3035), - [anon_sym_NULL] = ACTIONS(3035), - [anon_sym_nullptr] = ACTIONS(3035), + [1310] = { + [sym__expression] = STATE(4296), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3035), - [anon_sym_decltype] = ACTIONS(3035), - [anon_sym_virtual] = ACTIONS(3035), - [anon_sym_alignas] = ACTIONS(3035), - [anon_sym_explicit] = ACTIONS(3035), - [anon_sym_typename] = ACTIONS(3035), - [anon_sym_template] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_try] = ACTIONS(3035), - [anon_sym_delete] = ACTIONS(3035), - [anon_sym_throw] = ACTIONS(3035), - [anon_sym_namespace] = ACTIONS(3035), - [anon_sym_using] = ACTIONS(3035), - [anon_sym_static_assert] = ACTIONS(3035), - [anon_sym_concept] = ACTIONS(3035), - [anon_sym_co_return] = ACTIONS(3035), - [anon_sym_co_yield] = ACTIONS(3035), - [anon_sym_R_DQUOTE] = ACTIONS(3037), - [anon_sym_LR_DQUOTE] = ACTIONS(3037), - [anon_sym_uR_DQUOTE] = ACTIONS(3037), - [anon_sym_UR_DQUOTE] = ACTIONS(3037), - [anon_sym_u8R_DQUOTE] = ACTIONS(3037), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(3035), - [sym_this] = ACTIONS(3035), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1229] = { - [sym_identifier] = ACTIONS(3057), - [aux_sym_preproc_include_token1] = ACTIONS(3057), - [aux_sym_preproc_def_token1] = ACTIONS(3057), - [aux_sym_preproc_if_token1] = ACTIONS(3057), - [aux_sym_preproc_if_token2] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3057), - [sym_preproc_directive] = ACTIONS(3057), - [anon_sym_LPAREN2] = ACTIONS(3059), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_SEMI] = ACTIONS(3059), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3057), - [anon_sym_extern] = ACTIONS(3057), - [anon_sym___attribute__] = ACTIONS(3057), - [anon_sym_COLON_COLON] = ACTIONS(3059), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3059), - [anon_sym___declspec] = ACTIONS(3057), - [anon_sym___based] = ACTIONS(3057), - [anon_sym___cdecl] = ACTIONS(3057), - [anon_sym___clrcall] = ACTIONS(3057), - [anon_sym___stdcall] = ACTIONS(3057), - [anon_sym___fastcall] = ACTIONS(3057), - [anon_sym___thiscall] = ACTIONS(3057), - [anon_sym___vectorcall] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_signed] = ACTIONS(3057), - [anon_sym_unsigned] = ACTIONS(3057), - [anon_sym_long] = ACTIONS(3057), - [anon_sym_short] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_register] = ACTIONS(3057), - [anon_sym_inline] = ACTIONS(3057), - [anon_sym___inline] = ACTIONS(3057), - [anon_sym___inline__] = ACTIONS(3057), - [anon_sym___forceinline] = ACTIONS(3057), - [anon_sym_thread_local] = ACTIONS(3057), - [anon_sym___thread] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_constexpr] = ACTIONS(3057), - [anon_sym_volatile] = ACTIONS(3057), - [anon_sym_restrict] = ACTIONS(3057), - [anon_sym___restrict__] = ACTIONS(3057), - [anon_sym__Atomic] = ACTIONS(3057), - [anon_sym__Noreturn] = ACTIONS(3057), - [anon_sym_noreturn] = ACTIONS(3057), - [anon_sym_mutable] = ACTIONS(3057), - [anon_sym_constinit] = ACTIONS(3057), - [anon_sym_consteval] = ACTIONS(3057), - [sym_primitive_type] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_class] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_else] = ACTIONS(3057), - [anon_sym_switch] = ACTIONS(3057), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3057), - [anon_sym_while] = ACTIONS(3057), - [anon_sym_do] = ACTIONS(3057), - [anon_sym_for] = ACTIONS(3057), - [anon_sym_return] = ACTIONS(3057), - [anon_sym_break] = ACTIONS(3057), - [anon_sym_continue] = ACTIONS(3057), - [anon_sym_goto] = ACTIONS(3057), - [anon_sym_not] = ACTIONS(3057), - [anon_sym_compl] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_sizeof] = ACTIONS(3057), - [anon_sym___alignof__] = ACTIONS(3057), - [anon_sym___alignof] = ACTIONS(3057), - [anon_sym__alignof] = ACTIONS(3057), - [anon_sym_alignof] = ACTIONS(3057), - [anon_sym__Alignof] = ACTIONS(3057), - [anon_sym_offsetof] = ACTIONS(3057), - [anon_sym__Generic] = ACTIONS(3057), - [anon_sym_asm] = ACTIONS(3057), - [anon_sym___asm__] = ACTIONS(3057), - [sym_number_literal] = ACTIONS(3059), - [anon_sym_L_SQUOTE] = ACTIONS(3059), - [anon_sym_u_SQUOTE] = ACTIONS(3059), - [anon_sym_U_SQUOTE] = ACTIONS(3059), - [anon_sym_u8_SQUOTE] = ACTIONS(3059), - [anon_sym_SQUOTE] = ACTIONS(3059), - [anon_sym_L_DQUOTE] = ACTIONS(3059), - [anon_sym_u_DQUOTE] = ACTIONS(3059), - [anon_sym_U_DQUOTE] = ACTIONS(3059), - [anon_sym_u8_DQUOTE] = ACTIONS(3059), - [anon_sym_DQUOTE] = ACTIONS(3059), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [anon_sym_NULL] = ACTIONS(3057), - [anon_sym_nullptr] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3057), - [anon_sym_decltype] = ACTIONS(3057), - [anon_sym_virtual] = ACTIONS(3057), - [anon_sym_alignas] = ACTIONS(3057), - [anon_sym_explicit] = ACTIONS(3057), - [anon_sym_typename] = ACTIONS(3057), - [anon_sym_template] = ACTIONS(3057), - [anon_sym_operator] = ACTIONS(3057), - [anon_sym_try] = ACTIONS(3057), - [anon_sym_delete] = ACTIONS(3057), - [anon_sym_throw] = ACTIONS(3057), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_using] = ACTIONS(3057), - [anon_sym_static_assert] = ACTIONS(3057), - [anon_sym_concept] = ACTIONS(3057), - [anon_sym_co_return] = ACTIONS(3057), - [anon_sym_co_yield] = ACTIONS(3057), - [anon_sym_R_DQUOTE] = ACTIONS(3059), - [anon_sym_LR_DQUOTE] = ACTIONS(3059), - [anon_sym_uR_DQUOTE] = ACTIONS(3059), - [anon_sym_UR_DQUOTE] = ACTIONS(3059), - [anon_sym_u8R_DQUOTE] = ACTIONS(3059), - [anon_sym_co_await] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(3057), - [sym_this] = ACTIONS(3057), + [1311] = { + [sym__expression] = STATE(3431), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4359), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1230] = { - [sym_identifier] = ACTIONS(3103), - [aux_sym_preproc_include_token1] = ACTIONS(3103), - [aux_sym_preproc_def_token1] = ACTIONS(3103), - [aux_sym_preproc_if_token1] = ACTIONS(3103), - [aux_sym_preproc_if_token2] = ACTIONS(3103), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), - [sym_preproc_directive] = ACTIONS(3103), - [anon_sym_LPAREN2] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_AMP_AMP] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_SEMI] = ACTIONS(3105), - [anon_sym___extension__] = ACTIONS(3103), - [anon_sym_typedef] = ACTIONS(3103), - [anon_sym_extern] = ACTIONS(3103), - [anon_sym___attribute__] = ACTIONS(3103), - [anon_sym_COLON_COLON] = ACTIONS(3105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), - [anon_sym___declspec] = ACTIONS(3103), - [anon_sym___based] = ACTIONS(3103), - [anon_sym___cdecl] = ACTIONS(3103), - [anon_sym___clrcall] = ACTIONS(3103), - [anon_sym___stdcall] = ACTIONS(3103), - [anon_sym___fastcall] = ACTIONS(3103), - [anon_sym___thiscall] = ACTIONS(3103), - [anon_sym___vectorcall] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_signed] = ACTIONS(3103), - [anon_sym_unsigned] = ACTIONS(3103), - [anon_sym_long] = ACTIONS(3103), - [anon_sym_short] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_register] = ACTIONS(3103), - [anon_sym_inline] = ACTIONS(3103), - [anon_sym___inline] = ACTIONS(3103), - [anon_sym___inline__] = ACTIONS(3103), - [anon_sym___forceinline] = ACTIONS(3103), - [anon_sym_thread_local] = ACTIONS(3103), - [anon_sym___thread] = ACTIONS(3103), - [anon_sym_const] = ACTIONS(3103), - [anon_sym_constexpr] = ACTIONS(3103), - [anon_sym_volatile] = ACTIONS(3103), - [anon_sym_restrict] = ACTIONS(3103), - [anon_sym___restrict__] = ACTIONS(3103), - [anon_sym__Atomic] = ACTIONS(3103), - [anon_sym__Noreturn] = ACTIONS(3103), - [anon_sym_noreturn] = ACTIONS(3103), - [anon_sym_mutable] = ACTIONS(3103), - [anon_sym_constinit] = ACTIONS(3103), - [anon_sym_consteval] = ACTIONS(3103), - [sym_primitive_type] = ACTIONS(3103), - [anon_sym_enum] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_union] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3103), - [anon_sym_else] = ACTIONS(3103), - [anon_sym_switch] = ACTIONS(3103), - [anon_sym_case] = ACTIONS(3103), - [anon_sym_default] = ACTIONS(3103), - [anon_sym_while] = ACTIONS(3103), - [anon_sym_do] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3103), - [anon_sym_return] = ACTIONS(3103), - [anon_sym_break] = ACTIONS(3103), - [anon_sym_continue] = ACTIONS(3103), - [anon_sym_goto] = ACTIONS(3103), - [anon_sym_not] = ACTIONS(3103), - [anon_sym_compl] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3105), - [anon_sym_sizeof] = ACTIONS(3103), - [anon_sym___alignof__] = ACTIONS(3103), - [anon_sym___alignof] = ACTIONS(3103), - [anon_sym__alignof] = ACTIONS(3103), - [anon_sym_alignof] = ACTIONS(3103), - [anon_sym__Alignof] = ACTIONS(3103), - [anon_sym_offsetof] = ACTIONS(3103), - [anon_sym__Generic] = ACTIONS(3103), - [anon_sym_asm] = ACTIONS(3103), - [anon_sym___asm__] = ACTIONS(3103), - [sym_number_literal] = ACTIONS(3105), - [anon_sym_L_SQUOTE] = ACTIONS(3105), - [anon_sym_u_SQUOTE] = ACTIONS(3105), - [anon_sym_U_SQUOTE] = ACTIONS(3105), - [anon_sym_u8_SQUOTE] = ACTIONS(3105), - [anon_sym_SQUOTE] = ACTIONS(3105), - [anon_sym_L_DQUOTE] = ACTIONS(3105), - [anon_sym_u_DQUOTE] = ACTIONS(3105), - [anon_sym_U_DQUOTE] = ACTIONS(3105), - [anon_sym_u8_DQUOTE] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym_true] = ACTIONS(3103), - [sym_false] = ACTIONS(3103), - [anon_sym_NULL] = ACTIONS(3103), - [anon_sym_nullptr] = ACTIONS(3103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3103), - [anon_sym_decltype] = ACTIONS(3103), - [anon_sym_virtual] = ACTIONS(3103), - [anon_sym_alignas] = ACTIONS(3103), - [anon_sym_explicit] = ACTIONS(3103), - [anon_sym_typename] = ACTIONS(3103), - [anon_sym_template] = ACTIONS(3103), - [anon_sym_operator] = ACTIONS(3103), - [anon_sym_try] = ACTIONS(3103), - [anon_sym_delete] = ACTIONS(3103), - [anon_sym_throw] = ACTIONS(3103), - [anon_sym_namespace] = ACTIONS(3103), - [anon_sym_using] = ACTIONS(3103), - [anon_sym_static_assert] = ACTIONS(3103), - [anon_sym_concept] = ACTIONS(3103), - [anon_sym_co_return] = ACTIONS(3103), - [anon_sym_co_yield] = ACTIONS(3103), - [anon_sym_R_DQUOTE] = ACTIONS(3105), - [anon_sym_LR_DQUOTE] = ACTIONS(3105), - [anon_sym_uR_DQUOTE] = ACTIONS(3105), - [anon_sym_UR_DQUOTE] = ACTIONS(3105), - [anon_sym_u8R_DQUOTE] = ACTIONS(3105), - [anon_sym_co_await] = ACTIONS(3103), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_requires] = ACTIONS(3103), - [sym_this] = ACTIONS(3103), + [1312] = { + [sym__expression] = STATE(3429), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1231] = { - [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_extern] = ACTIONS(3023), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3023), - [anon_sym_constinit] = ACTIONS(3023), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3023), - [anon_sym_alignas] = 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_using] = 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), + [1313] = { + [sym__expression] = STATE(3424), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4365), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1232] = { - [sym_identifier] = ACTIONS(2885), - [aux_sym_preproc_include_token1] = ACTIONS(2885), - [aux_sym_preproc_def_token1] = ACTIONS(2885), - [aux_sym_preproc_if_token1] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2885), - [sym_preproc_directive] = ACTIONS(2885), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym___extension__] = ACTIONS(2885), - [anon_sym_typedef] = ACTIONS(2885), - [anon_sym_extern] = ACTIONS(2885), - [anon_sym___attribute__] = ACTIONS(2885), - [anon_sym_COLON_COLON] = ACTIONS(2887), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2887), - [anon_sym___declspec] = ACTIONS(2885), - [anon_sym___based] = ACTIONS(2885), - [anon_sym___cdecl] = ACTIONS(2885), - [anon_sym___clrcall] = ACTIONS(2885), - [anon_sym___stdcall] = ACTIONS(2885), - [anon_sym___fastcall] = ACTIONS(2885), - [anon_sym___thiscall] = ACTIONS(2885), - [anon_sym___vectorcall] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_RBRACE] = ACTIONS(2887), - [anon_sym_signed] = ACTIONS(2885), - [anon_sym_unsigned] = ACTIONS(2885), - [anon_sym_long] = ACTIONS(2885), - [anon_sym_short] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_register] = ACTIONS(2885), - [anon_sym_inline] = ACTIONS(2885), - [anon_sym___inline] = ACTIONS(2885), - [anon_sym___inline__] = ACTIONS(2885), - [anon_sym___forceinline] = ACTIONS(2885), - [anon_sym_thread_local] = ACTIONS(2885), - [anon_sym___thread] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_constexpr] = ACTIONS(2885), - [anon_sym_volatile] = ACTIONS(2885), - [anon_sym_restrict] = ACTIONS(2885), - [anon_sym___restrict__] = ACTIONS(2885), - [anon_sym__Atomic] = ACTIONS(2885), - [anon_sym__Noreturn] = ACTIONS(2885), - [anon_sym_noreturn] = ACTIONS(2885), - [anon_sym_mutable] = ACTIONS(2885), - [anon_sym_constinit] = ACTIONS(2885), - [anon_sym_consteval] = ACTIONS(2885), - [sym_primitive_type] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_union] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_else] = ACTIONS(2885), - [anon_sym_switch] = ACTIONS(2885), - [anon_sym_case] = ACTIONS(2885), - [anon_sym_default] = ACTIONS(2885), - [anon_sym_while] = ACTIONS(2885), - [anon_sym_do] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_goto] = ACTIONS(2885), - [anon_sym_not] = ACTIONS(2885), - [anon_sym_compl] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_sizeof] = ACTIONS(2885), - [anon_sym___alignof__] = ACTIONS(2885), - [anon_sym___alignof] = ACTIONS(2885), - [anon_sym__alignof] = ACTIONS(2885), - [anon_sym_alignof] = ACTIONS(2885), - [anon_sym__Alignof] = ACTIONS(2885), - [anon_sym_offsetof] = ACTIONS(2885), - [anon_sym__Generic] = ACTIONS(2885), - [anon_sym_asm] = ACTIONS(2885), - [anon_sym___asm__] = ACTIONS(2885), - [sym_number_literal] = ACTIONS(2887), - [anon_sym_L_SQUOTE] = ACTIONS(2887), - [anon_sym_u_SQUOTE] = ACTIONS(2887), - [anon_sym_U_SQUOTE] = ACTIONS(2887), - [anon_sym_u8_SQUOTE] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_L_DQUOTE] = ACTIONS(2887), - [anon_sym_u_DQUOTE] = ACTIONS(2887), - [anon_sym_U_DQUOTE] = ACTIONS(2887), - [anon_sym_u8_DQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [sym_true] = ACTIONS(2885), - [sym_false] = ACTIONS(2885), - [anon_sym_NULL] = ACTIONS(2885), - [anon_sym_nullptr] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2885), - [anon_sym_decltype] = ACTIONS(2885), - [anon_sym_virtual] = ACTIONS(2885), - [anon_sym_alignas] = ACTIONS(2885), - [anon_sym_explicit] = ACTIONS(2885), - [anon_sym_typename] = ACTIONS(2885), - [anon_sym_template] = ACTIONS(2885), - [anon_sym_operator] = ACTIONS(2885), - [anon_sym_try] = ACTIONS(2885), - [anon_sym_delete] = ACTIONS(2885), - [anon_sym_throw] = ACTIONS(2885), - [anon_sym_namespace] = ACTIONS(2885), - [anon_sym_using] = ACTIONS(2885), - [anon_sym_static_assert] = ACTIONS(2885), - [anon_sym_concept] = ACTIONS(2885), - [anon_sym_co_return] = ACTIONS(2885), - [anon_sym_co_yield] = ACTIONS(2885), - [anon_sym_R_DQUOTE] = ACTIONS(2887), - [anon_sym_LR_DQUOTE] = ACTIONS(2887), - [anon_sym_uR_DQUOTE] = ACTIONS(2887), - [anon_sym_UR_DQUOTE] = ACTIONS(2887), - [anon_sym_u8R_DQUOTE] = ACTIONS(2887), - [anon_sym_co_await] = ACTIONS(2885), - [anon_sym_new] = ACTIONS(2885), - [anon_sym_requires] = ACTIONS(2885), - [sym_this] = ACTIONS(2885), + [1314] = { + [sym__expression] = STATE(3436), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4368), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1233] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1315] = { + [sym__expression] = STATE(4319), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_COLON] = ACTIONS(4371), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), - }, - [1234] = { - [sym_identifier] = ACTIONS(2891), - [aux_sym_preproc_include_token1] = ACTIONS(2891), - [aux_sym_preproc_def_token1] = ACTIONS(2891), - [aux_sym_preproc_if_token1] = ACTIONS(2891), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2891), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2891), - [sym_preproc_directive] = ACTIONS(2891), - [anon_sym_LPAREN2] = ACTIONS(2893), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_TILDE] = ACTIONS(2893), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2893), - [anon_sym_AMP_AMP] = ACTIONS(2893), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(2893), - [anon_sym___extension__] = ACTIONS(2891), - [anon_sym_typedef] = ACTIONS(2891), - [anon_sym_extern] = ACTIONS(2891), - [anon_sym___attribute__] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2893), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2893), - [anon_sym___declspec] = ACTIONS(2891), - [anon_sym___based] = ACTIONS(2891), - [anon_sym___cdecl] = ACTIONS(2891), - [anon_sym___clrcall] = ACTIONS(2891), - [anon_sym___stdcall] = ACTIONS(2891), - [anon_sym___fastcall] = ACTIONS(2891), - [anon_sym___thiscall] = ACTIONS(2891), - [anon_sym___vectorcall] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2893), - [anon_sym_RBRACE] = ACTIONS(2893), - [anon_sym_signed] = ACTIONS(2891), - [anon_sym_unsigned] = ACTIONS(2891), - [anon_sym_long] = ACTIONS(2891), - [anon_sym_short] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2891), - [anon_sym_static] = ACTIONS(2891), - [anon_sym_register] = ACTIONS(2891), - [anon_sym_inline] = ACTIONS(2891), - [anon_sym___inline] = ACTIONS(2891), - [anon_sym___inline__] = ACTIONS(2891), - [anon_sym___forceinline] = ACTIONS(2891), - [anon_sym_thread_local] = ACTIONS(2891), - [anon_sym___thread] = ACTIONS(2891), - [anon_sym_const] = ACTIONS(2891), - [anon_sym_constexpr] = ACTIONS(2891), - [anon_sym_volatile] = ACTIONS(2891), - [anon_sym_restrict] = ACTIONS(2891), - [anon_sym___restrict__] = ACTIONS(2891), - [anon_sym__Atomic] = ACTIONS(2891), - [anon_sym__Noreturn] = ACTIONS(2891), - [anon_sym_noreturn] = ACTIONS(2891), - [anon_sym_mutable] = ACTIONS(2891), - [anon_sym_constinit] = ACTIONS(2891), - [anon_sym_consteval] = ACTIONS(2891), - [sym_primitive_type] = ACTIONS(2891), - [anon_sym_enum] = ACTIONS(2891), - [anon_sym_class] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_union] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_else] = ACTIONS(2891), - [anon_sym_switch] = ACTIONS(2891), - [anon_sym_case] = ACTIONS(2891), - [anon_sym_default] = ACTIONS(2891), - [anon_sym_while] = ACTIONS(2891), - [anon_sym_do] = ACTIONS(2891), - [anon_sym_for] = ACTIONS(2891), - [anon_sym_return] = ACTIONS(2891), - [anon_sym_break] = ACTIONS(2891), - [anon_sym_continue] = ACTIONS(2891), - [anon_sym_goto] = ACTIONS(2891), - [anon_sym_not] = ACTIONS(2891), - [anon_sym_compl] = ACTIONS(2891), - [anon_sym_DASH_DASH] = ACTIONS(2893), - [anon_sym_PLUS_PLUS] = ACTIONS(2893), - [anon_sym_sizeof] = ACTIONS(2891), - [anon_sym___alignof__] = ACTIONS(2891), - [anon_sym___alignof] = ACTIONS(2891), - [anon_sym__alignof] = ACTIONS(2891), - [anon_sym_alignof] = ACTIONS(2891), - [anon_sym__Alignof] = ACTIONS(2891), - [anon_sym_offsetof] = ACTIONS(2891), - [anon_sym__Generic] = ACTIONS(2891), - [anon_sym_asm] = ACTIONS(2891), - [anon_sym___asm__] = ACTIONS(2891), - [sym_number_literal] = ACTIONS(2893), - [anon_sym_L_SQUOTE] = ACTIONS(2893), - [anon_sym_u_SQUOTE] = ACTIONS(2893), - [anon_sym_U_SQUOTE] = ACTIONS(2893), - [anon_sym_u8_SQUOTE] = ACTIONS(2893), - [anon_sym_SQUOTE] = ACTIONS(2893), - [anon_sym_L_DQUOTE] = ACTIONS(2893), - [anon_sym_u_DQUOTE] = ACTIONS(2893), - [anon_sym_U_DQUOTE] = ACTIONS(2893), - [anon_sym_u8_DQUOTE] = ACTIONS(2893), - [anon_sym_DQUOTE] = ACTIONS(2893), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [anon_sym_NULL] = ACTIONS(2891), - [anon_sym_nullptr] = ACTIONS(2891), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2891), - [anon_sym_decltype] = ACTIONS(2891), - [anon_sym_virtual] = ACTIONS(2891), - [anon_sym_alignas] = ACTIONS(2891), - [anon_sym_explicit] = ACTIONS(2891), - [anon_sym_typename] = ACTIONS(2891), - [anon_sym_template] = ACTIONS(2891), - [anon_sym_operator] = ACTIONS(2891), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_delete] = ACTIONS(2891), - [anon_sym_throw] = ACTIONS(2891), - [anon_sym_namespace] = ACTIONS(2891), - [anon_sym_using] = ACTIONS(2891), - [anon_sym_static_assert] = ACTIONS(2891), - [anon_sym_concept] = ACTIONS(2891), - [anon_sym_co_return] = ACTIONS(2891), - [anon_sym_co_yield] = ACTIONS(2891), - [anon_sym_R_DQUOTE] = ACTIONS(2893), - [anon_sym_LR_DQUOTE] = ACTIONS(2893), - [anon_sym_uR_DQUOTE] = ACTIONS(2893), - [anon_sym_UR_DQUOTE] = ACTIONS(2893), - [anon_sym_u8R_DQUOTE] = ACTIONS(2893), - [anon_sym_co_await] = ACTIONS(2891), - [anon_sym_new] = ACTIONS(2891), - [anon_sym_requires] = ACTIONS(2891), - [sym_this] = ACTIONS(2891), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1235] = { - [sym_identifier] = ACTIONS(3077), - [aux_sym_preproc_include_token1] = ACTIONS(3077), - [aux_sym_preproc_def_token1] = ACTIONS(3077), - [aux_sym_preproc_if_token1] = ACTIONS(3077), - [aux_sym_preproc_if_token2] = ACTIONS(3077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3077), - [sym_preproc_directive] = ACTIONS(3077), - [anon_sym_LPAREN2] = ACTIONS(3079), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_SEMI] = ACTIONS(3079), - [anon_sym___extension__] = ACTIONS(3077), - [anon_sym_typedef] = ACTIONS(3077), - [anon_sym_extern] = ACTIONS(3077), - [anon_sym___attribute__] = ACTIONS(3077), - [anon_sym_COLON_COLON] = ACTIONS(3079), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3079), - [anon_sym___declspec] = ACTIONS(3077), - [anon_sym___based] = ACTIONS(3077), - [anon_sym___cdecl] = ACTIONS(3077), - [anon_sym___clrcall] = ACTIONS(3077), - [anon_sym___stdcall] = ACTIONS(3077), - [anon_sym___fastcall] = ACTIONS(3077), - [anon_sym___thiscall] = ACTIONS(3077), - [anon_sym___vectorcall] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_signed] = ACTIONS(3077), - [anon_sym_unsigned] = ACTIONS(3077), - [anon_sym_long] = ACTIONS(3077), - [anon_sym_short] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3077), - [anon_sym_static] = ACTIONS(3077), - [anon_sym_register] = ACTIONS(3077), - [anon_sym_inline] = ACTIONS(3077), - [anon_sym___inline] = ACTIONS(3077), - [anon_sym___inline__] = ACTIONS(3077), - [anon_sym___forceinline] = ACTIONS(3077), - [anon_sym_thread_local] = ACTIONS(3077), - [anon_sym___thread] = ACTIONS(3077), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_constexpr] = ACTIONS(3077), - [anon_sym_volatile] = ACTIONS(3077), - [anon_sym_restrict] = ACTIONS(3077), - [anon_sym___restrict__] = ACTIONS(3077), - [anon_sym__Atomic] = ACTIONS(3077), - [anon_sym__Noreturn] = ACTIONS(3077), - [anon_sym_noreturn] = ACTIONS(3077), - [anon_sym_mutable] = ACTIONS(3077), - [anon_sym_constinit] = ACTIONS(3077), - [anon_sym_consteval] = ACTIONS(3077), - [sym_primitive_type] = ACTIONS(3077), - [anon_sym_enum] = ACTIONS(3077), - [anon_sym_class] = ACTIONS(3077), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_if] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3077), - [anon_sym_switch] = ACTIONS(3077), - [anon_sym_case] = ACTIONS(3077), - [anon_sym_default] = ACTIONS(3077), - [anon_sym_while] = ACTIONS(3077), - [anon_sym_do] = ACTIONS(3077), - [anon_sym_for] = ACTIONS(3077), - [anon_sym_return] = ACTIONS(3077), - [anon_sym_break] = ACTIONS(3077), - [anon_sym_continue] = ACTIONS(3077), - [anon_sym_goto] = ACTIONS(3077), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3079), - [anon_sym_PLUS_PLUS] = ACTIONS(3079), - [anon_sym_sizeof] = ACTIONS(3077), - [anon_sym___alignof__] = ACTIONS(3077), - [anon_sym___alignof] = ACTIONS(3077), - [anon_sym__alignof] = ACTIONS(3077), - [anon_sym_alignof] = ACTIONS(3077), - [anon_sym__Alignof] = ACTIONS(3077), - [anon_sym_offsetof] = ACTIONS(3077), - [anon_sym__Generic] = ACTIONS(3077), - [anon_sym_asm] = ACTIONS(3077), - [anon_sym___asm__] = ACTIONS(3077), - [sym_number_literal] = ACTIONS(3079), - [anon_sym_L_SQUOTE] = ACTIONS(3079), - [anon_sym_u_SQUOTE] = ACTIONS(3079), - [anon_sym_U_SQUOTE] = ACTIONS(3079), - [anon_sym_u8_SQUOTE] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3079), - [anon_sym_L_DQUOTE] = ACTIONS(3079), - [anon_sym_u_DQUOTE] = ACTIONS(3079), - [anon_sym_U_DQUOTE] = ACTIONS(3079), - [anon_sym_u8_DQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [sym_true] = ACTIONS(3077), - [sym_false] = ACTIONS(3077), - [anon_sym_NULL] = ACTIONS(3077), - [anon_sym_nullptr] = ACTIONS(3077), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3077), - [anon_sym_decltype] = ACTIONS(3077), - [anon_sym_virtual] = ACTIONS(3077), - [anon_sym_alignas] = ACTIONS(3077), - [anon_sym_explicit] = ACTIONS(3077), - [anon_sym_typename] = ACTIONS(3077), - [anon_sym_template] = ACTIONS(3077), - [anon_sym_operator] = ACTIONS(3077), - [anon_sym_try] = ACTIONS(3077), - [anon_sym_delete] = ACTIONS(3077), - [anon_sym_throw] = ACTIONS(3077), - [anon_sym_namespace] = ACTIONS(3077), - [anon_sym_using] = ACTIONS(3077), - [anon_sym_static_assert] = ACTIONS(3077), - [anon_sym_concept] = ACTIONS(3077), - [anon_sym_co_return] = ACTIONS(3077), - [anon_sym_co_yield] = ACTIONS(3077), - [anon_sym_R_DQUOTE] = ACTIONS(3079), - [anon_sym_LR_DQUOTE] = ACTIONS(3079), - [anon_sym_uR_DQUOTE] = ACTIONS(3079), - [anon_sym_UR_DQUOTE] = ACTIONS(3079), - [anon_sym_u8R_DQUOTE] = ACTIONS(3079), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_requires] = ACTIONS(3077), - [sym_this] = ACTIONS(3077), + [1316] = { + [sym__expression] = STATE(3426), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4373), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1236] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1317] = { + [sym__expression] = STATE(4190), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(4376), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1237] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [1318] = { + [sym__expression] = STATE(3427), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4378), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1238] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1319] = { + [sym__expression] = STATE(4247), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_COLON] = ACTIONS(4381), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - }, - [1239] = { - [sym_identifier] = ACTIONS(3065), - [aux_sym_preproc_include_token1] = ACTIONS(3065), - [aux_sym_preproc_def_token1] = ACTIONS(3065), - [aux_sym_preproc_if_token1] = ACTIONS(3065), - [aux_sym_preproc_if_token2] = ACTIONS(3065), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3065), - [sym_preproc_directive] = ACTIONS(3065), - [anon_sym_LPAREN2] = ACTIONS(3067), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP_AMP] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym___extension__] = ACTIONS(3065), - [anon_sym_typedef] = ACTIONS(3065), - [anon_sym_extern] = ACTIONS(3065), - [anon_sym___attribute__] = ACTIONS(3065), - [anon_sym_COLON_COLON] = ACTIONS(3067), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3067), - [anon_sym___declspec] = ACTIONS(3065), - [anon_sym___based] = ACTIONS(3065), - [anon_sym___cdecl] = ACTIONS(3065), - [anon_sym___clrcall] = ACTIONS(3065), - [anon_sym___stdcall] = ACTIONS(3065), - [anon_sym___fastcall] = ACTIONS(3065), - [anon_sym___thiscall] = ACTIONS(3065), - [anon_sym___vectorcall] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_signed] = ACTIONS(3065), - [anon_sym_unsigned] = ACTIONS(3065), - [anon_sym_long] = ACTIONS(3065), - [anon_sym_short] = ACTIONS(3065), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(3065), - [anon_sym_register] = ACTIONS(3065), - [anon_sym_inline] = ACTIONS(3065), - [anon_sym___inline] = ACTIONS(3065), - [anon_sym___inline__] = ACTIONS(3065), - [anon_sym___forceinline] = ACTIONS(3065), - [anon_sym_thread_local] = ACTIONS(3065), - [anon_sym___thread] = ACTIONS(3065), - [anon_sym_const] = ACTIONS(3065), - [anon_sym_constexpr] = ACTIONS(3065), - [anon_sym_volatile] = ACTIONS(3065), - [anon_sym_restrict] = ACTIONS(3065), - [anon_sym___restrict__] = ACTIONS(3065), - [anon_sym__Atomic] = ACTIONS(3065), - [anon_sym__Noreturn] = ACTIONS(3065), - [anon_sym_noreturn] = ACTIONS(3065), - [anon_sym_mutable] = ACTIONS(3065), - [anon_sym_constinit] = ACTIONS(3065), - [anon_sym_consteval] = ACTIONS(3065), - [sym_primitive_type] = ACTIONS(3065), - [anon_sym_enum] = ACTIONS(3065), - [anon_sym_class] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(3065), - [anon_sym_union] = ACTIONS(3065), - [anon_sym_if] = ACTIONS(3065), - [anon_sym_else] = ACTIONS(3065), - [anon_sym_switch] = ACTIONS(3065), - [anon_sym_case] = ACTIONS(3065), - [anon_sym_default] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3065), - [anon_sym_do] = ACTIONS(3065), - [anon_sym_for] = ACTIONS(3065), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_break] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(3065), - [anon_sym_goto] = ACTIONS(3065), - [anon_sym_not] = ACTIONS(3065), - [anon_sym_compl] = ACTIONS(3065), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_sizeof] = ACTIONS(3065), - [anon_sym___alignof__] = ACTIONS(3065), - [anon_sym___alignof] = ACTIONS(3065), - [anon_sym__alignof] = ACTIONS(3065), - [anon_sym_alignof] = ACTIONS(3065), - [anon_sym__Alignof] = ACTIONS(3065), - [anon_sym_offsetof] = ACTIONS(3065), - [anon_sym__Generic] = ACTIONS(3065), - [anon_sym_asm] = ACTIONS(3065), - [anon_sym___asm__] = ACTIONS(3065), - [sym_number_literal] = ACTIONS(3067), - [anon_sym_L_SQUOTE] = ACTIONS(3067), - [anon_sym_u_SQUOTE] = ACTIONS(3067), - [anon_sym_U_SQUOTE] = ACTIONS(3067), - [anon_sym_u8_SQUOTE] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3067), - [anon_sym_L_DQUOTE] = ACTIONS(3067), - [anon_sym_u_DQUOTE] = ACTIONS(3067), - [anon_sym_U_DQUOTE] = ACTIONS(3067), - [anon_sym_u8_DQUOTE] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(3067), - [sym_true] = ACTIONS(3065), - [sym_false] = ACTIONS(3065), - [anon_sym_NULL] = ACTIONS(3065), - [anon_sym_nullptr] = ACTIONS(3065), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3065), - [anon_sym_decltype] = ACTIONS(3065), - [anon_sym_virtual] = ACTIONS(3065), - [anon_sym_alignas] = ACTIONS(3065), - [anon_sym_explicit] = ACTIONS(3065), - [anon_sym_typename] = ACTIONS(3065), - [anon_sym_template] = ACTIONS(3065), - [anon_sym_operator] = ACTIONS(3065), - [anon_sym_try] = ACTIONS(3065), - [anon_sym_delete] = ACTIONS(3065), - [anon_sym_throw] = ACTIONS(3065), - [anon_sym_namespace] = ACTIONS(3065), - [anon_sym_using] = ACTIONS(3065), - [anon_sym_static_assert] = ACTIONS(3065), - [anon_sym_concept] = ACTIONS(3065), - [anon_sym_co_return] = ACTIONS(3065), - [anon_sym_co_yield] = ACTIONS(3065), - [anon_sym_R_DQUOTE] = ACTIONS(3067), - [anon_sym_LR_DQUOTE] = ACTIONS(3067), - [anon_sym_uR_DQUOTE] = ACTIONS(3067), - [anon_sym_UR_DQUOTE] = ACTIONS(3067), - [anon_sym_u8R_DQUOTE] = ACTIONS(3067), - [anon_sym_co_await] = ACTIONS(3065), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(3065), - [sym_this] = ACTIONS(3065), - }, - [1240] = { - [sym_identifier] = ACTIONS(3061), - [aux_sym_preproc_include_token1] = ACTIONS(3061), - [aux_sym_preproc_def_token1] = ACTIONS(3061), - [aux_sym_preproc_if_token1] = ACTIONS(3061), - [aux_sym_preproc_if_token2] = ACTIONS(3061), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3061), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3061), - [sym_preproc_directive] = ACTIONS(3061), - [anon_sym_LPAREN2] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3063), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3063), - [anon_sym_AMP_AMP] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_SEMI] = ACTIONS(3063), - [anon_sym___extension__] = ACTIONS(3061), - [anon_sym_typedef] = ACTIONS(3061), - [anon_sym_extern] = ACTIONS(3061), - [anon_sym___attribute__] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3063), - [anon_sym___declspec] = ACTIONS(3061), - [anon_sym___based] = ACTIONS(3061), - [anon_sym___cdecl] = ACTIONS(3061), - [anon_sym___clrcall] = ACTIONS(3061), - [anon_sym___stdcall] = ACTIONS(3061), - [anon_sym___fastcall] = ACTIONS(3061), - [anon_sym___thiscall] = ACTIONS(3061), - [anon_sym___vectorcall] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3063), - [anon_sym_signed] = ACTIONS(3061), - [anon_sym_unsigned] = ACTIONS(3061), - [anon_sym_long] = ACTIONS(3061), - [anon_sym_short] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3061), - [anon_sym_static] = ACTIONS(3061), - [anon_sym_register] = ACTIONS(3061), - [anon_sym_inline] = ACTIONS(3061), - [anon_sym___inline] = ACTIONS(3061), - [anon_sym___inline__] = ACTIONS(3061), - [anon_sym___forceinline] = ACTIONS(3061), - [anon_sym_thread_local] = ACTIONS(3061), - [anon_sym___thread] = ACTIONS(3061), - [anon_sym_const] = ACTIONS(3061), - [anon_sym_constexpr] = ACTIONS(3061), - [anon_sym_volatile] = ACTIONS(3061), - [anon_sym_restrict] = ACTIONS(3061), - [anon_sym___restrict__] = ACTIONS(3061), - [anon_sym__Atomic] = ACTIONS(3061), - [anon_sym__Noreturn] = ACTIONS(3061), - [anon_sym_noreturn] = ACTIONS(3061), - [anon_sym_mutable] = ACTIONS(3061), - [anon_sym_constinit] = ACTIONS(3061), - [anon_sym_consteval] = ACTIONS(3061), - [sym_primitive_type] = ACTIONS(3061), - [anon_sym_enum] = ACTIONS(3061), - [anon_sym_class] = ACTIONS(3061), - [anon_sym_struct] = ACTIONS(3061), - [anon_sym_union] = ACTIONS(3061), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_else] = ACTIONS(3061), - [anon_sym_switch] = ACTIONS(3061), - [anon_sym_case] = ACTIONS(3061), - [anon_sym_default] = ACTIONS(3061), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_do] = ACTIONS(3061), - [anon_sym_for] = ACTIONS(3061), - [anon_sym_return] = ACTIONS(3061), - [anon_sym_break] = ACTIONS(3061), - [anon_sym_continue] = ACTIONS(3061), - [anon_sym_goto] = ACTIONS(3061), - [anon_sym_not] = ACTIONS(3061), - [anon_sym_compl] = ACTIONS(3061), - [anon_sym_DASH_DASH] = ACTIONS(3063), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_sizeof] = ACTIONS(3061), - [anon_sym___alignof__] = ACTIONS(3061), - [anon_sym___alignof] = ACTIONS(3061), - [anon_sym__alignof] = ACTIONS(3061), - [anon_sym_alignof] = ACTIONS(3061), - [anon_sym__Alignof] = ACTIONS(3061), - [anon_sym_offsetof] = ACTIONS(3061), - [anon_sym__Generic] = ACTIONS(3061), - [anon_sym_asm] = ACTIONS(3061), - [anon_sym___asm__] = ACTIONS(3061), - [sym_number_literal] = ACTIONS(3063), - [anon_sym_L_SQUOTE] = ACTIONS(3063), - [anon_sym_u_SQUOTE] = ACTIONS(3063), - [anon_sym_U_SQUOTE] = ACTIONS(3063), - [anon_sym_u8_SQUOTE] = ACTIONS(3063), - [anon_sym_SQUOTE] = ACTIONS(3063), - [anon_sym_L_DQUOTE] = ACTIONS(3063), - [anon_sym_u_DQUOTE] = ACTIONS(3063), - [anon_sym_U_DQUOTE] = ACTIONS(3063), - [anon_sym_u8_DQUOTE] = ACTIONS(3063), - [anon_sym_DQUOTE] = ACTIONS(3063), - [sym_true] = ACTIONS(3061), - [sym_false] = ACTIONS(3061), - [anon_sym_NULL] = ACTIONS(3061), - [anon_sym_nullptr] = ACTIONS(3061), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3061), - [anon_sym_decltype] = ACTIONS(3061), - [anon_sym_virtual] = ACTIONS(3061), - [anon_sym_alignas] = ACTIONS(3061), - [anon_sym_explicit] = ACTIONS(3061), - [anon_sym_typename] = ACTIONS(3061), - [anon_sym_template] = ACTIONS(3061), - [anon_sym_operator] = ACTIONS(3061), - [anon_sym_try] = ACTIONS(3061), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_throw] = ACTIONS(3061), - [anon_sym_namespace] = ACTIONS(3061), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_static_assert] = ACTIONS(3061), - [anon_sym_concept] = ACTIONS(3061), - [anon_sym_co_return] = ACTIONS(3061), - [anon_sym_co_yield] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(3063), - [anon_sym_LR_DQUOTE] = ACTIONS(3063), - [anon_sym_uR_DQUOTE] = ACTIONS(3063), - [anon_sym_UR_DQUOTE] = ACTIONS(3063), - [anon_sym_u8R_DQUOTE] = ACTIONS(3063), - [anon_sym_co_await] = ACTIONS(3061), - [anon_sym_new] = ACTIONS(3061), - [anon_sym_requires] = ACTIONS(3061), - [sym_this] = ACTIONS(3061), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1241] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1320] = { + [sym__expression] = STATE(4265), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(4383), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1242] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1321] = { + [sym__expression] = STATE(4312), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(4385), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1243] = { - [sym_identifier] = ACTIONS(2897), - [aux_sym_preproc_include_token1] = ACTIONS(2897), - [aux_sym_preproc_def_token1] = ACTIONS(2897), - [aux_sym_preproc_if_token1] = ACTIONS(2897), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2897), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2897), - [sym_preproc_directive] = ACTIONS(2897), - [anon_sym_LPAREN2] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym___extension__] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2897), - [anon_sym_extern] = ACTIONS(2897), - [anon_sym___attribute__] = ACTIONS(2897), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2899), - [anon_sym___declspec] = ACTIONS(2897), - [anon_sym___based] = ACTIONS(2897), - [anon_sym___cdecl] = ACTIONS(2897), - [anon_sym___clrcall] = ACTIONS(2897), - [anon_sym___stdcall] = ACTIONS(2897), - [anon_sym___fastcall] = ACTIONS(2897), - [anon_sym___thiscall] = ACTIONS(2897), - [anon_sym___vectorcall] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_RBRACE] = ACTIONS(2899), - [anon_sym_signed] = ACTIONS(2897), - [anon_sym_unsigned] = ACTIONS(2897), - [anon_sym_long] = ACTIONS(2897), - [anon_sym_short] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_register] = ACTIONS(2897), - [anon_sym_inline] = ACTIONS(2897), - [anon_sym___inline] = ACTIONS(2897), - [anon_sym___inline__] = ACTIONS(2897), - [anon_sym___forceinline] = ACTIONS(2897), - [anon_sym_thread_local] = ACTIONS(2897), - [anon_sym___thread] = ACTIONS(2897), - [anon_sym_const] = ACTIONS(2897), - [anon_sym_constexpr] = ACTIONS(2897), - [anon_sym_volatile] = ACTIONS(2897), - [anon_sym_restrict] = ACTIONS(2897), - [anon_sym___restrict__] = ACTIONS(2897), - [anon_sym__Atomic] = ACTIONS(2897), - [anon_sym__Noreturn] = ACTIONS(2897), - [anon_sym_noreturn] = ACTIONS(2897), - [anon_sym_mutable] = ACTIONS(2897), - [anon_sym_constinit] = ACTIONS(2897), - [anon_sym_consteval] = ACTIONS(2897), - [sym_primitive_type] = ACTIONS(2897), - [anon_sym_enum] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2897), - [anon_sym_union] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2897), - [anon_sym_else] = ACTIONS(2897), - [anon_sym_switch] = ACTIONS(2897), - [anon_sym_case] = ACTIONS(2897), - [anon_sym_default] = ACTIONS(2897), - [anon_sym_while] = ACTIONS(2897), - [anon_sym_do] = ACTIONS(2897), - [anon_sym_for] = ACTIONS(2897), - [anon_sym_return] = ACTIONS(2897), - [anon_sym_break] = ACTIONS(2897), - [anon_sym_continue] = ACTIONS(2897), - [anon_sym_goto] = ACTIONS(2897), - [anon_sym_not] = ACTIONS(2897), - [anon_sym_compl] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_sizeof] = ACTIONS(2897), - [anon_sym___alignof__] = ACTIONS(2897), - [anon_sym___alignof] = ACTIONS(2897), - [anon_sym__alignof] = ACTIONS(2897), - [anon_sym_alignof] = ACTIONS(2897), - [anon_sym__Alignof] = ACTIONS(2897), - [anon_sym_offsetof] = ACTIONS(2897), - [anon_sym__Generic] = ACTIONS(2897), - [anon_sym_asm] = ACTIONS(2897), - [anon_sym___asm__] = ACTIONS(2897), - [sym_number_literal] = ACTIONS(2899), - [anon_sym_L_SQUOTE] = ACTIONS(2899), - [anon_sym_u_SQUOTE] = ACTIONS(2899), - [anon_sym_U_SQUOTE] = ACTIONS(2899), - [anon_sym_u8_SQUOTE] = ACTIONS(2899), - [anon_sym_SQUOTE] = ACTIONS(2899), - [anon_sym_L_DQUOTE] = ACTIONS(2899), - [anon_sym_u_DQUOTE] = ACTIONS(2899), - [anon_sym_U_DQUOTE] = ACTIONS(2899), - [anon_sym_u8_DQUOTE] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [sym_true] = ACTIONS(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2897), - [anon_sym_nullptr] = ACTIONS(2897), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2897), - [anon_sym_decltype] = ACTIONS(2897), - [anon_sym_virtual] = ACTIONS(2897), - [anon_sym_alignas] = ACTIONS(2897), - [anon_sym_explicit] = ACTIONS(2897), - [anon_sym_typename] = ACTIONS(2897), - [anon_sym_template] = ACTIONS(2897), - [anon_sym_operator] = ACTIONS(2897), - [anon_sym_try] = ACTIONS(2897), - [anon_sym_delete] = ACTIONS(2897), - [anon_sym_throw] = ACTIONS(2897), - [anon_sym_namespace] = ACTIONS(2897), - [anon_sym_using] = ACTIONS(2897), - [anon_sym_static_assert] = ACTIONS(2897), - [anon_sym_concept] = ACTIONS(2897), - [anon_sym_co_return] = ACTIONS(2897), - [anon_sym_co_yield] = ACTIONS(2897), - [anon_sym_R_DQUOTE] = ACTIONS(2899), - [anon_sym_LR_DQUOTE] = ACTIONS(2899), - [anon_sym_uR_DQUOTE] = ACTIONS(2899), - [anon_sym_UR_DQUOTE] = ACTIONS(2899), - [anon_sym_u8R_DQUOTE] = ACTIONS(2899), - [anon_sym_co_await] = ACTIONS(2897), - [anon_sym_new] = ACTIONS(2897), - [anon_sym_requires] = ACTIONS(2897), - [sym_this] = ACTIONS(2897), + [1322] = { + [sym__expression] = STATE(3426), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4387), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1244] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [1323] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4390), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1245] = { - [ts_builtin_sym_end] = ACTIONS(2823), - [sym_identifier] = ACTIONS(2818), - [aux_sym_preproc_include_token1] = ACTIONS(2818), - [aux_sym_preproc_def_token1] = ACTIONS(2818), - [aux_sym_preproc_if_token1] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2818), - [sym_preproc_directive] = ACTIONS(2818), - [anon_sym_LPAREN2] = ACTIONS(2823), - [anon_sym_BANG] = ACTIONS(2823), - [anon_sym_TILDE] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2823), - [anon_sym_AMP_AMP] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2823), - [anon_sym___extension__] = ACTIONS(2818), - [anon_sym_typedef] = ACTIONS(2818), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym___attribute__] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), - [anon_sym___declspec] = ACTIONS(2818), - [anon_sym___based] = ACTIONS(2818), - [anon_sym___cdecl] = ACTIONS(2818), - [anon_sym___clrcall] = ACTIONS(2818), - [anon_sym___stdcall] = ACTIONS(2818), - [anon_sym___fastcall] = ACTIONS(2818), - [anon_sym___thiscall] = ACTIONS(2818), - [anon_sym___vectorcall] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym___inline] = ACTIONS(2818), - [anon_sym___inline__] = ACTIONS(2818), - [anon_sym___forceinline] = ACTIONS(2818), - [anon_sym_thread_local] = ACTIONS(2818), - [anon_sym___thread] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_restrict] = ACTIONS(2818), - [anon_sym___restrict__] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [anon_sym__Noreturn] = ACTIONS(2818), - [anon_sym_noreturn] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [anon_sym_constinit] = ACTIONS(2818), - [anon_sym_consteval] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_else] = ACTIONS(2818), - [anon_sym_switch] = ACTIONS(2818), - [anon_sym_case] = ACTIONS(2818), - [anon_sym_default] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [anon_sym_goto] = ACTIONS(2818), - [anon_sym_not] = ACTIONS(2818), - [anon_sym_compl] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2823), - [anon_sym_PLUS_PLUS] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2818), - [anon_sym___alignof__] = ACTIONS(2818), - [anon_sym___alignof] = ACTIONS(2818), - [anon_sym__alignof] = ACTIONS(2818), - [anon_sym_alignof] = ACTIONS(2818), - [anon_sym__Alignof] = ACTIONS(2818), - [anon_sym_offsetof] = ACTIONS(2818), - [anon_sym__Generic] = ACTIONS(2818), - [anon_sym_asm] = ACTIONS(2818), - [anon_sym___asm__] = ACTIONS(2818), - [sym_number_literal] = ACTIONS(2823), - [anon_sym_L_SQUOTE] = ACTIONS(2823), - [anon_sym_u_SQUOTE] = ACTIONS(2823), - [anon_sym_U_SQUOTE] = ACTIONS(2823), - [anon_sym_u8_SQUOTE] = ACTIONS(2823), - [anon_sym_SQUOTE] = ACTIONS(2823), - [anon_sym_L_DQUOTE] = ACTIONS(2823), - [anon_sym_u_DQUOTE] = ACTIONS(2823), - [anon_sym_U_DQUOTE] = ACTIONS(2823), - [anon_sym_u8_DQUOTE] = ACTIONS(2823), - [anon_sym_DQUOTE] = ACTIONS(2823), - [sym_true] = ACTIONS(2818), - [sym_false] = ACTIONS(2818), - [anon_sym_NULL] = ACTIONS(2818), - [anon_sym_nullptr] = ACTIONS(2818), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2818), - [anon_sym_decltype] = ACTIONS(2818), - [anon_sym_virtual] = ACTIONS(2818), - [anon_sym_alignas] = ACTIONS(2818), - [anon_sym_explicit] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_template] = ACTIONS(2818), - [anon_sym_operator] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_delete] = ACTIONS(2818), - [anon_sym_throw] = ACTIONS(2818), - [anon_sym_namespace] = ACTIONS(2818), - [anon_sym_using] = ACTIONS(2818), - [anon_sym_static_assert] = ACTIONS(2818), - [anon_sym_concept] = ACTIONS(2818), - [anon_sym_co_return] = ACTIONS(2818), - [anon_sym_co_yield] = ACTIONS(2818), - [anon_sym_R_DQUOTE] = ACTIONS(2823), - [anon_sym_LR_DQUOTE] = ACTIONS(2823), - [anon_sym_uR_DQUOTE] = ACTIONS(2823), - [anon_sym_UR_DQUOTE] = ACTIONS(2823), - [anon_sym_u8R_DQUOTE] = ACTIONS(2823), - [anon_sym_co_await] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_requires] = ACTIONS(2818), - [sym_this] = ACTIONS(2818), + [1324] = { + [sym__expression] = STATE(3427), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4392), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1246] = { - [sym_identifier] = ACTIONS(2901), - [aux_sym_preproc_include_token1] = ACTIONS(2901), - [aux_sym_preproc_def_token1] = ACTIONS(2901), - [aux_sym_preproc_if_token1] = ACTIONS(2901), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2901), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2901), - [sym_preproc_directive] = ACTIONS(2901), - [anon_sym_LPAREN2] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2901), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym___extension__] = ACTIONS(2901), - [anon_sym_typedef] = ACTIONS(2901), - [anon_sym_extern] = ACTIONS(2901), - [anon_sym___attribute__] = ACTIONS(2901), - [anon_sym_COLON_COLON] = ACTIONS(2903), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2903), - [anon_sym___declspec] = ACTIONS(2901), - [anon_sym___based] = ACTIONS(2901), - [anon_sym___cdecl] = ACTIONS(2901), - [anon_sym___clrcall] = ACTIONS(2901), - [anon_sym___stdcall] = ACTIONS(2901), - [anon_sym___fastcall] = ACTIONS(2901), - [anon_sym___thiscall] = ACTIONS(2901), - [anon_sym___vectorcall] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_RBRACE] = ACTIONS(2903), - [anon_sym_signed] = ACTIONS(2901), - [anon_sym_unsigned] = ACTIONS(2901), - [anon_sym_long] = ACTIONS(2901), - [anon_sym_short] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_register] = ACTIONS(2901), - [anon_sym_inline] = ACTIONS(2901), - [anon_sym___inline] = ACTIONS(2901), - [anon_sym___inline__] = ACTIONS(2901), - [anon_sym___forceinline] = ACTIONS(2901), - [anon_sym_thread_local] = ACTIONS(2901), - [anon_sym___thread] = ACTIONS(2901), - [anon_sym_const] = ACTIONS(2901), - [anon_sym_constexpr] = ACTIONS(2901), - [anon_sym_volatile] = ACTIONS(2901), - [anon_sym_restrict] = ACTIONS(2901), - [anon_sym___restrict__] = ACTIONS(2901), - [anon_sym__Atomic] = ACTIONS(2901), - [anon_sym__Noreturn] = ACTIONS(2901), - [anon_sym_noreturn] = ACTIONS(2901), - [anon_sym_mutable] = ACTIONS(2901), - [anon_sym_constinit] = ACTIONS(2901), - [anon_sym_consteval] = ACTIONS(2901), - [sym_primitive_type] = ACTIONS(2901), - [anon_sym_enum] = ACTIONS(2901), - [anon_sym_class] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2901), - [anon_sym_union] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2901), - [anon_sym_else] = ACTIONS(2901), - [anon_sym_switch] = ACTIONS(2901), - [anon_sym_case] = ACTIONS(2901), - [anon_sym_default] = ACTIONS(2901), - [anon_sym_while] = ACTIONS(2901), - [anon_sym_do] = ACTIONS(2901), - [anon_sym_for] = ACTIONS(2901), - [anon_sym_return] = ACTIONS(2901), - [anon_sym_break] = ACTIONS(2901), - [anon_sym_continue] = ACTIONS(2901), - [anon_sym_goto] = ACTIONS(2901), - [anon_sym_not] = ACTIONS(2901), - [anon_sym_compl] = ACTIONS(2901), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_sizeof] = ACTIONS(2901), - [anon_sym___alignof__] = ACTIONS(2901), - [anon_sym___alignof] = ACTIONS(2901), - [anon_sym__alignof] = ACTIONS(2901), - [anon_sym_alignof] = ACTIONS(2901), - [anon_sym__Alignof] = ACTIONS(2901), - [anon_sym_offsetof] = ACTIONS(2901), - [anon_sym__Generic] = ACTIONS(2901), - [anon_sym_asm] = ACTIONS(2901), - [anon_sym___asm__] = ACTIONS(2901), - [sym_number_literal] = ACTIONS(2903), - [anon_sym_L_SQUOTE] = ACTIONS(2903), - [anon_sym_u_SQUOTE] = ACTIONS(2903), - [anon_sym_U_SQUOTE] = ACTIONS(2903), - [anon_sym_u8_SQUOTE] = ACTIONS(2903), - [anon_sym_SQUOTE] = ACTIONS(2903), - [anon_sym_L_DQUOTE] = ACTIONS(2903), - [anon_sym_u_DQUOTE] = ACTIONS(2903), - [anon_sym_U_DQUOTE] = ACTIONS(2903), - [anon_sym_u8_DQUOTE] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym_true] = ACTIONS(2901), - [sym_false] = ACTIONS(2901), - [anon_sym_NULL] = ACTIONS(2901), - [anon_sym_nullptr] = ACTIONS(2901), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2901), - [anon_sym_virtual] = ACTIONS(2901), - [anon_sym_alignas] = ACTIONS(2901), - [anon_sym_explicit] = ACTIONS(2901), - [anon_sym_typename] = ACTIONS(2901), - [anon_sym_template] = ACTIONS(2901), - [anon_sym_operator] = ACTIONS(2901), - [anon_sym_try] = ACTIONS(2901), - [anon_sym_delete] = ACTIONS(2901), - [anon_sym_throw] = ACTIONS(2901), - [anon_sym_namespace] = ACTIONS(2901), - [anon_sym_using] = ACTIONS(2901), - [anon_sym_static_assert] = ACTIONS(2901), - [anon_sym_concept] = ACTIONS(2901), - [anon_sym_co_return] = ACTIONS(2901), - [anon_sym_co_yield] = ACTIONS(2901), - [anon_sym_R_DQUOTE] = ACTIONS(2903), - [anon_sym_LR_DQUOTE] = ACTIONS(2903), - [anon_sym_uR_DQUOTE] = ACTIONS(2903), - [anon_sym_UR_DQUOTE] = ACTIONS(2903), - [anon_sym_u8R_DQUOTE] = ACTIONS(2903), - [anon_sym_co_await] = ACTIONS(2901), - [anon_sym_new] = ACTIONS(2901), - [anon_sym_requires] = ACTIONS(2901), - [sym_this] = ACTIONS(2901), + [1325] = { + [sym__expression] = STATE(3429), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1247] = { - [sym_identifier] = ACTIONS(2905), - [aux_sym_preproc_include_token1] = ACTIONS(2905), - [aux_sym_preproc_def_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token1] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2905), - [sym_preproc_directive] = ACTIONS(2905), - [anon_sym_LPAREN2] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym___extension__] = ACTIONS(2905), - [anon_sym_typedef] = ACTIONS(2905), - [anon_sym_extern] = ACTIONS(2905), - [anon_sym___attribute__] = ACTIONS(2905), - [anon_sym_COLON_COLON] = ACTIONS(2907), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2907), - [anon_sym___declspec] = ACTIONS(2905), - [anon_sym___based] = ACTIONS(2905), - [anon_sym___cdecl] = ACTIONS(2905), - [anon_sym___clrcall] = ACTIONS(2905), - [anon_sym___stdcall] = ACTIONS(2905), - [anon_sym___fastcall] = ACTIONS(2905), - [anon_sym___thiscall] = ACTIONS(2905), - [anon_sym___vectorcall] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_RBRACE] = ACTIONS(2907), - [anon_sym_signed] = ACTIONS(2905), - [anon_sym_unsigned] = ACTIONS(2905), - [anon_sym_long] = ACTIONS(2905), - [anon_sym_short] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_register] = ACTIONS(2905), - [anon_sym_inline] = ACTIONS(2905), - [anon_sym___inline] = ACTIONS(2905), - [anon_sym___inline__] = ACTIONS(2905), - [anon_sym___forceinline] = ACTIONS(2905), - [anon_sym_thread_local] = ACTIONS(2905), - [anon_sym___thread] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_constexpr] = ACTIONS(2905), - [anon_sym_volatile] = ACTIONS(2905), - [anon_sym_restrict] = ACTIONS(2905), - [anon_sym___restrict__] = ACTIONS(2905), - [anon_sym__Atomic] = ACTIONS(2905), - [anon_sym__Noreturn] = ACTIONS(2905), - [anon_sym_noreturn] = ACTIONS(2905), - [anon_sym_mutable] = ACTIONS(2905), - [anon_sym_constinit] = ACTIONS(2905), - [anon_sym_consteval] = ACTIONS(2905), - [sym_primitive_type] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_union] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2905), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2905), - [anon_sym_default] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_do] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_goto] = ACTIONS(2905), - [anon_sym_not] = ACTIONS(2905), - [anon_sym_compl] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_sizeof] = ACTIONS(2905), - [anon_sym___alignof__] = ACTIONS(2905), - [anon_sym___alignof] = ACTIONS(2905), - [anon_sym__alignof] = ACTIONS(2905), - [anon_sym_alignof] = ACTIONS(2905), - [anon_sym__Alignof] = ACTIONS(2905), - [anon_sym_offsetof] = ACTIONS(2905), - [anon_sym__Generic] = ACTIONS(2905), - [anon_sym_asm] = ACTIONS(2905), - [anon_sym___asm__] = ACTIONS(2905), - [sym_number_literal] = ACTIONS(2907), - [anon_sym_L_SQUOTE] = ACTIONS(2907), - [anon_sym_u_SQUOTE] = ACTIONS(2907), - [anon_sym_U_SQUOTE] = ACTIONS(2907), - [anon_sym_u8_SQUOTE] = ACTIONS(2907), - [anon_sym_SQUOTE] = ACTIONS(2907), - [anon_sym_L_DQUOTE] = ACTIONS(2907), - [anon_sym_u_DQUOTE] = ACTIONS(2907), - [anon_sym_U_DQUOTE] = ACTIONS(2907), - [anon_sym_u8_DQUOTE] = ACTIONS(2907), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_true] = ACTIONS(2905), - [sym_false] = ACTIONS(2905), - [anon_sym_NULL] = ACTIONS(2905), - [anon_sym_nullptr] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2905), - [anon_sym_decltype] = ACTIONS(2905), - [anon_sym_virtual] = ACTIONS(2905), - [anon_sym_alignas] = ACTIONS(2905), - [anon_sym_explicit] = ACTIONS(2905), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(2905), - [anon_sym_operator] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_throw] = ACTIONS(2905), - [anon_sym_namespace] = ACTIONS(2905), - [anon_sym_using] = ACTIONS(2905), - [anon_sym_static_assert] = ACTIONS(2905), - [anon_sym_concept] = ACTIONS(2905), - [anon_sym_co_return] = ACTIONS(2905), - [anon_sym_co_yield] = ACTIONS(2905), - [anon_sym_R_DQUOTE] = ACTIONS(2907), - [anon_sym_LR_DQUOTE] = ACTIONS(2907), - [anon_sym_uR_DQUOTE] = ACTIONS(2907), - [anon_sym_UR_DQUOTE] = ACTIONS(2907), - [anon_sym_u8R_DQUOTE] = ACTIONS(2907), - [anon_sym_co_await] = ACTIONS(2905), - [anon_sym_new] = ACTIONS(2905), - [anon_sym_requires] = ACTIONS(2905), - [sym_this] = ACTIONS(2905), + [1326] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4398), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1248] = { - [sym_identifier] = ACTIONS(2925), - [aux_sym_preproc_include_token1] = ACTIONS(2925), - [aux_sym_preproc_def_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token1] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2925), - [sym_preproc_directive] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2927), - [anon_sym___extension__] = ACTIONS(2925), - [anon_sym_typedef] = ACTIONS(2925), - [anon_sym_extern] = ACTIONS(2925), - [anon_sym___attribute__] = ACTIONS(2925), - [anon_sym_COLON_COLON] = ACTIONS(2927), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), - [anon_sym___declspec] = ACTIONS(2925), - [anon_sym___based] = ACTIONS(2925), - [anon_sym___cdecl] = ACTIONS(2925), - [anon_sym___clrcall] = ACTIONS(2925), - [anon_sym___stdcall] = ACTIONS(2925), - [anon_sym___fastcall] = ACTIONS(2925), - [anon_sym___thiscall] = ACTIONS(2925), - [anon_sym___vectorcall] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_RBRACE] = ACTIONS(2927), - [anon_sym_signed] = ACTIONS(2925), - [anon_sym_unsigned] = ACTIONS(2925), - [anon_sym_long] = ACTIONS(2925), - [anon_sym_short] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_static] = ACTIONS(2925), - [anon_sym_register] = ACTIONS(2925), - [anon_sym_inline] = ACTIONS(2925), - [anon_sym___inline] = ACTIONS(2925), - [anon_sym___inline__] = ACTIONS(2925), - [anon_sym___forceinline] = ACTIONS(2925), - [anon_sym_thread_local] = ACTIONS(2925), - [anon_sym___thread] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(2925), - [anon_sym_constexpr] = ACTIONS(2925), - [anon_sym_volatile] = ACTIONS(2925), - [anon_sym_restrict] = ACTIONS(2925), - [anon_sym___restrict__] = ACTIONS(2925), - [anon_sym__Atomic] = ACTIONS(2925), - [anon_sym__Noreturn] = ACTIONS(2925), - [anon_sym_noreturn] = ACTIONS(2925), - [anon_sym_mutable] = ACTIONS(2925), - [anon_sym_constinit] = ACTIONS(2925), - [anon_sym_consteval] = ACTIONS(2925), - [sym_primitive_type] = ACTIONS(2925), - [anon_sym_enum] = ACTIONS(2925), - [anon_sym_class] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_union] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_else] = ACTIONS(2925), - [anon_sym_switch] = ACTIONS(2925), - [anon_sym_case] = ACTIONS(2925), - [anon_sym_default] = ACTIONS(2925), - [anon_sym_while] = ACTIONS(2925), - [anon_sym_do] = ACTIONS(2925), - [anon_sym_for] = ACTIONS(2925), - [anon_sym_return] = ACTIONS(2925), - [anon_sym_break] = ACTIONS(2925), - [anon_sym_continue] = ACTIONS(2925), - [anon_sym_goto] = ACTIONS(2925), - [anon_sym_not] = ACTIONS(2925), - [anon_sym_compl] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2927), - [anon_sym_sizeof] = ACTIONS(2925), - [anon_sym___alignof__] = ACTIONS(2925), - [anon_sym___alignof] = ACTIONS(2925), - [anon_sym__alignof] = ACTIONS(2925), - [anon_sym_alignof] = ACTIONS(2925), - [anon_sym__Alignof] = ACTIONS(2925), - [anon_sym_offsetof] = ACTIONS(2925), - [anon_sym__Generic] = ACTIONS(2925), - [anon_sym_asm] = ACTIONS(2925), - [anon_sym___asm__] = ACTIONS(2925), - [sym_number_literal] = ACTIONS(2927), - [anon_sym_L_SQUOTE] = ACTIONS(2927), - [anon_sym_u_SQUOTE] = ACTIONS(2927), - [anon_sym_U_SQUOTE] = ACTIONS(2927), - [anon_sym_u8_SQUOTE] = ACTIONS(2927), - [anon_sym_SQUOTE] = ACTIONS(2927), - [anon_sym_L_DQUOTE] = ACTIONS(2927), - [anon_sym_u_DQUOTE] = ACTIONS(2927), - [anon_sym_U_DQUOTE] = ACTIONS(2927), - [anon_sym_u8_DQUOTE] = ACTIONS(2927), - [anon_sym_DQUOTE] = ACTIONS(2927), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [anon_sym_NULL] = ACTIONS(2925), - [anon_sym_nullptr] = ACTIONS(2925), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2925), - [anon_sym_decltype] = ACTIONS(2925), - [anon_sym_virtual] = ACTIONS(2925), - [anon_sym_alignas] = ACTIONS(2925), - [anon_sym_explicit] = ACTIONS(2925), - [anon_sym_typename] = ACTIONS(2925), - [anon_sym_template] = ACTIONS(2925), - [anon_sym_operator] = ACTIONS(2925), - [anon_sym_try] = ACTIONS(2925), - [anon_sym_delete] = ACTIONS(2925), - [anon_sym_throw] = ACTIONS(2925), - [anon_sym_namespace] = ACTIONS(2925), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_static_assert] = ACTIONS(2925), - [anon_sym_concept] = ACTIONS(2925), - [anon_sym_co_return] = ACTIONS(2925), - [anon_sym_co_yield] = ACTIONS(2925), - [anon_sym_R_DQUOTE] = ACTIONS(2927), - [anon_sym_LR_DQUOTE] = ACTIONS(2927), - [anon_sym_uR_DQUOTE] = ACTIONS(2927), - [anon_sym_UR_DQUOTE] = ACTIONS(2927), - [anon_sym_u8R_DQUOTE] = ACTIONS(2927), - [anon_sym_co_await] = ACTIONS(2925), - [anon_sym_new] = ACTIONS(2925), - [anon_sym_requires] = ACTIONS(2925), - [sym_this] = ACTIONS(2925), + [1327] = { + [sym__expression] = STATE(2652), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4268), + [anon_sym_LPAREN2] = ACTIONS(4400), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1249] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1328] = { + [sym__expression] = STATE(4224), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1250] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1329] = { + [sym__expression] = STATE(3424), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4404), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [1330] = { + [sym__expression] = STATE(4228), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1251] = { - [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_extern] = ACTIONS(3023), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3023), - [anon_sym_constinit] = ACTIONS(3023), - [anon_sym_consteval] = 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_else] = 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), - [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_virtual] = ACTIONS(3023), - [anon_sym_alignas] = 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_using] = 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), + [1331] = { + [sym__expression] = STATE(3412), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4409), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1252] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_include_token1] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2889), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token2] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym___cdecl] = ACTIONS(2194), - [anon_sym___clrcall] = ACTIONS(2194), - [anon_sym___stdcall] = ACTIONS(2194), - [anon_sym___fastcall] = ACTIONS(2194), - [anon_sym___thiscall] = ACTIONS(2194), - [anon_sym___vectorcall] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_goto] = ACTIONS(2194), - [anon_sym_not] = ACTIONS(2194), - [anon_sym_compl] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_sizeof] = ACTIONS(2194), - [anon_sym___alignof__] = ACTIONS(2194), - [anon_sym___alignof] = ACTIONS(2194), - [anon_sym__alignof] = ACTIONS(2194), - [anon_sym_alignof] = ACTIONS(2194), - [anon_sym__Alignof] = ACTIONS(2194), - [anon_sym_offsetof] = ACTIONS(2194), - [anon_sym__Generic] = ACTIONS(2194), - [anon_sym_asm] = ACTIONS(2194), - [anon_sym___asm__] = ACTIONS(2194), - [sym_number_literal] = ACTIONS(2192), - [anon_sym_L_SQUOTE] = ACTIONS(2192), - [anon_sym_u_SQUOTE] = ACTIONS(2192), - [anon_sym_U_SQUOTE] = ACTIONS(2192), - [anon_sym_u8_SQUOTE] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_L_DQUOTE] = ACTIONS(2192), - [anon_sym_u_DQUOTE] = ACTIONS(2192), - [anon_sym_U_DQUOTE] = ACTIONS(2192), - [anon_sym_u8_DQUOTE] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [anon_sym_NULL] = ACTIONS(2194), - [anon_sym_nullptr] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_delete] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - [anon_sym_concept] = ACTIONS(2194), - [anon_sym_co_return] = ACTIONS(2194), - [anon_sym_co_yield] = ACTIONS(2194), - [anon_sym_R_DQUOTE] = ACTIONS(2192), - [anon_sym_LR_DQUOTE] = ACTIONS(2192), - [anon_sym_uR_DQUOTE] = ACTIONS(2192), - [anon_sym_UR_DQUOTE] = ACTIONS(2192), - [anon_sym_u8R_DQUOTE] = ACTIONS(2192), - [anon_sym_co_await] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_requires] = ACTIONS(2194), - [sym_this] = ACTIONS(2194), + [1332] = { + [sym__expression] = STATE(3928), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(4303), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1253] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1333] = { + [sym__expression] = STATE(4235), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(4414), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1254] = { - [ts_builtin_sym_end] = ACTIONS(3075), - [sym_identifier] = ACTIONS(3073), - [aux_sym_preproc_include_token1] = ACTIONS(3073), - [aux_sym_preproc_def_token1] = ACTIONS(3073), - [aux_sym_preproc_if_token1] = ACTIONS(3073), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3073), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3073), - [sym_preproc_directive] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3075), - [anon_sym_TILDE] = ACTIONS(3075), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_AMP_AMP] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_SEMI] = ACTIONS(3075), - [anon_sym___extension__] = ACTIONS(3073), - [anon_sym_typedef] = ACTIONS(3073), - [anon_sym_extern] = ACTIONS(3073), - [anon_sym___attribute__] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3075), - [anon_sym___declspec] = ACTIONS(3073), - [anon_sym___based] = ACTIONS(3073), - [anon_sym___cdecl] = ACTIONS(3073), - [anon_sym___clrcall] = ACTIONS(3073), - [anon_sym___stdcall] = ACTIONS(3073), - [anon_sym___fastcall] = ACTIONS(3073), - [anon_sym___thiscall] = ACTIONS(3073), - [anon_sym___vectorcall] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_signed] = ACTIONS(3073), - [anon_sym_unsigned] = ACTIONS(3073), - [anon_sym_long] = ACTIONS(3073), - [anon_sym_short] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_register] = ACTIONS(3073), - [anon_sym_inline] = ACTIONS(3073), - [anon_sym___inline] = ACTIONS(3073), - [anon_sym___inline__] = ACTIONS(3073), - [anon_sym___forceinline] = ACTIONS(3073), - [anon_sym_thread_local] = ACTIONS(3073), - [anon_sym___thread] = ACTIONS(3073), - [anon_sym_const] = ACTIONS(3073), - [anon_sym_constexpr] = ACTIONS(3073), - [anon_sym_volatile] = ACTIONS(3073), - [anon_sym_restrict] = ACTIONS(3073), - [anon_sym___restrict__] = ACTIONS(3073), - [anon_sym__Atomic] = ACTIONS(3073), - [anon_sym__Noreturn] = ACTIONS(3073), - [anon_sym_noreturn] = ACTIONS(3073), - [anon_sym_mutable] = ACTIONS(3073), - [anon_sym_constinit] = ACTIONS(3073), - [anon_sym_consteval] = ACTIONS(3073), - [sym_primitive_type] = ACTIONS(3073), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3073), - [anon_sym_struct] = ACTIONS(3073), - [anon_sym_union] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3073), - [anon_sym_switch] = ACTIONS(3073), - [anon_sym_case] = ACTIONS(3073), - [anon_sym_default] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_break] = ACTIONS(3073), - [anon_sym_continue] = ACTIONS(3073), - [anon_sym_goto] = ACTIONS(3073), - [anon_sym_not] = ACTIONS(3073), - [anon_sym_compl] = ACTIONS(3073), - [anon_sym_DASH_DASH] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(3075), - [anon_sym_sizeof] = ACTIONS(3073), - [anon_sym___alignof__] = ACTIONS(3073), - [anon_sym___alignof] = ACTIONS(3073), - [anon_sym__alignof] = ACTIONS(3073), - [anon_sym_alignof] = ACTIONS(3073), - [anon_sym__Alignof] = ACTIONS(3073), - [anon_sym_offsetof] = ACTIONS(3073), - [anon_sym__Generic] = ACTIONS(3073), - [anon_sym_asm] = ACTIONS(3073), - [anon_sym___asm__] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(3075), - [anon_sym_L_SQUOTE] = ACTIONS(3075), - [anon_sym_u_SQUOTE] = ACTIONS(3075), - [anon_sym_U_SQUOTE] = ACTIONS(3075), - [anon_sym_u8_SQUOTE] = ACTIONS(3075), - [anon_sym_SQUOTE] = ACTIONS(3075), - [anon_sym_L_DQUOTE] = ACTIONS(3075), - [anon_sym_u_DQUOTE] = ACTIONS(3075), - [anon_sym_U_DQUOTE] = ACTIONS(3075), - [anon_sym_u8_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE] = ACTIONS(3075), - [sym_true] = ACTIONS(3073), - [sym_false] = ACTIONS(3073), - [anon_sym_NULL] = ACTIONS(3073), - [anon_sym_nullptr] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3073), - [anon_sym_decltype] = ACTIONS(3073), - [anon_sym_virtual] = ACTIONS(3073), - [anon_sym_alignas] = ACTIONS(3073), - [anon_sym_explicit] = ACTIONS(3073), - [anon_sym_typename] = ACTIONS(3073), - [anon_sym_template] = ACTIONS(3073), - [anon_sym_operator] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_delete] = ACTIONS(3073), - [anon_sym_throw] = ACTIONS(3073), - [anon_sym_namespace] = ACTIONS(3073), - [anon_sym_using] = ACTIONS(3073), - [anon_sym_static_assert] = ACTIONS(3073), - [anon_sym_concept] = ACTIONS(3073), - [anon_sym_co_return] = ACTIONS(3073), - [anon_sym_co_yield] = ACTIONS(3073), - [anon_sym_R_DQUOTE] = ACTIONS(3075), - [anon_sym_LR_DQUOTE] = ACTIONS(3075), - [anon_sym_uR_DQUOTE] = ACTIONS(3075), - [anon_sym_UR_DQUOTE] = ACTIONS(3075), - [anon_sym_u8R_DQUOTE] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3073), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_requires] = ACTIONS(3073), - [sym_this] = ACTIONS(3073), + [1334] = { + [sym__expression] = STATE(3435), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4416), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1255] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [1335] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4419), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1256] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1336] = { + [sym__expression] = STATE(4105), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(4421), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1257] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1337] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4423), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1338] = { + [sym__expression] = STATE(4208), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(4425), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1258] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [1339] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4427), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1259] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1340] = { + [sym__expression] = STATE(3436), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4429), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [1341] = { + [sym__expression] = STATE(4241), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(4432), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1260] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1342] = { + [sym__expression] = STATE(4281), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_COLON] = ACTIONS(4434), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1261] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1343] = { + [sym__expression] = STATE(3431), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4436), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [1344] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4439), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1345] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4441), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1346] = { + [sym__expression] = STATE(3406), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4443), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [1347] = { + [sym__expression] = STATE(4275), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(4446), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1262] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1348] = { + [sym__expression] = STATE(3431), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4448), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), + }, + [1349] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4451), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1350] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4453), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1351] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4455), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1352] = { + [sym__expression] = STATE(4227), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(4457), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1263] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1353] = { + [sym__expression] = STATE(4285), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(4459), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1264] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), - }, - [1265] = { - [sym_identifier] = ACTIONS(3374), - [aux_sym_preproc_include_token1] = ACTIONS(3374), - [aux_sym_preproc_def_token1] = ACTIONS(3374), - [aux_sym_preproc_if_token1] = ACTIONS(3374), - [aux_sym_preproc_if_token2] = ACTIONS(3374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3374), - [sym_preproc_directive] = ACTIONS(3374), - [anon_sym_LPAREN2] = ACTIONS(3376), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3374), - [anon_sym_PLUS] = ACTIONS(3374), - [anon_sym_STAR] = ACTIONS(3376), - [anon_sym_AMP_AMP] = ACTIONS(3376), - [anon_sym_AMP] = ACTIONS(3374), - [anon_sym_SEMI] = ACTIONS(3376), - [anon_sym___extension__] = ACTIONS(3374), - [anon_sym_typedef] = ACTIONS(3374), - [anon_sym_extern] = ACTIONS(3374), - [anon_sym___attribute__] = ACTIONS(3374), - [anon_sym_COLON_COLON] = ACTIONS(3376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3376), - [anon_sym___declspec] = ACTIONS(3374), - [anon_sym___based] = ACTIONS(3374), - [anon_sym___cdecl] = ACTIONS(3374), - [anon_sym___clrcall] = ACTIONS(3374), - [anon_sym___stdcall] = ACTIONS(3374), - [anon_sym___fastcall] = ACTIONS(3374), - [anon_sym___thiscall] = ACTIONS(3374), - [anon_sym___vectorcall] = ACTIONS(3374), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_signed] = ACTIONS(3374), - [anon_sym_unsigned] = ACTIONS(3374), - [anon_sym_long] = ACTIONS(3374), - [anon_sym_short] = ACTIONS(3374), - [anon_sym_LBRACK] = ACTIONS(3374), - [anon_sym_static] = ACTIONS(3374), - [anon_sym_register] = ACTIONS(3374), - [anon_sym_inline] = ACTIONS(3374), - [anon_sym___inline] = ACTIONS(3374), - [anon_sym___inline__] = ACTIONS(3374), - [anon_sym___forceinline] = ACTIONS(3374), - [anon_sym_thread_local] = ACTIONS(3374), - [anon_sym___thread] = ACTIONS(3374), - [anon_sym_const] = ACTIONS(3374), - [anon_sym_constexpr] = ACTIONS(3374), - [anon_sym_volatile] = ACTIONS(3374), - [anon_sym_restrict] = ACTIONS(3374), - [anon_sym___restrict__] = ACTIONS(3374), - [anon_sym__Atomic] = ACTIONS(3374), - [anon_sym__Noreturn] = ACTIONS(3374), - [anon_sym_noreturn] = ACTIONS(3374), - [anon_sym_mutable] = ACTIONS(3374), - [anon_sym_constinit] = ACTIONS(3374), - [anon_sym_consteval] = ACTIONS(3374), - [sym_primitive_type] = ACTIONS(3374), - [anon_sym_enum] = ACTIONS(3374), - [anon_sym_class] = ACTIONS(3374), - [anon_sym_struct] = ACTIONS(3374), - [anon_sym_union] = ACTIONS(3374), - [anon_sym_if] = ACTIONS(3374), - [anon_sym_switch] = ACTIONS(3374), - [anon_sym_case] = ACTIONS(3374), - [anon_sym_default] = ACTIONS(3374), - [anon_sym_while] = ACTIONS(3374), - [anon_sym_do] = ACTIONS(3374), - [anon_sym_for] = ACTIONS(3374), - [anon_sym_return] = ACTIONS(3374), - [anon_sym_break] = ACTIONS(3374), - [anon_sym_continue] = ACTIONS(3374), - [anon_sym_goto] = ACTIONS(3374), - [anon_sym_not] = ACTIONS(3374), - [anon_sym_compl] = ACTIONS(3374), - [anon_sym_DASH_DASH] = ACTIONS(3376), - [anon_sym_PLUS_PLUS] = ACTIONS(3376), - [anon_sym_sizeof] = ACTIONS(3374), - [anon_sym___alignof__] = ACTIONS(3374), - [anon_sym___alignof] = ACTIONS(3374), - [anon_sym__alignof] = ACTIONS(3374), - [anon_sym_alignof] = ACTIONS(3374), - [anon_sym__Alignof] = ACTIONS(3374), - [anon_sym_offsetof] = ACTIONS(3374), - [anon_sym__Generic] = ACTIONS(3374), - [anon_sym_asm] = ACTIONS(3374), - [anon_sym___asm__] = ACTIONS(3374), - [sym_number_literal] = ACTIONS(3376), - [anon_sym_L_SQUOTE] = ACTIONS(3376), - [anon_sym_u_SQUOTE] = ACTIONS(3376), - [anon_sym_U_SQUOTE] = ACTIONS(3376), - [anon_sym_u8_SQUOTE] = ACTIONS(3376), - [anon_sym_SQUOTE] = ACTIONS(3376), - [anon_sym_L_DQUOTE] = ACTIONS(3376), - [anon_sym_u_DQUOTE] = ACTIONS(3376), - [anon_sym_U_DQUOTE] = ACTIONS(3376), - [anon_sym_u8_DQUOTE] = ACTIONS(3376), - [anon_sym_DQUOTE] = ACTIONS(3376), - [sym_true] = ACTIONS(3374), - [sym_false] = ACTIONS(3374), - [anon_sym_NULL] = ACTIONS(3374), - [anon_sym_nullptr] = ACTIONS(3374), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3374), - [anon_sym_decltype] = ACTIONS(3374), - [anon_sym_virtual] = ACTIONS(3374), - [anon_sym_alignas] = ACTIONS(3374), - [anon_sym_explicit] = ACTIONS(3374), - [anon_sym_typename] = ACTIONS(3374), - [anon_sym_template] = ACTIONS(3374), - [anon_sym_operator] = ACTIONS(3374), - [anon_sym_try] = ACTIONS(3374), - [anon_sym_delete] = ACTIONS(3374), - [anon_sym_throw] = ACTIONS(3374), - [anon_sym_namespace] = ACTIONS(3374), - [anon_sym_using] = ACTIONS(3374), - [anon_sym_static_assert] = ACTIONS(3374), - [anon_sym_concept] = ACTIONS(3374), - [anon_sym_co_return] = ACTIONS(3374), - [anon_sym_co_yield] = ACTIONS(3374), - [anon_sym_R_DQUOTE] = ACTIONS(3376), - [anon_sym_LR_DQUOTE] = ACTIONS(3376), - [anon_sym_uR_DQUOTE] = ACTIONS(3376), - [anon_sym_UR_DQUOTE] = ACTIONS(3376), - [anon_sym_u8R_DQUOTE] = ACTIONS(3376), - [anon_sym_co_await] = ACTIONS(3374), - [anon_sym_new] = ACTIONS(3374), - [anon_sym_requires] = ACTIONS(3374), - [sym_this] = ACTIONS(3374), + [1354] = { + [sym__expression] = STATE(3260), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4268), + [anon_sym_LPAREN2] = ACTIONS(4461), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1266] = { - [sym_identifier] = ACTIONS(3450), - [aux_sym_preproc_include_token1] = ACTIONS(3450), - [aux_sym_preproc_def_token1] = ACTIONS(3450), - [aux_sym_preproc_if_token1] = ACTIONS(3450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3450), - [sym_preproc_directive] = ACTIONS(3450), - [anon_sym_LPAREN2] = ACTIONS(3452), - [anon_sym_BANG] = ACTIONS(3452), - [anon_sym_TILDE] = ACTIONS(3452), - [anon_sym_DASH] = ACTIONS(3450), - [anon_sym_PLUS] = ACTIONS(3450), - [anon_sym_STAR] = ACTIONS(3452), - [anon_sym_AMP_AMP] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3450), - [anon_sym_SEMI] = ACTIONS(3452), - [anon_sym___extension__] = ACTIONS(3450), - [anon_sym_typedef] = ACTIONS(3450), - [anon_sym_extern] = ACTIONS(3450), - [anon_sym___attribute__] = ACTIONS(3450), - [anon_sym_COLON_COLON] = ACTIONS(3452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3452), - [anon_sym___declspec] = ACTIONS(3450), - [anon_sym___based] = ACTIONS(3450), - [anon_sym___cdecl] = ACTIONS(3450), - [anon_sym___clrcall] = ACTIONS(3450), - [anon_sym___stdcall] = ACTIONS(3450), - [anon_sym___fastcall] = ACTIONS(3450), - [anon_sym___thiscall] = ACTIONS(3450), - [anon_sym___vectorcall] = ACTIONS(3450), - [anon_sym_LBRACE] = ACTIONS(3452), - [anon_sym_RBRACE] = ACTIONS(3452), - [anon_sym_signed] = ACTIONS(3450), - [anon_sym_unsigned] = ACTIONS(3450), - [anon_sym_long] = ACTIONS(3450), - [anon_sym_short] = ACTIONS(3450), - [anon_sym_LBRACK] = ACTIONS(3450), - [anon_sym_static] = ACTIONS(3450), - [anon_sym_register] = ACTIONS(3450), - [anon_sym_inline] = ACTIONS(3450), - [anon_sym___inline] = ACTIONS(3450), - [anon_sym___inline__] = ACTIONS(3450), - [anon_sym___forceinline] = ACTIONS(3450), - [anon_sym_thread_local] = ACTIONS(3450), - [anon_sym___thread] = ACTIONS(3450), - [anon_sym_const] = ACTIONS(3450), - [anon_sym_constexpr] = ACTIONS(3450), - [anon_sym_volatile] = ACTIONS(3450), - [anon_sym_restrict] = ACTIONS(3450), - [anon_sym___restrict__] = ACTIONS(3450), - [anon_sym__Atomic] = ACTIONS(3450), - [anon_sym__Noreturn] = ACTIONS(3450), - [anon_sym_noreturn] = ACTIONS(3450), - [anon_sym_mutable] = ACTIONS(3450), - [anon_sym_constinit] = ACTIONS(3450), - [anon_sym_consteval] = ACTIONS(3450), - [sym_primitive_type] = ACTIONS(3450), - [anon_sym_enum] = ACTIONS(3450), - [anon_sym_class] = ACTIONS(3450), - [anon_sym_struct] = ACTIONS(3450), - [anon_sym_union] = ACTIONS(3450), - [anon_sym_if] = ACTIONS(3450), - [anon_sym_switch] = ACTIONS(3450), - [anon_sym_case] = ACTIONS(3450), - [anon_sym_default] = ACTIONS(3450), - [anon_sym_while] = ACTIONS(3450), - [anon_sym_do] = ACTIONS(3450), - [anon_sym_for] = ACTIONS(3450), - [anon_sym_return] = ACTIONS(3450), - [anon_sym_break] = ACTIONS(3450), - [anon_sym_continue] = ACTIONS(3450), - [anon_sym_goto] = ACTIONS(3450), - [anon_sym_not] = ACTIONS(3450), - [anon_sym_compl] = ACTIONS(3450), - [anon_sym_DASH_DASH] = ACTIONS(3452), - [anon_sym_PLUS_PLUS] = ACTIONS(3452), - [anon_sym_sizeof] = ACTIONS(3450), - [anon_sym___alignof__] = ACTIONS(3450), - [anon_sym___alignof] = ACTIONS(3450), - [anon_sym__alignof] = ACTIONS(3450), - [anon_sym_alignof] = ACTIONS(3450), - [anon_sym__Alignof] = ACTIONS(3450), - [anon_sym_offsetof] = ACTIONS(3450), - [anon_sym__Generic] = ACTIONS(3450), - [anon_sym_asm] = ACTIONS(3450), - [anon_sym___asm__] = ACTIONS(3450), - [sym_number_literal] = ACTIONS(3452), - [anon_sym_L_SQUOTE] = ACTIONS(3452), - [anon_sym_u_SQUOTE] = ACTIONS(3452), - [anon_sym_U_SQUOTE] = ACTIONS(3452), - [anon_sym_u8_SQUOTE] = ACTIONS(3452), - [anon_sym_SQUOTE] = ACTIONS(3452), - [anon_sym_L_DQUOTE] = ACTIONS(3452), - [anon_sym_u_DQUOTE] = ACTIONS(3452), - [anon_sym_U_DQUOTE] = ACTIONS(3452), - [anon_sym_u8_DQUOTE] = ACTIONS(3452), - [anon_sym_DQUOTE] = ACTIONS(3452), - [sym_true] = ACTIONS(3450), - [sym_false] = ACTIONS(3450), - [anon_sym_NULL] = ACTIONS(3450), - [anon_sym_nullptr] = ACTIONS(3450), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3450), - [anon_sym_decltype] = ACTIONS(3450), - [anon_sym_virtual] = ACTIONS(3450), - [anon_sym_alignas] = ACTIONS(3450), - [anon_sym_explicit] = ACTIONS(3450), - [anon_sym_typename] = ACTIONS(3450), - [anon_sym_template] = ACTIONS(3450), - [anon_sym_operator] = ACTIONS(3450), - [anon_sym_try] = ACTIONS(3450), - [anon_sym_delete] = ACTIONS(3450), - [anon_sym_throw] = ACTIONS(3450), - [anon_sym_namespace] = ACTIONS(3450), - [anon_sym_using] = ACTIONS(3450), - [anon_sym_static_assert] = ACTIONS(3450), - [anon_sym_concept] = ACTIONS(3450), - [anon_sym_co_return] = ACTIONS(3450), - [anon_sym_co_yield] = ACTIONS(3450), - [anon_sym_R_DQUOTE] = ACTIONS(3452), - [anon_sym_LR_DQUOTE] = ACTIONS(3452), - [anon_sym_uR_DQUOTE] = ACTIONS(3452), - [anon_sym_UR_DQUOTE] = ACTIONS(3452), - [anon_sym_u8R_DQUOTE] = ACTIONS(3452), - [anon_sym_co_await] = ACTIONS(3450), - [anon_sym_new] = ACTIONS(3450), - [anon_sym_requires] = ACTIONS(3450), - [sym_this] = ACTIONS(3450), + [1355] = { + [sym__expression] = STATE(4204), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4463), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1267] = { - [sym_identifier] = ACTIONS(3352), - [aux_sym_preproc_include_token1] = ACTIONS(3352), - [aux_sym_preproc_def_token1] = ACTIONS(3352), - [aux_sym_preproc_if_token1] = ACTIONS(3352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3352), - [sym_preproc_directive] = ACTIONS(3352), - [anon_sym_LPAREN2] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3352), - [anon_sym_PLUS] = ACTIONS(3352), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_AMP_AMP] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym___extension__] = ACTIONS(3352), - [anon_sym_typedef] = ACTIONS(3352), - [anon_sym_extern] = ACTIONS(3352), - [anon_sym___attribute__] = ACTIONS(3352), - [anon_sym_COLON_COLON] = ACTIONS(3354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3354), - [anon_sym___declspec] = ACTIONS(3352), - [anon_sym___based] = ACTIONS(3352), - [anon_sym___cdecl] = ACTIONS(3352), - [anon_sym___clrcall] = ACTIONS(3352), - [anon_sym___stdcall] = ACTIONS(3352), - [anon_sym___fastcall] = ACTIONS(3352), - [anon_sym___thiscall] = ACTIONS(3352), - [anon_sym___vectorcall] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_signed] = ACTIONS(3352), - [anon_sym_unsigned] = ACTIONS(3352), - [anon_sym_long] = ACTIONS(3352), - [anon_sym_short] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_static] = ACTIONS(3352), - [anon_sym_register] = ACTIONS(3352), - [anon_sym_inline] = ACTIONS(3352), - [anon_sym___inline] = ACTIONS(3352), - [anon_sym___inline__] = ACTIONS(3352), - [anon_sym___forceinline] = ACTIONS(3352), - [anon_sym_thread_local] = ACTIONS(3352), - [anon_sym___thread] = ACTIONS(3352), - [anon_sym_const] = ACTIONS(3352), - [anon_sym_constexpr] = ACTIONS(3352), - [anon_sym_volatile] = ACTIONS(3352), - [anon_sym_restrict] = ACTIONS(3352), - [anon_sym___restrict__] = ACTIONS(3352), - [anon_sym__Atomic] = ACTIONS(3352), - [anon_sym__Noreturn] = ACTIONS(3352), - [anon_sym_noreturn] = ACTIONS(3352), - [anon_sym_mutable] = ACTIONS(3352), - [anon_sym_constinit] = ACTIONS(3352), - [anon_sym_consteval] = ACTIONS(3352), - [sym_primitive_type] = ACTIONS(3352), - [anon_sym_enum] = ACTIONS(3352), - [anon_sym_class] = ACTIONS(3352), - [anon_sym_struct] = ACTIONS(3352), - [anon_sym_union] = ACTIONS(3352), - [anon_sym_if] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3352), - [anon_sym_case] = ACTIONS(3352), - [anon_sym_default] = ACTIONS(3352), - [anon_sym_while] = ACTIONS(3352), - [anon_sym_do] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3352), - [anon_sym_return] = ACTIONS(3352), - [anon_sym_break] = ACTIONS(3352), - [anon_sym_continue] = ACTIONS(3352), - [anon_sym_goto] = ACTIONS(3352), - [anon_sym_not] = ACTIONS(3352), - [anon_sym_compl] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_sizeof] = ACTIONS(3352), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3352), - [anon_sym__Generic] = ACTIONS(3352), - [anon_sym_asm] = ACTIONS(3352), - [anon_sym___asm__] = ACTIONS(3352), - [sym_number_literal] = ACTIONS(3354), - [anon_sym_L_SQUOTE] = ACTIONS(3354), - [anon_sym_u_SQUOTE] = ACTIONS(3354), - [anon_sym_U_SQUOTE] = ACTIONS(3354), - [anon_sym_u8_SQUOTE] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_L_DQUOTE] = ACTIONS(3354), - [anon_sym_u_DQUOTE] = ACTIONS(3354), - [anon_sym_U_DQUOTE] = ACTIONS(3354), - [anon_sym_u8_DQUOTE] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [sym_true] = ACTIONS(3352), - [sym_false] = ACTIONS(3352), - [anon_sym_NULL] = ACTIONS(3352), - [anon_sym_nullptr] = ACTIONS(3352), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3352), - [anon_sym_decltype] = ACTIONS(3352), - [anon_sym_virtual] = ACTIONS(3352), - [anon_sym_alignas] = ACTIONS(3352), - [anon_sym_explicit] = ACTIONS(3352), - [anon_sym_typename] = ACTIONS(3352), - [anon_sym_template] = ACTIONS(3352), - [anon_sym_operator] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3352), - [anon_sym_delete] = ACTIONS(3352), - [anon_sym_throw] = ACTIONS(3352), - [anon_sym_namespace] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3352), - [anon_sym_static_assert] = ACTIONS(3352), - [anon_sym_concept] = ACTIONS(3352), - [anon_sym_co_return] = ACTIONS(3352), - [anon_sym_co_yield] = ACTIONS(3352), - [anon_sym_R_DQUOTE] = ACTIONS(3354), - [anon_sym_LR_DQUOTE] = ACTIONS(3354), - [anon_sym_uR_DQUOTE] = ACTIONS(3354), - [anon_sym_UR_DQUOTE] = ACTIONS(3354), - [anon_sym_u8R_DQUOTE] = ACTIONS(3354), - [anon_sym_co_await] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3352), - [anon_sym_requires] = ACTIONS(3352), - [sym_this] = ACTIONS(3352), + [1356] = { + [sym__expression] = STATE(4190), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4465), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1268] = { - [sym_identifier] = ACTIONS(3366), - [aux_sym_preproc_include_token1] = ACTIONS(3366), - [aux_sym_preproc_def_token1] = ACTIONS(3366), - [aux_sym_preproc_if_token1] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3366), - [sym_preproc_directive] = ACTIONS(3366), - [anon_sym_LPAREN2] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_AMP_AMP] = ACTIONS(3368), - [anon_sym_AMP] = ACTIONS(3366), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym___extension__] = ACTIONS(3366), - [anon_sym_typedef] = ACTIONS(3366), - [anon_sym_extern] = ACTIONS(3366), - [anon_sym___attribute__] = ACTIONS(3366), - [anon_sym_COLON_COLON] = ACTIONS(3368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3368), - [anon_sym___declspec] = ACTIONS(3366), - [anon_sym___based] = ACTIONS(3366), - [anon_sym___cdecl] = ACTIONS(3366), - [anon_sym___clrcall] = ACTIONS(3366), - [anon_sym___stdcall] = ACTIONS(3366), - [anon_sym___fastcall] = ACTIONS(3366), - [anon_sym___thiscall] = ACTIONS(3366), - [anon_sym___vectorcall] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_RBRACE] = ACTIONS(3368), - [anon_sym_signed] = ACTIONS(3366), - [anon_sym_unsigned] = ACTIONS(3366), - [anon_sym_long] = ACTIONS(3366), - [anon_sym_short] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_register] = ACTIONS(3366), - [anon_sym_inline] = ACTIONS(3366), - [anon_sym___inline] = ACTIONS(3366), - [anon_sym___inline__] = ACTIONS(3366), - [anon_sym___forceinline] = ACTIONS(3366), - [anon_sym_thread_local] = ACTIONS(3366), - [anon_sym___thread] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_constexpr] = ACTIONS(3366), - [anon_sym_volatile] = ACTIONS(3366), - [anon_sym_restrict] = ACTIONS(3366), - [anon_sym___restrict__] = ACTIONS(3366), - [anon_sym__Atomic] = ACTIONS(3366), - [anon_sym__Noreturn] = ACTIONS(3366), - [anon_sym_noreturn] = ACTIONS(3366), - [anon_sym_mutable] = ACTIONS(3366), - [anon_sym_constinit] = ACTIONS(3366), - [anon_sym_consteval] = ACTIONS(3366), - [sym_primitive_type] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_struct] = ACTIONS(3366), - [anon_sym_union] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_case] = ACTIONS(3366), - [anon_sym_default] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_goto] = ACTIONS(3366), - [anon_sym_not] = ACTIONS(3366), - [anon_sym_compl] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_sizeof] = ACTIONS(3366), - [anon_sym___alignof__] = ACTIONS(3366), - [anon_sym___alignof] = ACTIONS(3366), - [anon_sym__alignof] = ACTIONS(3366), - [anon_sym_alignof] = ACTIONS(3366), - [anon_sym__Alignof] = ACTIONS(3366), - [anon_sym_offsetof] = ACTIONS(3366), - [anon_sym__Generic] = ACTIONS(3366), - [anon_sym_asm] = ACTIONS(3366), - [anon_sym___asm__] = ACTIONS(3366), - [sym_number_literal] = ACTIONS(3368), - [anon_sym_L_SQUOTE] = ACTIONS(3368), - [anon_sym_u_SQUOTE] = ACTIONS(3368), - [anon_sym_U_SQUOTE] = ACTIONS(3368), - [anon_sym_u8_SQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_L_DQUOTE] = ACTIONS(3368), - [anon_sym_u_DQUOTE] = ACTIONS(3368), - [anon_sym_U_DQUOTE] = ACTIONS(3368), - [anon_sym_u8_DQUOTE] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3366), - [anon_sym_nullptr] = ACTIONS(3366), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3366), - [anon_sym_decltype] = ACTIONS(3366), - [anon_sym_virtual] = ACTIONS(3366), - [anon_sym_alignas] = ACTIONS(3366), - [anon_sym_explicit] = ACTIONS(3366), - [anon_sym_typename] = ACTIONS(3366), - [anon_sym_template] = ACTIONS(3366), - [anon_sym_operator] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_static_assert] = ACTIONS(3366), - [anon_sym_concept] = ACTIONS(3366), - [anon_sym_co_return] = ACTIONS(3366), - [anon_sym_co_yield] = ACTIONS(3366), - [anon_sym_R_DQUOTE] = ACTIONS(3368), - [anon_sym_LR_DQUOTE] = ACTIONS(3368), - [anon_sym_uR_DQUOTE] = ACTIONS(3368), - [anon_sym_UR_DQUOTE] = ACTIONS(3368), - [anon_sym_u8R_DQUOTE] = ACTIONS(3368), - [anon_sym_co_await] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_requires] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), + [1357] = { + [sym__expression] = STATE(4284), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_COLON] = ACTIONS(4467), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1269] = { - [sym_identifier] = ACTIONS(3298), - [aux_sym_preproc_include_token1] = ACTIONS(3298), - [aux_sym_preproc_def_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token2] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3298), - [sym_preproc_directive] = ACTIONS(3298), - [anon_sym_LPAREN2] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_STAR] = ACTIONS(3300), - [anon_sym_AMP_AMP] = ACTIONS(3300), - [anon_sym_AMP] = ACTIONS(3298), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym___extension__] = ACTIONS(3298), - [anon_sym_typedef] = ACTIONS(3298), - [anon_sym_extern] = ACTIONS(3298), - [anon_sym___attribute__] = ACTIONS(3298), - [anon_sym_COLON_COLON] = ACTIONS(3300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3300), - [anon_sym___declspec] = ACTIONS(3298), - [anon_sym___based] = ACTIONS(3298), - [anon_sym___cdecl] = ACTIONS(3298), - [anon_sym___clrcall] = ACTIONS(3298), - [anon_sym___stdcall] = ACTIONS(3298), - [anon_sym___fastcall] = ACTIONS(3298), - [anon_sym___thiscall] = ACTIONS(3298), - [anon_sym___vectorcall] = ACTIONS(3298), - [anon_sym_LBRACE] = ACTIONS(3300), - [anon_sym_signed] = ACTIONS(3298), - [anon_sym_unsigned] = ACTIONS(3298), - [anon_sym_long] = ACTIONS(3298), - [anon_sym_short] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3298), - [anon_sym_register] = ACTIONS(3298), - [anon_sym_inline] = ACTIONS(3298), - [anon_sym___inline] = ACTIONS(3298), - [anon_sym___inline__] = ACTIONS(3298), - [anon_sym___forceinline] = ACTIONS(3298), - [anon_sym_thread_local] = ACTIONS(3298), - [anon_sym___thread] = ACTIONS(3298), - [anon_sym_const] = ACTIONS(3298), - [anon_sym_constexpr] = ACTIONS(3298), - [anon_sym_volatile] = ACTIONS(3298), - [anon_sym_restrict] = ACTIONS(3298), - [anon_sym___restrict__] = ACTIONS(3298), - [anon_sym__Atomic] = ACTIONS(3298), - [anon_sym__Noreturn] = ACTIONS(3298), - [anon_sym_noreturn] = ACTIONS(3298), - [anon_sym_mutable] = ACTIONS(3298), - [anon_sym_constinit] = ACTIONS(3298), - [anon_sym_consteval] = ACTIONS(3298), - [sym_primitive_type] = ACTIONS(3298), - [anon_sym_enum] = ACTIONS(3298), - [anon_sym_class] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3298), - [anon_sym_union] = ACTIONS(3298), - [anon_sym_if] = ACTIONS(3298), - [anon_sym_switch] = ACTIONS(3298), - [anon_sym_case] = ACTIONS(3298), - [anon_sym_default] = ACTIONS(3298), - [anon_sym_while] = ACTIONS(3298), - [anon_sym_do] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3298), - [anon_sym_return] = ACTIONS(3298), - [anon_sym_break] = ACTIONS(3298), - [anon_sym_continue] = ACTIONS(3298), - [anon_sym_goto] = ACTIONS(3298), - [anon_sym_not] = ACTIONS(3298), - [anon_sym_compl] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3300), - [anon_sym_sizeof] = ACTIONS(3298), - [anon_sym___alignof__] = ACTIONS(3298), - [anon_sym___alignof] = ACTIONS(3298), - [anon_sym__alignof] = ACTIONS(3298), - [anon_sym_alignof] = ACTIONS(3298), - [anon_sym__Alignof] = ACTIONS(3298), - [anon_sym_offsetof] = ACTIONS(3298), - [anon_sym__Generic] = ACTIONS(3298), - [anon_sym_asm] = ACTIONS(3298), - [anon_sym___asm__] = ACTIONS(3298), - [sym_number_literal] = ACTIONS(3300), - [anon_sym_L_SQUOTE] = ACTIONS(3300), - [anon_sym_u_SQUOTE] = ACTIONS(3300), - [anon_sym_U_SQUOTE] = ACTIONS(3300), - [anon_sym_u8_SQUOTE] = ACTIONS(3300), - [anon_sym_SQUOTE] = ACTIONS(3300), - [anon_sym_L_DQUOTE] = ACTIONS(3300), - [anon_sym_u_DQUOTE] = ACTIONS(3300), - [anon_sym_U_DQUOTE] = ACTIONS(3300), - [anon_sym_u8_DQUOTE] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(3300), - [sym_true] = ACTIONS(3298), - [sym_false] = ACTIONS(3298), - [anon_sym_NULL] = ACTIONS(3298), - [anon_sym_nullptr] = ACTIONS(3298), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3298), - [anon_sym_decltype] = ACTIONS(3298), - [anon_sym_virtual] = ACTIONS(3298), - [anon_sym_alignas] = ACTIONS(3298), - [anon_sym_explicit] = ACTIONS(3298), - [anon_sym_typename] = ACTIONS(3298), - [anon_sym_template] = ACTIONS(3298), - [anon_sym_operator] = ACTIONS(3298), - [anon_sym_try] = ACTIONS(3298), - [anon_sym_delete] = ACTIONS(3298), - [anon_sym_throw] = ACTIONS(3298), - [anon_sym_namespace] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3298), - [anon_sym_static_assert] = ACTIONS(3298), - [anon_sym_concept] = ACTIONS(3298), - [anon_sym_co_return] = ACTIONS(3298), - [anon_sym_co_yield] = ACTIONS(3298), - [anon_sym_R_DQUOTE] = ACTIONS(3300), - [anon_sym_LR_DQUOTE] = ACTIONS(3300), - [anon_sym_uR_DQUOTE] = ACTIONS(3300), - [anon_sym_UR_DQUOTE] = ACTIONS(3300), - [anon_sym_u8R_DQUOTE] = ACTIONS(3300), - [anon_sym_co_await] = ACTIONS(3298), - [anon_sym_new] = ACTIONS(3298), - [anon_sym_requires] = ACTIONS(3298), - [sym_this] = ACTIONS(3298), + [1358] = { + [sym__expression] = STATE(3928), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(4303), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1270] = { - [sym_identifier] = ACTIONS(3294), - [aux_sym_preproc_include_token1] = ACTIONS(3294), - [aux_sym_preproc_def_token1] = ACTIONS(3294), - [aux_sym_preproc_if_token1] = ACTIONS(3294), - [aux_sym_preproc_if_token2] = ACTIONS(3294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), - [sym_preproc_directive] = ACTIONS(3294), - [anon_sym_LPAREN2] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym___extension__] = ACTIONS(3294), - [anon_sym_typedef] = ACTIONS(3294), - [anon_sym_extern] = ACTIONS(3294), - [anon_sym___attribute__] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), - [anon_sym___declspec] = ACTIONS(3294), - [anon_sym___based] = ACTIONS(3294), - [anon_sym___cdecl] = ACTIONS(3294), - [anon_sym___clrcall] = ACTIONS(3294), - [anon_sym___stdcall] = ACTIONS(3294), - [anon_sym___fastcall] = ACTIONS(3294), - [anon_sym___thiscall] = ACTIONS(3294), - [anon_sym___vectorcall] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_signed] = ACTIONS(3294), - [anon_sym_unsigned] = ACTIONS(3294), - [anon_sym_long] = ACTIONS(3294), - [anon_sym_short] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_register] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym___inline] = ACTIONS(3294), - [anon_sym___inline__] = ACTIONS(3294), - [anon_sym___forceinline] = ACTIONS(3294), - [anon_sym_thread_local] = ACTIONS(3294), - [anon_sym___thread] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_constexpr] = ACTIONS(3294), - [anon_sym_volatile] = ACTIONS(3294), - [anon_sym_restrict] = ACTIONS(3294), - [anon_sym___restrict__] = ACTIONS(3294), - [anon_sym__Atomic] = ACTIONS(3294), - [anon_sym__Noreturn] = ACTIONS(3294), - [anon_sym_noreturn] = ACTIONS(3294), - [anon_sym_mutable] = ACTIONS(3294), - [anon_sym_constinit] = ACTIONS(3294), - [anon_sym_consteval] = ACTIONS(3294), - [sym_primitive_type] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), - [anon_sym_class] = ACTIONS(3294), - [anon_sym_struct] = ACTIONS(3294), - [anon_sym_union] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_switch] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3294), - [anon_sym_default] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_do] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_goto] = ACTIONS(3294), - [anon_sym_not] = ACTIONS(3294), - [anon_sym_compl] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_sizeof] = ACTIONS(3294), - [anon_sym___alignof__] = ACTIONS(3294), - [anon_sym___alignof] = ACTIONS(3294), - [anon_sym__alignof] = ACTIONS(3294), - [anon_sym_alignof] = ACTIONS(3294), - [anon_sym__Alignof] = ACTIONS(3294), - [anon_sym_offsetof] = ACTIONS(3294), - [anon_sym__Generic] = ACTIONS(3294), - [anon_sym_asm] = ACTIONS(3294), - [anon_sym___asm__] = ACTIONS(3294), - [sym_number_literal] = ACTIONS(3296), - [anon_sym_L_SQUOTE] = ACTIONS(3296), - [anon_sym_u_SQUOTE] = ACTIONS(3296), - [anon_sym_U_SQUOTE] = ACTIONS(3296), - [anon_sym_u8_SQUOTE] = ACTIONS(3296), - [anon_sym_SQUOTE] = ACTIONS(3296), - [anon_sym_L_DQUOTE] = ACTIONS(3296), - [anon_sym_u_DQUOTE] = ACTIONS(3296), - [anon_sym_U_DQUOTE] = ACTIONS(3296), - [anon_sym_u8_DQUOTE] = ACTIONS(3296), - [anon_sym_DQUOTE] = ACTIONS(3296), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [anon_sym_NULL] = ACTIONS(3294), - [anon_sym_nullptr] = ACTIONS(3294), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3294), - [anon_sym_decltype] = ACTIONS(3294), - [anon_sym_virtual] = ACTIONS(3294), - [anon_sym_alignas] = ACTIONS(3294), - [anon_sym_explicit] = ACTIONS(3294), - [anon_sym_typename] = ACTIONS(3294), - [anon_sym_template] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_delete] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_namespace] = ACTIONS(3294), - [anon_sym_using] = ACTIONS(3294), - [anon_sym_static_assert] = ACTIONS(3294), - [anon_sym_concept] = ACTIONS(3294), - [anon_sym_co_return] = ACTIONS(3294), - [anon_sym_co_yield] = ACTIONS(3294), - [anon_sym_R_DQUOTE] = ACTIONS(3296), - [anon_sym_LR_DQUOTE] = ACTIONS(3296), - [anon_sym_uR_DQUOTE] = ACTIONS(3296), - [anon_sym_UR_DQUOTE] = ACTIONS(3296), - [anon_sym_u8R_DQUOTE] = ACTIONS(3296), - [anon_sym_co_await] = ACTIONS(3294), - [anon_sym_new] = ACTIONS(3294), - [anon_sym_requires] = ACTIONS(3294), - [sym_this] = ACTIONS(3294), + [1359] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_RBRACK] = ACTIONS(4471), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1271] = { - [sym_identifier] = ACTIONS(3290), - [aux_sym_preproc_include_token1] = ACTIONS(3290), - [aux_sym_preproc_def_token1] = ACTIONS(3290), - [aux_sym_preproc_if_token1] = ACTIONS(3290), - [aux_sym_preproc_if_token2] = ACTIONS(3290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3290), - [sym_preproc_directive] = ACTIONS(3290), - [anon_sym_LPAREN2] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3290), - [anon_sym_PLUS] = ACTIONS(3290), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_AMP] = ACTIONS(3290), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym___extension__] = ACTIONS(3290), - [anon_sym_typedef] = ACTIONS(3290), - [anon_sym_extern] = ACTIONS(3290), - [anon_sym___attribute__] = ACTIONS(3290), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3292), - [anon_sym___declspec] = ACTIONS(3290), - [anon_sym___based] = ACTIONS(3290), - [anon_sym___cdecl] = ACTIONS(3290), - [anon_sym___clrcall] = ACTIONS(3290), - [anon_sym___stdcall] = ACTIONS(3290), - [anon_sym___fastcall] = ACTIONS(3290), - [anon_sym___thiscall] = ACTIONS(3290), - [anon_sym___vectorcall] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_signed] = ACTIONS(3290), - [anon_sym_unsigned] = ACTIONS(3290), - [anon_sym_long] = ACTIONS(3290), - [anon_sym_short] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_static] = ACTIONS(3290), - [anon_sym_register] = ACTIONS(3290), - [anon_sym_inline] = ACTIONS(3290), - [anon_sym___inline] = ACTIONS(3290), - [anon_sym___inline__] = ACTIONS(3290), - [anon_sym___forceinline] = ACTIONS(3290), - [anon_sym_thread_local] = ACTIONS(3290), - [anon_sym___thread] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_constexpr] = ACTIONS(3290), - [anon_sym_volatile] = ACTIONS(3290), - [anon_sym_restrict] = ACTIONS(3290), - [anon_sym___restrict__] = ACTIONS(3290), - [anon_sym__Atomic] = ACTIONS(3290), - [anon_sym__Noreturn] = ACTIONS(3290), - [anon_sym_noreturn] = ACTIONS(3290), - [anon_sym_mutable] = ACTIONS(3290), - [anon_sym_constinit] = ACTIONS(3290), - [anon_sym_consteval] = ACTIONS(3290), - [sym_primitive_type] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), - [anon_sym_class] = ACTIONS(3290), - [anon_sym_struct] = ACTIONS(3290), - [anon_sym_union] = ACTIONS(3290), - [anon_sym_if] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3290), - [anon_sym_case] = ACTIONS(3290), - [anon_sym_default] = ACTIONS(3290), - [anon_sym_while] = ACTIONS(3290), - [anon_sym_do] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3290), - [anon_sym_return] = ACTIONS(3290), - [anon_sym_break] = ACTIONS(3290), - [anon_sym_continue] = ACTIONS(3290), - [anon_sym_goto] = ACTIONS(3290), - [anon_sym_not] = ACTIONS(3290), - [anon_sym_compl] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_sizeof] = ACTIONS(3290), - [anon_sym___alignof__] = ACTIONS(3290), - [anon_sym___alignof] = ACTIONS(3290), - [anon_sym__alignof] = ACTIONS(3290), - [anon_sym_alignof] = ACTIONS(3290), - [anon_sym__Alignof] = ACTIONS(3290), - [anon_sym_offsetof] = ACTIONS(3290), - [anon_sym__Generic] = ACTIONS(3290), - [anon_sym_asm] = ACTIONS(3290), - [anon_sym___asm__] = ACTIONS(3290), - [sym_number_literal] = ACTIONS(3292), - [anon_sym_L_SQUOTE] = ACTIONS(3292), - [anon_sym_u_SQUOTE] = ACTIONS(3292), - [anon_sym_U_SQUOTE] = ACTIONS(3292), - [anon_sym_u8_SQUOTE] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_L_DQUOTE] = ACTIONS(3292), - [anon_sym_u_DQUOTE] = ACTIONS(3292), - [anon_sym_U_DQUOTE] = ACTIONS(3292), - [anon_sym_u8_DQUOTE] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [sym_true] = ACTIONS(3290), - [sym_false] = ACTIONS(3290), - [anon_sym_NULL] = ACTIONS(3290), - [anon_sym_nullptr] = ACTIONS(3290), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3290), - [anon_sym_decltype] = ACTIONS(3290), - [anon_sym_virtual] = ACTIONS(3290), - [anon_sym_alignas] = ACTIONS(3290), - [anon_sym_explicit] = ACTIONS(3290), - [anon_sym_typename] = ACTIONS(3290), - [anon_sym_template] = ACTIONS(3290), - [anon_sym_operator] = ACTIONS(3290), - [anon_sym_try] = ACTIONS(3290), - [anon_sym_delete] = ACTIONS(3290), - [anon_sym_throw] = ACTIONS(3290), - [anon_sym_namespace] = ACTIONS(3290), - [anon_sym_using] = ACTIONS(3290), - [anon_sym_static_assert] = ACTIONS(3290), - [anon_sym_concept] = ACTIONS(3290), - [anon_sym_co_return] = ACTIONS(3290), - [anon_sym_co_yield] = ACTIONS(3290), - [anon_sym_R_DQUOTE] = ACTIONS(3292), - [anon_sym_LR_DQUOTE] = ACTIONS(3292), - [anon_sym_uR_DQUOTE] = ACTIONS(3292), - [anon_sym_UR_DQUOTE] = ACTIONS(3292), - [anon_sym_u8R_DQUOTE] = ACTIONS(3292), - [anon_sym_co_await] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3290), - [anon_sym_requires] = ACTIONS(3290), - [sym_this] = ACTIONS(3290), + [1360] = { + [sym__expression] = STATE(4180), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1272] = { - [sym_identifier] = ACTIONS(3308), - [aux_sym_preproc_include_token1] = ACTIONS(3308), - [aux_sym_preproc_def_token1] = ACTIONS(3308), - [aux_sym_preproc_if_token1] = ACTIONS(3308), - [aux_sym_preproc_if_token2] = ACTIONS(3308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3308), - [sym_preproc_directive] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(3310), - [anon_sym_BANG] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3310), - [anon_sym_DASH] = ACTIONS(3308), - [anon_sym_PLUS] = ACTIONS(3308), - [anon_sym_STAR] = ACTIONS(3310), - [anon_sym_AMP_AMP] = ACTIONS(3310), - [anon_sym_AMP] = ACTIONS(3308), - [anon_sym_SEMI] = ACTIONS(3310), - [anon_sym___extension__] = ACTIONS(3308), - [anon_sym_typedef] = ACTIONS(3308), - [anon_sym_extern] = ACTIONS(3308), - [anon_sym___attribute__] = ACTIONS(3308), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3310), - [anon_sym___declspec] = ACTIONS(3308), - [anon_sym___based] = ACTIONS(3308), - [anon_sym___cdecl] = ACTIONS(3308), - [anon_sym___clrcall] = ACTIONS(3308), - [anon_sym___stdcall] = ACTIONS(3308), - [anon_sym___fastcall] = ACTIONS(3308), - [anon_sym___thiscall] = ACTIONS(3308), - [anon_sym___vectorcall] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(3310), - [anon_sym_signed] = ACTIONS(3308), - [anon_sym_unsigned] = ACTIONS(3308), - [anon_sym_long] = ACTIONS(3308), - [anon_sym_short] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3308), - [anon_sym_static] = ACTIONS(3308), - [anon_sym_register] = ACTIONS(3308), - [anon_sym_inline] = ACTIONS(3308), - [anon_sym___inline] = ACTIONS(3308), - [anon_sym___inline__] = ACTIONS(3308), - [anon_sym___forceinline] = ACTIONS(3308), - [anon_sym_thread_local] = ACTIONS(3308), - [anon_sym___thread] = ACTIONS(3308), - [anon_sym_const] = ACTIONS(3308), - [anon_sym_constexpr] = ACTIONS(3308), - [anon_sym_volatile] = ACTIONS(3308), - [anon_sym_restrict] = ACTIONS(3308), - [anon_sym___restrict__] = ACTIONS(3308), - [anon_sym__Atomic] = ACTIONS(3308), - [anon_sym__Noreturn] = ACTIONS(3308), - [anon_sym_noreturn] = ACTIONS(3308), - [anon_sym_mutable] = ACTIONS(3308), - [anon_sym_constinit] = ACTIONS(3308), - [anon_sym_consteval] = ACTIONS(3308), - [sym_primitive_type] = ACTIONS(3308), - [anon_sym_enum] = ACTIONS(3308), - [anon_sym_class] = ACTIONS(3308), - [anon_sym_struct] = ACTIONS(3308), - [anon_sym_union] = ACTIONS(3308), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_switch] = ACTIONS(3308), - [anon_sym_case] = ACTIONS(3308), - [anon_sym_default] = ACTIONS(3308), - [anon_sym_while] = ACTIONS(3308), - [anon_sym_do] = ACTIONS(3308), - [anon_sym_for] = ACTIONS(3308), - [anon_sym_return] = ACTIONS(3308), - [anon_sym_break] = ACTIONS(3308), - [anon_sym_continue] = ACTIONS(3308), - [anon_sym_goto] = ACTIONS(3308), - [anon_sym_not] = ACTIONS(3308), - [anon_sym_compl] = ACTIONS(3308), - [anon_sym_DASH_DASH] = ACTIONS(3310), - [anon_sym_PLUS_PLUS] = ACTIONS(3310), - [anon_sym_sizeof] = ACTIONS(3308), - [anon_sym___alignof__] = ACTIONS(3308), - [anon_sym___alignof] = ACTIONS(3308), - [anon_sym__alignof] = ACTIONS(3308), - [anon_sym_alignof] = ACTIONS(3308), - [anon_sym__Alignof] = ACTIONS(3308), - [anon_sym_offsetof] = ACTIONS(3308), - [anon_sym__Generic] = ACTIONS(3308), - [anon_sym_asm] = ACTIONS(3308), - [anon_sym___asm__] = ACTIONS(3308), - [sym_number_literal] = ACTIONS(3310), - [anon_sym_L_SQUOTE] = ACTIONS(3310), - [anon_sym_u_SQUOTE] = ACTIONS(3310), - [anon_sym_U_SQUOTE] = ACTIONS(3310), - [anon_sym_u8_SQUOTE] = ACTIONS(3310), - [anon_sym_SQUOTE] = ACTIONS(3310), - [anon_sym_L_DQUOTE] = ACTIONS(3310), - [anon_sym_u_DQUOTE] = ACTIONS(3310), - [anon_sym_U_DQUOTE] = ACTIONS(3310), - [anon_sym_u8_DQUOTE] = ACTIONS(3310), - [anon_sym_DQUOTE] = ACTIONS(3310), - [sym_true] = ACTIONS(3308), - [sym_false] = ACTIONS(3308), - [anon_sym_NULL] = ACTIONS(3308), - [anon_sym_nullptr] = ACTIONS(3308), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3308), - [anon_sym_decltype] = ACTIONS(3308), - [anon_sym_virtual] = ACTIONS(3308), - [anon_sym_alignas] = ACTIONS(3308), - [anon_sym_explicit] = ACTIONS(3308), - [anon_sym_typename] = ACTIONS(3308), - [anon_sym_template] = ACTIONS(3308), - [anon_sym_operator] = ACTIONS(3308), - [anon_sym_try] = ACTIONS(3308), - [anon_sym_delete] = ACTIONS(3308), - [anon_sym_throw] = ACTIONS(3308), - [anon_sym_namespace] = ACTIONS(3308), - [anon_sym_using] = ACTIONS(3308), - [anon_sym_static_assert] = ACTIONS(3308), - [anon_sym_concept] = ACTIONS(3308), - [anon_sym_co_return] = ACTIONS(3308), - [anon_sym_co_yield] = ACTIONS(3308), - [anon_sym_R_DQUOTE] = ACTIONS(3310), - [anon_sym_LR_DQUOTE] = ACTIONS(3310), - [anon_sym_uR_DQUOTE] = ACTIONS(3310), - [anon_sym_UR_DQUOTE] = ACTIONS(3310), - [anon_sym_u8R_DQUOTE] = ACTIONS(3310), - [anon_sym_co_await] = ACTIONS(3308), - [anon_sym_new] = ACTIONS(3308), - [anon_sym_requires] = ACTIONS(3308), - [sym_this] = ACTIONS(3308), + [1361] = { + [sym__expression] = STATE(3002), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4475), + [anon_sym_LPAREN2] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, - [1273] = { - [sym_identifier] = ACTIONS(3278), - [aux_sym_preproc_include_token1] = ACTIONS(3278), - [aux_sym_preproc_def_token1] = ACTIONS(3278), - [aux_sym_preproc_if_token1] = ACTIONS(3278), - [aux_sym_preproc_if_token2] = ACTIONS(3278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3278), - [sym_preproc_directive] = ACTIONS(3278), - [anon_sym_LPAREN2] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_AMP] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym___extension__] = ACTIONS(3278), - [anon_sym_typedef] = ACTIONS(3278), - [anon_sym_extern] = ACTIONS(3278), - [anon_sym___attribute__] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3280), - [anon_sym___declspec] = ACTIONS(3278), - [anon_sym___based] = ACTIONS(3278), - [anon_sym___cdecl] = ACTIONS(3278), - [anon_sym___clrcall] = ACTIONS(3278), - [anon_sym___stdcall] = ACTIONS(3278), - [anon_sym___fastcall] = ACTIONS(3278), - [anon_sym___thiscall] = ACTIONS(3278), - [anon_sym___vectorcall] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_signed] = ACTIONS(3278), - [anon_sym_unsigned] = ACTIONS(3278), - [anon_sym_long] = ACTIONS(3278), - [anon_sym_short] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3278), - [anon_sym_static] = ACTIONS(3278), - [anon_sym_register] = ACTIONS(3278), - [anon_sym_inline] = ACTIONS(3278), - [anon_sym___inline] = ACTIONS(3278), - [anon_sym___inline__] = ACTIONS(3278), - [anon_sym___forceinline] = ACTIONS(3278), - [anon_sym_thread_local] = ACTIONS(3278), - [anon_sym___thread] = ACTIONS(3278), - [anon_sym_const] = ACTIONS(3278), - [anon_sym_constexpr] = ACTIONS(3278), - [anon_sym_volatile] = ACTIONS(3278), - [anon_sym_restrict] = ACTIONS(3278), - [anon_sym___restrict__] = ACTIONS(3278), - [anon_sym__Atomic] = ACTIONS(3278), - [anon_sym__Noreturn] = ACTIONS(3278), - [anon_sym_noreturn] = ACTIONS(3278), - [anon_sym_mutable] = ACTIONS(3278), - [anon_sym_constinit] = ACTIONS(3278), - [anon_sym_consteval] = ACTIONS(3278), - [sym_primitive_type] = ACTIONS(3278), - [anon_sym_enum] = ACTIONS(3278), - [anon_sym_class] = ACTIONS(3278), - [anon_sym_struct] = ACTIONS(3278), - [anon_sym_union] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_switch] = ACTIONS(3278), - [anon_sym_case] = ACTIONS(3278), - [anon_sym_default] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_do] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_goto] = ACTIONS(3278), - [anon_sym_not] = ACTIONS(3278), - [anon_sym_compl] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_sizeof] = ACTIONS(3278), - [anon_sym___alignof__] = ACTIONS(3278), - [anon_sym___alignof] = ACTIONS(3278), - [anon_sym__alignof] = ACTIONS(3278), - [anon_sym_alignof] = ACTIONS(3278), - [anon_sym__Alignof] = ACTIONS(3278), - [anon_sym_offsetof] = ACTIONS(3278), - [anon_sym__Generic] = ACTIONS(3278), - [anon_sym_asm] = ACTIONS(3278), - [anon_sym___asm__] = ACTIONS(3278), - [sym_number_literal] = ACTIONS(3280), - [anon_sym_L_SQUOTE] = ACTIONS(3280), - [anon_sym_u_SQUOTE] = ACTIONS(3280), - [anon_sym_U_SQUOTE] = ACTIONS(3280), - [anon_sym_u8_SQUOTE] = ACTIONS(3280), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_L_DQUOTE] = ACTIONS(3280), - [anon_sym_u_DQUOTE] = ACTIONS(3280), - [anon_sym_U_DQUOTE] = ACTIONS(3280), - [anon_sym_u8_DQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [anon_sym_NULL] = ACTIONS(3278), - [anon_sym_nullptr] = ACTIONS(3278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3278), - [anon_sym_decltype] = ACTIONS(3278), - [anon_sym_virtual] = ACTIONS(3278), - [anon_sym_alignas] = ACTIONS(3278), - [anon_sym_explicit] = ACTIONS(3278), - [anon_sym_typename] = ACTIONS(3278), - [anon_sym_template] = ACTIONS(3278), - [anon_sym_operator] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_delete] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_namespace] = ACTIONS(3278), - [anon_sym_using] = ACTIONS(3278), - [anon_sym_static_assert] = ACTIONS(3278), - [anon_sym_concept] = ACTIONS(3278), - [anon_sym_co_return] = ACTIONS(3278), - [anon_sym_co_yield] = ACTIONS(3278), - [anon_sym_R_DQUOTE] = ACTIONS(3280), - [anon_sym_LR_DQUOTE] = ACTIONS(3280), - [anon_sym_uR_DQUOTE] = ACTIONS(3280), - [anon_sym_UR_DQUOTE] = ACTIONS(3280), - [anon_sym_u8R_DQUOTE] = ACTIONS(3280), - [anon_sym_co_await] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3278), - [anon_sym_requires] = ACTIONS(3278), - [sym_this] = ACTIONS(3278), + [1362] = { + [sym__expression] = STATE(2927), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1274] = { - [sym_identifier] = ACTIONS(3274), - [aux_sym_preproc_include_token1] = ACTIONS(3274), - [aux_sym_preproc_def_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token2] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), - [sym_preproc_directive] = ACTIONS(3274), - [anon_sym_LPAREN2] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_AMP] = ACTIONS(3274), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym___extension__] = ACTIONS(3274), - [anon_sym_typedef] = ACTIONS(3274), - [anon_sym_extern] = ACTIONS(3274), - [anon_sym___attribute__] = ACTIONS(3274), - [anon_sym_COLON_COLON] = ACTIONS(3276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), - [anon_sym___declspec] = ACTIONS(3274), - [anon_sym___based] = ACTIONS(3274), - [anon_sym___cdecl] = ACTIONS(3274), - [anon_sym___clrcall] = ACTIONS(3274), - [anon_sym___stdcall] = ACTIONS(3274), - [anon_sym___fastcall] = ACTIONS(3274), - [anon_sym___thiscall] = ACTIONS(3274), - [anon_sym___vectorcall] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_signed] = ACTIONS(3274), - [anon_sym_unsigned] = ACTIONS(3274), - [anon_sym_long] = ACTIONS(3274), - [anon_sym_short] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_register] = ACTIONS(3274), - [anon_sym_inline] = ACTIONS(3274), - [anon_sym___inline] = ACTIONS(3274), - [anon_sym___inline__] = ACTIONS(3274), - [anon_sym___forceinline] = ACTIONS(3274), - [anon_sym_thread_local] = ACTIONS(3274), - [anon_sym___thread] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_constexpr] = ACTIONS(3274), - [anon_sym_volatile] = ACTIONS(3274), - [anon_sym_restrict] = ACTIONS(3274), - [anon_sym___restrict__] = ACTIONS(3274), - [anon_sym__Atomic] = ACTIONS(3274), - [anon_sym__Noreturn] = ACTIONS(3274), - [anon_sym_noreturn] = ACTIONS(3274), - [anon_sym_mutable] = ACTIONS(3274), - [anon_sym_constinit] = ACTIONS(3274), - [anon_sym_consteval] = ACTIONS(3274), - [sym_primitive_type] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_union] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_case] = ACTIONS(3274), - [anon_sym_default] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_goto] = ACTIONS(3274), - [anon_sym_not] = ACTIONS(3274), - [anon_sym_compl] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_sizeof] = ACTIONS(3274), - [anon_sym___alignof__] = ACTIONS(3274), - [anon_sym___alignof] = ACTIONS(3274), - [anon_sym__alignof] = ACTIONS(3274), - [anon_sym_alignof] = ACTIONS(3274), - [anon_sym__Alignof] = ACTIONS(3274), - [anon_sym_offsetof] = ACTIONS(3274), - [anon_sym__Generic] = ACTIONS(3274), - [anon_sym_asm] = ACTIONS(3274), - [anon_sym___asm__] = ACTIONS(3274), - [sym_number_literal] = ACTIONS(3276), - [anon_sym_L_SQUOTE] = ACTIONS(3276), - [anon_sym_u_SQUOTE] = ACTIONS(3276), - [anon_sym_U_SQUOTE] = ACTIONS(3276), - [anon_sym_u8_SQUOTE] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3276), - [anon_sym_L_DQUOTE] = ACTIONS(3276), - [anon_sym_u_DQUOTE] = ACTIONS(3276), - [anon_sym_U_DQUOTE] = ACTIONS(3276), - [anon_sym_u8_DQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [anon_sym_NULL] = ACTIONS(3274), - [anon_sym_nullptr] = ACTIONS(3274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3274), - [anon_sym_decltype] = ACTIONS(3274), - [anon_sym_virtual] = ACTIONS(3274), - [anon_sym_alignas] = ACTIONS(3274), - [anon_sym_explicit] = ACTIONS(3274), - [anon_sym_typename] = ACTIONS(3274), - [anon_sym_template] = ACTIONS(3274), - [anon_sym_operator] = ACTIONS(3274), - [anon_sym_try] = ACTIONS(3274), - [anon_sym_delete] = ACTIONS(3274), - [anon_sym_throw] = ACTIONS(3274), - [anon_sym_namespace] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_static_assert] = ACTIONS(3274), - [anon_sym_concept] = ACTIONS(3274), - [anon_sym_co_return] = ACTIONS(3274), - [anon_sym_co_yield] = ACTIONS(3274), - [anon_sym_R_DQUOTE] = ACTIONS(3276), - [anon_sym_LR_DQUOTE] = ACTIONS(3276), - [anon_sym_uR_DQUOTE] = ACTIONS(3276), - [anon_sym_UR_DQUOTE] = ACTIONS(3276), - [anon_sym_u8R_DQUOTE] = ACTIONS(3276), - [anon_sym_co_await] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3274), - [anon_sym_requires] = ACTIONS(3274), - [sym_this] = ACTIONS(3274), + [1363] = { + [sym__expression] = STATE(4109), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1275] = { - [sym_identifier] = ACTIONS(3428), - [aux_sym_preproc_include_token1] = ACTIONS(3428), - [aux_sym_preproc_def_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3428), - [sym_preproc_directive] = ACTIONS(3428), - [anon_sym_LPAREN2] = ACTIONS(3430), - [anon_sym_BANG] = ACTIONS(3430), - [anon_sym_TILDE] = ACTIONS(3430), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_STAR] = ACTIONS(3430), - [anon_sym_AMP_AMP] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_SEMI] = ACTIONS(3430), - [anon_sym___extension__] = ACTIONS(3428), - [anon_sym_typedef] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym___attribute__] = ACTIONS(3428), - [anon_sym_COLON_COLON] = ACTIONS(3430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3430), - [anon_sym___declspec] = ACTIONS(3428), - [anon_sym___based] = ACTIONS(3428), - [anon_sym___cdecl] = ACTIONS(3428), - [anon_sym___clrcall] = ACTIONS(3428), - [anon_sym___stdcall] = ACTIONS(3428), - [anon_sym___fastcall] = ACTIONS(3428), - [anon_sym___thiscall] = ACTIONS(3428), - [anon_sym___vectorcall] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3430), - [anon_sym_signed] = ACTIONS(3428), - [anon_sym_unsigned] = ACTIONS(3428), - [anon_sym_long] = ACTIONS(3428), - [anon_sym_short] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_register] = ACTIONS(3428), - [anon_sym_inline] = ACTIONS(3428), - [anon_sym___inline] = ACTIONS(3428), - [anon_sym___inline__] = ACTIONS(3428), - [anon_sym___forceinline] = ACTIONS(3428), - [anon_sym_thread_local] = ACTIONS(3428), - [anon_sym___thread] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_constexpr] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_restrict] = ACTIONS(3428), - [anon_sym___restrict__] = ACTIONS(3428), - [anon_sym__Atomic] = ACTIONS(3428), - [anon_sym__Noreturn] = ACTIONS(3428), - [anon_sym_noreturn] = ACTIONS(3428), - [anon_sym_mutable] = ACTIONS(3428), - [anon_sym_constinit] = ACTIONS(3428), - [anon_sym_consteval] = ACTIONS(3428), - [sym_primitive_type] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_union] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_switch] = ACTIONS(3428), - [anon_sym_case] = ACTIONS(3428), - [anon_sym_default] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_break] = ACTIONS(3428), - [anon_sym_continue] = ACTIONS(3428), - [anon_sym_goto] = ACTIONS(3428), - [anon_sym_not] = ACTIONS(3428), - [anon_sym_compl] = ACTIONS(3428), - [anon_sym_DASH_DASH] = ACTIONS(3430), - [anon_sym_PLUS_PLUS] = ACTIONS(3430), - [anon_sym_sizeof] = ACTIONS(3428), - [anon_sym___alignof__] = ACTIONS(3428), - [anon_sym___alignof] = ACTIONS(3428), - [anon_sym__alignof] = ACTIONS(3428), - [anon_sym_alignof] = ACTIONS(3428), - [anon_sym__Alignof] = ACTIONS(3428), - [anon_sym_offsetof] = ACTIONS(3428), - [anon_sym__Generic] = ACTIONS(3428), - [anon_sym_asm] = ACTIONS(3428), - [anon_sym___asm__] = ACTIONS(3428), - [sym_number_literal] = ACTIONS(3430), - [anon_sym_L_SQUOTE] = ACTIONS(3430), - [anon_sym_u_SQUOTE] = ACTIONS(3430), - [anon_sym_U_SQUOTE] = ACTIONS(3430), - [anon_sym_u8_SQUOTE] = ACTIONS(3430), - [anon_sym_SQUOTE] = ACTIONS(3430), - [anon_sym_L_DQUOTE] = ACTIONS(3430), - [anon_sym_u_DQUOTE] = ACTIONS(3430), - [anon_sym_U_DQUOTE] = ACTIONS(3430), - [anon_sym_u8_DQUOTE] = ACTIONS(3430), - [anon_sym_DQUOTE] = ACTIONS(3430), - [sym_true] = ACTIONS(3428), - [sym_false] = ACTIONS(3428), - [anon_sym_NULL] = ACTIONS(3428), - [anon_sym_nullptr] = ACTIONS(3428), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3428), - [anon_sym_decltype] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_alignas] = ACTIONS(3428), - [anon_sym_explicit] = ACTIONS(3428), - [anon_sym_typename] = ACTIONS(3428), - [anon_sym_template] = ACTIONS(3428), - [anon_sym_operator] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_delete] = ACTIONS(3428), - [anon_sym_throw] = ACTIONS(3428), - [anon_sym_namespace] = ACTIONS(3428), - [anon_sym_using] = ACTIONS(3428), - [anon_sym_static_assert] = ACTIONS(3428), - [anon_sym_concept] = ACTIONS(3428), - [anon_sym_co_return] = ACTIONS(3428), - [anon_sym_co_yield] = ACTIONS(3428), - [anon_sym_R_DQUOTE] = ACTIONS(3430), - [anon_sym_LR_DQUOTE] = ACTIONS(3430), - [anon_sym_uR_DQUOTE] = ACTIONS(3430), - [anon_sym_UR_DQUOTE] = ACTIONS(3430), - [anon_sym_u8R_DQUOTE] = ACTIONS(3430), - [anon_sym_co_await] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_requires] = ACTIONS(3428), - [sym_this] = ACTIONS(3428), + [1364] = { + [sym__expression] = STATE(4142), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1276] = { - [sym_identifier] = ACTIONS(3270), - [aux_sym_preproc_include_token1] = ACTIONS(3270), - [aux_sym_preproc_def_token1] = ACTIONS(3270), - [aux_sym_preproc_if_token1] = ACTIONS(3270), - [aux_sym_preproc_if_token2] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3270), - [sym_preproc_directive] = ACTIONS(3270), - [anon_sym_LPAREN2] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_AMP] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym_typedef] = ACTIONS(3270), - [anon_sym_extern] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3272), - [anon_sym___declspec] = ACTIONS(3270), - [anon_sym___based] = ACTIONS(3270), - [anon_sym___cdecl] = ACTIONS(3270), - [anon_sym___clrcall] = ACTIONS(3270), - [anon_sym___stdcall] = ACTIONS(3270), - [anon_sym___fastcall] = ACTIONS(3270), - [anon_sym___thiscall] = ACTIONS(3270), - [anon_sym___vectorcall] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_signed] = ACTIONS(3270), - [anon_sym_unsigned] = ACTIONS(3270), - [anon_sym_long] = ACTIONS(3270), - [anon_sym_short] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_register] = ACTIONS(3270), - [anon_sym_inline] = ACTIONS(3270), - [anon_sym___inline] = ACTIONS(3270), - [anon_sym___inline__] = ACTIONS(3270), - [anon_sym___forceinline] = ACTIONS(3270), - [anon_sym_thread_local] = ACTIONS(3270), - [anon_sym___thread] = ACTIONS(3270), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [sym_primitive_type] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3270), - [anon_sym_struct] = ACTIONS(3270), - [anon_sym_union] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_switch] = ACTIONS(3270), - [anon_sym_case] = ACTIONS(3270), - [anon_sym_default] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_do] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_goto] = ACTIONS(3270), - [anon_sym_not] = ACTIONS(3270), - [anon_sym_compl] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_sizeof] = ACTIONS(3270), - [anon_sym___alignof__] = ACTIONS(3270), - [anon_sym___alignof] = ACTIONS(3270), - [anon_sym__alignof] = ACTIONS(3270), - [anon_sym_alignof] = ACTIONS(3270), - [anon_sym__Alignof] = ACTIONS(3270), - [anon_sym_offsetof] = ACTIONS(3270), - [anon_sym__Generic] = ACTIONS(3270), - [anon_sym_asm] = ACTIONS(3270), - [anon_sym___asm__] = ACTIONS(3270), - [sym_number_literal] = ACTIONS(3272), - [anon_sym_L_SQUOTE] = ACTIONS(3272), - [anon_sym_u_SQUOTE] = ACTIONS(3272), - [anon_sym_U_SQUOTE] = ACTIONS(3272), - [anon_sym_u8_SQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_L_DQUOTE] = ACTIONS(3272), - [anon_sym_u_DQUOTE] = ACTIONS(3272), - [anon_sym_U_DQUOTE] = ACTIONS(3272), - [anon_sym_u8_DQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [anon_sym_NULL] = ACTIONS(3270), - [anon_sym_nullptr] = ACTIONS(3270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3270), - [anon_sym_decltype] = ACTIONS(3270), - [anon_sym_virtual] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3270), - [anon_sym_explicit] = ACTIONS(3270), - [anon_sym_typename] = ACTIONS(3270), - [anon_sym_template] = ACTIONS(3270), - [anon_sym_operator] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_delete] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_namespace] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3270), - [anon_sym_static_assert] = ACTIONS(3270), - [anon_sym_concept] = ACTIONS(3270), - [anon_sym_co_return] = ACTIONS(3270), - [anon_sym_co_yield] = ACTIONS(3270), - [anon_sym_R_DQUOTE] = ACTIONS(3272), - [anon_sym_LR_DQUOTE] = ACTIONS(3272), - [anon_sym_uR_DQUOTE] = ACTIONS(3272), - [anon_sym_UR_DQUOTE] = ACTIONS(3272), - [anon_sym_u8R_DQUOTE] = ACTIONS(3272), - [anon_sym_co_await] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3270), - [anon_sym_requires] = ACTIONS(3270), - [sym_this] = ACTIONS(3270), + [1365] = { + [sym__expression] = STATE(4215), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1277] = { - [sym_identifier] = ACTIONS(3370), - [aux_sym_preproc_include_token1] = ACTIONS(3370), - [aux_sym_preproc_def_token1] = ACTIONS(3370), - [aux_sym_preproc_if_token1] = ACTIONS(3370), - [aux_sym_preproc_if_token2] = ACTIONS(3370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3370), - [sym_preproc_directive] = ACTIONS(3370), - [anon_sym_LPAREN2] = ACTIONS(3372), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(3372), - [anon_sym_DASH] = ACTIONS(3370), - [anon_sym_PLUS] = ACTIONS(3370), - [anon_sym_STAR] = ACTIONS(3372), - [anon_sym_AMP_AMP] = ACTIONS(3372), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_SEMI] = ACTIONS(3372), - [anon_sym___extension__] = ACTIONS(3370), - [anon_sym_typedef] = ACTIONS(3370), - [anon_sym_extern] = ACTIONS(3370), - [anon_sym___attribute__] = ACTIONS(3370), - [anon_sym_COLON_COLON] = ACTIONS(3372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3372), - [anon_sym___declspec] = ACTIONS(3370), - [anon_sym___based] = ACTIONS(3370), - [anon_sym___cdecl] = ACTIONS(3370), - [anon_sym___clrcall] = ACTIONS(3370), - [anon_sym___stdcall] = ACTIONS(3370), - [anon_sym___fastcall] = ACTIONS(3370), - [anon_sym___thiscall] = ACTIONS(3370), - [anon_sym___vectorcall] = ACTIONS(3370), - [anon_sym_LBRACE] = ACTIONS(3372), - [anon_sym_signed] = ACTIONS(3370), - [anon_sym_unsigned] = ACTIONS(3370), - [anon_sym_long] = ACTIONS(3370), - [anon_sym_short] = ACTIONS(3370), - [anon_sym_LBRACK] = ACTIONS(3370), - [anon_sym_static] = ACTIONS(3370), - [anon_sym_register] = ACTIONS(3370), - [anon_sym_inline] = ACTIONS(3370), - [anon_sym___inline] = ACTIONS(3370), - [anon_sym___inline__] = ACTIONS(3370), - [anon_sym___forceinline] = ACTIONS(3370), - [anon_sym_thread_local] = ACTIONS(3370), - [anon_sym___thread] = ACTIONS(3370), - [anon_sym_const] = ACTIONS(3370), - [anon_sym_constexpr] = ACTIONS(3370), - [anon_sym_volatile] = ACTIONS(3370), - [anon_sym_restrict] = ACTIONS(3370), - [anon_sym___restrict__] = ACTIONS(3370), - [anon_sym__Atomic] = ACTIONS(3370), - [anon_sym__Noreturn] = ACTIONS(3370), - [anon_sym_noreturn] = ACTIONS(3370), - [anon_sym_mutable] = ACTIONS(3370), - [anon_sym_constinit] = ACTIONS(3370), - [anon_sym_consteval] = ACTIONS(3370), - [sym_primitive_type] = ACTIONS(3370), - [anon_sym_enum] = ACTIONS(3370), - [anon_sym_class] = ACTIONS(3370), - [anon_sym_struct] = ACTIONS(3370), - [anon_sym_union] = ACTIONS(3370), - [anon_sym_if] = ACTIONS(3370), - [anon_sym_switch] = ACTIONS(3370), - [anon_sym_case] = ACTIONS(3370), - [anon_sym_default] = ACTIONS(3370), - [anon_sym_while] = ACTIONS(3370), - [anon_sym_do] = ACTIONS(3370), - [anon_sym_for] = ACTIONS(3370), - [anon_sym_return] = ACTIONS(3370), - [anon_sym_break] = ACTIONS(3370), - [anon_sym_continue] = ACTIONS(3370), - [anon_sym_goto] = ACTIONS(3370), - [anon_sym_not] = ACTIONS(3370), - [anon_sym_compl] = ACTIONS(3370), - [anon_sym_DASH_DASH] = ACTIONS(3372), - [anon_sym_PLUS_PLUS] = ACTIONS(3372), - [anon_sym_sizeof] = ACTIONS(3370), - [anon_sym___alignof__] = ACTIONS(3370), - [anon_sym___alignof] = ACTIONS(3370), - [anon_sym__alignof] = ACTIONS(3370), - [anon_sym_alignof] = ACTIONS(3370), - [anon_sym__Alignof] = ACTIONS(3370), - [anon_sym_offsetof] = ACTIONS(3370), - [anon_sym__Generic] = ACTIONS(3370), - [anon_sym_asm] = ACTIONS(3370), - [anon_sym___asm__] = ACTIONS(3370), - [sym_number_literal] = ACTIONS(3372), - [anon_sym_L_SQUOTE] = ACTIONS(3372), - [anon_sym_u_SQUOTE] = ACTIONS(3372), - [anon_sym_U_SQUOTE] = ACTIONS(3372), - [anon_sym_u8_SQUOTE] = ACTIONS(3372), - [anon_sym_SQUOTE] = ACTIONS(3372), - [anon_sym_L_DQUOTE] = ACTIONS(3372), - [anon_sym_u_DQUOTE] = ACTIONS(3372), - [anon_sym_U_DQUOTE] = ACTIONS(3372), - [anon_sym_u8_DQUOTE] = ACTIONS(3372), - [anon_sym_DQUOTE] = ACTIONS(3372), - [sym_true] = ACTIONS(3370), - [sym_false] = ACTIONS(3370), - [anon_sym_NULL] = ACTIONS(3370), - [anon_sym_nullptr] = ACTIONS(3370), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3370), - [anon_sym_virtual] = ACTIONS(3370), - [anon_sym_alignas] = ACTIONS(3370), - [anon_sym_explicit] = ACTIONS(3370), - [anon_sym_typename] = ACTIONS(3370), - [anon_sym_template] = ACTIONS(3370), - [anon_sym_operator] = ACTIONS(3370), - [anon_sym_try] = ACTIONS(3370), - [anon_sym_delete] = ACTIONS(3370), - [anon_sym_throw] = ACTIONS(3370), - [anon_sym_namespace] = ACTIONS(3370), - [anon_sym_using] = ACTIONS(3370), - [anon_sym_static_assert] = ACTIONS(3370), - [anon_sym_concept] = ACTIONS(3370), - [anon_sym_co_return] = ACTIONS(3370), - [anon_sym_co_yield] = ACTIONS(3370), - [anon_sym_R_DQUOTE] = ACTIONS(3372), - [anon_sym_LR_DQUOTE] = ACTIONS(3372), - [anon_sym_uR_DQUOTE] = ACTIONS(3372), - [anon_sym_UR_DQUOTE] = ACTIONS(3372), - [anon_sym_u8R_DQUOTE] = ACTIONS(3372), - [anon_sym_co_await] = ACTIONS(3370), - [anon_sym_new] = ACTIONS(3370), - [anon_sym_requires] = ACTIONS(3370), - [sym_this] = ACTIONS(3370), + [1366] = { + [sym__expression] = STATE(4078), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(4479), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [1278] = { - [sym_identifier] = ACTIONS(3422), - [aux_sym_preproc_include_token1] = ACTIONS(3422), - [aux_sym_preproc_def_token1] = ACTIONS(3422), - [aux_sym_preproc_if_token1] = ACTIONS(3422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3422), - [sym_preproc_directive] = ACTIONS(3422), - [anon_sym_LPAREN2] = ACTIONS(3424), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3424), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_STAR] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym___extension__] = ACTIONS(3422), - [anon_sym_typedef] = ACTIONS(3422), - [anon_sym_extern] = ACTIONS(3422), - [anon_sym___attribute__] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3424), - [anon_sym___declspec] = ACTIONS(3422), - [anon_sym___based] = ACTIONS(3422), - [anon_sym___cdecl] = ACTIONS(3422), - [anon_sym___clrcall] = ACTIONS(3422), - [anon_sym___stdcall] = ACTIONS(3422), - [anon_sym___fastcall] = ACTIONS(3422), - [anon_sym___thiscall] = ACTIONS(3422), - [anon_sym___vectorcall] = ACTIONS(3422), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_RBRACE] = ACTIONS(3424), - [anon_sym_signed] = ACTIONS(3422), - [anon_sym_unsigned] = ACTIONS(3422), - [anon_sym_long] = ACTIONS(3422), - [anon_sym_short] = ACTIONS(3422), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_static] = ACTIONS(3422), - [anon_sym_register] = ACTIONS(3422), - [anon_sym_inline] = ACTIONS(3422), - [anon_sym___inline] = ACTIONS(3422), - [anon_sym___inline__] = ACTIONS(3422), - [anon_sym___forceinline] = ACTIONS(3422), - [anon_sym_thread_local] = ACTIONS(3422), - [anon_sym___thread] = ACTIONS(3422), - [anon_sym_const] = ACTIONS(3422), - [anon_sym_constexpr] = ACTIONS(3422), - [anon_sym_volatile] = ACTIONS(3422), - [anon_sym_restrict] = ACTIONS(3422), - [anon_sym___restrict__] = ACTIONS(3422), - [anon_sym__Atomic] = ACTIONS(3422), - [anon_sym__Noreturn] = ACTIONS(3422), - [anon_sym_noreturn] = ACTIONS(3422), - [anon_sym_mutable] = ACTIONS(3422), - [anon_sym_constinit] = ACTIONS(3422), - [anon_sym_consteval] = ACTIONS(3422), - [sym_primitive_type] = ACTIONS(3422), - [anon_sym_enum] = ACTIONS(3422), - [anon_sym_class] = ACTIONS(3422), - [anon_sym_struct] = ACTIONS(3422), - [anon_sym_union] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3422), - [anon_sym_switch] = ACTIONS(3422), - [anon_sym_case] = ACTIONS(3422), - [anon_sym_default] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_do] = ACTIONS(3422), - [anon_sym_for] = ACTIONS(3422), - [anon_sym_return] = ACTIONS(3422), - [anon_sym_break] = ACTIONS(3422), - [anon_sym_continue] = ACTIONS(3422), - [anon_sym_goto] = ACTIONS(3422), - [anon_sym_not] = ACTIONS(3422), - [anon_sym_compl] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3422), - [anon_sym___alignof__] = ACTIONS(3422), - [anon_sym___alignof] = ACTIONS(3422), - [anon_sym__alignof] = ACTIONS(3422), - [anon_sym_alignof] = ACTIONS(3422), - [anon_sym__Alignof] = ACTIONS(3422), - [anon_sym_offsetof] = ACTIONS(3422), - [anon_sym__Generic] = ACTIONS(3422), - [anon_sym_asm] = ACTIONS(3422), - [anon_sym___asm__] = ACTIONS(3422), - [sym_number_literal] = ACTIONS(3424), - [anon_sym_L_SQUOTE] = ACTIONS(3424), - [anon_sym_u_SQUOTE] = ACTIONS(3424), - [anon_sym_U_SQUOTE] = ACTIONS(3424), - [anon_sym_u8_SQUOTE] = ACTIONS(3424), - [anon_sym_SQUOTE] = ACTIONS(3424), - [anon_sym_L_DQUOTE] = ACTIONS(3424), - [anon_sym_u_DQUOTE] = ACTIONS(3424), - [anon_sym_U_DQUOTE] = ACTIONS(3424), - [anon_sym_u8_DQUOTE] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [sym_true] = ACTIONS(3422), - [sym_false] = ACTIONS(3422), - [anon_sym_NULL] = ACTIONS(3422), - [anon_sym_nullptr] = ACTIONS(3422), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3422), - [anon_sym_decltype] = ACTIONS(3422), - [anon_sym_virtual] = ACTIONS(3422), - [anon_sym_alignas] = ACTIONS(3422), - [anon_sym_explicit] = ACTIONS(3422), - [anon_sym_typename] = ACTIONS(3422), - [anon_sym_template] = ACTIONS(3422), - [anon_sym_operator] = ACTIONS(3422), - [anon_sym_try] = ACTIONS(3422), - [anon_sym_delete] = ACTIONS(3422), - [anon_sym_throw] = ACTIONS(3422), - [anon_sym_namespace] = ACTIONS(3422), - [anon_sym_using] = ACTIONS(3422), - [anon_sym_static_assert] = ACTIONS(3422), - [anon_sym_concept] = ACTIONS(3422), - [anon_sym_co_return] = ACTIONS(3422), - [anon_sym_co_yield] = ACTIONS(3422), - [anon_sym_R_DQUOTE] = ACTIONS(3424), - [anon_sym_LR_DQUOTE] = ACTIONS(3424), - [anon_sym_uR_DQUOTE] = ACTIONS(3424), - [anon_sym_UR_DQUOTE] = ACTIONS(3424), - [anon_sym_u8R_DQUOTE] = ACTIONS(3424), - [anon_sym_co_await] = ACTIONS(3422), - [anon_sym_new] = ACTIONS(3422), - [anon_sym_requires] = ACTIONS(3422), - [sym_this] = ACTIONS(3422), + [1367] = { + [sym__expression] = STATE(3903), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1279] = { - [sym_identifier] = ACTIONS(3414), - [aux_sym_preproc_include_token1] = ACTIONS(3414), - [aux_sym_preproc_def_token1] = ACTIONS(3414), - [aux_sym_preproc_if_token1] = ACTIONS(3414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3414), - [sym_preproc_directive] = ACTIONS(3414), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(3416), - [anon_sym_TILDE] = ACTIONS(3416), - [anon_sym_DASH] = ACTIONS(3414), - [anon_sym_PLUS] = ACTIONS(3414), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3416), - [anon_sym___extension__] = ACTIONS(3414), - [anon_sym_typedef] = ACTIONS(3414), - [anon_sym_extern] = ACTIONS(3414), - [anon_sym___attribute__] = ACTIONS(3414), - [anon_sym_COLON_COLON] = ACTIONS(3416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3416), - [anon_sym___declspec] = ACTIONS(3414), - [anon_sym___based] = ACTIONS(3414), - [anon_sym___cdecl] = ACTIONS(3414), - [anon_sym___clrcall] = ACTIONS(3414), - [anon_sym___stdcall] = ACTIONS(3414), - [anon_sym___fastcall] = ACTIONS(3414), - [anon_sym___thiscall] = ACTIONS(3414), - [anon_sym___vectorcall] = ACTIONS(3414), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_RBRACE] = ACTIONS(3416), - [anon_sym_signed] = ACTIONS(3414), - [anon_sym_unsigned] = ACTIONS(3414), - [anon_sym_long] = ACTIONS(3414), - [anon_sym_short] = ACTIONS(3414), - [anon_sym_LBRACK] = ACTIONS(3414), - [anon_sym_static] = ACTIONS(3414), - [anon_sym_register] = ACTIONS(3414), - [anon_sym_inline] = ACTIONS(3414), - [anon_sym___inline] = ACTIONS(3414), - [anon_sym___inline__] = ACTIONS(3414), - [anon_sym___forceinline] = ACTIONS(3414), - [anon_sym_thread_local] = ACTIONS(3414), - [anon_sym___thread] = ACTIONS(3414), - [anon_sym_const] = ACTIONS(3414), - [anon_sym_constexpr] = ACTIONS(3414), - [anon_sym_volatile] = ACTIONS(3414), - [anon_sym_restrict] = ACTIONS(3414), - [anon_sym___restrict__] = ACTIONS(3414), - [anon_sym__Atomic] = ACTIONS(3414), - [anon_sym__Noreturn] = ACTIONS(3414), - [anon_sym_noreturn] = ACTIONS(3414), - [anon_sym_mutable] = ACTIONS(3414), - [anon_sym_constinit] = ACTIONS(3414), - [anon_sym_consteval] = ACTIONS(3414), - [sym_primitive_type] = ACTIONS(3414), - [anon_sym_enum] = ACTIONS(3414), - [anon_sym_class] = ACTIONS(3414), - [anon_sym_struct] = ACTIONS(3414), - [anon_sym_union] = ACTIONS(3414), - [anon_sym_if] = ACTIONS(3414), - [anon_sym_switch] = ACTIONS(3414), - [anon_sym_case] = ACTIONS(3414), - [anon_sym_default] = ACTIONS(3414), - [anon_sym_while] = ACTIONS(3414), - [anon_sym_do] = ACTIONS(3414), - [anon_sym_for] = ACTIONS(3414), - [anon_sym_return] = ACTIONS(3414), - [anon_sym_break] = ACTIONS(3414), - [anon_sym_continue] = ACTIONS(3414), - [anon_sym_goto] = ACTIONS(3414), - [anon_sym_not] = ACTIONS(3414), - [anon_sym_compl] = ACTIONS(3414), - [anon_sym_DASH_DASH] = ACTIONS(3416), - [anon_sym_PLUS_PLUS] = ACTIONS(3416), - [anon_sym_sizeof] = ACTIONS(3414), - [anon_sym___alignof__] = ACTIONS(3414), - [anon_sym___alignof] = ACTIONS(3414), - [anon_sym__alignof] = ACTIONS(3414), - [anon_sym_alignof] = ACTIONS(3414), - [anon_sym__Alignof] = ACTIONS(3414), - [anon_sym_offsetof] = ACTIONS(3414), - [anon_sym__Generic] = ACTIONS(3414), - [anon_sym_asm] = ACTIONS(3414), - [anon_sym___asm__] = ACTIONS(3414), - [sym_number_literal] = ACTIONS(3416), - [anon_sym_L_SQUOTE] = ACTIONS(3416), - [anon_sym_u_SQUOTE] = ACTIONS(3416), - [anon_sym_U_SQUOTE] = ACTIONS(3416), - [anon_sym_u8_SQUOTE] = ACTIONS(3416), - [anon_sym_SQUOTE] = ACTIONS(3416), - [anon_sym_L_DQUOTE] = ACTIONS(3416), - [anon_sym_u_DQUOTE] = ACTIONS(3416), - [anon_sym_U_DQUOTE] = ACTIONS(3416), - [anon_sym_u8_DQUOTE] = ACTIONS(3416), - [anon_sym_DQUOTE] = ACTIONS(3416), - [sym_true] = ACTIONS(3414), - [sym_false] = ACTIONS(3414), - [anon_sym_NULL] = ACTIONS(3414), - [anon_sym_nullptr] = ACTIONS(3414), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3414), - [anon_sym_decltype] = ACTIONS(3414), - [anon_sym_virtual] = ACTIONS(3414), - [anon_sym_alignas] = ACTIONS(3414), - [anon_sym_explicit] = ACTIONS(3414), - [anon_sym_typename] = ACTIONS(3414), - [anon_sym_template] = ACTIONS(3414), - [anon_sym_operator] = ACTIONS(3414), - [anon_sym_try] = ACTIONS(3414), - [anon_sym_delete] = ACTIONS(3414), - [anon_sym_throw] = ACTIONS(3414), - [anon_sym_namespace] = ACTIONS(3414), - [anon_sym_using] = ACTIONS(3414), - [anon_sym_static_assert] = ACTIONS(3414), - [anon_sym_concept] = ACTIONS(3414), - [anon_sym_co_return] = ACTIONS(3414), - [anon_sym_co_yield] = ACTIONS(3414), - [anon_sym_R_DQUOTE] = ACTIONS(3416), - [anon_sym_LR_DQUOTE] = ACTIONS(3416), - [anon_sym_uR_DQUOTE] = ACTIONS(3416), - [anon_sym_UR_DQUOTE] = ACTIONS(3416), - [anon_sym_u8R_DQUOTE] = ACTIONS(3416), - [anon_sym_co_await] = ACTIONS(3414), - [anon_sym_new] = ACTIONS(3414), - [anon_sym_requires] = ACTIONS(3414), - [sym_this] = ACTIONS(3414), + [1368] = { + [sym__expression] = STATE(4094), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [1280] = { - [sym_identifier] = ACTIONS(3410), - [aux_sym_preproc_include_token1] = ACTIONS(3410), - [aux_sym_preproc_def_token1] = ACTIONS(3410), - [aux_sym_preproc_if_token1] = ACTIONS(3410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3410), - [sym_preproc_directive] = ACTIONS(3410), - [anon_sym_LPAREN2] = ACTIONS(3412), - [anon_sym_BANG] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3412), - [anon_sym_DASH] = ACTIONS(3410), - [anon_sym_PLUS] = ACTIONS(3410), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3410), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym___extension__] = ACTIONS(3410), - [anon_sym_typedef] = ACTIONS(3410), - [anon_sym_extern] = ACTIONS(3410), - [anon_sym___attribute__] = ACTIONS(3410), - [anon_sym_COLON_COLON] = ACTIONS(3412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), - [anon_sym___declspec] = ACTIONS(3410), - [anon_sym___based] = ACTIONS(3410), - [anon_sym___cdecl] = ACTIONS(3410), - [anon_sym___clrcall] = ACTIONS(3410), - [anon_sym___stdcall] = ACTIONS(3410), - [anon_sym___fastcall] = ACTIONS(3410), - [anon_sym___thiscall] = ACTIONS(3410), - [anon_sym___vectorcall] = ACTIONS(3410), - [anon_sym_LBRACE] = ACTIONS(3412), - [anon_sym_RBRACE] = ACTIONS(3412), - [anon_sym_signed] = ACTIONS(3410), - [anon_sym_unsigned] = ACTIONS(3410), - [anon_sym_long] = ACTIONS(3410), - [anon_sym_short] = ACTIONS(3410), - [anon_sym_LBRACK] = ACTIONS(3410), - [anon_sym_static] = ACTIONS(3410), - [anon_sym_register] = ACTIONS(3410), - [anon_sym_inline] = ACTIONS(3410), - [anon_sym___inline] = ACTIONS(3410), - [anon_sym___inline__] = ACTIONS(3410), - [anon_sym___forceinline] = ACTIONS(3410), - [anon_sym_thread_local] = ACTIONS(3410), - [anon_sym___thread] = ACTIONS(3410), - [anon_sym_const] = ACTIONS(3410), - [anon_sym_constexpr] = ACTIONS(3410), - [anon_sym_volatile] = ACTIONS(3410), - [anon_sym_restrict] = ACTIONS(3410), - [anon_sym___restrict__] = ACTIONS(3410), - [anon_sym__Atomic] = ACTIONS(3410), - [anon_sym__Noreturn] = ACTIONS(3410), - [anon_sym_noreturn] = ACTIONS(3410), - [anon_sym_mutable] = ACTIONS(3410), - [anon_sym_constinit] = ACTIONS(3410), - [anon_sym_consteval] = ACTIONS(3410), - [sym_primitive_type] = ACTIONS(3410), - [anon_sym_enum] = ACTIONS(3410), - [anon_sym_class] = ACTIONS(3410), - [anon_sym_struct] = ACTIONS(3410), - [anon_sym_union] = ACTIONS(3410), - [anon_sym_if] = ACTIONS(3410), - [anon_sym_switch] = ACTIONS(3410), - [anon_sym_case] = ACTIONS(3410), - [anon_sym_default] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(3410), - [anon_sym_do] = ACTIONS(3410), - [anon_sym_for] = ACTIONS(3410), - [anon_sym_return] = ACTIONS(3410), - [anon_sym_break] = ACTIONS(3410), - [anon_sym_continue] = ACTIONS(3410), - [anon_sym_goto] = ACTIONS(3410), - [anon_sym_not] = ACTIONS(3410), - [anon_sym_compl] = ACTIONS(3410), - [anon_sym_DASH_DASH] = ACTIONS(3412), - [anon_sym_PLUS_PLUS] = ACTIONS(3412), - [anon_sym_sizeof] = ACTIONS(3410), - [anon_sym___alignof__] = ACTIONS(3410), - [anon_sym___alignof] = ACTIONS(3410), - [anon_sym__alignof] = ACTIONS(3410), - [anon_sym_alignof] = ACTIONS(3410), - [anon_sym__Alignof] = ACTIONS(3410), - [anon_sym_offsetof] = ACTIONS(3410), - [anon_sym__Generic] = ACTIONS(3410), - [anon_sym_asm] = ACTIONS(3410), - [anon_sym___asm__] = ACTIONS(3410), - [sym_number_literal] = ACTIONS(3412), - [anon_sym_L_SQUOTE] = ACTIONS(3412), - [anon_sym_u_SQUOTE] = ACTIONS(3412), - [anon_sym_U_SQUOTE] = ACTIONS(3412), - [anon_sym_u8_SQUOTE] = ACTIONS(3412), - [anon_sym_SQUOTE] = ACTIONS(3412), - [anon_sym_L_DQUOTE] = ACTIONS(3412), - [anon_sym_u_DQUOTE] = ACTIONS(3412), - [anon_sym_U_DQUOTE] = ACTIONS(3412), - [anon_sym_u8_DQUOTE] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [sym_true] = ACTIONS(3410), - [sym_false] = ACTIONS(3410), - [anon_sym_NULL] = ACTIONS(3410), - [anon_sym_nullptr] = ACTIONS(3410), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3410), - [anon_sym_decltype] = ACTIONS(3410), - [anon_sym_virtual] = ACTIONS(3410), - [anon_sym_alignas] = ACTIONS(3410), - [anon_sym_explicit] = ACTIONS(3410), - [anon_sym_typename] = ACTIONS(3410), - [anon_sym_template] = ACTIONS(3410), - [anon_sym_operator] = ACTIONS(3410), - [anon_sym_try] = ACTIONS(3410), - [anon_sym_delete] = ACTIONS(3410), - [anon_sym_throw] = ACTIONS(3410), - [anon_sym_namespace] = ACTIONS(3410), - [anon_sym_using] = ACTIONS(3410), - [anon_sym_static_assert] = ACTIONS(3410), - [anon_sym_concept] = ACTIONS(3410), - [anon_sym_co_return] = ACTIONS(3410), - [anon_sym_co_yield] = ACTIONS(3410), - [anon_sym_R_DQUOTE] = ACTIONS(3412), - [anon_sym_LR_DQUOTE] = ACTIONS(3412), - [anon_sym_uR_DQUOTE] = ACTIONS(3412), - [anon_sym_UR_DQUOTE] = ACTIONS(3412), - [anon_sym_u8R_DQUOTE] = ACTIONS(3412), - [anon_sym_co_await] = ACTIONS(3410), - [anon_sym_new] = ACTIONS(3410), - [anon_sym_requires] = ACTIONS(3410), - [sym_this] = ACTIONS(3410), + [1369] = { + [sym__expression] = STATE(4211), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1281] = { - [sym_identifier] = ACTIONS(3406), - [aux_sym_preproc_include_token1] = ACTIONS(3406), - [aux_sym_preproc_def_token1] = ACTIONS(3406), - [aux_sym_preproc_if_token1] = ACTIONS(3406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3406), - [sym_preproc_directive] = ACTIONS(3406), - [anon_sym_LPAREN2] = ACTIONS(3408), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_TILDE] = ACTIONS(3408), - [anon_sym_DASH] = ACTIONS(3406), - [anon_sym_PLUS] = ACTIONS(3406), - [anon_sym_STAR] = ACTIONS(3408), - [anon_sym_AMP_AMP] = ACTIONS(3408), - [anon_sym_AMP] = ACTIONS(3406), - [anon_sym_SEMI] = ACTIONS(3408), - [anon_sym___extension__] = ACTIONS(3406), - [anon_sym_typedef] = ACTIONS(3406), - [anon_sym_extern] = ACTIONS(3406), - [anon_sym___attribute__] = ACTIONS(3406), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3408), - [anon_sym___declspec] = ACTIONS(3406), - [anon_sym___based] = ACTIONS(3406), - [anon_sym___cdecl] = ACTIONS(3406), - [anon_sym___clrcall] = ACTIONS(3406), - [anon_sym___stdcall] = ACTIONS(3406), - [anon_sym___fastcall] = ACTIONS(3406), - [anon_sym___thiscall] = ACTIONS(3406), - [anon_sym___vectorcall] = ACTIONS(3406), - [anon_sym_LBRACE] = ACTIONS(3408), - [anon_sym_RBRACE] = ACTIONS(3408), - [anon_sym_signed] = ACTIONS(3406), - [anon_sym_unsigned] = ACTIONS(3406), - [anon_sym_long] = ACTIONS(3406), - [anon_sym_short] = ACTIONS(3406), - [anon_sym_LBRACK] = ACTIONS(3406), - [anon_sym_static] = ACTIONS(3406), - [anon_sym_register] = ACTIONS(3406), - [anon_sym_inline] = ACTIONS(3406), - [anon_sym___inline] = ACTIONS(3406), - [anon_sym___inline__] = ACTIONS(3406), - [anon_sym___forceinline] = ACTIONS(3406), - [anon_sym_thread_local] = ACTIONS(3406), - [anon_sym___thread] = ACTIONS(3406), - [anon_sym_const] = ACTIONS(3406), - [anon_sym_constexpr] = ACTIONS(3406), - [anon_sym_volatile] = ACTIONS(3406), - [anon_sym_restrict] = ACTIONS(3406), - [anon_sym___restrict__] = ACTIONS(3406), - [anon_sym__Atomic] = ACTIONS(3406), - [anon_sym__Noreturn] = ACTIONS(3406), - [anon_sym_noreturn] = ACTIONS(3406), - [anon_sym_mutable] = ACTIONS(3406), - [anon_sym_constinit] = ACTIONS(3406), - [anon_sym_consteval] = ACTIONS(3406), - [sym_primitive_type] = ACTIONS(3406), - [anon_sym_enum] = ACTIONS(3406), - [anon_sym_class] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3406), - [anon_sym_union] = ACTIONS(3406), - [anon_sym_if] = ACTIONS(3406), - [anon_sym_switch] = ACTIONS(3406), - [anon_sym_case] = ACTIONS(3406), - [anon_sym_default] = ACTIONS(3406), - [anon_sym_while] = ACTIONS(3406), - [anon_sym_do] = ACTIONS(3406), - [anon_sym_for] = ACTIONS(3406), - [anon_sym_return] = ACTIONS(3406), - [anon_sym_break] = ACTIONS(3406), - [anon_sym_continue] = ACTIONS(3406), - [anon_sym_goto] = ACTIONS(3406), - [anon_sym_not] = ACTIONS(3406), - [anon_sym_compl] = ACTIONS(3406), - [anon_sym_DASH_DASH] = ACTIONS(3408), - [anon_sym_PLUS_PLUS] = ACTIONS(3408), - [anon_sym_sizeof] = ACTIONS(3406), - [anon_sym___alignof__] = ACTIONS(3406), - [anon_sym___alignof] = ACTIONS(3406), - [anon_sym__alignof] = ACTIONS(3406), - [anon_sym_alignof] = ACTIONS(3406), - [anon_sym__Alignof] = ACTIONS(3406), - [anon_sym_offsetof] = ACTIONS(3406), - [anon_sym__Generic] = ACTIONS(3406), - [anon_sym_asm] = ACTIONS(3406), - [anon_sym___asm__] = ACTIONS(3406), - [sym_number_literal] = ACTIONS(3408), - [anon_sym_L_SQUOTE] = ACTIONS(3408), - [anon_sym_u_SQUOTE] = ACTIONS(3408), - [anon_sym_U_SQUOTE] = ACTIONS(3408), - [anon_sym_u8_SQUOTE] = ACTIONS(3408), - [anon_sym_SQUOTE] = ACTIONS(3408), - [anon_sym_L_DQUOTE] = ACTIONS(3408), - [anon_sym_u_DQUOTE] = ACTIONS(3408), - [anon_sym_U_DQUOTE] = ACTIONS(3408), - [anon_sym_u8_DQUOTE] = ACTIONS(3408), - [anon_sym_DQUOTE] = ACTIONS(3408), - [sym_true] = ACTIONS(3406), - [sym_false] = ACTIONS(3406), - [anon_sym_NULL] = ACTIONS(3406), - [anon_sym_nullptr] = ACTIONS(3406), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3406), - [anon_sym_decltype] = ACTIONS(3406), - [anon_sym_virtual] = ACTIONS(3406), - [anon_sym_alignas] = ACTIONS(3406), - [anon_sym_explicit] = ACTIONS(3406), - [anon_sym_typename] = ACTIONS(3406), - [anon_sym_template] = ACTIONS(3406), - [anon_sym_operator] = ACTIONS(3406), - [anon_sym_try] = ACTIONS(3406), - [anon_sym_delete] = ACTIONS(3406), - [anon_sym_throw] = ACTIONS(3406), - [anon_sym_namespace] = ACTIONS(3406), - [anon_sym_using] = ACTIONS(3406), - [anon_sym_static_assert] = ACTIONS(3406), - [anon_sym_concept] = ACTIONS(3406), - [anon_sym_co_return] = ACTIONS(3406), - [anon_sym_co_yield] = ACTIONS(3406), - [anon_sym_R_DQUOTE] = ACTIONS(3408), - [anon_sym_LR_DQUOTE] = ACTIONS(3408), - [anon_sym_uR_DQUOTE] = ACTIONS(3408), - [anon_sym_UR_DQUOTE] = ACTIONS(3408), - [anon_sym_u8R_DQUOTE] = ACTIONS(3408), - [anon_sym_co_await] = ACTIONS(3406), - [anon_sym_new] = ACTIONS(3406), - [anon_sym_requires] = ACTIONS(3406), - [sym_this] = ACTIONS(3406), + [1370] = { + [sym__expression] = STATE(2678), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1282] = { - [sym_identifier] = ACTIONS(3400), - [aux_sym_preproc_include_token1] = ACTIONS(3400), - [aux_sym_preproc_def_token1] = ACTIONS(3400), - [aux_sym_preproc_if_token1] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3400), - [sym_preproc_directive] = ACTIONS(3400), - [anon_sym_LPAREN2] = ACTIONS(3402), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_TILDE] = ACTIONS(3402), - [anon_sym_DASH] = ACTIONS(3400), - [anon_sym_PLUS] = ACTIONS(3400), - [anon_sym_STAR] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3400), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym___extension__] = ACTIONS(3400), - [anon_sym_typedef] = ACTIONS(3400), - [anon_sym_extern] = ACTIONS(3400), - [anon_sym___attribute__] = ACTIONS(3400), - [anon_sym_COLON_COLON] = ACTIONS(3402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3402), - [anon_sym___declspec] = ACTIONS(3400), - [anon_sym___based] = ACTIONS(3400), - [anon_sym___cdecl] = ACTIONS(3400), - [anon_sym___clrcall] = ACTIONS(3400), - [anon_sym___stdcall] = ACTIONS(3400), - [anon_sym___fastcall] = ACTIONS(3400), - [anon_sym___thiscall] = ACTIONS(3400), - [anon_sym___vectorcall] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3402), - [anon_sym_RBRACE] = ACTIONS(3402), - [anon_sym_signed] = ACTIONS(3400), - [anon_sym_unsigned] = ACTIONS(3400), - [anon_sym_long] = ACTIONS(3400), - [anon_sym_short] = ACTIONS(3400), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_static] = ACTIONS(3400), - [anon_sym_register] = ACTIONS(3400), - [anon_sym_inline] = ACTIONS(3400), - [anon_sym___inline] = ACTIONS(3400), - [anon_sym___inline__] = ACTIONS(3400), - [anon_sym___forceinline] = ACTIONS(3400), - [anon_sym_thread_local] = ACTIONS(3400), - [anon_sym___thread] = ACTIONS(3400), - [anon_sym_const] = ACTIONS(3400), - [anon_sym_constexpr] = ACTIONS(3400), - [anon_sym_volatile] = ACTIONS(3400), - [anon_sym_restrict] = ACTIONS(3400), - [anon_sym___restrict__] = ACTIONS(3400), - [anon_sym__Atomic] = ACTIONS(3400), - [anon_sym__Noreturn] = ACTIONS(3400), - [anon_sym_noreturn] = ACTIONS(3400), - [anon_sym_mutable] = ACTIONS(3400), - [anon_sym_constinit] = ACTIONS(3400), - [anon_sym_consteval] = ACTIONS(3400), - [sym_primitive_type] = ACTIONS(3400), - [anon_sym_enum] = ACTIONS(3400), - [anon_sym_class] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3400), - [anon_sym_union] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_switch] = ACTIONS(3400), - [anon_sym_case] = ACTIONS(3400), - [anon_sym_default] = ACTIONS(3400), - [anon_sym_while] = ACTIONS(3400), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3400), - [anon_sym_break] = ACTIONS(3400), - [anon_sym_continue] = ACTIONS(3400), - [anon_sym_goto] = ACTIONS(3400), - [anon_sym_not] = ACTIONS(3400), - [anon_sym_compl] = ACTIONS(3400), - [anon_sym_DASH_DASH] = ACTIONS(3402), - [anon_sym_PLUS_PLUS] = ACTIONS(3402), - [anon_sym_sizeof] = ACTIONS(3400), - [anon_sym___alignof__] = ACTIONS(3400), - [anon_sym___alignof] = ACTIONS(3400), - [anon_sym__alignof] = ACTIONS(3400), - [anon_sym_alignof] = ACTIONS(3400), - [anon_sym__Alignof] = ACTIONS(3400), - [anon_sym_offsetof] = ACTIONS(3400), - [anon_sym__Generic] = ACTIONS(3400), - [anon_sym_asm] = ACTIONS(3400), - [anon_sym___asm__] = ACTIONS(3400), - [sym_number_literal] = ACTIONS(3402), - [anon_sym_L_SQUOTE] = ACTIONS(3402), - [anon_sym_u_SQUOTE] = ACTIONS(3402), - [anon_sym_U_SQUOTE] = ACTIONS(3402), - [anon_sym_u8_SQUOTE] = ACTIONS(3402), - [anon_sym_SQUOTE] = ACTIONS(3402), - [anon_sym_L_DQUOTE] = ACTIONS(3402), - [anon_sym_u_DQUOTE] = ACTIONS(3402), - [anon_sym_U_DQUOTE] = ACTIONS(3402), - [anon_sym_u8_DQUOTE] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [sym_true] = ACTIONS(3400), - [sym_false] = ACTIONS(3400), - [anon_sym_NULL] = ACTIONS(3400), - [anon_sym_nullptr] = ACTIONS(3400), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3400), - [anon_sym_decltype] = ACTIONS(3400), - [anon_sym_virtual] = ACTIONS(3400), - [anon_sym_alignas] = ACTIONS(3400), - [anon_sym_explicit] = ACTIONS(3400), - [anon_sym_typename] = ACTIONS(3400), - [anon_sym_template] = ACTIONS(3400), - [anon_sym_operator] = ACTIONS(3400), - [anon_sym_try] = ACTIONS(3400), - [anon_sym_delete] = ACTIONS(3400), - [anon_sym_throw] = ACTIONS(3400), - [anon_sym_namespace] = ACTIONS(3400), - [anon_sym_using] = ACTIONS(3400), - [anon_sym_static_assert] = ACTIONS(3400), - [anon_sym_concept] = ACTIONS(3400), - [anon_sym_co_return] = ACTIONS(3400), - [anon_sym_co_yield] = ACTIONS(3400), - [anon_sym_R_DQUOTE] = ACTIONS(3402), - [anon_sym_LR_DQUOTE] = ACTIONS(3402), - [anon_sym_uR_DQUOTE] = ACTIONS(3402), - [anon_sym_UR_DQUOTE] = ACTIONS(3402), - [anon_sym_u8R_DQUOTE] = ACTIONS(3402), - [anon_sym_co_await] = ACTIONS(3400), - [anon_sym_new] = ACTIONS(3400), - [anon_sym_requires] = ACTIONS(3400), - [sym_this] = ACTIONS(3400), + [1371] = { + [sym__expression] = STATE(4077), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [1283] = { - [sym_identifier] = ACTIONS(3396), - [aux_sym_preproc_include_token1] = ACTIONS(3396), - [aux_sym_preproc_def_token1] = ACTIONS(3396), - [aux_sym_preproc_if_token1] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3396), - [sym_preproc_directive] = ACTIONS(3396), - [anon_sym_LPAREN2] = ACTIONS(3398), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3396), - [anon_sym_PLUS] = ACTIONS(3396), - [anon_sym_STAR] = ACTIONS(3398), - [anon_sym_AMP_AMP] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_SEMI] = ACTIONS(3398), - [anon_sym___extension__] = ACTIONS(3396), - [anon_sym_typedef] = ACTIONS(3396), - [anon_sym_extern] = ACTIONS(3396), - [anon_sym___attribute__] = ACTIONS(3396), - [anon_sym_COLON_COLON] = ACTIONS(3398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3398), - [anon_sym___declspec] = ACTIONS(3396), - [anon_sym___based] = ACTIONS(3396), - [anon_sym___cdecl] = ACTIONS(3396), - [anon_sym___clrcall] = ACTIONS(3396), - [anon_sym___stdcall] = ACTIONS(3396), - [anon_sym___fastcall] = ACTIONS(3396), - [anon_sym___thiscall] = ACTIONS(3396), - [anon_sym___vectorcall] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(3398), - [anon_sym_RBRACE] = ACTIONS(3398), - [anon_sym_signed] = ACTIONS(3396), - [anon_sym_unsigned] = ACTIONS(3396), - [anon_sym_long] = ACTIONS(3396), - [anon_sym_short] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_static] = ACTIONS(3396), - [anon_sym_register] = ACTIONS(3396), - [anon_sym_inline] = ACTIONS(3396), - [anon_sym___inline] = ACTIONS(3396), - [anon_sym___inline__] = ACTIONS(3396), - [anon_sym___forceinline] = ACTIONS(3396), - [anon_sym_thread_local] = ACTIONS(3396), - [anon_sym___thread] = ACTIONS(3396), - [anon_sym_const] = ACTIONS(3396), - [anon_sym_constexpr] = ACTIONS(3396), - [anon_sym_volatile] = ACTIONS(3396), - [anon_sym_restrict] = ACTIONS(3396), - [anon_sym___restrict__] = ACTIONS(3396), - [anon_sym__Atomic] = ACTIONS(3396), - [anon_sym__Noreturn] = ACTIONS(3396), - [anon_sym_noreturn] = ACTIONS(3396), - [anon_sym_mutable] = ACTIONS(3396), - [anon_sym_constinit] = ACTIONS(3396), - [anon_sym_consteval] = ACTIONS(3396), - [sym_primitive_type] = ACTIONS(3396), - [anon_sym_enum] = ACTIONS(3396), - [anon_sym_class] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(3396), - [anon_sym_union] = ACTIONS(3396), - [anon_sym_if] = ACTIONS(3396), - [anon_sym_switch] = ACTIONS(3396), - [anon_sym_case] = ACTIONS(3396), - [anon_sym_default] = ACTIONS(3396), - [anon_sym_while] = ACTIONS(3396), - [anon_sym_do] = ACTIONS(3396), - [anon_sym_for] = ACTIONS(3396), - [anon_sym_return] = ACTIONS(3396), - [anon_sym_break] = ACTIONS(3396), - [anon_sym_continue] = ACTIONS(3396), - [anon_sym_goto] = ACTIONS(3396), - [anon_sym_not] = ACTIONS(3396), - [anon_sym_compl] = ACTIONS(3396), - [anon_sym_DASH_DASH] = ACTIONS(3398), - [anon_sym_PLUS_PLUS] = ACTIONS(3398), - [anon_sym_sizeof] = ACTIONS(3396), - [anon_sym___alignof__] = ACTIONS(3396), - [anon_sym___alignof] = ACTIONS(3396), - [anon_sym__alignof] = ACTIONS(3396), - [anon_sym_alignof] = ACTIONS(3396), - [anon_sym__Alignof] = ACTIONS(3396), - [anon_sym_offsetof] = ACTIONS(3396), - [anon_sym__Generic] = ACTIONS(3396), - [anon_sym_asm] = ACTIONS(3396), - [anon_sym___asm__] = ACTIONS(3396), - [sym_number_literal] = ACTIONS(3398), - [anon_sym_L_SQUOTE] = ACTIONS(3398), - [anon_sym_u_SQUOTE] = ACTIONS(3398), - [anon_sym_U_SQUOTE] = ACTIONS(3398), - [anon_sym_u8_SQUOTE] = ACTIONS(3398), - [anon_sym_SQUOTE] = ACTIONS(3398), - [anon_sym_L_DQUOTE] = ACTIONS(3398), - [anon_sym_u_DQUOTE] = ACTIONS(3398), - [anon_sym_U_DQUOTE] = ACTIONS(3398), - [anon_sym_u8_DQUOTE] = ACTIONS(3398), - [anon_sym_DQUOTE] = ACTIONS(3398), - [sym_true] = ACTIONS(3396), - [sym_false] = ACTIONS(3396), - [anon_sym_NULL] = ACTIONS(3396), - [anon_sym_nullptr] = ACTIONS(3396), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3396), - [anon_sym_decltype] = ACTIONS(3396), - [anon_sym_virtual] = ACTIONS(3396), - [anon_sym_alignas] = ACTIONS(3396), - [anon_sym_explicit] = ACTIONS(3396), - [anon_sym_typename] = ACTIONS(3396), - [anon_sym_template] = ACTIONS(3396), - [anon_sym_operator] = ACTIONS(3396), - [anon_sym_try] = ACTIONS(3396), - [anon_sym_delete] = ACTIONS(3396), - [anon_sym_throw] = ACTIONS(3396), - [anon_sym_namespace] = ACTIONS(3396), - [anon_sym_using] = ACTIONS(3396), - [anon_sym_static_assert] = ACTIONS(3396), - [anon_sym_concept] = ACTIONS(3396), - [anon_sym_co_return] = ACTIONS(3396), - [anon_sym_co_yield] = ACTIONS(3396), - [anon_sym_R_DQUOTE] = ACTIONS(3398), - [anon_sym_LR_DQUOTE] = ACTIONS(3398), - [anon_sym_uR_DQUOTE] = ACTIONS(3398), - [anon_sym_UR_DQUOTE] = ACTIONS(3398), - [anon_sym_u8R_DQUOTE] = ACTIONS(3398), - [anon_sym_co_await] = ACTIONS(3396), - [anon_sym_new] = ACTIONS(3396), - [anon_sym_requires] = ACTIONS(3396), - [sym_this] = ACTIONS(3396), + [1372] = { + [sym__expression] = STATE(3392), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1284] = { - [sym_identifier] = ACTIONS(3454), - [aux_sym_preproc_include_token1] = ACTIONS(3454), - [aux_sym_preproc_def_token1] = ACTIONS(3454), - [aux_sym_preproc_if_token1] = ACTIONS(3454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3454), - [sym_preproc_directive] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3456), - [anon_sym_BANG] = ACTIONS(3456), - [anon_sym_TILDE] = ACTIONS(3456), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_STAR] = ACTIONS(3456), - [anon_sym_AMP_AMP] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3456), - [anon_sym___extension__] = ACTIONS(3454), - [anon_sym_typedef] = ACTIONS(3454), - [anon_sym_extern] = ACTIONS(3454), - [anon_sym___attribute__] = ACTIONS(3454), - [anon_sym_COLON_COLON] = ACTIONS(3456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3456), - [anon_sym___declspec] = ACTIONS(3454), - [anon_sym___based] = ACTIONS(3454), - [anon_sym___cdecl] = ACTIONS(3454), - [anon_sym___clrcall] = ACTIONS(3454), - [anon_sym___stdcall] = ACTIONS(3454), - [anon_sym___fastcall] = ACTIONS(3454), - [anon_sym___thiscall] = ACTIONS(3454), - [anon_sym___vectorcall] = ACTIONS(3454), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_RBRACE] = ACTIONS(3456), - [anon_sym_signed] = ACTIONS(3454), - [anon_sym_unsigned] = ACTIONS(3454), - [anon_sym_long] = ACTIONS(3454), - [anon_sym_short] = ACTIONS(3454), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3454), - [anon_sym_register] = ACTIONS(3454), - [anon_sym_inline] = ACTIONS(3454), - [anon_sym___inline] = ACTIONS(3454), - [anon_sym___inline__] = ACTIONS(3454), - [anon_sym___forceinline] = ACTIONS(3454), - [anon_sym_thread_local] = ACTIONS(3454), - [anon_sym___thread] = ACTIONS(3454), - [anon_sym_const] = ACTIONS(3454), - [anon_sym_constexpr] = ACTIONS(3454), - [anon_sym_volatile] = ACTIONS(3454), - [anon_sym_restrict] = ACTIONS(3454), - [anon_sym___restrict__] = ACTIONS(3454), - [anon_sym__Atomic] = ACTIONS(3454), - [anon_sym__Noreturn] = ACTIONS(3454), - [anon_sym_noreturn] = ACTIONS(3454), - [anon_sym_mutable] = ACTIONS(3454), - [anon_sym_constinit] = ACTIONS(3454), - [anon_sym_consteval] = ACTIONS(3454), - [sym_primitive_type] = ACTIONS(3454), - [anon_sym_enum] = ACTIONS(3454), - [anon_sym_class] = ACTIONS(3454), - [anon_sym_struct] = ACTIONS(3454), - [anon_sym_union] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_switch] = ACTIONS(3454), - [anon_sym_case] = ACTIONS(3454), - [anon_sym_default] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_break] = ACTIONS(3454), - [anon_sym_continue] = ACTIONS(3454), - [anon_sym_goto] = ACTIONS(3454), - [anon_sym_not] = ACTIONS(3454), - [anon_sym_compl] = ACTIONS(3454), - [anon_sym_DASH_DASH] = ACTIONS(3456), - [anon_sym_PLUS_PLUS] = ACTIONS(3456), - [anon_sym_sizeof] = ACTIONS(3454), - [anon_sym___alignof__] = ACTIONS(3454), - [anon_sym___alignof] = ACTIONS(3454), - [anon_sym__alignof] = ACTIONS(3454), - [anon_sym_alignof] = ACTIONS(3454), - [anon_sym__Alignof] = ACTIONS(3454), - [anon_sym_offsetof] = ACTIONS(3454), - [anon_sym__Generic] = ACTIONS(3454), - [anon_sym_asm] = ACTIONS(3454), - [anon_sym___asm__] = ACTIONS(3454), - [sym_number_literal] = ACTIONS(3456), - [anon_sym_L_SQUOTE] = ACTIONS(3456), - [anon_sym_u_SQUOTE] = ACTIONS(3456), - [anon_sym_U_SQUOTE] = ACTIONS(3456), - [anon_sym_u8_SQUOTE] = ACTIONS(3456), - [anon_sym_SQUOTE] = ACTIONS(3456), - [anon_sym_L_DQUOTE] = ACTIONS(3456), - [anon_sym_u_DQUOTE] = ACTIONS(3456), - [anon_sym_U_DQUOTE] = ACTIONS(3456), - [anon_sym_u8_DQUOTE] = ACTIONS(3456), - [anon_sym_DQUOTE] = ACTIONS(3456), - [sym_true] = ACTIONS(3454), - [sym_false] = ACTIONS(3454), - [anon_sym_NULL] = ACTIONS(3454), - [anon_sym_nullptr] = ACTIONS(3454), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3454), - [anon_sym_decltype] = ACTIONS(3454), - [anon_sym_virtual] = ACTIONS(3454), - [anon_sym_alignas] = ACTIONS(3454), - [anon_sym_explicit] = ACTIONS(3454), - [anon_sym_typename] = ACTIONS(3454), - [anon_sym_template] = ACTIONS(3454), - [anon_sym_operator] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_delete] = ACTIONS(3454), - [anon_sym_throw] = ACTIONS(3454), - [anon_sym_namespace] = ACTIONS(3454), - [anon_sym_using] = ACTIONS(3454), - [anon_sym_static_assert] = ACTIONS(3454), - [anon_sym_concept] = ACTIONS(3454), - [anon_sym_co_return] = ACTIONS(3454), - [anon_sym_co_yield] = ACTIONS(3454), - [anon_sym_R_DQUOTE] = ACTIONS(3456), - [anon_sym_LR_DQUOTE] = ACTIONS(3456), - [anon_sym_uR_DQUOTE] = ACTIONS(3456), - [anon_sym_UR_DQUOTE] = ACTIONS(3456), - [anon_sym_u8R_DQUOTE] = ACTIONS(3456), - [anon_sym_co_await] = ACTIONS(3454), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_requires] = ACTIONS(3454), - [sym_this] = ACTIONS(3454), + [1373] = { + [sym__expression] = STATE(4121), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(4481), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [1285] = { - [sym_identifier] = ACTIONS(3191), - [aux_sym_preproc_include_token1] = ACTIONS(3191), - [aux_sym_preproc_def_token1] = ACTIONS(3191), - [aux_sym_preproc_if_token1] = ACTIONS(3191), - [aux_sym_preproc_if_token2] = ACTIONS(3191), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3191), - [sym_preproc_directive] = ACTIONS(3191), - [anon_sym_LPAREN2] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3191), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym___extension__] = ACTIONS(3191), - [anon_sym_typedef] = ACTIONS(3191), - [anon_sym_extern] = ACTIONS(3191), - [anon_sym___attribute__] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(3193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3193), - [anon_sym___declspec] = ACTIONS(3191), - [anon_sym___based] = ACTIONS(3191), - [anon_sym___cdecl] = ACTIONS(3191), - [anon_sym___clrcall] = ACTIONS(3191), - [anon_sym___stdcall] = ACTIONS(3191), - [anon_sym___fastcall] = ACTIONS(3191), - [anon_sym___thiscall] = ACTIONS(3191), - [anon_sym___vectorcall] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_signed] = ACTIONS(3191), - [anon_sym_unsigned] = ACTIONS(3191), - [anon_sym_long] = ACTIONS(3191), - [anon_sym_short] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_static] = ACTIONS(3191), - [anon_sym_register] = ACTIONS(3191), - [anon_sym_inline] = ACTIONS(3191), - [anon_sym___inline] = ACTIONS(3191), - [anon_sym___inline__] = ACTIONS(3191), - [anon_sym___forceinline] = ACTIONS(3191), - [anon_sym_thread_local] = ACTIONS(3191), - [anon_sym___thread] = ACTIONS(3191), - [anon_sym_const] = ACTIONS(3191), - [anon_sym_constexpr] = ACTIONS(3191), - [anon_sym_volatile] = ACTIONS(3191), - [anon_sym_restrict] = ACTIONS(3191), - [anon_sym___restrict__] = ACTIONS(3191), - [anon_sym__Atomic] = ACTIONS(3191), - [anon_sym__Noreturn] = ACTIONS(3191), - [anon_sym_noreturn] = ACTIONS(3191), - [anon_sym_mutable] = ACTIONS(3191), - [anon_sym_constinit] = ACTIONS(3191), - [anon_sym_consteval] = ACTIONS(3191), - [sym_primitive_type] = ACTIONS(3191), - [anon_sym_enum] = ACTIONS(3191), - [anon_sym_class] = ACTIONS(3191), - [anon_sym_struct] = ACTIONS(3191), - [anon_sym_union] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_switch] = ACTIONS(3191), - [anon_sym_case] = ACTIONS(3191), - [anon_sym_default] = ACTIONS(3191), - [anon_sym_while] = ACTIONS(3191), - [anon_sym_do] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3191), - [anon_sym_return] = ACTIONS(3191), - [anon_sym_break] = ACTIONS(3191), - [anon_sym_continue] = ACTIONS(3191), - [anon_sym_goto] = ACTIONS(3191), - [anon_sym_not] = ACTIONS(3191), - [anon_sym_compl] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_sizeof] = ACTIONS(3191), - [anon_sym___alignof__] = ACTIONS(3191), - [anon_sym___alignof] = ACTIONS(3191), - [anon_sym__alignof] = ACTIONS(3191), - [anon_sym_alignof] = ACTIONS(3191), - [anon_sym__Alignof] = ACTIONS(3191), - [anon_sym_offsetof] = ACTIONS(3191), - [anon_sym__Generic] = ACTIONS(3191), - [anon_sym_asm] = ACTIONS(3191), - [anon_sym___asm__] = ACTIONS(3191), - [sym_number_literal] = ACTIONS(3193), - [anon_sym_L_SQUOTE] = ACTIONS(3193), - [anon_sym_u_SQUOTE] = ACTIONS(3193), - [anon_sym_U_SQUOTE] = ACTIONS(3193), - [anon_sym_u8_SQUOTE] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3193), - [anon_sym_L_DQUOTE] = ACTIONS(3193), - [anon_sym_u_DQUOTE] = ACTIONS(3193), - [anon_sym_U_DQUOTE] = ACTIONS(3193), - [anon_sym_u8_DQUOTE] = ACTIONS(3193), - [anon_sym_DQUOTE] = ACTIONS(3193), - [sym_true] = ACTIONS(3191), - [sym_false] = ACTIONS(3191), - [anon_sym_NULL] = ACTIONS(3191), - [anon_sym_nullptr] = ACTIONS(3191), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3191), - [anon_sym_decltype] = ACTIONS(3191), - [anon_sym_virtual] = ACTIONS(3191), - [anon_sym_alignas] = ACTIONS(3191), - [anon_sym_explicit] = ACTIONS(3191), - [anon_sym_typename] = ACTIONS(3191), - [anon_sym_template] = ACTIONS(3191), - [anon_sym_operator] = ACTIONS(3191), - [anon_sym_try] = ACTIONS(3191), - [anon_sym_delete] = ACTIONS(3191), - [anon_sym_throw] = ACTIONS(3191), - [anon_sym_namespace] = ACTIONS(3191), - [anon_sym_using] = ACTIONS(3191), - [anon_sym_static_assert] = ACTIONS(3191), - [anon_sym_concept] = ACTIONS(3191), - [anon_sym_co_return] = ACTIONS(3191), - [anon_sym_co_yield] = ACTIONS(3191), - [anon_sym_R_DQUOTE] = ACTIONS(3193), - [anon_sym_LR_DQUOTE] = ACTIONS(3193), - [anon_sym_uR_DQUOTE] = ACTIONS(3193), - [anon_sym_UR_DQUOTE] = ACTIONS(3193), - [anon_sym_u8R_DQUOTE] = ACTIONS(3193), - [anon_sym_co_await] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3191), - [anon_sym_requires] = ACTIONS(3191), - [sym_this] = ACTIONS(3191), + [1374] = { + [sym__expression] = STATE(4057), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1286] = { - [sym_identifier] = ACTIONS(3392), - [aux_sym_preproc_include_token1] = ACTIONS(3392), - [aux_sym_preproc_def_token1] = ACTIONS(3392), - [aux_sym_preproc_if_token1] = ACTIONS(3392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3392), - [sym_preproc_directive] = ACTIONS(3392), - [anon_sym_LPAREN2] = ACTIONS(3394), - [anon_sym_BANG] = ACTIONS(3394), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3392), - [anon_sym_PLUS] = ACTIONS(3392), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3392), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym___extension__] = ACTIONS(3392), - [anon_sym_typedef] = ACTIONS(3392), - [anon_sym_extern] = ACTIONS(3392), - [anon_sym___attribute__] = ACTIONS(3392), - [anon_sym_COLON_COLON] = ACTIONS(3394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), - [anon_sym___declspec] = ACTIONS(3392), - [anon_sym___based] = ACTIONS(3392), - [anon_sym___cdecl] = ACTIONS(3392), - [anon_sym___clrcall] = ACTIONS(3392), - [anon_sym___stdcall] = ACTIONS(3392), - [anon_sym___fastcall] = ACTIONS(3392), - [anon_sym___thiscall] = ACTIONS(3392), - [anon_sym___vectorcall] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(3394), - [anon_sym_RBRACE] = ACTIONS(3394), - [anon_sym_signed] = ACTIONS(3392), - [anon_sym_unsigned] = ACTIONS(3392), - [anon_sym_long] = ACTIONS(3392), - [anon_sym_short] = ACTIONS(3392), - [anon_sym_LBRACK] = ACTIONS(3392), - [anon_sym_static] = ACTIONS(3392), - [anon_sym_register] = ACTIONS(3392), - [anon_sym_inline] = ACTIONS(3392), - [anon_sym___inline] = ACTIONS(3392), - [anon_sym___inline__] = ACTIONS(3392), - [anon_sym___forceinline] = ACTIONS(3392), - [anon_sym_thread_local] = ACTIONS(3392), - [anon_sym___thread] = ACTIONS(3392), - [anon_sym_const] = ACTIONS(3392), - [anon_sym_constexpr] = ACTIONS(3392), - [anon_sym_volatile] = ACTIONS(3392), - [anon_sym_restrict] = ACTIONS(3392), - [anon_sym___restrict__] = ACTIONS(3392), - [anon_sym__Atomic] = ACTIONS(3392), - [anon_sym__Noreturn] = ACTIONS(3392), - [anon_sym_noreturn] = ACTIONS(3392), - [anon_sym_mutable] = ACTIONS(3392), - [anon_sym_constinit] = ACTIONS(3392), - [anon_sym_consteval] = ACTIONS(3392), - [sym_primitive_type] = ACTIONS(3392), - [anon_sym_enum] = ACTIONS(3392), - [anon_sym_class] = ACTIONS(3392), - [anon_sym_struct] = ACTIONS(3392), - [anon_sym_union] = ACTIONS(3392), - [anon_sym_if] = ACTIONS(3392), - [anon_sym_switch] = ACTIONS(3392), - [anon_sym_case] = ACTIONS(3392), - [anon_sym_default] = ACTIONS(3392), - [anon_sym_while] = ACTIONS(3392), - [anon_sym_do] = ACTIONS(3392), - [anon_sym_for] = ACTIONS(3392), - [anon_sym_return] = ACTIONS(3392), - [anon_sym_break] = ACTIONS(3392), - [anon_sym_continue] = ACTIONS(3392), - [anon_sym_goto] = ACTIONS(3392), - [anon_sym_not] = ACTIONS(3392), - [anon_sym_compl] = ACTIONS(3392), - [anon_sym_DASH_DASH] = ACTIONS(3394), - [anon_sym_PLUS_PLUS] = ACTIONS(3394), - [anon_sym_sizeof] = ACTIONS(3392), - [anon_sym___alignof__] = ACTIONS(3392), - [anon_sym___alignof] = ACTIONS(3392), - [anon_sym__alignof] = ACTIONS(3392), - [anon_sym_alignof] = ACTIONS(3392), - [anon_sym__Alignof] = ACTIONS(3392), - [anon_sym_offsetof] = ACTIONS(3392), - [anon_sym__Generic] = ACTIONS(3392), - [anon_sym_asm] = ACTIONS(3392), - [anon_sym___asm__] = ACTIONS(3392), - [sym_number_literal] = ACTIONS(3394), - [anon_sym_L_SQUOTE] = ACTIONS(3394), - [anon_sym_u_SQUOTE] = ACTIONS(3394), - [anon_sym_U_SQUOTE] = ACTIONS(3394), - [anon_sym_u8_SQUOTE] = ACTIONS(3394), - [anon_sym_SQUOTE] = ACTIONS(3394), - [anon_sym_L_DQUOTE] = ACTIONS(3394), - [anon_sym_u_DQUOTE] = ACTIONS(3394), - [anon_sym_U_DQUOTE] = ACTIONS(3394), - [anon_sym_u8_DQUOTE] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [sym_true] = ACTIONS(3392), - [sym_false] = ACTIONS(3392), - [anon_sym_NULL] = ACTIONS(3392), - [anon_sym_nullptr] = ACTIONS(3392), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3392), - [anon_sym_decltype] = ACTIONS(3392), - [anon_sym_virtual] = ACTIONS(3392), - [anon_sym_alignas] = ACTIONS(3392), - [anon_sym_explicit] = ACTIONS(3392), - [anon_sym_typename] = ACTIONS(3392), - [anon_sym_template] = ACTIONS(3392), - [anon_sym_operator] = ACTIONS(3392), - [anon_sym_try] = ACTIONS(3392), - [anon_sym_delete] = ACTIONS(3392), - [anon_sym_throw] = ACTIONS(3392), - [anon_sym_namespace] = ACTIONS(3392), - [anon_sym_using] = ACTIONS(3392), - [anon_sym_static_assert] = ACTIONS(3392), - [anon_sym_concept] = ACTIONS(3392), - [anon_sym_co_return] = ACTIONS(3392), - [anon_sym_co_yield] = ACTIONS(3392), - [anon_sym_R_DQUOTE] = ACTIONS(3394), - [anon_sym_LR_DQUOTE] = ACTIONS(3394), - [anon_sym_uR_DQUOTE] = ACTIONS(3394), - [anon_sym_UR_DQUOTE] = ACTIONS(3394), - [anon_sym_u8R_DQUOTE] = ACTIONS(3394), - [anon_sym_co_await] = ACTIONS(3392), - [anon_sym_new] = ACTIONS(3392), - [anon_sym_requires] = ACTIONS(3392), - [sym_this] = ACTIONS(3392), + [1375] = { + [sym__expression] = STATE(2627), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1287] = { - [sym_identifier] = ACTIONS(3336), - [aux_sym_preproc_include_token1] = ACTIONS(3336), - [aux_sym_preproc_def_token1] = ACTIONS(3336), - [aux_sym_preproc_if_token1] = ACTIONS(3336), - [aux_sym_preproc_if_token2] = ACTIONS(3336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3336), - [sym_preproc_directive] = ACTIONS(3336), - [anon_sym_LPAREN2] = ACTIONS(3338), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3338), - [anon_sym_AMP_AMP] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym___extension__] = ACTIONS(3336), - [anon_sym_typedef] = ACTIONS(3336), - [anon_sym_extern] = ACTIONS(3336), - [anon_sym___attribute__] = ACTIONS(3336), - [anon_sym_COLON_COLON] = ACTIONS(3338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3338), - [anon_sym___declspec] = ACTIONS(3336), - [anon_sym___based] = ACTIONS(3336), - [anon_sym___cdecl] = ACTIONS(3336), - [anon_sym___clrcall] = ACTIONS(3336), - [anon_sym___stdcall] = ACTIONS(3336), - [anon_sym___fastcall] = ACTIONS(3336), - [anon_sym___thiscall] = ACTIONS(3336), - [anon_sym___vectorcall] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_register] = ACTIONS(3336), - [anon_sym_inline] = ACTIONS(3336), - [anon_sym___inline] = ACTIONS(3336), - [anon_sym___inline__] = ACTIONS(3336), - [anon_sym___forceinline] = ACTIONS(3336), - [anon_sym_thread_local] = ACTIONS(3336), - [anon_sym___thread] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_constexpr] = ACTIONS(3336), - [anon_sym_volatile] = ACTIONS(3336), - [anon_sym_restrict] = ACTIONS(3336), - [anon_sym___restrict__] = ACTIONS(3336), - [anon_sym__Atomic] = ACTIONS(3336), - [anon_sym__Noreturn] = ACTIONS(3336), - [anon_sym_noreturn] = ACTIONS(3336), - [anon_sym_mutable] = ACTIONS(3336), - [anon_sym_constinit] = ACTIONS(3336), - [anon_sym_consteval] = ACTIONS(3336), - [sym_primitive_type] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_union] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_goto] = ACTIONS(3336), - [anon_sym_not] = ACTIONS(3336), - [anon_sym_compl] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_sizeof] = ACTIONS(3336), - [anon_sym___alignof__] = ACTIONS(3336), - [anon_sym___alignof] = ACTIONS(3336), - [anon_sym__alignof] = ACTIONS(3336), - [anon_sym_alignof] = ACTIONS(3336), - [anon_sym__Alignof] = ACTIONS(3336), - [anon_sym_offsetof] = ACTIONS(3336), - [anon_sym__Generic] = ACTIONS(3336), - [anon_sym_asm] = ACTIONS(3336), - [anon_sym___asm__] = ACTIONS(3336), - [sym_number_literal] = ACTIONS(3338), - [anon_sym_L_SQUOTE] = ACTIONS(3338), - [anon_sym_u_SQUOTE] = ACTIONS(3338), - [anon_sym_U_SQUOTE] = ACTIONS(3338), - [anon_sym_u8_SQUOTE] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [anon_sym_L_DQUOTE] = ACTIONS(3338), - [anon_sym_u_DQUOTE] = ACTIONS(3338), - [anon_sym_U_DQUOTE] = ACTIONS(3338), - [anon_sym_u8_DQUOTE] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [anon_sym_NULL] = ACTIONS(3336), - [anon_sym_nullptr] = ACTIONS(3336), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3336), - [anon_sym_decltype] = ACTIONS(3336), - [anon_sym_virtual] = ACTIONS(3336), - [anon_sym_alignas] = ACTIONS(3336), - [anon_sym_explicit] = ACTIONS(3336), - [anon_sym_typename] = ACTIONS(3336), - [anon_sym_template] = ACTIONS(3336), - [anon_sym_operator] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_static_assert] = ACTIONS(3336), - [anon_sym_concept] = ACTIONS(3336), - [anon_sym_co_return] = ACTIONS(3336), - [anon_sym_co_yield] = ACTIONS(3336), - [anon_sym_R_DQUOTE] = ACTIONS(3338), - [anon_sym_LR_DQUOTE] = ACTIONS(3338), - [anon_sym_uR_DQUOTE] = ACTIONS(3338), - [anon_sym_UR_DQUOTE] = ACTIONS(3338), - [anon_sym_u8R_DQUOTE] = ACTIONS(3338), - [anon_sym_co_await] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_requires] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), + [1376] = { + [sym__expression] = STATE(2588), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1288] = { - [sym_identifier] = ACTIONS(3203), - [aux_sym_preproc_include_token1] = ACTIONS(3203), - [aux_sym_preproc_def_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token2] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3203), - [sym_preproc_directive] = ACTIONS(3203), - [anon_sym_LPAREN2] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym___extension__] = ACTIONS(3203), - [anon_sym_typedef] = ACTIONS(3203), - [anon_sym_extern] = ACTIONS(3203), - [anon_sym___attribute__] = ACTIONS(3203), - [anon_sym_COLON_COLON] = ACTIONS(3205), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3205), - [anon_sym___declspec] = ACTIONS(3203), - [anon_sym___based] = ACTIONS(3203), - [anon_sym___cdecl] = ACTIONS(3203), - [anon_sym___clrcall] = ACTIONS(3203), - [anon_sym___stdcall] = ACTIONS(3203), - [anon_sym___fastcall] = ACTIONS(3203), - [anon_sym___thiscall] = ACTIONS(3203), - [anon_sym___vectorcall] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_signed] = ACTIONS(3203), - [anon_sym_unsigned] = ACTIONS(3203), - [anon_sym_long] = ACTIONS(3203), - [anon_sym_short] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_static] = ACTIONS(3203), - [anon_sym_register] = ACTIONS(3203), - [anon_sym_inline] = ACTIONS(3203), - [anon_sym___inline] = ACTIONS(3203), - [anon_sym___inline__] = ACTIONS(3203), - [anon_sym___forceinline] = ACTIONS(3203), - [anon_sym_thread_local] = ACTIONS(3203), - [anon_sym___thread] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_constexpr] = ACTIONS(3203), - [anon_sym_volatile] = ACTIONS(3203), - [anon_sym_restrict] = ACTIONS(3203), - [anon_sym___restrict__] = ACTIONS(3203), - [anon_sym__Atomic] = ACTIONS(3203), - [anon_sym__Noreturn] = ACTIONS(3203), - [anon_sym_noreturn] = ACTIONS(3203), - [anon_sym_mutable] = ACTIONS(3203), - [anon_sym_constinit] = ACTIONS(3203), - [anon_sym_consteval] = ACTIONS(3203), - [sym_primitive_type] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [anon_sym_class] = ACTIONS(3203), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_switch] = ACTIONS(3203), - [anon_sym_case] = ACTIONS(3203), - [anon_sym_default] = ACTIONS(3203), - [anon_sym_while] = ACTIONS(3203), - [anon_sym_do] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_goto] = ACTIONS(3203), - [anon_sym_not] = ACTIONS(3203), - [anon_sym_compl] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_sizeof] = ACTIONS(3203), - [anon_sym___alignof__] = ACTIONS(3203), - [anon_sym___alignof] = ACTIONS(3203), - [anon_sym__alignof] = ACTIONS(3203), - [anon_sym_alignof] = ACTIONS(3203), - [anon_sym__Alignof] = ACTIONS(3203), - [anon_sym_offsetof] = ACTIONS(3203), - [anon_sym__Generic] = ACTIONS(3203), - [anon_sym_asm] = ACTIONS(3203), - [anon_sym___asm__] = ACTIONS(3203), - [sym_number_literal] = ACTIONS(3205), - [anon_sym_L_SQUOTE] = ACTIONS(3205), - [anon_sym_u_SQUOTE] = ACTIONS(3205), - [anon_sym_U_SQUOTE] = ACTIONS(3205), - [anon_sym_u8_SQUOTE] = ACTIONS(3205), - [anon_sym_SQUOTE] = ACTIONS(3205), - [anon_sym_L_DQUOTE] = ACTIONS(3205), - [anon_sym_u_DQUOTE] = ACTIONS(3205), - [anon_sym_U_DQUOTE] = ACTIONS(3205), - [anon_sym_u8_DQUOTE] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(3205), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [anon_sym_NULL] = ACTIONS(3203), - [anon_sym_nullptr] = ACTIONS(3203), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3203), - [anon_sym_decltype] = ACTIONS(3203), - [anon_sym_virtual] = ACTIONS(3203), - [anon_sym_alignas] = ACTIONS(3203), - [anon_sym_explicit] = ACTIONS(3203), - [anon_sym_typename] = ACTIONS(3203), - [anon_sym_template] = ACTIONS(3203), - [anon_sym_operator] = ACTIONS(3203), - [anon_sym_try] = ACTIONS(3203), - [anon_sym_delete] = ACTIONS(3203), - [anon_sym_throw] = ACTIONS(3203), - [anon_sym_namespace] = ACTIONS(3203), - [anon_sym_using] = ACTIONS(3203), - [anon_sym_static_assert] = ACTIONS(3203), - [anon_sym_concept] = ACTIONS(3203), - [anon_sym_co_return] = ACTIONS(3203), - [anon_sym_co_yield] = ACTIONS(3203), - [anon_sym_R_DQUOTE] = ACTIONS(3205), - [anon_sym_LR_DQUOTE] = ACTIONS(3205), - [anon_sym_uR_DQUOTE] = ACTIONS(3205), - [anon_sym_UR_DQUOTE] = ACTIONS(3205), - [anon_sym_u8R_DQUOTE] = ACTIONS(3205), - [anon_sym_co_await] = ACTIONS(3203), - [anon_sym_new] = ACTIONS(3203), - [anon_sym_requires] = ACTIONS(3203), - [sym_this] = ACTIONS(3203), + [1377] = { + [sym__expression] = STATE(4053), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [1289] = { - [sym_identifier] = ACTIONS(3380), - [aux_sym_preproc_include_token1] = ACTIONS(3380), - [aux_sym_preproc_def_token1] = ACTIONS(3380), - [aux_sym_preproc_if_token1] = ACTIONS(3380), - [aux_sym_preproc_if_token2] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), - [sym_preproc_directive] = ACTIONS(3380), - [anon_sym_LPAREN2] = ACTIONS(3382), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_TILDE] = ACTIONS(3382), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_AMP_AMP] = ACTIONS(3382), - [anon_sym_AMP] = ACTIONS(3380), - [anon_sym_SEMI] = ACTIONS(3382), - [anon_sym___extension__] = ACTIONS(3380), - [anon_sym_typedef] = ACTIONS(3380), - [anon_sym_extern] = ACTIONS(3380), - [anon_sym___attribute__] = ACTIONS(3380), - [anon_sym_COLON_COLON] = ACTIONS(3382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), - [anon_sym___declspec] = ACTIONS(3380), - [anon_sym___based] = ACTIONS(3380), - [anon_sym___cdecl] = ACTIONS(3380), - [anon_sym___clrcall] = ACTIONS(3380), - [anon_sym___stdcall] = ACTIONS(3380), - [anon_sym___fastcall] = ACTIONS(3380), - [anon_sym___thiscall] = ACTIONS(3380), - [anon_sym___vectorcall] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3382), - [anon_sym_signed] = ACTIONS(3380), - [anon_sym_unsigned] = ACTIONS(3380), - [anon_sym_long] = ACTIONS(3380), - [anon_sym_short] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_register] = ACTIONS(3380), - [anon_sym_inline] = ACTIONS(3380), - [anon_sym___inline] = ACTIONS(3380), - [anon_sym___inline__] = ACTIONS(3380), - [anon_sym___forceinline] = ACTIONS(3380), - [anon_sym_thread_local] = ACTIONS(3380), - [anon_sym___thread] = ACTIONS(3380), - [anon_sym_const] = ACTIONS(3380), - [anon_sym_constexpr] = ACTIONS(3380), - [anon_sym_volatile] = ACTIONS(3380), - [anon_sym_restrict] = ACTIONS(3380), - [anon_sym___restrict__] = ACTIONS(3380), - [anon_sym__Atomic] = ACTIONS(3380), - [anon_sym__Noreturn] = ACTIONS(3380), - [anon_sym_noreturn] = ACTIONS(3380), - [anon_sym_mutable] = ACTIONS(3380), - [anon_sym_constinit] = ACTIONS(3380), - [anon_sym_consteval] = ACTIONS(3380), - [sym_primitive_type] = ACTIONS(3380), - [anon_sym_enum] = ACTIONS(3380), - [anon_sym_class] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(3380), - [anon_sym_union] = ACTIONS(3380), - [anon_sym_if] = ACTIONS(3380), - [anon_sym_switch] = ACTIONS(3380), - [anon_sym_case] = ACTIONS(3380), - [anon_sym_default] = ACTIONS(3380), - [anon_sym_while] = ACTIONS(3380), - [anon_sym_do] = ACTIONS(3380), - [anon_sym_for] = ACTIONS(3380), - [anon_sym_return] = ACTIONS(3380), - [anon_sym_break] = ACTIONS(3380), - [anon_sym_continue] = ACTIONS(3380), - [anon_sym_goto] = ACTIONS(3380), - [anon_sym_not] = ACTIONS(3380), - [anon_sym_compl] = ACTIONS(3380), - [anon_sym_DASH_DASH] = ACTIONS(3382), - [anon_sym_PLUS_PLUS] = ACTIONS(3382), - [anon_sym_sizeof] = ACTIONS(3380), - [anon_sym___alignof__] = ACTIONS(3380), - [anon_sym___alignof] = ACTIONS(3380), - [anon_sym__alignof] = ACTIONS(3380), - [anon_sym_alignof] = ACTIONS(3380), - [anon_sym__Alignof] = ACTIONS(3380), - [anon_sym_offsetof] = ACTIONS(3380), - [anon_sym__Generic] = ACTIONS(3380), - [anon_sym_asm] = ACTIONS(3380), - [anon_sym___asm__] = ACTIONS(3380), - [sym_number_literal] = ACTIONS(3382), - [anon_sym_L_SQUOTE] = ACTIONS(3382), - [anon_sym_u_SQUOTE] = ACTIONS(3382), - [anon_sym_U_SQUOTE] = ACTIONS(3382), - [anon_sym_u8_SQUOTE] = ACTIONS(3382), - [anon_sym_SQUOTE] = ACTIONS(3382), - [anon_sym_L_DQUOTE] = ACTIONS(3382), - [anon_sym_u_DQUOTE] = ACTIONS(3382), - [anon_sym_U_DQUOTE] = ACTIONS(3382), - [anon_sym_u8_DQUOTE] = ACTIONS(3382), - [anon_sym_DQUOTE] = ACTIONS(3382), - [sym_true] = ACTIONS(3380), - [sym_false] = ACTIONS(3380), - [anon_sym_NULL] = ACTIONS(3380), - [anon_sym_nullptr] = ACTIONS(3380), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3380), - [anon_sym_decltype] = ACTIONS(3380), - [anon_sym_virtual] = ACTIONS(3380), - [anon_sym_alignas] = ACTIONS(3380), - [anon_sym_explicit] = ACTIONS(3380), - [anon_sym_typename] = ACTIONS(3380), - [anon_sym_template] = ACTIONS(3380), - [anon_sym_operator] = ACTIONS(3380), - [anon_sym_try] = ACTIONS(3380), - [anon_sym_delete] = ACTIONS(3380), - [anon_sym_throw] = ACTIONS(3380), - [anon_sym_namespace] = ACTIONS(3380), - [anon_sym_using] = ACTIONS(3380), - [anon_sym_static_assert] = ACTIONS(3380), - [anon_sym_concept] = ACTIONS(3380), - [anon_sym_co_return] = ACTIONS(3380), - [anon_sym_co_yield] = ACTIONS(3380), - [anon_sym_R_DQUOTE] = ACTIONS(3382), - [anon_sym_LR_DQUOTE] = ACTIONS(3382), - [anon_sym_uR_DQUOTE] = ACTIONS(3382), - [anon_sym_UR_DQUOTE] = ACTIONS(3382), - [anon_sym_u8R_DQUOTE] = ACTIONS(3382), - [anon_sym_co_await] = ACTIONS(3380), - [anon_sym_new] = ACTIONS(3380), - [anon_sym_requires] = ACTIONS(3380), - [sym_this] = ACTIONS(3380), + [1378] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1290] = { - [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_extern] = ACTIONS(3115), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3115), - [anon_sym_constinit] = ACTIONS(3115), - [anon_sym_consteval] = 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), - [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), + [1379] = { + [sym__expression] = STATE(2963), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3115), - [anon_sym_decltype] = ACTIONS(3115), - [anon_sym_virtual] = ACTIONS(3115), - [anon_sym_alignas] = 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_using] = 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), - }, - [1291] = { - [sym_identifier] = ACTIONS(3366), - [aux_sym_preproc_include_token1] = ACTIONS(3366), - [aux_sym_preproc_def_token1] = ACTIONS(3366), - [aux_sym_preproc_if_token1] = ACTIONS(3366), - [aux_sym_preproc_if_token2] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3366), - [sym_preproc_directive] = ACTIONS(3366), - [anon_sym_LPAREN2] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_AMP_AMP] = ACTIONS(3368), - [anon_sym_AMP] = ACTIONS(3366), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym___extension__] = ACTIONS(3366), - [anon_sym_typedef] = ACTIONS(3366), - [anon_sym_extern] = ACTIONS(3366), - [anon_sym___attribute__] = ACTIONS(3366), - [anon_sym_COLON_COLON] = ACTIONS(3368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3368), - [anon_sym___declspec] = ACTIONS(3366), - [anon_sym___based] = ACTIONS(3366), - [anon_sym___cdecl] = ACTIONS(3366), - [anon_sym___clrcall] = ACTIONS(3366), - [anon_sym___stdcall] = ACTIONS(3366), - [anon_sym___fastcall] = ACTIONS(3366), - [anon_sym___thiscall] = ACTIONS(3366), - [anon_sym___vectorcall] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_signed] = ACTIONS(3366), - [anon_sym_unsigned] = ACTIONS(3366), - [anon_sym_long] = ACTIONS(3366), - [anon_sym_short] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_register] = ACTIONS(3366), - [anon_sym_inline] = ACTIONS(3366), - [anon_sym___inline] = ACTIONS(3366), - [anon_sym___inline__] = ACTIONS(3366), - [anon_sym___forceinline] = ACTIONS(3366), - [anon_sym_thread_local] = ACTIONS(3366), - [anon_sym___thread] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_constexpr] = ACTIONS(3366), - [anon_sym_volatile] = ACTIONS(3366), - [anon_sym_restrict] = ACTIONS(3366), - [anon_sym___restrict__] = ACTIONS(3366), - [anon_sym__Atomic] = ACTIONS(3366), - [anon_sym__Noreturn] = ACTIONS(3366), - [anon_sym_noreturn] = ACTIONS(3366), - [anon_sym_mutable] = ACTIONS(3366), - [anon_sym_constinit] = ACTIONS(3366), - [anon_sym_consteval] = ACTIONS(3366), - [sym_primitive_type] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_struct] = ACTIONS(3366), - [anon_sym_union] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_case] = ACTIONS(3366), - [anon_sym_default] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_goto] = ACTIONS(3366), - [anon_sym_not] = ACTIONS(3366), - [anon_sym_compl] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_sizeof] = ACTIONS(3366), - [anon_sym___alignof__] = ACTIONS(3366), - [anon_sym___alignof] = ACTIONS(3366), - [anon_sym__alignof] = ACTIONS(3366), - [anon_sym_alignof] = ACTIONS(3366), - [anon_sym__Alignof] = ACTIONS(3366), - [anon_sym_offsetof] = ACTIONS(3366), - [anon_sym__Generic] = ACTIONS(3366), - [anon_sym_asm] = ACTIONS(3366), - [anon_sym___asm__] = ACTIONS(3366), - [sym_number_literal] = ACTIONS(3368), - [anon_sym_L_SQUOTE] = ACTIONS(3368), - [anon_sym_u_SQUOTE] = ACTIONS(3368), - [anon_sym_U_SQUOTE] = ACTIONS(3368), - [anon_sym_u8_SQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_L_DQUOTE] = ACTIONS(3368), - [anon_sym_u_DQUOTE] = ACTIONS(3368), - [anon_sym_U_DQUOTE] = ACTIONS(3368), - [anon_sym_u8_DQUOTE] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3366), - [anon_sym_nullptr] = ACTIONS(3366), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3366), - [anon_sym_decltype] = ACTIONS(3366), - [anon_sym_virtual] = ACTIONS(3366), - [anon_sym_alignas] = ACTIONS(3366), - [anon_sym_explicit] = ACTIONS(3366), - [anon_sym_typename] = ACTIONS(3366), - [anon_sym_template] = ACTIONS(3366), - [anon_sym_operator] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_static_assert] = ACTIONS(3366), - [anon_sym_concept] = ACTIONS(3366), - [anon_sym_co_return] = ACTIONS(3366), - [anon_sym_co_yield] = ACTIONS(3366), - [anon_sym_R_DQUOTE] = ACTIONS(3368), - [anon_sym_LR_DQUOTE] = ACTIONS(3368), - [anon_sym_uR_DQUOTE] = ACTIONS(3368), - [anon_sym_UR_DQUOTE] = ACTIONS(3368), - [anon_sym_u8R_DQUOTE] = ACTIONS(3368), - [anon_sym_co_await] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_requires] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), - }, - [1292] = { - [sym_identifier] = ACTIONS(3388), - [aux_sym_preproc_include_token1] = ACTIONS(3388), - [aux_sym_preproc_def_token1] = ACTIONS(3388), - [aux_sym_preproc_if_token1] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3388), - [sym_preproc_directive] = ACTIONS(3388), - [anon_sym_LPAREN2] = ACTIONS(3390), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_TILDE] = ACTIONS(3390), - [anon_sym_DASH] = ACTIONS(3388), - [anon_sym_PLUS] = ACTIONS(3388), - [anon_sym_STAR] = ACTIONS(3390), - [anon_sym_AMP_AMP] = ACTIONS(3390), - [anon_sym_AMP] = ACTIONS(3388), - [anon_sym_SEMI] = ACTIONS(3390), - [anon_sym___extension__] = ACTIONS(3388), - [anon_sym_typedef] = ACTIONS(3388), - [anon_sym_extern] = ACTIONS(3388), - [anon_sym___attribute__] = ACTIONS(3388), - [anon_sym_COLON_COLON] = ACTIONS(3390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3390), - [anon_sym___declspec] = ACTIONS(3388), - [anon_sym___based] = ACTIONS(3388), - [anon_sym___cdecl] = ACTIONS(3388), - [anon_sym___clrcall] = ACTIONS(3388), - [anon_sym___stdcall] = ACTIONS(3388), - [anon_sym___fastcall] = ACTIONS(3388), - [anon_sym___thiscall] = ACTIONS(3388), - [anon_sym___vectorcall] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(3390), - [anon_sym_RBRACE] = ACTIONS(3390), - [anon_sym_signed] = ACTIONS(3388), - [anon_sym_unsigned] = ACTIONS(3388), - [anon_sym_long] = ACTIONS(3388), - [anon_sym_short] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3388), - [anon_sym_static] = ACTIONS(3388), - [anon_sym_register] = ACTIONS(3388), - [anon_sym_inline] = ACTIONS(3388), - [anon_sym___inline] = ACTIONS(3388), - [anon_sym___inline__] = ACTIONS(3388), - [anon_sym___forceinline] = ACTIONS(3388), - [anon_sym_thread_local] = ACTIONS(3388), - [anon_sym___thread] = ACTIONS(3388), - [anon_sym_const] = ACTIONS(3388), - [anon_sym_constexpr] = ACTIONS(3388), - [anon_sym_volatile] = ACTIONS(3388), - [anon_sym_restrict] = ACTIONS(3388), - [anon_sym___restrict__] = ACTIONS(3388), - [anon_sym__Atomic] = ACTIONS(3388), - [anon_sym__Noreturn] = ACTIONS(3388), - [anon_sym_noreturn] = ACTIONS(3388), - [anon_sym_mutable] = ACTIONS(3388), - [anon_sym_constinit] = ACTIONS(3388), - [anon_sym_consteval] = ACTIONS(3388), - [sym_primitive_type] = ACTIONS(3388), - [anon_sym_enum] = ACTIONS(3388), - [anon_sym_class] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(3388), - [anon_sym_union] = ACTIONS(3388), - [anon_sym_if] = ACTIONS(3388), - [anon_sym_switch] = ACTIONS(3388), - [anon_sym_case] = ACTIONS(3388), - [anon_sym_default] = ACTIONS(3388), - [anon_sym_while] = ACTIONS(3388), - [anon_sym_do] = ACTIONS(3388), - [anon_sym_for] = ACTIONS(3388), - [anon_sym_return] = ACTIONS(3388), - [anon_sym_break] = ACTIONS(3388), - [anon_sym_continue] = ACTIONS(3388), - [anon_sym_goto] = ACTIONS(3388), - [anon_sym_not] = ACTIONS(3388), - [anon_sym_compl] = ACTIONS(3388), - [anon_sym_DASH_DASH] = ACTIONS(3390), - [anon_sym_PLUS_PLUS] = ACTIONS(3390), - [anon_sym_sizeof] = ACTIONS(3388), - [anon_sym___alignof__] = ACTIONS(3388), - [anon_sym___alignof] = ACTIONS(3388), - [anon_sym__alignof] = ACTIONS(3388), - [anon_sym_alignof] = ACTIONS(3388), - [anon_sym__Alignof] = ACTIONS(3388), - [anon_sym_offsetof] = ACTIONS(3388), - [anon_sym__Generic] = ACTIONS(3388), - [anon_sym_asm] = ACTIONS(3388), - [anon_sym___asm__] = ACTIONS(3388), - [sym_number_literal] = ACTIONS(3390), - [anon_sym_L_SQUOTE] = ACTIONS(3390), - [anon_sym_u_SQUOTE] = ACTIONS(3390), - [anon_sym_U_SQUOTE] = ACTIONS(3390), - [anon_sym_u8_SQUOTE] = ACTIONS(3390), - [anon_sym_SQUOTE] = ACTIONS(3390), - [anon_sym_L_DQUOTE] = ACTIONS(3390), - [anon_sym_u_DQUOTE] = ACTIONS(3390), - [anon_sym_U_DQUOTE] = ACTIONS(3390), - [anon_sym_u8_DQUOTE] = ACTIONS(3390), - [anon_sym_DQUOTE] = ACTIONS(3390), - [sym_true] = ACTIONS(3388), - [sym_false] = ACTIONS(3388), - [anon_sym_NULL] = ACTIONS(3388), - [anon_sym_nullptr] = ACTIONS(3388), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3388), - [anon_sym_decltype] = ACTIONS(3388), - [anon_sym_virtual] = ACTIONS(3388), - [anon_sym_alignas] = ACTIONS(3388), - [anon_sym_explicit] = ACTIONS(3388), - [anon_sym_typename] = ACTIONS(3388), - [anon_sym_template] = ACTIONS(3388), - [anon_sym_operator] = ACTIONS(3388), - [anon_sym_try] = ACTIONS(3388), - [anon_sym_delete] = ACTIONS(3388), - [anon_sym_throw] = ACTIONS(3388), - [anon_sym_namespace] = ACTIONS(3388), - [anon_sym_using] = ACTIONS(3388), - [anon_sym_static_assert] = ACTIONS(3388), - [anon_sym_concept] = ACTIONS(3388), - [anon_sym_co_return] = ACTIONS(3388), - [anon_sym_co_yield] = ACTIONS(3388), - [anon_sym_R_DQUOTE] = ACTIONS(3390), - [anon_sym_LR_DQUOTE] = ACTIONS(3390), - [anon_sym_uR_DQUOTE] = ACTIONS(3390), - [anon_sym_UR_DQUOTE] = ACTIONS(3390), - [anon_sym_u8R_DQUOTE] = ACTIONS(3390), - [anon_sym_co_await] = ACTIONS(3388), - [anon_sym_new] = ACTIONS(3388), - [anon_sym_requires] = ACTIONS(3388), - [sym_this] = ACTIONS(3388), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, - [1293] = { - [sym_identifier] = ACTIONS(3388), - [aux_sym_preproc_include_token1] = ACTIONS(3388), - [aux_sym_preproc_def_token1] = ACTIONS(3388), - [aux_sym_preproc_if_token1] = ACTIONS(3388), - [aux_sym_preproc_if_token2] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3388), - [sym_preproc_directive] = ACTIONS(3388), - [anon_sym_LPAREN2] = ACTIONS(3390), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_TILDE] = ACTIONS(3390), - [anon_sym_DASH] = ACTIONS(3388), - [anon_sym_PLUS] = ACTIONS(3388), - [anon_sym_STAR] = ACTIONS(3390), - [anon_sym_AMP_AMP] = ACTIONS(3390), - [anon_sym_AMP] = ACTIONS(3388), - [anon_sym_SEMI] = ACTIONS(3390), - [anon_sym___extension__] = ACTIONS(3388), - [anon_sym_typedef] = ACTIONS(3388), - [anon_sym_extern] = ACTIONS(3388), - [anon_sym___attribute__] = ACTIONS(3388), - [anon_sym_COLON_COLON] = ACTIONS(3390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3390), - [anon_sym___declspec] = ACTIONS(3388), - [anon_sym___based] = ACTIONS(3388), - [anon_sym___cdecl] = ACTIONS(3388), - [anon_sym___clrcall] = ACTIONS(3388), - [anon_sym___stdcall] = ACTIONS(3388), - [anon_sym___fastcall] = ACTIONS(3388), - [anon_sym___thiscall] = ACTIONS(3388), - [anon_sym___vectorcall] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(3390), - [anon_sym_signed] = ACTIONS(3388), - [anon_sym_unsigned] = ACTIONS(3388), - [anon_sym_long] = ACTIONS(3388), - [anon_sym_short] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3388), - [anon_sym_static] = ACTIONS(3388), - [anon_sym_register] = ACTIONS(3388), - [anon_sym_inline] = ACTIONS(3388), - [anon_sym___inline] = ACTIONS(3388), - [anon_sym___inline__] = ACTIONS(3388), - [anon_sym___forceinline] = ACTIONS(3388), - [anon_sym_thread_local] = ACTIONS(3388), - [anon_sym___thread] = ACTIONS(3388), - [anon_sym_const] = ACTIONS(3388), - [anon_sym_constexpr] = ACTIONS(3388), - [anon_sym_volatile] = ACTIONS(3388), - [anon_sym_restrict] = ACTIONS(3388), - [anon_sym___restrict__] = ACTIONS(3388), - [anon_sym__Atomic] = ACTIONS(3388), - [anon_sym__Noreturn] = ACTIONS(3388), - [anon_sym_noreturn] = ACTIONS(3388), - [anon_sym_mutable] = ACTIONS(3388), - [anon_sym_constinit] = ACTIONS(3388), - [anon_sym_consteval] = ACTIONS(3388), - [sym_primitive_type] = ACTIONS(3388), - [anon_sym_enum] = ACTIONS(3388), - [anon_sym_class] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(3388), - [anon_sym_union] = ACTIONS(3388), - [anon_sym_if] = ACTIONS(3388), - [anon_sym_switch] = ACTIONS(3388), - [anon_sym_case] = ACTIONS(3388), - [anon_sym_default] = ACTIONS(3388), - [anon_sym_while] = ACTIONS(3388), - [anon_sym_do] = ACTIONS(3388), - [anon_sym_for] = ACTIONS(3388), - [anon_sym_return] = ACTIONS(3388), - [anon_sym_break] = ACTIONS(3388), - [anon_sym_continue] = ACTIONS(3388), - [anon_sym_goto] = ACTIONS(3388), - [anon_sym_not] = ACTIONS(3388), - [anon_sym_compl] = ACTIONS(3388), - [anon_sym_DASH_DASH] = ACTIONS(3390), - [anon_sym_PLUS_PLUS] = ACTIONS(3390), - [anon_sym_sizeof] = ACTIONS(3388), - [anon_sym___alignof__] = ACTIONS(3388), - [anon_sym___alignof] = ACTIONS(3388), - [anon_sym__alignof] = ACTIONS(3388), - [anon_sym_alignof] = ACTIONS(3388), - [anon_sym__Alignof] = ACTIONS(3388), - [anon_sym_offsetof] = ACTIONS(3388), - [anon_sym__Generic] = ACTIONS(3388), - [anon_sym_asm] = ACTIONS(3388), - [anon_sym___asm__] = ACTIONS(3388), - [sym_number_literal] = ACTIONS(3390), - [anon_sym_L_SQUOTE] = ACTIONS(3390), - [anon_sym_u_SQUOTE] = ACTIONS(3390), - [anon_sym_U_SQUOTE] = ACTIONS(3390), - [anon_sym_u8_SQUOTE] = ACTIONS(3390), - [anon_sym_SQUOTE] = ACTIONS(3390), - [anon_sym_L_DQUOTE] = ACTIONS(3390), - [anon_sym_u_DQUOTE] = ACTIONS(3390), - [anon_sym_U_DQUOTE] = ACTIONS(3390), - [anon_sym_u8_DQUOTE] = ACTIONS(3390), - [anon_sym_DQUOTE] = ACTIONS(3390), - [sym_true] = ACTIONS(3388), - [sym_false] = ACTIONS(3388), - [anon_sym_NULL] = ACTIONS(3388), - [anon_sym_nullptr] = ACTIONS(3388), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3388), - [anon_sym_decltype] = ACTIONS(3388), - [anon_sym_virtual] = ACTIONS(3388), - [anon_sym_alignas] = ACTIONS(3388), - [anon_sym_explicit] = ACTIONS(3388), - [anon_sym_typename] = ACTIONS(3388), - [anon_sym_template] = ACTIONS(3388), - [anon_sym_operator] = ACTIONS(3388), - [anon_sym_try] = ACTIONS(3388), - [anon_sym_delete] = ACTIONS(3388), - [anon_sym_throw] = ACTIONS(3388), - [anon_sym_namespace] = ACTIONS(3388), - [anon_sym_using] = ACTIONS(3388), - [anon_sym_static_assert] = ACTIONS(3388), - [anon_sym_concept] = ACTIONS(3388), - [anon_sym_co_return] = ACTIONS(3388), - [anon_sym_co_yield] = ACTIONS(3388), - [anon_sym_R_DQUOTE] = ACTIONS(3390), - [anon_sym_LR_DQUOTE] = ACTIONS(3390), - [anon_sym_uR_DQUOTE] = ACTIONS(3390), - [anon_sym_UR_DQUOTE] = ACTIONS(3390), - [anon_sym_u8R_DQUOTE] = ACTIONS(3390), - [anon_sym_co_await] = ACTIONS(3388), - [anon_sym_new] = ACTIONS(3388), - [anon_sym_requires] = ACTIONS(3388), - [sym_this] = ACTIONS(3388), + [1380] = { + [sym__expression] = STATE(4015), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1294] = { - [sym_identifier] = ACTIONS(3396), - [aux_sym_preproc_include_token1] = ACTIONS(3396), - [aux_sym_preproc_def_token1] = ACTIONS(3396), - [aux_sym_preproc_if_token1] = ACTIONS(3396), - [aux_sym_preproc_if_token2] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3396), - [sym_preproc_directive] = ACTIONS(3396), - [anon_sym_LPAREN2] = ACTIONS(3398), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3396), - [anon_sym_PLUS] = ACTIONS(3396), - [anon_sym_STAR] = ACTIONS(3398), - [anon_sym_AMP_AMP] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_SEMI] = ACTIONS(3398), - [anon_sym___extension__] = ACTIONS(3396), - [anon_sym_typedef] = ACTIONS(3396), - [anon_sym_extern] = ACTIONS(3396), - [anon_sym___attribute__] = ACTIONS(3396), - [anon_sym_COLON_COLON] = ACTIONS(3398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3398), - [anon_sym___declspec] = ACTIONS(3396), - [anon_sym___based] = ACTIONS(3396), - [anon_sym___cdecl] = ACTIONS(3396), - [anon_sym___clrcall] = ACTIONS(3396), - [anon_sym___stdcall] = ACTIONS(3396), - [anon_sym___fastcall] = ACTIONS(3396), - [anon_sym___thiscall] = ACTIONS(3396), - [anon_sym___vectorcall] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(3398), - [anon_sym_signed] = ACTIONS(3396), - [anon_sym_unsigned] = ACTIONS(3396), - [anon_sym_long] = ACTIONS(3396), - [anon_sym_short] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_static] = ACTIONS(3396), - [anon_sym_register] = ACTIONS(3396), - [anon_sym_inline] = ACTIONS(3396), - [anon_sym___inline] = ACTIONS(3396), - [anon_sym___inline__] = ACTIONS(3396), - [anon_sym___forceinline] = ACTIONS(3396), - [anon_sym_thread_local] = ACTIONS(3396), - [anon_sym___thread] = ACTIONS(3396), - [anon_sym_const] = ACTIONS(3396), - [anon_sym_constexpr] = ACTIONS(3396), - [anon_sym_volatile] = ACTIONS(3396), - [anon_sym_restrict] = ACTIONS(3396), - [anon_sym___restrict__] = ACTIONS(3396), - [anon_sym__Atomic] = ACTIONS(3396), - [anon_sym__Noreturn] = ACTIONS(3396), - [anon_sym_noreturn] = ACTIONS(3396), - [anon_sym_mutable] = ACTIONS(3396), - [anon_sym_constinit] = ACTIONS(3396), - [anon_sym_consteval] = ACTIONS(3396), - [sym_primitive_type] = ACTIONS(3396), - [anon_sym_enum] = ACTIONS(3396), - [anon_sym_class] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(3396), - [anon_sym_union] = ACTIONS(3396), - [anon_sym_if] = ACTIONS(3396), - [anon_sym_switch] = ACTIONS(3396), - [anon_sym_case] = ACTIONS(3396), - [anon_sym_default] = ACTIONS(3396), - [anon_sym_while] = ACTIONS(3396), - [anon_sym_do] = ACTIONS(3396), - [anon_sym_for] = ACTIONS(3396), - [anon_sym_return] = ACTIONS(3396), - [anon_sym_break] = ACTIONS(3396), - [anon_sym_continue] = ACTIONS(3396), - [anon_sym_goto] = ACTIONS(3396), - [anon_sym_not] = ACTIONS(3396), - [anon_sym_compl] = ACTIONS(3396), - [anon_sym_DASH_DASH] = ACTIONS(3398), - [anon_sym_PLUS_PLUS] = ACTIONS(3398), - [anon_sym_sizeof] = ACTIONS(3396), - [anon_sym___alignof__] = ACTIONS(3396), - [anon_sym___alignof] = ACTIONS(3396), - [anon_sym__alignof] = ACTIONS(3396), - [anon_sym_alignof] = ACTIONS(3396), - [anon_sym__Alignof] = ACTIONS(3396), - [anon_sym_offsetof] = ACTIONS(3396), - [anon_sym__Generic] = ACTIONS(3396), - [anon_sym_asm] = ACTIONS(3396), - [anon_sym___asm__] = ACTIONS(3396), - [sym_number_literal] = ACTIONS(3398), - [anon_sym_L_SQUOTE] = ACTIONS(3398), - [anon_sym_u_SQUOTE] = ACTIONS(3398), - [anon_sym_U_SQUOTE] = ACTIONS(3398), - [anon_sym_u8_SQUOTE] = ACTIONS(3398), - [anon_sym_SQUOTE] = ACTIONS(3398), - [anon_sym_L_DQUOTE] = ACTIONS(3398), - [anon_sym_u_DQUOTE] = ACTIONS(3398), - [anon_sym_U_DQUOTE] = ACTIONS(3398), - [anon_sym_u8_DQUOTE] = ACTIONS(3398), - [anon_sym_DQUOTE] = ACTIONS(3398), - [sym_true] = ACTIONS(3396), - [sym_false] = ACTIONS(3396), - [anon_sym_NULL] = ACTIONS(3396), - [anon_sym_nullptr] = ACTIONS(3396), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3396), - [anon_sym_decltype] = ACTIONS(3396), - [anon_sym_virtual] = ACTIONS(3396), - [anon_sym_alignas] = ACTIONS(3396), - [anon_sym_explicit] = ACTIONS(3396), - [anon_sym_typename] = ACTIONS(3396), - [anon_sym_template] = ACTIONS(3396), - [anon_sym_operator] = ACTIONS(3396), - [anon_sym_try] = ACTIONS(3396), - [anon_sym_delete] = ACTIONS(3396), - [anon_sym_throw] = ACTIONS(3396), - [anon_sym_namespace] = ACTIONS(3396), - [anon_sym_using] = ACTIONS(3396), - [anon_sym_static_assert] = ACTIONS(3396), - [anon_sym_concept] = ACTIONS(3396), - [anon_sym_co_return] = ACTIONS(3396), - [anon_sym_co_yield] = ACTIONS(3396), - [anon_sym_R_DQUOTE] = ACTIONS(3398), - [anon_sym_LR_DQUOTE] = ACTIONS(3398), - [anon_sym_uR_DQUOTE] = ACTIONS(3398), - [anon_sym_UR_DQUOTE] = ACTIONS(3398), - [anon_sym_u8R_DQUOTE] = ACTIONS(3398), - [anon_sym_co_await] = ACTIONS(3396), - [anon_sym_new] = ACTIONS(3396), - [anon_sym_requires] = ACTIONS(3396), - [sym_this] = ACTIONS(3396), + [1381] = { + [sym__expression] = STATE(4171), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1295] = { - [sym_identifier] = ACTIONS(3286), - [aux_sym_preproc_include_token1] = ACTIONS(3286), - [aux_sym_preproc_def_token1] = ACTIONS(3286), - [aux_sym_preproc_if_token1] = ACTIONS(3286), - [aux_sym_preproc_if_token2] = ACTIONS(3286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), - [sym_preproc_directive] = ACTIONS(3286), - [anon_sym_LPAREN2] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_AMP] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym___extension__] = ACTIONS(3286), - [anon_sym_typedef] = ACTIONS(3286), - [anon_sym_extern] = ACTIONS(3286), - [anon_sym___attribute__] = ACTIONS(3286), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), - [anon_sym___declspec] = ACTIONS(3286), - [anon_sym___based] = ACTIONS(3286), - [anon_sym___cdecl] = ACTIONS(3286), - [anon_sym___clrcall] = ACTIONS(3286), - [anon_sym___stdcall] = ACTIONS(3286), - [anon_sym___fastcall] = ACTIONS(3286), - [anon_sym___thiscall] = ACTIONS(3286), - [anon_sym___vectorcall] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_signed] = ACTIONS(3286), - [anon_sym_unsigned] = ACTIONS(3286), - [anon_sym_long] = ACTIONS(3286), - [anon_sym_short] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3286), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_register] = ACTIONS(3286), - [anon_sym_inline] = ACTIONS(3286), - [anon_sym___inline] = ACTIONS(3286), - [anon_sym___inline__] = ACTIONS(3286), - [anon_sym___forceinline] = ACTIONS(3286), - [anon_sym_thread_local] = ACTIONS(3286), - [anon_sym___thread] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_constexpr] = ACTIONS(3286), - [anon_sym_volatile] = ACTIONS(3286), - [anon_sym_restrict] = ACTIONS(3286), - [anon_sym___restrict__] = ACTIONS(3286), - [anon_sym__Atomic] = ACTIONS(3286), - [anon_sym__Noreturn] = ACTIONS(3286), - [anon_sym_noreturn] = ACTIONS(3286), - [anon_sym_mutable] = ACTIONS(3286), - [anon_sym_constinit] = ACTIONS(3286), - [anon_sym_consteval] = ACTIONS(3286), - [sym_primitive_type] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), - [anon_sym_class] = ACTIONS(3286), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_union] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3286), - [anon_sym_default] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_goto] = ACTIONS(3286), - [anon_sym_not] = ACTIONS(3286), - [anon_sym_compl] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_sizeof] = ACTIONS(3286), - [anon_sym___alignof__] = ACTIONS(3286), - [anon_sym___alignof] = ACTIONS(3286), - [anon_sym__alignof] = ACTIONS(3286), - [anon_sym_alignof] = ACTIONS(3286), - [anon_sym__Alignof] = ACTIONS(3286), - [anon_sym_offsetof] = ACTIONS(3286), - [anon_sym__Generic] = ACTIONS(3286), - [anon_sym_asm] = ACTIONS(3286), - [anon_sym___asm__] = ACTIONS(3286), - [sym_number_literal] = ACTIONS(3288), - [anon_sym_L_SQUOTE] = ACTIONS(3288), - [anon_sym_u_SQUOTE] = ACTIONS(3288), - [anon_sym_U_SQUOTE] = ACTIONS(3288), - [anon_sym_u8_SQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_L_DQUOTE] = ACTIONS(3288), - [anon_sym_u_DQUOTE] = ACTIONS(3288), - [anon_sym_U_DQUOTE] = ACTIONS(3288), - [anon_sym_u8_DQUOTE] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [anon_sym_NULL] = ACTIONS(3286), - [anon_sym_nullptr] = ACTIONS(3286), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3286), - [anon_sym_decltype] = ACTIONS(3286), - [anon_sym_virtual] = ACTIONS(3286), - [anon_sym_alignas] = ACTIONS(3286), - [anon_sym_explicit] = ACTIONS(3286), - [anon_sym_typename] = ACTIONS(3286), - [anon_sym_template] = ACTIONS(3286), - [anon_sym_operator] = ACTIONS(3286), - [anon_sym_try] = ACTIONS(3286), - [anon_sym_delete] = ACTIONS(3286), - [anon_sym_throw] = ACTIONS(3286), - [anon_sym_namespace] = ACTIONS(3286), - [anon_sym_using] = ACTIONS(3286), - [anon_sym_static_assert] = ACTIONS(3286), - [anon_sym_concept] = ACTIONS(3286), - [anon_sym_co_return] = ACTIONS(3286), - [anon_sym_co_yield] = ACTIONS(3286), - [anon_sym_R_DQUOTE] = ACTIONS(3288), - [anon_sym_LR_DQUOTE] = ACTIONS(3288), - [anon_sym_uR_DQUOTE] = ACTIONS(3288), - [anon_sym_UR_DQUOTE] = ACTIONS(3288), - [anon_sym_u8R_DQUOTE] = ACTIONS(3288), - [anon_sym_co_await] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3286), - [anon_sym_requires] = ACTIONS(3286), - [sym_this] = ACTIONS(3286), + [1382] = { + [sym__expression] = STATE(3948), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1296] = { - [sym_identifier] = ACTIONS(3358), - [aux_sym_preproc_include_token1] = ACTIONS(3358), - [aux_sym_preproc_def_token1] = ACTIONS(3358), - [aux_sym_preproc_if_token1] = ACTIONS(3358), - [aux_sym_preproc_if_token2] = ACTIONS(3358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3358), - [sym_preproc_directive] = ACTIONS(3358), - [anon_sym_LPAREN2] = ACTIONS(3360), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3360), - [anon_sym___extension__] = ACTIONS(3358), - [anon_sym_typedef] = ACTIONS(3358), - [anon_sym_extern] = ACTIONS(3358), - [anon_sym___attribute__] = ACTIONS(3358), - [anon_sym_COLON_COLON] = ACTIONS(3360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3360), - [anon_sym___declspec] = ACTIONS(3358), - [anon_sym___based] = ACTIONS(3358), - [anon_sym___cdecl] = ACTIONS(3358), - [anon_sym___clrcall] = ACTIONS(3358), - [anon_sym___stdcall] = ACTIONS(3358), - [anon_sym___fastcall] = ACTIONS(3358), - [anon_sym___thiscall] = ACTIONS(3358), - [anon_sym___vectorcall] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_signed] = ACTIONS(3358), - [anon_sym_unsigned] = ACTIONS(3358), - [anon_sym_long] = ACTIONS(3358), - [anon_sym_short] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_register] = ACTIONS(3358), - [anon_sym_inline] = ACTIONS(3358), - [anon_sym___inline] = ACTIONS(3358), - [anon_sym___inline__] = ACTIONS(3358), - [anon_sym___forceinline] = ACTIONS(3358), - [anon_sym_thread_local] = ACTIONS(3358), - [anon_sym___thread] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_constexpr] = ACTIONS(3358), - [anon_sym_volatile] = ACTIONS(3358), - [anon_sym_restrict] = ACTIONS(3358), - [anon_sym___restrict__] = ACTIONS(3358), - [anon_sym__Atomic] = ACTIONS(3358), - [anon_sym__Noreturn] = ACTIONS(3358), - [anon_sym_noreturn] = ACTIONS(3358), - [anon_sym_mutable] = ACTIONS(3358), - [anon_sym_constinit] = ACTIONS(3358), - [anon_sym_consteval] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_struct] = ACTIONS(3358), - [anon_sym_union] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_case] = ACTIONS(3358), - [anon_sym_default] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_goto] = ACTIONS(3358), - [anon_sym_not] = ACTIONS(3358), - [anon_sym_compl] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3360), - [anon_sym_sizeof] = ACTIONS(3358), - [anon_sym___alignof__] = ACTIONS(3358), - [anon_sym___alignof] = ACTIONS(3358), - [anon_sym__alignof] = ACTIONS(3358), - [anon_sym_alignof] = ACTIONS(3358), - [anon_sym__Alignof] = ACTIONS(3358), - [anon_sym_offsetof] = ACTIONS(3358), - [anon_sym__Generic] = ACTIONS(3358), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3360), - [anon_sym_u_SQUOTE] = ACTIONS(3360), - [anon_sym_U_SQUOTE] = ACTIONS(3360), - [anon_sym_u8_SQUOTE] = ACTIONS(3360), - [anon_sym_SQUOTE] = ACTIONS(3360), - [anon_sym_L_DQUOTE] = ACTIONS(3360), - [anon_sym_u_DQUOTE] = ACTIONS(3360), - [anon_sym_U_DQUOTE] = ACTIONS(3360), - [anon_sym_u8_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [anon_sym_NULL] = ACTIONS(3358), - [anon_sym_nullptr] = ACTIONS(3358), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3358), - [anon_sym_decltype] = ACTIONS(3358), - [anon_sym_virtual] = ACTIONS(3358), - [anon_sym_alignas] = ACTIONS(3358), - [anon_sym_explicit] = ACTIONS(3358), - [anon_sym_typename] = ACTIONS(3358), - [anon_sym_template] = ACTIONS(3358), - [anon_sym_operator] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_static_assert] = ACTIONS(3358), - [anon_sym_concept] = ACTIONS(3358), - [anon_sym_co_return] = ACTIONS(3358), - [anon_sym_co_yield] = ACTIONS(3358), - [anon_sym_R_DQUOTE] = ACTIONS(3360), - [anon_sym_LR_DQUOTE] = ACTIONS(3360), - [anon_sym_uR_DQUOTE] = ACTIONS(3360), - [anon_sym_UR_DQUOTE] = ACTIONS(3360), - [anon_sym_u8R_DQUOTE] = ACTIONS(3360), - [anon_sym_co_await] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_requires] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), + [1383] = { + [sym__expression] = STATE(4289), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1297] = { - [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_extern] = ACTIONS(3119), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3119), - [anon_sym_constinit] = ACTIONS(3119), - [anon_sym_consteval] = 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), - [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), + [1384] = { + [sym__expression] = STATE(4153), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3119), - [anon_sym_decltype] = ACTIONS(3119), - [anon_sym_virtual] = ACTIONS(3119), - [anon_sym_alignas] = 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_using] = 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), - }, - [1298] = { - [sym_identifier] = ACTIONS(3352), - [aux_sym_preproc_include_token1] = ACTIONS(3352), - [aux_sym_preproc_def_token1] = ACTIONS(3352), - [aux_sym_preproc_if_token1] = ACTIONS(3352), - [aux_sym_preproc_if_token2] = ACTIONS(3352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3352), - [sym_preproc_directive] = ACTIONS(3352), - [anon_sym_LPAREN2] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3352), - [anon_sym_PLUS] = ACTIONS(3352), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_AMP_AMP] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym___extension__] = ACTIONS(3352), - [anon_sym_typedef] = ACTIONS(3352), - [anon_sym_extern] = ACTIONS(3352), - [anon_sym___attribute__] = ACTIONS(3352), - [anon_sym_COLON_COLON] = ACTIONS(3354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3354), - [anon_sym___declspec] = ACTIONS(3352), - [anon_sym___based] = ACTIONS(3352), - [anon_sym___cdecl] = ACTIONS(3352), - [anon_sym___clrcall] = ACTIONS(3352), - [anon_sym___stdcall] = ACTIONS(3352), - [anon_sym___fastcall] = ACTIONS(3352), - [anon_sym___thiscall] = ACTIONS(3352), - [anon_sym___vectorcall] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_signed] = ACTIONS(3352), - [anon_sym_unsigned] = ACTIONS(3352), - [anon_sym_long] = ACTIONS(3352), - [anon_sym_short] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_static] = ACTIONS(3352), - [anon_sym_register] = ACTIONS(3352), - [anon_sym_inline] = ACTIONS(3352), - [anon_sym___inline] = ACTIONS(3352), - [anon_sym___inline__] = ACTIONS(3352), - [anon_sym___forceinline] = ACTIONS(3352), - [anon_sym_thread_local] = ACTIONS(3352), - [anon_sym___thread] = ACTIONS(3352), - [anon_sym_const] = ACTIONS(3352), - [anon_sym_constexpr] = ACTIONS(3352), - [anon_sym_volatile] = ACTIONS(3352), - [anon_sym_restrict] = ACTIONS(3352), - [anon_sym___restrict__] = ACTIONS(3352), - [anon_sym__Atomic] = ACTIONS(3352), - [anon_sym__Noreturn] = ACTIONS(3352), - [anon_sym_noreturn] = ACTIONS(3352), - [anon_sym_mutable] = ACTIONS(3352), - [anon_sym_constinit] = ACTIONS(3352), - [anon_sym_consteval] = ACTIONS(3352), - [sym_primitive_type] = ACTIONS(3352), - [anon_sym_enum] = ACTIONS(3352), - [anon_sym_class] = ACTIONS(3352), - [anon_sym_struct] = ACTIONS(3352), - [anon_sym_union] = ACTIONS(3352), - [anon_sym_if] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3352), - [anon_sym_case] = ACTIONS(3352), - [anon_sym_default] = ACTIONS(3352), - [anon_sym_while] = ACTIONS(3352), - [anon_sym_do] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3352), - [anon_sym_return] = ACTIONS(3352), - [anon_sym_break] = ACTIONS(3352), - [anon_sym_continue] = ACTIONS(3352), - [anon_sym_goto] = ACTIONS(3352), - [anon_sym_not] = ACTIONS(3352), - [anon_sym_compl] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_sizeof] = ACTIONS(3352), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3352), - [anon_sym__Generic] = ACTIONS(3352), - [anon_sym_asm] = ACTIONS(3352), - [anon_sym___asm__] = ACTIONS(3352), - [sym_number_literal] = ACTIONS(3354), - [anon_sym_L_SQUOTE] = ACTIONS(3354), - [anon_sym_u_SQUOTE] = ACTIONS(3354), - [anon_sym_U_SQUOTE] = ACTIONS(3354), - [anon_sym_u8_SQUOTE] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_L_DQUOTE] = ACTIONS(3354), - [anon_sym_u_DQUOTE] = ACTIONS(3354), - [anon_sym_U_DQUOTE] = ACTIONS(3354), - [anon_sym_u8_DQUOTE] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [sym_true] = ACTIONS(3352), - [sym_false] = ACTIONS(3352), - [anon_sym_NULL] = ACTIONS(3352), - [anon_sym_nullptr] = ACTIONS(3352), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3352), - [anon_sym_decltype] = ACTIONS(3352), - [anon_sym_virtual] = ACTIONS(3352), - [anon_sym_alignas] = ACTIONS(3352), - [anon_sym_explicit] = ACTIONS(3352), - [anon_sym_typename] = ACTIONS(3352), - [anon_sym_template] = ACTIONS(3352), - [anon_sym_operator] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3352), - [anon_sym_delete] = ACTIONS(3352), - [anon_sym_throw] = ACTIONS(3352), - [anon_sym_namespace] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3352), - [anon_sym_static_assert] = ACTIONS(3352), - [anon_sym_concept] = ACTIONS(3352), - [anon_sym_co_return] = ACTIONS(3352), - [anon_sym_co_yield] = ACTIONS(3352), - [anon_sym_R_DQUOTE] = ACTIONS(3354), - [anon_sym_LR_DQUOTE] = ACTIONS(3354), - [anon_sym_uR_DQUOTE] = ACTIONS(3354), - [anon_sym_UR_DQUOTE] = ACTIONS(3354), - [anon_sym_u8R_DQUOTE] = ACTIONS(3354), - [anon_sym_co_await] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3352), - [anon_sym_requires] = ACTIONS(3352), - [sym_this] = ACTIONS(3352), - }, - [1299] = { - [sym_identifier] = ACTIONS(3195), - [aux_sym_preproc_include_token1] = ACTIONS(3195), - [aux_sym_preproc_def_token1] = ACTIONS(3195), - [aux_sym_preproc_if_token1] = ACTIONS(3195), - [aux_sym_preproc_if_token2] = ACTIONS(3195), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3195), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3195), - [sym_preproc_directive] = ACTIONS(3195), - [anon_sym_LPAREN2] = ACTIONS(3197), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_SEMI] = ACTIONS(3197), - [anon_sym___extension__] = ACTIONS(3195), - [anon_sym_typedef] = ACTIONS(3195), - [anon_sym_extern] = ACTIONS(3195), - [anon_sym___attribute__] = ACTIONS(3195), - [anon_sym_COLON_COLON] = ACTIONS(3197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3197), - [anon_sym___declspec] = ACTIONS(3195), - [anon_sym___based] = ACTIONS(3195), - [anon_sym___cdecl] = ACTIONS(3195), - [anon_sym___clrcall] = ACTIONS(3195), - [anon_sym___stdcall] = ACTIONS(3195), - [anon_sym___fastcall] = ACTIONS(3195), - [anon_sym___thiscall] = ACTIONS(3195), - [anon_sym___vectorcall] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_signed] = ACTIONS(3195), - [anon_sym_unsigned] = ACTIONS(3195), - [anon_sym_long] = ACTIONS(3195), - [anon_sym_short] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_static] = ACTIONS(3195), - [anon_sym_register] = ACTIONS(3195), - [anon_sym_inline] = ACTIONS(3195), - [anon_sym___inline] = ACTIONS(3195), - [anon_sym___inline__] = ACTIONS(3195), - [anon_sym___forceinline] = ACTIONS(3195), - [anon_sym_thread_local] = ACTIONS(3195), - [anon_sym___thread] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_constexpr] = ACTIONS(3195), - [anon_sym_volatile] = ACTIONS(3195), - [anon_sym_restrict] = ACTIONS(3195), - [anon_sym___restrict__] = ACTIONS(3195), - [anon_sym__Atomic] = ACTIONS(3195), - [anon_sym__Noreturn] = ACTIONS(3195), - [anon_sym_noreturn] = ACTIONS(3195), - [anon_sym_mutable] = ACTIONS(3195), - [anon_sym_constinit] = ACTIONS(3195), - [anon_sym_consteval] = ACTIONS(3195), - [sym_primitive_type] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3195), - [anon_sym_class] = ACTIONS(3195), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_union] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_switch] = ACTIONS(3195), - [anon_sym_case] = ACTIONS(3195), - [anon_sym_default] = ACTIONS(3195), - [anon_sym_while] = ACTIONS(3195), - [anon_sym_do] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_goto] = ACTIONS(3195), - [anon_sym_not] = ACTIONS(3195), - [anon_sym_compl] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_sizeof] = ACTIONS(3195), - [anon_sym___alignof__] = ACTIONS(3195), - [anon_sym___alignof] = ACTIONS(3195), - [anon_sym__alignof] = ACTIONS(3195), - [anon_sym_alignof] = ACTIONS(3195), - [anon_sym__Alignof] = ACTIONS(3195), - [anon_sym_offsetof] = ACTIONS(3195), - [anon_sym__Generic] = ACTIONS(3195), - [anon_sym_asm] = ACTIONS(3195), - [anon_sym___asm__] = ACTIONS(3195), - [sym_number_literal] = ACTIONS(3197), - [anon_sym_L_SQUOTE] = ACTIONS(3197), - [anon_sym_u_SQUOTE] = ACTIONS(3197), - [anon_sym_U_SQUOTE] = ACTIONS(3197), - [anon_sym_u8_SQUOTE] = ACTIONS(3197), - [anon_sym_SQUOTE] = ACTIONS(3197), - [anon_sym_L_DQUOTE] = ACTIONS(3197), - [anon_sym_u_DQUOTE] = ACTIONS(3197), - [anon_sym_U_DQUOTE] = ACTIONS(3197), - [anon_sym_u8_DQUOTE] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3197), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [anon_sym_NULL] = ACTIONS(3195), - [anon_sym_nullptr] = ACTIONS(3195), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3195), - [anon_sym_decltype] = ACTIONS(3195), - [anon_sym_virtual] = ACTIONS(3195), - [anon_sym_alignas] = ACTIONS(3195), - [anon_sym_explicit] = ACTIONS(3195), - [anon_sym_typename] = ACTIONS(3195), - [anon_sym_template] = ACTIONS(3195), - [anon_sym_operator] = ACTIONS(3195), - [anon_sym_try] = ACTIONS(3195), - [anon_sym_delete] = ACTIONS(3195), - [anon_sym_throw] = ACTIONS(3195), - [anon_sym_namespace] = ACTIONS(3195), - [anon_sym_using] = ACTIONS(3195), - [anon_sym_static_assert] = ACTIONS(3195), - [anon_sym_concept] = ACTIONS(3195), - [anon_sym_co_return] = ACTIONS(3195), - [anon_sym_co_yield] = ACTIONS(3195), - [anon_sym_R_DQUOTE] = ACTIONS(3197), - [anon_sym_LR_DQUOTE] = ACTIONS(3197), - [anon_sym_uR_DQUOTE] = ACTIONS(3197), - [anon_sym_UR_DQUOTE] = ACTIONS(3197), - [anon_sym_u8R_DQUOTE] = ACTIONS(3197), - [anon_sym_co_await] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3195), - [anon_sym_requires] = ACTIONS(3195), - [sym_this] = ACTIONS(3195), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1300] = { - [sym_identifier] = ACTIONS(3384), - [aux_sym_preproc_include_token1] = ACTIONS(3384), - [aux_sym_preproc_def_token1] = ACTIONS(3384), - [aux_sym_preproc_if_token1] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), - [sym_preproc_directive] = ACTIONS(3384), - [anon_sym_LPAREN2] = ACTIONS(3386), - [anon_sym_BANG] = ACTIONS(3386), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3384), - [anon_sym_PLUS] = ACTIONS(3384), - [anon_sym_STAR] = ACTIONS(3386), - [anon_sym_AMP_AMP] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3384), - [anon_sym_SEMI] = ACTIONS(3386), - [anon_sym___extension__] = ACTIONS(3384), - [anon_sym_typedef] = ACTIONS(3384), - [anon_sym_extern] = ACTIONS(3384), - [anon_sym___attribute__] = ACTIONS(3384), - [anon_sym_COLON_COLON] = ACTIONS(3386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3386), - [anon_sym___declspec] = ACTIONS(3384), - [anon_sym___based] = ACTIONS(3384), - [anon_sym___cdecl] = ACTIONS(3384), - [anon_sym___clrcall] = ACTIONS(3384), - [anon_sym___stdcall] = ACTIONS(3384), - [anon_sym___fastcall] = ACTIONS(3384), - [anon_sym___thiscall] = ACTIONS(3384), - [anon_sym___vectorcall] = ACTIONS(3384), - [anon_sym_LBRACE] = ACTIONS(3386), - [anon_sym_RBRACE] = ACTIONS(3386), - [anon_sym_signed] = ACTIONS(3384), - [anon_sym_unsigned] = ACTIONS(3384), - [anon_sym_long] = ACTIONS(3384), - [anon_sym_short] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_static] = ACTIONS(3384), - [anon_sym_register] = ACTIONS(3384), - [anon_sym_inline] = ACTIONS(3384), - [anon_sym___inline] = ACTIONS(3384), - [anon_sym___inline__] = ACTIONS(3384), - [anon_sym___forceinline] = ACTIONS(3384), - [anon_sym_thread_local] = ACTIONS(3384), - [anon_sym___thread] = ACTIONS(3384), - [anon_sym_const] = ACTIONS(3384), - [anon_sym_constexpr] = ACTIONS(3384), - [anon_sym_volatile] = ACTIONS(3384), - [anon_sym_restrict] = ACTIONS(3384), - [anon_sym___restrict__] = ACTIONS(3384), - [anon_sym__Atomic] = ACTIONS(3384), - [anon_sym__Noreturn] = ACTIONS(3384), - [anon_sym_noreturn] = ACTIONS(3384), - [anon_sym_mutable] = ACTIONS(3384), - [anon_sym_constinit] = ACTIONS(3384), - [anon_sym_consteval] = ACTIONS(3384), - [sym_primitive_type] = ACTIONS(3384), - [anon_sym_enum] = ACTIONS(3384), - [anon_sym_class] = ACTIONS(3384), - [anon_sym_struct] = ACTIONS(3384), - [anon_sym_union] = ACTIONS(3384), - [anon_sym_if] = ACTIONS(3384), - [anon_sym_switch] = ACTIONS(3384), - [anon_sym_case] = ACTIONS(3384), - [anon_sym_default] = ACTIONS(3384), - [anon_sym_while] = ACTIONS(3384), - [anon_sym_do] = ACTIONS(3384), - [anon_sym_for] = ACTIONS(3384), - [anon_sym_return] = ACTIONS(3384), - [anon_sym_break] = ACTIONS(3384), - [anon_sym_continue] = ACTIONS(3384), - [anon_sym_goto] = ACTIONS(3384), - [anon_sym_not] = ACTIONS(3384), - [anon_sym_compl] = ACTIONS(3384), - [anon_sym_DASH_DASH] = ACTIONS(3386), - [anon_sym_PLUS_PLUS] = ACTIONS(3386), - [anon_sym_sizeof] = ACTIONS(3384), - [anon_sym___alignof__] = ACTIONS(3384), - [anon_sym___alignof] = ACTIONS(3384), - [anon_sym__alignof] = ACTIONS(3384), - [anon_sym_alignof] = ACTIONS(3384), - [anon_sym__Alignof] = ACTIONS(3384), - [anon_sym_offsetof] = ACTIONS(3384), - [anon_sym__Generic] = ACTIONS(3384), - [anon_sym_asm] = ACTIONS(3384), - [anon_sym___asm__] = ACTIONS(3384), - [sym_number_literal] = ACTIONS(3386), - [anon_sym_L_SQUOTE] = ACTIONS(3386), - [anon_sym_u_SQUOTE] = ACTIONS(3386), - [anon_sym_U_SQUOTE] = ACTIONS(3386), - [anon_sym_u8_SQUOTE] = ACTIONS(3386), - [anon_sym_SQUOTE] = ACTIONS(3386), - [anon_sym_L_DQUOTE] = ACTIONS(3386), - [anon_sym_u_DQUOTE] = ACTIONS(3386), - [anon_sym_U_DQUOTE] = ACTIONS(3386), - [anon_sym_u8_DQUOTE] = ACTIONS(3386), - [anon_sym_DQUOTE] = ACTIONS(3386), - [sym_true] = ACTIONS(3384), - [sym_false] = ACTIONS(3384), - [anon_sym_NULL] = ACTIONS(3384), - [anon_sym_nullptr] = ACTIONS(3384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3384), - [anon_sym_decltype] = ACTIONS(3384), - [anon_sym_virtual] = ACTIONS(3384), - [anon_sym_alignas] = ACTIONS(3384), - [anon_sym_explicit] = ACTIONS(3384), - [anon_sym_typename] = ACTIONS(3384), - [anon_sym_template] = ACTIONS(3384), - [anon_sym_operator] = ACTIONS(3384), - [anon_sym_try] = ACTIONS(3384), - [anon_sym_delete] = ACTIONS(3384), - [anon_sym_throw] = ACTIONS(3384), - [anon_sym_namespace] = ACTIONS(3384), - [anon_sym_using] = ACTIONS(3384), - [anon_sym_static_assert] = ACTIONS(3384), - [anon_sym_concept] = ACTIONS(3384), - [anon_sym_co_return] = ACTIONS(3384), - [anon_sym_co_yield] = ACTIONS(3384), - [anon_sym_R_DQUOTE] = ACTIONS(3386), - [anon_sym_LR_DQUOTE] = ACTIONS(3386), - [anon_sym_uR_DQUOTE] = ACTIONS(3386), - [anon_sym_UR_DQUOTE] = ACTIONS(3386), - [anon_sym_u8R_DQUOTE] = ACTIONS(3386), - [anon_sym_co_await] = ACTIONS(3384), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3384), - [sym_this] = ACTIONS(3384), + [1385] = { + [sym__expression] = STATE(4020), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1301] = { - [sym_identifier] = ACTIONS(3380), - [aux_sym_preproc_include_token1] = ACTIONS(3380), - [aux_sym_preproc_def_token1] = ACTIONS(3380), - [aux_sym_preproc_if_token1] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), - [sym_preproc_directive] = ACTIONS(3380), - [anon_sym_LPAREN2] = ACTIONS(3382), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_TILDE] = ACTIONS(3382), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_AMP_AMP] = ACTIONS(3382), - [anon_sym_AMP] = ACTIONS(3380), - [anon_sym_SEMI] = ACTIONS(3382), - [anon_sym___extension__] = ACTIONS(3380), - [anon_sym_typedef] = ACTIONS(3380), - [anon_sym_extern] = ACTIONS(3380), - [anon_sym___attribute__] = ACTIONS(3380), - [anon_sym_COLON_COLON] = ACTIONS(3382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), - [anon_sym___declspec] = ACTIONS(3380), - [anon_sym___based] = ACTIONS(3380), - [anon_sym___cdecl] = ACTIONS(3380), - [anon_sym___clrcall] = ACTIONS(3380), - [anon_sym___stdcall] = ACTIONS(3380), - [anon_sym___fastcall] = ACTIONS(3380), - [anon_sym___thiscall] = ACTIONS(3380), - [anon_sym___vectorcall] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3382), - [anon_sym_RBRACE] = ACTIONS(3382), - [anon_sym_signed] = ACTIONS(3380), - [anon_sym_unsigned] = ACTIONS(3380), - [anon_sym_long] = ACTIONS(3380), - [anon_sym_short] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_register] = ACTIONS(3380), - [anon_sym_inline] = ACTIONS(3380), - [anon_sym___inline] = ACTIONS(3380), - [anon_sym___inline__] = ACTIONS(3380), - [anon_sym___forceinline] = ACTIONS(3380), - [anon_sym_thread_local] = ACTIONS(3380), - [anon_sym___thread] = ACTIONS(3380), - [anon_sym_const] = ACTIONS(3380), - [anon_sym_constexpr] = ACTIONS(3380), - [anon_sym_volatile] = ACTIONS(3380), - [anon_sym_restrict] = ACTIONS(3380), - [anon_sym___restrict__] = ACTIONS(3380), - [anon_sym__Atomic] = ACTIONS(3380), - [anon_sym__Noreturn] = ACTIONS(3380), - [anon_sym_noreturn] = ACTIONS(3380), - [anon_sym_mutable] = ACTIONS(3380), - [anon_sym_constinit] = ACTIONS(3380), - [anon_sym_consteval] = ACTIONS(3380), - [sym_primitive_type] = ACTIONS(3380), - [anon_sym_enum] = ACTIONS(3380), - [anon_sym_class] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(3380), - [anon_sym_union] = ACTIONS(3380), - [anon_sym_if] = ACTIONS(3380), - [anon_sym_switch] = ACTIONS(3380), - [anon_sym_case] = ACTIONS(3380), - [anon_sym_default] = ACTIONS(3380), - [anon_sym_while] = ACTIONS(3380), - [anon_sym_do] = ACTIONS(3380), - [anon_sym_for] = ACTIONS(3380), - [anon_sym_return] = ACTIONS(3380), - [anon_sym_break] = ACTIONS(3380), - [anon_sym_continue] = ACTIONS(3380), - [anon_sym_goto] = ACTIONS(3380), - [anon_sym_not] = ACTIONS(3380), - [anon_sym_compl] = ACTIONS(3380), - [anon_sym_DASH_DASH] = ACTIONS(3382), - [anon_sym_PLUS_PLUS] = ACTIONS(3382), - [anon_sym_sizeof] = ACTIONS(3380), - [anon_sym___alignof__] = ACTIONS(3380), - [anon_sym___alignof] = ACTIONS(3380), - [anon_sym__alignof] = ACTIONS(3380), - [anon_sym_alignof] = ACTIONS(3380), - [anon_sym__Alignof] = ACTIONS(3380), - [anon_sym_offsetof] = ACTIONS(3380), - [anon_sym__Generic] = ACTIONS(3380), - [anon_sym_asm] = ACTIONS(3380), - [anon_sym___asm__] = ACTIONS(3380), - [sym_number_literal] = ACTIONS(3382), - [anon_sym_L_SQUOTE] = ACTIONS(3382), - [anon_sym_u_SQUOTE] = ACTIONS(3382), - [anon_sym_U_SQUOTE] = ACTIONS(3382), - [anon_sym_u8_SQUOTE] = ACTIONS(3382), - [anon_sym_SQUOTE] = ACTIONS(3382), - [anon_sym_L_DQUOTE] = ACTIONS(3382), - [anon_sym_u_DQUOTE] = ACTIONS(3382), - [anon_sym_U_DQUOTE] = ACTIONS(3382), - [anon_sym_u8_DQUOTE] = ACTIONS(3382), - [anon_sym_DQUOTE] = ACTIONS(3382), - [sym_true] = ACTIONS(3380), - [sym_false] = ACTIONS(3380), - [anon_sym_NULL] = ACTIONS(3380), - [anon_sym_nullptr] = ACTIONS(3380), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3380), - [anon_sym_decltype] = ACTIONS(3380), - [anon_sym_virtual] = ACTIONS(3380), - [anon_sym_alignas] = ACTIONS(3380), - [anon_sym_explicit] = ACTIONS(3380), - [anon_sym_typename] = ACTIONS(3380), - [anon_sym_template] = ACTIONS(3380), - [anon_sym_operator] = ACTIONS(3380), - [anon_sym_try] = ACTIONS(3380), - [anon_sym_delete] = ACTIONS(3380), - [anon_sym_throw] = ACTIONS(3380), - [anon_sym_namespace] = ACTIONS(3380), - [anon_sym_using] = ACTIONS(3380), - [anon_sym_static_assert] = ACTIONS(3380), - [anon_sym_concept] = ACTIONS(3380), - [anon_sym_co_return] = ACTIONS(3380), - [anon_sym_co_yield] = ACTIONS(3380), - [anon_sym_R_DQUOTE] = ACTIONS(3382), - [anon_sym_LR_DQUOTE] = ACTIONS(3382), - [anon_sym_uR_DQUOTE] = ACTIONS(3382), - [anon_sym_UR_DQUOTE] = ACTIONS(3382), - [anon_sym_u8R_DQUOTE] = ACTIONS(3382), - [anon_sym_co_await] = ACTIONS(3380), - [anon_sym_new] = ACTIONS(3380), - [anon_sym_requires] = ACTIONS(3380), - [sym_this] = ACTIONS(3380), + [1386] = { + [sym__expression] = STATE(4286), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1302] = { - [sym_identifier] = ACTIONS(3332), - [aux_sym_preproc_include_token1] = ACTIONS(3332), - [aux_sym_preproc_def_token1] = ACTIONS(3332), - [aux_sym_preproc_if_token1] = ACTIONS(3332), - [aux_sym_preproc_if_token2] = ACTIONS(3332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3332), - [sym_preproc_directive] = ACTIONS(3332), - [anon_sym_LPAREN2] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_STAR] = ACTIONS(3334), - [anon_sym_AMP_AMP] = ACTIONS(3334), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym___extension__] = ACTIONS(3332), - [anon_sym_typedef] = ACTIONS(3332), - [anon_sym_extern] = ACTIONS(3332), - [anon_sym___attribute__] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3334), - [anon_sym___declspec] = ACTIONS(3332), - [anon_sym___based] = ACTIONS(3332), - [anon_sym___cdecl] = ACTIONS(3332), - [anon_sym___clrcall] = ACTIONS(3332), - [anon_sym___stdcall] = ACTIONS(3332), - [anon_sym___fastcall] = ACTIONS(3332), - [anon_sym___thiscall] = ACTIONS(3332), - [anon_sym___vectorcall] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3332), - [anon_sym_unsigned] = ACTIONS(3332), - [anon_sym_long] = ACTIONS(3332), - [anon_sym_short] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_register] = ACTIONS(3332), - [anon_sym_inline] = ACTIONS(3332), - [anon_sym___inline] = ACTIONS(3332), - [anon_sym___inline__] = ACTIONS(3332), - [anon_sym___forceinline] = ACTIONS(3332), - [anon_sym_thread_local] = ACTIONS(3332), - [anon_sym___thread] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_constexpr] = ACTIONS(3332), - [anon_sym_volatile] = ACTIONS(3332), - [anon_sym_restrict] = ACTIONS(3332), - [anon_sym___restrict__] = ACTIONS(3332), - [anon_sym__Atomic] = ACTIONS(3332), - [anon_sym__Noreturn] = ACTIONS(3332), - [anon_sym_noreturn] = ACTIONS(3332), - [anon_sym_mutable] = ACTIONS(3332), - [anon_sym_constinit] = ACTIONS(3332), - [anon_sym_consteval] = ACTIONS(3332), - [sym_primitive_type] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_struct] = ACTIONS(3332), - [anon_sym_union] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_case] = ACTIONS(3332), - [anon_sym_default] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_goto] = ACTIONS(3332), - [anon_sym_not] = ACTIONS(3332), - [anon_sym_compl] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_sizeof] = ACTIONS(3332), - [anon_sym___alignof__] = ACTIONS(3332), - [anon_sym___alignof] = ACTIONS(3332), - [anon_sym__alignof] = ACTIONS(3332), - [anon_sym_alignof] = ACTIONS(3332), - [anon_sym__Alignof] = ACTIONS(3332), - [anon_sym_offsetof] = ACTIONS(3332), - [anon_sym__Generic] = ACTIONS(3332), - [anon_sym_asm] = ACTIONS(3332), - [anon_sym___asm__] = ACTIONS(3332), - [sym_number_literal] = ACTIONS(3334), - [anon_sym_L_SQUOTE] = ACTIONS(3334), - [anon_sym_u_SQUOTE] = ACTIONS(3334), - [anon_sym_U_SQUOTE] = ACTIONS(3334), - [anon_sym_u8_SQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_L_DQUOTE] = ACTIONS(3334), - [anon_sym_u_DQUOTE] = ACTIONS(3334), - [anon_sym_U_DQUOTE] = ACTIONS(3334), - [anon_sym_u8_DQUOTE] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [anon_sym_NULL] = ACTIONS(3332), - [anon_sym_nullptr] = ACTIONS(3332), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3332), - [anon_sym_decltype] = ACTIONS(3332), - [anon_sym_virtual] = ACTIONS(3332), - [anon_sym_alignas] = ACTIONS(3332), - [anon_sym_explicit] = ACTIONS(3332), - [anon_sym_typename] = ACTIONS(3332), - [anon_sym_template] = ACTIONS(3332), - [anon_sym_operator] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_static_assert] = ACTIONS(3332), - [anon_sym_concept] = ACTIONS(3332), - [anon_sym_co_return] = ACTIONS(3332), - [anon_sym_co_yield] = ACTIONS(3332), - [anon_sym_R_DQUOTE] = ACTIONS(3334), - [anon_sym_LR_DQUOTE] = ACTIONS(3334), - [anon_sym_uR_DQUOTE] = ACTIONS(3334), - [anon_sym_UR_DQUOTE] = ACTIONS(3334), - [anon_sym_u8R_DQUOTE] = ACTIONS(3334), - [anon_sym_co_await] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_requires] = ACTIONS(3332), - [sym_this] = ACTIONS(3332), + [1387] = { + [sym__expression] = STATE(3918), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(4483), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1303] = { - [sym_identifier] = ACTIONS(3418), - [aux_sym_preproc_include_token1] = ACTIONS(3418), - [aux_sym_preproc_def_token1] = ACTIONS(3418), - [aux_sym_preproc_if_token1] = ACTIONS(3418), - [aux_sym_preproc_if_token2] = ACTIONS(3418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3418), - [sym_preproc_directive] = ACTIONS(3418), - [anon_sym_LPAREN2] = ACTIONS(3420), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_TILDE] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3418), - [anon_sym_PLUS] = ACTIONS(3418), - [anon_sym_STAR] = ACTIONS(3420), - [anon_sym_AMP_AMP] = ACTIONS(3420), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_SEMI] = ACTIONS(3420), - [anon_sym___extension__] = ACTIONS(3418), - [anon_sym_typedef] = ACTIONS(3418), - [anon_sym_extern] = ACTIONS(3418), - [anon_sym___attribute__] = ACTIONS(3418), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3420), - [anon_sym___declspec] = ACTIONS(3418), - [anon_sym___based] = ACTIONS(3418), - [anon_sym___cdecl] = ACTIONS(3418), - [anon_sym___clrcall] = ACTIONS(3418), - [anon_sym___stdcall] = ACTIONS(3418), - [anon_sym___fastcall] = ACTIONS(3418), - [anon_sym___thiscall] = ACTIONS(3418), - [anon_sym___vectorcall] = ACTIONS(3418), - [anon_sym_LBRACE] = ACTIONS(3420), - [anon_sym_signed] = ACTIONS(3418), - [anon_sym_unsigned] = ACTIONS(3418), - [anon_sym_long] = ACTIONS(3418), - [anon_sym_short] = ACTIONS(3418), - [anon_sym_LBRACK] = ACTIONS(3418), - [anon_sym_static] = ACTIONS(3418), - [anon_sym_register] = ACTIONS(3418), - [anon_sym_inline] = ACTIONS(3418), - [anon_sym___inline] = ACTIONS(3418), - [anon_sym___inline__] = ACTIONS(3418), - [anon_sym___forceinline] = ACTIONS(3418), - [anon_sym_thread_local] = ACTIONS(3418), - [anon_sym___thread] = ACTIONS(3418), - [anon_sym_const] = ACTIONS(3418), - [anon_sym_constexpr] = ACTIONS(3418), - [anon_sym_volatile] = ACTIONS(3418), - [anon_sym_restrict] = ACTIONS(3418), - [anon_sym___restrict__] = ACTIONS(3418), - [anon_sym__Atomic] = ACTIONS(3418), - [anon_sym__Noreturn] = ACTIONS(3418), - [anon_sym_noreturn] = ACTIONS(3418), - [anon_sym_mutable] = ACTIONS(3418), - [anon_sym_constinit] = ACTIONS(3418), - [anon_sym_consteval] = ACTIONS(3418), - [sym_primitive_type] = ACTIONS(3418), - [anon_sym_enum] = ACTIONS(3418), - [anon_sym_class] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(3418), - [anon_sym_union] = ACTIONS(3418), - [anon_sym_if] = ACTIONS(3418), - [anon_sym_switch] = ACTIONS(3418), - [anon_sym_case] = ACTIONS(3418), - [anon_sym_default] = ACTIONS(3418), - [anon_sym_while] = ACTIONS(3418), - [anon_sym_do] = ACTIONS(3418), - [anon_sym_for] = ACTIONS(3418), - [anon_sym_return] = ACTIONS(3418), - [anon_sym_break] = ACTIONS(3418), - [anon_sym_continue] = ACTIONS(3418), - [anon_sym_goto] = ACTIONS(3418), - [anon_sym_not] = ACTIONS(3418), - [anon_sym_compl] = ACTIONS(3418), - [anon_sym_DASH_DASH] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3420), - [anon_sym_sizeof] = ACTIONS(3418), - [anon_sym___alignof__] = ACTIONS(3418), - [anon_sym___alignof] = ACTIONS(3418), - [anon_sym__alignof] = ACTIONS(3418), - [anon_sym_alignof] = ACTIONS(3418), - [anon_sym__Alignof] = ACTIONS(3418), - [anon_sym_offsetof] = ACTIONS(3418), - [anon_sym__Generic] = ACTIONS(3418), - [anon_sym_asm] = ACTIONS(3418), - [anon_sym___asm__] = ACTIONS(3418), - [sym_number_literal] = ACTIONS(3420), - [anon_sym_L_SQUOTE] = ACTIONS(3420), - [anon_sym_u_SQUOTE] = ACTIONS(3420), - [anon_sym_U_SQUOTE] = ACTIONS(3420), - [anon_sym_u8_SQUOTE] = ACTIONS(3420), - [anon_sym_SQUOTE] = ACTIONS(3420), - [anon_sym_L_DQUOTE] = ACTIONS(3420), - [anon_sym_u_DQUOTE] = ACTIONS(3420), - [anon_sym_U_DQUOTE] = ACTIONS(3420), - [anon_sym_u8_DQUOTE] = ACTIONS(3420), - [anon_sym_DQUOTE] = ACTIONS(3420), - [sym_true] = ACTIONS(3418), - [sym_false] = ACTIONS(3418), - [anon_sym_NULL] = ACTIONS(3418), - [anon_sym_nullptr] = ACTIONS(3418), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3418), - [anon_sym_decltype] = ACTIONS(3418), - [anon_sym_virtual] = ACTIONS(3418), - [anon_sym_alignas] = ACTIONS(3418), - [anon_sym_explicit] = ACTIONS(3418), - [anon_sym_typename] = ACTIONS(3418), - [anon_sym_template] = ACTIONS(3418), - [anon_sym_operator] = ACTIONS(3418), - [anon_sym_try] = ACTIONS(3418), - [anon_sym_delete] = ACTIONS(3418), - [anon_sym_throw] = ACTIONS(3418), - [anon_sym_namespace] = ACTIONS(3418), - [anon_sym_using] = ACTIONS(3418), - [anon_sym_static_assert] = ACTIONS(3418), - [anon_sym_concept] = ACTIONS(3418), - [anon_sym_co_return] = ACTIONS(3418), - [anon_sym_co_yield] = ACTIONS(3418), - [anon_sym_R_DQUOTE] = ACTIONS(3420), - [anon_sym_LR_DQUOTE] = ACTIONS(3420), - [anon_sym_uR_DQUOTE] = ACTIONS(3420), - [anon_sym_UR_DQUOTE] = ACTIONS(3420), - [anon_sym_u8R_DQUOTE] = ACTIONS(3420), - [anon_sym_co_await] = ACTIONS(3418), - [anon_sym_new] = ACTIONS(3418), - [anon_sym_requires] = ACTIONS(3418), - [sym_this] = ACTIONS(3418), + [1388] = { + [sym__expression] = STATE(4021), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1304] = { - [sym_identifier] = ACTIONS(3432), - [aux_sym_preproc_include_token1] = ACTIONS(3432), - [aux_sym_preproc_def_token1] = ACTIONS(3432), - [aux_sym_preproc_if_token1] = ACTIONS(3432), - [aux_sym_preproc_if_token2] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [sym_preproc_directive] = ACTIONS(3432), - [anon_sym_LPAREN2] = ACTIONS(3434), - [anon_sym_BANG] = ACTIONS(3434), - [anon_sym_TILDE] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(3434), - [anon_sym_AMP_AMP] = ACTIONS(3434), - [anon_sym_AMP] = ACTIONS(3432), - [anon_sym_SEMI] = ACTIONS(3434), - [anon_sym___extension__] = ACTIONS(3432), - [anon_sym_typedef] = ACTIONS(3432), - [anon_sym_extern] = ACTIONS(3432), - [anon_sym___attribute__] = ACTIONS(3432), - [anon_sym_COLON_COLON] = ACTIONS(3434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3434), - [anon_sym___declspec] = ACTIONS(3432), - [anon_sym___based] = ACTIONS(3432), - [anon_sym___cdecl] = ACTIONS(3432), - [anon_sym___clrcall] = ACTIONS(3432), - [anon_sym___stdcall] = ACTIONS(3432), - [anon_sym___fastcall] = ACTIONS(3432), - [anon_sym___thiscall] = ACTIONS(3432), - [anon_sym___vectorcall] = ACTIONS(3432), - [anon_sym_LBRACE] = ACTIONS(3434), - [anon_sym_signed] = ACTIONS(3432), - [anon_sym_unsigned] = ACTIONS(3432), - [anon_sym_long] = ACTIONS(3432), - [anon_sym_short] = ACTIONS(3432), - [anon_sym_LBRACK] = ACTIONS(3432), - [anon_sym_static] = ACTIONS(3432), - [anon_sym_register] = ACTIONS(3432), - [anon_sym_inline] = ACTIONS(3432), - [anon_sym___inline] = ACTIONS(3432), - [anon_sym___inline__] = ACTIONS(3432), - [anon_sym___forceinline] = ACTIONS(3432), - [anon_sym_thread_local] = ACTIONS(3432), - [anon_sym___thread] = ACTIONS(3432), - [anon_sym_const] = ACTIONS(3432), - [anon_sym_constexpr] = ACTIONS(3432), - [anon_sym_volatile] = ACTIONS(3432), - [anon_sym_restrict] = ACTIONS(3432), - [anon_sym___restrict__] = ACTIONS(3432), - [anon_sym__Atomic] = ACTIONS(3432), - [anon_sym__Noreturn] = ACTIONS(3432), - [anon_sym_noreturn] = ACTIONS(3432), - [anon_sym_mutable] = ACTIONS(3432), - [anon_sym_constinit] = ACTIONS(3432), - [anon_sym_consteval] = ACTIONS(3432), - [sym_primitive_type] = ACTIONS(3432), - [anon_sym_enum] = ACTIONS(3432), - [anon_sym_class] = ACTIONS(3432), - [anon_sym_struct] = ACTIONS(3432), - [anon_sym_union] = ACTIONS(3432), - [anon_sym_if] = ACTIONS(3432), - [anon_sym_switch] = ACTIONS(3432), - [anon_sym_case] = ACTIONS(3432), - [anon_sym_default] = ACTIONS(3432), - [anon_sym_while] = ACTIONS(3432), - [anon_sym_do] = ACTIONS(3432), - [anon_sym_for] = ACTIONS(3432), - [anon_sym_return] = ACTIONS(3432), - [anon_sym_break] = ACTIONS(3432), - [anon_sym_continue] = ACTIONS(3432), - [anon_sym_goto] = ACTIONS(3432), - [anon_sym_not] = ACTIONS(3432), - [anon_sym_compl] = ACTIONS(3432), - [anon_sym_DASH_DASH] = ACTIONS(3434), - [anon_sym_PLUS_PLUS] = ACTIONS(3434), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym___alignof__] = ACTIONS(3432), - [anon_sym___alignof] = ACTIONS(3432), - [anon_sym__alignof] = ACTIONS(3432), - [anon_sym_alignof] = ACTIONS(3432), - [anon_sym__Alignof] = ACTIONS(3432), - [anon_sym_offsetof] = ACTIONS(3432), - [anon_sym__Generic] = ACTIONS(3432), - [anon_sym_asm] = ACTIONS(3432), - [anon_sym___asm__] = ACTIONS(3432), - [sym_number_literal] = ACTIONS(3434), - [anon_sym_L_SQUOTE] = ACTIONS(3434), - [anon_sym_u_SQUOTE] = ACTIONS(3434), - [anon_sym_U_SQUOTE] = ACTIONS(3434), - [anon_sym_u8_SQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3434), - [anon_sym_L_DQUOTE] = ACTIONS(3434), - [anon_sym_u_DQUOTE] = ACTIONS(3434), - [anon_sym_U_DQUOTE] = ACTIONS(3434), - [anon_sym_u8_DQUOTE] = ACTIONS(3434), - [anon_sym_DQUOTE] = ACTIONS(3434), - [sym_true] = ACTIONS(3432), - [sym_false] = ACTIONS(3432), - [anon_sym_NULL] = ACTIONS(3432), - [anon_sym_nullptr] = ACTIONS(3432), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3432), - [anon_sym_decltype] = ACTIONS(3432), - [anon_sym_virtual] = ACTIONS(3432), - [anon_sym_alignas] = ACTIONS(3432), - [anon_sym_explicit] = ACTIONS(3432), - [anon_sym_typename] = ACTIONS(3432), - [anon_sym_template] = ACTIONS(3432), - [anon_sym_operator] = ACTIONS(3432), - [anon_sym_try] = ACTIONS(3432), - [anon_sym_delete] = ACTIONS(3432), - [anon_sym_throw] = ACTIONS(3432), - [anon_sym_namespace] = ACTIONS(3432), - [anon_sym_using] = ACTIONS(3432), - [anon_sym_static_assert] = ACTIONS(3432), - [anon_sym_concept] = ACTIONS(3432), - [anon_sym_co_return] = ACTIONS(3432), - [anon_sym_co_yield] = ACTIONS(3432), - [anon_sym_R_DQUOTE] = ACTIONS(3434), - [anon_sym_LR_DQUOTE] = ACTIONS(3434), - [anon_sym_uR_DQUOTE] = ACTIONS(3434), - [anon_sym_UR_DQUOTE] = ACTIONS(3434), - [anon_sym_u8R_DQUOTE] = ACTIONS(3434), - [anon_sym_co_await] = ACTIONS(3432), - [anon_sym_new] = ACTIONS(3432), - [anon_sym_requires] = ACTIONS(3432), - [sym_this] = ACTIONS(3432), + [1389] = { + [sym__expression] = STATE(4303), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1305] = { - [sym_identifier] = ACTIONS(3458), - [aux_sym_preproc_include_token1] = ACTIONS(3458), - [aux_sym_preproc_def_token1] = ACTIONS(3458), - [aux_sym_preproc_if_token1] = ACTIONS(3458), - [aux_sym_preproc_if_token2] = ACTIONS(3458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3458), - [sym_preproc_directive] = ACTIONS(3458), - [anon_sym_LPAREN2] = ACTIONS(3460), - [anon_sym_BANG] = ACTIONS(3460), - [anon_sym_TILDE] = ACTIONS(3460), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_STAR] = ACTIONS(3460), - [anon_sym_AMP_AMP] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(3458), - [anon_sym_SEMI] = ACTIONS(3460), - [anon_sym___extension__] = ACTIONS(3458), - [anon_sym_typedef] = ACTIONS(3458), - [anon_sym_extern] = ACTIONS(3458), - [anon_sym___attribute__] = ACTIONS(3458), - [anon_sym_COLON_COLON] = ACTIONS(3460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3460), - [anon_sym___declspec] = ACTIONS(3458), - [anon_sym___based] = ACTIONS(3458), - [anon_sym___cdecl] = ACTIONS(3458), - [anon_sym___clrcall] = ACTIONS(3458), - [anon_sym___stdcall] = ACTIONS(3458), - [anon_sym___fastcall] = ACTIONS(3458), - [anon_sym___thiscall] = ACTIONS(3458), - [anon_sym___vectorcall] = ACTIONS(3458), - [anon_sym_LBRACE] = ACTIONS(3460), - [anon_sym_signed] = ACTIONS(3458), - [anon_sym_unsigned] = ACTIONS(3458), - [anon_sym_long] = ACTIONS(3458), - [anon_sym_short] = ACTIONS(3458), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_static] = ACTIONS(3458), - [anon_sym_register] = ACTIONS(3458), - [anon_sym_inline] = ACTIONS(3458), - [anon_sym___inline] = ACTIONS(3458), - [anon_sym___inline__] = ACTIONS(3458), - [anon_sym___forceinline] = ACTIONS(3458), - [anon_sym_thread_local] = ACTIONS(3458), - [anon_sym___thread] = ACTIONS(3458), - [anon_sym_const] = ACTIONS(3458), - [anon_sym_constexpr] = ACTIONS(3458), - [anon_sym_volatile] = ACTIONS(3458), - [anon_sym_restrict] = ACTIONS(3458), - [anon_sym___restrict__] = ACTIONS(3458), - [anon_sym__Atomic] = ACTIONS(3458), - [anon_sym__Noreturn] = ACTIONS(3458), - [anon_sym_noreturn] = ACTIONS(3458), - [anon_sym_mutable] = ACTIONS(3458), - [anon_sym_constinit] = ACTIONS(3458), - [anon_sym_consteval] = ACTIONS(3458), - [sym_primitive_type] = ACTIONS(3458), - [anon_sym_enum] = ACTIONS(3458), - [anon_sym_class] = ACTIONS(3458), - [anon_sym_struct] = ACTIONS(3458), - [anon_sym_union] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_switch] = ACTIONS(3458), - [anon_sym_case] = ACTIONS(3458), - [anon_sym_default] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_break] = ACTIONS(3458), - [anon_sym_continue] = ACTIONS(3458), - [anon_sym_goto] = ACTIONS(3458), - [anon_sym_not] = ACTIONS(3458), - [anon_sym_compl] = ACTIONS(3458), - [anon_sym_DASH_DASH] = ACTIONS(3460), - [anon_sym_PLUS_PLUS] = ACTIONS(3460), - [anon_sym_sizeof] = ACTIONS(3458), - [anon_sym___alignof__] = ACTIONS(3458), - [anon_sym___alignof] = ACTIONS(3458), - [anon_sym__alignof] = ACTIONS(3458), - [anon_sym_alignof] = ACTIONS(3458), - [anon_sym__Alignof] = ACTIONS(3458), - [anon_sym_offsetof] = ACTIONS(3458), - [anon_sym__Generic] = ACTIONS(3458), - [anon_sym_asm] = ACTIONS(3458), - [anon_sym___asm__] = ACTIONS(3458), - [sym_number_literal] = ACTIONS(3460), - [anon_sym_L_SQUOTE] = ACTIONS(3460), - [anon_sym_u_SQUOTE] = ACTIONS(3460), - [anon_sym_U_SQUOTE] = ACTIONS(3460), - [anon_sym_u8_SQUOTE] = ACTIONS(3460), - [anon_sym_SQUOTE] = ACTIONS(3460), - [anon_sym_L_DQUOTE] = ACTIONS(3460), - [anon_sym_u_DQUOTE] = ACTIONS(3460), - [anon_sym_U_DQUOTE] = ACTIONS(3460), - [anon_sym_u8_DQUOTE] = ACTIONS(3460), - [anon_sym_DQUOTE] = ACTIONS(3460), - [sym_true] = ACTIONS(3458), - [sym_false] = ACTIONS(3458), - [anon_sym_NULL] = ACTIONS(3458), - [anon_sym_nullptr] = ACTIONS(3458), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3458), - [anon_sym_decltype] = ACTIONS(3458), - [anon_sym_virtual] = ACTIONS(3458), - [anon_sym_alignas] = ACTIONS(3458), - [anon_sym_explicit] = ACTIONS(3458), - [anon_sym_typename] = ACTIONS(3458), - [anon_sym_template] = ACTIONS(3458), - [anon_sym_operator] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_delete] = ACTIONS(3458), - [anon_sym_throw] = ACTIONS(3458), - [anon_sym_namespace] = ACTIONS(3458), - [anon_sym_using] = ACTIONS(3458), - [anon_sym_static_assert] = ACTIONS(3458), - [anon_sym_concept] = ACTIONS(3458), - [anon_sym_co_return] = ACTIONS(3458), - [anon_sym_co_yield] = ACTIONS(3458), - [anon_sym_R_DQUOTE] = ACTIONS(3460), - [anon_sym_LR_DQUOTE] = ACTIONS(3460), - [anon_sym_uR_DQUOTE] = ACTIONS(3460), - [anon_sym_UR_DQUOTE] = ACTIONS(3460), - [anon_sym_u8R_DQUOTE] = ACTIONS(3460), - [anon_sym_co_await] = ACTIONS(3458), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_requires] = ACTIONS(3458), - [sym_this] = ACTIONS(3458), + [1390] = { + [sym__expression] = STATE(3828), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1306] = { - [sym_identifier] = ACTIONS(3230), - [aux_sym_preproc_include_token1] = ACTIONS(3230), - [aux_sym_preproc_def_token1] = ACTIONS(3230), - [aux_sym_preproc_if_token1] = ACTIONS(3230), - [aux_sym_preproc_if_token2] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3230), - [sym_preproc_directive] = ACTIONS(3230), - [anon_sym_LPAREN2] = ACTIONS(3232), - [anon_sym_BANG] = ACTIONS(3232), - [anon_sym_TILDE] = ACTIONS(3232), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(3232), - [anon_sym_AMP_AMP] = ACTIONS(3232), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3232), - [anon_sym___extension__] = ACTIONS(3230), - [anon_sym_typedef] = ACTIONS(3230), - [anon_sym_extern] = ACTIONS(3230), - [anon_sym___attribute__] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3232), - [anon_sym___declspec] = ACTIONS(3230), - [anon_sym___based] = ACTIONS(3230), - [anon_sym___cdecl] = ACTIONS(3230), - [anon_sym___clrcall] = ACTIONS(3230), - [anon_sym___stdcall] = ACTIONS(3230), - [anon_sym___fastcall] = ACTIONS(3230), - [anon_sym___thiscall] = ACTIONS(3230), - [anon_sym___vectorcall] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3232), - [anon_sym_signed] = ACTIONS(3230), - [anon_sym_unsigned] = ACTIONS(3230), - [anon_sym_long] = ACTIONS(3230), - [anon_sym_short] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3230), - [anon_sym_register] = ACTIONS(3230), - [anon_sym_inline] = ACTIONS(3230), - [anon_sym___inline] = ACTIONS(3230), - [anon_sym___inline__] = ACTIONS(3230), - [anon_sym___forceinline] = ACTIONS(3230), - [anon_sym_thread_local] = ACTIONS(3230), - [anon_sym___thread] = ACTIONS(3230), - [anon_sym_const] = ACTIONS(3230), - [anon_sym_constexpr] = ACTIONS(3230), - [anon_sym_volatile] = ACTIONS(3230), - [anon_sym_restrict] = ACTIONS(3230), - [anon_sym___restrict__] = ACTIONS(3230), - [anon_sym__Atomic] = ACTIONS(3230), - [anon_sym__Noreturn] = ACTIONS(3230), - [anon_sym_noreturn] = ACTIONS(3230), - [anon_sym_mutable] = ACTIONS(3230), - [anon_sym_constinit] = ACTIONS(3230), - [anon_sym_consteval] = ACTIONS(3230), - [sym_primitive_type] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3230), - [anon_sym_class] = ACTIONS(3230), - [anon_sym_struct] = ACTIONS(3230), - [anon_sym_union] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_switch] = ACTIONS(3230), - [anon_sym_case] = ACTIONS(3230), - [anon_sym_default] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_do] = ACTIONS(3230), - [anon_sym_for] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_goto] = ACTIONS(3230), - [anon_sym_not] = ACTIONS(3230), - [anon_sym_compl] = ACTIONS(3230), - [anon_sym_DASH_DASH] = ACTIONS(3232), - [anon_sym_PLUS_PLUS] = ACTIONS(3232), - [anon_sym_sizeof] = ACTIONS(3230), - [anon_sym___alignof__] = ACTIONS(3230), - [anon_sym___alignof] = ACTIONS(3230), - [anon_sym__alignof] = ACTIONS(3230), - [anon_sym_alignof] = ACTIONS(3230), - [anon_sym__Alignof] = ACTIONS(3230), - [anon_sym_offsetof] = ACTIONS(3230), - [anon_sym__Generic] = ACTIONS(3230), - [anon_sym_asm] = ACTIONS(3230), - [anon_sym___asm__] = ACTIONS(3230), - [sym_number_literal] = ACTIONS(3232), - [anon_sym_L_SQUOTE] = ACTIONS(3232), - [anon_sym_u_SQUOTE] = ACTIONS(3232), - [anon_sym_U_SQUOTE] = ACTIONS(3232), - [anon_sym_u8_SQUOTE] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3232), - [anon_sym_L_DQUOTE] = ACTIONS(3232), - [anon_sym_u_DQUOTE] = ACTIONS(3232), - [anon_sym_U_DQUOTE] = ACTIONS(3232), - [anon_sym_u8_DQUOTE] = ACTIONS(3232), - [anon_sym_DQUOTE] = ACTIONS(3232), - [sym_true] = ACTIONS(3230), - [sym_false] = ACTIONS(3230), - [anon_sym_NULL] = ACTIONS(3230), - [anon_sym_nullptr] = ACTIONS(3230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3230), - [anon_sym_decltype] = ACTIONS(3230), - [anon_sym_virtual] = ACTIONS(3230), - [anon_sym_alignas] = ACTIONS(3230), - [anon_sym_explicit] = ACTIONS(3230), - [anon_sym_typename] = ACTIONS(3230), - [anon_sym_template] = ACTIONS(3230), - [anon_sym_operator] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_delete] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_namespace] = ACTIONS(3230), - [anon_sym_using] = ACTIONS(3230), - [anon_sym_static_assert] = ACTIONS(3230), - [anon_sym_concept] = ACTIONS(3230), - [anon_sym_co_return] = ACTIONS(3230), - [anon_sym_co_yield] = ACTIONS(3230), - [anon_sym_R_DQUOTE] = ACTIONS(3232), - [anon_sym_LR_DQUOTE] = ACTIONS(3232), - [anon_sym_uR_DQUOTE] = ACTIONS(3232), - [anon_sym_UR_DQUOTE] = ACTIONS(3232), - [anon_sym_u8R_DQUOTE] = ACTIONS(3232), - [anon_sym_co_await] = ACTIONS(3230), - [anon_sym_new] = ACTIONS(3230), - [anon_sym_requires] = ACTIONS(3230), - [sym_this] = ACTIONS(3230), + [1391] = { + [sym__expression] = STATE(3834), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1307] = { - [sym_identifier] = ACTIONS(3282), - [aux_sym_preproc_include_token1] = ACTIONS(3282), - [aux_sym_preproc_def_token1] = ACTIONS(3282), - [aux_sym_preproc_if_token1] = ACTIONS(3282), - [aux_sym_preproc_if_token2] = ACTIONS(3282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3282), - [sym_preproc_directive] = ACTIONS(3282), - [anon_sym_LPAREN2] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3282), - [anon_sym_PLUS] = ACTIONS(3282), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_AMP_AMP] = ACTIONS(3284), - [anon_sym_AMP] = ACTIONS(3282), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym___extension__] = ACTIONS(3282), - [anon_sym_typedef] = ACTIONS(3282), - [anon_sym_extern] = ACTIONS(3282), - [anon_sym___attribute__] = ACTIONS(3282), - [anon_sym_COLON_COLON] = ACTIONS(3284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3284), - [anon_sym___declspec] = ACTIONS(3282), - [anon_sym___based] = ACTIONS(3282), - [anon_sym___cdecl] = ACTIONS(3282), - [anon_sym___clrcall] = ACTIONS(3282), - [anon_sym___stdcall] = ACTIONS(3282), - [anon_sym___fastcall] = ACTIONS(3282), - [anon_sym___thiscall] = ACTIONS(3282), - [anon_sym___vectorcall] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_signed] = ACTIONS(3282), - [anon_sym_unsigned] = ACTIONS(3282), - [anon_sym_long] = ACTIONS(3282), - [anon_sym_short] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_register] = ACTIONS(3282), - [anon_sym_inline] = ACTIONS(3282), - [anon_sym___inline] = ACTIONS(3282), - [anon_sym___inline__] = ACTIONS(3282), - [anon_sym___forceinline] = ACTIONS(3282), - [anon_sym_thread_local] = ACTIONS(3282), - [anon_sym___thread] = ACTIONS(3282), - [anon_sym_const] = ACTIONS(3282), - [anon_sym_constexpr] = ACTIONS(3282), - [anon_sym_volatile] = ACTIONS(3282), - [anon_sym_restrict] = ACTIONS(3282), - [anon_sym___restrict__] = ACTIONS(3282), - [anon_sym__Atomic] = ACTIONS(3282), - [anon_sym__Noreturn] = ACTIONS(3282), - [anon_sym_noreturn] = ACTIONS(3282), - [anon_sym_mutable] = ACTIONS(3282), - [anon_sym_constinit] = ACTIONS(3282), - [anon_sym_consteval] = ACTIONS(3282), - [sym_primitive_type] = ACTIONS(3282), - [anon_sym_enum] = ACTIONS(3282), - [anon_sym_class] = ACTIONS(3282), - [anon_sym_struct] = ACTIONS(3282), - [anon_sym_union] = ACTIONS(3282), - [anon_sym_if] = ACTIONS(3282), - [anon_sym_switch] = ACTIONS(3282), - [anon_sym_case] = ACTIONS(3282), - [anon_sym_default] = ACTIONS(3282), - [anon_sym_while] = ACTIONS(3282), - [anon_sym_do] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3282), - [anon_sym_return] = ACTIONS(3282), - [anon_sym_break] = ACTIONS(3282), - [anon_sym_continue] = ACTIONS(3282), - [anon_sym_goto] = ACTIONS(3282), - [anon_sym_not] = ACTIONS(3282), - [anon_sym_compl] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_sizeof] = ACTIONS(3282), - [anon_sym___alignof__] = ACTIONS(3282), - [anon_sym___alignof] = ACTIONS(3282), - [anon_sym__alignof] = ACTIONS(3282), - [anon_sym_alignof] = ACTIONS(3282), - [anon_sym__Alignof] = ACTIONS(3282), - [anon_sym_offsetof] = ACTIONS(3282), - [anon_sym__Generic] = ACTIONS(3282), - [anon_sym_asm] = ACTIONS(3282), - [anon_sym___asm__] = ACTIONS(3282), - [sym_number_literal] = ACTIONS(3284), - [anon_sym_L_SQUOTE] = ACTIONS(3284), - [anon_sym_u_SQUOTE] = ACTIONS(3284), - [anon_sym_U_SQUOTE] = ACTIONS(3284), - [anon_sym_u8_SQUOTE] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3284), - [anon_sym_L_DQUOTE] = ACTIONS(3284), - [anon_sym_u_DQUOTE] = ACTIONS(3284), - [anon_sym_U_DQUOTE] = ACTIONS(3284), - [anon_sym_u8_DQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [sym_true] = ACTIONS(3282), - [sym_false] = ACTIONS(3282), - [anon_sym_NULL] = ACTIONS(3282), - [anon_sym_nullptr] = ACTIONS(3282), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3282), - [anon_sym_decltype] = ACTIONS(3282), - [anon_sym_virtual] = ACTIONS(3282), - [anon_sym_alignas] = ACTIONS(3282), - [anon_sym_explicit] = ACTIONS(3282), - [anon_sym_typename] = ACTIONS(3282), - [anon_sym_template] = ACTIONS(3282), - [anon_sym_operator] = ACTIONS(3282), - [anon_sym_try] = ACTIONS(3282), - [anon_sym_delete] = ACTIONS(3282), - [anon_sym_throw] = ACTIONS(3282), - [anon_sym_namespace] = ACTIONS(3282), - [anon_sym_using] = ACTIONS(3282), - [anon_sym_static_assert] = ACTIONS(3282), - [anon_sym_concept] = ACTIONS(3282), - [anon_sym_co_return] = ACTIONS(3282), - [anon_sym_co_yield] = ACTIONS(3282), - [anon_sym_R_DQUOTE] = ACTIONS(3284), - [anon_sym_LR_DQUOTE] = ACTIONS(3284), - [anon_sym_uR_DQUOTE] = ACTIONS(3284), - [anon_sym_UR_DQUOTE] = ACTIONS(3284), - [anon_sym_u8R_DQUOTE] = ACTIONS(3284), - [anon_sym_co_await] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3282), - [anon_sym_requires] = ACTIONS(3282), - [sym_this] = ACTIONS(3282), + [1392] = { + [sym__expression] = STATE(4023), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1308] = { - [sym_identifier] = ACTIONS(3374), - [aux_sym_preproc_include_token1] = ACTIONS(3374), - [aux_sym_preproc_def_token1] = ACTIONS(3374), - [aux_sym_preproc_if_token1] = ACTIONS(3374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3374), - [sym_preproc_directive] = ACTIONS(3374), - [anon_sym_LPAREN2] = ACTIONS(3376), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3374), - [anon_sym_PLUS] = ACTIONS(3374), - [anon_sym_STAR] = ACTIONS(3376), - [anon_sym_AMP_AMP] = ACTIONS(3376), - [anon_sym_AMP] = ACTIONS(3374), - [anon_sym_SEMI] = ACTIONS(3376), - [anon_sym___extension__] = ACTIONS(3374), - [anon_sym_typedef] = ACTIONS(3374), - [anon_sym_extern] = ACTIONS(3374), - [anon_sym___attribute__] = ACTIONS(3374), - [anon_sym_COLON_COLON] = ACTIONS(3376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3376), - [anon_sym___declspec] = ACTIONS(3374), - [anon_sym___based] = ACTIONS(3374), - [anon_sym___cdecl] = ACTIONS(3374), - [anon_sym___clrcall] = ACTIONS(3374), - [anon_sym___stdcall] = ACTIONS(3374), - [anon_sym___fastcall] = ACTIONS(3374), - [anon_sym___thiscall] = ACTIONS(3374), - [anon_sym___vectorcall] = ACTIONS(3374), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_RBRACE] = ACTIONS(3376), - [anon_sym_signed] = ACTIONS(3374), - [anon_sym_unsigned] = ACTIONS(3374), - [anon_sym_long] = ACTIONS(3374), - [anon_sym_short] = ACTIONS(3374), - [anon_sym_LBRACK] = ACTIONS(3374), - [anon_sym_static] = ACTIONS(3374), - [anon_sym_register] = ACTIONS(3374), - [anon_sym_inline] = ACTIONS(3374), - [anon_sym___inline] = ACTIONS(3374), - [anon_sym___inline__] = ACTIONS(3374), - [anon_sym___forceinline] = ACTIONS(3374), - [anon_sym_thread_local] = ACTIONS(3374), - [anon_sym___thread] = ACTIONS(3374), - [anon_sym_const] = ACTIONS(3374), - [anon_sym_constexpr] = ACTIONS(3374), - [anon_sym_volatile] = ACTIONS(3374), - [anon_sym_restrict] = ACTIONS(3374), - [anon_sym___restrict__] = ACTIONS(3374), - [anon_sym__Atomic] = ACTIONS(3374), - [anon_sym__Noreturn] = ACTIONS(3374), - [anon_sym_noreturn] = ACTIONS(3374), - [anon_sym_mutable] = ACTIONS(3374), - [anon_sym_constinit] = ACTIONS(3374), - [anon_sym_consteval] = ACTIONS(3374), - [sym_primitive_type] = ACTIONS(3374), - [anon_sym_enum] = ACTIONS(3374), - [anon_sym_class] = ACTIONS(3374), - [anon_sym_struct] = ACTIONS(3374), - [anon_sym_union] = ACTIONS(3374), - [anon_sym_if] = ACTIONS(3374), - [anon_sym_switch] = ACTIONS(3374), - [anon_sym_case] = ACTIONS(3374), - [anon_sym_default] = ACTIONS(3374), - [anon_sym_while] = ACTIONS(3374), - [anon_sym_do] = ACTIONS(3374), - [anon_sym_for] = ACTIONS(3374), - [anon_sym_return] = ACTIONS(3374), - [anon_sym_break] = ACTIONS(3374), - [anon_sym_continue] = ACTIONS(3374), - [anon_sym_goto] = ACTIONS(3374), - [anon_sym_not] = ACTIONS(3374), - [anon_sym_compl] = ACTIONS(3374), - [anon_sym_DASH_DASH] = ACTIONS(3376), - [anon_sym_PLUS_PLUS] = ACTIONS(3376), - [anon_sym_sizeof] = ACTIONS(3374), - [anon_sym___alignof__] = ACTIONS(3374), - [anon_sym___alignof] = ACTIONS(3374), - [anon_sym__alignof] = ACTIONS(3374), - [anon_sym_alignof] = ACTIONS(3374), - [anon_sym__Alignof] = ACTIONS(3374), - [anon_sym_offsetof] = ACTIONS(3374), - [anon_sym__Generic] = ACTIONS(3374), - [anon_sym_asm] = ACTIONS(3374), - [anon_sym___asm__] = ACTIONS(3374), - [sym_number_literal] = ACTIONS(3376), - [anon_sym_L_SQUOTE] = ACTIONS(3376), - [anon_sym_u_SQUOTE] = ACTIONS(3376), - [anon_sym_U_SQUOTE] = ACTIONS(3376), - [anon_sym_u8_SQUOTE] = ACTIONS(3376), - [anon_sym_SQUOTE] = ACTIONS(3376), - [anon_sym_L_DQUOTE] = ACTIONS(3376), - [anon_sym_u_DQUOTE] = ACTIONS(3376), - [anon_sym_U_DQUOTE] = ACTIONS(3376), - [anon_sym_u8_DQUOTE] = ACTIONS(3376), - [anon_sym_DQUOTE] = ACTIONS(3376), - [sym_true] = ACTIONS(3374), - [sym_false] = ACTIONS(3374), - [anon_sym_NULL] = ACTIONS(3374), - [anon_sym_nullptr] = ACTIONS(3374), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3374), - [anon_sym_decltype] = ACTIONS(3374), - [anon_sym_virtual] = ACTIONS(3374), - [anon_sym_alignas] = ACTIONS(3374), - [anon_sym_explicit] = ACTIONS(3374), - [anon_sym_typename] = ACTIONS(3374), - [anon_sym_template] = ACTIONS(3374), - [anon_sym_operator] = ACTIONS(3374), - [anon_sym_try] = ACTIONS(3374), - [anon_sym_delete] = ACTIONS(3374), - [anon_sym_throw] = ACTIONS(3374), - [anon_sym_namespace] = ACTIONS(3374), - [anon_sym_using] = ACTIONS(3374), - [anon_sym_static_assert] = ACTIONS(3374), - [anon_sym_concept] = ACTIONS(3374), - [anon_sym_co_return] = ACTIONS(3374), - [anon_sym_co_yield] = ACTIONS(3374), - [anon_sym_R_DQUOTE] = ACTIONS(3376), - [anon_sym_LR_DQUOTE] = ACTIONS(3376), - [anon_sym_uR_DQUOTE] = ACTIONS(3376), - [anon_sym_UR_DQUOTE] = ACTIONS(3376), - [anon_sym_u8R_DQUOTE] = ACTIONS(3376), - [anon_sym_co_await] = ACTIONS(3374), - [anon_sym_new] = ACTIONS(3374), - [anon_sym_requires] = ACTIONS(3374), - [sym_this] = ACTIONS(3374), + [1393] = { + [sym__expression] = STATE(3390), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1309] = { - [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_extern] = ACTIONS(3123), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3123), - [anon_sym_constinit] = ACTIONS(3123), - [anon_sym_consteval] = 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), - [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), + [1394] = { + [sym__expression] = STATE(4024), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3123), - [anon_sym_decltype] = ACTIONS(3123), - [anon_sym_virtual] = ACTIONS(3123), - [anon_sym_alignas] = 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_using] = 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), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1310] = { - [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_extern] = ACTIONS(3123), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3123), - [anon_sym_constinit] = ACTIONS(3123), - [anon_sym_consteval] = 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), - [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), + [1395] = { + [sym__expression] = STATE(4012), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3123), - [anon_sym_decltype] = ACTIONS(3123), - [anon_sym_virtual] = ACTIONS(3123), - [anon_sym_alignas] = 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_using] = 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), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1311] = { - [sym_identifier] = ACTIONS(3362), - [aux_sym_preproc_include_token1] = ACTIONS(3362), - [aux_sym_preproc_def_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), - [sym_preproc_directive] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3362), - [anon_sym_PLUS] = ACTIONS(3362), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym___extension__] = ACTIONS(3362), - [anon_sym_typedef] = ACTIONS(3362), - [anon_sym_extern] = ACTIONS(3362), - [anon_sym___attribute__] = ACTIONS(3362), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), - [anon_sym___declspec] = ACTIONS(3362), - [anon_sym___based] = ACTIONS(3362), - [anon_sym___cdecl] = ACTIONS(3362), - [anon_sym___clrcall] = ACTIONS(3362), - [anon_sym___stdcall] = ACTIONS(3362), - [anon_sym___fastcall] = ACTIONS(3362), - [anon_sym___thiscall] = ACTIONS(3362), - [anon_sym___vectorcall] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_RBRACE] = ACTIONS(3364), - [anon_sym_signed] = ACTIONS(3362), - [anon_sym_unsigned] = ACTIONS(3362), - [anon_sym_long] = ACTIONS(3362), - [anon_sym_short] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_register] = ACTIONS(3362), - [anon_sym_inline] = ACTIONS(3362), - [anon_sym___inline] = ACTIONS(3362), - [anon_sym___inline__] = ACTIONS(3362), - [anon_sym___forceinline] = ACTIONS(3362), - [anon_sym_thread_local] = ACTIONS(3362), - [anon_sym___thread] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_constexpr] = ACTIONS(3362), - [anon_sym_volatile] = ACTIONS(3362), - [anon_sym_restrict] = ACTIONS(3362), - [anon_sym___restrict__] = ACTIONS(3362), - [anon_sym__Atomic] = ACTIONS(3362), - [anon_sym__Noreturn] = ACTIONS(3362), - [anon_sym_noreturn] = ACTIONS(3362), - [anon_sym_mutable] = ACTIONS(3362), - [anon_sym_constinit] = ACTIONS(3362), - [anon_sym_consteval] = ACTIONS(3362), - [sym_primitive_type] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3362), - [anon_sym_case] = ACTIONS(3362), - [anon_sym_default] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_do] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_goto] = ACTIONS(3362), - [anon_sym_not] = ACTIONS(3362), - [anon_sym_compl] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_sizeof] = ACTIONS(3362), - [anon_sym___alignof__] = ACTIONS(3362), - [anon_sym___alignof] = ACTIONS(3362), - [anon_sym__alignof] = ACTIONS(3362), - [anon_sym_alignof] = ACTIONS(3362), - [anon_sym__Alignof] = ACTIONS(3362), - [anon_sym_offsetof] = ACTIONS(3362), - [anon_sym__Generic] = ACTIONS(3362), - [anon_sym_asm] = ACTIONS(3362), - [anon_sym___asm__] = ACTIONS(3362), - [sym_number_literal] = ACTIONS(3364), - [anon_sym_L_SQUOTE] = ACTIONS(3364), - [anon_sym_u_SQUOTE] = ACTIONS(3364), - [anon_sym_U_SQUOTE] = ACTIONS(3364), - [anon_sym_u8_SQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_L_DQUOTE] = ACTIONS(3364), - [anon_sym_u_DQUOTE] = ACTIONS(3364), - [anon_sym_U_DQUOTE] = ACTIONS(3364), - [anon_sym_u8_DQUOTE] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [sym_true] = ACTIONS(3362), - [sym_false] = ACTIONS(3362), - [anon_sym_NULL] = ACTIONS(3362), - [anon_sym_nullptr] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3362), - [anon_sym_decltype] = ACTIONS(3362), - [anon_sym_virtual] = ACTIONS(3362), - [anon_sym_alignas] = ACTIONS(3362), - [anon_sym_explicit] = ACTIONS(3362), - [anon_sym_typename] = ACTIONS(3362), - [anon_sym_template] = ACTIONS(3362), - [anon_sym_operator] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [anon_sym_delete] = ACTIONS(3362), - [anon_sym_throw] = ACTIONS(3362), - [anon_sym_namespace] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_static_assert] = ACTIONS(3362), - [anon_sym_concept] = ACTIONS(3362), - [anon_sym_co_return] = ACTIONS(3362), - [anon_sym_co_yield] = ACTIONS(3362), - [anon_sym_R_DQUOTE] = ACTIONS(3364), - [anon_sym_LR_DQUOTE] = ACTIONS(3364), - [anon_sym_uR_DQUOTE] = ACTIONS(3364), - [anon_sym_UR_DQUOTE] = ACTIONS(3364), - [anon_sym_u8R_DQUOTE] = ACTIONS(3364), - [anon_sym_co_await] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3362), - [anon_sym_requires] = ACTIONS(3362), - [sym_this] = ACTIONS(3362), + [1396] = { + [sym__expression] = STATE(3390), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(4485), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1312] = { - [sym_identifier] = ACTIONS(3199), - [aux_sym_preproc_include_token1] = ACTIONS(3199), - [aux_sym_preproc_def_token1] = ACTIONS(3199), - [aux_sym_preproc_if_token1] = ACTIONS(3199), - [aux_sym_preproc_if_token2] = ACTIONS(3199), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3199), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3199), - [sym_preproc_directive] = ACTIONS(3199), - [anon_sym_LPAREN2] = ACTIONS(3201), - [anon_sym_BANG] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym___extension__] = ACTIONS(3199), - [anon_sym_typedef] = ACTIONS(3199), - [anon_sym_extern] = ACTIONS(3199), - [anon_sym___attribute__] = ACTIONS(3199), - [anon_sym_COLON_COLON] = ACTIONS(3201), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3201), - [anon_sym___declspec] = ACTIONS(3199), - [anon_sym___based] = ACTIONS(3199), - [anon_sym___cdecl] = ACTIONS(3199), - [anon_sym___clrcall] = ACTIONS(3199), - [anon_sym___stdcall] = ACTIONS(3199), - [anon_sym___fastcall] = ACTIONS(3199), - [anon_sym___thiscall] = ACTIONS(3199), - [anon_sym___vectorcall] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_signed] = ACTIONS(3199), - [anon_sym_unsigned] = ACTIONS(3199), - [anon_sym_long] = ACTIONS(3199), - [anon_sym_short] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_static] = ACTIONS(3199), - [anon_sym_register] = ACTIONS(3199), - [anon_sym_inline] = ACTIONS(3199), - [anon_sym___inline] = ACTIONS(3199), - [anon_sym___inline__] = ACTIONS(3199), - [anon_sym___forceinline] = ACTIONS(3199), - [anon_sym_thread_local] = ACTIONS(3199), - [anon_sym___thread] = ACTIONS(3199), - [anon_sym_const] = ACTIONS(3199), - [anon_sym_constexpr] = ACTIONS(3199), - [anon_sym_volatile] = ACTIONS(3199), - [anon_sym_restrict] = ACTIONS(3199), - [anon_sym___restrict__] = ACTIONS(3199), - [anon_sym__Atomic] = ACTIONS(3199), - [anon_sym__Noreturn] = ACTIONS(3199), - [anon_sym_noreturn] = ACTIONS(3199), - [anon_sym_mutable] = ACTIONS(3199), - [anon_sym_constinit] = ACTIONS(3199), - [anon_sym_consteval] = ACTIONS(3199), - [sym_primitive_type] = ACTIONS(3199), - [anon_sym_enum] = ACTIONS(3199), - [anon_sym_class] = ACTIONS(3199), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_union] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_switch] = ACTIONS(3199), - [anon_sym_case] = ACTIONS(3199), - [anon_sym_default] = ACTIONS(3199), - [anon_sym_while] = ACTIONS(3199), - [anon_sym_do] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3199), - [anon_sym_return] = ACTIONS(3199), - [anon_sym_break] = ACTIONS(3199), - [anon_sym_continue] = ACTIONS(3199), - [anon_sym_goto] = ACTIONS(3199), - [anon_sym_not] = ACTIONS(3199), - [anon_sym_compl] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_sizeof] = ACTIONS(3199), - [anon_sym___alignof__] = ACTIONS(3199), - [anon_sym___alignof] = ACTIONS(3199), - [anon_sym__alignof] = ACTIONS(3199), - [anon_sym_alignof] = ACTIONS(3199), - [anon_sym__Alignof] = ACTIONS(3199), - [anon_sym_offsetof] = ACTIONS(3199), - [anon_sym__Generic] = ACTIONS(3199), - [anon_sym_asm] = ACTIONS(3199), - [anon_sym___asm__] = ACTIONS(3199), - [sym_number_literal] = ACTIONS(3201), - [anon_sym_L_SQUOTE] = ACTIONS(3201), - [anon_sym_u_SQUOTE] = ACTIONS(3201), - [anon_sym_U_SQUOTE] = ACTIONS(3201), - [anon_sym_u8_SQUOTE] = ACTIONS(3201), - [anon_sym_SQUOTE] = ACTIONS(3201), - [anon_sym_L_DQUOTE] = ACTIONS(3201), - [anon_sym_u_DQUOTE] = ACTIONS(3201), - [anon_sym_U_DQUOTE] = ACTIONS(3201), - [anon_sym_u8_DQUOTE] = ACTIONS(3201), - [anon_sym_DQUOTE] = ACTIONS(3201), - [sym_true] = ACTIONS(3199), - [sym_false] = ACTIONS(3199), - [anon_sym_NULL] = ACTIONS(3199), - [anon_sym_nullptr] = ACTIONS(3199), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3199), - [anon_sym_decltype] = ACTIONS(3199), - [anon_sym_virtual] = ACTIONS(3199), - [anon_sym_alignas] = ACTIONS(3199), - [anon_sym_explicit] = ACTIONS(3199), - [anon_sym_typename] = ACTIONS(3199), - [anon_sym_template] = ACTIONS(3199), - [anon_sym_operator] = ACTIONS(3199), - [anon_sym_try] = ACTIONS(3199), - [anon_sym_delete] = ACTIONS(3199), - [anon_sym_throw] = ACTIONS(3199), - [anon_sym_namespace] = ACTIONS(3199), - [anon_sym_using] = ACTIONS(3199), - [anon_sym_static_assert] = ACTIONS(3199), - [anon_sym_concept] = ACTIONS(3199), - [anon_sym_co_return] = ACTIONS(3199), - [anon_sym_co_yield] = ACTIONS(3199), - [anon_sym_R_DQUOTE] = ACTIONS(3201), - [anon_sym_LR_DQUOTE] = ACTIONS(3201), - [anon_sym_uR_DQUOTE] = ACTIONS(3201), - [anon_sym_UR_DQUOTE] = ACTIONS(3201), - [anon_sym_u8R_DQUOTE] = ACTIONS(3201), - [anon_sym_co_await] = ACTIONS(3199), - [anon_sym_new] = ACTIONS(3199), - [anon_sym_requires] = ACTIONS(3199), - [sym_this] = ACTIONS(3199), + [1397] = { + [sym__expression] = STATE(4295), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1313] = { - [sym_identifier] = ACTIONS(3207), - [aux_sym_preproc_include_token1] = ACTIONS(3207), - [aux_sym_preproc_def_token1] = ACTIONS(3207), - [aux_sym_preproc_if_token1] = ACTIONS(3207), - [aux_sym_preproc_if_token2] = ACTIONS(3207), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3207), - [sym_preproc_directive] = ACTIONS(3207), - [anon_sym_LPAREN2] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_AMP_AMP] = ACTIONS(3209), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_SEMI] = ACTIONS(3209), - [anon_sym___extension__] = ACTIONS(3207), - [anon_sym_typedef] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(3207), - [anon_sym___attribute__] = ACTIONS(3207), - [anon_sym_COLON_COLON] = ACTIONS(3209), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3209), - [anon_sym___declspec] = ACTIONS(3207), - [anon_sym___based] = ACTIONS(3207), - [anon_sym___cdecl] = ACTIONS(3207), - [anon_sym___clrcall] = ACTIONS(3207), - [anon_sym___stdcall] = ACTIONS(3207), - [anon_sym___fastcall] = ACTIONS(3207), - [anon_sym___thiscall] = ACTIONS(3207), - [anon_sym___vectorcall] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_signed] = ACTIONS(3207), - [anon_sym_unsigned] = ACTIONS(3207), - [anon_sym_long] = ACTIONS(3207), - [anon_sym_short] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_static] = ACTIONS(3207), - [anon_sym_register] = ACTIONS(3207), - [anon_sym_inline] = ACTIONS(3207), - [anon_sym___inline] = ACTIONS(3207), - [anon_sym___inline__] = ACTIONS(3207), - [anon_sym___forceinline] = ACTIONS(3207), - [anon_sym_thread_local] = ACTIONS(3207), - [anon_sym___thread] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_constexpr] = ACTIONS(3207), - [anon_sym_volatile] = ACTIONS(3207), - [anon_sym_restrict] = ACTIONS(3207), - [anon_sym___restrict__] = ACTIONS(3207), - [anon_sym__Atomic] = ACTIONS(3207), - [anon_sym__Noreturn] = ACTIONS(3207), - [anon_sym_noreturn] = ACTIONS(3207), - [anon_sym_mutable] = ACTIONS(3207), - [anon_sym_constinit] = ACTIONS(3207), - [anon_sym_consteval] = ACTIONS(3207), - [sym_primitive_type] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [anon_sym_class] = ACTIONS(3207), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_union] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_switch] = ACTIONS(3207), - [anon_sym_case] = ACTIONS(3207), - [anon_sym_default] = ACTIONS(3207), - [anon_sym_while] = ACTIONS(3207), - [anon_sym_do] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_goto] = ACTIONS(3207), - [anon_sym_not] = ACTIONS(3207), - [anon_sym_compl] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_sizeof] = ACTIONS(3207), - [anon_sym___alignof__] = ACTIONS(3207), - [anon_sym___alignof] = ACTIONS(3207), - [anon_sym__alignof] = ACTIONS(3207), - [anon_sym_alignof] = ACTIONS(3207), - [anon_sym__Alignof] = ACTIONS(3207), - [anon_sym_offsetof] = ACTIONS(3207), - [anon_sym__Generic] = ACTIONS(3207), - [anon_sym_asm] = ACTIONS(3207), - [anon_sym___asm__] = ACTIONS(3207), - [sym_number_literal] = ACTIONS(3209), - [anon_sym_L_SQUOTE] = ACTIONS(3209), - [anon_sym_u_SQUOTE] = ACTIONS(3209), - [anon_sym_U_SQUOTE] = ACTIONS(3209), - [anon_sym_u8_SQUOTE] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3209), - [anon_sym_L_DQUOTE] = ACTIONS(3209), - [anon_sym_u_DQUOTE] = ACTIONS(3209), - [anon_sym_U_DQUOTE] = ACTIONS(3209), - [anon_sym_u8_DQUOTE] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(3209), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [anon_sym_NULL] = ACTIONS(3207), - [anon_sym_nullptr] = ACTIONS(3207), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3207), - [anon_sym_decltype] = ACTIONS(3207), - [anon_sym_virtual] = ACTIONS(3207), - [anon_sym_alignas] = ACTIONS(3207), - [anon_sym_explicit] = ACTIONS(3207), - [anon_sym_typename] = ACTIONS(3207), - [anon_sym_template] = ACTIONS(3207), - [anon_sym_operator] = ACTIONS(3207), - [anon_sym_try] = ACTIONS(3207), - [anon_sym_delete] = ACTIONS(3207), - [anon_sym_throw] = ACTIONS(3207), - [anon_sym_namespace] = ACTIONS(3207), - [anon_sym_using] = ACTIONS(3207), - [anon_sym_static_assert] = ACTIONS(3207), - [anon_sym_concept] = ACTIONS(3207), - [anon_sym_co_return] = ACTIONS(3207), - [anon_sym_co_yield] = ACTIONS(3207), - [anon_sym_R_DQUOTE] = ACTIONS(3209), - [anon_sym_LR_DQUOTE] = ACTIONS(3209), - [anon_sym_uR_DQUOTE] = ACTIONS(3209), - [anon_sym_UR_DQUOTE] = ACTIONS(3209), - [anon_sym_u8R_DQUOTE] = ACTIONS(3209), - [anon_sym_co_await] = ACTIONS(3207), - [anon_sym_new] = ACTIONS(3207), - [anon_sym_requires] = ACTIONS(3207), - [sym_this] = ACTIONS(3207), + [1398] = { + [sym__expression] = STATE(4025), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1314] = { - [sym_identifier] = ACTIONS(3400), - [aux_sym_preproc_include_token1] = ACTIONS(3400), - [aux_sym_preproc_def_token1] = ACTIONS(3400), - [aux_sym_preproc_if_token1] = ACTIONS(3400), - [aux_sym_preproc_if_token2] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3400), - [sym_preproc_directive] = ACTIONS(3400), - [anon_sym_LPAREN2] = ACTIONS(3402), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_TILDE] = ACTIONS(3402), - [anon_sym_DASH] = ACTIONS(3400), - [anon_sym_PLUS] = ACTIONS(3400), - [anon_sym_STAR] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3400), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym___extension__] = ACTIONS(3400), - [anon_sym_typedef] = ACTIONS(3400), - [anon_sym_extern] = ACTIONS(3400), - [anon_sym___attribute__] = ACTIONS(3400), - [anon_sym_COLON_COLON] = ACTIONS(3402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3402), - [anon_sym___declspec] = ACTIONS(3400), - [anon_sym___based] = ACTIONS(3400), - [anon_sym___cdecl] = ACTIONS(3400), - [anon_sym___clrcall] = ACTIONS(3400), - [anon_sym___stdcall] = ACTIONS(3400), - [anon_sym___fastcall] = ACTIONS(3400), - [anon_sym___thiscall] = ACTIONS(3400), - [anon_sym___vectorcall] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3402), - [anon_sym_signed] = ACTIONS(3400), - [anon_sym_unsigned] = ACTIONS(3400), - [anon_sym_long] = ACTIONS(3400), - [anon_sym_short] = ACTIONS(3400), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_static] = ACTIONS(3400), - [anon_sym_register] = ACTIONS(3400), - [anon_sym_inline] = ACTIONS(3400), - [anon_sym___inline] = ACTIONS(3400), - [anon_sym___inline__] = ACTIONS(3400), - [anon_sym___forceinline] = ACTIONS(3400), - [anon_sym_thread_local] = ACTIONS(3400), - [anon_sym___thread] = ACTIONS(3400), - [anon_sym_const] = ACTIONS(3400), - [anon_sym_constexpr] = ACTIONS(3400), - [anon_sym_volatile] = ACTIONS(3400), - [anon_sym_restrict] = ACTIONS(3400), - [anon_sym___restrict__] = ACTIONS(3400), - [anon_sym__Atomic] = ACTIONS(3400), - [anon_sym__Noreturn] = ACTIONS(3400), - [anon_sym_noreturn] = ACTIONS(3400), - [anon_sym_mutable] = ACTIONS(3400), - [anon_sym_constinit] = ACTIONS(3400), - [anon_sym_consteval] = ACTIONS(3400), - [sym_primitive_type] = ACTIONS(3400), - [anon_sym_enum] = ACTIONS(3400), - [anon_sym_class] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3400), - [anon_sym_union] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_switch] = ACTIONS(3400), - [anon_sym_case] = ACTIONS(3400), - [anon_sym_default] = ACTIONS(3400), - [anon_sym_while] = ACTIONS(3400), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3400), - [anon_sym_break] = ACTIONS(3400), - [anon_sym_continue] = ACTIONS(3400), - [anon_sym_goto] = ACTIONS(3400), - [anon_sym_not] = ACTIONS(3400), - [anon_sym_compl] = ACTIONS(3400), - [anon_sym_DASH_DASH] = ACTIONS(3402), - [anon_sym_PLUS_PLUS] = ACTIONS(3402), - [anon_sym_sizeof] = ACTIONS(3400), - [anon_sym___alignof__] = ACTIONS(3400), - [anon_sym___alignof] = ACTIONS(3400), - [anon_sym__alignof] = ACTIONS(3400), - [anon_sym_alignof] = ACTIONS(3400), - [anon_sym__Alignof] = ACTIONS(3400), - [anon_sym_offsetof] = ACTIONS(3400), - [anon_sym__Generic] = ACTIONS(3400), - [anon_sym_asm] = ACTIONS(3400), - [anon_sym___asm__] = ACTIONS(3400), - [sym_number_literal] = ACTIONS(3402), - [anon_sym_L_SQUOTE] = ACTIONS(3402), - [anon_sym_u_SQUOTE] = ACTIONS(3402), - [anon_sym_U_SQUOTE] = ACTIONS(3402), - [anon_sym_u8_SQUOTE] = ACTIONS(3402), - [anon_sym_SQUOTE] = ACTIONS(3402), - [anon_sym_L_DQUOTE] = ACTIONS(3402), - [anon_sym_u_DQUOTE] = ACTIONS(3402), - [anon_sym_U_DQUOTE] = ACTIONS(3402), - [anon_sym_u8_DQUOTE] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [sym_true] = ACTIONS(3400), - [sym_false] = ACTIONS(3400), - [anon_sym_NULL] = ACTIONS(3400), - [anon_sym_nullptr] = ACTIONS(3400), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3400), - [anon_sym_decltype] = ACTIONS(3400), - [anon_sym_virtual] = ACTIONS(3400), - [anon_sym_alignas] = ACTIONS(3400), - [anon_sym_explicit] = ACTIONS(3400), - [anon_sym_typename] = ACTIONS(3400), - [anon_sym_template] = ACTIONS(3400), - [anon_sym_operator] = ACTIONS(3400), - [anon_sym_try] = ACTIONS(3400), - [anon_sym_delete] = ACTIONS(3400), - [anon_sym_throw] = ACTIONS(3400), - [anon_sym_namespace] = ACTIONS(3400), - [anon_sym_using] = ACTIONS(3400), - [anon_sym_static_assert] = ACTIONS(3400), - [anon_sym_concept] = ACTIONS(3400), - [anon_sym_co_return] = ACTIONS(3400), - [anon_sym_co_yield] = ACTIONS(3400), - [anon_sym_R_DQUOTE] = ACTIONS(3402), - [anon_sym_LR_DQUOTE] = ACTIONS(3402), - [anon_sym_uR_DQUOTE] = ACTIONS(3402), - [anon_sym_UR_DQUOTE] = ACTIONS(3402), - [anon_sym_u8R_DQUOTE] = ACTIONS(3402), - [anon_sym_co_await] = ACTIONS(3400), - [anon_sym_new] = ACTIONS(3400), - [anon_sym_requires] = ACTIONS(3400), - [sym_this] = ACTIONS(3400), + [1399] = { + [sym__expression] = STATE(3359), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1315] = { - [sym_identifier] = ACTIONS(3251), - [aux_sym_preproc_include_token1] = ACTIONS(3251), - [aux_sym_preproc_def_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3251), - [sym_preproc_directive] = ACTIONS(3251), - [anon_sym_LPAREN2] = ACTIONS(3253), - [anon_sym_BANG] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_SEMI] = ACTIONS(3253), - [anon_sym___extension__] = ACTIONS(3251), - [anon_sym_typedef] = ACTIONS(3251), - [anon_sym_extern] = ACTIONS(3251), - [anon_sym___attribute__] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(3253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3253), - [anon_sym___declspec] = ACTIONS(3251), - [anon_sym___based] = ACTIONS(3251), - [anon_sym___cdecl] = ACTIONS(3251), - [anon_sym___clrcall] = ACTIONS(3251), - [anon_sym___stdcall] = ACTIONS(3251), - [anon_sym___fastcall] = ACTIONS(3251), - [anon_sym___thiscall] = ACTIONS(3251), - [anon_sym___vectorcall] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_RBRACE] = ACTIONS(3253), - [anon_sym_signed] = ACTIONS(3251), - [anon_sym_unsigned] = ACTIONS(3251), - [anon_sym_long] = ACTIONS(3251), - [anon_sym_short] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_register] = ACTIONS(3251), - [anon_sym_inline] = ACTIONS(3251), - [anon_sym___inline] = ACTIONS(3251), - [anon_sym___inline__] = ACTIONS(3251), - [anon_sym___forceinline] = ACTIONS(3251), - [anon_sym_thread_local] = ACTIONS(3251), - [anon_sym___thread] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_constexpr] = ACTIONS(3251), - [anon_sym_volatile] = ACTIONS(3251), - [anon_sym_restrict] = ACTIONS(3251), - [anon_sym___restrict__] = ACTIONS(3251), - [anon_sym__Atomic] = ACTIONS(3251), - [anon_sym__Noreturn] = ACTIONS(3251), - [anon_sym_noreturn] = ACTIONS(3251), - [anon_sym_mutable] = ACTIONS(3251), - [anon_sym_constinit] = ACTIONS(3251), - [anon_sym_consteval] = ACTIONS(3251), - [sym_primitive_type] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_union] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_switch] = ACTIONS(3251), - [anon_sym_case] = ACTIONS(3251), - [anon_sym_default] = ACTIONS(3251), - [anon_sym_while] = ACTIONS(3251), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_goto] = ACTIONS(3251), - [anon_sym_not] = ACTIONS(3251), - [anon_sym_compl] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_PLUS_PLUS] = ACTIONS(3253), - [anon_sym_sizeof] = ACTIONS(3251), - [anon_sym___alignof__] = ACTIONS(3251), - [anon_sym___alignof] = ACTIONS(3251), - [anon_sym__alignof] = ACTIONS(3251), - [anon_sym_alignof] = ACTIONS(3251), - [anon_sym__Alignof] = ACTIONS(3251), - [anon_sym_offsetof] = ACTIONS(3251), - [anon_sym__Generic] = ACTIONS(3251), - [anon_sym_asm] = ACTIONS(3251), - [anon_sym___asm__] = ACTIONS(3251), - [sym_number_literal] = ACTIONS(3253), - [anon_sym_L_SQUOTE] = ACTIONS(3253), - [anon_sym_u_SQUOTE] = ACTIONS(3253), - [anon_sym_U_SQUOTE] = ACTIONS(3253), - [anon_sym_u8_SQUOTE] = ACTIONS(3253), - [anon_sym_SQUOTE] = ACTIONS(3253), - [anon_sym_L_DQUOTE] = ACTIONS(3253), - [anon_sym_u_DQUOTE] = ACTIONS(3253), - [anon_sym_U_DQUOTE] = ACTIONS(3253), - [anon_sym_u8_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [anon_sym_NULL] = ACTIONS(3251), - [anon_sym_nullptr] = ACTIONS(3251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3251), - [anon_sym_decltype] = ACTIONS(3251), - [anon_sym_virtual] = ACTIONS(3251), - [anon_sym_alignas] = ACTIONS(3251), - [anon_sym_explicit] = ACTIONS(3251), - [anon_sym_typename] = ACTIONS(3251), - [anon_sym_template] = ACTIONS(3251), - [anon_sym_operator] = ACTIONS(3251), - [anon_sym_try] = ACTIONS(3251), - [anon_sym_delete] = ACTIONS(3251), - [anon_sym_throw] = ACTIONS(3251), - [anon_sym_namespace] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_static_assert] = ACTIONS(3251), - [anon_sym_concept] = ACTIONS(3251), - [anon_sym_co_return] = ACTIONS(3251), - [anon_sym_co_yield] = ACTIONS(3251), - [anon_sym_R_DQUOTE] = ACTIONS(3253), - [anon_sym_LR_DQUOTE] = ACTIONS(3253), - [anon_sym_uR_DQUOTE] = ACTIONS(3253), - [anon_sym_UR_DQUOTE] = ACTIONS(3253), - [anon_sym_u8R_DQUOTE] = ACTIONS(3253), - [anon_sym_co_await] = ACTIONS(3251), - [anon_sym_new] = ACTIONS(3251), - [anon_sym_requires] = ACTIONS(3251), - [sym_this] = ACTIONS(3251), + [1400] = { + [sym__expression] = STATE(4029), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1316] = { - [sym_identifier] = ACTIONS(3328), - [aux_sym_preproc_include_token1] = ACTIONS(3328), - [aux_sym_preproc_def_token1] = ACTIONS(3328), - [aux_sym_preproc_if_token1] = ACTIONS(3328), - [aux_sym_preproc_if_token2] = ACTIONS(3328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3328), - [sym_preproc_directive] = ACTIONS(3328), - [anon_sym_LPAREN2] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_STAR] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym___extension__] = ACTIONS(3328), - [anon_sym_typedef] = ACTIONS(3328), - [anon_sym_extern] = ACTIONS(3328), - [anon_sym___attribute__] = ACTIONS(3328), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3330), - [anon_sym___declspec] = ACTIONS(3328), - [anon_sym___based] = ACTIONS(3328), - [anon_sym___cdecl] = ACTIONS(3328), - [anon_sym___clrcall] = ACTIONS(3328), - [anon_sym___stdcall] = ACTIONS(3328), - [anon_sym___fastcall] = ACTIONS(3328), - [anon_sym___thiscall] = ACTIONS(3328), - [anon_sym___vectorcall] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_signed] = ACTIONS(3328), - [anon_sym_unsigned] = ACTIONS(3328), - [anon_sym_long] = ACTIONS(3328), - [anon_sym_short] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_register] = ACTIONS(3328), - [anon_sym_inline] = ACTIONS(3328), - [anon_sym___inline] = ACTIONS(3328), - [anon_sym___inline__] = ACTIONS(3328), - [anon_sym___forceinline] = ACTIONS(3328), - [anon_sym_thread_local] = ACTIONS(3328), - [anon_sym___thread] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_constexpr] = ACTIONS(3328), - [anon_sym_volatile] = ACTIONS(3328), - [anon_sym_restrict] = ACTIONS(3328), - [anon_sym___restrict__] = ACTIONS(3328), - [anon_sym__Atomic] = ACTIONS(3328), - [anon_sym__Noreturn] = ACTIONS(3328), - [anon_sym_noreturn] = ACTIONS(3328), - [anon_sym_mutable] = ACTIONS(3328), - [anon_sym_constinit] = ACTIONS(3328), - [anon_sym_consteval] = ACTIONS(3328), - [sym_primitive_type] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_struct] = ACTIONS(3328), - [anon_sym_union] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_switch] = ACTIONS(3328), - [anon_sym_case] = ACTIONS(3328), - [anon_sym_default] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_goto] = ACTIONS(3328), - [anon_sym_not] = ACTIONS(3328), - [anon_sym_compl] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_sizeof] = ACTIONS(3328), - [anon_sym___alignof__] = ACTIONS(3328), - [anon_sym___alignof] = ACTIONS(3328), - [anon_sym__alignof] = ACTIONS(3328), - [anon_sym_alignof] = ACTIONS(3328), - [anon_sym__Alignof] = ACTIONS(3328), - [anon_sym_offsetof] = ACTIONS(3328), - [anon_sym__Generic] = ACTIONS(3328), - [anon_sym_asm] = ACTIONS(3328), - [anon_sym___asm__] = ACTIONS(3328), - [sym_number_literal] = ACTIONS(3330), - [anon_sym_L_SQUOTE] = ACTIONS(3330), - [anon_sym_u_SQUOTE] = ACTIONS(3330), - [anon_sym_U_SQUOTE] = ACTIONS(3330), - [anon_sym_u8_SQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_L_DQUOTE] = ACTIONS(3330), - [anon_sym_u_DQUOTE] = ACTIONS(3330), - [anon_sym_U_DQUOTE] = ACTIONS(3330), - [anon_sym_u8_DQUOTE] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [anon_sym_NULL] = ACTIONS(3328), - [anon_sym_nullptr] = ACTIONS(3328), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3328), - [anon_sym_decltype] = ACTIONS(3328), - [anon_sym_virtual] = ACTIONS(3328), - [anon_sym_alignas] = ACTIONS(3328), - [anon_sym_explicit] = ACTIONS(3328), - [anon_sym_typename] = ACTIONS(3328), - [anon_sym_template] = ACTIONS(3328), - [anon_sym_operator] = ACTIONS(3328), - [anon_sym_try] = ACTIONS(3328), - [anon_sym_delete] = ACTIONS(3328), - [anon_sym_throw] = ACTIONS(3328), - [anon_sym_namespace] = ACTIONS(3328), - [anon_sym_using] = ACTIONS(3328), - [anon_sym_static_assert] = ACTIONS(3328), - [anon_sym_concept] = ACTIONS(3328), - [anon_sym_co_return] = ACTIONS(3328), - [anon_sym_co_yield] = ACTIONS(3328), - [anon_sym_R_DQUOTE] = ACTIONS(3330), - [anon_sym_LR_DQUOTE] = ACTIONS(3330), - [anon_sym_uR_DQUOTE] = ACTIONS(3330), - [anon_sym_UR_DQUOTE] = ACTIONS(3330), - [anon_sym_u8R_DQUOTE] = ACTIONS(3330), - [anon_sym_co_await] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3328), - [anon_sym_requires] = ACTIONS(3328), - [sym_this] = ACTIONS(3328), + [1401] = { + [sym__expression] = STATE(4226), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1317] = { - [sym_identifier] = ACTIONS(3450), - [aux_sym_preproc_include_token1] = ACTIONS(3450), - [aux_sym_preproc_def_token1] = ACTIONS(3450), - [aux_sym_preproc_if_token1] = ACTIONS(3450), - [aux_sym_preproc_if_token2] = ACTIONS(3450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3450), - [sym_preproc_directive] = ACTIONS(3450), - [anon_sym_LPAREN2] = ACTIONS(3452), - [anon_sym_BANG] = ACTIONS(3452), - [anon_sym_TILDE] = ACTIONS(3452), - [anon_sym_DASH] = ACTIONS(3450), - [anon_sym_PLUS] = ACTIONS(3450), - [anon_sym_STAR] = ACTIONS(3452), - [anon_sym_AMP_AMP] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3450), - [anon_sym_SEMI] = ACTIONS(3452), - [anon_sym___extension__] = ACTIONS(3450), - [anon_sym_typedef] = ACTIONS(3450), - [anon_sym_extern] = ACTIONS(3450), - [anon_sym___attribute__] = ACTIONS(3450), - [anon_sym_COLON_COLON] = ACTIONS(3452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3452), - [anon_sym___declspec] = ACTIONS(3450), - [anon_sym___based] = ACTIONS(3450), - [anon_sym___cdecl] = ACTIONS(3450), - [anon_sym___clrcall] = ACTIONS(3450), - [anon_sym___stdcall] = ACTIONS(3450), - [anon_sym___fastcall] = ACTIONS(3450), - [anon_sym___thiscall] = ACTIONS(3450), - [anon_sym___vectorcall] = ACTIONS(3450), - [anon_sym_LBRACE] = ACTIONS(3452), - [anon_sym_signed] = ACTIONS(3450), - [anon_sym_unsigned] = ACTIONS(3450), - [anon_sym_long] = ACTIONS(3450), - [anon_sym_short] = ACTIONS(3450), - [anon_sym_LBRACK] = ACTIONS(3450), - [anon_sym_static] = ACTIONS(3450), - [anon_sym_register] = ACTIONS(3450), - [anon_sym_inline] = ACTIONS(3450), - [anon_sym___inline] = ACTIONS(3450), - [anon_sym___inline__] = ACTIONS(3450), - [anon_sym___forceinline] = ACTIONS(3450), - [anon_sym_thread_local] = ACTIONS(3450), - [anon_sym___thread] = ACTIONS(3450), - [anon_sym_const] = ACTIONS(3450), - [anon_sym_constexpr] = ACTIONS(3450), - [anon_sym_volatile] = ACTIONS(3450), - [anon_sym_restrict] = ACTIONS(3450), - [anon_sym___restrict__] = ACTIONS(3450), - [anon_sym__Atomic] = ACTIONS(3450), - [anon_sym__Noreturn] = ACTIONS(3450), - [anon_sym_noreturn] = ACTIONS(3450), - [anon_sym_mutable] = ACTIONS(3450), - [anon_sym_constinit] = ACTIONS(3450), - [anon_sym_consteval] = ACTIONS(3450), - [sym_primitive_type] = ACTIONS(3450), - [anon_sym_enum] = ACTIONS(3450), - [anon_sym_class] = ACTIONS(3450), - [anon_sym_struct] = ACTIONS(3450), - [anon_sym_union] = ACTIONS(3450), - [anon_sym_if] = ACTIONS(3450), - [anon_sym_switch] = ACTIONS(3450), - [anon_sym_case] = ACTIONS(3450), - [anon_sym_default] = ACTIONS(3450), - [anon_sym_while] = ACTIONS(3450), - [anon_sym_do] = ACTIONS(3450), - [anon_sym_for] = ACTIONS(3450), - [anon_sym_return] = ACTIONS(3450), - [anon_sym_break] = ACTIONS(3450), - [anon_sym_continue] = ACTIONS(3450), - [anon_sym_goto] = ACTIONS(3450), - [anon_sym_not] = ACTIONS(3450), - [anon_sym_compl] = ACTIONS(3450), - [anon_sym_DASH_DASH] = ACTIONS(3452), - [anon_sym_PLUS_PLUS] = ACTIONS(3452), - [anon_sym_sizeof] = ACTIONS(3450), - [anon_sym___alignof__] = ACTIONS(3450), - [anon_sym___alignof] = ACTIONS(3450), - [anon_sym__alignof] = ACTIONS(3450), - [anon_sym_alignof] = ACTIONS(3450), - [anon_sym__Alignof] = ACTIONS(3450), - [anon_sym_offsetof] = ACTIONS(3450), - [anon_sym__Generic] = ACTIONS(3450), - [anon_sym_asm] = ACTIONS(3450), - [anon_sym___asm__] = ACTIONS(3450), - [sym_number_literal] = ACTIONS(3452), - [anon_sym_L_SQUOTE] = ACTIONS(3452), - [anon_sym_u_SQUOTE] = ACTIONS(3452), - [anon_sym_U_SQUOTE] = ACTIONS(3452), - [anon_sym_u8_SQUOTE] = ACTIONS(3452), - [anon_sym_SQUOTE] = ACTIONS(3452), - [anon_sym_L_DQUOTE] = ACTIONS(3452), - [anon_sym_u_DQUOTE] = ACTIONS(3452), - [anon_sym_U_DQUOTE] = ACTIONS(3452), - [anon_sym_u8_DQUOTE] = ACTIONS(3452), - [anon_sym_DQUOTE] = ACTIONS(3452), - [sym_true] = ACTIONS(3450), - [sym_false] = ACTIONS(3450), - [anon_sym_NULL] = ACTIONS(3450), - [anon_sym_nullptr] = ACTIONS(3450), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3450), - [anon_sym_decltype] = ACTIONS(3450), - [anon_sym_virtual] = ACTIONS(3450), - [anon_sym_alignas] = ACTIONS(3450), - [anon_sym_explicit] = ACTIONS(3450), - [anon_sym_typename] = ACTIONS(3450), - [anon_sym_template] = ACTIONS(3450), - [anon_sym_operator] = ACTIONS(3450), - [anon_sym_try] = ACTIONS(3450), - [anon_sym_delete] = ACTIONS(3450), - [anon_sym_throw] = ACTIONS(3450), - [anon_sym_namespace] = ACTIONS(3450), - [anon_sym_using] = ACTIONS(3450), - [anon_sym_static_assert] = ACTIONS(3450), - [anon_sym_concept] = ACTIONS(3450), - [anon_sym_co_return] = ACTIONS(3450), - [anon_sym_co_yield] = ACTIONS(3450), - [anon_sym_R_DQUOTE] = ACTIONS(3452), - [anon_sym_LR_DQUOTE] = ACTIONS(3452), - [anon_sym_uR_DQUOTE] = ACTIONS(3452), - [anon_sym_UR_DQUOTE] = ACTIONS(3452), - [anon_sym_u8R_DQUOTE] = ACTIONS(3452), - [anon_sym_co_await] = ACTIONS(3450), - [anon_sym_new] = ACTIONS(3450), - [anon_sym_requires] = ACTIONS(3450), - [sym_this] = ACTIONS(3450), + [1402] = { + [sym__expression] = STATE(3003), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, - [1318] = { - [sym_identifier] = ACTIONS(3234), - [aux_sym_preproc_include_token1] = ACTIONS(3234), - [aux_sym_preproc_def_token1] = ACTIONS(3234), - [aux_sym_preproc_if_token1] = ACTIONS(3234), - [aux_sym_preproc_if_token2] = ACTIONS(3234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3234), - [sym_preproc_directive] = ACTIONS(3234), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3236), - [anon_sym_AMP] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym___extension__] = ACTIONS(3234), - [anon_sym_typedef] = ACTIONS(3234), - [anon_sym_extern] = ACTIONS(3234), - [anon_sym___attribute__] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3236), - [anon_sym___declspec] = ACTIONS(3234), - [anon_sym___based] = ACTIONS(3234), - [anon_sym___cdecl] = ACTIONS(3234), - [anon_sym___clrcall] = ACTIONS(3234), - [anon_sym___stdcall] = ACTIONS(3234), - [anon_sym___fastcall] = ACTIONS(3234), - [anon_sym___thiscall] = ACTIONS(3234), - [anon_sym___vectorcall] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_signed] = ACTIONS(3234), - [anon_sym_unsigned] = ACTIONS(3234), - [anon_sym_long] = ACTIONS(3234), - [anon_sym_short] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_register] = ACTIONS(3234), - [anon_sym_inline] = ACTIONS(3234), - [anon_sym___inline] = ACTIONS(3234), - [anon_sym___inline__] = ACTIONS(3234), - [anon_sym___forceinline] = ACTIONS(3234), - [anon_sym_thread_local] = ACTIONS(3234), - [anon_sym___thread] = ACTIONS(3234), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_constexpr] = ACTIONS(3234), - [anon_sym_volatile] = ACTIONS(3234), - [anon_sym_restrict] = ACTIONS(3234), - [anon_sym___restrict__] = ACTIONS(3234), - [anon_sym__Atomic] = ACTIONS(3234), - [anon_sym__Noreturn] = ACTIONS(3234), - [anon_sym_noreturn] = ACTIONS(3234), - [anon_sym_mutable] = ACTIONS(3234), - [anon_sym_constinit] = ACTIONS(3234), - [anon_sym_consteval] = ACTIONS(3234), - [sym_primitive_type] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_struct] = ACTIONS(3234), - [anon_sym_union] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_case] = ACTIONS(3234), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_goto] = ACTIONS(3234), - [anon_sym_not] = ACTIONS(3234), - [anon_sym_compl] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3236), - [anon_sym_PLUS_PLUS] = ACTIONS(3236), - [anon_sym_sizeof] = ACTIONS(3234), - [anon_sym___alignof__] = ACTIONS(3234), - [anon_sym___alignof] = ACTIONS(3234), - [anon_sym__alignof] = ACTIONS(3234), - [anon_sym_alignof] = ACTIONS(3234), - [anon_sym__Alignof] = ACTIONS(3234), - [anon_sym_offsetof] = ACTIONS(3234), - [anon_sym__Generic] = ACTIONS(3234), - [anon_sym_asm] = ACTIONS(3234), - [anon_sym___asm__] = ACTIONS(3234), - [sym_number_literal] = ACTIONS(3236), - [anon_sym_L_SQUOTE] = ACTIONS(3236), - [anon_sym_u_SQUOTE] = ACTIONS(3236), - [anon_sym_U_SQUOTE] = ACTIONS(3236), - [anon_sym_u8_SQUOTE] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym_L_DQUOTE] = ACTIONS(3236), - [anon_sym_u_DQUOTE] = ACTIONS(3236), - [anon_sym_U_DQUOTE] = ACTIONS(3236), - [anon_sym_u8_DQUOTE] = ACTIONS(3236), - [anon_sym_DQUOTE] = ACTIONS(3236), - [sym_true] = ACTIONS(3234), - [sym_false] = ACTIONS(3234), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3234), - [anon_sym_decltype] = ACTIONS(3234), - [anon_sym_virtual] = ACTIONS(3234), - [anon_sym_alignas] = ACTIONS(3234), - [anon_sym_explicit] = ACTIONS(3234), - [anon_sym_typename] = ACTIONS(3234), - [anon_sym_template] = ACTIONS(3234), - [anon_sym_operator] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_delete] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_namespace] = ACTIONS(3234), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_static_assert] = ACTIONS(3234), - [anon_sym_concept] = ACTIONS(3234), - [anon_sym_co_return] = ACTIONS(3234), - [anon_sym_co_yield] = ACTIONS(3234), - [anon_sym_R_DQUOTE] = ACTIONS(3236), - [anon_sym_LR_DQUOTE] = ACTIONS(3236), - [anon_sym_uR_DQUOTE] = ACTIONS(3236), - [anon_sym_UR_DQUOTE] = ACTIONS(3236), - [anon_sym_u8R_DQUOTE] = ACTIONS(3236), - [anon_sym_co_await] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_requires] = ACTIONS(3234), - [sym_this] = ACTIONS(3234), + [1403] = { + [sym__expression] = STATE(3010), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, - [1319] = { - [sym_identifier] = ACTIONS(3444), - [aux_sym_preproc_include_token1] = ACTIONS(3444), - [aux_sym_preproc_def_token1] = ACTIONS(3444), - [aux_sym_preproc_if_token1] = ACTIONS(3444), - [aux_sym_preproc_if_token2] = ACTIONS(3444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3444), - [sym_preproc_directive] = ACTIONS(3444), - [anon_sym_LPAREN2] = ACTIONS(3446), - [anon_sym_BANG] = ACTIONS(3446), - [anon_sym_TILDE] = ACTIONS(3446), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(3446), - [anon_sym_AMP] = ACTIONS(3444), - [anon_sym_SEMI] = ACTIONS(3446), - [anon_sym___extension__] = ACTIONS(3444), - [anon_sym_typedef] = ACTIONS(3444), - [anon_sym_extern] = ACTIONS(3444), - [anon_sym___attribute__] = ACTIONS(3444), - [anon_sym_COLON_COLON] = ACTIONS(3446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3446), - [anon_sym___declspec] = ACTIONS(3444), - [anon_sym___based] = ACTIONS(3444), - [anon_sym___cdecl] = ACTIONS(3444), - [anon_sym___clrcall] = ACTIONS(3444), - [anon_sym___stdcall] = ACTIONS(3444), - [anon_sym___fastcall] = ACTIONS(3444), - [anon_sym___thiscall] = ACTIONS(3444), - [anon_sym___vectorcall] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3446), - [anon_sym_signed] = ACTIONS(3444), - [anon_sym_unsigned] = ACTIONS(3444), - [anon_sym_long] = ACTIONS(3444), - [anon_sym_short] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3444), - [anon_sym_static] = ACTIONS(3444), - [anon_sym_register] = ACTIONS(3444), - [anon_sym_inline] = ACTIONS(3444), - [anon_sym___inline] = ACTIONS(3444), - [anon_sym___inline__] = ACTIONS(3444), - [anon_sym___forceinline] = ACTIONS(3444), - [anon_sym_thread_local] = ACTIONS(3444), - [anon_sym___thread] = ACTIONS(3444), - [anon_sym_const] = ACTIONS(3444), - [anon_sym_constexpr] = ACTIONS(3444), - [anon_sym_volatile] = ACTIONS(3444), - [anon_sym_restrict] = ACTIONS(3444), - [anon_sym___restrict__] = ACTIONS(3444), - [anon_sym__Atomic] = ACTIONS(3444), - [anon_sym__Noreturn] = ACTIONS(3444), - [anon_sym_noreturn] = ACTIONS(3444), - [anon_sym_mutable] = ACTIONS(3444), - [anon_sym_constinit] = ACTIONS(3444), - [anon_sym_consteval] = ACTIONS(3444), - [sym_primitive_type] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), - [anon_sym_class] = ACTIONS(3444), - [anon_sym_struct] = ACTIONS(3444), - [anon_sym_union] = ACTIONS(3444), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_switch] = ACTIONS(3444), - [anon_sym_case] = ACTIONS(3444), - [anon_sym_default] = ACTIONS(3444), - [anon_sym_while] = ACTIONS(3444), - [anon_sym_do] = ACTIONS(3444), - [anon_sym_for] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3444), - [anon_sym_break] = ACTIONS(3444), - [anon_sym_continue] = ACTIONS(3444), - [anon_sym_goto] = ACTIONS(3444), - [anon_sym_not] = ACTIONS(3444), - [anon_sym_compl] = ACTIONS(3444), - [anon_sym_DASH_DASH] = ACTIONS(3446), - [anon_sym_PLUS_PLUS] = ACTIONS(3446), - [anon_sym_sizeof] = ACTIONS(3444), - [anon_sym___alignof__] = ACTIONS(3444), - [anon_sym___alignof] = ACTIONS(3444), - [anon_sym__alignof] = ACTIONS(3444), - [anon_sym_alignof] = ACTIONS(3444), - [anon_sym__Alignof] = ACTIONS(3444), - [anon_sym_offsetof] = ACTIONS(3444), - [anon_sym__Generic] = ACTIONS(3444), - [anon_sym_asm] = ACTIONS(3444), - [anon_sym___asm__] = ACTIONS(3444), - [sym_number_literal] = ACTIONS(3446), - [anon_sym_L_SQUOTE] = ACTIONS(3446), - [anon_sym_u_SQUOTE] = ACTIONS(3446), - [anon_sym_U_SQUOTE] = ACTIONS(3446), - [anon_sym_u8_SQUOTE] = ACTIONS(3446), - [anon_sym_SQUOTE] = ACTIONS(3446), - [anon_sym_L_DQUOTE] = ACTIONS(3446), - [anon_sym_u_DQUOTE] = ACTIONS(3446), - [anon_sym_U_DQUOTE] = ACTIONS(3446), - [anon_sym_u8_DQUOTE] = ACTIONS(3446), - [anon_sym_DQUOTE] = ACTIONS(3446), - [sym_true] = ACTIONS(3444), - [sym_false] = ACTIONS(3444), - [anon_sym_NULL] = ACTIONS(3444), - [anon_sym_nullptr] = ACTIONS(3444), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3444), - [anon_sym_decltype] = ACTIONS(3444), - [anon_sym_virtual] = ACTIONS(3444), - [anon_sym_alignas] = ACTIONS(3444), - [anon_sym_explicit] = ACTIONS(3444), - [anon_sym_typename] = ACTIONS(3444), - [anon_sym_template] = ACTIONS(3444), - [anon_sym_operator] = ACTIONS(3444), - [anon_sym_try] = ACTIONS(3444), - [anon_sym_delete] = ACTIONS(3444), - [anon_sym_throw] = ACTIONS(3444), - [anon_sym_namespace] = ACTIONS(3444), - [anon_sym_using] = ACTIONS(3444), - [anon_sym_static_assert] = ACTIONS(3444), - [anon_sym_concept] = ACTIONS(3444), - [anon_sym_co_return] = ACTIONS(3444), - [anon_sym_co_yield] = ACTIONS(3444), - [anon_sym_R_DQUOTE] = ACTIONS(3446), - [anon_sym_LR_DQUOTE] = ACTIONS(3446), - [anon_sym_uR_DQUOTE] = ACTIONS(3446), - [anon_sym_UR_DQUOTE] = ACTIONS(3446), - [anon_sym_u8R_DQUOTE] = ACTIONS(3446), - [anon_sym_co_await] = ACTIONS(3444), - [anon_sym_new] = ACTIONS(3444), - [anon_sym_requires] = ACTIONS(3444), - [sym_this] = ACTIONS(3444), + [1404] = { + [sym__expression] = STATE(2982), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1320] = { - [sym_identifier] = ACTIONS(3410), - [aux_sym_preproc_include_token1] = ACTIONS(3410), - [aux_sym_preproc_def_token1] = ACTIONS(3410), - [aux_sym_preproc_if_token1] = ACTIONS(3410), - [aux_sym_preproc_if_token2] = ACTIONS(3410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3410), - [sym_preproc_directive] = ACTIONS(3410), - [anon_sym_LPAREN2] = ACTIONS(3412), - [anon_sym_BANG] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3412), - [anon_sym_DASH] = ACTIONS(3410), - [anon_sym_PLUS] = ACTIONS(3410), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3410), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym___extension__] = ACTIONS(3410), - [anon_sym_typedef] = ACTIONS(3410), - [anon_sym_extern] = ACTIONS(3410), - [anon_sym___attribute__] = ACTIONS(3410), - [anon_sym_COLON_COLON] = ACTIONS(3412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), - [anon_sym___declspec] = ACTIONS(3410), - [anon_sym___based] = ACTIONS(3410), - [anon_sym___cdecl] = ACTIONS(3410), - [anon_sym___clrcall] = ACTIONS(3410), - [anon_sym___stdcall] = ACTIONS(3410), - [anon_sym___fastcall] = ACTIONS(3410), - [anon_sym___thiscall] = ACTIONS(3410), - [anon_sym___vectorcall] = ACTIONS(3410), - [anon_sym_LBRACE] = ACTIONS(3412), - [anon_sym_signed] = ACTIONS(3410), - [anon_sym_unsigned] = ACTIONS(3410), - [anon_sym_long] = ACTIONS(3410), - [anon_sym_short] = ACTIONS(3410), - [anon_sym_LBRACK] = ACTIONS(3410), - [anon_sym_static] = ACTIONS(3410), - [anon_sym_register] = ACTIONS(3410), - [anon_sym_inline] = ACTIONS(3410), - [anon_sym___inline] = ACTIONS(3410), - [anon_sym___inline__] = ACTIONS(3410), - [anon_sym___forceinline] = ACTIONS(3410), - [anon_sym_thread_local] = ACTIONS(3410), - [anon_sym___thread] = ACTIONS(3410), - [anon_sym_const] = ACTIONS(3410), - [anon_sym_constexpr] = ACTIONS(3410), - [anon_sym_volatile] = ACTIONS(3410), - [anon_sym_restrict] = ACTIONS(3410), - [anon_sym___restrict__] = ACTIONS(3410), - [anon_sym__Atomic] = ACTIONS(3410), - [anon_sym__Noreturn] = ACTIONS(3410), - [anon_sym_noreturn] = ACTIONS(3410), - [anon_sym_mutable] = ACTIONS(3410), - [anon_sym_constinit] = ACTIONS(3410), - [anon_sym_consteval] = ACTIONS(3410), - [sym_primitive_type] = ACTIONS(3410), - [anon_sym_enum] = ACTIONS(3410), - [anon_sym_class] = ACTIONS(3410), - [anon_sym_struct] = ACTIONS(3410), - [anon_sym_union] = ACTIONS(3410), - [anon_sym_if] = ACTIONS(3410), - [anon_sym_switch] = ACTIONS(3410), - [anon_sym_case] = ACTIONS(3410), - [anon_sym_default] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(3410), - [anon_sym_do] = ACTIONS(3410), - [anon_sym_for] = ACTIONS(3410), - [anon_sym_return] = ACTIONS(3410), - [anon_sym_break] = ACTIONS(3410), - [anon_sym_continue] = ACTIONS(3410), - [anon_sym_goto] = ACTIONS(3410), - [anon_sym_not] = ACTIONS(3410), - [anon_sym_compl] = ACTIONS(3410), - [anon_sym_DASH_DASH] = ACTIONS(3412), - [anon_sym_PLUS_PLUS] = ACTIONS(3412), - [anon_sym_sizeof] = ACTIONS(3410), - [anon_sym___alignof__] = ACTIONS(3410), - [anon_sym___alignof] = ACTIONS(3410), - [anon_sym__alignof] = ACTIONS(3410), - [anon_sym_alignof] = ACTIONS(3410), - [anon_sym__Alignof] = ACTIONS(3410), - [anon_sym_offsetof] = ACTIONS(3410), - [anon_sym__Generic] = ACTIONS(3410), - [anon_sym_asm] = ACTIONS(3410), - [anon_sym___asm__] = ACTIONS(3410), - [sym_number_literal] = ACTIONS(3412), - [anon_sym_L_SQUOTE] = ACTIONS(3412), - [anon_sym_u_SQUOTE] = ACTIONS(3412), - [anon_sym_U_SQUOTE] = ACTIONS(3412), - [anon_sym_u8_SQUOTE] = ACTIONS(3412), - [anon_sym_SQUOTE] = ACTIONS(3412), - [anon_sym_L_DQUOTE] = ACTIONS(3412), - [anon_sym_u_DQUOTE] = ACTIONS(3412), - [anon_sym_U_DQUOTE] = ACTIONS(3412), - [anon_sym_u8_DQUOTE] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [sym_true] = ACTIONS(3410), - [sym_false] = ACTIONS(3410), - [anon_sym_NULL] = ACTIONS(3410), - [anon_sym_nullptr] = ACTIONS(3410), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3410), - [anon_sym_decltype] = ACTIONS(3410), - [anon_sym_virtual] = ACTIONS(3410), - [anon_sym_alignas] = ACTIONS(3410), - [anon_sym_explicit] = ACTIONS(3410), - [anon_sym_typename] = ACTIONS(3410), - [anon_sym_template] = ACTIONS(3410), - [anon_sym_operator] = ACTIONS(3410), - [anon_sym_try] = ACTIONS(3410), - [anon_sym_delete] = ACTIONS(3410), - [anon_sym_throw] = ACTIONS(3410), - [anon_sym_namespace] = ACTIONS(3410), - [anon_sym_using] = ACTIONS(3410), - [anon_sym_static_assert] = ACTIONS(3410), - [anon_sym_concept] = ACTIONS(3410), - [anon_sym_co_return] = ACTIONS(3410), - [anon_sym_co_yield] = ACTIONS(3410), - [anon_sym_R_DQUOTE] = ACTIONS(3412), - [anon_sym_LR_DQUOTE] = ACTIONS(3412), - [anon_sym_uR_DQUOTE] = ACTIONS(3412), - [anon_sym_UR_DQUOTE] = ACTIONS(3412), - [anon_sym_u8R_DQUOTE] = ACTIONS(3412), - [anon_sym_co_await] = ACTIONS(3410), - [anon_sym_new] = ACTIONS(3410), - [anon_sym_requires] = ACTIONS(3410), - [sym_this] = ACTIONS(3410), + [1405] = { + [sym__expression] = STATE(2916), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1321] = { - [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_extern] = ACTIONS(3238), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3238), - [anon_sym_constinit] = ACTIONS(3238), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3238), - [anon_sym_alignas] = 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_using] = 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), + [1406] = { + [sym__expression] = STATE(2917), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1322] = { - [sym_identifier] = ACTIONS(3255), - [aux_sym_preproc_include_token1] = ACTIONS(3255), - [aux_sym_preproc_def_token1] = ACTIONS(3255), - [aux_sym_preproc_if_token1] = ACTIONS(3255), - [aux_sym_preproc_if_token2] = ACTIONS(3255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3255), - [sym_preproc_directive] = ACTIONS(3255), - [anon_sym_LPAREN2] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3257), - [anon_sym_AMP_AMP] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3257), - [anon_sym___extension__] = ACTIONS(3255), - [anon_sym_typedef] = ACTIONS(3255), - [anon_sym_extern] = ACTIONS(3255), - [anon_sym___attribute__] = ACTIONS(3255), - [anon_sym_COLON_COLON] = ACTIONS(3257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3257), - [anon_sym___declspec] = ACTIONS(3255), - [anon_sym___based] = ACTIONS(3255), - [anon_sym___cdecl] = ACTIONS(3255), - [anon_sym___clrcall] = ACTIONS(3255), - [anon_sym___stdcall] = ACTIONS(3255), - [anon_sym___fastcall] = ACTIONS(3255), - [anon_sym___thiscall] = ACTIONS(3255), - [anon_sym___vectorcall] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_signed] = ACTIONS(3255), - [anon_sym_unsigned] = ACTIONS(3255), - [anon_sym_long] = ACTIONS(3255), - [anon_sym_short] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_register] = ACTIONS(3255), - [anon_sym_inline] = ACTIONS(3255), - [anon_sym___inline] = ACTIONS(3255), - [anon_sym___inline__] = ACTIONS(3255), - [anon_sym___forceinline] = ACTIONS(3255), - [anon_sym_thread_local] = ACTIONS(3255), - [anon_sym___thread] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_constexpr] = ACTIONS(3255), - [anon_sym_volatile] = ACTIONS(3255), - [anon_sym_restrict] = ACTIONS(3255), - [anon_sym___restrict__] = ACTIONS(3255), - [anon_sym__Atomic] = ACTIONS(3255), - [anon_sym__Noreturn] = ACTIONS(3255), - [anon_sym_noreturn] = ACTIONS(3255), - [anon_sym_mutable] = ACTIONS(3255), - [anon_sym_constinit] = ACTIONS(3255), - [anon_sym_consteval] = ACTIONS(3255), - [sym_primitive_type] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_struct] = ACTIONS(3255), - [anon_sym_union] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_goto] = ACTIONS(3255), - [anon_sym_not] = ACTIONS(3255), - [anon_sym_compl] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_sizeof] = ACTIONS(3255), - [anon_sym___alignof__] = ACTIONS(3255), - [anon_sym___alignof] = ACTIONS(3255), - [anon_sym__alignof] = ACTIONS(3255), - [anon_sym_alignof] = ACTIONS(3255), - [anon_sym__Alignof] = ACTIONS(3255), - [anon_sym_offsetof] = ACTIONS(3255), - [anon_sym__Generic] = ACTIONS(3255), - [anon_sym_asm] = ACTIONS(3255), - [anon_sym___asm__] = ACTIONS(3255), - [sym_number_literal] = ACTIONS(3257), - [anon_sym_L_SQUOTE] = ACTIONS(3257), - [anon_sym_u_SQUOTE] = ACTIONS(3257), - [anon_sym_U_SQUOTE] = ACTIONS(3257), - [anon_sym_u8_SQUOTE] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3257), - [anon_sym_L_DQUOTE] = ACTIONS(3257), - [anon_sym_u_DQUOTE] = ACTIONS(3257), - [anon_sym_U_DQUOTE] = ACTIONS(3257), - [anon_sym_u8_DQUOTE] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3257), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [anon_sym_NULL] = ACTIONS(3255), - [anon_sym_nullptr] = ACTIONS(3255), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3255), - [anon_sym_decltype] = ACTIONS(3255), - [anon_sym_virtual] = ACTIONS(3255), - [anon_sym_alignas] = ACTIONS(3255), - [anon_sym_explicit] = ACTIONS(3255), - [anon_sym_typename] = ACTIONS(3255), - [anon_sym_template] = ACTIONS(3255), - [anon_sym_operator] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_static_assert] = ACTIONS(3255), - [anon_sym_concept] = ACTIONS(3255), - [anon_sym_co_return] = ACTIONS(3255), - [anon_sym_co_yield] = ACTIONS(3255), - [anon_sym_R_DQUOTE] = ACTIONS(3257), - [anon_sym_LR_DQUOTE] = ACTIONS(3257), - [anon_sym_uR_DQUOTE] = ACTIONS(3257), - [anon_sym_UR_DQUOTE] = ACTIONS(3257), - [anon_sym_u8R_DQUOTE] = ACTIONS(3257), - [anon_sym_co_await] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_requires] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), + [1407] = { + [sym__expression] = STATE(2918), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1323] = { - [sym_identifier] = ACTIONS(3342), - [aux_sym_preproc_include_token1] = ACTIONS(3342), - [aux_sym_preproc_def_token1] = ACTIONS(3342), - [aux_sym_preproc_if_token1] = ACTIONS(3342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3342), - [sym_preproc_directive] = ACTIONS(3342), - [anon_sym_LPAREN2] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3342), - [anon_sym_STAR] = ACTIONS(3344), - [anon_sym_AMP_AMP] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3342), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym___extension__] = ACTIONS(3342), - [anon_sym_typedef] = ACTIONS(3342), - [anon_sym_extern] = ACTIONS(3342), - [anon_sym___attribute__] = ACTIONS(3342), - [anon_sym_COLON_COLON] = ACTIONS(3344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3344), - [anon_sym___declspec] = ACTIONS(3342), - [anon_sym___based] = ACTIONS(3342), - [anon_sym___cdecl] = ACTIONS(3342), - [anon_sym___clrcall] = ACTIONS(3342), - [anon_sym___stdcall] = ACTIONS(3342), - [anon_sym___fastcall] = ACTIONS(3342), - [anon_sym___thiscall] = ACTIONS(3342), - [anon_sym___vectorcall] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_RBRACE] = ACTIONS(3344), - [anon_sym_signed] = ACTIONS(3342), - [anon_sym_unsigned] = ACTIONS(3342), - [anon_sym_long] = ACTIONS(3342), - [anon_sym_short] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_static] = ACTIONS(3342), - [anon_sym_register] = ACTIONS(3342), - [anon_sym_inline] = ACTIONS(3342), - [anon_sym___inline] = ACTIONS(3342), - [anon_sym___inline__] = ACTIONS(3342), - [anon_sym___forceinline] = ACTIONS(3342), - [anon_sym_thread_local] = ACTIONS(3342), - [anon_sym___thread] = ACTIONS(3342), - [anon_sym_const] = ACTIONS(3342), - [anon_sym_constexpr] = ACTIONS(3342), - [anon_sym_volatile] = ACTIONS(3342), - [anon_sym_restrict] = ACTIONS(3342), - [anon_sym___restrict__] = ACTIONS(3342), - [anon_sym__Atomic] = ACTIONS(3342), - [anon_sym__Noreturn] = ACTIONS(3342), - [anon_sym_noreturn] = ACTIONS(3342), - [anon_sym_mutable] = ACTIONS(3342), - [anon_sym_constinit] = ACTIONS(3342), - [anon_sym_consteval] = ACTIONS(3342), - [sym_primitive_type] = ACTIONS(3342), - [anon_sym_enum] = ACTIONS(3342), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3342), - [anon_sym_union] = ACTIONS(3342), - [anon_sym_if] = ACTIONS(3342), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3342), - [anon_sym_default] = ACTIONS(3342), - [anon_sym_while] = ACTIONS(3342), - [anon_sym_do] = ACTIONS(3342), - [anon_sym_for] = ACTIONS(3342), - [anon_sym_return] = ACTIONS(3342), - [anon_sym_break] = ACTIONS(3342), - [anon_sym_continue] = ACTIONS(3342), - [anon_sym_goto] = ACTIONS(3342), - [anon_sym_not] = ACTIONS(3342), - [anon_sym_compl] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_sizeof] = ACTIONS(3342), - [anon_sym___alignof__] = ACTIONS(3342), - [anon_sym___alignof] = ACTIONS(3342), - [anon_sym__alignof] = ACTIONS(3342), - [anon_sym_alignof] = ACTIONS(3342), - [anon_sym__Alignof] = ACTIONS(3342), - [anon_sym_offsetof] = ACTIONS(3342), - [anon_sym__Generic] = ACTIONS(3342), - [anon_sym_asm] = ACTIONS(3342), - [anon_sym___asm__] = ACTIONS(3342), - [sym_number_literal] = ACTIONS(3344), - [anon_sym_L_SQUOTE] = ACTIONS(3344), - [anon_sym_u_SQUOTE] = ACTIONS(3344), - [anon_sym_U_SQUOTE] = ACTIONS(3344), - [anon_sym_u8_SQUOTE] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3344), - [anon_sym_L_DQUOTE] = ACTIONS(3344), - [anon_sym_u_DQUOTE] = ACTIONS(3344), - [anon_sym_U_DQUOTE] = ACTIONS(3344), - [anon_sym_u8_DQUOTE] = ACTIONS(3344), - [anon_sym_DQUOTE] = ACTIONS(3344), - [sym_true] = ACTIONS(3342), - [sym_false] = ACTIONS(3342), - [anon_sym_NULL] = ACTIONS(3342), - [anon_sym_nullptr] = ACTIONS(3342), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3342), - [anon_sym_decltype] = ACTIONS(3342), - [anon_sym_virtual] = ACTIONS(3342), - [anon_sym_alignas] = ACTIONS(3342), - [anon_sym_explicit] = ACTIONS(3342), - [anon_sym_typename] = ACTIONS(3342), - [anon_sym_template] = ACTIONS(3342), - [anon_sym_operator] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(3342), - [anon_sym_delete] = ACTIONS(3342), - [anon_sym_throw] = ACTIONS(3342), - [anon_sym_namespace] = ACTIONS(3342), - [anon_sym_using] = ACTIONS(3342), - [anon_sym_static_assert] = ACTIONS(3342), - [anon_sym_concept] = ACTIONS(3342), - [anon_sym_co_return] = ACTIONS(3342), - [anon_sym_co_yield] = ACTIONS(3342), - [anon_sym_R_DQUOTE] = ACTIONS(3344), - [anon_sym_LR_DQUOTE] = ACTIONS(3344), - [anon_sym_uR_DQUOTE] = ACTIONS(3344), - [anon_sym_UR_DQUOTE] = ACTIONS(3344), - [anon_sym_u8R_DQUOTE] = ACTIONS(3344), - [anon_sym_co_await] = ACTIONS(3342), - [anon_sym_new] = ACTIONS(3342), - [anon_sym_requires] = ACTIONS(3342), - [sym_this] = ACTIONS(3342), + [1408] = { + [sym__expression] = STATE(2919), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1324] = { - [sym_identifier] = ACTIONS(3259), - [aux_sym_preproc_include_token1] = ACTIONS(3259), - [aux_sym_preproc_def_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token2] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3259), - [sym_preproc_directive] = ACTIONS(3259), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(3261), - [anon_sym_TILDE] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3261), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_SEMI] = ACTIONS(3261), - [anon_sym___extension__] = ACTIONS(3259), - [anon_sym_typedef] = ACTIONS(3259), - [anon_sym_extern] = ACTIONS(3259), - [anon_sym___attribute__] = ACTIONS(3259), - [anon_sym_COLON_COLON] = ACTIONS(3261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3261), - [anon_sym___declspec] = ACTIONS(3259), - [anon_sym___based] = ACTIONS(3259), - [anon_sym___cdecl] = ACTIONS(3259), - [anon_sym___clrcall] = ACTIONS(3259), - [anon_sym___stdcall] = ACTIONS(3259), - [anon_sym___fastcall] = ACTIONS(3259), - [anon_sym___thiscall] = ACTIONS(3259), - [anon_sym___vectorcall] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3261), - [anon_sym_signed] = ACTIONS(3259), - [anon_sym_unsigned] = ACTIONS(3259), - [anon_sym_long] = ACTIONS(3259), - [anon_sym_short] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_static] = ACTIONS(3259), - [anon_sym_register] = ACTIONS(3259), - [anon_sym_inline] = ACTIONS(3259), - [anon_sym___inline] = ACTIONS(3259), - [anon_sym___inline__] = ACTIONS(3259), - [anon_sym___forceinline] = ACTIONS(3259), - [anon_sym_thread_local] = ACTIONS(3259), - [anon_sym___thread] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_constexpr] = ACTIONS(3259), - [anon_sym_volatile] = ACTIONS(3259), - [anon_sym_restrict] = ACTIONS(3259), - [anon_sym___restrict__] = ACTIONS(3259), - [anon_sym__Atomic] = ACTIONS(3259), - [anon_sym__Noreturn] = ACTIONS(3259), - [anon_sym_noreturn] = ACTIONS(3259), - [anon_sym_mutable] = ACTIONS(3259), - [anon_sym_constinit] = ACTIONS(3259), - [anon_sym_consteval] = ACTIONS(3259), - [sym_primitive_type] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), - [anon_sym_class] = ACTIONS(3259), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_union] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_switch] = ACTIONS(3259), - [anon_sym_case] = ACTIONS(3259), - [anon_sym_default] = ACTIONS(3259), - [anon_sym_while] = ACTIONS(3259), - [anon_sym_do] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_goto] = ACTIONS(3259), - [anon_sym_not] = ACTIONS(3259), - [anon_sym_compl] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3261), - [anon_sym_PLUS_PLUS] = ACTIONS(3261), - [anon_sym_sizeof] = ACTIONS(3259), - [anon_sym___alignof__] = ACTIONS(3259), - [anon_sym___alignof] = ACTIONS(3259), - [anon_sym__alignof] = ACTIONS(3259), - [anon_sym_alignof] = ACTIONS(3259), - [anon_sym__Alignof] = ACTIONS(3259), - [anon_sym_offsetof] = ACTIONS(3259), - [anon_sym__Generic] = ACTIONS(3259), - [anon_sym_asm] = ACTIONS(3259), - [anon_sym___asm__] = ACTIONS(3259), - [sym_number_literal] = ACTIONS(3261), - [anon_sym_L_SQUOTE] = ACTIONS(3261), - [anon_sym_u_SQUOTE] = ACTIONS(3261), - [anon_sym_U_SQUOTE] = ACTIONS(3261), - [anon_sym_u8_SQUOTE] = ACTIONS(3261), - [anon_sym_SQUOTE] = ACTIONS(3261), - [anon_sym_L_DQUOTE] = ACTIONS(3261), - [anon_sym_u_DQUOTE] = ACTIONS(3261), - [anon_sym_U_DQUOTE] = ACTIONS(3261), - [anon_sym_u8_DQUOTE] = ACTIONS(3261), - [anon_sym_DQUOTE] = ACTIONS(3261), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [anon_sym_NULL] = ACTIONS(3259), - [anon_sym_nullptr] = ACTIONS(3259), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3259), - [anon_sym_decltype] = ACTIONS(3259), - [anon_sym_virtual] = ACTIONS(3259), - [anon_sym_alignas] = ACTIONS(3259), - [anon_sym_explicit] = ACTIONS(3259), - [anon_sym_typename] = ACTIONS(3259), - [anon_sym_template] = ACTIONS(3259), - [anon_sym_operator] = ACTIONS(3259), - [anon_sym_try] = ACTIONS(3259), - [anon_sym_delete] = ACTIONS(3259), - [anon_sym_throw] = ACTIONS(3259), - [anon_sym_namespace] = ACTIONS(3259), - [anon_sym_using] = ACTIONS(3259), - [anon_sym_static_assert] = ACTIONS(3259), - [anon_sym_concept] = ACTIONS(3259), - [anon_sym_co_return] = ACTIONS(3259), - [anon_sym_co_yield] = ACTIONS(3259), - [anon_sym_R_DQUOTE] = ACTIONS(3261), - [anon_sym_LR_DQUOTE] = ACTIONS(3261), - [anon_sym_uR_DQUOTE] = ACTIONS(3261), - [anon_sym_UR_DQUOTE] = ACTIONS(3261), - [anon_sym_u8R_DQUOTE] = ACTIONS(3261), - [anon_sym_co_await] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3259), - [anon_sym_requires] = ACTIONS(3259), - [sym_this] = ACTIONS(3259), + [1409] = { + [sym__expression] = STATE(2925), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1325] = { - [sym_identifier] = ACTIONS(3436), - [aux_sym_preproc_include_token1] = ACTIONS(3436), - [aux_sym_preproc_def_token1] = ACTIONS(3436), - [aux_sym_preproc_if_token1] = ACTIONS(3436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3436), - [sym_preproc_directive] = ACTIONS(3436), - [anon_sym_LPAREN2] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3438), - [anon_sym_TILDE] = ACTIONS(3438), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_AMP] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym___extension__] = ACTIONS(3436), - [anon_sym_typedef] = ACTIONS(3436), - [anon_sym_extern] = ACTIONS(3436), - [anon_sym___attribute__] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3438), - [anon_sym___declspec] = ACTIONS(3436), - [anon_sym___based] = ACTIONS(3436), - [anon_sym___cdecl] = ACTIONS(3436), - [anon_sym___clrcall] = ACTIONS(3436), - [anon_sym___stdcall] = ACTIONS(3436), - [anon_sym___fastcall] = ACTIONS(3436), - [anon_sym___thiscall] = ACTIONS(3436), - [anon_sym___vectorcall] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_signed] = ACTIONS(3436), - [anon_sym_unsigned] = ACTIONS(3436), - [anon_sym_long] = ACTIONS(3436), - [anon_sym_short] = ACTIONS(3436), - [anon_sym_LBRACK] = ACTIONS(3436), - [anon_sym_static] = ACTIONS(3436), - [anon_sym_register] = ACTIONS(3436), - [anon_sym_inline] = ACTIONS(3436), - [anon_sym___inline] = ACTIONS(3436), - [anon_sym___inline__] = ACTIONS(3436), - [anon_sym___forceinline] = ACTIONS(3436), - [anon_sym_thread_local] = ACTIONS(3436), - [anon_sym___thread] = ACTIONS(3436), - [anon_sym_const] = ACTIONS(3436), - [anon_sym_constexpr] = ACTIONS(3436), - [anon_sym_volatile] = ACTIONS(3436), - [anon_sym_restrict] = ACTIONS(3436), - [anon_sym___restrict__] = ACTIONS(3436), - [anon_sym__Atomic] = ACTIONS(3436), - [anon_sym__Noreturn] = ACTIONS(3436), - [anon_sym_noreturn] = ACTIONS(3436), - [anon_sym_mutable] = ACTIONS(3436), - [anon_sym_constinit] = ACTIONS(3436), - [anon_sym_consteval] = ACTIONS(3436), - [sym_primitive_type] = ACTIONS(3436), - [anon_sym_enum] = ACTIONS(3436), - [anon_sym_class] = ACTIONS(3436), - [anon_sym_struct] = ACTIONS(3436), - [anon_sym_union] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_switch] = ACTIONS(3436), - [anon_sym_case] = ACTIONS(3436), - [anon_sym_default] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_do] = ACTIONS(3436), - [anon_sym_for] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_goto] = ACTIONS(3436), - [anon_sym_not] = ACTIONS(3436), - [anon_sym_compl] = ACTIONS(3436), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_sizeof] = ACTIONS(3436), - [anon_sym___alignof__] = ACTIONS(3436), - [anon_sym___alignof] = ACTIONS(3436), - [anon_sym__alignof] = ACTIONS(3436), - [anon_sym_alignof] = ACTIONS(3436), - [anon_sym__Alignof] = ACTIONS(3436), - [anon_sym_offsetof] = ACTIONS(3436), - [anon_sym__Generic] = ACTIONS(3436), - [anon_sym_asm] = ACTIONS(3436), - [anon_sym___asm__] = ACTIONS(3436), - [sym_number_literal] = ACTIONS(3438), - [anon_sym_L_SQUOTE] = ACTIONS(3438), - [anon_sym_u_SQUOTE] = ACTIONS(3438), - [anon_sym_U_SQUOTE] = ACTIONS(3438), - [anon_sym_u8_SQUOTE] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(3438), - [anon_sym_L_DQUOTE] = ACTIONS(3438), - [anon_sym_u_DQUOTE] = ACTIONS(3438), - [anon_sym_U_DQUOTE] = ACTIONS(3438), - [anon_sym_u8_DQUOTE] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(3438), - [sym_true] = ACTIONS(3436), - [sym_false] = ACTIONS(3436), - [anon_sym_NULL] = ACTIONS(3436), - [anon_sym_nullptr] = ACTIONS(3436), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3436), - [anon_sym_decltype] = ACTIONS(3436), - [anon_sym_virtual] = ACTIONS(3436), - [anon_sym_alignas] = ACTIONS(3436), - [anon_sym_explicit] = ACTIONS(3436), - [anon_sym_typename] = ACTIONS(3436), - [anon_sym_template] = ACTIONS(3436), - [anon_sym_operator] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_delete] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_namespace] = ACTIONS(3436), - [anon_sym_using] = ACTIONS(3436), - [anon_sym_static_assert] = ACTIONS(3436), - [anon_sym_concept] = ACTIONS(3436), - [anon_sym_co_return] = ACTIONS(3436), - [anon_sym_co_yield] = ACTIONS(3436), - [anon_sym_R_DQUOTE] = ACTIONS(3438), - [anon_sym_LR_DQUOTE] = ACTIONS(3438), - [anon_sym_uR_DQUOTE] = ACTIONS(3438), - [anon_sym_UR_DQUOTE] = ACTIONS(3438), - [anon_sym_u8R_DQUOTE] = ACTIONS(3438), - [anon_sym_co_await] = ACTIONS(3436), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_requires] = ACTIONS(3436), - [sym_this] = ACTIONS(3436), + [1410] = { + [sym__expression] = STATE(2929), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1326] = { - [sym_identifier] = ACTIONS(3336), - [aux_sym_preproc_include_token1] = ACTIONS(3336), - [aux_sym_preproc_def_token1] = ACTIONS(3336), - [aux_sym_preproc_if_token1] = ACTIONS(3336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3336), - [sym_preproc_directive] = ACTIONS(3336), - [anon_sym_LPAREN2] = ACTIONS(3338), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3338), - [anon_sym_AMP_AMP] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym___extension__] = ACTIONS(3336), - [anon_sym_typedef] = ACTIONS(3336), - [anon_sym_extern] = ACTIONS(3336), - [anon_sym___attribute__] = ACTIONS(3336), - [anon_sym_COLON_COLON] = ACTIONS(3338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3338), - [anon_sym___declspec] = ACTIONS(3336), - [anon_sym___based] = ACTIONS(3336), - [anon_sym___cdecl] = ACTIONS(3336), - [anon_sym___clrcall] = ACTIONS(3336), - [anon_sym___stdcall] = ACTIONS(3336), - [anon_sym___fastcall] = ACTIONS(3336), - [anon_sym___thiscall] = ACTIONS(3336), - [anon_sym___vectorcall] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_RBRACE] = ACTIONS(3338), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_register] = ACTIONS(3336), - [anon_sym_inline] = ACTIONS(3336), - [anon_sym___inline] = ACTIONS(3336), - [anon_sym___inline__] = ACTIONS(3336), - [anon_sym___forceinline] = ACTIONS(3336), - [anon_sym_thread_local] = ACTIONS(3336), - [anon_sym___thread] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_constexpr] = ACTIONS(3336), - [anon_sym_volatile] = ACTIONS(3336), - [anon_sym_restrict] = ACTIONS(3336), - [anon_sym___restrict__] = ACTIONS(3336), - [anon_sym__Atomic] = ACTIONS(3336), - [anon_sym__Noreturn] = ACTIONS(3336), - [anon_sym_noreturn] = ACTIONS(3336), - [anon_sym_mutable] = ACTIONS(3336), - [anon_sym_constinit] = ACTIONS(3336), - [anon_sym_consteval] = ACTIONS(3336), - [sym_primitive_type] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_union] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_goto] = ACTIONS(3336), - [anon_sym_not] = ACTIONS(3336), - [anon_sym_compl] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_sizeof] = ACTIONS(3336), - [anon_sym___alignof__] = ACTIONS(3336), - [anon_sym___alignof] = ACTIONS(3336), - [anon_sym__alignof] = ACTIONS(3336), - [anon_sym_alignof] = ACTIONS(3336), - [anon_sym__Alignof] = ACTIONS(3336), - [anon_sym_offsetof] = ACTIONS(3336), - [anon_sym__Generic] = ACTIONS(3336), - [anon_sym_asm] = ACTIONS(3336), - [anon_sym___asm__] = ACTIONS(3336), - [sym_number_literal] = ACTIONS(3338), - [anon_sym_L_SQUOTE] = ACTIONS(3338), - [anon_sym_u_SQUOTE] = ACTIONS(3338), - [anon_sym_U_SQUOTE] = ACTIONS(3338), - [anon_sym_u8_SQUOTE] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [anon_sym_L_DQUOTE] = ACTIONS(3338), - [anon_sym_u_DQUOTE] = ACTIONS(3338), - [anon_sym_U_DQUOTE] = ACTIONS(3338), - [anon_sym_u8_DQUOTE] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [anon_sym_NULL] = ACTIONS(3336), - [anon_sym_nullptr] = ACTIONS(3336), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3336), - [anon_sym_decltype] = ACTIONS(3336), - [anon_sym_virtual] = ACTIONS(3336), - [anon_sym_alignas] = ACTIONS(3336), - [anon_sym_explicit] = ACTIONS(3336), - [anon_sym_typename] = ACTIONS(3336), - [anon_sym_template] = ACTIONS(3336), - [anon_sym_operator] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_static_assert] = ACTIONS(3336), - [anon_sym_concept] = ACTIONS(3336), - [anon_sym_co_return] = ACTIONS(3336), - [anon_sym_co_yield] = ACTIONS(3336), - [anon_sym_R_DQUOTE] = ACTIONS(3338), - [anon_sym_LR_DQUOTE] = ACTIONS(3338), - [anon_sym_uR_DQUOTE] = ACTIONS(3338), - [anon_sym_UR_DQUOTE] = ACTIONS(3338), - [anon_sym_u8R_DQUOTE] = ACTIONS(3338), - [anon_sym_co_await] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_requires] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), + [1411] = { + [sym__expression] = STATE(2539), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1327] = { - [sym_identifier] = ACTIONS(3414), - [aux_sym_preproc_include_token1] = ACTIONS(3414), - [aux_sym_preproc_def_token1] = ACTIONS(3414), - [aux_sym_preproc_if_token1] = ACTIONS(3414), - [aux_sym_preproc_if_token2] = ACTIONS(3414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3414), - [sym_preproc_directive] = ACTIONS(3414), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(3416), - [anon_sym_TILDE] = ACTIONS(3416), - [anon_sym_DASH] = ACTIONS(3414), - [anon_sym_PLUS] = ACTIONS(3414), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3416), - [anon_sym___extension__] = ACTIONS(3414), - [anon_sym_typedef] = ACTIONS(3414), - [anon_sym_extern] = ACTIONS(3414), - [anon_sym___attribute__] = ACTIONS(3414), - [anon_sym_COLON_COLON] = ACTIONS(3416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3416), - [anon_sym___declspec] = ACTIONS(3414), - [anon_sym___based] = ACTIONS(3414), - [anon_sym___cdecl] = ACTIONS(3414), - [anon_sym___clrcall] = ACTIONS(3414), - [anon_sym___stdcall] = ACTIONS(3414), - [anon_sym___fastcall] = ACTIONS(3414), - [anon_sym___thiscall] = ACTIONS(3414), - [anon_sym___vectorcall] = ACTIONS(3414), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_signed] = ACTIONS(3414), - [anon_sym_unsigned] = ACTIONS(3414), - [anon_sym_long] = ACTIONS(3414), - [anon_sym_short] = ACTIONS(3414), - [anon_sym_LBRACK] = ACTIONS(3414), - [anon_sym_static] = ACTIONS(3414), - [anon_sym_register] = ACTIONS(3414), - [anon_sym_inline] = ACTIONS(3414), - [anon_sym___inline] = ACTIONS(3414), - [anon_sym___inline__] = ACTIONS(3414), - [anon_sym___forceinline] = ACTIONS(3414), - [anon_sym_thread_local] = ACTIONS(3414), - [anon_sym___thread] = ACTIONS(3414), - [anon_sym_const] = ACTIONS(3414), - [anon_sym_constexpr] = ACTIONS(3414), - [anon_sym_volatile] = ACTIONS(3414), - [anon_sym_restrict] = ACTIONS(3414), - [anon_sym___restrict__] = ACTIONS(3414), - [anon_sym__Atomic] = ACTIONS(3414), - [anon_sym__Noreturn] = ACTIONS(3414), - [anon_sym_noreturn] = ACTIONS(3414), - [anon_sym_mutable] = ACTIONS(3414), - [anon_sym_constinit] = ACTIONS(3414), - [anon_sym_consteval] = ACTIONS(3414), - [sym_primitive_type] = ACTIONS(3414), - [anon_sym_enum] = ACTIONS(3414), - [anon_sym_class] = ACTIONS(3414), - [anon_sym_struct] = ACTIONS(3414), - [anon_sym_union] = ACTIONS(3414), - [anon_sym_if] = ACTIONS(3414), - [anon_sym_switch] = ACTIONS(3414), - [anon_sym_case] = ACTIONS(3414), - [anon_sym_default] = ACTIONS(3414), - [anon_sym_while] = ACTIONS(3414), - [anon_sym_do] = ACTIONS(3414), - [anon_sym_for] = ACTIONS(3414), - [anon_sym_return] = ACTIONS(3414), - [anon_sym_break] = ACTIONS(3414), - [anon_sym_continue] = ACTIONS(3414), - [anon_sym_goto] = ACTIONS(3414), - [anon_sym_not] = ACTIONS(3414), - [anon_sym_compl] = ACTIONS(3414), - [anon_sym_DASH_DASH] = ACTIONS(3416), - [anon_sym_PLUS_PLUS] = ACTIONS(3416), - [anon_sym_sizeof] = ACTIONS(3414), - [anon_sym___alignof__] = ACTIONS(3414), - [anon_sym___alignof] = ACTIONS(3414), - [anon_sym__alignof] = ACTIONS(3414), - [anon_sym_alignof] = ACTIONS(3414), - [anon_sym__Alignof] = ACTIONS(3414), - [anon_sym_offsetof] = ACTIONS(3414), - [anon_sym__Generic] = ACTIONS(3414), - [anon_sym_asm] = ACTIONS(3414), - [anon_sym___asm__] = ACTIONS(3414), - [sym_number_literal] = ACTIONS(3416), - [anon_sym_L_SQUOTE] = ACTIONS(3416), - [anon_sym_u_SQUOTE] = ACTIONS(3416), - [anon_sym_U_SQUOTE] = ACTIONS(3416), - [anon_sym_u8_SQUOTE] = ACTIONS(3416), - [anon_sym_SQUOTE] = ACTIONS(3416), - [anon_sym_L_DQUOTE] = ACTIONS(3416), - [anon_sym_u_DQUOTE] = ACTIONS(3416), - [anon_sym_U_DQUOTE] = ACTIONS(3416), - [anon_sym_u8_DQUOTE] = ACTIONS(3416), - [anon_sym_DQUOTE] = ACTIONS(3416), - [sym_true] = ACTIONS(3414), - [sym_false] = ACTIONS(3414), - [anon_sym_NULL] = ACTIONS(3414), - [anon_sym_nullptr] = ACTIONS(3414), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3414), - [anon_sym_decltype] = ACTIONS(3414), - [anon_sym_virtual] = ACTIONS(3414), - [anon_sym_alignas] = ACTIONS(3414), - [anon_sym_explicit] = ACTIONS(3414), - [anon_sym_typename] = ACTIONS(3414), - [anon_sym_template] = ACTIONS(3414), - [anon_sym_operator] = ACTIONS(3414), - [anon_sym_try] = ACTIONS(3414), - [anon_sym_delete] = ACTIONS(3414), - [anon_sym_throw] = ACTIONS(3414), - [anon_sym_namespace] = ACTIONS(3414), - [anon_sym_using] = ACTIONS(3414), - [anon_sym_static_assert] = ACTIONS(3414), - [anon_sym_concept] = ACTIONS(3414), - [anon_sym_co_return] = ACTIONS(3414), - [anon_sym_co_yield] = ACTIONS(3414), - [anon_sym_R_DQUOTE] = ACTIONS(3416), - [anon_sym_LR_DQUOTE] = ACTIONS(3416), - [anon_sym_uR_DQUOTE] = ACTIONS(3416), - [anon_sym_UR_DQUOTE] = ACTIONS(3416), - [anon_sym_u8R_DQUOTE] = ACTIONS(3416), - [anon_sym_co_await] = ACTIONS(3414), - [anon_sym_new] = ACTIONS(3414), - [anon_sym_requires] = ACTIONS(3414), - [sym_this] = ACTIONS(3414), + [1412] = { + [sym__expression] = STATE(2965), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1328] = { - [sym_identifier] = ACTIONS(3263), - [aux_sym_preproc_include_token1] = ACTIONS(3263), - [aux_sym_preproc_def_token1] = ACTIONS(3263), - [aux_sym_preproc_if_token1] = ACTIONS(3263), - [aux_sym_preproc_if_token2] = ACTIONS(3263), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3263), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3263), - [sym_preproc_directive] = ACTIONS(3263), - [anon_sym_LPAREN2] = ACTIONS(3265), - [anon_sym_BANG] = ACTIONS(3265), - [anon_sym_TILDE] = ACTIONS(3265), - [anon_sym_DASH] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(3263), - [anon_sym_STAR] = ACTIONS(3265), - [anon_sym_AMP_AMP] = ACTIONS(3265), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_SEMI] = ACTIONS(3265), - [anon_sym___extension__] = ACTIONS(3263), - [anon_sym_typedef] = ACTIONS(3263), - [anon_sym_extern] = ACTIONS(3263), - [anon_sym___attribute__] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(3265), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3265), - [anon_sym___declspec] = ACTIONS(3263), - [anon_sym___based] = ACTIONS(3263), - [anon_sym___cdecl] = ACTIONS(3263), - [anon_sym___clrcall] = ACTIONS(3263), - [anon_sym___stdcall] = ACTIONS(3263), - [anon_sym___fastcall] = ACTIONS(3263), - [anon_sym___thiscall] = ACTIONS(3263), - [anon_sym___vectorcall] = ACTIONS(3263), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_signed] = ACTIONS(3263), - [anon_sym_unsigned] = ACTIONS(3263), - [anon_sym_long] = ACTIONS(3263), - [anon_sym_short] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3263), - [anon_sym_static] = ACTIONS(3263), - [anon_sym_register] = ACTIONS(3263), - [anon_sym_inline] = ACTIONS(3263), - [anon_sym___inline] = ACTIONS(3263), - [anon_sym___inline__] = ACTIONS(3263), - [anon_sym___forceinline] = ACTIONS(3263), - [anon_sym_thread_local] = ACTIONS(3263), - [anon_sym___thread] = ACTIONS(3263), - [anon_sym_const] = ACTIONS(3263), - [anon_sym_constexpr] = ACTIONS(3263), - [anon_sym_volatile] = ACTIONS(3263), - [anon_sym_restrict] = ACTIONS(3263), - [anon_sym___restrict__] = ACTIONS(3263), - [anon_sym__Atomic] = ACTIONS(3263), - [anon_sym__Noreturn] = ACTIONS(3263), - [anon_sym_noreturn] = ACTIONS(3263), - [anon_sym_mutable] = ACTIONS(3263), - [anon_sym_constinit] = ACTIONS(3263), - [anon_sym_consteval] = ACTIONS(3263), - [sym_primitive_type] = ACTIONS(3263), - [anon_sym_enum] = ACTIONS(3263), - [anon_sym_class] = ACTIONS(3263), - [anon_sym_struct] = ACTIONS(3263), - [anon_sym_union] = ACTIONS(3263), - [anon_sym_if] = ACTIONS(3263), - [anon_sym_switch] = ACTIONS(3263), - [anon_sym_case] = ACTIONS(3263), - [anon_sym_default] = ACTIONS(3263), - [anon_sym_while] = ACTIONS(3263), - [anon_sym_do] = ACTIONS(3263), - [anon_sym_for] = ACTIONS(3263), - [anon_sym_return] = ACTIONS(3263), - [anon_sym_break] = ACTIONS(3263), - [anon_sym_continue] = ACTIONS(3263), - [anon_sym_goto] = ACTIONS(3263), - [anon_sym_not] = ACTIONS(3263), - [anon_sym_compl] = ACTIONS(3263), - [anon_sym_DASH_DASH] = ACTIONS(3265), - [anon_sym_PLUS_PLUS] = ACTIONS(3265), - [anon_sym_sizeof] = ACTIONS(3263), - [anon_sym___alignof__] = ACTIONS(3263), - [anon_sym___alignof] = ACTIONS(3263), - [anon_sym__alignof] = ACTIONS(3263), - [anon_sym_alignof] = ACTIONS(3263), - [anon_sym__Alignof] = ACTIONS(3263), - [anon_sym_offsetof] = ACTIONS(3263), - [anon_sym__Generic] = ACTIONS(3263), - [anon_sym_asm] = ACTIONS(3263), - [anon_sym___asm__] = ACTIONS(3263), - [sym_number_literal] = ACTIONS(3265), - [anon_sym_L_SQUOTE] = ACTIONS(3265), - [anon_sym_u_SQUOTE] = ACTIONS(3265), - [anon_sym_U_SQUOTE] = ACTIONS(3265), - [anon_sym_u8_SQUOTE] = ACTIONS(3265), - [anon_sym_SQUOTE] = ACTIONS(3265), - [anon_sym_L_DQUOTE] = ACTIONS(3265), - [anon_sym_u_DQUOTE] = ACTIONS(3265), - [anon_sym_U_DQUOTE] = ACTIONS(3265), - [anon_sym_u8_DQUOTE] = ACTIONS(3265), - [anon_sym_DQUOTE] = ACTIONS(3265), - [sym_true] = ACTIONS(3263), - [sym_false] = ACTIONS(3263), - [anon_sym_NULL] = ACTIONS(3263), - [anon_sym_nullptr] = ACTIONS(3263), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3263), - [anon_sym_decltype] = ACTIONS(3263), - [anon_sym_virtual] = ACTIONS(3263), - [anon_sym_alignas] = ACTIONS(3263), - [anon_sym_explicit] = ACTIONS(3263), - [anon_sym_typename] = ACTIONS(3263), - [anon_sym_template] = ACTIONS(3263), - [anon_sym_operator] = ACTIONS(3263), - [anon_sym_try] = ACTIONS(3263), - [anon_sym_delete] = ACTIONS(3263), - [anon_sym_throw] = ACTIONS(3263), - [anon_sym_namespace] = ACTIONS(3263), - [anon_sym_using] = ACTIONS(3263), - [anon_sym_static_assert] = ACTIONS(3263), - [anon_sym_concept] = ACTIONS(3263), - [anon_sym_co_return] = ACTIONS(3263), - [anon_sym_co_yield] = ACTIONS(3263), - [anon_sym_R_DQUOTE] = ACTIONS(3265), - [anon_sym_LR_DQUOTE] = ACTIONS(3265), - [anon_sym_uR_DQUOTE] = ACTIONS(3265), - [anon_sym_UR_DQUOTE] = ACTIONS(3265), - [anon_sym_u8R_DQUOTE] = ACTIONS(3265), - [anon_sym_co_await] = ACTIONS(3263), - [anon_sym_new] = ACTIONS(3263), - [anon_sym_requires] = ACTIONS(3263), - [sym_this] = ACTIONS(3263), + [1413] = { + [sym__expression] = STATE(4031), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1329] = { - [sym_identifier] = ACTIONS(3332), - [aux_sym_preproc_include_token1] = ACTIONS(3332), - [aux_sym_preproc_def_token1] = ACTIONS(3332), - [aux_sym_preproc_if_token1] = ACTIONS(3332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3332), - [sym_preproc_directive] = ACTIONS(3332), - [anon_sym_LPAREN2] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_STAR] = ACTIONS(3334), - [anon_sym_AMP_AMP] = ACTIONS(3334), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym___extension__] = ACTIONS(3332), - [anon_sym_typedef] = ACTIONS(3332), - [anon_sym_extern] = ACTIONS(3332), - [anon_sym___attribute__] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3334), - [anon_sym___declspec] = ACTIONS(3332), - [anon_sym___based] = ACTIONS(3332), - [anon_sym___cdecl] = ACTIONS(3332), - [anon_sym___clrcall] = ACTIONS(3332), - [anon_sym___stdcall] = ACTIONS(3332), - [anon_sym___fastcall] = ACTIONS(3332), - [anon_sym___thiscall] = ACTIONS(3332), - [anon_sym___vectorcall] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3332), - [anon_sym_unsigned] = ACTIONS(3332), - [anon_sym_long] = ACTIONS(3332), - [anon_sym_short] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_register] = ACTIONS(3332), - [anon_sym_inline] = ACTIONS(3332), - [anon_sym___inline] = ACTIONS(3332), - [anon_sym___inline__] = ACTIONS(3332), - [anon_sym___forceinline] = ACTIONS(3332), - [anon_sym_thread_local] = ACTIONS(3332), - [anon_sym___thread] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_constexpr] = ACTIONS(3332), - [anon_sym_volatile] = ACTIONS(3332), - [anon_sym_restrict] = ACTIONS(3332), - [anon_sym___restrict__] = ACTIONS(3332), - [anon_sym__Atomic] = ACTIONS(3332), - [anon_sym__Noreturn] = ACTIONS(3332), - [anon_sym_noreturn] = ACTIONS(3332), - [anon_sym_mutable] = ACTIONS(3332), - [anon_sym_constinit] = ACTIONS(3332), - [anon_sym_consteval] = ACTIONS(3332), - [sym_primitive_type] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_struct] = ACTIONS(3332), - [anon_sym_union] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_case] = ACTIONS(3332), - [anon_sym_default] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_goto] = ACTIONS(3332), - [anon_sym_not] = ACTIONS(3332), - [anon_sym_compl] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_sizeof] = ACTIONS(3332), - [anon_sym___alignof__] = ACTIONS(3332), - [anon_sym___alignof] = ACTIONS(3332), - [anon_sym__alignof] = ACTIONS(3332), - [anon_sym_alignof] = ACTIONS(3332), - [anon_sym__Alignof] = ACTIONS(3332), - [anon_sym_offsetof] = ACTIONS(3332), - [anon_sym__Generic] = ACTIONS(3332), - [anon_sym_asm] = ACTIONS(3332), - [anon_sym___asm__] = ACTIONS(3332), - [sym_number_literal] = ACTIONS(3334), - [anon_sym_L_SQUOTE] = ACTIONS(3334), - [anon_sym_u_SQUOTE] = ACTIONS(3334), - [anon_sym_U_SQUOTE] = ACTIONS(3334), - [anon_sym_u8_SQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_L_DQUOTE] = ACTIONS(3334), - [anon_sym_u_DQUOTE] = ACTIONS(3334), - [anon_sym_U_DQUOTE] = ACTIONS(3334), - [anon_sym_u8_DQUOTE] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [anon_sym_NULL] = ACTIONS(3332), - [anon_sym_nullptr] = ACTIONS(3332), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3332), - [anon_sym_decltype] = ACTIONS(3332), - [anon_sym_virtual] = ACTIONS(3332), - [anon_sym_alignas] = ACTIONS(3332), - [anon_sym_explicit] = ACTIONS(3332), - [anon_sym_typename] = ACTIONS(3332), - [anon_sym_template] = ACTIONS(3332), - [anon_sym_operator] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_static_assert] = ACTIONS(3332), - [anon_sym_concept] = ACTIONS(3332), - [anon_sym_co_return] = ACTIONS(3332), - [anon_sym_co_yield] = ACTIONS(3332), - [anon_sym_R_DQUOTE] = ACTIONS(3334), - [anon_sym_LR_DQUOTE] = ACTIONS(3334), - [anon_sym_uR_DQUOTE] = ACTIONS(3334), - [anon_sym_UR_DQUOTE] = ACTIONS(3334), - [anon_sym_u8R_DQUOTE] = ACTIONS(3334), - [anon_sym_co_await] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_requires] = ACTIONS(3332), - [sym_this] = ACTIONS(3332), + [1414] = { + [sym__expression] = STATE(3986), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1330] = { - [sym_identifier] = ACTIONS(3322), - [aux_sym_preproc_include_token1] = ACTIONS(3322), - [aux_sym_preproc_def_token1] = ACTIONS(3322), - [aux_sym_preproc_if_token1] = ACTIONS(3322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3322), - [sym_preproc_directive] = ACTIONS(3322), - [anon_sym_LPAREN2] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3322), - [anon_sym_PLUS] = ACTIONS(3322), - [anon_sym_STAR] = ACTIONS(3324), - [anon_sym_AMP_AMP] = ACTIONS(3324), - [anon_sym_AMP] = ACTIONS(3322), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym___extension__] = ACTIONS(3322), - [anon_sym_typedef] = ACTIONS(3322), - [anon_sym_extern] = ACTIONS(3322), - [anon_sym___attribute__] = ACTIONS(3322), - [anon_sym_COLON_COLON] = ACTIONS(3324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), - [anon_sym___declspec] = ACTIONS(3322), - [anon_sym___based] = ACTIONS(3322), - [anon_sym___cdecl] = ACTIONS(3322), - [anon_sym___clrcall] = ACTIONS(3322), - [anon_sym___stdcall] = ACTIONS(3322), - [anon_sym___fastcall] = ACTIONS(3322), - [anon_sym___thiscall] = ACTIONS(3322), - [anon_sym___vectorcall] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_signed] = ACTIONS(3322), - [anon_sym_unsigned] = ACTIONS(3322), - [anon_sym_long] = ACTIONS(3322), - [anon_sym_short] = ACTIONS(3322), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_static] = ACTIONS(3322), - [anon_sym_register] = ACTIONS(3322), - [anon_sym_inline] = ACTIONS(3322), - [anon_sym___inline] = ACTIONS(3322), - [anon_sym___inline__] = ACTIONS(3322), - [anon_sym___forceinline] = ACTIONS(3322), - [anon_sym_thread_local] = ACTIONS(3322), - [anon_sym___thread] = ACTIONS(3322), - [anon_sym_const] = ACTIONS(3322), - [anon_sym_constexpr] = ACTIONS(3322), - [anon_sym_volatile] = ACTIONS(3322), - [anon_sym_restrict] = ACTIONS(3322), - [anon_sym___restrict__] = ACTIONS(3322), - [anon_sym__Atomic] = ACTIONS(3322), - [anon_sym__Noreturn] = ACTIONS(3322), - [anon_sym_noreturn] = ACTIONS(3322), - [anon_sym_mutable] = ACTIONS(3322), - [anon_sym_constinit] = ACTIONS(3322), - [anon_sym_consteval] = ACTIONS(3322), - [sym_primitive_type] = ACTIONS(3322), - [anon_sym_enum] = ACTIONS(3322), - [anon_sym_class] = ACTIONS(3322), - [anon_sym_struct] = ACTIONS(3322), - [anon_sym_union] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3322), - [anon_sym_switch] = ACTIONS(3322), - [anon_sym_case] = ACTIONS(3322), - [anon_sym_default] = ACTIONS(3322), - [anon_sym_while] = ACTIONS(3322), - [anon_sym_do] = ACTIONS(3322), - [anon_sym_for] = ACTIONS(3322), - [anon_sym_return] = ACTIONS(3322), - [anon_sym_break] = ACTIONS(3322), - [anon_sym_continue] = ACTIONS(3322), - [anon_sym_goto] = ACTIONS(3322), - [anon_sym_not] = ACTIONS(3322), - [anon_sym_compl] = ACTIONS(3322), - [anon_sym_DASH_DASH] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_sizeof] = ACTIONS(3322), - [anon_sym___alignof__] = ACTIONS(3322), - [anon_sym___alignof] = ACTIONS(3322), - [anon_sym__alignof] = ACTIONS(3322), - [anon_sym_alignof] = ACTIONS(3322), - [anon_sym__Alignof] = ACTIONS(3322), - [anon_sym_offsetof] = ACTIONS(3322), - [anon_sym__Generic] = ACTIONS(3322), - [anon_sym_asm] = ACTIONS(3322), - [anon_sym___asm__] = ACTIONS(3322), - [sym_number_literal] = ACTIONS(3324), - [anon_sym_L_SQUOTE] = ACTIONS(3324), - [anon_sym_u_SQUOTE] = ACTIONS(3324), - [anon_sym_U_SQUOTE] = ACTIONS(3324), - [anon_sym_u8_SQUOTE] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_L_DQUOTE] = ACTIONS(3324), - [anon_sym_u_DQUOTE] = ACTIONS(3324), - [anon_sym_U_DQUOTE] = ACTIONS(3324), - [anon_sym_u8_DQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [anon_sym_NULL] = ACTIONS(3322), - [anon_sym_nullptr] = ACTIONS(3322), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3322), - [anon_sym_decltype] = ACTIONS(3322), - [anon_sym_virtual] = ACTIONS(3322), - [anon_sym_alignas] = ACTIONS(3322), - [anon_sym_explicit] = ACTIONS(3322), - [anon_sym_typename] = ACTIONS(3322), - [anon_sym_template] = ACTIONS(3322), - [anon_sym_operator] = ACTIONS(3322), - [anon_sym_try] = ACTIONS(3322), - [anon_sym_delete] = ACTIONS(3322), - [anon_sym_throw] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_using] = ACTIONS(3322), - [anon_sym_static_assert] = ACTIONS(3322), - [anon_sym_concept] = ACTIONS(3322), - [anon_sym_co_return] = ACTIONS(3322), - [anon_sym_co_yield] = ACTIONS(3322), - [anon_sym_R_DQUOTE] = ACTIONS(3324), - [anon_sym_LR_DQUOTE] = ACTIONS(3324), - [anon_sym_uR_DQUOTE] = ACTIONS(3324), - [anon_sym_UR_DQUOTE] = ACTIONS(3324), - [anon_sym_u8R_DQUOTE] = ACTIONS(3324), - [anon_sym_co_await] = ACTIONS(3322), - [anon_sym_new] = ACTIONS(3322), - [anon_sym_requires] = ACTIONS(3322), - [sym_this] = ACTIONS(3322), + [1415] = { + [sym__expression] = STATE(4217), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1331] = { - [sym_identifier] = ACTIONS(3454), - [aux_sym_preproc_include_token1] = ACTIONS(3454), - [aux_sym_preproc_def_token1] = ACTIONS(3454), - [aux_sym_preproc_if_token1] = ACTIONS(3454), - [aux_sym_preproc_if_token2] = ACTIONS(3454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3454), - [sym_preproc_directive] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3456), - [anon_sym_BANG] = ACTIONS(3456), - [anon_sym_TILDE] = ACTIONS(3456), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_STAR] = ACTIONS(3456), - [anon_sym_AMP_AMP] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3456), - [anon_sym___extension__] = ACTIONS(3454), - [anon_sym_typedef] = ACTIONS(3454), - [anon_sym_extern] = ACTIONS(3454), - [anon_sym___attribute__] = ACTIONS(3454), - [anon_sym_COLON_COLON] = ACTIONS(3456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3456), - [anon_sym___declspec] = ACTIONS(3454), - [anon_sym___based] = ACTIONS(3454), - [anon_sym___cdecl] = ACTIONS(3454), - [anon_sym___clrcall] = ACTIONS(3454), - [anon_sym___stdcall] = ACTIONS(3454), - [anon_sym___fastcall] = ACTIONS(3454), - [anon_sym___thiscall] = ACTIONS(3454), - [anon_sym___vectorcall] = ACTIONS(3454), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_signed] = ACTIONS(3454), - [anon_sym_unsigned] = ACTIONS(3454), - [anon_sym_long] = ACTIONS(3454), - [anon_sym_short] = ACTIONS(3454), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3454), - [anon_sym_register] = ACTIONS(3454), - [anon_sym_inline] = ACTIONS(3454), - [anon_sym___inline] = ACTIONS(3454), - [anon_sym___inline__] = ACTIONS(3454), - [anon_sym___forceinline] = ACTIONS(3454), - [anon_sym_thread_local] = ACTIONS(3454), - [anon_sym___thread] = ACTIONS(3454), - [anon_sym_const] = ACTIONS(3454), - [anon_sym_constexpr] = ACTIONS(3454), - [anon_sym_volatile] = ACTIONS(3454), - [anon_sym_restrict] = ACTIONS(3454), - [anon_sym___restrict__] = ACTIONS(3454), - [anon_sym__Atomic] = ACTIONS(3454), - [anon_sym__Noreturn] = ACTIONS(3454), - [anon_sym_noreturn] = ACTIONS(3454), - [anon_sym_mutable] = ACTIONS(3454), - [anon_sym_constinit] = ACTIONS(3454), - [anon_sym_consteval] = ACTIONS(3454), - [sym_primitive_type] = ACTIONS(3454), - [anon_sym_enum] = ACTIONS(3454), - [anon_sym_class] = ACTIONS(3454), - [anon_sym_struct] = ACTIONS(3454), - [anon_sym_union] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_switch] = ACTIONS(3454), - [anon_sym_case] = ACTIONS(3454), - [anon_sym_default] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_break] = ACTIONS(3454), - [anon_sym_continue] = ACTIONS(3454), - [anon_sym_goto] = ACTIONS(3454), - [anon_sym_not] = ACTIONS(3454), - [anon_sym_compl] = ACTIONS(3454), - [anon_sym_DASH_DASH] = ACTIONS(3456), - [anon_sym_PLUS_PLUS] = ACTIONS(3456), - [anon_sym_sizeof] = ACTIONS(3454), - [anon_sym___alignof__] = ACTIONS(3454), - [anon_sym___alignof] = ACTIONS(3454), - [anon_sym__alignof] = ACTIONS(3454), - [anon_sym_alignof] = ACTIONS(3454), - [anon_sym__Alignof] = ACTIONS(3454), - [anon_sym_offsetof] = ACTIONS(3454), - [anon_sym__Generic] = ACTIONS(3454), - [anon_sym_asm] = ACTIONS(3454), - [anon_sym___asm__] = ACTIONS(3454), - [sym_number_literal] = ACTIONS(3456), - [anon_sym_L_SQUOTE] = ACTIONS(3456), - [anon_sym_u_SQUOTE] = ACTIONS(3456), - [anon_sym_U_SQUOTE] = ACTIONS(3456), - [anon_sym_u8_SQUOTE] = ACTIONS(3456), - [anon_sym_SQUOTE] = ACTIONS(3456), - [anon_sym_L_DQUOTE] = ACTIONS(3456), - [anon_sym_u_DQUOTE] = ACTIONS(3456), - [anon_sym_U_DQUOTE] = ACTIONS(3456), - [anon_sym_u8_DQUOTE] = ACTIONS(3456), - [anon_sym_DQUOTE] = ACTIONS(3456), - [sym_true] = ACTIONS(3454), - [sym_false] = ACTIONS(3454), - [anon_sym_NULL] = ACTIONS(3454), - [anon_sym_nullptr] = ACTIONS(3454), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3454), - [anon_sym_decltype] = ACTIONS(3454), - [anon_sym_virtual] = ACTIONS(3454), - [anon_sym_alignas] = ACTIONS(3454), - [anon_sym_explicit] = ACTIONS(3454), - [anon_sym_typename] = ACTIONS(3454), - [anon_sym_template] = ACTIONS(3454), - [anon_sym_operator] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_delete] = ACTIONS(3454), - [anon_sym_throw] = ACTIONS(3454), - [anon_sym_namespace] = ACTIONS(3454), - [anon_sym_using] = ACTIONS(3454), - [anon_sym_static_assert] = ACTIONS(3454), - [anon_sym_concept] = ACTIONS(3454), - [anon_sym_co_return] = ACTIONS(3454), - [anon_sym_co_yield] = ACTIONS(3454), - [anon_sym_R_DQUOTE] = ACTIONS(3456), - [anon_sym_LR_DQUOTE] = ACTIONS(3456), - [anon_sym_uR_DQUOTE] = ACTIONS(3456), - [anon_sym_UR_DQUOTE] = ACTIONS(3456), - [anon_sym_u8R_DQUOTE] = ACTIONS(3456), - [anon_sym_co_await] = ACTIONS(3454), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_requires] = ACTIONS(3454), - [sym_this] = ACTIONS(3454), - }, - [1332] = { - [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_extern] = ACTIONS(3318), - [anon_sym___attribute__] = ACTIONS(3318), - [anon_sym_COLON_COLON] = ACTIONS(3320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3320), - [anon_sym___declspec] = ACTIONS(3318), - [anon_sym___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_mutable] = ACTIONS(3318), - [anon_sym_constinit] = ACTIONS(3318), - [anon_sym_consteval] = ACTIONS(3318), - [sym_primitive_type] = ACTIONS(3318), - [anon_sym_enum] = ACTIONS(3318), - [anon_sym_class] = ACTIONS(3318), - [anon_sym_struct] = ACTIONS(3318), - [anon_sym_union] = ACTIONS(3318), - [anon_sym_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), - [sym_number_literal] = ACTIONS(3320), - [anon_sym_L_SQUOTE] = ACTIONS(3320), - [anon_sym_u_SQUOTE] = ACTIONS(3320), - [anon_sym_U_SQUOTE] = ACTIONS(3320), - [anon_sym_u8_SQUOTE] = ACTIONS(3320), - [anon_sym_SQUOTE] = ACTIONS(3320), - [anon_sym_L_DQUOTE] = ACTIONS(3320), - [anon_sym_u_DQUOTE] = ACTIONS(3320), - [anon_sym_U_DQUOTE] = ACTIONS(3320), - [anon_sym_u8_DQUOTE] = ACTIONS(3320), - [anon_sym_DQUOTE] = ACTIONS(3320), - [sym_true] = ACTIONS(3318), - [sym_false] = ACTIONS(3318), - [anon_sym_NULL] = ACTIONS(3318), - [anon_sym_nullptr] = ACTIONS(3318), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3318), - [anon_sym_decltype] = ACTIONS(3318), - [anon_sym_virtual] = ACTIONS(3318), - [anon_sym_alignas] = ACTIONS(3318), - [anon_sym_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_using] = 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), - }, - [1333] = { - [sym_identifier] = ACTIONS(3370), - [aux_sym_preproc_include_token1] = ACTIONS(3370), - [aux_sym_preproc_def_token1] = ACTIONS(3370), - [aux_sym_preproc_if_token1] = ACTIONS(3370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3370), - [sym_preproc_directive] = ACTIONS(3370), - [anon_sym_LPAREN2] = ACTIONS(3372), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(3372), - [anon_sym_DASH] = ACTIONS(3370), - [anon_sym_PLUS] = ACTIONS(3370), - [anon_sym_STAR] = ACTIONS(3372), - [anon_sym_AMP_AMP] = ACTIONS(3372), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_SEMI] = ACTIONS(3372), - [anon_sym___extension__] = ACTIONS(3370), - [anon_sym_typedef] = ACTIONS(3370), - [anon_sym_extern] = ACTIONS(3370), - [anon_sym___attribute__] = ACTIONS(3370), - [anon_sym_COLON_COLON] = ACTIONS(3372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3372), - [anon_sym___declspec] = ACTIONS(3370), - [anon_sym___based] = ACTIONS(3370), - [anon_sym___cdecl] = ACTIONS(3370), - [anon_sym___clrcall] = ACTIONS(3370), - [anon_sym___stdcall] = ACTIONS(3370), - [anon_sym___fastcall] = ACTIONS(3370), - [anon_sym___thiscall] = ACTIONS(3370), - [anon_sym___vectorcall] = ACTIONS(3370), - [anon_sym_LBRACE] = ACTIONS(3372), - [anon_sym_RBRACE] = ACTIONS(3372), - [anon_sym_signed] = ACTIONS(3370), - [anon_sym_unsigned] = ACTIONS(3370), - [anon_sym_long] = ACTIONS(3370), - [anon_sym_short] = ACTIONS(3370), - [anon_sym_LBRACK] = ACTIONS(3370), - [anon_sym_static] = ACTIONS(3370), - [anon_sym_register] = ACTIONS(3370), - [anon_sym_inline] = ACTIONS(3370), - [anon_sym___inline] = ACTIONS(3370), - [anon_sym___inline__] = ACTIONS(3370), - [anon_sym___forceinline] = ACTIONS(3370), - [anon_sym_thread_local] = ACTIONS(3370), - [anon_sym___thread] = ACTIONS(3370), - [anon_sym_const] = ACTIONS(3370), - [anon_sym_constexpr] = ACTIONS(3370), - [anon_sym_volatile] = ACTIONS(3370), - [anon_sym_restrict] = ACTIONS(3370), - [anon_sym___restrict__] = ACTIONS(3370), - [anon_sym__Atomic] = ACTIONS(3370), - [anon_sym__Noreturn] = ACTIONS(3370), - [anon_sym_noreturn] = ACTIONS(3370), - [anon_sym_mutable] = ACTIONS(3370), - [anon_sym_constinit] = ACTIONS(3370), - [anon_sym_consteval] = ACTIONS(3370), - [sym_primitive_type] = ACTIONS(3370), - [anon_sym_enum] = ACTIONS(3370), - [anon_sym_class] = ACTIONS(3370), - [anon_sym_struct] = ACTIONS(3370), - [anon_sym_union] = ACTIONS(3370), - [anon_sym_if] = ACTIONS(3370), - [anon_sym_switch] = ACTIONS(3370), - [anon_sym_case] = ACTIONS(3370), - [anon_sym_default] = ACTIONS(3370), - [anon_sym_while] = ACTIONS(3370), - [anon_sym_do] = ACTIONS(3370), - [anon_sym_for] = ACTIONS(3370), - [anon_sym_return] = ACTIONS(3370), - [anon_sym_break] = ACTIONS(3370), - [anon_sym_continue] = ACTIONS(3370), - [anon_sym_goto] = ACTIONS(3370), - [anon_sym_not] = ACTIONS(3370), - [anon_sym_compl] = ACTIONS(3370), - [anon_sym_DASH_DASH] = ACTIONS(3372), - [anon_sym_PLUS_PLUS] = ACTIONS(3372), - [anon_sym_sizeof] = ACTIONS(3370), - [anon_sym___alignof__] = ACTIONS(3370), - [anon_sym___alignof] = ACTIONS(3370), - [anon_sym__alignof] = ACTIONS(3370), - [anon_sym_alignof] = ACTIONS(3370), - [anon_sym__Alignof] = ACTIONS(3370), - [anon_sym_offsetof] = ACTIONS(3370), - [anon_sym__Generic] = ACTIONS(3370), - [anon_sym_asm] = ACTIONS(3370), - [anon_sym___asm__] = ACTIONS(3370), - [sym_number_literal] = ACTIONS(3372), - [anon_sym_L_SQUOTE] = ACTIONS(3372), - [anon_sym_u_SQUOTE] = ACTIONS(3372), - [anon_sym_U_SQUOTE] = ACTIONS(3372), - [anon_sym_u8_SQUOTE] = ACTIONS(3372), - [anon_sym_SQUOTE] = ACTIONS(3372), - [anon_sym_L_DQUOTE] = ACTIONS(3372), - [anon_sym_u_DQUOTE] = ACTIONS(3372), - [anon_sym_U_DQUOTE] = ACTIONS(3372), - [anon_sym_u8_DQUOTE] = ACTIONS(3372), - [anon_sym_DQUOTE] = ACTIONS(3372), - [sym_true] = ACTIONS(3370), - [sym_false] = ACTIONS(3370), - [anon_sym_NULL] = ACTIONS(3370), - [anon_sym_nullptr] = ACTIONS(3370), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3370), - [anon_sym_virtual] = ACTIONS(3370), - [anon_sym_alignas] = ACTIONS(3370), - [anon_sym_explicit] = ACTIONS(3370), - [anon_sym_typename] = ACTIONS(3370), - [anon_sym_template] = ACTIONS(3370), - [anon_sym_operator] = ACTIONS(3370), - [anon_sym_try] = ACTIONS(3370), - [anon_sym_delete] = ACTIONS(3370), - [anon_sym_throw] = ACTIONS(3370), - [anon_sym_namespace] = ACTIONS(3370), - [anon_sym_using] = ACTIONS(3370), - [anon_sym_static_assert] = ACTIONS(3370), - [anon_sym_concept] = ACTIONS(3370), - [anon_sym_co_return] = ACTIONS(3370), - [anon_sym_co_yield] = ACTIONS(3370), - [anon_sym_R_DQUOTE] = ACTIONS(3372), - [anon_sym_LR_DQUOTE] = ACTIONS(3372), - [anon_sym_uR_DQUOTE] = ACTIONS(3372), - [anon_sym_UR_DQUOTE] = ACTIONS(3372), - [anon_sym_u8R_DQUOTE] = ACTIONS(3372), - [anon_sym_co_await] = ACTIONS(3370), - [anon_sym_new] = ACTIONS(3370), - [anon_sym_requires] = ACTIONS(3370), - [sym_this] = ACTIONS(3370), - }, - [1334] = { - [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_extern] = ACTIONS(3314), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3314), - [anon_sym_constinit] = ACTIONS(3314), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3314), - [anon_sym_alignas] = 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_using] = 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), - }, - [1335] = { - [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_extern] = ACTIONS(3217), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3217), - [anon_sym_constinit] = ACTIONS(3217), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3217), - [anon_sym_alignas] = 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_using] = 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), - }, - [1336] = { - [sym_identifier] = ACTIONS(3224), - [aux_sym_preproc_include_token1] = ACTIONS(3224), - [aux_sym_preproc_def_token1] = ACTIONS(3224), - [aux_sym_preproc_if_token1] = ACTIONS(3224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3224), - [sym_preproc_directive] = ACTIONS(3224), - [anon_sym_LPAREN2] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3226), - [anon_sym_AMP_AMP] = ACTIONS(3226), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3226), - [anon_sym___extension__] = ACTIONS(3224), - [anon_sym_typedef] = ACTIONS(3224), - [anon_sym_extern] = ACTIONS(3224), - [anon_sym___attribute__] = ACTIONS(3224), - [anon_sym_COLON_COLON] = ACTIONS(3226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3226), - [anon_sym___declspec] = ACTIONS(3224), - [anon_sym___based] = ACTIONS(3224), - [anon_sym___cdecl] = ACTIONS(3224), - [anon_sym___clrcall] = ACTIONS(3224), - [anon_sym___stdcall] = ACTIONS(3224), - [anon_sym___fastcall] = ACTIONS(3224), - [anon_sym___thiscall] = ACTIONS(3224), - [anon_sym___vectorcall] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_RBRACE] = ACTIONS(3226), - [anon_sym_signed] = ACTIONS(3224), - [anon_sym_unsigned] = ACTIONS(3224), - [anon_sym_long] = ACTIONS(3224), - [anon_sym_short] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_register] = ACTIONS(3224), - [anon_sym_inline] = ACTIONS(3224), - [anon_sym___inline] = ACTIONS(3224), - [anon_sym___inline__] = ACTIONS(3224), - [anon_sym___forceinline] = ACTIONS(3224), - [anon_sym_thread_local] = ACTIONS(3224), - [anon_sym___thread] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_constexpr] = ACTIONS(3224), - [anon_sym_volatile] = ACTIONS(3224), - [anon_sym_restrict] = ACTIONS(3224), - [anon_sym___restrict__] = ACTIONS(3224), - [anon_sym__Atomic] = ACTIONS(3224), - [anon_sym__Noreturn] = ACTIONS(3224), - [anon_sym_noreturn] = ACTIONS(3224), - [anon_sym_mutable] = ACTIONS(3224), - [anon_sym_constinit] = ACTIONS(3224), - [anon_sym_consteval] = ACTIONS(3224), - [sym_primitive_type] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_struct] = ACTIONS(3224), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_goto] = ACTIONS(3224), - [anon_sym_not] = ACTIONS(3224), - [anon_sym_compl] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_sizeof] = ACTIONS(3224), - [anon_sym___alignof__] = ACTIONS(3224), - [anon_sym___alignof] = ACTIONS(3224), - [anon_sym__alignof] = ACTIONS(3224), - [anon_sym_alignof] = ACTIONS(3224), - [anon_sym__Alignof] = ACTIONS(3224), - [anon_sym_offsetof] = ACTIONS(3224), - [anon_sym__Generic] = ACTIONS(3224), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3226), - [anon_sym_u_SQUOTE] = ACTIONS(3226), - [anon_sym_U_SQUOTE] = ACTIONS(3226), - [anon_sym_u8_SQUOTE] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [anon_sym_L_DQUOTE] = ACTIONS(3226), - [anon_sym_u_DQUOTE] = ACTIONS(3226), - [anon_sym_U_DQUOTE] = ACTIONS(3226), - [anon_sym_u8_DQUOTE] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [anon_sym_NULL] = ACTIONS(3224), - [anon_sym_nullptr] = ACTIONS(3224), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3224), - [anon_sym_decltype] = ACTIONS(3224), - [anon_sym_virtual] = ACTIONS(3224), - [anon_sym_alignas] = ACTIONS(3224), - [anon_sym_explicit] = ACTIONS(3224), - [anon_sym_typename] = ACTIONS(3224), - [anon_sym_template] = ACTIONS(3224), - [anon_sym_operator] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_using] = ACTIONS(3224), - [anon_sym_static_assert] = ACTIONS(3224), - [anon_sym_concept] = ACTIONS(3224), - [anon_sym_co_return] = ACTIONS(3224), - [anon_sym_co_yield] = ACTIONS(3224), - [anon_sym_R_DQUOTE] = ACTIONS(3226), - [anon_sym_LR_DQUOTE] = ACTIONS(3226), - [anon_sym_uR_DQUOTE] = ACTIONS(3226), - [anon_sym_UR_DQUOTE] = ACTIONS(3226), - [anon_sym_u8R_DQUOTE] = ACTIONS(3226), - [anon_sym_co_await] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_requires] = ACTIONS(3224), - [sym_this] = ACTIONS(3224), - }, - [1337] = { - [sym_identifier] = ACTIONS(3251), - [aux_sym_preproc_include_token1] = ACTIONS(3251), - [aux_sym_preproc_def_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token2] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3251), - [sym_preproc_directive] = ACTIONS(3251), - [anon_sym_LPAREN2] = ACTIONS(3253), - [anon_sym_BANG] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_SEMI] = ACTIONS(3253), - [anon_sym___extension__] = ACTIONS(3251), - [anon_sym_typedef] = ACTIONS(3251), - [anon_sym_extern] = ACTIONS(3251), - [anon_sym___attribute__] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(3253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3253), - [anon_sym___declspec] = ACTIONS(3251), - [anon_sym___based] = ACTIONS(3251), - [anon_sym___cdecl] = ACTIONS(3251), - [anon_sym___clrcall] = ACTIONS(3251), - [anon_sym___stdcall] = ACTIONS(3251), - [anon_sym___fastcall] = ACTIONS(3251), - [anon_sym___thiscall] = ACTIONS(3251), - [anon_sym___vectorcall] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_signed] = ACTIONS(3251), - [anon_sym_unsigned] = ACTIONS(3251), - [anon_sym_long] = ACTIONS(3251), - [anon_sym_short] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_register] = ACTIONS(3251), - [anon_sym_inline] = ACTIONS(3251), - [anon_sym___inline] = ACTIONS(3251), - [anon_sym___inline__] = ACTIONS(3251), - [anon_sym___forceinline] = ACTIONS(3251), - [anon_sym_thread_local] = ACTIONS(3251), - [anon_sym___thread] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_constexpr] = ACTIONS(3251), - [anon_sym_volatile] = ACTIONS(3251), - [anon_sym_restrict] = ACTIONS(3251), - [anon_sym___restrict__] = ACTIONS(3251), - [anon_sym__Atomic] = ACTIONS(3251), - [anon_sym__Noreturn] = ACTIONS(3251), - [anon_sym_noreturn] = ACTIONS(3251), - [anon_sym_mutable] = ACTIONS(3251), - [anon_sym_constinit] = ACTIONS(3251), - [anon_sym_consteval] = ACTIONS(3251), - [sym_primitive_type] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_union] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_switch] = ACTIONS(3251), - [anon_sym_case] = ACTIONS(3251), - [anon_sym_default] = ACTIONS(3251), - [anon_sym_while] = ACTIONS(3251), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_goto] = ACTIONS(3251), - [anon_sym_not] = ACTIONS(3251), - [anon_sym_compl] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_PLUS_PLUS] = ACTIONS(3253), - [anon_sym_sizeof] = ACTIONS(3251), - [anon_sym___alignof__] = ACTIONS(3251), - [anon_sym___alignof] = ACTIONS(3251), - [anon_sym__alignof] = ACTIONS(3251), - [anon_sym_alignof] = ACTIONS(3251), - [anon_sym__Alignof] = ACTIONS(3251), - [anon_sym_offsetof] = ACTIONS(3251), - [anon_sym__Generic] = ACTIONS(3251), - [anon_sym_asm] = ACTIONS(3251), - [anon_sym___asm__] = ACTIONS(3251), - [sym_number_literal] = ACTIONS(3253), - [anon_sym_L_SQUOTE] = ACTIONS(3253), - [anon_sym_u_SQUOTE] = ACTIONS(3253), - [anon_sym_U_SQUOTE] = ACTIONS(3253), - [anon_sym_u8_SQUOTE] = ACTIONS(3253), - [anon_sym_SQUOTE] = ACTIONS(3253), - [anon_sym_L_DQUOTE] = ACTIONS(3253), - [anon_sym_u_DQUOTE] = ACTIONS(3253), - [anon_sym_U_DQUOTE] = ACTIONS(3253), - [anon_sym_u8_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [anon_sym_NULL] = ACTIONS(3251), - [anon_sym_nullptr] = ACTIONS(3251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3251), - [anon_sym_decltype] = ACTIONS(3251), - [anon_sym_virtual] = ACTIONS(3251), - [anon_sym_alignas] = ACTIONS(3251), - [anon_sym_explicit] = ACTIONS(3251), - [anon_sym_typename] = ACTIONS(3251), - [anon_sym_template] = ACTIONS(3251), - [anon_sym_operator] = ACTIONS(3251), - [anon_sym_try] = ACTIONS(3251), - [anon_sym_delete] = ACTIONS(3251), - [anon_sym_throw] = ACTIONS(3251), - [anon_sym_namespace] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_static_assert] = ACTIONS(3251), - [anon_sym_concept] = ACTIONS(3251), - [anon_sym_co_return] = ACTIONS(3251), - [anon_sym_co_yield] = ACTIONS(3251), - [anon_sym_R_DQUOTE] = ACTIONS(3253), - [anon_sym_LR_DQUOTE] = ACTIONS(3253), - [anon_sym_uR_DQUOTE] = ACTIONS(3253), - [anon_sym_UR_DQUOTE] = ACTIONS(3253), - [anon_sym_u8R_DQUOTE] = ACTIONS(3253), - [anon_sym_co_await] = ACTIONS(3251), - [anon_sym_new] = ACTIONS(3251), - [anon_sym_requires] = ACTIONS(3251), - [sym_this] = ACTIONS(3251), - }, - [1338] = { - [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_extern] = ACTIONS(3304), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3304), - [anon_sym_alignas] = 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_using] = 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), - }, - [1339] = { - [sym_identifier] = ACTIONS(3191), - [aux_sym_preproc_include_token1] = ACTIONS(3191), - [aux_sym_preproc_def_token1] = ACTIONS(3191), - [aux_sym_preproc_if_token1] = ACTIONS(3191), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3191), - [sym_preproc_directive] = ACTIONS(3191), - [anon_sym_LPAREN2] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3191), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym___extension__] = ACTIONS(3191), - [anon_sym_typedef] = ACTIONS(3191), - [anon_sym_extern] = ACTIONS(3191), - [anon_sym___attribute__] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(3193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3193), - [anon_sym___declspec] = ACTIONS(3191), - [anon_sym___based] = ACTIONS(3191), - [anon_sym___cdecl] = ACTIONS(3191), - [anon_sym___clrcall] = ACTIONS(3191), - [anon_sym___stdcall] = ACTIONS(3191), - [anon_sym___fastcall] = ACTIONS(3191), - [anon_sym___thiscall] = ACTIONS(3191), - [anon_sym___vectorcall] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_RBRACE] = ACTIONS(3193), - [anon_sym_signed] = ACTIONS(3191), - [anon_sym_unsigned] = ACTIONS(3191), - [anon_sym_long] = ACTIONS(3191), - [anon_sym_short] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_static] = ACTIONS(3191), - [anon_sym_register] = ACTIONS(3191), - [anon_sym_inline] = ACTIONS(3191), - [anon_sym___inline] = ACTIONS(3191), - [anon_sym___inline__] = ACTIONS(3191), - [anon_sym___forceinline] = ACTIONS(3191), - [anon_sym_thread_local] = ACTIONS(3191), - [anon_sym___thread] = ACTIONS(3191), - [anon_sym_const] = ACTIONS(3191), - [anon_sym_constexpr] = ACTIONS(3191), - [anon_sym_volatile] = ACTIONS(3191), - [anon_sym_restrict] = ACTIONS(3191), - [anon_sym___restrict__] = ACTIONS(3191), - [anon_sym__Atomic] = ACTIONS(3191), - [anon_sym__Noreturn] = ACTIONS(3191), - [anon_sym_noreturn] = ACTIONS(3191), - [anon_sym_mutable] = ACTIONS(3191), - [anon_sym_constinit] = ACTIONS(3191), - [anon_sym_consteval] = ACTIONS(3191), - [sym_primitive_type] = ACTIONS(3191), - [anon_sym_enum] = ACTIONS(3191), - [anon_sym_class] = ACTIONS(3191), - [anon_sym_struct] = ACTIONS(3191), - [anon_sym_union] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_switch] = ACTIONS(3191), - [anon_sym_case] = ACTIONS(3191), - [anon_sym_default] = ACTIONS(3191), - [anon_sym_while] = ACTIONS(3191), - [anon_sym_do] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3191), - [anon_sym_return] = ACTIONS(3191), - [anon_sym_break] = ACTIONS(3191), - [anon_sym_continue] = ACTIONS(3191), - [anon_sym_goto] = ACTIONS(3191), - [anon_sym_not] = ACTIONS(3191), - [anon_sym_compl] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_sizeof] = ACTIONS(3191), - [anon_sym___alignof__] = ACTIONS(3191), - [anon_sym___alignof] = ACTIONS(3191), - [anon_sym__alignof] = ACTIONS(3191), - [anon_sym_alignof] = ACTIONS(3191), - [anon_sym__Alignof] = ACTIONS(3191), - [anon_sym_offsetof] = ACTIONS(3191), - [anon_sym__Generic] = ACTIONS(3191), - [anon_sym_asm] = ACTIONS(3191), - [anon_sym___asm__] = ACTIONS(3191), - [sym_number_literal] = ACTIONS(3193), - [anon_sym_L_SQUOTE] = ACTIONS(3193), - [anon_sym_u_SQUOTE] = ACTIONS(3193), - [anon_sym_U_SQUOTE] = ACTIONS(3193), - [anon_sym_u8_SQUOTE] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3193), - [anon_sym_L_DQUOTE] = ACTIONS(3193), - [anon_sym_u_DQUOTE] = ACTIONS(3193), - [anon_sym_U_DQUOTE] = ACTIONS(3193), - [anon_sym_u8_DQUOTE] = ACTIONS(3193), - [anon_sym_DQUOTE] = ACTIONS(3193), - [sym_true] = ACTIONS(3191), - [sym_false] = ACTIONS(3191), - [anon_sym_NULL] = ACTIONS(3191), - [anon_sym_nullptr] = ACTIONS(3191), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3191), - [anon_sym_decltype] = ACTIONS(3191), - [anon_sym_virtual] = ACTIONS(3191), - [anon_sym_alignas] = ACTIONS(3191), - [anon_sym_explicit] = ACTIONS(3191), - [anon_sym_typename] = ACTIONS(3191), - [anon_sym_template] = ACTIONS(3191), - [anon_sym_operator] = ACTIONS(3191), - [anon_sym_try] = ACTIONS(3191), - [anon_sym_delete] = ACTIONS(3191), - [anon_sym_throw] = ACTIONS(3191), - [anon_sym_namespace] = ACTIONS(3191), - [anon_sym_using] = ACTIONS(3191), - [anon_sym_static_assert] = ACTIONS(3191), - [anon_sym_concept] = ACTIONS(3191), - [anon_sym_co_return] = ACTIONS(3191), - [anon_sym_co_yield] = ACTIONS(3191), - [anon_sym_R_DQUOTE] = ACTIONS(3193), - [anon_sym_LR_DQUOTE] = ACTIONS(3193), - [anon_sym_uR_DQUOTE] = ACTIONS(3193), - [anon_sym_UR_DQUOTE] = ACTIONS(3193), - [anon_sym_u8R_DQUOTE] = ACTIONS(3193), - [anon_sym_co_await] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3191), - [anon_sym_requires] = ACTIONS(3191), - [sym_this] = ACTIONS(3191), - }, - [1340] = { - [sym_identifier] = ACTIONS(3346), - [aux_sym_preproc_include_token1] = ACTIONS(3346), - [aux_sym_preproc_def_token1] = ACTIONS(3346), - [aux_sym_preproc_if_token1] = ACTIONS(3346), - [aux_sym_preproc_if_token2] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3346), - [sym_preproc_directive] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_AMP_AMP] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3348), - [anon_sym___extension__] = ACTIONS(3346), - [anon_sym_typedef] = ACTIONS(3346), - [anon_sym_extern] = ACTIONS(3346), - [anon_sym___attribute__] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3348), - [anon_sym___declspec] = ACTIONS(3346), - [anon_sym___based] = ACTIONS(3346), - [anon_sym___cdecl] = ACTIONS(3346), - [anon_sym___clrcall] = ACTIONS(3346), - [anon_sym___stdcall] = ACTIONS(3346), - [anon_sym___fastcall] = ACTIONS(3346), - [anon_sym___thiscall] = ACTIONS(3346), - [anon_sym___vectorcall] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3348), - [anon_sym_signed] = ACTIONS(3346), - [anon_sym_unsigned] = ACTIONS(3346), - [anon_sym_long] = ACTIONS(3346), - [anon_sym_short] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_register] = ACTIONS(3346), - [anon_sym_inline] = ACTIONS(3346), - [anon_sym___inline] = ACTIONS(3346), - [anon_sym___inline__] = ACTIONS(3346), - [anon_sym___forceinline] = ACTIONS(3346), - [anon_sym_thread_local] = ACTIONS(3346), - [anon_sym___thread] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_constexpr] = ACTIONS(3346), - [anon_sym_volatile] = ACTIONS(3346), - [anon_sym_restrict] = ACTIONS(3346), - [anon_sym___restrict__] = ACTIONS(3346), - [anon_sym__Atomic] = ACTIONS(3346), - [anon_sym__Noreturn] = ACTIONS(3346), - [anon_sym_noreturn] = ACTIONS(3346), - [anon_sym_mutable] = ACTIONS(3346), - [anon_sym_constinit] = ACTIONS(3346), - [anon_sym_consteval] = ACTIONS(3346), - [sym_primitive_type] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_struct] = ACTIONS(3346), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3346), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_goto] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3346), - [anon_sym_compl] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3346), - [anon_sym___alignof__] = ACTIONS(3346), - [anon_sym___alignof] = ACTIONS(3346), - [anon_sym__alignof] = ACTIONS(3346), - [anon_sym_alignof] = ACTIONS(3346), - [anon_sym__Alignof] = ACTIONS(3346), - [anon_sym_offsetof] = ACTIONS(3346), - [anon_sym__Generic] = ACTIONS(3346), - [anon_sym_asm] = ACTIONS(3346), - [anon_sym___asm__] = ACTIONS(3346), - [sym_number_literal] = ACTIONS(3348), - [anon_sym_L_SQUOTE] = ACTIONS(3348), - [anon_sym_u_SQUOTE] = ACTIONS(3348), - [anon_sym_U_SQUOTE] = ACTIONS(3348), - [anon_sym_u8_SQUOTE] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3348), - [anon_sym_L_DQUOTE] = ACTIONS(3348), - [anon_sym_u_DQUOTE] = ACTIONS(3348), - [anon_sym_U_DQUOTE] = ACTIONS(3348), - [anon_sym_u8_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE] = ACTIONS(3348), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [anon_sym_NULL] = ACTIONS(3346), - [anon_sym_nullptr] = ACTIONS(3346), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3346), - [anon_sym_decltype] = ACTIONS(3346), - [anon_sym_virtual] = ACTIONS(3346), - [anon_sym_alignas] = ACTIONS(3346), - [anon_sym_explicit] = ACTIONS(3346), - [anon_sym_typename] = ACTIONS(3346), - [anon_sym_template] = ACTIONS(3346), - [anon_sym_operator] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_static_assert] = ACTIONS(3346), - [anon_sym_concept] = ACTIONS(3346), - [anon_sym_co_return] = ACTIONS(3346), - [anon_sym_co_yield] = ACTIONS(3346), - [anon_sym_R_DQUOTE] = ACTIONS(3348), - [anon_sym_LR_DQUOTE] = ACTIONS(3348), - [anon_sym_uR_DQUOTE] = ACTIONS(3348), - [anon_sym_UR_DQUOTE] = ACTIONS(3348), - [anon_sym_u8R_DQUOTE] = ACTIONS(3348), - [anon_sym_co_await] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_requires] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - }, - [1341] = { - [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_extern] = ACTIONS(3304), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3304), - [anon_sym_alignas] = 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_using] = 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), - }, - [1342] = { - [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_extern] = ACTIONS(3304), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3304), - [anon_sym_alignas] = 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_using] = 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), - }, - [1343] = { - [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_extern] = ACTIONS(3304), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3304), - [anon_sym_alignas] = 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_using] = 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), - }, - [1344] = { - [sym_identifier] = ACTIONS(3286), - [aux_sym_preproc_include_token1] = ACTIONS(3286), - [aux_sym_preproc_def_token1] = ACTIONS(3286), - [aux_sym_preproc_if_token1] = ACTIONS(3286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), - [sym_preproc_directive] = ACTIONS(3286), - [anon_sym_LPAREN2] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_AMP] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym___extension__] = ACTIONS(3286), - [anon_sym_typedef] = ACTIONS(3286), - [anon_sym_extern] = ACTIONS(3286), - [anon_sym___attribute__] = ACTIONS(3286), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), - [anon_sym___declspec] = ACTIONS(3286), - [anon_sym___based] = ACTIONS(3286), - [anon_sym___cdecl] = ACTIONS(3286), - [anon_sym___clrcall] = ACTIONS(3286), - [anon_sym___stdcall] = ACTIONS(3286), - [anon_sym___fastcall] = ACTIONS(3286), - [anon_sym___thiscall] = ACTIONS(3286), - [anon_sym___vectorcall] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_signed] = ACTIONS(3286), - [anon_sym_unsigned] = ACTIONS(3286), - [anon_sym_long] = ACTIONS(3286), - [anon_sym_short] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3286), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_register] = ACTIONS(3286), - [anon_sym_inline] = ACTIONS(3286), - [anon_sym___inline] = ACTIONS(3286), - [anon_sym___inline__] = ACTIONS(3286), - [anon_sym___forceinline] = ACTIONS(3286), - [anon_sym_thread_local] = ACTIONS(3286), - [anon_sym___thread] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_constexpr] = ACTIONS(3286), - [anon_sym_volatile] = ACTIONS(3286), - [anon_sym_restrict] = ACTIONS(3286), - [anon_sym___restrict__] = ACTIONS(3286), - [anon_sym__Atomic] = ACTIONS(3286), - [anon_sym__Noreturn] = ACTIONS(3286), - [anon_sym_noreturn] = ACTIONS(3286), - [anon_sym_mutable] = ACTIONS(3286), - [anon_sym_constinit] = ACTIONS(3286), - [anon_sym_consteval] = ACTIONS(3286), - [sym_primitive_type] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), - [anon_sym_class] = ACTIONS(3286), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_union] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3286), - [anon_sym_default] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_goto] = ACTIONS(3286), - [anon_sym_not] = ACTIONS(3286), - [anon_sym_compl] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_sizeof] = ACTIONS(3286), - [anon_sym___alignof__] = ACTIONS(3286), - [anon_sym___alignof] = ACTIONS(3286), - [anon_sym__alignof] = ACTIONS(3286), - [anon_sym_alignof] = ACTIONS(3286), - [anon_sym__Alignof] = ACTIONS(3286), - [anon_sym_offsetof] = ACTIONS(3286), - [anon_sym__Generic] = ACTIONS(3286), - [anon_sym_asm] = ACTIONS(3286), - [anon_sym___asm__] = ACTIONS(3286), - [sym_number_literal] = ACTIONS(3288), - [anon_sym_L_SQUOTE] = ACTIONS(3288), - [anon_sym_u_SQUOTE] = ACTIONS(3288), - [anon_sym_U_SQUOTE] = ACTIONS(3288), - [anon_sym_u8_SQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_L_DQUOTE] = ACTIONS(3288), - [anon_sym_u_DQUOTE] = ACTIONS(3288), - [anon_sym_U_DQUOTE] = ACTIONS(3288), - [anon_sym_u8_DQUOTE] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [anon_sym_NULL] = ACTIONS(3286), - [anon_sym_nullptr] = ACTIONS(3286), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3286), - [anon_sym_decltype] = ACTIONS(3286), - [anon_sym_virtual] = ACTIONS(3286), - [anon_sym_alignas] = ACTIONS(3286), - [anon_sym_explicit] = ACTIONS(3286), - [anon_sym_typename] = ACTIONS(3286), - [anon_sym_template] = ACTIONS(3286), - [anon_sym_operator] = ACTIONS(3286), - [anon_sym_try] = ACTIONS(3286), - [anon_sym_delete] = ACTIONS(3286), - [anon_sym_throw] = ACTIONS(3286), - [anon_sym_namespace] = ACTIONS(3286), - [anon_sym_using] = ACTIONS(3286), - [anon_sym_static_assert] = ACTIONS(3286), - [anon_sym_concept] = ACTIONS(3286), - [anon_sym_co_return] = ACTIONS(3286), - [anon_sym_co_yield] = ACTIONS(3286), - [anon_sym_R_DQUOTE] = ACTIONS(3288), - [anon_sym_LR_DQUOTE] = ACTIONS(3288), - [anon_sym_uR_DQUOTE] = ACTIONS(3288), - [anon_sym_UR_DQUOTE] = ACTIONS(3288), - [anon_sym_u8R_DQUOTE] = ACTIONS(3288), - [anon_sym_co_await] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3286), - [anon_sym_requires] = ACTIONS(3286), - [sym_this] = ACTIONS(3286), - }, - [1345] = { - [sym_identifier] = ACTIONS(3224), - [aux_sym_preproc_include_token1] = ACTIONS(3224), - [aux_sym_preproc_def_token1] = ACTIONS(3224), - [aux_sym_preproc_if_token1] = ACTIONS(3224), - [aux_sym_preproc_if_token2] = ACTIONS(3224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3224), - [sym_preproc_directive] = ACTIONS(3224), - [anon_sym_LPAREN2] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3226), - [anon_sym_AMP_AMP] = ACTIONS(3226), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3226), - [anon_sym___extension__] = ACTIONS(3224), - [anon_sym_typedef] = ACTIONS(3224), - [anon_sym_extern] = ACTIONS(3224), - [anon_sym___attribute__] = ACTIONS(3224), - [anon_sym_COLON_COLON] = ACTIONS(3226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3226), - [anon_sym___declspec] = ACTIONS(3224), - [anon_sym___based] = ACTIONS(3224), - [anon_sym___cdecl] = ACTIONS(3224), - [anon_sym___clrcall] = ACTIONS(3224), - [anon_sym___stdcall] = ACTIONS(3224), - [anon_sym___fastcall] = ACTIONS(3224), - [anon_sym___thiscall] = ACTIONS(3224), - [anon_sym___vectorcall] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_signed] = ACTIONS(3224), - [anon_sym_unsigned] = ACTIONS(3224), - [anon_sym_long] = ACTIONS(3224), - [anon_sym_short] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_register] = ACTIONS(3224), - [anon_sym_inline] = ACTIONS(3224), - [anon_sym___inline] = ACTIONS(3224), - [anon_sym___inline__] = ACTIONS(3224), - [anon_sym___forceinline] = ACTIONS(3224), - [anon_sym_thread_local] = ACTIONS(3224), - [anon_sym___thread] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_constexpr] = ACTIONS(3224), - [anon_sym_volatile] = ACTIONS(3224), - [anon_sym_restrict] = ACTIONS(3224), - [anon_sym___restrict__] = ACTIONS(3224), - [anon_sym__Atomic] = ACTIONS(3224), - [anon_sym__Noreturn] = ACTIONS(3224), - [anon_sym_noreturn] = ACTIONS(3224), - [anon_sym_mutable] = ACTIONS(3224), - [anon_sym_constinit] = ACTIONS(3224), - [anon_sym_consteval] = ACTIONS(3224), - [sym_primitive_type] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_struct] = ACTIONS(3224), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_goto] = ACTIONS(3224), - [anon_sym_not] = ACTIONS(3224), - [anon_sym_compl] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_sizeof] = ACTIONS(3224), - [anon_sym___alignof__] = ACTIONS(3224), - [anon_sym___alignof] = ACTIONS(3224), - [anon_sym__alignof] = ACTIONS(3224), - [anon_sym_alignof] = ACTIONS(3224), - [anon_sym__Alignof] = ACTIONS(3224), - [anon_sym_offsetof] = ACTIONS(3224), - [anon_sym__Generic] = ACTIONS(3224), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3226), - [anon_sym_u_SQUOTE] = ACTIONS(3226), - [anon_sym_U_SQUOTE] = ACTIONS(3226), - [anon_sym_u8_SQUOTE] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [anon_sym_L_DQUOTE] = ACTIONS(3226), - [anon_sym_u_DQUOTE] = ACTIONS(3226), - [anon_sym_U_DQUOTE] = ACTIONS(3226), - [anon_sym_u8_DQUOTE] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [anon_sym_NULL] = ACTIONS(3224), - [anon_sym_nullptr] = ACTIONS(3224), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3224), - [anon_sym_decltype] = ACTIONS(3224), - [anon_sym_virtual] = ACTIONS(3224), - [anon_sym_alignas] = ACTIONS(3224), - [anon_sym_explicit] = ACTIONS(3224), - [anon_sym_typename] = ACTIONS(3224), - [anon_sym_template] = ACTIONS(3224), - [anon_sym_operator] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_using] = ACTIONS(3224), - [anon_sym_static_assert] = ACTIONS(3224), - [anon_sym_concept] = ACTIONS(3224), - [anon_sym_co_return] = ACTIONS(3224), - [anon_sym_co_yield] = ACTIONS(3224), - [anon_sym_R_DQUOTE] = ACTIONS(3226), - [anon_sym_LR_DQUOTE] = ACTIONS(3226), - [anon_sym_uR_DQUOTE] = ACTIONS(3226), - [anon_sym_UR_DQUOTE] = ACTIONS(3226), - [anon_sym_u8R_DQUOTE] = ACTIONS(3226), - [anon_sym_co_await] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_requires] = ACTIONS(3224), - [sym_this] = ACTIONS(3224), - }, - [1346] = { - [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_extern] = ACTIONS(3318), - [anon_sym___attribute__] = ACTIONS(3318), - [anon_sym_COLON_COLON] = ACTIONS(3320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3320), - [anon_sym___declspec] = ACTIONS(3318), - [anon_sym___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_mutable] = ACTIONS(3318), - [anon_sym_constinit] = ACTIONS(3318), - [anon_sym_consteval] = ACTIONS(3318), - [sym_primitive_type] = ACTIONS(3318), - [anon_sym_enum] = ACTIONS(3318), - [anon_sym_class] = ACTIONS(3318), - [anon_sym_struct] = ACTIONS(3318), - [anon_sym_union] = ACTIONS(3318), - [anon_sym_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), - [sym_number_literal] = ACTIONS(3320), - [anon_sym_L_SQUOTE] = ACTIONS(3320), - [anon_sym_u_SQUOTE] = ACTIONS(3320), - [anon_sym_U_SQUOTE] = ACTIONS(3320), - [anon_sym_u8_SQUOTE] = ACTIONS(3320), - [anon_sym_SQUOTE] = ACTIONS(3320), - [anon_sym_L_DQUOTE] = ACTIONS(3320), - [anon_sym_u_DQUOTE] = ACTIONS(3320), - [anon_sym_U_DQUOTE] = ACTIONS(3320), - [anon_sym_u8_DQUOTE] = ACTIONS(3320), - [anon_sym_DQUOTE] = ACTIONS(3320), - [sym_true] = ACTIONS(3318), - [sym_false] = ACTIONS(3318), - [anon_sym_NULL] = ACTIONS(3318), - [anon_sym_nullptr] = ACTIONS(3318), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3318), - [anon_sym_decltype] = ACTIONS(3318), - [anon_sym_virtual] = ACTIONS(3318), - [anon_sym_alignas] = ACTIONS(3318), - [anon_sym_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_using] = 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), + [1416] = { + [sym__expression] = STATE(3448), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, - [1347] = { - [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_extern] = ACTIONS(3314), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3314), - [anon_sym_constinit] = ACTIONS(3314), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3314), - [anon_sym_alignas] = 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_using] = 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), + [1417] = { + [sym__expression] = STATE(4192), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1348] = { - [sym_identifier] = ACTIONS(3346), - [aux_sym_preproc_include_token1] = ACTIONS(3346), - [aux_sym_preproc_def_token1] = ACTIONS(3346), - [aux_sym_preproc_if_token1] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3346), - [sym_preproc_directive] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_AMP_AMP] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3348), - [anon_sym___extension__] = ACTIONS(3346), - [anon_sym_typedef] = ACTIONS(3346), - [anon_sym_extern] = ACTIONS(3346), - [anon_sym___attribute__] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3348), - [anon_sym___declspec] = ACTIONS(3346), - [anon_sym___based] = ACTIONS(3346), - [anon_sym___cdecl] = ACTIONS(3346), - [anon_sym___clrcall] = ACTIONS(3346), - [anon_sym___stdcall] = ACTIONS(3346), - [anon_sym___fastcall] = ACTIONS(3346), - [anon_sym___thiscall] = ACTIONS(3346), - [anon_sym___vectorcall] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3348), - [anon_sym_RBRACE] = ACTIONS(3348), - [anon_sym_signed] = ACTIONS(3346), - [anon_sym_unsigned] = ACTIONS(3346), - [anon_sym_long] = ACTIONS(3346), - [anon_sym_short] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_register] = ACTIONS(3346), - [anon_sym_inline] = ACTIONS(3346), - [anon_sym___inline] = ACTIONS(3346), - [anon_sym___inline__] = ACTIONS(3346), - [anon_sym___forceinline] = ACTIONS(3346), - [anon_sym_thread_local] = ACTIONS(3346), - [anon_sym___thread] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_constexpr] = ACTIONS(3346), - [anon_sym_volatile] = ACTIONS(3346), - [anon_sym_restrict] = ACTIONS(3346), - [anon_sym___restrict__] = ACTIONS(3346), - [anon_sym__Atomic] = ACTIONS(3346), - [anon_sym__Noreturn] = ACTIONS(3346), - [anon_sym_noreturn] = ACTIONS(3346), - [anon_sym_mutable] = ACTIONS(3346), - [anon_sym_constinit] = ACTIONS(3346), - [anon_sym_consteval] = ACTIONS(3346), - [sym_primitive_type] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_struct] = ACTIONS(3346), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3346), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_goto] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3346), - [anon_sym_compl] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3346), - [anon_sym___alignof__] = ACTIONS(3346), - [anon_sym___alignof] = ACTIONS(3346), - [anon_sym__alignof] = ACTIONS(3346), - [anon_sym_alignof] = ACTIONS(3346), - [anon_sym__Alignof] = ACTIONS(3346), - [anon_sym_offsetof] = ACTIONS(3346), - [anon_sym__Generic] = ACTIONS(3346), - [anon_sym_asm] = ACTIONS(3346), - [anon_sym___asm__] = ACTIONS(3346), - [sym_number_literal] = ACTIONS(3348), - [anon_sym_L_SQUOTE] = ACTIONS(3348), - [anon_sym_u_SQUOTE] = ACTIONS(3348), - [anon_sym_U_SQUOTE] = ACTIONS(3348), - [anon_sym_u8_SQUOTE] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3348), - [anon_sym_L_DQUOTE] = ACTIONS(3348), - [anon_sym_u_DQUOTE] = ACTIONS(3348), - [anon_sym_U_DQUOTE] = ACTIONS(3348), - [anon_sym_u8_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE] = ACTIONS(3348), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [anon_sym_NULL] = ACTIONS(3346), - [anon_sym_nullptr] = ACTIONS(3346), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3346), - [anon_sym_decltype] = ACTIONS(3346), - [anon_sym_virtual] = ACTIONS(3346), - [anon_sym_alignas] = ACTIONS(3346), - [anon_sym_explicit] = ACTIONS(3346), - [anon_sym_typename] = ACTIONS(3346), - [anon_sym_template] = ACTIONS(3346), - [anon_sym_operator] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_static_assert] = ACTIONS(3346), - [anon_sym_concept] = ACTIONS(3346), - [anon_sym_co_return] = ACTIONS(3346), - [anon_sym_co_yield] = ACTIONS(3346), - [anon_sym_R_DQUOTE] = ACTIONS(3348), - [anon_sym_LR_DQUOTE] = ACTIONS(3348), - [anon_sym_uR_DQUOTE] = ACTIONS(3348), - [anon_sym_UR_DQUOTE] = ACTIONS(3348), - [anon_sym_u8R_DQUOTE] = ACTIONS(3348), - [anon_sym_co_await] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_requires] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), + [1418] = { + [sym__expression] = STATE(4114), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1349] = { - [sym_identifier] = ACTIONS(3322), - [aux_sym_preproc_include_token1] = ACTIONS(3322), - [aux_sym_preproc_def_token1] = ACTIONS(3322), - [aux_sym_preproc_if_token1] = ACTIONS(3322), - [aux_sym_preproc_if_token2] = ACTIONS(3322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3322), - [sym_preproc_directive] = ACTIONS(3322), - [anon_sym_LPAREN2] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3322), - [anon_sym_PLUS] = ACTIONS(3322), - [anon_sym_STAR] = ACTIONS(3324), - [anon_sym_AMP_AMP] = ACTIONS(3324), - [anon_sym_AMP] = ACTIONS(3322), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym___extension__] = ACTIONS(3322), - [anon_sym_typedef] = ACTIONS(3322), - [anon_sym_extern] = ACTIONS(3322), - [anon_sym___attribute__] = ACTIONS(3322), - [anon_sym_COLON_COLON] = ACTIONS(3324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), - [anon_sym___declspec] = ACTIONS(3322), - [anon_sym___based] = ACTIONS(3322), - [anon_sym___cdecl] = ACTIONS(3322), - [anon_sym___clrcall] = ACTIONS(3322), - [anon_sym___stdcall] = ACTIONS(3322), - [anon_sym___fastcall] = ACTIONS(3322), - [anon_sym___thiscall] = ACTIONS(3322), - [anon_sym___vectorcall] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_signed] = ACTIONS(3322), - [anon_sym_unsigned] = ACTIONS(3322), - [anon_sym_long] = ACTIONS(3322), - [anon_sym_short] = ACTIONS(3322), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_static] = ACTIONS(3322), - [anon_sym_register] = ACTIONS(3322), - [anon_sym_inline] = ACTIONS(3322), - [anon_sym___inline] = ACTIONS(3322), - [anon_sym___inline__] = ACTIONS(3322), - [anon_sym___forceinline] = ACTIONS(3322), - [anon_sym_thread_local] = ACTIONS(3322), - [anon_sym___thread] = ACTIONS(3322), - [anon_sym_const] = ACTIONS(3322), - [anon_sym_constexpr] = ACTIONS(3322), - [anon_sym_volatile] = ACTIONS(3322), - [anon_sym_restrict] = ACTIONS(3322), - [anon_sym___restrict__] = ACTIONS(3322), - [anon_sym__Atomic] = ACTIONS(3322), - [anon_sym__Noreturn] = ACTIONS(3322), - [anon_sym_noreturn] = ACTIONS(3322), - [anon_sym_mutable] = ACTIONS(3322), - [anon_sym_constinit] = ACTIONS(3322), - [anon_sym_consteval] = ACTIONS(3322), - [sym_primitive_type] = ACTIONS(3322), - [anon_sym_enum] = ACTIONS(3322), - [anon_sym_class] = ACTIONS(3322), - [anon_sym_struct] = ACTIONS(3322), - [anon_sym_union] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3322), - [anon_sym_switch] = ACTIONS(3322), - [anon_sym_case] = ACTIONS(3322), - [anon_sym_default] = ACTIONS(3322), - [anon_sym_while] = ACTIONS(3322), - [anon_sym_do] = ACTIONS(3322), - [anon_sym_for] = ACTIONS(3322), - [anon_sym_return] = ACTIONS(3322), - [anon_sym_break] = ACTIONS(3322), - [anon_sym_continue] = ACTIONS(3322), - [anon_sym_goto] = ACTIONS(3322), - [anon_sym_not] = ACTIONS(3322), - [anon_sym_compl] = ACTIONS(3322), - [anon_sym_DASH_DASH] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_sizeof] = ACTIONS(3322), - [anon_sym___alignof__] = ACTIONS(3322), - [anon_sym___alignof] = ACTIONS(3322), - [anon_sym__alignof] = ACTIONS(3322), - [anon_sym_alignof] = ACTIONS(3322), - [anon_sym__Alignof] = ACTIONS(3322), - [anon_sym_offsetof] = ACTIONS(3322), - [anon_sym__Generic] = ACTIONS(3322), - [anon_sym_asm] = ACTIONS(3322), - [anon_sym___asm__] = ACTIONS(3322), - [sym_number_literal] = ACTIONS(3324), - [anon_sym_L_SQUOTE] = ACTIONS(3324), - [anon_sym_u_SQUOTE] = ACTIONS(3324), - [anon_sym_U_SQUOTE] = ACTIONS(3324), - [anon_sym_u8_SQUOTE] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_L_DQUOTE] = ACTIONS(3324), - [anon_sym_u_DQUOTE] = ACTIONS(3324), - [anon_sym_U_DQUOTE] = ACTIONS(3324), - [anon_sym_u8_DQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [anon_sym_NULL] = ACTIONS(3322), - [anon_sym_nullptr] = ACTIONS(3322), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3322), - [anon_sym_decltype] = ACTIONS(3322), - [anon_sym_virtual] = ACTIONS(3322), - [anon_sym_alignas] = ACTIONS(3322), - [anon_sym_explicit] = ACTIONS(3322), - [anon_sym_typename] = ACTIONS(3322), - [anon_sym_template] = ACTIONS(3322), - [anon_sym_operator] = ACTIONS(3322), - [anon_sym_try] = ACTIONS(3322), - [anon_sym_delete] = ACTIONS(3322), - [anon_sym_throw] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_using] = ACTIONS(3322), - [anon_sym_static_assert] = ACTIONS(3322), - [anon_sym_concept] = ACTIONS(3322), - [anon_sym_co_return] = ACTIONS(3322), - [anon_sym_co_yield] = ACTIONS(3322), - [anon_sym_R_DQUOTE] = ACTIONS(3324), - [anon_sym_LR_DQUOTE] = ACTIONS(3324), - [anon_sym_uR_DQUOTE] = ACTIONS(3324), - [anon_sym_UR_DQUOTE] = ACTIONS(3324), - [anon_sym_u8R_DQUOTE] = ACTIONS(3324), - [anon_sym_co_await] = ACTIONS(3322), - [anon_sym_new] = ACTIONS(3322), - [anon_sym_requires] = ACTIONS(3322), - [sym_this] = ACTIONS(3322), + [1419] = { + [sym__expression] = STATE(3835), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1350] = { - [sym_identifier] = ACTIONS(3298), - [aux_sym_preproc_include_token1] = ACTIONS(3298), - [aux_sym_preproc_def_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token1] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3298), - [sym_preproc_directive] = ACTIONS(3298), - [anon_sym_LPAREN2] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_STAR] = ACTIONS(3300), - [anon_sym_AMP_AMP] = ACTIONS(3300), - [anon_sym_AMP] = ACTIONS(3298), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym___extension__] = ACTIONS(3298), - [anon_sym_typedef] = ACTIONS(3298), - [anon_sym_extern] = ACTIONS(3298), - [anon_sym___attribute__] = ACTIONS(3298), - [anon_sym_COLON_COLON] = ACTIONS(3300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3300), - [anon_sym___declspec] = ACTIONS(3298), - [anon_sym___based] = ACTIONS(3298), - [anon_sym___cdecl] = ACTIONS(3298), - [anon_sym___clrcall] = ACTIONS(3298), - [anon_sym___stdcall] = ACTIONS(3298), - [anon_sym___fastcall] = ACTIONS(3298), - [anon_sym___thiscall] = ACTIONS(3298), - [anon_sym___vectorcall] = ACTIONS(3298), - [anon_sym_LBRACE] = ACTIONS(3300), - [anon_sym_RBRACE] = ACTIONS(3300), - [anon_sym_signed] = ACTIONS(3298), - [anon_sym_unsigned] = ACTIONS(3298), - [anon_sym_long] = ACTIONS(3298), - [anon_sym_short] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3298), - [anon_sym_register] = ACTIONS(3298), - [anon_sym_inline] = ACTIONS(3298), - [anon_sym___inline] = ACTIONS(3298), - [anon_sym___inline__] = ACTIONS(3298), - [anon_sym___forceinline] = ACTIONS(3298), - [anon_sym_thread_local] = ACTIONS(3298), - [anon_sym___thread] = ACTIONS(3298), - [anon_sym_const] = ACTIONS(3298), - [anon_sym_constexpr] = ACTIONS(3298), - [anon_sym_volatile] = ACTIONS(3298), - [anon_sym_restrict] = ACTIONS(3298), - [anon_sym___restrict__] = ACTIONS(3298), - [anon_sym__Atomic] = ACTIONS(3298), - [anon_sym__Noreturn] = ACTIONS(3298), - [anon_sym_noreturn] = ACTIONS(3298), - [anon_sym_mutable] = ACTIONS(3298), - [anon_sym_constinit] = ACTIONS(3298), - [anon_sym_consteval] = ACTIONS(3298), - [sym_primitive_type] = ACTIONS(3298), - [anon_sym_enum] = ACTIONS(3298), - [anon_sym_class] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3298), - [anon_sym_union] = ACTIONS(3298), - [anon_sym_if] = ACTIONS(3298), - [anon_sym_switch] = ACTIONS(3298), - [anon_sym_case] = ACTIONS(3298), - [anon_sym_default] = ACTIONS(3298), - [anon_sym_while] = ACTIONS(3298), - [anon_sym_do] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3298), - [anon_sym_return] = ACTIONS(3298), - [anon_sym_break] = ACTIONS(3298), - [anon_sym_continue] = ACTIONS(3298), - [anon_sym_goto] = ACTIONS(3298), - [anon_sym_not] = ACTIONS(3298), - [anon_sym_compl] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3300), - [anon_sym_sizeof] = ACTIONS(3298), - [anon_sym___alignof__] = ACTIONS(3298), - [anon_sym___alignof] = ACTIONS(3298), - [anon_sym__alignof] = ACTIONS(3298), - [anon_sym_alignof] = ACTIONS(3298), - [anon_sym__Alignof] = ACTIONS(3298), - [anon_sym_offsetof] = ACTIONS(3298), - [anon_sym__Generic] = ACTIONS(3298), - [anon_sym_asm] = ACTIONS(3298), - [anon_sym___asm__] = ACTIONS(3298), - [sym_number_literal] = ACTIONS(3300), - [anon_sym_L_SQUOTE] = ACTIONS(3300), - [anon_sym_u_SQUOTE] = ACTIONS(3300), - [anon_sym_U_SQUOTE] = ACTIONS(3300), - [anon_sym_u8_SQUOTE] = ACTIONS(3300), - [anon_sym_SQUOTE] = ACTIONS(3300), - [anon_sym_L_DQUOTE] = ACTIONS(3300), - [anon_sym_u_DQUOTE] = ACTIONS(3300), - [anon_sym_U_DQUOTE] = ACTIONS(3300), - [anon_sym_u8_DQUOTE] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(3300), - [sym_true] = ACTIONS(3298), - [sym_false] = ACTIONS(3298), - [anon_sym_NULL] = ACTIONS(3298), - [anon_sym_nullptr] = ACTIONS(3298), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3298), - [anon_sym_decltype] = ACTIONS(3298), - [anon_sym_virtual] = ACTIONS(3298), - [anon_sym_alignas] = ACTIONS(3298), - [anon_sym_explicit] = ACTIONS(3298), - [anon_sym_typename] = ACTIONS(3298), - [anon_sym_template] = ACTIONS(3298), - [anon_sym_operator] = ACTIONS(3298), - [anon_sym_try] = ACTIONS(3298), - [anon_sym_delete] = ACTIONS(3298), - [anon_sym_throw] = ACTIONS(3298), - [anon_sym_namespace] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3298), - [anon_sym_static_assert] = ACTIONS(3298), - [anon_sym_concept] = ACTIONS(3298), - [anon_sym_co_return] = ACTIONS(3298), - [anon_sym_co_yield] = ACTIONS(3298), - [anon_sym_R_DQUOTE] = ACTIONS(3300), - [anon_sym_LR_DQUOTE] = ACTIONS(3300), - [anon_sym_uR_DQUOTE] = ACTIONS(3300), - [anon_sym_UR_DQUOTE] = ACTIONS(3300), - [anon_sym_u8R_DQUOTE] = ACTIONS(3300), - [anon_sym_co_await] = ACTIONS(3298), - [anon_sym_new] = ACTIONS(3298), - [anon_sym_requires] = ACTIONS(3298), - [sym_this] = ACTIONS(3298), + [1420] = { + [sym__expression] = STATE(4032), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1351] = { - [sym_identifier] = ACTIONS(3358), - [aux_sym_preproc_include_token1] = ACTIONS(3358), - [aux_sym_preproc_def_token1] = ACTIONS(3358), - [aux_sym_preproc_if_token1] = ACTIONS(3358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3358), - [sym_preproc_directive] = ACTIONS(3358), - [anon_sym_LPAREN2] = ACTIONS(3360), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3360), - [anon_sym___extension__] = ACTIONS(3358), - [anon_sym_typedef] = ACTIONS(3358), - [anon_sym_extern] = ACTIONS(3358), - [anon_sym___attribute__] = ACTIONS(3358), - [anon_sym_COLON_COLON] = ACTIONS(3360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3360), - [anon_sym___declspec] = ACTIONS(3358), - [anon_sym___based] = ACTIONS(3358), - [anon_sym___cdecl] = ACTIONS(3358), - [anon_sym___clrcall] = ACTIONS(3358), - [anon_sym___stdcall] = ACTIONS(3358), - [anon_sym___fastcall] = ACTIONS(3358), - [anon_sym___thiscall] = ACTIONS(3358), - [anon_sym___vectorcall] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_RBRACE] = ACTIONS(3360), - [anon_sym_signed] = ACTIONS(3358), - [anon_sym_unsigned] = ACTIONS(3358), - [anon_sym_long] = ACTIONS(3358), - [anon_sym_short] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_register] = ACTIONS(3358), - [anon_sym_inline] = ACTIONS(3358), - [anon_sym___inline] = ACTIONS(3358), - [anon_sym___inline__] = ACTIONS(3358), - [anon_sym___forceinline] = ACTIONS(3358), - [anon_sym_thread_local] = ACTIONS(3358), - [anon_sym___thread] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_constexpr] = ACTIONS(3358), - [anon_sym_volatile] = ACTIONS(3358), - [anon_sym_restrict] = ACTIONS(3358), - [anon_sym___restrict__] = ACTIONS(3358), - [anon_sym__Atomic] = ACTIONS(3358), - [anon_sym__Noreturn] = ACTIONS(3358), - [anon_sym_noreturn] = ACTIONS(3358), - [anon_sym_mutable] = ACTIONS(3358), - [anon_sym_constinit] = ACTIONS(3358), - [anon_sym_consteval] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_struct] = ACTIONS(3358), - [anon_sym_union] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_case] = ACTIONS(3358), - [anon_sym_default] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_goto] = ACTIONS(3358), - [anon_sym_not] = ACTIONS(3358), - [anon_sym_compl] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3360), - [anon_sym_sizeof] = ACTIONS(3358), - [anon_sym___alignof__] = ACTIONS(3358), - [anon_sym___alignof] = ACTIONS(3358), - [anon_sym__alignof] = ACTIONS(3358), - [anon_sym_alignof] = ACTIONS(3358), - [anon_sym__Alignof] = ACTIONS(3358), - [anon_sym_offsetof] = ACTIONS(3358), - [anon_sym__Generic] = ACTIONS(3358), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3360), - [anon_sym_u_SQUOTE] = ACTIONS(3360), - [anon_sym_U_SQUOTE] = ACTIONS(3360), - [anon_sym_u8_SQUOTE] = ACTIONS(3360), - [anon_sym_SQUOTE] = ACTIONS(3360), - [anon_sym_L_DQUOTE] = ACTIONS(3360), - [anon_sym_u_DQUOTE] = ACTIONS(3360), - [anon_sym_U_DQUOTE] = ACTIONS(3360), - [anon_sym_u8_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [anon_sym_NULL] = ACTIONS(3358), - [anon_sym_nullptr] = ACTIONS(3358), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3358), - [anon_sym_decltype] = ACTIONS(3358), - [anon_sym_virtual] = ACTIONS(3358), - [anon_sym_alignas] = ACTIONS(3358), - [anon_sym_explicit] = ACTIONS(3358), - [anon_sym_typename] = ACTIONS(3358), - [anon_sym_template] = ACTIONS(3358), - [anon_sym_operator] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_static_assert] = ACTIONS(3358), - [anon_sym_concept] = ACTIONS(3358), - [anon_sym_co_return] = ACTIONS(3358), - [anon_sym_co_yield] = ACTIONS(3358), - [anon_sym_R_DQUOTE] = ACTIONS(3360), - [anon_sym_LR_DQUOTE] = ACTIONS(3360), - [anon_sym_uR_DQUOTE] = ACTIONS(3360), - [anon_sym_UR_DQUOTE] = ACTIONS(3360), - [anon_sym_u8R_DQUOTE] = ACTIONS(3360), - [anon_sym_co_await] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_requires] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), + [1421] = { + [sym__expression] = STATE(4134), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(4487), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1352] = { - [sym_identifier] = ACTIONS(3342), - [aux_sym_preproc_include_token1] = ACTIONS(3342), - [aux_sym_preproc_def_token1] = ACTIONS(3342), - [aux_sym_preproc_if_token1] = ACTIONS(3342), - [aux_sym_preproc_if_token2] = ACTIONS(3342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3342), - [sym_preproc_directive] = ACTIONS(3342), - [anon_sym_LPAREN2] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3342), - [anon_sym_STAR] = ACTIONS(3344), - [anon_sym_AMP_AMP] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3342), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym___extension__] = ACTIONS(3342), - [anon_sym_typedef] = ACTIONS(3342), - [anon_sym_extern] = ACTIONS(3342), - [anon_sym___attribute__] = ACTIONS(3342), - [anon_sym_COLON_COLON] = ACTIONS(3344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3344), - [anon_sym___declspec] = ACTIONS(3342), - [anon_sym___based] = ACTIONS(3342), - [anon_sym___cdecl] = ACTIONS(3342), - [anon_sym___clrcall] = ACTIONS(3342), - [anon_sym___stdcall] = ACTIONS(3342), - [anon_sym___fastcall] = ACTIONS(3342), - [anon_sym___thiscall] = ACTIONS(3342), - [anon_sym___vectorcall] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_signed] = ACTIONS(3342), - [anon_sym_unsigned] = ACTIONS(3342), - [anon_sym_long] = ACTIONS(3342), - [anon_sym_short] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_static] = ACTIONS(3342), - [anon_sym_register] = ACTIONS(3342), - [anon_sym_inline] = ACTIONS(3342), - [anon_sym___inline] = ACTIONS(3342), - [anon_sym___inline__] = ACTIONS(3342), - [anon_sym___forceinline] = ACTIONS(3342), - [anon_sym_thread_local] = ACTIONS(3342), - [anon_sym___thread] = ACTIONS(3342), - [anon_sym_const] = ACTIONS(3342), - [anon_sym_constexpr] = ACTIONS(3342), - [anon_sym_volatile] = ACTIONS(3342), - [anon_sym_restrict] = ACTIONS(3342), - [anon_sym___restrict__] = ACTIONS(3342), - [anon_sym__Atomic] = ACTIONS(3342), - [anon_sym__Noreturn] = ACTIONS(3342), - [anon_sym_noreturn] = ACTIONS(3342), - [anon_sym_mutable] = ACTIONS(3342), - [anon_sym_constinit] = ACTIONS(3342), - [anon_sym_consteval] = ACTIONS(3342), - [sym_primitive_type] = ACTIONS(3342), - [anon_sym_enum] = ACTIONS(3342), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3342), - [anon_sym_union] = ACTIONS(3342), - [anon_sym_if] = ACTIONS(3342), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3342), - [anon_sym_default] = ACTIONS(3342), - [anon_sym_while] = ACTIONS(3342), - [anon_sym_do] = ACTIONS(3342), - [anon_sym_for] = ACTIONS(3342), - [anon_sym_return] = ACTIONS(3342), - [anon_sym_break] = ACTIONS(3342), - [anon_sym_continue] = ACTIONS(3342), - [anon_sym_goto] = ACTIONS(3342), - [anon_sym_not] = ACTIONS(3342), - [anon_sym_compl] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_sizeof] = ACTIONS(3342), - [anon_sym___alignof__] = ACTIONS(3342), - [anon_sym___alignof] = ACTIONS(3342), - [anon_sym__alignof] = ACTIONS(3342), - [anon_sym_alignof] = ACTIONS(3342), - [anon_sym__Alignof] = ACTIONS(3342), - [anon_sym_offsetof] = ACTIONS(3342), - [anon_sym__Generic] = ACTIONS(3342), - [anon_sym_asm] = ACTIONS(3342), - [anon_sym___asm__] = ACTIONS(3342), - [sym_number_literal] = ACTIONS(3344), - [anon_sym_L_SQUOTE] = ACTIONS(3344), - [anon_sym_u_SQUOTE] = ACTIONS(3344), - [anon_sym_U_SQUOTE] = ACTIONS(3344), - [anon_sym_u8_SQUOTE] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3344), - [anon_sym_L_DQUOTE] = ACTIONS(3344), - [anon_sym_u_DQUOTE] = ACTIONS(3344), - [anon_sym_U_DQUOTE] = ACTIONS(3344), - [anon_sym_u8_DQUOTE] = ACTIONS(3344), - [anon_sym_DQUOTE] = ACTIONS(3344), - [sym_true] = ACTIONS(3342), - [sym_false] = ACTIONS(3342), - [anon_sym_NULL] = ACTIONS(3342), - [anon_sym_nullptr] = ACTIONS(3342), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3342), - [anon_sym_decltype] = ACTIONS(3342), - [anon_sym_virtual] = ACTIONS(3342), - [anon_sym_alignas] = ACTIONS(3342), - [anon_sym_explicit] = ACTIONS(3342), - [anon_sym_typename] = ACTIONS(3342), - [anon_sym_template] = ACTIONS(3342), - [anon_sym_operator] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(3342), - [anon_sym_delete] = ACTIONS(3342), - [anon_sym_throw] = ACTIONS(3342), - [anon_sym_namespace] = ACTIONS(3342), - [anon_sym_using] = ACTIONS(3342), - [anon_sym_static_assert] = ACTIONS(3342), - [anon_sym_concept] = ACTIONS(3342), - [anon_sym_co_return] = ACTIONS(3342), - [anon_sym_co_yield] = ACTIONS(3342), - [anon_sym_R_DQUOTE] = ACTIONS(3344), - [anon_sym_LR_DQUOTE] = ACTIONS(3344), - [anon_sym_uR_DQUOTE] = ACTIONS(3344), - [anon_sym_UR_DQUOTE] = ACTIONS(3344), - [anon_sym_u8R_DQUOTE] = ACTIONS(3344), - [anon_sym_co_await] = ACTIONS(3342), - [anon_sym_new] = ACTIONS(3342), - [anon_sym_requires] = ACTIONS(3342), - [sym_this] = ACTIONS(3342), + [1422] = { + [sym__expression] = STATE(3232), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1353] = { - [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_extern] = ACTIONS(3119), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3119), - [anon_sym_constinit] = ACTIONS(3119), - [anon_sym_consteval] = 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), - [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), + [1423] = { + [sym__expression] = STATE(4036), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(4489), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3119), - [anon_sym_decltype] = ACTIONS(3119), - [anon_sym_virtual] = ACTIONS(3119), - [anon_sym_alignas] = 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_using] = 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), - }, - [1354] = { - [sym_identifier] = ACTIONS(3428), - [aux_sym_preproc_include_token1] = ACTIONS(3428), - [aux_sym_preproc_def_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3428), - [sym_preproc_directive] = ACTIONS(3428), - [anon_sym_LPAREN2] = ACTIONS(3430), - [anon_sym_BANG] = ACTIONS(3430), - [anon_sym_TILDE] = ACTIONS(3430), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_STAR] = ACTIONS(3430), - [anon_sym_AMP_AMP] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_SEMI] = ACTIONS(3430), - [anon_sym___extension__] = ACTIONS(3428), - [anon_sym_typedef] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym___attribute__] = ACTIONS(3428), - [anon_sym_COLON_COLON] = ACTIONS(3430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3430), - [anon_sym___declspec] = ACTIONS(3428), - [anon_sym___based] = ACTIONS(3428), - [anon_sym___cdecl] = ACTIONS(3428), - [anon_sym___clrcall] = ACTIONS(3428), - [anon_sym___stdcall] = ACTIONS(3428), - [anon_sym___fastcall] = ACTIONS(3428), - [anon_sym___thiscall] = ACTIONS(3428), - [anon_sym___vectorcall] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3430), - [anon_sym_RBRACE] = ACTIONS(3430), - [anon_sym_signed] = ACTIONS(3428), - [anon_sym_unsigned] = ACTIONS(3428), - [anon_sym_long] = ACTIONS(3428), - [anon_sym_short] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_register] = ACTIONS(3428), - [anon_sym_inline] = ACTIONS(3428), - [anon_sym___inline] = ACTIONS(3428), - [anon_sym___inline__] = ACTIONS(3428), - [anon_sym___forceinline] = ACTIONS(3428), - [anon_sym_thread_local] = ACTIONS(3428), - [anon_sym___thread] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_constexpr] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_restrict] = ACTIONS(3428), - [anon_sym___restrict__] = ACTIONS(3428), - [anon_sym__Atomic] = ACTIONS(3428), - [anon_sym__Noreturn] = ACTIONS(3428), - [anon_sym_noreturn] = ACTIONS(3428), - [anon_sym_mutable] = ACTIONS(3428), - [anon_sym_constinit] = ACTIONS(3428), - [anon_sym_consteval] = ACTIONS(3428), - [sym_primitive_type] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_union] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_switch] = ACTIONS(3428), - [anon_sym_case] = ACTIONS(3428), - [anon_sym_default] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_break] = ACTIONS(3428), - [anon_sym_continue] = ACTIONS(3428), - [anon_sym_goto] = ACTIONS(3428), - [anon_sym_not] = ACTIONS(3428), - [anon_sym_compl] = ACTIONS(3428), - [anon_sym_DASH_DASH] = ACTIONS(3430), - [anon_sym_PLUS_PLUS] = ACTIONS(3430), - [anon_sym_sizeof] = ACTIONS(3428), - [anon_sym___alignof__] = ACTIONS(3428), - [anon_sym___alignof] = ACTIONS(3428), - [anon_sym__alignof] = ACTIONS(3428), - [anon_sym_alignof] = ACTIONS(3428), - [anon_sym__Alignof] = ACTIONS(3428), - [anon_sym_offsetof] = ACTIONS(3428), - [anon_sym__Generic] = ACTIONS(3428), - [anon_sym_asm] = ACTIONS(3428), - [anon_sym___asm__] = ACTIONS(3428), - [sym_number_literal] = ACTIONS(3430), - [anon_sym_L_SQUOTE] = ACTIONS(3430), - [anon_sym_u_SQUOTE] = ACTIONS(3430), - [anon_sym_U_SQUOTE] = ACTIONS(3430), - [anon_sym_u8_SQUOTE] = ACTIONS(3430), - [anon_sym_SQUOTE] = ACTIONS(3430), - [anon_sym_L_DQUOTE] = ACTIONS(3430), - [anon_sym_u_DQUOTE] = ACTIONS(3430), - [anon_sym_U_DQUOTE] = ACTIONS(3430), - [anon_sym_u8_DQUOTE] = ACTIONS(3430), - [anon_sym_DQUOTE] = ACTIONS(3430), - [sym_true] = ACTIONS(3428), - [sym_false] = ACTIONS(3428), - [anon_sym_NULL] = ACTIONS(3428), - [anon_sym_nullptr] = ACTIONS(3428), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3428), - [anon_sym_decltype] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_alignas] = ACTIONS(3428), - [anon_sym_explicit] = ACTIONS(3428), - [anon_sym_typename] = ACTIONS(3428), - [anon_sym_template] = ACTIONS(3428), - [anon_sym_operator] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_delete] = ACTIONS(3428), - [anon_sym_throw] = ACTIONS(3428), - [anon_sym_namespace] = ACTIONS(3428), - [anon_sym_using] = ACTIONS(3428), - [anon_sym_static_assert] = ACTIONS(3428), - [anon_sym_concept] = ACTIONS(3428), - [anon_sym_co_return] = ACTIONS(3428), - [anon_sym_co_yield] = ACTIONS(3428), - [anon_sym_R_DQUOTE] = ACTIONS(3430), - [anon_sym_LR_DQUOTE] = ACTIONS(3430), - [anon_sym_uR_DQUOTE] = ACTIONS(3430), - [anon_sym_UR_DQUOTE] = ACTIONS(3430), - [anon_sym_u8R_DQUOTE] = ACTIONS(3430), - [anon_sym_co_await] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_requires] = ACTIONS(3428), - [sym_this] = ACTIONS(3428), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1355] = { - [sym_identifier] = ACTIONS(3362), - [aux_sym_preproc_include_token1] = ACTIONS(3362), - [aux_sym_preproc_def_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token2] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), - [sym_preproc_directive] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3362), - [anon_sym_PLUS] = ACTIONS(3362), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym___extension__] = ACTIONS(3362), - [anon_sym_typedef] = ACTIONS(3362), - [anon_sym_extern] = ACTIONS(3362), - [anon_sym___attribute__] = ACTIONS(3362), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), - [anon_sym___declspec] = ACTIONS(3362), - [anon_sym___based] = ACTIONS(3362), - [anon_sym___cdecl] = ACTIONS(3362), - [anon_sym___clrcall] = ACTIONS(3362), - [anon_sym___stdcall] = ACTIONS(3362), - [anon_sym___fastcall] = ACTIONS(3362), - [anon_sym___thiscall] = ACTIONS(3362), - [anon_sym___vectorcall] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_signed] = ACTIONS(3362), - [anon_sym_unsigned] = ACTIONS(3362), - [anon_sym_long] = ACTIONS(3362), - [anon_sym_short] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_register] = ACTIONS(3362), - [anon_sym_inline] = ACTIONS(3362), - [anon_sym___inline] = ACTIONS(3362), - [anon_sym___inline__] = ACTIONS(3362), - [anon_sym___forceinline] = ACTIONS(3362), - [anon_sym_thread_local] = ACTIONS(3362), - [anon_sym___thread] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_constexpr] = ACTIONS(3362), - [anon_sym_volatile] = ACTIONS(3362), - [anon_sym_restrict] = ACTIONS(3362), - [anon_sym___restrict__] = ACTIONS(3362), - [anon_sym__Atomic] = ACTIONS(3362), - [anon_sym__Noreturn] = ACTIONS(3362), - [anon_sym_noreturn] = ACTIONS(3362), - [anon_sym_mutable] = ACTIONS(3362), - [anon_sym_constinit] = ACTIONS(3362), - [anon_sym_consteval] = ACTIONS(3362), - [sym_primitive_type] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3362), - [anon_sym_case] = ACTIONS(3362), - [anon_sym_default] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_do] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_goto] = ACTIONS(3362), - [anon_sym_not] = ACTIONS(3362), - [anon_sym_compl] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_sizeof] = ACTIONS(3362), - [anon_sym___alignof__] = ACTIONS(3362), - [anon_sym___alignof] = ACTIONS(3362), - [anon_sym__alignof] = ACTIONS(3362), - [anon_sym_alignof] = ACTIONS(3362), - [anon_sym__Alignof] = ACTIONS(3362), - [anon_sym_offsetof] = ACTIONS(3362), - [anon_sym__Generic] = ACTIONS(3362), - [anon_sym_asm] = ACTIONS(3362), - [anon_sym___asm__] = ACTIONS(3362), - [sym_number_literal] = ACTIONS(3364), - [anon_sym_L_SQUOTE] = ACTIONS(3364), - [anon_sym_u_SQUOTE] = ACTIONS(3364), - [anon_sym_U_SQUOTE] = ACTIONS(3364), - [anon_sym_u8_SQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_L_DQUOTE] = ACTIONS(3364), - [anon_sym_u_DQUOTE] = ACTIONS(3364), - [anon_sym_U_DQUOTE] = ACTIONS(3364), - [anon_sym_u8_DQUOTE] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [sym_true] = ACTIONS(3362), - [sym_false] = ACTIONS(3362), - [anon_sym_NULL] = ACTIONS(3362), - [anon_sym_nullptr] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3362), - [anon_sym_decltype] = ACTIONS(3362), - [anon_sym_virtual] = ACTIONS(3362), - [anon_sym_alignas] = ACTIONS(3362), - [anon_sym_explicit] = ACTIONS(3362), - [anon_sym_typename] = ACTIONS(3362), - [anon_sym_template] = ACTIONS(3362), - [anon_sym_operator] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [anon_sym_delete] = ACTIONS(3362), - [anon_sym_throw] = ACTIONS(3362), - [anon_sym_namespace] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_static_assert] = ACTIONS(3362), - [anon_sym_concept] = ACTIONS(3362), - [anon_sym_co_return] = ACTIONS(3362), - [anon_sym_co_yield] = ACTIONS(3362), - [anon_sym_R_DQUOTE] = ACTIONS(3364), - [anon_sym_LR_DQUOTE] = ACTIONS(3364), - [anon_sym_uR_DQUOTE] = ACTIONS(3364), - [anon_sym_UR_DQUOTE] = ACTIONS(3364), - [anon_sym_u8R_DQUOTE] = ACTIONS(3364), - [anon_sym_co_await] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3362), - [anon_sym_requires] = ACTIONS(3362), - [sym_this] = ACTIONS(3362), + [1424] = { + [sym__expression] = STATE(4290), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(4491), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1356] = { - [sym_identifier] = ACTIONS(3418), - [aux_sym_preproc_include_token1] = ACTIONS(3418), - [aux_sym_preproc_def_token1] = ACTIONS(3418), - [aux_sym_preproc_if_token1] = ACTIONS(3418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3418), - [sym_preproc_directive] = ACTIONS(3418), - [anon_sym_LPAREN2] = ACTIONS(3420), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_TILDE] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3418), - [anon_sym_PLUS] = ACTIONS(3418), - [anon_sym_STAR] = ACTIONS(3420), - [anon_sym_AMP_AMP] = ACTIONS(3420), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_SEMI] = ACTIONS(3420), - [anon_sym___extension__] = ACTIONS(3418), - [anon_sym_typedef] = ACTIONS(3418), - [anon_sym_extern] = ACTIONS(3418), - [anon_sym___attribute__] = ACTIONS(3418), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3420), - [anon_sym___declspec] = ACTIONS(3418), - [anon_sym___based] = ACTIONS(3418), - [anon_sym___cdecl] = ACTIONS(3418), - [anon_sym___clrcall] = ACTIONS(3418), - [anon_sym___stdcall] = ACTIONS(3418), - [anon_sym___fastcall] = ACTIONS(3418), - [anon_sym___thiscall] = ACTIONS(3418), - [anon_sym___vectorcall] = ACTIONS(3418), - [anon_sym_LBRACE] = ACTIONS(3420), - [anon_sym_RBRACE] = ACTIONS(3420), - [anon_sym_signed] = ACTIONS(3418), - [anon_sym_unsigned] = ACTIONS(3418), - [anon_sym_long] = ACTIONS(3418), - [anon_sym_short] = ACTIONS(3418), - [anon_sym_LBRACK] = ACTIONS(3418), - [anon_sym_static] = ACTIONS(3418), - [anon_sym_register] = ACTIONS(3418), - [anon_sym_inline] = ACTIONS(3418), - [anon_sym___inline] = ACTIONS(3418), - [anon_sym___inline__] = ACTIONS(3418), - [anon_sym___forceinline] = ACTIONS(3418), - [anon_sym_thread_local] = ACTIONS(3418), - [anon_sym___thread] = ACTIONS(3418), - [anon_sym_const] = ACTIONS(3418), - [anon_sym_constexpr] = ACTIONS(3418), - [anon_sym_volatile] = ACTIONS(3418), - [anon_sym_restrict] = ACTIONS(3418), - [anon_sym___restrict__] = ACTIONS(3418), - [anon_sym__Atomic] = ACTIONS(3418), - [anon_sym__Noreturn] = ACTIONS(3418), - [anon_sym_noreturn] = ACTIONS(3418), - [anon_sym_mutable] = ACTIONS(3418), - [anon_sym_constinit] = ACTIONS(3418), - [anon_sym_consteval] = ACTIONS(3418), - [sym_primitive_type] = ACTIONS(3418), - [anon_sym_enum] = ACTIONS(3418), - [anon_sym_class] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(3418), - [anon_sym_union] = ACTIONS(3418), - [anon_sym_if] = ACTIONS(3418), - [anon_sym_switch] = ACTIONS(3418), - [anon_sym_case] = ACTIONS(3418), - [anon_sym_default] = ACTIONS(3418), - [anon_sym_while] = ACTIONS(3418), - [anon_sym_do] = ACTIONS(3418), - [anon_sym_for] = ACTIONS(3418), - [anon_sym_return] = ACTIONS(3418), - [anon_sym_break] = ACTIONS(3418), - [anon_sym_continue] = ACTIONS(3418), - [anon_sym_goto] = ACTIONS(3418), - [anon_sym_not] = ACTIONS(3418), - [anon_sym_compl] = ACTIONS(3418), - [anon_sym_DASH_DASH] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3420), - [anon_sym_sizeof] = ACTIONS(3418), - [anon_sym___alignof__] = ACTIONS(3418), - [anon_sym___alignof] = ACTIONS(3418), - [anon_sym__alignof] = ACTIONS(3418), - [anon_sym_alignof] = ACTIONS(3418), - [anon_sym__Alignof] = ACTIONS(3418), - [anon_sym_offsetof] = ACTIONS(3418), - [anon_sym__Generic] = ACTIONS(3418), - [anon_sym_asm] = ACTIONS(3418), - [anon_sym___asm__] = ACTIONS(3418), - [sym_number_literal] = ACTIONS(3420), - [anon_sym_L_SQUOTE] = ACTIONS(3420), - [anon_sym_u_SQUOTE] = ACTIONS(3420), - [anon_sym_U_SQUOTE] = ACTIONS(3420), - [anon_sym_u8_SQUOTE] = ACTIONS(3420), - [anon_sym_SQUOTE] = ACTIONS(3420), - [anon_sym_L_DQUOTE] = ACTIONS(3420), - [anon_sym_u_DQUOTE] = ACTIONS(3420), - [anon_sym_U_DQUOTE] = ACTIONS(3420), - [anon_sym_u8_DQUOTE] = ACTIONS(3420), - [anon_sym_DQUOTE] = ACTIONS(3420), - [sym_true] = ACTIONS(3418), - [sym_false] = ACTIONS(3418), - [anon_sym_NULL] = ACTIONS(3418), - [anon_sym_nullptr] = ACTIONS(3418), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3418), - [anon_sym_decltype] = ACTIONS(3418), - [anon_sym_virtual] = ACTIONS(3418), - [anon_sym_alignas] = ACTIONS(3418), - [anon_sym_explicit] = ACTIONS(3418), - [anon_sym_typename] = ACTIONS(3418), - [anon_sym_template] = ACTIONS(3418), - [anon_sym_operator] = ACTIONS(3418), - [anon_sym_try] = ACTIONS(3418), - [anon_sym_delete] = ACTIONS(3418), - [anon_sym_throw] = ACTIONS(3418), - [anon_sym_namespace] = ACTIONS(3418), - [anon_sym_using] = ACTIONS(3418), - [anon_sym_static_assert] = ACTIONS(3418), - [anon_sym_concept] = ACTIONS(3418), - [anon_sym_co_return] = ACTIONS(3418), - [anon_sym_co_yield] = ACTIONS(3418), - [anon_sym_R_DQUOTE] = ACTIONS(3420), - [anon_sym_LR_DQUOTE] = ACTIONS(3420), - [anon_sym_uR_DQUOTE] = ACTIONS(3420), - [anon_sym_UR_DQUOTE] = ACTIONS(3420), - [anon_sym_u8R_DQUOTE] = ACTIONS(3420), - [anon_sym_co_await] = ACTIONS(3418), - [anon_sym_new] = ACTIONS(3418), - [anon_sym_requires] = ACTIONS(3418), - [sym_this] = ACTIONS(3418), + [1425] = { + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1357] = { - [sym_identifier] = ACTIONS(3432), - [aux_sym_preproc_include_token1] = ACTIONS(3432), - [aux_sym_preproc_def_token1] = ACTIONS(3432), - [aux_sym_preproc_if_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [sym_preproc_directive] = ACTIONS(3432), - [anon_sym_LPAREN2] = ACTIONS(3434), - [anon_sym_BANG] = ACTIONS(3434), - [anon_sym_TILDE] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(3434), - [anon_sym_AMP_AMP] = ACTIONS(3434), - [anon_sym_AMP] = ACTIONS(3432), - [anon_sym_SEMI] = ACTIONS(3434), - [anon_sym___extension__] = ACTIONS(3432), - [anon_sym_typedef] = ACTIONS(3432), - [anon_sym_extern] = ACTIONS(3432), - [anon_sym___attribute__] = ACTIONS(3432), - [anon_sym_COLON_COLON] = ACTIONS(3434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3434), - [anon_sym___declspec] = ACTIONS(3432), - [anon_sym___based] = ACTIONS(3432), - [anon_sym___cdecl] = ACTIONS(3432), - [anon_sym___clrcall] = ACTIONS(3432), - [anon_sym___stdcall] = ACTIONS(3432), - [anon_sym___fastcall] = ACTIONS(3432), - [anon_sym___thiscall] = ACTIONS(3432), - [anon_sym___vectorcall] = ACTIONS(3432), - [anon_sym_LBRACE] = ACTIONS(3434), - [anon_sym_RBRACE] = ACTIONS(3434), - [anon_sym_signed] = ACTIONS(3432), - [anon_sym_unsigned] = ACTIONS(3432), - [anon_sym_long] = ACTIONS(3432), - [anon_sym_short] = ACTIONS(3432), - [anon_sym_LBRACK] = ACTIONS(3432), - [anon_sym_static] = ACTIONS(3432), - [anon_sym_register] = ACTIONS(3432), - [anon_sym_inline] = ACTIONS(3432), - [anon_sym___inline] = ACTIONS(3432), - [anon_sym___inline__] = ACTIONS(3432), - [anon_sym___forceinline] = ACTIONS(3432), - [anon_sym_thread_local] = ACTIONS(3432), - [anon_sym___thread] = ACTIONS(3432), - [anon_sym_const] = ACTIONS(3432), - [anon_sym_constexpr] = ACTIONS(3432), - [anon_sym_volatile] = ACTIONS(3432), - [anon_sym_restrict] = ACTIONS(3432), - [anon_sym___restrict__] = ACTIONS(3432), - [anon_sym__Atomic] = ACTIONS(3432), - [anon_sym__Noreturn] = ACTIONS(3432), - [anon_sym_noreturn] = ACTIONS(3432), - [anon_sym_mutable] = ACTIONS(3432), - [anon_sym_constinit] = ACTIONS(3432), - [anon_sym_consteval] = ACTIONS(3432), - [sym_primitive_type] = ACTIONS(3432), - [anon_sym_enum] = ACTIONS(3432), - [anon_sym_class] = ACTIONS(3432), - [anon_sym_struct] = ACTIONS(3432), - [anon_sym_union] = ACTIONS(3432), - [anon_sym_if] = ACTIONS(3432), - [anon_sym_switch] = ACTIONS(3432), - [anon_sym_case] = ACTIONS(3432), - [anon_sym_default] = ACTIONS(3432), - [anon_sym_while] = ACTIONS(3432), - [anon_sym_do] = ACTIONS(3432), - [anon_sym_for] = ACTIONS(3432), - [anon_sym_return] = ACTIONS(3432), - [anon_sym_break] = ACTIONS(3432), - [anon_sym_continue] = ACTIONS(3432), - [anon_sym_goto] = ACTIONS(3432), - [anon_sym_not] = ACTIONS(3432), - [anon_sym_compl] = ACTIONS(3432), - [anon_sym_DASH_DASH] = ACTIONS(3434), - [anon_sym_PLUS_PLUS] = ACTIONS(3434), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym___alignof__] = ACTIONS(3432), - [anon_sym___alignof] = ACTIONS(3432), - [anon_sym__alignof] = ACTIONS(3432), - [anon_sym_alignof] = ACTIONS(3432), - [anon_sym__Alignof] = ACTIONS(3432), - [anon_sym_offsetof] = ACTIONS(3432), - [anon_sym__Generic] = ACTIONS(3432), - [anon_sym_asm] = ACTIONS(3432), - [anon_sym___asm__] = ACTIONS(3432), - [sym_number_literal] = ACTIONS(3434), - [anon_sym_L_SQUOTE] = ACTIONS(3434), - [anon_sym_u_SQUOTE] = ACTIONS(3434), - [anon_sym_U_SQUOTE] = ACTIONS(3434), - [anon_sym_u8_SQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3434), - [anon_sym_L_DQUOTE] = ACTIONS(3434), - [anon_sym_u_DQUOTE] = ACTIONS(3434), - [anon_sym_U_DQUOTE] = ACTIONS(3434), - [anon_sym_u8_DQUOTE] = ACTIONS(3434), - [anon_sym_DQUOTE] = ACTIONS(3434), - [sym_true] = ACTIONS(3432), - [sym_false] = ACTIONS(3432), - [anon_sym_NULL] = ACTIONS(3432), - [anon_sym_nullptr] = ACTIONS(3432), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3432), - [anon_sym_decltype] = ACTIONS(3432), - [anon_sym_virtual] = ACTIONS(3432), - [anon_sym_alignas] = ACTIONS(3432), - [anon_sym_explicit] = ACTIONS(3432), - [anon_sym_typename] = ACTIONS(3432), - [anon_sym_template] = ACTIONS(3432), - [anon_sym_operator] = ACTIONS(3432), - [anon_sym_try] = ACTIONS(3432), - [anon_sym_delete] = ACTIONS(3432), - [anon_sym_throw] = ACTIONS(3432), - [anon_sym_namespace] = ACTIONS(3432), - [anon_sym_using] = ACTIONS(3432), - [anon_sym_static_assert] = ACTIONS(3432), - [anon_sym_concept] = ACTIONS(3432), - [anon_sym_co_return] = ACTIONS(3432), - [anon_sym_co_yield] = ACTIONS(3432), - [anon_sym_R_DQUOTE] = ACTIONS(3434), - [anon_sym_LR_DQUOTE] = ACTIONS(3434), - [anon_sym_uR_DQUOTE] = ACTIONS(3434), - [anon_sym_UR_DQUOTE] = ACTIONS(3434), - [anon_sym_u8R_DQUOTE] = ACTIONS(3434), - [anon_sym_co_await] = ACTIONS(3432), - [anon_sym_new] = ACTIONS(3432), - [anon_sym_requires] = ACTIONS(3432), - [sym_this] = ACTIONS(3432), + [1426] = { + [sym__expression] = STATE(3835), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1358] = { - [sym_identifier] = ACTIONS(3384), - [aux_sym_preproc_include_token1] = ACTIONS(3384), - [aux_sym_preproc_def_token1] = ACTIONS(3384), - [aux_sym_preproc_if_token1] = ACTIONS(3384), - [aux_sym_preproc_if_token2] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), - [sym_preproc_directive] = ACTIONS(3384), - [anon_sym_LPAREN2] = ACTIONS(3386), - [anon_sym_BANG] = ACTIONS(3386), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3384), - [anon_sym_PLUS] = ACTIONS(3384), - [anon_sym_STAR] = ACTIONS(3386), - [anon_sym_AMP_AMP] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3384), - [anon_sym_SEMI] = ACTIONS(3386), - [anon_sym___extension__] = ACTIONS(3384), - [anon_sym_typedef] = ACTIONS(3384), - [anon_sym_extern] = ACTIONS(3384), - [anon_sym___attribute__] = ACTIONS(3384), - [anon_sym_COLON_COLON] = ACTIONS(3386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3386), - [anon_sym___declspec] = ACTIONS(3384), - [anon_sym___based] = ACTIONS(3384), - [anon_sym___cdecl] = ACTIONS(3384), - [anon_sym___clrcall] = ACTIONS(3384), - [anon_sym___stdcall] = ACTIONS(3384), - [anon_sym___fastcall] = ACTIONS(3384), - [anon_sym___thiscall] = ACTIONS(3384), - [anon_sym___vectorcall] = ACTIONS(3384), - [anon_sym_LBRACE] = ACTIONS(3386), - [anon_sym_signed] = ACTIONS(3384), - [anon_sym_unsigned] = ACTIONS(3384), - [anon_sym_long] = ACTIONS(3384), - [anon_sym_short] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_static] = ACTIONS(3384), - [anon_sym_register] = ACTIONS(3384), - [anon_sym_inline] = ACTIONS(3384), - [anon_sym___inline] = ACTIONS(3384), - [anon_sym___inline__] = ACTIONS(3384), - [anon_sym___forceinline] = ACTIONS(3384), - [anon_sym_thread_local] = ACTIONS(3384), - [anon_sym___thread] = ACTIONS(3384), - [anon_sym_const] = ACTIONS(3384), - [anon_sym_constexpr] = ACTIONS(3384), - [anon_sym_volatile] = ACTIONS(3384), - [anon_sym_restrict] = ACTIONS(3384), - [anon_sym___restrict__] = ACTIONS(3384), - [anon_sym__Atomic] = ACTIONS(3384), - [anon_sym__Noreturn] = ACTIONS(3384), - [anon_sym_noreturn] = ACTIONS(3384), - [anon_sym_mutable] = ACTIONS(3384), - [anon_sym_constinit] = ACTIONS(3384), - [anon_sym_consteval] = ACTIONS(3384), - [sym_primitive_type] = ACTIONS(3384), - [anon_sym_enum] = ACTIONS(3384), - [anon_sym_class] = ACTIONS(3384), - [anon_sym_struct] = ACTIONS(3384), - [anon_sym_union] = ACTIONS(3384), - [anon_sym_if] = ACTIONS(3384), - [anon_sym_switch] = ACTIONS(3384), - [anon_sym_case] = ACTIONS(3384), - [anon_sym_default] = ACTIONS(3384), - [anon_sym_while] = ACTIONS(3384), - [anon_sym_do] = ACTIONS(3384), - [anon_sym_for] = ACTIONS(3384), - [anon_sym_return] = ACTIONS(3384), - [anon_sym_break] = ACTIONS(3384), - [anon_sym_continue] = ACTIONS(3384), - [anon_sym_goto] = ACTIONS(3384), - [anon_sym_not] = ACTIONS(3384), - [anon_sym_compl] = ACTIONS(3384), - [anon_sym_DASH_DASH] = ACTIONS(3386), - [anon_sym_PLUS_PLUS] = ACTIONS(3386), - [anon_sym_sizeof] = ACTIONS(3384), - [anon_sym___alignof__] = ACTIONS(3384), - [anon_sym___alignof] = ACTIONS(3384), - [anon_sym__alignof] = ACTIONS(3384), - [anon_sym_alignof] = ACTIONS(3384), - [anon_sym__Alignof] = ACTIONS(3384), - [anon_sym_offsetof] = ACTIONS(3384), - [anon_sym__Generic] = ACTIONS(3384), - [anon_sym_asm] = ACTIONS(3384), - [anon_sym___asm__] = ACTIONS(3384), - [sym_number_literal] = ACTIONS(3386), - [anon_sym_L_SQUOTE] = ACTIONS(3386), - [anon_sym_u_SQUOTE] = ACTIONS(3386), - [anon_sym_U_SQUOTE] = ACTIONS(3386), - [anon_sym_u8_SQUOTE] = ACTIONS(3386), - [anon_sym_SQUOTE] = ACTIONS(3386), - [anon_sym_L_DQUOTE] = ACTIONS(3386), - [anon_sym_u_DQUOTE] = ACTIONS(3386), - [anon_sym_U_DQUOTE] = ACTIONS(3386), - [anon_sym_u8_DQUOTE] = ACTIONS(3386), - [anon_sym_DQUOTE] = ACTIONS(3386), - [sym_true] = ACTIONS(3384), - [sym_false] = ACTIONS(3384), - [anon_sym_NULL] = ACTIONS(3384), - [anon_sym_nullptr] = ACTIONS(3384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3384), - [anon_sym_decltype] = ACTIONS(3384), - [anon_sym_virtual] = ACTIONS(3384), - [anon_sym_alignas] = ACTIONS(3384), - [anon_sym_explicit] = ACTIONS(3384), - [anon_sym_typename] = ACTIONS(3384), - [anon_sym_template] = ACTIONS(3384), - [anon_sym_operator] = ACTIONS(3384), - [anon_sym_try] = ACTIONS(3384), - [anon_sym_delete] = ACTIONS(3384), - [anon_sym_throw] = ACTIONS(3384), - [anon_sym_namespace] = ACTIONS(3384), - [anon_sym_using] = ACTIONS(3384), - [anon_sym_static_assert] = ACTIONS(3384), - [anon_sym_concept] = ACTIONS(3384), - [anon_sym_co_return] = ACTIONS(3384), - [anon_sym_co_yield] = ACTIONS(3384), - [anon_sym_R_DQUOTE] = ACTIONS(3386), - [anon_sym_LR_DQUOTE] = ACTIONS(3386), - [anon_sym_uR_DQUOTE] = ACTIONS(3386), - [anon_sym_UR_DQUOTE] = ACTIONS(3386), - [anon_sym_u8R_DQUOTE] = ACTIONS(3386), - [anon_sym_co_await] = ACTIONS(3384), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3384), - [sym_this] = ACTIONS(3384), + [1427] = { + [sym__expression] = STATE(4173), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1359] = { - [sym_identifier] = ACTIONS(3392), - [aux_sym_preproc_include_token1] = ACTIONS(3392), - [aux_sym_preproc_def_token1] = ACTIONS(3392), - [aux_sym_preproc_if_token1] = ACTIONS(3392), - [aux_sym_preproc_if_token2] = ACTIONS(3392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3392), - [sym_preproc_directive] = ACTIONS(3392), - [anon_sym_LPAREN2] = ACTIONS(3394), - [anon_sym_BANG] = ACTIONS(3394), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3392), - [anon_sym_PLUS] = ACTIONS(3392), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3392), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym___extension__] = ACTIONS(3392), - [anon_sym_typedef] = ACTIONS(3392), - [anon_sym_extern] = ACTIONS(3392), - [anon_sym___attribute__] = ACTIONS(3392), - [anon_sym_COLON_COLON] = ACTIONS(3394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), - [anon_sym___declspec] = ACTIONS(3392), - [anon_sym___based] = ACTIONS(3392), - [anon_sym___cdecl] = ACTIONS(3392), - [anon_sym___clrcall] = ACTIONS(3392), - [anon_sym___stdcall] = ACTIONS(3392), - [anon_sym___fastcall] = ACTIONS(3392), - [anon_sym___thiscall] = ACTIONS(3392), - [anon_sym___vectorcall] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(3394), - [anon_sym_signed] = ACTIONS(3392), - [anon_sym_unsigned] = ACTIONS(3392), - [anon_sym_long] = ACTIONS(3392), - [anon_sym_short] = ACTIONS(3392), - [anon_sym_LBRACK] = ACTIONS(3392), - [anon_sym_static] = ACTIONS(3392), - [anon_sym_register] = ACTIONS(3392), - [anon_sym_inline] = ACTIONS(3392), - [anon_sym___inline] = ACTIONS(3392), - [anon_sym___inline__] = ACTIONS(3392), - [anon_sym___forceinline] = ACTIONS(3392), - [anon_sym_thread_local] = ACTIONS(3392), - [anon_sym___thread] = ACTIONS(3392), - [anon_sym_const] = ACTIONS(3392), - [anon_sym_constexpr] = ACTIONS(3392), - [anon_sym_volatile] = ACTIONS(3392), - [anon_sym_restrict] = ACTIONS(3392), - [anon_sym___restrict__] = ACTIONS(3392), - [anon_sym__Atomic] = ACTIONS(3392), - [anon_sym__Noreturn] = ACTIONS(3392), - [anon_sym_noreturn] = ACTIONS(3392), - [anon_sym_mutable] = ACTIONS(3392), - [anon_sym_constinit] = ACTIONS(3392), - [anon_sym_consteval] = ACTIONS(3392), - [sym_primitive_type] = ACTIONS(3392), - [anon_sym_enum] = ACTIONS(3392), - [anon_sym_class] = ACTIONS(3392), - [anon_sym_struct] = ACTIONS(3392), - [anon_sym_union] = ACTIONS(3392), - [anon_sym_if] = ACTIONS(3392), - [anon_sym_switch] = ACTIONS(3392), - [anon_sym_case] = ACTIONS(3392), - [anon_sym_default] = ACTIONS(3392), - [anon_sym_while] = ACTIONS(3392), - [anon_sym_do] = ACTIONS(3392), - [anon_sym_for] = ACTIONS(3392), - [anon_sym_return] = ACTIONS(3392), - [anon_sym_break] = ACTIONS(3392), - [anon_sym_continue] = ACTIONS(3392), - [anon_sym_goto] = ACTIONS(3392), - [anon_sym_not] = ACTIONS(3392), - [anon_sym_compl] = ACTIONS(3392), - [anon_sym_DASH_DASH] = ACTIONS(3394), - [anon_sym_PLUS_PLUS] = ACTIONS(3394), - [anon_sym_sizeof] = ACTIONS(3392), - [anon_sym___alignof__] = ACTIONS(3392), - [anon_sym___alignof] = ACTIONS(3392), - [anon_sym__alignof] = ACTIONS(3392), - [anon_sym_alignof] = ACTIONS(3392), - [anon_sym__Alignof] = ACTIONS(3392), - [anon_sym_offsetof] = ACTIONS(3392), - [anon_sym__Generic] = ACTIONS(3392), - [anon_sym_asm] = ACTIONS(3392), - [anon_sym___asm__] = ACTIONS(3392), - [sym_number_literal] = ACTIONS(3394), - [anon_sym_L_SQUOTE] = ACTIONS(3394), - [anon_sym_u_SQUOTE] = ACTIONS(3394), - [anon_sym_U_SQUOTE] = ACTIONS(3394), - [anon_sym_u8_SQUOTE] = ACTIONS(3394), - [anon_sym_SQUOTE] = ACTIONS(3394), - [anon_sym_L_DQUOTE] = ACTIONS(3394), - [anon_sym_u_DQUOTE] = ACTIONS(3394), - [anon_sym_U_DQUOTE] = ACTIONS(3394), - [anon_sym_u8_DQUOTE] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [sym_true] = ACTIONS(3392), - [sym_false] = ACTIONS(3392), - [anon_sym_NULL] = ACTIONS(3392), - [anon_sym_nullptr] = ACTIONS(3392), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3392), - [anon_sym_decltype] = ACTIONS(3392), - [anon_sym_virtual] = ACTIONS(3392), - [anon_sym_alignas] = ACTIONS(3392), - [anon_sym_explicit] = ACTIONS(3392), - [anon_sym_typename] = ACTIONS(3392), - [anon_sym_template] = ACTIONS(3392), - [anon_sym_operator] = ACTIONS(3392), - [anon_sym_try] = ACTIONS(3392), - [anon_sym_delete] = ACTIONS(3392), - [anon_sym_throw] = ACTIONS(3392), - [anon_sym_namespace] = ACTIONS(3392), - [anon_sym_using] = ACTIONS(3392), - [anon_sym_static_assert] = ACTIONS(3392), - [anon_sym_concept] = ACTIONS(3392), - [anon_sym_co_return] = ACTIONS(3392), - [anon_sym_co_yield] = ACTIONS(3392), - [anon_sym_R_DQUOTE] = ACTIONS(3394), - [anon_sym_LR_DQUOTE] = ACTIONS(3394), - [anon_sym_uR_DQUOTE] = ACTIONS(3394), - [anon_sym_UR_DQUOTE] = ACTIONS(3394), - [anon_sym_u8R_DQUOTE] = ACTIONS(3394), - [anon_sym_co_await] = ACTIONS(3392), - [anon_sym_new] = ACTIONS(3392), - [anon_sym_requires] = ACTIONS(3392), - [sym_this] = ACTIONS(3392), + [1428] = { + [sym__expression] = STATE(4306), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1360] = { - [sym_identifier] = ACTIONS(3294), - [aux_sym_preproc_include_token1] = ACTIONS(3294), - [aux_sym_preproc_def_token1] = ACTIONS(3294), - [aux_sym_preproc_if_token1] = ACTIONS(3294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), - [sym_preproc_directive] = ACTIONS(3294), - [anon_sym_LPAREN2] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym___extension__] = ACTIONS(3294), - [anon_sym_typedef] = ACTIONS(3294), - [anon_sym_extern] = ACTIONS(3294), - [anon_sym___attribute__] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), - [anon_sym___declspec] = ACTIONS(3294), - [anon_sym___based] = ACTIONS(3294), - [anon_sym___cdecl] = ACTIONS(3294), - [anon_sym___clrcall] = ACTIONS(3294), - [anon_sym___stdcall] = ACTIONS(3294), - [anon_sym___fastcall] = ACTIONS(3294), - [anon_sym___thiscall] = ACTIONS(3294), - [anon_sym___vectorcall] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_signed] = ACTIONS(3294), - [anon_sym_unsigned] = ACTIONS(3294), - [anon_sym_long] = ACTIONS(3294), - [anon_sym_short] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_register] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym___inline] = ACTIONS(3294), - [anon_sym___inline__] = ACTIONS(3294), - [anon_sym___forceinline] = ACTIONS(3294), - [anon_sym_thread_local] = ACTIONS(3294), - [anon_sym___thread] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_constexpr] = ACTIONS(3294), - [anon_sym_volatile] = ACTIONS(3294), - [anon_sym_restrict] = ACTIONS(3294), - [anon_sym___restrict__] = ACTIONS(3294), - [anon_sym__Atomic] = ACTIONS(3294), - [anon_sym__Noreturn] = ACTIONS(3294), - [anon_sym_noreturn] = ACTIONS(3294), - [anon_sym_mutable] = ACTIONS(3294), - [anon_sym_constinit] = ACTIONS(3294), - [anon_sym_consteval] = ACTIONS(3294), - [sym_primitive_type] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), - [anon_sym_class] = ACTIONS(3294), - [anon_sym_struct] = ACTIONS(3294), - [anon_sym_union] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_switch] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3294), - [anon_sym_default] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_do] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_goto] = ACTIONS(3294), - [anon_sym_not] = ACTIONS(3294), - [anon_sym_compl] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_sizeof] = ACTIONS(3294), - [anon_sym___alignof__] = ACTIONS(3294), - [anon_sym___alignof] = ACTIONS(3294), - [anon_sym__alignof] = ACTIONS(3294), - [anon_sym_alignof] = ACTIONS(3294), - [anon_sym__Alignof] = ACTIONS(3294), - [anon_sym_offsetof] = ACTIONS(3294), - [anon_sym__Generic] = ACTIONS(3294), - [anon_sym_asm] = ACTIONS(3294), - [anon_sym___asm__] = ACTIONS(3294), - [sym_number_literal] = ACTIONS(3296), - [anon_sym_L_SQUOTE] = ACTIONS(3296), - [anon_sym_u_SQUOTE] = ACTIONS(3296), - [anon_sym_U_SQUOTE] = ACTIONS(3296), - [anon_sym_u8_SQUOTE] = ACTIONS(3296), - [anon_sym_SQUOTE] = ACTIONS(3296), - [anon_sym_L_DQUOTE] = ACTIONS(3296), - [anon_sym_u_DQUOTE] = ACTIONS(3296), - [anon_sym_U_DQUOTE] = ACTIONS(3296), - [anon_sym_u8_DQUOTE] = ACTIONS(3296), - [anon_sym_DQUOTE] = ACTIONS(3296), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [anon_sym_NULL] = ACTIONS(3294), - [anon_sym_nullptr] = ACTIONS(3294), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3294), - [anon_sym_decltype] = ACTIONS(3294), - [anon_sym_virtual] = ACTIONS(3294), - [anon_sym_alignas] = ACTIONS(3294), - [anon_sym_explicit] = ACTIONS(3294), - [anon_sym_typename] = ACTIONS(3294), - [anon_sym_template] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_delete] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_namespace] = ACTIONS(3294), - [anon_sym_using] = ACTIONS(3294), - [anon_sym_static_assert] = ACTIONS(3294), - [anon_sym_concept] = ACTIONS(3294), - [anon_sym_co_return] = ACTIONS(3294), - [anon_sym_co_yield] = ACTIONS(3294), - [anon_sym_R_DQUOTE] = ACTIONS(3296), - [anon_sym_LR_DQUOTE] = ACTIONS(3296), - [anon_sym_uR_DQUOTE] = ACTIONS(3296), - [anon_sym_UR_DQUOTE] = ACTIONS(3296), - [anon_sym_u8R_DQUOTE] = ACTIONS(3296), - [anon_sym_co_await] = ACTIONS(3294), - [anon_sym_new] = ACTIONS(3294), - [anon_sym_requires] = ACTIONS(3294), - [sym_this] = ACTIONS(3294), + [1429] = { + [sym__expression] = STATE(4178), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1361] = { - [sym_identifier] = ACTIONS(3290), - [aux_sym_preproc_include_token1] = ACTIONS(3290), - [aux_sym_preproc_def_token1] = ACTIONS(3290), - [aux_sym_preproc_if_token1] = ACTIONS(3290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3290), - [sym_preproc_directive] = ACTIONS(3290), - [anon_sym_LPAREN2] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3290), - [anon_sym_PLUS] = ACTIONS(3290), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_AMP] = ACTIONS(3290), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym___extension__] = ACTIONS(3290), - [anon_sym_typedef] = ACTIONS(3290), - [anon_sym_extern] = ACTIONS(3290), - [anon_sym___attribute__] = ACTIONS(3290), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3292), - [anon_sym___declspec] = ACTIONS(3290), - [anon_sym___based] = ACTIONS(3290), - [anon_sym___cdecl] = ACTIONS(3290), - [anon_sym___clrcall] = ACTIONS(3290), - [anon_sym___stdcall] = ACTIONS(3290), - [anon_sym___fastcall] = ACTIONS(3290), - [anon_sym___thiscall] = ACTIONS(3290), - [anon_sym___vectorcall] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_signed] = ACTIONS(3290), - [anon_sym_unsigned] = ACTIONS(3290), - [anon_sym_long] = ACTIONS(3290), - [anon_sym_short] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_static] = ACTIONS(3290), - [anon_sym_register] = ACTIONS(3290), - [anon_sym_inline] = ACTIONS(3290), - [anon_sym___inline] = ACTIONS(3290), - [anon_sym___inline__] = ACTIONS(3290), - [anon_sym___forceinline] = ACTIONS(3290), - [anon_sym_thread_local] = ACTIONS(3290), - [anon_sym___thread] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_constexpr] = ACTIONS(3290), - [anon_sym_volatile] = ACTIONS(3290), - [anon_sym_restrict] = ACTIONS(3290), - [anon_sym___restrict__] = ACTIONS(3290), - [anon_sym__Atomic] = ACTIONS(3290), - [anon_sym__Noreturn] = ACTIONS(3290), - [anon_sym_noreturn] = ACTIONS(3290), - [anon_sym_mutable] = ACTIONS(3290), - [anon_sym_constinit] = ACTIONS(3290), - [anon_sym_consteval] = ACTIONS(3290), - [sym_primitive_type] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), - [anon_sym_class] = ACTIONS(3290), - [anon_sym_struct] = ACTIONS(3290), - [anon_sym_union] = ACTIONS(3290), - [anon_sym_if] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3290), - [anon_sym_case] = ACTIONS(3290), - [anon_sym_default] = ACTIONS(3290), - [anon_sym_while] = ACTIONS(3290), - [anon_sym_do] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3290), - [anon_sym_return] = ACTIONS(3290), - [anon_sym_break] = ACTIONS(3290), - [anon_sym_continue] = ACTIONS(3290), - [anon_sym_goto] = ACTIONS(3290), - [anon_sym_not] = ACTIONS(3290), - [anon_sym_compl] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_sizeof] = ACTIONS(3290), - [anon_sym___alignof__] = ACTIONS(3290), - [anon_sym___alignof] = ACTIONS(3290), - [anon_sym__alignof] = ACTIONS(3290), - [anon_sym_alignof] = ACTIONS(3290), - [anon_sym__Alignof] = ACTIONS(3290), - [anon_sym_offsetof] = ACTIONS(3290), - [anon_sym__Generic] = ACTIONS(3290), - [anon_sym_asm] = ACTIONS(3290), - [anon_sym___asm__] = ACTIONS(3290), - [sym_number_literal] = ACTIONS(3292), - [anon_sym_L_SQUOTE] = ACTIONS(3292), - [anon_sym_u_SQUOTE] = ACTIONS(3292), - [anon_sym_U_SQUOTE] = ACTIONS(3292), - [anon_sym_u8_SQUOTE] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_L_DQUOTE] = ACTIONS(3292), - [anon_sym_u_DQUOTE] = ACTIONS(3292), - [anon_sym_U_DQUOTE] = ACTIONS(3292), - [anon_sym_u8_DQUOTE] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [sym_true] = ACTIONS(3290), - [sym_false] = ACTIONS(3290), - [anon_sym_NULL] = ACTIONS(3290), - [anon_sym_nullptr] = ACTIONS(3290), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3290), - [anon_sym_decltype] = ACTIONS(3290), - [anon_sym_virtual] = ACTIONS(3290), - [anon_sym_alignas] = ACTIONS(3290), - [anon_sym_explicit] = ACTIONS(3290), - [anon_sym_typename] = ACTIONS(3290), - [anon_sym_template] = ACTIONS(3290), - [anon_sym_operator] = ACTIONS(3290), - [anon_sym_try] = ACTIONS(3290), - [anon_sym_delete] = ACTIONS(3290), - [anon_sym_throw] = ACTIONS(3290), - [anon_sym_namespace] = ACTIONS(3290), - [anon_sym_using] = ACTIONS(3290), - [anon_sym_static_assert] = ACTIONS(3290), - [anon_sym_concept] = ACTIONS(3290), - [anon_sym_co_return] = ACTIONS(3290), - [anon_sym_co_yield] = ACTIONS(3290), - [anon_sym_R_DQUOTE] = ACTIONS(3292), - [anon_sym_LR_DQUOTE] = ACTIONS(3292), - [anon_sym_uR_DQUOTE] = ACTIONS(3292), - [anon_sym_UR_DQUOTE] = ACTIONS(3292), - [anon_sym_u8R_DQUOTE] = ACTIONS(3292), - [anon_sym_co_await] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3290), - [anon_sym_requires] = ACTIONS(3290), - [sym_this] = ACTIONS(3290), + [1430] = { + [sym__expression] = STATE(4179), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1362] = { - [sym_identifier] = ACTIONS(3308), - [aux_sym_preproc_include_token1] = ACTIONS(3308), - [aux_sym_preproc_def_token1] = ACTIONS(3308), - [aux_sym_preproc_if_token1] = ACTIONS(3308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3308), - [sym_preproc_directive] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(3310), - [anon_sym_BANG] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3310), - [anon_sym_DASH] = ACTIONS(3308), - [anon_sym_PLUS] = ACTIONS(3308), - [anon_sym_STAR] = ACTIONS(3310), - [anon_sym_AMP_AMP] = ACTIONS(3310), - [anon_sym_AMP] = ACTIONS(3308), - [anon_sym_SEMI] = ACTIONS(3310), - [anon_sym___extension__] = ACTIONS(3308), - [anon_sym_typedef] = ACTIONS(3308), - [anon_sym_extern] = ACTIONS(3308), - [anon_sym___attribute__] = ACTIONS(3308), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3310), - [anon_sym___declspec] = ACTIONS(3308), - [anon_sym___based] = ACTIONS(3308), - [anon_sym___cdecl] = ACTIONS(3308), - [anon_sym___clrcall] = ACTIONS(3308), - [anon_sym___stdcall] = ACTIONS(3308), - [anon_sym___fastcall] = ACTIONS(3308), - [anon_sym___thiscall] = ACTIONS(3308), - [anon_sym___vectorcall] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(3310), - [anon_sym_RBRACE] = ACTIONS(3310), - [anon_sym_signed] = ACTIONS(3308), - [anon_sym_unsigned] = ACTIONS(3308), - [anon_sym_long] = ACTIONS(3308), - [anon_sym_short] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3308), - [anon_sym_static] = ACTIONS(3308), - [anon_sym_register] = ACTIONS(3308), - [anon_sym_inline] = ACTIONS(3308), - [anon_sym___inline] = ACTIONS(3308), - [anon_sym___inline__] = ACTIONS(3308), - [anon_sym___forceinline] = ACTIONS(3308), - [anon_sym_thread_local] = ACTIONS(3308), - [anon_sym___thread] = ACTIONS(3308), - [anon_sym_const] = ACTIONS(3308), - [anon_sym_constexpr] = ACTIONS(3308), - [anon_sym_volatile] = ACTIONS(3308), - [anon_sym_restrict] = ACTIONS(3308), - [anon_sym___restrict__] = ACTIONS(3308), - [anon_sym__Atomic] = ACTIONS(3308), - [anon_sym__Noreturn] = ACTIONS(3308), - [anon_sym_noreturn] = ACTIONS(3308), - [anon_sym_mutable] = ACTIONS(3308), - [anon_sym_constinit] = ACTIONS(3308), - [anon_sym_consteval] = ACTIONS(3308), - [sym_primitive_type] = ACTIONS(3308), - [anon_sym_enum] = ACTIONS(3308), - [anon_sym_class] = ACTIONS(3308), - [anon_sym_struct] = ACTIONS(3308), - [anon_sym_union] = ACTIONS(3308), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_switch] = ACTIONS(3308), - [anon_sym_case] = ACTIONS(3308), - [anon_sym_default] = ACTIONS(3308), - [anon_sym_while] = ACTIONS(3308), - [anon_sym_do] = ACTIONS(3308), - [anon_sym_for] = ACTIONS(3308), - [anon_sym_return] = ACTIONS(3308), - [anon_sym_break] = ACTIONS(3308), - [anon_sym_continue] = ACTIONS(3308), - [anon_sym_goto] = ACTIONS(3308), - [anon_sym_not] = ACTIONS(3308), - [anon_sym_compl] = ACTIONS(3308), - [anon_sym_DASH_DASH] = ACTIONS(3310), - [anon_sym_PLUS_PLUS] = ACTIONS(3310), - [anon_sym_sizeof] = ACTIONS(3308), - [anon_sym___alignof__] = ACTIONS(3308), - [anon_sym___alignof] = ACTIONS(3308), - [anon_sym__alignof] = ACTIONS(3308), - [anon_sym_alignof] = ACTIONS(3308), - [anon_sym__Alignof] = ACTIONS(3308), - [anon_sym_offsetof] = ACTIONS(3308), - [anon_sym__Generic] = ACTIONS(3308), - [anon_sym_asm] = ACTIONS(3308), - [anon_sym___asm__] = ACTIONS(3308), - [sym_number_literal] = ACTIONS(3310), - [anon_sym_L_SQUOTE] = ACTIONS(3310), - [anon_sym_u_SQUOTE] = ACTIONS(3310), - [anon_sym_U_SQUOTE] = ACTIONS(3310), - [anon_sym_u8_SQUOTE] = ACTIONS(3310), - [anon_sym_SQUOTE] = ACTIONS(3310), - [anon_sym_L_DQUOTE] = ACTIONS(3310), - [anon_sym_u_DQUOTE] = ACTIONS(3310), - [anon_sym_U_DQUOTE] = ACTIONS(3310), - [anon_sym_u8_DQUOTE] = ACTIONS(3310), - [anon_sym_DQUOTE] = ACTIONS(3310), - [sym_true] = ACTIONS(3308), - [sym_false] = ACTIONS(3308), - [anon_sym_NULL] = ACTIONS(3308), - [anon_sym_nullptr] = ACTIONS(3308), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3308), - [anon_sym_decltype] = ACTIONS(3308), - [anon_sym_virtual] = ACTIONS(3308), - [anon_sym_alignas] = ACTIONS(3308), - [anon_sym_explicit] = ACTIONS(3308), - [anon_sym_typename] = ACTIONS(3308), - [anon_sym_template] = ACTIONS(3308), - [anon_sym_operator] = ACTIONS(3308), - [anon_sym_try] = ACTIONS(3308), - [anon_sym_delete] = ACTIONS(3308), - [anon_sym_throw] = ACTIONS(3308), - [anon_sym_namespace] = ACTIONS(3308), - [anon_sym_using] = ACTIONS(3308), - [anon_sym_static_assert] = ACTIONS(3308), - [anon_sym_concept] = ACTIONS(3308), - [anon_sym_co_return] = ACTIONS(3308), - [anon_sym_co_yield] = ACTIONS(3308), - [anon_sym_R_DQUOTE] = ACTIONS(3310), - [anon_sym_LR_DQUOTE] = ACTIONS(3310), - [anon_sym_uR_DQUOTE] = ACTIONS(3310), - [anon_sym_UR_DQUOTE] = ACTIONS(3310), - [anon_sym_u8R_DQUOTE] = ACTIONS(3310), - [anon_sym_co_await] = ACTIONS(3308), - [anon_sym_new] = ACTIONS(3308), - [anon_sym_requires] = ACTIONS(3308), - [sym_this] = ACTIONS(3308), + [1431] = { + [sym__expression] = STATE(4176), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1363] = { - [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_extern] = ACTIONS(3217), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3217), - [anon_sym_constinit] = ACTIONS(3217), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3217), - [anon_sym_alignas] = 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_using] = 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), + [1432] = { + [sym__expression] = STATE(4175), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1364] = { - [sym_identifier] = ACTIONS(3278), - [aux_sym_preproc_include_token1] = ACTIONS(3278), - [aux_sym_preproc_def_token1] = ACTIONS(3278), - [aux_sym_preproc_if_token1] = ACTIONS(3278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3278), - [sym_preproc_directive] = ACTIONS(3278), - [anon_sym_LPAREN2] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_AMP] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym___extension__] = ACTIONS(3278), - [anon_sym_typedef] = ACTIONS(3278), - [anon_sym_extern] = ACTIONS(3278), - [anon_sym___attribute__] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3280), - [anon_sym___declspec] = ACTIONS(3278), - [anon_sym___based] = ACTIONS(3278), - [anon_sym___cdecl] = ACTIONS(3278), - [anon_sym___clrcall] = ACTIONS(3278), - [anon_sym___stdcall] = ACTIONS(3278), - [anon_sym___fastcall] = ACTIONS(3278), - [anon_sym___thiscall] = ACTIONS(3278), - [anon_sym___vectorcall] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_signed] = ACTIONS(3278), - [anon_sym_unsigned] = ACTIONS(3278), - [anon_sym_long] = ACTIONS(3278), - [anon_sym_short] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3278), - [anon_sym_static] = ACTIONS(3278), - [anon_sym_register] = ACTIONS(3278), - [anon_sym_inline] = ACTIONS(3278), - [anon_sym___inline] = ACTIONS(3278), - [anon_sym___inline__] = ACTIONS(3278), - [anon_sym___forceinline] = ACTIONS(3278), - [anon_sym_thread_local] = ACTIONS(3278), - [anon_sym___thread] = ACTIONS(3278), - [anon_sym_const] = ACTIONS(3278), - [anon_sym_constexpr] = ACTIONS(3278), - [anon_sym_volatile] = ACTIONS(3278), - [anon_sym_restrict] = ACTIONS(3278), - [anon_sym___restrict__] = ACTIONS(3278), - [anon_sym__Atomic] = ACTIONS(3278), - [anon_sym__Noreturn] = ACTIONS(3278), - [anon_sym_noreturn] = ACTIONS(3278), - [anon_sym_mutable] = ACTIONS(3278), - [anon_sym_constinit] = ACTIONS(3278), - [anon_sym_consteval] = ACTIONS(3278), - [sym_primitive_type] = ACTIONS(3278), - [anon_sym_enum] = ACTIONS(3278), - [anon_sym_class] = ACTIONS(3278), - [anon_sym_struct] = ACTIONS(3278), - [anon_sym_union] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_switch] = ACTIONS(3278), - [anon_sym_case] = ACTIONS(3278), - [anon_sym_default] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_do] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_goto] = ACTIONS(3278), - [anon_sym_not] = ACTIONS(3278), - [anon_sym_compl] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_sizeof] = ACTIONS(3278), - [anon_sym___alignof__] = ACTIONS(3278), - [anon_sym___alignof] = ACTIONS(3278), - [anon_sym__alignof] = ACTIONS(3278), - [anon_sym_alignof] = ACTIONS(3278), - [anon_sym__Alignof] = ACTIONS(3278), - [anon_sym_offsetof] = ACTIONS(3278), - [anon_sym__Generic] = ACTIONS(3278), - [anon_sym_asm] = ACTIONS(3278), - [anon_sym___asm__] = ACTIONS(3278), - [sym_number_literal] = ACTIONS(3280), - [anon_sym_L_SQUOTE] = ACTIONS(3280), - [anon_sym_u_SQUOTE] = ACTIONS(3280), - [anon_sym_U_SQUOTE] = ACTIONS(3280), - [anon_sym_u8_SQUOTE] = ACTIONS(3280), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_L_DQUOTE] = ACTIONS(3280), - [anon_sym_u_DQUOTE] = ACTIONS(3280), - [anon_sym_U_DQUOTE] = ACTIONS(3280), - [anon_sym_u8_DQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [anon_sym_NULL] = ACTIONS(3278), - [anon_sym_nullptr] = ACTIONS(3278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3278), - [anon_sym_decltype] = ACTIONS(3278), - [anon_sym_virtual] = ACTIONS(3278), - [anon_sym_alignas] = ACTIONS(3278), - [anon_sym_explicit] = ACTIONS(3278), - [anon_sym_typename] = ACTIONS(3278), - [anon_sym_template] = ACTIONS(3278), - [anon_sym_operator] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_delete] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_namespace] = ACTIONS(3278), - [anon_sym_using] = ACTIONS(3278), - [anon_sym_static_assert] = ACTIONS(3278), - [anon_sym_concept] = ACTIONS(3278), - [anon_sym_co_return] = ACTIONS(3278), - [anon_sym_co_yield] = ACTIONS(3278), - [anon_sym_R_DQUOTE] = ACTIONS(3280), - [anon_sym_LR_DQUOTE] = ACTIONS(3280), - [anon_sym_uR_DQUOTE] = ACTIONS(3280), - [anon_sym_UR_DQUOTE] = ACTIONS(3280), - [anon_sym_u8R_DQUOTE] = ACTIONS(3280), - [anon_sym_co_await] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3278), - [anon_sym_requires] = ACTIONS(3278), - [sym_this] = ACTIONS(3278), + [1433] = { + [sym__expression] = STATE(3259), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1365] = { - [sym_identifier] = ACTIONS(3406), - [aux_sym_preproc_include_token1] = ACTIONS(3406), - [aux_sym_preproc_def_token1] = ACTIONS(3406), - [aux_sym_preproc_if_token1] = ACTIONS(3406), - [aux_sym_preproc_if_token2] = ACTIONS(3406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3406), - [sym_preproc_directive] = ACTIONS(3406), - [anon_sym_LPAREN2] = ACTIONS(3408), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_TILDE] = ACTIONS(3408), - [anon_sym_DASH] = ACTIONS(3406), - [anon_sym_PLUS] = ACTIONS(3406), - [anon_sym_STAR] = ACTIONS(3408), - [anon_sym_AMP_AMP] = ACTIONS(3408), - [anon_sym_AMP] = ACTIONS(3406), - [anon_sym_SEMI] = ACTIONS(3408), - [anon_sym___extension__] = ACTIONS(3406), - [anon_sym_typedef] = ACTIONS(3406), - [anon_sym_extern] = ACTIONS(3406), - [anon_sym___attribute__] = ACTIONS(3406), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3408), - [anon_sym___declspec] = ACTIONS(3406), - [anon_sym___based] = ACTIONS(3406), - [anon_sym___cdecl] = ACTIONS(3406), - [anon_sym___clrcall] = ACTIONS(3406), - [anon_sym___stdcall] = ACTIONS(3406), - [anon_sym___fastcall] = ACTIONS(3406), - [anon_sym___thiscall] = ACTIONS(3406), - [anon_sym___vectorcall] = ACTIONS(3406), - [anon_sym_LBRACE] = ACTIONS(3408), - [anon_sym_signed] = ACTIONS(3406), - [anon_sym_unsigned] = ACTIONS(3406), - [anon_sym_long] = ACTIONS(3406), - [anon_sym_short] = ACTIONS(3406), - [anon_sym_LBRACK] = ACTIONS(3406), - [anon_sym_static] = ACTIONS(3406), - [anon_sym_register] = ACTIONS(3406), - [anon_sym_inline] = ACTIONS(3406), - [anon_sym___inline] = ACTIONS(3406), - [anon_sym___inline__] = ACTIONS(3406), - [anon_sym___forceinline] = ACTIONS(3406), - [anon_sym_thread_local] = ACTIONS(3406), - [anon_sym___thread] = ACTIONS(3406), - [anon_sym_const] = ACTIONS(3406), - [anon_sym_constexpr] = ACTIONS(3406), - [anon_sym_volatile] = ACTIONS(3406), - [anon_sym_restrict] = ACTIONS(3406), - [anon_sym___restrict__] = ACTIONS(3406), - [anon_sym__Atomic] = ACTIONS(3406), - [anon_sym__Noreturn] = ACTIONS(3406), - [anon_sym_noreturn] = ACTIONS(3406), - [anon_sym_mutable] = ACTIONS(3406), - [anon_sym_constinit] = ACTIONS(3406), - [anon_sym_consteval] = ACTIONS(3406), - [sym_primitive_type] = ACTIONS(3406), - [anon_sym_enum] = ACTIONS(3406), - [anon_sym_class] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3406), - [anon_sym_union] = ACTIONS(3406), - [anon_sym_if] = ACTIONS(3406), - [anon_sym_switch] = ACTIONS(3406), - [anon_sym_case] = ACTIONS(3406), - [anon_sym_default] = ACTIONS(3406), - [anon_sym_while] = ACTIONS(3406), - [anon_sym_do] = ACTIONS(3406), - [anon_sym_for] = ACTIONS(3406), - [anon_sym_return] = ACTIONS(3406), - [anon_sym_break] = ACTIONS(3406), - [anon_sym_continue] = ACTIONS(3406), - [anon_sym_goto] = ACTIONS(3406), - [anon_sym_not] = ACTIONS(3406), - [anon_sym_compl] = ACTIONS(3406), - [anon_sym_DASH_DASH] = ACTIONS(3408), - [anon_sym_PLUS_PLUS] = ACTIONS(3408), - [anon_sym_sizeof] = ACTIONS(3406), - [anon_sym___alignof__] = ACTIONS(3406), - [anon_sym___alignof] = ACTIONS(3406), - [anon_sym__alignof] = ACTIONS(3406), - [anon_sym_alignof] = ACTIONS(3406), - [anon_sym__Alignof] = ACTIONS(3406), - [anon_sym_offsetof] = ACTIONS(3406), - [anon_sym__Generic] = ACTIONS(3406), - [anon_sym_asm] = ACTIONS(3406), - [anon_sym___asm__] = ACTIONS(3406), - [sym_number_literal] = ACTIONS(3408), - [anon_sym_L_SQUOTE] = ACTIONS(3408), - [anon_sym_u_SQUOTE] = ACTIONS(3408), - [anon_sym_U_SQUOTE] = ACTIONS(3408), - [anon_sym_u8_SQUOTE] = ACTIONS(3408), - [anon_sym_SQUOTE] = ACTIONS(3408), - [anon_sym_L_DQUOTE] = ACTIONS(3408), - [anon_sym_u_DQUOTE] = ACTIONS(3408), - [anon_sym_U_DQUOTE] = ACTIONS(3408), - [anon_sym_u8_DQUOTE] = ACTIONS(3408), - [anon_sym_DQUOTE] = ACTIONS(3408), - [sym_true] = ACTIONS(3406), - [sym_false] = ACTIONS(3406), - [anon_sym_NULL] = ACTIONS(3406), - [anon_sym_nullptr] = ACTIONS(3406), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3406), - [anon_sym_decltype] = ACTIONS(3406), - [anon_sym_virtual] = ACTIONS(3406), - [anon_sym_alignas] = ACTIONS(3406), - [anon_sym_explicit] = ACTIONS(3406), - [anon_sym_typename] = ACTIONS(3406), - [anon_sym_template] = ACTIONS(3406), - [anon_sym_operator] = ACTIONS(3406), - [anon_sym_try] = ACTIONS(3406), - [anon_sym_delete] = ACTIONS(3406), - [anon_sym_throw] = ACTIONS(3406), - [anon_sym_namespace] = ACTIONS(3406), - [anon_sym_using] = ACTIONS(3406), - [anon_sym_static_assert] = ACTIONS(3406), - [anon_sym_concept] = ACTIONS(3406), - [anon_sym_co_return] = ACTIONS(3406), - [anon_sym_co_yield] = ACTIONS(3406), - [anon_sym_R_DQUOTE] = ACTIONS(3408), - [anon_sym_LR_DQUOTE] = ACTIONS(3408), - [anon_sym_uR_DQUOTE] = ACTIONS(3408), - [anon_sym_UR_DQUOTE] = ACTIONS(3408), - [anon_sym_u8R_DQUOTE] = ACTIONS(3408), - [anon_sym_co_await] = ACTIONS(3406), - [anon_sym_new] = ACTIONS(3406), - [anon_sym_requires] = ACTIONS(3406), - [sym_this] = ACTIONS(3406), + [1434] = { + [sym__expression] = STATE(4268), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1366] = { - [sym_identifier] = ACTIONS(3274), - [aux_sym_preproc_include_token1] = ACTIONS(3274), - [aux_sym_preproc_def_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token1] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), - [sym_preproc_directive] = ACTIONS(3274), - [anon_sym_LPAREN2] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_AMP] = ACTIONS(3274), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym___extension__] = ACTIONS(3274), - [anon_sym_typedef] = ACTIONS(3274), - [anon_sym_extern] = ACTIONS(3274), - [anon_sym___attribute__] = ACTIONS(3274), - [anon_sym_COLON_COLON] = ACTIONS(3276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), - [anon_sym___declspec] = ACTIONS(3274), - [anon_sym___based] = ACTIONS(3274), - [anon_sym___cdecl] = ACTIONS(3274), - [anon_sym___clrcall] = ACTIONS(3274), - [anon_sym___stdcall] = ACTIONS(3274), - [anon_sym___fastcall] = ACTIONS(3274), - [anon_sym___thiscall] = ACTIONS(3274), - [anon_sym___vectorcall] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_RBRACE] = ACTIONS(3276), - [anon_sym_signed] = ACTIONS(3274), - [anon_sym_unsigned] = ACTIONS(3274), - [anon_sym_long] = ACTIONS(3274), - [anon_sym_short] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_register] = ACTIONS(3274), - [anon_sym_inline] = ACTIONS(3274), - [anon_sym___inline] = ACTIONS(3274), - [anon_sym___inline__] = ACTIONS(3274), - [anon_sym___forceinline] = ACTIONS(3274), - [anon_sym_thread_local] = ACTIONS(3274), - [anon_sym___thread] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_constexpr] = ACTIONS(3274), - [anon_sym_volatile] = ACTIONS(3274), - [anon_sym_restrict] = ACTIONS(3274), - [anon_sym___restrict__] = ACTIONS(3274), - [anon_sym__Atomic] = ACTIONS(3274), - [anon_sym__Noreturn] = ACTIONS(3274), - [anon_sym_noreturn] = ACTIONS(3274), - [anon_sym_mutable] = ACTIONS(3274), - [anon_sym_constinit] = ACTIONS(3274), - [anon_sym_consteval] = ACTIONS(3274), - [sym_primitive_type] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_union] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_case] = ACTIONS(3274), - [anon_sym_default] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_goto] = ACTIONS(3274), - [anon_sym_not] = ACTIONS(3274), - [anon_sym_compl] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_sizeof] = ACTIONS(3274), - [anon_sym___alignof__] = ACTIONS(3274), - [anon_sym___alignof] = ACTIONS(3274), - [anon_sym__alignof] = ACTIONS(3274), - [anon_sym_alignof] = ACTIONS(3274), - [anon_sym__Alignof] = ACTIONS(3274), - [anon_sym_offsetof] = ACTIONS(3274), - [anon_sym__Generic] = ACTIONS(3274), - [anon_sym_asm] = ACTIONS(3274), - [anon_sym___asm__] = ACTIONS(3274), - [sym_number_literal] = ACTIONS(3276), - [anon_sym_L_SQUOTE] = ACTIONS(3276), - [anon_sym_u_SQUOTE] = ACTIONS(3276), - [anon_sym_U_SQUOTE] = ACTIONS(3276), - [anon_sym_u8_SQUOTE] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3276), - [anon_sym_L_DQUOTE] = ACTIONS(3276), - [anon_sym_u_DQUOTE] = ACTIONS(3276), - [anon_sym_U_DQUOTE] = ACTIONS(3276), - [anon_sym_u8_DQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [anon_sym_NULL] = ACTIONS(3274), - [anon_sym_nullptr] = ACTIONS(3274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3274), - [anon_sym_decltype] = ACTIONS(3274), - [anon_sym_virtual] = ACTIONS(3274), - [anon_sym_alignas] = ACTIONS(3274), - [anon_sym_explicit] = ACTIONS(3274), - [anon_sym_typename] = ACTIONS(3274), - [anon_sym_template] = ACTIONS(3274), - [anon_sym_operator] = ACTIONS(3274), - [anon_sym_try] = ACTIONS(3274), - [anon_sym_delete] = ACTIONS(3274), - [anon_sym_throw] = ACTIONS(3274), - [anon_sym_namespace] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_static_assert] = ACTIONS(3274), - [anon_sym_concept] = ACTIONS(3274), - [anon_sym_co_return] = ACTIONS(3274), - [anon_sym_co_yield] = ACTIONS(3274), - [anon_sym_R_DQUOTE] = ACTIONS(3276), - [anon_sym_LR_DQUOTE] = ACTIONS(3276), - [anon_sym_uR_DQUOTE] = ACTIONS(3276), - [anon_sym_UR_DQUOTE] = ACTIONS(3276), - [anon_sym_u8R_DQUOTE] = ACTIONS(3276), - [anon_sym_co_await] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3274), - [anon_sym_requires] = ACTIONS(3274), - [sym_this] = ACTIONS(3274), + [1435] = { + [sym__expression] = STATE(4166), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1367] = { - [sym_identifier] = ACTIONS(3270), - [aux_sym_preproc_include_token1] = ACTIONS(3270), - [aux_sym_preproc_def_token1] = ACTIONS(3270), - [aux_sym_preproc_if_token1] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3270), - [sym_preproc_directive] = ACTIONS(3270), - [anon_sym_LPAREN2] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_AMP] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym_typedef] = ACTIONS(3270), - [anon_sym_extern] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3272), - [anon_sym___declspec] = ACTIONS(3270), - [anon_sym___based] = ACTIONS(3270), - [anon_sym___cdecl] = ACTIONS(3270), - [anon_sym___clrcall] = ACTIONS(3270), - [anon_sym___stdcall] = ACTIONS(3270), - [anon_sym___fastcall] = ACTIONS(3270), - [anon_sym___thiscall] = ACTIONS(3270), - [anon_sym___vectorcall] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_signed] = ACTIONS(3270), - [anon_sym_unsigned] = ACTIONS(3270), - [anon_sym_long] = ACTIONS(3270), - [anon_sym_short] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_register] = ACTIONS(3270), - [anon_sym_inline] = ACTIONS(3270), - [anon_sym___inline] = ACTIONS(3270), - [anon_sym___inline__] = ACTIONS(3270), - [anon_sym___forceinline] = ACTIONS(3270), - [anon_sym_thread_local] = ACTIONS(3270), - [anon_sym___thread] = ACTIONS(3270), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [sym_primitive_type] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3270), - [anon_sym_struct] = ACTIONS(3270), - [anon_sym_union] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_switch] = ACTIONS(3270), - [anon_sym_case] = ACTIONS(3270), - [anon_sym_default] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_do] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_goto] = ACTIONS(3270), - [anon_sym_not] = ACTIONS(3270), - [anon_sym_compl] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_sizeof] = ACTIONS(3270), - [anon_sym___alignof__] = ACTIONS(3270), - [anon_sym___alignof] = ACTIONS(3270), - [anon_sym__alignof] = ACTIONS(3270), - [anon_sym_alignof] = ACTIONS(3270), - [anon_sym__Alignof] = ACTIONS(3270), - [anon_sym_offsetof] = ACTIONS(3270), - [anon_sym__Generic] = ACTIONS(3270), - [anon_sym_asm] = ACTIONS(3270), - [anon_sym___asm__] = ACTIONS(3270), - [sym_number_literal] = ACTIONS(3272), - [anon_sym_L_SQUOTE] = ACTIONS(3272), - [anon_sym_u_SQUOTE] = ACTIONS(3272), - [anon_sym_U_SQUOTE] = ACTIONS(3272), - [anon_sym_u8_SQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_L_DQUOTE] = ACTIONS(3272), - [anon_sym_u_DQUOTE] = ACTIONS(3272), - [anon_sym_U_DQUOTE] = ACTIONS(3272), - [anon_sym_u8_DQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [anon_sym_NULL] = ACTIONS(3270), - [anon_sym_nullptr] = ACTIONS(3270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3270), - [anon_sym_decltype] = ACTIONS(3270), - [anon_sym_virtual] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3270), - [anon_sym_explicit] = ACTIONS(3270), - [anon_sym_typename] = ACTIONS(3270), - [anon_sym_template] = ACTIONS(3270), - [anon_sym_operator] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_delete] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_namespace] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3270), - [anon_sym_static_assert] = ACTIONS(3270), - [anon_sym_concept] = ACTIONS(3270), - [anon_sym_co_return] = ACTIONS(3270), - [anon_sym_co_yield] = ACTIONS(3270), - [anon_sym_R_DQUOTE] = ACTIONS(3272), - [anon_sym_LR_DQUOTE] = ACTIONS(3272), - [anon_sym_uR_DQUOTE] = ACTIONS(3272), - [anon_sym_UR_DQUOTE] = ACTIONS(3272), - [anon_sym_u8R_DQUOTE] = ACTIONS(3272), - [anon_sym_co_await] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3270), - [anon_sym_requires] = ACTIONS(3270), - [sym_this] = ACTIONS(3270), + [1436] = { + [sym__expression] = STATE(4165), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1368] = { - [sym_identifier] = ACTIONS(3263), - [aux_sym_preproc_include_token1] = ACTIONS(3263), - [aux_sym_preproc_def_token1] = ACTIONS(3263), - [aux_sym_preproc_if_token1] = ACTIONS(3263), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3263), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3263), - [sym_preproc_directive] = ACTIONS(3263), - [anon_sym_LPAREN2] = ACTIONS(3265), - [anon_sym_BANG] = ACTIONS(3265), - [anon_sym_TILDE] = ACTIONS(3265), - [anon_sym_DASH] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(3263), - [anon_sym_STAR] = ACTIONS(3265), - [anon_sym_AMP_AMP] = ACTIONS(3265), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_SEMI] = ACTIONS(3265), - [anon_sym___extension__] = ACTIONS(3263), - [anon_sym_typedef] = ACTIONS(3263), - [anon_sym_extern] = ACTIONS(3263), - [anon_sym___attribute__] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(3265), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3265), - [anon_sym___declspec] = ACTIONS(3263), - [anon_sym___based] = ACTIONS(3263), - [anon_sym___cdecl] = ACTIONS(3263), - [anon_sym___clrcall] = ACTIONS(3263), - [anon_sym___stdcall] = ACTIONS(3263), - [anon_sym___fastcall] = ACTIONS(3263), - [anon_sym___thiscall] = ACTIONS(3263), - [anon_sym___vectorcall] = ACTIONS(3263), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_RBRACE] = ACTIONS(3265), - [anon_sym_signed] = ACTIONS(3263), - [anon_sym_unsigned] = ACTIONS(3263), - [anon_sym_long] = ACTIONS(3263), - [anon_sym_short] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3263), - [anon_sym_static] = ACTIONS(3263), - [anon_sym_register] = ACTIONS(3263), - [anon_sym_inline] = ACTIONS(3263), - [anon_sym___inline] = ACTIONS(3263), - [anon_sym___inline__] = ACTIONS(3263), - [anon_sym___forceinline] = ACTIONS(3263), - [anon_sym_thread_local] = ACTIONS(3263), - [anon_sym___thread] = ACTIONS(3263), - [anon_sym_const] = ACTIONS(3263), - [anon_sym_constexpr] = ACTIONS(3263), - [anon_sym_volatile] = ACTIONS(3263), - [anon_sym_restrict] = ACTIONS(3263), - [anon_sym___restrict__] = ACTIONS(3263), - [anon_sym__Atomic] = ACTIONS(3263), - [anon_sym__Noreturn] = ACTIONS(3263), - [anon_sym_noreturn] = ACTIONS(3263), - [anon_sym_mutable] = ACTIONS(3263), - [anon_sym_constinit] = ACTIONS(3263), - [anon_sym_consteval] = ACTIONS(3263), - [sym_primitive_type] = ACTIONS(3263), - [anon_sym_enum] = ACTIONS(3263), - [anon_sym_class] = ACTIONS(3263), - [anon_sym_struct] = ACTIONS(3263), - [anon_sym_union] = ACTIONS(3263), - [anon_sym_if] = ACTIONS(3263), - [anon_sym_switch] = ACTIONS(3263), - [anon_sym_case] = ACTIONS(3263), - [anon_sym_default] = ACTIONS(3263), - [anon_sym_while] = ACTIONS(3263), - [anon_sym_do] = ACTIONS(3263), - [anon_sym_for] = ACTIONS(3263), - [anon_sym_return] = ACTIONS(3263), - [anon_sym_break] = ACTIONS(3263), - [anon_sym_continue] = ACTIONS(3263), - [anon_sym_goto] = ACTIONS(3263), - [anon_sym_not] = ACTIONS(3263), - [anon_sym_compl] = ACTIONS(3263), - [anon_sym_DASH_DASH] = ACTIONS(3265), - [anon_sym_PLUS_PLUS] = ACTIONS(3265), - [anon_sym_sizeof] = ACTIONS(3263), - [anon_sym___alignof__] = ACTIONS(3263), - [anon_sym___alignof] = ACTIONS(3263), - [anon_sym__alignof] = ACTIONS(3263), - [anon_sym_alignof] = ACTIONS(3263), - [anon_sym__Alignof] = ACTIONS(3263), - [anon_sym_offsetof] = ACTIONS(3263), - [anon_sym__Generic] = ACTIONS(3263), - [anon_sym_asm] = ACTIONS(3263), - [anon_sym___asm__] = ACTIONS(3263), - [sym_number_literal] = ACTIONS(3265), - [anon_sym_L_SQUOTE] = ACTIONS(3265), - [anon_sym_u_SQUOTE] = ACTIONS(3265), - [anon_sym_U_SQUOTE] = ACTIONS(3265), - [anon_sym_u8_SQUOTE] = ACTIONS(3265), - [anon_sym_SQUOTE] = ACTIONS(3265), - [anon_sym_L_DQUOTE] = ACTIONS(3265), - [anon_sym_u_DQUOTE] = ACTIONS(3265), - [anon_sym_U_DQUOTE] = ACTIONS(3265), - [anon_sym_u8_DQUOTE] = ACTIONS(3265), - [anon_sym_DQUOTE] = ACTIONS(3265), - [sym_true] = ACTIONS(3263), - [sym_false] = ACTIONS(3263), - [anon_sym_NULL] = ACTIONS(3263), - [anon_sym_nullptr] = ACTIONS(3263), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3263), - [anon_sym_decltype] = ACTIONS(3263), - [anon_sym_virtual] = ACTIONS(3263), - [anon_sym_alignas] = ACTIONS(3263), - [anon_sym_explicit] = ACTIONS(3263), - [anon_sym_typename] = ACTIONS(3263), - [anon_sym_template] = ACTIONS(3263), - [anon_sym_operator] = ACTIONS(3263), - [anon_sym_try] = ACTIONS(3263), - [anon_sym_delete] = ACTIONS(3263), - [anon_sym_throw] = ACTIONS(3263), - [anon_sym_namespace] = ACTIONS(3263), - [anon_sym_using] = ACTIONS(3263), - [anon_sym_static_assert] = ACTIONS(3263), - [anon_sym_concept] = ACTIONS(3263), - [anon_sym_co_return] = ACTIONS(3263), - [anon_sym_co_yield] = ACTIONS(3263), - [anon_sym_R_DQUOTE] = ACTIONS(3265), - [anon_sym_LR_DQUOTE] = ACTIONS(3265), - [anon_sym_uR_DQUOTE] = ACTIONS(3265), - [anon_sym_UR_DQUOTE] = ACTIONS(3265), - [anon_sym_u8R_DQUOTE] = ACTIONS(3265), - [anon_sym_co_await] = ACTIONS(3263), - [anon_sym_new] = ACTIONS(3263), - [anon_sym_requires] = ACTIONS(3263), - [sym_this] = ACTIONS(3263), + [1437] = { + [sym__expression] = STATE(4164), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1369] = { - [sym_identifier] = ACTIONS(3422), - [aux_sym_preproc_include_token1] = ACTIONS(3422), - [aux_sym_preproc_def_token1] = ACTIONS(3422), - [aux_sym_preproc_if_token1] = ACTIONS(3422), - [aux_sym_preproc_if_token2] = ACTIONS(3422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3422), - [sym_preproc_directive] = ACTIONS(3422), - [anon_sym_LPAREN2] = ACTIONS(3424), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3424), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_STAR] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym___extension__] = ACTIONS(3422), - [anon_sym_typedef] = ACTIONS(3422), - [anon_sym_extern] = ACTIONS(3422), - [anon_sym___attribute__] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3424), - [anon_sym___declspec] = ACTIONS(3422), - [anon_sym___based] = ACTIONS(3422), - [anon_sym___cdecl] = ACTIONS(3422), - [anon_sym___clrcall] = ACTIONS(3422), - [anon_sym___stdcall] = ACTIONS(3422), - [anon_sym___fastcall] = ACTIONS(3422), - [anon_sym___thiscall] = ACTIONS(3422), - [anon_sym___vectorcall] = ACTIONS(3422), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_signed] = ACTIONS(3422), - [anon_sym_unsigned] = ACTIONS(3422), - [anon_sym_long] = ACTIONS(3422), - [anon_sym_short] = ACTIONS(3422), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_static] = ACTIONS(3422), - [anon_sym_register] = ACTIONS(3422), - [anon_sym_inline] = ACTIONS(3422), - [anon_sym___inline] = ACTIONS(3422), - [anon_sym___inline__] = ACTIONS(3422), - [anon_sym___forceinline] = ACTIONS(3422), - [anon_sym_thread_local] = ACTIONS(3422), - [anon_sym___thread] = ACTIONS(3422), - [anon_sym_const] = ACTIONS(3422), - [anon_sym_constexpr] = ACTIONS(3422), - [anon_sym_volatile] = ACTIONS(3422), - [anon_sym_restrict] = ACTIONS(3422), - [anon_sym___restrict__] = ACTIONS(3422), - [anon_sym__Atomic] = ACTIONS(3422), - [anon_sym__Noreturn] = ACTIONS(3422), - [anon_sym_noreturn] = ACTIONS(3422), - [anon_sym_mutable] = ACTIONS(3422), - [anon_sym_constinit] = ACTIONS(3422), - [anon_sym_consteval] = ACTIONS(3422), - [sym_primitive_type] = ACTIONS(3422), - [anon_sym_enum] = ACTIONS(3422), - [anon_sym_class] = ACTIONS(3422), - [anon_sym_struct] = ACTIONS(3422), - [anon_sym_union] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3422), - [anon_sym_switch] = ACTIONS(3422), - [anon_sym_case] = ACTIONS(3422), - [anon_sym_default] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_do] = ACTIONS(3422), - [anon_sym_for] = ACTIONS(3422), - [anon_sym_return] = ACTIONS(3422), - [anon_sym_break] = ACTIONS(3422), - [anon_sym_continue] = ACTIONS(3422), - [anon_sym_goto] = ACTIONS(3422), - [anon_sym_not] = ACTIONS(3422), - [anon_sym_compl] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3422), - [anon_sym___alignof__] = ACTIONS(3422), - [anon_sym___alignof] = ACTIONS(3422), - [anon_sym__alignof] = ACTIONS(3422), - [anon_sym_alignof] = ACTIONS(3422), - [anon_sym__Alignof] = ACTIONS(3422), - [anon_sym_offsetof] = ACTIONS(3422), - [anon_sym__Generic] = ACTIONS(3422), - [anon_sym_asm] = ACTIONS(3422), - [anon_sym___asm__] = ACTIONS(3422), - [sym_number_literal] = ACTIONS(3424), - [anon_sym_L_SQUOTE] = ACTIONS(3424), - [anon_sym_u_SQUOTE] = ACTIONS(3424), - [anon_sym_U_SQUOTE] = ACTIONS(3424), - [anon_sym_u8_SQUOTE] = ACTIONS(3424), - [anon_sym_SQUOTE] = ACTIONS(3424), - [anon_sym_L_DQUOTE] = ACTIONS(3424), - [anon_sym_u_DQUOTE] = ACTIONS(3424), - [anon_sym_U_DQUOTE] = ACTIONS(3424), - [anon_sym_u8_DQUOTE] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [sym_true] = ACTIONS(3422), - [sym_false] = ACTIONS(3422), - [anon_sym_NULL] = ACTIONS(3422), - [anon_sym_nullptr] = ACTIONS(3422), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3422), - [anon_sym_decltype] = ACTIONS(3422), - [anon_sym_virtual] = ACTIONS(3422), - [anon_sym_alignas] = ACTIONS(3422), - [anon_sym_explicit] = ACTIONS(3422), - [anon_sym_typename] = ACTIONS(3422), - [anon_sym_template] = ACTIONS(3422), - [anon_sym_operator] = ACTIONS(3422), - [anon_sym_try] = ACTIONS(3422), - [anon_sym_delete] = ACTIONS(3422), - [anon_sym_throw] = ACTIONS(3422), - [anon_sym_namespace] = ACTIONS(3422), - [anon_sym_using] = ACTIONS(3422), - [anon_sym_static_assert] = ACTIONS(3422), - [anon_sym_concept] = ACTIONS(3422), - [anon_sym_co_return] = ACTIONS(3422), - [anon_sym_co_yield] = ACTIONS(3422), - [anon_sym_R_DQUOTE] = ACTIONS(3424), - [anon_sym_LR_DQUOTE] = ACTIONS(3424), - [anon_sym_uR_DQUOTE] = ACTIONS(3424), - [anon_sym_UR_DQUOTE] = ACTIONS(3424), - [anon_sym_u8R_DQUOTE] = ACTIONS(3424), - [anon_sym_co_await] = ACTIONS(3422), - [anon_sym_new] = ACTIONS(3422), - [anon_sym_requires] = ACTIONS(3422), - [sym_this] = ACTIONS(3422), + [1438] = { + [sym__expression] = STATE(4147), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1370] = { - [sym_identifier] = ACTIONS(3259), - [aux_sym_preproc_include_token1] = ACTIONS(3259), - [aux_sym_preproc_def_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3259), - [sym_preproc_directive] = ACTIONS(3259), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(3261), - [anon_sym_TILDE] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3261), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_SEMI] = ACTIONS(3261), - [anon_sym___extension__] = ACTIONS(3259), - [anon_sym_typedef] = ACTIONS(3259), - [anon_sym_extern] = ACTIONS(3259), - [anon_sym___attribute__] = ACTIONS(3259), - [anon_sym_COLON_COLON] = ACTIONS(3261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3261), - [anon_sym___declspec] = ACTIONS(3259), - [anon_sym___based] = ACTIONS(3259), - [anon_sym___cdecl] = ACTIONS(3259), - [anon_sym___clrcall] = ACTIONS(3259), - [anon_sym___stdcall] = ACTIONS(3259), - [anon_sym___fastcall] = ACTIONS(3259), - [anon_sym___thiscall] = ACTIONS(3259), - [anon_sym___vectorcall] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3261), - [anon_sym_RBRACE] = ACTIONS(3261), - [anon_sym_signed] = ACTIONS(3259), - [anon_sym_unsigned] = ACTIONS(3259), - [anon_sym_long] = ACTIONS(3259), - [anon_sym_short] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_static] = ACTIONS(3259), - [anon_sym_register] = ACTIONS(3259), - [anon_sym_inline] = ACTIONS(3259), - [anon_sym___inline] = ACTIONS(3259), - [anon_sym___inline__] = ACTIONS(3259), - [anon_sym___forceinline] = ACTIONS(3259), - [anon_sym_thread_local] = ACTIONS(3259), - [anon_sym___thread] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_constexpr] = ACTIONS(3259), - [anon_sym_volatile] = ACTIONS(3259), - [anon_sym_restrict] = ACTIONS(3259), - [anon_sym___restrict__] = ACTIONS(3259), - [anon_sym__Atomic] = ACTIONS(3259), - [anon_sym__Noreturn] = ACTIONS(3259), - [anon_sym_noreturn] = ACTIONS(3259), - [anon_sym_mutable] = ACTIONS(3259), - [anon_sym_constinit] = ACTIONS(3259), - [anon_sym_consteval] = ACTIONS(3259), - [sym_primitive_type] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), - [anon_sym_class] = ACTIONS(3259), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_union] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_switch] = ACTIONS(3259), - [anon_sym_case] = ACTIONS(3259), - [anon_sym_default] = ACTIONS(3259), - [anon_sym_while] = ACTIONS(3259), - [anon_sym_do] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_goto] = ACTIONS(3259), - [anon_sym_not] = ACTIONS(3259), - [anon_sym_compl] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3261), - [anon_sym_PLUS_PLUS] = ACTIONS(3261), - [anon_sym_sizeof] = ACTIONS(3259), - [anon_sym___alignof__] = ACTIONS(3259), - [anon_sym___alignof] = ACTIONS(3259), - [anon_sym__alignof] = ACTIONS(3259), - [anon_sym_alignof] = ACTIONS(3259), - [anon_sym__Alignof] = ACTIONS(3259), - [anon_sym_offsetof] = ACTIONS(3259), - [anon_sym__Generic] = ACTIONS(3259), - [anon_sym_asm] = ACTIONS(3259), - [anon_sym___asm__] = ACTIONS(3259), - [sym_number_literal] = ACTIONS(3261), - [anon_sym_L_SQUOTE] = ACTIONS(3261), - [anon_sym_u_SQUOTE] = ACTIONS(3261), - [anon_sym_U_SQUOTE] = ACTIONS(3261), - [anon_sym_u8_SQUOTE] = ACTIONS(3261), - [anon_sym_SQUOTE] = ACTIONS(3261), - [anon_sym_L_DQUOTE] = ACTIONS(3261), - [anon_sym_u_DQUOTE] = ACTIONS(3261), - [anon_sym_U_DQUOTE] = ACTIONS(3261), - [anon_sym_u8_DQUOTE] = ACTIONS(3261), - [anon_sym_DQUOTE] = ACTIONS(3261), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [anon_sym_NULL] = ACTIONS(3259), - [anon_sym_nullptr] = ACTIONS(3259), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3259), - [anon_sym_decltype] = ACTIONS(3259), - [anon_sym_virtual] = ACTIONS(3259), - [anon_sym_alignas] = ACTIONS(3259), - [anon_sym_explicit] = ACTIONS(3259), - [anon_sym_typename] = ACTIONS(3259), - [anon_sym_template] = ACTIONS(3259), - [anon_sym_operator] = ACTIONS(3259), - [anon_sym_try] = ACTIONS(3259), - [anon_sym_delete] = ACTIONS(3259), - [anon_sym_throw] = ACTIONS(3259), - [anon_sym_namespace] = ACTIONS(3259), - [anon_sym_using] = ACTIONS(3259), - [anon_sym_static_assert] = ACTIONS(3259), - [anon_sym_concept] = ACTIONS(3259), - [anon_sym_co_return] = ACTIONS(3259), - [anon_sym_co_yield] = ACTIONS(3259), - [anon_sym_R_DQUOTE] = ACTIONS(3261), - [anon_sym_LR_DQUOTE] = ACTIONS(3261), - [anon_sym_uR_DQUOTE] = ACTIONS(3261), - [anon_sym_UR_DQUOTE] = ACTIONS(3261), - [anon_sym_u8R_DQUOTE] = ACTIONS(3261), - [anon_sym_co_await] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3259), - [anon_sym_requires] = ACTIONS(3259), - [sym_this] = ACTIONS(3259), + [1439] = { + [sym__expression] = STATE(2906), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(4493), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, - [1371] = { - [sym_identifier] = ACTIONS(3255), - [aux_sym_preproc_include_token1] = ACTIONS(3255), - [aux_sym_preproc_def_token1] = ACTIONS(3255), - [aux_sym_preproc_if_token1] = ACTIONS(3255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3255), - [sym_preproc_directive] = ACTIONS(3255), - [anon_sym_LPAREN2] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3257), - [anon_sym_AMP_AMP] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3257), - [anon_sym___extension__] = ACTIONS(3255), - [anon_sym_typedef] = ACTIONS(3255), - [anon_sym_extern] = ACTIONS(3255), - [anon_sym___attribute__] = ACTIONS(3255), - [anon_sym_COLON_COLON] = ACTIONS(3257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3257), - [anon_sym___declspec] = ACTIONS(3255), - [anon_sym___based] = ACTIONS(3255), - [anon_sym___cdecl] = ACTIONS(3255), - [anon_sym___clrcall] = ACTIONS(3255), - [anon_sym___stdcall] = ACTIONS(3255), - [anon_sym___fastcall] = ACTIONS(3255), - [anon_sym___thiscall] = ACTIONS(3255), - [anon_sym___vectorcall] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_RBRACE] = ACTIONS(3257), - [anon_sym_signed] = ACTIONS(3255), - [anon_sym_unsigned] = ACTIONS(3255), - [anon_sym_long] = ACTIONS(3255), - [anon_sym_short] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_register] = ACTIONS(3255), - [anon_sym_inline] = ACTIONS(3255), - [anon_sym___inline] = ACTIONS(3255), - [anon_sym___inline__] = ACTIONS(3255), - [anon_sym___forceinline] = ACTIONS(3255), - [anon_sym_thread_local] = ACTIONS(3255), - [anon_sym___thread] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_constexpr] = ACTIONS(3255), - [anon_sym_volatile] = ACTIONS(3255), - [anon_sym_restrict] = ACTIONS(3255), - [anon_sym___restrict__] = ACTIONS(3255), - [anon_sym__Atomic] = ACTIONS(3255), - [anon_sym__Noreturn] = ACTIONS(3255), - [anon_sym_noreturn] = ACTIONS(3255), - [anon_sym_mutable] = ACTIONS(3255), - [anon_sym_constinit] = ACTIONS(3255), - [anon_sym_consteval] = ACTIONS(3255), - [sym_primitive_type] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_struct] = ACTIONS(3255), - [anon_sym_union] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_goto] = ACTIONS(3255), - [anon_sym_not] = ACTIONS(3255), - [anon_sym_compl] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_sizeof] = ACTIONS(3255), - [anon_sym___alignof__] = ACTIONS(3255), - [anon_sym___alignof] = ACTIONS(3255), - [anon_sym__alignof] = ACTIONS(3255), - [anon_sym_alignof] = ACTIONS(3255), - [anon_sym__Alignof] = ACTIONS(3255), - [anon_sym_offsetof] = ACTIONS(3255), - [anon_sym__Generic] = ACTIONS(3255), - [anon_sym_asm] = ACTIONS(3255), - [anon_sym___asm__] = ACTIONS(3255), - [sym_number_literal] = ACTIONS(3257), - [anon_sym_L_SQUOTE] = ACTIONS(3257), - [anon_sym_u_SQUOTE] = ACTIONS(3257), - [anon_sym_U_SQUOTE] = ACTIONS(3257), - [anon_sym_u8_SQUOTE] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3257), - [anon_sym_L_DQUOTE] = ACTIONS(3257), - [anon_sym_u_DQUOTE] = ACTIONS(3257), - [anon_sym_U_DQUOTE] = ACTIONS(3257), - [anon_sym_u8_DQUOTE] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3257), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [anon_sym_NULL] = ACTIONS(3255), - [anon_sym_nullptr] = ACTIONS(3255), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3255), - [anon_sym_decltype] = ACTIONS(3255), - [anon_sym_virtual] = ACTIONS(3255), - [anon_sym_alignas] = ACTIONS(3255), - [anon_sym_explicit] = ACTIONS(3255), - [anon_sym_typename] = ACTIONS(3255), - [anon_sym_template] = ACTIONS(3255), - [anon_sym_operator] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_static_assert] = ACTIONS(3255), - [anon_sym_concept] = ACTIONS(3255), - [anon_sym_co_return] = ACTIONS(3255), - [anon_sym_co_yield] = ACTIONS(3255), - [anon_sym_R_DQUOTE] = ACTIONS(3257), - [anon_sym_LR_DQUOTE] = ACTIONS(3257), - [anon_sym_uR_DQUOTE] = ACTIONS(3257), - [anon_sym_UR_DQUOTE] = ACTIONS(3257), - [anon_sym_u8R_DQUOTE] = ACTIONS(3257), - [anon_sym_co_await] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_requires] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), + [1440] = { + [sym__expression] = STATE(3834), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1372] = { - [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_extern] = ACTIONS(3115), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3115), - [anon_sym_constinit] = ACTIONS(3115), - [anon_sym_consteval] = 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), - [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), + [1441] = { + [sym__expression] = STATE(4195), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3115), - [anon_sym_decltype] = ACTIONS(3115), - [anon_sym_virtual] = ACTIONS(3115), - [anon_sym_alignas] = 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_using] = 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), - }, - [1373] = { - [sym_identifier] = ACTIONS(3444), - [aux_sym_preproc_include_token1] = ACTIONS(3444), - [aux_sym_preproc_def_token1] = ACTIONS(3444), - [aux_sym_preproc_if_token1] = ACTIONS(3444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3444), - [sym_preproc_directive] = ACTIONS(3444), - [anon_sym_LPAREN2] = ACTIONS(3446), - [anon_sym_BANG] = ACTIONS(3446), - [anon_sym_TILDE] = ACTIONS(3446), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(3446), - [anon_sym_AMP] = ACTIONS(3444), - [anon_sym_SEMI] = ACTIONS(3446), - [anon_sym___extension__] = ACTIONS(3444), - [anon_sym_typedef] = ACTIONS(3444), - [anon_sym_extern] = ACTIONS(3444), - [anon_sym___attribute__] = ACTIONS(3444), - [anon_sym_COLON_COLON] = ACTIONS(3446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3446), - [anon_sym___declspec] = ACTIONS(3444), - [anon_sym___based] = ACTIONS(3444), - [anon_sym___cdecl] = ACTIONS(3444), - [anon_sym___clrcall] = ACTIONS(3444), - [anon_sym___stdcall] = ACTIONS(3444), - [anon_sym___fastcall] = ACTIONS(3444), - [anon_sym___thiscall] = ACTIONS(3444), - [anon_sym___vectorcall] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3446), - [anon_sym_RBRACE] = ACTIONS(3446), - [anon_sym_signed] = ACTIONS(3444), - [anon_sym_unsigned] = ACTIONS(3444), - [anon_sym_long] = ACTIONS(3444), - [anon_sym_short] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3444), - [anon_sym_static] = ACTIONS(3444), - [anon_sym_register] = ACTIONS(3444), - [anon_sym_inline] = ACTIONS(3444), - [anon_sym___inline] = ACTIONS(3444), - [anon_sym___inline__] = ACTIONS(3444), - [anon_sym___forceinline] = ACTIONS(3444), - [anon_sym_thread_local] = ACTIONS(3444), - [anon_sym___thread] = ACTIONS(3444), - [anon_sym_const] = ACTIONS(3444), - [anon_sym_constexpr] = ACTIONS(3444), - [anon_sym_volatile] = ACTIONS(3444), - [anon_sym_restrict] = ACTIONS(3444), - [anon_sym___restrict__] = ACTIONS(3444), - [anon_sym__Atomic] = ACTIONS(3444), - [anon_sym__Noreturn] = ACTIONS(3444), - [anon_sym_noreturn] = ACTIONS(3444), - [anon_sym_mutable] = ACTIONS(3444), - [anon_sym_constinit] = ACTIONS(3444), - [anon_sym_consteval] = ACTIONS(3444), - [sym_primitive_type] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), - [anon_sym_class] = ACTIONS(3444), - [anon_sym_struct] = ACTIONS(3444), - [anon_sym_union] = ACTIONS(3444), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_switch] = ACTIONS(3444), - [anon_sym_case] = ACTIONS(3444), - [anon_sym_default] = ACTIONS(3444), - [anon_sym_while] = ACTIONS(3444), - [anon_sym_do] = ACTIONS(3444), - [anon_sym_for] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3444), - [anon_sym_break] = ACTIONS(3444), - [anon_sym_continue] = ACTIONS(3444), - [anon_sym_goto] = ACTIONS(3444), - [anon_sym_not] = ACTIONS(3444), - [anon_sym_compl] = ACTIONS(3444), - [anon_sym_DASH_DASH] = ACTIONS(3446), - [anon_sym_PLUS_PLUS] = ACTIONS(3446), - [anon_sym_sizeof] = ACTIONS(3444), - [anon_sym___alignof__] = ACTIONS(3444), - [anon_sym___alignof] = ACTIONS(3444), - [anon_sym__alignof] = ACTIONS(3444), - [anon_sym_alignof] = ACTIONS(3444), - [anon_sym__Alignof] = ACTIONS(3444), - [anon_sym_offsetof] = ACTIONS(3444), - [anon_sym__Generic] = ACTIONS(3444), - [anon_sym_asm] = ACTIONS(3444), - [anon_sym___asm__] = ACTIONS(3444), - [sym_number_literal] = ACTIONS(3446), - [anon_sym_L_SQUOTE] = ACTIONS(3446), - [anon_sym_u_SQUOTE] = ACTIONS(3446), - [anon_sym_U_SQUOTE] = ACTIONS(3446), - [anon_sym_u8_SQUOTE] = ACTIONS(3446), - [anon_sym_SQUOTE] = ACTIONS(3446), - [anon_sym_L_DQUOTE] = ACTIONS(3446), - [anon_sym_u_DQUOTE] = ACTIONS(3446), - [anon_sym_U_DQUOTE] = ACTIONS(3446), - [anon_sym_u8_DQUOTE] = ACTIONS(3446), - [anon_sym_DQUOTE] = ACTIONS(3446), - [sym_true] = ACTIONS(3444), - [sym_false] = ACTIONS(3444), - [anon_sym_NULL] = ACTIONS(3444), - [anon_sym_nullptr] = ACTIONS(3444), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3444), - [anon_sym_decltype] = ACTIONS(3444), - [anon_sym_virtual] = ACTIONS(3444), - [anon_sym_alignas] = ACTIONS(3444), - [anon_sym_explicit] = ACTIONS(3444), - [anon_sym_typename] = ACTIONS(3444), - [anon_sym_template] = ACTIONS(3444), - [anon_sym_operator] = ACTIONS(3444), - [anon_sym_try] = ACTIONS(3444), - [anon_sym_delete] = ACTIONS(3444), - [anon_sym_throw] = ACTIONS(3444), - [anon_sym_namespace] = ACTIONS(3444), - [anon_sym_using] = ACTIONS(3444), - [anon_sym_static_assert] = ACTIONS(3444), - [anon_sym_concept] = ACTIONS(3444), - [anon_sym_co_return] = ACTIONS(3444), - [anon_sym_co_yield] = ACTIONS(3444), - [anon_sym_R_DQUOTE] = ACTIONS(3446), - [anon_sym_LR_DQUOTE] = ACTIONS(3446), - [anon_sym_uR_DQUOTE] = ACTIONS(3446), - [anon_sym_UR_DQUOTE] = ACTIONS(3446), - [anon_sym_u8R_DQUOTE] = ACTIONS(3446), - [anon_sym_co_await] = ACTIONS(3444), - [anon_sym_new] = ACTIONS(3444), - [anon_sym_requires] = ACTIONS(3444), - [sym_this] = ACTIONS(3444), - }, - [1374] = { - [sym_identifier] = ACTIONS(3436), - [aux_sym_preproc_include_token1] = ACTIONS(3436), - [aux_sym_preproc_def_token1] = ACTIONS(3436), - [aux_sym_preproc_if_token1] = ACTIONS(3436), - [aux_sym_preproc_if_token2] = ACTIONS(3436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3436), - [sym_preproc_directive] = ACTIONS(3436), - [anon_sym_LPAREN2] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3438), - [anon_sym_TILDE] = ACTIONS(3438), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_AMP] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym___extension__] = ACTIONS(3436), - [anon_sym_typedef] = ACTIONS(3436), - [anon_sym_extern] = ACTIONS(3436), - [anon_sym___attribute__] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3438), - [anon_sym___declspec] = ACTIONS(3436), - [anon_sym___based] = ACTIONS(3436), - [anon_sym___cdecl] = ACTIONS(3436), - [anon_sym___clrcall] = ACTIONS(3436), - [anon_sym___stdcall] = ACTIONS(3436), - [anon_sym___fastcall] = ACTIONS(3436), - [anon_sym___thiscall] = ACTIONS(3436), - [anon_sym___vectorcall] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_signed] = ACTIONS(3436), - [anon_sym_unsigned] = ACTIONS(3436), - [anon_sym_long] = ACTIONS(3436), - [anon_sym_short] = ACTIONS(3436), - [anon_sym_LBRACK] = ACTIONS(3436), - [anon_sym_static] = ACTIONS(3436), - [anon_sym_register] = ACTIONS(3436), - [anon_sym_inline] = ACTIONS(3436), - [anon_sym___inline] = ACTIONS(3436), - [anon_sym___inline__] = ACTIONS(3436), - [anon_sym___forceinline] = ACTIONS(3436), - [anon_sym_thread_local] = ACTIONS(3436), - [anon_sym___thread] = ACTIONS(3436), - [anon_sym_const] = ACTIONS(3436), - [anon_sym_constexpr] = ACTIONS(3436), - [anon_sym_volatile] = ACTIONS(3436), - [anon_sym_restrict] = ACTIONS(3436), - [anon_sym___restrict__] = ACTIONS(3436), - [anon_sym__Atomic] = ACTIONS(3436), - [anon_sym__Noreturn] = ACTIONS(3436), - [anon_sym_noreturn] = ACTIONS(3436), - [anon_sym_mutable] = ACTIONS(3436), - [anon_sym_constinit] = ACTIONS(3436), - [anon_sym_consteval] = ACTIONS(3436), - [sym_primitive_type] = ACTIONS(3436), - [anon_sym_enum] = ACTIONS(3436), - [anon_sym_class] = ACTIONS(3436), - [anon_sym_struct] = ACTIONS(3436), - [anon_sym_union] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_switch] = ACTIONS(3436), - [anon_sym_case] = ACTIONS(3436), - [anon_sym_default] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_do] = ACTIONS(3436), - [anon_sym_for] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_goto] = ACTIONS(3436), - [anon_sym_not] = ACTIONS(3436), - [anon_sym_compl] = ACTIONS(3436), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_sizeof] = ACTIONS(3436), - [anon_sym___alignof__] = ACTIONS(3436), - [anon_sym___alignof] = ACTIONS(3436), - [anon_sym__alignof] = ACTIONS(3436), - [anon_sym_alignof] = ACTIONS(3436), - [anon_sym__Alignof] = ACTIONS(3436), - [anon_sym_offsetof] = ACTIONS(3436), - [anon_sym__Generic] = ACTIONS(3436), - [anon_sym_asm] = ACTIONS(3436), - [anon_sym___asm__] = ACTIONS(3436), - [sym_number_literal] = ACTIONS(3438), - [anon_sym_L_SQUOTE] = ACTIONS(3438), - [anon_sym_u_SQUOTE] = ACTIONS(3438), - [anon_sym_U_SQUOTE] = ACTIONS(3438), - [anon_sym_u8_SQUOTE] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(3438), - [anon_sym_L_DQUOTE] = ACTIONS(3438), - [anon_sym_u_DQUOTE] = ACTIONS(3438), - [anon_sym_U_DQUOTE] = ACTIONS(3438), - [anon_sym_u8_DQUOTE] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(3438), - [sym_true] = ACTIONS(3436), - [sym_false] = ACTIONS(3436), - [anon_sym_NULL] = ACTIONS(3436), - [anon_sym_nullptr] = ACTIONS(3436), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3436), - [anon_sym_decltype] = ACTIONS(3436), - [anon_sym_virtual] = ACTIONS(3436), - [anon_sym_alignas] = ACTIONS(3436), - [anon_sym_explicit] = ACTIONS(3436), - [anon_sym_typename] = ACTIONS(3436), - [anon_sym_template] = ACTIONS(3436), - [anon_sym_operator] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_delete] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_namespace] = ACTIONS(3436), - [anon_sym_using] = ACTIONS(3436), - [anon_sym_static_assert] = ACTIONS(3436), - [anon_sym_concept] = ACTIONS(3436), - [anon_sym_co_return] = ACTIONS(3436), - [anon_sym_co_yield] = ACTIONS(3436), - [anon_sym_R_DQUOTE] = ACTIONS(3438), - [anon_sym_LR_DQUOTE] = ACTIONS(3438), - [anon_sym_uR_DQUOTE] = ACTIONS(3438), - [anon_sym_UR_DQUOTE] = ACTIONS(3438), - [anon_sym_u8R_DQUOTE] = ACTIONS(3438), - [anon_sym_co_await] = ACTIONS(3436), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_requires] = ACTIONS(3436), - [sym_this] = ACTIONS(3436), - }, - [1375] = { - [sym_identifier] = ACTIONS(3328), - [aux_sym_preproc_include_token1] = ACTIONS(3328), - [aux_sym_preproc_def_token1] = ACTIONS(3328), - [aux_sym_preproc_if_token1] = ACTIONS(3328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3328), - [sym_preproc_directive] = ACTIONS(3328), - [anon_sym_LPAREN2] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_STAR] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym___extension__] = ACTIONS(3328), - [anon_sym_typedef] = ACTIONS(3328), - [anon_sym_extern] = ACTIONS(3328), - [anon_sym___attribute__] = ACTIONS(3328), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3330), - [anon_sym___declspec] = ACTIONS(3328), - [anon_sym___based] = ACTIONS(3328), - [anon_sym___cdecl] = ACTIONS(3328), - [anon_sym___clrcall] = ACTIONS(3328), - [anon_sym___stdcall] = ACTIONS(3328), - [anon_sym___fastcall] = ACTIONS(3328), - [anon_sym___thiscall] = ACTIONS(3328), - [anon_sym___vectorcall] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_signed] = ACTIONS(3328), - [anon_sym_unsigned] = ACTIONS(3328), - [anon_sym_long] = ACTIONS(3328), - [anon_sym_short] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_register] = ACTIONS(3328), - [anon_sym_inline] = ACTIONS(3328), - [anon_sym___inline] = ACTIONS(3328), - [anon_sym___inline__] = ACTIONS(3328), - [anon_sym___forceinline] = ACTIONS(3328), - [anon_sym_thread_local] = ACTIONS(3328), - [anon_sym___thread] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_constexpr] = ACTIONS(3328), - [anon_sym_volatile] = ACTIONS(3328), - [anon_sym_restrict] = ACTIONS(3328), - [anon_sym___restrict__] = ACTIONS(3328), - [anon_sym__Atomic] = ACTIONS(3328), - [anon_sym__Noreturn] = ACTIONS(3328), - [anon_sym_noreturn] = ACTIONS(3328), - [anon_sym_mutable] = ACTIONS(3328), - [anon_sym_constinit] = ACTIONS(3328), - [anon_sym_consteval] = ACTIONS(3328), - [sym_primitive_type] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_struct] = ACTIONS(3328), - [anon_sym_union] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_switch] = ACTIONS(3328), - [anon_sym_case] = ACTIONS(3328), - [anon_sym_default] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_goto] = ACTIONS(3328), - [anon_sym_not] = ACTIONS(3328), - [anon_sym_compl] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_sizeof] = ACTIONS(3328), - [anon_sym___alignof__] = ACTIONS(3328), - [anon_sym___alignof] = ACTIONS(3328), - [anon_sym__alignof] = ACTIONS(3328), - [anon_sym_alignof] = ACTIONS(3328), - [anon_sym__Alignof] = ACTIONS(3328), - [anon_sym_offsetof] = ACTIONS(3328), - [anon_sym__Generic] = ACTIONS(3328), - [anon_sym_asm] = ACTIONS(3328), - [anon_sym___asm__] = ACTIONS(3328), - [sym_number_literal] = ACTIONS(3330), - [anon_sym_L_SQUOTE] = ACTIONS(3330), - [anon_sym_u_SQUOTE] = ACTIONS(3330), - [anon_sym_U_SQUOTE] = ACTIONS(3330), - [anon_sym_u8_SQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_L_DQUOTE] = ACTIONS(3330), - [anon_sym_u_DQUOTE] = ACTIONS(3330), - [anon_sym_U_DQUOTE] = ACTIONS(3330), - [anon_sym_u8_DQUOTE] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [anon_sym_NULL] = ACTIONS(3328), - [anon_sym_nullptr] = ACTIONS(3328), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3328), - [anon_sym_decltype] = ACTIONS(3328), - [anon_sym_virtual] = ACTIONS(3328), - [anon_sym_alignas] = ACTIONS(3328), - [anon_sym_explicit] = ACTIONS(3328), - [anon_sym_typename] = ACTIONS(3328), - [anon_sym_template] = ACTIONS(3328), - [anon_sym_operator] = ACTIONS(3328), - [anon_sym_try] = ACTIONS(3328), - [anon_sym_delete] = ACTIONS(3328), - [anon_sym_throw] = ACTIONS(3328), - [anon_sym_namespace] = ACTIONS(3328), - [anon_sym_using] = ACTIONS(3328), - [anon_sym_static_assert] = ACTIONS(3328), - [anon_sym_concept] = ACTIONS(3328), - [anon_sym_co_return] = ACTIONS(3328), - [anon_sym_co_yield] = ACTIONS(3328), - [anon_sym_R_DQUOTE] = ACTIONS(3330), - [anon_sym_LR_DQUOTE] = ACTIONS(3330), - [anon_sym_uR_DQUOTE] = ACTIONS(3330), - [anon_sym_UR_DQUOTE] = ACTIONS(3330), - [anon_sym_u8R_DQUOTE] = ACTIONS(3330), - [anon_sym_co_await] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3328), - [anon_sym_requires] = ACTIONS(3328), - [sym_this] = ACTIONS(3328), - }, - [1376] = { - [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_extern] = ACTIONS(3238), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3238), - [anon_sym_constinit] = ACTIONS(3238), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3238), - [anon_sym_alignas] = 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_using] = 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), - }, - [1377] = { - [sym_identifier] = ACTIONS(3282), - [aux_sym_preproc_include_token1] = ACTIONS(3282), - [aux_sym_preproc_def_token1] = ACTIONS(3282), - [aux_sym_preproc_if_token1] = ACTIONS(3282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3282), - [sym_preproc_directive] = ACTIONS(3282), - [anon_sym_LPAREN2] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3282), - [anon_sym_PLUS] = ACTIONS(3282), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_AMP_AMP] = ACTIONS(3284), - [anon_sym_AMP] = ACTIONS(3282), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym___extension__] = ACTIONS(3282), - [anon_sym_typedef] = ACTIONS(3282), - [anon_sym_extern] = ACTIONS(3282), - [anon_sym___attribute__] = ACTIONS(3282), - [anon_sym_COLON_COLON] = ACTIONS(3284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3284), - [anon_sym___declspec] = ACTIONS(3282), - [anon_sym___based] = ACTIONS(3282), - [anon_sym___cdecl] = ACTIONS(3282), - [anon_sym___clrcall] = ACTIONS(3282), - [anon_sym___stdcall] = ACTIONS(3282), - [anon_sym___fastcall] = ACTIONS(3282), - [anon_sym___thiscall] = ACTIONS(3282), - [anon_sym___vectorcall] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3284), - [anon_sym_signed] = ACTIONS(3282), - [anon_sym_unsigned] = ACTIONS(3282), - [anon_sym_long] = ACTIONS(3282), - [anon_sym_short] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_register] = ACTIONS(3282), - [anon_sym_inline] = ACTIONS(3282), - [anon_sym___inline] = ACTIONS(3282), - [anon_sym___inline__] = ACTIONS(3282), - [anon_sym___forceinline] = ACTIONS(3282), - [anon_sym_thread_local] = ACTIONS(3282), - [anon_sym___thread] = ACTIONS(3282), - [anon_sym_const] = ACTIONS(3282), - [anon_sym_constexpr] = ACTIONS(3282), - [anon_sym_volatile] = ACTIONS(3282), - [anon_sym_restrict] = ACTIONS(3282), - [anon_sym___restrict__] = ACTIONS(3282), - [anon_sym__Atomic] = ACTIONS(3282), - [anon_sym__Noreturn] = ACTIONS(3282), - [anon_sym_noreturn] = ACTIONS(3282), - [anon_sym_mutable] = ACTIONS(3282), - [anon_sym_constinit] = ACTIONS(3282), - [anon_sym_consteval] = ACTIONS(3282), - [sym_primitive_type] = ACTIONS(3282), - [anon_sym_enum] = ACTIONS(3282), - [anon_sym_class] = ACTIONS(3282), - [anon_sym_struct] = ACTIONS(3282), - [anon_sym_union] = ACTIONS(3282), - [anon_sym_if] = ACTIONS(3282), - [anon_sym_switch] = ACTIONS(3282), - [anon_sym_case] = ACTIONS(3282), - [anon_sym_default] = ACTIONS(3282), - [anon_sym_while] = ACTIONS(3282), - [anon_sym_do] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3282), - [anon_sym_return] = ACTIONS(3282), - [anon_sym_break] = ACTIONS(3282), - [anon_sym_continue] = ACTIONS(3282), - [anon_sym_goto] = ACTIONS(3282), - [anon_sym_not] = ACTIONS(3282), - [anon_sym_compl] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_sizeof] = ACTIONS(3282), - [anon_sym___alignof__] = ACTIONS(3282), - [anon_sym___alignof] = ACTIONS(3282), - [anon_sym__alignof] = ACTIONS(3282), - [anon_sym_alignof] = ACTIONS(3282), - [anon_sym__Alignof] = ACTIONS(3282), - [anon_sym_offsetof] = ACTIONS(3282), - [anon_sym__Generic] = ACTIONS(3282), - [anon_sym_asm] = ACTIONS(3282), - [anon_sym___asm__] = ACTIONS(3282), - [sym_number_literal] = ACTIONS(3284), - [anon_sym_L_SQUOTE] = ACTIONS(3284), - [anon_sym_u_SQUOTE] = ACTIONS(3284), - [anon_sym_U_SQUOTE] = ACTIONS(3284), - [anon_sym_u8_SQUOTE] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3284), - [anon_sym_L_DQUOTE] = ACTIONS(3284), - [anon_sym_u_DQUOTE] = ACTIONS(3284), - [anon_sym_U_DQUOTE] = ACTIONS(3284), - [anon_sym_u8_DQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [sym_true] = ACTIONS(3282), - [sym_false] = ACTIONS(3282), - [anon_sym_NULL] = ACTIONS(3282), - [anon_sym_nullptr] = ACTIONS(3282), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3282), - [anon_sym_decltype] = ACTIONS(3282), - [anon_sym_virtual] = ACTIONS(3282), - [anon_sym_alignas] = ACTIONS(3282), - [anon_sym_explicit] = ACTIONS(3282), - [anon_sym_typename] = ACTIONS(3282), - [anon_sym_template] = ACTIONS(3282), - [anon_sym_operator] = ACTIONS(3282), - [anon_sym_try] = ACTIONS(3282), - [anon_sym_delete] = ACTIONS(3282), - [anon_sym_throw] = ACTIONS(3282), - [anon_sym_namespace] = ACTIONS(3282), - [anon_sym_using] = ACTIONS(3282), - [anon_sym_static_assert] = ACTIONS(3282), - [anon_sym_concept] = ACTIONS(3282), - [anon_sym_co_return] = ACTIONS(3282), - [anon_sym_co_yield] = ACTIONS(3282), - [anon_sym_R_DQUOTE] = ACTIONS(3284), - [anon_sym_LR_DQUOTE] = ACTIONS(3284), - [anon_sym_uR_DQUOTE] = ACTIONS(3284), - [anon_sym_UR_DQUOTE] = ACTIONS(3284), - [anon_sym_u8R_DQUOTE] = ACTIONS(3284), - [anon_sym_co_await] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3282), - [anon_sym_requires] = ACTIONS(3282), - [sym_this] = ACTIONS(3282), - }, - [1378] = { - [sym_identifier] = ACTIONS(3234), - [aux_sym_preproc_include_token1] = ACTIONS(3234), - [aux_sym_preproc_def_token1] = ACTIONS(3234), - [aux_sym_preproc_if_token1] = ACTIONS(3234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3234), - [sym_preproc_directive] = ACTIONS(3234), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3236), - [anon_sym_AMP] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym___extension__] = ACTIONS(3234), - [anon_sym_typedef] = ACTIONS(3234), - [anon_sym_extern] = ACTIONS(3234), - [anon_sym___attribute__] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3236), - [anon_sym___declspec] = ACTIONS(3234), - [anon_sym___based] = ACTIONS(3234), - [anon_sym___cdecl] = ACTIONS(3234), - [anon_sym___clrcall] = ACTIONS(3234), - [anon_sym___stdcall] = ACTIONS(3234), - [anon_sym___fastcall] = ACTIONS(3234), - [anon_sym___thiscall] = ACTIONS(3234), - [anon_sym___vectorcall] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3236), - [anon_sym_signed] = ACTIONS(3234), - [anon_sym_unsigned] = ACTIONS(3234), - [anon_sym_long] = ACTIONS(3234), - [anon_sym_short] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_register] = ACTIONS(3234), - [anon_sym_inline] = ACTIONS(3234), - [anon_sym___inline] = ACTIONS(3234), - [anon_sym___inline__] = ACTIONS(3234), - [anon_sym___forceinline] = ACTIONS(3234), - [anon_sym_thread_local] = ACTIONS(3234), - [anon_sym___thread] = ACTIONS(3234), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_constexpr] = ACTIONS(3234), - [anon_sym_volatile] = ACTIONS(3234), - [anon_sym_restrict] = ACTIONS(3234), - [anon_sym___restrict__] = ACTIONS(3234), - [anon_sym__Atomic] = ACTIONS(3234), - [anon_sym__Noreturn] = ACTIONS(3234), - [anon_sym_noreturn] = ACTIONS(3234), - [anon_sym_mutable] = ACTIONS(3234), - [anon_sym_constinit] = ACTIONS(3234), - [anon_sym_consteval] = ACTIONS(3234), - [sym_primitive_type] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_struct] = ACTIONS(3234), - [anon_sym_union] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_case] = ACTIONS(3234), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_goto] = ACTIONS(3234), - [anon_sym_not] = ACTIONS(3234), - [anon_sym_compl] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3236), - [anon_sym_PLUS_PLUS] = ACTIONS(3236), - [anon_sym_sizeof] = ACTIONS(3234), - [anon_sym___alignof__] = ACTIONS(3234), - [anon_sym___alignof] = ACTIONS(3234), - [anon_sym__alignof] = ACTIONS(3234), - [anon_sym_alignof] = ACTIONS(3234), - [anon_sym__Alignof] = ACTIONS(3234), - [anon_sym_offsetof] = ACTIONS(3234), - [anon_sym__Generic] = ACTIONS(3234), - [anon_sym_asm] = ACTIONS(3234), - [anon_sym___asm__] = ACTIONS(3234), - [sym_number_literal] = ACTIONS(3236), - [anon_sym_L_SQUOTE] = ACTIONS(3236), - [anon_sym_u_SQUOTE] = ACTIONS(3236), - [anon_sym_U_SQUOTE] = ACTIONS(3236), - [anon_sym_u8_SQUOTE] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym_L_DQUOTE] = ACTIONS(3236), - [anon_sym_u_DQUOTE] = ACTIONS(3236), - [anon_sym_U_DQUOTE] = ACTIONS(3236), - [anon_sym_u8_DQUOTE] = ACTIONS(3236), - [anon_sym_DQUOTE] = ACTIONS(3236), - [sym_true] = ACTIONS(3234), - [sym_false] = ACTIONS(3234), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3234), - [anon_sym_decltype] = ACTIONS(3234), - [anon_sym_virtual] = ACTIONS(3234), - [anon_sym_alignas] = ACTIONS(3234), - [anon_sym_explicit] = ACTIONS(3234), - [anon_sym_typename] = ACTIONS(3234), - [anon_sym_template] = ACTIONS(3234), - [anon_sym_operator] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_delete] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_namespace] = ACTIONS(3234), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_static_assert] = ACTIONS(3234), - [anon_sym_concept] = ACTIONS(3234), - [anon_sym_co_return] = ACTIONS(3234), - [anon_sym_co_yield] = ACTIONS(3234), - [anon_sym_R_DQUOTE] = ACTIONS(3236), - [anon_sym_LR_DQUOTE] = ACTIONS(3236), - [anon_sym_uR_DQUOTE] = ACTIONS(3236), - [anon_sym_UR_DQUOTE] = ACTIONS(3236), - [anon_sym_u8R_DQUOTE] = ACTIONS(3236), - [anon_sym_co_await] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_requires] = ACTIONS(3234), - [sym_this] = ACTIONS(3234), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1379] = { - [sym_identifier] = ACTIONS(3230), - [aux_sym_preproc_include_token1] = ACTIONS(3230), - [aux_sym_preproc_def_token1] = ACTIONS(3230), - [aux_sym_preproc_if_token1] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3230), - [sym_preproc_directive] = ACTIONS(3230), - [anon_sym_LPAREN2] = ACTIONS(3232), - [anon_sym_BANG] = ACTIONS(3232), - [anon_sym_TILDE] = ACTIONS(3232), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(3232), - [anon_sym_AMP_AMP] = ACTIONS(3232), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3232), - [anon_sym___extension__] = ACTIONS(3230), - [anon_sym_typedef] = ACTIONS(3230), - [anon_sym_extern] = ACTIONS(3230), - [anon_sym___attribute__] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3232), - [anon_sym___declspec] = ACTIONS(3230), - [anon_sym___based] = ACTIONS(3230), - [anon_sym___cdecl] = ACTIONS(3230), - [anon_sym___clrcall] = ACTIONS(3230), - [anon_sym___stdcall] = ACTIONS(3230), - [anon_sym___fastcall] = ACTIONS(3230), - [anon_sym___thiscall] = ACTIONS(3230), - [anon_sym___vectorcall] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3232), - [anon_sym_RBRACE] = ACTIONS(3232), - [anon_sym_signed] = ACTIONS(3230), - [anon_sym_unsigned] = ACTIONS(3230), - [anon_sym_long] = ACTIONS(3230), - [anon_sym_short] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3230), - [anon_sym_register] = ACTIONS(3230), - [anon_sym_inline] = ACTIONS(3230), - [anon_sym___inline] = ACTIONS(3230), - [anon_sym___inline__] = ACTIONS(3230), - [anon_sym___forceinline] = ACTIONS(3230), - [anon_sym_thread_local] = ACTIONS(3230), - [anon_sym___thread] = ACTIONS(3230), - [anon_sym_const] = ACTIONS(3230), - [anon_sym_constexpr] = ACTIONS(3230), - [anon_sym_volatile] = ACTIONS(3230), - [anon_sym_restrict] = ACTIONS(3230), - [anon_sym___restrict__] = ACTIONS(3230), - [anon_sym__Atomic] = ACTIONS(3230), - [anon_sym__Noreturn] = ACTIONS(3230), - [anon_sym_noreturn] = ACTIONS(3230), - [anon_sym_mutable] = ACTIONS(3230), - [anon_sym_constinit] = ACTIONS(3230), - [anon_sym_consteval] = ACTIONS(3230), - [sym_primitive_type] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3230), - [anon_sym_class] = ACTIONS(3230), - [anon_sym_struct] = ACTIONS(3230), - [anon_sym_union] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_switch] = ACTIONS(3230), - [anon_sym_case] = ACTIONS(3230), - [anon_sym_default] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_do] = ACTIONS(3230), - [anon_sym_for] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_goto] = ACTIONS(3230), - [anon_sym_not] = ACTIONS(3230), - [anon_sym_compl] = ACTIONS(3230), - [anon_sym_DASH_DASH] = ACTIONS(3232), - [anon_sym_PLUS_PLUS] = ACTIONS(3232), - [anon_sym_sizeof] = ACTIONS(3230), - [anon_sym___alignof__] = ACTIONS(3230), - [anon_sym___alignof] = ACTIONS(3230), - [anon_sym__alignof] = ACTIONS(3230), - [anon_sym_alignof] = ACTIONS(3230), - [anon_sym__Alignof] = ACTIONS(3230), - [anon_sym_offsetof] = ACTIONS(3230), - [anon_sym__Generic] = ACTIONS(3230), - [anon_sym_asm] = ACTIONS(3230), - [anon_sym___asm__] = ACTIONS(3230), - [sym_number_literal] = ACTIONS(3232), - [anon_sym_L_SQUOTE] = ACTIONS(3232), - [anon_sym_u_SQUOTE] = ACTIONS(3232), - [anon_sym_U_SQUOTE] = ACTIONS(3232), - [anon_sym_u8_SQUOTE] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3232), - [anon_sym_L_DQUOTE] = ACTIONS(3232), - [anon_sym_u_DQUOTE] = ACTIONS(3232), - [anon_sym_U_DQUOTE] = ACTIONS(3232), - [anon_sym_u8_DQUOTE] = ACTIONS(3232), - [anon_sym_DQUOTE] = ACTIONS(3232), - [sym_true] = ACTIONS(3230), - [sym_false] = ACTIONS(3230), - [anon_sym_NULL] = ACTIONS(3230), - [anon_sym_nullptr] = ACTIONS(3230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3230), - [anon_sym_decltype] = ACTIONS(3230), - [anon_sym_virtual] = ACTIONS(3230), - [anon_sym_alignas] = ACTIONS(3230), - [anon_sym_explicit] = ACTIONS(3230), - [anon_sym_typename] = ACTIONS(3230), - [anon_sym_template] = ACTIONS(3230), - [anon_sym_operator] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_delete] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_namespace] = ACTIONS(3230), - [anon_sym_using] = ACTIONS(3230), - [anon_sym_static_assert] = ACTIONS(3230), - [anon_sym_concept] = ACTIONS(3230), - [anon_sym_co_return] = ACTIONS(3230), - [anon_sym_co_yield] = ACTIONS(3230), - [anon_sym_R_DQUOTE] = ACTIONS(3232), - [anon_sym_LR_DQUOTE] = ACTIONS(3232), - [anon_sym_uR_DQUOTE] = ACTIONS(3232), - [anon_sym_UR_DQUOTE] = ACTIONS(3232), - [anon_sym_u8R_DQUOTE] = ACTIONS(3232), - [anon_sym_co_await] = ACTIONS(3230), - [anon_sym_new] = ACTIONS(3230), - [anon_sym_requires] = ACTIONS(3230), - [sym_this] = ACTIONS(3230), + [1442] = { + [sym__expression] = STATE(2992), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, - [1380] = { - [sym_identifier] = ACTIONS(3458), - [aux_sym_preproc_include_token1] = ACTIONS(3458), - [aux_sym_preproc_def_token1] = ACTIONS(3458), - [aux_sym_preproc_if_token1] = ACTIONS(3458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3458), - [sym_preproc_directive] = ACTIONS(3458), - [anon_sym_LPAREN2] = ACTIONS(3460), - [anon_sym_BANG] = ACTIONS(3460), - [anon_sym_TILDE] = ACTIONS(3460), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_STAR] = ACTIONS(3460), - [anon_sym_AMP_AMP] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(3458), - [anon_sym_SEMI] = ACTIONS(3460), - [anon_sym___extension__] = ACTIONS(3458), - [anon_sym_typedef] = ACTIONS(3458), - [anon_sym_extern] = ACTIONS(3458), - [anon_sym___attribute__] = ACTIONS(3458), - [anon_sym_COLON_COLON] = ACTIONS(3460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3460), - [anon_sym___declspec] = ACTIONS(3458), - [anon_sym___based] = ACTIONS(3458), - [anon_sym___cdecl] = ACTIONS(3458), - [anon_sym___clrcall] = ACTIONS(3458), - [anon_sym___stdcall] = ACTIONS(3458), - [anon_sym___fastcall] = ACTIONS(3458), - [anon_sym___thiscall] = ACTIONS(3458), - [anon_sym___vectorcall] = ACTIONS(3458), - [anon_sym_LBRACE] = ACTIONS(3460), - [anon_sym_RBRACE] = ACTIONS(3460), - [anon_sym_signed] = ACTIONS(3458), - [anon_sym_unsigned] = ACTIONS(3458), - [anon_sym_long] = ACTIONS(3458), - [anon_sym_short] = ACTIONS(3458), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_static] = ACTIONS(3458), - [anon_sym_register] = ACTIONS(3458), - [anon_sym_inline] = ACTIONS(3458), - [anon_sym___inline] = ACTIONS(3458), - [anon_sym___inline__] = ACTIONS(3458), - [anon_sym___forceinline] = ACTIONS(3458), - [anon_sym_thread_local] = ACTIONS(3458), - [anon_sym___thread] = ACTIONS(3458), - [anon_sym_const] = ACTIONS(3458), - [anon_sym_constexpr] = ACTIONS(3458), - [anon_sym_volatile] = ACTIONS(3458), - [anon_sym_restrict] = ACTIONS(3458), - [anon_sym___restrict__] = ACTIONS(3458), - [anon_sym__Atomic] = ACTIONS(3458), - [anon_sym__Noreturn] = ACTIONS(3458), - [anon_sym_noreturn] = ACTIONS(3458), - [anon_sym_mutable] = ACTIONS(3458), - [anon_sym_constinit] = ACTIONS(3458), - [anon_sym_consteval] = ACTIONS(3458), - [sym_primitive_type] = ACTIONS(3458), - [anon_sym_enum] = ACTIONS(3458), - [anon_sym_class] = ACTIONS(3458), - [anon_sym_struct] = ACTIONS(3458), - [anon_sym_union] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_switch] = ACTIONS(3458), - [anon_sym_case] = ACTIONS(3458), - [anon_sym_default] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_break] = ACTIONS(3458), - [anon_sym_continue] = ACTIONS(3458), - [anon_sym_goto] = ACTIONS(3458), - [anon_sym_not] = ACTIONS(3458), - [anon_sym_compl] = ACTIONS(3458), - [anon_sym_DASH_DASH] = ACTIONS(3460), - [anon_sym_PLUS_PLUS] = ACTIONS(3460), - [anon_sym_sizeof] = ACTIONS(3458), - [anon_sym___alignof__] = ACTIONS(3458), - [anon_sym___alignof] = ACTIONS(3458), - [anon_sym__alignof] = ACTIONS(3458), - [anon_sym_alignof] = ACTIONS(3458), - [anon_sym__Alignof] = ACTIONS(3458), - [anon_sym_offsetof] = ACTIONS(3458), - [anon_sym__Generic] = ACTIONS(3458), - [anon_sym_asm] = ACTIONS(3458), - [anon_sym___asm__] = ACTIONS(3458), - [sym_number_literal] = ACTIONS(3460), - [anon_sym_L_SQUOTE] = ACTIONS(3460), - [anon_sym_u_SQUOTE] = ACTIONS(3460), - [anon_sym_U_SQUOTE] = ACTIONS(3460), - [anon_sym_u8_SQUOTE] = ACTIONS(3460), - [anon_sym_SQUOTE] = ACTIONS(3460), - [anon_sym_L_DQUOTE] = ACTIONS(3460), - [anon_sym_u_DQUOTE] = ACTIONS(3460), - [anon_sym_U_DQUOTE] = ACTIONS(3460), - [anon_sym_u8_DQUOTE] = ACTIONS(3460), - [anon_sym_DQUOTE] = ACTIONS(3460), - [sym_true] = ACTIONS(3458), - [sym_false] = ACTIONS(3458), - [anon_sym_NULL] = ACTIONS(3458), - [anon_sym_nullptr] = ACTIONS(3458), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3458), - [anon_sym_decltype] = ACTIONS(3458), - [anon_sym_virtual] = ACTIONS(3458), - [anon_sym_alignas] = ACTIONS(3458), - [anon_sym_explicit] = ACTIONS(3458), - [anon_sym_typename] = ACTIONS(3458), - [anon_sym_template] = ACTIONS(3458), - [anon_sym_operator] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_delete] = ACTIONS(3458), - [anon_sym_throw] = ACTIONS(3458), - [anon_sym_namespace] = ACTIONS(3458), - [anon_sym_using] = ACTIONS(3458), - [anon_sym_static_assert] = ACTIONS(3458), - [anon_sym_concept] = ACTIONS(3458), - [anon_sym_co_return] = ACTIONS(3458), - [anon_sym_co_yield] = ACTIONS(3458), - [anon_sym_R_DQUOTE] = ACTIONS(3460), - [anon_sym_LR_DQUOTE] = ACTIONS(3460), - [anon_sym_uR_DQUOTE] = ACTIONS(3460), - [anon_sym_UR_DQUOTE] = ACTIONS(3460), - [anon_sym_u8R_DQUOTE] = ACTIONS(3460), - [anon_sym_co_await] = ACTIONS(3458), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_requires] = ACTIONS(3458), - [sym_this] = ACTIONS(3458), + [1443] = { + [sym__expression] = STATE(4163), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [1381] = { - [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_extern] = ACTIONS(3123), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3123), - [anon_sym_constinit] = ACTIONS(3123), - [anon_sym_consteval] = 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), - [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), + [1444] = { + [sym__expression] = STATE(4292), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3123), - [anon_sym_decltype] = ACTIONS(3123), - [anon_sym_virtual] = ACTIONS(3123), - [anon_sym_alignas] = 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_using] = 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), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1382] = { - [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_extern] = ACTIONS(3123), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3123), - [anon_sym_constinit] = ACTIONS(3123), - [anon_sym_consteval] = 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), - [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), + [1445] = { + [sym__expression] = STATE(2883), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3123), - [anon_sym_decltype] = ACTIONS(3123), - [anon_sym_virtual] = ACTIONS(3123), - [anon_sym_alignas] = 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_using] = 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), - }, - [1383] = { - [sym_identifier] = ACTIONS(3207), - [aux_sym_preproc_include_token1] = ACTIONS(3207), - [aux_sym_preproc_def_token1] = ACTIONS(3207), - [aux_sym_preproc_if_token1] = ACTIONS(3207), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3207), - [sym_preproc_directive] = ACTIONS(3207), - [anon_sym_LPAREN2] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_AMP_AMP] = ACTIONS(3209), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_SEMI] = ACTIONS(3209), - [anon_sym___extension__] = ACTIONS(3207), - [anon_sym_typedef] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(3207), - [anon_sym___attribute__] = ACTIONS(3207), - [anon_sym_COLON_COLON] = ACTIONS(3209), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3209), - [anon_sym___declspec] = ACTIONS(3207), - [anon_sym___based] = ACTIONS(3207), - [anon_sym___cdecl] = ACTIONS(3207), - [anon_sym___clrcall] = ACTIONS(3207), - [anon_sym___stdcall] = ACTIONS(3207), - [anon_sym___fastcall] = ACTIONS(3207), - [anon_sym___thiscall] = ACTIONS(3207), - [anon_sym___vectorcall] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym_signed] = ACTIONS(3207), - [anon_sym_unsigned] = ACTIONS(3207), - [anon_sym_long] = ACTIONS(3207), - [anon_sym_short] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_static] = ACTIONS(3207), - [anon_sym_register] = ACTIONS(3207), - [anon_sym_inline] = ACTIONS(3207), - [anon_sym___inline] = ACTIONS(3207), - [anon_sym___inline__] = ACTIONS(3207), - [anon_sym___forceinline] = ACTIONS(3207), - [anon_sym_thread_local] = ACTIONS(3207), - [anon_sym___thread] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_constexpr] = ACTIONS(3207), - [anon_sym_volatile] = ACTIONS(3207), - [anon_sym_restrict] = ACTIONS(3207), - [anon_sym___restrict__] = ACTIONS(3207), - [anon_sym__Atomic] = ACTIONS(3207), - [anon_sym__Noreturn] = ACTIONS(3207), - [anon_sym_noreturn] = ACTIONS(3207), - [anon_sym_mutable] = ACTIONS(3207), - [anon_sym_constinit] = ACTIONS(3207), - [anon_sym_consteval] = ACTIONS(3207), - [sym_primitive_type] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [anon_sym_class] = ACTIONS(3207), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_union] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_switch] = ACTIONS(3207), - [anon_sym_case] = ACTIONS(3207), - [anon_sym_default] = ACTIONS(3207), - [anon_sym_while] = ACTIONS(3207), - [anon_sym_do] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_goto] = ACTIONS(3207), - [anon_sym_not] = ACTIONS(3207), - [anon_sym_compl] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_sizeof] = ACTIONS(3207), - [anon_sym___alignof__] = ACTIONS(3207), - [anon_sym___alignof] = ACTIONS(3207), - [anon_sym__alignof] = ACTIONS(3207), - [anon_sym_alignof] = ACTIONS(3207), - [anon_sym__Alignof] = ACTIONS(3207), - [anon_sym_offsetof] = ACTIONS(3207), - [anon_sym__Generic] = ACTIONS(3207), - [anon_sym_asm] = ACTIONS(3207), - [anon_sym___asm__] = ACTIONS(3207), - [sym_number_literal] = ACTIONS(3209), - [anon_sym_L_SQUOTE] = ACTIONS(3209), - [anon_sym_u_SQUOTE] = ACTIONS(3209), - [anon_sym_U_SQUOTE] = ACTIONS(3209), - [anon_sym_u8_SQUOTE] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3209), - [anon_sym_L_DQUOTE] = ACTIONS(3209), - [anon_sym_u_DQUOTE] = ACTIONS(3209), - [anon_sym_U_DQUOTE] = ACTIONS(3209), - [anon_sym_u8_DQUOTE] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(3209), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [anon_sym_NULL] = ACTIONS(3207), - [anon_sym_nullptr] = ACTIONS(3207), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3207), - [anon_sym_decltype] = ACTIONS(3207), - [anon_sym_virtual] = ACTIONS(3207), - [anon_sym_alignas] = ACTIONS(3207), - [anon_sym_explicit] = ACTIONS(3207), - [anon_sym_typename] = ACTIONS(3207), - [anon_sym_template] = ACTIONS(3207), - [anon_sym_operator] = ACTIONS(3207), - [anon_sym_try] = ACTIONS(3207), - [anon_sym_delete] = ACTIONS(3207), - [anon_sym_throw] = ACTIONS(3207), - [anon_sym_namespace] = ACTIONS(3207), - [anon_sym_using] = ACTIONS(3207), - [anon_sym_static_assert] = ACTIONS(3207), - [anon_sym_concept] = ACTIONS(3207), - [anon_sym_co_return] = ACTIONS(3207), - [anon_sym_co_yield] = ACTIONS(3207), - [anon_sym_R_DQUOTE] = ACTIONS(3209), - [anon_sym_LR_DQUOTE] = ACTIONS(3209), - [anon_sym_uR_DQUOTE] = ACTIONS(3209), - [anon_sym_UR_DQUOTE] = ACTIONS(3209), - [anon_sym_u8R_DQUOTE] = ACTIONS(3209), - [anon_sym_co_await] = ACTIONS(3207), - [anon_sym_new] = ACTIONS(3207), - [anon_sym_requires] = ACTIONS(3207), - [sym_this] = ACTIONS(3207), - }, - [1384] = { - [sym_identifier] = ACTIONS(3203), - [aux_sym_preproc_include_token1] = ACTIONS(3203), - [aux_sym_preproc_def_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3203), - [sym_preproc_directive] = ACTIONS(3203), - [anon_sym_LPAREN2] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym___extension__] = ACTIONS(3203), - [anon_sym_typedef] = ACTIONS(3203), - [anon_sym_extern] = ACTIONS(3203), - [anon_sym___attribute__] = ACTIONS(3203), - [anon_sym_COLON_COLON] = ACTIONS(3205), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3205), - [anon_sym___declspec] = ACTIONS(3203), - [anon_sym___based] = ACTIONS(3203), - [anon_sym___cdecl] = ACTIONS(3203), - [anon_sym___clrcall] = ACTIONS(3203), - [anon_sym___stdcall] = ACTIONS(3203), - [anon_sym___fastcall] = ACTIONS(3203), - [anon_sym___thiscall] = ACTIONS(3203), - [anon_sym___vectorcall] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_RBRACE] = ACTIONS(3205), - [anon_sym_signed] = ACTIONS(3203), - [anon_sym_unsigned] = ACTIONS(3203), - [anon_sym_long] = ACTIONS(3203), - [anon_sym_short] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_static] = ACTIONS(3203), - [anon_sym_register] = ACTIONS(3203), - [anon_sym_inline] = ACTIONS(3203), - [anon_sym___inline] = ACTIONS(3203), - [anon_sym___inline__] = ACTIONS(3203), - [anon_sym___forceinline] = ACTIONS(3203), - [anon_sym_thread_local] = ACTIONS(3203), - [anon_sym___thread] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_constexpr] = ACTIONS(3203), - [anon_sym_volatile] = ACTIONS(3203), - [anon_sym_restrict] = ACTIONS(3203), - [anon_sym___restrict__] = ACTIONS(3203), - [anon_sym__Atomic] = ACTIONS(3203), - [anon_sym__Noreturn] = ACTIONS(3203), - [anon_sym_noreturn] = ACTIONS(3203), - [anon_sym_mutable] = ACTIONS(3203), - [anon_sym_constinit] = ACTIONS(3203), - [anon_sym_consteval] = ACTIONS(3203), - [sym_primitive_type] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [anon_sym_class] = ACTIONS(3203), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_switch] = ACTIONS(3203), - [anon_sym_case] = ACTIONS(3203), - [anon_sym_default] = ACTIONS(3203), - [anon_sym_while] = ACTIONS(3203), - [anon_sym_do] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_goto] = ACTIONS(3203), - [anon_sym_not] = ACTIONS(3203), - [anon_sym_compl] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_sizeof] = ACTIONS(3203), - [anon_sym___alignof__] = ACTIONS(3203), - [anon_sym___alignof] = ACTIONS(3203), - [anon_sym__alignof] = ACTIONS(3203), - [anon_sym_alignof] = ACTIONS(3203), - [anon_sym__Alignof] = ACTIONS(3203), - [anon_sym_offsetof] = ACTIONS(3203), - [anon_sym__Generic] = ACTIONS(3203), - [anon_sym_asm] = ACTIONS(3203), - [anon_sym___asm__] = ACTIONS(3203), - [sym_number_literal] = ACTIONS(3205), - [anon_sym_L_SQUOTE] = ACTIONS(3205), - [anon_sym_u_SQUOTE] = ACTIONS(3205), - [anon_sym_U_SQUOTE] = ACTIONS(3205), - [anon_sym_u8_SQUOTE] = ACTIONS(3205), - [anon_sym_SQUOTE] = ACTIONS(3205), - [anon_sym_L_DQUOTE] = ACTIONS(3205), - [anon_sym_u_DQUOTE] = ACTIONS(3205), - [anon_sym_U_DQUOTE] = ACTIONS(3205), - [anon_sym_u8_DQUOTE] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(3205), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [anon_sym_NULL] = ACTIONS(3203), - [anon_sym_nullptr] = ACTIONS(3203), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3203), - [anon_sym_decltype] = ACTIONS(3203), - [anon_sym_virtual] = ACTIONS(3203), - [anon_sym_alignas] = ACTIONS(3203), - [anon_sym_explicit] = ACTIONS(3203), - [anon_sym_typename] = ACTIONS(3203), - [anon_sym_template] = ACTIONS(3203), - [anon_sym_operator] = ACTIONS(3203), - [anon_sym_try] = ACTIONS(3203), - [anon_sym_delete] = ACTIONS(3203), - [anon_sym_throw] = ACTIONS(3203), - [anon_sym_namespace] = ACTIONS(3203), - [anon_sym_using] = ACTIONS(3203), - [anon_sym_static_assert] = ACTIONS(3203), - [anon_sym_concept] = ACTIONS(3203), - [anon_sym_co_return] = ACTIONS(3203), - [anon_sym_co_yield] = ACTIONS(3203), - [anon_sym_R_DQUOTE] = ACTIONS(3205), - [anon_sym_LR_DQUOTE] = ACTIONS(3205), - [anon_sym_uR_DQUOTE] = ACTIONS(3205), - [anon_sym_UR_DQUOTE] = ACTIONS(3205), - [anon_sym_u8R_DQUOTE] = ACTIONS(3205), - [anon_sym_co_await] = ACTIONS(3203), - [anon_sym_new] = ACTIONS(3203), - [anon_sym_requires] = ACTIONS(3203), - [sym_this] = ACTIONS(3203), - }, - [1385] = { - [sym_identifier] = ACTIONS(3199), - [aux_sym_preproc_include_token1] = ACTIONS(3199), - [aux_sym_preproc_def_token1] = ACTIONS(3199), - [aux_sym_preproc_if_token1] = ACTIONS(3199), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3199), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3199), - [sym_preproc_directive] = ACTIONS(3199), - [anon_sym_LPAREN2] = ACTIONS(3201), - [anon_sym_BANG] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym___extension__] = ACTIONS(3199), - [anon_sym_typedef] = ACTIONS(3199), - [anon_sym_extern] = ACTIONS(3199), - [anon_sym___attribute__] = ACTIONS(3199), - [anon_sym_COLON_COLON] = ACTIONS(3201), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3201), - [anon_sym___declspec] = ACTIONS(3199), - [anon_sym___based] = ACTIONS(3199), - [anon_sym___cdecl] = ACTIONS(3199), - [anon_sym___clrcall] = ACTIONS(3199), - [anon_sym___stdcall] = ACTIONS(3199), - [anon_sym___fastcall] = ACTIONS(3199), - [anon_sym___thiscall] = ACTIONS(3199), - [anon_sym___vectorcall] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3201), - [anon_sym_signed] = ACTIONS(3199), - [anon_sym_unsigned] = ACTIONS(3199), - [anon_sym_long] = ACTIONS(3199), - [anon_sym_short] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_static] = ACTIONS(3199), - [anon_sym_register] = ACTIONS(3199), - [anon_sym_inline] = ACTIONS(3199), - [anon_sym___inline] = ACTIONS(3199), - [anon_sym___inline__] = ACTIONS(3199), - [anon_sym___forceinline] = ACTIONS(3199), - [anon_sym_thread_local] = ACTIONS(3199), - [anon_sym___thread] = ACTIONS(3199), - [anon_sym_const] = ACTIONS(3199), - [anon_sym_constexpr] = ACTIONS(3199), - [anon_sym_volatile] = ACTIONS(3199), - [anon_sym_restrict] = ACTIONS(3199), - [anon_sym___restrict__] = ACTIONS(3199), - [anon_sym__Atomic] = ACTIONS(3199), - [anon_sym__Noreturn] = ACTIONS(3199), - [anon_sym_noreturn] = ACTIONS(3199), - [anon_sym_mutable] = ACTIONS(3199), - [anon_sym_constinit] = ACTIONS(3199), - [anon_sym_consteval] = ACTIONS(3199), - [sym_primitive_type] = ACTIONS(3199), - [anon_sym_enum] = ACTIONS(3199), - [anon_sym_class] = ACTIONS(3199), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_union] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_switch] = ACTIONS(3199), - [anon_sym_case] = ACTIONS(3199), - [anon_sym_default] = ACTIONS(3199), - [anon_sym_while] = ACTIONS(3199), - [anon_sym_do] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3199), - [anon_sym_return] = ACTIONS(3199), - [anon_sym_break] = ACTIONS(3199), - [anon_sym_continue] = ACTIONS(3199), - [anon_sym_goto] = ACTIONS(3199), - [anon_sym_not] = ACTIONS(3199), - [anon_sym_compl] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_sizeof] = ACTIONS(3199), - [anon_sym___alignof__] = ACTIONS(3199), - [anon_sym___alignof] = ACTIONS(3199), - [anon_sym__alignof] = ACTIONS(3199), - [anon_sym_alignof] = ACTIONS(3199), - [anon_sym__Alignof] = ACTIONS(3199), - [anon_sym_offsetof] = ACTIONS(3199), - [anon_sym__Generic] = ACTIONS(3199), - [anon_sym_asm] = ACTIONS(3199), - [anon_sym___asm__] = ACTIONS(3199), - [sym_number_literal] = ACTIONS(3201), - [anon_sym_L_SQUOTE] = ACTIONS(3201), - [anon_sym_u_SQUOTE] = ACTIONS(3201), - [anon_sym_U_SQUOTE] = ACTIONS(3201), - [anon_sym_u8_SQUOTE] = ACTIONS(3201), - [anon_sym_SQUOTE] = ACTIONS(3201), - [anon_sym_L_DQUOTE] = ACTIONS(3201), - [anon_sym_u_DQUOTE] = ACTIONS(3201), - [anon_sym_U_DQUOTE] = ACTIONS(3201), - [anon_sym_u8_DQUOTE] = ACTIONS(3201), - [anon_sym_DQUOTE] = ACTIONS(3201), - [sym_true] = ACTIONS(3199), - [sym_false] = ACTIONS(3199), - [anon_sym_NULL] = ACTIONS(3199), - [anon_sym_nullptr] = ACTIONS(3199), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3199), - [anon_sym_decltype] = ACTIONS(3199), - [anon_sym_virtual] = ACTIONS(3199), - [anon_sym_alignas] = ACTIONS(3199), - [anon_sym_explicit] = ACTIONS(3199), - [anon_sym_typename] = ACTIONS(3199), - [anon_sym_template] = ACTIONS(3199), - [anon_sym_operator] = ACTIONS(3199), - [anon_sym_try] = ACTIONS(3199), - [anon_sym_delete] = ACTIONS(3199), - [anon_sym_throw] = ACTIONS(3199), - [anon_sym_namespace] = ACTIONS(3199), - [anon_sym_using] = ACTIONS(3199), - [anon_sym_static_assert] = ACTIONS(3199), - [anon_sym_concept] = ACTIONS(3199), - [anon_sym_co_return] = ACTIONS(3199), - [anon_sym_co_yield] = ACTIONS(3199), - [anon_sym_R_DQUOTE] = ACTIONS(3201), - [anon_sym_LR_DQUOTE] = ACTIONS(3201), - [anon_sym_uR_DQUOTE] = ACTIONS(3201), - [anon_sym_UR_DQUOTE] = ACTIONS(3201), - [anon_sym_u8R_DQUOTE] = ACTIONS(3201), - [anon_sym_co_await] = ACTIONS(3199), - [anon_sym_new] = ACTIONS(3199), - [anon_sym_requires] = ACTIONS(3199), - [sym_this] = ACTIONS(3199), - }, - [1386] = { - [sym_identifier] = ACTIONS(3195), - [aux_sym_preproc_include_token1] = ACTIONS(3195), - [aux_sym_preproc_def_token1] = ACTIONS(3195), - [aux_sym_preproc_if_token1] = ACTIONS(3195), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3195), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3195), - [sym_preproc_directive] = ACTIONS(3195), - [anon_sym_LPAREN2] = ACTIONS(3197), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_SEMI] = ACTIONS(3197), - [anon_sym___extension__] = ACTIONS(3195), - [anon_sym_typedef] = ACTIONS(3195), - [anon_sym_extern] = ACTIONS(3195), - [anon_sym___attribute__] = ACTIONS(3195), - [anon_sym_COLON_COLON] = ACTIONS(3197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3197), - [anon_sym___declspec] = ACTIONS(3195), - [anon_sym___based] = ACTIONS(3195), - [anon_sym___cdecl] = ACTIONS(3195), - [anon_sym___clrcall] = ACTIONS(3195), - [anon_sym___stdcall] = ACTIONS(3195), - [anon_sym___fastcall] = ACTIONS(3195), - [anon_sym___thiscall] = ACTIONS(3195), - [anon_sym___vectorcall] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_RBRACE] = ACTIONS(3197), - [anon_sym_signed] = ACTIONS(3195), - [anon_sym_unsigned] = ACTIONS(3195), - [anon_sym_long] = ACTIONS(3195), - [anon_sym_short] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_static] = ACTIONS(3195), - [anon_sym_register] = ACTIONS(3195), - [anon_sym_inline] = ACTIONS(3195), - [anon_sym___inline] = ACTIONS(3195), - [anon_sym___inline__] = ACTIONS(3195), - [anon_sym___forceinline] = ACTIONS(3195), - [anon_sym_thread_local] = ACTIONS(3195), - [anon_sym___thread] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_constexpr] = ACTIONS(3195), - [anon_sym_volatile] = ACTIONS(3195), - [anon_sym_restrict] = ACTIONS(3195), - [anon_sym___restrict__] = ACTIONS(3195), - [anon_sym__Atomic] = ACTIONS(3195), - [anon_sym__Noreturn] = ACTIONS(3195), - [anon_sym_noreturn] = ACTIONS(3195), - [anon_sym_mutable] = ACTIONS(3195), - [anon_sym_constinit] = ACTIONS(3195), - [anon_sym_consteval] = ACTIONS(3195), - [sym_primitive_type] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3195), - [anon_sym_class] = ACTIONS(3195), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_union] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_switch] = ACTIONS(3195), - [anon_sym_case] = ACTIONS(3195), - [anon_sym_default] = ACTIONS(3195), - [anon_sym_while] = ACTIONS(3195), - [anon_sym_do] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_goto] = ACTIONS(3195), - [anon_sym_not] = ACTIONS(3195), - [anon_sym_compl] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_sizeof] = ACTIONS(3195), - [anon_sym___alignof__] = ACTIONS(3195), - [anon_sym___alignof] = ACTIONS(3195), - [anon_sym__alignof] = ACTIONS(3195), - [anon_sym_alignof] = ACTIONS(3195), - [anon_sym__Alignof] = ACTIONS(3195), - [anon_sym_offsetof] = ACTIONS(3195), - [anon_sym__Generic] = ACTIONS(3195), - [anon_sym_asm] = ACTIONS(3195), - [anon_sym___asm__] = ACTIONS(3195), - [sym_number_literal] = ACTIONS(3197), - [anon_sym_L_SQUOTE] = ACTIONS(3197), - [anon_sym_u_SQUOTE] = ACTIONS(3197), - [anon_sym_U_SQUOTE] = ACTIONS(3197), - [anon_sym_u8_SQUOTE] = ACTIONS(3197), - [anon_sym_SQUOTE] = ACTIONS(3197), - [anon_sym_L_DQUOTE] = ACTIONS(3197), - [anon_sym_u_DQUOTE] = ACTIONS(3197), - [anon_sym_U_DQUOTE] = ACTIONS(3197), - [anon_sym_u8_DQUOTE] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3197), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [anon_sym_NULL] = ACTIONS(3195), - [anon_sym_nullptr] = ACTIONS(3195), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3195), - [anon_sym_decltype] = ACTIONS(3195), - [anon_sym_virtual] = ACTIONS(3195), - [anon_sym_alignas] = ACTIONS(3195), - [anon_sym_explicit] = ACTIONS(3195), - [anon_sym_typename] = ACTIONS(3195), - [anon_sym_template] = ACTIONS(3195), - [anon_sym_operator] = ACTIONS(3195), - [anon_sym_try] = ACTIONS(3195), - [anon_sym_delete] = ACTIONS(3195), - [anon_sym_throw] = ACTIONS(3195), - [anon_sym_namespace] = ACTIONS(3195), - [anon_sym_using] = ACTIONS(3195), - [anon_sym_static_assert] = ACTIONS(3195), - [anon_sym_concept] = ACTIONS(3195), - [anon_sym_co_return] = ACTIONS(3195), - [anon_sym_co_yield] = ACTIONS(3195), - [anon_sym_R_DQUOTE] = ACTIONS(3197), - [anon_sym_LR_DQUOTE] = ACTIONS(3197), - [anon_sym_uR_DQUOTE] = ACTIONS(3197), - [anon_sym_UR_DQUOTE] = ACTIONS(3197), - [anon_sym_u8R_DQUOTE] = ACTIONS(3197), - [anon_sym_co_await] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3195), - [anon_sym_requires] = ACTIONS(3195), - [sym_this] = ACTIONS(3195), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, - [1387] = { - [sym_preproc_def] = STATE(1396), - [sym_preproc_function_def] = STATE(1396), - [sym_preproc_call] = STATE(1396), - [sym_preproc_if_in_field_declaration_list] = STATE(1396), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1396), - [sym_type_definition] = STATE(1396), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6387), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1396), - [sym_field_declaration] = STATE(1396), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1396), - [sym_operator_cast] = STATE(7505), - [sym_inline_method_definition] = STATE(1396), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(1396), - [sym_operator_cast_declaration] = STATE(1396), - [sym_constructor_or_destructor_definition] = STATE(1396), - [sym_constructor_or_destructor_declaration] = STATE(1396), - [sym_friend_declaration] = STATE(1396), - [sym_access_specifier] = STATE(9485), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1396), - [sym_alias_declaration] = STATE(1396), - [sym_static_assert_declaration] = STATE(1396), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1396), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3686), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3690), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), + [1446] = { + [sym__expression] = STATE(4253), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(4495), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3698), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1388] = { - [sym_preproc_def] = STATE(1401), - [sym_preproc_function_def] = STATE(1401), - [sym_preproc_call] = STATE(1401), - [sym_preproc_if_in_field_declaration_list] = STATE(1401), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1401), - [sym_type_definition] = STATE(1401), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6304), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6992), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1401), - [sym_field_declaration] = STATE(1401), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2403), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1401), - [sym_operator_cast] = STATE(7452), - [sym_inline_method_definition] = STATE(1401), - [sym__constructor_specifiers] = STATE(2403), - [sym_operator_cast_definition] = STATE(1401), - [sym_operator_cast_declaration] = STATE(1401), - [sym_constructor_or_destructor_definition] = STATE(1401), - [sym_constructor_or_destructor_declaration] = STATE(1401), - [sym_friend_declaration] = STATE(1401), - [sym_access_specifier] = STATE(8944), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1401), - [sym_alias_declaration] = STATE(1401), - [sym_static_assert_declaration] = STATE(1401), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7452), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1401), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2403), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3700), - [aux_sym_preproc_if_token1] = ACTIONS(3702), - [aux_sym_preproc_if_token2] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3706), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3706), - [sym_preproc_directive] = ACTIONS(3708), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3710), - [anon_sym_typedef] = ACTIONS(3712), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), + [1447] = { + [sym__expression] = STATE(3819), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3714), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3716), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3718), - [anon_sym_static_assert] = ACTIONS(3720), - }, - [1389] = { - [ts_builtin_sym_end] = ACTIONS(3430), - [sym_identifier] = ACTIONS(3428), - [aux_sym_preproc_include_token1] = ACTIONS(3428), - [aux_sym_preproc_def_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3428), - [sym_preproc_directive] = ACTIONS(3428), - [anon_sym_LPAREN2] = ACTIONS(3430), - [anon_sym_BANG] = ACTIONS(3430), - [anon_sym_TILDE] = ACTIONS(3430), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_STAR] = ACTIONS(3430), - [anon_sym_AMP_AMP] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym___extension__] = ACTIONS(3428), - [anon_sym_typedef] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym___attribute__] = ACTIONS(3428), - [anon_sym_COLON_COLON] = ACTIONS(3430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3430), - [anon_sym___declspec] = ACTIONS(3428), - [anon_sym___based] = ACTIONS(3428), - [anon_sym___cdecl] = ACTIONS(3428), - [anon_sym___clrcall] = ACTIONS(3428), - [anon_sym___stdcall] = ACTIONS(3428), - [anon_sym___fastcall] = ACTIONS(3428), - [anon_sym___thiscall] = ACTIONS(3428), - [anon_sym___vectorcall] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3430), - [anon_sym_signed] = ACTIONS(3428), - [anon_sym_unsigned] = ACTIONS(3428), - [anon_sym_long] = ACTIONS(3428), - [anon_sym_short] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_register] = ACTIONS(3428), - [anon_sym_inline] = ACTIONS(3428), - [anon_sym___inline] = ACTIONS(3428), - [anon_sym___inline__] = ACTIONS(3428), - [anon_sym___forceinline] = ACTIONS(3428), - [anon_sym_thread_local] = ACTIONS(3428), - [anon_sym___thread] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_constexpr] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_restrict] = ACTIONS(3428), - [anon_sym___restrict__] = ACTIONS(3428), - [anon_sym__Atomic] = ACTIONS(3428), - [anon_sym__Noreturn] = ACTIONS(3428), - [anon_sym_noreturn] = ACTIONS(3428), - [anon_sym_mutable] = ACTIONS(3428), - [anon_sym_constinit] = ACTIONS(3428), - [anon_sym_consteval] = ACTIONS(3428), - [sym_primitive_type] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_union] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_switch] = ACTIONS(3428), - [anon_sym_case] = ACTIONS(3428), - [anon_sym_default] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_break] = ACTIONS(3428), - [anon_sym_continue] = ACTIONS(3428), - [anon_sym_goto] = ACTIONS(3428), - [anon_sym_not] = ACTIONS(3428), - [anon_sym_compl] = ACTIONS(3428), - [anon_sym_DASH_DASH] = ACTIONS(3430), - [anon_sym_PLUS_PLUS] = ACTIONS(3430), - [anon_sym_sizeof] = ACTIONS(3428), - [anon_sym___alignof__] = ACTIONS(3428), - [anon_sym___alignof] = ACTIONS(3428), - [anon_sym__alignof] = ACTIONS(3428), - [anon_sym_alignof] = ACTIONS(3428), - [anon_sym__Alignof] = ACTIONS(3428), - [anon_sym_offsetof] = ACTIONS(3428), - [anon_sym__Generic] = ACTIONS(3428), - [anon_sym_asm] = ACTIONS(3428), - [anon_sym___asm__] = ACTIONS(3428), - [sym_number_literal] = ACTIONS(3430), - [anon_sym_L_SQUOTE] = ACTIONS(3430), - [anon_sym_u_SQUOTE] = ACTIONS(3430), - [anon_sym_U_SQUOTE] = ACTIONS(3430), - [anon_sym_u8_SQUOTE] = ACTIONS(3430), - [anon_sym_SQUOTE] = ACTIONS(3430), - [anon_sym_L_DQUOTE] = ACTIONS(3430), - [anon_sym_u_DQUOTE] = ACTIONS(3430), - [anon_sym_U_DQUOTE] = ACTIONS(3430), - [anon_sym_u8_DQUOTE] = ACTIONS(3430), - [anon_sym_DQUOTE] = ACTIONS(3430), - [sym_true] = ACTIONS(3428), - [sym_false] = ACTIONS(3428), - [anon_sym_NULL] = ACTIONS(3428), - [anon_sym_nullptr] = ACTIONS(3428), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3428), - [anon_sym_decltype] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_alignas] = ACTIONS(3428), - [anon_sym_explicit] = ACTIONS(3428), - [anon_sym_typename] = ACTIONS(3428), - [anon_sym_template] = ACTIONS(3428), - [anon_sym_operator] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_delete] = ACTIONS(3428), - [anon_sym_throw] = ACTIONS(3428), - [anon_sym_namespace] = ACTIONS(3428), - [anon_sym_using] = ACTIONS(3428), - [anon_sym_static_assert] = ACTIONS(3428), - [anon_sym_concept] = ACTIONS(3428), - [anon_sym_co_return] = ACTIONS(3428), - [anon_sym_co_yield] = ACTIONS(3428), - [anon_sym_R_DQUOTE] = ACTIONS(3430), - [anon_sym_LR_DQUOTE] = ACTIONS(3430), - [anon_sym_uR_DQUOTE] = ACTIONS(3430), - [anon_sym_UR_DQUOTE] = ACTIONS(3430), - [anon_sym_u8R_DQUOTE] = ACTIONS(3430), - [anon_sym_co_await] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_requires] = ACTIONS(3428), - [sym_this] = ACTIONS(3428), - }, - [1390] = { - [ts_builtin_sym_end] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3436), - [aux_sym_preproc_include_token1] = ACTIONS(3436), - [aux_sym_preproc_def_token1] = ACTIONS(3436), - [aux_sym_preproc_if_token1] = ACTIONS(3436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3436), - [sym_preproc_directive] = ACTIONS(3436), - [anon_sym_LPAREN2] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3438), - [anon_sym_TILDE] = ACTIONS(3438), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_AMP] = ACTIONS(3436), - [anon_sym___extension__] = ACTIONS(3436), - [anon_sym_typedef] = ACTIONS(3436), - [anon_sym_extern] = ACTIONS(3436), - [anon_sym___attribute__] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3438), - [anon_sym___declspec] = ACTIONS(3436), - [anon_sym___based] = ACTIONS(3436), - [anon_sym___cdecl] = ACTIONS(3436), - [anon_sym___clrcall] = ACTIONS(3436), - [anon_sym___stdcall] = ACTIONS(3436), - [anon_sym___fastcall] = ACTIONS(3436), - [anon_sym___thiscall] = ACTIONS(3436), - [anon_sym___vectorcall] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_signed] = ACTIONS(3436), - [anon_sym_unsigned] = ACTIONS(3436), - [anon_sym_long] = ACTIONS(3436), - [anon_sym_short] = ACTIONS(3436), - [anon_sym_LBRACK] = ACTIONS(3436), - [anon_sym_static] = ACTIONS(3436), - [anon_sym_register] = ACTIONS(3436), - [anon_sym_inline] = ACTIONS(3436), - [anon_sym___inline] = ACTIONS(3436), - [anon_sym___inline__] = ACTIONS(3436), - [anon_sym___forceinline] = ACTIONS(3436), - [anon_sym_thread_local] = ACTIONS(3436), - [anon_sym___thread] = ACTIONS(3436), - [anon_sym_const] = ACTIONS(3436), - [anon_sym_constexpr] = ACTIONS(3436), - [anon_sym_volatile] = ACTIONS(3436), - [anon_sym_restrict] = ACTIONS(3436), - [anon_sym___restrict__] = ACTIONS(3436), - [anon_sym__Atomic] = ACTIONS(3436), - [anon_sym__Noreturn] = ACTIONS(3436), - [anon_sym_noreturn] = ACTIONS(3436), - [anon_sym_mutable] = ACTIONS(3436), - [anon_sym_constinit] = ACTIONS(3436), - [anon_sym_consteval] = ACTIONS(3436), - [sym_primitive_type] = ACTIONS(3436), - [anon_sym_enum] = ACTIONS(3436), - [anon_sym_class] = ACTIONS(3436), - [anon_sym_struct] = ACTIONS(3436), - [anon_sym_union] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_switch] = ACTIONS(3436), - [anon_sym_case] = ACTIONS(3436), - [anon_sym_default] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_do] = ACTIONS(3436), - [anon_sym_for] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_goto] = ACTIONS(3436), - [anon_sym_not] = ACTIONS(3436), - [anon_sym_compl] = ACTIONS(3436), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_sizeof] = ACTIONS(3436), - [anon_sym___alignof__] = ACTIONS(3436), - [anon_sym___alignof] = ACTIONS(3436), - [anon_sym__alignof] = ACTIONS(3436), - [anon_sym_alignof] = ACTIONS(3436), - [anon_sym__Alignof] = ACTIONS(3436), - [anon_sym_offsetof] = ACTIONS(3436), - [anon_sym__Generic] = ACTIONS(3436), - [anon_sym_asm] = ACTIONS(3436), - [anon_sym___asm__] = ACTIONS(3436), - [sym_number_literal] = ACTIONS(3438), - [anon_sym_L_SQUOTE] = ACTIONS(3438), - [anon_sym_u_SQUOTE] = ACTIONS(3438), - [anon_sym_U_SQUOTE] = ACTIONS(3438), - [anon_sym_u8_SQUOTE] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(3438), - [anon_sym_L_DQUOTE] = ACTIONS(3438), - [anon_sym_u_DQUOTE] = ACTIONS(3438), - [anon_sym_U_DQUOTE] = ACTIONS(3438), - [anon_sym_u8_DQUOTE] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(3438), - [sym_true] = ACTIONS(3436), - [sym_false] = ACTIONS(3436), - [anon_sym_NULL] = ACTIONS(3436), - [anon_sym_nullptr] = ACTIONS(3436), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3436), - [anon_sym_decltype] = ACTIONS(3436), - [anon_sym_virtual] = ACTIONS(3436), - [anon_sym_alignas] = ACTIONS(3436), - [anon_sym_explicit] = ACTIONS(3436), - [anon_sym_typename] = ACTIONS(3436), - [anon_sym_template] = ACTIONS(3436), - [anon_sym_operator] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_delete] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_namespace] = ACTIONS(3436), - [anon_sym_using] = ACTIONS(3436), - [anon_sym_static_assert] = ACTIONS(3436), - [anon_sym_concept] = ACTIONS(3436), - [anon_sym_co_return] = ACTIONS(3436), - [anon_sym_co_yield] = ACTIONS(3436), - [anon_sym_R_DQUOTE] = ACTIONS(3438), - [anon_sym_LR_DQUOTE] = ACTIONS(3438), - [anon_sym_uR_DQUOTE] = ACTIONS(3438), - [anon_sym_UR_DQUOTE] = ACTIONS(3438), - [anon_sym_u8R_DQUOTE] = ACTIONS(3438), - [anon_sym_co_await] = ACTIONS(3436), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_requires] = ACTIONS(3436), - [sym_this] = ACTIONS(3436), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1391] = { - [sym_preproc_def] = STATE(1396), - [sym_preproc_function_def] = STATE(1396), - [sym_preproc_call] = STATE(1396), - [sym_preproc_if_in_field_declaration_list] = STATE(1396), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1396), - [sym_type_definition] = STATE(1396), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6387), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1396), - [sym_field_declaration] = STATE(1396), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1396), - [sym_operator_cast] = STATE(7505), - [sym_inline_method_definition] = STATE(1396), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(1396), - [sym_operator_cast_declaration] = STATE(1396), - [sym_constructor_or_destructor_definition] = STATE(1396), - [sym_constructor_or_destructor_declaration] = STATE(1396), - [sym_friend_declaration] = STATE(1396), - [sym_access_specifier] = STATE(9485), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1396), - [sym_alias_declaration] = STATE(1396), - [sym_static_assert_declaration] = STATE(1396), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1396), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3686), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3722), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), + [1448] = { + [sym__expression] = STATE(4135), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3698), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1392] = { - [sym_preproc_def] = STATE(1412), - [sym_preproc_function_def] = STATE(1412), - [sym_preproc_call] = STATE(1412), - [sym_preproc_if_in_field_declaration_list] = STATE(1412), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1412), - [sym_type_definition] = STATE(1412), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6387), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1412), - [sym_field_declaration] = STATE(1412), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1412), - [sym_operator_cast] = STATE(7505), - [sym_inline_method_definition] = STATE(1412), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(1412), - [sym_operator_cast_declaration] = STATE(1412), - [sym_constructor_or_destructor_definition] = STATE(1412), - [sym_constructor_or_destructor_declaration] = STATE(1412), - [sym_friend_declaration] = STATE(1412), - [sym_access_specifier] = STATE(9485), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1412), - [sym_alias_declaration] = STATE(1412), - [sym_static_assert_declaration] = STATE(1412), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1412), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3686), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3724), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), + [1449] = { + [sym__expression] = STATE(4089), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3698), - }, - [1393] = { - [ts_builtin_sym_end] = ACTIONS(3344), - [sym_identifier] = ACTIONS(3342), - [aux_sym_preproc_include_token1] = ACTIONS(3342), - [aux_sym_preproc_def_token1] = ACTIONS(3342), - [aux_sym_preproc_if_token1] = ACTIONS(3342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3342), - [sym_preproc_directive] = ACTIONS(3342), - [anon_sym_LPAREN2] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3342), - [anon_sym_STAR] = ACTIONS(3344), - [anon_sym_AMP_AMP] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3342), - [anon_sym___extension__] = ACTIONS(3342), - [anon_sym_typedef] = ACTIONS(3342), - [anon_sym_extern] = ACTIONS(3342), - [anon_sym___attribute__] = ACTIONS(3342), - [anon_sym_COLON_COLON] = ACTIONS(3344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3344), - [anon_sym___declspec] = ACTIONS(3342), - [anon_sym___based] = ACTIONS(3342), - [anon_sym___cdecl] = ACTIONS(3342), - [anon_sym___clrcall] = ACTIONS(3342), - [anon_sym___stdcall] = ACTIONS(3342), - [anon_sym___fastcall] = ACTIONS(3342), - [anon_sym___thiscall] = ACTIONS(3342), - [anon_sym___vectorcall] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_signed] = ACTIONS(3342), - [anon_sym_unsigned] = ACTIONS(3342), - [anon_sym_long] = ACTIONS(3342), - [anon_sym_short] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_static] = ACTIONS(3342), - [anon_sym_register] = ACTIONS(3342), - [anon_sym_inline] = ACTIONS(3342), - [anon_sym___inline] = ACTIONS(3342), - [anon_sym___inline__] = ACTIONS(3342), - [anon_sym___forceinline] = ACTIONS(3342), - [anon_sym_thread_local] = ACTIONS(3342), - [anon_sym___thread] = ACTIONS(3342), - [anon_sym_const] = ACTIONS(3342), - [anon_sym_constexpr] = ACTIONS(3342), - [anon_sym_volatile] = ACTIONS(3342), - [anon_sym_restrict] = ACTIONS(3342), - [anon_sym___restrict__] = ACTIONS(3342), - [anon_sym__Atomic] = ACTIONS(3342), - [anon_sym__Noreturn] = ACTIONS(3342), - [anon_sym_noreturn] = ACTIONS(3342), - [anon_sym_mutable] = ACTIONS(3342), - [anon_sym_constinit] = ACTIONS(3342), - [anon_sym_consteval] = ACTIONS(3342), - [sym_primitive_type] = ACTIONS(3342), - [anon_sym_enum] = ACTIONS(3342), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3342), - [anon_sym_union] = ACTIONS(3342), - [anon_sym_if] = ACTIONS(3342), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3342), - [anon_sym_default] = ACTIONS(3342), - [anon_sym_while] = ACTIONS(3342), - [anon_sym_do] = ACTIONS(3342), - [anon_sym_for] = ACTIONS(3342), - [anon_sym_return] = ACTIONS(3342), - [anon_sym_break] = ACTIONS(3342), - [anon_sym_continue] = ACTIONS(3342), - [anon_sym_goto] = ACTIONS(3342), - [anon_sym_not] = ACTIONS(3342), - [anon_sym_compl] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_sizeof] = ACTIONS(3342), - [anon_sym___alignof__] = ACTIONS(3342), - [anon_sym___alignof] = ACTIONS(3342), - [anon_sym__alignof] = ACTIONS(3342), - [anon_sym_alignof] = ACTIONS(3342), - [anon_sym__Alignof] = ACTIONS(3342), - [anon_sym_offsetof] = ACTIONS(3342), - [anon_sym__Generic] = ACTIONS(3342), - [anon_sym_asm] = ACTIONS(3342), - [anon_sym___asm__] = ACTIONS(3342), - [sym_number_literal] = ACTIONS(3344), - [anon_sym_L_SQUOTE] = ACTIONS(3344), - [anon_sym_u_SQUOTE] = ACTIONS(3344), - [anon_sym_U_SQUOTE] = ACTIONS(3344), - [anon_sym_u8_SQUOTE] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3344), - [anon_sym_L_DQUOTE] = ACTIONS(3344), - [anon_sym_u_DQUOTE] = ACTIONS(3344), - [anon_sym_U_DQUOTE] = ACTIONS(3344), - [anon_sym_u8_DQUOTE] = ACTIONS(3344), - [anon_sym_DQUOTE] = ACTIONS(3344), - [sym_true] = ACTIONS(3342), - [sym_false] = ACTIONS(3342), - [anon_sym_NULL] = ACTIONS(3342), - [anon_sym_nullptr] = ACTIONS(3342), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3342), - [anon_sym_decltype] = ACTIONS(3342), - [anon_sym_virtual] = ACTIONS(3342), - [anon_sym_alignas] = ACTIONS(3342), - [anon_sym_explicit] = ACTIONS(3342), - [anon_sym_typename] = ACTIONS(3342), - [anon_sym_template] = ACTIONS(3342), - [anon_sym_operator] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(3342), - [anon_sym_delete] = ACTIONS(3342), - [anon_sym_throw] = ACTIONS(3342), - [anon_sym_namespace] = ACTIONS(3342), - [anon_sym_using] = ACTIONS(3342), - [anon_sym_static_assert] = ACTIONS(3342), - [anon_sym_concept] = ACTIONS(3342), - [anon_sym_co_return] = ACTIONS(3342), - [anon_sym_co_yield] = ACTIONS(3342), - [anon_sym_R_DQUOTE] = ACTIONS(3344), - [anon_sym_LR_DQUOTE] = ACTIONS(3344), - [anon_sym_uR_DQUOTE] = ACTIONS(3344), - [anon_sym_UR_DQUOTE] = ACTIONS(3344), - [anon_sym_u8R_DQUOTE] = ACTIONS(3344), - [anon_sym_co_await] = ACTIONS(3342), - [anon_sym_new] = ACTIONS(3342), - [anon_sym_requires] = ACTIONS(3342), - [sym_this] = ACTIONS(3342), - }, - [1394] = { - [ts_builtin_sym_end] = ACTIONS(3338), - [sym_identifier] = ACTIONS(3336), - [aux_sym_preproc_include_token1] = ACTIONS(3336), - [aux_sym_preproc_def_token1] = ACTIONS(3336), - [aux_sym_preproc_if_token1] = ACTIONS(3336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3336), - [sym_preproc_directive] = ACTIONS(3336), - [anon_sym_LPAREN2] = ACTIONS(3338), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3338), - [anon_sym_AMP_AMP] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym___extension__] = ACTIONS(3336), - [anon_sym_typedef] = ACTIONS(3336), - [anon_sym_extern] = ACTIONS(3336), - [anon_sym___attribute__] = ACTIONS(3336), - [anon_sym_COLON_COLON] = ACTIONS(3338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3338), - [anon_sym___declspec] = ACTIONS(3336), - [anon_sym___based] = ACTIONS(3336), - [anon_sym___cdecl] = ACTIONS(3336), - [anon_sym___clrcall] = ACTIONS(3336), - [anon_sym___stdcall] = ACTIONS(3336), - [anon_sym___fastcall] = ACTIONS(3336), - [anon_sym___thiscall] = ACTIONS(3336), - [anon_sym___vectorcall] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_register] = ACTIONS(3336), - [anon_sym_inline] = ACTIONS(3336), - [anon_sym___inline] = ACTIONS(3336), - [anon_sym___inline__] = ACTIONS(3336), - [anon_sym___forceinline] = ACTIONS(3336), - [anon_sym_thread_local] = ACTIONS(3336), - [anon_sym___thread] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_constexpr] = ACTIONS(3336), - [anon_sym_volatile] = ACTIONS(3336), - [anon_sym_restrict] = ACTIONS(3336), - [anon_sym___restrict__] = ACTIONS(3336), - [anon_sym__Atomic] = ACTIONS(3336), - [anon_sym__Noreturn] = ACTIONS(3336), - [anon_sym_noreturn] = ACTIONS(3336), - [anon_sym_mutable] = ACTIONS(3336), - [anon_sym_constinit] = ACTIONS(3336), - [anon_sym_consteval] = ACTIONS(3336), - [sym_primitive_type] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_union] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_goto] = ACTIONS(3336), - [anon_sym_not] = ACTIONS(3336), - [anon_sym_compl] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_sizeof] = ACTIONS(3336), - [anon_sym___alignof__] = ACTIONS(3336), - [anon_sym___alignof] = ACTIONS(3336), - [anon_sym__alignof] = ACTIONS(3336), - [anon_sym_alignof] = ACTIONS(3336), - [anon_sym__Alignof] = ACTIONS(3336), - [anon_sym_offsetof] = ACTIONS(3336), - [anon_sym__Generic] = ACTIONS(3336), - [anon_sym_asm] = ACTIONS(3336), - [anon_sym___asm__] = ACTIONS(3336), - [sym_number_literal] = ACTIONS(3338), - [anon_sym_L_SQUOTE] = ACTIONS(3338), - [anon_sym_u_SQUOTE] = ACTIONS(3338), - [anon_sym_U_SQUOTE] = ACTIONS(3338), - [anon_sym_u8_SQUOTE] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [anon_sym_L_DQUOTE] = ACTIONS(3338), - [anon_sym_u_DQUOTE] = ACTIONS(3338), - [anon_sym_U_DQUOTE] = ACTIONS(3338), - [anon_sym_u8_DQUOTE] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [anon_sym_NULL] = ACTIONS(3336), - [anon_sym_nullptr] = ACTIONS(3336), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3336), - [anon_sym_decltype] = ACTIONS(3336), - [anon_sym_virtual] = ACTIONS(3336), - [anon_sym_alignas] = ACTIONS(3336), - [anon_sym_explicit] = ACTIONS(3336), - [anon_sym_typename] = ACTIONS(3336), - [anon_sym_template] = ACTIONS(3336), - [anon_sym_operator] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_static_assert] = ACTIONS(3336), - [anon_sym_concept] = ACTIONS(3336), - [anon_sym_co_return] = ACTIONS(3336), - [anon_sym_co_yield] = ACTIONS(3336), - [anon_sym_R_DQUOTE] = ACTIONS(3338), - [anon_sym_LR_DQUOTE] = ACTIONS(3338), - [anon_sym_uR_DQUOTE] = ACTIONS(3338), - [anon_sym_UR_DQUOTE] = ACTIONS(3338), - [anon_sym_u8R_DQUOTE] = ACTIONS(3338), - [anon_sym_co_await] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_requires] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - }, - [1395] = { - [ts_builtin_sym_end] = ACTIONS(3209), - [sym_identifier] = ACTIONS(3207), - [aux_sym_preproc_include_token1] = ACTIONS(3207), - [aux_sym_preproc_def_token1] = ACTIONS(3207), - [aux_sym_preproc_if_token1] = ACTIONS(3207), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3207), - [sym_preproc_directive] = ACTIONS(3207), - [anon_sym_LPAREN2] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_AMP_AMP] = ACTIONS(3209), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym___extension__] = ACTIONS(3207), - [anon_sym_typedef] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(3207), - [anon_sym___attribute__] = ACTIONS(3207), - [anon_sym_COLON_COLON] = ACTIONS(3209), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3209), - [anon_sym___declspec] = ACTIONS(3207), - [anon_sym___based] = ACTIONS(3207), - [anon_sym___cdecl] = ACTIONS(3207), - [anon_sym___clrcall] = ACTIONS(3207), - [anon_sym___stdcall] = ACTIONS(3207), - [anon_sym___fastcall] = ACTIONS(3207), - [anon_sym___thiscall] = ACTIONS(3207), - [anon_sym___vectorcall] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_signed] = ACTIONS(3207), - [anon_sym_unsigned] = ACTIONS(3207), - [anon_sym_long] = ACTIONS(3207), - [anon_sym_short] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_static] = ACTIONS(3207), - [anon_sym_register] = ACTIONS(3207), - [anon_sym_inline] = ACTIONS(3207), - [anon_sym___inline] = ACTIONS(3207), - [anon_sym___inline__] = ACTIONS(3207), - [anon_sym___forceinline] = ACTIONS(3207), - [anon_sym_thread_local] = ACTIONS(3207), - [anon_sym___thread] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_constexpr] = ACTIONS(3207), - [anon_sym_volatile] = ACTIONS(3207), - [anon_sym_restrict] = ACTIONS(3207), - [anon_sym___restrict__] = ACTIONS(3207), - [anon_sym__Atomic] = ACTIONS(3207), - [anon_sym__Noreturn] = ACTIONS(3207), - [anon_sym_noreturn] = ACTIONS(3207), - [anon_sym_mutable] = ACTIONS(3207), - [anon_sym_constinit] = ACTIONS(3207), - [anon_sym_consteval] = ACTIONS(3207), - [sym_primitive_type] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [anon_sym_class] = ACTIONS(3207), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_union] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_switch] = ACTIONS(3207), - [anon_sym_case] = ACTIONS(3207), - [anon_sym_default] = ACTIONS(3207), - [anon_sym_while] = ACTIONS(3207), - [anon_sym_do] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_goto] = ACTIONS(3207), - [anon_sym_not] = ACTIONS(3207), - [anon_sym_compl] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_sizeof] = ACTIONS(3207), - [anon_sym___alignof__] = ACTIONS(3207), - [anon_sym___alignof] = ACTIONS(3207), - [anon_sym__alignof] = ACTIONS(3207), - [anon_sym_alignof] = ACTIONS(3207), - [anon_sym__Alignof] = ACTIONS(3207), - [anon_sym_offsetof] = ACTIONS(3207), - [anon_sym__Generic] = ACTIONS(3207), - [anon_sym_asm] = ACTIONS(3207), - [anon_sym___asm__] = ACTIONS(3207), - [sym_number_literal] = ACTIONS(3209), - [anon_sym_L_SQUOTE] = ACTIONS(3209), - [anon_sym_u_SQUOTE] = ACTIONS(3209), - [anon_sym_U_SQUOTE] = ACTIONS(3209), - [anon_sym_u8_SQUOTE] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3209), - [anon_sym_L_DQUOTE] = ACTIONS(3209), - [anon_sym_u_DQUOTE] = ACTIONS(3209), - [anon_sym_U_DQUOTE] = ACTIONS(3209), - [anon_sym_u8_DQUOTE] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(3209), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [anon_sym_NULL] = ACTIONS(3207), - [anon_sym_nullptr] = ACTIONS(3207), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3207), - [anon_sym_decltype] = ACTIONS(3207), - [anon_sym_virtual] = ACTIONS(3207), - [anon_sym_alignas] = ACTIONS(3207), - [anon_sym_explicit] = ACTIONS(3207), - [anon_sym_typename] = ACTIONS(3207), - [anon_sym_template] = ACTIONS(3207), - [anon_sym_operator] = ACTIONS(3207), - [anon_sym_try] = ACTIONS(3207), - [anon_sym_delete] = ACTIONS(3207), - [anon_sym_throw] = ACTIONS(3207), - [anon_sym_namespace] = ACTIONS(3207), - [anon_sym_using] = ACTIONS(3207), - [anon_sym_static_assert] = ACTIONS(3207), - [anon_sym_concept] = ACTIONS(3207), - [anon_sym_co_return] = ACTIONS(3207), - [anon_sym_co_yield] = ACTIONS(3207), - [anon_sym_R_DQUOTE] = ACTIONS(3209), - [anon_sym_LR_DQUOTE] = ACTIONS(3209), - [anon_sym_uR_DQUOTE] = ACTIONS(3209), - [anon_sym_UR_DQUOTE] = ACTIONS(3209), - [anon_sym_u8R_DQUOTE] = ACTIONS(3209), - [anon_sym_co_await] = ACTIONS(3207), - [anon_sym_new] = ACTIONS(3207), - [anon_sym_requires] = ACTIONS(3207), - [sym_this] = ACTIONS(3207), - }, - [1396] = { - [sym_preproc_def] = STATE(1396), - [sym_preproc_function_def] = STATE(1396), - [sym_preproc_call] = STATE(1396), - [sym_preproc_if_in_field_declaration_list] = STATE(1396), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1396), - [sym_type_definition] = STATE(1396), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6387), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1396), - [sym_field_declaration] = STATE(1396), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1396), - [sym_operator_cast] = STATE(7505), - [sym_inline_method_definition] = STATE(1396), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(1396), - [sym_operator_cast_declaration] = STATE(1396), - [sym_constructor_or_destructor_definition] = STATE(1396), - [sym_constructor_or_destructor_declaration] = STATE(1396), - [sym_friend_declaration] = STATE(1396), - [sym_access_specifier] = STATE(9485), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1396), - [sym_alias_declaration] = STATE(1396), - [sym_static_assert_declaration] = STATE(1396), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1396), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(3518), - [aux_sym_preproc_def_token1] = ACTIONS(3726), - [aux_sym_preproc_if_token1] = ACTIONS(3729), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3732), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3732), - [sym_preproc_directive] = ACTIONS(3735), - [anon_sym_LPAREN2] = ACTIONS(3535), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3541), - [anon_sym_AMP_AMP] = ACTIONS(3544), - [anon_sym_AMP] = ACTIONS(3547), - [anon_sym___extension__] = ACTIONS(3738), - [anon_sym_typedef] = ACTIONS(3741), - [anon_sym_extern] = ACTIONS(3556), - [anon_sym___attribute__] = ACTIONS(3559), - [anon_sym_COLON_COLON] = ACTIONS(3562), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3565), - [anon_sym___declspec] = ACTIONS(3568), - [anon_sym___based] = ACTIONS(3571), - [anon_sym_RBRACE] = ACTIONS(3744), - [anon_sym_signed] = ACTIONS(3574), - [anon_sym_unsigned] = ACTIONS(3574), - [anon_sym_long] = ACTIONS(3574), - [anon_sym_short] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3577), - [anon_sym_static] = ACTIONS(3556), - [anon_sym_register] = ACTIONS(3556), - [anon_sym_inline] = ACTIONS(3556), - [anon_sym___inline] = ACTIONS(3556), - [anon_sym___inline__] = ACTIONS(3556), - [anon_sym___forceinline] = ACTIONS(3556), - [anon_sym_thread_local] = ACTIONS(3556), - [anon_sym___thread] = ACTIONS(3556), - [anon_sym_const] = ACTIONS(3580), - [anon_sym_constexpr] = ACTIONS(3580), - [anon_sym_volatile] = ACTIONS(3580), - [anon_sym_restrict] = ACTIONS(3580), - [anon_sym___restrict__] = ACTIONS(3580), - [anon_sym__Atomic] = ACTIONS(3580), - [anon_sym__Noreturn] = ACTIONS(3580), - [anon_sym_noreturn] = ACTIONS(3580), - [anon_sym_mutable] = ACTIONS(3580), - [anon_sym_constinit] = ACTIONS(3580), - [anon_sym_consteval] = ACTIONS(3580), - [sym_primitive_type] = ACTIONS(3583), - [anon_sym_enum] = ACTIONS(3586), - [anon_sym_class] = ACTIONS(3589), - [anon_sym_struct] = ACTIONS(3592), - [anon_sym_union] = ACTIONS(3595), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3598), - [anon_sym_decltype] = ACTIONS(3601), - [anon_sym_virtual] = ACTIONS(3604), - [anon_sym_alignas] = ACTIONS(3607), - [anon_sym_explicit] = ACTIONS(3610), - [anon_sym_typename] = ACTIONS(3613), - [anon_sym_template] = ACTIONS(3746), - [anon_sym_operator] = ACTIONS(3619), - [anon_sym_friend] = ACTIONS(3749), - [anon_sym_public] = ACTIONS(3625), - [anon_sym_private] = ACTIONS(3625), - [anon_sym_protected] = ACTIONS(3625), - [anon_sym_using] = ACTIONS(3752), - [anon_sym_static_assert] = ACTIONS(3755), - }, - [1397] = { - [ts_builtin_sym_end] = ACTIONS(3205), - [sym_identifier] = ACTIONS(3203), - [aux_sym_preproc_include_token1] = ACTIONS(3203), - [aux_sym_preproc_def_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3203), - [sym_preproc_directive] = ACTIONS(3203), - [anon_sym_LPAREN2] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym___extension__] = ACTIONS(3203), - [anon_sym_typedef] = ACTIONS(3203), - [anon_sym_extern] = ACTIONS(3203), - [anon_sym___attribute__] = ACTIONS(3203), - [anon_sym_COLON_COLON] = ACTIONS(3205), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3205), - [anon_sym___declspec] = ACTIONS(3203), - [anon_sym___based] = ACTIONS(3203), - [anon_sym___cdecl] = ACTIONS(3203), - [anon_sym___clrcall] = ACTIONS(3203), - [anon_sym___stdcall] = ACTIONS(3203), - [anon_sym___fastcall] = ACTIONS(3203), - [anon_sym___thiscall] = ACTIONS(3203), - [anon_sym___vectorcall] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_signed] = ACTIONS(3203), - [anon_sym_unsigned] = ACTIONS(3203), - [anon_sym_long] = ACTIONS(3203), - [anon_sym_short] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_static] = ACTIONS(3203), - [anon_sym_register] = ACTIONS(3203), - [anon_sym_inline] = ACTIONS(3203), - [anon_sym___inline] = ACTIONS(3203), - [anon_sym___inline__] = ACTIONS(3203), - [anon_sym___forceinline] = ACTIONS(3203), - [anon_sym_thread_local] = ACTIONS(3203), - [anon_sym___thread] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_constexpr] = ACTIONS(3203), - [anon_sym_volatile] = ACTIONS(3203), - [anon_sym_restrict] = ACTIONS(3203), - [anon_sym___restrict__] = ACTIONS(3203), - [anon_sym__Atomic] = ACTIONS(3203), - [anon_sym__Noreturn] = ACTIONS(3203), - [anon_sym_noreturn] = ACTIONS(3203), - [anon_sym_mutable] = ACTIONS(3203), - [anon_sym_constinit] = ACTIONS(3203), - [anon_sym_consteval] = ACTIONS(3203), - [sym_primitive_type] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [anon_sym_class] = ACTIONS(3203), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_switch] = ACTIONS(3203), - [anon_sym_case] = ACTIONS(3203), - [anon_sym_default] = ACTIONS(3203), - [anon_sym_while] = ACTIONS(3203), - [anon_sym_do] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_goto] = ACTIONS(3203), - [anon_sym_not] = ACTIONS(3203), - [anon_sym_compl] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_sizeof] = ACTIONS(3203), - [anon_sym___alignof__] = ACTIONS(3203), - [anon_sym___alignof] = ACTIONS(3203), - [anon_sym__alignof] = ACTIONS(3203), - [anon_sym_alignof] = ACTIONS(3203), - [anon_sym__Alignof] = ACTIONS(3203), - [anon_sym_offsetof] = ACTIONS(3203), - [anon_sym__Generic] = ACTIONS(3203), - [anon_sym_asm] = ACTIONS(3203), - [anon_sym___asm__] = ACTIONS(3203), - [sym_number_literal] = ACTIONS(3205), - [anon_sym_L_SQUOTE] = ACTIONS(3205), - [anon_sym_u_SQUOTE] = ACTIONS(3205), - [anon_sym_U_SQUOTE] = ACTIONS(3205), - [anon_sym_u8_SQUOTE] = ACTIONS(3205), - [anon_sym_SQUOTE] = ACTIONS(3205), - [anon_sym_L_DQUOTE] = ACTIONS(3205), - [anon_sym_u_DQUOTE] = ACTIONS(3205), - [anon_sym_U_DQUOTE] = ACTIONS(3205), - [anon_sym_u8_DQUOTE] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(3205), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [anon_sym_NULL] = ACTIONS(3203), - [anon_sym_nullptr] = ACTIONS(3203), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3203), - [anon_sym_decltype] = ACTIONS(3203), - [anon_sym_virtual] = ACTIONS(3203), - [anon_sym_alignas] = ACTIONS(3203), - [anon_sym_explicit] = ACTIONS(3203), - [anon_sym_typename] = ACTIONS(3203), - [anon_sym_template] = ACTIONS(3203), - [anon_sym_operator] = ACTIONS(3203), - [anon_sym_try] = ACTIONS(3203), - [anon_sym_delete] = ACTIONS(3203), - [anon_sym_throw] = ACTIONS(3203), - [anon_sym_namespace] = ACTIONS(3203), - [anon_sym_using] = ACTIONS(3203), - [anon_sym_static_assert] = ACTIONS(3203), - [anon_sym_concept] = ACTIONS(3203), - [anon_sym_co_return] = ACTIONS(3203), - [anon_sym_co_yield] = ACTIONS(3203), - [anon_sym_R_DQUOTE] = ACTIONS(3205), - [anon_sym_LR_DQUOTE] = ACTIONS(3205), - [anon_sym_uR_DQUOTE] = ACTIONS(3205), - [anon_sym_UR_DQUOTE] = ACTIONS(3205), - [anon_sym_u8R_DQUOTE] = ACTIONS(3205), - [anon_sym_co_await] = ACTIONS(3203), - [anon_sym_new] = ACTIONS(3203), - [anon_sym_requires] = ACTIONS(3203), - [sym_this] = ACTIONS(3203), - }, - [1398] = { - [ts_builtin_sym_end] = ACTIONS(3201), - [sym_identifier] = ACTIONS(3199), - [aux_sym_preproc_include_token1] = ACTIONS(3199), - [aux_sym_preproc_def_token1] = ACTIONS(3199), - [aux_sym_preproc_if_token1] = ACTIONS(3199), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3199), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3199), - [sym_preproc_directive] = ACTIONS(3199), - [anon_sym_LPAREN2] = ACTIONS(3201), - [anon_sym_BANG] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym___extension__] = ACTIONS(3199), - [anon_sym_typedef] = ACTIONS(3199), - [anon_sym_extern] = ACTIONS(3199), - [anon_sym___attribute__] = ACTIONS(3199), - [anon_sym_COLON_COLON] = ACTIONS(3201), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3201), - [anon_sym___declspec] = ACTIONS(3199), - [anon_sym___based] = ACTIONS(3199), - [anon_sym___cdecl] = ACTIONS(3199), - [anon_sym___clrcall] = ACTIONS(3199), - [anon_sym___stdcall] = ACTIONS(3199), - [anon_sym___fastcall] = ACTIONS(3199), - [anon_sym___thiscall] = ACTIONS(3199), - [anon_sym___vectorcall] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_signed] = ACTIONS(3199), - [anon_sym_unsigned] = ACTIONS(3199), - [anon_sym_long] = ACTIONS(3199), - [anon_sym_short] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_static] = ACTIONS(3199), - [anon_sym_register] = ACTIONS(3199), - [anon_sym_inline] = ACTIONS(3199), - [anon_sym___inline] = ACTIONS(3199), - [anon_sym___inline__] = ACTIONS(3199), - [anon_sym___forceinline] = ACTIONS(3199), - [anon_sym_thread_local] = ACTIONS(3199), - [anon_sym___thread] = ACTIONS(3199), - [anon_sym_const] = ACTIONS(3199), - [anon_sym_constexpr] = ACTIONS(3199), - [anon_sym_volatile] = ACTIONS(3199), - [anon_sym_restrict] = ACTIONS(3199), - [anon_sym___restrict__] = ACTIONS(3199), - [anon_sym__Atomic] = ACTIONS(3199), - [anon_sym__Noreturn] = ACTIONS(3199), - [anon_sym_noreturn] = ACTIONS(3199), - [anon_sym_mutable] = ACTIONS(3199), - [anon_sym_constinit] = ACTIONS(3199), - [anon_sym_consteval] = ACTIONS(3199), - [sym_primitive_type] = ACTIONS(3199), - [anon_sym_enum] = ACTIONS(3199), - [anon_sym_class] = ACTIONS(3199), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_union] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_switch] = ACTIONS(3199), - [anon_sym_case] = ACTIONS(3199), - [anon_sym_default] = ACTIONS(3199), - [anon_sym_while] = ACTIONS(3199), - [anon_sym_do] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3199), - [anon_sym_return] = ACTIONS(3199), - [anon_sym_break] = ACTIONS(3199), - [anon_sym_continue] = ACTIONS(3199), - [anon_sym_goto] = ACTIONS(3199), - [anon_sym_not] = ACTIONS(3199), - [anon_sym_compl] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_sizeof] = ACTIONS(3199), - [anon_sym___alignof__] = ACTIONS(3199), - [anon_sym___alignof] = ACTIONS(3199), - [anon_sym__alignof] = ACTIONS(3199), - [anon_sym_alignof] = ACTIONS(3199), - [anon_sym__Alignof] = ACTIONS(3199), - [anon_sym_offsetof] = ACTIONS(3199), - [anon_sym__Generic] = ACTIONS(3199), - [anon_sym_asm] = ACTIONS(3199), - [anon_sym___asm__] = ACTIONS(3199), - [sym_number_literal] = ACTIONS(3201), - [anon_sym_L_SQUOTE] = ACTIONS(3201), - [anon_sym_u_SQUOTE] = ACTIONS(3201), - [anon_sym_U_SQUOTE] = ACTIONS(3201), - [anon_sym_u8_SQUOTE] = ACTIONS(3201), - [anon_sym_SQUOTE] = ACTIONS(3201), - [anon_sym_L_DQUOTE] = ACTIONS(3201), - [anon_sym_u_DQUOTE] = ACTIONS(3201), - [anon_sym_U_DQUOTE] = ACTIONS(3201), - [anon_sym_u8_DQUOTE] = ACTIONS(3201), - [anon_sym_DQUOTE] = ACTIONS(3201), - [sym_true] = ACTIONS(3199), - [sym_false] = ACTIONS(3199), - [anon_sym_NULL] = ACTIONS(3199), - [anon_sym_nullptr] = ACTIONS(3199), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3199), - [anon_sym_decltype] = ACTIONS(3199), - [anon_sym_virtual] = ACTIONS(3199), - [anon_sym_alignas] = ACTIONS(3199), - [anon_sym_explicit] = ACTIONS(3199), - [anon_sym_typename] = ACTIONS(3199), - [anon_sym_template] = ACTIONS(3199), - [anon_sym_operator] = ACTIONS(3199), - [anon_sym_try] = ACTIONS(3199), - [anon_sym_delete] = ACTIONS(3199), - [anon_sym_throw] = ACTIONS(3199), - [anon_sym_namespace] = ACTIONS(3199), - [anon_sym_using] = ACTIONS(3199), - [anon_sym_static_assert] = ACTIONS(3199), - [anon_sym_concept] = ACTIONS(3199), - [anon_sym_co_return] = ACTIONS(3199), - [anon_sym_co_yield] = ACTIONS(3199), - [anon_sym_R_DQUOTE] = ACTIONS(3201), - [anon_sym_LR_DQUOTE] = ACTIONS(3201), - [anon_sym_uR_DQUOTE] = ACTIONS(3201), - [anon_sym_UR_DQUOTE] = ACTIONS(3201), - [anon_sym_u8R_DQUOTE] = ACTIONS(3201), - [anon_sym_co_await] = ACTIONS(3199), - [anon_sym_new] = ACTIONS(3199), - [anon_sym_requires] = ACTIONS(3199), - [sym_this] = ACTIONS(3199), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1399] = { - [sym_preproc_def] = STATE(1391), - [sym_preproc_function_def] = STATE(1391), - [sym_preproc_call] = STATE(1391), - [sym_preproc_if_in_field_declaration_list] = STATE(1391), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1391), - [sym_type_definition] = STATE(1391), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6387), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1391), - [sym_field_declaration] = STATE(1391), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1391), - [sym_operator_cast] = STATE(7505), - [sym_inline_method_definition] = STATE(1391), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(1391), - [sym_operator_cast_declaration] = STATE(1391), - [sym_constructor_or_destructor_definition] = STATE(1391), - [sym_constructor_or_destructor_declaration] = STATE(1391), - [sym_friend_declaration] = STATE(1391), - [sym_access_specifier] = STATE(9485), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1391), - [sym_alias_declaration] = STATE(1391), - [sym_static_assert_declaration] = STATE(1391), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1391), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3686), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3758), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), + [1450] = { + [sym__expression] = STATE(4254), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3698), - }, - [1400] = { - [ts_builtin_sym_end] = ACTIONS(3197), - [sym_identifier] = ACTIONS(3195), - [aux_sym_preproc_include_token1] = ACTIONS(3195), - [aux_sym_preproc_def_token1] = ACTIONS(3195), - [aux_sym_preproc_if_token1] = ACTIONS(3195), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3195), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3195), - [sym_preproc_directive] = ACTIONS(3195), - [anon_sym_LPAREN2] = ACTIONS(3197), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym___extension__] = ACTIONS(3195), - [anon_sym_typedef] = ACTIONS(3195), - [anon_sym_extern] = ACTIONS(3195), - [anon_sym___attribute__] = ACTIONS(3195), - [anon_sym_COLON_COLON] = ACTIONS(3197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3197), - [anon_sym___declspec] = ACTIONS(3195), - [anon_sym___based] = ACTIONS(3195), - [anon_sym___cdecl] = ACTIONS(3195), - [anon_sym___clrcall] = ACTIONS(3195), - [anon_sym___stdcall] = ACTIONS(3195), - [anon_sym___fastcall] = ACTIONS(3195), - [anon_sym___thiscall] = ACTIONS(3195), - [anon_sym___vectorcall] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_signed] = ACTIONS(3195), - [anon_sym_unsigned] = ACTIONS(3195), - [anon_sym_long] = ACTIONS(3195), - [anon_sym_short] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_static] = ACTIONS(3195), - [anon_sym_register] = ACTIONS(3195), - [anon_sym_inline] = ACTIONS(3195), - [anon_sym___inline] = ACTIONS(3195), - [anon_sym___inline__] = ACTIONS(3195), - [anon_sym___forceinline] = ACTIONS(3195), - [anon_sym_thread_local] = ACTIONS(3195), - [anon_sym___thread] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_constexpr] = ACTIONS(3195), - [anon_sym_volatile] = ACTIONS(3195), - [anon_sym_restrict] = ACTIONS(3195), - [anon_sym___restrict__] = ACTIONS(3195), - [anon_sym__Atomic] = ACTIONS(3195), - [anon_sym__Noreturn] = ACTIONS(3195), - [anon_sym_noreturn] = ACTIONS(3195), - [anon_sym_mutable] = ACTIONS(3195), - [anon_sym_constinit] = ACTIONS(3195), - [anon_sym_consteval] = ACTIONS(3195), - [sym_primitive_type] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3195), - [anon_sym_class] = ACTIONS(3195), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_union] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_switch] = ACTIONS(3195), - [anon_sym_case] = ACTIONS(3195), - [anon_sym_default] = ACTIONS(3195), - [anon_sym_while] = ACTIONS(3195), - [anon_sym_do] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_goto] = ACTIONS(3195), - [anon_sym_not] = ACTIONS(3195), - [anon_sym_compl] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_sizeof] = ACTIONS(3195), - [anon_sym___alignof__] = ACTIONS(3195), - [anon_sym___alignof] = ACTIONS(3195), - [anon_sym__alignof] = ACTIONS(3195), - [anon_sym_alignof] = ACTIONS(3195), - [anon_sym__Alignof] = ACTIONS(3195), - [anon_sym_offsetof] = ACTIONS(3195), - [anon_sym__Generic] = ACTIONS(3195), - [anon_sym_asm] = ACTIONS(3195), - [anon_sym___asm__] = ACTIONS(3195), - [sym_number_literal] = ACTIONS(3197), - [anon_sym_L_SQUOTE] = ACTIONS(3197), - [anon_sym_u_SQUOTE] = ACTIONS(3197), - [anon_sym_U_SQUOTE] = ACTIONS(3197), - [anon_sym_u8_SQUOTE] = ACTIONS(3197), - [anon_sym_SQUOTE] = ACTIONS(3197), - [anon_sym_L_DQUOTE] = ACTIONS(3197), - [anon_sym_u_DQUOTE] = ACTIONS(3197), - [anon_sym_U_DQUOTE] = ACTIONS(3197), - [anon_sym_u8_DQUOTE] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3197), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [anon_sym_NULL] = ACTIONS(3195), - [anon_sym_nullptr] = ACTIONS(3195), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3195), - [anon_sym_decltype] = ACTIONS(3195), - [anon_sym_virtual] = ACTIONS(3195), - [anon_sym_alignas] = ACTIONS(3195), - [anon_sym_explicit] = ACTIONS(3195), - [anon_sym_typename] = ACTIONS(3195), - [anon_sym_template] = ACTIONS(3195), - [anon_sym_operator] = ACTIONS(3195), - [anon_sym_try] = ACTIONS(3195), - [anon_sym_delete] = ACTIONS(3195), - [anon_sym_throw] = ACTIONS(3195), - [anon_sym_namespace] = ACTIONS(3195), - [anon_sym_using] = ACTIONS(3195), - [anon_sym_static_assert] = ACTIONS(3195), - [anon_sym_concept] = ACTIONS(3195), - [anon_sym_co_return] = ACTIONS(3195), - [anon_sym_co_yield] = ACTIONS(3195), - [anon_sym_R_DQUOTE] = ACTIONS(3197), - [anon_sym_LR_DQUOTE] = ACTIONS(3197), - [anon_sym_uR_DQUOTE] = ACTIONS(3197), - [anon_sym_UR_DQUOTE] = ACTIONS(3197), - [anon_sym_u8R_DQUOTE] = ACTIONS(3197), - [anon_sym_co_await] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3195), - [anon_sym_requires] = ACTIONS(3195), - [sym_this] = ACTIONS(3195), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1401] = { - [sym_preproc_def] = STATE(1468), - [sym_preproc_function_def] = STATE(1468), - [sym_preproc_call] = STATE(1468), - [sym_preproc_if_in_field_declaration_list] = STATE(1468), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1468), - [sym_type_definition] = STATE(1468), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6304), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6992), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1468), - [sym_field_declaration] = STATE(1468), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2403), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1468), - [sym_operator_cast] = STATE(7452), - [sym_inline_method_definition] = STATE(1468), - [sym__constructor_specifiers] = STATE(2403), - [sym_operator_cast_definition] = STATE(1468), - [sym_operator_cast_declaration] = STATE(1468), - [sym_constructor_or_destructor_definition] = STATE(1468), - [sym_constructor_or_destructor_declaration] = STATE(1468), - [sym_friend_declaration] = STATE(1468), - [sym_access_specifier] = STATE(8944), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1468), - [sym_alias_declaration] = STATE(1468), - [sym_static_assert_declaration] = STATE(1468), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7452), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1468), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2403), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3700), - [aux_sym_preproc_if_token1] = ACTIONS(3702), - [aux_sym_preproc_if_token2] = ACTIONS(3760), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3706), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3706), - [sym_preproc_directive] = ACTIONS(3708), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3710), - [anon_sym_typedef] = ACTIONS(3712), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), + [1451] = { + [sym__expression] = STATE(3983), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3714), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3716), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3718), - [anon_sym_static_assert] = ACTIONS(3720), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1402] = { - [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___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3123), - [anon_sym_extern] = ACTIONS(3123), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3123), - [anon_sym_constinit] = ACTIONS(3123), - [anon_sym_consteval] = 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), - [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), + [1452] = { + [sym__expression] = STATE(4276), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3123), - [anon_sym_decltype] = ACTIONS(3123), - [anon_sym_virtual] = ACTIONS(3123), - [anon_sym_alignas] = 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_using] = 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), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1403] = { - [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___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3123), - [anon_sym_extern] = ACTIONS(3123), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3123), - [anon_sym_constinit] = ACTIONS(3123), - [anon_sym_consteval] = 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), - [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), + [1453] = { + [sym__expression] = STATE(4009), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3123), - [anon_sym_decltype] = ACTIONS(3123), - [anon_sym_virtual] = ACTIONS(3123), - [anon_sym_alignas] = 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_using] = 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), - }, - [1404] = { - [ts_builtin_sym_end] = ACTIONS(3376), - [sym_identifier] = ACTIONS(3374), - [aux_sym_preproc_include_token1] = ACTIONS(3374), - [aux_sym_preproc_def_token1] = ACTIONS(3374), - [aux_sym_preproc_if_token1] = ACTIONS(3374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3374), - [sym_preproc_directive] = ACTIONS(3374), - [anon_sym_LPAREN2] = ACTIONS(3376), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3374), - [anon_sym_PLUS] = ACTIONS(3374), - [anon_sym_STAR] = ACTIONS(3376), - [anon_sym_AMP_AMP] = ACTIONS(3376), - [anon_sym_AMP] = ACTIONS(3374), - [anon_sym___extension__] = ACTIONS(3374), - [anon_sym_typedef] = ACTIONS(3374), - [anon_sym_extern] = ACTIONS(3374), - [anon_sym___attribute__] = ACTIONS(3374), - [anon_sym_COLON_COLON] = ACTIONS(3376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3376), - [anon_sym___declspec] = ACTIONS(3374), - [anon_sym___based] = ACTIONS(3374), - [anon_sym___cdecl] = ACTIONS(3374), - [anon_sym___clrcall] = ACTIONS(3374), - [anon_sym___stdcall] = ACTIONS(3374), - [anon_sym___fastcall] = ACTIONS(3374), - [anon_sym___thiscall] = ACTIONS(3374), - [anon_sym___vectorcall] = ACTIONS(3374), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_signed] = ACTIONS(3374), - [anon_sym_unsigned] = ACTIONS(3374), - [anon_sym_long] = ACTIONS(3374), - [anon_sym_short] = ACTIONS(3374), - [anon_sym_LBRACK] = ACTIONS(3374), - [anon_sym_static] = ACTIONS(3374), - [anon_sym_register] = ACTIONS(3374), - [anon_sym_inline] = ACTIONS(3374), - [anon_sym___inline] = ACTIONS(3374), - [anon_sym___inline__] = ACTIONS(3374), - [anon_sym___forceinline] = ACTIONS(3374), - [anon_sym_thread_local] = ACTIONS(3374), - [anon_sym___thread] = ACTIONS(3374), - [anon_sym_const] = ACTIONS(3374), - [anon_sym_constexpr] = ACTIONS(3374), - [anon_sym_volatile] = ACTIONS(3374), - [anon_sym_restrict] = ACTIONS(3374), - [anon_sym___restrict__] = ACTIONS(3374), - [anon_sym__Atomic] = ACTIONS(3374), - [anon_sym__Noreturn] = ACTIONS(3374), - [anon_sym_noreturn] = ACTIONS(3374), - [anon_sym_mutable] = ACTIONS(3374), - [anon_sym_constinit] = ACTIONS(3374), - [anon_sym_consteval] = ACTIONS(3374), - [sym_primitive_type] = ACTIONS(3374), - [anon_sym_enum] = ACTIONS(3374), - [anon_sym_class] = ACTIONS(3374), - [anon_sym_struct] = ACTIONS(3374), - [anon_sym_union] = ACTIONS(3374), - [anon_sym_if] = ACTIONS(3374), - [anon_sym_switch] = ACTIONS(3374), - [anon_sym_case] = ACTIONS(3374), - [anon_sym_default] = ACTIONS(3374), - [anon_sym_while] = ACTIONS(3374), - [anon_sym_do] = ACTIONS(3374), - [anon_sym_for] = ACTIONS(3374), - [anon_sym_return] = ACTIONS(3374), - [anon_sym_break] = ACTIONS(3374), - [anon_sym_continue] = ACTIONS(3374), - [anon_sym_goto] = ACTIONS(3374), - [anon_sym_not] = ACTIONS(3374), - [anon_sym_compl] = ACTIONS(3374), - [anon_sym_DASH_DASH] = ACTIONS(3376), - [anon_sym_PLUS_PLUS] = ACTIONS(3376), - [anon_sym_sizeof] = ACTIONS(3374), - [anon_sym___alignof__] = ACTIONS(3374), - [anon_sym___alignof] = ACTIONS(3374), - [anon_sym__alignof] = ACTIONS(3374), - [anon_sym_alignof] = ACTIONS(3374), - [anon_sym__Alignof] = ACTIONS(3374), - [anon_sym_offsetof] = ACTIONS(3374), - [anon_sym__Generic] = ACTIONS(3374), - [anon_sym_asm] = ACTIONS(3374), - [anon_sym___asm__] = ACTIONS(3374), - [sym_number_literal] = ACTIONS(3376), - [anon_sym_L_SQUOTE] = ACTIONS(3376), - [anon_sym_u_SQUOTE] = ACTIONS(3376), - [anon_sym_U_SQUOTE] = ACTIONS(3376), - [anon_sym_u8_SQUOTE] = ACTIONS(3376), - [anon_sym_SQUOTE] = ACTIONS(3376), - [anon_sym_L_DQUOTE] = ACTIONS(3376), - [anon_sym_u_DQUOTE] = ACTIONS(3376), - [anon_sym_U_DQUOTE] = ACTIONS(3376), - [anon_sym_u8_DQUOTE] = ACTIONS(3376), - [anon_sym_DQUOTE] = ACTIONS(3376), - [sym_true] = ACTIONS(3374), - [sym_false] = ACTIONS(3374), - [anon_sym_NULL] = ACTIONS(3374), - [anon_sym_nullptr] = ACTIONS(3374), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3374), - [anon_sym_decltype] = ACTIONS(3374), - [anon_sym_virtual] = ACTIONS(3374), - [anon_sym_alignas] = ACTIONS(3374), - [anon_sym_explicit] = ACTIONS(3374), - [anon_sym_typename] = ACTIONS(3374), - [anon_sym_template] = ACTIONS(3374), - [anon_sym_operator] = ACTIONS(3374), - [anon_sym_try] = ACTIONS(3374), - [anon_sym_delete] = ACTIONS(3374), - [anon_sym_throw] = ACTIONS(3374), - [anon_sym_namespace] = ACTIONS(3374), - [anon_sym_using] = ACTIONS(3374), - [anon_sym_static_assert] = ACTIONS(3374), - [anon_sym_concept] = ACTIONS(3374), - [anon_sym_co_return] = ACTIONS(3374), - [anon_sym_co_yield] = ACTIONS(3374), - [anon_sym_R_DQUOTE] = ACTIONS(3376), - [anon_sym_LR_DQUOTE] = ACTIONS(3376), - [anon_sym_uR_DQUOTE] = ACTIONS(3376), - [anon_sym_UR_DQUOTE] = ACTIONS(3376), - [anon_sym_u8R_DQUOTE] = ACTIONS(3376), - [anon_sym_co_await] = ACTIONS(3374), - [anon_sym_new] = ACTIONS(3374), - [anon_sym_requires] = ACTIONS(3374), - [sym_this] = ACTIONS(3374), - }, - [1405] = { - [ts_builtin_sym_end] = ACTIONS(3334), - [sym_identifier] = ACTIONS(3332), - [aux_sym_preproc_include_token1] = ACTIONS(3332), - [aux_sym_preproc_def_token1] = ACTIONS(3332), - [aux_sym_preproc_if_token1] = ACTIONS(3332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3332), - [sym_preproc_directive] = ACTIONS(3332), - [anon_sym_LPAREN2] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_STAR] = ACTIONS(3334), - [anon_sym_AMP_AMP] = ACTIONS(3334), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym___extension__] = ACTIONS(3332), - [anon_sym_typedef] = ACTIONS(3332), - [anon_sym_extern] = ACTIONS(3332), - [anon_sym___attribute__] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3334), - [anon_sym___declspec] = ACTIONS(3332), - [anon_sym___based] = ACTIONS(3332), - [anon_sym___cdecl] = ACTIONS(3332), - [anon_sym___clrcall] = ACTIONS(3332), - [anon_sym___stdcall] = ACTIONS(3332), - [anon_sym___fastcall] = ACTIONS(3332), - [anon_sym___thiscall] = ACTIONS(3332), - [anon_sym___vectorcall] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3332), - [anon_sym_unsigned] = ACTIONS(3332), - [anon_sym_long] = ACTIONS(3332), - [anon_sym_short] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_register] = ACTIONS(3332), - [anon_sym_inline] = ACTIONS(3332), - [anon_sym___inline] = ACTIONS(3332), - [anon_sym___inline__] = ACTIONS(3332), - [anon_sym___forceinline] = ACTIONS(3332), - [anon_sym_thread_local] = ACTIONS(3332), - [anon_sym___thread] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_constexpr] = ACTIONS(3332), - [anon_sym_volatile] = ACTIONS(3332), - [anon_sym_restrict] = ACTIONS(3332), - [anon_sym___restrict__] = ACTIONS(3332), - [anon_sym__Atomic] = ACTIONS(3332), - [anon_sym__Noreturn] = ACTIONS(3332), - [anon_sym_noreturn] = ACTIONS(3332), - [anon_sym_mutable] = ACTIONS(3332), - [anon_sym_constinit] = ACTIONS(3332), - [anon_sym_consteval] = ACTIONS(3332), - [sym_primitive_type] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_struct] = ACTIONS(3332), - [anon_sym_union] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_case] = ACTIONS(3332), - [anon_sym_default] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_goto] = ACTIONS(3332), - [anon_sym_not] = ACTIONS(3332), - [anon_sym_compl] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_sizeof] = ACTIONS(3332), - [anon_sym___alignof__] = ACTIONS(3332), - [anon_sym___alignof] = ACTIONS(3332), - [anon_sym__alignof] = ACTIONS(3332), - [anon_sym_alignof] = ACTIONS(3332), - [anon_sym__Alignof] = ACTIONS(3332), - [anon_sym_offsetof] = ACTIONS(3332), - [anon_sym__Generic] = ACTIONS(3332), - [anon_sym_asm] = ACTIONS(3332), - [anon_sym___asm__] = ACTIONS(3332), - [sym_number_literal] = ACTIONS(3334), - [anon_sym_L_SQUOTE] = ACTIONS(3334), - [anon_sym_u_SQUOTE] = ACTIONS(3334), - [anon_sym_U_SQUOTE] = ACTIONS(3334), - [anon_sym_u8_SQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_L_DQUOTE] = ACTIONS(3334), - [anon_sym_u_DQUOTE] = ACTIONS(3334), - [anon_sym_U_DQUOTE] = ACTIONS(3334), - [anon_sym_u8_DQUOTE] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [anon_sym_NULL] = ACTIONS(3332), - [anon_sym_nullptr] = ACTIONS(3332), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3332), - [anon_sym_decltype] = ACTIONS(3332), - [anon_sym_virtual] = ACTIONS(3332), - [anon_sym_alignas] = ACTIONS(3332), - [anon_sym_explicit] = ACTIONS(3332), - [anon_sym_typename] = ACTIONS(3332), - [anon_sym_template] = ACTIONS(3332), - [anon_sym_operator] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_static_assert] = ACTIONS(3332), - [anon_sym_concept] = ACTIONS(3332), - [anon_sym_co_return] = ACTIONS(3332), - [anon_sym_co_yield] = ACTIONS(3332), - [anon_sym_R_DQUOTE] = ACTIONS(3334), - [anon_sym_LR_DQUOTE] = ACTIONS(3334), - [anon_sym_uR_DQUOTE] = ACTIONS(3334), - [anon_sym_UR_DQUOTE] = ACTIONS(3334), - [anon_sym_u8R_DQUOTE] = ACTIONS(3334), - [anon_sym_co_await] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_requires] = ACTIONS(3332), - [sym_this] = ACTIONS(3332), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1406] = { - [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___extension__] = ACTIONS(3115), - [anon_sym_typedef] = ACTIONS(3115), - [anon_sym_extern] = ACTIONS(3115), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3115), - [anon_sym_constinit] = ACTIONS(3115), - [anon_sym_consteval] = 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), - [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), + [1454] = { + [sym__expression] = STATE(2914), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3115), - [anon_sym_decltype] = ACTIONS(3115), - [anon_sym_virtual] = ACTIONS(3115), - [anon_sym_alignas] = 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_using] = 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), - }, - [1407] = { - [ts_builtin_sym_end] = ACTIONS(3368), - [sym_identifier] = ACTIONS(3366), - [aux_sym_preproc_include_token1] = ACTIONS(3366), - [aux_sym_preproc_def_token1] = ACTIONS(3366), - [aux_sym_preproc_if_token1] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3366), - [sym_preproc_directive] = ACTIONS(3366), - [anon_sym_LPAREN2] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_AMP_AMP] = ACTIONS(3368), - [anon_sym_AMP] = ACTIONS(3366), - [anon_sym___extension__] = ACTIONS(3366), - [anon_sym_typedef] = ACTIONS(3366), - [anon_sym_extern] = ACTIONS(3366), - [anon_sym___attribute__] = ACTIONS(3366), - [anon_sym_COLON_COLON] = ACTIONS(3368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3368), - [anon_sym___declspec] = ACTIONS(3366), - [anon_sym___based] = ACTIONS(3366), - [anon_sym___cdecl] = ACTIONS(3366), - [anon_sym___clrcall] = ACTIONS(3366), - [anon_sym___stdcall] = ACTIONS(3366), - [anon_sym___fastcall] = ACTIONS(3366), - [anon_sym___thiscall] = ACTIONS(3366), - [anon_sym___vectorcall] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_signed] = ACTIONS(3366), - [anon_sym_unsigned] = ACTIONS(3366), - [anon_sym_long] = ACTIONS(3366), - [anon_sym_short] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_register] = ACTIONS(3366), - [anon_sym_inline] = ACTIONS(3366), - [anon_sym___inline] = ACTIONS(3366), - [anon_sym___inline__] = ACTIONS(3366), - [anon_sym___forceinline] = ACTIONS(3366), - [anon_sym_thread_local] = ACTIONS(3366), - [anon_sym___thread] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_constexpr] = ACTIONS(3366), - [anon_sym_volatile] = ACTIONS(3366), - [anon_sym_restrict] = ACTIONS(3366), - [anon_sym___restrict__] = ACTIONS(3366), - [anon_sym__Atomic] = ACTIONS(3366), - [anon_sym__Noreturn] = ACTIONS(3366), - [anon_sym_noreturn] = ACTIONS(3366), - [anon_sym_mutable] = ACTIONS(3366), - [anon_sym_constinit] = ACTIONS(3366), - [anon_sym_consteval] = ACTIONS(3366), - [sym_primitive_type] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_struct] = ACTIONS(3366), - [anon_sym_union] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_case] = ACTIONS(3366), - [anon_sym_default] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_goto] = ACTIONS(3366), - [anon_sym_not] = ACTIONS(3366), - [anon_sym_compl] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_sizeof] = ACTIONS(3366), - [anon_sym___alignof__] = ACTIONS(3366), - [anon_sym___alignof] = ACTIONS(3366), - [anon_sym__alignof] = ACTIONS(3366), - [anon_sym_alignof] = ACTIONS(3366), - [anon_sym__Alignof] = ACTIONS(3366), - [anon_sym_offsetof] = ACTIONS(3366), - [anon_sym__Generic] = ACTIONS(3366), - [anon_sym_asm] = ACTIONS(3366), - [anon_sym___asm__] = ACTIONS(3366), - [sym_number_literal] = ACTIONS(3368), - [anon_sym_L_SQUOTE] = ACTIONS(3368), - [anon_sym_u_SQUOTE] = ACTIONS(3368), - [anon_sym_U_SQUOTE] = ACTIONS(3368), - [anon_sym_u8_SQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_L_DQUOTE] = ACTIONS(3368), - [anon_sym_u_DQUOTE] = ACTIONS(3368), - [anon_sym_U_DQUOTE] = ACTIONS(3368), - [anon_sym_u8_DQUOTE] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3366), - [anon_sym_nullptr] = ACTIONS(3366), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3366), - [anon_sym_decltype] = ACTIONS(3366), - [anon_sym_virtual] = ACTIONS(3366), - [anon_sym_alignas] = ACTIONS(3366), - [anon_sym_explicit] = ACTIONS(3366), - [anon_sym_typename] = ACTIONS(3366), - [anon_sym_template] = ACTIONS(3366), - [anon_sym_operator] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_static_assert] = ACTIONS(3366), - [anon_sym_concept] = ACTIONS(3366), - [anon_sym_co_return] = ACTIONS(3366), - [anon_sym_co_yield] = ACTIONS(3366), - [anon_sym_R_DQUOTE] = ACTIONS(3368), - [anon_sym_LR_DQUOTE] = ACTIONS(3368), - [anon_sym_uR_DQUOTE] = ACTIONS(3368), - [anon_sym_UR_DQUOTE] = ACTIONS(3368), - [anon_sym_u8R_DQUOTE] = ACTIONS(3368), - [anon_sym_co_await] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_requires] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, - [1408] = { - [sym_preproc_def] = STATE(1396), - [sym_preproc_function_def] = STATE(1396), - [sym_preproc_call] = STATE(1396), - [sym_preproc_if_in_field_declaration_list] = STATE(1396), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1396), - [sym_type_definition] = STATE(1396), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6387), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1396), - [sym_field_declaration] = STATE(1396), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1396), - [sym_operator_cast] = STATE(7505), - [sym_inline_method_definition] = STATE(1396), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(1396), - [sym_operator_cast_declaration] = STATE(1396), - [sym_constructor_or_destructor_definition] = STATE(1396), - [sym_constructor_or_destructor_declaration] = STATE(1396), - [sym_friend_declaration] = STATE(1396), - [sym_access_specifier] = STATE(9485), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1396), - [sym_alias_declaration] = STATE(1396), - [sym_static_assert_declaration] = STATE(1396), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1396), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3686), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3762), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), + [1455] = { + [sym__expression] = STATE(4279), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3698), - }, - [1409] = { - [ts_builtin_sym_end] = ACTIONS(3236), - [sym_identifier] = ACTIONS(3234), - [aux_sym_preproc_include_token1] = ACTIONS(3234), - [aux_sym_preproc_def_token1] = ACTIONS(3234), - [aux_sym_preproc_if_token1] = ACTIONS(3234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3234), - [sym_preproc_directive] = ACTIONS(3234), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3236), - [anon_sym_AMP] = ACTIONS(3234), - [anon_sym___extension__] = ACTIONS(3234), - [anon_sym_typedef] = ACTIONS(3234), - [anon_sym_extern] = ACTIONS(3234), - [anon_sym___attribute__] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3236), - [anon_sym___declspec] = ACTIONS(3234), - [anon_sym___based] = ACTIONS(3234), - [anon_sym___cdecl] = ACTIONS(3234), - [anon_sym___clrcall] = ACTIONS(3234), - [anon_sym___stdcall] = ACTIONS(3234), - [anon_sym___fastcall] = ACTIONS(3234), - [anon_sym___thiscall] = ACTIONS(3234), - [anon_sym___vectorcall] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_signed] = ACTIONS(3234), - [anon_sym_unsigned] = ACTIONS(3234), - [anon_sym_long] = ACTIONS(3234), - [anon_sym_short] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_register] = ACTIONS(3234), - [anon_sym_inline] = ACTIONS(3234), - [anon_sym___inline] = ACTIONS(3234), - [anon_sym___inline__] = ACTIONS(3234), - [anon_sym___forceinline] = ACTIONS(3234), - [anon_sym_thread_local] = ACTIONS(3234), - [anon_sym___thread] = ACTIONS(3234), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_constexpr] = ACTIONS(3234), - [anon_sym_volatile] = ACTIONS(3234), - [anon_sym_restrict] = ACTIONS(3234), - [anon_sym___restrict__] = ACTIONS(3234), - [anon_sym__Atomic] = ACTIONS(3234), - [anon_sym__Noreturn] = ACTIONS(3234), - [anon_sym_noreturn] = ACTIONS(3234), - [anon_sym_mutable] = ACTIONS(3234), - [anon_sym_constinit] = ACTIONS(3234), - [anon_sym_consteval] = ACTIONS(3234), - [sym_primitive_type] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_struct] = ACTIONS(3234), - [anon_sym_union] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_case] = ACTIONS(3234), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_goto] = ACTIONS(3234), - [anon_sym_not] = ACTIONS(3234), - [anon_sym_compl] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3236), - [anon_sym_PLUS_PLUS] = ACTIONS(3236), - [anon_sym_sizeof] = ACTIONS(3234), - [anon_sym___alignof__] = ACTIONS(3234), - [anon_sym___alignof] = ACTIONS(3234), - [anon_sym__alignof] = ACTIONS(3234), - [anon_sym_alignof] = ACTIONS(3234), - [anon_sym__Alignof] = ACTIONS(3234), - [anon_sym_offsetof] = ACTIONS(3234), - [anon_sym__Generic] = ACTIONS(3234), - [anon_sym_asm] = ACTIONS(3234), - [anon_sym___asm__] = ACTIONS(3234), - [sym_number_literal] = ACTIONS(3236), - [anon_sym_L_SQUOTE] = ACTIONS(3236), - [anon_sym_u_SQUOTE] = ACTIONS(3236), - [anon_sym_U_SQUOTE] = ACTIONS(3236), - [anon_sym_u8_SQUOTE] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym_L_DQUOTE] = ACTIONS(3236), - [anon_sym_u_DQUOTE] = ACTIONS(3236), - [anon_sym_U_DQUOTE] = ACTIONS(3236), - [anon_sym_u8_DQUOTE] = ACTIONS(3236), - [anon_sym_DQUOTE] = ACTIONS(3236), - [sym_true] = ACTIONS(3234), - [sym_false] = ACTIONS(3234), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3234), - [anon_sym_decltype] = ACTIONS(3234), - [anon_sym_virtual] = ACTIONS(3234), - [anon_sym_alignas] = ACTIONS(3234), - [anon_sym_explicit] = ACTIONS(3234), - [anon_sym_typename] = ACTIONS(3234), - [anon_sym_template] = ACTIONS(3234), - [anon_sym_operator] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_delete] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_namespace] = ACTIONS(3234), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_static_assert] = ACTIONS(3234), - [anon_sym_concept] = ACTIONS(3234), - [anon_sym_co_return] = ACTIONS(3234), - [anon_sym_co_yield] = ACTIONS(3234), - [anon_sym_R_DQUOTE] = ACTIONS(3236), - [anon_sym_LR_DQUOTE] = ACTIONS(3236), - [anon_sym_uR_DQUOTE] = ACTIONS(3236), - [anon_sym_UR_DQUOTE] = ACTIONS(3236), - [anon_sym_u8R_DQUOTE] = ACTIONS(3236), - [anon_sym_co_await] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_requires] = ACTIONS(3234), - [sym_this] = ACTIONS(3234), - }, - [1410] = { - [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___extension__] = ACTIONS(3238), - [anon_sym_typedef] = ACTIONS(3238), - [anon_sym_extern] = ACTIONS(3238), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3238), - [anon_sym_constinit] = ACTIONS(3238), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3238), - [anon_sym_alignas] = 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_using] = 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), - }, - [1411] = { - [ts_builtin_sym_end] = ACTIONS(3324), - [sym_identifier] = ACTIONS(3322), - [aux_sym_preproc_include_token1] = ACTIONS(3322), - [aux_sym_preproc_def_token1] = ACTIONS(3322), - [aux_sym_preproc_if_token1] = ACTIONS(3322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3322), - [sym_preproc_directive] = ACTIONS(3322), - [anon_sym_LPAREN2] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3322), - [anon_sym_PLUS] = ACTIONS(3322), - [anon_sym_STAR] = ACTIONS(3324), - [anon_sym_AMP_AMP] = ACTIONS(3324), - [anon_sym_AMP] = ACTIONS(3322), - [anon_sym___extension__] = ACTIONS(3322), - [anon_sym_typedef] = ACTIONS(3322), - [anon_sym_extern] = ACTIONS(3322), - [anon_sym___attribute__] = ACTIONS(3322), - [anon_sym_COLON_COLON] = ACTIONS(3324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), - [anon_sym___declspec] = ACTIONS(3322), - [anon_sym___based] = ACTIONS(3322), - [anon_sym___cdecl] = ACTIONS(3322), - [anon_sym___clrcall] = ACTIONS(3322), - [anon_sym___stdcall] = ACTIONS(3322), - [anon_sym___fastcall] = ACTIONS(3322), - [anon_sym___thiscall] = ACTIONS(3322), - [anon_sym___vectorcall] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_signed] = ACTIONS(3322), - [anon_sym_unsigned] = ACTIONS(3322), - [anon_sym_long] = ACTIONS(3322), - [anon_sym_short] = ACTIONS(3322), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_static] = ACTIONS(3322), - [anon_sym_register] = ACTIONS(3322), - [anon_sym_inline] = ACTIONS(3322), - [anon_sym___inline] = ACTIONS(3322), - [anon_sym___inline__] = ACTIONS(3322), - [anon_sym___forceinline] = ACTIONS(3322), - [anon_sym_thread_local] = ACTIONS(3322), - [anon_sym___thread] = ACTIONS(3322), - [anon_sym_const] = ACTIONS(3322), - [anon_sym_constexpr] = ACTIONS(3322), - [anon_sym_volatile] = ACTIONS(3322), - [anon_sym_restrict] = ACTIONS(3322), - [anon_sym___restrict__] = ACTIONS(3322), - [anon_sym__Atomic] = ACTIONS(3322), - [anon_sym__Noreturn] = ACTIONS(3322), - [anon_sym_noreturn] = ACTIONS(3322), - [anon_sym_mutable] = ACTIONS(3322), - [anon_sym_constinit] = ACTIONS(3322), - [anon_sym_consteval] = ACTIONS(3322), - [sym_primitive_type] = ACTIONS(3322), - [anon_sym_enum] = ACTIONS(3322), - [anon_sym_class] = ACTIONS(3322), - [anon_sym_struct] = ACTIONS(3322), - [anon_sym_union] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3322), - [anon_sym_switch] = ACTIONS(3322), - [anon_sym_case] = ACTIONS(3322), - [anon_sym_default] = ACTIONS(3322), - [anon_sym_while] = ACTIONS(3322), - [anon_sym_do] = ACTIONS(3322), - [anon_sym_for] = ACTIONS(3322), - [anon_sym_return] = ACTIONS(3322), - [anon_sym_break] = ACTIONS(3322), - [anon_sym_continue] = ACTIONS(3322), - [anon_sym_goto] = ACTIONS(3322), - [anon_sym_not] = ACTIONS(3322), - [anon_sym_compl] = ACTIONS(3322), - [anon_sym_DASH_DASH] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_sizeof] = ACTIONS(3322), - [anon_sym___alignof__] = ACTIONS(3322), - [anon_sym___alignof] = ACTIONS(3322), - [anon_sym__alignof] = ACTIONS(3322), - [anon_sym_alignof] = ACTIONS(3322), - [anon_sym__Alignof] = ACTIONS(3322), - [anon_sym_offsetof] = ACTIONS(3322), - [anon_sym__Generic] = ACTIONS(3322), - [anon_sym_asm] = ACTIONS(3322), - [anon_sym___asm__] = ACTIONS(3322), - [sym_number_literal] = ACTIONS(3324), - [anon_sym_L_SQUOTE] = ACTIONS(3324), - [anon_sym_u_SQUOTE] = ACTIONS(3324), - [anon_sym_U_SQUOTE] = ACTIONS(3324), - [anon_sym_u8_SQUOTE] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_L_DQUOTE] = ACTIONS(3324), - [anon_sym_u_DQUOTE] = ACTIONS(3324), - [anon_sym_U_DQUOTE] = ACTIONS(3324), - [anon_sym_u8_DQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [anon_sym_NULL] = ACTIONS(3322), - [anon_sym_nullptr] = ACTIONS(3322), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3322), - [anon_sym_decltype] = ACTIONS(3322), - [anon_sym_virtual] = ACTIONS(3322), - [anon_sym_alignas] = ACTIONS(3322), - [anon_sym_explicit] = ACTIONS(3322), - [anon_sym_typename] = ACTIONS(3322), - [anon_sym_template] = ACTIONS(3322), - [anon_sym_operator] = ACTIONS(3322), - [anon_sym_try] = ACTIONS(3322), - [anon_sym_delete] = ACTIONS(3322), - [anon_sym_throw] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_using] = ACTIONS(3322), - [anon_sym_static_assert] = ACTIONS(3322), - [anon_sym_concept] = ACTIONS(3322), - [anon_sym_co_return] = ACTIONS(3322), - [anon_sym_co_yield] = ACTIONS(3322), - [anon_sym_R_DQUOTE] = ACTIONS(3324), - [anon_sym_LR_DQUOTE] = ACTIONS(3324), - [anon_sym_uR_DQUOTE] = ACTIONS(3324), - [anon_sym_UR_DQUOTE] = ACTIONS(3324), - [anon_sym_u8R_DQUOTE] = ACTIONS(3324), - [anon_sym_co_await] = ACTIONS(3322), - [anon_sym_new] = ACTIONS(3322), - [anon_sym_requires] = ACTIONS(3322), - [sym_this] = ACTIONS(3322), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1412] = { - [sym_preproc_def] = STATE(1396), - [sym_preproc_function_def] = STATE(1396), - [sym_preproc_call] = STATE(1396), - [sym_preproc_if_in_field_declaration_list] = STATE(1396), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1396), - [sym_type_definition] = STATE(1396), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6387), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1396), - [sym_field_declaration] = STATE(1396), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1396), - [sym_operator_cast] = STATE(7505), - [sym_inline_method_definition] = STATE(1396), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(1396), - [sym_operator_cast_declaration] = STATE(1396), - [sym_constructor_or_destructor_definition] = STATE(1396), - [sym_constructor_or_destructor_declaration] = STATE(1396), - [sym_friend_declaration] = STATE(1396), - [sym_access_specifier] = STATE(9485), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1396), - [sym_alias_declaration] = STATE(1396), - [sym_static_assert_declaration] = STATE(1396), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1396), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3686), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3764), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), + [1456] = { + [sym__expression] = STATE(3834), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(4497), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3698), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1413] = { - [sym_preproc_def] = STATE(1396), - [sym_preproc_function_def] = STATE(1396), - [sym_preproc_call] = STATE(1396), - [sym_preproc_if_in_field_declaration_list] = STATE(1396), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1396), - [sym_type_definition] = STATE(1396), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6387), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1396), - [sym_field_declaration] = STATE(1396), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1396), - [sym_operator_cast] = STATE(7505), - [sym_inline_method_definition] = STATE(1396), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(1396), - [sym_operator_cast_declaration] = STATE(1396), - [sym_constructor_or_destructor_definition] = STATE(1396), - [sym_constructor_or_destructor_declaration] = STATE(1396), - [sym_friend_declaration] = STATE(1396), - [sym_access_specifier] = STATE(9485), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1396), - [sym_alias_declaration] = STATE(1396), - [sym_static_assert_declaration] = STATE(1396), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1396), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3686), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3766), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), + [1457] = { + [sym__expression] = STATE(3928), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(4303), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3698), - }, - [1414] = { - [ts_builtin_sym_end] = ACTIONS(3232), - [sym_identifier] = ACTIONS(3230), - [aux_sym_preproc_include_token1] = ACTIONS(3230), - [aux_sym_preproc_def_token1] = ACTIONS(3230), - [aux_sym_preproc_if_token1] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3230), - [sym_preproc_directive] = ACTIONS(3230), - [anon_sym_LPAREN2] = ACTIONS(3232), - [anon_sym_BANG] = ACTIONS(3232), - [anon_sym_TILDE] = ACTIONS(3232), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(3232), - [anon_sym_AMP_AMP] = ACTIONS(3232), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym___extension__] = ACTIONS(3230), - [anon_sym_typedef] = ACTIONS(3230), - [anon_sym_extern] = ACTIONS(3230), - [anon_sym___attribute__] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3232), - [anon_sym___declspec] = ACTIONS(3230), - [anon_sym___based] = ACTIONS(3230), - [anon_sym___cdecl] = ACTIONS(3230), - [anon_sym___clrcall] = ACTIONS(3230), - [anon_sym___stdcall] = ACTIONS(3230), - [anon_sym___fastcall] = ACTIONS(3230), - [anon_sym___thiscall] = ACTIONS(3230), - [anon_sym___vectorcall] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3232), - [anon_sym_signed] = ACTIONS(3230), - [anon_sym_unsigned] = ACTIONS(3230), - [anon_sym_long] = ACTIONS(3230), - [anon_sym_short] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3230), - [anon_sym_register] = ACTIONS(3230), - [anon_sym_inline] = ACTIONS(3230), - [anon_sym___inline] = ACTIONS(3230), - [anon_sym___inline__] = ACTIONS(3230), - [anon_sym___forceinline] = ACTIONS(3230), - [anon_sym_thread_local] = ACTIONS(3230), - [anon_sym___thread] = ACTIONS(3230), - [anon_sym_const] = ACTIONS(3230), - [anon_sym_constexpr] = ACTIONS(3230), - [anon_sym_volatile] = ACTIONS(3230), - [anon_sym_restrict] = ACTIONS(3230), - [anon_sym___restrict__] = ACTIONS(3230), - [anon_sym__Atomic] = ACTIONS(3230), - [anon_sym__Noreturn] = ACTIONS(3230), - [anon_sym_noreturn] = ACTIONS(3230), - [anon_sym_mutable] = ACTIONS(3230), - [anon_sym_constinit] = ACTIONS(3230), - [anon_sym_consteval] = ACTIONS(3230), - [sym_primitive_type] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3230), - [anon_sym_class] = ACTIONS(3230), - [anon_sym_struct] = ACTIONS(3230), - [anon_sym_union] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_switch] = ACTIONS(3230), - [anon_sym_case] = ACTIONS(3230), - [anon_sym_default] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_do] = ACTIONS(3230), - [anon_sym_for] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_goto] = ACTIONS(3230), - [anon_sym_not] = ACTIONS(3230), - [anon_sym_compl] = ACTIONS(3230), - [anon_sym_DASH_DASH] = ACTIONS(3232), - [anon_sym_PLUS_PLUS] = ACTIONS(3232), - [anon_sym_sizeof] = ACTIONS(3230), - [anon_sym___alignof__] = ACTIONS(3230), - [anon_sym___alignof] = ACTIONS(3230), - [anon_sym__alignof] = ACTIONS(3230), - [anon_sym_alignof] = ACTIONS(3230), - [anon_sym__Alignof] = ACTIONS(3230), - [anon_sym_offsetof] = ACTIONS(3230), - [anon_sym__Generic] = ACTIONS(3230), - [anon_sym_asm] = ACTIONS(3230), - [anon_sym___asm__] = ACTIONS(3230), - [sym_number_literal] = ACTIONS(3232), - [anon_sym_L_SQUOTE] = ACTIONS(3232), - [anon_sym_u_SQUOTE] = ACTIONS(3232), - [anon_sym_U_SQUOTE] = ACTIONS(3232), - [anon_sym_u8_SQUOTE] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3232), - [anon_sym_L_DQUOTE] = ACTIONS(3232), - [anon_sym_u_DQUOTE] = ACTIONS(3232), - [anon_sym_U_DQUOTE] = ACTIONS(3232), - [anon_sym_u8_DQUOTE] = ACTIONS(3232), - [anon_sym_DQUOTE] = ACTIONS(3232), - [sym_true] = ACTIONS(3230), - [sym_false] = ACTIONS(3230), - [anon_sym_NULL] = ACTIONS(3230), - [anon_sym_nullptr] = ACTIONS(3230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3230), - [anon_sym_decltype] = ACTIONS(3230), - [anon_sym_virtual] = ACTIONS(3230), - [anon_sym_alignas] = ACTIONS(3230), - [anon_sym_explicit] = ACTIONS(3230), - [anon_sym_typename] = ACTIONS(3230), - [anon_sym_template] = ACTIONS(3230), - [anon_sym_operator] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_delete] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_namespace] = ACTIONS(3230), - [anon_sym_using] = ACTIONS(3230), - [anon_sym_static_assert] = ACTIONS(3230), - [anon_sym_concept] = ACTIONS(3230), - [anon_sym_co_return] = ACTIONS(3230), - [anon_sym_co_yield] = ACTIONS(3230), - [anon_sym_R_DQUOTE] = ACTIONS(3232), - [anon_sym_LR_DQUOTE] = ACTIONS(3232), - [anon_sym_uR_DQUOTE] = ACTIONS(3232), - [anon_sym_UR_DQUOTE] = ACTIONS(3232), - [anon_sym_u8R_DQUOTE] = ACTIONS(3232), - [anon_sym_co_await] = ACTIONS(3230), - [anon_sym_new] = ACTIONS(3230), - [anon_sym_requires] = ACTIONS(3230), - [sym_this] = ACTIONS(3230), - }, - [1415] = { - [ts_builtin_sym_end] = ACTIONS(3253), - [sym_identifier] = ACTIONS(3251), - [aux_sym_preproc_include_token1] = ACTIONS(3251), - [aux_sym_preproc_def_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3251), - [sym_preproc_directive] = ACTIONS(3251), - [anon_sym_LPAREN2] = ACTIONS(3253), - [anon_sym_BANG] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym___extension__] = ACTIONS(3251), - [anon_sym_typedef] = ACTIONS(3251), - [anon_sym_extern] = ACTIONS(3251), - [anon_sym___attribute__] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(3253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3253), - [anon_sym___declspec] = ACTIONS(3251), - [anon_sym___based] = ACTIONS(3251), - [anon_sym___cdecl] = ACTIONS(3251), - [anon_sym___clrcall] = ACTIONS(3251), - [anon_sym___stdcall] = ACTIONS(3251), - [anon_sym___fastcall] = ACTIONS(3251), - [anon_sym___thiscall] = ACTIONS(3251), - [anon_sym___vectorcall] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_signed] = ACTIONS(3251), - [anon_sym_unsigned] = ACTIONS(3251), - [anon_sym_long] = ACTIONS(3251), - [anon_sym_short] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_register] = ACTIONS(3251), - [anon_sym_inline] = ACTIONS(3251), - [anon_sym___inline] = ACTIONS(3251), - [anon_sym___inline__] = ACTIONS(3251), - [anon_sym___forceinline] = ACTIONS(3251), - [anon_sym_thread_local] = ACTIONS(3251), - [anon_sym___thread] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_constexpr] = ACTIONS(3251), - [anon_sym_volatile] = ACTIONS(3251), - [anon_sym_restrict] = ACTIONS(3251), - [anon_sym___restrict__] = ACTIONS(3251), - [anon_sym__Atomic] = ACTIONS(3251), - [anon_sym__Noreturn] = ACTIONS(3251), - [anon_sym_noreturn] = ACTIONS(3251), - [anon_sym_mutable] = ACTIONS(3251), - [anon_sym_constinit] = ACTIONS(3251), - [anon_sym_consteval] = ACTIONS(3251), - [sym_primitive_type] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_union] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_switch] = ACTIONS(3251), - [anon_sym_case] = ACTIONS(3251), - [anon_sym_default] = ACTIONS(3251), - [anon_sym_while] = ACTIONS(3251), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_goto] = ACTIONS(3251), - [anon_sym_not] = ACTIONS(3251), - [anon_sym_compl] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_PLUS_PLUS] = ACTIONS(3253), - [anon_sym_sizeof] = ACTIONS(3251), - [anon_sym___alignof__] = ACTIONS(3251), - [anon_sym___alignof] = ACTIONS(3251), - [anon_sym__alignof] = ACTIONS(3251), - [anon_sym_alignof] = ACTIONS(3251), - [anon_sym__Alignof] = ACTIONS(3251), - [anon_sym_offsetof] = ACTIONS(3251), - [anon_sym__Generic] = ACTIONS(3251), - [anon_sym_asm] = ACTIONS(3251), - [anon_sym___asm__] = ACTIONS(3251), - [sym_number_literal] = ACTIONS(3253), - [anon_sym_L_SQUOTE] = ACTIONS(3253), - [anon_sym_u_SQUOTE] = ACTIONS(3253), - [anon_sym_U_SQUOTE] = ACTIONS(3253), - [anon_sym_u8_SQUOTE] = ACTIONS(3253), - [anon_sym_SQUOTE] = ACTIONS(3253), - [anon_sym_L_DQUOTE] = ACTIONS(3253), - [anon_sym_u_DQUOTE] = ACTIONS(3253), - [anon_sym_U_DQUOTE] = ACTIONS(3253), - [anon_sym_u8_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [anon_sym_NULL] = ACTIONS(3251), - [anon_sym_nullptr] = ACTIONS(3251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3251), - [anon_sym_decltype] = ACTIONS(3251), - [anon_sym_virtual] = ACTIONS(3251), - [anon_sym_alignas] = ACTIONS(3251), - [anon_sym_explicit] = ACTIONS(3251), - [anon_sym_typename] = ACTIONS(3251), - [anon_sym_template] = ACTIONS(3251), - [anon_sym_operator] = ACTIONS(3251), - [anon_sym_try] = ACTIONS(3251), - [anon_sym_delete] = ACTIONS(3251), - [anon_sym_throw] = ACTIONS(3251), - [anon_sym_namespace] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_static_assert] = ACTIONS(3251), - [anon_sym_concept] = ACTIONS(3251), - [anon_sym_co_return] = ACTIONS(3251), - [anon_sym_co_yield] = ACTIONS(3251), - [anon_sym_R_DQUOTE] = ACTIONS(3253), - [anon_sym_LR_DQUOTE] = ACTIONS(3253), - [anon_sym_uR_DQUOTE] = ACTIONS(3253), - [anon_sym_UR_DQUOTE] = ACTIONS(3253), - [anon_sym_u8R_DQUOTE] = ACTIONS(3253), - [anon_sym_co_await] = ACTIONS(3251), - [anon_sym_new] = ACTIONS(3251), - [anon_sym_requires] = ACTIONS(3251), - [sym_this] = ACTIONS(3251), - }, - [1416] = { - [ts_builtin_sym_end] = ACTIONS(3284), - [sym_identifier] = ACTIONS(3282), - [aux_sym_preproc_include_token1] = ACTIONS(3282), - [aux_sym_preproc_def_token1] = ACTIONS(3282), - [aux_sym_preproc_if_token1] = ACTIONS(3282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3282), - [sym_preproc_directive] = ACTIONS(3282), - [anon_sym_LPAREN2] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3282), - [anon_sym_PLUS] = ACTIONS(3282), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_AMP_AMP] = ACTIONS(3284), - [anon_sym_AMP] = ACTIONS(3282), - [anon_sym___extension__] = ACTIONS(3282), - [anon_sym_typedef] = ACTIONS(3282), - [anon_sym_extern] = ACTIONS(3282), - [anon_sym___attribute__] = ACTIONS(3282), - [anon_sym_COLON_COLON] = ACTIONS(3284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3284), - [anon_sym___declspec] = ACTIONS(3282), - [anon_sym___based] = ACTIONS(3282), - [anon_sym___cdecl] = ACTIONS(3282), - [anon_sym___clrcall] = ACTIONS(3282), - [anon_sym___stdcall] = ACTIONS(3282), - [anon_sym___fastcall] = ACTIONS(3282), - [anon_sym___thiscall] = ACTIONS(3282), - [anon_sym___vectorcall] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_signed] = ACTIONS(3282), - [anon_sym_unsigned] = ACTIONS(3282), - [anon_sym_long] = ACTIONS(3282), - [anon_sym_short] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_register] = ACTIONS(3282), - [anon_sym_inline] = ACTIONS(3282), - [anon_sym___inline] = ACTIONS(3282), - [anon_sym___inline__] = ACTIONS(3282), - [anon_sym___forceinline] = ACTIONS(3282), - [anon_sym_thread_local] = ACTIONS(3282), - [anon_sym___thread] = ACTIONS(3282), - [anon_sym_const] = ACTIONS(3282), - [anon_sym_constexpr] = ACTIONS(3282), - [anon_sym_volatile] = ACTIONS(3282), - [anon_sym_restrict] = ACTIONS(3282), - [anon_sym___restrict__] = ACTIONS(3282), - [anon_sym__Atomic] = ACTIONS(3282), - [anon_sym__Noreturn] = ACTIONS(3282), - [anon_sym_noreturn] = ACTIONS(3282), - [anon_sym_mutable] = ACTIONS(3282), - [anon_sym_constinit] = ACTIONS(3282), - [anon_sym_consteval] = ACTIONS(3282), - [sym_primitive_type] = ACTIONS(3282), - [anon_sym_enum] = ACTIONS(3282), - [anon_sym_class] = ACTIONS(3282), - [anon_sym_struct] = ACTIONS(3282), - [anon_sym_union] = ACTIONS(3282), - [anon_sym_if] = ACTIONS(3282), - [anon_sym_switch] = ACTIONS(3282), - [anon_sym_case] = ACTIONS(3282), - [anon_sym_default] = ACTIONS(3282), - [anon_sym_while] = ACTIONS(3282), - [anon_sym_do] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3282), - [anon_sym_return] = ACTIONS(3282), - [anon_sym_break] = ACTIONS(3282), - [anon_sym_continue] = ACTIONS(3282), - [anon_sym_goto] = ACTIONS(3282), - [anon_sym_not] = ACTIONS(3282), - [anon_sym_compl] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_sizeof] = ACTIONS(3282), - [anon_sym___alignof__] = ACTIONS(3282), - [anon_sym___alignof] = ACTIONS(3282), - [anon_sym__alignof] = ACTIONS(3282), - [anon_sym_alignof] = ACTIONS(3282), - [anon_sym__Alignof] = ACTIONS(3282), - [anon_sym_offsetof] = ACTIONS(3282), - [anon_sym__Generic] = ACTIONS(3282), - [anon_sym_asm] = ACTIONS(3282), - [anon_sym___asm__] = ACTIONS(3282), - [sym_number_literal] = ACTIONS(3284), - [anon_sym_L_SQUOTE] = ACTIONS(3284), - [anon_sym_u_SQUOTE] = ACTIONS(3284), - [anon_sym_U_SQUOTE] = ACTIONS(3284), - [anon_sym_u8_SQUOTE] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3284), - [anon_sym_L_DQUOTE] = ACTIONS(3284), - [anon_sym_u_DQUOTE] = ACTIONS(3284), - [anon_sym_U_DQUOTE] = ACTIONS(3284), - [anon_sym_u8_DQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [sym_true] = ACTIONS(3282), - [sym_false] = ACTIONS(3282), - [anon_sym_NULL] = ACTIONS(3282), - [anon_sym_nullptr] = ACTIONS(3282), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3282), - [anon_sym_decltype] = ACTIONS(3282), - [anon_sym_virtual] = ACTIONS(3282), - [anon_sym_alignas] = ACTIONS(3282), - [anon_sym_explicit] = ACTIONS(3282), - [anon_sym_typename] = ACTIONS(3282), - [anon_sym_template] = ACTIONS(3282), - [anon_sym_operator] = ACTIONS(3282), - [anon_sym_try] = ACTIONS(3282), - [anon_sym_delete] = ACTIONS(3282), - [anon_sym_throw] = ACTIONS(3282), - [anon_sym_namespace] = ACTIONS(3282), - [anon_sym_using] = ACTIONS(3282), - [anon_sym_static_assert] = ACTIONS(3282), - [anon_sym_concept] = ACTIONS(3282), - [anon_sym_co_return] = ACTIONS(3282), - [anon_sym_co_yield] = ACTIONS(3282), - [anon_sym_R_DQUOTE] = ACTIONS(3284), - [anon_sym_LR_DQUOTE] = ACTIONS(3284), - [anon_sym_uR_DQUOTE] = ACTIONS(3284), - [anon_sym_UR_DQUOTE] = ACTIONS(3284), - [anon_sym_u8R_DQUOTE] = ACTIONS(3284), - [anon_sym_co_await] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3282), - [anon_sym_requires] = ACTIONS(3282), - [sym_this] = ACTIONS(3282), - }, - [1417] = { - [ts_builtin_sym_end] = ACTIONS(3330), - [sym_identifier] = ACTIONS(3328), - [aux_sym_preproc_include_token1] = ACTIONS(3328), - [aux_sym_preproc_def_token1] = ACTIONS(3328), - [aux_sym_preproc_if_token1] = ACTIONS(3328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3328), - [sym_preproc_directive] = ACTIONS(3328), - [anon_sym_LPAREN2] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_STAR] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym___extension__] = ACTIONS(3328), - [anon_sym_typedef] = ACTIONS(3328), - [anon_sym_extern] = ACTIONS(3328), - [anon_sym___attribute__] = ACTIONS(3328), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3330), - [anon_sym___declspec] = ACTIONS(3328), - [anon_sym___based] = ACTIONS(3328), - [anon_sym___cdecl] = ACTIONS(3328), - [anon_sym___clrcall] = ACTIONS(3328), - [anon_sym___stdcall] = ACTIONS(3328), - [anon_sym___fastcall] = ACTIONS(3328), - [anon_sym___thiscall] = ACTIONS(3328), - [anon_sym___vectorcall] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_signed] = ACTIONS(3328), - [anon_sym_unsigned] = ACTIONS(3328), - [anon_sym_long] = ACTIONS(3328), - [anon_sym_short] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_register] = ACTIONS(3328), - [anon_sym_inline] = ACTIONS(3328), - [anon_sym___inline] = ACTIONS(3328), - [anon_sym___inline__] = ACTIONS(3328), - [anon_sym___forceinline] = ACTIONS(3328), - [anon_sym_thread_local] = ACTIONS(3328), - [anon_sym___thread] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_constexpr] = ACTIONS(3328), - [anon_sym_volatile] = ACTIONS(3328), - [anon_sym_restrict] = ACTIONS(3328), - [anon_sym___restrict__] = ACTIONS(3328), - [anon_sym__Atomic] = ACTIONS(3328), - [anon_sym__Noreturn] = ACTIONS(3328), - [anon_sym_noreturn] = ACTIONS(3328), - [anon_sym_mutable] = ACTIONS(3328), - [anon_sym_constinit] = ACTIONS(3328), - [anon_sym_consteval] = ACTIONS(3328), - [sym_primitive_type] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_struct] = ACTIONS(3328), - [anon_sym_union] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_switch] = ACTIONS(3328), - [anon_sym_case] = ACTIONS(3328), - [anon_sym_default] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_goto] = ACTIONS(3328), - [anon_sym_not] = ACTIONS(3328), - [anon_sym_compl] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_sizeof] = ACTIONS(3328), - [anon_sym___alignof__] = ACTIONS(3328), - [anon_sym___alignof] = ACTIONS(3328), - [anon_sym__alignof] = ACTIONS(3328), - [anon_sym_alignof] = ACTIONS(3328), - [anon_sym__Alignof] = ACTIONS(3328), - [anon_sym_offsetof] = ACTIONS(3328), - [anon_sym__Generic] = ACTIONS(3328), - [anon_sym_asm] = ACTIONS(3328), - [anon_sym___asm__] = ACTIONS(3328), - [sym_number_literal] = ACTIONS(3330), - [anon_sym_L_SQUOTE] = ACTIONS(3330), - [anon_sym_u_SQUOTE] = ACTIONS(3330), - [anon_sym_U_SQUOTE] = ACTIONS(3330), - [anon_sym_u8_SQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_L_DQUOTE] = ACTIONS(3330), - [anon_sym_u_DQUOTE] = ACTIONS(3330), - [anon_sym_U_DQUOTE] = ACTIONS(3330), - [anon_sym_u8_DQUOTE] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [anon_sym_NULL] = ACTIONS(3328), - [anon_sym_nullptr] = ACTIONS(3328), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3328), - [anon_sym_decltype] = ACTIONS(3328), - [anon_sym_virtual] = ACTIONS(3328), - [anon_sym_alignas] = ACTIONS(3328), - [anon_sym_explicit] = ACTIONS(3328), - [anon_sym_typename] = ACTIONS(3328), - [anon_sym_template] = ACTIONS(3328), - [anon_sym_operator] = ACTIONS(3328), - [anon_sym_try] = ACTIONS(3328), - [anon_sym_delete] = ACTIONS(3328), - [anon_sym_throw] = ACTIONS(3328), - [anon_sym_namespace] = ACTIONS(3328), - [anon_sym_using] = ACTIONS(3328), - [anon_sym_static_assert] = ACTIONS(3328), - [anon_sym_concept] = ACTIONS(3328), - [anon_sym_co_return] = ACTIONS(3328), - [anon_sym_co_yield] = ACTIONS(3328), - [anon_sym_R_DQUOTE] = ACTIONS(3330), - [anon_sym_LR_DQUOTE] = ACTIONS(3330), - [anon_sym_uR_DQUOTE] = ACTIONS(3330), - [anon_sym_UR_DQUOTE] = ACTIONS(3330), - [anon_sym_u8R_DQUOTE] = ACTIONS(3330), - [anon_sym_co_await] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3328), - [anon_sym_requires] = ACTIONS(3328), - [sym_this] = ACTIONS(3328), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1418] = { - [sym_preproc_def] = STATE(1396), - [sym_preproc_function_def] = STATE(1396), - [sym_preproc_call] = STATE(1396), - [sym_preproc_if_in_field_declaration_list] = STATE(1396), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1396), - [sym_type_definition] = STATE(1396), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6387), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1396), - [sym_field_declaration] = STATE(1396), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1396), - [sym_operator_cast] = STATE(7505), - [sym_inline_method_definition] = STATE(1396), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(1396), - [sym_operator_cast_declaration] = STATE(1396), - [sym_constructor_or_destructor_definition] = STATE(1396), - [sym_constructor_or_destructor_declaration] = STATE(1396), - [sym_friend_declaration] = STATE(1396), - [sym_access_specifier] = STATE(9485), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1396), - [sym_alias_declaration] = STATE(1396), - [sym_static_assert_declaration] = STATE(1396), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1396), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3686), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3768), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), + [1458] = { + [sym__expression] = STATE(4030), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3698), - }, - [1419] = { - [ts_builtin_sym_end] = ACTIONS(3424), - [sym_identifier] = ACTIONS(3422), - [aux_sym_preproc_include_token1] = ACTIONS(3422), - [aux_sym_preproc_def_token1] = ACTIONS(3422), - [aux_sym_preproc_if_token1] = ACTIONS(3422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3422), - [sym_preproc_directive] = ACTIONS(3422), - [anon_sym_LPAREN2] = ACTIONS(3424), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3424), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_STAR] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym___extension__] = ACTIONS(3422), - [anon_sym_typedef] = ACTIONS(3422), - [anon_sym_extern] = ACTIONS(3422), - [anon_sym___attribute__] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3424), - [anon_sym___declspec] = ACTIONS(3422), - [anon_sym___based] = ACTIONS(3422), - [anon_sym___cdecl] = ACTIONS(3422), - [anon_sym___clrcall] = ACTIONS(3422), - [anon_sym___stdcall] = ACTIONS(3422), - [anon_sym___fastcall] = ACTIONS(3422), - [anon_sym___thiscall] = ACTIONS(3422), - [anon_sym___vectorcall] = ACTIONS(3422), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_signed] = ACTIONS(3422), - [anon_sym_unsigned] = ACTIONS(3422), - [anon_sym_long] = ACTIONS(3422), - [anon_sym_short] = ACTIONS(3422), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_static] = ACTIONS(3422), - [anon_sym_register] = ACTIONS(3422), - [anon_sym_inline] = ACTIONS(3422), - [anon_sym___inline] = ACTIONS(3422), - [anon_sym___inline__] = ACTIONS(3422), - [anon_sym___forceinline] = ACTIONS(3422), - [anon_sym_thread_local] = ACTIONS(3422), - [anon_sym___thread] = ACTIONS(3422), - [anon_sym_const] = ACTIONS(3422), - [anon_sym_constexpr] = ACTIONS(3422), - [anon_sym_volatile] = ACTIONS(3422), - [anon_sym_restrict] = ACTIONS(3422), - [anon_sym___restrict__] = ACTIONS(3422), - [anon_sym__Atomic] = ACTIONS(3422), - [anon_sym__Noreturn] = ACTIONS(3422), - [anon_sym_noreturn] = ACTIONS(3422), - [anon_sym_mutable] = ACTIONS(3422), - [anon_sym_constinit] = ACTIONS(3422), - [anon_sym_consteval] = ACTIONS(3422), - [sym_primitive_type] = ACTIONS(3422), - [anon_sym_enum] = ACTIONS(3422), - [anon_sym_class] = ACTIONS(3422), - [anon_sym_struct] = ACTIONS(3422), - [anon_sym_union] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3422), - [anon_sym_switch] = ACTIONS(3422), - [anon_sym_case] = ACTIONS(3422), - [anon_sym_default] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_do] = ACTIONS(3422), - [anon_sym_for] = ACTIONS(3422), - [anon_sym_return] = ACTIONS(3422), - [anon_sym_break] = ACTIONS(3422), - [anon_sym_continue] = ACTIONS(3422), - [anon_sym_goto] = ACTIONS(3422), - [anon_sym_not] = ACTIONS(3422), - [anon_sym_compl] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3422), - [anon_sym___alignof__] = ACTIONS(3422), - [anon_sym___alignof] = ACTIONS(3422), - [anon_sym__alignof] = ACTIONS(3422), - [anon_sym_alignof] = ACTIONS(3422), - [anon_sym__Alignof] = ACTIONS(3422), - [anon_sym_offsetof] = ACTIONS(3422), - [anon_sym__Generic] = ACTIONS(3422), - [anon_sym_asm] = ACTIONS(3422), - [anon_sym___asm__] = ACTIONS(3422), - [sym_number_literal] = ACTIONS(3424), - [anon_sym_L_SQUOTE] = ACTIONS(3424), - [anon_sym_u_SQUOTE] = ACTIONS(3424), - [anon_sym_U_SQUOTE] = ACTIONS(3424), - [anon_sym_u8_SQUOTE] = ACTIONS(3424), - [anon_sym_SQUOTE] = ACTIONS(3424), - [anon_sym_L_DQUOTE] = ACTIONS(3424), - [anon_sym_u_DQUOTE] = ACTIONS(3424), - [anon_sym_U_DQUOTE] = ACTIONS(3424), - [anon_sym_u8_DQUOTE] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [sym_true] = ACTIONS(3422), - [sym_false] = ACTIONS(3422), - [anon_sym_NULL] = ACTIONS(3422), - [anon_sym_nullptr] = ACTIONS(3422), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3422), - [anon_sym_decltype] = ACTIONS(3422), - [anon_sym_virtual] = ACTIONS(3422), - [anon_sym_alignas] = ACTIONS(3422), - [anon_sym_explicit] = ACTIONS(3422), - [anon_sym_typename] = ACTIONS(3422), - [anon_sym_template] = ACTIONS(3422), - [anon_sym_operator] = ACTIONS(3422), - [anon_sym_try] = ACTIONS(3422), - [anon_sym_delete] = ACTIONS(3422), - [anon_sym_throw] = ACTIONS(3422), - [anon_sym_namespace] = ACTIONS(3422), - [anon_sym_using] = ACTIONS(3422), - [anon_sym_static_assert] = ACTIONS(3422), - [anon_sym_concept] = ACTIONS(3422), - [anon_sym_co_return] = ACTIONS(3422), - [anon_sym_co_yield] = ACTIONS(3422), - [anon_sym_R_DQUOTE] = ACTIONS(3424), - [anon_sym_LR_DQUOTE] = ACTIONS(3424), - [anon_sym_uR_DQUOTE] = ACTIONS(3424), - [anon_sym_UR_DQUOTE] = ACTIONS(3424), - [anon_sym_u8R_DQUOTE] = ACTIONS(3424), - [anon_sym_co_await] = ACTIONS(3422), - [anon_sym_new] = ACTIONS(3422), - [anon_sym_requires] = ACTIONS(3422), - [sym_this] = ACTIONS(3422), - }, - [1420] = { - [ts_builtin_sym_end] = ACTIONS(3364), - [sym_identifier] = ACTIONS(3362), - [aux_sym_preproc_include_token1] = ACTIONS(3362), - [aux_sym_preproc_def_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), - [sym_preproc_directive] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3362), - [anon_sym_PLUS] = ACTIONS(3362), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3362), - [anon_sym___extension__] = ACTIONS(3362), - [anon_sym_typedef] = ACTIONS(3362), - [anon_sym_extern] = ACTIONS(3362), - [anon_sym___attribute__] = ACTIONS(3362), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), - [anon_sym___declspec] = ACTIONS(3362), - [anon_sym___based] = ACTIONS(3362), - [anon_sym___cdecl] = ACTIONS(3362), - [anon_sym___clrcall] = ACTIONS(3362), - [anon_sym___stdcall] = ACTIONS(3362), - [anon_sym___fastcall] = ACTIONS(3362), - [anon_sym___thiscall] = ACTIONS(3362), - [anon_sym___vectorcall] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_signed] = ACTIONS(3362), - [anon_sym_unsigned] = ACTIONS(3362), - [anon_sym_long] = ACTIONS(3362), - [anon_sym_short] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_register] = ACTIONS(3362), - [anon_sym_inline] = ACTIONS(3362), - [anon_sym___inline] = ACTIONS(3362), - [anon_sym___inline__] = ACTIONS(3362), - [anon_sym___forceinline] = ACTIONS(3362), - [anon_sym_thread_local] = ACTIONS(3362), - [anon_sym___thread] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_constexpr] = ACTIONS(3362), - [anon_sym_volatile] = ACTIONS(3362), - [anon_sym_restrict] = ACTIONS(3362), - [anon_sym___restrict__] = ACTIONS(3362), - [anon_sym__Atomic] = ACTIONS(3362), - [anon_sym__Noreturn] = ACTIONS(3362), - [anon_sym_noreturn] = ACTIONS(3362), - [anon_sym_mutable] = ACTIONS(3362), - [anon_sym_constinit] = ACTIONS(3362), - [anon_sym_consteval] = ACTIONS(3362), - [sym_primitive_type] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3362), - [anon_sym_case] = ACTIONS(3362), - [anon_sym_default] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_do] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_goto] = ACTIONS(3362), - [anon_sym_not] = ACTIONS(3362), - [anon_sym_compl] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_sizeof] = ACTIONS(3362), - [anon_sym___alignof__] = ACTIONS(3362), - [anon_sym___alignof] = ACTIONS(3362), - [anon_sym__alignof] = ACTIONS(3362), - [anon_sym_alignof] = ACTIONS(3362), - [anon_sym__Alignof] = ACTIONS(3362), - [anon_sym_offsetof] = ACTIONS(3362), - [anon_sym__Generic] = ACTIONS(3362), - [anon_sym_asm] = ACTIONS(3362), - [anon_sym___asm__] = ACTIONS(3362), - [sym_number_literal] = ACTIONS(3364), - [anon_sym_L_SQUOTE] = ACTIONS(3364), - [anon_sym_u_SQUOTE] = ACTIONS(3364), - [anon_sym_U_SQUOTE] = ACTIONS(3364), - [anon_sym_u8_SQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_L_DQUOTE] = ACTIONS(3364), - [anon_sym_u_DQUOTE] = ACTIONS(3364), - [anon_sym_U_DQUOTE] = ACTIONS(3364), - [anon_sym_u8_DQUOTE] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [sym_true] = ACTIONS(3362), - [sym_false] = ACTIONS(3362), - [anon_sym_NULL] = ACTIONS(3362), - [anon_sym_nullptr] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3362), - [anon_sym_decltype] = ACTIONS(3362), - [anon_sym_virtual] = ACTIONS(3362), - [anon_sym_alignas] = ACTIONS(3362), - [anon_sym_explicit] = ACTIONS(3362), - [anon_sym_typename] = ACTIONS(3362), - [anon_sym_template] = ACTIONS(3362), - [anon_sym_operator] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [anon_sym_delete] = ACTIONS(3362), - [anon_sym_throw] = ACTIONS(3362), - [anon_sym_namespace] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_static_assert] = ACTIONS(3362), - [anon_sym_concept] = ACTIONS(3362), - [anon_sym_co_return] = ACTIONS(3362), - [anon_sym_co_yield] = ACTIONS(3362), - [anon_sym_R_DQUOTE] = ACTIONS(3364), - [anon_sym_LR_DQUOTE] = ACTIONS(3364), - [anon_sym_uR_DQUOTE] = ACTIONS(3364), - [anon_sym_UR_DQUOTE] = ACTIONS(3364), - [anon_sym_u8R_DQUOTE] = ACTIONS(3364), - [anon_sym_co_await] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3362), - [anon_sym_requires] = ACTIONS(3362), - [sym_this] = ACTIONS(3362), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1421] = { - [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___extension__] = ACTIONS(3318), - [anon_sym_typedef] = ACTIONS(3318), - [anon_sym_extern] = ACTIONS(3318), - [anon_sym___attribute__] = ACTIONS(3318), - [anon_sym_COLON_COLON] = ACTIONS(3320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3320), - [anon_sym___declspec] = ACTIONS(3318), - [anon_sym___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_mutable] = ACTIONS(3318), - [anon_sym_constinit] = ACTIONS(3318), - [anon_sym_consteval] = ACTIONS(3318), - [sym_primitive_type] = ACTIONS(3318), - [anon_sym_enum] = ACTIONS(3318), - [anon_sym_class] = ACTIONS(3318), - [anon_sym_struct] = ACTIONS(3318), - [anon_sym_union] = ACTIONS(3318), - [anon_sym_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), - [sym_number_literal] = ACTIONS(3320), - [anon_sym_L_SQUOTE] = ACTIONS(3320), - [anon_sym_u_SQUOTE] = ACTIONS(3320), - [anon_sym_U_SQUOTE] = ACTIONS(3320), - [anon_sym_u8_SQUOTE] = ACTIONS(3320), - [anon_sym_SQUOTE] = ACTIONS(3320), - [anon_sym_L_DQUOTE] = ACTIONS(3320), - [anon_sym_u_DQUOTE] = ACTIONS(3320), - [anon_sym_U_DQUOTE] = ACTIONS(3320), - [anon_sym_u8_DQUOTE] = ACTIONS(3320), - [anon_sym_DQUOTE] = ACTIONS(3320), - [sym_true] = ACTIONS(3318), - [sym_false] = ACTIONS(3318), - [anon_sym_NULL] = ACTIONS(3318), - [anon_sym_nullptr] = ACTIONS(3318), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3318), - [anon_sym_decltype] = ACTIONS(3318), - [anon_sym_virtual] = ACTIONS(3318), - [anon_sym_alignas] = ACTIONS(3318), - [anon_sym_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_using] = 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), + [1459] = { + [sym__expression] = STATE(2884), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(4499), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, - [1422] = { - [sym__expression] = STATE(4777), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(4789), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), - [anon_sym_COMMA] = ACTIONS(2016), - [anon_sym_RPAREN] = ACTIONS(2016), + [1460] = { + [sym__expression] = STATE(4187), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(2016), - [anon_sym_BANG_EQ] = ACTIONS(2016), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2016), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2016), - [anon_sym_GT_GT] = ACTIONS(2016), - [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(1368), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(2016), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_QMARK] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_LT_EQ_GT] = ACTIONS(2016), - [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(95), [anon_sym_PLUS_PLUS] = ACTIONS(95), [anon_sym_sizeof] = ACTIONS(97), @@ -249714,9 +236441,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2016), - [anon_sym_DASH_GT] = ACTIONS(2016), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -249733,7 +236457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -249746,6414 +236470,1035 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1423] = { - [ts_builtin_sym_end] = ACTIONS(3372), - [sym_identifier] = ACTIONS(3370), - [aux_sym_preproc_include_token1] = ACTIONS(3370), - [aux_sym_preproc_def_token1] = ACTIONS(3370), - [aux_sym_preproc_if_token1] = ACTIONS(3370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3370), - [sym_preproc_directive] = ACTIONS(3370), - [anon_sym_LPAREN2] = ACTIONS(3372), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(3372), - [anon_sym_DASH] = ACTIONS(3370), - [anon_sym_PLUS] = ACTIONS(3370), - [anon_sym_STAR] = ACTIONS(3372), - [anon_sym_AMP_AMP] = ACTIONS(3372), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym___extension__] = ACTIONS(3370), - [anon_sym_typedef] = ACTIONS(3370), - [anon_sym_extern] = ACTIONS(3370), - [anon_sym___attribute__] = ACTIONS(3370), - [anon_sym_COLON_COLON] = ACTIONS(3372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3372), - [anon_sym___declspec] = ACTIONS(3370), - [anon_sym___based] = ACTIONS(3370), - [anon_sym___cdecl] = ACTIONS(3370), - [anon_sym___clrcall] = ACTIONS(3370), - [anon_sym___stdcall] = ACTIONS(3370), - [anon_sym___fastcall] = ACTIONS(3370), - [anon_sym___thiscall] = ACTIONS(3370), - [anon_sym___vectorcall] = ACTIONS(3370), - [anon_sym_LBRACE] = ACTIONS(3372), - [anon_sym_signed] = ACTIONS(3370), - [anon_sym_unsigned] = ACTIONS(3370), - [anon_sym_long] = ACTIONS(3370), - [anon_sym_short] = ACTIONS(3370), - [anon_sym_LBRACK] = ACTIONS(3370), - [anon_sym_static] = ACTIONS(3370), - [anon_sym_register] = ACTIONS(3370), - [anon_sym_inline] = ACTIONS(3370), - [anon_sym___inline] = ACTIONS(3370), - [anon_sym___inline__] = ACTIONS(3370), - [anon_sym___forceinline] = ACTIONS(3370), - [anon_sym_thread_local] = ACTIONS(3370), - [anon_sym___thread] = ACTIONS(3370), - [anon_sym_const] = ACTIONS(3370), - [anon_sym_constexpr] = ACTIONS(3370), - [anon_sym_volatile] = ACTIONS(3370), - [anon_sym_restrict] = ACTIONS(3370), - [anon_sym___restrict__] = ACTIONS(3370), - [anon_sym__Atomic] = ACTIONS(3370), - [anon_sym__Noreturn] = ACTIONS(3370), - [anon_sym_noreturn] = ACTIONS(3370), - [anon_sym_mutable] = ACTIONS(3370), - [anon_sym_constinit] = ACTIONS(3370), - [anon_sym_consteval] = ACTIONS(3370), - [sym_primitive_type] = ACTIONS(3370), - [anon_sym_enum] = ACTIONS(3370), - [anon_sym_class] = ACTIONS(3370), - [anon_sym_struct] = ACTIONS(3370), - [anon_sym_union] = ACTIONS(3370), - [anon_sym_if] = ACTIONS(3370), - [anon_sym_switch] = ACTIONS(3370), - [anon_sym_case] = ACTIONS(3370), - [anon_sym_default] = ACTIONS(3370), - [anon_sym_while] = ACTIONS(3370), - [anon_sym_do] = ACTIONS(3370), - [anon_sym_for] = ACTIONS(3370), - [anon_sym_return] = ACTIONS(3370), - [anon_sym_break] = ACTIONS(3370), - [anon_sym_continue] = ACTIONS(3370), - [anon_sym_goto] = ACTIONS(3370), - [anon_sym_not] = ACTIONS(3370), - [anon_sym_compl] = ACTIONS(3370), - [anon_sym_DASH_DASH] = ACTIONS(3372), - [anon_sym_PLUS_PLUS] = ACTIONS(3372), - [anon_sym_sizeof] = ACTIONS(3370), - [anon_sym___alignof__] = ACTIONS(3370), - [anon_sym___alignof] = ACTIONS(3370), - [anon_sym__alignof] = ACTIONS(3370), - [anon_sym_alignof] = ACTIONS(3370), - [anon_sym__Alignof] = ACTIONS(3370), - [anon_sym_offsetof] = ACTIONS(3370), - [anon_sym__Generic] = ACTIONS(3370), - [anon_sym_asm] = ACTIONS(3370), - [anon_sym___asm__] = ACTIONS(3370), - [sym_number_literal] = ACTIONS(3372), - [anon_sym_L_SQUOTE] = ACTIONS(3372), - [anon_sym_u_SQUOTE] = ACTIONS(3372), - [anon_sym_U_SQUOTE] = ACTIONS(3372), - [anon_sym_u8_SQUOTE] = ACTIONS(3372), - [anon_sym_SQUOTE] = ACTIONS(3372), - [anon_sym_L_DQUOTE] = ACTIONS(3372), - [anon_sym_u_DQUOTE] = ACTIONS(3372), - [anon_sym_U_DQUOTE] = ACTIONS(3372), - [anon_sym_u8_DQUOTE] = ACTIONS(3372), - [anon_sym_DQUOTE] = ACTIONS(3372), - [sym_true] = ACTIONS(3370), - [sym_false] = ACTIONS(3370), - [anon_sym_NULL] = ACTIONS(3370), - [anon_sym_nullptr] = ACTIONS(3370), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3370), - [anon_sym_virtual] = ACTIONS(3370), - [anon_sym_alignas] = ACTIONS(3370), - [anon_sym_explicit] = ACTIONS(3370), - [anon_sym_typename] = ACTIONS(3370), - [anon_sym_template] = ACTIONS(3370), - [anon_sym_operator] = ACTIONS(3370), - [anon_sym_try] = ACTIONS(3370), - [anon_sym_delete] = ACTIONS(3370), - [anon_sym_throw] = ACTIONS(3370), - [anon_sym_namespace] = ACTIONS(3370), - [anon_sym_using] = ACTIONS(3370), - [anon_sym_static_assert] = ACTIONS(3370), - [anon_sym_concept] = ACTIONS(3370), - [anon_sym_co_return] = ACTIONS(3370), - [anon_sym_co_yield] = ACTIONS(3370), - [anon_sym_R_DQUOTE] = ACTIONS(3372), - [anon_sym_LR_DQUOTE] = ACTIONS(3372), - [anon_sym_uR_DQUOTE] = ACTIONS(3372), - [anon_sym_UR_DQUOTE] = ACTIONS(3372), - [anon_sym_u8R_DQUOTE] = ACTIONS(3372), - [anon_sym_co_await] = ACTIONS(3370), - [anon_sym_new] = ACTIONS(3370), - [anon_sym_requires] = ACTIONS(3370), - [sym_this] = ACTIONS(3370), + [1461] = { + [sym__expression] = STATE(4044), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, - [1424] = { - [sym_preproc_def] = STATE(1418), - [sym_preproc_function_def] = STATE(1418), - [sym_preproc_call] = STATE(1418), - [sym_preproc_if_in_field_declaration_list] = STATE(1418), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1418), - [sym_type_definition] = STATE(1418), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6387), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1418), - [sym_field_declaration] = STATE(1418), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1418), - [sym_operator_cast] = STATE(7505), - [sym_inline_method_definition] = STATE(1418), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(1418), - [sym_operator_cast_declaration] = STATE(1418), - [sym_constructor_or_destructor_definition] = STATE(1418), - [sym_constructor_or_destructor_declaration] = STATE(1418), - [sym_friend_declaration] = STATE(1418), - [sym_access_specifier] = STATE(9485), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1418), - [sym_alias_declaration] = STATE(1418), - [sym_static_assert_declaration] = STATE(1418), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1418), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3686), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3772), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), + [1462] = { + [sym__expression] = STATE(3834), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3698), - }, - [1425] = { - [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___extension__] = ACTIONS(3119), - [anon_sym_typedef] = ACTIONS(3119), - [anon_sym_extern] = ACTIONS(3119), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3119), - [anon_sym_constinit] = ACTIONS(3119), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3119), - [anon_sym_alignas] = 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_using] = 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), - }, - [1426] = { - [ts_builtin_sym_end] = ACTIONS(3416), - [sym_identifier] = ACTIONS(3414), - [aux_sym_preproc_include_token1] = ACTIONS(3414), - [aux_sym_preproc_def_token1] = ACTIONS(3414), - [aux_sym_preproc_if_token1] = ACTIONS(3414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3414), - [sym_preproc_directive] = ACTIONS(3414), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(3416), - [anon_sym_TILDE] = ACTIONS(3416), - [anon_sym_DASH] = ACTIONS(3414), - [anon_sym_PLUS] = ACTIONS(3414), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym___extension__] = ACTIONS(3414), - [anon_sym_typedef] = ACTIONS(3414), - [anon_sym_extern] = ACTIONS(3414), - [anon_sym___attribute__] = ACTIONS(3414), - [anon_sym_COLON_COLON] = ACTIONS(3416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3416), - [anon_sym___declspec] = ACTIONS(3414), - [anon_sym___based] = ACTIONS(3414), - [anon_sym___cdecl] = ACTIONS(3414), - [anon_sym___clrcall] = ACTIONS(3414), - [anon_sym___stdcall] = ACTIONS(3414), - [anon_sym___fastcall] = ACTIONS(3414), - [anon_sym___thiscall] = ACTIONS(3414), - [anon_sym___vectorcall] = ACTIONS(3414), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_signed] = ACTIONS(3414), - [anon_sym_unsigned] = ACTIONS(3414), - [anon_sym_long] = ACTIONS(3414), - [anon_sym_short] = ACTIONS(3414), - [anon_sym_LBRACK] = ACTIONS(3414), - [anon_sym_static] = ACTIONS(3414), - [anon_sym_register] = ACTIONS(3414), - [anon_sym_inline] = ACTIONS(3414), - [anon_sym___inline] = ACTIONS(3414), - [anon_sym___inline__] = ACTIONS(3414), - [anon_sym___forceinline] = ACTIONS(3414), - [anon_sym_thread_local] = ACTIONS(3414), - [anon_sym___thread] = ACTIONS(3414), - [anon_sym_const] = ACTIONS(3414), - [anon_sym_constexpr] = ACTIONS(3414), - [anon_sym_volatile] = ACTIONS(3414), - [anon_sym_restrict] = ACTIONS(3414), - [anon_sym___restrict__] = ACTIONS(3414), - [anon_sym__Atomic] = ACTIONS(3414), - [anon_sym__Noreturn] = ACTIONS(3414), - [anon_sym_noreturn] = ACTIONS(3414), - [anon_sym_mutable] = ACTIONS(3414), - [anon_sym_constinit] = ACTIONS(3414), - [anon_sym_consteval] = ACTIONS(3414), - [sym_primitive_type] = ACTIONS(3414), - [anon_sym_enum] = ACTIONS(3414), - [anon_sym_class] = ACTIONS(3414), - [anon_sym_struct] = ACTIONS(3414), - [anon_sym_union] = ACTIONS(3414), - [anon_sym_if] = ACTIONS(3414), - [anon_sym_switch] = ACTIONS(3414), - [anon_sym_case] = ACTIONS(3414), - [anon_sym_default] = ACTIONS(3414), - [anon_sym_while] = ACTIONS(3414), - [anon_sym_do] = ACTIONS(3414), - [anon_sym_for] = ACTIONS(3414), - [anon_sym_return] = ACTIONS(3414), - [anon_sym_break] = ACTIONS(3414), - [anon_sym_continue] = ACTIONS(3414), - [anon_sym_goto] = ACTIONS(3414), - [anon_sym_not] = ACTIONS(3414), - [anon_sym_compl] = ACTIONS(3414), - [anon_sym_DASH_DASH] = ACTIONS(3416), - [anon_sym_PLUS_PLUS] = ACTIONS(3416), - [anon_sym_sizeof] = ACTIONS(3414), - [anon_sym___alignof__] = ACTIONS(3414), - [anon_sym___alignof] = ACTIONS(3414), - [anon_sym__alignof] = ACTIONS(3414), - [anon_sym_alignof] = ACTIONS(3414), - [anon_sym__Alignof] = ACTIONS(3414), - [anon_sym_offsetof] = ACTIONS(3414), - [anon_sym__Generic] = ACTIONS(3414), - [anon_sym_asm] = ACTIONS(3414), - [anon_sym___asm__] = ACTIONS(3414), - [sym_number_literal] = ACTIONS(3416), - [anon_sym_L_SQUOTE] = ACTIONS(3416), - [anon_sym_u_SQUOTE] = ACTIONS(3416), - [anon_sym_U_SQUOTE] = ACTIONS(3416), - [anon_sym_u8_SQUOTE] = ACTIONS(3416), - [anon_sym_SQUOTE] = ACTIONS(3416), - [anon_sym_L_DQUOTE] = ACTIONS(3416), - [anon_sym_u_DQUOTE] = ACTIONS(3416), - [anon_sym_U_DQUOTE] = ACTIONS(3416), - [anon_sym_u8_DQUOTE] = ACTIONS(3416), - [anon_sym_DQUOTE] = ACTIONS(3416), - [sym_true] = ACTIONS(3414), - [sym_false] = ACTIONS(3414), - [anon_sym_NULL] = ACTIONS(3414), - [anon_sym_nullptr] = ACTIONS(3414), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3414), - [anon_sym_decltype] = ACTIONS(3414), - [anon_sym_virtual] = ACTIONS(3414), - [anon_sym_alignas] = ACTIONS(3414), - [anon_sym_explicit] = ACTIONS(3414), - [anon_sym_typename] = ACTIONS(3414), - [anon_sym_template] = ACTIONS(3414), - [anon_sym_operator] = ACTIONS(3414), - [anon_sym_try] = ACTIONS(3414), - [anon_sym_delete] = ACTIONS(3414), - [anon_sym_throw] = ACTIONS(3414), - [anon_sym_namespace] = ACTIONS(3414), - [anon_sym_using] = ACTIONS(3414), - [anon_sym_static_assert] = ACTIONS(3414), - [anon_sym_concept] = ACTIONS(3414), - [anon_sym_co_return] = ACTIONS(3414), - [anon_sym_co_yield] = ACTIONS(3414), - [anon_sym_R_DQUOTE] = ACTIONS(3416), - [anon_sym_LR_DQUOTE] = ACTIONS(3416), - [anon_sym_uR_DQUOTE] = ACTIONS(3416), - [anon_sym_UR_DQUOTE] = ACTIONS(3416), - [anon_sym_u8R_DQUOTE] = ACTIONS(3416), - [anon_sym_co_await] = ACTIONS(3414), - [anon_sym_new] = ACTIONS(3414), - [anon_sym_requires] = ACTIONS(3414), - [sym_this] = ACTIONS(3414), - }, - [1427] = { - [sym_preproc_def] = STATE(1387), - [sym_preproc_function_def] = STATE(1387), - [sym_preproc_call] = STATE(1387), - [sym_preproc_if_in_field_declaration_list] = STATE(1387), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1387), - [sym_type_definition] = STATE(1387), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6387), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1387), - [sym_field_declaration] = STATE(1387), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1387), - [sym_operator_cast] = STATE(7505), - [sym_inline_method_definition] = STATE(1387), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(1387), - [sym_operator_cast_declaration] = STATE(1387), - [sym_constructor_or_destructor_definition] = STATE(1387), - [sym_constructor_or_destructor_declaration] = STATE(1387), - [sym_friend_declaration] = STATE(1387), - [sym_access_specifier] = STATE(9485), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1387), - [sym_alias_declaration] = STATE(1387), - [sym_static_assert_declaration] = STATE(1387), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1387), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3686), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3774), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3698), - }, - [1428] = { - [ts_builtin_sym_end] = ACTIONS(3412), - [sym_identifier] = ACTIONS(3410), - [aux_sym_preproc_include_token1] = ACTIONS(3410), - [aux_sym_preproc_def_token1] = ACTIONS(3410), - [aux_sym_preproc_if_token1] = ACTIONS(3410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3410), - [sym_preproc_directive] = ACTIONS(3410), - [anon_sym_LPAREN2] = ACTIONS(3412), - [anon_sym_BANG] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3412), - [anon_sym_DASH] = ACTIONS(3410), - [anon_sym_PLUS] = ACTIONS(3410), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3410), - [anon_sym___extension__] = ACTIONS(3410), - [anon_sym_typedef] = ACTIONS(3410), - [anon_sym_extern] = ACTIONS(3410), - [anon_sym___attribute__] = ACTIONS(3410), - [anon_sym_COLON_COLON] = ACTIONS(3412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), - [anon_sym___declspec] = ACTIONS(3410), - [anon_sym___based] = ACTIONS(3410), - [anon_sym___cdecl] = ACTIONS(3410), - [anon_sym___clrcall] = ACTIONS(3410), - [anon_sym___stdcall] = ACTIONS(3410), - [anon_sym___fastcall] = ACTIONS(3410), - [anon_sym___thiscall] = ACTIONS(3410), - [anon_sym___vectorcall] = ACTIONS(3410), - [anon_sym_LBRACE] = ACTIONS(3412), - [anon_sym_signed] = ACTIONS(3410), - [anon_sym_unsigned] = ACTIONS(3410), - [anon_sym_long] = ACTIONS(3410), - [anon_sym_short] = ACTIONS(3410), - [anon_sym_LBRACK] = ACTIONS(3410), - [anon_sym_static] = ACTIONS(3410), - [anon_sym_register] = ACTIONS(3410), - [anon_sym_inline] = ACTIONS(3410), - [anon_sym___inline] = ACTIONS(3410), - [anon_sym___inline__] = ACTIONS(3410), - [anon_sym___forceinline] = ACTIONS(3410), - [anon_sym_thread_local] = ACTIONS(3410), - [anon_sym___thread] = ACTIONS(3410), - [anon_sym_const] = ACTIONS(3410), - [anon_sym_constexpr] = ACTIONS(3410), - [anon_sym_volatile] = ACTIONS(3410), - [anon_sym_restrict] = ACTIONS(3410), - [anon_sym___restrict__] = ACTIONS(3410), - [anon_sym__Atomic] = ACTIONS(3410), - [anon_sym__Noreturn] = ACTIONS(3410), - [anon_sym_noreturn] = ACTIONS(3410), - [anon_sym_mutable] = ACTIONS(3410), - [anon_sym_constinit] = ACTIONS(3410), - [anon_sym_consteval] = ACTIONS(3410), - [sym_primitive_type] = ACTIONS(3410), - [anon_sym_enum] = ACTIONS(3410), - [anon_sym_class] = ACTIONS(3410), - [anon_sym_struct] = ACTIONS(3410), - [anon_sym_union] = ACTIONS(3410), - [anon_sym_if] = ACTIONS(3410), - [anon_sym_switch] = ACTIONS(3410), - [anon_sym_case] = ACTIONS(3410), - [anon_sym_default] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(3410), - [anon_sym_do] = ACTIONS(3410), - [anon_sym_for] = ACTIONS(3410), - [anon_sym_return] = ACTIONS(3410), - [anon_sym_break] = ACTIONS(3410), - [anon_sym_continue] = ACTIONS(3410), - [anon_sym_goto] = ACTIONS(3410), - [anon_sym_not] = ACTIONS(3410), - [anon_sym_compl] = ACTIONS(3410), - [anon_sym_DASH_DASH] = ACTIONS(3412), - [anon_sym_PLUS_PLUS] = ACTIONS(3412), - [anon_sym_sizeof] = ACTIONS(3410), - [anon_sym___alignof__] = ACTIONS(3410), - [anon_sym___alignof] = ACTIONS(3410), - [anon_sym__alignof] = ACTIONS(3410), - [anon_sym_alignof] = ACTIONS(3410), - [anon_sym__Alignof] = ACTIONS(3410), - [anon_sym_offsetof] = ACTIONS(3410), - [anon_sym__Generic] = ACTIONS(3410), - [anon_sym_asm] = ACTIONS(3410), - [anon_sym___asm__] = ACTIONS(3410), - [sym_number_literal] = ACTIONS(3412), - [anon_sym_L_SQUOTE] = ACTIONS(3412), - [anon_sym_u_SQUOTE] = ACTIONS(3412), - [anon_sym_U_SQUOTE] = ACTIONS(3412), - [anon_sym_u8_SQUOTE] = ACTIONS(3412), - [anon_sym_SQUOTE] = ACTIONS(3412), - [anon_sym_L_DQUOTE] = ACTIONS(3412), - [anon_sym_u_DQUOTE] = ACTIONS(3412), - [anon_sym_U_DQUOTE] = ACTIONS(3412), - [anon_sym_u8_DQUOTE] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [sym_true] = ACTIONS(3410), - [sym_false] = ACTIONS(3410), - [anon_sym_NULL] = ACTIONS(3410), - [anon_sym_nullptr] = ACTIONS(3410), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3410), - [anon_sym_decltype] = ACTIONS(3410), - [anon_sym_virtual] = ACTIONS(3410), - [anon_sym_alignas] = ACTIONS(3410), - [anon_sym_explicit] = ACTIONS(3410), - [anon_sym_typename] = ACTIONS(3410), - [anon_sym_template] = ACTIONS(3410), - [anon_sym_operator] = ACTIONS(3410), - [anon_sym_try] = ACTIONS(3410), - [anon_sym_delete] = ACTIONS(3410), - [anon_sym_throw] = ACTIONS(3410), - [anon_sym_namespace] = ACTIONS(3410), - [anon_sym_using] = ACTIONS(3410), - [anon_sym_static_assert] = ACTIONS(3410), - [anon_sym_concept] = ACTIONS(3410), - [anon_sym_co_return] = ACTIONS(3410), - [anon_sym_co_yield] = ACTIONS(3410), - [anon_sym_R_DQUOTE] = ACTIONS(3412), - [anon_sym_LR_DQUOTE] = ACTIONS(3412), - [anon_sym_uR_DQUOTE] = ACTIONS(3412), - [anon_sym_UR_DQUOTE] = ACTIONS(3412), - [anon_sym_u8R_DQUOTE] = ACTIONS(3412), - [anon_sym_co_await] = ACTIONS(3410), - [anon_sym_new] = ACTIONS(3410), - [anon_sym_requires] = ACTIONS(3410), - [sym_this] = ACTIONS(3410), - }, - [1429] = { - [sym_preproc_def] = STATE(1396), - [sym_preproc_function_def] = STATE(1396), - [sym_preproc_call] = STATE(1396), - [sym_preproc_if_in_field_declaration_list] = STATE(1396), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1396), - [sym_type_definition] = STATE(1396), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6387), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1396), - [sym_field_declaration] = STATE(1396), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1396), - [sym_operator_cast] = STATE(7505), - [sym_inline_method_definition] = STATE(1396), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(1396), - [sym_operator_cast_declaration] = STATE(1396), - [sym_constructor_or_destructor_definition] = STATE(1396), - [sym_constructor_or_destructor_declaration] = STATE(1396), - [sym_friend_declaration] = STATE(1396), - [sym_access_specifier] = STATE(9485), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1396), - [sym_alias_declaration] = STATE(1396), - [sym_static_assert_declaration] = STATE(1396), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1396), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3686), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3776), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3698), - }, - [1430] = { - [ts_builtin_sym_end] = ACTIONS(3408), - [sym_identifier] = ACTIONS(3406), - [aux_sym_preproc_include_token1] = ACTIONS(3406), - [aux_sym_preproc_def_token1] = ACTIONS(3406), - [aux_sym_preproc_if_token1] = ACTIONS(3406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3406), - [sym_preproc_directive] = ACTIONS(3406), - [anon_sym_LPAREN2] = ACTIONS(3408), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_TILDE] = ACTIONS(3408), - [anon_sym_DASH] = ACTIONS(3406), - [anon_sym_PLUS] = ACTIONS(3406), - [anon_sym_STAR] = ACTIONS(3408), - [anon_sym_AMP_AMP] = ACTIONS(3408), - [anon_sym_AMP] = ACTIONS(3406), - [anon_sym___extension__] = ACTIONS(3406), - [anon_sym_typedef] = ACTIONS(3406), - [anon_sym_extern] = ACTIONS(3406), - [anon_sym___attribute__] = ACTIONS(3406), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3408), - [anon_sym___declspec] = ACTIONS(3406), - [anon_sym___based] = ACTIONS(3406), - [anon_sym___cdecl] = ACTIONS(3406), - [anon_sym___clrcall] = ACTIONS(3406), - [anon_sym___stdcall] = ACTIONS(3406), - [anon_sym___fastcall] = ACTIONS(3406), - [anon_sym___thiscall] = ACTIONS(3406), - [anon_sym___vectorcall] = ACTIONS(3406), - [anon_sym_LBRACE] = ACTIONS(3408), - [anon_sym_signed] = ACTIONS(3406), - [anon_sym_unsigned] = ACTIONS(3406), - [anon_sym_long] = ACTIONS(3406), - [anon_sym_short] = ACTIONS(3406), - [anon_sym_LBRACK] = ACTIONS(3406), - [anon_sym_static] = ACTIONS(3406), - [anon_sym_register] = ACTIONS(3406), - [anon_sym_inline] = ACTIONS(3406), - [anon_sym___inline] = ACTIONS(3406), - [anon_sym___inline__] = ACTIONS(3406), - [anon_sym___forceinline] = ACTIONS(3406), - [anon_sym_thread_local] = ACTIONS(3406), - [anon_sym___thread] = ACTIONS(3406), - [anon_sym_const] = ACTIONS(3406), - [anon_sym_constexpr] = ACTIONS(3406), - [anon_sym_volatile] = ACTIONS(3406), - [anon_sym_restrict] = ACTIONS(3406), - [anon_sym___restrict__] = ACTIONS(3406), - [anon_sym__Atomic] = ACTIONS(3406), - [anon_sym__Noreturn] = ACTIONS(3406), - [anon_sym_noreturn] = ACTIONS(3406), - [anon_sym_mutable] = ACTIONS(3406), - [anon_sym_constinit] = ACTIONS(3406), - [anon_sym_consteval] = ACTIONS(3406), - [sym_primitive_type] = ACTIONS(3406), - [anon_sym_enum] = ACTIONS(3406), - [anon_sym_class] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3406), - [anon_sym_union] = ACTIONS(3406), - [anon_sym_if] = ACTIONS(3406), - [anon_sym_switch] = ACTIONS(3406), - [anon_sym_case] = ACTIONS(3406), - [anon_sym_default] = ACTIONS(3406), - [anon_sym_while] = ACTIONS(3406), - [anon_sym_do] = ACTIONS(3406), - [anon_sym_for] = ACTIONS(3406), - [anon_sym_return] = ACTIONS(3406), - [anon_sym_break] = ACTIONS(3406), - [anon_sym_continue] = ACTIONS(3406), - [anon_sym_goto] = ACTIONS(3406), - [anon_sym_not] = ACTIONS(3406), - [anon_sym_compl] = ACTIONS(3406), - [anon_sym_DASH_DASH] = ACTIONS(3408), - [anon_sym_PLUS_PLUS] = ACTIONS(3408), - [anon_sym_sizeof] = ACTIONS(3406), - [anon_sym___alignof__] = ACTIONS(3406), - [anon_sym___alignof] = ACTIONS(3406), - [anon_sym__alignof] = ACTIONS(3406), - [anon_sym_alignof] = ACTIONS(3406), - [anon_sym__Alignof] = ACTIONS(3406), - [anon_sym_offsetof] = ACTIONS(3406), - [anon_sym__Generic] = ACTIONS(3406), - [anon_sym_asm] = ACTIONS(3406), - [anon_sym___asm__] = ACTIONS(3406), - [sym_number_literal] = ACTIONS(3408), - [anon_sym_L_SQUOTE] = ACTIONS(3408), - [anon_sym_u_SQUOTE] = ACTIONS(3408), - [anon_sym_U_SQUOTE] = ACTIONS(3408), - [anon_sym_u8_SQUOTE] = ACTIONS(3408), - [anon_sym_SQUOTE] = ACTIONS(3408), - [anon_sym_L_DQUOTE] = ACTIONS(3408), - [anon_sym_u_DQUOTE] = ACTIONS(3408), - [anon_sym_U_DQUOTE] = ACTIONS(3408), - [anon_sym_u8_DQUOTE] = ACTIONS(3408), - [anon_sym_DQUOTE] = ACTIONS(3408), - [sym_true] = ACTIONS(3406), - [sym_false] = ACTIONS(3406), - [anon_sym_NULL] = ACTIONS(3406), - [anon_sym_nullptr] = ACTIONS(3406), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3406), - [anon_sym_decltype] = ACTIONS(3406), - [anon_sym_virtual] = ACTIONS(3406), - [anon_sym_alignas] = ACTIONS(3406), - [anon_sym_explicit] = ACTIONS(3406), - [anon_sym_typename] = ACTIONS(3406), - [anon_sym_template] = ACTIONS(3406), - [anon_sym_operator] = ACTIONS(3406), - [anon_sym_try] = ACTIONS(3406), - [anon_sym_delete] = ACTIONS(3406), - [anon_sym_throw] = ACTIONS(3406), - [anon_sym_namespace] = ACTIONS(3406), - [anon_sym_using] = ACTIONS(3406), - [anon_sym_static_assert] = ACTIONS(3406), - [anon_sym_concept] = ACTIONS(3406), - [anon_sym_co_return] = ACTIONS(3406), - [anon_sym_co_yield] = ACTIONS(3406), - [anon_sym_R_DQUOTE] = ACTIONS(3408), - [anon_sym_LR_DQUOTE] = ACTIONS(3408), - [anon_sym_uR_DQUOTE] = ACTIONS(3408), - [anon_sym_UR_DQUOTE] = ACTIONS(3408), - [anon_sym_u8R_DQUOTE] = ACTIONS(3408), - [anon_sym_co_await] = ACTIONS(3406), - [anon_sym_new] = ACTIONS(3406), - [anon_sym_requires] = ACTIONS(3406), - [sym_this] = ACTIONS(3406), - }, - [1431] = { - [ts_builtin_sym_end] = ACTIONS(3382), - [sym_identifier] = ACTIONS(3380), - [aux_sym_preproc_include_token1] = ACTIONS(3380), - [aux_sym_preproc_def_token1] = ACTIONS(3380), - [aux_sym_preproc_if_token1] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), - [sym_preproc_directive] = ACTIONS(3380), - [anon_sym_LPAREN2] = ACTIONS(3382), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_TILDE] = ACTIONS(3382), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_AMP_AMP] = ACTIONS(3382), - [anon_sym_AMP] = ACTIONS(3380), - [anon_sym___extension__] = ACTIONS(3380), - [anon_sym_typedef] = ACTIONS(3380), - [anon_sym_extern] = ACTIONS(3380), - [anon_sym___attribute__] = ACTIONS(3380), - [anon_sym_COLON_COLON] = ACTIONS(3382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), - [anon_sym___declspec] = ACTIONS(3380), - [anon_sym___based] = ACTIONS(3380), - [anon_sym___cdecl] = ACTIONS(3380), - [anon_sym___clrcall] = ACTIONS(3380), - [anon_sym___stdcall] = ACTIONS(3380), - [anon_sym___fastcall] = ACTIONS(3380), - [anon_sym___thiscall] = ACTIONS(3380), - [anon_sym___vectorcall] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3382), - [anon_sym_signed] = ACTIONS(3380), - [anon_sym_unsigned] = ACTIONS(3380), - [anon_sym_long] = ACTIONS(3380), - [anon_sym_short] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_register] = ACTIONS(3380), - [anon_sym_inline] = ACTIONS(3380), - [anon_sym___inline] = ACTIONS(3380), - [anon_sym___inline__] = ACTIONS(3380), - [anon_sym___forceinline] = ACTIONS(3380), - [anon_sym_thread_local] = ACTIONS(3380), - [anon_sym___thread] = ACTIONS(3380), - [anon_sym_const] = ACTIONS(3380), - [anon_sym_constexpr] = ACTIONS(3380), - [anon_sym_volatile] = ACTIONS(3380), - [anon_sym_restrict] = ACTIONS(3380), - [anon_sym___restrict__] = ACTIONS(3380), - [anon_sym__Atomic] = ACTIONS(3380), - [anon_sym__Noreturn] = ACTIONS(3380), - [anon_sym_noreturn] = ACTIONS(3380), - [anon_sym_mutable] = ACTIONS(3380), - [anon_sym_constinit] = ACTIONS(3380), - [anon_sym_consteval] = ACTIONS(3380), - [sym_primitive_type] = ACTIONS(3380), - [anon_sym_enum] = ACTIONS(3380), - [anon_sym_class] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(3380), - [anon_sym_union] = ACTIONS(3380), - [anon_sym_if] = ACTIONS(3380), - [anon_sym_switch] = ACTIONS(3380), - [anon_sym_case] = ACTIONS(3380), - [anon_sym_default] = ACTIONS(3380), - [anon_sym_while] = ACTIONS(3380), - [anon_sym_do] = ACTIONS(3380), - [anon_sym_for] = ACTIONS(3380), - [anon_sym_return] = ACTIONS(3380), - [anon_sym_break] = ACTIONS(3380), - [anon_sym_continue] = ACTIONS(3380), - [anon_sym_goto] = ACTIONS(3380), - [anon_sym_not] = ACTIONS(3380), - [anon_sym_compl] = ACTIONS(3380), - [anon_sym_DASH_DASH] = ACTIONS(3382), - [anon_sym_PLUS_PLUS] = ACTIONS(3382), - [anon_sym_sizeof] = ACTIONS(3380), - [anon_sym___alignof__] = ACTIONS(3380), - [anon_sym___alignof] = ACTIONS(3380), - [anon_sym__alignof] = ACTIONS(3380), - [anon_sym_alignof] = ACTIONS(3380), - [anon_sym__Alignof] = ACTIONS(3380), - [anon_sym_offsetof] = ACTIONS(3380), - [anon_sym__Generic] = ACTIONS(3380), - [anon_sym_asm] = ACTIONS(3380), - [anon_sym___asm__] = ACTIONS(3380), - [sym_number_literal] = ACTIONS(3382), - [anon_sym_L_SQUOTE] = ACTIONS(3382), - [anon_sym_u_SQUOTE] = ACTIONS(3382), - [anon_sym_U_SQUOTE] = ACTIONS(3382), - [anon_sym_u8_SQUOTE] = ACTIONS(3382), - [anon_sym_SQUOTE] = ACTIONS(3382), - [anon_sym_L_DQUOTE] = ACTIONS(3382), - [anon_sym_u_DQUOTE] = ACTIONS(3382), - [anon_sym_U_DQUOTE] = ACTIONS(3382), - [anon_sym_u8_DQUOTE] = ACTIONS(3382), - [anon_sym_DQUOTE] = ACTIONS(3382), - [sym_true] = ACTIONS(3380), - [sym_false] = ACTIONS(3380), - [anon_sym_NULL] = ACTIONS(3380), - [anon_sym_nullptr] = ACTIONS(3380), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3380), - [anon_sym_decltype] = ACTIONS(3380), - [anon_sym_virtual] = ACTIONS(3380), - [anon_sym_alignas] = ACTIONS(3380), - [anon_sym_explicit] = ACTIONS(3380), - [anon_sym_typename] = ACTIONS(3380), - [anon_sym_template] = ACTIONS(3380), - [anon_sym_operator] = ACTIONS(3380), - [anon_sym_try] = ACTIONS(3380), - [anon_sym_delete] = ACTIONS(3380), - [anon_sym_throw] = ACTIONS(3380), - [anon_sym_namespace] = ACTIONS(3380), - [anon_sym_using] = ACTIONS(3380), - [anon_sym_static_assert] = ACTIONS(3380), - [anon_sym_concept] = ACTIONS(3380), - [anon_sym_co_return] = ACTIONS(3380), - [anon_sym_co_yield] = ACTIONS(3380), - [anon_sym_R_DQUOTE] = ACTIONS(3382), - [anon_sym_LR_DQUOTE] = ACTIONS(3382), - [anon_sym_uR_DQUOTE] = ACTIONS(3382), - [anon_sym_UR_DQUOTE] = ACTIONS(3382), - [anon_sym_u8R_DQUOTE] = ACTIONS(3382), - [anon_sym_co_await] = ACTIONS(3380), - [anon_sym_new] = ACTIONS(3380), - [anon_sym_requires] = ACTIONS(3380), - [sym_this] = ACTIONS(3380), - }, - [1432] = { - [ts_builtin_sym_end] = ACTIONS(3778), - [sym_identifier] = ACTIONS(3780), - [aux_sym_preproc_include_token1] = ACTIONS(3780), - [aux_sym_preproc_def_token1] = ACTIONS(3780), - [aux_sym_preproc_if_token1] = ACTIONS(3780), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3780), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3780), - [sym_preproc_directive] = ACTIONS(3780), - [anon_sym_LPAREN2] = ACTIONS(3778), - [anon_sym_BANG] = ACTIONS(3778), - [anon_sym_TILDE] = ACTIONS(3778), - [anon_sym_DASH] = ACTIONS(3780), - [anon_sym_PLUS] = ACTIONS(3780), - [anon_sym_STAR] = ACTIONS(3778), - [anon_sym_AMP_AMP] = ACTIONS(3778), - [anon_sym_AMP] = ACTIONS(3780), - [anon_sym___extension__] = ACTIONS(3780), - [anon_sym_typedef] = ACTIONS(3780), - [anon_sym_extern] = ACTIONS(3780), - [anon_sym___attribute__] = ACTIONS(3780), - [anon_sym_COLON_COLON] = ACTIONS(3778), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3778), - [anon_sym___declspec] = ACTIONS(3780), - [anon_sym___based] = ACTIONS(3780), - [anon_sym___cdecl] = ACTIONS(3780), - [anon_sym___clrcall] = ACTIONS(3780), - [anon_sym___stdcall] = ACTIONS(3780), - [anon_sym___fastcall] = ACTIONS(3780), - [anon_sym___thiscall] = ACTIONS(3780), - [anon_sym___vectorcall] = ACTIONS(3780), - [anon_sym_LBRACE] = ACTIONS(3778), - [anon_sym_signed] = ACTIONS(3780), - [anon_sym_unsigned] = ACTIONS(3780), - [anon_sym_long] = ACTIONS(3780), - [anon_sym_short] = ACTIONS(3780), - [anon_sym_LBRACK] = ACTIONS(3780), - [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(3780), - [anon_sym_constexpr] = ACTIONS(3780), - [anon_sym_volatile] = ACTIONS(3780), - [anon_sym_restrict] = ACTIONS(3780), - [anon_sym___restrict__] = ACTIONS(3780), - [anon_sym__Atomic] = ACTIONS(3780), - [anon_sym__Noreturn] = ACTIONS(3780), - [anon_sym_noreturn] = ACTIONS(3780), - [anon_sym_mutable] = ACTIONS(3780), - [anon_sym_constinit] = ACTIONS(3780), - [anon_sym_consteval] = ACTIONS(3780), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_enum] = ACTIONS(3780), - [anon_sym_class] = ACTIONS(3780), - [anon_sym_struct] = ACTIONS(3780), - [anon_sym_union] = ACTIONS(3780), - [anon_sym_if] = ACTIONS(3780), - [anon_sym_switch] = ACTIONS(3780), - [anon_sym_case] = ACTIONS(3780), - [anon_sym_default] = ACTIONS(3780), - [anon_sym_while] = ACTIONS(3780), - [anon_sym_do] = ACTIONS(3780), - [anon_sym_for] = ACTIONS(3780), - [anon_sym_return] = ACTIONS(3780), - [anon_sym_break] = ACTIONS(3780), - [anon_sym_continue] = ACTIONS(3780), - [anon_sym_goto] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3780), - [anon_sym_compl] = ACTIONS(3780), - [anon_sym_DASH_DASH] = ACTIONS(3778), - [anon_sym_PLUS_PLUS] = ACTIONS(3778), - [anon_sym_sizeof] = ACTIONS(3780), - [anon_sym___alignof__] = ACTIONS(3780), - [anon_sym___alignof] = ACTIONS(3780), - [anon_sym__alignof] = ACTIONS(3780), - [anon_sym_alignof] = ACTIONS(3780), - [anon_sym__Alignof] = ACTIONS(3780), - [anon_sym_offsetof] = ACTIONS(3780), - [anon_sym__Generic] = ACTIONS(3780), - [anon_sym_asm] = ACTIONS(3780), - [anon_sym___asm__] = ACTIONS(3780), - [sym_number_literal] = ACTIONS(3778), - [anon_sym_L_SQUOTE] = ACTIONS(3778), - [anon_sym_u_SQUOTE] = ACTIONS(3778), - [anon_sym_U_SQUOTE] = ACTIONS(3778), - [anon_sym_u8_SQUOTE] = ACTIONS(3778), - [anon_sym_SQUOTE] = ACTIONS(3778), - [anon_sym_L_DQUOTE] = ACTIONS(3778), - [anon_sym_u_DQUOTE] = ACTIONS(3778), - [anon_sym_U_DQUOTE] = ACTIONS(3778), - [anon_sym_u8_DQUOTE] = ACTIONS(3778), - [anon_sym_DQUOTE] = ACTIONS(3778), - [sym_true] = ACTIONS(3780), - [sym_false] = ACTIONS(3780), - [anon_sym_NULL] = ACTIONS(3780), - [anon_sym_nullptr] = ACTIONS(3780), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3780), - [anon_sym_decltype] = ACTIONS(3780), - [anon_sym_virtual] = ACTIONS(3780), - [anon_sym_alignas] = ACTIONS(3780), - [anon_sym_explicit] = ACTIONS(3780), - [anon_sym_typename] = ACTIONS(3780), - [anon_sym_template] = ACTIONS(3780), - [anon_sym_operator] = ACTIONS(3780), - [anon_sym_try] = ACTIONS(3780), - [anon_sym_delete] = ACTIONS(3780), - [anon_sym_throw] = ACTIONS(3780), - [anon_sym_namespace] = ACTIONS(3780), - [anon_sym_using] = ACTIONS(3780), - [anon_sym_static_assert] = ACTIONS(3780), - [anon_sym_concept] = ACTIONS(3780), - [anon_sym_co_return] = ACTIONS(3780), - [anon_sym_co_yield] = ACTIONS(3780), - [anon_sym_R_DQUOTE] = ACTIONS(3778), - [anon_sym_LR_DQUOTE] = ACTIONS(3778), - [anon_sym_uR_DQUOTE] = ACTIONS(3778), - [anon_sym_UR_DQUOTE] = ACTIONS(3778), - [anon_sym_u8R_DQUOTE] = ACTIONS(3778), - [anon_sym_co_await] = ACTIONS(3780), - [anon_sym_new] = ACTIONS(3780), - [anon_sym_requires] = ACTIONS(3780), - [sym_this] = ACTIONS(3780), - }, - [1433] = { - [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___extension__] = ACTIONS(3304), - [anon_sym_typedef] = ACTIONS(3304), - [anon_sym_extern] = ACTIONS(3304), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3304), - [anon_sym_alignas] = 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_using] = 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), - }, - [1434] = { - [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___extension__] = ACTIONS(3304), - [anon_sym_typedef] = ACTIONS(3304), - [anon_sym_extern] = ACTIONS(3304), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3304), - [anon_sym_alignas] = 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_using] = 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), - }, - [1435] = { - [ts_builtin_sym_end] = ACTIONS(3360), - [sym_identifier] = ACTIONS(3358), - [aux_sym_preproc_include_token1] = ACTIONS(3358), - [aux_sym_preproc_def_token1] = ACTIONS(3358), - [aux_sym_preproc_if_token1] = ACTIONS(3358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3358), - [sym_preproc_directive] = ACTIONS(3358), - [anon_sym_LPAREN2] = ACTIONS(3360), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym___extension__] = ACTIONS(3358), - [anon_sym_typedef] = ACTIONS(3358), - [anon_sym_extern] = ACTIONS(3358), - [anon_sym___attribute__] = ACTIONS(3358), - [anon_sym_COLON_COLON] = ACTIONS(3360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3360), - [anon_sym___declspec] = ACTIONS(3358), - [anon_sym___based] = ACTIONS(3358), - [anon_sym___cdecl] = ACTIONS(3358), - [anon_sym___clrcall] = ACTIONS(3358), - [anon_sym___stdcall] = ACTIONS(3358), - [anon_sym___fastcall] = ACTIONS(3358), - [anon_sym___thiscall] = ACTIONS(3358), - [anon_sym___vectorcall] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_signed] = ACTIONS(3358), - [anon_sym_unsigned] = ACTIONS(3358), - [anon_sym_long] = ACTIONS(3358), - [anon_sym_short] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_register] = ACTIONS(3358), - [anon_sym_inline] = ACTIONS(3358), - [anon_sym___inline] = ACTIONS(3358), - [anon_sym___inline__] = ACTIONS(3358), - [anon_sym___forceinline] = ACTIONS(3358), - [anon_sym_thread_local] = ACTIONS(3358), - [anon_sym___thread] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_constexpr] = ACTIONS(3358), - [anon_sym_volatile] = ACTIONS(3358), - [anon_sym_restrict] = ACTIONS(3358), - [anon_sym___restrict__] = ACTIONS(3358), - [anon_sym__Atomic] = ACTIONS(3358), - [anon_sym__Noreturn] = ACTIONS(3358), - [anon_sym_noreturn] = ACTIONS(3358), - [anon_sym_mutable] = ACTIONS(3358), - [anon_sym_constinit] = ACTIONS(3358), - [anon_sym_consteval] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_struct] = ACTIONS(3358), - [anon_sym_union] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_case] = ACTIONS(3358), - [anon_sym_default] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_goto] = ACTIONS(3358), - [anon_sym_not] = ACTIONS(3358), - [anon_sym_compl] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3360), - [anon_sym_sizeof] = ACTIONS(3358), - [anon_sym___alignof__] = ACTIONS(3358), - [anon_sym___alignof] = ACTIONS(3358), - [anon_sym__alignof] = ACTIONS(3358), - [anon_sym_alignof] = ACTIONS(3358), - [anon_sym__Alignof] = ACTIONS(3358), - [anon_sym_offsetof] = ACTIONS(3358), - [anon_sym__Generic] = ACTIONS(3358), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3360), - [anon_sym_u_SQUOTE] = ACTIONS(3360), - [anon_sym_U_SQUOTE] = ACTIONS(3360), - [anon_sym_u8_SQUOTE] = ACTIONS(3360), - [anon_sym_SQUOTE] = ACTIONS(3360), - [anon_sym_L_DQUOTE] = ACTIONS(3360), - [anon_sym_u_DQUOTE] = ACTIONS(3360), - [anon_sym_U_DQUOTE] = ACTIONS(3360), - [anon_sym_u8_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [anon_sym_NULL] = ACTIONS(3358), - [anon_sym_nullptr] = ACTIONS(3358), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3358), - [anon_sym_decltype] = ACTIONS(3358), - [anon_sym_virtual] = ACTIONS(3358), - [anon_sym_alignas] = ACTIONS(3358), - [anon_sym_explicit] = ACTIONS(3358), - [anon_sym_typename] = ACTIONS(3358), - [anon_sym_template] = ACTIONS(3358), - [anon_sym_operator] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_static_assert] = ACTIONS(3358), - [anon_sym_concept] = ACTIONS(3358), - [anon_sym_co_return] = ACTIONS(3358), - [anon_sym_co_yield] = ACTIONS(3358), - [anon_sym_R_DQUOTE] = ACTIONS(3360), - [anon_sym_LR_DQUOTE] = ACTIONS(3360), - [anon_sym_uR_DQUOTE] = ACTIONS(3360), - [anon_sym_UR_DQUOTE] = ACTIONS(3360), - [anon_sym_u8R_DQUOTE] = ACTIONS(3360), - [anon_sym_co_await] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_requires] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), - }, - [1436] = { - [ts_builtin_sym_end] = ACTIONS(3402), - [sym_identifier] = ACTIONS(3400), - [aux_sym_preproc_include_token1] = ACTIONS(3400), - [aux_sym_preproc_def_token1] = ACTIONS(3400), - [aux_sym_preproc_if_token1] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3400), - [sym_preproc_directive] = ACTIONS(3400), - [anon_sym_LPAREN2] = ACTIONS(3402), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_TILDE] = ACTIONS(3402), - [anon_sym_DASH] = ACTIONS(3400), - [anon_sym_PLUS] = ACTIONS(3400), - [anon_sym_STAR] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3400), - [anon_sym___extension__] = ACTIONS(3400), - [anon_sym_typedef] = ACTIONS(3400), - [anon_sym_extern] = ACTIONS(3400), - [anon_sym___attribute__] = ACTIONS(3400), - [anon_sym_COLON_COLON] = ACTIONS(3402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3402), - [anon_sym___declspec] = ACTIONS(3400), - [anon_sym___based] = ACTIONS(3400), - [anon_sym___cdecl] = ACTIONS(3400), - [anon_sym___clrcall] = ACTIONS(3400), - [anon_sym___stdcall] = ACTIONS(3400), - [anon_sym___fastcall] = ACTIONS(3400), - [anon_sym___thiscall] = ACTIONS(3400), - [anon_sym___vectorcall] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3402), - [anon_sym_signed] = ACTIONS(3400), - [anon_sym_unsigned] = ACTIONS(3400), - [anon_sym_long] = ACTIONS(3400), - [anon_sym_short] = ACTIONS(3400), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_static] = ACTIONS(3400), - [anon_sym_register] = ACTIONS(3400), - [anon_sym_inline] = ACTIONS(3400), - [anon_sym___inline] = ACTIONS(3400), - [anon_sym___inline__] = ACTIONS(3400), - [anon_sym___forceinline] = ACTIONS(3400), - [anon_sym_thread_local] = ACTIONS(3400), - [anon_sym___thread] = ACTIONS(3400), - [anon_sym_const] = ACTIONS(3400), - [anon_sym_constexpr] = ACTIONS(3400), - [anon_sym_volatile] = ACTIONS(3400), - [anon_sym_restrict] = ACTIONS(3400), - [anon_sym___restrict__] = ACTIONS(3400), - [anon_sym__Atomic] = ACTIONS(3400), - [anon_sym__Noreturn] = ACTIONS(3400), - [anon_sym_noreturn] = ACTIONS(3400), - [anon_sym_mutable] = ACTIONS(3400), - [anon_sym_constinit] = ACTIONS(3400), - [anon_sym_consteval] = ACTIONS(3400), - [sym_primitive_type] = ACTIONS(3400), - [anon_sym_enum] = ACTIONS(3400), - [anon_sym_class] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3400), - [anon_sym_union] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_switch] = ACTIONS(3400), - [anon_sym_case] = ACTIONS(3400), - [anon_sym_default] = ACTIONS(3400), - [anon_sym_while] = ACTIONS(3400), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3400), - [anon_sym_break] = ACTIONS(3400), - [anon_sym_continue] = ACTIONS(3400), - [anon_sym_goto] = ACTIONS(3400), - [anon_sym_not] = ACTIONS(3400), - [anon_sym_compl] = ACTIONS(3400), - [anon_sym_DASH_DASH] = ACTIONS(3402), - [anon_sym_PLUS_PLUS] = ACTIONS(3402), - [anon_sym_sizeof] = ACTIONS(3400), - [anon_sym___alignof__] = ACTIONS(3400), - [anon_sym___alignof] = ACTIONS(3400), - [anon_sym__alignof] = ACTIONS(3400), - [anon_sym_alignof] = ACTIONS(3400), - [anon_sym__Alignof] = ACTIONS(3400), - [anon_sym_offsetof] = ACTIONS(3400), - [anon_sym__Generic] = ACTIONS(3400), - [anon_sym_asm] = ACTIONS(3400), - [anon_sym___asm__] = ACTIONS(3400), - [sym_number_literal] = ACTIONS(3402), - [anon_sym_L_SQUOTE] = ACTIONS(3402), - [anon_sym_u_SQUOTE] = ACTIONS(3402), - [anon_sym_U_SQUOTE] = ACTIONS(3402), - [anon_sym_u8_SQUOTE] = ACTIONS(3402), - [anon_sym_SQUOTE] = ACTIONS(3402), - [anon_sym_L_DQUOTE] = ACTIONS(3402), - [anon_sym_u_DQUOTE] = ACTIONS(3402), - [anon_sym_U_DQUOTE] = ACTIONS(3402), - [anon_sym_u8_DQUOTE] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [sym_true] = ACTIONS(3400), - [sym_false] = ACTIONS(3400), - [anon_sym_NULL] = ACTIONS(3400), - [anon_sym_nullptr] = ACTIONS(3400), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3400), - [anon_sym_decltype] = ACTIONS(3400), - [anon_sym_virtual] = ACTIONS(3400), - [anon_sym_alignas] = ACTIONS(3400), - [anon_sym_explicit] = ACTIONS(3400), - [anon_sym_typename] = ACTIONS(3400), - [anon_sym_template] = ACTIONS(3400), - [anon_sym_operator] = ACTIONS(3400), - [anon_sym_try] = ACTIONS(3400), - [anon_sym_delete] = ACTIONS(3400), - [anon_sym_throw] = ACTIONS(3400), - [anon_sym_namespace] = ACTIONS(3400), - [anon_sym_using] = ACTIONS(3400), - [anon_sym_static_assert] = ACTIONS(3400), - [anon_sym_concept] = ACTIONS(3400), - [anon_sym_co_return] = ACTIONS(3400), - [anon_sym_co_yield] = ACTIONS(3400), - [anon_sym_R_DQUOTE] = ACTIONS(3402), - [anon_sym_LR_DQUOTE] = ACTIONS(3402), - [anon_sym_uR_DQUOTE] = ACTIONS(3402), - [anon_sym_UR_DQUOTE] = ACTIONS(3402), - [anon_sym_u8R_DQUOTE] = ACTIONS(3402), - [anon_sym_co_await] = ACTIONS(3400), - [anon_sym_new] = ACTIONS(3400), - [anon_sym_requires] = ACTIONS(3400), - [sym_this] = ACTIONS(3400), - }, - [1437] = { - [ts_builtin_sym_end] = ACTIONS(3398), - [sym_identifier] = ACTIONS(3396), - [aux_sym_preproc_include_token1] = ACTIONS(3396), - [aux_sym_preproc_def_token1] = ACTIONS(3396), - [aux_sym_preproc_if_token1] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3396), - [sym_preproc_directive] = ACTIONS(3396), - [anon_sym_LPAREN2] = ACTIONS(3398), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3396), - [anon_sym_PLUS] = ACTIONS(3396), - [anon_sym_STAR] = ACTIONS(3398), - [anon_sym_AMP_AMP] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym___extension__] = ACTIONS(3396), - [anon_sym_typedef] = ACTIONS(3396), - [anon_sym_extern] = ACTIONS(3396), - [anon_sym___attribute__] = ACTIONS(3396), - [anon_sym_COLON_COLON] = ACTIONS(3398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3398), - [anon_sym___declspec] = ACTIONS(3396), - [anon_sym___based] = ACTIONS(3396), - [anon_sym___cdecl] = ACTIONS(3396), - [anon_sym___clrcall] = ACTIONS(3396), - [anon_sym___stdcall] = ACTIONS(3396), - [anon_sym___fastcall] = ACTIONS(3396), - [anon_sym___thiscall] = ACTIONS(3396), - [anon_sym___vectorcall] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(3398), - [anon_sym_signed] = ACTIONS(3396), - [anon_sym_unsigned] = ACTIONS(3396), - [anon_sym_long] = ACTIONS(3396), - [anon_sym_short] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_static] = ACTIONS(3396), - [anon_sym_register] = ACTIONS(3396), - [anon_sym_inline] = ACTIONS(3396), - [anon_sym___inline] = ACTIONS(3396), - [anon_sym___inline__] = ACTIONS(3396), - [anon_sym___forceinline] = ACTIONS(3396), - [anon_sym_thread_local] = ACTIONS(3396), - [anon_sym___thread] = ACTIONS(3396), - [anon_sym_const] = ACTIONS(3396), - [anon_sym_constexpr] = ACTIONS(3396), - [anon_sym_volatile] = ACTIONS(3396), - [anon_sym_restrict] = ACTIONS(3396), - [anon_sym___restrict__] = ACTIONS(3396), - [anon_sym__Atomic] = ACTIONS(3396), - [anon_sym__Noreturn] = ACTIONS(3396), - [anon_sym_noreturn] = ACTIONS(3396), - [anon_sym_mutable] = ACTIONS(3396), - [anon_sym_constinit] = ACTIONS(3396), - [anon_sym_consteval] = ACTIONS(3396), - [sym_primitive_type] = ACTIONS(3396), - [anon_sym_enum] = ACTIONS(3396), - [anon_sym_class] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(3396), - [anon_sym_union] = ACTIONS(3396), - [anon_sym_if] = ACTIONS(3396), - [anon_sym_switch] = ACTIONS(3396), - [anon_sym_case] = ACTIONS(3396), - [anon_sym_default] = ACTIONS(3396), - [anon_sym_while] = ACTIONS(3396), - [anon_sym_do] = ACTIONS(3396), - [anon_sym_for] = ACTIONS(3396), - [anon_sym_return] = ACTIONS(3396), - [anon_sym_break] = ACTIONS(3396), - [anon_sym_continue] = ACTIONS(3396), - [anon_sym_goto] = ACTIONS(3396), - [anon_sym_not] = ACTIONS(3396), - [anon_sym_compl] = ACTIONS(3396), - [anon_sym_DASH_DASH] = ACTIONS(3398), - [anon_sym_PLUS_PLUS] = ACTIONS(3398), - [anon_sym_sizeof] = ACTIONS(3396), - [anon_sym___alignof__] = ACTIONS(3396), - [anon_sym___alignof] = ACTIONS(3396), - [anon_sym__alignof] = ACTIONS(3396), - [anon_sym_alignof] = ACTIONS(3396), - [anon_sym__Alignof] = ACTIONS(3396), - [anon_sym_offsetof] = ACTIONS(3396), - [anon_sym__Generic] = ACTIONS(3396), - [anon_sym_asm] = ACTIONS(3396), - [anon_sym___asm__] = ACTIONS(3396), - [sym_number_literal] = ACTIONS(3398), - [anon_sym_L_SQUOTE] = ACTIONS(3398), - [anon_sym_u_SQUOTE] = ACTIONS(3398), - [anon_sym_U_SQUOTE] = ACTIONS(3398), - [anon_sym_u8_SQUOTE] = ACTIONS(3398), - [anon_sym_SQUOTE] = ACTIONS(3398), - [anon_sym_L_DQUOTE] = ACTIONS(3398), - [anon_sym_u_DQUOTE] = ACTIONS(3398), - [anon_sym_U_DQUOTE] = ACTIONS(3398), - [anon_sym_u8_DQUOTE] = ACTIONS(3398), - [anon_sym_DQUOTE] = ACTIONS(3398), - [sym_true] = ACTIONS(3396), - [sym_false] = ACTIONS(3396), - [anon_sym_NULL] = ACTIONS(3396), - [anon_sym_nullptr] = ACTIONS(3396), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3396), - [anon_sym_decltype] = ACTIONS(3396), - [anon_sym_virtual] = ACTIONS(3396), - [anon_sym_alignas] = ACTIONS(3396), - [anon_sym_explicit] = ACTIONS(3396), - [anon_sym_typename] = ACTIONS(3396), - [anon_sym_template] = ACTIONS(3396), - [anon_sym_operator] = ACTIONS(3396), - [anon_sym_try] = ACTIONS(3396), - [anon_sym_delete] = ACTIONS(3396), - [anon_sym_throw] = ACTIONS(3396), - [anon_sym_namespace] = ACTIONS(3396), - [anon_sym_using] = ACTIONS(3396), - [anon_sym_static_assert] = ACTIONS(3396), - [anon_sym_concept] = ACTIONS(3396), - [anon_sym_co_return] = ACTIONS(3396), - [anon_sym_co_yield] = ACTIONS(3396), - [anon_sym_R_DQUOTE] = ACTIONS(3398), - [anon_sym_LR_DQUOTE] = ACTIONS(3398), - [anon_sym_uR_DQUOTE] = ACTIONS(3398), - [anon_sym_UR_DQUOTE] = ACTIONS(3398), - [anon_sym_u8R_DQUOTE] = ACTIONS(3398), - [anon_sym_co_await] = ACTIONS(3396), - [anon_sym_new] = ACTIONS(3396), - [anon_sym_requires] = ACTIONS(3396), - [sym_this] = ACTIONS(3396), - }, - [1438] = { - [ts_builtin_sym_end] = ACTIONS(3348), - [sym_identifier] = ACTIONS(3346), - [aux_sym_preproc_include_token1] = ACTIONS(3346), - [aux_sym_preproc_def_token1] = ACTIONS(3346), - [aux_sym_preproc_if_token1] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3346), - [sym_preproc_directive] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_AMP_AMP] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym___extension__] = ACTIONS(3346), - [anon_sym_typedef] = ACTIONS(3346), - [anon_sym_extern] = ACTIONS(3346), - [anon_sym___attribute__] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3348), - [anon_sym___declspec] = ACTIONS(3346), - [anon_sym___based] = ACTIONS(3346), - [anon_sym___cdecl] = ACTIONS(3346), - [anon_sym___clrcall] = ACTIONS(3346), - [anon_sym___stdcall] = ACTIONS(3346), - [anon_sym___fastcall] = ACTIONS(3346), - [anon_sym___thiscall] = ACTIONS(3346), - [anon_sym___vectorcall] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3348), - [anon_sym_signed] = ACTIONS(3346), - [anon_sym_unsigned] = ACTIONS(3346), - [anon_sym_long] = ACTIONS(3346), - [anon_sym_short] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_register] = ACTIONS(3346), - [anon_sym_inline] = ACTIONS(3346), - [anon_sym___inline] = ACTIONS(3346), - [anon_sym___inline__] = ACTIONS(3346), - [anon_sym___forceinline] = ACTIONS(3346), - [anon_sym_thread_local] = ACTIONS(3346), - [anon_sym___thread] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_constexpr] = ACTIONS(3346), - [anon_sym_volatile] = ACTIONS(3346), - [anon_sym_restrict] = ACTIONS(3346), - [anon_sym___restrict__] = ACTIONS(3346), - [anon_sym__Atomic] = ACTIONS(3346), - [anon_sym__Noreturn] = ACTIONS(3346), - [anon_sym_noreturn] = ACTIONS(3346), - [anon_sym_mutable] = ACTIONS(3346), - [anon_sym_constinit] = ACTIONS(3346), - [anon_sym_consteval] = ACTIONS(3346), - [sym_primitive_type] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_struct] = ACTIONS(3346), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3346), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_goto] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3346), - [anon_sym_compl] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3346), - [anon_sym___alignof__] = ACTIONS(3346), - [anon_sym___alignof] = ACTIONS(3346), - [anon_sym__alignof] = ACTIONS(3346), - [anon_sym_alignof] = ACTIONS(3346), - [anon_sym__Alignof] = ACTIONS(3346), - [anon_sym_offsetof] = ACTIONS(3346), - [anon_sym__Generic] = ACTIONS(3346), - [anon_sym_asm] = ACTIONS(3346), - [anon_sym___asm__] = ACTIONS(3346), - [sym_number_literal] = ACTIONS(3348), - [anon_sym_L_SQUOTE] = ACTIONS(3348), - [anon_sym_u_SQUOTE] = ACTIONS(3348), - [anon_sym_U_SQUOTE] = ACTIONS(3348), - [anon_sym_u8_SQUOTE] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3348), - [anon_sym_L_DQUOTE] = ACTIONS(3348), - [anon_sym_u_DQUOTE] = ACTIONS(3348), - [anon_sym_U_DQUOTE] = ACTIONS(3348), - [anon_sym_u8_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE] = ACTIONS(3348), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [anon_sym_NULL] = ACTIONS(3346), - [anon_sym_nullptr] = ACTIONS(3346), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3346), - [anon_sym_decltype] = ACTIONS(3346), - [anon_sym_virtual] = ACTIONS(3346), - [anon_sym_alignas] = ACTIONS(3346), - [anon_sym_explicit] = ACTIONS(3346), - [anon_sym_typename] = ACTIONS(3346), - [anon_sym_template] = ACTIONS(3346), - [anon_sym_operator] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_static_assert] = ACTIONS(3346), - [anon_sym_concept] = ACTIONS(3346), - [anon_sym_co_return] = ACTIONS(3346), - [anon_sym_co_yield] = ACTIONS(3346), - [anon_sym_R_DQUOTE] = ACTIONS(3348), - [anon_sym_LR_DQUOTE] = ACTIONS(3348), - [anon_sym_uR_DQUOTE] = ACTIONS(3348), - [anon_sym_UR_DQUOTE] = ACTIONS(3348), - [anon_sym_u8R_DQUOTE] = ACTIONS(3348), - [anon_sym_co_await] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_requires] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - }, - [1439] = { - [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___extension__] = ACTIONS(3314), - [anon_sym_typedef] = ACTIONS(3314), - [anon_sym_extern] = ACTIONS(3314), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3314), - [anon_sym_constinit] = ACTIONS(3314), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3314), - [anon_sym_alignas] = 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_using] = 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), - }, - [1440] = { - [ts_builtin_sym_end] = ACTIONS(3354), - [sym_identifier] = ACTIONS(3352), - [aux_sym_preproc_include_token1] = ACTIONS(3352), - [aux_sym_preproc_def_token1] = ACTIONS(3352), - [aux_sym_preproc_if_token1] = ACTIONS(3352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3352), - [sym_preproc_directive] = ACTIONS(3352), - [anon_sym_LPAREN2] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3352), - [anon_sym_PLUS] = ACTIONS(3352), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_AMP_AMP] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym___extension__] = ACTIONS(3352), - [anon_sym_typedef] = ACTIONS(3352), - [anon_sym_extern] = ACTIONS(3352), - [anon_sym___attribute__] = ACTIONS(3352), - [anon_sym_COLON_COLON] = ACTIONS(3354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3354), - [anon_sym___declspec] = ACTIONS(3352), - [anon_sym___based] = ACTIONS(3352), - [anon_sym___cdecl] = ACTIONS(3352), - [anon_sym___clrcall] = ACTIONS(3352), - [anon_sym___stdcall] = ACTIONS(3352), - [anon_sym___fastcall] = ACTIONS(3352), - [anon_sym___thiscall] = ACTIONS(3352), - [anon_sym___vectorcall] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_signed] = ACTIONS(3352), - [anon_sym_unsigned] = ACTIONS(3352), - [anon_sym_long] = ACTIONS(3352), - [anon_sym_short] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_static] = ACTIONS(3352), - [anon_sym_register] = ACTIONS(3352), - [anon_sym_inline] = ACTIONS(3352), - [anon_sym___inline] = ACTIONS(3352), - [anon_sym___inline__] = ACTIONS(3352), - [anon_sym___forceinline] = ACTIONS(3352), - [anon_sym_thread_local] = ACTIONS(3352), - [anon_sym___thread] = ACTIONS(3352), - [anon_sym_const] = ACTIONS(3352), - [anon_sym_constexpr] = ACTIONS(3352), - [anon_sym_volatile] = ACTIONS(3352), - [anon_sym_restrict] = ACTIONS(3352), - [anon_sym___restrict__] = ACTIONS(3352), - [anon_sym__Atomic] = ACTIONS(3352), - [anon_sym__Noreturn] = ACTIONS(3352), - [anon_sym_noreturn] = ACTIONS(3352), - [anon_sym_mutable] = ACTIONS(3352), - [anon_sym_constinit] = ACTIONS(3352), - [anon_sym_consteval] = ACTIONS(3352), - [sym_primitive_type] = ACTIONS(3352), - [anon_sym_enum] = ACTIONS(3352), - [anon_sym_class] = ACTIONS(3352), - [anon_sym_struct] = ACTIONS(3352), - [anon_sym_union] = ACTIONS(3352), - [anon_sym_if] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3352), - [anon_sym_case] = ACTIONS(3352), - [anon_sym_default] = ACTIONS(3352), - [anon_sym_while] = ACTIONS(3352), - [anon_sym_do] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3352), - [anon_sym_return] = ACTIONS(3352), - [anon_sym_break] = ACTIONS(3352), - [anon_sym_continue] = ACTIONS(3352), - [anon_sym_goto] = ACTIONS(3352), - [anon_sym_not] = ACTIONS(3352), - [anon_sym_compl] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_sizeof] = ACTIONS(3352), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3352), - [anon_sym__Generic] = ACTIONS(3352), - [anon_sym_asm] = ACTIONS(3352), - [anon_sym___asm__] = ACTIONS(3352), - [sym_number_literal] = ACTIONS(3354), - [anon_sym_L_SQUOTE] = ACTIONS(3354), - [anon_sym_u_SQUOTE] = ACTIONS(3354), - [anon_sym_U_SQUOTE] = ACTIONS(3354), - [anon_sym_u8_SQUOTE] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_L_DQUOTE] = ACTIONS(3354), - [anon_sym_u_DQUOTE] = ACTIONS(3354), - [anon_sym_U_DQUOTE] = ACTIONS(3354), - [anon_sym_u8_DQUOTE] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [sym_true] = ACTIONS(3352), - [sym_false] = ACTIONS(3352), - [anon_sym_NULL] = ACTIONS(3352), - [anon_sym_nullptr] = ACTIONS(3352), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3352), - [anon_sym_decltype] = ACTIONS(3352), - [anon_sym_virtual] = ACTIONS(3352), - [anon_sym_alignas] = ACTIONS(3352), - [anon_sym_explicit] = ACTIONS(3352), - [anon_sym_typename] = ACTIONS(3352), - [anon_sym_template] = ACTIONS(3352), - [anon_sym_operator] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3352), - [anon_sym_delete] = ACTIONS(3352), - [anon_sym_throw] = ACTIONS(3352), - [anon_sym_namespace] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3352), - [anon_sym_static_assert] = ACTIONS(3352), - [anon_sym_concept] = ACTIONS(3352), - [anon_sym_co_return] = ACTIONS(3352), - [anon_sym_co_yield] = ACTIONS(3352), - [anon_sym_R_DQUOTE] = ACTIONS(3354), - [anon_sym_LR_DQUOTE] = ACTIONS(3354), - [anon_sym_uR_DQUOTE] = ACTIONS(3354), - [anon_sym_UR_DQUOTE] = ACTIONS(3354), - [anon_sym_u8R_DQUOTE] = ACTIONS(3354), - [anon_sym_co_await] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3352), - [anon_sym_requires] = ACTIONS(3352), - [sym_this] = ACTIONS(3352), - }, - [1441] = { - [sym_preproc_def] = STATE(1469), - [sym_preproc_function_def] = STATE(1469), - [sym_preproc_call] = STATE(1469), - [sym_preproc_if_in_field_declaration_list] = STATE(1469), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1469), - [sym_type_definition] = STATE(1469), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6387), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1469), - [sym_field_declaration] = STATE(1469), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1469), - [sym_operator_cast] = STATE(7505), - [sym_inline_method_definition] = STATE(1469), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(1469), - [sym_operator_cast_declaration] = STATE(1469), - [sym_constructor_or_destructor_definition] = STATE(1469), - [sym_constructor_or_destructor_declaration] = STATE(1469), - [sym_friend_declaration] = STATE(1469), - [sym_access_specifier] = STATE(9485), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1469), - [sym_alias_declaration] = STATE(1469), - [sym_static_assert_declaration] = STATE(1469), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3686), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3782), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3698), - }, - [1442] = { - [ts_builtin_sym_end] = ACTIONS(3288), - [sym_identifier] = ACTIONS(3286), - [aux_sym_preproc_include_token1] = ACTIONS(3286), - [aux_sym_preproc_def_token1] = ACTIONS(3286), - [aux_sym_preproc_if_token1] = ACTIONS(3286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), - [sym_preproc_directive] = ACTIONS(3286), - [anon_sym_LPAREN2] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_AMP] = ACTIONS(3286), - [anon_sym___extension__] = ACTIONS(3286), - [anon_sym_typedef] = ACTIONS(3286), - [anon_sym_extern] = ACTIONS(3286), - [anon_sym___attribute__] = ACTIONS(3286), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), - [anon_sym___declspec] = ACTIONS(3286), - [anon_sym___based] = ACTIONS(3286), - [anon_sym___cdecl] = ACTIONS(3286), - [anon_sym___clrcall] = ACTIONS(3286), - [anon_sym___stdcall] = ACTIONS(3286), - [anon_sym___fastcall] = ACTIONS(3286), - [anon_sym___thiscall] = ACTIONS(3286), - [anon_sym___vectorcall] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_signed] = ACTIONS(3286), - [anon_sym_unsigned] = ACTIONS(3286), - [anon_sym_long] = ACTIONS(3286), - [anon_sym_short] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3286), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_register] = ACTIONS(3286), - [anon_sym_inline] = ACTIONS(3286), - [anon_sym___inline] = ACTIONS(3286), - [anon_sym___inline__] = ACTIONS(3286), - [anon_sym___forceinline] = ACTIONS(3286), - [anon_sym_thread_local] = ACTIONS(3286), - [anon_sym___thread] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_constexpr] = ACTIONS(3286), - [anon_sym_volatile] = ACTIONS(3286), - [anon_sym_restrict] = ACTIONS(3286), - [anon_sym___restrict__] = ACTIONS(3286), - [anon_sym__Atomic] = ACTIONS(3286), - [anon_sym__Noreturn] = ACTIONS(3286), - [anon_sym_noreturn] = ACTIONS(3286), - [anon_sym_mutable] = ACTIONS(3286), - [anon_sym_constinit] = ACTIONS(3286), - [anon_sym_consteval] = ACTIONS(3286), - [sym_primitive_type] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), - [anon_sym_class] = ACTIONS(3286), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_union] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3286), - [anon_sym_default] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_goto] = ACTIONS(3286), - [anon_sym_not] = ACTIONS(3286), - [anon_sym_compl] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_sizeof] = ACTIONS(3286), - [anon_sym___alignof__] = ACTIONS(3286), - [anon_sym___alignof] = ACTIONS(3286), - [anon_sym__alignof] = ACTIONS(3286), - [anon_sym_alignof] = ACTIONS(3286), - [anon_sym__Alignof] = ACTIONS(3286), - [anon_sym_offsetof] = ACTIONS(3286), - [anon_sym__Generic] = ACTIONS(3286), - [anon_sym_asm] = ACTIONS(3286), - [anon_sym___asm__] = ACTIONS(3286), - [sym_number_literal] = ACTIONS(3288), - [anon_sym_L_SQUOTE] = ACTIONS(3288), - [anon_sym_u_SQUOTE] = ACTIONS(3288), - [anon_sym_U_SQUOTE] = ACTIONS(3288), - [anon_sym_u8_SQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_L_DQUOTE] = ACTIONS(3288), - [anon_sym_u_DQUOTE] = ACTIONS(3288), - [anon_sym_U_DQUOTE] = ACTIONS(3288), - [anon_sym_u8_DQUOTE] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [anon_sym_NULL] = ACTIONS(3286), - [anon_sym_nullptr] = ACTIONS(3286), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3286), - [anon_sym_decltype] = ACTIONS(3286), - [anon_sym_virtual] = ACTIONS(3286), - [anon_sym_alignas] = ACTIONS(3286), - [anon_sym_explicit] = ACTIONS(3286), - [anon_sym_typename] = ACTIONS(3286), - [anon_sym_template] = ACTIONS(3286), - [anon_sym_operator] = ACTIONS(3286), - [anon_sym_try] = ACTIONS(3286), - [anon_sym_delete] = ACTIONS(3286), - [anon_sym_throw] = ACTIONS(3286), - [anon_sym_namespace] = ACTIONS(3286), - [anon_sym_using] = ACTIONS(3286), - [anon_sym_static_assert] = ACTIONS(3286), - [anon_sym_concept] = ACTIONS(3286), - [anon_sym_co_return] = ACTIONS(3286), - [anon_sym_co_yield] = ACTIONS(3286), - [anon_sym_R_DQUOTE] = ACTIONS(3288), - [anon_sym_LR_DQUOTE] = ACTIONS(3288), - [anon_sym_uR_DQUOTE] = ACTIONS(3288), - [anon_sym_UR_DQUOTE] = ACTIONS(3288), - [anon_sym_u8R_DQUOTE] = ACTIONS(3288), - [anon_sym_co_await] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3286), - [anon_sym_requires] = ACTIONS(3286), - [sym_this] = ACTIONS(3286), - }, - [1443] = { - [sym_preproc_def] = STATE(1429), - [sym_preproc_function_def] = STATE(1429), - [sym_preproc_call] = STATE(1429), - [sym_preproc_if_in_field_declaration_list] = STATE(1429), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1429), - [sym_type_definition] = STATE(1429), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6387), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1429), - [sym_field_declaration] = STATE(1429), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1429), - [sym_operator_cast] = STATE(7505), - [sym_inline_method_definition] = STATE(1429), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(1429), - [sym_operator_cast_declaration] = STATE(1429), - [sym_constructor_or_destructor_definition] = STATE(1429), - [sym_constructor_or_destructor_declaration] = STATE(1429), - [sym_friend_declaration] = STATE(1429), - [sym_access_specifier] = STATE(9485), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1429), - [sym_alias_declaration] = STATE(1429), - [sym_static_assert_declaration] = STATE(1429), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1429), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3686), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3784), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3698), - }, - [1444] = { - [sym_preproc_def] = STATE(1408), - [sym_preproc_function_def] = STATE(1408), - [sym_preproc_call] = STATE(1408), - [sym_preproc_if_in_field_declaration_list] = STATE(1408), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1408), - [sym_type_definition] = STATE(1408), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6387), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1408), - [sym_field_declaration] = STATE(1408), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1408), - [sym_operator_cast] = STATE(7505), - [sym_inline_method_definition] = STATE(1408), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(1408), - [sym_operator_cast_declaration] = STATE(1408), - [sym_constructor_or_destructor_definition] = STATE(1408), - [sym_constructor_or_destructor_declaration] = STATE(1408), - [sym_friend_declaration] = STATE(1408), - [sym_access_specifier] = STATE(9485), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1408), - [sym_alias_declaration] = STATE(1408), - [sym_static_assert_declaration] = STATE(1408), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1408), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3686), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3786), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3698), - }, - [1445] = { - [ts_builtin_sym_end] = ACTIONS(3257), - [sym_identifier] = ACTIONS(3255), - [aux_sym_preproc_include_token1] = ACTIONS(3255), - [aux_sym_preproc_def_token1] = ACTIONS(3255), - [aux_sym_preproc_if_token1] = ACTIONS(3255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3255), - [sym_preproc_directive] = ACTIONS(3255), - [anon_sym_LPAREN2] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3257), - [anon_sym_AMP_AMP] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym___extension__] = ACTIONS(3255), - [anon_sym_typedef] = ACTIONS(3255), - [anon_sym_extern] = ACTIONS(3255), - [anon_sym___attribute__] = ACTIONS(3255), - [anon_sym_COLON_COLON] = ACTIONS(3257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3257), - [anon_sym___declspec] = ACTIONS(3255), - [anon_sym___based] = ACTIONS(3255), - [anon_sym___cdecl] = ACTIONS(3255), - [anon_sym___clrcall] = ACTIONS(3255), - [anon_sym___stdcall] = ACTIONS(3255), - [anon_sym___fastcall] = ACTIONS(3255), - [anon_sym___thiscall] = ACTIONS(3255), - [anon_sym___vectorcall] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_signed] = ACTIONS(3255), - [anon_sym_unsigned] = ACTIONS(3255), - [anon_sym_long] = ACTIONS(3255), - [anon_sym_short] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_register] = ACTIONS(3255), - [anon_sym_inline] = ACTIONS(3255), - [anon_sym___inline] = ACTIONS(3255), - [anon_sym___inline__] = ACTIONS(3255), - [anon_sym___forceinline] = ACTIONS(3255), - [anon_sym_thread_local] = ACTIONS(3255), - [anon_sym___thread] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_constexpr] = ACTIONS(3255), - [anon_sym_volatile] = ACTIONS(3255), - [anon_sym_restrict] = ACTIONS(3255), - [anon_sym___restrict__] = ACTIONS(3255), - [anon_sym__Atomic] = ACTIONS(3255), - [anon_sym__Noreturn] = ACTIONS(3255), - [anon_sym_noreturn] = ACTIONS(3255), - [anon_sym_mutable] = ACTIONS(3255), - [anon_sym_constinit] = ACTIONS(3255), - [anon_sym_consteval] = ACTIONS(3255), - [sym_primitive_type] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_struct] = ACTIONS(3255), - [anon_sym_union] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_goto] = ACTIONS(3255), - [anon_sym_not] = ACTIONS(3255), - [anon_sym_compl] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_sizeof] = ACTIONS(3255), - [anon_sym___alignof__] = ACTIONS(3255), - [anon_sym___alignof] = ACTIONS(3255), - [anon_sym__alignof] = ACTIONS(3255), - [anon_sym_alignof] = ACTIONS(3255), - [anon_sym__Alignof] = ACTIONS(3255), - [anon_sym_offsetof] = ACTIONS(3255), - [anon_sym__Generic] = ACTIONS(3255), - [anon_sym_asm] = ACTIONS(3255), - [anon_sym___asm__] = ACTIONS(3255), - [sym_number_literal] = ACTIONS(3257), - [anon_sym_L_SQUOTE] = ACTIONS(3257), - [anon_sym_u_SQUOTE] = ACTIONS(3257), - [anon_sym_U_SQUOTE] = ACTIONS(3257), - [anon_sym_u8_SQUOTE] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3257), - [anon_sym_L_DQUOTE] = ACTIONS(3257), - [anon_sym_u_DQUOTE] = ACTIONS(3257), - [anon_sym_U_DQUOTE] = ACTIONS(3257), - [anon_sym_u8_DQUOTE] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3257), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [anon_sym_NULL] = ACTIONS(3255), - [anon_sym_nullptr] = ACTIONS(3255), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3255), - [anon_sym_decltype] = ACTIONS(3255), - [anon_sym_virtual] = ACTIONS(3255), - [anon_sym_alignas] = ACTIONS(3255), - [anon_sym_explicit] = ACTIONS(3255), - [anon_sym_typename] = ACTIONS(3255), - [anon_sym_template] = ACTIONS(3255), - [anon_sym_operator] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_static_assert] = ACTIONS(3255), - [anon_sym_concept] = ACTIONS(3255), - [anon_sym_co_return] = ACTIONS(3255), - [anon_sym_co_yield] = ACTIONS(3255), - [anon_sym_R_DQUOTE] = ACTIONS(3257), - [anon_sym_LR_DQUOTE] = ACTIONS(3257), - [anon_sym_uR_DQUOTE] = ACTIONS(3257), - [anon_sym_UR_DQUOTE] = ACTIONS(3257), - [anon_sym_u8R_DQUOTE] = ACTIONS(3257), - [anon_sym_co_await] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_requires] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - }, - [1446] = { - [ts_builtin_sym_end] = ACTIONS(3261), - [sym_identifier] = ACTIONS(3259), - [aux_sym_preproc_include_token1] = ACTIONS(3259), - [aux_sym_preproc_def_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3259), - [sym_preproc_directive] = ACTIONS(3259), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(3261), - [anon_sym_TILDE] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3261), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym___extension__] = ACTIONS(3259), - [anon_sym_typedef] = ACTIONS(3259), - [anon_sym_extern] = ACTIONS(3259), - [anon_sym___attribute__] = ACTIONS(3259), - [anon_sym_COLON_COLON] = ACTIONS(3261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3261), - [anon_sym___declspec] = ACTIONS(3259), - [anon_sym___based] = ACTIONS(3259), - [anon_sym___cdecl] = ACTIONS(3259), - [anon_sym___clrcall] = ACTIONS(3259), - [anon_sym___stdcall] = ACTIONS(3259), - [anon_sym___fastcall] = ACTIONS(3259), - [anon_sym___thiscall] = ACTIONS(3259), - [anon_sym___vectorcall] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3261), - [anon_sym_signed] = ACTIONS(3259), - [anon_sym_unsigned] = ACTIONS(3259), - [anon_sym_long] = ACTIONS(3259), - [anon_sym_short] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_static] = ACTIONS(3259), - [anon_sym_register] = ACTIONS(3259), - [anon_sym_inline] = ACTIONS(3259), - [anon_sym___inline] = ACTIONS(3259), - [anon_sym___inline__] = ACTIONS(3259), - [anon_sym___forceinline] = ACTIONS(3259), - [anon_sym_thread_local] = ACTIONS(3259), - [anon_sym___thread] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_constexpr] = ACTIONS(3259), - [anon_sym_volatile] = ACTIONS(3259), - [anon_sym_restrict] = ACTIONS(3259), - [anon_sym___restrict__] = ACTIONS(3259), - [anon_sym__Atomic] = ACTIONS(3259), - [anon_sym__Noreturn] = ACTIONS(3259), - [anon_sym_noreturn] = ACTIONS(3259), - [anon_sym_mutable] = ACTIONS(3259), - [anon_sym_constinit] = ACTIONS(3259), - [anon_sym_consteval] = ACTIONS(3259), - [sym_primitive_type] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), - [anon_sym_class] = ACTIONS(3259), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_union] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_switch] = ACTIONS(3259), - [anon_sym_case] = ACTIONS(3259), - [anon_sym_default] = ACTIONS(3259), - [anon_sym_while] = ACTIONS(3259), - [anon_sym_do] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_goto] = ACTIONS(3259), - [anon_sym_not] = ACTIONS(3259), - [anon_sym_compl] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3261), - [anon_sym_PLUS_PLUS] = ACTIONS(3261), - [anon_sym_sizeof] = ACTIONS(3259), - [anon_sym___alignof__] = ACTIONS(3259), - [anon_sym___alignof] = ACTIONS(3259), - [anon_sym__alignof] = ACTIONS(3259), - [anon_sym_alignof] = ACTIONS(3259), - [anon_sym__Alignof] = ACTIONS(3259), - [anon_sym_offsetof] = ACTIONS(3259), - [anon_sym__Generic] = ACTIONS(3259), - [anon_sym_asm] = ACTIONS(3259), - [anon_sym___asm__] = ACTIONS(3259), - [sym_number_literal] = ACTIONS(3261), - [anon_sym_L_SQUOTE] = ACTIONS(3261), - [anon_sym_u_SQUOTE] = ACTIONS(3261), - [anon_sym_U_SQUOTE] = ACTIONS(3261), - [anon_sym_u8_SQUOTE] = ACTIONS(3261), - [anon_sym_SQUOTE] = ACTIONS(3261), - [anon_sym_L_DQUOTE] = ACTIONS(3261), - [anon_sym_u_DQUOTE] = ACTIONS(3261), - [anon_sym_U_DQUOTE] = ACTIONS(3261), - [anon_sym_u8_DQUOTE] = ACTIONS(3261), - [anon_sym_DQUOTE] = ACTIONS(3261), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [anon_sym_NULL] = ACTIONS(3259), - [anon_sym_nullptr] = ACTIONS(3259), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3259), - [anon_sym_decltype] = ACTIONS(3259), - [anon_sym_virtual] = ACTIONS(3259), - [anon_sym_alignas] = ACTIONS(3259), - [anon_sym_explicit] = ACTIONS(3259), - [anon_sym_typename] = ACTIONS(3259), - [anon_sym_template] = ACTIONS(3259), - [anon_sym_operator] = ACTIONS(3259), - [anon_sym_try] = ACTIONS(3259), - [anon_sym_delete] = ACTIONS(3259), - [anon_sym_throw] = ACTIONS(3259), - [anon_sym_namespace] = ACTIONS(3259), - [anon_sym_using] = ACTIONS(3259), - [anon_sym_static_assert] = ACTIONS(3259), - [anon_sym_concept] = ACTIONS(3259), - [anon_sym_co_return] = ACTIONS(3259), - [anon_sym_co_yield] = ACTIONS(3259), - [anon_sym_R_DQUOTE] = ACTIONS(3261), - [anon_sym_LR_DQUOTE] = ACTIONS(3261), - [anon_sym_uR_DQUOTE] = ACTIONS(3261), - [anon_sym_UR_DQUOTE] = ACTIONS(3261), - [anon_sym_u8R_DQUOTE] = ACTIONS(3261), - [anon_sym_co_await] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3259), - [anon_sym_requires] = ACTIONS(3259), - [sym_this] = ACTIONS(3259), - }, - [1447] = { - [sym_preproc_def] = STATE(1413), - [sym_preproc_function_def] = STATE(1413), - [sym_preproc_call] = STATE(1413), - [sym_preproc_if_in_field_declaration_list] = STATE(1413), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1413), - [sym_type_definition] = STATE(1413), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6387), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1413), - [sym_field_declaration] = STATE(1413), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1413), - [sym_operator_cast] = STATE(7505), - [sym_inline_method_definition] = STATE(1413), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(1413), - [sym_operator_cast_declaration] = STATE(1413), - [sym_constructor_or_destructor_definition] = STATE(1413), - [sym_constructor_or_destructor_declaration] = STATE(1413), - [sym_friend_declaration] = STATE(1413), - [sym_access_specifier] = STATE(9485), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1413), - [sym_alias_declaration] = STATE(1413), - [sym_static_assert_declaration] = STATE(1413), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1413), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3686), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3788), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3698), - }, - [1448] = { - [sym_preproc_def] = STATE(1466), - [sym_preproc_function_def] = STATE(1466), - [sym_preproc_call] = STATE(1466), - [sym_preproc_if_in_field_declaration_list] = STATE(1466), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1466), - [sym_type_definition] = STATE(1466), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6387), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1466), - [sym_field_declaration] = STATE(1466), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1466), - [sym_operator_cast] = STATE(7505), - [sym_inline_method_definition] = STATE(1466), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(1466), - [sym_operator_cast_declaration] = STATE(1466), - [sym_constructor_or_destructor_definition] = STATE(1466), - [sym_constructor_or_destructor_declaration] = STATE(1466), - [sym_friend_declaration] = STATE(1466), - [sym_access_specifier] = STATE(9485), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1466), - [sym_alias_declaration] = STATE(1466), - [sym_static_assert_declaration] = STATE(1466), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1466), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3686), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3790), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3698), - }, - [1449] = { - [ts_builtin_sym_end] = ACTIONS(3452), - [sym_identifier] = ACTIONS(3450), - [aux_sym_preproc_include_token1] = ACTIONS(3450), - [aux_sym_preproc_def_token1] = ACTIONS(3450), - [aux_sym_preproc_if_token1] = ACTIONS(3450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3450), - [sym_preproc_directive] = ACTIONS(3450), - [anon_sym_LPAREN2] = ACTIONS(3452), - [anon_sym_BANG] = ACTIONS(3452), - [anon_sym_TILDE] = ACTIONS(3452), - [anon_sym_DASH] = ACTIONS(3450), - [anon_sym_PLUS] = ACTIONS(3450), - [anon_sym_STAR] = ACTIONS(3452), - [anon_sym_AMP_AMP] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3450), - [anon_sym___extension__] = ACTIONS(3450), - [anon_sym_typedef] = ACTIONS(3450), - [anon_sym_extern] = ACTIONS(3450), - [anon_sym___attribute__] = ACTIONS(3450), - [anon_sym_COLON_COLON] = ACTIONS(3452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3452), - [anon_sym___declspec] = ACTIONS(3450), - [anon_sym___based] = ACTIONS(3450), - [anon_sym___cdecl] = ACTIONS(3450), - [anon_sym___clrcall] = ACTIONS(3450), - [anon_sym___stdcall] = ACTIONS(3450), - [anon_sym___fastcall] = ACTIONS(3450), - [anon_sym___thiscall] = ACTIONS(3450), - [anon_sym___vectorcall] = ACTIONS(3450), - [anon_sym_LBRACE] = ACTIONS(3452), - [anon_sym_signed] = ACTIONS(3450), - [anon_sym_unsigned] = ACTIONS(3450), - [anon_sym_long] = ACTIONS(3450), - [anon_sym_short] = ACTIONS(3450), - [anon_sym_LBRACK] = ACTIONS(3450), - [anon_sym_static] = ACTIONS(3450), - [anon_sym_register] = ACTIONS(3450), - [anon_sym_inline] = ACTIONS(3450), - [anon_sym___inline] = ACTIONS(3450), - [anon_sym___inline__] = ACTIONS(3450), - [anon_sym___forceinline] = ACTIONS(3450), - [anon_sym_thread_local] = ACTIONS(3450), - [anon_sym___thread] = ACTIONS(3450), - [anon_sym_const] = ACTIONS(3450), - [anon_sym_constexpr] = ACTIONS(3450), - [anon_sym_volatile] = ACTIONS(3450), - [anon_sym_restrict] = ACTIONS(3450), - [anon_sym___restrict__] = ACTIONS(3450), - [anon_sym__Atomic] = ACTIONS(3450), - [anon_sym__Noreturn] = ACTIONS(3450), - [anon_sym_noreturn] = ACTIONS(3450), - [anon_sym_mutable] = ACTIONS(3450), - [anon_sym_constinit] = ACTIONS(3450), - [anon_sym_consteval] = ACTIONS(3450), - [sym_primitive_type] = ACTIONS(3450), - [anon_sym_enum] = ACTIONS(3450), - [anon_sym_class] = ACTIONS(3450), - [anon_sym_struct] = ACTIONS(3450), - [anon_sym_union] = ACTIONS(3450), - [anon_sym_if] = ACTIONS(3450), - [anon_sym_switch] = ACTIONS(3450), - [anon_sym_case] = ACTIONS(3450), - [anon_sym_default] = ACTIONS(3450), - [anon_sym_while] = ACTIONS(3450), - [anon_sym_do] = ACTIONS(3450), - [anon_sym_for] = ACTIONS(3450), - [anon_sym_return] = ACTIONS(3450), - [anon_sym_break] = ACTIONS(3450), - [anon_sym_continue] = ACTIONS(3450), - [anon_sym_goto] = ACTIONS(3450), - [anon_sym_not] = ACTIONS(3450), - [anon_sym_compl] = ACTIONS(3450), - [anon_sym_DASH_DASH] = ACTIONS(3452), - [anon_sym_PLUS_PLUS] = ACTIONS(3452), - [anon_sym_sizeof] = ACTIONS(3450), - [anon_sym___alignof__] = ACTIONS(3450), - [anon_sym___alignof] = ACTIONS(3450), - [anon_sym__alignof] = ACTIONS(3450), - [anon_sym_alignof] = ACTIONS(3450), - [anon_sym__Alignof] = ACTIONS(3450), - [anon_sym_offsetof] = ACTIONS(3450), - [anon_sym__Generic] = ACTIONS(3450), - [anon_sym_asm] = ACTIONS(3450), - [anon_sym___asm__] = ACTIONS(3450), - [sym_number_literal] = ACTIONS(3452), - [anon_sym_L_SQUOTE] = ACTIONS(3452), - [anon_sym_u_SQUOTE] = ACTIONS(3452), - [anon_sym_U_SQUOTE] = ACTIONS(3452), - [anon_sym_u8_SQUOTE] = ACTIONS(3452), - [anon_sym_SQUOTE] = ACTIONS(3452), - [anon_sym_L_DQUOTE] = ACTIONS(3452), - [anon_sym_u_DQUOTE] = ACTIONS(3452), - [anon_sym_U_DQUOTE] = ACTIONS(3452), - [anon_sym_u8_DQUOTE] = ACTIONS(3452), - [anon_sym_DQUOTE] = ACTIONS(3452), - [sym_true] = ACTIONS(3450), - [sym_false] = ACTIONS(3450), - [anon_sym_NULL] = ACTIONS(3450), - [anon_sym_nullptr] = ACTIONS(3450), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3450), - [anon_sym_decltype] = ACTIONS(3450), - [anon_sym_virtual] = ACTIONS(3450), - [anon_sym_alignas] = ACTIONS(3450), - [anon_sym_explicit] = ACTIONS(3450), - [anon_sym_typename] = ACTIONS(3450), - [anon_sym_template] = ACTIONS(3450), - [anon_sym_operator] = ACTIONS(3450), - [anon_sym_try] = ACTIONS(3450), - [anon_sym_delete] = ACTIONS(3450), - [anon_sym_throw] = ACTIONS(3450), - [anon_sym_namespace] = ACTIONS(3450), - [anon_sym_using] = ACTIONS(3450), - [anon_sym_static_assert] = ACTIONS(3450), - [anon_sym_concept] = ACTIONS(3450), - [anon_sym_co_return] = ACTIONS(3450), - [anon_sym_co_yield] = ACTIONS(3450), - [anon_sym_R_DQUOTE] = ACTIONS(3452), - [anon_sym_LR_DQUOTE] = ACTIONS(3452), - [anon_sym_uR_DQUOTE] = ACTIONS(3452), - [anon_sym_UR_DQUOTE] = ACTIONS(3452), - [anon_sym_u8R_DQUOTE] = ACTIONS(3452), - [anon_sym_co_await] = ACTIONS(3450), - [anon_sym_new] = ACTIONS(3450), - [anon_sym_requires] = ACTIONS(3450), - [sym_this] = ACTIONS(3450), - }, - [1450] = { - [ts_builtin_sym_end] = ACTIONS(3226), - [sym_identifier] = ACTIONS(3224), - [aux_sym_preproc_include_token1] = ACTIONS(3224), - [aux_sym_preproc_def_token1] = ACTIONS(3224), - [aux_sym_preproc_if_token1] = ACTIONS(3224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3224), - [sym_preproc_directive] = ACTIONS(3224), - [anon_sym_LPAREN2] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3226), - [anon_sym_AMP_AMP] = ACTIONS(3226), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym___extension__] = ACTIONS(3224), - [anon_sym_typedef] = ACTIONS(3224), - [anon_sym_extern] = ACTIONS(3224), - [anon_sym___attribute__] = ACTIONS(3224), - [anon_sym_COLON_COLON] = ACTIONS(3226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3226), - [anon_sym___declspec] = ACTIONS(3224), - [anon_sym___based] = ACTIONS(3224), - [anon_sym___cdecl] = ACTIONS(3224), - [anon_sym___clrcall] = ACTIONS(3224), - [anon_sym___stdcall] = ACTIONS(3224), - [anon_sym___fastcall] = ACTIONS(3224), - [anon_sym___thiscall] = ACTIONS(3224), - [anon_sym___vectorcall] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_signed] = ACTIONS(3224), - [anon_sym_unsigned] = ACTIONS(3224), - [anon_sym_long] = ACTIONS(3224), - [anon_sym_short] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_register] = ACTIONS(3224), - [anon_sym_inline] = ACTIONS(3224), - [anon_sym___inline] = ACTIONS(3224), - [anon_sym___inline__] = ACTIONS(3224), - [anon_sym___forceinline] = ACTIONS(3224), - [anon_sym_thread_local] = ACTIONS(3224), - [anon_sym___thread] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_constexpr] = ACTIONS(3224), - [anon_sym_volatile] = ACTIONS(3224), - [anon_sym_restrict] = ACTIONS(3224), - [anon_sym___restrict__] = ACTIONS(3224), - [anon_sym__Atomic] = ACTIONS(3224), - [anon_sym__Noreturn] = ACTIONS(3224), - [anon_sym_noreturn] = ACTIONS(3224), - [anon_sym_mutable] = ACTIONS(3224), - [anon_sym_constinit] = ACTIONS(3224), - [anon_sym_consteval] = ACTIONS(3224), - [sym_primitive_type] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_struct] = ACTIONS(3224), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_goto] = ACTIONS(3224), - [anon_sym_not] = ACTIONS(3224), - [anon_sym_compl] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_sizeof] = ACTIONS(3224), - [anon_sym___alignof__] = ACTIONS(3224), - [anon_sym___alignof] = ACTIONS(3224), - [anon_sym__alignof] = ACTIONS(3224), - [anon_sym_alignof] = ACTIONS(3224), - [anon_sym__Alignof] = ACTIONS(3224), - [anon_sym_offsetof] = ACTIONS(3224), - [anon_sym__Generic] = ACTIONS(3224), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3226), - [anon_sym_u_SQUOTE] = ACTIONS(3226), - [anon_sym_U_SQUOTE] = ACTIONS(3226), - [anon_sym_u8_SQUOTE] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [anon_sym_L_DQUOTE] = ACTIONS(3226), - [anon_sym_u_DQUOTE] = ACTIONS(3226), - [anon_sym_U_DQUOTE] = ACTIONS(3226), - [anon_sym_u8_DQUOTE] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [anon_sym_NULL] = ACTIONS(3224), - [anon_sym_nullptr] = ACTIONS(3224), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3224), - [anon_sym_decltype] = ACTIONS(3224), - [anon_sym_virtual] = ACTIONS(3224), - [anon_sym_alignas] = ACTIONS(3224), - [anon_sym_explicit] = ACTIONS(3224), - [anon_sym_typename] = ACTIONS(3224), - [anon_sym_template] = ACTIONS(3224), - [anon_sym_operator] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_using] = ACTIONS(3224), - [anon_sym_static_assert] = ACTIONS(3224), - [anon_sym_concept] = ACTIONS(3224), - [anon_sym_co_return] = ACTIONS(3224), - [anon_sym_co_yield] = ACTIONS(3224), - [anon_sym_R_DQUOTE] = ACTIONS(3226), - [anon_sym_LR_DQUOTE] = ACTIONS(3226), - [anon_sym_uR_DQUOTE] = ACTIONS(3226), - [anon_sym_UR_DQUOTE] = ACTIONS(3226), - [anon_sym_u8R_DQUOTE] = ACTIONS(3226), - [anon_sym_co_await] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_requires] = ACTIONS(3224), - [sym_this] = ACTIONS(3224), - }, - [1451] = { - [ts_builtin_sym_end] = ACTIONS(3394), - [sym_identifier] = ACTIONS(3392), - [aux_sym_preproc_include_token1] = ACTIONS(3392), - [aux_sym_preproc_def_token1] = ACTIONS(3392), - [aux_sym_preproc_if_token1] = ACTIONS(3392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3392), - [sym_preproc_directive] = ACTIONS(3392), - [anon_sym_LPAREN2] = ACTIONS(3394), - [anon_sym_BANG] = ACTIONS(3394), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3392), - [anon_sym_PLUS] = ACTIONS(3392), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3392), - [anon_sym___extension__] = ACTIONS(3392), - [anon_sym_typedef] = ACTIONS(3392), - [anon_sym_extern] = ACTIONS(3392), - [anon_sym___attribute__] = ACTIONS(3392), - [anon_sym_COLON_COLON] = ACTIONS(3394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), - [anon_sym___declspec] = ACTIONS(3392), - [anon_sym___based] = ACTIONS(3392), - [anon_sym___cdecl] = ACTIONS(3392), - [anon_sym___clrcall] = ACTIONS(3392), - [anon_sym___stdcall] = ACTIONS(3392), - [anon_sym___fastcall] = ACTIONS(3392), - [anon_sym___thiscall] = ACTIONS(3392), - [anon_sym___vectorcall] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(3394), - [anon_sym_signed] = ACTIONS(3392), - [anon_sym_unsigned] = ACTIONS(3392), - [anon_sym_long] = ACTIONS(3392), - [anon_sym_short] = ACTIONS(3392), - [anon_sym_LBRACK] = ACTIONS(3392), - [anon_sym_static] = ACTIONS(3392), - [anon_sym_register] = ACTIONS(3392), - [anon_sym_inline] = ACTIONS(3392), - [anon_sym___inline] = ACTIONS(3392), - [anon_sym___inline__] = ACTIONS(3392), - [anon_sym___forceinline] = ACTIONS(3392), - [anon_sym_thread_local] = ACTIONS(3392), - [anon_sym___thread] = ACTIONS(3392), - [anon_sym_const] = ACTIONS(3392), - [anon_sym_constexpr] = ACTIONS(3392), - [anon_sym_volatile] = ACTIONS(3392), - [anon_sym_restrict] = ACTIONS(3392), - [anon_sym___restrict__] = ACTIONS(3392), - [anon_sym__Atomic] = ACTIONS(3392), - [anon_sym__Noreturn] = ACTIONS(3392), - [anon_sym_noreturn] = ACTIONS(3392), - [anon_sym_mutable] = ACTIONS(3392), - [anon_sym_constinit] = ACTIONS(3392), - [anon_sym_consteval] = ACTIONS(3392), - [sym_primitive_type] = ACTIONS(3392), - [anon_sym_enum] = ACTIONS(3392), - [anon_sym_class] = ACTIONS(3392), - [anon_sym_struct] = ACTIONS(3392), - [anon_sym_union] = ACTIONS(3392), - [anon_sym_if] = ACTIONS(3392), - [anon_sym_switch] = ACTIONS(3392), - [anon_sym_case] = ACTIONS(3392), - [anon_sym_default] = ACTIONS(3392), - [anon_sym_while] = ACTIONS(3392), - [anon_sym_do] = ACTIONS(3392), - [anon_sym_for] = ACTIONS(3392), - [anon_sym_return] = ACTIONS(3392), - [anon_sym_break] = ACTIONS(3392), - [anon_sym_continue] = ACTIONS(3392), - [anon_sym_goto] = ACTIONS(3392), - [anon_sym_not] = ACTIONS(3392), - [anon_sym_compl] = ACTIONS(3392), - [anon_sym_DASH_DASH] = ACTIONS(3394), - [anon_sym_PLUS_PLUS] = ACTIONS(3394), - [anon_sym_sizeof] = ACTIONS(3392), - [anon_sym___alignof__] = ACTIONS(3392), - [anon_sym___alignof] = ACTIONS(3392), - [anon_sym__alignof] = ACTIONS(3392), - [anon_sym_alignof] = ACTIONS(3392), - [anon_sym__Alignof] = ACTIONS(3392), - [anon_sym_offsetof] = ACTIONS(3392), - [anon_sym__Generic] = ACTIONS(3392), - [anon_sym_asm] = ACTIONS(3392), - [anon_sym___asm__] = ACTIONS(3392), - [sym_number_literal] = ACTIONS(3394), - [anon_sym_L_SQUOTE] = ACTIONS(3394), - [anon_sym_u_SQUOTE] = ACTIONS(3394), - [anon_sym_U_SQUOTE] = ACTIONS(3394), - [anon_sym_u8_SQUOTE] = ACTIONS(3394), - [anon_sym_SQUOTE] = ACTIONS(3394), - [anon_sym_L_DQUOTE] = ACTIONS(3394), - [anon_sym_u_DQUOTE] = ACTIONS(3394), - [anon_sym_U_DQUOTE] = ACTIONS(3394), - [anon_sym_u8_DQUOTE] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [sym_true] = ACTIONS(3392), - [sym_false] = ACTIONS(3392), - [anon_sym_NULL] = ACTIONS(3392), - [anon_sym_nullptr] = ACTIONS(3392), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3392), - [anon_sym_decltype] = ACTIONS(3392), - [anon_sym_virtual] = ACTIONS(3392), - [anon_sym_alignas] = ACTIONS(3392), - [anon_sym_explicit] = ACTIONS(3392), - [anon_sym_typename] = ACTIONS(3392), - [anon_sym_template] = ACTIONS(3392), - [anon_sym_operator] = ACTIONS(3392), - [anon_sym_try] = ACTIONS(3392), - [anon_sym_delete] = ACTIONS(3392), - [anon_sym_throw] = ACTIONS(3392), - [anon_sym_namespace] = ACTIONS(3392), - [anon_sym_using] = ACTIONS(3392), - [anon_sym_static_assert] = ACTIONS(3392), - [anon_sym_concept] = ACTIONS(3392), - [anon_sym_co_return] = ACTIONS(3392), - [anon_sym_co_yield] = ACTIONS(3392), - [anon_sym_R_DQUOTE] = ACTIONS(3394), - [anon_sym_LR_DQUOTE] = ACTIONS(3394), - [anon_sym_uR_DQUOTE] = ACTIONS(3394), - [anon_sym_UR_DQUOTE] = ACTIONS(3394), - [anon_sym_u8R_DQUOTE] = ACTIONS(3394), - [anon_sym_co_await] = ACTIONS(3392), - [anon_sym_new] = ACTIONS(3392), - [anon_sym_requires] = ACTIONS(3392), - [sym_this] = ACTIONS(3392), - }, - [1452] = { - [ts_builtin_sym_end] = ACTIONS(3390), - [sym_identifier] = ACTIONS(3388), - [aux_sym_preproc_include_token1] = ACTIONS(3388), - [aux_sym_preproc_def_token1] = ACTIONS(3388), - [aux_sym_preproc_if_token1] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3388), - [sym_preproc_directive] = ACTIONS(3388), - [anon_sym_LPAREN2] = ACTIONS(3390), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_TILDE] = ACTIONS(3390), - [anon_sym_DASH] = ACTIONS(3388), - [anon_sym_PLUS] = ACTIONS(3388), - [anon_sym_STAR] = ACTIONS(3390), - [anon_sym_AMP_AMP] = ACTIONS(3390), - [anon_sym_AMP] = ACTIONS(3388), - [anon_sym___extension__] = ACTIONS(3388), - [anon_sym_typedef] = ACTIONS(3388), - [anon_sym_extern] = ACTIONS(3388), - [anon_sym___attribute__] = ACTIONS(3388), - [anon_sym_COLON_COLON] = ACTIONS(3390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3390), - [anon_sym___declspec] = ACTIONS(3388), - [anon_sym___based] = ACTIONS(3388), - [anon_sym___cdecl] = ACTIONS(3388), - [anon_sym___clrcall] = ACTIONS(3388), - [anon_sym___stdcall] = ACTIONS(3388), - [anon_sym___fastcall] = ACTIONS(3388), - [anon_sym___thiscall] = ACTIONS(3388), - [anon_sym___vectorcall] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(3390), - [anon_sym_signed] = ACTIONS(3388), - [anon_sym_unsigned] = ACTIONS(3388), - [anon_sym_long] = ACTIONS(3388), - [anon_sym_short] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3388), - [anon_sym_static] = ACTIONS(3388), - [anon_sym_register] = ACTIONS(3388), - [anon_sym_inline] = ACTIONS(3388), - [anon_sym___inline] = ACTIONS(3388), - [anon_sym___inline__] = ACTIONS(3388), - [anon_sym___forceinline] = ACTIONS(3388), - [anon_sym_thread_local] = ACTIONS(3388), - [anon_sym___thread] = ACTIONS(3388), - [anon_sym_const] = ACTIONS(3388), - [anon_sym_constexpr] = ACTIONS(3388), - [anon_sym_volatile] = ACTIONS(3388), - [anon_sym_restrict] = ACTIONS(3388), - [anon_sym___restrict__] = ACTIONS(3388), - [anon_sym__Atomic] = ACTIONS(3388), - [anon_sym__Noreturn] = ACTIONS(3388), - [anon_sym_noreturn] = ACTIONS(3388), - [anon_sym_mutable] = ACTIONS(3388), - [anon_sym_constinit] = ACTIONS(3388), - [anon_sym_consteval] = ACTIONS(3388), - [sym_primitive_type] = ACTIONS(3388), - [anon_sym_enum] = ACTIONS(3388), - [anon_sym_class] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(3388), - [anon_sym_union] = ACTIONS(3388), - [anon_sym_if] = ACTIONS(3388), - [anon_sym_switch] = ACTIONS(3388), - [anon_sym_case] = ACTIONS(3388), - [anon_sym_default] = ACTIONS(3388), - [anon_sym_while] = ACTIONS(3388), - [anon_sym_do] = ACTIONS(3388), - [anon_sym_for] = ACTIONS(3388), - [anon_sym_return] = ACTIONS(3388), - [anon_sym_break] = ACTIONS(3388), - [anon_sym_continue] = ACTIONS(3388), - [anon_sym_goto] = ACTIONS(3388), - [anon_sym_not] = ACTIONS(3388), - [anon_sym_compl] = ACTIONS(3388), - [anon_sym_DASH_DASH] = ACTIONS(3390), - [anon_sym_PLUS_PLUS] = ACTIONS(3390), - [anon_sym_sizeof] = ACTIONS(3388), - [anon_sym___alignof__] = ACTIONS(3388), - [anon_sym___alignof] = ACTIONS(3388), - [anon_sym__alignof] = ACTIONS(3388), - [anon_sym_alignof] = ACTIONS(3388), - [anon_sym__Alignof] = ACTIONS(3388), - [anon_sym_offsetof] = ACTIONS(3388), - [anon_sym__Generic] = ACTIONS(3388), - [anon_sym_asm] = ACTIONS(3388), - [anon_sym___asm__] = ACTIONS(3388), - [sym_number_literal] = ACTIONS(3390), - [anon_sym_L_SQUOTE] = ACTIONS(3390), - [anon_sym_u_SQUOTE] = ACTIONS(3390), - [anon_sym_U_SQUOTE] = ACTIONS(3390), - [anon_sym_u8_SQUOTE] = ACTIONS(3390), - [anon_sym_SQUOTE] = ACTIONS(3390), - [anon_sym_L_DQUOTE] = ACTIONS(3390), - [anon_sym_u_DQUOTE] = ACTIONS(3390), - [anon_sym_U_DQUOTE] = ACTIONS(3390), - [anon_sym_u8_DQUOTE] = ACTIONS(3390), - [anon_sym_DQUOTE] = ACTIONS(3390), - [sym_true] = ACTIONS(3388), - [sym_false] = ACTIONS(3388), - [anon_sym_NULL] = ACTIONS(3388), - [anon_sym_nullptr] = ACTIONS(3388), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3388), - [anon_sym_decltype] = ACTIONS(3388), - [anon_sym_virtual] = ACTIONS(3388), - [anon_sym_alignas] = ACTIONS(3388), - [anon_sym_explicit] = ACTIONS(3388), - [anon_sym_typename] = ACTIONS(3388), - [anon_sym_template] = ACTIONS(3388), - [anon_sym_operator] = ACTIONS(3388), - [anon_sym_try] = ACTIONS(3388), - [anon_sym_delete] = ACTIONS(3388), - [anon_sym_throw] = ACTIONS(3388), - [anon_sym_namespace] = ACTIONS(3388), - [anon_sym_using] = ACTIONS(3388), - [anon_sym_static_assert] = ACTIONS(3388), - [anon_sym_concept] = ACTIONS(3388), - [anon_sym_co_return] = ACTIONS(3388), - [anon_sym_co_yield] = ACTIONS(3388), - [anon_sym_R_DQUOTE] = ACTIONS(3390), - [anon_sym_LR_DQUOTE] = ACTIONS(3390), - [anon_sym_uR_DQUOTE] = ACTIONS(3390), - [anon_sym_UR_DQUOTE] = ACTIONS(3390), - [anon_sym_u8R_DQUOTE] = ACTIONS(3390), - [anon_sym_co_await] = ACTIONS(3388), - [anon_sym_new] = ACTIONS(3388), - [anon_sym_requires] = ACTIONS(3388), - [sym_this] = ACTIONS(3388), - }, - [1453] = { - [ts_builtin_sym_end] = ACTIONS(3265), - [sym_identifier] = ACTIONS(3263), - [aux_sym_preproc_include_token1] = ACTIONS(3263), - [aux_sym_preproc_def_token1] = ACTIONS(3263), - [aux_sym_preproc_if_token1] = ACTIONS(3263), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3263), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3263), - [sym_preproc_directive] = ACTIONS(3263), - [anon_sym_LPAREN2] = ACTIONS(3265), - [anon_sym_BANG] = ACTIONS(3265), - [anon_sym_TILDE] = ACTIONS(3265), - [anon_sym_DASH] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(3263), - [anon_sym_STAR] = ACTIONS(3265), - [anon_sym_AMP_AMP] = ACTIONS(3265), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(3263), - [anon_sym_typedef] = ACTIONS(3263), - [anon_sym_extern] = ACTIONS(3263), - [anon_sym___attribute__] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(3265), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3265), - [anon_sym___declspec] = ACTIONS(3263), - [anon_sym___based] = ACTIONS(3263), - [anon_sym___cdecl] = ACTIONS(3263), - [anon_sym___clrcall] = ACTIONS(3263), - [anon_sym___stdcall] = ACTIONS(3263), - [anon_sym___fastcall] = ACTIONS(3263), - [anon_sym___thiscall] = ACTIONS(3263), - [anon_sym___vectorcall] = ACTIONS(3263), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_signed] = ACTIONS(3263), - [anon_sym_unsigned] = ACTIONS(3263), - [anon_sym_long] = ACTIONS(3263), - [anon_sym_short] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3263), - [anon_sym_static] = ACTIONS(3263), - [anon_sym_register] = ACTIONS(3263), - [anon_sym_inline] = ACTIONS(3263), - [anon_sym___inline] = ACTIONS(3263), - [anon_sym___inline__] = ACTIONS(3263), - [anon_sym___forceinline] = ACTIONS(3263), - [anon_sym_thread_local] = ACTIONS(3263), - [anon_sym___thread] = ACTIONS(3263), - [anon_sym_const] = ACTIONS(3263), - [anon_sym_constexpr] = ACTIONS(3263), - [anon_sym_volatile] = ACTIONS(3263), - [anon_sym_restrict] = ACTIONS(3263), - [anon_sym___restrict__] = ACTIONS(3263), - [anon_sym__Atomic] = ACTIONS(3263), - [anon_sym__Noreturn] = ACTIONS(3263), - [anon_sym_noreturn] = ACTIONS(3263), - [anon_sym_mutable] = ACTIONS(3263), - [anon_sym_constinit] = ACTIONS(3263), - [anon_sym_consteval] = ACTIONS(3263), - [sym_primitive_type] = ACTIONS(3263), - [anon_sym_enum] = ACTIONS(3263), - [anon_sym_class] = ACTIONS(3263), - [anon_sym_struct] = ACTIONS(3263), - [anon_sym_union] = ACTIONS(3263), - [anon_sym_if] = ACTIONS(3263), - [anon_sym_switch] = ACTIONS(3263), - [anon_sym_case] = ACTIONS(3263), - [anon_sym_default] = ACTIONS(3263), - [anon_sym_while] = ACTIONS(3263), - [anon_sym_do] = ACTIONS(3263), - [anon_sym_for] = ACTIONS(3263), - [anon_sym_return] = ACTIONS(3263), - [anon_sym_break] = ACTIONS(3263), - [anon_sym_continue] = ACTIONS(3263), - [anon_sym_goto] = ACTIONS(3263), - [anon_sym_not] = ACTIONS(3263), - [anon_sym_compl] = ACTIONS(3263), - [anon_sym_DASH_DASH] = ACTIONS(3265), - [anon_sym_PLUS_PLUS] = ACTIONS(3265), - [anon_sym_sizeof] = ACTIONS(3263), - [anon_sym___alignof__] = ACTIONS(3263), - [anon_sym___alignof] = ACTIONS(3263), - [anon_sym__alignof] = ACTIONS(3263), - [anon_sym_alignof] = ACTIONS(3263), - [anon_sym__Alignof] = ACTIONS(3263), - [anon_sym_offsetof] = ACTIONS(3263), - [anon_sym__Generic] = ACTIONS(3263), - [anon_sym_asm] = ACTIONS(3263), - [anon_sym___asm__] = ACTIONS(3263), - [sym_number_literal] = ACTIONS(3265), - [anon_sym_L_SQUOTE] = ACTIONS(3265), - [anon_sym_u_SQUOTE] = ACTIONS(3265), - [anon_sym_U_SQUOTE] = ACTIONS(3265), - [anon_sym_u8_SQUOTE] = ACTIONS(3265), - [anon_sym_SQUOTE] = ACTIONS(3265), - [anon_sym_L_DQUOTE] = ACTIONS(3265), - [anon_sym_u_DQUOTE] = ACTIONS(3265), - [anon_sym_U_DQUOTE] = ACTIONS(3265), - [anon_sym_u8_DQUOTE] = ACTIONS(3265), - [anon_sym_DQUOTE] = ACTIONS(3265), - [sym_true] = ACTIONS(3263), - [sym_false] = ACTIONS(3263), - [anon_sym_NULL] = ACTIONS(3263), - [anon_sym_nullptr] = ACTIONS(3263), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3263), - [anon_sym_decltype] = ACTIONS(3263), - [anon_sym_virtual] = ACTIONS(3263), - [anon_sym_alignas] = ACTIONS(3263), - [anon_sym_explicit] = ACTIONS(3263), - [anon_sym_typename] = ACTIONS(3263), - [anon_sym_template] = ACTIONS(3263), - [anon_sym_operator] = ACTIONS(3263), - [anon_sym_try] = ACTIONS(3263), - [anon_sym_delete] = ACTIONS(3263), - [anon_sym_throw] = ACTIONS(3263), - [anon_sym_namespace] = ACTIONS(3263), - [anon_sym_using] = ACTIONS(3263), - [anon_sym_static_assert] = ACTIONS(3263), - [anon_sym_concept] = ACTIONS(3263), - [anon_sym_co_return] = ACTIONS(3263), - [anon_sym_co_yield] = ACTIONS(3263), - [anon_sym_R_DQUOTE] = ACTIONS(3265), - [anon_sym_LR_DQUOTE] = ACTIONS(3265), - [anon_sym_uR_DQUOTE] = ACTIONS(3265), - [anon_sym_UR_DQUOTE] = ACTIONS(3265), - [anon_sym_u8R_DQUOTE] = ACTIONS(3265), - [anon_sym_co_await] = ACTIONS(3263), - [anon_sym_new] = ACTIONS(3263), - [anon_sym_requires] = ACTIONS(3263), - [sym_this] = ACTIONS(3263), - }, - [1454] = { - [ts_builtin_sym_end] = ACTIONS(3446), - [sym_identifier] = ACTIONS(3444), - [aux_sym_preproc_include_token1] = ACTIONS(3444), - [aux_sym_preproc_def_token1] = ACTIONS(3444), - [aux_sym_preproc_if_token1] = ACTIONS(3444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3444), - [sym_preproc_directive] = ACTIONS(3444), - [anon_sym_LPAREN2] = ACTIONS(3446), - [anon_sym_BANG] = ACTIONS(3446), - [anon_sym_TILDE] = ACTIONS(3446), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(3446), - [anon_sym_AMP] = ACTIONS(3444), - [anon_sym___extension__] = ACTIONS(3444), - [anon_sym_typedef] = ACTIONS(3444), - [anon_sym_extern] = ACTIONS(3444), - [anon_sym___attribute__] = ACTIONS(3444), - [anon_sym_COLON_COLON] = ACTIONS(3446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3446), - [anon_sym___declspec] = ACTIONS(3444), - [anon_sym___based] = ACTIONS(3444), - [anon_sym___cdecl] = ACTIONS(3444), - [anon_sym___clrcall] = ACTIONS(3444), - [anon_sym___stdcall] = ACTIONS(3444), - [anon_sym___fastcall] = ACTIONS(3444), - [anon_sym___thiscall] = ACTIONS(3444), - [anon_sym___vectorcall] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3446), - [anon_sym_signed] = ACTIONS(3444), - [anon_sym_unsigned] = ACTIONS(3444), - [anon_sym_long] = ACTIONS(3444), - [anon_sym_short] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3444), - [anon_sym_static] = ACTIONS(3444), - [anon_sym_register] = ACTIONS(3444), - [anon_sym_inline] = ACTIONS(3444), - [anon_sym___inline] = ACTIONS(3444), - [anon_sym___inline__] = ACTIONS(3444), - [anon_sym___forceinline] = ACTIONS(3444), - [anon_sym_thread_local] = ACTIONS(3444), - [anon_sym___thread] = ACTIONS(3444), - [anon_sym_const] = ACTIONS(3444), - [anon_sym_constexpr] = ACTIONS(3444), - [anon_sym_volatile] = ACTIONS(3444), - [anon_sym_restrict] = ACTIONS(3444), - [anon_sym___restrict__] = ACTIONS(3444), - [anon_sym__Atomic] = ACTIONS(3444), - [anon_sym__Noreturn] = ACTIONS(3444), - [anon_sym_noreturn] = ACTIONS(3444), - [anon_sym_mutable] = ACTIONS(3444), - [anon_sym_constinit] = ACTIONS(3444), - [anon_sym_consteval] = ACTIONS(3444), - [sym_primitive_type] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), - [anon_sym_class] = ACTIONS(3444), - [anon_sym_struct] = ACTIONS(3444), - [anon_sym_union] = ACTIONS(3444), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_switch] = ACTIONS(3444), - [anon_sym_case] = ACTIONS(3444), - [anon_sym_default] = ACTIONS(3444), - [anon_sym_while] = ACTIONS(3444), - [anon_sym_do] = ACTIONS(3444), - [anon_sym_for] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3444), - [anon_sym_break] = ACTIONS(3444), - [anon_sym_continue] = ACTIONS(3444), - [anon_sym_goto] = ACTIONS(3444), - [anon_sym_not] = ACTIONS(3444), - [anon_sym_compl] = ACTIONS(3444), - [anon_sym_DASH_DASH] = ACTIONS(3446), - [anon_sym_PLUS_PLUS] = ACTIONS(3446), - [anon_sym_sizeof] = ACTIONS(3444), - [anon_sym___alignof__] = ACTIONS(3444), - [anon_sym___alignof] = ACTIONS(3444), - [anon_sym__alignof] = ACTIONS(3444), - [anon_sym_alignof] = ACTIONS(3444), - [anon_sym__Alignof] = ACTIONS(3444), - [anon_sym_offsetof] = ACTIONS(3444), - [anon_sym__Generic] = ACTIONS(3444), - [anon_sym_asm] = ACTIONS(3444), - [anon_sym___asm__] = ACTIONS(3444), - [sym_number_literal] = ACTIONS(3446), - [anon_sym_L_SQUOTE] = ACTIONS(3446), - [anon_sym_u_SQUOTE] = ACTIONS(3446), - [anon_sym_U_SQUOTE] = ACTIONS(3446), - [anon_sym_u8_SQUOTE] = ACTIONS(3446), - [anon_sym_SQUOTE] = ACTIONS(3446), - [anon_sym_L_DQUOTE] = ACTIONS(3446), - [anon_sym_u_DQUOTE] = ACTIONS(3446), - [anon_sym_U_DQUOTE] = ACTIONS(3446), - [anon_sym_u8_DQUOTE] = ACTIONS(3446), - [anon_sym_DQUOTE] = ACTIONS(3446), - [sym_true] = ACTIONS(3444), - [sym_false] = ACTIONS(3444), - [anon_sym_NULL] = ACTIONS(3444), - [anon_sym_nullptr] = ACTIONS(3444), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3444), - [anon_sym_decltype] = ACTIONS(3444), - [anon_sym_virtual] = ACTIONS(3444), - [anon_sym_alignas] = ACTIONS(3444), - [anon_sym_explicit] = ACTIONS(3444), - [anon_sym_typename] = ACTIONS(3444), - [anon_sym_template] = ACTIONS(3444), - [anon_sym_operator] = ACTIONS(3444), - [anon_sym_try] = ACTIONS(3444), - [anon_sym_delete] = ACTIONS(3444), - [anon_sym_throw] = ACTIONS(3444), - [anon_sym_namespace] = ACTIONS(3444), - [anon_sym_using] = ACTIONS(3444), - [anon_sym_static_assert] = ACTIONS(3444), - [anon_sym_concept] = ACTIONS(3444), - [anon_sym_co_return] = ACTIONS(3444), - [anon_sym_co_yield] = ACTIONS(3444), - [anon_sym_R_DQUOTE] = ACTIONS(3446), - [anon_sym_LR_DQUOTE] = ACTIONS(3446), - [anon_sym_uR_DQUOTE] = ACTIONS(3446), - [anon_sym_UR_DQUOTE] = ACTIONS(3446), - [anon_sym_u8R_DQUOTE] = ACTIONS(3446), - [anon_sym_co_await] = ACTIONS(3444), - [anon_sym_new] = ACTIONS(3444), - [anon_sym_requires] = ACTIONS(3444), - [sym_this] = ACTIONS(3444), - }, - [1455] = { - [ts_builtin_sym_end] = ACTIONS(3460), - [sym_identifier] = ACTIONS(3458), - [aux_sym_preproc_include_token1] = ACTIONS(3458), - [aux_sym_preproc_def_token1] = ACTIONS(3458), - [aux_sym_preproc_if_token1] = ACTIONS(3458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3458), - [sym_preproc_directive] = ACTIONS(3458), - [anon_sym_LPAREN2] = ACTIONS(3460), - [anon_sym_BANG] = ACTIONS(3460), - [anon_sym_TILDE] = ACTIONS(3460), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_STAR] = ACTIONS(3460), - [anon_sym_AMP_AMP] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(3458), - [anon_sym___extension__] = ACTIONS(3458), - [anon_sym_typedef] = ACTIONS(3458), - [anon_sym_extern] = ACTIONS(3458), - [anon_sym___attribute__] = ACTIONS(3458), - [anon_sym_COLON_COLON] = ACTIONS(3460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3460), - [anon_sym___declspec] = ACTIONS(3458), - [anon_sym___based] = ACTIONS(3458), - [anon_sym___cdecl] = ACTIONS(3458), - [anon_sym___clrcall] = ACTIONS(3458), - [anon_sym___stdcall] = ACTIONS(3458), - [anon_sym___fastcall] = ACTIONS(3458), - [anon_sym___thiscall] = ACTIONS(3458), - [anon_sym___vectorcall] = ACTIONS(3458), - [anon_sym_LBRACE] = ACTIONS(3460), - [anon_sym_signed] = ACTIONS(3458), - [anon_sym_unsigned] = ACTIONS(3458), - [anon_sym_long] = ACTIONS(3458), - [anon_sym_short] = ACTIONS(3458), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_static] = ACTIONS(3458), - [anon_sym_register] = ACTIONS(3458), - [anon_sym_inline] = ACTIONS(3458), - [anon_sym___inline] = ACTIONS(3458), - [anon_sym___inline__] = ACTIONS(3458), - [anon_sym___forceinline] = ACTIONS(3458), - [anon_sym_thread_local] = ACTIONS(3458), - [anon_sym___thread] = ACTIONS(3458), - [anon_sym_const] = ACTIONS(3458), - [anon_sym_constexpr] = ACTIONS(3458), - [anon_sym_volatile] = ACTIONS(3458), - [anon_sym_restrict] = ACTIONS(3458), - [anon_sym___restrict__] = ACTIONS(3458), - [anon_sym__Atomic] = ACTIONS(3458), - [anon_sym__Noreturn] = ACTIONS(3458), - [anon_sym_noreturn] = ACTIONS(3458), - [anon_sym_mutable] = ACTIONS(3458), - [anon_sym_constinit] = ACTIONS(3458), - [anon_sym_consteval] = ACTIONS(3458), - [sym_primitive_type] = ACTIONS(3458), - [anon_sym_enum] = ACTIONS(3458), - [anon_sym_class] = ACTIONS(3458), - [anon_sym_struct] = ACTIONS(3458), - [anon_sym_union] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_switch] = ACTIONS(3458), - [anon_sym_case] = ACTIONS(3458), - [anon_sym_default] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_break] = ACTIONS(3458), - [anon_sym_continue] = ACTIONS(3458), - [anon_sym_goto] = ACTIONS(3458), - [anon_sym_not] = ACTIONS(3458), - [anon_sym_compl] = ACTIONS(3458), - [anon_sym_DASH_DASH] = ACTIONS(3460), - [anon_sym_PLUS_PLUS] = ACTIONS(3460), - [anon_sym_sizeof] = ACTIONS(3458), - [anon_sym___alignof__] = ACTIONS(3458), - [anon_sym___alignof] = ACTIONS(3458), - [anon_sym__alignof] = ACTIONS(3458), - [anon_sym_alignof] = ACTIONS(3458), - [anon_sym__Alignof] = ACTIONS(3458), - [anon_sym_offsetof] = ACTIONS(3458), - [anon_sym__Generic] = ACTIONS(3458), - [anon_sym_asm] = ACTIONS(3458), - [anon_sym___asm__] = ACTIONS(3458), - [sym_number_literal] = ACTIONS(3460), - [anon_sym_L_SQUOTE] = ACTIONS(3460), - [anon_sym_u_SQUOTE] = ACTIONS(3460), - [anon_sym_U_SQUOTE] = ACTIONS(3460), - [anon_sym_u8_SQUOTE] = ACTIONS(3460), - [anon_sym_SQUOTE] = ACTIONS(3460), - [anon_sym_L_DQUOTE] = ACTIONS(3460), - [anon_sym_u_DQUOTE] = ACTIONS(3460), - [anon_sym_U_DQUOTE] = ACTIONS(3460), - [anon_sym_u8_DQUOTE] = ACTIONS(3460), - [anon_sym_DQUOTE] = ACTIONS(3460), - [sym_true] = ACTIONS(3458), - [sym_false] = ACTIONS(3458), - [anon_sym_NULL] = ACTIONS(3458), - [anon_sym_nullptr] = ACTIONS(3458), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3458), - [anon_sym_decltype] = ACTIONS(3458), - [anon_sym_virtual] = ACTIONS(3458), - [anon_sym_alignas] = ACTIONS(3458), - [anon_sym_explicit] = ACTIONS(3458), - [anon_sym_typename] = ACTIONS(3458), - [anon_sym_template] = ACTIONS(3458), - [anon_sym_operator] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_delete] = ACTIONS(3458), - [anon_sym_throw] = ACTIONS(3458), - [anon_sym_namespace] = ACTIONS(3458), - [anon_sym_using] = ACTIONS(3458), - [anon_sym_static_assert] = ACTIONS(3458), - [anon_sym_concept] = ACTIONS(3458), - [anon_sym_co_return] = ACTIONS(3458), - [anon_sym_co_yield] = ACTIONS(3458), - [anon_sym_R_DQUOTE] = ACTIONS(3460), - [anon_sym_LR_DQUOTE] = ACTIONS(3460), - [anon_sym_uR_DQUOTE] = ACTIONS(3460), - [anon_sym_UR_DQUOTE] = ACTIONS(3460), - [anon_sym_u8R_DQUOTE] = ACTIONS(3460), - [anon_sym_co_await] = ACTIONS(3458), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_requires] = ACTIONS(3458), - [sym_this] = ACTIONS(3458), - }, - [1456] = { - [ts_builtin_sym_end] = ACTIONS(3300), - [sym_identifier] = ACTIONS(3298), - [aux_sym_preproc_include_token1] = ACTIONS(3298), - [aux_sym_preproc_def_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token1] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3298), - [sym_preproc_directive] = ACTIONS(3298), - [anon_sym_LPAREN2] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_STAR] = ACTIONS(3300), - [anon_sym_AMP_AMP] = ACTIONS(3300), - [anon_sym_AMP] = ACTIONS(3298), - [anon_sym___extension__] = ACTIONS(3298), - [anon_sym_typedef] = ACTIONS(3298), - [anon_sym_extern] = ACTIONS(3298), - [anon_sym___attribute__] = ACTIONS(3298), - [anon_sym_COLON_COLON] = ACTIONS(3300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3300), - [anon_sym___declspec] = ACTIONS(3298), - [anon_sym___based] = ACTIONS(3298), - [anon_sym___cdecl] = ACTIONS(3298), - [anon_sym___clrcall] = ACTIONS(3298), - [anon_sym___stdcall] = ACTIONS(3298), - [anon_sym___fastcall] = ACTIONS(3298), - [anon_sym___thiscall] = ACTIONS(3298), - [anon_sym___vectorcall] = ACTIONS(3298), - [anon_sym_LBRACE] = ACTIONS(3300), - [anon_sym_signed] = ACTIONS(3298), - [anon_sym_unsigned] = ACTIONS(3298), - [anon_sym_long] = ACTIONS(3298), - [anon_sym_short] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3298), - [anon_sym_register] = ACTIONS(3298), - [anon_sym_inline] = ACTIONS(3298), - [anon_sym___inline] = ACTIONS(3298), - [anon_sym___inline__] = ACTIONS(3298), - [anon_sym___forceinline] = ACTIONS(3298), - [anon_sym_thread_local] = ACTIONS(3298), - [anon_sym___thread] = ACTIONS(3298), - [anon_sym_const] = ACTIONS(3298), - [anon_sym_constexpr] = ACTIONS(3298), - [anon_sym_volatile] = ACTIONS(3298), - [anon_sym_restrict] = ACTIONS(3298), - [anon_sym___restrict__] = ACTIONS(3298), - [anon_sym__Atomic] = ACTIONS(3298), - [anon_sym__Noreturn] = ACTIONS(3298), - [anon_sym_noreturn] = ACTIONS(3298), - [anon_sym_mutable] = ACTIONS(3298), - [anon_sym_constinit] = ACTIONS(3298), - [anon_sym_consteval] = ACTIONS(3298), - [sym_primitive_type] = ACTIONS(3298), - [anon_sym_enum] = ACTIONS(3298), - [anon_sym_class] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3298), - [anon_sym_union] = ACTIONS(3298), - [anon_sym_if] = ACTIONS(3298), - [anon_sym_switch] = ACTIONS(3298), - [anon_sym_case] = ACTIONS(3298), - [anon_sym_default] = ACTIONS(3298), - [anon_sym_while] = ACTIONS(3298), - [anon_sym_do] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3298), - [anon_sym_return] = ACTIONS(3298), - [anon_sym_break] = ACTIONS(3298), - [anon_sym_continue] = ACTIONS(3298), - [anon_sym_goto] = ACTIONS(3298), - [anon_sym_not] = ACTIONS(3298), - [anon_sym_compl] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3300), - [anon_sym_sizeof] = ACTIONS(3298), - [anon_sym___alignof__] = ACTIONS(3298), - [anon_sym___alignof] = ACTIONS(3298), - [anon_sym__alignof] = ACTIONS(3298), - [anon_sym_alignof] = ACTIONS(3298), - [anon_sym__Alignof] = ACTIONS(3298), - [anon_sym_offsetof] = ACTIONS(3298), - [anon_sym__Generic] = ACTIONS(3298), - [anon_sym_asm] = ACTIONS(3298), - [anon_sym___asm__] = ACTIONS(3298), - [sym_number_literal] = ACTIONS(3300), - [anon_sym_L_SQUOTE] = ACTIONS(3300), - [anon_sym_u_SQUOTE] = ACTIONS(3300), - [anon_sym_U_SQUOTE] = ACTIONS(3300), - [anon_sym_u8_SQUOTE] = ACTIONS(3300), - [anon_sym_SQUOTE] = ACTIONS(3300), - [anon_sym_L_DQUOTE] = ACTIONS(3300), - [anon_sym_u_DQUOTE] = ACTIONS(3300), - [anon_sym_U_DQUOTE] = ACTIONS(3300), - [anon_sym_u8_DQUOTE] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(3300), - [sym_true] = ACTIONS(3298), - [sym_false] = ACTIONS(3298), - [anon_sym_NULL] = ACTIONS(3298), - [anon_sym_nullptr] = ACTIONS(3298), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3298), - [anon_sym_decltype] = ACTIONS(3298), - [anon_sym_virtual] = ACTIONS(3298), - [anon_sym_alignas] = ACTIONS(3298), - [anon_sym_explicit] = ACTIONS(3298), - [anon_sym_typename] = ACTIONS(3298), - [anon_sym_template] = ACTIONS(3298), - [anon_sym_operator] = ACTIONS(3298), - [anon_sym_try] = ACTIONS(3298), - [anon_sym_delete] = ACTIONS(3298), - [anon_sym_throw] = ACTIONS(3298), - [anon_sym_namespace] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3298), - [anon_sym_static_assert] = ACTIONS(3298), - [anon_sym_concept] = ACTIONS(3298), - [anon_sym_co_return] = ACTIONS(3298), - [anon_sym_co_yield] = ACTIONS(3298), - [anon_sym_R_DQUOTE] = ACTIONS(3300), - [anon_sym_LR_DQUOTE] = ACTIONS(3300), - [anon_sym_uR_DQUOTE] = ACTIONS(3300), - [anon_sym_UR_DQUOTE] = ACTIONS(3300), - [anon_sym_u8R_DQUOTE] = ACTIONS(3300), - [anon_sym_co_await] = ACTIONS(3298), - [anon_sym_new] = ACTIONS(3298), - [anon_sym_requires] = ACTIONS(3298), - [sym_this] = ACTIONS(3298), - }, - [1457] = { - [ts_builtin_sym_end] = ACTIONS(3272), - [sym_identifier] = ACTIONS(3270), - [aux_sym_preproc_include_token1] = ACTIONS(3270), - [aux_sym_preproc_def_token1] = ACTIONS(3270), - [aux_sym_preproc_if_token1] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3270), - [sym_preproc_directive] = ACTIONS(3270), - [anon_sym_LPAREN2] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_AMP] = ACTIONS(3270), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym_typedef] = ACTIONS(3270), - [anon_sym_extern] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3272), - [anon_sym___declspec] = ACTIONS(3270), - [anon_sym___based] = ACTIONS(3270), - [anon_sym___cdecl] = ACTIONS(3270), - [anon_sym___clrcall] = ACTIONS(3270), - [anon_sym___stdcall] = ACTIONS(3270), - [anon_sym___fastcall] = ACTIONS(3270), - [anon_sym___thiscall] = ACTIONS(3270), - [anon_sym___vectorcall] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_signed] = ACTIONS(3270), - [anon_sym_unsigned] = ACTIONS(3270), - [anon_sym_long] = ACTIONS(3270), - [anon_sym_short] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_register] = ACTIONS(3270), - [anon_sym_inline] = ACTIONS(3270), - [anon_sym___inline] = ACTIONS(3270), - [anon_sym___inline__] = ACTIONS(3270), - [anon_sym___forceinline] = ACTIONS(3270), - [anon_sym_thread_local] = ACTIONS(3270), - [anon_sym___thread] = ACTIONS(3270), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [sym_primitive_type] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3270), - [anon_sym_struct] = ACTIONS(3270), - [anon_sym_union] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_switch] = ACTIONS(3270), - [anon_sym_case] = ACTIONS(3270), - [anon_sym_default] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_do] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_goto] = ACTIONS(3270), - [anon_sym_not] = ACTIONS(3270), - [anon_sym_compl] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_sizeof] = ACTIONS(3270), - [anon_sym___alignof__] = ACTIONS(3270), - [anon_sym___alignof] = ACTIONS(3270), - [anon_sym__alignof] = ACTIONS(3270), - [anon_sym_alignof] = ACTIONS(3270), - [anon_sym__Alignof] = ACTIONS(3270), - [anon_sym_offsetof] = ACTIONS(3270), - [anon_sym__Generic] = ACTIONS(3270), - [anon_sym_asm] = ACTIONS(3270), - [anon_sym___asm__] = ACTIONS(3270), - [sym_number_literal] = ACTIONS(3272), - [anon_sym_L_SQUOTE] = ACTIONS(3272), - [anon_sym_u_SQUOTE] = ACTIONS(3272), - [anon_sym_U_SQUOTE] = ACTIONS(3272), - [anon_sym_u8_SQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_L_DQUOTE] = ACTIONS(3272), - [anon_sym_u_DQUOTE] = ACTIONS(3272), - [anon_sym_U_DQUOTE] = ACTIONS(3272), - [anon_sym_u8_DQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [anon_sym_NULL] = ACTIONS(3270), - [anon_sym_nullptr] = ACTIONS(3270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3270), - [anon_sym_decltype] = ACTIONS(3270), - [anon_sym_virtual] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3270), - [anon_sym_explicit] = ACTIONS(3270), - [anon_sym_typename] = ACTIONS(3270), - [anon_sym_template] = ACTIONS(3270), - [anon_sym_operator] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_delete] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_namespace] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3270), - [anon_sym_static_assert] = ACTIONS(3270), - [anon_sym_concept] = ACTIONS(3270), - [anon_sym_co_return] = ACTIONS(3270), - [anon_sym_co_yield] = ACTIONS(3270), - [anon_sym_R_DQUOTE] = ACTIONS(3272), - [anon_sym_LR_DQUOTE] = ACTIONS(3272), - [anon_sym_uR_DQUOTE] = ACTIONS(3272), - [anon_sym_UR_DQUOTE] = ACTIONS(3272), - [anon_sym_u8R_DQUOTE] = ACTIONS(3272), - [anon_sym_co_await] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3270), - [anon_sym_requires] = ACTIONS(3270), - [sym_this] = ACTIONS(3270), - }, - [1458] = { - [ts_builtin_sym_end] = ACTIONS(3434), - [sym_identifier] = ACTIONS(3432), - [aux_sym_preproc_include_token1] = ACTIONS(3432), - [aux_sym_preproc_def_token1] = ACTIONS(3432), - [aux_sym_preproc_if_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [sym_preproc_directive] = ACTIONS(3432), - [anon_sym_LPAREN2] = ACTIONS(3434), - [anon_sym_BANG] = ACTIONS(3434), - [anon_sym_TILDE] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(3434), - [anon_sym_AMP_AMP] = ACTIONS(3434), - [anon_sym_AMP] = ACTIONS(3432), - [anon_sym___extension__] = ACTIONS(3432), - [anon_sym_typedef] = ACTIONS(3432), - [anon_sym_extern] = ACTIONS(3432), - [anon_sym___attribute__] = ACTIONS(3432), - [anon_sym_COLON_COLON] = ACTIONS(3434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3434), - [anon_sym___declspec] = ACTIONS(3432), - [anon_sym___based] = ACTIONS(3432), - [anon_sym___cdecl] = ACTIONS(3432), - [anon_sym___clrcall] = ACTIONS(3432), - [anon_sym___stdcall] = ACTIONS(3432), - [anon_sym___fastcall] = ACTIONS(3432), - [anon_sym___thiscall] = ACTIONS(3432), - [anon_sym___vectorcall] = ACTIONS(3432), - [anon_sym_LBRACE] = ACTIONS(3434), - [anon_sym_signed] = ACTIONS(3432), - [anon_sym_unsigned] = ACTIONS(3432), - [anon_sym_long] = ACTIONS(3432), - [anon_sym_short] = ACTIONS(3432), - [anon_sym_LBRACK] = ACTIONS(3432), - [anon_sym_static] = ACTIONS(3432), - [anon_sym_register] = ACTIONS(3432), - [anon_sym_inline] = ACTIONS(3432), - [anon_sym___inline] = ACTIONS(3432), - [anon_sym___inline__] = ACTIONS(3432), - [anon_sym___forceinline] = ACTIONS(3432), - [anon_sym_thread_local] = ACTIONS(3432), - [anon_sym___thread] = ACTIONS(3432), - [anon_sym_const] = ACTIONS(3432), - [anon_sym_constexpr] = ACTIONS(3432), - [anon_sym_volatile] = ACTIONS(3432), - [anon_sym_restrict] = ACTIONS(3432), - [anon_sym___restrict__] = ACTIONS(3432), - [anon_sym__Atomic] = ACTIONS(3432), - [anon_sym__Noreturn] = ACTIONS(3432), - [anon_sym_noreturn] = ACTIONS(3432), - [anon_sym_mutable] = ACTIONS(3432), - [anon_sym_constinit] = ACTIONS(3432), - [anon_sym_consteval] = ACTIONS(3432), - [sym_primitive_type] = ACTIONS(3432), - [anon_sym_enum] = ACTIONS(3432), - [anon_sym_class] = ACTIONS(3432), - [anon_sym_struct] = ACTIONS(3432), - [anon_sym_union] = ACTIONS(3432), - [anon_sym_if] = ACTIONS(3432), - [anon_sym_switch] = ACTIONS(3432), - [anon_sym_case] = ACTIONS(3432), - [anon_sym_default] = ACTIONS(3432), - [anon_sym_while] = ACTIONS(3432), - [anon_sym_do] = ACTIONS(3432), - [anon_sym_for] = ACTIONS(3432), - [anon_sym_return] = ACTIONS(3432), - [anon_sym_break] = ACTIONS(3432), - [anon_sym_continue] = ACTIONS(3432), - [anon_sym_goto] = ACTIONS(3432), - [anon_sym_not] = ACTIONS(3432), - [anon_sym_compl] = ACTIONS(3432), - [anon_sym_DASH_DASH] = ACTIONS(3434), - [anon_sym_PLUS_PLUS] = ACTIONS(3434), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym___alignof__] = ACTIONS(3432), - [anon_sym___alignof] = ACTIONS(3432), - [anon_sym__alignof] = ACTIONS(3432), - [anon_sym_alignof] = ACTIONS(3432), - [anon_sym__Alignof] = ACTIONS(3432), - [anon_sym_offsetof] = ACTIONS(3432), - [anon_sym__Generic] = ACTIONS(3432), - [anon_sym_asm] = ACTIONS(3432), - [anon_sym___asm__] = ACTIONS(3432), - [sym_number_literal] = ACTIONS(3434), - [anon_sym_L_SQUOTE] = ACTIONS(3434), - [anon_sym_u_SQUOTE] = ACTIONS(3434), - [anon_sym_U_SQUOTE] = ACTIONS(3434), - [anon_sym_u8_SQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3434), - [anon_sym_L_DQUOTE] = ACTIONS(3434), - [anon_sym_u_DQUOTE] = ACTIONS(3434), - [anon_sym_U_DQUOTE] = ACTIONS(3434), - [anon_sym_u8_DQUOTE] = ACTIONS(3434), - [anon_sym_DQUOTE] = ACTIONS(3434), - [sym_true] = ACTIONS(3432), - [sym_false] = ACTIONS(3432), - [anon_sym_NULL] = ACTIONS(3432), - [anon_sym_nullptr] = ACTIONS(3432), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3432), - [anon_sym_decltype] = ACTIONS(3432), - [anon_sym_virtual] = ACTIONS(3432), - [anon_sym_alignas] = ACTIONS(3432), - [anon_sym_explicit] = ACTIONS(3432), - [anon_sym_typename] = ACTIONS(3432), - [anon_sym_template] = ACTIONS(3432), - [anon_sym_operator] = ACTIONS(3432), - [anon_sym_try] = ACTIONS(3432), - [anon_sym_delete] = ACTIONS(3432), - [anon_sym_throw] = ACTIONS(3432), - [anon_sym_namespace] = ACTIONS(3432), - [anon_sym_using] = ACTIONS(3432), - [anon_sym_static_assert] = ACTIONS(3432), - [anon_sym_concept] = ACTIONS(3432), - [anon_sym_co_return] = ACTIONS(3432), - [anon_sym_co_yield] = ACTIONS(3432), - [anon_sym_R_DQUOTE] = ACTIONS(3434), - [anon_sym_LR_DQUOTE] = ACTIONS(3434), - [anon_sym_uR_DQUOTE] = ACTIONS(3434), - [anon_sym_UR_DQUOTE] = ACTIONS(3434), - [anon_sym_u8R_DQUOTE] = ACTIONS(3434), - [anon_sym_co_await] = ACTIONS(3432), - [anon_sym_new] = ACTIONS(3432), - [anon_sym_requires] = ACTIONS(3432), - [sym_this] = ACTIONS(3432), - }, - [1459] = { - [ts_builtin_sym_end] = ACTIONS(3276), - [sym_identifier] = ACTIONS(3274), - [aux_sym_preproc_include_token1] = ACTIONS(3274), - [aux_sym_preproc_def_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token1] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), - [sym_preproc_directive] = ACTIONS(3274), - [anon_sym_LPAREN2] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_AMP] = ACTIONS(3274), - [anon_sym___extension__] = ACTIONS(3274), - [anon_sym_typedef] = ACTIONS(3274), - [anon_sym_extern] = ACTIONS(3274), - [anon_sym___attribute__] = ACTIONS(3274), - [anon_sym_COLON_COLON] = ACTIONS(3276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), - [anon_sym___declspec] = ACTIONS(3274), - [anon_sym___based] = ACTIONS(3274), - [anon_sym___cdecl] = ACTIONS(3274), - [anon_sym___clrcall] = ACTIONS(3274), - [anon_sym___stdcall] = ACTIONS(3274), - [anon_sym___fastcall] = ACTIONS(3274), - [anon_sym___thiscall] = ACTIONS(3274), - [anon_sym___vectorcall] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_signed] = ACTIONS(3274), - [anon_sym_unsigned] = ACTIONS(3274), - [anon_sym_long] = ACTIONS(3274), - [anon_sym_short] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_register] = ACTIONS(3274), - [anon_sym_inline] = ACTIONS(3274), - [anon_sym___inline] = ACTIONS(3274), - [anon_sym___inline__] = ACTIONS(3274), - [anon_sym___forceinline] = ACTIONS(3274), - [anon_sym_thread_local] = ACTIONS(3274), - [anon_sym___thread] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_constexpr] = ACTIONS(3274), - [anon_sym_volatile] = ACTIONS(3274), - [anon_sym_restrict] = ACTIONS(3274), - [anon_sym___restrict__] = ACTIONS(3274), - [anon_sym__Atomic] = ACTIONS(3274), - [anon_sym__Noreturn] = ACTIONS(3274), - [anon_sym_noreturn] = ACTIONS(3274), - [anon_sym_mutable] = ACTIONS(3274), - [anon_sym_constinit] = ACTIONS(3274), - [anon_sym_consteval] = ACTIONS(3274), - [sym_primitive_type] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_union] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_case] = ACTIONS(3274), - [anon_sym_default] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_goto] = ACTIONS(3274), - [anon_sym_not] = ACTIONS(3274), - [anon_sym_compl] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_sizeof] = ACTIONS(3274), - [anon_sym___alignof__] = ACTIONS(3274), - [anon_sym___alignof] = ACTIONS(3274), - [anon_sym__alignof] = ACTIONS(3274), - [anon_sym_alignof] = ACTIONS(3274), - [anon_sym__Alignof] = ACTIONS(3274), - [anon_sym_offsetof] = ACTIONS(3274), - [anon_sym__Generic] = ACTIONS(3274), - [anon_sym_asm] = ACTIONS(3274), - [anon_sym___asm__] = ACTIONS(3274), - [sym_number_literal] = ACTIONS(3276), - [anon_sym_L_SQUOTE] = ACTIONS(3276), - [anon_sym_u_SQUOTE] = ACTIONS(3276), - [anon_sym_U_SQUOTE] = ACTIONS(3276), - [anon_sym_u8_SQUOTE] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3276), - [anon_sym_L_DQUOTE] = ACTIONS(3276), - [anon_sym_u_DQUOTE] = ACTIONS(3276), - [anon_sym_U_DQUOTE] = ACTIONS(3276), - [anon_sym_u8_DQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [anon_sym_NULL] = ACTIONS(3274), - [anon_sym_nullptr] = ACTIONS(3274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3274), - [anon_sym_decltype] = ACTIONS(3274), - [anon_sym_virtual] = ACTIONS(3274), - [anon_sym_alignas] = ACTIONS(3274), - [anon_sym_explicit] = ACTIONS(3274), - [anon_sym_typename] = ACTIONS(3274), - [anon_sym_template] = ACTIONS(3274), - [anon_sym_operator] = ACTIONS(3274), - [anon_sym_try] = ACTIONS(3274), - [anon_sym_delete] = ACTIONS(3274), - [anon_sym_throw] = ACTIONS(3274), - [anon_sym_namespace] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_static_assert] = ACTIONS(3274), - [anon_sym_concept] = ACTIONS(3274), - [anon_sym_co_return] = ACTIONS(3274), - [anon_sym_co_yield] = ACTIONS(3274), - [anon_sym_R_DQUOTE] = ACTIONS(3276), - [anon_sym_LR_DQUOTE] = ACTIONS(3276), - [anon_sym_uR_DQUOTE] = ACTIONS(3276), - [anon_sym_UR_DQUOTE] = ACTIONS(3276), - [anon_sym_u8R_DQUOTE] = ACTIONS(3276), - [anon_sym_co_await] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3274), - [anon_sym_requires] = ACTIONS(3274), - [sym_this] = ACTIONS(3274), - }, - [1460] = { - [ts_builtin_sym_end] = ACTIONS(3420), - [sym_identifier] = ACTIONS(3418), - [aux_sym_preproc_include_token1] = ACTIONS(3418), - [aux_sym_preproc_def_token1] = ACTIONS(3418), - [aux_sym_preproc_if_token1] = ACTIONS(3418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3418), - [sym_preproc_directive] = ACTIONS(3418), - [anon_sym_LPAREN2] = ACTIONS(3420), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_TILDE] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3418), - [anon_sym_PLUS] = ACTIONS(3418), - [anon_sym_STAR] = ACTIONS(3420), - [anon_sym_AMP_AMP] = ACTIONS(3420), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym___extension__] = ACTIONS(3418), - [anon_sym_typedef] = ACTIONS(3418), - [anon_sym_extern] = ACTIONS(3418), - [anon_sym___attribute__] = ACTIONS(3418), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3420), - [anon_sym___declspec] = ACTIONS(3418), - [anon_sym___based] = ACTIONS(3418), - [anon_sym___cdecl] = ACTIONS(3418), - [anon_sym___clrcall] = ACTIONS(3418), - [anon_sym___stdcall] = ACTIONS(3418), - [anon_sym___fastcall] = ACTIONS(3418), - [anon_sym___thiscall] = ACTIONS(3418), - [anon_sym___vectorcall] = ACTIONS(3418), - [anon_sym_LBRACE] = ACTIONS(3420), - [anon_sym_signed] = ACTIONS(3418), - [anon_sym_unsigned] = ACTIONS(3418), - [anon_sym_long] = ACTIONS(3418), - [anon_sym_short] = ACTIONS(3418), - [anon_sym_LBRACK] = ACTIONS(3418), - [anon_sym_static] = ACTIONS(3418), - [anon_sym_register] = ACTIONS(3418), - [anon_sym_inline] = ACTIONS(3418), - [anon_sym___inline] = ACTIONS(3418), - [anon_sym___inline__] = ACTIONS(3418), - [anon_sym___forceinline] = ACTIONS(3418), - [anon_sym_thread_local] = ACTIONS(3418), - [anon_sym___thread] = ACTIONS(3418), - [anon_sym_const] = ACTIONS(3418), - [anon_sym_constexpr] = ACTIONS(3418), - [anon_sym_volatile] = ACTIONS(3418), - [anon_sym_restrict] = ACTIONS(3418), - [anon_sym___restrict__] = ACTIONS(3418), - [anon_sym__Atomic] = ACTIONS(3418), - [anon_sym__Noreturn] = ACTIONS(3418), - [anon_sym_noreturn] = ACTIONS(3418), - [anon_sym_mutable] = ACTIONS(3418), - [anon_sym_constinit] = ACTIONS(3418), - [anon_sym_consteval] = ACTIONS(3418), - [sym_primitive_type] = ACTIONS(3418), - [anon_sym_enum] = ACTIONS(3418), - [anon_sym_class] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(3418), - [anon_sym_union] = ACTIONS(3418), - [anon_sym_if] = ACTIONS(3418), - [anon_sym_switch] = ACTIONS(3418), - [anon_sym_case] = ACTIONS(3418), - [anon_sym_default] = ACTIONS(3418), - [anon_sym_while] = ACTIONS(3418), - [anon_sym_do] = ACTIONS(3418), - [anon_sym_for] = ACTIONS(3418), - [anon_sym_return] = ACTIONS(3418), - [anon_sym_break] = ACTIONS(3418), - [anon_sym_continue] = ACTIONS(3418), - [anon_sym_goto] = ACTIONS(3418), - [anon_sym_not] = ACTIONS(3418), - [anon_sym_compl] = ACTIONS(3418), - [anon_sym_DASH_DASH] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3420), - [anon_sym_sizeof] = ACTIONS(3418), - [anon_sym___alignof__] = ACTIONS(3418), - [anon_sym___alignof] = ACTIONS(3418), - [anon_sym__alignof] = ACTIONS(3418), - [anon_sym_alignof] = ACTIONS(3418), - [anon_sym__Alignof] = ACTIONS(3418), - [anon_sym_offsetof] = ACTIONS(3418), - [anon_sym__Generic] = ACTIONS(3418), - [anon_sym_asm] = ACTIONS(3418), - [anon_sym___asm__] = ACTIONS(3418), - [sym_number_literal] = ACTIONS(3420), - [anon_sym_L_SQUOTE] = ACTIONS(3420), - [anon_sym_u_SQUOTE] = ACTIONS(3420), - [anon_sym_U_SQUOTE] = ACTIONS(3420), - [anon_sym_u8_SQUOTE] = ACTIONS(3420), - [anon_sym_SQUOTE] = ACTIONS(3420), - [anon_sym_L_DQUOTE] = ACTIONS(3420), - [anon_sym_u_DQUOTE] = ACTIONS(3420), - [anon_sym_U_DQUOTE] = ACTIONS(3420), - [anon_sym_u8_DQUOTE] = ACTIONS(3420), - [anon_sym_DQUOTE] = ACTIONS(3420), - [sym_true] = ACTIONS(3418), - [sym_false] = ACTIONS(3418), - [anon_sym_NULL] = ACTIONS(3418), - [anon_sym_nullptr] = ACTIONS(3418), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3418), - [anon_sym_decltype] = ACTIONS(3418), - [anon_sym_virtual] = ACTIONS(3418), - [anon_sym_alignas] = ACTIONS(3418), - [anon_sym_explicit] = ACTIONS(3418), - [anon_sym_typename] = ACTIONS(3418), - [anon_sym_template] = ACTIONS(3418), - [anon_sym_operator] = ACTIONS(3418), - [anon_sym_try] = ACTIONS(3418), - [anon_sym_delete] = ACTIONS(3418), - [anon_sym_throw] = ACTIONS(3418), - [anon_sym_namespace] = ACTIONS(3418), - [anon_sym_using] = ACTIONS(3418), - [anon_sym_static_assert] = ACTIONS(3418), - [anon_sym_concept] = ACTIONS(3418), - [anon_sym_co_return] = ACTIONS(3418), - [anon_sym_co_yield] = ACTIONS(3418), - [anon_sym_R_DQUOTE] = ACTIONS(3420), - [anon_sym_LR_DQUOTE] = ACTIONS(3420), - [anon_sym_uR_DQUOTE] = ACTIONS(3420), - [anon_sym_UR_DQUOTE] = ACTIONS(3420), - [anon_sym_u8R_DQUOTE] = ACTIONS(3420), - [anon_sym_co_await] = ACTIONS(3418), - [anon_sym_new] = ACTIONS(3418), - [anon_sym_requires] = ACTIONS(3418), - [sym_this] = ACTIONS(3418), - }, - [1461] = { - [ts_builtin_sym_end] = ACTIONS(3280), - [sym_identifier] = ACTIONS(3278), - [aux_sym_preproc_include_token1] = ACTIONS(3278), - [aux_sym_preproc_def_token1] = ACTIONS(3278), - [aux_sym_preproc_if_token1] = ACTIONS(3278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3278), - [sym_preproc_directive] = ACTIONS(3278), - [anon_sym_LPAREN2] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_AMP] = ACTIONS(3278), - [anon_sym___extension__] = ACTIONS(3278), - [anon_sym_typedef] = ACTIONS(3278), - [anon_sym_extern] = ACTIONS(3278), - [anon_sym___attribute__] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3280), - [anon_sym___declspec] = ACTIONS(3278), - [anon_sym___based] = ACTIONS(3278), - [anon_sym___cdecl] = ACTIONS(3278), - [anon_sym___clrcall] = ACTIONS(3278), - [anon_sym___stdcall] = ACTIONS(3278), - [anon_sym___fastcall] = ACTIONS(3278), - [anon_sym___thiscall] = ACTIONS(3278), - [anon_sym___vectorcall] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_signed] = ACTIONS(3278), - [anon_sym_unsigned] = ACTIONS(3278), - [anon_sym_long] = ACTIONS(3278), - [anon_sym_short] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3278), - [anon_sym_static] = ACTIONS(3278), - [anon_sym_register] = ACTIONS(3278), - [anon_sym_inline] = ACTIONS(3278), - [anon_sym___inline] = ACTIONS(3278), - [anon_sym___inline__] = ACTIONS(3278), - [anon_sym___forceinline] = ACTIONS(3278), - [anon_sym_thread_local] = ACTIONS(3278), - [anon_sym___thread] = ACTIONS(3278), - [anon_sym_const] = ACTIONS(3278), - [anon_sym_constexpr] = ACTIONS(3278), - [anon_sym_volatile] = ACTIONS(3278), - [anon_sym_restrict] = ACTIONS(3278), - [anon_sym___restrict__] = ACTIONS(3278), - [anon_sym__Atomic] = ACTIONS(3278), - [anon_sym__Noreturn] = ACTIONS(3278), - [anon_sym_noreturn] = ACTIONS(3278), - [anon_sym_mutable] = ACTIONS(3278), - [anon_sym_constinit] = ACTIONS(3278), - [anon_sym_consteval] = ACTIONS(3278), - [sym_primitive_type] = ACTIONS(3278), - [anon_sym_enum] = ACTIONS(3278), - [anon_sym_class] = ACTIONS(3278), - [anon_sym_struct] = ACTIONS(3278), - [anon_sym_union] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_switch] = ACTIONS(3278), - [anon_sym_case] = ACTIONS(3278), - [anon_sym_default] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_do] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_goto] = ACTIONS(3278), - [anon_sym_not] = ACTIONS(3278), - [anon_sym_compl] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_sizeof] = ACTIONS(3278), - [anon_sym___alignof__] = ACTIONS(3278), - [anon_sym___alignof] = ACTIONS(3278), - [anon_sym__alignof] = ACTIONS(3278), - [anon_sym_alignof] = ACTIONS(3278), - [anon_sym__Alignof] = ACTIONS(3278), - [anon_sym_offsetof] = ACTIONS(3278), - [anon_sym__Generic] = ACTIONS(3278), - [anon_sym_asm] = ACTIONS(3278), - [anon_sym___asm__] = ACTIONS(3278), - [sym_number_literal] = ACTIONS(3280), - [anon_sym_L_SQUOTE] = ACTIONS(3280), - [anon_sym_u_SQUOTE] = ACTIONS(3280), - [anon_sym_U_SQUOTE] = ACTIONS(3280), - [anon_sym_u8_SQUOTE] = ACTIONS(3280), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_L_DQUOTE] = ACTIONS(3280), - [anon_sym_u_DQUOTE] = ACTIONS(3280), - [anon_sym_U_DQUOTE] = ACTIONS(3280), - [anon_sym_u8_DQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [anon_sym_NULL] = ACTIONS(3278), - [anon_sym_nullptr] = ACTIONS(3278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3278), - [anon_sym_decltype] = ACTIONS(3278), - [anon_sym_virtual] = ACTIONS(3278), - [anon_sym_alignas] = ACTIONS(3278), - [anon_sym_explicit] = ACTIONS(3278), - [anon_sym_typename] = ACTIONS(3278), - [anon_sym_template] = ACTIONS(3278), - [anon_sym_operator] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_delete] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_namespace] = ACTIONS(3278), - [anon_sym_using] = ACTIONS(3278), - [anon_sym_static_assert] = ACTIONS(3278), - [anon_sym_concept] = ACTIONS(3278), - [anon_sym_co_return] = ACTIONS(3278), - [anon_sym_co_yield] = ACTIONS(3278), - [anon_sym_R_DQUOTE] = ACTIONS(3280), - [anon_sym_LR_DQUOTE] = ACTIONS(3280), - [anon_sym_uR_DQUOTE] = ACTIONS(3280), - [anon_sym_UR_DQUOTE] = ACTIONS(3280), - [anon_sym_u8R_DQUOTE] = ACTIONS(3280), - [anon_sym_co_await] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3278), - [anon_sym_requires] = ACTIONS(3278), - [sym_this] = ACTIONS(3278), - }, - [1462] = { - [ts_builtin_sym_end] = ACTIONS(3310), - [sym_identifier] = ACTIONS(3308), - [aux_sym_preproc_include_token1] = ACTIONS(3308), - [aux_sym_preproc_def_token1] = ACTIONS(3308), - [aux_sym_preproc_if_token1] = ACTIONS(3308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3308), - [sym_preproc_directive] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(3310), - [anon_sym_BANG] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3310), - [anon_sym_DASH] = ACTIONS(3308), - [anon_sym_PLUS] = ACTIONS(3308), - [anon_sym_STAR] = ACTIONS(3310), - [anon_sym_AMP_AMP] = ACTIONS(3310), - [anon_sym_AMP] = ACTIONS(3308), - [anon_sym___extension__] = ACTIONS(3308), - [anon_sym_typedef] = ACTIONS(3308), - [anon_sym_extern] = ACTIONS(3308), - [anon_sym___attribute__] = ACTIONS(3308), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3310), - [anon_sym___declspec] = ACTIONS(3308), - [anon_sym___based] = ACTIONS(3308), - [anon_sym___cdecl] = ACTIONS(3308), - [anon_sym___clrcall] = ACTIONS(3308), - [anon_sym___stdcall] = ACTIONS(3308), - [anon_sym___fastcall] = ACTIONS(3308), - [anon_sym___thiscall] = ACTIONS(3308), - [anon_sym___vectorcall] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(3310), - [anon_sym_signed] = ACTIONS(3308), - [anon_sym_unsigned] = ACTIONS(3308), - [anon_sym_long] = ACTIONS(3308), - [anon_sym_short] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3308), - [anon_sym_static] = ACTIONS(3308), - [anon_sym_register] = ACTIONS(3308), - [anon_sym_inline] = ACTIONS(3308), - [anon_sym___inline] = ACTIONS(3308), - [anon_sym___inline__] = ACTIONS(3308), - [anon_sym___forceinline] = ACTIONS(3308), - [anon_sym_thread_local] = ACTIONS(3308), - [anon_sym___thread] = ACTIONS(3308), - [anon_sym_const] = ACTIONS(3308), - [anon_sym_constexpr] = ACTIONS(3308), - [anon_sym_volatile] = ACTIONS(3308), - [anon_sym_restrict] = ACTIONS(3308), - [anon_sym___restrict__] = ACTIONS(3308), - [anon_sym__Atomic] = ACTIONS(3308), - [anon_sym__Noreturn] = ACTIONS(3308), - [anon_sym_noreturn] = ACTIONS(3308), - [anon_sym_mutable] = ACTIONS(3308), - [anon_sym_constinit] = ACTIONS(3308), - [anon_sym_consteval] = ACTIONS(3308), - [sym_primitive_type] = ACTIONS(3308), - [anon_sym_enum] = ACTIONS(3308), - [anon_sym_class] = ACTIONS(3308), - [anon_sym_struct] = ACTIONS(3308), - [anon_sym_union] = ACTIONS(3308), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_switch] = ACTIONS(3308), - [anon_sym_case] = ACTIONS(3308), - [anon_sym_default] = ACTIONS(3308), - [anon_sym_while] = ACTIONS(3308), - [anon_sym_do] = ACTIONS(3308), - [anon_sym_for] = ACTIONS(3308), - [anon_sym_return] = ACTIONS(3308), - [anon_sym_break] = ACTIONS(3308), - [anon_sym_continue] = ACTIONS(3308), - [anon_sym_goto] = ACTIONS(3308), - [anon_sym_not] = ACTIONS(3308), - [anon_sym_compl] = ACTIONS(3308), - [anon_sym_DASH_DASH] = ACTIONS(3310), - [anon_sym_PLUS_PLUS] = ACTIONS(3310), - [anon_sym_sizeof] = ACTIONS(3308), - [anon_sym___alignof__] = ACTIONS(3308), - [anon_sym___alignof] = ACTIONS(3308), - [anon_sym__alignof] = ACTIONS(3308), - [anon_sym_alignof] = ACTIONS(3308), - [anon_sym__Alignof] = ACTIONS(3308), - [anon_sym_offsetof] = ACTIONS(3308), - [anon_sym__Generic] = ACTIONS(3308), - [anon_sym_asm] = ACTIONS(3308), - [anon_sym___asm__] = ACTIONS(3308), - [sym_number_literal] = ACTIONS(3310), - [anon_sym_L_SQUOTE] = ACTIONS(3310), - [anon_sym_u_SQUOTE] = ACTIONS(3310), - [anon_sym_U_SQUOTE] = ACTIONS(3310), - [anon_sym_u8_SQUOTE] = ACTIONS(3310), - [anon_sym_SQUOTE] = ACTIONS(3310), - [anon_sym_L_DQUOTE] = ACTIONS(3310), - [anon_sym_u_DQUOTE] = ACTIONS(3310), - [anon_sym_U_DQUOTE] = ACTIONS(3310), - [anon_sym_u8_DQUOTE] = ACTIONS(3310), - [anon_sym_DQUOTE] = ACTIONS(3310), - [sym_true] = ACTIONS(3308), - [sym_false] = ACTIONS(3308), - [anon_sym_NULL] = ACTIONS(3308), - [anon_sym_nullptr] = ACTIONS(3308), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3308), - [anon_sym_decltype] = ACTIONS(3308), - [anon_sym_virtual] = ACTIONS(3308), - [anon_sym_alignas] = ACTIONS(3308), - [anon_sym_explicit] = ACTIONS(3308), - [anon_sym_typename] = ACTIONS(3308), - [anon_sym_template] = ACTIONS(3308), - [anon_sym_operator] = ACTIONS(3308), - [anon_sym_try] = ACTIONS(3308), - [anon_sym_delete] = ACTIONS(3308), - [anon_sym_throw] = ACTIONS(3308), - [anon_sym_namespace] = ACTIONS(3308), - [anon_sym_using] = ACTIONS(3308), - [anon_sym_static_assert] = ACTIONS(3308), - [anon_sym_concept] = ACTIONS(3308), - [anon_sym_co_return] = ACTIONS(3308), - [anon_sym_co_yield] = ACTIONS(3308), - [anon_sym_R_DQUOTE] = ACTIONS(3310), - [anon_sym_LR_DQUOTE] = ACTIONS(3310), - [anon_sym_uR_DQUOTE] = ACTIONS(3310), - [anon_sym_UR_DQUOTE] = ACTIONS(3310), - [anon_sym_u8R_DQUOTE] = ACTIONS(3310), - [anon_sym_co_await] = ACTIONS(3308), - [anon_sym_new] = ACTIONS(3308), - [anon_sym_requires] = ACTIONS(3308), - [sym_this] = ACTIONS(3308), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1463] = { - [ts_builtin_sym_end] = ACTIONS(3193), - [sym_identifier] = ACTIONS(3191), - [aux_sym_preproc_include_token1] = ACTIONS(3191), - [aux_sym_preproc_def_token1] = ACTIONS(3191), - [aux_sym_preproc_if_token1] = ACTIONS(3191), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3191), - [sym_preproc_directive] = ACTIONS(3191), - [anon_sym_LPAREN2] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3191), - [anon_sym___extension__] = ACTIONS(3191), - [anon_sym_typedef] = ACTIONS(3191), - [anon_sym_extern] = ACTIONS(3191), - [anon_sym___attribute__] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(3193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3193), - [anon_sym___declspec] = ACTIONS(3191), - [anon_sym___based] = ACTIONS(3191), - [anon_sym___cdecl] = ACTIONS(3191), - [anon_sym___clrcall] = ACTIONS(3191), - [anon_sym___stdcall] = ACTIONS(3191), - [anon_sym___fastcall] = ACTIONS(3191), - [anon_sym___thiscall] = ACTIONS(3191), - [anon_sym___vectorcall] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_signed] = ACTIONS(3191), - [anon_sym_unsigned] = ACTIONS(3191), - [anon_sym_long] = ACTIONS(3191), - [anon_sym_short] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_static] = ACTIONS(3191), - [anon_sym_register] = ACTIONS(3191), - [anon_sym_inline] = ACTIONS(3191), - [anon_sym___inline] = ACTIONS(3191), - [anon_sym___inline__] = ACTIONS(3191), - [anon_sym___forceinline] = ACTIONS(3191), - [anon_sym_thread_local] = ACTIONS(3191), - [anon_sym___thread] = ACTIONS(3191), - [anon_sym_const] = ACTIONS(3191), - [anon_sym_constexpr] = ACTIONS(3191), - [anon_sym_volatile] = ACTIONS(3191), - [anon_sym_restrict] = ACTIONS(3191), - [anon_sym___restrict__] = ACTIONS(3191), - [anon_sym__Atomic] = ACTIONS(3191), - [anon_sym__Noreturn] = ACTIONS(3191), - [anon_sym_noreturn] = ACTIONS(3191), - [anon_sym_mutable] = ACTIONS(3191), - [anon_sym_constinit] = ACTIONS(3191), - [anon_sym_consteval] = ACTIONS(3191), - [sym_primitive_type] = ACTIONS(3191), - [anon_sym_enum] = ACTIONS(3191), - [anon_sym_class] = ACTIONS(3191), - [anon_sym_struct] = ACTIONS(3191), - [anon_sym_union] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_switch] = ACTIONS(3191), - [anon_sym_case] = ACTIONS(3191), - [anon_sym_default] = ACTIONS(3191), - [anon_sym_while] = ACTIONS(3191), - [anon_sym_do] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3191), - [anon_sym_return] = ACTIONS(3191), - [anon_sym_break] = ACTIONS(3191), - [anon_sym_continue] = ACTIONS(3191), - [anon_sym_goto] = ACTIONS(3191), - [anon_sym_not] = ACTIONS(3191), - [anon_sym_compl] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_sizeof] = ACTIONS(3191), - [anon_sym___alignof__] = ACTIONS(3191), - [anon_sym___alignof] = ACTIONS(3191), - [anon_sym__alignof] = ACTIONS(3191), - [anon_sym_alignof] = ACTIONS(3191), - [anon_sym__Alignof] = ACTIONS(3191), - [anon_sym_offsetof] = ACTIONS(3191), - [anon_sym__Generic] = ACTIONS(3191), - [anon_sym_asm] = ACTIONS(3191), - [anon_sym___asm__] = ACTIONS(3191), - [sym_number_literal] = ACTIONS(3193), - [anon_sym_L_SQUOTE] = ACTIONS(3193), - [anon_sym_u_SQUOTE] = ACTIONS(3193), - [anon_sym_U_SQUOTE] = ACTIONS(3193), - [anon_sym_u8_SQUOTE] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3193), - [anon_sym_L_DQUOTE] = ACTIONS(3193), - [anon_sym_u_DQUOTE] = ACTIONS(3193), - [anon_sym_U_DQUOTE] = ACTIONS(3193), - [anon_sym_u8_DQUOTE] = ACTIONS(3193), - [anon_sym_DQUOTE] = ACTIONS(3193), - [sym_true] = ACTIONS(3191), - [sym_false] = ACTIONS(3191), - [anon_sym_NULL] = ACTIONS(3191), - [anon_sym_nullptr] = ACTIONS(3191), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3191), - [anon_sym_decltype] = ACTIONS(3191), - [anon_sym_virtual] = ACTIONS(3191), - [anon_sym_alignas] = ACTIONS(3191), - [anon_sym_explicit] = ACTIONS(3191), - [anon_sym_typename] = ACTIONS(3191), - [anon_sym_template] = ACTIONS(3191), - [anon_sym_operator] = ACTIONS(3191), - [anon_sym_try] = ACTIONS(3191), - [anon_sym_delete] = ACTIONS(3191), - [anon_sym_throw] = ACTIONS(3191), - [anon_sym_namespace] = ACTIONS(3191), - [anon_sym_using] = ACTIONS(3191), - [anon_sym_static_assert] = ACTIONS(3191), - [anon_sym_concept] = ACTIONS(3191), - [anon_sym_co_return] = ACTIONS(3191), - [anon_sym_co_yield] = ACTIONS(3191), - [anon_sym_R_DQUOTE] = ACTIONS(3193), - [anon_sym_LR_DQUOTE] = ACTIONS(3193), - [anon_sym_uR_DQUOTE] = ACTIONS(3193), - [anon_sym_UR_DQUOTE] = ACTIONS(3193), - [anon_sym_u8R_DQUOTE] = ACTIONS(3193), - [anon_sym_co_await] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3191), - [anon_sym_requires] = ACTIONS(3191), - [sym_this] = ACTIONS(3191), + [sym__expression] = STATE(4104), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, [1464] = { - [ts_builtin_sym_end] = ACTIONS(3292), - [sym_identifier] = ACTIONS(3290), - [aux_sym_preproc_include_token1] = ACTIONS(3290), - [aux_sym_preproc_def_token1] = ACTIONS(3290), - [aux_sym_preproc_if_token1] = ACTIONS(3290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3290), - [sym_preproc_directive] = ACTIONS(3290), - [anon_sym_LPAREN2] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3290), - [anon_sym_PLUS] = ACTIONS(3290), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_AMP] = ACTIONS(3290), - [anon_sym___extension__] = ACTIONS(3290), - [anon_sym_typedef] = ACTIONS(3290), - [anon_sym_extern] = ACTIONS(3290), - [anon_sym___attribute__] = ACTIONS(3290), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3292), - [anon_sym___declspec] = ACTIONS(3290), - [anon_sym___based] = ACTIONS(3290), - [anon_sym___cdecl] = ACTIONS(3290), - [anon_sym___clrcall] = ACTIONS(3290), - [anon_sym___stdcall] = ACTIONS(3290), - [anon_sym___fastcall] = ACTIONS(3290), - [anon_sym___thiscall] = ACTIONS(3290), - [anon_sym___vectorcall] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_signed] = ACTIONS(3290), - [anon_sym_unsigned] = ACTIONS(3290), - [anon_sym_long] = ACTIONS(3290), - [anon_sym_short] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_static] = ACTIONS(3290), - [anon_sym_register] = ACTIONS(3290), - [anon_sym_inline] = ACTIONS(3290), - [anon_sym___inline] = ACTIONS(3290), - [anon_sym___inline__] = ACTIONS(3290), - [anon_sym___forceinline] = ACTIONS(3290), - [anon_sym_thread_local] = ACTIONS(3290), - [anon_sym___thread] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_constexpr] = ACTIONS(3290), - [anon_sym_volatile] = ACTIONS(3290), - [anon_sym_restrict] = ACTIONS(3290), - [anon_sym___restrict__] = ACTIONS(3290), - [anon_sym__Atomic] = ACTIONS(3290), - [anon_sym__Noreturn] = ACTIONS(3290), - [anon_sym_noreturn] = ACTIONS(3290), - [anon_sym_mutable] = ACTIONS(3290), - [anon_sym_constinit] = ACTIONS(3290), - [anon_sym_consteval] = ACTIONS(3290), - [sym_primitive_type] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), - [anon_sym_class] = ACTIONS(3290), - [anon_sym_struct] = ACTIONS(3290), - [anon_sym_union] = ACTIONS(3290), - [anon_sym_if] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3290), - [anon_sym_case] = ACTIONS(3290), - [anon_sym_default] = ACTIONS(3290), - [anon_sym_while] = ACTIONS(3290), - [anon_sym_do] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3290), - [anon_sym_return] = ACTIONS(3290), - [anon_sym_break] = ACTIONS(3290), - [anon_sym_continue] = ACTIONS(3290), - [anon_sym_goto] = ACTIONS(3290), - [anon_sym_not] = ACTIONS(3290), - [anon_sym_compl] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_sizeof] = ACTIONS(3290), - [anon_sym___alignof__] = ACTIONS(3290), - [anon_sym___alignof] = ACTIONS(3290), - [anon_sym__alignof] = ACTIONS(3290), - [anon_sym_alignof] = ACTIONS(3290), - [anon_sym__Alignof] = ACTIONS(3290), - [anon_sym_offsetof] = ACTIONS(3290), - [anon_sym__Generic] = ACTIONS(3290), - [anon_sym_asm] = ACTIONS(3290), - [anon_sym___asm__] = ACTIONS(3290), - [sym_number_literal] = ACTIONS(3292), - [anon_sym_L_SQUOTE] = ACTIONS(3292), - [anon_sym_u_SQUOTE] = ACTIONS(3292), - [anon_sym_U_SQUOTE] = ACTIONS(3292), - [anon_sym_u8_SQUOTE] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_L_DQUOTE] = ACTIONS(3292), - [anon_sym_u_DQUOTE] = ACTIONS(3292), - [anon_sym_U_DQUOTE] = ACTIONS(3292), - [anon_sym_u8_DQUOTE] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [sym_true] = ACTIONS(3290), - [sym_false] = ACTIONS(3290), - [anon_sym_NULL] = ACTIONS(3290), - [anon_sym_nullptr] = ACTIONS(3290), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3290), - [anon_sym_decltype] = ACTIONS(3290), - [anon_sym_virtual] = ACTIONS(3290), - [anon_sym_alignas] = ACTIONS(3290), - [anon_sym_explicit] = ACTIONS(3290), - [anon_sym_typename] = ACTIONS(3290), - [anon_sym_template] = ACTIONS(3290), - [anon_sym_operator] = ACTIONS(3290), - [anon_sym_try] = ACTIONS(3290), - [anon_sym_delete] = ACTIONS(3290), - [anon_sym_throw] = ACTIONS(3290), - [anon_sym_namespace] = ACTIONS(3290), - [anon_sym_using] = ACTIONS(3290), - [anon_sym_static_assert] = ACTIONS(3290), - [anon_sym_concept] = ACTIONS(3290), - [anon_sym_co_return] = ACTIONS(3290), - [anon_sym_co_yield] = ACTIONS(3290), - [anon_sym_R_DQUOTE] = ACTIONS(3292), - [anon_sym_LR_DQUOTE] = ACTIONS(3292), - [anon_sym_uR_DQUOTE] = ACTIONS(3292), - [anon_sym_UR_DQUOTE] = ACTIONS(3292), - [anon_sym_u8R_DQUOTE] = ACTIONS(3292), - [anon_sym_co_await] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3290), - [anon_sym_requires] = ACTIONS(3290), - [sym_this] = ACTIONS(3290), + [sym__expression] = STATE(3086), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, [1465] = { - [ts_builtin_sym_end] = ACTIONS(3296), - [sym_identifier] = ACTIONS(3294), - [aux_sym_preproc_include_token1] = ACTIONS(3294), - [aux_sym_preproc_def_token1] = ACTIONS(3294), - [aux_sym_preproc_if_token1] = ACTIONS(3294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), - [sym_preproc_directive] = ACTIONS(3294), - [anon_sym_LPAREN2] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3294), - [anon_sym___extension__] = ACTIONS(3294), - [anon_sym_typedef] = ACTIONS(3294), - [anon_sym_extern] = ACTIONS(3294), - [anon_sym___attribute__] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), - [anon_sym___declspec] = ACTIONS(3294), - [anon_sym___based] = ACTIONS(3294), - [anon_sym___cdecl] = ACTIONS(3294), - [anon_sym___clrcall] = ACTIONS(3294), - [anon_sym___stdcall] = ACTIONS(3294), - [anon_sym___fastcall] = ACTIONS(3294), - [anon_sym___thiscall] = ACTIONS(3294), - [anon_sym___vectorcall] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_signed] = ACTIONS(3294), - [anon_sym_unsigned] = ACTIONS(3294), - [anon_sym_long] = ACTIONS(3294), - [anon_sym_short] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_register] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym___inline] = ACTIONS(3294), - [anon_sym___inline__] = ACTIONS(3294), - [anon_sym___forceinline] = ACTIONS(3294), - [anon_sym_thread_local] = ACTIONS(3294), - [anon_sym___thread] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_constexpr] = ACTIONS(3294), - [anon_sym_volatile] = ACTIONS(3294), - [anon_sym_restrict] = ACTIONS(3294), - [anon_sym___restrict__] = ACTIONS(3294), - [anon_sym__Atomic] = ACTIONS(3294), - [anon_sym__Noreturn] = ACTIONS(3294), - [anon_sym_noreturn] = ACTIONS(3294), - [anon_sym_mutable] = ACTIONS(3294), - [anon_sym_constinit] = ACTIONS(3294), - [anon_sym_consteval] = ACTIONS(3294), - [sym_primitive_type] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), - [anon_sym_class] = ACTIONS(3294), - [anon_sym_struct] = ACTIONS(3294), - [anon_sym_union] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_switch] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3294), - [anon_sym_default] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_do] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_goto] = ACTIONS(3294), - [anon_sym_not] = ACTIONS(3294), - [anon_sym_compl] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_sizeof] = ACTIONS(3294), - [anon_sym___alignof__] = ACTIONS(3294), - [anon_sym___alignof] = ACTIONS(3294), - [anon_sym__alignof] = ACTIONS(3294), - [anon_sym_alignof] = ACTIONS(3294), - [anon_sym__Alignof] = ACTIONS(3294), - [anon_sym_offsetof] = ACTIONS(3294), - [anon_sym__Generic] = ACTIONS(3294), - [anon_sym_asm] = ACTIONS(3294), - [anon_sym___asm__] = ACTIONS(3294), - [sym_number_literal] = ACTIONS(3296), - [anon_sym_L_SQUOTE] = ACTIONS(3296), - [anon_sym_u_SQUOTE] = ACTIONS(3296), - [anon_sym_U_SQUOTE] = ACTIONS(3296), - [anon_sym_u8_SQUOTE] = ACTIONS(3296), - [anon_sym_SQUOTE] = ACTIONS(3296), - [anon_sym_L_DQUOTE] = ACTIONS(3296), - [anon_sym_u_DQUOTE] = ACTIONS(3296), - [anon_sym_U_DQUOTE] = ACTIONS(3296), - [anon_sym_u8_DQUOTE] = ACTIONS(3296), - [anon_sym_DQUOTE] = ACTIONS(3296), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [anon_sym_NULL] = ACTIONS(3294), - [anon_sym_nullptr] = ACTIONS(3294), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3294), - [anon_sym_decltype] = ACTIONS(3294), - [anon_sym_virtual] = ACTIONS(3294), - [anon_sym_alignas] = ACTIONS(3294), - [anon_sym_explicit] = ACTIONS(3294), - [anon_sym_typename] = ACTIONS(3294), - [anon_sym_template] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_delete] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_namespace] = ACTIONS(3294), - [anon_sym_using] = ACTIONS(3294), - [anon_sym_static_assert] = ACTIONS(3294), - [anon_sym_concept] = ACTIONS(3294), - [anon_sym_co_return] = ACTIONS(3294), - [anon_sym_co_yield] = ACTIONS(3294), - [anon_sym_R_DQUOTE] = ACTIONS(3296), - [anon_sym_LR_DQUOTE] = ACTIONS(3296), - [anon_sym_uR_DQUOTE] = ACTIONS(3296), - [anon_sym_UR_DQUOTE] = ACTIONS(3296), - [anon_sym_u8R_DQUOTE] = ACTIONS(3296), - [anon_sym_co_await] = ACTIONS(3294), - [anon_sym_new] = ACTIONS(3294), - [anon_sym_requires] = ACTIONS(3294), - [sym_this] = ACTIONS(3294), + [sym__expression] = STATE(3828), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1466] = { - [sym_preproc_def] = STATE(1396), - [sym_preproc_function_def] = STATE(1396), - [sym_preproc_call] = STATE(1396), - [sym_preproc_if_in_field_declaration_list] = STATE(1396), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1396), - [sym_type_definition] = STATE(1396), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6387), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1396), - [sym_field_declaration] = STATE(1396), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1396), - [sym_operator_cast] = STATE(7505), - [sym_inline_method_definition] = STATE(1396), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(1396), - [sym_operator_cast_declaration] = STATE(1396), - [sym_constructor_or_destructor_definition] = STATE(1396), - [sym_constructor_or_destructor_declaration] = STATE(1396), - [sym_friend_declaration] = STATE(1396), - [sym_access_specifier] = STATE(9485), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1396), - [sym_alias_declaration] = STATE(1396), - [sym_static_assert_declaration] = STATE(1396), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1396), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3686), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3792), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), + [sym__expression] = STATE(4103), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(4501), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3698), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1467] = { - [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___extension__] = ACTIONS(3217), - [anon_sym_typedef] = ACTIONS(3217), - [anon_sym_extern] = ACTIONS(3217), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3217), - [anon_sym_constinit] = ACTIONS(3217), - [anon_sym_consteval] = 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), - [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_virtual] = ACTIONS(3217), - [anon_sym_alignas] = 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_using] = 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), + [sym__expression] = STATE(3082), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, [1468] = { - [sym_preproc_def] = STATE(1468), - [sym_preproc_function_def] = STATE(1468), - [sym_preproc_call] = STATE(1468), - [sym_preproc_if_in_field_declaration_list] = STATE(1468), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1468), - [sym_type_definition] = STATE(1468), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6304), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6992), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1468), - [sym_field_declaration] = STATE(1468), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2403), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1468), - [sym_operator_cast] = STATE(7452), - [sym_inline_method_definition] = STATE(1468), - [sym__constructor_specifiers] = STATE(2403), - [sym_operator_cast_definition] = STATE(1468), - [sym_operator_cast_declaration] = STATE(1468), - [sym_constructor_or_destructor_definition] = STATE(1468), - [sym_constructor_or_destructor_declaration] = STATE(1468), - [sym_friend_declaration] = STATE(1468), - [sym_access_specifier] = STATE(8944), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1468), - [sym_alias_declaration] = STATE(1468), - [sym_static_assert_declaration] = STATE(1468), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7452), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1468), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2403), - [sym_identifier] = ACTIONS(3518), - [aux_sym_preproc_def_token1] = ACTIONS(3794), - [aux_sym_preproc_if_token1] = ACTIONS(3797), - [aux_sym_preproc_if_token2] = ACTIONS(3527), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3800), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3800), - [sym_preproc_directive] = ACTIONS(3803), - [anon_sym_LPAREN2] = ACTIONS(3535), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3541), - [anon_sym_AMP_AMP] = ACTIONS(3544), - [anon_sym_AMP] = ACTIONS(3547), - [anon_sym___extension__] = ACTIONS(3806), - [anon_sym_typedef] = ACTIONS(3809), - [anon_sym_extern] = ACTIONS(3556), - [anon_sym___attribute__] = ACTIONS(3559), - [anon_sym_COLON_COLON] = ACTIONS(3562), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3565), - [anon_sym___declspec] = ACTIONS(3568), - [anon_sym___based] = ACTIONS(3571), - [anon_sym_signed] = ACTIONS(3574), - [anon_sym_unsigned] = ACTIONS(3574), - [anon_sym_long] = ACTIONS(3574), - [anon_sym_short] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3577), - [anon_sym_static] = ACTIONS(3556), - [anon_sym_register] = ACTIONS(3556), - [anon_sym_inline] = ACTIONS(3556), - [anon_sym___inline] = ACTIONS(3556), - [anon_sym___inline__] = ACTIONS(3556), - [anon_sym___forceinline] = ACTIONS(3556), - [anon_sym_thread_local] = ACTIONS(3556), - [anon_sym___thread] = ACTIONS(3556), - [anon_sym_const] = ACTIONS(3580), - [anon_sym_constexpr] = ACTIONS(3580), - [anon_sym_volatile] = ACTIONS(3580), - [anon_sym_restrict] = ACTIONS(3580), - [anon_sym___restrict__] = ACTIONS(3580), - [anon_sym__Atomic] = ACTIONS(3580), - [anon_sym__Noreturn] = ACTIONS(3580), - [anon_sym_noreturn] = ACTIONS(3580), - [anon_sym_mutable] = ACTIONS(3580), - [anon_sym_constinit] = ACTIONS(3580), - [anon_sym_consteval] = ACTIONS(3580), - [sym_primitive_type] = ACTIONS(3583), - [anon_sym_enum] = ACTIONS(3586), - [anon_sym_class] = ACTIONS(3589), - [anon_sym_struct] = ACTIONS(3592), - [anon_sym_union] = ACTIONS(3595), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3598), - [anon_sym_decltype] = ACTIONS(3601), - [anon_sym_virtual] = ACTIONS(3604), - [anon_sym_alignas] = ACTIONS(3607), - [anon_sym_explicit] = ACTIONS(3610), - [anon_sym_typename] = ACTIONS(3613), - [anon_sym_template] = ACTIONS(3812), - [anon_sym_operator] = ACTIONS(3619), - [anon_sym_friend] = ACTIONS(3815), - [anon_sym_public] = ACTIONS(3625), - [anon_sym_private] = ACTIONS(3625), - [anon_sym_protected] = ACTIONS(3625), - [anon_sym_using] = ACTIONS(3818), - [anon_sym_static_assert] = ACTIONS(3821), + [sym__expression] = STATE(3819), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1469] = { - [sym_preproc_def] = STATE(1396), - [sym_preproc_function_def] = STATE(1396), - [sym_preproc_call] = STATE(1396), - [sym_preproc_if_in_field_declaration_list] = STATE(1396), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1396), - [sym_type_definition] = STATE(1396), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(6387), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__field_declaration_list_item] = STATE(1396), - [sym_field_declaration] = STATE(1396), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1396), - [sym_operator_cast] = STATE(7505), - [sym_inline_method_definition] = STATE(1396), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(1396), - [sym_operator_cast_declaration] = STATE(1396), - [sym_constructor_or_destructor_definition] = STATE(1396), - [sym_constructor_or_destructor_declaration] = STATE(1396), - [sym_friend_declaration] = STATE(1396), - [sym_access_specifier] = STATE(9485), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_using_declaration] = STATE(1396), - [sym_alias_declaration] = STATE(1396), - [sym_static_assert_declaration] = STATE(1396), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6201), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1396), - [aux_sym__declaration_specifiers_repeat1] = STATE(2680), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(3686), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3824), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), + [sym__expression] = STATE(4018), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3147), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3147), + [sym_call_expression] = STATE(3147), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3147), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3147), + [sym_char_literal] = STATE(4132), + [sym_concatenated_string] = STATE(4132), + [sym_string_literal] = STATE(3425), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(3425), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3147), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3147), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3607), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3609), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3613), + [anon_sym_u_DQUOTE] = ACTIONS(3613), + [anon_sym_U_DQUOTE] = ACTIONS(3613), + [anon_sym_u8_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3698), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3615), + [anon_sym_R_DQUOTE] = ACTIONS(3617), + [anon_sym_LR_DQUOTE] = ACTIONS(3617), + [anon_sym_uR_DQUOTE] = ACTIONS(3617), + [anon_sym_UR_DQUOTE] = ACTIONS(3617), + [anon_sym_u8R_DQUOTE] = ACTIONS(3617), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1470] = { - [ts_builtin_sym_end] = ACTIONS(3456), - [sym_identifier] = ACTIONS(3454), - [aux_sym_preproc_include_token1] = ACTIONS(3454), - [aux_sym_preproc_def_token1] = ACTIONS(3454), - [aux_sym_preproc_if_token1] = ACTIONS(3454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3454), - [sym_preproc_directive] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3456), - [anon_sym_BANG] = ACTIONS(3456), - [anon_sym_TILDE] = ACTIONS(3456), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_STAR] = ACTIONS(3456), - [anon_sym_AMP_AMP] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym___extension__] = ACTIONS(3454), - [anon_sym_typedef] = ACTIONS(3454), - [anon_sym_extern] = ACTIONS(3454), - [anon_sym___attribute__] = ACTIONS(3454), - [anon_sym_COLON_COLON] = ACTIONS(3456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3456), - [anon_sym___declspec] = ACTIONS(3454), - [anon_sym___based] = ACTIONS(3454), - [anon_sym___cdecl] = ACTIONS(3454), - [anon_sym___clrcall] = ACTIONS(3454), - [anon_sym___stdcall] = ACTIONS(3454), - [anon_sym___fastcall] = ACTIONS(3454), - [anon_sym___thiscall] = ACTIONS(3454), - [anon_sym___vectorcall] = ACTIONS(3454), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_signed] = ACTIONS(3454), - [anon_sym_unsigned] = ACTIONS(3454), - [anon_sym_long] = ACTIONS(3454), - [anon_sym_short] = ACTIONS(3454), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3454), - [anon_sym_register] = ACTIONS(3454), - [anon_sym_inline] = ACTIONS(3454), - [anon_sym___inline] = ACTIONS(3454), - [anon_sym___inline__] = ACTIONS(3454), - [anon_sym___forceinline] = ACTIONS(3454), - [anon_sym_thread_local] = ACTIONS(3454), - [anon_sym___thread] = ACTIONS(3454), - [anon_sym_const] = ACTIONS(3454), - [anon_sym_constexpr] = ACTIONS(3454), - [anon_sym_volatile] = ACTIONS(3454), - [anon_sym_restrict] = ACTIONS(3454), - [anon_sym___restrict__] = ACTIONS(3454), - [anon_sym__Atomic] = ACTIONS(3454), - [anon_sym__Noreturn] = ACTIONS(3454), - [anon_sym_noreturn] = ACTIONS(3454), - [anon_sym_mutable] = ACTIONS(3454), - [anon_sym_constinit] = ACTIONS(3454), - [anon_sym_consteval] = ACTIONS(3454), - [sym_primitive_type] = ACTIONS(3454), - [anon_sym_enum] = ACTIONS(3454), - [anon_sym_class] = ACTIONS(3454), - [anon_sym_struct] = ACTIONS(3454), - [anon_sym_union] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_switch] = ACTIONS(3454), - [anon_sym_case] = ACTIONS(3454), - [anon_sym_default] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_break] = ACTIONS(3454), - [anon_sym_continue] = ACTIONS(3454), - [anon_sym_goto] = ACTIONS(3454), - [anon_sym_not] = ACTIONS(3454), - [anon_sym_compl] = ACTIONS(3454), - [anon_sym_DASH_DASH] = ACTIONS(3456), - [anon_sym_PLUS_PLUS] = ACTIONS(3456), - [anon_sym_sizeof] = ACTIONS(3454), - [anon_sym___alignof__] = ACTIONS(3454), - [anon_sym___alignof] = ACTIONS(3454), - [anon_sym__alignof] = ACTIONS(3454), - [anon_sym_alignof] = ACTIONS(3454), - [anon_sym__Alignof] = ACTIONS(3454), - [anon_sym_offsetof] = ACTIONS(3454), - [anon_sym__Generic] = ACTIONS(3454), - [anon_sym_asm] = ACTIONS(3454), - [anon_sym___asm__] = ACTIONS(3454), - [sym_number_literal] = ACTIONS(3456), - [anon_sym_L_SQUOTE] = ACTIONS(3456), - [anon_sym_u_SQUOTE] = ACTIONS(3456), - [anon_sym_U_SQUOTE] = ACTIONS(3456), - [anon_sym_u8_SQUOTE] = ACTIONS(3456), - [anon_sym_SQUOTE] = ACTIONS(3456), - [anon_sym_L_DQUOTE] = ACTIONS(3456), - [anon_sym_u_DQUOTE] = ACTIONS(3456), - [anon_sym_U_DQUOTE] = ACTIONS(3456), - [anon_sym_u8_DQUOTE] = ACTIONS(3456), - [anon_sym_DQUOTE] = ACTIONS(3456), - [sym_true] = ACTIONS(3454), - [sym_false] = ACTIONS(3454), - [anon_sym_NULL] = ACTIONS(3454), - [anon_sym_nullptr] = ACTIONS(3454), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3454), - [anon_sym_decltype] = ACTIONS(3454), - [anon_sym_virtual] = ACTIONS(3454), - [anon_sym_alignas] = ACTIONS(3454), - [anon_sym_explicit] = ACTIONS(3454), - [anon_sym_typename] = ACTIONS(3454), - [anon_sym_template] = ACTIONS(3454), - [anon_sym_operator] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_delete] = ACTIONS(3454), - [anon_sym_throw] = ACTIONS(3454), - [anon_sym_namespace] = ACTIONS(3454), - [anon_sym_using] = ACTIONS(3454), - [anon_sym_static_assert] = ACTIONS(3454), - [anon_sym_concept] = ACTIONS(3454), - [anon_sym_co_return] = ACTIONS(3454), - [anon_sym_co_yield] = ACTIONS(3454), - [anon_sym_R_DQUOTE] = ACTIONS(3456), - [anon_sym_LR_DQUOTE] = ACTIONS(3456), - [anon_sym_uR_DQUOTE] = ACTIONS(3456), - [anon_sym_UR_DQUOTE] = ACTIONS(3456), - [anon_sym_u8R_DQUOTE] = ACTIONS(3456), - [anon_sym_co_await] = ACTIONS(3454), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_requires] = ACTIONS(3454), - [sym_this] = ACTIONS(3454), + [sym__expression] = STATE(3080), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, [1471] = { - [ts_builtin_sym_end] = ACTIONS(3386), - [sym_identifier] = ACTIONS(3384), - [aux_sym_preproc_include_token1] = ACTIONS(3384), - [aux_sym_preproc_def_token1] = ACTIONS(3384), - [aux_sym_preproc_if_token1] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), - [sym_preproc_directive] = ACTIONS(3384), - [anon_sym_LPAREN2] = ACTIONS(3386), - [anon_sym_BANG] = ACTIONS(3386), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3384), - [anon_sym_PLUS] = ACTIONS(3384), - [anon_sym_STAR] = ACTIONS(3386), - [anon_sym_AMP_AMP] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3384), - [anon_sym___extension__] = ACTIONS(3384), - [anon_sym_typedef] = ACTIONS(3384), - [anon_sym_extern] = ACTIONS(3384), - [anon_sym___attribute__] = ACTIONS(3384), - [anon_sym_COLON_COLON] = ACTIONS(3386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3386), - [anon_sym___declspec] = ACTIONS(3384), - [anon_sym___based] = ACTIONS(3384), - [anon_sym___cdecl] = ACTIONS(3384), - [anon_sym___clrcall] = ACTIONS(3384), - [anon_sym___stdcall] = ACTIONS(3384), - [anon_sym___fastcall] = ACTIONS(3384), - [anon_sym___thiscall] = ACTIONS(3384), - [anon_sym___vectorcall] = ACTIONS(3384), - [anon_sym_LBRACE] = ACTIONS(3386), - [anon_sym_signed] = ACTIONS(3384), - [anon_sym_unsigned] = ACTIONS(3384), - [anon_sym_long] = ACTIONS(3384), - [anon_sym_short] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_static] = ACTIONS(3384), - [anon_sym_register] = ACTIONS(3384), - [anon_sym_inline] = ACTIONS(3384), - [anon_sym___inline] = ACTIONS(3384), - [anon_sym___inline__] = ACTIONS(3384), - [anon_sym___forceinline] = ACTIONS(3384), - [anon_sym_thread_local] = ACTIONS(3384), - [anon_sym___thread] = ACTIONS(3384), - [anon_sym_const] = ACTIONS(3384), - [anon_sym_constexpr] = ACTIONS(3384), - [anon_sym_volatile] = ACTIONS(3384), - [anon_sym_restrict] = ACTIONS(3384), - [anon_sym___restrict__] = ACTIONS(3384), - [anon_sym__Atomic] = ACTIONS(3384), - [anon_sym__Noreturn] = ACTIONS(3384), - [anon_sym_noreturn] = ACTIONS(3384), - [anon_sym_mutable] = ACTIONS(3384), - [anon_sym_constinit] = ACTIONS(3384), - [anon_sym_consteval] = ACTIONS(3384), - [sym_primitive_type] = ACTIONS(3384), - [anon_sym_enum] = ACTIONS(3384), - [anon_sym_class] = ACTIONS(3384), - [anon_sym_struct] = ACTIONS(3384), - [anon_sym_union] = ACTIONS(3384), - [anon_sym_if] = ACTIONS(3384), - [anon_sym_switch] = ACTIONS(3384), - [anon_sym_case] = ACTIONS(3384), - [anon_sym_default] = ACTIONS(3384), - [anon_sym_while] = ACTIONS(3384), - [anon_sym_do] = ACTIONS(3384), - [anon_sym_for] = ACTIONS(3384), - [anon_sym_return] = ACTIONS(3384), - [anon_sym_break] = ACTIONS(3384), - [anon_sym_continue] = ACTIONS(3384), - [anon_sym_goto] = ACTIONS(3384), - [anon_sym_not] = ACTIONS(3384), - [anon_sym_compl] = ACTIONS(3384), - [anon_sym_DASH_DASH] = ACTIONS(3386), - [anon_sym_PLUS_PLUS] = ACTIONS(3386), - [anon_sym_sizeof] = ACTIONS(3384), - [anon_sym___alignof__] = ACTIONS(3384), - [anon_sym___alignof] = ACTIONS(3384), - [anon_sym__alignof] = ACTIONS(3384), - [anon_sym_alignof] = ACTIONS(3384), - [anon_sym__Alignof] = ACTIONS(3384), - [anon_sym_offsetof] = ACTIONS(3384), - [anon_sym__Generic] = ACTIONS(3384), - [anon_sym_asm] = ACTIONS(3384), - [anon_sym___asm__] = ACTIONS(3384), - [sym_number_literal] = ACTIONS(3386), - [anon_sym_L_SQUOTE] = ACTIONS(3386), - [anon_sym_u_SQUOTE] = ACTIONS(3386), - [anon_sym_U_SQUOTE] = ACTIONS(3386), - [anon_sym_u8_SQUOTE] = ACTIONS(3386), - [anon_sym_SQUOTE] = ACTIONS(3386), - [anon_sym_L_DQUOTE] = ACTIONS(3386), - [anon_sym_u_DQUOTE] = ACTIONS(3386), - [anon_sym_U_DQUOTE] = ACTIONS(3386), - [anon_sym_u8_DQUOTE] = ACTIONS(3386), - [anon_sym_DQUOTE] = ACTIONS(3386), - [sym_true] = ACTIONS(3384), - [sym_false] = ACTIONS(3384), - [anon_sym_NULL] = ACTIONS(3384), - [anon_sym_nullptr] = ACTIONS(3384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3384), - [anon_sym_decltype] = ACTIONS(3384), - [anon_sym_virtual] = ACTIONS(3384), - [anon_sym_alignas] = ACTIONS(3384), - [anon_sym_explicit] = ACTIONS(3384), - [anon_sym_typename] = ACTIONS(3384), - [anon_sym_template] = ACTIONS(3384), - [anon_sym_operator] = ACTIONS(3384), - [anon_sym_try] = ACTIONS(3384), - [anon_sym_delete] = ACTIONS(3384), - [anon_sym_throw] = ACTIONS(3384), - [anon_sym_namespace] = ACTIONS(3384), - [anon_sym_using] = ACTIONS(3384), - [anon_sym_static_assert] = ACTIONS(3384), - [anon_sym_concept] = ACTIONS(3384), - [anon_sym_co_return] = ACTIONS(3384), - [anon_sym_co_yield] = ACTIONS(3384), - [anon_sym_R_DQUOTE] = ACTIONS(3386), - [anon_sym_LR_DQUOTE] = ACTIONS(3386), - [anon_sym_uR_DQUOTE] = ACTIONS(3386), - [anon_sym_UR_DQUOTE] = ACTIONS(3386), - [anon_sym_u8R_DQUOTE] = ACTIONS(3386), - [anon_sym_co_await] = ACTIONS(3384), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3384), - [sym_this] = ACTIONS(3384), - }, - [1472] = { - [sym__expression] = STATE(4777), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_initializer_list] = STATE(4789), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), - [anon_sym_COMMA] = ACTIONS(2016), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3830), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2016), - [anon_sym_BANG_EQ] = ACTIONS(2016), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2016), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2016), - [anon_sym_GT_GT] = ACTIONS(2016), - [anon_sym_SEMI] = ACTIONS(2016), - [anon_sym___attribute__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_QMARK] = ACTIONS(2016), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_LT_EQ_GT] = ACTIONS(2016), - [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(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), + [sym__expression] = STATE(4270), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -256163,124 +237508,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2016), - [anon_sym_DASH_GT] = ACTIONS(2016), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), [sym_true] = ACTIONS(213), [sym_false] = ACTIONS(213), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, + [1472] = { + [sym__expression] = STATE(2900), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, [1473] = { - [sym__expression] = STATE(4777), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_initializer_list] = STATE(4789), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), - [anon_sym_COMMA] = ACTIONS(2016), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3858), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(2016), - [anon_sym_BANG_EQ] = ACTIONS(2016), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2016), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2016), - [anon_sym_GT_GT] = ACTIONS(2016), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(2016), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_QMARK] = ACTIONS(2016), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_LT_EQ_GT] = ACTIONS(2016), - [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(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [sym__expression] = STATE(4196), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -256290,9 +237702,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2016), - [anon_sym_DASH_GT] = ACTIONS(2016), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -256309,231 +237718,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(3663), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, [1474] = { - [sym__expression] = STATE(5236), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_initializer_list] = STATE(5415), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), - [anon_sym_COMMA] = ACTIONS(2016), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_EQ_EQ] = ACTIONS(2016), - [anon_sym_BANG_EQ] = ACTIONS(2016), - [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(2016), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3876), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_QMARK] = ACTIONS(2016), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_LT_EQ_GT] = ACTIONS(2016), - [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(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2016), - [anon_sym_DASH_GT] = ACTIONS(2016), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__expression] = STATE(4277), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_GT2] = ACTIONS(2016), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1475] = { - [sym__expression] = STATE(5322), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_initializer_list] = STATE(4789), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3884), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2206), - [anon_sym_EQ_EQ] = ACTIONS(2016), - [anon_sym_BANG_EQ] = ACTIONS(2016), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2016), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2016), - [anon_sym_GT_GT] = ACTIONS(2016), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_COLON] = ACTIONS(2024), - [anon_sym_QMARK] = ACTIONS(2016), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_LT_EQ_GT] = ACTIONS(2016), - [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(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), + [sym__expression] = STATE(4200), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(4503), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -256543,9 +237896,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2016), - [anon_sym_DASH_GT] = ACTIONS(2016), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -256562,2695 +237912,1339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), + [anon_sym_delete] = ACTIONS(3663), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, [1476] = { - [sym__declaration_modifiers] = STATE(2728), - [sym__declaration_specifiers] = STATE(6980), - [sym_attribute_specifier] = STATE(2728), - [sym_attribute_declaration] = STATE(2728), - [sym_ms_declspec_modifier] = STATE(2728), - [sym_storage_class_specifier] = STATE(2728), - [sym_type_qualifier] = STATE(2728), - [sym__type_specifier] = STATE(4745), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2728), - [sym_alignas_specifier] = STATE(2728), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7295), - [sym_qualified_type_identifier] = STATE(3834), - [aux_sym__declaration_specifiers_repeat1] = STATE(2728), - [aux_sym_sized_type_specifier_repeat1] = STATE(3929), - [sym_identifier] = ACTIONS(3900), - [anon_sym_COMMA] = ACTIONS(3902), - [anon_sym_BANG] = ACTIONS(3904), - [anon_sym_TILDE] = ACTIONS(3902), - [anon_sym_DASH] = ACTIONS(3904), - [anon_sym_PLUS] = ACTIONS(3904), - [anon_sym_STAR] = ACTIONS(3904), - [anon_sym_SLASH] = ACTIONS(3904), - [anon_sym_PERCENT] = ACTIONS(3904), - [anon_sym_PIPE_PIPE] = ACTIONS(3902), - [anon_sym_AMP_AMP] = ACTIONS(3902), - [anon_sym_PIPE] = ACTIONS(3904), - [anon_sym_CARET] = ACTIONS(3904), - [anon_sym_AMP] = ACTIONS(3904), - [anon_sym_EQ_EQ] = ACTIONS(3902), - [anon_sym_BANG_EQ] = ACTIONS(3902), - [anon_sym_GT] = ACTIONS(3904), - [anon_sym_GT_EQ] = ACTIONS(3902), - [anon_sym_LT_EQ] = ACTIONS(3904), - [anon_sym_LT] = ACTIONS(3904), - [anon_sym_LT_LT] = ACTIONS(3904), - [anon_sym_GT_GT] = ACTIONS(3904), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(3908), - [anon_sym_unsigned] = ACTIONS(3908), - [anon_sym_long] = ACTIONS(3908), - [anon_sym_short] = ACTIONS(3908), - [anon_sym_EQ] = ACTIONS(3904), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(3910), - [anon_sym_class] = ACTIONS(3912), - [anon_sym_struct] = ACTIONS(3914), - [anon_sym_union] = ACTIONS(3916), - [anon_sym_STAR_EQ] = ACTIONS(3902), - [anon_sym_SLASH_EQ] = ACTIONS(3902), - [anon_sym_PERCENT_EQ] = ACTIONS(3902), - [anon_sym_PLUS_EQ] = ACTIONS(3902), - [anon_sym_DASH_EQ] = ACTIONS(3902), - [anon_sym_LT_LT_EQ] = ACTIONS(3902), - [anon_sym_GT_GT_EQ] = ACTIONS(3902), - [anon_sym_AMP_EQ] = ACTIONS(3902), - [anon_sym_CARET_EQ] = ACTIONS(3902), - [anon_sym_PIPE_EQ] = ACTIONS(3902), - [anon_sym_and_eq] = ACTIONS(3904), - [anon_sym_or_eq] = ACTIONS(3904), - [anon_sym_xor_eq] = ACTIONS(3904), - [anon_sym_not] = ACTIONS(3904), - [anon_sym_compl] = ACTIONS(3904), - [anon_sym_LT_EQ_GT] = ACTIONS(3902), - [anon_sym_or] = ACTIONS(3904), - [anon_sym_and] = ACTIONS(3904), - [anon_sym_bitor] = ACTIONS(3904), - [anon_sym_xor] = ACTIONS(3904), - [anon_sym_bitand] = ACTIONS(3904), - [anon_sym_not_eq] = ACTIONS(3904), - [anon_sym_DASH_DASH] = ACTIONS(3902), - [anon_sym_PLUS_PLUS] = ACTIONS(3902), - [anon_sym_DASH_GT] = ACTIONS(3904), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(3918), + [sym__expression] = STATE(3078), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3920), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3920), - [anon_sym_DASH_GT_STAR] = ACTIONS(3902), - [anon_sym_LPAREN_RPAREN] = ACTIONS(3902), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3902), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3922), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, [1477] = { - [sym__declaration_modifiers] = STATE(2728), - [sym__declaration_specifiers] = STATE(6980), - [sym_attribute_specifier] = STATE(2728), - [sym_attribute_declaration] = STATE(2728), - [sym_ms_declspec_modifier] = STATE(2728), - [sym_storage_class_specifier] = STATE(2728), - [sym_type_qualifier] = STATE(2728), - [sym__type_specifier] = STATE(4745), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2728), - [sym_alignas_specifier] = STATE(2728), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7295), - [sym_qualified_type_identifier] = STATE(3834), - [aux_sym__declaration_specifiers_repeat1] = STATE(2728), - [aux_sym_sized_type_specifier_repeat1] = STATE(3929), - [sym_identifier] = ACTIONS(3900), - [anon_sym_COMMA] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3926), - [anon_sym_TILDE] = ACTIONS(3924), - [anon_sym_DASH] = ACTIONS(3926), - [anon_sym_PLUS] = ACTIONS(3926), - [anon_sym_STAR] = ACTIONS(3926), - [anon_sym_SLASH] = ACTIONS(3926), - [anon_sym_PERCENT] = ACTIONS(3926), - [anon_sym_PIPE_PIPE] = ACTIONS(3924), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_PIPE] = ACTIONS(3926), - [anon_sym_CARET] = ACTIONS(3926), - [anon_sym_AMP] = ACTIONS(3926), - [anon_sym_EQ_EQ] = ACTIONS(3924), - [anon_sym_BANG_EQ] = ACTIONS(3924), - [anon_sym_GT] = ACTIONS(3926), - [anon_sym_GT_EQ] = ACTIONS(3924), - [anon_sym_LT_EQ] = ACTIONS(3926), - [anon_sym_LT] = ACTIONS(3926), - [anon_sym_LT_LT] = ACTIONS(3926), - [anon_sym_GT_GT] = ACTIONS(3926), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(3908), - [anon_sym_unsigned] = ACTIONS(3908), - [anon_sym_long] = ACTIONS(3908), - [anon_sym_short] = ACTIONS(3908), - [anon_sym_EQ] = ACTIONS(3926), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(3910), - [anon_sym_class] = ACTIONS(3912), - [anon_sym_struct] = ACTIONS(3914), - [anon_sym_union] = ACTIONS(3916), - [anon_sym_STAR_EQ] = ACTIONS(3924), - [anon_sym_SLASH_EQ] = ACTIONS(3924), - [anon_sym_PERCENT_EQ] = ACTIONS(3924), - [anon_sym_PLUS_EQ] = ACTIONS(3924), - [anon_sym_DASH_EQ] = ACTIONS(3924), - [anon_sym_LT_LT_EQ] = ACTIONS(3924), - [anon_sym_GT_GT_EQ] = ACTIONS(3924), - [anon_sym_AMP_EQ] = ACTIONS(3924), - [anon_sym_CARET_EQ] = ACTIONS(3924), - [anon_sym_PIPE_EQ] = ACTIONS(3924), - [anon_sym_and_eq] = ACTIONS(3926), - [anon_sym_or_eq] = ACTIONS(3926), - [anon_sym_xor_eq] = ACTIONS(3926), - [anon_sym_not] = ACTIONS(3926), - [anon_sym_compl] = ACTIONS(3926), - [anon_sym_LT_EQ_GT] = ACTIONS(3924), - [anon_sym_or] = ACTIONS(3926), - [anon_sym_and] = ACTIONS(3926), - [anon_sym_bitor] = ACTIONS(3926), - [anon_sym_xor] = ACTIONS(3926), - [anon_sym_bitand] = ACTIONS(3926), - [anon_sym_not_eq] = ACTIONS(3926), - [anon_sym_DASH_DASH] = ACTIONS(3924), - [anon_sym_PLUS_PLUS] = ACTIONS(3924), - [anon_sym_DASH_GT] = ACTIONS(3926), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(3918), + [sym__expression] = STATE(2995), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3928), - [anon_sym_co_await] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3928), - [anon_sym_DASH_GT_STAR] = ACTIONS(3924), - [anon_sym_LPAREN_RPAREN] = ACTIONS(3924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3924), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3930), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, [1478] = { - [sym_function_definition] = STATE(2875), - [sym_declaration] = STATE(2875), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5705), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2632), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4243), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__empty_declaration] = STATE(2875), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(2875), - [sym_operator_cast] = STATE(7505), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(2875), - [sym_operator_cast_declaration] = STATE(2875), - [sym_constructor_or_destructor_definition] = STATE(2875), - [sym_constructor_or_destructor_declaration] = STATE(2875), - [sym_friend_declaration] = STATE(2875), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_alias_declaration] = STATE(2875), - [sym_concept_definition] = STATE(2875), - [sym_requires_clause] = STATE(1495), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6206), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(3932), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3694), - [anon_sym_using] = ACTIONS(3936), - [anon_sym_concept] = ACTIONS(3938), - [anon_sym_requires] = ACTIONS(3940), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1479] = { - [sym_function_definition] = STATE(2858), - [sym_declaration] = STATE(2858), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5731), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2610), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6992), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4345), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__empty_declaration] = STATE(2858), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2403), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(2858), - [sym_operator_cast] = STATE(7452), - [sym__constructor_specifiers] = STATE(2403), - [sym_operator_cast_definition] = STATE(2858), - [sym_operator_cast_declaration] = STATE(2858), - [sym_constructor_or_destructor_definition] = STATE(2858), - [sym_constructor_or_destructor_declaration] = STATE(2858), - [sym_friend_declaration] = STATE(2858), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_alias_declaration] = STATE(2858), - [sym_concept_definition] = STATE(2858), - [sym_requires_clause] = STATE(1493), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6206), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7452), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2403), - [sym_identifier] = ACTIONS(3932), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3714), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3716), - [anon_sym_using] = ACTIONS(3942), - [anon_sym_concept] = ACTIONS(3944), - [anon_sym_requires] = ACTIONS(3940), + [sym__expression] = STATE(3064), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, [1480] = { - [sym_function_definition] = STATE(2686), - [sym_declaration] = STATE(2686), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5780), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2563), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6947), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4284), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__empty_declaration] = STATE(2686), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2398), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(2686), - [sym_operator_cast] = STATE(7504), - [sym__constructor_specifiers] = STATE(2398), - [sym_operator_cast_definition] = STATE(2686), - [sym_operator_cast_declaration] = STATE(2686), - [sym_constructor_or_destructor_definition] = STATE(2686), - [sym_constructor_or_destructor_declaration] = STATE(2686), - [sym_friend_declaration] = STATE(2686), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_alias_declaration] = STATE(2686), - [sym_concept_definition] = STATE(2686), - [sym_requires_clause] = STATE(1492), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6206), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7504), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2398), - [sym_identifier] = ACTIONS(3932), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3476), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3478), - [anon_sym_using] = ACTIONS(3946), - [anon_sym_concept] = ACTIONS(3948), - [anon_sym_requires] = ACTIONS(3940), + [sym__expression] = STATE(3060), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, [1481] = { - [sym_function_definition] = STATE(1326), - [sym_declaration] = STATE(1326), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6941), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__empty_declaration] = STATE(1326), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2407), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1326), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2407), - [sym_operator_cast_definition] = STATE(1326), - [sym_operator_cast_declaration] = STATE(1326), - [sym_constructor_or_destructor_definition] = STATE(1326), - [sym_constructor_or_destructor_declaration] = STATE(1326), - [sym_friend_declaration] = STATE(1326), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_alias_declaration] = STATE(1326), - [sym_concept_definition] = STATE(1326), - [sym_requires_clause] = STATE(1490), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6206), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2407), - [sym_identifier] = ACTIONS(3932), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3950), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3952), - [anon_sym_using] = ACTIONS(3954), - [anon_sym_concept] = ACTIONS(301), - [anon_sym_requires] = ACTIONS(3940), + [sym__expression] = STATE(3059), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, [1482] = { - [sym_function_definition] = STATE(1394), - [sym_declaration] = STATE(1394), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5758), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2601), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6953), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4280), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__empty_declaration] = STATE(1394), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2401), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1394), - [sym_operator_cast] = STATE(7496), - [sym__constructor_specifiers] = STATE(2401), - [sym_operator_cast_definition] = STATE(1394), - [sym_operator_cast_declaration] = STATE(1394), - [sym_constructor_or_destructor_definition] = STATE(1394), - [sym_constructor_or_destructor_declaration] = STATE(1394), - [sym_friend_declaration] = STATE(1394), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_alias_declaration] = STATE(1394), - [sym_concept_definition] = STATE(1394), - [sym_requires_clause] = STATE(1494), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6206), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7496), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2401), - [sym_identifier] = ACTIONS(3932), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym__expression] = STATE(4238), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3956), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3958), - [anon_sym_using] = ACTIONS(3960), - [anon_sym_concept] = ACTIONS(145), - [anon_sym_requires] = ACTIONS(3940), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1483] = { - [sym_function_definition] = STATE(796), - [sym_declaration] = STATE(796), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5723), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2642), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6967), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4249), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__empty_declaration] = STATE(796), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2404), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(796), - [sym_operator_cast] = STATE(7442), - [sym__constructor_specifiers] = STATE(2404), - [sym_operator_cast_definition] = STATE(796), - [sym_operator_cast_declaration] = STATE(796), - [sym_constructor_or_destructor_definition] = STATE(796), - [sym_constructor_or_destructor_declaration] = STATE(796), - [sym_friend_declaration] = STATE(796), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_alias_declaration] = STATE(796), - [sym_concept_definition] = STATE(796), - [sym_requires_clause] = STATE(1491), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6206), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7442), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2404), - [sym_identifier] = ACTIONS(3932), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3962), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3964), - [anon_sym_using] = ACTIONS(3966), - [anon_sym_concept] = ACTIONS(409), - [anon_sym_requires] = ACTIONS(3940), + [sym__expression] = STATE(3057), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, [1484] = { - [sym_function_definition] = STATE(2554), - [sym_declaration] = STATE(2554), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5709), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2576), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6925), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4343), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__empty_declaration] = STATE(2554), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(2554), - [sym_operator_cast] = STATE(7495), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(2554), - [sym_operator_cast_declaration] = STATE(2554), - [sym_constructor_or_destructor_definition] = STATE(2554), - [sym_constructor_or_destructor_declaration] = STATE(2554), - [sym_friend_declaration] = STATE(2554), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_alias_declaration] = STATE(2554), - [sym_concept_definition] = STATE(2554), - [sym_requires_clause] = STATE(1489), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6206), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7495), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(3932), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym__expression] = STATE(4181), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(2731), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(2733), - [anon_sym_using] = ACTIONS(3968), - [anon_sym_concept] = ACTIONS(3970), - [anon_sym_requires] = ACTIONS(3940), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1485] = { - [sym_function_definition] = STATE(1287), - [sym_declaration] = STATE(1287), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5755), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2586), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6923), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4279), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__empty_declaration] = STATE(1287), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2392), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1287), - [sym_operator_cast] = STATE(7515), - [sym__constructor_specifiers] = STATE(2392), - [sym_operator_cast_definition] = STATE(1287), - [sym_operator_cast_declaration] = STATE(1287), - [sym_constructor_or_destructor_definition] = STATE(1287), - [sym_constructor_or_destructor_declaration] = STATE(1287), - [sym_friend_declaration] = STATE(1287), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_alias_declaration] = STATE(1287), - [sym_concept_definition] = STATE(1287), - [sym_requires_clause] = STATE(1487), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6206), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7515), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2392), - [sym_identifier] = ACTIONS(3932), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3972), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3974), - [anon_sym_using] = ACTIONS(3976), - [anon_sym_concept] = ACTIONS(1092), - [anon_sym_requires] = ACTIONS(3940), + [sym__expression] = STATE(3055), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, [1486] = { - [sym_function_definition] = STATE(574), - [sym_declaration] = STATE(574), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5767), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2622), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6964), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4283), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__empty_declaration] = STATE(574), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2399), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(574), - [sym_operator_cast] = STATE(7476), - [sym__constructor_specifiers] = STATE(2399), - [sym_operator_cast_definition] = STATE(574), - [sym_operator_cast_declaration] = STATE(574), - [sym_constructor_or_destructor_definition] = STATE(574), - [sym_constructor_or_destructor_declaration] = STATE(574), - [sym_friend_declaration] = STATE(574), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_alias_declaration] = STATE(574), - [sym_concept_definition] = STATE(574), - [sym_requires_clause] = STATE(1488), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6206), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7476), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2399), - [sym_identifier] = ACTIONS(3932), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym__expression] = STATE(4190), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3978), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3980), - [anon_sym_using] = ACTIONS(3982), - [anon_sym_concept] = ACTIONS(227), - [anon_sym_requires] = ACTIONS(3940), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1487] = { - [sym_function_definition] = STATE(1288), - [sym_declaration] = STATE(1288), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5755), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2586), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6923), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4279), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__empty_declaration] = STATE(1288), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2392), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1288), - [sym_operator_cast] = STATE(7515), - [sym__constructor_specifiers] = STATE(2392), - [sym_operator_cast_definition] = STATE(1288), - [sym_operator_cast_declaration] = STATE(1288), - [sym_constructor_or_destructor_definition] = STATE(1288), - [sym_constructor_or_destructor_declaration] = STATE(1288), - [sym_friend_declaration] = STATE(1288), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_alias_declaration] = STATE(1288), - [sym_concept_definition] = STATE(1288), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6206), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7515), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2392), - [sym_identifier] = ACTIONS(3932), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym__expression] = STATE(4278), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3972), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3974), - [anon_sym_using] = ACTIONS(3976), - [anon_sym_concept] = ACTIONS(1092), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1488] = { - [sym_function_definition] = STATE(532), - [sym_declaration] = STATE(532), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5767), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2622), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6964), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4283), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__empty_declaration] = STATE(532), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2399), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(532), - [sym_operator_cast] = STATE(7476), - [sym__constructor_specifiers] = STATE(2399), - [sym_operator_cast_definition] = STATE(532), - [sym_operator_cast_declaration] = STATE(532), - [sym_constructor_or_destructor_definition] = STATE(532), - [sym_constructor_or_destructor_declaration] = STATE(532), - [sym_friend_declaration] = STATE(532), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_alias_declaration] = STATE(532), - [sym_concept_definition] = STATE(532), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6206), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7476), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2399), - [sym_identifier] = ACTIONS(3932), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym__expression] = STATE(4248), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3978), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3980), - [anon_sym_using] = ACTIONS(3982), - [anon_sym_concept] = ACTIONS(227), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1489] = { - [sym_function_definition] = STATE(2463), - [sym_declaration] = STATE(2463), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5709), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2576), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6925), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4343), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__empty_declaration] = STATE(2463), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(2463), - [sym_operator_cast] = STATE(7495), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(2463), - [sym_operator_cast_declaration] = STATE(2463), - [sym_constructor_or_destructor_definition] = STATE(2463), - [sym_constructor_or_destructor_declaration] = STATE(2463), - [sym_friend_declaration] = STATE(2463), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_alias_declaration] = STATE(2463), - [sym_concept_definition] = STATE(2463), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6206), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7495), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(3932), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(2731), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(2733), - [anon_sym_using] = ACTIONS(3968), - [anon_sym_concept] = ACTIONS(3970), - }, - [1490] = { - [sym_function_definition] = STATE(1384), - [sym_declaration] = STATE(1384), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5716), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2604), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6941), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4237), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__empty_declaration] = STATE(1384), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2407), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1384), - [sym_operator_cast] = STATE(7446), - [sym__constructor_specifiers] = STATE(2407), - [sym_operator_cast_definition] = STATE(1384), - [sym_operator_cast_declaration] = STATE(1384), - [sym_constructor_or_destructor_definition] = STATE(1384), - [sym_constructor_or_destructor_declaration] = STATE(1384), - [sym_friend_declaration] = STATE(1384), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_alias_declaration] = STATE(1384), - [sym_concept_definition] = STATE(1384), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6206), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7446), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2407), - [sym_identifier] = ACTIONS(3932), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3950), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3952), - [anon_sym_using] = ACTIONS(3954), - [anon_sym_concept] = ACTIONS(301), - }, - [1491] = { - [sym_function_definition] = STATE(813), - [sym_declaration] = STATE(813), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5723), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2642), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6967), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4249), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__empty_declaration] = STATE(813), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2404), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(813), - [sym_operator_cast] = STATE(7442), - [sym__constructor_specifiers] = STATE(2404), - [sym_operator_cast_definition] = STATE(813), - [sym_operator_cast_declaration] = STATE(813), - [sym_constructor_or_destructor_definition] = STATE(813), - [sym_constructor_or_destructor_declaration] = STATE(813), - [sym_friend_declaration] = STATE(813), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_alias_declaration] = STATE(813), - [sym_concept_definition] = STATE(813), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6206), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7442), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2404), - [sym_identifier] = ACTIONS(3932), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3962), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3964), - [anon_sym_using] = ACTIONS(3966), - [anon_sym_concept] = ACTIONS(409), - }, - [1492] = { - [sym_function_definition] = STATE(2733), - [sym_declaration] = STATE(2733), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5780), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2563), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6947), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4284), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__empty_declaration] = STATE(2733), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2398), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(2733), - [sym_operator_cast] = STATE(7504), - [sym__constructor_specifiers] = STATE(2398), - [sym_operator_cast_definition] = STATE(2733), - [sym_operator_cast_declaration] = STATE(2733), - [sym_constructor_or_destructor_definition] = STATE(2733), - [sym_constructor_or_destructor_declaration] = STATE(2733), - [sym_friend_declaration] = STATE(2733), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_alias_declaration] = STATE(2733), - [sym_concept_definition] = STATE(2733), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6206), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7504), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2398), - [sym_identifier] = ACTIONS(3932), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3476), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3478), - [anon_sym_using] = ACTIONS(3946), - [anon_sym_concept] = ACTIONS(3948), - }, - [1493] = { - [sym_function_definition] = STATE(2825), - [sym_declaration] = STATE(2825), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5731), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2610), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6992), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4345), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__empty_declaration] = STATE(2825), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2403), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(2825), - [sym_operator_cast] = STATE(7452), - [sym__constructor_specifiers] = STATE(2403), - [sym_operator_cast_definition] = STATE(2825), - [sym_operator_cast_declaration] = STATE(2825), - [sym_constructor_or_destructor_definition] = STATE(2825), - [sym_constructor_or_destructor_declaration] = STATE(2825), - [sym_friend_declaration] = STATE(2825), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_alias_declaration] = STATE(2825), - [sym_concept_definition] = STATE(2825), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6206), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7452), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2403), - [sym_identifier] = ACTIONS(3932), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3714), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3716), - [anon_sym_using] = ACTIONS(3942), - [anon_sym_concept] = ACTIONS(3944), - }, - [1494] = { - [sym_function_definition] = STATE(1397), - [sym_declaration] = STATE(1397), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5758), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2601), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6953), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4280), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__empty_declaration] = STATE(1397), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2401), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(1397), - [sym_operator_cast] = STATE(7496), - [sym__constructor_specifiers] = STATE(2401), - [sym_operator_cast_definition] = STATE(1397), - [sym_operator_cast_declaration] = STATE(1397), - [sym_constructor_or_destructor_definition] = STATE(1397), - [sym_constructor_or_destructor_declaration] = STATE(1397), - [sym_friend_declaration] = STATE(1397), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_alias_declaration] = STATE(1397), - [sym_concept_definition] = STATE(1397), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6206), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7496), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2401), - [sym_identifier] = ACTIONS(3932), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3956), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3958), - [anon_sym_using] = ACTIONS(3960), - [anon_sym_concept] = ACTIONS(145), - }, - [1495] = { - [sym_function_definition] = STATE(2806), - [sym_declaration] = STATE(2806), - [sym__declaration_modifiers] = STATE(4276), - [sym__declaration_specifiers] = STATE(5705), - [sym_attribute_specifier] = STATE(4276), - [sym_attribute_declaration] = STATE(4276), - [sym_ms_declspec_modifier] = STATE(4276), - [sym_ms_based_modifier] = STATE(9661), - [sym_ms_call_modifier] = STATE(2632), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6976), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4276), - [sym_type_qualifier] = STATE(4276), - [sym__type_specifier] = STATE(4243), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym__empty_declaration] = STATE(2806), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4276), - [sym_alignas_specifier] = STATE(4276), - [sym_explicit_function_specifier] = STATE(2389), - [sym_dependent_type] = STATE(3958), - [sym_template_declaration] = STATE(2806), - [sym_operator_cast] = STATE(7505), - [sym__constructor_specifiers] = STATE(2389), - [sym_operator_cast_definition] = STATE(2806), - [sym_operator_cast_declaration] = STATE(2806), - [sym_constructor_or_destructor_definition] = STATE(2806), - [sym_constructor_or_destructor_declaration] = STATE(2806), - [sym_friend_declaration] = STATE(2806), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_alias_declaration] = STATE(2806), - [sym_concept_definition] = STATE(2806), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6206), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_qualified_operator_cast_identifier] = STATE(7505), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(3932), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3694), - [anon_sym_using] = ACTIONS(3936), - [anon_sym_concept] = ACTIONS(3938), - }, - [1496] = { - [sym_identifier] = ACTIONS(3984), - [anon_sym_COMMA] = ACTIONS(3986), - [anon_sym_RPAREN] = ACTIONS(3986), - [anon_sym_LPAREN2] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3986), - [anon_sym_TILDE] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3984), - [anon_sym_PLUS] = ACTIONS(3984), - [anon_sym_STAR] = ACTIONS(3986), - [anon_sym_AMP_AMP] = ACTIONS(3986), - [anon_sym_AMP] = ACTIONS(3984), - [anon_sym_SEMI] = ACTIONS(3986), - [anon_sym___extension__] = ACTIONS(3984), - [anon_sym_extern] = ACTIONS(3984), - [anon_sym___attribute__] = ACTIONS(3984), - [anon_sym_COLON_COLON] = ACTIONS(3986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3986), - [anon_sym___declspec] = ACTIONS(3984), - [anon_sym___based] = ACTIONS(3984), - [anon_sym_LBRACE] = ACTIONS(3986), - [anon_sym_signed] = ACTIONS(3984), - [anon_sym_unsigned] = ACTIONS(3984), - [anon_sym_long] = ACTIONS(3984), - [anon_sym_short] = ACTIONS(3984), - [anon_sym_LBRACK] = ACTIONS(3984), - [anon_sym_EQ] = ACTIONS(3986), - [anon_sym_static] = ACTIONS(3984), - [anon_sym_register] = ACTIONS(3984), - [anon_sym_inline] = ACTIONS(3984), - [anon_sym___inline] = ACTIONS(3984), - [anon_sym___inline__] = ACTIONS(3984), - [anon_sym___forceinline] = ACTIONS(3984), - [anon_sym_thread_local] = ACTIONS(3984), - [anon_sym___thread] = ACTIONS(3984), - [anon_sym_const] = ACTIONS(3984), - [anon_sym_constexpr] = ACTIONS(3984), - [anon_sym_volatile] = ACTIONS(3984), - [anon_sym_restrict] = ACTIONS(3984), - [anon_sym___restrict__] = ACTIONS(3984), - [anon_sym__Atomic] = ACTIONS(3984), - [anon_sym__Noreturn] = ACTIONS(3984), - [anon_sym_noreturn] = ACTIONS(3984), - [anon_sym_mutable] = ACTIONS(3984), - [anon_sym_constinit] = ACTIONS(3984), - [anon_sym_consteval] = ACTIONS(3984), - [sym_primitive_type] = ACTIONS(3984), - [anon_sym_enum] = ACTIONS(3984), - [anon_sym_class] = ACTIONS(3984), - [anon_sym_struct] = ACTIONS(3984), - [anon_sym_union] = ACTIONS(3984), - [anon_sym_if] = ACTIONS(3984), - [anon_sym_switch] = ACTIONS(3984), - [anon_sym_case] = ACTIONS(3984), - [anon_sym_default] = ACTIONS(3984), - [anon_sym_while] = ACTIONS(3984), - [anon_sym_do] = ACTIONS(3984), - [anon_sym_for] = ACTIONS(3984), - [anon_sym_return] = ACTIONS(3984), - [anon_sym_break] = ACTIONS(3984), - [anon_sym_continue] = ACTIONS(3984), - [anon_sym_goto] = ACTIONS(3984), - [anon_sym_not] = ACTIONS(3984), - [anon_sym_compl] = ACTIONS(3984), - [anon_sym_DASH_DASH] = ACTIONS(3986), - [anon_sym_PLUS_PLUS] = ACTIONS(3986), - [anon_sym_sizeof] = ACTIONS(3984), - [anon_sym___alignof__] = ACTIONS(3984), - [anon_sym___alignof] = ACTIONS(3984), - [anon_sym__alignof] = ACTIONS(3984), - [anon_sym_alignof] = ACTIONS(3984), - [anon_sym__Alignof] = ACTIONS(3984), - [anon_sym_offsetof] = ACTIONS(3984), - [anon_sym__Generic] = ACTIONS(3984), - [anon_sym_asm] = ACTIONS(3984), - [anon_sym___asm__] = ACTIONS(3984), - [sym_number_literal] = ACTIONS(3986), - [anon_sym_L_SQUOTE] = ACTIONS(3986), - [anon_sym_u_SQUOTE] = ACTIONS(3986), - [anon_sym_U_SQUOTE] = ACTIONS(3986), - [anon_sym_u8_SQUOTE] = ACTIONS(3986), - [anon_sym_SQUOTE] = ACTIONS(3986), - [anon_sym_L_DQUOTE] = ACTIONS(3986), - [anon_sym_u_DQUOTE] = ACTIONS(3986), - [anon_sym_U_DQUOTE] = ACTIONS(3986), - [anon_sym_u8_DQUOTE] = ACTIONS(3986), - [anon_sym_DQUOTE] = ACTIONS(3986), - [sym_true] = ACTIONS(3984), - [sym_false] = ACTIONS(3984), - [anon_sym_NULL] = ACTIONS(3984), - [anon_sym_nullptr] = ACTIONS(3984), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3984), - [anon_sym_decltype] = ACTIONS(3984), - [anon_sym_virtual] = ACTIONS(3984), - [anon_sym_alignas] = ACTIONS(3984), - [anon_sym_explicit] = ACTIONS(3984), - [anon_sym_typename] = ACTIONS(3984), - [anon_sym_template] = ACTIONS(3984), - [anon_sym_GT2] = ACTIONS(3986), - [anon_sym_operator] = ACTIONS(3984), - [anon_sym_try] = ACTIONS(3984), - [anon_sym_delete] = ACTIONS(3984), - [anon_sym_throw] = ACTIONS(3984), - [anon_sym_co_return] = ACTIONS(3984), - [anon_sym_co_yield] = ACTIONS(3984), - [anon_sym_R_DQUOTE] = ACTIONS(3986), - [anon_sym_LR_DQUOTE] = ACTIONS(3986), - [anon_sym_uR_DQUOTE] = ACTIONS(3986), - [anon_sym_UR_DQUOTE] = ACTIONS(3986), - [anon_sym_u8R_DQUOTE] = ACTIONS(3986), - [anon_sym_co_await] = ACTIONS(3984), - [anon_sym_new] = ACTIONS(3984), - [anon_sym_requires] = ACTIONS(3984), - [sym_this] = ACTIONS(3984), - }, - [1497] = { - [sym_identifier] = ACTIONS(3988), - [anon_sym_COMMA] = ACTIONS(3990), - [anon_sym_RPAREN] = ACTIONS(3990), - [anon_sym_LPAREN2] = ACTIONS(3990), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_TILDE] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3988), - [anon_sym_PLUS] = ACTIONS(3988), - [anon_sym_STAR] = ACTIONS(3990), - [anon_sym_AMP_AMP] = ACTIONS(3990), - [anon_sym_AMP] = ACTIONS(3988), - [anon_sym_SEMI] = ACTIONS(3990), - [anon_sym___extension__] = ACTIONS(3988), - [anon_sym_extern] = ACTIONS(3988), - [anon_sym___attribute__] = ACTIONS(3988), - [anon_sym_COLON_COLON] = ACTIONS(3990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3990), - [anon_sym___declspec] = ACTIONS(3988), - [anon_sym___based] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3990), - [anon_sym_signed] = ACTIONS(3988), - [anon_sym_unsigned] = ACTIONS(3988), - [anon_sym_long] = ACTIONS(3988), - [anon_sym_short] = ACTIONS(3988), - [anon_sym_LBRACK] = ACTIONS(3988), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_static] = ACTIONS(3988), - [anon_sym_register] = ACTIONS(3988), - [anon_sym_inline] = ACTIONS(3988), - [anon_sym___inline] = ACTIONS(3988), - [anon_sym___inline__] = ACTIONS(3988), - [anon_sym___forceinline] = ACTIONS(3988), - [anon_sym_thread_local] = ACTIONS(3988), - [anon_sym___thread] = ACTIONS(3988), - [anon_sym_const] = ACTIONS(3988), - [anon_sym_constexpr] = ACTIONS(3988), - [anon_sym_volatile] = ACTIONS(3988), - [anon_sym_restrict] = ACTIONS(3988), - [anon_sym___restrict__] = ACTIONS(3988), - [anon_sym__Atomic] = ACTIONS(3988), - [anon_sym__Noreturn] = ACTIONS(3988), - [anon_sym_noreturn] = ACTIONS(3988), - [anon_sym_mutable] = ACTIONS(3988), - [anon_sym_constinit] = ACTIONS(3988), - [anon_sym_consteval] = ACTIONS(3988), - [sym_primitive_type] = ACTIONS(3988), - [anon_sym_enum] = ACTIONS(3988), - [anon_sym_class] = ACTIONS(3988), - [anon_sym_struct] = ACTIONS(3988), - [anon_sym_union] = ACTIONS(3988), - [anon_sym_if] = ACTIONS(3988), - [anon_sym_switch] = ACTIONS(3988), - [anon_sym_case] = ACTIONS(3988), - [anon_sym_default] = ACTIONS(3988), - [anon_sym_while] = ACTIONS(3988), - [anon_sym_do] = ACTIONS(3988), - [anon_sym_for] = ACTIONS(3988), - [anon_sym_return] = ACTIONS(3988), - [anon_sym_break] = ACTIONS(3988), - [anon_sym_continue] = ACTIONS(3988), - [anon_sym_goto] = ACTIONS(3988), - [anon_sym_not] = ACTIONS(3988), - [anon_sym_compl] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3990), - [anon_sym_PLUS_PLUS] = ACTIONS(3990), - [anon_sym_sizeof] = ACTIONS(3988), - [anon_sym___alignof__] = ACTIONS(3988), - [anon_sym___alignof] = ACTIONS(3988), - [anon_sym__alignof] = ACTIONS(3988), - [anon_sym_alignof] = ACTIONS(3988), - [anon_sym__Alignof] = ACTIONS(3988), - [anon_sym_offsetof] = ACTIONS(3988), - [anon_sym__Generic] = ACTIONS(3988), - [anon_sym_asm] = ACTIONS(3988), - [anon_sym___asm__] = ACTIONS(3988), - [sym_number_literal] = ACTIONS(3990), - [anon_sym_L_SQUOTE] = ACTIONS(3990), - [anon_sym_u_SQUOTE] = ACTIONS(3990), - [anon_sym_U_SQUOTE] = ACTIONS(3990), - [anon_sym_u8_SQUOTE] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3990), - [anon_sym_L_DQUOTE] = ACTIONS(3990), - [anon_sym_u_DQUOTE] = ACTIONS(3990), - [anon_sym_U_DQUOTE] = ACTIONS(3990), - [anon_sym_u8_DQUOTE] = ACTIONS(3990), - [anon_sym_DQUOTE] = ACTIONS(3990), - [sym_true] = ACTIONS(3988), - [sym_false] = ACTIONS(3988), - [anon_sym_NULL] = ACTIONS(3988), - [anon_sym_nullptr] = ACTIONS(3988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3988), - [anon_sym_decltype] = ACTIONS(3988), - [anon_sym_virtual] = ACTIONS(3988), - [anon_sym_alignas] = ACTIONS(3988), - [anon_sym_explicit] = ACTIONS(3988), - [anon_sym_typename] = ACTIONS(3988), - [anon_sym_template] = ACTIONS(3988), - [anon_sym_GT2] = ACTIONS(3990), - [anon_sym_operator] = ACTIONS(3988), - [anon_sym_try] = ACTIONS(3988), - [anon_sym_delete] = ACTIONS(3988), - [anon_sym_throw] = ACTIONS(3988), - [anon_sym_co_return] = ACTIONS(3988), - [anon_sym_co_yield] = ACTIONS(3988), - [anon_sym_R_DQUOTE] = ACTIONS(3990), - [anon_sym_LR_DQUOTE] = ACTIONS(3990), - [anon_sym_uR_DQUOTE] = ACTIONS(3990), - [anon_sym_UR_DQUOTE] = ACTIONS(3990), - [anon_sym_u8R_DQUOTE] = ACTIONS(3990), - [anon_sym_co_await] = ACTIONS(3988), - [anon_sym_new] = ACTIONS(3988), - [anon_sym_requires] = ACTIONS(3988), - [sym_this] = ACTIONS(3988), - }, - [1498] = { - [sym_type_qualifier] = STATE(2552), - [sym__expression] = STATE(5264), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(2552), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(3992), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(3996), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [sym__expression] = STATE(4330), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -259276,93 +239270,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(3663), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1499] = { - [sym_type_qualifier] = STATE(1498), - [sym__expression] = STATE(5287), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(1498), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4000), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [1490] = { + [sym__expression] = STATE(4205), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -259388,93 +239367,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(3663), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1500] = { - [sym_type_qualifier] = STATE(1509), - [sym__expression] = STATE(5282), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(1509), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4002), + [1491] = { + [sym__expression] = STATE(4266), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4004), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -259500,93 +239464,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(3641), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1501] = { - [sym_type_qualifier] = STATE(1503), - [sym__expression] = STATE(5288), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(1503), - [sym_identifier] = ACTIONS(4006), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4008), + [1492] = { + [sym__expression] = STATE(4067), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4010), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -259612,93 +239561,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(3641), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1502] = { - [sym_type_qualifier] = STATE(2552), - [sym__expression] = STATE(5270), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(2552), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4012), + [1493] = { + [sym__expression] = STATE(4218), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4014), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -259724,93 +239658,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1503] = { - [sym_type_qualifier] = STATE(2552), - [sym__expression] = STATE(5285), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(2552), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4016), + [1494] = { + [sym__expression] = STATE(4321), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4018), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -259836,93 +239755,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1504] = { - [sym_type_qualifier] = STATE(2552), - [sym__expression] = STATE(5336), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(2552), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4020), + [1495] = { + [sym__expression] = STATE(4052), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4022), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -259948,93 +239852,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(3641), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1505] = { - [sym_type_qualifier] = STATE(1502), - [sym__expression] = STATE(5385), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(1502), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4026), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [1496] = { + [sym__expression] = STATE(4317), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -260060,93 +239949,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(3663), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1506] = { - [sym_type_qualifier] = STATE(1513), - [sym__expression] = STATE(5258), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(1513), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4028), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4030), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [1497] = { + [sym__expression] = STATE(4325), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -260172,93 +240046,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(3663), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1507] = { - [sym_type_qualifier] = STATE(1510), - [sym__expression] = STATE(5269), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(1510), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4032), + [1498] = { + [sym__expression] = STATE(3980), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4034), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -260284,93 +240143,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1508] = { - [sym_type_qualifier] = STATE(1504), - [sym__expression] = STATE(5319), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(1504), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4038), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [1499] = { + [sym__expression] = STATE(4186), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -260396,93 +240240,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(3663), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1509] = { - [sym_type_qualifier] = STATE(2552), - [sym__expression] = STATE(5383), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(2552), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4040), + [1500] = { + [sym__expression] = STATE(4128), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4042), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -260508,93 +240337,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1510] = { - [sym_type_qualifier] = STATE(2552), - [sym__expression] = STATE(5364), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(2552), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4044), + [1501] = { + [sym__expression] = STATE(3966), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4046), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -260620,93 +240434,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1511] = { - [sym_type_qualifier] = STATE(1519), - [sym__expression] = STATE(5328), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4048), + [1502] = { + [sym__expression] = STATE(4314), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4050), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -260732,205 +240531,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1512] = { - [sym_identifier] = ACTIONS(4052), - [anon_sym_LPAREN2] = ACTIONS(4055), - [anon_sym_BANG] = ACTIONS(4058), - [anon_sym_TILDE] = ACTIONS(4055), - [anon_sym_DASH] = ACTIONS(4060), - [anon_sym_PLUS] = ACTIONS(4060), - [anon_sym_STAR] = ACTIONS(4055), - [anon_sym_AMP_AMP] = ACTIONS(4062), - [anon_sym_AMP] = ACTIONS(4052), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym___extension__] = ACTIONS(4064), - [anon_sym_extern] = ACTIONS(4064), - [anon_sym___attribute__] = ACTIONS(4064), - [anon_sym_COLON_COLON] = ACTIONS(4055), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4055), - [anon_sym___declspec] = ACTIONS(4064), - [anon_sym___based] = ACTIONS(4064), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_signed] = ACTIONS(4064), - [anon_sym_unsigned] = ACTIONS(4064), - [anon_sym_long] = ACTIONS(4064), - [anon_sym_short] = ACTIONS(4064), - [anon_sym_LBRACK] = ACTIONS(4052), - [anon_sym_static] = ACTIONS(4064), - [anon_sym_register] = ACTIONS(4064), - [anon_sym_inline] = ACTIONS(4064), - [anon_sym___inline] = ACTIONS(4064), - [anon_sym___inline__] = ACTIONS(4064), - [anon_sym___forceinline] = ACTIONS(4064), - [anon_sym_thread_local] = ACTIONS(4064), - [anon_sym___thread] = ACTIONS(4064), - [anon_sym_const] = ACTIONS(4064), - [anon_sym_constexpr] = ACTIONS(4064), - [anon_sym_volatile] = ACTIONS(4064), - [anon_sym_restrict] = ACTIONS(4064), - [anon_sym___restrict__] = ACTIONS(4064), - [anon_sym__Atomic] = ACTIONS(4064), - [anon_sym__Noreturn] = ACTIONS(4064), - [anon_sym_noreturn] = ACTIONS(4064), - [anon_sym_mutable] = ACTIONS(4064), - [anon_sym_constinit] = ACTIONS(4064), - [anon_sym_consteval] = ACTIONS(4064), - [sym_primitive_type] = ACTIONS(4052), - [anon_sym_enum] = ACTIONS(4064), - [anon_sym_class] = ACTIONS(4064), - [anon_sym_struct] = ACTIONS(4064), - [anon_sym_union] = ACTIONS(4064), - [anon_sym_if] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(4060), - [anon_sym_case] = ACTIONS(4060), - [anon_sym_default] = ACTIONS(4060), - [anon_sym_while] = ACTIONS(4060), - [anon_sym_do] = ACTIONS(4060), - [anon_sym_for] = ACTIONS(4060), - [anon_sym_return] = ACTIONS(4060), - [anon_sym_break] = ACTIONS(4060), - [anon_sym_continue] = ACTIONS(4060), - [anon_sym_goto] = ACTIONS(4060), - [anon_sym_not] = ACTIONS(4060), - [anon_sym_compl] = ACTIONS(4060), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_sizeof] = ACTIONS(4060), - [anon_sym___alignof__] = ACTIONS(4060), - [anon_sym___alignof] = ACTIONS(4060), - [anon_sym__alignof] = ACTIONS(4060), - [anon_sym_alignof] = ACTIONS(4060), - [anon_sym__Alignof] = ACTIONS(4060), - [anon_sym_offsetof] = ACTIONS(4060), - [anon_sym__Generic] = ACTIONS(4060), - [anon_sym_asm] = ACTIONS(4060), - [anon_sym___asm__] = ACTIONS(4060), - [sym_number_literal] = ACTIONS(4058), - [anon_sym_L_SQUOTE] = ACTIONS(4058), - [anon_sym_u_SQUOTE] = ACTIONS(4058), - [anon_sym_U_SQUOTE] = ACTIONS(4058), - [anon_sym_u8_SQUOTE] = ACTIONS(4058), - [anon_sym_SQUOTE] = ACTIONS(4058), - [anon_sym_L_DQUOTE] = ACTIONS(4058), - [anon_sym_u_DQUOTE] = ACTIONS(4058), - [anon_sym_U_DQUOTE] = ACTIONS(4058), - [anon_sym_u8_DQUOTE] = ACTIONS(4058), - [anon_sym_DQUOTE] = ACTIONS(4058), - [sym_true] = ACTIONS(4060), - [sym_false] = ACTIONS(4060), - [anon_sym_NULL] = ACTIONS(4060), - [anon_sym_nullptr] = ACTIONS(4060), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4064), - [anon_sym_decltype] = ACTIONS(4052), - [anon_sym_virtual] = ACTIONS(4064), - [anon_sym_alignas] = ACTIONS(4064), - [anon_sym_explicit] = ACTIONS(4064), - [anon_sym_typename] = ACTIONS(4064), - [anon_sym_template] = ACTIONS(4052), - [anon_sym_operator] = ACTIONS(4064), - [anon_sym_try] = ACTIONS(4060), - [anon_sym_delete] = ACTIONS(4060), - [anon_sym_throw] = ACTIONS(4060), - [anon_sym_co_return] = ACTIONS(4060), - [anon_sym_co_yield] = ACTIONS(4060), - [anon_sym_R_DQUOTE] = ACTIONS(4058), - [anon_sym_LR_DQUOTE] = ACTIONS(4058), - [anon_sym_uR_DQUOTE] = ACTIONS(4058), - [anon_sym_UR_DQUOTE] = ACTIONS(4058), - [anon_sym_u8R_DQUOTE] = ACTIONS(4058), - [anon_sym_co_await] = ACTIONS(4060), - [anon_sym_new] = ACTIONS(4060), - [anon_sym_requires] = ACTIONS(4060), - [sym_this] = ACTIONS(4060), - }, - [1513] = { - [sym_type_qualifier] = STATE(2552), - [sym__expression] = STATE(5248), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(2552), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4066), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4068), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [1503] = { + [sym__expression] = STATE(4315), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -260956,93 +240628,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(3663), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1514] = { - [sym_type_qualifier] = STATE(2552), - [sym__expression] = STATE(5273), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(2552), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4070), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4072), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [1504] = { + [sym__expression] = STATE(4302), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -261068,93 +240725,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(3663), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1515] = { - [sym_type_qualifier] = STATE(2552), - [sym__expression] = STATE(5277), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(2552), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4074), + [1505] = { + [sym__expression] = STATE(4308), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4076), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -261180,93 +240822,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1516] = { - [sym_type_qualifier] = STATE(1514), - [sym__expression] = STATE(5293), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(1514), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4078), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4080), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [1506] = { + [sym__expression] = STATE(4230), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -261292,93 +240919,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(3663), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1517] = { - [sym_type_qualifier] = STATE(1503), - [sym__expression] = STATE(5288), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(1503), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4008), + [1507] = { + [sym__expression] = STATE(3973), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4010), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -261404,93 +241016,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1518] = { - [sym_type_qualifier] = STATE(1515), - [sym__expression] = STATE(5298), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(1515), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4082), + [1508] = { + [sym__expression] = STATE(4214), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4084), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -261516,93 +241113,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1519] = { - [sym_type_qualifier] = STATE(2552), - [sym__expression] = STATE(5300), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [aux_sym_type_definition_repeat1] = STATE(2552), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4086), + [1509] = { + [sym__expression] = STATE(4311), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4088), - [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_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -261628,20548 +241210,19293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [anon_sym_decltype] = ACTIONS(2044), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(3641), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(213), }, - [1520] = { - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7174), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6917), - [sym_array_declarator] = STATE(6917), - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3987), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6257), - [sym_qualified_identifier] = STATE(3993), - [sym_qualified_type_identifier] = STATE(8745), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(3634), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(3638), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(2012), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [1521] = { - [sym_catch_clause] = STATE(1523), - [aux_sym_constructor_try_statement_repeat1] = STATE(1523), - [sym_identifier] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2226), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym___extension__] = ACTIONS(2224), - [anon_sym_typedef] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym___attribute__] = ACTIONS(2224), - [anon_sym_COLON_COLON] = ACTIONS(2226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2226), - [anon_sym___declspec] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_signed] = ACTIONS(2224), - [anon_sym_unsigned] = ACTIONS(2224), - [anon_sym_long] = ACTIONS(2224), - [anon_sym_short] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2224), - [anon_sym_register] = ACTIONS(2224), - [anon_sym_inline] = ACTIONS(2224), - [anon_sym___inline] = ACTIONS(2224), - [anon_sym___inline__] = ACTIONS(2224), - [anon_sym___forceinline] = ACTIONS(2224), - [anon_sym_thread_local] = ACTIONS(2224), - [anon_sym___thread] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [anon_sym_constexpr] = ACTIONS(2224), - [anon_sym_volatile] = ACTIONS(2224), - [anon_sym_restrict] = ACTIONS(2224), - [anon_sym___restrict__] = ACTIONS(2224), - [anon_sym__Atomic] = ACTIONS(2224), - [anon_sym__Noreturn] = ACTIONS(2224), - [anon_sym_noreturn] = ACTIONS(2224), - [anon_sym_mutable] = ACTIONS(2224), - [anon_sym_constinit] = ACTIONS(2224), - [anon_sym_consteval] = ACTIONS(2224), - [sym_primitive_type] = ACTIONS(2224), - [anon_sym_enum] = ACTIONS(2224), - [anon_sym_class] = ACTIONS(2224), - [anon_sym_struct] = ACTIONS(2224), - [anon_sym_union] = ACTIONS(2224), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_else] = ACTIONS(2224), - [anon_sym_switch] = ACTIONS(2224), - [anon_sym_while] = ACTIONS(2224), - [anon_sym_do] = ACTIONS(2224), - [anon_sym_for] = ACTIONS(2224), - [anon_sym_return] = ACTIONS(2224), - [anon_sym_break] = ACTIONS(2224), - [anon_sym_continue] = ACTIONS(2224), - [anon_sym_goto] = ACTIONS(2224), - [anon_sym_not] = ACTIONS(2224), - [anon_sym_compl] = ACTIONS(2224), - [anon_sym_DASH_DASH] = ACTIONS(2226), - [anon_sym_PLUS_PLUS] = ACTIONS(2226), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym___alignof__] = ACTIONS(2224), - [anon_sym___alignof] = ACTIONS(2224), - [anon_sym__alignof] = ACTIONS(2224), - [anon_sym_alignof] = ACTIONS(2224), - [anon_sym__Alignof] = ACTIONS(2224), - [anon_sym_offsetof] = ACTIONS(2224), - [anon_sym__Generic] = ACTIONS(2224), - [anon_sym_asm] = ACTIONS(2224), - [anon_sym___asm__] = ACTIONS(2224), - [sym_number_literal] = ACTIONS(2226), - [anon_sym_L_SQUOTE] = ACTIONS(2226), - [anon_sym_u_SQUOTE] = ACTIONS(2226), - [anon_sym_U_SQUOTE] = ACTIONS(2226), - [anon_sym_u8_SQUOTE] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2226), - [anon_sym_L_DQUOTE] = ACTIONS(2226), - [anon_sym_u_DQUOTE] = ACTIONS(2226), - [anon_sym_U_DQUOTE] = ACTIONS(2226), - [anon_sym_u8_DQUOTE] = ACTIONS(2226), - [anon_sym_DQUOTE] = ACTIONS(2226), - [sym_true] = ACTIONS(2224), - [sym_false] = ACTIONS(2224), - [anon_sym_NULL] = ACTIONS(2224), - [anon_sym_nullptr] = ACTIONS(2224), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2224), - [anon_sym_decltype] = ACTIONS(2224), - [anon_sym_virtual] = ACTIONS(2224), - [anon_sym_alignas] = ACTIONS(2224), - [anon_sym_typename] = ACTIONS(2224), - [anon_sym_template] = ACTIONS(2224), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_delete] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2224), - [anon_sym_co_return] = ACTIONS(2224), - [anon_sym_co_yield] = ACTIONS(2224), - [anon_sym_catch] = ACTIONS(4090), - [anon_sym_R_DQUOTE] = ACTIONS(2226), - [anon_sym_LR_DQUOTE] = ACTIONS(2226), - [anon_sym_uR_DQUOTE] = ACTIONS(2226), - [anon_sym_UR_DQUOTE] = ACTIONS(2226), - [anon_sym_u8R_DQUOTE] = ACTIONS(2226), - [anon_sym_co_await] = ACTIONS(2224), - [anon_sym_new] = ACTIONS(2224), - [anon_sym_requires] = ACTIONS(2224), - [sym_this] = ACTIONS(2224), - }, - [1522] = { - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7174), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6917), - [sym_array_declarator] = STATE(6917), - [sym__expression] = STATE(3714), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3848), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6388), - [sym_qualified_identifier] = STATE(3927), - [sym_qualified_type_identifier] = STATE(8447), - [sym_operator_name] = STATE(6917), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(3484), - [anon_sym_LPAREN2] = ACTIONS(3486), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1990), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(2012), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), + [1510] = { + [sym__expression] = STATE(4274), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1523] = { - [sym_catch_clause] = STATE(1523), - [aux_sym_constructor_try_statement_repeat1] = STATE(1523), - [sym_identifier] = ACTIONS(2230), - [anon_sym_LPAREN2] = ACTIONS(2232), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_SEMI] = ACTIONS(2232), - [anon_sym___extension__] = ACTIONS(2230), - [anon_sym_typedef] = ACTIONS(2230), - [anon_sym_extern] = ACTIONS(2230), - [anon_sym___attribute__] = ACTIONS(2230), - [anon_sym_COLON_COLON] = ACTIONS(2232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2232), - [anon_sym___declspec] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_signed] = ACTIONS(2230), - [anon_sym_unsigned] = ACTIONS(2230), - [anon_sym_long] = ACTIONS(2230), - [anon_sym_short] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_register] = ACTIONS(2230), - [anon_sym_inline] = ACTIONS(2230), - [anon_sym___inline] = ACTIONS(2230), - [anon_sym___inline__] = ACTIONS(2230), - [anon_sym___forceinline] = ACTIONS(2230), - [anon_sym_thread_local] = ACTIONS(2230), - [anon_sym___thread] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_constexpr] = ACTIONS(2230), - [anon_sym_volatile] = ACTIONS(2230), - [anon_sym_restrict] = ACTIONS(2230), - [anon_sym___restrict__] = ACTIONS(2230), - [anon_sym__Atomic] = ACTIONS(2230), - [anon_sym__Noreturn] = ACTIONS(2230), - [anon_sym_noreturn] = ACTIONS(2230), - [anon_sym_mutable] = ACTIONS(2230), - [anon_sym_constinit] = ACTIONS(2230), - [anon_sym_consteval] = ACTIONS(2230), - [sym_primitive_type] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [anon_sym_class] = ACTIONS(2230), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_union] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_else] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_goto] = ACTIONS(2230), - [anon_sym_not] = ACTIONS(2230), - [anon_sym_compl] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2232), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2230), - [anon_sym___alignof] = ACTIONS(2230), - [anon_sym__alignof] = ACTIONS(2230), - [anon_sym_alignof] = ACTIONS(2230), - [anon_sym__Alignof] = ACTIONS(2230), - [anon_sym_offsetof] = ACTIONS(2230), - [anon_sym__Generic] = ACTIONS(2230), - [anon_sym_asm] = ACTIONS(2230), - [anon_sym___asm__] = ACTIONS(2230), - [sym_number_literal] = ACTIONS(2232), - [anon_sym_L_SQUOTE] = ACTIONS(2232), - [anon_sym_u_SQUOTE] = ACTIONS(2232), - [anon_sym_U_SQUOTE] = ACTIONS(2232), - [anon_sym_u8_SQUOTE] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2232), - [anon_sym_L_DQUOTE] = ACTIONS(2232), - [anon_sym_u_DQUOTE] = ACTIONS(2232), - [anon_sym_U_DQUOTE] = ACTIONS(2232), - [anon_sym_u8_DQUOTE] = ACTIONS(2232), - [anon_sym_DQUOTE] = ACTIONS(2232), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [anon_sym_NULL] = ACTIONS(2230), - [anon_sym_nullptr] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2230), - [anon_sym_decltype] = ACTIONS(2230), - [anon_sym_virtual] = ACTIONS(2230), - [anon_sym_alignas] = ACTIONS(2230), - [anon_sym_typename] = ACTIONS(2230), - [anon_sym_template] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_delete] = ACTIONS(2230), - [anon_sym_throw] = ACTIONS(2230), - [anon_sym_co_return] = ACTIONS(2230), - [anon_sym_co_yield] = ACTIONS(2230), - [anon_sym_catch] = ACTIONS(4092), - [anon_sym_R_DQUOTE] = ACTIONS(2232), - [anon_sym_LR_DQUOTE] = ACTIONS(2232), - [anon_sym_uR_DQUOTE] = ACTIONS(2232), - [anon_sym_UR_DQUOTE] = ACTIONS(2232), - [anon_sym_u8R_DQUOTE] = ACTIONS(2232), - [anon_sym_co_await] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_requires] = ACTIONS(2230), - [sym_this] = ACTIONS(2230), + [1511] = { + [sym__expression] = STATE(4313), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1524] = { - [sym_identifier] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(2196), - [anon_sym_BANG] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2198), - [anon_sym_PLUS] = ACTIONS(2198), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2196), - [anon_sym_SEMI] = ACTIONS(2196), - [anon_sym___extension__] = ACTIONS(2198), - [anon_sym_typedef] = ACTIONS(2198), - [anon_sym_extern] = ACTIONS(2198), - [anon_sym___attribute__] = ACTIONS(2198), - [anon_sym_COLON_COLON] = ACTIONS(2196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2196), - [anon_sym___declspec] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2196), - [anon_sym_signed] = ACTIONS(2198), - [anon_sym_unsigned] = ACTIONS(2198), - [anon_sym_long] = ACTIONS(2198), - [anon_sym_short] = ACTIONS(2198), - [anon_sym_LBRACK] = ACTIONS(2198), - [anon_sym_static] = ACTIONS(2198), - [anon_sym_register] = ACTIONS(2198), - [anon_sym_inline] = ACTIONS(2198), - [anon_sym___inline] = ACTIONS(2198), - [anon_sym___inline__] = ACTIONS(2198), - [anon_sym___forceinline] = ACTIONS(2198), - [anon_sym_thread_local] = ACTIONS(2198), - [anon_sym___thread] = ACTIONS(2198), - [anon_sym_const] = ACTIONS(2198), - [anon_sym_constexpr] = ACTIONS(2198), - [anon_sym_volatile] = ACTIONS(2198), - [anon_sym_restrict] = ACTIONS(2198), - [anon_sym___restrict__] = ACTIONS(2198), - [anon_sym__Atomic] = ACTIONS(2198), - [anon_sym__Noreturn] = ACTIONS(2198), - [anon_sym_noreturn] = ACTIONS(2198), - [anon_sym_mutable] = ACTIONS(2198), - [anon_sym_constinit] = ACTIONS(2198), - [anon_sym_consteval] = ACTIONS(2198), - [sym_primitive_type] = ACTIONS(2198), - [anon_sym_enum] = ACTIONS(2198), - [anon_sym_class] = ACTIONS(2198), - [anon_sym_struct] = ACTIONS(2198), - [anon_sym_union] = ACTIONS(2198), - [anon_sym_if] = ACTIONS(2198), - [anon_sym_else] = ACTIONS(2198), - [anon_sym_switch] = ACTIONS(2198), - [anon_sym_while] = ACTIONS(2198), - [anon_sym_do] = ACTIONS(2198), - [anon_sym_for] = ACTIONS(2198), - [anon_sym_return] = ACTIONS(2198), - [anon_sym_break] = ACTIONS(2198), - [anon_sym_continue] = ACTIONS(2198), - [anon_sym_goto] = ACTIONS(2198), - [anon_sym_not] = ACTIONS(2198), - [anon_sym_compl] = ACTIONS(2198), - [anon_sym_DASH_DASH] = ACTIONS(2196), - [anon_sym_PLUS_PLUS] = ACTIONS(2196), - [anon_sym_sizeof] = ACTIONS(2198), - [anon_sym___alignof__] = ACTIONS(2198), - [anon_sym___alignof] = ACTIONS(2198), - [anon_sym__alignof] = ACTIONS(2198), - [anon_sym_alignof] = ACTIONS(2198), - [anon_sym__Alignof] = ACTIONS(2198), - [anon_sym_offsetof] = ACTIONS(2198), - [anon_sym__Generic] = ACTIONS(2198), - [anon_sym_asm] = ACTIONS(2198), - [anon_sym___asm__] = ACTIONS(2198), - [sym_number_literal] = ACTIONS(2196), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2196), - [anon_sym_u_DQUOTE] = ACTIONS(2196), - [anon_sym_U_DQUOTE] = ACTIONS(2196), - [anon_sym_u8_DQUOTE] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2196), - [sym_true] = ACTIONS(2198), - [sym_false] = ACTIONS(2198), - [anon_sym_NULL] = ACTIONS(2198), - [anon_sym_nullptr] = ACTIONS(2198), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2198), - [anon_sym_decltype] = ACTIONS(2198), - [anon_sym_virtual] = ACTIONS(2198), - [anon_sym_alignas] = ACTIONS(2198), - [anon_sym_typename] = ACTIONS(2198), - [anon_sym_template] = ACTIONS(2198), - [anon_sym_try] = ACTIONS(2198), - [anon_sym_delete] = ACTIONS(2198), - [anon_sym_throw] = ACTIONS(2198), - [anon_sym_co_return] = ACTIONS(2198), - [anon_sym_co_yield] = ACTIONS(2198), - [anon_sym_catch] = ACTIONS(2198), - [anon_sym_R_DQUOTE] = ACTIONS(2196), - [anon_sym_LR_DQUOTE] = ACTIONS(2196), - [anon_sym_uR_DQUOTE] = ACTIONS(2196), - [anon_sym_UR_DQUOTE] = ACTIONS(2196), - [anon_sym_u8R_DQUOTE] = ACTIONS(2196), - [anon_sym_co_await] = ACTIONS(2198), - [anon_sym_new] = ACTIONS(2198), - [anon_sym_requires] = ACTIONS(2198), - [sym_this] = ACTIONS(2198), + [1512] = { + [sym__expression] = STATE(2530), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1525] = { - [sym_else_clause] = STATE(1537), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_TILDE] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2756), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym___extension__] = ACTIONS(2754), - [anon_sym_typedef] = ACTIONS(2754), - [anon_sym_extern] = ACTIONS(2754), - [anon_sym___attribute__] = ACTIONS(2754), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2756), - [anon_sym___declspec] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_signed] = ACTIONS(2754), - [anon_sym_unsigned] = ACTIONS(2754), - [anon_sym_long] = ACTIONS(2754), - [anon_sym_short] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_static] = ACTIONS(2754), - [anon_sym_register] = ACTIONS(2754), - [anon_sym_inline] = ACTIONS(2754), - [anon_sym___inline] = ACTIONS(2754), - [anon_sym___inline__] = ACTIONS(2754), - [anon_sym___forceinline] = ACTIONS(2754), - [anon_sym_thread_local] = ACTIONS(2754), - [anon_sym___thread] = ACTIONS(2754), - [anon_sym_const] = ACTIONS(2754), - [anon_sym_constexpr] = ACTIONS(2754), - [anon_sym_volatile] = ACTIONS(2754), - [anon_sym_restrict] = ACTIONS(2754), - [anon_sym___restrict__] = ACTIONS(2754), - [anon_sym__Atomic] = ACTIONS(2754), - [anon_sym__Noreturn] = ACTIONS(2754), - [anon_sym_noreturn] = ACTIONS(2754), - [anon_sym_mutable] = ACTIONS(2754), - [anon_sym_constinit] = ACTIONS(2754), - [anon_sym_consteval] = ACTIONS(2754), - [sym_primitive_type] = ACTIONS(2754), - [anon_sym_enum] = ACTIONS(2754), - [anon_sym_class] = ACTIONS(2754), - [anon_sym_struct] = ACTIONS(2754), - [anon_sym_union] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_else] = ACTIONS(4095), - [anon_sym_switch] = ACTIONS(2754), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_break] = ACTIONS(2754), - [anon_sym_continue] = ACTIONS(2754), - [anon_sym_goto] = ACTIONS(2754), - [anon_sym_not] = ACTIONS(2754), - [anon_sym_compl] = ACTIONS(2754), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_sizeof] = ACTIONS(2754), - [anon_sym___alignof__] = ACTIONS(2754), - [anon_sym___alignof] = ACTIONS(2754), - [anon_sym__alignof] = ACTIONS(2754), - [anon_sym_alignof] = ACTIONS(2754), - [anon_sym__Alignof] = ACTIONS(2754), - [anon_sym_offsetof] = ACTIONS(2754), - [anon_sym__Generic] = ACTIONS(2754), - [anon_sym_asm] = ACTIONS(2754), - [anon_sym___asm__] = ACTIONS(2754), - [sym_number_literal] = ACTIONS(2756), - [anon_sym_L_SQUOTE] = ACTIONS(2756), - [anon_sym_u_SQUOTE] = ACTIONS(2756), - [anon_sym_U_SQUOTE] = ACTIONS(2756), - [anon_sym_u8_SQUOTE] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_L_DQUOTE] = ACTIONS(2756), - [anon_sym_u_DQUOTE] = ACTIONS(2756), - [anon_sym_U_DQUOTE] = ACTIONS(2756), - [anon_sym_u8_DQUOTE] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [sym_true] = ACTIONS(2754), - [sym_false] = ACTIONS(2754), - [anon_sym_NULL] = ACTIONS(2754), - [anon_sym_nullptr] = ACTIONS(2754), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2754), - [anon_sym_decltype] = ACTIONS(2754), - [anon_sym_virtual] = ACTIONS(2754), - [anon_sym_alignas] = ACTIONS(2754), - [anon_sym_typename] = ACTIONS(2754), - [anon_sym_template] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_delete] = ACTIONS(2754), - [anon_sym_throw] = ACTIONS(2754), - [anon_sym_co_return] = ACTIONS(2754), - [anon_sym_co_yield] = ACTIONS(2754), - [anon_sym_R_DQUOTE] = ACTIONS(2756), - [anon_sym_LR_DQUOTE] = ACTIONS(2756), - [anon_sym_uR_DQUOTE] = ACTIONS(2756), - [anon_sym_UR_DQUOTE] = ACTIONS(2756), - [anon_sym_u8R_DQUOTE] = ACTIONS(2756), - [anon_sym_co_await] = ACTIONS(2754), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_requires] = ACTIONS(2754), - [sym_this] = ACTIONS(2754), + [1513] = { + [sym__expression] = STATE(3989), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1526] = { - [sym_else_clause] = STATE(1575), - [sym_identifier] = ACTIONS(2762), - [anon_sym_LPAREN2] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2762), - [anon_sym_PLUS] = ACTIONS(2762), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_SEMI] = ACTIONS(2764), - [anon_sym___extension__] = ACTIONS(2762), - [anon_sym_typedef] = ACTIONS(2762), - [anon_sym_extern] = ACTIONS(2762), - [anon_sym___attribute__] = ACTIONS(2762), - [anon_sym_COLON_COLON] = ACTIONS(2764), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), - [anon_sym___declspec] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_signed] = ACTIONS(2762), - [anon_sym_unsigned] = ACTIONS(2762), - [anon_sym_long] = ACTIONS(2762), - [anon_sym_short] = ACTIONS(2762), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_static] = ACTIONS(2762), - [anon_sym_register] = ACTIONS(2762), - [anon_sym_inline] = ACTIONS(2762), - [anon_sym___inline] = ACTIONS(2762), - [anon_sym___inline__] = ACTIONS(2762), - [anon_sym___forceinline] = ACTIONS(2762), - [anon_sym_thread_local] = ACTIONS(2762), - [anon_sym___thread] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2762), - [anon_sym_constexpr] = ACTIONS(2762), - [anon_sym_volatile] = ACTIONS(2762), - [anon_sym_restrict] = ACTIONS(2762), - [anon_sym___restrict__] = ACTIONS(2762), - [anon_sym__Atomic] = ACTIONS(2762), - [anon_sym__Noreturn] = ACTIONS(2762), - [anon_sym_noreturn] = ACTIONS(2762), - [anon_sym_mutable] = ACTIONS(2762), - [anon_sym_constinit] = ACTIONS(2762), - [anon_sym_consteval] = ACTIONS(2762), - [sym_primitive_type] = ACTIONS(2762), - [anon_sym_enum] = ACTIONS(2762), - [anon_sym_class] = ACTIONS(2762), - [anon_sym_struct] = ACTIONS(2762), - [anon_sym_union] = ACTIONS(2762), - [anon_sym_if] = ACTIONS(2762), - [anon_sym_else] = ACTIONS(4095), - [anon_sym_switch] = ACTIONS(2762), - [anon_sym_while] = ACTIONS(2762), - [anon_sym_do] = ACTIONS(2762), - [anon_sym_for] = ACTIONS(2762), - [anon_sym_return] = ACTIONS(2762), - [anon_sym_break] = ACTIONS(2762), - [anon_sym_continue] = ACTIONS(2762), - [anon_sym_goto] = ACTIONS(2762), - [anon_sym_not] = ACTIONS(2762), - [anon_sym_compl] = ACTIONS(2762), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2764), - [anon_sym_sizeof] = ACTIONS(2762), - [anon_sym___alignof__] = ACTIONS(2762), - [anon_sym___alignof] = ACTIONS(2762), - [anon_sym__alignof] = ACTIONS(2762), - [anon_sym_alignof] = ACTIONS(2762), - [anon_sym__Alignof] = ACTIONS(2762), - [anon_sym_offsetof] = ACTIONS(2762), - [anon_sym__Generic] = ACTIONS(2762), - [anon_sym_asm] = ACTIONS(2762), - [anon_sym___asm__] = ACTIONS(2762), - [sym_number_literal] = ACTIONS(2764), - [anon_sym_L_SQUOTE] = ACTIONS(2764), - [anon_sym_u_SQUOTE] = ACTIONS(2764), - [anon_sym_U_SQUOTE] = ACTIONS(2764), - [anon_sym_u8_SQUOTE] = ACTIONS(2764), - [anon_sym_SQUOTE] = ACTIONS(2764), - [anon_sym_L_DQUOTE] = ACTIONS(2764), - [anon_sym_u_DQUOTE] = ACTIONS(2764), - [anon_sym_U_DQUOTE] = ACTIONS(2764), - [anon_sym_u8_DQUOTE] = ACTIONS(2764), - [anon_sym_DQUOTE] = ACTIONS(2764), - [sym_true] = ACTIONS(2762), - [sym_false] = ACTIONS(2762), - [anon_sym_NULL] = ACTIONS(2762), - [anon_sym_nullptr] = ACTIONS(2762), + [1514] = { + [sym__expression] = STATE(4263), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2762), - [anon_sym_decltype] = ACTIONS(2762), - [anon_sym_virtual] = ACTIONS(2762), - [anon_sym_alignas] = ACTIONS(2762), - [anon_sym_typename] = ACTIONS(2762), - [anon_sym_template] = ACTIONS(2762), - [anon_sym_try] = ACTIONS(2762), - [anon_sym_delete] = ACTIONS(2762), - [anon_sym_throw] = ACTIONS(2762), - [anon_sym_co_return] = ACTIONS(2762), - [anon_sym_co_yield] = ACTIONS(2762), - [anon_sym_R_DQUOTE] = ACTIONS(2764), - [anon_sym_LR_DQUOTE] = ACTIONS(2764), - [anon_sym_uR_DQUOTE] = ACTIONS(2764), - [anon_sym_UR_DQUOTE] = ACTIONS(2764), - [anon_sym_u8R_DQUOTE] = ACTIONS(2764), - [anon_sym_co_await] = ACTIONS(2762), - [anon_sym_new] = ACTIONS(2762), - [anon_sym_requires] = ACTIONS(2762), - [sym_this] = ACTIONS(2762), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1527] = { - [sym_identifier] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_goto] = ACTIONS(2194), - [anon_sym_not] = ACTIONS(2194), - [anon_sym_compl] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_sizeof] = ACTIONS(2194), - [anon_sym___alignof__] = ACTIONS(2194), - [anon_sym___alignof] = ACTIONS(2194), - [anon_sym__alignof] = ACTIONS(2194), - [anon_sym_alignof] = ACTIONS(2194), - [anon_sym__Alignof] = ACTIONS(2194), - [anon_sym_offsetof] = ACTIONS(2194), - [anon_sym__Generic] = ACTIONS(2194), - [anon_sym_asm] = ACTIONS(2194), - [anon_sym___asm__] = ACTIONS(2194), - [sym_number_literal] = ACTIONS(2192), - [anon_sym_L_SQUOTE] = ACTIONS(2192), - [anon_sym_u_SQUOTE] = ACTIONS(2192), - [anon_sym_U_SQUOTE] = ACTIONS(2192), - [anon_sym_u8_SQUOTE] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_L_DQUOTE] = ACTIONS(2192), - [anon_sym_u_DQUOTE] = ACTIONS(2192), - [anon_sym_U_DQUOTE] = ACTIONS(2192), - [anon_sym_u8_DQUOTE] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [anon_sym_NULL] = ACTIONS(2194), - [anon_sym_nullptr] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_delete] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_co_return] = ACTIONS(2194), - [anon_sym_co_yield] = ACTIONS(2194), - [anon_sym_catch] = ACTIONS(2194), - [anon_sym_R_DQUOTE] = ACTIONS(2192), - [anon_sym_LR_DQUOTE] = ACTIONS(2192), - [anon_sym_uR_DQUOTE] = ACTIONS(2192), - [anon_sym_UR_DQUOTE] = ACTIONS(2192), - [anon_sym_u8R_DQUOTE] = ACTIONS(2192), - [anon_sym_co_await] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_requires] = ACTIONS(2194), - [sym_this] = ACTIONS(2194), + [1515] = { + [sym__expression] = STATE(3921), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1528] = { - [sym_identifier] = ACTIONS(2768), - [anon_sym_LPAREN2] = ACTIONS(2770), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_TILDE] = ACTIONS(2770), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2770), - [anon_sym_SEMI] = ACTIONS(2770), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym_typedef] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2770), - [anon_sym___declspec] = ACTIONS(2768), - [anon_sym_LBRACE] = 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(2768), - [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_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = 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_if] = ACTIONS(2768), - [anon_sym_else] = ACTIONS(2768), - [anon_sym_switch] = ACTIONS(2768), - [anon_sym_while] = ACTIONS(2768), - [anon_sym_do] = ACTIONS(2768), - [anon_sym_for] = ACTIONS(2768), - [anon_sym_return] = ACTIONS(2768), - [anon_sym_break] = ACTIONS(2768), - [anon_sym_continue] = ACTIONS(2768), - [anon_sym_goto] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(2768), - [anon_sym_compl] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2770), - [anon_sym_PLUS_PLUS] = ACTIONS(2770), - [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_asm] = ACTIONS(2768), - [anon_sym___asm__] = ACTIONS(2768), - [sym_number_literal] = ACTIONS(2770), - [anon_sym_L_SQUOTE] = ACTIONS(2770), - [anon_sym_u_SQUOTE] = ACTIONS(2770), - [anon_sym_U_SQUOTE] = ACTIONS(2770), - [anon_sym_u8_SQUOTE] = ACTIONS(2770), - [anon_sym_SQUOTE] = ACTIONS(2770), - [anon_sym_L_DQUOTE] = ACTIONS(2770), - [anon_sym_u_DQUOTE] = ACTIONS(2770), - [anon_sym_U_DQUOTE] = ACTIONS(2770), - [anon_sym_u8_DQUOTE] = ACTIONS(2770), - [anon_sym_DQUOTE] = ACTIONS(2770), - [sym_true] = ACTIONS(2768), - [sym_false] = ACTIONS(2768), - [anon_sym_NULL] = ACTIONS(2768), - [anon_sym_nullptr] = ACTIONS(2768), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2768), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym_typename] = ACTIONS(2768), - [anon_sym_template] = ACTIONS(2768), - [anon_sym_try] = ACTIONS(2768), - [anon_sym_delete] = ACTIONS(2768), - [anon_sym_throw] = ACTIONS(2768), - [anon_sym_co_return] = ACTIONS(2768), - [anon_sym_co_yield] = ACTIONS(2768), - [anon_sym_catch] = ACTIONS(2768), - [anon_sym_R_DQUOTE] = ACTIONS(2770), - [anon_sym_LR_DQUOTE] = ACTIONS(2770), - [anon_sym_uR_DQUOTE] = ACTIONS(2770), - [anon_sym_UR_DQUOTE] = ACTIONS(2770), - [anon_sym_u8R_DQUOTE] = ACTIONS(2770), - [anon_sym_co_await] = ACTIONS(2768), - [anon_sym_new] = ACTIONS(2768), - [anon_sym_requires] = ACTIONS(2768), - [sym_this] = ACTIONS(2768), + [1516] = { + [sym__expression] = STATE(4229), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1529] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [1517] = { + [sym__expression] = STATE(3828), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1530] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [1518] = { + [sym__expression] = STATE(4223), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1531] = { - [sym_identifier] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2917), - [anon_sym_switch] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_goto] = ACTIONS(2917), - [anon_sym_not] = ACTIONS(2917), - [anon_sym_compl] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_sizeof] = ACTIONS(2917), - [anon_sym___alignof__] = ACTIONS(2917), - [anon_sym___alignof] = ACTIONS(2917), - [anon_sym__alignof] = ACTIONS(2917), - [anon_sym_alignof] = ACTIONS(2917), - [anon_sym__Alignof] = ACTIONS(2917), - [anon_sym_offsetof] = ACTIONS(2917), - [anon_sym__Generic] = ACTIONS(2917), - [anon_sym_asm] = ACTIONS(2917), - [anon_sym___asm__] = ACTIONS(2917), - [sym_number_literal] = ACTIONS(2919), - [anon_sym_L_SQUOTE] = ACTIONS(2919), - [anon_sym_u_SQUOTE] = ACTIONS(2919), - [anon_sym_U_SQUOTE] = ACTIONS(2919), - [anon_sym_u8_SQUOTE] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2919), - [anon_sym_L_DQUOTE] = ACTIONS(2919), - [anon_sym_u_DQUOTE] = ACTIONS(2919), - [anon_sym_U_DQUOTE] = ACTIONS(2919), - [anon_sym_u8_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [anon_sym_NULL] = ACTIONS(2917), - [anon_sym_nullptr] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_delete] = ACTIONS(2917), - [anon_sym_throw] = ACTIONS(2917), - [anon_sym_co_return] = ACTIONS(2917), - [anon_sym_co_yield] = ACTIONS(2917), - [anon_sym_R_DQUOTE] = ACTIONS(2919), - [anon_sym_LR_DQUOTE] = ACTIONS(2919), - [anon_sym_uR_DQUOTE] = ACTIONS(2919), - [anon_sym_UR_DQUOTE] = ACTIONS(2919), - [anon_sym_u8R_DQUOTE] = ACTIONS(2919), - [anon_sym_co_await] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2917), + [1519] = { + [sym__expression] = STATE(4159), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1532] = { - [sym_identifier] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2917), - [anon_sym_switch] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_goto] = ACTIONS(2917), - [anon_sym_not] = ACTIONS(2917), - [anon_sym_compl] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_sizeof] = ACTIONS(2917), - [anon_sym___alignof__] = ACTIONS(2917), - [anon_sym___alignof] = ACTIONS(2917), - [anon_sym__alignof] = ACTIONS(2917), - [anon_sym_alignof] = ACTIONS(2917), - [anon_sym__Alignof] = ACTIONS(2917), - [anon_sym_offsetof] = ACTIONS(2917), - [anon_sym__Generic] = ACTIONS(2917), - [anon_sym_asm] = ACTIONS(2917), - [anon_sym___asm__] = ACTIONS(2917), - [sym_number_literal] = ACTIONS(2919), - [anon_sym_L_SQUOTE] = ACTIONS(2919), - [anon_sym_u_SQUOTE] = ACTIONS(2919), - [anon_sym_U_SQUOTE] = ACTIONS(2919), - [anon_sym_u8_SQUOTE] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2919), - [anon_sym_L_DQUOTE] = ACTIONS(2919), - [anon_sym_u_DQUOTE] = ACTIONS(2919), - [anon_sym_U_DQUOTE] = ACTIONS(2919), - [anon_sym_u8_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [anon_sym_NULL] = ACTIONS(2917), - [anon_sym_nullptr] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_delete] = ACTIONS(2917), - [anon_sym_throw] = ACTIONS(2917), - [anon_sym_co_return] = ACTIONS(2917), - [anon_sym_co_yield] = ACTIONS(2917), - [anon_sym_R_DQUOTE] = ACTIONS(2919), - [anon_sym_LR_DQUOTE] = ACTIONS(2919), - [anon_sym_uR_DQUOTE] = ACTIONS(2919), - [anon_sym_UR_DQUOTE] = ACTIONS(2919), - [anon_sym_u8R_DQUOTE] = ACTIONS(2919), - [anon_sym_co_await] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2917), + [1520] = { + [sym__expression] = STATE(4184), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1533] = { - [sym_identifier] = 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] = ACTIONS(3047), - [anon_sym_SEMI] = ACTIONS(3047), - [anon_sym___extension__] = ACTIONS(3045), - [anon_sym_typedef] = ACTIONS(3045), - [anon_sym_extern] = ACTIONS(3045), - [anon_sym___attribute__] = ACTIONS(3045), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3047), - [anon_sym___declspec] = 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_mutable] = ACTIONS(3045), - [anon_sym_constinit] = ACTIONS(3045), - [anon_sym_consteval] = 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_else] = ACTIONS(3045), - [anon_sym_switch] = 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), - [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_virtual] = ACTIONS(3045), - [anon_sym_alignas] = ACTIONS(3045), - [anon_sym_typename] = ACTIONS(3045), - [anon_sym_template] = ACTIONS(3045), - [anon_sym_try] = ACTIONS(3045), - [anon_sym_delete] = ACTIONS(3045), - [anon_sym_throw] = 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), + [1521] = { + [sym__expression] = STATE(3835), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1534] = { - [sym_identifier] = ACTIONS(3049), - [anon_sym_LPAREN2] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_SEMI] = ACTIONS(3051), - [anon_sym___extension__] = ACTIONS(3049), - [anon_sym_typedef] = ACTIONS(3049), - [anon_sym_extern] = ACTIONS(3049), - [anon_sym___attribute__] = ACTIONS(3049), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3051), - [anon_sym___declspec] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_signed] = ACTIONS(3049), - [anon_sym_unsigned] = ACTIONS(3049), - [anon_sym_long] = ACTIONS(3049), - [anon_sym_short] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_static] = ACTIONS(3049), - [anon_sym_register] = ACTIONS(3049), - [anon_sym_inline] = ACTIONS(3049), - [anon_sym___inline] = ACTIONS(3049), - [anon_sym___inline__] = ACTIONS(3049), - [anon_sym___forceinline] = ACTIONS(3049), - [anon_sym_thread_local] = ACTIONS(3049), - [anon_sym___thread] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_constexpr] = ACTIONS(3049), - [anon_sym_volatile] = ACTIONS(3049), - [anon_sym_restrict] = ACTIONS(3049), - [anon_sym___restrict__] = ACTIONS(3049), - [anon_sym__Atomic] = ACTIONS(3049), - [anon_sym__Noreturn] = ACTIONS(3049), - [anon_sym_noreturn] = ACTIONS(3049), - [anon_sym_mutable] = ACTIONS(3049), - [anon_sym_constinit] = ACTIONS(3049), - [anon_sym_consteval] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3049), - [anon_sym_enum] = ACTIONS(3049), - [anon_sym_class] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_union] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3049), - [anon_sym_switch] = ACTIONS(3049), - [anon_sym_while] = ACTIONS(3049), - [anon_sym_do] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3049), - [anon_sym_return] = ACTIONS(3049), - [anon_sym_break] = ACTIONS(3049), - [anon_sym_continue] = ACTIONS(3049), - [anon_sym_goto] = ACTIONS(3049), - [anon_sym_not] = ACTIONS(3049), - [anon_sym_compl] = ACTIONS(3049), - [anon_sym_DASH_DASH] = ACTIONS(3051), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_sizeof] = ACTIONS(3049), - [anon_sym___alignof__] = ACTIONS(3049), - [anon_sym___alignof] = ACTIONS(3049), - [anon_sym__alignof] = ACTIONS(3049), - [anon_sym_alignof] = ACTIONS(3049), - [anon_sym__Alignof] = ACTIONS(3049), - [anon_sym_offsetof] = ACTIONS(3049), - [anon_sym__Generic] = ACTIONS(3049), - [anon_sym_asm] = ACTIONS(3049), - [anon_sym___asm__] = ACTIONS(3049), - [sym_number_literal] = ACTIONS(3051), - [anon_sym_L_SQUOTE] = ACTIONS(3051), - [anon_sym_u_SQUOTE] = ACTIONS(3051), - [anon_sym_U_SQUOTE] = ACTIONS(3051), - [anon_sym_u8_SQUOTE] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3051), - [anon_sym_L_DQUOTE] = ACTIONS(3051), - [anon_sym_u_DQUOTE] = ACTIONS(3051), - [anon_sym_U_DQUOTE] = ACTIONS(3051), - [anon_sym_u8_DQUOTE] = ACTIONS(3051), - [anon_sym_DQUOTE] = ACTIONS(3051), - [sym_true] = ACTIONS(3049), - [sym_false] = ACTIONS(3049), - [anon_sym_NULL] = ACTIONS(3049), - [anon_sym_nullptr] = ACTIONS(3049), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3049), - [anon_sym_decltype] = ACTIONS(3049), - [anon_sym_virtual] = ACTIONS(3049), - [anon_sym_alignas] = ACTIONS(3049), - [anon_sym_typename] = ACTIONS(3049), - [anon_sym_template] = ACTIONS(3049), - [anon_sym_try] = ACTIONS(3049), - [anon_sym_delete] = ACTIONS(3049), - [anon_sym_throw] = ACTIONS(3049), - [anon_sym_co_return] = ACTIONS(3049), - [anon_sym_co_yield] = ACTIONS(3049), - [anon_sym_R_DQUOTE] = ACTIONS(3051), - [anon_sym_LR_DQUOTE] = ACTIONS(3051), - [anon_sym_uR_DQUOTE] = ACTIONS(3051), - [anon_sym_UR_DQUOTE] = ACTIONS(3051), - [anon_sym_u8R_DQUOTE] = ACTIONS(3051), - [anon_sym_co_await] = ACTIONS(3049), - [anon_sym_new] = ACTIONS(3049), - [anon_sym_requires] = ACTIONS(3049), - [sym_this] = ACTIONS(3049), + [1522] = { + [sym__expression] = STATE(3091), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, - [1535] = { - [sym_identifier] = 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] = ACTIONS(3021), - [anon_sym_SEMI] = ACTIONS(3021), - [anon_sym___extension__] = ACTIONS(3019), - [anon_sym_typedef] = ACTIONS(3019), - [anon_sym_extern] = ACTIONS(3019), - [anon_sym___attribute__] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3021), - [anon_sym___declspec] = 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_mutable] = ACTIONS(3019), - [anon_sym_constinit] = ACTIONS(3019), - [anon_sym_consteval] = 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_else] = ACTIONS(3019), - [anon_sym_switch] = 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), - [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_virtual] = ACTIONS(3019), - [anon_sym_alignas] = ACTIONS(3019), - [anon_sym_typename] = ACTIONS(3019), - [anon_sym_template] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_delete] = ACTIONS(3019), - [anon_sym_throw] = 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), + [1523] = { + [sym__expression] = STATE(2957), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(4505), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, - [1536] = { - [sym_identifier] = 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] = ACTIONS(3017), - [anon_sym_SEMI] = ACTIONS(3017), - [anon_sym___extension__] = ACTIONS(3015), - [anon_sym_typedef] = ACTIONS(3015), - [anon_sym_extern] = ACTIONS(3015), - [anon_sym___attribute__] = ACTIONS(3015), - [anon_sym_COLON_COLON] = ACTIONS(3017), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3017), - [anon_sym___declspec] = 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_mutable] = ACTIONS(3015), - [anon_sym_constinit] = ACTIONS(3015), - [anon_sym_consteval] = 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_else] = ACTIONS(3015), - [anon_sym_switch] = 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), - [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_virtual] = ACTIONS(3015), - [anon_sym_alignas] = ACTIONS(3015), - [anon_sym_typename] = ACTIONS(3015), - [anon_sym_template] = ACTIONS(3015), - [anon_sym_try] = ACTIONS(3015), - [anon_sym_delete] = ACTIONS(3015), - [anon_sym_throw] = 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), + [1524] = { + [sym__expression] = STATE(4271), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(4507), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1537] = { - [sym_identifier] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2945), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_SEMI] = ACTIONS(2947), - [anon_sym___extension__] = ACTIONS(2945), - [anon_sym_typedef] = ACTIONS(2945), - [anon_sym_extern] = ACTIONS(2945), - [anon_sym___attribute__] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2947), - [anon_sym___declspec] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_signed] = ACTIONS(2945), - [anon_sym_unsigned] = ACTIONS(2945), - [anon_sym_long] = ACTIONS(2945), - [anon_sym_short] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_static] = ACTIONS(2945), - [anon_sym_register] = ACTIONS(2945), - [anon_sym_inline] = ACTIONS(2945), - [anon_sym___inline] = ACTIONS(2945), - [anon_sym___inline__] = ACTIONS(2945), - [anon_sym___forceinline] = ACTIONS(2945), - [anon_sym_thread_local] = ACTIONS(2945), - [anon_sym___thread] = ACTIONS(2945), - [anon_sym_const] = ACTIONS(2945), - [anon_sym_constexpr] = ACTIONS(2945), - [anon_sym_volatile] = ACTIONS(2945), - [anon_sym_restrict] = ACTIONS(2945), - [anon_sym___restrict__] = ACTIONS(2945), - [anon_sym__Atomic] = ACTIONS(2945), - [anon_sym__Noreturn] = ACTIONS(2945), - [anon_sym_noreturn] = ACTIONS(2945), - [anon_sym_mutable] = ACTIONS(2945), - [anon_sym_constinit] = ACTIONS(2945), - [anon_sym_consteval] = ACTIONS(2945), - [sym_primitive_type] = ACTIONS(2945), - [anon_sym_enum] = ACTIONS(2945), - [anon_sym_class] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2945), - [anon_sym_union] = ACTIONS(2945), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(2945), - [anon_sym_switch] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_break] = ACTIONS(2945), - [anon_sym_continue] = ACTIONS(2945), - [anon_sym_goto] = ACTIONS(2945), - [anon_sym_not] = ACTIONS(2945), - [anon_sym_compl] = ACTIONS(2945), - [anon_sym_DASH_DASH] = ACTIONS(2947), - [anon_sym_PLUS_PLUS] = ACTIONS(2947), - [anon_sym_sizeof] = ACTIONS(2945), - [anon_sym___alignof__] = ACTIONS(2945), - [anon_sym___alignof] = ACTIONS(2945), - [anon_sym__alignof] = ACTIONS(2945), - [anon_sym_alignof] = ACTIONS(2945), - [anon_sym__Alignof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2945), - [anon_sym__Generic] = ACTIONS(2945), - [anon_sym_asm] = ACTIONS(2945), - [anon_sym___asm__] = ACTIONS(2945), - [sym_number_literal] = ACTIONS(2947), - [anon_sym_L_SQUOTE] = ACTIONS(2947), - [anon_sym_u_SQUOTE] = ACTIONS(2947), - [anon_sym_U_SQUOTE] = ACTIONS(2947), - [anon_sym_u8_SQUOTE] = ACTIONS(2947), - [anon_sym_SQUOTE] = ACTIONS(2947), - [anon_sym_L_DQUOTE] = ACTIONS(2947), - [anon_sym_u_DQUOTE] = ACTIONS(2947), - [anon_sym_U_DQUOTE] = ACTIONS(2947), - [anon_sym_u8_DQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(2947), - [sym_true] = ACTIONS(2945), - [sym_false] = ACTIONS(2945), - [anon_sym_NULL] = ACTIONS(2945), - [anon_sym_nullptr] = ACTIONS(2945), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2945), - [anon_sym_decltype] = ACTIONS(2945), - [anon_sym_virtual] = ACTIONS(2945), - [anon_sym_alignas] = ACTIONS(2945), - [anon_sym_typename] = ACTIONS(2945), - [anon_sym_template] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_delete] = ACTIONS(2945), - [anon_sym_throw] = ACTIONS(2945), - [anon_sym_co_return] = ACTIONS(2945), - [anon_sym_co_yield] = ACTIONS(2945), - [anon_sym_R_DQUOTE] = ACTIONS(2947), - [anon_sym_LR_DQUOTE] = ACTIONS(2947), - [anon_sym_uR_DQUOTE] = ACTIONS(2947), - [anon_sym_UR_DQUOTE] = ACTIONS(2947), - [anon_sym_u8R_DQUOTE] = ACTIONS(2947), - [anon_sym_co_await] = ACTIONS(2945), - [anon_sym_new] = ACTIONS(2945), - [anon_sym_requires] = ACTIONS(2945), - [sym_this] = ACTIONS(2945), + [1525] = { + [sym__expression] = STATE(3922), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1538] = { - [sym_identifier] = ACTIONS(3053), - [anon_sym_LPAREN2] = ACTIONS(3055), - [anon_sym_BANG] = ACTIONS(3055), - [anon_sym_TILDE] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3055), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym___extension__] = ACTIONS(3053), - [anon_sym_typedef] = ACTIONS(3053), - [anon_sym_extern] = ACTIONS(3053), - [anon_sym___attribute__] = ACTIONS(3053), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3055), - [anon_sym___declspec] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3055), - [anon_sym_signed] = ACTIONS(3053), - [anon_sym_unsigned] = ACTIONS(3053), - [anon_sym_long] = ACTIONS(3053), - [anon_sym_short] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_static] = ACTIONS(3053), - [anon_sym_register] = ACTIONS(3053), - [anon_sym_inline] = ACTIONS(3053), - [anon_sym___inline] = ACTIONS(3053), - [anon_sym___inline__] = ACTIONS(3053), - [anon_sym___forceinline] = ACTIONS(3053), - [anon_sym_thread_local] = ACTIONS(3053), - [anon_sym___thread] = ACTIONS(3053), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_constexpr] = ACTIONS(3053), - [anon_sym_volatile] = ACTIONS(3053), - [anon_sym_restrict] = ACTIONS(3053), - [anon_sym___restrict__] = ACTIONS(3053), - [anon_sym__Atomic] = ACTIONS(3053), - [anon_sym__Noreturn] = ACTIONS(3053), - [anon_sym_noreturn] = ACTIONS(3053), - [anon_sym_mutable] = ACTIONS(3053), - [anon_sym_constinit] = ACTIONS(3053), - [anon_sym_consteval] = ACTIONS(3053), - [sym_primitive_type] = ACTIONS(3053), - [anon_sym_enum] = ACTIONS(3053), - [anon_sym_class] = ACTIONS(3053), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_union] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_else] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3053), - [anon_sym_while] = ACTIONS(3053), - [anon_sym_do] = ACTIONS(3053), - [anon_sym_for] = ACTIONS(3053), - [anon_sym_return] = ACTIONS(3053), - [anon_sym_break] = ACTIONS(3053), - [anon_sym_continue] = ACTIONS(3053), - [anon_sym_goto] = ACTIONS(3053), - [anon_sym_not] = ACTIONS(3053), - [anon_sym_compl] = ACTIONS(3053), - [anon_sym_DASH_DASH] = ACTIONS(3055), - [anon_sym_PLUS_PLUS] = ACTIONS(3055), - [anon_sym_sizeof] = ACTIONS(3053), - [anon_sym___alignof__] = ACTIONS(3053), - [anon_sym___alignof] = ACTIONS(3053), - [anon_sym__alignof] = ACTIONS(3053), - [anon_sym_alignof] = ACTIONS(3053), - [anon_sym__Alignof] = ACTIONS(3053), - [anon_sym_offsetof] = ACTIONS(3053), - [anon_sym__Generic] = ACTIONS(3053), - [anon_sym_asm] = ACTIONS(3053), - [anon_sym___asm__] = ACTIONS(3053), - [sym_number_literal] = ACTIONS(3055), - [anon_sym_L_SQUOTE] = ACTIONS(3055), - [anon_sym_u_SQUOTE] = ACTIONS(3055), - [anon_sym_U_SQUOTE] = ACTIONS(3055), - [anon_sym_u8_SQUOTE] = ACTIONS(3055), - [anon_sym_SQUOTE] = ACTIONS(3055), - [anon_sym_L_DQUOTE] = ACTIONS(3055), - [anon_sym_u_DQUOTE] = ACTIONS(3055), - [anon_sym_U_DQUOTE] = ACTIONS(3055), - [anon_sym_u8_DQUOTE] = ACTIONS(3055), - [anon_sym_DQUOTE] = ACTIONS(3055), - [sym_true] = ACTIONS(3053), - [sym_false] = ACTIONS(3053), - [anon_sym_NULL] = ACTIONS(3053), - [anon_sym_nullptr] = ACTIONS(3053), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3053), - [anon_sym_decltype] = ACTIONS(3053), - [anon_sym_virtual] = ACTIONS(3053), - [anon_sym_alignas] = ACTIONS(3053), - [anon_sym_typename] = ACTIONS(3053), - [anon_sym_template] = ACTIONS(3053), - [anon_sym_try] = ACTIONS(3053), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_throw] = ACTIONS(3053), - [anon_sym_co_return] = ACTIONS(3053), - [anon_sym_co_yield] = ACTIONS(3053), - [anon_sym_R_DQUOTE] = ACTIONS(3055), - [anon_sym_LR_DQUOTE] = ACTIONS(3055), - [anon_sym_uR_DQUOTE] = ACTIONS(3055), - [anon_sym_UR_DQUOTE] = ACTIONS(3055), - [anon_sym_u8R_DQUOTE] = ACTIONS(3055), - [anon_sym_co_await] = ACTIONS(3053), - [anon_sym_new] = ACTIONS(3053), - [anon_sym_requires] = ACTIONS(3053), - [sym_this] = ACTIONS(3053), + [1526] = { + [sym__expression] = STATE(2887), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, - [1539] = { - [sym_identifier] = 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] = ACTIONS(3001), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym___extension__] = ACTIONS(2999), - [anon_sym_typedef] = ACTIONS(2999), - [anon_sym_extern] = ACTIONS(2999), - [anon_sym___attribute__] = ACTIONS(2999), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3001), - [anon_sym___declspec] = 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_mutable] = ACTIONS(2999), - [anon_sym_constinit] = ACTIONS(2999), - [anon_sym_consteval] = 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_else] = ACTIONS(2999), - [anon_sym_switch] = 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), - [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_virtual] = ACTIONS(2999), - [anon_sym_alignas] = ACTIONS(2999), - [anon_sym_typename] = ACTIONS(2999), - [anon_sym_template] = ACTIONS(2999), - [anon_sym_try] = ACTIONS(2999), - [anon_sym_delete] = ACTIONS(2999), - [anon_sym_throw] = 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), + [1527] = { + [sym__expression] = STATE(3926), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, - [1540] = { - [sym_identifier] = ACTIONS(3087), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_SEMI] = ACTIONS(3089), - [anon_sym___extension__] = ACTIONS(3087), - [anon_sym_typedef] = ACTIONS(3087), - [anon_sym_extern] = ACTIONS(3087), - [anon_sym___attribute__] = ACTIONS(3087), - [anon_sym_COLON_COLON] = ACTIONS(3089), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), - [anon_sym___declspec] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_signed] = ACTIONS(3087), - [anon_sym_unsigned] = ACTIONS(3087), - [anon_sym_long] = ACTIONS(3087), - [anon_sym_short] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_register] = ACTIONS(3087), - [anon_sym_inline] = ACTIONS(3087), - [anon_sym___inline] = ACTIONS(3087), - [anon_sym___inline__] = ACTIONS(3087), - [anon_sym___forceinline] = ACTIONS(3087), - [anon_sym_thread_local] = ACTIONS(3087), - [anon_sym___thread] = ACTIONS(3087), - [anon_sym_const] = ACTIONS(3087), - [anon_sym_constexpr] = ACTIONS(3087), - [anon_sym_volatile] = ACTIONS(3087), - [anon_sym_restrict] = ACTIONS(3087), - [anon_sym___restrict__] = ACTIONS(3087), - [anon_sym__Atomic] = ACTIONS(3087), - [anon_sym__Noreturn] = ACTIONS(3087), - [anon_sym_noreturn] = ACTIONS(3087), - [anon_sym_mutable] = ACTIONS(3087), - [anon_sym_constinit] = ACTIONS(3087), - [anon_sym_consteval] = ACTIONS(3087), - [sym_primitive_type] = ACTIONS(3087), - [anon_sym_enum] = ACTIONS(3087), - [anon_sym_class] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_union] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_else] = ACTIONS(3087), - [anon_sym_switch] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_goto] = ACTIONS(3087), - [anon_sym_not] = ACTIONS(3087), - [anon_sym_compl] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_sizeof] = ACTIONS(3087), - [anon_sym___alignof__] = ACTIONS(3087), - [anon_sym___alignof] = ACTIONS(3087), - [anon_sym__alignof] = ACTIONS(3087), - [anon_sym_alignof] = ACTIONS(3087), - [anon_sym__Alignof] = ACTIONS(3087), - [anon_sym_offsetof] = ACTIONS(3087), - [anon_sym__Generic] = ACTIONS(3087), - [anon_sym_asm] = ACTIONS(3087), - [anon_sym___asm__] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(3089), - [anon_sym_L_SQUOTE] = ACTIONS(3089), - [anon_sym_u_SQUOTE] = ACTIONS(3089), - [anon_sym_U_SQUOTE] = ACTIONS(3089), - [anon_sym_u8_SQUOTE] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_L_DQUOTE] = ACTIONS(3089), - [anon_sym_u_DQUOTE] = ACTIONS(3089), - [anon_sym_U_DQUOTE] = ACTIONS(3089), - [anon_sym_u8_DQUOTE] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(3089), - [sym_true] = ACTIONS(3087), - [sym_false] = ACTIONS(3087), - [anon_sym_NULL] = ACTIONS(3087), - [anon_sym_nullptr] = ACTIONS(3087), + [1528] = { + [sym__expression] = STATE(3927), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3087), - [anon_sym_decltype] = ACTIONS(3087), - [anon_sym_virtual] = ACTIONS(3087), - [anon_sym_alignas] = ACTIONS(3087), - [anon_sym_typename] = ACTIONS(3087), - [anon_sym_template] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_delete] = ACTIONS(3087), - [anon_sym_throw] = ACTIONS(3087), - [anon_sym_co_return] = ACTIONS(3087), - [anon_sym_co_yield] = ACTIONS(3087), - [anon_sym_R_DQUOTE] = ACTIONS(3089), - [anon_sym_LR_DQUOTE] = ACTIONS(3089), - [anon_sym_uR_DQUOTE] = ACTIONS(3089), - [anon_sym_UR_DQUOTE] = ACTIONS(3089), - [anon_sym_u8R_DQUOTE] = ACTIONS(3089), - [anon_sym_co_await] = ACTIONS(3087), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_requires] = ACTIONS(3087), - [sym_this] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), + }, + [1529] = { + [sym__expression] = STATE(2894), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(4509), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), + }, + [1530] = { + [sym__expression] = STATE(2894), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), + }, + [1531] = { + [sym__expression] = STATE(3344), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1532] = { + [sym__expression] = STATE(4055), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), + }, + [1533] = { + [sym__expression] = STATE(4050), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), + }, + [1534] = { + [sym__expression] = STATE(4048), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), + }, + [1535] = { + [sym__expression] = STATE(4064), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), + }, + [1536] = { + [sym__expression] = STATE(4066), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), + }, + [1537] = { + [sym__expression] = STATE(4073), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), + }, + [1538] = { + [sym__expression] = STATE(3202), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), + }, + [1539] = { + [sym__expression] = STATE(4075), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), + }, + [1540] = { + [sym__expression] = STATE(4096), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, [1541] = { - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym___extension__] = ACTIONS(2913), - [anon_sym_typedef] = ACTIONS(2913), - [anon_sym_extern] = ACTIONS(2913), - [anon_sym___attribute__] = ACTIONS(2913), - [anon_sym_COLON_COLON] = ACTIONS(2915), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2915), - [anon_sym___declspec] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_signed] = ACTIONS(2913), - [anon_sym_unsigned] = ACTIONS(2913), - [anon_sym_long] = ACTIONS(2913), - [anon_sym_short] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_static] = ACTIONS(2913), - [anon_sym_register] = ACTIONS(2913), - [anon_sym_inline] = ACTIONS(2913), - [anon_sym___inline] = ACTIONS(2913), - [anon_sym___inline__] = ACTIONS(2913), - [anon_sym___forceinline] = ACTIONS(2913), - [anon_sym_thread_local] = ACTIONS(2913), - [anon_sym___thread] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_constexpr] = ACTIONS(2913), - [anon_sym_volatile] = ACTIONS(2913), - [anon_sym_restrict] = ACTIONS(2913), - [anon_sym___restrict__] = ACTIONS(2913), - [anon_sym__Atomic] = ACTIONS(2913), - [anon_sym__Noreturn] = ACTIONS(2913), - [anon_sym_noreturn] = ACTIONS(2913), - [anon_sym_mutable] = ACTIONS(2913), - [anon_sym_constinit] = ACTIONS(2913), - [anon_sym_consteval] = ACTIONS(2913), - [sym_primitive_type] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), - [anon_sym_class] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_union] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_else] = ACTIONS(2913), - [anon_sym_switch] = ACTIONS(2913), - [anon_sym_while] = ACTIONS(2913), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_goto] = ACTIONS(2913), - [anon_sym_not] = ACTIONS(2913), - [anon_sym_compl] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2913), - [anon_sym___alignof__] = ACTIONS(2913), - [anon_sym___alignof] = ACTIONS(2913), - [anon_sym__alignof] = ACTIONS(2913), - [anon_sym_alignof] = ACTIONS(2913), - [anon_sym__Alignof] = ACTIONS(2913), - [anon_sym_offsetof] = ACTIONS(2913), - [anon_sym__Generic] = ACTIONS(2913), - [anon_sym_asm] = ACTIONS(2913), - [anon_sym___asm__] = ACTIONS(2913), - [sym_number_literal] = ACTIONS(2915), - [anon_sym_L_SQUOTE] = ACTIONS(2915), - [anon_sym_u_SQUOTE] = ACTIONS(2915), - [anon_sym_U_SQUOTE] = ACTIONS(2915), - [anon_sym_u8_SQUOTE] = ACTIONS(2915), - [anon_sym_SQUOTE] = ACTIONS(2915), - [anon_sym_L_DQUOTE] = ACTIONS(2915), - [anon_sym_u_DQUOTE] = ACTIONS(2915), - [anon_sym_U_DQUOTE] = ACTIONS(2915), - [anon_sym_u8_DQUOTE] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(2915), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [anon_sym_NULL] = ACTIONS(2913), - [anon_sym_nullptr] = ACTIONS(2913), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2913), - [anon_sym_decltype] = ACTIONS(2913), - [anon_sym_virtual] = ACTIONS(2913), - [anon_sym_alignas] = ACTIONS(2913), - [anon_sym_typename] = ACTIONS(2913), - [anon_sym_template] = ACTIONS(2913), - [anon_sym_try] = ACTIONS(2913), - [anon_sym_delete] = ACTIONS(2913), - [anon_sym_throw] = ACTIONS(2913), - [anon_sym_co_return] = ACTIONS(2913), - [anon_sym_co_yield] = ACTIONS(2913), - [anon_sym_R_DQUOTE] = ACTIONS(2915), - [anon_sym_LR_DQUOTE] = ACTIONS(2915), - [anon_sym_uR_DQUOTE] = ACTIONS(2915), - [anon_sym_UR_DQUOTE] = ACTIONS(2915), - [anon_sym_u8R_DQUOTE] = ACTIONS(2915), - [anon_sym_co_await] = ACTIONS(2913), - [anon_sym_new] = ACTIONS(2913), - [anon_sym_requires] = ACTIONS(2913), - [sym_this] = ACTIONS(2913), + [sym__expression] = STATE(2680), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1542] = { - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_SEMI] = ACTIONS(2963), - [anon_sym___extension__] = ACTIONS(2961), - [anon_sym_typedef] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym_COLON_COLON] = ACTIONS(2963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), - [anon_sym___declspec] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_signed] = ACTIONS(2961), - [anon_sym_unsigned] = ACTIONS(2961), - [anon_sym_long] = ACTIONS(2961), - [anon_sym_short] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_static] = ACTIONS(2961), - [anon_sym_register] = ACTIONS(2961), - [anon_sym_inline] = ACTIONS(2961), - [anon_sym___inline] = ACTIONS(2961), - [anon_sym___inline__] = ACTIONS(2961), - [anon_sym___forceinline] = ACTIONS(2961), - [anon_sym_thread_local] = ACTIONS(2961), - [anon_sym___thread] = ACTIONS(2961), - [anon_sym_const] = ACTIONS(2961), - [anon_sym_constexpr] = ACTIONS(2961), - [anon_sym_volatile] = ACTIONS(2961), - [anon_sym_restrict] = ACTIONS(2961), - [anon_sym___restrict__] = ACTIONS(2961), - [anon_sym__Atomic] = ACTIONS(2961), - [anon_sym__Noreturn] = ACTIONS(2961), - [anon_sym_noreturn] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [sym_primitive_type] = ACTIONS(2961), - [anon_sym_enum] = ACTIONS(2961), - [anon_sym_class] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_union] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_else] = ACTIONS(2961), - [anon_sym_switch] = ACTIONS(2961), - [anon_sym_while] = ACTIONS(2961), - [anon_sym_do] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2961), - [anon_sym_break] = ACTIONS(2961), - [anon_sym_continue] = ACTIONS(2961), - [anon_sym_goto] = ACTIONS(2961), - [anon_sym_not] = ACTIONS(2961), - [anon_sym_compl] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_sizeof] = ACTIONS(2961), - [anon_sym___alignof__] = ACTIONS(2961), - [anon_sym___alignof] = ACTIONS(2961), - [anon_sym__alignof] = ACTIONS(2961), - [anon_sym_alignof] = ACTIONS(2961), - [anon_sym__Alignof] = ACTIONS(2961), - [anon_sym_offsetof] = ACTIONS(2961), - [anon_sym__Generic] = ACTIONS(2961), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2963), - [anon_sym_u_SQUOTE] = ACTIONS(2963), - [anon_sym_U_SQUOTE] = ACTIONS(2963), - [anon_sym_u8_SQUOTE] = ACTIONS(2963), - [anon_sym_SQUOTE] = ACTIONS(2963), - [anon_sym_L_DQUOTE] = ACTIONS(2963), - [anon_sym_u_DQUOTE] = ACTIONS(2963), - [anon_sym_U_DQUOTE] = ACTIONS(2963), - [anon_sym_u8_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [anon_sym_NULL] = ACTIONS(2961), - [anon_sym_nullptr] = ACTIONS(2961), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2961), - [anon_sym_decltype] = ACTIONS(2961), - [anon_sym_virtual] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym_typename] = ACTIONS(2961), - [anon_sym_template] = ACTIONS(2961), - [anon_sym_try] = ACTIONS(2961), - [anon_sym_delete] = ACTIONS(2961), - [anon_sym_throw] = ACTIONS(2961), - [anon_sym_co_return] = ACTIONS(2961), - [anon_sym_co_yield] = ACTIONS(2961), - [anon_sym_R_DQUOTE] = ACTIONS(2963), - [anon_sym_LR_DQUOTE] = ACTIONS(2963), - [anon_sym_uR_DQUOTE] = ACTIONS(2963), - [anon_sym_UR_DQUOTE] = ACTIONS(2963), - [anon_sym_u8R_DQUOTE] = ACTIONS(2963), - [anon_sym_co_await] = ACTIONS(2961), - [anon_sym_new] = ACTIONS(2961), - [anon_sym_requires] = ACTIONS(2961), - [sym_this] = ACTIONS(2961), + [sym__expression] = STATE(3436), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [1543] = { - [sym_identifier] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_SEMI] = ACTIONS(2955), - [anon_sym___extension__] = ACTIONS(2953), - [anon_sym_typedef] = ACTIONS(2953), - [anon_sym_extern] = ACTIONS(2953), - [anon_sym___attribute__] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), - [anon_sym___declspec] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_signed] = ACTIONS(2953), - [anon_sym_unsigned] = ACTIONS(2953), - [anon_sym_long] = ACTIONS(2953), - [anon_sym_short] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2953), - [anon_sym_register] = ACTIONS(2953), - [anon_sym_inline] = ACTIONS(2953), - [anon_sym___inline] = ACTIONS(2953), - [anon_sym___inline__] = ACTIONS(2953), - [anon_sym___forceinline] = ACTIONS(2953), - [anon_sym_thread_local] = ACTIONS(2953), - [anon_sym___thread] = ACTIONS(2953), - [anon_sym_const] = ACTIONS(2953), - [anon_sym_constexpr] = ACTIONS(2953), - [anon_sym_volatile] = ACTIONS(2953), - [anon_sym_restrict] = ACTIONS(2953), - [anon_sym___restrict__] = ACTIONS(2953), - [anon_sym__Atomic] = ACTIONS(2953), - [anon_sym__Noreturn] = ACTIONS(2953), - [anon_sym_noreturn] = ACTIONS(2953), - [anon_sym_mutable] = ACTIONS(2953), - [anon_sym_constinit] = ACTIONS(2953), - [anon_sym_consteval] = ACTIONS(2953), - [sym_primitive_type] = ACTIONS(2953), - [anon_sym_enum] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2953), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_union] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_else] = ACTIONS(2953), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_break] = ACTIONS(2953), - [anon_sym_continue] = ACTIONS(2953), - [anon_sym_goto] = ACTIONS(2953), - [anon_sym_not] = ACTIONS(2953), - [anon_sym_compl] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2955), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2953), - [anon_sym___alignof] = ACTIONS(2953), - [anon_sym__alignof] = ACTIONS(2953), - [anon_sym_alignof] = ACTIONS(2953), - [anon_sym__Alignof] = ACTIONS(2953), - [anon_sym_offsetof] = ACTIONS(2953), - [anon_sym__Generic] = ACTIONS(2953), - [anon_sym_asm] = ACTIONS(2953), - [anon_sym___asm__] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(2955), - [anon_sym_L_SQUOTE] = ACTIONS(2955), - [anon_sym_u_SQUOTE] = ACTIONS(2955), - [anon_sym_U_SQUOTE] = ACTIONS(2955), - [anon_sym_u8_SQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2955), - [anon_sym_L_DQUOTE] = ACTIONS(2955), - [anon_sym_u_DQUOTE] = ACTIONS(2955), - [anon_sym_U_DQUOTE] = ACTIONS(2955), - [anon_sym_u8_DQUOTE] = ACTIONS(2955), - [anon_sym_DQUOTE] = ACTIONS(2955), - [sym_true] = ACTIONS(2953), - [sym_false] = ACTIONS(2953), - [anon_sym_NULL] = ACTIONS(2953), - [anon_sym_nullptr] = ACTIONS(2953), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2953), - [anon_sym_decltype] = ACTIONS(2953), - [anon_sym_virtual] = ACTIONS(2953), - [anon_sym_alignas] = ACTIONS(2953), - [anon_sym_typename] = ACTIONS(2953), - [anon_sym_template] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_delete] = ACTIONS(2953), - [anon_sym_throw] = ACTIONS(2953), - [anon_sym_co_return] = ACTIONS(2953), - [anon_sym_co_yield] = ACTIONS(2953), - [anon_sym_R_DQUOTE] = ACTIONS(2955), - [anon_sym_LR_DQUOTE] = ACTIONS(2955), - [anon_sym_uR_DQUOTE] = ACTIONS(2955), - [anon_sym_UR_DQUOTE] = ACTIONS(2955), - [anon_sym_u8R_DQUOTE] = ACTIONS(2955), - [anon_sym_co_await] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_requires] = ACTIONS(2953), - [sym_this] = ACTIONS(2953), + [sym__expression] = STATE(4080), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, [1544] = { - [sym_identifier] = ACTIONS(2949), - [anon_sym_LPAREN2] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2951), - [anon_sym___extension__] = ACTIONS(2949), - [anon_sym_typedef] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2949), - [anon_sym___attribute__] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), - [anon_sym___declspec] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_signed] = ACTIONS(2949), - [anon_sym_unsigned] = ACTIONS(2949), - [anon_sym_long] = ACTIONS(2949), - [anon_sym_short] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_register] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2949), - [anon_sym___inline] = ACTIONS(2949), - [anon_sym___inline__] = ACTIONS(2949), - [anon_sym___forceinline] = ACTIONS(2949), - [anon_sym_thread_local] = ACTIONS(2949), - [anon_sym___thread] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_constexpr] = ACTIONS(2949), - [anon_sym_volatile] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2949), - [anon_sym___restrict__] = ACTIONS(2949), - [anon_sym__Atomic] = ACTIONS(2949), - [anon_sym__Noreturn] = ACTIONS(2949), - [anon_sym_noreturn] = ACTIONS(2949), - [anon_sym_mutable] = ACTIONS(2949), - [anon_sym_constinit] = ACTIONS(2949), - [anon_sym_consteval] = ACTIONS(2949), - [sym_primitive_type] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_else] = ACTIONS(2949), - [anon_sym_switch] = ACTIONS(2949), - [anon_sym_while] = ACTIONS(2949), - [anon_sym_do] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym_not] = ACTIONS(2949), - [anon_sym_compl] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2949), - [anon_sym___alignof__] = ACTIONS(2949), - [anon_sym___alignof] = ACTIONS(2949), - [anon_sym__alignof] = ACTIONS(2949), - [anon_sym_alignof] = ACTIONS(2949), - [anon_sym__Alignof] = ACTIONS(2949), - [anon_sym_offsetof] = ACTIONS(2949), - [anon_sym__Generic] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym___asm__] = ACTIONS(2949), - [sym_number_literal] = ACTIONS(2951), - [anon_sym_L_SQUOTE] = ACTIONS(2951), - [anon_sym_u_SQUOTE] = ACTIONS(2951), - [anon_sym_U_SQUOTE] = ACTIONS(2951), - [anon_sym_u8_SQUOTE] = ACTIONS(2951), - [anon_sym_SQUOTE] = ACTIONS(2951), - [anon_sym_L_DQUOTE] = ACTIONS(2951), - [anon_sym_u_DQUOTE] = ACTIONS(2951), - [anon_sym_U_DQUOTE] = ACTIONS(2951), - [anon_sym_u8_DQUOTE] = ACTIONS(2951), - [anon_sym_DQUOTE] = ACTIONS(2951), - [sym_true] = ACTIONS(2949), - [sym_false] = ACTIONS(2949), - [anon_sym_NULL] = ACTIONS(2949), - [anon_sym_nullptr] = ACTIONS(2949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2949), - [anon_sym_decltype] = ACTIONS(2949), - [anon_sym_virtual] = ACTIONS(2949), - [anon_sym_alignas] = ACTIONS(2949), - [anon_sym_typename] = ACTIONS(2949), - [anon_sym_template] = ACTIONS(2949), - [anon_sym_try] = ACTIONS(2949), - [anon_sym_delete] = ACTIONS(2949), - [anon_sym_throw] = ACTIONS(2949), - [anon_sym_co_return] = ACTIONS(2949), - [anon_sym_co_yield] = ACTIONS(2949), - [anon_sym_R_DQUOTE] = ACTIONS(2951), - [anon_sym_LR_DQUOTE] = ACTIONS(2951), - [anon_sym_uR_DQUOTE] = ACTIONS(2951), - [anon_sym_UR_DQUOTE] = ACTIONS(2951), - [anon_sym_u8R_DQUOTE] = ACTIONS(2951), - [anon_sym_co_await] = ACTIONS(2949), - [anon_sym_new] = ACTIONS(2949), - [anon_sym_requires] = ACTIONS(2949), - [sym_this] = ACTIONS(2949), + [sym__expression] = STATE(4083), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, [1545] = { - [sym_identifier] = ACTIONS(2937), - [anon_sym_LPAREN2] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_SEMI] = ACTIONS(2939), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym_typedef] = ACTIONS(2937), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), - [anon_sym___declspec] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_signed] = ACTIONS(2937), - [anon_sym_unsigned] = ACTIONS(2937), - [anon_sym_long] = ACTIONS(2937), - [anon_sym_short] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(2937), - [anon_sym_register] = ACTIONS(2937), - [anon_sym_inline] = ACTIONS(2937), - [anon_sym___inline] = ACTIONS(2937), - [anon_sym___inline__] = ACTIONS(2937), - [anon_sym___forceinline] = ACTIONS(2937), - [anon_sym_thread_local] = ACTIONS(2937), - [anon_sym___thread] = ACTIONS(2937), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_class] = ACTIONS(2937), - [anon_sym_struct] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_if] = ACTIONS(2937), - [anon_sym_else] = ACTIONS(2937), - [anon_sym_switch] = ACTIONS(2937), - [anon_sym_while] = ACTIONS(2937), - [anon_sym_do] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2937), - [anon_sym_break] = ACTIONS(2937), - [anon_sym_continue] = ACTIONS(2937), - [anon_sym_goto] = ACTIONS(2937), - [anon_sym_not] = ACTIONS(2937), - [anon_sym_compl] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_sizeof] = ACTIONS(2937), - [anon_sym___alignof__] = ACTIONS(2937), - [anon_sym___alignof] = ACTIONS(2937), - [anon_sym__alignof] = ACTIONS(2937), - [anon_sym_alignof] = ACTIONS(2937), - [anon_sym__Alignof] = ACTIONS(2937), - [anon_sym_offsetof] = ACTIONS(2937), - [anon_sym__Generic] = ACTIONS(2937), - [anon_sym_asm] = ACTIONS(2937), - [anon_sym___asm__] = ACTIONS(2937), - [sym_number_literal] = ACTIONS(2939), - [anon_sym_L_SQUOTE] = ACTIONS(2939), - [anon_sym_u_SQUOTE] = ACTIONS(2939), - [anon_sym_U_SQUOTE] = ACTIONS(2939), - [anon_sym_u8_SQUOTE] = ACTIONS(2939), - [anon_sym_SQUOTE] = ACTIONS(2939), - [anon_sym_L_DQUOTE] = ACTIONS(2939), - [anon_sym_u_DQUOTE] = ACTIONS(2939), - [anon_sym_U_DQUOTE] = ACTIONS(2939), - [anon_sym_u8_DQUOTE] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym_true] = ACTIONS(2937), - [sym_false] = ACTIONS(2937), - [anon_sym_NULL] = ACTIONS(2937), - [anon_sym_nullptr] = ACTIONS(2937), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2937), - [anon_sym_decltype] = ACTIONS(2937), - [anon_sym_virtual] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2937), - [anon_sym_typename] = ACTIONS(2937), - [anon_sym_template] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2937), - [anon_sym_delete] = ACTIONS(2937), - [anon_sym_throw] = ACTIONS(2937), - [anon_sym_co_return] = ACTIONS(2937), - [anon_sym_co_yield] = ACTIONS(2937), - [anon_sym_R_DQUOTE] = ACTIONS(2939), - [anon_sym_LR_DQUOTE] = ACTIONS(2939), - [anon_sym_uR_DQUOTE] = ACTIONS(2939), - [anon_sym_UR_DQUOTE] = ACTIONS(2939), - [anon_sym_u8R_DQUOTE] = ACTIONS(2939), - [anon_sym_co_await] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2937), - [anon_sym_requires] = ACTIONS(2937), - [sym_this] = ACTIONS(2937), + [sym__expression] = STATE(3435), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [1546] = { - [sym_identifier] = ACTIONS(2993), - [anon_sym_LPAREN2] = ACTIONS(2995), - [anon_sym_BANG] = ACTIONS(2995), - [anon_sym_TILDE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_AMP] = ACTIONS(2995), - [anon_sym_SEMI] = ACTIONS(2995), - [anon_sym___extension__] = ACTIONS(2993), - [anon_sym_typedef] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(2993), - [anon_sym___attribute__] = ACTIONS(2993), - [anon_sym_COLON_COLON] = ACTIONS(2995), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2995), - [anon_sym___declspec] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_signed] = ACTIONS(2993), - [anon_sym_unsigned] = ACTIONS(2993), - [anon_sym_long] = ACTIONS(2993), - [anon_sym_short] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_static] = ACTIONS(2993), - [anon_sym_register] = ACTIONS(2993), - [anon_sym_inline] = ACTIONS(2993), - [anon_sym___inline] = ACTIONS(2993), - [anon_sym___inline__] = ACTIONS(2993), - [anon_sym___forceinline] = ACTIONS(2993), - [anon_sym_thread_local] = ACTIONS(2993), - [anon_sym___thread] = ACTIONS(2993), - [anon_sym_const] = ACTIONS(2993), - [anon_sym_constexpr] = ACTIONS(2993), - [anon_sym_volatile] = ACTIONS(2993), - [anon_sym_restrict] = ACTIONS(2993), - [anon_sym___restrict__] = ACTIONS(2993), - [anon_sym__Atomic] = ACTIONS(2993), - [anon_sym__Noreturn] = ACTIONS(2993), - [anon_sym_noreturn] = ACTIONS(2993), - [anon_sym_mutable] = ACTIONS(2993), - [anon_sym_constinit] = ACTIONS(2993), - [anon_sym_consteval] = ACTIONS(2993), - [sym_primitive_type] = ACTIONS(2993), - [anon_sym_enum] = ACTIONS(2993), - [anon_sym_class] = ACTIONS(2993), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_union] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_else] = ACTIONS(2993), - [anon_sym_switch] = ACTIONS(2993), - [anon_sym_while] = ACTIONS(2993), - [anon_sym_do] = ACTIONS(2993), - [anon_sym_for] = ACTIONS(2993), - [anon_sym_return] = ACTIONS(2993), - [anon_sym_break] = ACTIONS(2993), - [anon_sym_continue] = ACTIONS(2993), - [anon_sym_goto] = ACTIONS(2993), - [anon_sym_not] = ACTIONS(2993), - [anon_sym_compl] = ACTIONS(2993), - [anon_sym_DASH_DASH] = ACTIONS(2995), - [anon_sym_PLUS_PLUS] = ACTIONS(2995), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2993), - [anon_sym___alignof] = ACTIONS(2993), - [anon_sym__alignof] = ACTIONS(2993), - [anon_sym_alignof] = ACTIONS(2993), - [anon_sym__Alignof] = ACTIONS(2993), - [anon_sym_offsetof] = ACTIONS(2993), - [anon_sym__Generic] = ACTIONS(2993), - [anon_sym_asm] = ACTIONS(2993), - [anon_sym___asm__] = ACTIONS(2993), - [sym_number_literal] = ACTIONS(2995), - [anon_sym_L_SQUOTE] = ACTIONS(2995), - [anon_sym_u_SQUOTE] = ACTIONS(2995), - [anon_sym_U_SQUOTE] = ACTIONS(2995), - [anon_sym_u8_SQUOTE] = ACTIONS(2995), - [anon_sym_SQUOTE] = ACTIONS(2995), - [anon_sym_L_DQUOTE] = ACTIONS(2995), - [anon_sym_u_DQUOTE] = ACTIONS(2995), - [anon_sym_U_DQUOTE] = ACTIONS(2995), - [anon_sym_u8_DQUOTE] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2995), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [anon_sym_NULL] = ACTIONS(2993), - [anon_sym_nullptr] = ACTIONS(2993), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2993), - [anon_sym_decltype] = ACTIONS(2993), - [anon_sym_virtual] = ACTIONS(2993), - [anon_sym_alignas] = ACTIONS(2993), - [anon_sym_typename] = ACTIONS(2993), - [anon_sym_template] = ACTIONS(2993), - [anon_sym_try] = ACTIONS(2993), - [anon_sym_delete] = ACTIONS(2993), - [anon_sym_throw] = ACTIONS(2993), - [anon_sym_co_return] = ACTIONS(2993), - [anon_sym_co_yield] = ACTIONS(2993), - [anon_sym_R_DQUOTE] = ACTIONS(2995), - [anon_sym_LR_DQUOTE] = ACTIONS(2995), - [anon_sym_uR_DQUOTE] = ACTIONS(2995), - [anon_sym_UR_DQUOTE] = ACTIONS(2995), - [anon_sym_u8R_DQUOTE] = ACTIONS(2995), - [anon_sym_co_await] = ACTIONS(2993), - [anon_sym_new] = ACTIONS(2993), - [anon_sym_requires] = ACTIONS(2993), - [sym_this] = ACTIONS(2993), + [sym__expression] = STATE(3431), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [1547] = { - [sym_identifier] = ACTIONS(2881), - [anon_sym_LPAREN2] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym___extension__] = ACTIONS(2881), - [anon_sym_typedef] = ACTIONS(2881), - [anon_sym_extern] = ACTIONS(2881), - [anon_sym___attribute__] = ACTIONS(2881), - [anon_sym_COLON_COLON] = ACTIONS(2883), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2883), - [anon_sym___declspec] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_signed] = ACTIONS(2881), - [anon_sym_unsigned] = ACTIONS(2881), - [anon_sym_long] = ACTIONS(2881), - [anon_sym_short] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_register] = ACTIONS(2881), - [anon_sym_inline] = ACTIONS(2881), - [anon_sym___inline] = ACTIONS(2881), - [anon_sym___inline__] = ACTIONS(2881), - [anon_sym___forceinline] = ACTIONS(2881), - [anon_sym_thread_local] = ACTIONS(2881), - [anon_sym___thread] = ACTIONS(2881), - [anon_sym_const] = ACTIONS(2881), - [anon_sym_constexpr] = ACTIONS(2881), - [anon_sym_volatile] = ACTIONS(2881), - [anon_sym_restrict] = ACTIONS(2881), - [anon_sym___restrict__] = ACTIONS(2881), - [anon_sym__Atomic] = ACTIONS(2881), - [anon_sym__Noreturn] = ACTIONS(2881), - [anon_sym_noreturn] = ACTIONS(2881), - [anon_sym_mutable] = ACTIONS(2881), - [anon_sym_constinit] = ACTIONS(2881), - [anon_sym_consteval] = ACTIONS(2881), - [sym_primitive_type] = ACTIONS(2881), - [anon_sym_enum] = ACTIONS(2881), - [anon_sym_class] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2881), - [anon_sym_union] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2881), - [anon_sym_else] = ACTIONS(2881), - [anon_sym_switch] = ACTIONS(2881), - [anon_sym_while] = ACTIONS(2881), - [anon_sym_do] = ACTIONS(2881), - [anon_sym_for] = ACTIONS(2881), - [anon_sym_return] = ACTIONS(2881), - [anon_sym_break] = ACTIONS(2881), - [anon_sym_continue] = ACTIONS(2881), - [anon_sym_goto] = ACTIONS(2881), - [anon_sym_not] = ACTIONS(2881), - [anon_sym_compl] = ACTIONS(2881), - [anon_sym_DASH_DASH] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_sizeof] = ACTIONS(2881), - [anon_sym___alignof__] = ACTIONS(2881), - [anon_sym___alignof] = ACTIONS(2881), - [anon_sym__alignof] = ACTIONS(2881), - [anon_sym_alignof] = ACTIONS(2881), - [anon_sym__Alignof] = ACTIONS(2881), - [anon_sym_offsetof] = ACTIONS(2881), - [anon_sym__Generic] = ACTIONS(2881), - [anon_sym_asm] = ACTIONS(2881), - [anon_sym___asm__] = ACTIONS(2881), - [sym_number_literal] = ACTIONS(2883), - [anon_sym_L_SQUOTE] = ACTIONS(2883), - [anon_sym_u_SQUOTE] = ACTIONS(2883), - [anon_sym_U_SQUOTE] = ACTIONS(2883), - [anon_sym_u8_SQUOTE] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2883), - [anon_sym_L_DQUOTE] = ACTIONS(2883), - [anon_sym_u_DQUOTE] = ACTIONS(2883), - [anon_sym_U_DQUOTE] = ACTIONS(2883), - [anon_sym_u8_DQUOTE] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [sym_true] = ACTIONS(2881), - [sym_false] = ACTIONS(2881), - [anon_sym_NULL] = ACTIONS(2881), - [anon_sym_nullptr] = ACTIONS(2881), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2881), - [anon_sym_decltype] = ACTIONS(2881), - [anon_sym_virtual] = ACTIONS(2881), - [anon_sym_alignas] = ACTIONS(2881), - [anon_sym_typename] = ACTIONS(2881), - [anon_sym_template] = ACTIONS(2881), - [anon_sym_try] = ACTIONS(2881), - [anon_sym_delete] = ACTIONS(2881), - [anon_sym_throw] = ACTIONS(2881), - [anon_sym_co_return] = ACTIONS(2881), - [anon_sym_co_yield] = ACTIONS(2881), - [anon_sym_R_DQUOTE] = ACTIONS(2883), - [anon_sym_LR_DQUOTE] = ACTIONS(2883), - [anon_sym_uR_DQUOTE] = ACTIONS(2883), - [anon_sym_UR_DQUOTE] = ACTIONS(2883), - [anon_sym_u8R_DQUOTE] = ACTIONS(2883), - [anon_sym_co_await] = ACTIONS(2881), - [anon_sym_new] = ACTIONS(2881), - [anon_sym_requires] = ACTIONS(2881), - [sym_this] = ACTIONS(2881), + [sym__expression] = STATE(3217), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1548] = { - [sym_identifier] = ACTIONS(2873), - [anon_sym_LPAREN2] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2875), - [anon_sym_TILDE] = ACTIONS(2875), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_STAR] = ACTIONS(2875), - [anon_sym_AMP] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym___extension__] = ACTIONS(2873), - [anon_sym_typedef] = ACTIONS(2873), - [anon_sym_extern] = ACTIONS(2873), - [anon_sym___attribute__] = ACTIONS(2873), - [anon_sym_COLON_COLON] = ACTIONS(2875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2875), - [anon_sym___declspec] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2875), - [anon_sym_signed] = ACTIONS(2873), - [anon_sym_unsigned] = ACTIONS(2873), - [anon_sym_long] = ACTIONS(2873), - [anon_sym_short] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_register] = ACTIONS(2873), - [anon_sym_inline] = ACTIONS(2873), - [anon_sym___inline] = ACTIONS(2873), - [anon_sym___inline__] = ACTIONS(2873), - [anon_sym___forceinline] = ACTIONS(2873), - [anon_sym_thread_local] = ACTIONS(2873), - [anon_sym___thread] = ACTIONS(2873), - [anon_sym_const] = ACTIONS(2873), - [anon_sym_constexpr] = ACTIONS(2873), - [anon_sym_volatile] = ACTIONS(2873), - [anon_sym_restrict] = ACTIONS(2873), - [anon_sym___restrict__] = ACTIONS(2873), - [anon_sym__Atomic] = ACTIONS(2873), - [anon_sym__Noreturn] = ACTIONS(2873), - [anon_sym_noreturn] = ACTIONS(2873), - [anon_sym_mutable] = ACTIONS(2873), - [anon_sym_constinit] = ACTIONS(2873), - [anon_sym_consteval] = ACTIONS(2873), - [sym_primitive_type] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2873), - [anon_sym_union] = ACTIONS(2873), - [anon_sym_if] = ACTIONS(2873), - [anon_sym_else] = ACTIONS(2873), - [anon_sym_switch] = ACTIONS(2873), - [anon_sym_while] = ACTIONS(2873), - [anon_sym_do] = ACTIONS(2873), - [anon_sym_for] = ACTIONS(2873), - [anon_sym_return] = ACTIONS(2873), - [anon_sym_break] = ACTIONS(2873), - [anon_sym_continue] = ACTIONS(2873), - [anon_sym_goto] = ACTIONS(2873), - [anon_sym_not] = ACTIONS(2873), - [anon_sym_compl] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2875), - [anon_sym_PLUS_PLUS] = ACTIONS(2875), - [anon_sym_sizeof] = ACTIONS(2873), - [anon_sym___alignof__] = ACTIONS(2873), - [anon_sym___alignof] = ACTIONS(2873), - [anon_sym__alignof] = ACTIONS(2873), - [anon_sym_alignof] = ACTIONS(2873), - [anon_sym__Alignof] = ACTIONS(2873), - [anon_sym_offsetof] = ACTIONS(2873), - [anon_sym__Generic] = ACTIONS(2873), - [anon_sym_asm] = ACTIONS(2873), - [anon_sym___asm__] = ACTIONS(2873), - [sym_number_literal] = ACTIONS(2875), - [anon_sym_L_SQUOTE] = ACTIONS(2875), - [anon_sym_u_SQUOTE] = ACTIONS(2875), - [anon_sym_U_SQUOTE] = ACTIONS(2875), - [anon_sym_u8_SQUOTE] = ACTIONS(2875), - [anon_sym_SQUOTE] = ACTIONS(2875), - [anon_sym_L_DQUOTE] = ACTIONS(2875), - [anon_sym_u_DQUOTE] = ACTIONS(2875), - [anon_sym_U_DQUOTE] = ACTIONS(2875), - [anon_sym_u8_DQUOTE] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [sym_true] = ACTIONS(2873), - [sym_false] = ACTIONS(2873), - [anon_sym_NULL] = ACTIONS(2873), - [anon_sym_nullptr] = ACTIONS(2873), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2873), - [anon_sym_decltype] = ACTIONS(2873), - [anon_sym_virtual] = ACTIONS(2873), - [anon_sym_alignas] = ACTIONS(2873), - [anon_sym_typename] = ACTIONS(2873), - [anon_sym_template] = ACTIONS(2873), - [anon_sym_try] = ACTIONS(2873), - [anon_sym_delete] = ACTIONS(2873), - [anon_sym_throw] = ACTIONS(2873), - [anon_sym_co_return] = ACTIONS(2873), - [anon_sym_co_yield] = ACTIONS(2873), - [anon_sym_R_DQUOTE] = ACTIONS(2875), - [anon_sym_LR_DQUOTE] = ACTIONS(2875), - [anon_sym_uR_DQUOTE] = ACTIONS(2875), - [anon_sym_UR_DQUOTE] = ACTIONS(2875), - [anon_sym_u8R_DQUOTE] = ACTIONS(2875), - [anon_sym_co_await] = ACTIONS(2873), - [anon_sym_new] = ACTIONS(2873), - [anon_sym_requires] = ACTIONS(2873), - [sym_this] = ACTIONS(2873), + [sym__expression] = STATE(3326), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(4511), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1549] = { - [sym_identifier] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2975), - [anon_sym_BANG] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2975), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym___extension__] = ACTIONS(2973), - [anon_sym_typedef] = ACTIONS(2973), - [anon_sym_extern] = ACTIONS(2973), - [anon_sym___attribute__] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), - [anon_sym___declspec] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_signed] = ACTIONS(2973), - [anon_sym_unsigned] = ACTIONS(2973), - [anon_sym_long] = ACTIONS(2973), - [anon_sym_short] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_static] = ACTIONS(2973), - [anon_sym_register] = ACTIONS(2973), - [anon_sym_inline] = ACTIONS(2973), - [anon_sym___inline] = ACTIONS(2973), - [anon_sym___inline__] = ACTIONS(2973), - [anon_sym___forceinline] = ACTIONS(2973), - [anon_sym_thread_local] = ACTIONS(2973), - [anon_sym___thread] = ACTIONS(2973), - [anon_sym_const] = ACTIONS(2973), - [anon_sym_constexpr] = ACTIONS(2973), - [anon_sym_volatile] = ACTIONS(2973), - [anon_sym_restrict] = ACTIONS(2973), - [anon_sym___restrict__] = ACTIONS(2973), - [anon_sym__Atomic] = ACTIONS(2973), - [anon_sym__Noreturn] = ACTIONS(2973), - [anon_sym_noreturn] = ACTIONS(2973), - [anon_sym_mutable] = ACTIONS(2973), - [anon_sym_constinit] = ACTIONS(2973), - [anon_sym_consteval] = ACTIONS(2973), - [sym_primitive_type] = ACTIONS(2973), - [anon_sym_enum] = ACTIONS(2973), - [anon_sym_class] = ACTIONS(2973), - [anon_sym_struct] = ACTIONS(2973), - [anon_sym_union] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_else] = ACTIONS(2973), - [anon_sym_switch] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_break] = ACTIONS(2973), - [anon_sym_continue] = ACTIONS(2973), - [anon_sym_goto] = ACTIONS(2973), - [anon_sym_not] = ACTIONS(2973), - [anon_sym_compl] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2975), - [anon_sym_PLUS_PLUS] = ACTIONS(2975), - [anon_sym_sizeof] = ACTIONS(2973), - [anon_sym___alignof__] = ACTIONS(2973), - [anon_sym___alignof] = ACTIONS(2973), - [anon_sym__alignof] = ACTIONS(2973), - [anon_sym_alignof] = ACTIONS(2973), - [anon_sym__Alignof] = ACTIONS(2973), - [anon_sym_offsetof] = ACTIONS(2973), - [anon_sym__Generic] = ACTIONS(2973), - [anon_sym_asm] = ACTIONS(2973), - [anon_sym___asm__] = ACTIONS(2973), - [sym_number_literal] = ACTIONS(2975), - [anon_sym_L_SQUOTE] = ACTIONS(2975), - [anon_sym_u_SQUOTE] = ACTIONS(2975), - [anon_sym_U_SQUOTE] = ACTIONS(2975), - [anon_sym_u8_SQUOTE] = ACTIONS(2975), - [anon_sym_SQUOTE] = ACTIONS(2975), - [anon_sym_L_DQUOTE] = ACTIONS(2975), - [anon_sym_u_DQUOTE] = ACTIONS(2975), - [anon_sym_U_DQUOTE] = ACTIONS(2975), - [anon_sym_u8_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE] = ACTIONS(2975), - [sym_true] = ACTIONS(2973), - [sym_false] = ACTIONS(2973), - [anon_sym_NULL] = ACTIONS(2973), - [anon_sym_nullptr] = ACTIONS(2973), + [sym__expression] = STATE(3898), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(4513), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2973), - [anon_sym_decltype] = ACTIONS(2973), - [anon_sym_virtual] = ACTIONS(2973), - [anon_sym_alignas] = ACTIONS(2973), - [anon_sym_typename] = ACTIONS(2973), - [anon_sym_template] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_throw] = ACTIONS(2973), - [anon_sym_co_return] = ACTIONS(2973), - [anon_sym_co_yield] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_requires] = ACTIONS(2973), - [sym_this] = ACTIONS(2973), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1550] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym__expression] = STATE(3280), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1551] = { - [sym_identifier] = ACTIONS(2957), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2959), - [anon_sym___extension__] = ACTIONS(2957), - [anon_sym_typedef] = ACTIONS(2957), - [anon_sym_extern] = ACTIONS(2957), - [anon_sym___attribute__] = ACTIONS(2957), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), - [anon_sym___declspec] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_signed] = ACTIONS(2957), - [anon_sym_unsigned] = ACTIONS(2957), - [anon_sym_long] = ACTIONS(2957), - [anon_sym_short] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_static] = ACTIONS(2957), - [anon_sym_register] = ACTIONS(2957), - [anon_sym_inline] = ACTIONS(2957), - [anon_sym___inline] = ACTIONS(2957), - [anon_sym___inline__] = ACTIONS(2957), - [anon_sym___forceinline] = ACTIONS(2957), - [anon_sym_thread_local] = ACTIONS(2957), - [anon_sym___thread] = ACTIONS(2957), - [anon_sym_const] = ACTIONS(2957), - [anon_sym_constexpr] = ACTIONS(2957), - [anon_sym_volatile] = ACTIONS(2957), - [anon_sym_restrict] = ACTIONS(2957), - [anon_sym___restrict__] = ACTIONS(2957), - [anon_sym__Atomic] = ACTIONS(2957), - [anon_sym__Noreturn] = ACTIONS(2957), - [anon_sym_noreturn] = ACTIONS(2957), - [anon_sym_mutable] = ACTIONS(2957), - [anon_sym_constinit] = ACTIONS(2957), - [anon_sym_consteval] = ACTIONS(2957), - [sym_primitive_type] = ACTIONS(2957), - [anon_sym_enum] = ACTIONS(2957), - [anon_sym_class] = ACTIONS(2957), - [anon_sym_struct] = ACTIONS(2957), - [anon_sym_union] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2957), - [anon_sym_else] = ACTIONS(2957), - [anon_sym_switch] = ACTIONS(2957), - [anon_sym_while] = ACTIONS(2957), - [anon_sym_do] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2957), - [anon_sym_break] = ACTIONS(2957), - [anon_sym_continue] = ACTIONS(2957), - [anon_sym_goto] = ACTIONS(2957), - [anon_sym_not] = ACTIONS(2957), - [anon_sym_compl] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_sizeof] = ACTIONS(2957), - [anon_sym___alignof__] = ACTIONS(2957), - [anon_sym___alignof] = ACTIONS(2957), - [anon_sym__alignof] = ACTIONS(2957), - [anon_sym_alignof] = ACTIONS(2957), - [anon_sym__Alignof] = ACTIONS(2957), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2957), - [anon_sym_asm] = ACTIONS(2957), - [anon_sym___asm__] = ACTIONS(2957), - [sym_number_literal] = ACTIONS(2959), - [anon_sym_L_SQUOTE] = ACTIONS(2959), - [anon_sym_u_SQUOTE] = ACTIONS(2959), - [anon_sym_U_SQUOTE] = ACTIONS(2959), - [anon_sym_u8_SQUOTE] = ACTIONS(2959), - [anon_sym_SQUOTE] = ACTIONS(2959), - [anon_sym_L_DQUOTE] = ACTIONS(2959), - [anon_sym_u_DQUOTE] = ACTIONS(2959), - [anon_sym_U_DQUOTE] = ACTIONS(2959), - [anon_sym_u8_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [anon_sym_NULL] = ACTIONS(2957), - [anon_sym_nullptr] = ACTIONS(2957), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2957), - [anon_sym_decltype] = ACTIONS(2957), - [anon_sym_virtual] = ACTIONS(2957), - [anon_sym_alignas] = ACTIONS(2957), - [anon_sym_typename] = ACTIONS(2957), - [anon_sym_template] = ACTIONS(2957), - [anon_sym_try] = ACTIONS(2957), - [anon_sym_delete] = ACTIONS(2957), - [anon_sym_throw] = ACTIONS(2957), - [anon_sym_co_return] = ACTIONS(2957), - [anon_sym_co_yield] = ACTIONS(2957), - [anon_sym_R_DQUOTE] = ACTIONS(2959), - [anon_sym_LR_DQUOTE] = ACTIONS(2959), - [anon_sym_uR_DQUOTE] = ACTIONS(2959), - [anon_sym_UR_DQUOTE] = ACTIONS(2959), - [anon_sym_u8R_DQUOTE] = ACTIONS(2959), - [anon_sym_co_await] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2957), - [anon_sym_requires] = ACTIONS(2957), - [sym_this] = ACTIONS(2957), + [sym__expression] = STATE(3170), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(4515), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1552] = { - [sym_identifier] = ACTIONS(2869), - [anon_sym_LPAREN2] = ACTIONS(2871), - [anon_sym_BANG] = ACTIONS(2871), - [anon_sym_TILDE] = ACTIONS(2871), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2871), - [anon_sym_AMP] = ACTIONS(2871), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym___extension__] = ACTIONS(2869), - [anon_sym_typedef] = ACTIONS(2869), - [anon_sym_extern] = ACTIONS(2869), - [anon_sym___attribute__] = ACTIONS(2869), - [anon_sym_COLON_COLON] = ACTIONS(2871), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2871), - [anon_sym___declspec] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_signed] = ACTIONS(2869), - [anon_sym_unsigned] = ACTIONS(2869), - [anon_sym_long] = ACTIONS(2869), - [anon_sym_short] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_static] = ACTIONS(2869), - [anon_sym_register] = ACTIONS(2869), - [anon_sym_inline] = ACTIONS(2869), - [anon_sym___inline] = ACTIONS(2869), - [anon_sym___inline__] = ACTIONS(2869), - [anon_sym___forceinline] = ACTIONS(2869), - [anon_sym_thread_local] = ACTIONS(2869), - [anon_sym___thread] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2869), - [anon_sym_constexpr] = ACTIONS(2869), - [anon_sym_volatile] = ACTIONS(2869), - [anon_sym_restrict] = ACTIONS(2869), - [anon_sym___restrict__] = ACTIONS(2869), - [anon_sym__Atomic] = ACTIONS(2869), - [anon_sym__Noreturn] = ACTIONS(2869), - [anon_sym_noreturn] = ACTIONS(2869), - [anon_sym_mutable] = ACTIONS(2869), - [anon_sym_constinit] = ACTIONS(2869), - [anon_sym_consteval] = ACTIONS(2869), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2869), - [anon_sym_class] = ACTIONS(2869), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_union] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_else] = ACTIONS(2869), - [anon_sym_switch] = ACTIONS(2869), - [anon_sym_while] = ACTIONS(2869), - [anon_sym_do] = ACTIONS(2869), - [anon_sym_for] = ACTIONS(2869), - [anon_sym_return] = ACTIONS(2869), - [anon_sym_break] = ACTIONS(2869), - [anon_sym_continue] = ACTIONS(2869), - [anon_sym_goto] = ACTIONS(2869), - [anon_sym_not] = ACTIONS(2869), - [anon_sym_compl] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2871), - [anon_sym_PLUS_PLUS] = ACTIONS(2871), - [anon_sym_sizeof] = ACTIONS(2869), - [anon_sym___alignof__] = ACTIONS(2869), - [anon_sym___alignof] = ACTIONS(2869), - [anon_sym__alignof] = ACTIONS(2869), - [anon_sym_alignof] = ACTIONS(2869), - [anon_sym__Alignof] = ACTIONS(2869), - [anon_sym_offsetof] = ACTIONS(2869), - [anon_sym__Generic] = ACTIONS(2869), - [anon_sym_asm] = ACTIONS(2869), - [anon_sym___asm__] = ACTIONS(2869), - [sym_number_literal] = ACTIONS(2871), - [anon_sym_L_SQUOTE] = ACTIONS(2871), - [anon_sym_u_SQUOTE] = ACTIONS(2871), - [anon_sym_U_SQUOTE] = ACTIONS(2871), - [anon_sym_u8_SQUOTE] = ACTIONS(2871), - [anon_sym_SQUOTE] = ACTIONS(2871), - [anon_sym_L_DQUOTE] = ACTIONS(2871), - [anon_sym_u_DQUOTE] = ACTIONS(2871), - [anon_sym_U_DQUOTE] = ACTIONS(2871), - [anon_sym_u8_DQUOTE] = ACTIONS(2871), - [anon_sym_DQUOTE] = ACTIONS(2871), - [sym_true] = ACTIONS(2869), - [sym_false] = ACTIONS(2869), - [anon_sym_NULL] = ACTIONS(2869), - [anon_sym_nullptr] = ACTIONS(2869), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2869), - [anon_sym_decltype] = ACTIONS(2869), - [anon_sym_virtual] = ACTIONS(2869), - [anon_sym_alignas] = ACTIONS(2869), - [anon_sym_typename] = ACTIONS(2869), - [anon_sym_template] = ACTIONS(2869), - [anon_sym_try] = ACTIONS(2869), - [anon_sym_delete] = ACTIONS(2869), - [anon_sym_throw] = ACTIONS(2869), - [anon_sym_co_return] = ACTIONS(2869), - [anon_sym_co_yield] = ACTIONS(2869), - [anon_sym_R_DQUOTE] = ACTIONS(2871), - [anon_sym_LR_DQUOTE] = ACTIONS(2871), - [anon_sym_uR_DQUOTE] = ACTIONS(2871), - [anon_sym_UR_DQUOTE] = ACTIONS(2871), - [anon_sym_u8R_DQUOTE] = ACTIONS(2871), - [anon_sym_co_await] = ACTIONS(2869), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2869), - [sym_this] = ACTIONS(2869), + [sym__expression] = STATE(3219), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1553] = { - [sym_identifier] = ACTIONS(2965), - [anon_sym_LPAREN2] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym___extension__] = ACTIONS(2965), - [anon_sym_typedef] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2965), - [anon_sym___attribute__] = ACTIONS(2965), - [anon_sym_COLON_COLON] = ACTIONS(2967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), - [anon_sym___declspec] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_signed] = ACTIONS(2965), - [anon_sym_unsigned] = ACTIONS(2965), - [anon_sym_long] = ACTIONS(2965), - [anon_sym_short] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2965), - [anon_sym_static] = ACTIONS(2965), - [anon_sym_register] = ACTIONS(2965), - [anon_sym_inline] = ACTIONS(2965), - [anon_sym___inline] = ACTIONS(2965), - [anon_sym___inline__] = ACTIONS(2965), - [anon_sym___forceinline] = ACTIONS(2965), - [anon_sym_thread_local] = ACTIONS(2965), - [anon_sym___thread] = ACTIONS(2965), - [anon_sym_const] = ACTIONS(2965), - [anon_sym_constexpr] = ACTIONS(2965), - [anon_sym_volatile] = ACTIONS(2965), - [anon_sym_restrict] = ACTIONS(2965), - [anon_sym___restrict__] = ACTIONS(2965), - [anon_sym__Atomic] = ACTIONS(2965), - [anon_sym__Noreturn] = ACTIONS(2965), - [anon_sym_noreturn] = ACTIONS(2965), - [anon_sym_mutable] = ACTIONS(2965), - [anon_sym_constinit] = ACTIONS(2965), - [anon_sym_consteval] = ACTIONS(2965), - [sym_primitive_type] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2965), - [anon_sym_class] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_union] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_else] = ACTIONS(2965), - [anon_sym_switch] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2965), - [anon_sym_do] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2965), - [anon_sym_return] = ACTIONS(2965), - [anon_sym_break] = ACTIONS(2965), - [anon_sym_continue] = ACTIONS(2965), - [anon_sym_goto] = ACTIONS(2965), - [anon_sym_not] = ACTIONS(2965), - [anon_sym_compl] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_sizeof] = ACTIONS(2965), - [anon_sym___alignof__] = ACTIONS(2965), - [anon_sym___alignof] = ACTIONS(2965), - [anon_sym__alignof] = ACTIONS(2965), - [anon_sym_alignof] = ACTIONS(2965), - [anon_sym__Alignof] = ACTIONS(2965), - [anon_sym_offsetof] = ACTIONS(2965), - [anon_sym__Generic] = ACTIONS(2965), - [anon_sym_asm] = ACTIONS(2965), - [anon_sym___asm__] = ACTIONS(2965), - [sym_number_literal] = ACTIONS(2967), - [anon_sym_L_SQUOTE] = ACTIONS(2967), - [anon_sym_u_SQUOTE] = ACTIONS(2967), - [anon_sym_U_SQUOTE] = ACTIONS(2967), - [anon_sym_u8_SQUOTE] = ACTIONS(2967), - [anon_sym_SQUOTE] = ACTIONS(2967), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [anon_sym_NULL] = ACTIONS(2965), - [anon_sym_nullptr] = ACTIONS(2965), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2965), - [anon_sym_decltype] = ACTIONS(2965), - [anon_sym_virtual] = ACTIONS(2965), - [anon_sym_alignas] = ACTIONS(2965), - [anon_sym_typename] = ACTIONS(2965), - [anon_sym_template] = ACTIONS(2965), - [anon_sym_try] = ACTIONS(2965), - [anon_sym_delete] = ACTIONS(2965), - [anon_sym_throw] = ACTIONS(2965), - [anon_sym_co_return] = ACTIONS(2965), - [anon_sym_co_yield] = ACTIONS(2965), - [anon_sym_R_DQUOTE] = ACTIONS(2967), - [anon_sym_LR_DQUOTE] = ACTIONS(2967), - [anon_sym_uR_DQUOTE] = ACTIONS(2967), - [anon_sym_UR_DQUOTE] = ACTIONS(2967), - [anon_sym_u8R_DQUOTE] = ACTIONS(2967), - [anon_sym_co_await] = ACTIONS(2965), - [anon_sym_new] = ACTIONS(2965), - [anon_sym_requires] = ACTIONS(2965), - [sym_this] = ACTIONS(2965), + [sym__expression] = STATE(3221), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1554] = { - [sym_identifier] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2979), - [anon_sym_BANG] = ACTIONS(2979), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_AMP] = ACTIONS(2979), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym___extension__] = ACTIONS(2977), - [anon_sym_typedef] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym___attribute__] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2979), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), - [anon_sym___declspec] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_signed] = ACTIONS(2977), - [anon_sym_unsigned] = ACTIONS(2977), - [anon_sym_long] = ACTIONS(2977), - [anon_sym_short] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_static] = ACTIONS(2977), - [anon_sym_register] = ACTIONS(2977), - [anon_sym_inline] = ACTIONS(2977), - [anon_sym___inline] = ACTIONS(2977), - [anon_sym___inline__] = ACTIONS(2977), - [anon_sym___forceinline] = ACTIONS(2977), - [anon_sym_thread_local] = ACTIONS(2977), - [anon_sym___thread] = ACTIONS(2977), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_constexpr] = ACTIONS(2977), - [anon_sym_volatile] = ACTIONS(2977), - [anon_sym_restrict] = ACTIONS(2977), - [anon_sym___restrict__] = ACTIONS(2977), - [anon_sym__Atomic] = ACTIONS(2977), - [anon_sym__Noreturn] = ACTIONS(2977), - [anon_sym_noreturn] = ACTIONS(2977), - [anon_sym_mutable] = ACTIONS(2977), - [anon_sym_constinit] = ACTIONS(2977), - [anon_sym_consteval] = ACTIONS(2977), - [sym_primitive_type] = ACTIONS(2977), - [anon_sym_enum] = ACTIONS(2977), - [anon_sym_class] = ACTIONS(2977), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_union] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_else] = ACTIONS(2977), - [anon_sym_switch] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_break] = ACTIONS(2977), - [anon_sym_continue] = ACTIONS(2977), - [anon_sym_goto] = ACTIONS(2977), - [anon_sym_not] = ACTIONS(2977), - [anon_sym_compl] = ACTIONS(2977), - [anon_sym_DASH_DASH] = ACTIONS(2979), - [anon_sym_PLUS_PLUS] = ACTIONS(2979), - [anon_sym_sizeof] = ACTIONS(2977), - [anon_sym___alignof__] = ACTIONS(2977), - [anon_sym___alignof] = ACTIONS(2977), - [anon_sym__alignof] = ACTIONS(2977), - [anon_sym_alignof] = ACTIONS(2977), - [anon_sym__Alignof] = ACTIONS(2977), - [anon_sym_offsetof] = ACTIONS(2977), - [anon_sym__Generic] = ACTIONS(2977), - [anon_sym_asm] = ACTIONS(2977), - [anon_sym___asm__] = ACTIONS(2977), - [sym_number_literal] = ACTIONS(2979), - [anon_sym_L_SQUOTE] = ACTIONS(2979), - [anon_sym_u_SQUOTE] = ACTIONS(2979), - [anon_sym_U_SQUOTE] = ACTIONS(2979), - [anon_sym_u8_SQUOTE] = ACTIONS(2979), - [anon_sym_SQUOTE] = ACTIONS(2979), - [anon_sym_L_DQUOTE] = ACTIONS(2979), - [anon_sym_u_DQUOTE] = ACTIONS(2979), - [anon_sym_U_DQUOTE] = ACTIONS(2979), - [anon_sym_u8_DQUOTE] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym_true] = ACTIONS(2977), - [sym_false] = ACTIONS(2977), - [anon_sym_NULL] = ACTIONS(2977), - [anon_sym_nullptr] = ACTIONS(2977), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2977), - [anon_sym_decltype] = ACTIONS(2977), - [anon_sym_virtual] = ACTIONS(2977), - [anon_sym_alignas] = ACTIONS(2977), - [anon_sym_typename] = ACTIONS(2977), - [anon_sym_template] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_delete] = ACTIONS(2977), - [anon_sym_throw] = ACTIONS(2977), - [anon_sym_co_return] = ACTIONS(2977), - [anon_sym_co_yield] = ACTIONS(2977), - [anon_sym_R_DQUOTE] = ACTIONS(2979), - [anon_sym_LR_DQUOTE] = ACTIONS(2979), - [anon_sym_uR_DQUOTE] = ACTIONS(2979), - [anon_sym_UR_DQUOTE] = ACTIONS(2979), - [anon_sym_u8R_DQUOTE] = ACTIONS(2979), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_requires] = ACTIONS(2977), - [sym_this] = ACTIONS(2977), + [sym__expression] = STATE(3227), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1555] = { - [sym_identifier] = ACTIONS(2844), - [anon_sym_LPAREN2] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2844), - [anon_sym_PLUS] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_SEMI] = ACTIONS(2846), - [anon_sym___extension__] = ACTIONS(2844), - [anon_sym_typedef] = ACTIONS(2844), - [anon_sym_extern] = ACTIONS(2844), - [anon_sym___attribute__] = ACTIONS(2844), - [anon_sym_COLON_COLON] = ACTIONS(2846), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2846), - [anon_sym___declspec] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_signed] = ACTIONS(2844), - [anon_sym_unsigned] = ACTIONS(2844), - [anon_sym_long] = ACTIONS(2844), - [anon_sym_short] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_static] = ACTIONS(2844), - [anon_sym_register] = ACTIONS(2844), - [anon_sym_inline] = ACTIONS(2844), - [anon_sym___inline] = ACTIONS(2844), - [anon_sym___inline__] = ACTIONS(2844), - [anon_sym___forceinline] = ACTIONS(2844), - [anon_sym_thread_local] = ACTIONS(2844), - [anon_sym___thread] = ACTIONS(2844), - [anon_sym_const] = ACTIONS(2844), - [anon_sym_constexpr] = ACTIONS(2844), - [anon_sym_volatile] = ACTIONS(2844), - [anon_sym_restrict] = ACTIONS(2844), - [anon_sym___restrict__] = ACTIONS(2844), - [anon_sym__Atomic] = ACTIONS(2844), - [anon_sym__Noreturn] = ACTIONS(2844), - [anon_sym_noreturn] = ACTIONS(2844), - [anon_sym_mutable] = ACTIONS(2844), - [anon_sym_constinit] = ACTIONS(2844), - [anon_sym_consteval] = ACTIONS(2844), - [sym_primitive_type] = ACTIONS(2844), - [anon_sym_enum] = ACTIONS(2844), - [anon_sym_class] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_else] = ACTIONS(2844), - [anon_sym_switch] = ACTIONS(2844), - [anon_sym_while] = ACTIONS(2844), - [anon_sym_do] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2844), - [anon_sym_return] = ACTIONS(2844), - [anon_sym_break] = ACTIONS(2844), - [anon_sym_continue] = ACTIONS(2844), - [anon_sym_goto] = ACTIONS(2844), - [anon_sym_not] = ACTIONS(2844), - [anon_sym_compl] = ACTIONS(2844), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_sizeof] = ACTIONS(2844), - [anon_sym___alignof__] = ACTIONS(2844), - [anon_sym___alignof] = ACTIONS(2844), - [anon_sym__alignof] = ACTIONS(2844), - [anon_sym_alignof] = ACTIONS(2844), - [anon_sym__Alignof] = ACTIONS(2844), - [anon_sym_offsetof] = ACTIONS(2844), - [anon_sym__Generic] = ACTIONS(2844), - [anon_sym_asm] = ACTIONS(2844), - [anon_sym___asm__] = ACTIONS(2844), - [sym_number_literal] = ACTIONS(2846), - [anon_sym_L_SQUOTE] = ACTIONS(2846), - [anon_sym_u_SQUOTE] = ACTIONS(2846), - [anon_sym_U_SQUOTE] = ACTIONS(2846), - [anon_sym_u8_SQUOTE] = ACTIONS(2846), - [anon_sym_SQUOTE] = ACTIONS(2846), - [anon_sym_L_DQUOTE] = ACTIONS(2846), - [anon_sym_u_DQUOTE] = ACTIONS(2846), - [anon_sym_U_DQUOTE] = ACTIONS(2846), - [anon_sym_u8_DQUOTE] = ACTIONS(2846), - [anon_sym_DQUOTE] = ACTIONS(2846), - [sym_true] = ACTIONS(2844), - [sym_false] = ACTIONS(2844), - [anon_sym_NULL] = ACTIONS(2844), - [anon_sym_nullptr] = ACTIONS(2844), + [sym__expression] = STATE(3905), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2844), - [anon_sym_decltype] = ACTIONS(2844), - [anon_sym_virtual] = ACTIONS(2844), - [anon_sym_alignas] = ACTIONS(2844), - [anon_sym_typename] = ACTIONS(2844), - [anon_sym_template] = ACTIONS(2844), - [anon_sym_try] = ACTIONS(2844), - [anon_sym_delete] = ACTIONS(2844), - [anon_sym_throw] = ACTIONS(2844), - [anon_sym_co_return] = ACTIONS(2844), - [anon_sym_co_yield] = ACTIONS(2844), - [anon_sym_R_DQUOTE] = ACTIONS(2846), - [anon_sym_LR_DQUOTE] = ACTIONS(2846), - [anon_sym_uR_DQUOTE] = ACTIONS(2846), - [anon_sym_UR_DQUOTE] = ACTIONS(2846), - [anon_sym_u8R_DQUOTE] = ACTIONS(2846), - [anon_sym_co_await] = ACTIONS(2844), - [anon_sym_new] = ACTIONS(2844), - [anon_sym_requires] = ACTIONS(2844), - [sym_this] = ACTIONS(2844), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1556] = { - [sym_identifier] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_SEMI] = ACTIONS(2943), - [anon_sym___extension__] = ACTIONS(2941), - [anon_sym_typedef] = ACTIONS(2941), - [anon_sym_extern] = ACTIONS(2941), - [anon_sym___attribute__] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2943), - [anon_sym___declspec] = ACTIONS(2941), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_signed] = ACTIONS(2941), - [anon_sym_unsigned] = ACTIONS(2941), - [anon_sym_long] = ACTIONS(2941), - [anon_sym_short] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_static] = ACTIONS(2941), - [anon_sym_register] = ACTIONS(2941), - [anon_sym_inline] = ACTIONS(2941), - [anon_sym___inline] = ACTIONS(2941), - [anon_sym___inline__] = ACTIONS(2941), - [anon_sym___forceinline] = ACTIONS(2941), - [anon_sym_thread_local] = ACTIONS(2941), - [anon_sym___thread] = ACTIONS(2941), - [anon_sym_const] = ACTIONS(2941), - [anon_sym_constexpr] = ACTIONS(2941), - [anon_sym_volatile] = ACTIONS(2941), - [anon_sym_restrict] = ACTIONS(2941), - [anon_sym___restrict__] = ACTIONS(2941), - [anon_sym__Atomic] = ACTIONS(2941), - [anon_sym__Noreturn] = ACTIONS(2941), - [anon_sym_noreturn] = ACTIONS(2941), - [anon_sym_mutable] = ACTIONS(2941), - [anon_sym_constinit] = ACTIONS(2941), - [anon_sym_consteval] = ACTIONS(2941), - [sym_primitive_type] = ACTIONS(2941), - [anon_sym_enum] = ACTIONS(2941), - [anon_sym_class] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2941), - [anon_sym_union] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_else] = ACTIONS(2941), - [anon_sym_switch] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_break] = ACTIONS(2941), - [anon_sym_continue] = ACTIONS(2941), - [anon_sym_goto] = ACTIONS(2941), - [anon_sym_not] = ACTIONS(2941), - [anon_sym_compl] = ACTIONS(2941), - [anon_sym_DASH_DASH] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2943), - [anon_sym_sizeof] = ACTIONS(2941), - [anon_sym___alignof__] = ACTIONS(2941), - [anon_sym___alignof] = ACTIONS(2941), - [anon_sym__alignof] = ACTIONS(2941), - [anon_sym_alignof] = ACTIONS(2941), - [anon_sym__Alignof] = ACTIONS(2941), - [anon_sym_offsetof] = ACTIONS(2941), - [anon_sym__Generic] = ACTIONS(2941), - [anon_sym_asm] = ACTIONS(2941), - [anon_sym___asm__] = ACTIONS(2941), - [sym_number_literal] = ACTIONS(2943), - [anon_sym_L_SQUOTE] = ACTIONS(2943), - [anon_sym_u_SQUOTE] = ACTIONS(2943), - [anon_sym_U_SQUOTE] = ACTIONS(2943), - [anon_sym_u8_SQUOTE] = ACTIONS(2943), - [anon_sym_SQUOTE] = ACTIONS(2943), - [anon_sym_L_DQUOTE] = ACTIONS(2943), - [anon_sym_u_DQUOTE] = ACTIONS(2943), - [anon_sym_U_DQUOTE] = ACTIONS(2943), - [anon_sym_u8_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE] = ACTIONS(2943), - [sym_true] = ACTIONS(2941), - [sym_false] = ACTIONS(2941), - [anon_sym_NULL] = ACTIONS(2941), - [anon_sym_nullptr] = ACTIONS(2941), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2941), - [anon_sym_decltype] = ACTIONS(2941), - [anon_sym_virtual] = ACTIONS(2941), - [anon_sym_alignas] = ACTIONS(2941), - [anon_sym_typename] = ACTIONS(2941), - [anon_sym_template] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_delete] = ACTIONS(2941), - [anon_sym_throw] = ACTIONS(2941), - [anon_sym_co_return] = ACTIONS(2941), - [anon_sym_co_yield] = ACTIONS(2941), - [anon_sym_R_DQUOTE] = ACTIONS(2943), - [anon_sym_LR_DQUOTE] = ACTIONS(2943), - [anon_sym_uR_DQUOTE] = ACTIONS(2943), - [anon_sym_UR_DQUOTE] = ACTIONS(2943), - [anon_sym_u8R_DQUOTE] = ACTIONS(2943), - [anon_sym_co_await] = ACTIONS(2941), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_requires] = ACTIONS(2941), - [sym_this] = ACTIONS(2941), + [sym__expression] = STATE(3277), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1557] = { - [sym_identifier] = ACTIONS(2989), - [anon_sym_LPAREN2] = ACTIONS(2991), - [anon_sym_BANG] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2991), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym___extension__] = ACTIONS(2989), - [anon_sym_typedef] = ACTIONS(2989), - [anon_sym_extern] = ACTIONS(2989), - [anon_sym___attribute__] = ACTIONS(2989), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), - [anon_sym___declspec] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_signed] = ACTIONS(2989), - [anon_sym_unsigned] = ACTIONS(2989), - [anon_sym_long] = ACTIONS(2989), - [anon_sym_short] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_register] = ACTIONS(2989), - [anon_sym_inline] = ACTIONS(2989), - [anon_sym___inline] = ACTIONS(2989), - [anon_sym___inline__] = ACTIONS(2989), - [anon_sym___forceinline] = ACTIONS(2989), - [anon_sym_thread_local] = ACTIONS(2989), - [anon_sym___thread] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_constexpr] = ACTIONS(2989), - [anon_sym_volatile] = ACTIONS(2989), - [anon_sym_restrict] = ACTIONS(2989), - [anon_sym___restrict__] = ACTIONS(2989), - [anon_sym__Atomic] = ACTIONS(2989), - [anon_sym__Noreturn] = ACTIONS(2989), - [anon_sym_noreturn] = ACTIONS(2989), - [anon_sym_mutable] = ACTIONS(2989), - [anon_sym_constinit] = ACTIONS(2989), - [anon_sym_consteval] = ACTIONS(2989), - [sym_primitive_type] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_class] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_else] = ACTIONS(2989), - [anon_sym_switch] = ACTIONS(2989), - [anon_sym_while] = ACTIONS(2989), - [anon_sym_do] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_goto] = ACTIONS(2989), - [anon_sym_not] = ACTIONS(2989), - [anon_sym_compl] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_sizeof] = ACTIONS(2989), - [anon_sym___alignof__] = ACTIONS(2989), - [anon_sym___alignof] = ACTIONS(2989), - [anon_sym__alignof] = ACTIONS(2989), - [anon_sym_alignof] = ACTIONS(2989), - [anon_sym__Alignof] = ACTIONS(2989), - [anon_sym_offsetof] = ACTIONS(2989), - [anon_sym__Generic] = ACTIONS(2989), - [anon_sym_asm] = ACTIONS(2989), - [anon_sym___asm__] = ACTIONS(2989), - [sym_number_literal] = ACTIONS(2991), - [anon_sym_L_SQUOTE] = ACTIONS(2991), - [anon_sym_u_SQUOTE] = ACTIONS(2991), - [anon_sym_U_SQUOTE] = ACTIONS(2991), - [anon_sym_u8_SQUOTE] = ACTIONS(2991), - [anon_sym_SQUOTE] = ACTIONS(2991), - [anon_sym_L_DQUOTE] = ACTIONS(2991), - [anon_sym_u_DQUOTE] = ACTIONS(2991), - [anon_sym_U_DQUOTE] = ACTIONS(2991), - [anon_sym_u8_DQUOTE] = ACTIONS(2991), - [anon_sym_DQUOTE] = ACTIONS(2991), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [anon_sym_NULL] = ACTIONS(2989), - [anon_sym_nullptr] = ACTIONS(2989), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2989), - [anon_sym_decltype] = ACTIONS(2989), - [anon_sym_virtual] = ACTIONS(2989), - [anon_sym_alignas] = ACTIONS(2989), - [anon_sym_typename] = ACTIONS(2989), - [anon_sym_template] = ACTIONS(2989), - [anon_sym_try] = ACTIONS(2989), - [anon_sym_delete] = ACTIONS(2989), - [anon_sym_throw] = ACTIONS(2989), - [anon_sym_co_return] = ACTIONS(2989), - [anon_sym_co_yield] = ACTIONS(2989), - [anon_sym_R_DQUOTE] = ACTIONS(2991), - [anon_sym_LR_DQUOTE] = ACTIONS(2991), - [anon_sym_uR_DQUOTE] = ACTIONS(2991), - [anon_sym_UR_DQUOTE] = ACTIONS(2991), - [anon_sym_u8R_DQUOTE] = ACTIONS(2991), - [anon_sym_co_await] = ACTIONS(2989), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_requires] = ACTIONS(2989), - [sym_this] = ACTIONS(2989), + [sym__expression] = STATE(3231), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1558] = { - [sym_identifier] = 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] = ACTIONS(3029), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym___extension__] = ACTIONS(3027), - [anon_sym_typedef] = ACTIONS(3027), - [anon_sym_extern] = ACTIONS(3027), - [anon_sym___attribute__] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(3029), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3029), - [anon_sym___declspec] = 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_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = 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_else] = ACTIONS(3027), - [anon_sym_switch] = 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), - [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__expression] = STATE(3907), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3027), - [anon_sym_decltype] = ACTIONS(3027), - [anon_sym_virtual] = ACTIONS(3027), - [anon_sym_alignas] = ACTIONS(3027), - [anon_sym_typename] = ACTIONS(3027), - [anon_sym_template] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3027), - [anon_sym_delete] = ACTIONS(3027), - [anon_sym_throw] = 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_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1559] = { - [sym_identifier] = 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] = ACTIONS(3005), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym___extension__] = ACTIONS(3003), - [anon_sym_typedef] = ACTIONS(3003), - [anon_sym_extern] = ACTIONS(3003), - [anon_sym___attribute__] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3005), - [anon_sym___declspec] = 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_mutable] = ACTIONS(3003), - [anon_sym_constinit] = ACTIONS(3003), - [anon_sym_consteval] = 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_else] = ACTIONS(3003), - [anon_sym_switch] = 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), - [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_virtual] = ACTIONS(3003), - [anon_sym_alignas] = ACTIONS(3003), - [anon_sym_typename] = ACTIONS(3003), - [anon_sym_template] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_delete] = ACTIONS(3003), - [anon_sym_throw] = 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), + [sym__expression] = STATE(4107), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1560] = { - [sym_identifier] = 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] = ACTIONS(3013), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym___extension__] = ACTIONS(3011), - [anon_sym_typedef] = ACTIONS(3011), - [anon_sym_extern] = ACTIONS(3011), - [anon_sym___attribute__] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(3013), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3013), - [anon_sym___declspec] = 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_mutable] = ACTIONS(3011), - [anon_sym_constinit] = ACTIONS(3011), - [anon_sym_consteval] = 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_else] = ACTIONS(3011), - [anon_sym_switch] = 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), - [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_virtual] = ACTIONS(3011), - [anon_sym_alignas] = ACTIONS(3011), - [anon_sym_typename] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3011), - [anon_sym_try] = ACTIONS(3011), - [anon_sym_delete] = ACTIONS(3011), - [anon_sym_throw] = 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), + [sym__expression] = STATE(3238), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1561] = { - [sym_identifier] = 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] = ACTIONS(3029), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym___extension__] = ACTIONS(3027), - [anon_sym_typedef] = ACTIONS(3027), - [anon_sym_extern] = ACTIONS(3027), - [anon_sym___attribute__] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(3029), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3029), - [anon_sym___declspec] = 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_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = 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_else] = ACTIONS(3027), - [anon_sym_switch] = 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), - [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__expression] = STATE(4327), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3027), - [anon_sym_decltype] = ACTIONS(3027), - [anon_sym_virtual] = ACTIONS(3027), - [anon_sym_alignas] = ACTIONS(3027), - [anon_sym_typename] = ACTIONS(3027), - [anon_sym_template] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3027), - [anon_sym_delete] = ACTIONS(3027), - [anon_sym_throw] = 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_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1562] = { - [sym_identifier] = ACTIONS(3031), - [anon_sym_LPAREN2] = ACTIONS(3033), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym___extension__] = ACTIONS(3031), - [anon_sym_typedef] = ACTIONS(3031), - [anon_sym_extern] = ACTIONS(3031), - [anon_sym___attribute__] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3033), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3033), - [anon_sym___declspec] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_signed] = ACTIONS(3031), - [anon_sym_unsigned] = ACTIONS(3031), - [anon_sym_long] = ACTIONS(3031), - [anon_sym_short] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_static] = ACTIONS(3031), - [anon_sym_register] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym___inline] = ACTIONS(3031), - [anon_sym___inline__] = ACTIONS(3031), - [anon_sym___forceinline] = ACTIONS(3031), - [anon_sym_thread_local] = ACTIONS(3031), - [anon_sym___thread] = ACTIONS(3031), - [anon_sym_const] = ACTIONS(3031), - [anon_sym_constexpr] = ACTIONS(3031), - [anon_sym_volatile] = ACTIONS(3031), - [anon_sym_restrict] = ACTIONS(3031), - [anon_sym___restrict__] = ACTIONS(3031), - [anon_sym__Atomic] = ACTIONS(3031), - [anon_sym__Noreturn] = ACTIONS(3031), - [anon_sym_noreturn] = ACTIONS(3031), - [anon_sym_mutable] = ACTIONS(3031), - [anon_sym_constinit] = ACTIONS(3031), - [anon_sym_consteval] = ACTIONS(3031), - [sym_primitive_type] = ACTIONS(3031), - [anon_sym_enum] = ACTIONS(3031), - [anon_sym_class] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_union] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_switch] = ACTIONS(3031), - [anon_sym_while] = ACTIONS(3031), - [anon_sym_do] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_goto] = ACTIONS(3031), - [anon_sym_not] = ACTIONS(3031), - [anon_sym_compl] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3033), - [anon_sym_PLUS_PLUS] = ACTIONS(3033), - [anon_sym_sizeof] = ACTIONS(3031), - [anon_sym___alignof__] = ACTIONS(3031), - [anon_sym___alignof] = ACTIONS(3031), - [anon_sym__alignof] = ACTIONS(3031), - [anon_sym_alignof] = ACTIONS(3031), - [anon_sym__Alignof] = ACTIONS(3031), - [anon_sym_offsetof] = ACTIONS(3031), - [anon_sym__Generic] = ACTIONS(3031), - [anon_sym_asm] = ACTIONS(3031), - [anon_sym___asm__] = ACTIONS(3031), - [sym_number_literal] = ACTIONS(3033), - [anon_sym_L_SQUOTE] = ACTIONS(3033), - [anon_sym_u_SQUOTE] = ACTIONS(3033), - [anon_sym_U_SQUOTE] = ACTIONS(3033), - [anon_sym_u8_SQUOTE] = ACTIONS(3033), - [anon_sym_SQUOTE] = ACTIONS(3033), - [anon_sym_L_DQUOTE] = ACTIONS(3033), - [anon_sym_u_DQUOTE] = ACTIONS(3033), - [anon_sym_U_DQUOTE] = ACTIONS(3033), - [anon_sym_u8_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [anon_sym_NULL] = ACTIONS(3031), - [anon_sym_nullptr] = ACTIONS(3031), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3031), - [anon_sym_decltype] = ACTIONS(3031), - [anon_sym_virtual] = ACTIONS(3031), - [anon_sym_alignas] = ACTIONS(3031), - [anon_sym_typename] = ACTIONS(3031), - [anon_sym_template] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3031), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_throw] = ACTIONS(3031), - [anon_sym_co_return] = ACTIONS(3031), - [anon_sym_co_yield] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3031), - [anon_sym_new] = ACTIONS(3031), - [anon_sym_requires] = ACTIONS(3031), - [sym_this] = ACTIONS(3031), + [sym__expression] = STATE(3240), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1563] = { - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3075), - [anon_sym_TILDE] = ACTIONS(3075), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_SEMI] = ACTIONS(3075), - [anon_sym___extension__] = ACTIONS(3073), - [anon_sym_typedef] = ACTIONS(3073), - [anon_sym_extern] = ACTIONS(3073), - [anon_sym___attribute__] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3075), - [anon_sym___declspec] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_signed] = ACTIONS(3073), - [anon_sym_unsigned] = ACTIONS(3073), - [anon_sym_long] = ACTIONS(3073), - [anon_sym_short] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_register] = ACTIONS(3073), - [anon_sym_inline] = ACTIONS(3073), - [anon_sym___inline] = ACTIONS(3073), - [anon_sym___inline__] = ACTIONS(3073), - [anon_sym___forceinline] = ACTIONS(3073), - [anon_sym_thread_local] = ACTIONS(3073), - [anon_sym___thread] = ACTIONS(3073), - [anon_sym_const] = ACTIONS(3073), - [anon_sym_constexpr] = ACTIONS(3073), - [anon_sym_volatile] = ACTIONS(3073), - [anon_sym_restrict] = ACTIONS(3073), - [anon_sym___restrict__] = ACTIONS(3073), - [anon_sym__Atomic] = ACTIONS(3073), - [anon_sym__Noreturn] = ACTIONS(3073), - [anon_sym_noreturn] = ACTIONS(3073), - [anon_sym_mutable] = ACTIONS(3073), - [anon_sym_constinit] = ACTIONS(3073), - [anon_sym_consteval] = ACTIONS(3073), - [sym_primitive_type] = ACTIONS(3073), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3073), - [anon_sym_struct] = ACTIONS(3073), - [anon_sym_union] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3073), - [anon_sym_switch] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_break] = ACTIONS(3073), - [anon_sym_continue] = ACTIONS(3073), - [anon_sym_goto] = ACTIONS(3073), - [anon_sym_not] = ACTIONS(3073), - [anon_sym_compl] = ACTIONS(3073), - [anon_sym_DASH_DASH] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(3075), - [anon_sym_sizeof] = ACTIONS(3073), - [anon_sym___alignof__] = ACTIONS(3073), - [anon_sym___alignof] = ACTIONS(3073), - [anon_sym__alignof] = ACTIONS(3073), - [anon_sym_alignof] = ACTIONS(3073), - [anon_sym__Alignof] = ACTIONS(3073), - [anon_sym_offsetof] = ACTIONS(3073), - [anon_sym__Generic] = ACTIONS(3073), - [anon_sym_asm] = ACTIONS(3073), - [anon_sym___asm__] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(3075), - [anon_sym_L_SQUOTE] = ACTIONS(3075), - [anon_sym_u_SQUOTE] = ACTIONS(3075), - [anon_sym_U_SQUOTE] = ACTIONS(3075), - [anon_sym_u8_SQUOTE] = ACTIONS(3075), - [anon_sym_SQUOTE] = ACTIONS(3075), - [anon_sym_L_DQUOTE] = ACTIONS(3075), - [anon_sym_u_DQUOTE] = ACTIONS(3075), - [anon_sym_U_DQUOTE] = ACTIONS(3075), - [anon_sym_u8_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE] = ACTIONS(3075), - [sym_true] = ACTIONS(3073), - [sym_false] = ACTIONS(3073), - [anon_sym_NULL] = ACTIONS(3073), - [anon_sym_nullptr] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3073), - [anon_sym_decltype] = ACTIONS(3073), - [anon_sym_virtual] = ACTIONS(3073), - [anon_sym_alignas] = ACTIONS(3073), - [anon_sym_typename] = ACTIONS(3073), - [anon_sym_template] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_delete] = ACTIONS(3073), - [anon_sym_throw] = ACTIONS(3073), - [anon_sym_co_return] = ACTIONS(3073), - [anon_sym_co_yield] = ACTIONS(3073), - [anon_sym_R_DQUOTE] = ACTIONS(3075), - [anon_sym_LR_DQUOTE] = ACTIONS(3075), - [anon_sym_uR_DQUOTE] = ACTIONS(3075), - [anon_sym_UR_DQUOTE] = ACTIONS(3075), - [anon_sym_u8R_DQUOTE] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3073), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_requires] = ACTIONS(3073), - [sym_this] = ACTIONS(3073), + [sym__expression] = STATE(3245), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1564] = { - [sym_identifier] = 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] = ACTIONS(3113), - [anon_sym_SEMI] = ACTIONS(3113), - [anon_sym___extension__] = ACTIONS(3111), - [anon_sym_typedef] = ACTIONS(3111), - [anon_sym_extern] = ACTIONS(3111), - [anon_sym___attribute__] = ACTIONS(3111), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3113), - [anon_sym___declspec] = 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_mutable] = ACTIONS(3111), - [anon_sym_constinit] = ACTIONS(3111), - [anon_sym_consteval] = 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_else] = ACTIONS(3111), - [anon_sym_switch] = 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), - [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__expression] = STATE(3902), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3111), - [anon_sym_decltype] = ACTIONS(3111), - [anon_sym_virtual] = ACTIONS(3111), - [anon_sym_alignas] = ACTIONS(3111), - [anon_sym_typename] = ACTIONS(3111), - [anon_sym_template] = ACTIONS(3111), - [anon_sym_try] = ACTIONS(3111), - [anon_sym_delete] = ACTIONS(3111), - [anon_sym_throw] = 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), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1565] = { - [sym_identifier] = ACTIONS(2838), - [anon_sym_LPAREN2] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym___extension__] = ACTIONS(2838), - [anon_sym_typedef] = ACTIONS(2838), - [anon_sym_extern] = ACTIONS(2838), - [anon_sym___attribute__] = ACTIONS(2838), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2840), - [anon_sym___declspec] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_signed] = ACTIONS(2838), - [anon_sym_unsigned] = ACTIONS(2838), - [anon_sym_long] = ACTIONS(2838), - [anon_sym_short] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_static] = ACTIONS(2838), - [anon_sym_register] = ACTIONS(2838), - [anon_sym_inline] = ACTIONS(2838), - [anon_sym___inline] = ACTIONS(2838), - [anon_sym___inline__] = ACTIONS(2838), - [anon_sym___forceinline] = ACTIONS(2838), - [anon_sym_thread_local] = ACTIONS(2838), - [anon_sym___thread] = ACTIONS(2838), - [anon_sym_const] = ACTIONS(2838), - [anon_sym_constexpr] = ACTIONS(2838), - [anon_sym_volatile] = ACTIONS(2838), - [anon_sym_restrict] = ACTIONS(2838), - [anon_sym___restrict__] = ACTIONS(2838), - [anon_sym__Atomic] = ACTIONS(2838), - [anon_sym__Noreturn] = ACTIONS(2838), - [anon_sym_noreturn] = ACTIONS(2838), - [anon_sym_mutable] = ACTIONS(2838), - [anon_sym_constinit] = ACTIONS(2838), - [anon_sym_consteval] = ACTIONS(2838), - [sym_primitive_type] = ACTIONS(2838), - [anon_sym_enum] = ACTIONS(2838), - [anon_sym_class] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2838), - [anon_sym_union] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_else] = ACTIONS(2838), - [anon_sym_switch] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_break] = ACTIONS(2838), - [anon_sym_continue] = ACTIONS(2838), - [anon_sym_goto] = ACTIONS(2838), - [anon_sym_not] = ACTIONS(2838), - [anon_sym_compl] = ACTIONS(2838), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_sizeof] = ACTIONS(2838), - [anon_sym___alignof__] = ACTIONS(2838), - [anon_sym___alignof] = ACTIONS(2838), - [anon_sym__alignof] = ACTIONS(2838), - [anon_sym_alignof] = ACTIONS(2838), - [anon_sym__Alignof] = ACTIONS(2838), - [anon_sym_offsetof] = ACTIONS(2838), - [anon_sym__Generic] = ACTIONS(2838), - [anon_sym_asm] = ACTIONS(2838), - [anon_sym___asm__] = ACTIONS(2838), - [sym_number_literal] = ACTIONS(2840), - [anon_sym_L_SQUOTE] = ACTIONS(2840), - [anon_sym_u_SQUOTE] = ACTIONS(2840), - [anon_sym_U_SQUOTE] = ACTIONS(2840), - [anon_sym_u8_SQUOTE] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_L_DQUOTE] = ACTIONS(2840), - [anon_sym_u_DQUOTE] = ACTIONS(2840), - [anon_sym_U_DQUOTE] = ACTIONS(2840), - [anon_sym_u8_DQUOTE] = ACTIONS(2840), - [anon_sym_DQUOTE] = ACTIONS(2840), - [sym_true] = ACTIONS(2838), - [sym_false] = ACTIONS(2838), - [anon_sym_NULL] = ACTIONS(2838), - [anon_sym_nullptr] = ACTIONS(2838), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2838), - [anon_sym_decltype] = ACTIONS(2838), - [anon_sym_virtual] = ACTIONS(2838), - [anon_sym_alignas] = ACTIONS(2838), - [anon_sym_typename] = ACTIONS(2838), - [anon_sym_template] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_delete] = ACTIONS(2838), - [anon_sym_throw] = ACTIONS(2838), - [anon_sym_co_return] = ACTIONS(2838), - [anon_sym_co_yield] = ACTIONS(2838), - [anon_sym_R_DQUOTE] = ACTIONS(2840), - [anon_sym_LR_DQUOTE] = ACTIONS(2840), - [anon_sym_uR_DQUOTE] = ACTIONS(2840), - [anon_sym_UR_DQUOTE] = ACTIONS(2840), - [anon_sym_u8R_DQUOTE] = ACTIONS(2840), - [anon_sym_co_await] = ACTIONS(2838), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_requires] = ACTIONS(2838), - [sym_this] = ACTIONS(2838), + [sym__expression] = STATE(3263), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1566] = { - [sym_identifier] = ACTIONS(3107), - [anon_sym_LPAREN2] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_SEMI] = ACTIONS(3109), - [anon_sym___extension__] = ACTIONS(3107), - [anon_sym_typedef] = ACTIONS(3107), - [anon_sym_extern] = ACTIONS(3107), - [anon_sym___attribute__] = ACTIONS(3107), - [anon_sym_COLON_COLON] = ACTIONS(3109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), - [anon_sym___declspec] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_signed] = ACTIONS(3107), - [anon_sym_unsigned] = ACTIONS(3107), - [anon_sym_long] = ACTIONS(3107), - [anon_sym_short] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_register] = ACTIONS(3107), - [anon_sym_inline] = ACTIONS(3107), - [anon_sym___inline] = ACTIONS(3107), - [anon_sym___inline__] = ACTIONS(3107), - [anon_sym___forceinline] = ACTIONS(3107), - [anon_sym_thread_local] = ACTIONS(3107), - [anon_sym___thread] = ACTIONS(3107), - [anon_sym_const] = ACTIONS(3107), - [anon_sym_constexpr] = ACTIONS(3107), - [anon_sym_volatile] = ACTIONS(3107), - [anon_sym_restrict] = ACTIONS(3107), - [anon_sym___restrict__] = ACTIONS(3107), - [anon_sym__Atomic] = ACTIONS(3107), - [anon_sym__Noreturn] = ACTIONS(3107), - [anon_sym_noreturn] = ACTIONS(3107), - [anon_sym_mutable] = ACTIONS(3107), - [anon_sym_constinit] = ACTIONS(3107), - [anon_sym_consteval] = ACTIONS(3107), - [sym_primitive_type] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3107), - [anon_sym_union] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3107), - [anon_sym_else] = ACTIONS(3107), - [anon_sym_switch] = ACTIONS(3107), - [anon_sym_while] = ACTIONS(3107), - [anon_sym_do] = ACTIONS(3107), - [anon_sym_for] = ACTIONS(3107), - [anon_sym_return] = ACTIONS(3107), - [anon_sym_break] = ACTIONS(3107), - [anon_sym_continue] = ACTIONS(3107), - [anon_sym_goto] = ACTIONS(3107), - [anon_sym_not] = ACTIONS(3107), - [anon_sym_compl] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3109), - [anon_sym_sizeof] = ACTIONS(3107), - [anon_sym___alignof__] = ACTIONS(3107), - [anon_sym___alignof] = ACTIONS(3107), - [anon_sym__alignof] = ACTIONS(3107), - [anon_sym_alignof] = ACTIONS(3107), - [anon_sym__Alignof] = ACTIONS(3107), - [anon_sym_offsetof] = ACTIONS(3107), - [anon_sym__Generic] = ACTIONS(3107), - [anon_sym_asm] = ACTIONS(3107), - [anon_sym___asm__] = ACTIONS(3107), - [sym_number_literal] = ACTIONS(3109), - [anon_sym_L_SQUOTE] = ACTIONS(3109), - [anon_sym_u_SQUOTE] = ACTIONS(3109), - [anon_sym_U_SQUOTE] = ACTIONS(3109), - [anon_sym_u8_SQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3109), - [anon_sym_L_DQUOTE] = ACTIONS(3109), - [anon_sym_u_DQUOTE] = ACTIONS(3109), - [anon_sym_U_DQUOTE] = ACTIONS(3109), - [anon_sym_u8_DQUOTE] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(3109), - [sym_true] = ACTIONS(3107), - [sym_false] = ACTIONS(3107), - [anon_sym_NULL] = ACTIONS(3107), - [anon_sym_nullptr] = ACTIONS(3107), + [sym__expression] = STATE(3900), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3107), - [anon_sym_decltype] = ACTIONS(3107), - [anon_sym_virtual] = ACTIONS(3107), - [anon_sym_alignas] = ACTIONS(3107), - [anon_sym_typename] = ACTIONS(3107), - [anon_sym_template] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(3107), - [anon_sym_delete] = ACTIONS(3107), - [anon_sym_throw] = ACTIONS(3107), - [anon_sym_co_return] = ACTIONS(3107), - [anon_sym_co_yield] = ACTIONS(3107), - [anon_sym_R_DQUOTE] = ACTIONS(3109), - [anon_sym_LR_DQUOTE] = ACTIONS(3109), - [anon_sym_uR_DQUOTE] = ACTIONS(3109), - [anon_sym_UR_DQUOTE] = ACTIONS(3109), - [anon_sym_u8R_DQUOTE] = ACTIONS(3109), - [anon_sym_co_await] = ACTIONS(3107), - [anon_sym_new] = ACTIONS(3107), - [anon_sym_requires] = ACTIONS(3107), - [sym_this] = ACTIONS(3107), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1567] = { - [sym_identifier] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym___extension__] = ACTIONS(3083), - [anon_sym_typedef] = ACTIONS(3083), - [anon_sym_extern] = ACTIONS(3083), - [anon_sym___attribute__] = ACTIONS(3083), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), - [anon_sym___declspec] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_signed] = ACTIONS(3083), - [anon_sym_unsigned] = ACTIONS(3083), - [anon_sym_long] = ACTIONS(3083), - [anon_sym_short] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_static] = ACTIONS(3083), - [anon_sym_register] = ACTIONS(3083), - [anon_sym_inline] = ACTIONS(3083), - [anon_sym___inline] = ACTIONS(3083), - [anon_sym___inline__] = ACTIONS(3083), - [anon_sym___forceinline] = ACTIONS(3083), - [anon_sym_thread_local] = ACTIONS(3083), - [anon_sym___thread] = ACTIONS(3083), - [anon_sym_const] = ACTIONS(3083), - [anon_sym_constexpr] = ACTIONS(3083), - [anon_sym_volatile] = ACTIONS(3083), - [anon_sym_restrict] = ACTIONS(3083), - [anon_sym___restrict__] = ACTIONS(3083), - [anon_sym__Atomic] = ACTIONS(3083), - [anon_sym__Noreturn] = ACTIONS(3083), - [anon_sym_noreturn] = ACTIONS(3083), - [anon_sym_mutable] = ACTIONS(3083), - [anon_sym_constinit] = ACTIONS(3083), - [anon_sym_consteval] = ACTIONS(3083), - [sym_primitive_type] = ACTIONS(3083), - [anon_sym_enum] = ACTIONS(3083), - [anon_sym_class] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_else] = ACTIONS(3083), - [anon_sym_switch] = ACTIONS(3083), - [anon_sym_while] = ACTIONS(3083), - [anon_sym_do] = ACTIONS(3083), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_break] = ACTIONS(3083), - [anon_sym_continue] = ACTIONS(3083), - [anon_sym_goto] = ACTIONS(3083), - [anon_sym_not] = ACTIONS(3083), - [anon_sym_compl] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3083), - [anon_sym___alignof__] = ACTIONS(3083), - [anon_sym___alignof] = ACTIONS(3083), - [anon_sym__alignof] = ACTIONS(3083), - [anon_sym_alignof] = ACTIONS(3083), - [anon_sym__Alignof] = ACTIONS(3083), - [anon_sym_offsetof] = ACTIONS(3083), - [anon_sym__Generic] = ACTIONS(3083), - [anon_sym_asm] = ACTIONS(3083), - [anon_sym___asm__] = ACTIONS(3083), - [sym_number_literal] = ACTIONS(3085), - [anon_sym_L_SQUOTE] = ACTIONS(3085), - [anon_sym_u_SQUOTE] = ACTIONS(3085), - [anon_sym_U_SQUOTE] = ACTIONS(3085), - [anon_sym_u8_SQUOTE] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3085), - [anon_sym_L_DQUOTE] = ACTIONS(3085), - [anon_sym_u_DQUOTE] = ACTIONS(3085), - [anon_sym_U_DQUOTE] = ACTIONS(3085), - [anon_sym_u8_DQUOTE] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(3085), - [sym_true] = ACTIONS(3083), - [sym_false] = ACTIONS(3083), - [anon_sym_NULL] = ACTIONS(3083), - [anon_sym_nullptr] = ACTIONS(3083), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3083), - [anon_sym_decltype] = ACTIONS(3083), - [anon_sym_virtual] = ACTIONS(3083), - [anon_sym_alignas] = ACTIONS(3083), - [anon_sym_typename] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3083), - [anon_sym_try] = ACTIONS(3083), - [anon_sym_delete] = ACTIONS(3083), - [anon_sym_throw] = ACTIONS(3083), - [anon_sym_co_return] = ACTIONS(3083), - [anon_sym_co_yield] = ACTIONS(3083), - [anon_sym_R_DQUOTE] = ACTIONS(3085), - [anon_sym_LR_DQUOTE] = ACTIONS(3085), - [anon_sym_uR_DQUOTE] = ACTIONS(3085), - [anon_sym_UR_DQUOTE] = ACTIONS(3085), - [anon_sym_u8R_DQUOTE] = ACTIONS(3085), - [anon_sym_co_await] = ACTIONS(3083), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_requires] = ACTIONS(3083), - [sym_this] = ACTIONS(3083), + [sym__expression] = STATE(3328), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1568] = { - [sym_identifier] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym___extension__] = ACTIONS(2853), - [anon_sym_typedef] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym___attribute__] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2858), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), - [anon_sym___declspec] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_signed] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym___inline] = ACTIONS(2853), - [anon_sym___inline__] = ACTIONS(2853), - [anon_sym___forceinline] = ACTIONS(2853), - [anon_sym_thread_local] = ACTIONS(2853), - [anon_sym___thread] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_constexpr] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym___restrict__] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym__Noreturn] = ACTIONS(2853), - [anon_sym_noreturn] = ACTIONS(2853), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_constinit] = ACTIONS(2853), - [anon_sym_consteval] = ACTIONS(2853), - [sym_primitive_type] = ACTIONS(2853), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_else] = ACTIONS(2853), - [anon_sym_switch] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_do] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_goto] = ACTIONS(2853), - [anon_sym_not] = ACTIONS(2853), - [anon_sym_compl] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_sizeof] = ACTIONS(2853), - [anon_sym___alignof__] = ACTIONS(2853), - [anon_sym___alignof] = ACTIONS(2853), - [anon_sym__alignof] = ACTIONS(2853), - [anon_sym_alignof] = ACTIONS(2853), - [anon_sym__Alignof] = ACTIONS(2853), - [anon_sym_offsetof] = ACTIONS(2853), - [anon_sym__Generic] = ACTIONS(2853), - [anon_sym_asm] = ACTIONS(2853), - [anon_sym___asm__] = ACTIONS(2853), - [sym_number_literal] = ACTIONS(2858), - [anon_sym_L_SQUOTE] = ACTIONS(2858), - [anon_sym_u_SQUOTE] = ACTIONS(2858), - [anon_sym_U_SQUOTE] = ACTIONS(2858), - [anon_sym_u8_SQUOTE] = ACTIONS(2858), - [anon_sym_SQUOTE] = ACTIONS(2858), - [anon_sym_L_DQUOTE] = ACTIONS(2858), - [anon_sym_u_DQUOTE] = ACTIONS(2858), - [anon_sym_U_DQUOTE] = ACTIONS(2858), - [anon_sym_u8_DQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [sym_true] = ACTIONS(2853), - [sym_false] = ACTIONS(2853), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2853), - [anon_sym_decltype] = ACTIONS(2853), - [anon_sym_virtual] = ACTIONS(2853), - [anon_sym_alignas] = ACTIONS(2853), - [anon_sym_typename] = ACTIONS(2853), - [anon_sym_template] = ACTIONS(2853), - [anon_sym_try] = ACTIONS(2853), - [anon_sym_delete] = ACTIONS(2853), - [anon_sym_throw] = ACTIONS(2853), - [anon_sym_co_return] = ACTIONS(2853), - [anon_sym_co_yield] = ACTIONS(2853), - [anon_sym_R_DQUOTE] = ACTIONS(2858), - [anon_sym_LR_DQUOTE] = ACTIONS(2858), - [anon_sym_uR_DQUOTE] = ACTIONS(2858), - [anon_sym_UR_DQUOTE] = ACTIONS(2858), - [anon_sym_u8R_DQUOTE] = ACTIONS(2858), - [anon_sym_co_await] = ACTIONS(2853), - [anon_sym_new] = ACTIONS(2853), - [anon_sym_requires] = ACTIONS(2853), - [sym_this] = ACTIONS(2853), + [sym__expression] = STATE(3919), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1569] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(3819), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1570] = { - [sym_identifier] = ACTIONS(2985), - [anon_sym_LPAREN2] = ACTIONS(2987), - [anon_sym_BANG] = ACTIONS(2987), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym___extension__] = ACTIONS(2985), - [anon_sym_typedef] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym___attribute__] = ACTIONS(2985), - [anon_sym_COLON_COLON] = ACTIONS(2987), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), - [anon_sym___declspec] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_signed] = ACTIONS(2985), - [anon_sym_unsigned] = ACTIONS(2985), - [anon_sym_long] = ACTIONS(2985), - [anon_sym_short] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_register] = ACTIONS(2985), - [anon_sym_inline] = ACTIONS(2985), - [anon_sym___inline] = ACTIONS(2985), - [anon_sym___inline__] = ACTIONS(2985), - [anon_sym___forceinline] = ACTIONS(2985), - [anon_sym_thread_local] = ACTIONS(2985), - [anon_sym___thread] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_constexpr] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_restrict] = ACTIONS(2985), - [anon_sym___restrict__] = ACTIONS(2985), - [anon_sym__Atomic] = ACTIONS(2985), - [anon_sym__Noreturn] = ACTIONS(2985), - [anon_sym_noreturn] = ACTIONS(2985), - [anon_sym_mutable] = ACTIONS(2985), - [anon_sym_constinit] = ACTIONS(2985), - [anon_sym_consteval] = ACTIONS(2985), - [sym_primitive_type] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_class] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_union] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_switch] = ACTIONS(2985), - [anon_sym_while] = ACTIONS(2985), - [anon_sym_do] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym_not] = ACTIONS(2985), - [anon_sym_compl] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_sizeof] = ACTIONS(2985), - [anon_sym___alignof__] = ACTIONS(2985), - [anon_sym___alignof] = ACTIONS(2985), - [anon_sym__alignof] = ACTIONS(2985), - [anon_sym_alignof] = ACTIONS(2985), - [anon_sym__Alignof] = ACTIONS(2985), - [anon_sym_offsetof] = ACTIONS(2985), - [anon_sym__Generic] = ACTIONS(2985), - [anon_sym_asm] = ACTIONS(2985), - [anon_sym___asm__] = ACTIONS(2985), - [sym_number_literal] = ACTIONS(2987), - [anon_sym_L_SQUOTE] = ACTIONS(2987), - [anon_sym_u_SQUOTE] = ACTIONS(2987), - [anon_sym_U_SQUOTE] = ACTIONS(2987), - [anon_sym_u8_SQUOTE] = ACTIONS(2987), - [anon_sym_SQUOTE] = ACTIONS(2987), - [anon_sym_L_DQUOTE] = ACTIONS(2987), - [anon_sym_u_DQUOTE] = ACTIONS(2987), - [anon_sym_U_DQUOTE] = ACTIONS(2987), - [anon_sym_u8_DQUOTE] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [anon_sym_NULL] = ACTIONS(2985), - [anon_sym_nullptr] = ACTIONS(2985), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2985), - [anon_sym_decltype] = ACTIONS(2985), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_alignas] = ACTIONS(2985), - [anon_sym_typename] = ACTIONS(2985), - [anon_sym_template] = ACTIONS(2985), - [anon_sym_try] = ACTIONS(2985), - [anon_sym_delete] = ACTIONS(2985), - [anon_sym_throw] = ACTIONS(2985), - [anon_sym_co_return] = ACTIONS(2985), - [anon_sym_co_yield] = ACTIONS(2985), - [anon_sym_R_DQUOTE] = ACTIONS(2987), - [anon_sym_LR_DQUOTE] = ACTIONS(2987), - [anon_sym_uR_DQUOTE] = ACTIONS(2987), - [anon_sym_UR_DQUOTE] = ACTIONS(2987), - [anon_sym_u8R_DQUOTE] = ACTIONS(2987), - [anon_sym_co_await] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_requires] = ACTIONS(2985), - [sym_this] = ACTIONS(2985), + [sym__expression] = STATE(3429), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [1571] = { - [sym_identifier] = ACTIONS(2818), - [anon_sym_LPAREN2] = ACTIONS(2823), - [anon_sym_BANG] = ACTIONS(2823), - [anon_sym_TILDE] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_SEMI] = ACTIONS(2823), - [anon_sym___extension__] = ACTIONS(2818), - [anon_sym_typedef] = ACTIONS(2818), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym___attribute__] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), - [anon_sym___declspec] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym___inline] = ACTIONS(2818), - [anon_sym___inline__] = ACTIONS(2818), - [anon_sym___forceinline] = ACTIONS(2818), - [anon_sym_thread_local] = ACTIONS(2818), - [anon_sym___thread] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_restrict] = ACTIONS(2818), - [anon_sym___restrict__] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [anon_sym__Noreturn] = ACTIONS(2818), - [anon_sym_noreturn] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [anon_sym_constinit] = ACTIONS(2818), - [anon_sym_consteval] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_else] = ACTIONS(2818), - [anon_sym_switch] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [anon_sym_goto] = ACTIONS(2818), - [anon_sym_not] = ACTIONS(2818), - [anon_sym_compl] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2823), - [anon_sym_PLUS_PLUS] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2818), - [anon_sym___alignof__] = ACTIONS(2818), - [anon_sym___alignof] = ACTIONS(2818), - [anon_sym__alignof] = ACTIONS(2818), - [anon_sym_alignof] = ACTIONS(2818), - [anon_sym__Alignof] = ACTIONS(2818), - [anon_sym_offsetof] = ACTIONS(2818), - [anon_sym__Generic] = ACTIONS(2818), - [anon_sym_asm] = ACTIONS(2818), - [anon_sym___asm__] = ACTIONS(2818), - [sym_number_literal] = ACTIONS(2823), - [anon_sym_L_SQUOTE] = ACTIONS(2823), - [anon_sym_u_SQUOTE] = ACTIONS(2823), - [anon_sym_U_SQUOTE] = ACTIONS(2823), - [anon_sym_u8_SQUOTE] = ACTIONS(2823), - [anon_sym_SQUOTE] = ACTIONS(2823), - [anon_sym_L_DQUOTE] = ACTIONS(2823), - [anon_sym_u_DQUOTE] = ACTIONS(2823), - [anon_sym_U_DQUOTE] = ACTIONS(2823), - [anon_sym_u8_DQUOTE] = ACTIONS(2823), - [anon_sym_DQUOTE] = ACTIONS(2823), - [sym_true] = ACTIONS(2818), - [sym_false] = ACTIONS(2818), - [anon_sym_NULL] = ACTIONS(2818), - [anon_sym_nullptr] = ACTIONS(2818), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2818), - [anon_sym_decltype] = ACTIONS(2818), - [anon_sym_virtual] = ACTIONS(2818), - [anon_sym_alignas] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_template] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_delete] = ACTIONS(2818), - [anon_sym_throw] = ACTIONS(2818), - [anon_sym_co_return] = ACTIONS(2818), - [anon_sym_co_yield] = ACTIONS(2818), - [anon_sym_R_DQUOTE] = ACTIONS(2823), - [anon_sym_LR_DQUOTE] = ACTIONS(2823), - [anon_sym_uR_DQUOTE] = ACTIONS(2823), - [anon_sym_UR_DQUOTE] = ACTIONS(2823), - [anon_sym_u8R_DQUOTE] = ACTIONS(2823), - [anon_sym_co_await] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_requires] = ACTIONS(2818), - [sym_this] = ACTIONS(2818), + [sym__expression] = STATE(4282), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1572] = { - [sym_identifier] = ACTIONS(4052), - [anon_sym_LPAREN2] = ACTIONS(4058), - [anon_sym_BANG] = ACTIONS(4058), - [anon_sym_TILDE] = ACTIONS(4058), - [anon_sym_DASH] = ACTIONS(4060), - [anon_sym_PLUS] = ACTIONS(4060), - [anon_sym_STAR] = ACTIONS(4058), - [anon_sym_AMP] = ACTIONS(4058), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym___extension__] = ACTIONS(4064), - [anon_sym_extern] = ACTIONS(4064), - [anon_sym___attribute__] = ACTIONS(4064), - [anon_sym_COLON_COLON] = ACTIONS(4055), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4055), - [anon_sym___declspec] = ACTIONS(4064), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_signed] = ACTIONS(4064), - [anon_sym_unsigned] = ACTIONS(4064), - [anon_sym_long] = ACTIONS(4064), - [anon_sym_short] = ACTIONS(4064), - [anon_sym_LBRACK] = ACTIONS(4060), - [anon_sym_static] = ACTIONS(4064), - [anon_sym_register] = ACTIONS(4064), - [anon_sym_inline] = ACTIONS(4064), - [anon_sym___inline] = ACTIONS(4064), - [anon_sym___inline__] = ACTIONS(4064), - [anon_sym___forceinline] = ACTIONS(4064), - [anon_sym_thread_local] = ACTIONS(4064), - [anon_sym___thread] = ACTIONS(4064), - [anon_sym_const] = ACTIONS(4064), - [anon_sym_constexpr] = ACTIONS(4064), - [anon_sym_volatile] = ACTIONS(4064), - [anon_sym_restrict] = ACTIONS(4064), - [anon_sym___restrict__] = ACTIONS(4064), - [anon_sym__Atomic] = ACTIONS(4064), - [anon_sym__Noreturn] = ACTIONS(4064), - [anon_sym_noreturn] = ACTIONS(4064), - [anon_sym_mutable] = ACTIONS(4064), - [anon_sym_constinit] = ACTIONS(4064), - [anon_sym_consteval] = ACTIONS(4064), - [sym_primitive_type] = ACTIONS(4052), - [anon_sym_enum] = ACTIONS(4064), - [anon_sym_class] = ACTIONS(4064), - [anon_sym_struct] = ACTIONS(4064), - [anon_sym_union] = ACTIONS(4064), - [anon_sym_if] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(4060), - [anon_sym_case] = ACTIONS(4060), - [anon_sym_default] = ACTIONS(4060), - [anon_sym_while] = ACTIONS(4060), - [anon_sym_do] = ACTIONS(4060), - [anon_sym_for] = ACTIONS(4060), - [anon_sym_return] = ACTIONS(4060), - [anon_sym_break] = ACTIONS(4060), - [anon_sym_continue] = ACTIONS(4060), - [anon_sym_goto] = ACTIONS(4060), - [anon_sym_not] = ACTIONS(4060), - [anon_sym_compl] = ACTIONS(4060), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_sizeof] = ACTIONS(4060), - [anon_sym___alignof__] = ACTIONS(4060), - [anon_sym___alignof] = ACTIONS(4060), - [anon_sym__alignof] = ACTIONS(4060), - [anon_sym_alignof] = ACTIONS(4060), - [anon_sym__Alignof] = ACTIONS(4060), - [anon_sym_offsetof] = ACTIONS(4060), - [anon_sym__Generic] = ACTIONS(4060), - [anon_sym_asm] = ACTIONS(4060), - [anon_sym___asm__] = ACTIONS(4060), - [sym_number_literal] = ACTIONS(4058), - [anon_sym_L_SQUOTE] = ACTIONS(4058), - [anon_sym_u_SQUOTE] = ACTIONS(4058), - [anon_sym_U_SQUOTE] = ACTIONS(4058), - [anon_sym_u8_SQUOTE] = ACTIONS(4058), - [anon_sym_SQUOTE] = ACTIONS(4058), - [anon_sym_L_DQUOTE] = ACTIONS(4058), - [anon_sym_u_DQUOTE] = ACTIONS(4058), - [anon_sym_U_DQUOTE] = ACTIONS(4058), - [anon_sym_u8_DQUOTE] = ACTIONS(4058), - [anon_sym_DQUOTE] = ACTIONS(4058), - [sym_true] = ACTIONS(4060), - [sym_false] = ACTIONS(4060), - [anon_sym_NULL] = ACTIONS(4060), - [anon_sym_nullptr] = ACTIONS(4060), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4064), - [anon_sym_decltype] = ACTIONS(4052), - [anon_sym_virtual] = ACTIONS(4064), - [anon_sym_alignas] = ACTIONS(4064), - [anon_sym_typename] = ACTIONS(4064), - [anon_sym_template] = ACTIONS(4052), - [anon_sym_try] = ACTIONS(4060), - [anon_sym_delete] = ACTIONS(4060), - [anon_sym_throw] = ACTIONS(4060), - [anon_sym_co_return] = ACTIONS(4060), - [anon_sym_co_yield] = ACTIONS(4060), - [anon_sym_R_DQUOTE] = ACTIONS(4058), - [anon_sym_LR_DQUOTE] = ACTIONS(4058), - [anon_sym_uR_DQUOTE] = ACTIONS(4058), - [anon_sym_UR_DQUOTE] = ACTIONS(4058), - [anon_sym_u8R_DQUOTE] = ACTIONS(4058), - [anon_sym_co_await] = ACTIONS(4060), - [anon_sym_new] = ACTIONS(4060), - [anon_sym_requires] = ACTIONS(4060), - [sym_this] = ACTIONS(4060), + [sym__expression] = STATE(4233), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1573] = { - [sym_identifier] = ACTIONS(3984), - [anon_sym_LPAREN2] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3986), - [anon_sym_TILDE] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3984), - [anon_sym_PLUS] = ACTIONS(3984), - [anon_sym_STAR] = ACTIONS(3986), - [anon_sym_AMP] = ACTIONS(3986), - [anon_sym_SEMI] = ACTIONS(3986), - [anon_sym___extension__] = ACTIONS(3984), - [anon_sym_extern] = ACTIONS(3984), - [anon_sym___attribute__] = ACTIONS(3984), - [anon_sym_COLON_COLON] = ACTIONS(3986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3986), - [anon_sym___declspec] = ACTIONS(3984), - [anon_sym_LBRACE] = ACTIONS(3986), - [anon_sym_signed] = ACTIONS(3984), - [anon_sym_unsigned] = ACTIONS(3984), - [anon_sym_long] = ACTIONS(3984), - [anon_sym_short] = ACTIONS(3984), - [anon_sym_LBRACK] = ACTIONS(3984), - [anon_sym_static] = ACTIONS(3984), - [anon_sym_register] = ACTIONS(3984), - [anon_sym_inline] = ACTIONS(3984), - [anon_sym___inline] = ACTIONS(3984), - [anon_sym___inline__] = ACTIONS(3984), - [anon_sym___forceinline] = ACTIONS(3984), - [anon_sym_thread_local] = ACTIONS(3984), - [anon_sym___thread] = ACTIONS(3984), - [anon_sym_const] = ACTIONS(3984), - [anon_sym_constexpr] = ACTIONS(3984), - [anon_sym_volatile] = ACTIONS(3984), - [anon_sym_restrict] = ACTIONS(3984), - [anon_sym___restrict__] = ACTIONS(3984), - [anon_sym__Atomic] = ACTIONS(3984), - [anon_sym__Noreturn] = ACTIONS(3984), - [anon_sym_noreturn] = ACTIONS(3984), - [anon_sym_mutable] = ACTIONS(3984), - [anon_sym_constinit] = ACTIONS(3984), - [anon_sym_consteval] = ACTIONS(3984), - [sym_primitive_type] = ACTIONS(3984), - [anon_sym_enum] = ACTIONS(3984), - [anon_sym_class] = ACTIONS(3984), - [anon_sym_struct] = ACTIONS(3984), - [anon_sym_union] = ACTIONS(3984), - [anon_sym_if] = ACTIONS(3984), - [anon_sym_switch] = ACTIONS(3984), - [anon_sym_case] = ACTIONS(3984), - [anon_sym_default] = ACTIONS(3984), - [anon_sym_while] = ACTIONS(3984), - [anon_sym_do] = ACTIONS(3984), - [anon_sym_for] = ACTIONS(3984), - [anon_sym_return] = ACTIONS(3984), - [anon_sym_break] = ACTIONS(3984), - [anon_sym_continue] = ACTIONS(3984), - [anon_sym_goto] = ACTIONS(3984), - [anon_sym_not] = ACTIONS(3984), - [anon_sym_compl] = ACTIONS(3984), - [anon_sym_DASH_DASH] = ACTIONS(3986), - [anon_sym_PLUS_PLUS] = ACTIONS(3986), - [anon_sym_sizeof] = ACTIONS(3984), - [anon_sym___alignof__] = ACTIONS(3984), - [anon_sym___alignof] = ACTIONS(3984), - [anon_sym__alignof] = ACTIONS(3984), - [anon_sym_alignof] = ACTIONS(3984), - [anon_sym__Alignof] = ACTIONS(3984), - [anon_sym_offsetof] = ACTIONS(3984), - [anon_sym__Generic] = ACTIONS(3984), - [anon_sym_asm] = ACTIONS(3984), - [anon_sym___asm__] = ACTIONS(3984), - [sym_number_literal] = ACTIONS(3986), - [anon_sym_L_SQUOTE] = ACTIONS(3986), - [anon_sym_u_SQUOTE] = ACTIONS(3986), - [anon_sym_U_SQUOTE] = ACTIONS(3986), - [anon_sym_u8_SQUOTE] = ACTIONS(3986), - [anon_sym_SQUOTE] = ACTIONS(3986), - [anon_sym_L_DQUOTE] = ACTIONS(3986), - [anon_sym_u_DQUOTE] = ACTIONS(3986), - [anon_sym_U_DQUOTE] = ACTIONS(3986), - [anon_sym_u8_DQUOTE] = ACTIONS(3986), - [anon_sym_DQUOTE] = ACTIONS(3986), - [sym_true] = ACTIONS(3984), - [sym_false] = ACTIONS(3984), - [anon_sym_NULL] = ACTIONS(3984), - [anon_sym_nullptr] = ACTIONS(3984), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3984), - [anon_sym_decltype] = ACTIONS(3984), - [anon_sym_virtual] = ACTIONS(3984), - [anon_sym_alignas] = ACTIONS(3984), - [anon_sym_typename] = ACTIONS(3984), - [anon_sym_template] = ACTIONS(3984), - [anon_sym_try] = ACTIONS(3984), - [anon_sym_delete] = ACTIONS(3984), - [anon_sym_throw] = ACTIONS(3984), - [anon_sym_co_return] = ACTIONS(3984), - [anon_sym_co_yield] = ACTIONS(3984), - [anon_sym_R_DQUOTE] = ACTIONS(3986), - [anon_sym_LR_DQUOTE] = ACTIONS(3986), - [anon_sym_uR_DQUOTE] = ACTIONS(3986), - [anon_sym_UR_DQUOTE] = ACTIONS(3986), - [anon_sym_u8R_DQUOTE] = ACTIONS(3986), - [anon_sym_co_await] = ACTIONS(3984), - [anon_sym_new] = ACTIONS(3984), - [anon_sym_requires] = ACTIONS(3984), - [sym_this] = ACTIONS(3984), + [sym__expression] = STATE(3427), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [1574] = { - [sym_identifier] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_SEMI] = ACTIONS(2927), - [anon_sym___extension__] = ACTIONS(2925), - [anon_sym_typedef] = ACTIONS(2925), - [anon_sym_extern] = ACTIONS(2925), - [anon_sym___attribute__] = ACTIONS(2925), - [anon_sym_COLON_COLON] = ACTIONS(2927), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), - [anon_sym___declspec] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_signed] = ACTIONS(2925), - [anon_sym_unsigned] = ACTIONS(2925), - [anon_sym_long] = ACTIONS(2925), - [anon_sym_short] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_static] = ACTIONS(2925), - [anon_sym_register] = ACTIONS(2925), - [anon_sym_inline] = ACTIONS(2925), - [anon_sym___inline] = ACTIONS(2925), - [anon_sym___inline__] = ACTIONS(2925), - [anon_sym___forceinline] = ACTIONS(2925), - [anon_sym_thread_local] = ACTIONS(2925), - [anon_sym___thread] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(2925), - [anon_sym_constexpr] = ACTIONS(2925), - [anon_sym_volatile] = ACTIONS(2925), - [anon_sym_restrict] = ACTIONS(2925), - [anon_sym___restrict__] = ACTIONS(2925), - [anon_sym__Atomic] = ACTIONS(2925), - [anon_sym__Noreturn] = ACTIONS(2925), - [anon_sym_noreturn] = ACTIONS(2925), - [anon_sym_mutable] = ACTIONS(2925), - [anon_sym_constinit] = ACTIONS(2925), - [anon_sym_consteval] = ACTIONS(2925), - [sym_primitive_type] = ACTIONS(2925), - [anon_sym_enum] = ACTIONS(2925), - [anon_sym_class] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_union] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_else] = ACTIONS(2925), - [anon_sym_switch] = ACTIONS(2925), - [anon_sym_while] = ACTIONS(2925), - [anon_sym_do] = ACTIONS(2925), - [anon_sym_for] = ACTIONS(2925), - [anon_sym_return] = ACTIONS(2925), - [anon_sym_break] = ACTIONS(2925), - [anon_sym_continue] = ACTIONS(2925), - [anon_sym_goto] = ACTIONS(2925), - [anon_sym_not] = ACTIONS(2925), - [anon_sym_compl] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2927), - [anon_sym_sizeof] = ACTIONS(2925), - [anon_sym___alignof__] = ACTIONS(2925), - [anon_sym___alignof] = ACTIONS(2925), - [anon_sym__alignof] = ACTIONS(2925), - [anon_sym_alignof] = ACTIONS(2925), - [anon_sym__Alignof] = ACTIONS(2925), - [anon_sym_offsetof] = ACTIONS(2925), - [anon_sym__Generic] = ACTIONS(2925), - [anon_sym_asm] = ACTIONS(2925), - [anon_sym___asm__] = ACTIONS(2925), - [sym_number_literal] = ACTIONS(2927), - [anon_sym_L_SQUOTE] = ACTIONS(2927), - [anon_sym_u_SQUOTE] = ACTIONS(2927), - [anon_sym_U_SQUOTE] = ACTIONS(2927), - [anon_sym_u8_SQUOTE] = ACTIONS(2927), - [anon_sym_SQUOTE] = ACTIONS(2927), - [anon_sym_L_DQUOTE] = ACTIONS(2927), - [anon_sym_u_DQUOTE] = ACTIONS(2927), - [anon_sym_U_DQUOTE] = ACTIONS(2927), - [anon_sym_u8_DQUOTE] = ACTIONS(2927), - [anon_sym_DQUOTE] = ACTIONS(2927), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [anon_sym_NULL] = ACTIONS(2925), - [anon_sym_nullptr] = ACTIONS(2925), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2925), - [anon_sym_decltype] = ACTIONS(2925), - [anon_sym_virtual] = ACTIONS(2925), - [anon_sym_alignas] = ACTIONS(2925), - [anon_sym_typename] = ACTIONS(2925), - [anon_sym_template] = ACTIONS(2925), - [anon_sym_try] = ACTIONS(2925), - [anon_sym_delete] = ACTIONS(2925), - [anon_sym_throw] = ACTIONS(2925), - [anon_sym_co_return] = ACTIONS(2925), - [anon_sym_co_yield] = ACTIONS(2925), - [anon_sym_R_DQUOTE] = ACTIONS(2927), - [anon_sym_LR_DQUOTE] = ACTIONS(2927), - [anon_sym_uR_DQUOTE] = ACTIONS(2927), - [anon_sym_UR_DQUOTE] = ACTIONS(2927), - [anon_sym_u8R_DQUOTE] = ACTIONS(2927), - [anon_sym_co_await] = ACTIONS(2925), - [anon_sym_new] = ACTIONS(2925), - [anon_sym_requires] = ACTIONS(2925), - [sym_this] = ACTIONS(2925), + [sym__expression] = STATE(4299), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1575] = { - [sym_identifier] = ACTIONS(3099), - [anon_sym_LPAREN2] = ACTIONS(3101), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3101), - [anon_sym___extension__] = ACTIONS(3099), - [anon_sym_typedef] = ACTIONS(3099), - [anon_sym_extern] = ACTIONS(3099), - [anon_sym___attribute__] = ACTIONS(3099), - [anon_sym_COLON_COLON] = ACTIONS(3101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), - [anon_sym___declspec] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_signed] = ACTIONS(3099), - [anon_sym_unsigned] = ACTIONS(3099), - [anon_sym_long] = ACTIONS(3099), - [anon_sym_short] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_register] = ACTIONS(3099), - [anon_sym_inline] = ACTIONS(3099), - [anon_sym___inline] = ACTIONS(3099), - [anon_sym___inline__] = ACTIONS(3099), - [anon_sym___forceinline] = ACTIONS(3099), - [anon_sym_thread_local] = ACTIONS(3099), - [anon_sym___thread] = ACTIONS(3099), - [anon_sym_const] = ACTIONS(3099), - [anon_sym_constexpr] = ACTIONS(3099), - [anon_sym_volatile] = ACTIONS(3099), - [anon_sym_restrict] = ACTIONS(3099), - [anon_sym___restrict__] = ACTIONS(3099), - [anon_sym__Atomic] = ACTIONS(3099), - [anon_sym__Noreturn] = ACTIONS(3099), - [anon_sym_noreturn] = ACTIONS(3099), - [anon_sym_mutable] = ACTIONS(3099), - [anon_sym_constinit] = ACTIONS(3099), - [anon_sym_consteval] = ACTIONS(3099), - [sym_primitive_type] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_union] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3099), - [anon_sym_switch] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_break] = ACTIONS(3099), - [anon_sym_continue] = ACTIONS(3099), - [anon_sym_goto] = ACTIONS(3099), - [anon_sym_not] = ACTIONS(3099), - [anon_sym_compl] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3101), - [anon_sym_sizeof] = ACTIONS(3099), - [anon_sym___alignof__] = ACTIONS(3099), - [anon_sym___alignof] = ACTIONS(3099), - [anon_sym__alignof] = ACTIONS(3099), - [anon_sym_alignof] = ACTIONS(3099), - [anon_sym__Alignof] = ACTIONS(3099), - [anon_sym_offsetof] = ACTIONS(3099), - [anon_sym__Generic] = ACTIONS(3099), - [anon_sym_asm] = ACTIONS(3099), - [anon_sym___asm__] = ACTIONS(3099), - [sym_number_literal] = ACTIONS(3101), - [anon_sym_L_SQUOTE] = ACTIONS(3101), - [anon_sym_u_SQUOTE] = ACTIONS(3101), - [anon_sym_U_SQUOTE] = ACTIONS(3101), - [anon_sym_u8_SQUOTE] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3101), - [anon_sym_L_DQUOTE] = ACTIONS(3101), - [anon_sym_u_DQUOTE] = ACTIONS(3101), - [anon_sym_U_DQUOTE] = ACTIONS(3101), - [anon_sym_u8_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [anon_sym_NULL] = ACTIONS(3099), - [anon_sym_nullptr] = ACTIONS(3099), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3099), - [anon_sym_decltype] = ACTIONS(3099), - [anon_sym_virtual] = ACTIONS(3099), - [anon_sym_alignas] = ACTIONS(3099), - [anon_sym_typename] = ACTIONS(3099), - [anon_sym_template] = ACTIONS(3099), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_delete] = ACTIONS(3099), - [anon_sym_throw] = ACTIONS(3099), - [anon_sym_co_return] = ACTIONS(3099), - [anon_sym_co_yield] = ACTIONS(3099), - [anon_sym_R_DQUOTE] = ACTIONS(3101), - [anon_sym_LR_DQUOTE] = ACTIONS(3101), - [anon_sym_uR_DQUOTE] = ACTIONS(3101), - [anon_sym_UR_DQUOTE] = ACTIONS(3101), - [anon_sym_u8R_DQUOTE] = ACTIONS(3101), - [anon_sym_co_await] = ACTIONS(3099), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_requires] = ACTIONS(3099), - [sym_this] = ACTIONS(3099), + [sym__expression] = STATE(3426), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [1576] = { - [sym_identifier] = ACTIONS(2885), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym___extension__] = ACTIONS(2885), - [anon_sym_typedef] = ACTIONS(2885), - [anon_sym_extern] = ACTIONS(2885), - [anon_sym___attribute__] = ACTIONS(2885), - [anon_sym_COLON_COLON] = ACTIONS(2887), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2887), - [anon_sym___declspec] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_signed] = ACTIONS(2885), - [anon_sym_unsigned] = ACTIONS(2885), - [anon_sym_long] = ACTIONS(2885), - [anon_sym_short] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_register] = ACTIONS(2885), - [anon_sym_inline] = ACTIONS(2885), - [anon_sym___inline] = ACTIONS(2885), - [anon_sym___inline__] = ACTIONS(2885), - [anon_sym___forceinline] = ACTIONS(2885), - [anon_sym_thread_local] = ACTIONS(2885), - [anon_sym___thread] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_constexpr] = ACTIONS(2885), - [anon_sym_volatile] = ACTIONS(2885), - [anon_sym_restrict] = ACTIONS(2885), - [anon_sym___restrict__] = ACTIONS(2885), - [anon_sym__Atomic] = ACTIONS(2885), - [anon_sym__Noreturn] = ACTIONS(2885), - [anon_sym_noreturn] = ACTIONS(2885), - [anon_sym_mutable] = ACTIONS(2885), - [anon_sym_constinit] = ACTIONS(2885), - [anon_sym_consteval] = ACTIONS(2885), - [sym_primitive_type] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_union] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_else] = ACTIONS(2885), - [anon_sym_switch] = ACTIONS(2885), - [anon_sym_while] = ACTIONS(2885), - [anon_sym_do] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_goto] = ACTIONS(2885), - [anon_sym_not] = ACTIONS(2885), - [anon_sym_compl] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_sizeof] = ACTIONS(2885), - [anon_sym___alignof__] = ACTIONS(2885), - [anon_sym___alignof] = ACTIONS(2885), - [anon_sym__alignof] = ACTIONS(2885), - [anon_sym_alignof] = ACTIONS(2885), - [anon_sym__Alignof] = ACTIONS(2885), - [anon_sym_offsetof] = ACTIONS(2885), - [anon_sym__Generic] = ACTIONS(2885), - [anon_sym_asm] = ACTIONS(2885), - [anon_sym___asm__] = ACTIONS(2885), - [sym_number_literal] = ACTIONS(2887), - [anon_sym_L_SQUOTE] = ACTIONS(2887), - [anon_sym_u_SQUOTE] = ACTIONS(2887), - [anon_sym_U_SQUOTE] = ACTIONS(2887), - [anon_sym_u8_SQUOTE] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_L_DQUOTE] = ACTIONS(2887), - [anon_sym_u_DQUOTE] = ACTIONS(2887), - [anon_sym_U_DQUOTE] = ACTIONS(2887), - [anon_sym_u8_DQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [sym_true] = ACTIONS(2885), - [sym_false] = ACTIONS(2885), - [anon_sym_NULL] = ACTIONS(2885), - [anon_sym_nullptr] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2885), - [anon_sym_decltype] = ACTIONS(2885), - [anon_sym_virtual] = ACTIONS(2885), - [anon_sym_alignas] = ACTIONS(2885), - [anon_sym_typename] = ACTIONS(2885), - [anon_sym_template] = ACTIONS(2885), - [anon_sym_try] = ACTIONS(2885), - [anon_sym_delete] = ACTIONS(2885), - [anon_sym_throw] = ACTIONS(2885), - [anon_sym_co_return] = ACTIONS(2885), - [anon_sym_co_yield] = ACTIONS(2885), - [anon_sym_R_DQUOTE] = ACTIONS(2887), - [anon_sym_LR_DQUOTE] = ACTIONS(2887), - [anon_sym_uR_DQUOTE] = ACTIONS(2887), - [anon_sym_UR_DQUOTE] = ACTIONS(2887), - [anon_sym_u8R_DQUOTE] = ACTIONS(2887), - [anon_sym_co_await] = ACTIONS(2885), - [anon_sym_new] = ACTIONS(2885), - [anon_sym_requires] = ACTIONS(2885), - [sym_this] = ACTIONS(2885), + [sym__expression] = STATE(3476), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(4517), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [1577] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym__expression] = STATE(3477), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [1578] = { - [sym_identifier] = ACTIONS(2981), - [anon_sym_LPAREN2] = ACTIONS(2983), - [anon_sym_BANG] = ACTIONS(2983), - [anon_sym_TILDE] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(2981), - [anon_sym_typedef] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym___attribute__] = ACTIONS(2981), - [anon_sym_COLON_COLON] = ACTIONS(2983), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), - [anon_sym___declspec] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_signed] = ACTIONS(2981), - [anon_sym_unsigned] = ACTIONS(2981), - [anon_sym_long] = ACTIONS(2981), - [anon_sym_short] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_static] = ACTIONS(2981), - [anon_sym_register] = ACTIONS(2981), - [anon_sym_inline] = ACTIONS(2981), - [anon_sym___inline] = ACTIONS(2981), - [anon_sym___inline__] = ACTIONS(2981), - [anon_sym___forceinline] = ACTIONS(2981), - [anon_sym_thread_local] = ACTIONS(2981), - [anon_sym___thread] = ACTIONS(2981), - [anon_sym_const] = ACTIONS(2981), - [anon_sym_constexpr] = ACTIONS(2981), - [anon_sym_volatile] = ACTIONS(2981), - [anon_sym_restrict] = ACTIONS(2981), - [anon_sym___restrict__] = ACTIONS(2981), - [anon_sym__Atomic] = ACTIONS(2981), - [anon_sym__Noreturn] = ACTIONS(2981), - [anon_sym_noreturn] = ACTIONS(2981), - [anon_sym_mutable] = ACTIONS(2981), - [anon_sym_constinit] = ACTIONS(2981), - [anon_sym_consteval] = ACTIONS(2981), - [sym_primitive_type] = ACTIONS(2981), - [anon_sym_enum] = ACTIONS(2981), - [anon_sym_class] = ACTIONS(2981), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_union] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_else] = ACTIONS(2981), - [anon_sym_switch] = ACTIONS(2981), - [anon_sym_while] = ACTIONS(2981), - [anon_sym_do] = ACTIONS(2981), - [anon_sym_for] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_goto] = ACTIONS(2981), - [anon_sym_not] = ACTIONS(2981), - [anon_sym_compl] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_sizeof] = ACTIONS(2981), - [anon_sym___alignof__] = ACTIONS(2981), - [anon_sym___alignof] = ACTIONS(2981), - [anon_sym__alignof] = ACTIONS(2981), - [anon_sym_alignof] = ACTIONS(2981), - [anon_sym__Alignof] = ACTIONS(2981), - [anon_sym_offsetof] = ACTIONS(2981), - [anon_sym__Generic] = ACTIONS(2981), - [anon_sym_asm] = ACTIONS(2981), - [anon_sym___asm__] = ACTIONS(2981), - [sym_number_literal] = ACTIONS(2983), - [anon_sym_L_SQUOTE] = ACTIONS(2983), - [anon_sym_u_SQUOTE] = ACTIONS(2983), - [anon_sym_U_SQUOTE] = ACTIONS(2983), - [anon_sym_u8_SQUOTE] = ACTIONS(2983), - [anon_sym_SQUOTE] = ACTIONS(2983), - [anon_sym_L_DQUOTE] = ACTIONS(2983), - [anon_sym_u_DQUOTE] = ACTIONS(2983), - [anon_sym_U_DQUOTE] = ACTIONS(2983), - [anon_sym_u8_DQUOTE] = ACTIONS(2983), - [anon_sym_DQUOTE] = ACTIONS(2983), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [anon_sym_NULL] = ACTIONS(2981), - [anon_sym_nullptr] = ACTIONS(2981), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2981), - [anon_sym_decltype] = ACTIONS(2981), - [anon_sym_virtual] = ACTIONS(2981), - [anon_sym_alignas] = ACTIONS(2981), - [anon_sym_typename] = ACTIONS(2981), - [anon_sym_template] = ACTIONS(2981), - [anon_sym_try] = ACTIONS(2981), - [anon_sym_delete] = ACTIONS(2981), - [anon_sym_throw] = ACTIONS(2981), - [anon_sym_co_return] = ACTIONS(2981), - [anon_sym_co_yield] = ACTIONS(2981), - [anon_sym_R_DQUOTE] = ACTIONS(2983), - [anon_sym_LR_DQUOTE] = ACTIONS(2983), - [anon_sym_uR_DQUOTE] = ACTIONS(2983), - [anon_sym_UR_DQUOTE] = ACTIONS(2983), - [anon_sym_u8R_DQUOTE] = ACTIONS(2983), - [anon_sym_co_await] = ACTIONS(2981), - [anon_sym_new] = ACTIONS(2981), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2981), + [sym__expression] = STATE(3424), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [1579] = { - [sym_identifier] = ACTIONS(2891), - [anon_sym_LPAREN2] = ACTIONS(2893), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_TILDE] = ACTIONS(2893), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2893), - [anon_sym_AMP] = ACTIONS(2893), - [anon_sym_SEMI] = ACTIONS(2893), - [anon_sym___extension__] = ACTIONS(2891), - [anon_sym_typedef] = ACTIONS(2891), - [anon_sym_extern] = ACTIONS(2891), - [anon_sym___attribute__] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2893), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2893), - [anon_sym___declspec] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2893), - [anon_sym_signed] = ACTIONS(2891), - [anon_sym_unsigned] = ACTIONS(2891), - [anon_sym_long] = ACTIONS(2891), - [anon_sym_short] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2891), - [anon_sym_static] = ACTIONS(2891), - [anon_sym_register] = ACTIONS(2891), - [anon_sym_inline] = ACTIONS(2891), - [anon_sym___inline] = ACTIONS(2891), - [anon_sym___inline__] = ACTIONS(2891), - [anon_sym___forceinline] = ACTIONS(2891), - [anon_sym_thread_local] = ACTIONS(2891), - [anon_sym___thread] = ACTIONS(2891), - [anon_sym_const] = ACTIONS(2891), - [anon_sym_constexpr] = ACTIONS(2891), - [anon_sym_volatile] = ACTIONS(2891), - [anon_sym_restrict] = ACTIONS(2891), - [anon_sym___restrict__] = ACTIONS(2891), - [anon_sym__Atomic] = ACTIONS(2891), - [anon_sym__Noreturn] = ACTIONS(2891), - [anon_sym_noreturn] = ACTIONS(2891), - [anon_sym_mutable] = ACTIONS(2891), - [anon_sym_constinit] = ACTIONS(2891), - [anon_sym_consteval] = ACTIONS(2891), - [sym_primitive_type] = ACTIONS(2891), - [anon_sym_enum] = ACTIONS(2891), - [anon_sym_class] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_union] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_else] = ACTIONS(2891), - [anon_sym_switch] = ACTIONS(2891), - [anon_sym_while] = ACTIONS(2891), - [anon_sym_do] = ACTIONS(2891), - [anon_sym_for] = ACTIONS(2891), - [anon_sym_return] = ACTIONS(2891), - [anon_sym_break] = ACTIONS(2891), - [anon_sym_continue] = ACTIONS(2891), - [anon_sym_goto] = ACTIONS(2891), - [anon_sym_not] = ACTIONS(2891), - [anon_sym_compl] = ACTIONS(2891), - [anon_sym_DASH_DASH] = ACTIONS(2893), - [anon_sym_PLUS_PLUS] = ACTIONS(2893), - [anon_sym_sizeof] = ACTIONS(2891), - [anon_sym___alignof__] = ACTIONS(2891), - [anon_sym___alignof] = ACTIONS(2891), - [anon_sym__alignof] = ACTIONS(2891), - [anon_sym_alignof] = ACTIONS(2891), - [anon_sym__Alignof] = ACTIONS(2891), - [anon_sym_offsetof] = ACTIONS(2891), - [anon_sym__Generic] = ACTIONS(2891), - [anon_sym_asm] = ACTIONS(2891), - [anon_sym___asm__] = ACTIONS(2891), - [sym_number_literal] = ACTIONS(2893), - [anon_sym_L_SQUOTE] = ACTIONS(2893), - [anon_sym_u_SQUOTE] = ACTIONS(2893), - [anon_sym_U_SQUOTE] = ACTIONS(2893), - [anon_sym_u8_SQUOTE] = ACTIONS(2893), - [anon_sym_SQUOTE] = ACTIONS(2893), - [anon_sym_L_DQUOTE] = ACTIONS(2893), - [anon_sym_u_DQUOTE] = ACTIONS(2893), - [anon_sym_U_DQUOTE] = ACTIONS(2893), - [anon_sym_u8_DQUOTE] = ACTIONS(2893), - [anon_sym_DQUOTE] = ACTIONS(2893), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [anon_sym_NULL] = ACTIONS(2891), - [anon_sym_nullptr] = ACTIONS(2891), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2891), - [anon_sym_decltype] = ACTIONS(2891), - [anon_sym_virtual] = ACTIONS(2891), - [anon_sym_alignas] = ACTIONS(2891), - [anon_sym_typename] = ACTIONS(2891), - [anon_sym_template] = ACTIONS(2891), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_delete] = ACTIONS(2891), - [anon_sym_throw] = ACTIONS(2891), - [anon_sym_co_return] = ACTIONS(2891), - [anon_sym_co_yield] = ACTIONS(2891), - [anon_sym_R_DQUOTE] = ACTIONS(2893), - [anon_sym_LR_DQUOTE] = ACTIONS(2893), - [anon_sym_uR_DQUOTE] = ACTIONS(2893), - [anon_sym_UR_DQUOTE] = ACTIONS(2893), - [anon_sym_u8R_DQUOTE] = ACTIONS(2893), - [anon_sym_co_await] = ACTIONS(2891), - [anon_sym_new] = ACTIONS(2891), - [anon_sym_requires] = ACTIONS(2891), - [sym_this] = ACTIONS(2891), + [sym__expression] = STATE(3412), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [1580] = { - [sym_identifier] = ACTIONS(2897), - [anon_sym_LPAREN2] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym___extension__] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2897), - [anon_sym_extern] = ACTIONS(2897), - [anon_sym___attribute__] = ACTIONS(2897), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2899), - [anon_sym___declspec] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_signed] = ACTIONS(2897), - [anon_sym_unsigned] = ACTIONS(2897), - [anon_sym_long] = ACTIONS(2897), - [anon_sym_short] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_register] = ACTIONS(2897), - [anon_sym_inline] = ACTIONS(2897), - [anon_sym___inline] = ACTIONS(2897), - [anon_sym___inline__] = ACTIONS(2897), - [anon_sym___forceinline] = ACTIONS(2897), - [anon_sym_thread_local] = ACTIONS(2897), - [anon_sym___thread] = ACTIONS(2897), - [anon_sym_const] = ACTIONS(2897), - [anon_sym_constexpr] = ACTIONS(2897), - [anon_sym_volatile] = ACTIONS(2897), - [anon_sym_restrict] = ACTIONS(2897), - [anon_sym___restrict__] = ACTIONS(2897), - [anon_sym__Atomic] = ACTIONS(2897), - [anon_sym__Noreturn] = ACTIONS(2897), - [anon_sym_noreturn] = ACTIONS(2897), - [anon_sym_mutable] = ACTIONS(2897), - [anon_sym_constinit] = ACTIONS(2897), - [anon_sym_consteval] = ACTIONS(2897), - [sym_primitive_type] = ACTIONS(2897), - [anon_sym_enum] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2897), - [anon_sym_union] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2897), - [anon_sym_else] = ACTIONS(2897), - [anon_sym_switch] = ACTIONS(2897), - [anon_sym_while] = ACTIONS(2897), - [anon_sym_do] = ACTIONS(2897), - [anon_sym_for] = ACTIONS(2897), - [anon_sym_return] = ACTIONS(2897), - [anon_sym_break] = ACTIONS(2897), - [anon_sym_continue] = ACTIONS(2897), - [anon_sym_goto] = ACTIONS(2897), - [anon_sym_not] = ACTIONS(2897), - [anon_sym_compl] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_sizeof] = ACTIONS(2897), - [anon_sym___alignof__] = ACTIONS(2897), - [anon_sym___alignof] = ACTIONS(2897), - [anon_sym__alignof] = ACTIONS(2897), - [anon_sym_alignof] = ACTIONS(2897), - [anon_sym__Alignof] = ACTIONS(2897), - [anon_sym_offsetof] = ACTIONS(2897), - [anon_sym__Generic] = ACTIONS(2897), - [anon_sym_asm] = ACTIONS(2897), - [anon_sym___asm__] = ACTIONS(2897), - [sym_number_literal] = ACTIONS(2899), - [anon_sym_L_SQUOTE] = ACTIONS(2899), - [anon_sym_u_SQUOTE] = ACTIONS(2899), - [anon_sym_U_SQUOTE] = ACTIONS(2899), - [anon_sym_u8_SQUOTE] = ACTIONS(2899), - [anon_sym_SQUOTE] = ACTIONS(2899), - [anon_sym_L_DQUOTE] = ACTIONS(2899), - [anon_sym_u_DQUOTE] = ACTIONS(2899), - [anon_sym_U_DQUOTE] = ACTIONS(2899), - [anon_sym_u8_DQUOTE] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [sym_true] = ACTIONS(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2897), - [anon_sym_nullptr] = ACTIONS(2897), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2897), - [anon_sym_decltype] = ACTIONS(2897), - [anon_sym_virtual] = ACTIONS(2897), - [anon_sym_alignas] = ACTIONS(2897), - [anon_sym_typename] = ACTIONS(2897), - [anon_sym_template] = ACTIONS(2897), - [anon_sym_try] = ACTIONS(2897), - [anon_sym_delete] = ACTIONS(2897), - [anon_sym_throw] = ACTIONS(2897), - [anon_sym_co_return] = ACTIONS(2897), - [anon_sym_co_yield] = ACTIONS(2897), - [anon_sym_R_DQUOTE] = ACTIONS(2899), - [anon_sym_LR_DQUOTE] = ACTIONS(2899), - [anon_sym_uR_DQUOTE] = ACTIONS(2899), - [anon_sym_UR_DQUOTE] = ACTIONS(2899), - [anon_sym_u8R_DQUOTE] = ACTIONS(2899), - [anon_sym_co_await] = ACTIONS(2897), - [anon_sym_new] = ACTIONS(2897), - [anon_sym_requires] = ACTIONS(2897), - [sym_this] = ACTIONS(2897), + [sym__expression] = STATE(4231), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1581] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__expression] = STATE(4014), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1582] = { - [sym_identifier] = ACTIONS(2901), - [anon_sym_LPAREN2] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym___extension__] = ACTIONS(2901), - [anon_sym_typedef] = ACTIONS(2901), - [anon_sym_extern] = ACTIONS(2901), - [anon_sym___attribute__] = ACTIONS(2901), - [anon_sym_COLON_COLON] = ACTIONS(2903), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2903), - [anon_sym___declspec] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_signed] = ACTIONS(2901), - [anon_sym_unsigned] = ACTIONS(2901), - [anon_sym_long] = ACTIONS(2901), - [anon_sym_short] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_register] = ACTIONS(2901), - [anon_sym_inline] = ACTIONS(2901), - [anon_sym___inline] = ACTIONS(2901), - [anon_sym___inline__] = ACTIONS(2901), - [anon_sym___forceinline] = ACTIONS(2901), - [anon_sym_thread_local] = ACTIONS(2901), - [anon_sym___thread] = ACTIONS(2901), - [anon_sym_const] = ACTIONS(2901), - [anon_sym_constexpr] = ACTIONS(2901), - [anon_sym_volatile] = ACTIONS(2901), - [anon_sym_restrict] = ACTIONS(2901), - [anon_sym___restrict__] = ACTIONS(2901), - [anon_sym__Atomic] = ACTIONS(2901), - [anon_sym__Noreturn] = ACTIONS(2901), - [anon_sym_noreturn] = ACTIONS(2901), - [anon_sym_mutable] = ACTIONS(2901), - [anon_sym_constinit] = ACTIONS(2901), - [anon_sym_consteval] = ACTIONS(2901), - [sym_primitive_type] = ACTIONS(2901), - [anon_sym_enum] = ACTIONS(2901), - [anon_sym_class] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2901), - [anon_sym_union] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2901), - [anon_sym_else] = ACTIONS(2901), - [anon_sym_switch] = ACTIONS(2901), - [anon_sym_while] = ACTIONS(2901), - [anon_sym_do] = ACTIONS(2901), - [anon_sym_for] = ACTIONS(2901), - [anon_sym_return] = ACTIONS(2901), - [anon_sym_break] = ACTIONS(2901), - [anon_sym_continue] = ACTIONS(2901), - [anon_sym_goto] = ACTIONS(2901), - [anon_sym_not] = ACTIONS(2901), - [anon_sym_compl] = ACTIONS(2901), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_sizeof] = ACTIONS(2901), - [anon_sym___alignof__] = ACTIONS(2901), - [anon_sym___alignof] = ACTIONS(2901), - [anon_sym__alignof] = ACTIONS(2901), - [anon_sym_alignof] = ACTIONS(2901), - [anon_sym__Alignof] = ACTIONS(2901), - [anon_sym_offsetof] = ACTIONS(2901), - [anon_sym__Generic] = ACTIONS(2901), - [anon_sym_asm] = ACTIONS(2901), - [anon_sym___asm__] = ACTIONS(2901), - [sym_number_literal] = ACTIONS(2903), - [anon_sym_L_SQUOTE] = ACTIONS(2903), - [anon_sym_u_SQUOTE] = ACTIONS(2903), - [anon_sym_U_SQUOTE] = ACTIONS(2903), - [anon_sym_u8_SQUOTE] = ACTIONS(2903), - [anon_sym_SQUOTE] = ACTIONS(2903), - [anon_sym_L_DQUOTE] = ACTIONS(2903), - [anon_sym_u_DQUOTE] = ACTIONS(2903), - [anon_sym_U_DQUOTE] = ACTIONS(2903), - [anon_sym_u8_DQUOTE] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym_true] = ACTIONS(2901), - [sym_false] = ACTIONS(2901), - [anon_sym_NULL] = ACTIONS(2901), - [anon_sym_nullptr] = ACTIONS(2901), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2901), - [anon_sym_virtual] = ACTIONS(2901), - [anon_sym_alignas] = ACTIONS(2901), - [anon_sym_typename] = ACTIONS(2901), - [anon_sym_template] = ACTIONS(2901), - [anon_sym_try] = ACTIONS(2901), - [anon_sym_delete] = ACTIONS(2901), - [anon_sym_throw] = ACTIONS(2901), - [anon_sym_co_return] = ACTIONS(2901), - [anon_sym_co_yield] = ACTIONS(2901), - [anon_sym_R_DQUOTE] = ACTIONS(2903), - [anon_sym_LR_DQUOTE] = ACTIONS(2903), - [anon_sym_uR_DQUOTE] = ACTIONS(2903), - [anon_sym_UR_DQUOTE] = ACTIONS(2903), - [anon_sym_u8R_DQUOTE] = ACTIONS(2903), - [anon_sym_co_await] = ACTIONS(2901), - [anon_sym_new] = ACTIONS(2901), - [anon_sym_requires] = ACTIONS(2901), - [sym_this] = ACTIONS(2901), + [sym__expression] = STATE(3406), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [1583] = { - [sym_identifier] = ACTIONS(2905), - [anon_sym_LPAREN2] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym___extension__] = ACTIONS(2905), - [anon_sym_typedef] = ACTIONS(2905), - [anon_sym_extern] = ACTIONS(2905), - [anon_sym___attribute__] = ACTIONS(2905), - [anon_sym_COLON_COLON] = ACTIONS(2907), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2907), - [anon_sym___declspec] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_signed] = ACTIONS(2905), - [anon_sym_unsigned] = ACTIONS(2905), - [anon_sym_long] = ACTIONS(2905), - [anon_sym_short] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_register] = ACTIONS(2905), - [anon_sym_inline] = ACTIONS(2905), - [anon_sym___inline] = ACTIONS(2905), - [anon_sym___inline__] = ACTIONS(2905), - [anon_sym___forceinline] = ACTIONS(2905), - [anon_sym_thread_local] = ACTIONS(2905), - [anon_sym___thread] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_constexpr] = ACTIONS(2905), - [anon_sym_volatile] = ACTIONS(2905), - [anon_sym_restrict] = ACTIONS(2905), - [anon_sym___restrict__] = ACTIONS(2905), - [anon_sym__Atomic] = ACTIONS(2905), - [anon_sym__Noreturn] = ACTIONS(2905), - [anon_sym_noreturn] = ACTIONS(2905), - [anon_sym_mutable] = ACTIONS(2905), - [anon_sym_constinit] = ACTIONS(2905), - [anon_sym_consteval] = ACTIONS(2905), - [sym_primitive_type] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_union] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2905), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_do] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_goto] = ACTIONS(2905), - [anon_sym_not] = ACTIONS(2905), - [anon_sym_compl] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_sizeof] = ACTIONS(2905), - [anon_sym___alignof__] = ACTIONS(2905), - [anon_sym___alignof] = ACTIONS(2905), - [anon_sym__alignof] = ACTIONS(2905), - [anon_sym_alignof] = ACTIONS(2905), - [anon_sym__Alignof] = ACTIONS(2905), - [anon_sym_offsetof] = ACTIONS(2905), - [anon_sym__Generic] = ACTIONS(2905), - [anon_sym_asm] = ACTIONS(2905), - [anon_sym___asm__] = ACTIONS(2905), - [sym_number_literal] = ACTIONS(2907), - [anon_sym_L_SQUOTE] = ACTIONS(2907), - [anon_sym_u_SQUOTE] = ACTIONS(2907), - [anon_sym_U_SQUOTE] = ACTIONS(2907), - [anon_sym_u8_SQUOTE] = ACTIONS(2907), - [anon_sym_SQUOTE] = ACTIONS(2907), - [anon_sym_L_DQUOTE] = ACTIONS(2907), - [anon_sym_u_DQUOTE] = ACTIONS(2907), - [anon_sym_U_DQUOTE] = ACTIONS(2907), - [anon_sym_u8_DQUOTE] = ACTIONS(2907), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_true] = ACTIONS(2905), - [sym_false] = ACTIONS(2905), - [anon_sym_NULL] = ACTIONS(2905), - [anon_sym_nullptr] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2905), - [anon_sym_decltype] = ACTIONS(2905), - [anon_sym_virtual] = ACTIONS(2905), - [anon_sym_alignas] = ACTIONS(2905), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_throw] = ACTIONS(2905), - [anon_sym_co_return] = ACTIONS(2905), - [anon_sym_co_yield] = ACTIONS(2905), - [anon_sym_R_DQUOTE] = ACTIONS(2907), - [anon_sym_LR_DQUOTE] = ACTIONS(2907), - [anon_sym_uR_DQUOTE] = ACTIONS(2907), - [anon_sym_UR_DQUOTE] = ACTIONS(2907), - [anon_sym_u8R_DQUOTE] = ACTIONS(2907), - [anon_sym_co_await] = ACTIONS(2905), - [anon_sym_new] = ACTIONS(2905), - [anon_sym_requires] = ACTIONS(2905), - [sym_this] = ACTIONS(2905), + [sym__expression] = STATE(3405), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [1584] = { - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN2] = ACTIONS(3097), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym___extension__] = ACTIONS(3095), - [anon_sym_typedef] = ACTIONS(3095), - [anon_sym_extern] = ACTIONS(3095), - [anon_sym___attribute__] = ACTIONS(3095), - [anon_sym_COLON_COLON] = ACTIONS(3097), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), - [anon_sym___declspec] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_signed] = ACTIONS(3095), - [anon_sym_unsigned] = ACTIONS(3095), - [anon_sym_long] = ACTIONS(3095), - [anon_sym_short] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_register] = ACTIONS(3095), - [anon_sym_inline] = ACTIONS(3095), - [anon_sym___inline] = ACTIONS(3095), - [anon_sym___inline__] = ACTIONS(3095), - [anon_sym___forceinline] = ACTIONS(3095), - [anon_sym_thread_local] = ACTIONS(3095), - [anon_sym___thread] = ACTIONS(3095), - [anon_sym_const] = ACTIONS(3095), - [anon_sym_constexpr] = ACTIONS(3095), - [anon_sym_volatile] = ACTIONS(3095), - [anon_sym_restrict] = ACTIONS(3095), - [anon_sym___restrict__] = ACTIONS(3095), - [anon_sym__Atomic] = ACTIONS(3095), - [anon_sym__Noreturn] = ACTIONS(3095), - [anon_sym_noreturn] = ACTIONS(3095), - [anon_sym_mutable] = ACTIONS(3095), - [anon_sym_constinit] = ACTIONS(3095), - [anon_sym_consteval] = ACTIONS(3095), - [sym_primitive_type] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_union] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3095), - [anon_sym_else] = ACTIONS(3095), - [anon_sym_switch] = ACTIONS(3095), - [anon_sym_while] = ACTIONS(3095), - [anon_sym_do] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3095), - [anon_sym_return] = ACTIONS(3095), - [anon_sym_break] = ACTIONS(3095), - [anon_sym_continue] = ACTIONS(3095), - [anon_sym_goto] = ACTIONS(3095), - [anon_sym_not] = ACTIONS(3095), - [anon_sym_compl] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_sizeof] = ACTIONS(3095), - [anon_sym___alignof__] = ACTIONS(3095), - [anon_sym___alignof] = ACTIONS(3095), - [anon_sym__alignof] = ACTIONS(3095), - [anon_sym_alignof] = ACTIONS(3095), - [anon_sym__Alignof] = ACTIONS(3095), - [anon_sym_offsetof] = ACTIONS(3095), - [anon_sym__Generic] = ACTIONS(3095), - [anon_sym_asm] = ACTIONS(3095), - [anon_sym___asm__] = ACTIONS(3095), - [sym_number_literal] = ACTIONS(3097), - [anon_sym_L_SQUOTE] = ACTIONS(3097), - [anon_sym_u_SQUOTE] = ACTIONS(3097), - [anon_sym_U_SQUOTE] = ACTIONS(3097), - [anon_sym_u8_SQUOTE] = ACTIONS(3097), - [anon_sym_SQUOTE] = ACTIONS(3097), - [anon_sym_L_DQUOTE] = ACTIONS(3097), - [anon_sym_u_DQUOTE] = ACTIONS(3097), - [anon_sym_U_DQUOTE] = ACTIONS(3097), - [anon_sym_u8_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE] = ACTIONS(3097), - [sym_true] = ACTIONS(3095), - [sym_false] = ACTIONS(3095), - [anon_sym_NULL] = ACTIONS(3095), - [anon_sym_nullptr] = ACTIONS(3095), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3095), - [anon_sym_decltype] = ACTIONS(3095), - [anon_sym_virtual] = ACTIONS(3095), - [anon_sym_alignas] = ACTIONS(3095), - [anon_sym_typename] = ACTIONS(3095), - [anon_sym_template] = ACTIONS(3095), - [anon_sym_try] = ACTIONS(3095), - [anon_sym_delete] = ACTIONS(3095), - [anon_sym_throw] = ACTIONS(3095), - [anon_sym_co_return] = ACTIONS(3095), - [anon_sym_co_yield] = ACTIONS(3095), - [anon_sym_R_DQUOTE] = ACTIONS(3097), - [anon_sym_LR_DQUOTE] = ACTIONS(3097), - [anon_sym_uR_DQUOTE] = ACTIONS(3097), - [anon_sym_UR_DQUOTE] = ACTIONS(3097), - [anon_sym_u8R_DQUOTE] = ACTIONS(3097), - [anon_sym_co_await] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_requires] = ACTIONS(3095), - [sym_this] = ACTIONS(3095), + [sym__expression] = STATE(2603), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1585] = { - [sym_identifier] = ACTIONS(3091), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3091), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3093), - [anon_sym___extension__] = ACTIONS(3091), - [anon_sym_typedef] = ACTIONS(3091), - [anon_sym_extern] = ACTIONS(3091), - [anon_sym___attribute__] = ACTIONS(3091), - [anon_sym_COLON_COLON] = ACTIONS(3093), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), - [anon_sym___declspec] = ACTIONS(3091), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_signed] = ACTIONS(3091), - [anon_sym_unsigned] = ACTIONS(3091), - [anon_sym_long] = ACTIONS(3091), - [anon_sym_short] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_register] = ACTIONS(3091), - [anon_sym_inline] = ACTIONS(3091), - [anon_sym___inline] = ACTIONS(3091), - [anon_sym___inline__] = ACTIONS(3091), - [anon_sym___forceinline] = ACTIONS(3091), - [anon_sym_thread_local] = ACTIONS(3091), - [anon_sym___thread] = ACTIONS(3091), - [anon_sym_const] = ACTIONS(3091), - [anon_sym_constexpr] = ACTIONS(3091), - [anon_sym_volatile] = ACTIONS(3091), - [anon_sym_restrict] = ACTIONS(3091), - [anon_sym___restrict__] = ACTIONS(3091), - [anon_sym__Atomic] = ACTIONS(3091), - [anon_sym__Noreturn] = ACTIONS(3091), - [anon_sym_noreturn] = ACTIONS(3091), - [anon_sym_mutable] = ACTIONS(3091), - [anon_sym_constinit] = ACTIONS(3091), - [anon_sym_consteval] = ACTIONS(3091), - [sym_primitive_type] = ACTIONS(3091), - [anon_sym_enum] = ACTIONS(3091), - [anon_sym_class] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(3091), - [anon_sym_union] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3091), - [anon_sym_switch] = ACTIONS(3091), - [anon_sym_while] = ACTIONS(3091), - [anon_sym_do] = ACTIONS(3091), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_break] = ACTIONS(3091), - [anon_sym_continue] = ACTIONS(3091), - [anon_sym_goto] = ACTIONS(3091), - [anon_sym_not] = ACTIONS(3091), - [anon_sym_compl] = ACTIONS(3091), - [anon_sym_DASH_DASH] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3093), - [anon_sym_sizeof] = ACTIONS(3091), - [anon_sym___alignof__] = ACTIONS(3091), - [anon_sym___alignof] = ACTIONS(3091), - [anon_sym__alignof] = ACTIONS(3091), - [anon_sym_alignof] = ACTIONS(3091), - [anon_sym__Alignof] = ACTIONS(3091), - [anon_sym_offsetof] = ACTIONS(3091), - [anon_sym__Generic] = ACTIONS(3091), - [anon_sym_asm] = ACTIONS(3091), - [anon_sym___asm__] = ACTIONS(3091), - [sym_number_literal] = ACTIONS(3093), - [anon_sym_L_SQUOTE] = ACTIONS(3093), - [anon_sym_u_SQUOTE] = ACTIONS(3093), - [anon_sym_U_SQUOTE] = ACTIONS(3093), - [anon_sym_u8_SQUOTE] = ACTIONS(3093), - [anon_sym_SQUOTE] = ACTIONS(3093), - [anon_sym_L_DQUOTE] = ACTIONS(3093), - [anon_sym_u_DQUOTE] = ACTIONS(3093), - [anon_sym_U_DQUOTE] = ACTIONS(3093), - [anon_sym_u8_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [sym_true] = ACTIONS(3091), - [sym_false] = ACTIONS(3091), - [anon_sym_NULL] = ACTIONS(3091), - [anon_sym_nullptr] = ACTIONS(3091), + [sym__expression] = STATE(4232), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3091), - [anon_sym_decltype] = ACTIONS(3091), - [anon_sym_virtual] = ACTIONS(3091), - [anon_sym_alignas] = ACTIONS(3091), - [anon_sym_typename] = ACTIONS(3091), - [anon_sym_template] = ACTIONS(3091), - [anon_sym_try] = ACTIONS(3091), - [anon_sym_delete] = ACTIONS(3091), - [anon_sym_throw] = ACTIONS(3091), - [anon_sym_co_return] = ACTIONS(3091), - [anon_sym_co_yield] = ACTIONS(3091), - [anon_sym_R_DQUOTE] = ACTIONS(3093), - [anon_sym_LR_DQUOTE] = ACTIONS(3093), - [anon_sym_uR_DQUOTE] = ACTIONS(3093), - [anon_sym_UR_DQUOTE] = ACTIONS(3093), - [anon_sym_u8R_DQUOTE] = ACTIONS(3093), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3091), - [anon_sym_requires] = ACTIONS(3091), - [sym_this] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1586] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__expression] = STATE(4240), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1587] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__expression] = STATE(4206), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1588] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__expression] = STATE(4202), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1589] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__expression] = STATE(4267), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1590] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__expression] = STATE(3940), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1591] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym__expression] = STATE(3234), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_sizeof] = ACTIONS(2200), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1592] = { - [sym_identifier] = ACTIONS(3988), - [anon_sym_LPAREN2] = ACTIONS(3990), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_TILDE] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3988), - [anon_sym_PLUS] = ACTIONS(3988), - [anon_sym_STAR] = ACTIONS(3990), - [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(3990), - [anon_sym___extension__] = ACTIONS(3988), - [anon_sym_extern] = ACTIONS(3988), - [anon_sym___attribute__] = ACTIONS(3988), - [anon_sym_COLON_COLON] = ACTIONS(3990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3990), - [anon_sym___declspec] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3990), - [anon_sym_signed] = ACTIONS(3988), - [anon_sym_unsigned] = ACTIONS(3988), - [anon_sym_long] = ACTIONS(3988), - [anon_sym_short] = ACTIONS(3988), - [anon_sym_LBRACK] = ACTIONS(3988), - [anon_sym_static] = ACTIONS(3988), - [anon_sym_register] = ACTIONS(3988), - [anon_sym_inline] = ACTIONS(3988), - [anon_sym___inline] = ACTIONS(3988), - [anon_sym___inline__] = ACTIONS(3988), - [anon_sym___forceinline] = ACTIONS(3988), - [anon_sym_thread_local] = ACTIONS(3988), - [anon_sym___thread] = ACTIONS(3988), - [anon_sym_const] = ACTIONS(3988), - [anon_sym_constexpr] = ACTIONS(3988), - [anon_sym_volatile] = ACTIONS(3988), - [anon_sym_restrict] = ACTIONS(3988), - [anon_sym___restrict__] = ACTIONS(3988), - [anon_sym__Atomic] = ACTIONS(3988), - [anon_sym__Noreturn] = ACTIONS(3988), - [anon_sym_noreturn] = ACTIONS(3988), - [anon_sym_mutable] = ACTIONS(3988), - [anon_sym_constinit] = ACTIONS(3988), - [anon_sym_consteval] = ACTIONS(3988), - [sym_primitive_type] = ACTIONS(3988), - [anon_sym_enum] = ACTIONS(3988), - [anon_sym_class] = ACTIONS(3988), - [anon_sym_struct] = ACTIONS(3988), - [anon_sym_union] = ACTIONS(3988), - [anon_sym_if] = ACTIONS(3988), - [anon_sym_switch] = ACTIONS(3988), - [anon_sym_case] = ACTIONS(3988), - [anon_sym_default] = ACTIONS(3988), - [anon_sym_while] = ACTIONS(3988), - [anon_sym_do] = ACTIONS(3988), - [anon_sym_for] = ACTIONS(3988), - [anon_sym_return] = ACTIONS(3988), - [anon_sym_break] = ACTIONS(3988), - [anon_sym_continue] = ACTIONS(3988), - [anon_sym_goto] = ACTIONS(3988), - [anon_sym_not] = ACTIONS(3988), - [anon_sym_compl] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3990), - [anon_sym_PLUS_PLUS] = ACTIONS(3990), - [anon_sym_sizeof] = ACTIONS(3988), - [anon_sym___alignof__] = ACTIONS(3988), - [anon_sym___alignof] = ACTIONS(3988), - [anon_sym__alignof] = ACTIONS(3988), - [anon_sym_alignof] = ACTIONS(3988), - [anon_sym__Alignof] = ACTIONS(3988), - [anon_sym_offsetof] = ACTIONS(3988), - [anon_sym__Generic] = ACTIONS(3988), - [anon_sym_asm] = ACTIONS(3988), - [anon_sym___asm__] = ACTIONS(3988), - [sym_number_literal] = ACTIONS(3990), - [anon_sym_L_SQUOTE] = ACTIONS(3990), - [anon_sym_u_SQUOTE] = ACTIONS(3990), - [anon_sym_U_SQUOTE] = ACTIONS(3990), - [anon_sym_u8_SQUOTE] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3990), - [anon_sym_L_DQUOTE] = ACTIONS(3990), - [anon_sym_u_DQUOTE] = ACTIONS(3990), - [anon_sym_U_DQUOTE] = ACTIONS(3990), - [anon_sym_u8_DQUOTE] = ACTIONS(3990), - [anon_sym_DQUOTE] = ACTIONS(3990), - [sym_true] = ACTIONS(3988), - [sym_false] = ACTIONS(3988), - [anon_sym_NULL] = ACTIONS(3988), - [anon_sym_nullptr] = ACTIONS(3988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3988), - [anon_sym_decltype] = ACTIONS(3988), - [anon_sym_virtual] = ACTIONS(3988), - [anon_sym_alignas] = ACTIONS(3988), - [anon_sym_typename] = ACTIONS(3988), - [anon_sym_template] = ACTIONS(3988), - [anon_sym_try] = ACTIONS(3988), - [anon_sym_delete] = ACTIONS(3988), - [anon_sym_throw] = ACTIONS(3988), - [anon_sym_co_return] = ACTIONS(3988), - [anon_sym_co_yield] = ACTIONS(3988), - [anon_sym_R_DQUOTE] = ACTIONS(3990), - [anon_sym_LR_DQUOTE] = ACTIONS(3990), - [anon_sym_uR_DQUOTE] = ACTIONS(3990), - [anon_sym_UR_DQUOTE] = ACTIONS(3990), - [anon_sym_u8R_DQUOTE] = ACTIONS(3990), - [anon_sym_co_await] = ACTIONS(3988), - [anon_sym_new] = ACTIONS(3988), - [anon_sym_requires] = ACTIONS(3988), - [sym_this] = ACTIONS(3988), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1593] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__expression] = STATE(4119), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1594] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__expression] = STATE(4260), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1595] = { - [sym_identifier] = ACTIONS(2786), - [anon_sym_LPAREN2] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2786), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2788), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym___extension__] = ACTIONS(2786), - [anon_sym_typedef] = ACTIONS(2786), - [anon_sym_extern] = ACTIONS(2786), - [anon_sym___attribute__] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2788), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2788), - [anon_sym___declspec] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_signed] = ACTIONS(2786), - [anon_sym_unsigned] = ACTIONS(2786), - [anon_sym_long] = ACTIONS(2786), - [anon_sym_short] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_static] = ACTIONS(2786), - [anon_sym_register] = ACTIONS(2786), - [anon_sym_inline] = ACTIONS(2786), - [anon_sym___inline] = ACTIONS(2786), - [anon_sym___inline__] = ACTIONS(2786), - [anon_sym___forceinline] = ACTIONS(2786), - [anon_sym_thread_local] = ACTIONS(2786), - [anon_sym___thread] = ACTIONS(2786), - [anon_sym_const] = ACTIONS(2786), - [anon_sym_constexpr] = ACTIONS(2786), - [anon_sym_volatile] = ACTIONS(2786), - [anon_sym_restrict] = ACTIONS(2786), - [anon_sym___restrict__] = ACTIONS(2786), - [anon_sym__Atomic] = ACTIONS(2786), - [anon_sym__Noreturn] = ACTIONS(2786), - [anon_sym_noreturn] = ACTIONS(2786), - [anon_sym_mutable] = ACTIONS(2786), - [anon_sym_constinit] = ACTIONS(2786), - [anon_sym_consteval] = ACTIONS(2786), - [sym_primitive_type] = ACTIONS(2786), - [anon_sym_enum] = ACTIONS(2786), - [anon_sym_class] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2786), - [anon_sym_union] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2786), - [anon_sym_else] = ACTIONS(2786), - [anon_sym_switch] = ACTIONS(2786), - [anon_sym_while] = ACTIONS(2786), - [anon_sym_do] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2786), - [anon_sym_return] = ACTIONS(2786), - [anon_sym_break] = ACTIONS(2786), - [anon_sym_continue] = ACTIONS(2786), - [anon_sym_goto] = ACTIONS(2786), - [anon_sym_not] = ACTIONS(2786), - [anon_sym_compl] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_sizeof] = ACTIONS(2786), - [anon_sym___alignof__] = ACTIONS(2786), - [anon_sym___alignof] = ACTIONS(2786), - [anon_sym__alignof] = ACTIONS(2786), - [anon_sym_alignof] = ACTIONS(2786), - [anon_sym__Alignof] = ACTIONS(2786), - [anon_sym_offsetof] = ACTIONS(2786), - [anon_sym__Generic] = ACTIONS(2786), - [anon_sym_asm] = ACTIONS(2786), - [anon_sym___asm__] = ACTIONS(2786), - [sym_number_literal] = ACTIONS(2788), - [anon_sym_L_SQUOTE] = ACTIONS(2788), - [anon_sym_u_SQUOTE] = ACTIONS(2788), - [anon_sym_U_SQUOTE] = ACTIONS(2788), - [anon_sym_u8_SQUOTE] = ACTIONS(2788), - [anon_sym_SQUOTE] = ACTIONS(2788), - [anon_sym_L_DQUOTE] = ACTIONS(2788), - [anon_sym_u_DQUOTE] = ACTIONS(2788), - [anon_sym_U_DQUOTE] = ACTIONS(2788), - [anon_sym_u8_DQUOTE] = ACTIONS(2788), - [anon_sym_DQUOTE] = ACTIONS(2788), - [sym_true] = ACTIONS(2786), - [sym_false] = ACTIONS(2786), - [anon_sym_NULL] = ACTIONS(2786), - [anon_sym_nullptr] = ACTIONS(2786), + [sym__expression] = STATE(4183), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2786), - [anon_sym_decltype] = ACTIONS(2786), - [anon_sym_virtual] = ACTIONS(2786), - [anon_sym_alignas] = ACTIONS(2786), - [anon_sym_typename] = ACTIONS(2786), - [anon_sym_template] = ACTIONS(2786), - [anon_sym_try] = ACTIONS(2786), - [anon_sym_delete] = ACTIONS(2786), - [anon_sym_throw] = ACTIONS(2786), - [anon_sym_co_return] = ACTIONS(2786), - [anon_sym_co_yield] = ACTIONS(2786), - [anon_sym_R_DQUOTE] = ACTIONS(2788), - [anon_sym_LR_DQUOTE] = ACTIONS(2788), - [anon_sym_uR_DQUOTE] = ACTIONS(2788), - [anon_sym_UR_DQUOTE] = ACTIONS(2788), - [anon_sym_u8R_DQUOTE] = ACTIONS(2788), - [anon_sym_co_await] = ACTIONS(2786), - [anon_sym_new] = ACTIONS(2786), - [anon_sym_requires] = ACTIONS(2786), - [sym_this] = ACTIONS(2786), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1596] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__expression] = STATE(3996), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1597] = { + [sym__expression] = STATE(3917), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), [sym_identifier] = ACTIONS(2782), - [anon_sym_LPAREN2] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym___extension__] = ACTIONS(2782), - [anon_sym_typedef] = ACTIONS(2782), - [anon_sym_extern] = ACTIONS(2782), - [anon_sym___attribute__] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2784), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2784), - [anon_sym___declspec] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_signed] = ACTIONS(2782), - [anon_sym_unsigned] = ACTIONS(2782), - [anon_sym_long] = ACTIONS(2782), - [anon_sym_short] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_static] = ACTIONS(2782), - [anon_sym_register] = ACTIONS(2782), - [anon_sym_inline] = ACTIONS(2782), - [anon_sym___inline] = ACTIONS(2782), - [anon_sym___inline__] = ACTIONS(2782), - [anon_sym___forceinline] = ACTIONS(2782), - [anon_sym_thread_local] = ACTIONS(2782), - [anon_sym___thread] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_constexpr] = ACTIONS(2782), - [anon_sym_volatile] = ACTIONS(2782), - [anon_sym_restrict] = ACTIONS(2782), - [anon_sym___restrict__] = ACTIONS(2782), - [anon_sym__Atomic] = ACTIONS(2782), - [anon_sym__Noreturn] = ACTIONS(2782), - [anon_sym_noreturn] = ACTIONS(2782), - [anon_sym_mutable] = ACTIONS(2782), - [anon_sym_constinit] = ACTIONS(2782), - [anon_sym_consteval] = ACTIONS(2782), - [sym_primitive_type] = ACTIONS(2782), - [anon_sym_enum] = ACTIONS(2782), - [anon_sym_class] = ACTIONS(2782), - [anon_sym_struct] = ACTIONS(2782), - [anon_sym_union] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_else] = ACTIONS(2782), - [anon_sym_switch] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_goto] = ACTIONS(2782), - [anon_sym_not] = ACTIONS(2782), - [anon_sym_compl] = ACTIONS(2782), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_sizeof] = ACTIONS(2782), - [anon_sym___alignof__] = ACTIONS(2782), - [anon_sym___alignof] = ACTIONS(2782), - [anon_sym__alignof] = ACTIONS(2782), - [anon_sym_alignof] = ACTIONS(2782), - [anon_sym__Alignof] = ACTIONS(2782), - [anon_sym_offsetof] = ACTIONS(2782), - [anon_sym__Generic] = ACTIONS(2782), - [anon_sym_asm] = ACTIONS(2782), - [anon_sym___asm__] = ACTIONS(2782), - [sym_number_literal] = ACTIONS(2784), - [anon_sym_L_SQUOTE] = ACTIONS(2784), - [anon_sym_u_SQUOTE] = ACTIONS(2784), - [anon_sym_U_SQUOTE] = ACTIONS(2784), - [anon_sym_u8_SQUOTE] = ACTIONS(2784), - [anon_sym_SQUOTE] = ACTIONS(2784), - [anon_sym_L_DQUOTE] = ACTIONS(2784), - [anon_sym_u_DQUOTE] = ACTIONS(2784), - [anon_sym_U_DQUOTE] = ACTIONS(2784), - [anon_sym_u8_DQUOTE] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [sym_true] = ACTIONS(2782), - [sym_false] = ACTIONS(2782), - [anon_sym_NULL] = ACTIONS(2782), - [anon_sym_nullptr] = ACTIONS(2782), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2782), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_virtual] = ACTIONS(2782), - [anon_sym_alignas] = ACTIONS(2782), - [anon_sym_typename] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2782), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_delete] = ACTIONS(2782), - [anon_sym_throw] = ACTIONS(2782), - [anon_sym_co_return] = ACTIONS(2782), - [anon_sym_co_yield] = ACTIONS(2782), - [anon_sym_R_DQUOTE] = ACTIONS(2784), - [anon_sym_LR_DQUOTE] = ACTIONS(2784), - [anon_sym_uR_DQUOTE] = ACTIONS(2784), - [anon_sym_UR_DQUOTE] = ACTIONS(2784), - [anon_sym_u8R_DQUOTE] = ACTIONS(2784), - [anon_sym_co_await] = ACTIONS(2782), - [anon_sym_new] = ACTIONS(2782), - [anon_sym_requires] = ACTIONS(2782), - [sym_this] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1598] = { - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym___extension__] = ACTIONS(3035), - [anon_sym_typedef] = ACTIONS(3035), - [anon_sym_extern] = ACTIONS(3035), - [anon_sym___attribute__] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3037), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), - [anon_sym___declspec] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_signed] = ACTIONS(3035), - [anon_sym_unsigned] = ACTIONS(3035), - [anon_sym_long] = ACTIONS(3035), - [anon_sym_short] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_static] = ACTIONS(3035), - [anon_sym_register] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym___inline] = ACTIONS(3035), - [anon_sym___inline__] = ACTIONS(3035), - [anon_sym___forceinline] = ACTIONS(3035), - [anon_sym_thread_local] = ACTIONS(3035), - [anon_sym___thread] = ACTIONS(3035), - [anon_sym_const] = ACTIONS(3035), - [anon_sym_constexpr] = ACTIONS(3035), - [anon_sym_volatile] = ACTIONS(3035), - [anon_sym_restrict] = ACTIONS(3035), - [anon_sym___restrict__] = ACTIONS(3035), - [anon_sym__Atomic] = ACTIONS(3035), - [anon_sym__Noreturn] = ACTIONS(3035), - [anon_sym_noreturn] = ACTIONS(3035), - [anon_sym_mutable] = ACTIONS(3035), - [anon_sym_constinit] = ACTIONS(3035), - [anon_sym_consteval] = ACTIONS(3035), - [sym_primitive_type] = ACTIONS(3035), - [anon_sym_enum] = ACTIONS(3035), - [anon_sym_class] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_union] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_switch] = ACTIONS(3035), - [anon_sym_while] = ACTIONS(3035), - [anon_sym_do] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_goto] = ACTIONS(3035), - [anon_sym_not] = ACTIONS(3035), - [anon_sym_compl] = ACTIONS(3035), - [anon_sym_DASH_DASH] = ACTIONS(3037), - [anon_sym_PLUS_PLUS] = ACTIONS(3037), - [anon_sym_sizeof] = ACTIONS(3035), - [anon_sym___alignof__] = ACTIONS(3035), - [anon_sym___alignof] = ACTIONS(3035), - [anon_sym__alignof] = ACTIONS(3035), - [anon_sym_alignof] = ACTIONS(3035), - [anon_sym__Alignof] = ACTIONS(3035), - [anon_sym_offsetof] = ACTIONS(3035), - [anon_sym__Generic] = ACTIONS(3035), - [anon_sym_asm] = ACTIONS(3035), - [anon_sym___asm__] = ACTIONS(3035), - [sym_number_literal] = ACTIONS(3037), - [anon_sym_L_SQUOTE] = ACTIONS(3037), - [anon_sym_u_SQUOTE] = ACTIONS(3037), - [anon_sym_U_SQUOTE] = ACTIONS(3037), - [anon_sym_u8_SQUOTE] = ACTIONS(3037), - [anon_sym_SQUOTE] = ACTIONS(3037), - [anon_sym_L_DQUOTE] = ACTIONS(3037), - [anon_sym_u_DQUOTE] = ACTIONS(3037), - [anon_sym_U_DQUOTE] = ACTIONS(3037), - [anon_sym_u8_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [sym_true] = ACTIONS(3035), - [sym_false] = ACTIONS(3035), - [anon_sym_NULL] = ACTIONS(3035), - [anon_sym_nullptr] = ACTIONS(3035), + [sym__expression] = STATE(4246), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3035), - [anon_sym_decltype] = ACTIONS(3035), - [anon_sym_virtual] = ACTIONS(3035), - [anon_sym_alignas] = ACTIONS(3035), - [anon_sym_typename] = ACTIONS(3035), - [anon_sym_template] = ACTIONS(3035), - [anon_sym_try] = ACTIONS(3035), - [anon_sym_delete] = ACTIONS(3035), - [anon_sym_throw] = ACTIONS(3035), - [anon_sym_co_return] = ACTIONS(3035), - [anon_sym_co_yield] = ACTIONS(3035), - [anon_sym_R_DQUOTE] = ACTIONS(3037), - [anon_sym_LR_DQUOTE] = ACTIONS(3037), - [anon_sym_uR_DQUOTE] = ACTIONS(3037), - [anon_sym_UR_DQUOTE] = ACTIONS(3037), - [anon_sym_u8R_DQUOTE] = ACTIONS(3037), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(3035), - [sym_this] = ACTIONS(3035), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1599] = { - [sym_identifier] = ACTIONS(3057), - [anon_sym_LPAREN2] = ACTIONS(3059), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3059), - [anon_sym_SEMI] = ACTIONS(3059), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3057), - [anon_sym_extern] = ACTIONS(3057), - [anon_sym___attribute__] = ACTIONS(3057), - [anon_sym_COLON_COLON] = ACTIONS(3059), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3059), - [anon_sym___declspec] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_signed] = ACTIONS(3057), - [anon_sym_unsigned] = ACTIONS(3057), - [anon_sym_long] = ACTIONS(3057), - [anon_sym_short] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_register] = ACTIONS(3057), - [anon_sym_inline] = ACTIONS(3057), - [anon_sym___inline] = ACTIONS(3057), - [anon_sym___inline__] = ACTIONS(3057), - [anon_sym___forceinline] = ACTIONS(3057), - [anon_sym_thread_local] = ACTIONS(3057), - [anon_sym___thread] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_constexpr] = ACTIONS(3057), - [anon_sym_volatile] = ACTIONS(3057), - [anon_sym_restrict] = ACTIONS(3057), - [anon_sym___restrict__] = ACTIONS(3057), - [anon_sym__Atomic] = ACTIONS(3057), - [anon_sym__Noreturn] = ACTIONS(3057), - [anon_sym_noreturn] = ACTIONS(3057), - [anon_sym_mutable] = ACTIONS(3057), - [anon_sym_constinit] = ACTIONS(3057), - [anon_sym_consteval] = ACTIONS(3057), - [sym_primitive_type] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_class] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_else] = ACTIONS(3057), - [anon_sym_switch] = ACTIONS(3057), - [anon_sym_while] = ACTIONS(3057), - [anon_sym_do] = ACTIONS(3057), - [anon_sym_for] = ACTIONS(3057), - [anon_sym_return] = ACTIONS(3057), - [anon_sym_break] = ACTIONS(3057), - [anon_sym_continue] = ACTIONS(3057), - [anon_sym_goto] = ACTIONS(3057), - [anon_sym_not] = ACTIONS(3057), - [anon_sym_compl] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_sizeof] = ACTIONS(3057), - [anon_sym___alignof__] = ACTIONS(3057), - [anon_sym___alignof] = ACTIONS(3057), - [anon_sym__alignof] = ACTIONS(3057), - [anon_sym_alignof] = ACTIONS(3057), - [anon_sym__Alignof] = ACTIONS(3057), - [anon_sym_offsetof] = ACTIONS(3057), - [anon_sym__Generic] = ACTIONS(3057), - [anon_sym_asm] = ACTIONS(3057), - [anon_sym___asm__] = ACTIONS(3057), - [sym_number_literal] = ACTIONS(3059), - [anon_sym_L_SQUOTE] = ACTIONS(3059), - [anon_sym_u_SQUOTE] = ACTIONS(3059), - [anon_sym_U_SQUOTE] = ACTIONS(3059), - [anon_sym_u8_SQUOTE] = ACTIONS(3059), - [anon_sym_SQUOTE] = ACTIONS(3059), - [anon_sym_L_DQUOTE] = ACTIONS(3059), - [anon_sym_u_DQUOTE] = ACTIONS(3059), - [anon_sym_U_DQUOTE] = ACTIONS(3059), - [anon_sym_u8_DQUOTE] = ACTIONS(3059), - [anon_sym_DQUOTE] = ACTIONS(3059), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [anon_sym_NULL] = ACTIONS(3057), - [anon_sym_nullptr] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3057), - [anon_sym_decltype] = ACTIONS(3057), - [anon_sym_virtual] = ACTIONS(3057), - [anon_sym_alignas] = ACTIONS(3057), - [anon_sym_typename] = ACTIONS(3057), - [anon_sym_template] = ACTIONS(3057), - [anon_sym_try] = ACTIONS(3057), - [anon_sym_delete] = ACTIONS(3057), - [anon_sym_throw] = ACTIONS(3057), - [anon_sym_co_return] = ACTIONS(3057), - [anon_sym_co_yield] = ACTIONS(3057), - [anon_sym_R_DQUOTE] = ACTIONS(3059), - [anon_sym_LR_DQUOTE] = ACTIONS(3059), - [anon_sym_uR_DQUOTE] = ACTIONS(3059), - [anon_sym_UR_DQUOTE] = ACTIONS(3059), - [anon_sym_u8R_DQUOTE] = ACTIONS(3059), - [anon_sym_co_await] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(3057), - [sym_this] = ACTIONS(3057), + [sym__expression] = STATE(2732), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1600] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__expression] = STATE(4203), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1601] = { - [sym_identifier] = ACTIONS(3103), - [anon_sym_LPAREN2] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_SEMI] = ACTIONS(3105), - [anon_sym___extension__] = ACTIONS(3103), - [anon_sym_typedef] = ACTIONS(3103), - [anon_sym_extern] = ACTIONS(3103), - [anon_sym___attribute__] = ACTIONS(3103), - [anon_sym_COLON_COLON] = ACTIONS(3105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), - [anon_sym___declspec] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_signed] = ACTIONS(3103), - [anon_sym_unsigned] = ACTIONS(3103), - [anon_sym_long] = ACTIONS(3103), - [anon_sym_short] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_register] = ACTIONS(3103), - [anon_sym_inline] = ACTIONS(3103), - [anon_sym___inline] = ACTIONS(3103), - [anon_sym___inline__] = ACTIONS(3103), - [anon_sym___forceinline] = ACTIONS(3103), - [anon_sym_thread_local] = ACTIONS(3103), - [anon_sym___thread] = ACTIONS(3103), - [anon_sym_const] = ACTIONS(3103), - [anon_sym_constexpr] = ACTIONS(3103), - [anon_sym_volatile] = ACTIONS(3103), - [anon_sym_restrict] = ACTIONS(3103), - [anon_sym___restrict__] = ACTIONS(3103), - [anon_sym__Atomic] = ACTIONS(3103), - [anon_sym__Noreturn] = ACTIONS(3103), - [anon_sym_noreturn] = ACTIONS(3103), - [anon_sym_mutable] = ACTIONS(3103), - [anon_sym_constinit] = ACTIONS(3103), - [anon_sym_consteval] = ACTIONS(3103), - [sym_primitive_type] = ACTIONS(3103), - [anon_sym_enum] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_union] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3103), - [anon_sym_else] = ACTIONS(3103), - [anon_sym_switch] = ACTIONS(3103), - [anon_sym_while] = ACTIONS(3103), - [anon_sym_do] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3103), - [anon_sym_return] = ACTIONS(3103), - [anon_sym_break] = ACTIONS(3103), - [anon_sym_continue] = ACTIONS(3103), - [anon_sym_goto] = ACTIONS(3103), - [anon_sym_not] = ACTIONS(3103), - [anon_sym_compl] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3105), - [anon_sym_sizeof] = ACTIONS(3103), - [anon_sym___alignof__] = ACTIONS(3103), - [anon_sym___alignof] = ACTIONS(3103), - [anon_sym__alignof] = ACTIONS(3103), - [anon_sym_alignof] = ACTIONS(3103), - [anon_sym__Alignof] = ACTIONS(3103), - [anon_sym_offsetof] = ACTIONS(3103), - [anon_sym__Generic] = ACTIONS(3103), - [anon_sym_asm] = ACTIONS(3103), - [anon_sym___asm__] = ACTIONS(3103), - [sym_number_literal] = ACTIONS(3105), - [anon_sym_L_SQUOTE] = ACTIONS(3105), - [anon_sym_u_SQUOTE] = ACTIONS(3105), - [anon_sym_U_SQUOTE] = ACTIONS(3105), - [anon_sym_u8_SQUOTE] = ACTIONS(3105), - [anon_sym_SQUOTE] = ACTIONS(3105), - [anon_sym_L_DQUOTE] = ACTIONS(3105), - [anon_sym_u_DQUOTE] = ACTIONS(3105), - [anon_sym_U_DQUOTE] = ACTIONS(3105), - [anon_sym_u8_DQUOTE] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym_true] = ACTIONS(3103), - [sym_false] = ACTIONS(3103), - [anon_sym_NULL] = ACTIONS(3103), - [anon_sym_nullptr] = ACTIONS(3103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3103), - [anon_sym_decltype] = ACTIONS(3103), - [anon_sym_virtual] = ACTIONS(3103), - [anon_sym_alignas] = ACTIONS(3103), - [anon_sym_typename] = ACTIONS(3103), - [anon_sym_template] = ACTIONS(3103), - [anon_sym_try] = ACTIONS(3103), - [anon_sym_delete] = ACTIONS(3103), - [anon_sym_throw] = ACTIONS(3103), - [anon_sym_co_return] = ACTIONS(3103), - [anon_sym_co_yield] = ACTIONS(3103), - [anon_sym_R_DQUOTE] = ACTIONS(3105), - [anon_sym_LR_DQUOTE] = ACTIONS(3105), - [anon_sym_uR_DQUOTE] = ACTIONS(3105), - [anon_sym_UR_DQUOTE] = ACTIONS(3105), - [anon_sym_u8R_DQUOTE] = ACTIONS(3105), - [anon_sym_co_await] = ACTIONS(3103), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_requires] = ACTIONS(3103), - [sym_this] = ACTIONS(3103), + [sym__expression] = STATE(4125), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, [1602] = { - [sym_identifier] = 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] = ACTIONS(3025), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym___extension__] = ACTIONS(3023), - [anon_sym_typedef] = ACTIONS(3023), - [anon_sym_extern] = ACTIONS(3023), - [anon_sym___attribute__] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3025), - [anon_sym___declspec] = 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_mutable] = ACTIONS(3023), - [anon_sym_constinit] = ACTIONS(3023), - [anon_sym_consteval] = 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_else] = ACTIONS(3023), - [anon_sym_switch] = 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), - [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_virtual] = ACTIONS(3023), - [anon_sym_alignas] = ACTIONS(3023), - [anon_sym_typename] = ACTIONS(3023), - [anon_sym_template] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3023), - [anon_sym_delete] = ACTIONS(3023), - [anon_sym_throw] = 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), + [sym__expression] = STATE(2932), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(4519), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1603] = { - [sym_identifier] = ACTIONS(3077), - [anon_sym_LPAREN2] = ACTIONS(3079), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_SEMI] = ACTIONS(3079), - [anon_sym___extension__] = ACTIONS(3077), - [anon_sym_typedef] = ACTIONS(3077), - [anon_sym_extern] = ACTIONS(3077), - [anon_sym___attribute__] = ACTIONS(3077), - [anon_sym_COLON_COLON] = ACTIONS(3079), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3079), - [anon_sym___declspec] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_signed] = ACTIONS(3077), - [anon_sym_unsigned] = ACTIONS(3077), - [anon_sym_long] = ACTIONS(3077), - [anon_sym_short] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3077), - [anon_sym_static] = ACTIONS(3077), - [anon_sym_register] = ACTIONS(3077), - [anon_sym_inline] = ACTIONS(3077), - [anon_sym___inline] = ACTIONS(3077), - [anon_sym___inline__] = ACTIONS(3077), - [anon_sym___forceinline] = ACTIONS(3077), - [anon_sym_thread_local] = ACTIONS(3077), - [anon_sym___thread] = ACTIONS(3077), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_constexpr] = ACTIONS(3077), - [anon_sym_volatile] = ACTIONS(3077), - [anon_sym_restrict] = ACTIONS(3077), - [anon_sym___restrict__] = ACTIONS(3077), - [anon_sym__Atomic] = ACTIONS(3077), - [anon_sym__Noreturn] = ACTIONS(3077), - [anon_sym_noreturn] = ACTIONS(3077), - [anon_sym_mutable] = ACTIONS(3077), - [anon_sym_constinit] = ACTIONS(3077), - [anon_sym_consteval] = ACTIONS(3077), - [sym_primitive_type] = ACTIONS(3077), - [anon_sym_enum] = ACTIONS(3077), - [anon_sym_class] = ACTIONS(3077), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_if] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3077), - [anon_sym_switch] = ACTIONS(3077), - [anon_sym_while] = ACTIONS(3077), - [anon_sym_do] = ACTIONS(3077), - [anon_sym_for] = ACTIONS(3077), - [anon_sym_return] = ACTIONS(3077), - [anon_sym_break] = ACTIONS(3077), - [anon_sym_continue] = ACTIONS(3077), - [anon_sym_goto] = ACTIONS(3077), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3079), - [anon_sym_PLUS_PLUS] = ACTIONS(3079), - [anon_sym_sizeof] = ACTIONS(3077), - [anon_sym___alignof__] = ACTIONS(3077), - [anon_sym___alignof] = ACTIONS(3077), - [anon_sym__alignof] = ACTIONS(3077), - [anon_sym_alignof] = ACTIONS(3077), - [anon_sym__Alignof] = ACTIONS(3077), - [anon_sym_offsetof] = ACTIONS(3077), - [anon_sym__Generic] = ACTIONS(3077), - [anon_sym_asm] = ACTIONS(3077), - [anon_sym___asm__] = ACTIONS(3077), - [sym_number_literal] = ACTIONS(3079), - [anon_sym_L_SQUOTE] = ACTIONS(3079), - [anon_sym_u_SQUOTE] = ACTIONS(3079), - [anon_sym_U_SQUOTE] = ACTIONS(3079), - [anon_sym_u8_SQUOTE] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3079), - [anon_sym_L_DQUOTE] = ACTIONS(3079), - [anon_sym_u_DQUOTE] = ACTIONS(3079), - [anon_sym_U_DQUOTE] = ACTIONS(3079), - [anon_sym_u8_DQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [sym_true] = ACTIONS(3077), - [sym_false] = ACTIONS(3077), - [anon_sym_NULL] = ACTIONS(3077), - [anon_sym_nullptr] = ACTIONS(3077), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3077), - [anon_sym_decltype] = ACTIONS(3077), - [anon_sym_virtual] = ACTIONS(3077), - [anon_sym_alignas] = ACTIONS(3077), - [anon_sym_typename] = ACTIONS(3077), - [anon_sym_template] = ACTIONS(3077), - [anon_sym_try] = ACTIONS(3077), - [anon_sym_delete] = ACTIONS(3077), - [anon_sym_throw] = ACTIONS(3077), - [anon_sym_co_return] = ACTIONS(3077), - [anon_sym_co_yield] = ACTIONS(3077), - [anon_sym_R_DQUOTE] = ACTIONS(3079), - [anon_sym_LR_DQUOTE] = ACTIONS(3079), - [anon_sym_uR_DQUOTE] = ACTIONS(3079), - [anon_sym_UR_DQUOTE] = ACTIONS(3079), - [anon_sym_u8R_DQUOTE] = ACTIONS(3079), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_requires] = ACTIONS(3077), - [sym_this] = ACTIONS(3077), + [sym__expression] = STATE(3378), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(4521), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [1604] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym__expression] = STATE(3135), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, [1605] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__expression] = STATE(4291), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1606] = { - [sym_identifier] = ACTIONS(3065), - [anon_sym_LPAREN2] = ACTIONS(3067), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym___extension__] = ACTIONS(3065), - [anon_sym_typedef] = ACTIONS(3065), - [anon_sym_extern] = ACTIONS(3065), - [anon_sym___attribute__] = ACTIONS(3065), - [anon_sym_COLON_COLON] = ACTIONS(3067), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3067), - [anon_sym___declspec] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_signed] = ACTIONS(3065), - [anon_sym_unsigned] = ACTIONS(3065), - [anon_sym_long] = ACTIONS(3065), - [anon_sym_short] = ACTIONS(3065), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(3065), - [anon_sym_register] = ACTIONS(3065), - [anon_sym_inline] = ACTIONS(3065), - [anon_sym___inline] = ACTIONS(3065), - [anon_sym___inline__] = ACTIONS(3065), - [anon_sym___forceinline] = ACTIONS(3065), - [anon_sym_thread_local] = ACTIONS(3065), - [anon_sym___thread] = ACTIONS(3065), - [anon_sym_const] = ACTIONS(3065), - [anon_sym_constexpr] = ACTIONS(3065), - [anon_sym_volatile] = ACTIONS(3065), - [anon_sym_restrict] = ACTIONS(3065), - [anon_sym___restrict__] = ACTIONS(3065), - [anon_sym__Atomic] = ACTIONS(3065), - [anon_sym__Noreturn] = ACTIONS(3065), - [anon_sym_noreturn] = ACTIONS(3065), - [anon_sym_mutable] = ACTIONS(3065), - [anon_sym_constinit] = ACTIONS(3065), - [anon_sym_consteval] = ACTIONS(3065), - [sym_primitive_type] = ACTIONS(3065), - [anon_sym_enum] = ACTIONS(3065), - [anon_sym_class] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(3065), - [anon_sym_union] = ACTIONS(3065), - [anon_sym_if] = ACTIONS(3065), - [anon_sym_else] = ACTIONS(3065), - [anon_sym_switch] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3065), - [anon_sym_do] = ACTIONS(3065), - [anon_sym_for] = ACTIONS(3065), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_break] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(3065), - [anon_sym_goto] = ACTIONS(3065), - [anon_sym_not] = ACTIONS(3065), - [anon_sym_compl] = ACTIONS(3065), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_sizeof] = ACTIONS(3065), - [anon_sym___alignof__] = ACTIONS(3065), - [anon_sym___alignof] = ACTIONS(3065), - [anon_sym__alignof] = ACTIONS(3065), - [anon_sym_alignof] = ACTIONS(3065), - [anon_sym__Alignof] = ACTIONS(3065), - [anon_sym_offsetof] = ACTIONS(3065), - [anon_sym__Generic] = ACTIONS(3065), - [anon_sym_asm] = ACTIONS(3065), - [anon_sym___asm__] = ACTIONS(3065), - [sym_number_literal] = ACTIONS(3067), - [anon_sym_L_SQUOTE] = ACTIONS(3067), - [anon_sym_u_SQUOTE] = ACTIONS(3067), - [anon_sym_U_SQUOTE] = ACTIONS(3067), - [anon_sym_u8_SQUOTE] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3067), - [anon_sym_L_DQUOTE] = ACTIONS(3067), - [anon_sym_u_DQUOTE] = ACTIONS(3067), - [anon_sym_U_DQUOTE] = ACTIONS(3067), - [anon_sym_u8_DQUOTE] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(3067), - [sym_true] = ACTIONS(3065), - [sym_false] = ACTIONS(3065), - [anon_sym_NULL] = ACTIONS(3065), - [anon_sym_nullptr] = ACTIONS(3065), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3065), - [anon_sym_decltype] = ACTIONS(3065), - [anon_sym_virtual] = ACTIONS(3065), - [anon_sym_alignas] = ACTIONS(3065), - [anon_sym_typename] = ACTIONS(3065), - [anon_sym_template] = ACTIONS(3065), - [anon_sym_try] = ACTIONS(3065), - [anon_sym_delete] = ACTIONS(3065), - [anon_sym_throw] = ACTIONS(3065), - [anon_sym_co_return] = ACTIONS(3065), - [anon_sym_co_yield] = ACTIONS(3065), - [anon_sym_R_DQUOTE] = ACTIONS(3067), - [anon_sym_LR_DQUOTE] = ACTIONS(3067), - [anon_sym_uR_DQUOTE] = ACTIONS(3067), - [anon_sym_UR_DQUOTE] = ACTIONS(3067), - [anon_sym_u8R_DQUOTE] = ACTIONS(3067), - [anon_sym_co_await] = ACTIONS(3065), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(3065), - [sym_this] = ACTIONS(3065), + [sym__expression] = STATE(4041), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1607] = { - [sym_identifier] = ACTIONS(3061), - [anon_sym_LPAREN2] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3063), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3063), - [anon_sym___extension__] = ACTIONS(3061), - [anon_sym_typedef] = ACTIONS(3061), - [anon_sym_extern] = ACTIONS(3061), - [anon_sym___attribute__] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3063), - [anon_sym___declspec] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3063), - [anon_sym_signed] = ACTIONS(3061), - [anon_sym_unsigned] = ACTIONS(3061), - [anon_sym_long] = ACTIONS(3061), - [anon_sym_short] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3061), - [anon_sym_static] = ACTIONS(3061), - [anon_sym_register] = ACTIONS(3061), - [anon_sym_inline] = ACTIONS(3061), - [anon_sym___inline] = ACTIONS(3061), - [anon_sym___inline__] = ACTIONS(3061), - [anon_sym___forceinline] = ACTIONS(3061), - [anon_sym_thread_local] = ACTIONS(3061), - [anon_sym___thread] = ACTIONS(3061), - [anon_sym_const] = ACTIONS(3061), - [anon_sym_constexpr] = ACTIONS(3061), - [anon_sym_volatile] = ACTIONS(3061), - [anon_sym_restrict] = ACTIONS(3061), - [anon_sym___restrict__] = ACTIONS(3061), - [anon_sym__Atomic] = ACTIONS(3061), - [anon_sym__Noreturn] = ACTIONS(3061), - [anon_sym_noreturn] = ACTIONS(3061), - [anon_sym_mutable] = ACTIONS(3061), - [anon_sym_constinit] = ACTIONS(3061), - [anon_sym_consteval] = ACTIONS(3061), - [sym_primitive_type] = ACTIONS(3061), - [anon_sym_enum] = ACTIONS(3061), - [anon_sym_class] = ACTIONS(3061), - [anon_sym_struct] = ACTIONS(3061), - [anon_sym_union] = ACTIONS(3061), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_else] = ACTIONS(3061), - [anon_sym_switch] = ACTIONS(3061), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_do] = ACTIONS(3061), - [anon_sym_for] = ACTIONS(3061), - [anon_sym_return] = ACTIONS(3061), - [anon_sym_break] = ACTIONS(3061), - [anon_sym_continue] = ACTIONS(3061), - [anon_sym_goto] = ACTIONS(3061), - [anon_sym_not] = ACTIONS(3061), - [anon_sym_compl] = ACTIONS(3061), - [anon_sym_DASH_DASH] = ACTIONS(3063), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_sizeof] = ACTIONS(3061), - [anon_sym___alignof__] = ACTIONS(3061), - [anon_sym___alignof] = ACTIONS(3061), - [anon_sym__alignof] = ACTIONS(3061), - [anon_sym_alignof] = ACTIONS(3061), - [anon_sym__Alignof] = ACTIONS(3061), - [anon_sym_offsetof] = ACTIONS(3061), - [anon_sym__Generic] = ACTIONS(3061), - [anon_sym_asm] = ACTIONS(3061), - [anon_sym___asm__] = ACTIONS(3061), - [sym_number_literal] = ACTIONS(3063), - [anon_sym_L_SQUOTE] = ACTIONS(3063), - [anon_sym_u_SQUOTE] = ACTIONS(3063), - [anon_sym_U_SQUOTE] = ACTIONS(3063), - [anon_sym_u8_SQUOTE] = ACTIONS(3063), - [anon_sym_SQUOTE] = ACTIONS(3063), - [anon_sym_L_DQUOTE] = ACTIONS(3063), - [anon_sym_u_DQUOTE] = ACTIONS(3063), - [anon_sym_U_DQUOTE] = ACTIONS(3063), - [anon_sym_u8_DQUOTE] = ACTIONS(3063), - [anon_sym_DQUOTE] = ACTIONS(3063), - [sym_true] = ACTIONS(3061), - [sym_false] = ACTIONS(3061), - [anon_sym_NULL] = ACTIONS(3061), - [anon_sym_nullptr] = ACTIONS(3061), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3061), - [anon_sym_decltype] = ACTIONS(3061), - [anon_sym_virtual] = ACTIONS(3061), - [anon_sym_alignas] = ACTIONS(3061), - [anon_sym_typename] = ACTIONS(3061), - [anon_sym_template] = ACTIONS(3061), - [anon_sym_try] = ACTIONS(3061), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_throw] = ACTIONS(3061), - [anon_sym_co_return] = ACTIONS(3061), - [anon_sym_co_yield] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(3063), - [anon_sym_LR_DQUOTE] = ACTIONS(3063), - [anon_sym_uR_DQUOTE] = ACTIONS(3063), - [anon_sym_UR_DQUOTE] = ACTIONS(3063), - [anon_sym_u8R_DQUOTE] = ACTIONS(3063), - [anon_sym_co_await] = ACTIONS(3061), - [anon_sym_new] = ACTIONS(3061), - [anon_sym_requires] = ACTIONS(3061), - [sym_this] = ACTIONS(3061), + [sym__expression] = STATE(4323), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1608] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__expression] = STATE(3978), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1609] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__expression] = STATE(4331), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1610] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym__expression] = STATE(4318), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1611] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(4045), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1612] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym__expression] = STATE(2983), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1613] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(4221), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1614] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__expression] = STATE(4145), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1615] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym__expression] = STATE(2629), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(4523), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1616] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(4255), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1617] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym__expression] = STATE(3088), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, [1618] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(4244), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1619] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(2902), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, [1620] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym__expression] = STATE(2907), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(3034), + [sym_concatenated_string] = STATE(3034), + [sym_string_literal] = STATE(2121), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(2121), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_sizeof] = ACTIONS(2118), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2120), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2124), + [anon_sym_u_DQUOTE] = ACTIONS(2124), + [anon_sym_U_DQUOTE] = ACTIONS(2124), + [anon_sym_u8_DQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_R_DQUOTE] = ACTIONS(2128), + [anon_sym_LR_DQUOTE] = ACTIONS(2128), + [anon_sym_uR_DQUOTE] = ACTIONS(2128), + [anon_sym_UR_DQUOTE] = ACTIONS(2128), + [anon_sym_u8R_DQUOTE] = ACTIONS(2128), + [anon_sym_co_await] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1621] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(3988), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1622] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__expression] = STATE(4002), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1623] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(4301), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1624] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(4332), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3377), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3377), + [sym_call_expression] = STATE(3377), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3377), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3377), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3377), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3377), + [sym_identifier] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3639), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1625] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__expression] = STATE(4322), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1626] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(3929), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1627] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym__expression] = STATE(3018), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(4525), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, [1628] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(2966), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, [1629] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__expression] = STATE(4209), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1630] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym__expression] = STATE(3039), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, [1631] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(2981), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, [1632] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(2991), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, [1633] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(4242), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1634] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym__expression] = STATE(2603), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1635] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym__expression] = STATE(2656), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1636] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym__expression] = STATE(2997), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, [1637] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym__expression] = STATE(2998), + [sym__expression_not_binary] = STATE(3445), + [sym_conditional_expression] = STATE(3445), + [sym_assignment_expression] = STATE(3445), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3445), + [sym_binary_expression] = STATE(3445), + [sym_update_expression] = STATE(3445), + [sym_cast_expression] = STATE(3445), + [sym_sizeof_expression] = STATE(3445), + [sym_alignof_expression] = STATE(3445), + [sym_offsetof_expression] = STATE(3445), + [sym_generic_expression] = STATE(3445), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3445), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3445), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2150), + [sym_null] = STATE(3445), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6905), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3445), + [sym_raw_string_literal] = STATE(2150), + [sym_co_await_expression] = STATE(3445), + [sym_new_expression] = STATE(3445), + [sym_delete_expression] = STATE(3445), + [sym_requires_clause] = STATE(3445), + [sym_requires_expression] = STATE(3445), + [sym_lambda_expression] = STATE(3445), + [sym_lambda_capture_specifier] = STATE(5416), + [sym_fold_expression] = STATE(3445), + [sym_parameter_pack_expansion] = STATE(3445), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(6905), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(4529), + [sym_primitive_type] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2144), + [anon_sym_compl] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2162), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2166), + [anon_sym___asm__] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2172), + [anon_sym_u_DQUOTE] = ACTIONS(2172), + [anon_sym_U_DQUOTE] = ACTIONS(2172), + [anon_sym_u8_DQUOTE] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_nullptr] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2174), }, [1638] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(2968), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, [1639] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym__expression] = STATE(3441), + [sym__expression_not_binary] = STATE(3589), + [sym_conditional_expression] = STATE(3589), + [sym_assignment_expression] = STATE(3589), + [sym_pointer_expression] = STATE(3171), + [sym_unary_expression] = STATE(3589), + [sym_binary_expression] = STATE(3589), + [sym_update_expression] = STATE(3589), + [sym_cast_expression] = STATE(3589), + [sym_sizeof_expression] = STATE(3589), + [sym_alignof_expression] = STATE(3589), + [sym_offsetof_expression] = STATE(3589), + [sym_generic_expression] = STATE(3589), + [sym_subscript_expression] = STATE(3171), + [sym_call_expression] = STATE(3171), + [sym_gnu_asm_expression] = STATE(3589), + [sym_field_expression] = STATE(3171), + [sym_compound_literal_expression] = STATE(3589), + [sym_parenthesized_expression] = STATE(3171), + [sym_char_literal] = STATE(3504), + [sym_concatenated_string] = STATE(3504), + [sym_string_literal] = STATE(2358), + [sym_null] = STATE(3589), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6939), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3589), + [sym_raw_string_literal] = STATE(2358), + [sym_co_await_expression] = STATE(3589), + [sym_new_expression] = STATE(3589), + [sym_delete_expression] = STATE(3589), + [sym_requires_clause] = STATE(3589), + [sym_requires_expression] = STATE(3589), + [sym_lambda_expression] = STATE(3589), + [sym_lambda_capture_specifier] = STATE(5389), + [sym_fold_expression] = STATE(3589), + [sym_parameter_pack_expansion] = STATE(3589), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3171), + [sym_qualified_type_identifier] = STATE(6939), + [sym_user_defined_literal] = STATE(3171), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PLUS] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(1910), + [anon_sym_compl] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1928), + [anon_sym___alignof__] = ACTIONS(1930), + [anon_sym___alignof] = ACTIONS(1930), + [anon_sym__alignof] = ACTIONS(1930), + [anon_sym_alignof] = ACTIONS(1930), + [anon_sym__Alignof] = ACTIONS(1930), + [anon_sym_offsetof] = ACTIONS(1932), + [anon_sym__Generic] = ACTIONS(1934), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [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(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1950), + [anon_sym_R_DQUOTE] = ACTIONS(1952), + [anon_sym_LR_DQUOTE] = ACTIONS(1952), + [anon_sym_uR_DQUOTE] = ACTIONS(1952), + [anon_sym_UR_DQUOTE] = ACTIONS(1952), + [anon_sym_u8R_DQUOTE] = ACTIONS(1952), + [anon_sym_co_await] = ACTIONS(1954), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_requires] = ACTIONS(1958), + [sym_this] = ACTIONS(1944), }, [1640] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(4269), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3496), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3496), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3496), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3496), + [sym_identifier] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3649), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(3651), + [anon_sym_compl] = ACTIONS(3651), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(3663), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1641] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym__expression] = STATE(2679), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1642] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym__expression] = STATE(2627), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1643] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__expression] = STATE(4310), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1644] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym__expression] = STATE(2671), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1645] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym__expression] = STATE(2588), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(4531), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1646] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(3895), + [sym__expression_not_binary] = STATE(3876), + [sym_conditional_expression] = STATE(3876), + [sym_assignment_expression] = STATE(3876), + [sym_pointer_expression] = STATE(3087), + [sym_unary_expression] = STATE(3876), + [sym_binary_expression] = STATE(3876), + [sym_update_expression] = STATE(3876), + [sym_cast_expression] = STATE(3876), + [sym_sizeof_expression] = STATE(3876), + [sym_alignof_expression] = STATE(3876), + [sym_offsetof_expression] = STATE(3876), + [sym_generic_expression] = STATE(3876), + [sym_subscript_expression] = STATE(3087), + [sym_call_expression] = STATE(3087), + [sym_gnu_asm_expression] = STATE(3876), + [sym_field_expression] = STATE(3087), + [sym_compound_literal_expression] = STATE(3876), + [sym_parenthesized_expression] = STATE(3087), + [sym_char_literal] = STATE(3857), + [sym_concatenated_string] = STATE(3857), + [sym_string_literal] = STATE(2908), + [sym_null] = STATE(3876), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6993), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3876), + [sym_raw_string_literal] = STATE(2908), + [sym_co_await_expression] = STATE(3876), + [sym_new_expression] = STATE(3876), + [sym_delete_expression] = STATE(3876), + [sym_requires_clause] = STATE(3876), + [sym_requires_expression] = STATE(3876), + [sym_lambda_expression] = STATE(3876), + [sym_lambda_capture_specifier] = STATE(5419), + [sym_fold_expression] = STATE(3876), + [sym_parameter_pack_expansion] = STATE(3876), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(3087), + [sym_qualified_type_identifier] = STATE(6993), + [sym_user_defined_literal] = STATE(3087), + [sym_identifier] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(213), }, [1647] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym__expression] = STATE(2588), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1648] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym__expression] = STATE(4046), + [sym__expression_not_binary] = STATE(4352), + [sym_conditional_expression] = STATE(4352), + [sym_assignment_expression] = STATE(4352), + [sym_pointer_expression] = STATE(3355), + [sym_unary_expression] = STATE(4352), + [sym_binary_expression] = STATE(4352), + [sym_update_expression] = STATE(4352), + [sym_cast_expression] = STATE(4352), + [sym_sizeof_expression] = STATE(4352), + [sym_alignof_expression] = STATE(4352), + [sym_offsetof_expression] = STATE(4352), + [sym_generic_expression] = STATE(4352), + [sym_subscript_expression] = STATE(3355), + [sym_call_expression] = STATE(3355), + [sym_gnu_asm_expression] = STATE(4352), + [sym_field_expression] = STATE(3355), + [sym_compound_literal_expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3355), + [sym_char_literal] = STATE(4194), + [sym_concatenated_string] = STATE(4194), + [sym_string_literal] = STATE(3500), + [sym_null] = STATE(4352), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(6922), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(4352), + [sym_raw_string_literal] = STATE(3500), + [sym_co_await_expression] = STATE(4352), + [sym_new_expression] = STATE(4352), + [sym_delete_expression] = STATE(4352), + [sym_requires_clause] = STATE(4352), + [sym_requires_expression] = STATE(4352), + [sym_lambda_expression] = STATE(4352), + [sym_lambda_capture_specifier] = STATE(5386), + [sym_fold_expression] = STATE(4352), + [sym_parameter_pack_expansion] = STATE(4352), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5160), + [sym_qualified_identifier] = STATE(3355), + [sym_qualified_type_identifier] = STATE(6922), + [sym_user_defined_literal] = STATE(3355), + [sym_identifier] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3625), + [anon_sym_not] = ACTIONS(2894), + [anon_sym_compl] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_sizeof] = ACTIONS(2914), + [anon_sym___alignof__] = ACTIONS(2916), + [anon_sym___alignof] = ACTIONS(2916), + [anon_sym__alignof] = ACTIONS(2916), + [anon_sym_alignof] = ACTIONS(2916), + [anon_sym__Alignof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2918), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym___asm__] = ACTIONS(2922), + [sym_number_literal] = ACTIONS(2924), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2928), + [anon_sym_u_DQUOTE] = ACTIONS(2928), + [anon_sym_U_DQUOTE] = ACTIONS(2928), + [anon_sym_u8_DQUOTE] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_R_DQUOTE] = ACTIONS(2944), + [anon_sym_LR_DQUOTE] = ACTIONS(2944), + [anon_sym_uR_DQUOTE] = ACTIONS(2944), + [anon_sym_UR_DQUOTE] = ACTIONS(2944), + [anon_sym_u8R_DQUOTE] = ACTIONS(2944), + [anon_sym_co_await] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2950), + [sym_this] = ACTIONS(2930), }, [1649] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__expression] = STATE(2973), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, [1650] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(2977), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, [1651] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(2988), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, [1652] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__expression] = STATE(2989), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, [1653] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym__expression] = STATE(2670), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1654] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(2990), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, [1655] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__expression] = STATE(2880), + [sym__expression_not_binary] = STATE(3267), + [sym_conditional_expression] = STATE(3267), + [sym_assignment_expression] = STATE(3267), + [sym_pointer_expression] = STATE(3267), + [sym_unary_expression] = STATE(3267), + [sym_binary_expression] = STATE(3267), + [sym_update_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_sizeof_expression] = STATE(3267), + [sym_alignof_expression] = STATE(3267), + [sym_offsetof_expression] = STATE(3267), + [sym_generic_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_call_expression] = STATE(3267), + [sym_gnu_asm_expression] = STATE(3267), + [sym_field_expression] = STATE(3267), + [sym_compound_literal_expression] = STATE(3267), + [sym_parenthesized_expression] = STATE(3267), + [sym_char_literal] = STATE(3106), + [sym_concatenated_string] = STATE(3106), + [sym_string_literal] = STATE(2111), + [sym_null] = STATE(3267), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7063), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(3267), + [sym_raw_string_literal] = STATE(2111), + [sym_co_await_expression] = STATE(3267), + [sym_new_expression] = STATE(3267), + [sym_delete_expression] = STATE(3267), + [sym_requires_clause] = STATE(3267), + [sym_requires_expression] = STATE(3267), + [sym_lambda_expression] = STATE(3267), + [sym_lambda_capture_specifier] = STATE(5397), + [sym_fold_expression] = STATE(3267), + [sym_parameter_pack_expansion] = STATE(3267), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5190), + [sym_qualified_identifier] = STATE(3267), + [sym_qualified_type_identifier] = STATE(7063), + [sym_user_defined_literal] = STATE(3267), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2060), + [anon_sym_compl] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_sizeof] = ACTIONS(2074), + [anon_sym___alignof__] = ACTIONS(2076), + [anon_sym___alignof] = ACTIONS(2076), + [anon_sym__alignof] = ACTIONS(2076), + [anon_sym_alignof] = ACTIONS(2076), + [anon_sym__Alignof] = ACTIONS(2076), + [anon_sym_offsetof] = ACTIONS(2078), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2082), + [anon_sym___asm__] = ACTIONS(2082), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2088), + [anon_sym_u_DQUOTE] = ACTIONS(2088), + [anon_sym_U_DQUOTE] = ACTIONS(2088), + [anon_sym_u8_DQUOTE] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [anon_sym_NULL] = ACTIONS(2092), + [anon_sym_nullptr] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_R_DQUOTE] = ACTIONS(2096), + [anon_sym_LR_DQUOTE] = ACTIONS(2096), + [anon_sym_uR_DQUOTE] = ACTIONS(2096), + [anon_sym_UR_DQUOTE] = ACTIONS(2096), + [anon_sym_u8R_DQUOTE] = ACTIONS(2096), + [anon_sym_co_await] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2102), + [sym_this] = ACTIONS(2090), }, [1656] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym__expression] = STATE(2657), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1657] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym__expression] = STATE(2539), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1658] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym__expression] = STATE(2661), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1659] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym__expression] = STATE(2662), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1660] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym__expression] = STATE(2667), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1661] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym__expression] = STATE(2668), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1662] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym__expression] = STATE(2669), + [sym__expression_not_binary] = STATE(2684), + [sym_conditional_expression] = STATE(2684), + [sym_assignment_expression] = STATE(2684), + [sym_pointer_expression] = STATE(2684), + [sym_unary_expression] = STATE(2684), + [sym_binary_expression] = STATE(2684), + [sym_update_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_alignof_expression] = STATE(2684), + [sym_offsetof_expression] = STATE(2684), + [sym_generic_expression] = STATE(2684), + [sym_subscript_expression] = STATE(2684), + [sym_call_expression] = STATE(2684), + [sym_gnu_asm_expression] = STATE(2684), + [sym_field_expression] = STATE(2684), + [sym_compound_literal_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_char_literal] = STATE(2675), + [sym_concatenated_string] = STATE(2675), + [sym_string_literal] = STATE(1917), + [sym_null] = STATE(2684), + [sym_decltype] = STATE(7683), + [sym__class_name] = STATE(7185), + [sym_template_type] = STATE(2542), + [sym_template_function] = STATE(2684), + [sym_raw_string_literal] = STATE(1917), + [sym_co_await_expression] = STATE(2684), + [sym_new_expression] = STATE(2684), + [sym_delete_expression] = STATE(2684), + [sym_requires_clause] = STATE(2684), + [sym_requires_expression] = STATE(2684), + [sym_lambda_expression] = STATE(2684), + [sym_lambda_capture_specifier] = STATE(5417), + [sym_fold_expression] = STATE(2684), + [sym_parameter_pack_expansion] = STATE(2684), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5137), + [sym_qualified_identifier] = STATE(2684), + [sym_qualified_type_identifier] = STATE(7185), + [sym_user_defined_literal] = STATE(2684), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2026), + [anon_sym___alignof] = ACTIONS(2026), + [anon_sym__alignof] = ACTIONS(2026), + [anon_sym_alignof] = ACTIONS(2026), + [anon_sym__Alignof] = ACTIONS(2026), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2030), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2042), + [anon_sym_nullptr] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_R_DQUOTE] = ACTIONS(2048), + [anon_sym_LR_DQUOTE] = ACTIONS(2048), + [anon_sym_uR_DQUOTE] = ACTIONS(2048), + [anon_sym_UR_DQUOTE] = ACTIONS(2048), + [anon_sym_u8R_DQUOTE] = ACTIONS(2048), + [anon_sym_co_await] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2052), + [anon_sym_requires] = ACTIONS(2054), + [sym_this] = ACTIONS(2040), }, [1663] = { - [sym_identifier] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym___extension__] = ACTIONS(2774), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym___inline] = ACTIONS(2774), - [anon_sym___inline__] = ACTIONS(2774), - [anon_sym___forceinline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym___thread] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym___restrict__] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym__Noreturn] = ACTIONS(2774), - [anon_sym_noreturn] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [anon_sym___alignof__] = ACTIONS(2774), - [anon_sym___alignof] = ACTIONS(2774), - [anon_sym__alignof] = ACTIONS(2774), - [anon_sym_alignof] = ACTIONS(2774), - [anon_sym__Alignof] = ACTIONS(2774), - [anon_sym_offsetof] = ACTIONS(2774), - [anon_sym__Generic] = ACTIONS(2774), - [anon_sym_asm] = ACTIONS(2774), - [anon_sym___asm__] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [anon_sym_NULL] = ACTIONS(2774), - [anon_sym_nullptr] = ACTIONS(2774), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4775), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6036), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5742), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_parameter_list] = STATE(988), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3982), + [sym_template_function] = STATE(5742), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5179), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_alignas] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_operator] = ACTIONS(2000), }, [1664] = { - [sym_identifier] = ACTIONS(2933), - [anon_sym_LPAREN2] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_SEMI] = ACTIONS(2935), - [anon_sym___extension__] = ACTIONS(2933), - [anon_sym_typedef] = ACTIONS(2933), - [anon_sym_extern] = ACTIONS(2933), - [anon_sym___attribute__] = ACTIONS(2933), - [anon_sym_COLON_COLON] = ACTIONS(2935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), - [anon_sym___declspec] = ACTIONS(2933), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_signed] = ACTIONS(2933), - [anon_sym_unsigned] = ACTIONS(2933), - [anon_sym_long] = ACTIONS(2933), - [anon_sym_short] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_static] = ACTIONS(2933), - [anon_sym_register] = ACTIONS(2933), - [anon_sym_inline] = ACTIONS(2933), - [anon_sym___inline] = ACTIONS(2933), - [anon_sym___inline__] = ACTIONS(2933), - [anon_sym___forceinline] = ACTIONS(2933), - [anon_sym_thread_local] = ACTIONS(2933), - [anon_sym___thread] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2933), - [anon_sym_constexpr] = ACTIONS(2933), - [anon_sym_volatile] = ACTIONS(2933), - [anon_sym_restrict] = ACTIONS(2933), - [anon_sym___restrict__] = ACTIONS(2933), - [anon_sym__Atomic] = ACTIONS(2933), - [anon_sym__Noreturn] = ACTIONS(2933), - [anon_sym_noreturn] = ACTIONS(2933), - [anon_sym_mutable] = ACTIONS(2933), - [anon_sym_constinit] = ACTIONS(2933), - [anon_sym_consteval] = ACTIONS(2933), - [sym_primitive_type] = ACTIONS(2933), - [anon_sym_enum] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2933), - [anon_sym_union] = ACTIONS(2933), - [anon_sym_if] = ACTIONS(2933), - [anon_sym_else] = ACTIONS(2933), - [anon_sym_switch] = ACTIONS(2933), - [anon_sym_while] = ACTIONS(2933), - [anon_sym_do] = ACTIONS(2933), - [anon_sym_for] = ACTIONS(2933), - [anon_sym_return] = ACTIONS(2933), - [anon_sym_break] = ACTIONS(2933), - [anon_sym_continue] = ACTIONS(2933), - [anon_sym_goto] = ACTIONS(2933), - [anon_sym_not] = ACTIONS(2933), - [anon_sym_compl] = ACTIONS(2933), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_sizeof] = ACTIONS(2933), - [anon_sym___alignof__] = ACTIONS(2933), - [anon_sym___alignof] = ACTIONS(2933), - [anon_sym__alignof] = ACTIONS(2933), - [anon_sym_alignof] = ACTIONS(2933), - [anon_sym__Alignof] = ACTIONS(2933), - [anon_sym_offsetof] = ACTIONS(2933), - [anon_sym__Generic] = ACTIONS(2933), - [anon_sym_asm] = ACTIONS(2933), - [anon_sym___asm__] = ACTIONS(2933), - [sym_number_literal] = ACTIONS(2935), - [anon_sym_L_SQUOTE] = ACTIONS(2935), - [anon_sym_u_SQUOTE] = ACTIONS(2935), - [anon_sym_U_SQUOTE] = ACTIONS(2935), - [anon_sym_u8_SQUOTE] = ACTIONS(2935), - [anon_sym_SQUOTE] = ACTIONS(2935), - [anon_sym_L_DQUOTE] = ACTIONS(2935), - [anon_sym_u_DQUOTE] = ACTIONS(2935), - [anon_sym_U_DQUOTE] = ACTIONS(2935), - [anon_sym_u8_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [sym_true] = ACTIONS(2933), - [sym_false] = ACTIONS(2933), - [anon_sym_NULL] = ACTIONS(2933), - [anon_sym_nullptr] = ACTIONS(2933), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2933), - [anon_sym_decltype] = ACTIONS(2933), - [anon_sym_virtual] = ACTIONS(2933), - [anon_sym_alignas] = ACTIONS(2933), - [anon_sym_typename] = ACTIONS(2933), - [anon_sym_template] = ACTIONS(2933), - [anon_sym_try] = ACTIONS(2933), - [anon_sym_delete] = ACTIONS(2933), - [anon_sym_throw] = ACTIONS(2933), - [anon_sym_co_return] = ACTIONS(2933), - [anon_sym_co_yield] = ACTIONS(2933), - [anon_sym_R_DQUOTE] = ACTIONS(2935), - [anon_sym_LR_DQUOTE] = ACTIONS(2935), - [anon_sym_uR_DQUOTE] = ACTIONS(2935), - [anon_sym_UR_DQUOTE] = ACTIONS(2935), - [anon_sym_u8R_DQUOTE] = ACTIONS(2935), - [anon_sym_co_await] = ACTIONS(2933), - [anon_sym_new] = ACTIONS(2933), - [anon_sym_requires] = ACTIONS(2933), - [sym_this] = ACTIONS(2933), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4727), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6014), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5742), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_parameter_list] = STATE(992), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3982), + [sym_template_function] = STATE(5742), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5179), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_operator] = ACTIONS(2000), }, [1665] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4776), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6045), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5742), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_parameter_list] = STATE(993), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3982), + [sym_template_function] = STATE(5742), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5179), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_operator] = ACTIONS(2000), }, [1666] = { - [sym_identifier] = ACTIONS(2929), - [anon_sym_LPAREN2] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2929), - [anon_sym_PLUS] = ACTIONS(2929), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_SEMI] = ACTIONS(2931), - [anon_sym___extension__] = ACTIONS(2929), - [anon_sym_typedef] = ACTIONS(2929), - [anon_sym_extern] = ACTIONS(2929), - [anon_sym___attribute__] = ACTIONS(2929), - [anon_sym_COLON_COLON] = ACTIONS(2931), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2931), - [anon_sym___declspec] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_signed] = ACTIONS(2929), - [anon_sym_unsigned] = ACTIONS(2929), - [anon_sym_long] = ACTIONS(2929), - [anon_sym_short] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_static] = ACTIONS(2929), - [anon_sym_register] = ACTIONS(2929), - [anon_sym_inline] = ACTIONS(2929), - [anon_sym___inline] = ACTIONS(2929), - [anon_sym___inline__] = ACTIONS(2929), - [anon_sym___forceinline] = ACTIONS(2929), - [anon_sym_thread_local] = ACTIONS(2929), - [anon_sym___thread] = ACTIONS(2929), - [anon_sym_const] = ACTIONS(2929), - [anon_sym_constexpr] = ACTIONS(2929), - [anon_sym_volatile] = ACTIONS(2929), - [anon_sym_restrict] = ACTIONS(2929), - [anon_sym___restrict__] = ACTIONS(2929), - [anon_sym__Atomic] = ACTIONS(2929), - [anon_sym__Noreturn] = ACTIONS(2929), - [anon_sym_noreturn] = ACTIONS(2929), - [anon_sym_mutable] = ACTIONS(2929), - [anon_sym_constinit] = ACTIONS(2929), - [anon_sym_consteval] = ACTIONS(2929), - [sym_primitive_type] = ACTIONS(2929), - [anon_sym_enum] = ACTIONS(2929), - [anon_sym_class] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2929), - [anon_sym_union] = ACTIONS(2929), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_else] = ACTIONS(2929), - [anon_sym_switch] = ACTIONS(2929), - [anon_sym_while] = ACTIONS(2929), - [anon_sym_do] = ACTIONS(2929), - [anon_sym_for] = ACTIONS(2929), - [anon_sym_return] = ACTIONS(2929), - [anon_sym_break] = ACTIONS(2929), - [anon_sym_continue] = ACTIONS(2929), - [anon_sym_goto] = ACTIONS(2929), - [anon_sym_not] = ACTIONS(2929), - [anon_sym_compl] = ACTIONS(2929), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_sizeof] = ACTIONS(2929), - [anon_sym___alignof__] = ACTIONS(2929), - [anon_sym___alignof] = ACTIONS(2929), - [anon_sym__alignof] = ACTIONS(2929), - [anon_sym_alignof] = ACTIONS(2929), - [anon_sym__Alignof] = ACTIONS(2929), - [anon_sym_offsetof] = ACTIONS(2929), - [anon_sym__Generic] = ACTIONS(2929), - [anon_sym_asm] = ACTIONS(2929), - [anon_sym___asm__] = ACTIONS(2929), - [sym_number_literal] = ACTIONS(2931), - [anon_sym_L_SQUOTE] = ACTIONS(2931), - [anon_sym_u_SQUOTE] = ACTIONS(2931), - [anon_sym_U_SQUOTE] = ACTIONS(2931), - [anon_sym_u8_SQUOTE] = ACTIONS(2931), - [anon_sym_SQUOTE] = ACTIONS(2931), - [anon_sym_L_DQUOTE] = ACTIONS(2931), - [anon_sym_u_DQUOTE] = ACTIONS(2931), - [anon_sym_U_DQUOTE] = ACTIONS(2931), - [anon_sym_u8_DQUOTE] = ACTIONS(2931), - [anon_sym_DQUOTE] = ACTIONS(2931), - [sym_true] = ACTIONS(2929), - [sym_false] = ACTIONS(2929), - [anon_sym_NULL] = ACTIONS(2929), - [anon_sym_nullptr] = ACTIONS(2929), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2929), - [anon_sym_decltype] = ACTIONS(2929), - [anon_sym_virtual] = ACTIONS(2929), - [anon_sym_alignas] = ACTIONS(2929), - [anon_sym_typename] = ACTIONS(2929), - [anon_sym_template] = ACTIONS(2929), - [anon_sym_try] = ACTIONS(2929), - [anon_sym_delete] = ACTIONS(2929), - [anon_sym_throw] = ACTIONS(2929), - [anon_sym_co_return] = ACTIONS(2929), - [anon_sym_co_yield] = ACTIONS(2929), - [anon_sym_R_DQUOTE] = ACTIONS(2931), - [anon_sym_LR_DQUOTE] = ACTIONS(2931), - [anon_sym_uR_DQUOTE] = ACTIONS(2931), - [anon_sym_UR_DQUOTE] = ACTIONS(2931), - [anon_sym_u8R_DQUOTE] = ACTIONS(2931), - [anon_sym_co_await] = ACTIONS(2929), - [anon_sym_new] = ACTIONS(2929), - [anon_sym_requires] = ACTIONS(2929), - [sym_this] = ACTIONS(2929), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4778), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6007), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5742), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_parameter_list] = STATE(995), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3982), + [sym_template_function] = STATE(5742), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5179), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_operator] = ACTIONS(2000), }, [1667] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4748), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6044), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5742), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_parameter_list] = STATE(987), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(3982), + [sym_template_function] = STATE(5742), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5179), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_type_identifier] = STATE(3729), + [sym_operator_name] = STATE(5742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1378), + [anon_sym_operator] = ACTIONS(2000), }, [1668] = { - [sym_identifier] = ACTIONS(2921), - [anon_sym_LPAREN2] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2923), - [anon_sym___extension__] = ACTIONS(2921), - [anon_sym_typedef] = ACTIONS(2921), - [anon_sym_extern] = ACTIONS(2921), - [anon_sym___attribute__] = ACTIONS(2921), - [anon_sym_COLON_COLON] = ACTIONS(2923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2923), - [anon_sym___declspec] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_signed] = ACTIONS(2921), - [anon_sym_unsigned] = ACTIONS(2921), - [anon_sym_long] = ACTIONS(2921), - [anon_sym_short] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(2921), - [anon_sym_register] = ACTIONS(2921), - [anon_sym_inline] = ACTIONS(2921), - [anon_sym___inline] = ACTIONS(2921), - [anon_sym___inline__] = ACTIONS(2921), - [anon_sym___forceinline] = ACTIONS(2921), - [anon_sym_thread_local] = ACTIONS(2921), - [anon_sym___thread] = ACTIONS(2921), - [anon_sym_const] = ACTIONS(2921), - [anon_sym_constexpr] = ACTIONS(2921), - [anon_sym_volatile] = ACTIONS(2921), - [anon_sym_restrict] = ACTIONS(2921), - [anon_sym___restrict__] = ACTIONS(2921), - [anon_sym__Atomic] = ACTIONS(2921), - [anon_sym__Noreturn] = ACTIONS(2921), - [anon_sym_noreturn] = ACTIONS(2921), - [anon_sym_mutable] = ACTIONS(2921), - [anon_sym_constinit] = ACTIONS(2921), - [anon_sym_consteval] = ACTIONS(2921), - [sym_primitive_type] = ACTIONS(2921), - [anon_sym_enum] = ACTIONS(2921), - [anon_sym_class] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_union] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_else] = ACTIONS(2921), - [anon_sym_switch] = ACTIONS(2921), - [anon_sym_while] = ACTIONS(2921), - [anon_sym_do] = ACTIONS(2921), - [anon_sym_for] = ACTIONS(2921), - [anon_sym_return] = ACTIONS(2921), - [anon_sym_break] = ACTIONS(2921), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2921), - [anon_sym_not] = ACTIONS(2921), - [anon_sym_compl] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2923), - [anon_sym_sizeof] = ACTIONS(2921), - [anon_sym___alignof__] = ACTIONS(2921), - [anon_sym___alignof] = ACTIONS(2921), - [anon_sym__alignof] = ACTIONS(2921), - [anon_sym_alignof] = ACTIONS(2921), - [anon_sym__Alignof] = ACTIONS(2921), - [anon_sym_offsetof] = ACTIONS(2921), - [anon_sym__Generic] = ACTIONS(2921), - [anon_sym_asm] = ACTIONS(2921), - [anon_sym___asm__] = ACTIONS(2921), - [sym_number_literal] = ACTIONS(2923), - [anon_sym_L_SQUOTE] = ACTIONS(2923), - [anon_sym_u_SQUOTE] = ACTIONS(2923), - [anon_sym_U_SQUOTE] = ACTIONS(2923), - [anon_sym_u8_SQUOTE] = ACTIONS(2923), - [anon_sym_SQUOTE] = ACTIONS(2923), - [anon_sym_L_DQUOTE] = ACTIONS(2923), - [anon_sym_u_DQUOTE] = ACTIONS(2923), - [anon_sym_U_DQUOTE] = ACTIONS(2923), - [anon_sym_u8_DQUOTE] = ACTIONS(2923), - [anon_sym_DQUOTE] = ACTIONS(2923), - [sym_true] = ACTIONS(2921), - [sym_false] = ACTIONS(2921), - [anon_sym_NULL] = ACTIONS(2921), - [anon_sym_nullptr] = ACTIONS(2921), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2921), - [anon_sym_decltype] = ACTIONS(2921), - [anon_sym_virtual] = ACTIONS(2921), - [anon_sym_alignas] = ACTIONS(2921), - [anon_sym_typename] = ACTIONS(2921), - [anon_sym_template] = ACTIONS(2921), - [anon_sym_try] = ACTIONS(2921), - [anon_sym_delete] = ACTIONS(2921), - [anon_sym_throw] = ACTIONS(2921), - [anon_sym_co_return] = ACTIONS(2921), - [anon_sym_co_yield] = ACTIONS(2921), - [anon_sym_R_DQUOTE] = ACTIONS(2923), - [anon_sym_LR_DQUOTE] = ACTIONS(2923), - [anon_sym_uR_DQUOTE] = ACTIONS(2923), - [anon_sym_UR_DQUOTE] = ACTIONS(2923), - [anon_sym_u8R_DQUOTE] = ACTIONS(2923), - [anon_sym_co_await] = ACTIONS(2921), - [anon_sym_new] = ACTIONS(2921), - [anon_sym_requires] = ACTIONS(2921), - [sym_this] = ACTIONS(2921), + [sym_identifier] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3170), + [anon_sym_AMP] = ACTIONS(3170), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3170), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym___alignof__] = ACTIONS(3168), + [anon_sym___alignof] = ACTIONS(3168), + [anon_sym__alignof] = ACTIONS(3168), + [anon_sym_alignof] = ACTIONS(3168), + [anon_sym__Alignof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3170), + [anon_sym_L_SQUOTE] = ACTIONS(3170), + [anon_sym_u_SQUOTE] = ACTIONS(3170), + [anon_sym_U_SQUOTE] = ACTIONS(3170), + [anon_sym_u8_SQUOTE] = ACTIONS(3170), + [anon_sym_SQUOTE] = ACTIONS(3170), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3170), + [anon_sym_LR_DQUOTE] = ACTIONS(3170), + [anon_sym_uR_DQUOTE] = ACTIONS(3170), + [anon_sym_UR_DQUOTE] = ACTIONS(3170), + [anon_sym_u8R_DQUOTE] = ACTIONS(3170), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [sym_this] = ACTIONS(3168), }, [1669] = { - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym___extension__] = ACTIONS(2778), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym___inline] = ACTIONS(2778), - [anon_sym___inline__] = ACTIONS(2778), - [anon_sym___forceinline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym___thread] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym___restrict__] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym__Noreturn] = ACTIONS(2778), - [anon_sym_noreturn] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [anon_sym___alignof__] = ACTIONS(2778), - [anon_sym___alignof] = ACTIONS(2778), - [anon_sym__alignof] = ACTIONS(2778), - [anon_sym_alignof] = ACTIONS(2778), - [anon_sym__Alignof] = ACTIONS(2778), - [anon_sym_offsetof] = ACTIONS(2778), - [anon_sym__Generic] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym___asm__] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [anon_sym_NULL] = ACTIONS(2778), - [anon_sym_nullptr] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_alignas] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), + [sym_identifier] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(3190), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3190), + [anon_sym___extension__] = ACTIONS(3188), + [anon_sym_extern] = ACTIONS(3188), + [anon_sym___attribute__] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3190), + [anon_sym___declspec] = ACTIONS(3188), + [anon_sym_signed] = ACTIONS(3188), + [anon_sym_unsigned] = ACTIONS(3188), + [anon_sym_long] = ACTIONS(3188), + [anon_sym_short] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_register] = ACTIONS(3188), + [anon_sym_inline] = ACTIONS(3188), + [anon_sym___inline] = ACTIONS(3188), + [anon_sym___inline__] = ACTIONS(3188), + [anon_sym___forceinline] = ACTIONS(3188), + [anon_sym_thread_local] = ACTIONS(3188), + [anon_sym___thread] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_constexpr] = ACTIONS(3188), + [anon_sym_volatile] = ACTIONS(3188), + [anon_sym_restrict] = ACTIONS(3188), + [anon_sym___restrict__] = ACTIONS(3188), + [anon_sym__Atomic] = ACTIONS(3188), + [anon_sym__Noreturn] = ACTIONS(3188), + [anon_sym_noreturn] = ACTIONS(3188), + [anon_sym_mutable] = ACTIONS(3188), + [anon_sym_constinit] = ACTIONS(3188), + [anon_sym_consteval] = ACTIONS(3188), + [sym_primitive_type] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_struct] = ACTIONS(3188), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_not] = ACTIONS(3188), + [anon_sym_compl] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3190), + [anon_sym_PLUS_PLUS] = ACTIONS(3190), + [anon_sym_sizeof] = ACTIONS(3188), + [anon_sym___alignof__] = ACTIONS(3188), + [anon_sym___alignof] = ACTIONS(3188), + [anon_sym__alignof] = ACTIONS(3188), + [anon_sym_alignof] = ACTIONS(3188), + [anon_sym__Alignof] = ACTIONS(3188), + [anon_sym_offsetof] = ACTIONS(3188), + [anon_sym__Generic] = ACTIONS(3188), + [anon_sym_asm] = ACTIONS(3188), + [anon_sym___asm__] = ACTIONS(3188), + [sym_number_literal] = ACTIONS(3190), + [anon_sym_L_SQUOTE] = ACTIONS(3190), + [anon_sym_u_SQUOTE] = ACTIONS(3190), + [anon_sym_U_SQUOTE] = ACTIONS(3190), + [anon_sym_u8_SQUOTE] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3190), + [anon_sym_L_DQUOTE] = ACTIONS(3190), + [anon_sym_u_DQUOTE] = ACTIONS(3190), + [anon_sym_U_DQUOTE] = ACTIONS(3190), + [anon_sym_u8_DQUOTE] = ACTIONS(3190), + [anon_sym_DQUOTE] = ACTIONS(3190), + [sym_true] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [anon_sym_NULL] = ACTIONS(3188), + [anon_sym_nullptr] = ACTIONS(3188), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3188), + [anon_sym_decltype] = ACTIONS(3188), + [anon_sym_virtual] = ACTIONS(3188), + [anon_sym_alignas] = ACTIONS(3188), + [anon_sym_typename] = ACTIONS(3188), + [anon_sym_template] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_R_DQUOTE] = ACTIONS(3190), + [anon_sym_LR_DQUOTE] = ACTIONS(3190), + [anon_sym_uR_DQUOTE] = ACTIONS(3190), + [anon_sym_UR_DQUOTE] = ACTIONS(3190), + [anon_sym_u8R_DQUOTE] = ACTIONS(3190), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_requires] = ACTIONS(3188), + [sym_this] = ACTIONS(3188), }, [1670] = { - [sym_expression_statement] = STATE(3330), - [sym__expression] = STATE(5034), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9607), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_type_requirement] = STATE(1671), - [sym_compound_requirement] = STATE(1671), - [sym__requirement] = STATE(1671), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_requirement_seq_repeat1] = STATE(1671), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_typename] = ACTIONS(4103), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(2796), + [anon_sym_LPAREN2] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2796), + [anon_sym_PLUS] = ACTIONS(2796), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym___extension__] = ACTIONS(2796), + [anon_sym_extern] = ACTIONS(2796), + [anon_sym___attribute__] = ACTIONS(2796), + [anon_sym_COLON_COLON] = ACTIONS(2798), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2798), + [anon_sym___declspec] = ACTIONS(2796), + [anon_sym_signed] = ACTIONS(2796), + [anon_sym_unsigned] = ACTIONS(2796), + [anon_sym_long] = ACTIONS(2796), + [anon_sym_short] = ACTIONS(2796), + [anon_sym_LBRACK] = ACTIONS(2796), + [anon_sym_static] = ACTIONS(2796), + [anon_sym_register] = ACTIONS(2796), + [anon_sym_inline] = ACTIONS(2796), + [anon_sym___inline] = ACTIONS(2796), + [anon_sym___inline__] = ACTIONS(2796), + [anon_sym___forceinline] = ACTIONS(2796), + [anon_sym_thread_local] = ACTIONS(2796), + [anon_sym___thread] = ACTIONS(2796), + [anon_sym_const] = ACTIONS(2796), + [anon_sym_constexpr] = ACTIONS(2796), + [anon_sym_volatile] = ACTIONS(2796), + [anon_sym_restrict] = ACTIONS(2796), + [anon_sym___restrict__] = ACTIONS(2796), + [anon_sym__Atomic] = ACTIONS(2796), + [anon_sym__Noreturn] = ACTIONS(2796), + [anon_sym_noreturn] = ACTIONS(2796), + [anon_sym_mutable] = ACTIONS(2796), + [anon_sym_constinit] = ACTIONS(2796), + [anon_sym_consteval] = ACTIONS(2796), + [sym_primitive_type] = ACTIONS(2796), + [anon_sym_enum] = ACTIONS(2796), + [anon_sym_class] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2796), + [anon_sym_union] = ACTIONS(2796), + [anon_sym_not] = ACTIONS(2796), + [anon_sym_compl] = ACTIONS(2796), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_sizeof] = ACTIONS(2796), + [anon_sym___alignof__] = ACTIONS(2796), + [anon_sym___alignof] = ACTIONS(2796), + [anon_sym__alignof] = ACTIONS(2796), + [anon_sym_alignof] = ACTIONS(2796), + [anon_sym__Alignof] = ACTIONS(2796), + [anon_sym_offsetof] = ACTIONS(2796), + [anon_sym__Generic] = ACTIONS(2796), + [anon_sym_asm] = ACTIONS(2796), + [anon_sym___asm__] = ACTIONS(2796), + [sym_number_literal] = ACTIONS(2798), + [anon_sym_L_SQUOTE] = ACTIONS(2798), + [anon_sym_u_SQUOTE] = ACTIONS(2798), + [anon_sym_U_SQUOTE] = ACTIONS(2798), + [anon_sym_u8_SQUOTE] = ACTIONS(2798), + [anon_sym_SQUOTE] = ACTIONS(2798), + [anon_sym_L_DQUOTE] = ACTIONS(2798), + [anon_sym_u_DQUOTE] = ACTIONS(2798), + [anon_sym_U_DQUOTE] = ACTIONS(2798), + [anon_sym_u8_DQUOTE] = ACTIONS(2798), + [anon_sym_DQUOTE] = ACTIONS(2798), + [sym_true] = ACTIONS(2796), + [sym_false] = ACTIONS(2796), + [anon_sym_NULL] = ACTIONS(2796), + [anon_sym_nullptr] = ACTIONS(2796), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2796), + [anon_sym_decltype] = ACTIONS(2796), + [anon_sym_virtual] = ACTIONS(2796), + [anon_sym_alignas] = ACTIONS(2796), + [anon_sym_typename] = ACTIONS(2796), + [anon_sym_template] = ACTIONS(2796), + [anon_sym_delete] = ACTIONS(2796), + [anon_sym_R_DQUOTE] = ACTIONS(2798), + [anon_sym_LR_DQUOTE] = ACTIONS(2798), + [anon_sym_uR_DQUOTE] = ACTIONS(2798), + [anon_sym_UR_DQUOTE] = ACTIONS(2798), + [anon_sym_u8R_DQUOTE] = ACTIONS(2798), + [anon_sym_co_await] = ACTIONS(2796), + [anon_sym_new] = ACTIONS(2796), + [anon_sym_requires] = ACTIONS(2796), + [sym_this] = ACTIONS(2796), }, [1671] = { - [sym_expression_statement] = STATE(3330), - [sym__expression] = STATE(5034), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9607), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_type_requirement] = STATE(1671), - [sym_compound_requirement] = STATE(1671), - [sym__requirement] = STATE(1671), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_requirement_seq_repeat1] = STATE(1671), - [sym_identifier] = ACTIONS(4105), - [anon_sym_LPAREN2] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(4111), - [anon_sym_TILDE] = ACTIONS(4111), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(4117), - [anon_sym_AMP] = ACTIONS(4117), - [anon_sym_SEMI] = ACTIONS(4120), - [anon_sym_COLON_COLON] = ACTIONS(4123), - [anon_sym_LBRACE] = ACTIONS(4126), - [anon_sym_RBRACE] = ACTIONS(4129), - [anon_sym_LBRACK] = ACTIONS(4131), - [sym_primitive_type] = ACTIONS(4134), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(4137), - [anon_sym_PLUS_PLUS] = ACTIONS(4137), - [anon_sym_sizeof] = ACTIONS(4140), - [anon_sym___alignof__] = ACTIONS(4143), - [anon_sym___alignof] = ACTIONS(4143), - [anon_sym__alignof] = ACTIONS(4143), - [anon_sym_alignof] = ACTIONS(4143), - [anon_sym__Alignof] = ACTIONS(4143), - [anon_sym_offsetof] = ACTIONS(4146), - [anon_sym__Generic] = ACTIONS(4149), - [anon_sym_asm] = ACTIONS(4152), - [anon_sym___asm__] = ACTIONS(4152), - [sym_number_literal] = ACTIONS(4155), - [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(4161), - [anon_sym_u_DQUOTE] = ACTIONS(4161), - [anon_sym_U_DQUOTE] = ACTIONS(4161), - [anon_sym_u8_DQUOTE] = ACTIONS(4161), - [anon_sym_DQUOTE] = ACTIONS(4161), - [sym_true] = ACTIONS(4164), - [sym_false] = ACTIONS(4164), - [anon_sym_NULL] = ACTIONS(4167), - [anon_sym_nullptr] = ACTIONS(4167), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(4170), - [anon_sym_typename] = ACTIONS(4173), - [anon_sym_template] = ACTIONS(4176), - [anon_sym_delete] = ACTIONS(4179), - [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(4185), - [anon_sym_new] = ACTIONS(4188), - [anon_sym_requires] = ACTIONS(4191), - [sym_this] = ACTIONS(4164), + [sym_identifier] = ACTIONS(4539), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4541), + [anon_sym_COMMA] = ACTIONS(4541), + [anon_sym_RPAREN] = ACTIONS(4541), + [anon_sym_LPAREN2] = ACTIONS(4541), + [anon_sym_TILDE] = ACTIONS(4541), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_STAR] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4539), + [anon_sym_PERCENT] = ACTIONS(4539), + [anon_sym_PIPE_PIPE] = ACTIONS(4541), + [anon_sym_AMP_AMP] = ACTIONS(4541), + [anon_sym_PIPE] = ACTIONS(4539), + [anon_sym_CARET] = ACTIONS(4539), + [anon_sym_AMP] = ACTIONS(4539), + [anon_sym_EQ_EQ] = ACTIONS(4541), + [anon_sym_BANG_EQ] = ACTIONS(4541), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_GT_EQ] = ACTIONS(4541), + [anon_sym_LT_EQ] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(4539), + [anon_sym_LT_LT] = ACTIONS(4539), + [anon_sym_GT_GT] = ACTIONS(4539), + [anon_sym_SEMI] = ACTIONS(4541), + [anon_sym___extension__] = ACTIONS(4539), + [anon_sym_extern] = ACTIONS(4539), + [anon_sym___attribute__] = ACTIONS(4539), + [anon_sym_COLON_COLON] = ACTIONS(4541), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4541), + [anon_sym___declspec] = ACTIONS(4539), + [anon_sym___based] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_RBRACE] = ACTIONS(4541), + [anon_sym_LBRACK] = ACTIONS(4539), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_static] = ACTIONS(4539), + [anon_sym_register] = ACTIONS(4539), + [anon_sym_inline] = ACTIONS(4539), + [anon_sym___inline] = ACTIONS(4539), + [anon_sym___inline__] = ACTIONS(4539), + [anon_sym___forceinline] = ACTIONS(4539), + [anon_sym_thread_local] = ACTIONS(4539), + [anon_sym___thread] = ACTIONS(4539), + [anon_sym_const] = ACTIONS(4539), + [anon_sym_constexpr] = ACTIONS(4539), + [anon_sym_volatile] = ACTIONS(4539), + [anon_sym_restrict] = ACTIONS(4539), + [anon_sym___restrict__] = ACTIONS(4539), + [anon_sym__Atomic] = ACTIONS(4539), + [anon_sym__Noreturn] = ACTIONS(4539), + [anon_sym_noreturn] = ACTIONS(4539), + [anon_sym_mutable] = ACTIONS(4539), + [anon_sym_constinit] = ACTIONS(4539), + [anon_sym_consteval] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4541), + [anon_sym_SLASH_EQ] = ACTIONS(4541), + [anon_sym_PERCENT_EQ] = ACTIONS(4541), + [anon_sym_PLUS_EQ] = ACTIONS(4541), + [anon_sym_DASH_EQ] = ACTIONS(4541), + [anon_sym_LT_LT_EQ] = ACTIONS(4541), + [anon_sym_GT_GT_EQ] = ACTIONS(4541), + [anon_sym_AMP_EQ] = ACTIONS(4541), + [anon_sym_CARET_EQ] = ACTIONS(4541), + [anon_sym_PIPE_EQ] = ACTIONS(4541), + [anon_sym_and_eq] = ACTIONS(4539), + [anon_sym_or_eq] = ACTIONS(4539), + [anon_sym_xor_eq] = ACTIONS(4539), + [anon_sym_LT_EQ_GT] = ACTIONS(4541), + [anon_sym_or] = ACTIONS(4539), + [anon_sym_and] = ACTIONS(4539), + [anon_sym_bitor] = ACTIONS(4539), + [anon_sym_xor] = ACTIONS(4539), + [anon_sym_bitand] = ACTIONS(4539), + [anon_sym_not_eq] = ACTIONS(4539), + [anon_sym_DASH_DASH] = ACTIONS(4541), + [anon_sym_PLUS_PLUS] = ACTIONS(4541), + [anon_sym_DOT] = ACTIONS(4539), + [anon_sym_DOT_STAR] = ACTIONS(4541), + [anon_sym_DASH_GT] = ACTIONS(4541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4539), + [anon_sym_decltype] = ACTIONS(4539), + [anon_sym_virtual] = ACTIONS(4539), + [anon_sym_alignas] = ACTIONS(4539), + [anon_sym_template] = ACTIONS(4539), + [anon_sym_operator] = ACTIONS(4539), }, [1672] = { - [sym_expression_statement] = STATE(3330), - [sym__expression] = STATE(5034), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9607), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_type_requirement] = STATE(1671), - [sym_compound_requirement] = STATE(1671), - [sym__requirement] = STATE(1671), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_requirement_seq_repeat1] = STATE(1671), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_RBRACE] = ACTIONS(4194), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_typename] = ACTIONS(4103), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4545), + [anon_sym_COMMA] = ACTIONS(4545), + [anon_sym_RPAREN] = ACTIONS(4545), + [anon_sym_LPAREN2] = ACTIONS(4545), + [anon_sym_TILDE] = ACTIONS(4545), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4543), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE] = ACTIONS(4543), + [anon_sym_CARET] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4543), + [anon_sym_EQ_EQ] = ACTIONS(4545), + [anon_sym_BANG_EQ] = ACTIONS(4545), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_GT_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ] = ACTIONS(4543), + [anon_sym_LT] = ACTIONS(4543), + [anon_sym_LT_LT] = ACTIONS(4543), + [anon_sym_GT_GT] = ACTIONS(4543), + [anon_sym_SEMI] = ACTIONS(4545), + [anon_sym___extension__] = ACTIONS(4543), + [anon_sym_extern] = ACTIONS(4543), + [anon_sym___attribute__] = ACTIONS(4543), + [anon_sym_COLON_COLON] = ACTIONS(4545), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4545), + [anon_sym___declspec] = ACTIONS(4543), + [anon_sym___based] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_LBRACK] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_static] = ACTIONS(4543), + [anon_sym_register] = ACTIONS(4543), + [anon_sym_inline] = ACTIONS(4543), + [anon_sym___inline] = ACTIONS(4543), + [anon_sym___inline__] = ACTIONS(4543), + [anon_sym___forceinline] = ACTIONS(4543), + [anon_sym_thread_local] = ACTIONS(4543), + [anon_sym___thread] = ACTIONS(4543), + [anon_sym_const] = ACTIONS(4543), + [anon_sym_constexpr] = ACTIONS(4543), + [anon_sym_volatile] = ACTIONS(4543), + [anon_sym_restrict] = ACTIONS(4543), + [anon_sym___restrict__] = ACTIONS(4543), + [anon_sym__Atomic] = ACTIONS(4543), + [anon_sym__Noreturn] = ACTIONS(4543), + [anon_sym_noreturn] = ACTIONS(4543), + [anon_sym_mutable] = ACTIONS(4543), + [anon_sym_constinit] = ACTIONS(4543), + [anon_sym_consteval] = ACTIONS(4543), + [anon_sym_QMARK] = ACTIONS(4545), + [anon_sym_STAR_EQ] = ACTIONS(4545), + [anon_sym_SLASH_EQ] = ACTIONS(4545), + [anon_sym_PERCENT_EQ] = ACTIONS(4545), + [anon_sym_PLUS_EQ] = ACTIONS(4545), + [anon_sym_DASH_EQ] = ACTIONS(4545), + [anon_sym_LT_LT_EQ] = ACTIONS(4545), + [anon_sym_GT_GT_EQ] = ACTIONS(4545), + [anon_sym_AMP_EQ] = ACTIONS(4545), + [anon_sym_CARET_EQ] = ACTIONS(4545), + [anon_sym_PIPE_EQ] = ACTIONS(4545), + [anon_sym_and_eq] = ACTIONS(4543), + [anon_sym_or_eq] = ACTIONS(4543), + [anon_sym_xor_eq] = ACTIONS(4543), + [anon_sym_LT_EQ_GT] = ACTIONS(4545), + [anon_sym_or] = ACTIONS(4543), + [anon_sym_and] = ACTIONS(4543), + [anon_sym_bitor] = ACTIONS(4543), + [anon_sym_xor] = ACTIONS(4543), + [anon_sym_bitand] = ACTIONS(4543), + [anon_sym_not_eq] = ACTIONS(4543), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_PLUS_PLUS] = ACTIONS(4545), + [anon_sym_DOT] = ACTIONS(4543), + [anon_sym_DOT_STAR] = ACTIONS(4545), + [anon_sym_DASH_GT] = ACTIONS(4545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4543), + [anon_sym_decltype] = ACTIONS(4543), + [anon_sym_virtual] = ACTIONS(4543), + [anon_sym_alignas] = ACTIONS(4543), + [anon_sym_template] = ACTIONS(4543), + [anon_sym_operator] = ACTIONS(4543), }, [1673] = { - [sym_expression_statement] = STATE(3330), - [sym__expression] = STATE(5034), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9607), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_type_requirement] = STATE(1671), - [sym_compound_requirement] = STATE(1671), - [sym__requirement] = STATE(1671), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_requirement_seq_repeat1] = STATE(1671), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_typename] = ACTIONS(4103), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4549), + [anon_sym_COMMA] = ACTIONS(4549), + [anon_sym_RPAREN] = ACTIONS(4549), + [anon_sym_LPAREN2] = ACTIONS(4549), + [anon_sym_TILDE] = ACTIONS(4549), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_STAR] = ACTIONS(4547), + [anon_sym_SLASH] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4547), + [anon_sym_PIPE_PIPE] = ACTIONS(4549), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4547), + [anon_sym_CARET] = ACTIONS(4547), + [anon_sym_AMP] = ACTIONS(4547), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_GT] = ACTIONS(4547), + [anon_sym_GT_EQ] = ACTIONS(4549), + [anon_sym_LT_EQ] = ACTIONS(4547), + [anon_sym_LT] = ACTIONS(4547), + [anon_sym_LT_LT] = ACTIONS(4547), + [anon_sym_GT_GT] = ACTIONS(4547), + [anon_sym_SEMI] = ACTIONS(4549), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_extern] = ACTIONS(4547), + [anon_sym___attribute__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4549), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4549), + [anon_sym___declspec] = ACTIONS(4547), + [anon_sym___based] = ACTIONS(4547), + [anon_sym_LBRACE] = ACTIONS(4549), + [anon_sym_RBRACE] = ACTIONS(4549), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_static] = ACTIONS(4547), + [anon_sym_register] = ACTIONS(4547), + [anon_sym_inline] = ACTIONS(4547), + [anon_sym___inline] = ACTIONS(4547), + [anon_sym___inline__] = ACTIONS(4547), + [anon_sym___forceinline] = ACTIONS(4547), + [anon_sym_thread_local] = ACTIONS(4547), + [anon_sym___thread] = ACTIONS(4547), + [anon_sym_const] = ACTIONS(4547), + [anon_sym_constexpr] = ACTIONS(4547), + [anon_sym_volatile] = ACTIONS(4547), + [anon_sym_restrict] = ACTIONS(4547), + [anon_sym___restrict__] = ACTIONS(4547), + [anon_sym__Atomic] = ACTIONS(4547), + [anon_sym__Noreturn] = ACTIONS(4547), + [anon_sym_noreturn] = ACTIONS(4547), + [anon_sym_mutable] = ACTIONS(4547), + [anon_sym_constinit] = ACTIONS(4547), + [anon_sym_consteval] = ACTIONS(4547), + [anon_sym_QMARK] = ACTIONS(4549), + [anon_sym_STAR_EQ] = ACTIONS(4549), + [anon_sym_SLASH_EQ] = ACTIONS(4549), + [anon_sym_PERCENT_EQ] = ACTIONS(4549), + [anon_sym_PLUS_EQ] = ACTIONS(4549), + [anon_sym_DASH_EQ] = ACTIONS(4549), + [anon_sym_LT_LT_EQ] = ACTIONS(4549), + [anon_sym_GT_GT_EQ] = ACTIONS(4549), + [anon_sym_AMP_EQ] = ACTIONS(4549), + [anon_sym_CARET_EQ] = ACTIONS(4549), + [anon_sym_PIPE_EQ] = ACTIONS(4549), + [anon_sym_and_eq] = ACTIONS(4547), + [anon_sym_or_eq] = ACTIONS(4547), + [anon_sym_xor_eq] = ACTIONS(4547), + [anon_sym_LT_EQ_GT] = ACTIONS(4549), + [anon_sym_or] = ACTIONS(4547), + [anon_sym_and] = ACTIONS(4547), + [anon_sym_bitor] = ACTIONS(4547), + [anon_sym_xor] = ACTIONS(4547), + [anon_sym_bitand] = ACTIONS(4547), + [anon_sym_not_eq] = ACTIONS(4547), + [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4549), + [anon_sym_DOT] = ACTIONS(4547), + [anon_sym_DOT_STAR] = ACTIONS(4549), + [anon_sym_DASH_GT] = ACTIONS(4549), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4547), + [anon_sym_decltype] = ACTIONS(4547), + [anon_sym_virtual] = ACTIONS(4547), + [anon_sym_alignas] = ACTIONS(4547), + [anon_sym_template] = ACTIONS(4547), + [anon_sym_operator] = ACTIONS(4547), }, [1674] = { - [sym_expression_statement] = STATE(3330), - [sym__expression] = STATE(5034), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9607), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_type_requirement] = STATE(1684), - [sym_compound_requirement] = STATE(1684), - [sym__requirement] = STATE(1684), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_requirement_seq_repeat1] = STATE(1684), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_typename] = ACTIONS(4103), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_RPAREN] = ACTIONS(4553), + [anon_sym_LPAREN2] = ACTIONS(4553), + [anon_sym_TILDE] = ACTIONS(4553), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_PIPE_PIPE] = ACTIONS(4553), + [anon_sym_AMP_AMP] = ACTIONS(4553), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_LT_LT] = ACTIONS(4551), + [anon_sym_GT_GT] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4553), + [anon_sym___extension__] = ACTIONS(4551), + [anon_sym_extern] = ACTIONS(4551), + [anon_sym___attribute__] = ACTIONS(4551), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4553), + [anon_sym___declspec] = ACTIONS(4551), + [anon_sym___based] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_RBRACE] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_static] = ACTIONS(4551), + [anon_sym_register] = ACTIONS(4551), + [anon_sym_inline] = ACTIONS(4551), + [anon_sym___inline] = ACTIONS(4551), + [anon_sym___inline__] = ACTIONS(4551), + [anon_sym___forceinline] = ACTIONS(4551), + [anon_sym_thread_local] = ACTIONS(4551), + [anon_sym___thread] = ACTIONS(4551), + [anon_sym_const] = ACTIONS(4551), + [anon_sym_constexpr] = ACTIONS(4551), + [anon_sym_volatile] = ACTIONS(4551), + [anon_sym_restrict] = ACTIONS(4551), + [anon_sym___restrict__] = ACTIONS(4551), + [anon_sym__Atomic] = ACTIONS(4551), + [anon_sym__Noreturn] = ACTIONS(4551), + [anon_sym_noreturn] = ACTIONS(4551), + [anon_sym_mutable] = ACTIONS(4551), + [anon_sym_constinit] = ACTIONS(4551), + [anon_sym_consteval] = ACTIONS(4551), + [anon_sym_QMARK] = ACTIONS(4553), + [anon_sym_STAR_EQ] = ACTIONS(4553), + [anon_sym_SLASH_EQ] = ACTIONS(4553), + [anon_sym_PERCENT_EQ] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(4553), + [anon_sym_DASH_EQ] = ACTIONS(4553), + [anon_sym_LT_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_GT_EQ] = ACTIONS(4553), + [anon_sym_AMP_EQ] = ACTIONS(4553), + [anon_sym_CARET_EQ] = ACTIONS(4553), + [anon_sym_PIPE_EQ] = ACTIONS(4553), + [anon_sym_and_eq] = ACTIONS(4551), + [anon_sym_or_eq] = ACTIONS(4551), + [anon_sym_xor_eq] = ACTIONS(4551), + [anon_sym_LT_EQ_GT] = ACTIONS(4553), + [anon_sym_or] = ACTIONS(4551), + [anon_sym_and] = ACTIONS(4551), + [anon_sym_bitor] = ACTIONS(4551), + [anon_sym_xor] = ACTIONS(4551), + [anon_sym_bitand] = ACTIONS(4551), + [anon_sym_not_eq] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_PLUS_PLUS] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4551), + [anon_sym_DOT_STAR] = ACTIONS(4553), + [anon_sym_DASH_GT] = ACTIONS(4553), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4551), + [anon_sym_decltype] = ACTIONS(4551), + [anon_sym_virtual] = ACTIONS(4551), + [anon_sym_alignas] = ACTIONS(4551), + [anon_sym_template] = ACTIONS(4551), + [anon_sym_operator] = ACTIONS(4551), }, [1675] = { - [sym_expression_statement] = STATE(3330), - [sym__expression] = STATE(5034), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9607), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_type_requirement] = STATE(1676), - [sym_compound_requirement] = STATE(1676), - [sym__requirement] = STATE(1676), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_requirement_seq_repeat1] = STATE(1676), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_RBRACE] = ACTIONS(4200), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_typename] = ACTIONS(4103), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4557), + [anon_sym_COMMA] = ACTIONS(4557), + [anon_sym_RPAREN] = ACTIONS(4557), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_TILDE] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4555), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_PERCENT] = ACTIONS(4555), + [anon_sym_PIPE_PIPE] = ACTIONS(4557), + [anon_sym_AMP_AMP] = ACTIONS(4557), + [anon_sym_PIPE] = ACTIONS(4555), + [anon_sym_CARET] = ACTIONS(4555), + [anon_sym_AMP] = ACTIONS(4555), + [anon_sym_EQ_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_GT_EQ] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_LT_LT] = ACTIONS(4555), + [anon_sym_GT_GT] = ACTIONS(4555), + [anon_sym_SEMI] = ACTIONS(4557), + [anon_sym___extension__] = ACTIONS(4555), + [anon_sym_extern] = ACTIONS(4555), + [anon_sym___attribute__] = ACTIONS(4555), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4557), + [anon_sym___declspec] = ACTIONS(4555), + [anon_sym___based] = ACTIONS(4555), + [anon_sym_LBRACE] = ACTIONS(4557), + [anon_sym_RBRACE] = ACTIONS(4557), + [anon_sym_LBRACK] = ACTIONS(4555), + [anon_sym_EQ] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_register] = ACTIONS(4555), + [anon_sym_inline] = ACTIONS(4555), + [anon_sym___inline] = ACTIONS(4555), + [anon_sym___inline__] = ACTIONS(4555), + [anon_sym___forceinline] = ACTIONS(4555), + [anon_sym_thread_local] = ACTIONS(4555), + [anon_sym___thread] = ACTIONS(4555), + [anon_sym_const] = ACTIONS(4555), + [anon_sym_constexpr] = ACTIONS(4555), + [anon_sym_volatile] = ACTIONS(4555), + [anon_sym_restrict] = ACTIONS(4555), + [anon_sym___restrict__] = ACTIONS(4555), + [anon_sym__Atomic] = ACTIONS(4555), + [anon_sym__Noreturn] = ACTIONS(4555), + [anon_sym_noreturn] = ACTIONS(4555), + [anon_sym_mutable] = ACTIONS(4555), + [anon_sym_constinit] = ACTIONS(4555), + [anon_sym_consteval] = ACTIONS(4555), + [anon_sym_QMARK] = ACTIONS(4557), + [anon_sym_STAR_EQ] = ACTIONS(4557), + [anon_sym_SLASH_EQ] = ACTIONS(4557), + [anon_sym_PERCENT_EQ] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(4557), + [anon_sym_DASH_EQ] = ACTIONS(4557), + [anon_sym_LT_LT_EQ] = ACTIONS(4557), + [anon_sym_GT_GT_EQ] = ACTIONS(4557), + [anon_sym_AMP_EQ] = ACTIONS(4557), + [anon_sym_CARET_EQ] = ACTIONS(4557), + [anon_sym_PIPE_EQ] = ACTIONS(4557), + [anon_sym_and_eq] = ACTIONS(4555), + [anon_sym_or_eq] = ACTIONS(4555), + [anon_sym_xor_eq] = ACTIONS(4555), + [anon_sym_LT_EQ_GT] = ACTIONS(4557), + [anon_sym_or] = ACTIONS(4555), + [anon_sym_and] = ACTIONS(4555), + [anon_sym_bitor] = ACTIONS(4555), + [anon_sym_xor] = ACTIONS(4555), + [anon_sym_bitand] = ACTIONS(4555), + [anon_sym_not_eq] = ACTIONS(4555), + [anon_sym_DASH_DASH] = ACTIONS(4557), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DOT] = ACTIONS(4555), + [anon_sym_DOT_STAR] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4557), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4555), + [anon_sym_decltype] = ACTIONS(4555), + [anon_sym_virtual] = ACTIONS(4555), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym_template] = ACTIONS(4555), + [anon_sym_operator] = ACTIONS(4555), }, [1676] = { - [sym_expression_statement] = STATE(3330), - [sym__expression] = STATE(5034), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9607), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_type_requirement] = STATE(1671), - [sym_compound_requirement] = STATE(1671), - [sym__requirement] = STATE(1671), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_requirement_seq_repeat1] = STATE(1671), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_typename] = ACTIONS(4103), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_template_argument_list] = STATE(1691), + [sym_identifier] = ACTIONS(4559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4561), + [anon_sym_COMMA] = ACTIONS(4561), + [anon_sym_RPAREN] = ACTIONS(4561), + [anon_sym_LPAREN2] = ACTIONS(4561), + [anon_sym_TILDE] = ACTIONS(4564), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_PIPE_PIPE] = ACTIONS(4571), + [anon_sym_AMP_AMP] = ACTIONS(4561), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_EQ_EQ] = ACTIONS(4571), + [anon_sym_BANG_EQ] = ACTIONS(4571), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_GT_EQ] = ACTIONS(4571), + [anon_sym_LT_EQ] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4573), + [anon_sym_LT_LT] = ACTIONS(4566), + [anon_sym_GT_GT] = ACTIONS(4566), + [anon_sym___extension__] = ACTIONS(4559), + [anon_sym_extern] = ACTIONS(4559), + [anon_sym___attribute__] = ACTIONS(4559), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4564), + [anon_sym___declspec] = ACTIONS(4559), + [anon_sym___based] = ACTIONS(4559), + [anon_sym_LBRACE] = ACTIONS(4564), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_EQ] = ACTIONS(4568), + [anon_sym_static] = ACTIONS(4559), + [anon_sym_register] = ACTIONS(4559), + [anon_sym_inline] = ACTIONS(4559), + [anon_sym___inline] = ACTIONS(4559), + [anon_sym___inline__] = ACTIONS(4559), + [anon_sym___forceinline] = ACTIONS(4559), + [anon_sym_thread_local] = ACTIONS(4559), + [anon_sym___thread] = ACTIONS(4559), + [anon_sym_const] = ACTIONS(4559), + [anon_sym_constexpr] = ACTIONS(4559), + [anon_sym_volatile] = ACTIONS(4559), + [anon_sym_restrict] = ACTIONS(4559), + [anon_sym___restrict__] = ACTIONS(4559), + [anon_sym__Atomic] = ACTIONS(4559), + [anon_sym__Noreturn] = ACTIONS(4559), + [anon_sym_noreturn] = ACTIONS(4559), + [anon_sym_mutable] = ACTIONS(4559), + [anon_sym_constinit] = ACTIONS(4559), + [anon_sym_consteval] = ACTIONS(4559), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_STAR_EQ] = ACTIONS(4571), + [anon_sym_SLASH_EQ] = ACTIONS(4571), + [anon_sym_PERCENT_EQ] = ACTIONS(4571), + [anon_sym_PLUS_EQ] = ACTIONS(4571), + [anon_sym_DASH_EQ] = ACTIONS(4571), + [anon_sym_LT_LT_EQ] = ACTIONS(4571), + [anon_sym_GT_GT_EQ] = ACTIONS(4571), + [anon_sym_AMP_EQ] = ACTIONS(4571), + [anon_sym_CARET_EQ] = ACTIONS(4571), + [anon_sym_PIPE_EQ] = ACTIONS(4571), + [anon_sym_and_eq] = ACTIONS(4566), + [anon_sym_or_eq] = ACTIONS(4566), + [anon_sym_xor_eq] = ACTIONS(4566), + [anon_sym_LT_EQ_GT] = ACTIONS(4571), + [anon_sym_or] = ACTIONS(4566), + [anon_sym_and] = ACTIONS(4566), + [anon_sym_bitor] = ACTIONS(4566), + [anon_sym_xor] = ACTIONS(4566), + [anon_sym_bitand] = ACTIONS(4566), + [anon_sym_not_eq] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DOT] = ACTIONS(4566), + [anon_sym_DOT_STAR] = ACTIONS(4571), + [anon_sym_DASH_GT] = ACTIONS(4566), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4559), + [anon_sym_decltype] = ACTIONS(4559), + [anon_sym_virtual] = ACTIONS(4559), + [anon_sym_alignas] = ACTIONS(4559), + [anon_sym_template] = ACTIONS(4559), + [anon_sym_operator] = ACTIONS(4559), + [anon_sym_DASH_GT_STAR] = ACTIONS(4571), }, [1677] = { - [sym_expression_statement] = STATE(3330), - [sym__expression] = STATE(5034), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9607), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_type_requirement] = STATE(1681), - [sym_compound_requirement] = STATE(1681), - [sym__requirement] = STATE(1681), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_requirement_seq_repeat1] = STATE(1681), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_RBRACE] = ACTIONS(4204), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_typename] = ACTIONS(4103), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4578), + [anon_sym_COMMA] = ACTIONS(4578), + [anon_sym_RPAREN] = ACTIONS(4578), + [anon_sym_LPAREN2] = ACTIONS(4578), + [anon_sym_TILDE] = ACTIONS(4578), + [anon_sym_DASH] = ACTIONS(4576), + [anon_sym_PLUS] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4576), + [anon_sym_SLASH] = ACTIONS(4576), + [anon_sym_PERCENT] = ACTIONS(4576), + [anon_sym_PIPE_PIPE] = ACTIONS(4578), + [anon_sym_AMP_AMP] = ACTIONS(4578), + [anon_sym_PIPE] = ACTIONS(4576), + [anon_sym_CARET] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4576), + [anon_sym_EQ_EQ] = ACTIONS(4578), + [anon_sym_BANG_EQ] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4576), + [anon_sym_GT_EQ] = ACTIONS(4578), + [anon_sym_LT_EQ] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4576), + [anon_sym_LT_LT] = ACTIONS(4576), + [anon_sym_GT_GT] = ACTIONS(4576), + [anon_sym_SEMI] = ACTIONS(4578), + [anon_sym___extension__] = ACTIONS(4576), + [anon_sym_extern] = ACTIONS(4576), + [anon_sym___attribute__] = ACTIONS(4576), + [anon_sym_COLON_COLON] = ACTIONS(4578), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4578), + [anon_sym___declspec] = ACTIONS(4576), + [anon_sym___based] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4578), + [anon_sym_RBRACE] = ACTIONS(4578), + [anon_sym_LBRACK] = ACTIONS(4576), + [anon_sym_EQ] = ACTIONS(4576), + [anon_sym_static] = ACTIONS(4576), + [anon_sym_register] = ACTIONS(4576), + [anon_sym_inline] = ACTIONS(4576), + [anon_sym___inline] = ACTIONS(4576), + [anon_sym___inline__] = ACTIONS(4576), + [anon_sym___forceinline] = ACTIONS(4576), + [anon_sym_thread_local] = ACTIONS(4576), + [anon_sym___thread] = ACTIONS(4576), + [anon_sym_const] = ACTIONS(4576), + [anon_sym_constexpr] = ACTIONS(4576), + [anon_sym_volatile] = ACTIONS(4576), + [anon_sym_restrict] = ACTIONS(4576), + [anon_sym___restrict__] = ACTIONS(4576), + [anon_sym__Atomic] = ACTIONS(4576), + [anon_sym__Noreturn] = ACTIONS(4576), + [anon_sym_noreturn] = ACTIONS(4576), + [anon_sym_mutable] = ACTIONS(4576), + [anon_sym_constinit] = ACTIONS(4576), + [anon_sym_consteval] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4578), + [anon_sym_STAR_EQ] = ACTIONS(4578), + [anon_sym_SLASH_EQ] = ACTIONS(4578), + [anon_sym_PERCENT_EQ] = ACTIONS(4578), + [anon_sym_PLUS_EQ] = ACTIONS(4578), + [anon_sym_DASH_EQ] = ACTIONS(4578), + [anon_sym_LT_LT_EQ] = ACTIONS(4578), + [anon_sym_GT_GT_EQ] = ACTIONS(4578), + [anon_sym_AMP_EQ] = ACTIONS(4578), + [anon_sym_CARET_EQ] = ACTIONS(4578), + [anon_sym_PIPE_EQ] = ACTIONS(4578), + [anon_sym_and_eq] = ACTIONS(4576), + [anon_sym_or_eq] = ACTIONS(4576), + [anon_sym_xor_eq] = ACTIONS(4576), + [anon_sym_LT_EQ_GT] = ACTIONS(4578), + [anon_sym_or] = ACTIONS(4576), + [anon_sym_and] = ACTIONS(4576), + [anon_sym_bitor] = ACTIONS(4576), + [anon_sym_xor] = ACTIONS(4576), + [anon_sym_bitand] = ACTIONS(4576), + [anon_sym_not_eq] = ACTIONS(4576), + [anon_sym_DASH_DASH] = ACTIONS(4578), + [anon_sym_PLUS_PLUS] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4576), + [anon_sym_DOT_STAR] = ACTIONS(4578), + [anon_sym_DASH_GT] = ACTIONS(4578), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4576), + [anon_sym_decltype] = ACTIONS(4576), + [anon_sym_virtual] = ACTIONS(4576), + [anon_sym_alignas] = ACTIONS(4576), + [anon_sym_template] = ACTIONS(4576), + [anon_sym_operator] = ACTIONS(4576), }, [1678] = { - [sym_expression_statement] = STATE(3330), - [sym__expression] = STATE(5034), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9607), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_type_requirement] = STATE(1672), - [sym_compound_requirement] = STATE(1672), - [sym__requirement] = STATE(1672), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_requirement_seq_repeat1] = STATE(1672), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_RBRACE] = ACTIONS(4206), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_typename] = ACTIONS(4103), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_template_argument_list] = STATE(1685), + [sym_identifier] = ACTIONS(4559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4571), + [anon_sym_COMMA] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4561), + [anon_sym_TILDE] = ACTIONS(4564), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_PIPE_PIPE] = ACTIONS(4571), + [anon_sym_AMP_AMP] = ACTIONS(4561), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_EQ_EQ] = ACTIONS(4571), + [anon_sym_BANG_EQ] = ACTIONS(4571), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_GT_EQ] = ACTIONS(4571), + [anon_sym_LT_EQ] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4580), + [anon_sym_LT_LT] = ACTIONS(4566), + [anon_sym_GT_GT] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4561), + [anon_sym___extension__] = ACTIONS(4559), + [anon_sym_extern] = ACTIONS(4559), + [anon_sym___attribute__] = ACTIONS(4559), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4561), + [anon_sym___declspec] = ACTIONS(4559), + [anon_sym___based] = ACTIONS(4559), + [anon_sym_LBRACE] = ACTIONS(4564), + [anon_sym_RBRACE] = ACTIONS(4571), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_static] = ACTIONS(4559), + [anon_sym_register] = ACTIONS(4559), + [anon_sym_inline] = ACTIONS(4559), + [anon_sym___inline] = ACTIONS(4559), + [anon_sym___inline__] = ACTIONS(4559), + [anon_sym___forceinline] = ACTIONS(4559), + [anon_sym_thread_local] = ACTIONS(4559), + [anon_sym___thread] = ACTIONS(4559), + [anon_sym_const] = ACTIONS(4559), + [anon_sym_constexpr] = ACTIONS(4559), + [anon_sym_volatile] = ACTIONS(4559), + [anon_sym_restrict] = ACTIONS(4559), + [anon_sym___restrict__] = ACTIONS(4559), + [anon_sym__Atomic] = ACTIONS(4559), + [anon_sym__Noreturn] = ACTIONS(4559), + [anon_sym_noreturn] = ACTIONS(4559), + [anon_sym_mutable] = ACTIONS(4559), + [anon_sym_constinit] = ACTIONS(4559), + [anon_sym_consteval] = ACTIONS(4559), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_STAR_EQ] = ACTIONS(4571), + [anon_sym_SLASH_EQ] = ACTIONS(4571), + [anon_sym_PERCENT_EQ] = ACTIONS(4571), + [anon_sym_PLUS_EQ] = ACTIONS(4571), + [anon_sym_DASH_EQ] = ACTIONS(4571), + [anon_sym_LT_LT_EQ] = ACTIONS(4571), + [anon_sym_GT_GT_EQ] = ACTIONS(4571), + [anon_sym_AMP_EQ] = ACTIONS(4571), + [anon_sym_CARET_EQ] = ACTIONS(4571), + [anon_sym_PIPE_EQ] = ACTIONS(4571), + [anon_sym_and_eq] = ACTIONS(4566), + [anon_sym_or_eq] = ACTIONS(4566), + [anon_sym_xor_eq] = ACTIONS(4566), + [anon_sym_LT_EQ_GT] = ACTIONS(4571), + [anon_sym_or] = ACTIONS(4566), + [anon_sym_and] = ACTIONS(4566), + [anon_sym_bitor] = ACTIONS(4566), + [anon_sym_xor] = ACTIONS(4566), + [anon_sym_bitand] = ACTIONS(4566), + [anon_sym_not_eq] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DOT] = ACTIONS(4566), + [anon_sym_DOT_STAR] = ACTIONS(4571), + [anon_sym_DASH_GT] = ACTIONS(4571), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4559), + [anon_sym_decltype] = ACTIONS(4559), + [anon_sym_virtual] = ACTIONS(4559), + [anon_sym_alignas] = ACTIONS(4559), + [anon_sym_template] = ACTIONS(4559), + [anon_sym_operator] = ACTIONS(4559), }, [1679] = { - [sym_expression_statement] = STATE(3330), - [sym__expression] = STATE(5034), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9607), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_type_requirement] = STATE(1673), - [sym_compound_requirement] = STATE(1673), - [sym__requirement] = STATE(1673), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_requirement_seq_repeat1] = STATE(1673), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_typename] = ACTIONS(4103), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4585), + [anon_sym_COMMA] = ACTIONS(4585), + [anon_sym_RPAREN] = ACTIONS(4585), + [anon_sym_LPAREN2] = ACTIONS(4585), + [anon_sym_TILDE] = ACTIONS(4585), + [anon_sym_DASH] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(4583), + [anon_sym_SLASH] = ACTIONS(4583), + [anon_sym_PERCENT] = ACTIONS(4583), + [anon_sym_PIPE_PIPE] = ACTIONS(4585), + [anon_sym_AMP_AMP] = ACTIONS(4585), + [anon_sym_PIPE] = ACTIONS(4583), + [anon_sym_CARET] = ACTIONS(4583), + [anon_sym_AMP] = ACTIONS(4583), + [anon_sym_EQ_EQ] = ACTIONS(4585), + [anon_sym_BANG_EQ] = ACTIONS(4585), + [anon_sym_GT] = ACTIONS(4583), + [anon_sym_GT_EQ] = ACTIONS(4585), + [anon_sym_LT_EQ] = ACTIONS(4583), + [anon_sym_LT] = ACTIONS(4583), + [anon_sym_LT_LT] = ACTIONS(4583), + [anon_sym_GT_GT] = ACTIONS(4583), + [anon_sym_SEMI] = ACTIONS(4585), + [anon_sym___extension__] = ACTIONS(4583), + [anon_sym_extern] = ACTIONS(4583), + [anon_sym___attribute__] = ACTIONS(4583), + [anon_sym_COLON_COLON] = ACTIONS(4585), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4585), + [anon_sym___declspec] = ACTIONS(4583), + [anon_sym___based] = ACTIONS(4583), + [anon_sym_LBRACE] = ACTIONS(4585), + [anon_sym_RBRACE] = ACTIONS(4585), + [anon_sym_LBRACK] = ACTIONS(4583), + [anon_sym_EQ] = ACTIONS(4583), + [anon_sym_static] = ACTIONS(4583), + [anon_sym_register] = ACTIONS(4583), + [anon_sym_inline] = ACTIONS(4583), + [anon_sym___inline] = ACTIONS(4583), + [anon_sym___inline__] = ACTIONS(4583), + [anon_sym___forceinline] = ACTIONS(4583), + [anon_sym_thread_local] = ACTIONS(4583), + [anon_sym___thread] = ACTIONS(4583), + [anon_sym_const] = ACTIONS(4583), + [anon_sym_constexpr] = ACTIONS(4583), + [anon_sym_volatile] = ACTIONS(4583), + [anon_sym_restrict] = ACTIONS(4583), + [anon_sym___restrict__] = ACTIONS(4583), + [anon_sym__Atomic] = ACTIONS(4583), + [anon_sym__Noreturn] = ACTIONS(4583), + [anon_sym_noreturn] = ACTIONS(4583), + [anon_sym_mutable] = ACTIONS(4583), + [anon_sym_constinit] = ACTIONS(4583), + [anon_sym_consteval] = ACTIONS(4583), + [anon_sym_QMARK] = ACTIONS(4585), + [anon_sym_STAR_EQ] = ACTIONS(4585), + [anon_sym_SLASH_EQ] = ACTIONS(4585), + [anon_sym_PERCENT_EQ] = ACTIONS(4585), + [anon_sym_PLUS_EQ] = ACTIONS(4585), + [anon_sym_DASH_EQ] = ACTIONS(4585), + [anon_sym_LT_LT_EQ] = ACTIONS(4585), + [anon_sym_GT_GT_EQ] = ACTIONS(4585), + [anon_sym_AMP_EQ] = ACTIONS(4585), + [anon_sym_CARET_EQ] = ACTIONS(4585), + [anon_sym_PIPE_EQ] = ACTIONS(4585), + [anon_sym_and_eq] = ACTIONS(4583), + [anon_sym_or_eq] = ACTIONS(4583), + [anon_sym_xor_eq] = ACTIONS(4583), + [anon_sym_LT_EQ_GT] = ACTIONS(4585), + [anon_sym_or] = ACTIONS(4583), + [anon_sym_and] = ACTIONS(4583), + [anon_sym_bitor] = ACTIONS(4583), + [anon_sym_xor] = ACTIONS(4583), + [anon_sym_bitand] = ACTIONS(4583), + [anon_sym_not_eq] = ACTIONS(4583), + [anon_sym_DASH_DASH] = ACTIONS(4585), + [anon_sym_PLUS_PLUS] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4583), + [anon_sym_DOT_STAR] = ACTIONS(4585), + [anon_sym_DASH_GT] = ACTIONS(4585), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4583), + [anon_sym_decltype] = ACTIONS(4583), + [anon_sym_virtual] = ACTIONS(4583), + [anon_sym_alignas] = ACTIONS(4583), + [anon_sym_template] = ACTIONS(4583), + [anon_sym_operator] = ACTIONS(4583), }, [1680] = { - [sym_expression_statement] = STATE(3330), - [sym__expression] = STATE(5034), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9607), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_type_requirement] = STATE(1671), - [sym_compound_requirement] = STATE(1671), - [sym__requirement] = STATE(1671), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_requirement_seq_repeat1] = STATE(1671), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_typename] = ACTIONS(4103), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_template_argument_list] = STATE(1690), + [sym_identifier] = ACTIONS(4559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4571), + [anon_sym_COMMA] = ACTIONS(4571), + [anon_sym_RPAREN] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4561), + [anon_sym_TILDE] = ACTIONS(4564), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_PIPE_PIPE] = ACTIONS(4571), + [anon_sym_AMP_AMP] = ACTIONS(4561), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_EQ_EQ] = ACTIONS(4571), + [anon_sym_BANG_EQ] = ACTIONS(4571), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_GT_EQ] = ACTIONS(4571), + [anon_sym_LT_EQ] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4580), + [anon_sym_LT_LT] = ACTIONS(4566), + [anon_sym_GT_GT] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4571), + [anon_sym___extension__] = ACTIONS(4559), + [anon_sym_extern] = ACTIONS(4559), + [anon_sym___attribute__] = ACTIONS(4559), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4564), + [anon_sym___declspec] = ACTIONS(4559), + [anon_sym___based] = ACTIONS(4559), + [anon_sym_LBRACE] = ACTIONS(4564), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_static] = ACTIONS(4559), + [anon_sym_register] = ACTIONS(4559), + [anon_sym_inline] = ACTIONS(4559), + [anon_sym___inline] = ACTIONS(4559), + [anon_sym___inline__] = ACTIONS(4559), + [anon_sym___forceinline] = ACTIONS(4559), + [anon_sym_thread_local] = ACTIONS(4559), + [anon_sym___thread] = ACTIONS(4559), + [anon_sym_const] = ACTIONS(4559), + [anon_sym_constexpr] = ACTIONS(4559), + [anon_sym_volatile] = ACTIONS(4559), + [anon_sym_restrict] = ACTIONS(4559), + [anon_sym___restrict__] = ACTIONS(4559), + [anon_sym__Atomic] = ACTIONS(4559), + [anon_sym__Noreturn] = ACTIONS(4559), + [anon_sym_noreturn] = ACTIONS(4559), + [anon_sym_mutable] = ACTIONS(4559), + [anon_sym_constinit] = ACTIONS(4559), + [anon_sym_consteval] = ACTIONS(4559), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_STAR_EQ] = ACTIONS(4571), + [anon_sym_SLASH_EQ] = ACTIONS(4571), + [anon_sym_PERCENT_EQ] = ACTIONS(4571), + [anon_sym_PLUS_EQ] = ACTIONS(4571), + [anon_sym_DASH_EQ] = ACTIONS(4571), + [anon_sym_LT_LT_EQ] = ACTIONS(4571), + [anon_sym_GT_GT_EQ] = ACTIONS(4571), + [anon_sym_AMP_EQ] = ACTIONS(4571), + [anon_sym_CARET_EQ] = ACTIONS(4571), + [anon_sym_PIPE_EQ] = ACTIONS(4571), + [anon_sym_and_eq] = ACTIONS(4566), + [anon_sym_or_eq] = ACTIONS(4566), + [anon_sym_xor_eq] = ACTIONS(4566), + [anon_sym_LT_EQ_GT] = ACTIONS(4571), + [anon_sym_or] = ACTIONS(4566), + [anon_sym_and] = ACTIONS(4566), + [anon_sym_bitor] = ACTIONS(4566), + [anon_sym_xor] = ACTIONS(4566), + [anon_sym_bitand] = ACTIONS(4566), + [anon_sym_not_eq] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DOT] = ACTIONS(4566), + [anon_sym_DOT_STAR] = ACTIONS(4571), + [anon_sym_DASH_GT] = ACTIONS(4571), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4559), + [anon_sym_decltype] = ACTIONS(4559), + [anon_sym_virtual] = ACTIONS(4559), + [anon_sym_alignas] = ACTIONS(4559), + [anon_sym_template] = ACTIONS(4559), + [anon_sym_operator] = ACTIONS(4559), }, [1681] = { - [sym_expression_statement] = STATE(3330), - [sym__expression] = STATE(5034), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9607), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_type_requirement] = STATE(1671), - [sym_compound_requirement] = STATE(1671), - [sym__requirement] = STATE(1671), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_requirement_seq_repeat1] = STATE(1671), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_RBRACE] = ACTIONS(4212), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_typename] = ACTIONS(4103), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4539), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4541), + [anon_sym_COMMA] = ACTIONS(4541), + [anon_sym_RPAREN] = ACTIONS(4541), + [anon_sym_LPAREN2] = ACTIONS(4541), + [anon_sym_TILDE] = ACTIONS(4541), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_STAR] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4539), + [anon_sym_PERCENT] = ACTIONS(4539), + [anon_sym_PIPE_PIPE] = ACTIONS(4541), + [anon_sym_AMP_AMP] = ACTIONS(4541), + [anon_sym_PIPE] = ACTIONS(4539), + [anon_sym_CARET] = ACTIONS(4539), + [anon_sym_AMP] = ACTIONS(4539), + [anon_sym_EQ_EQ] = ACTIONS(4541), + [anon_sym_BANG_EQ] = ACTIONS(4541), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_GT_EQ] = ACTIONS(4541), + [anon_sym_LT_EQ] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(4539), + [anon_sym_LT_LT] = ACTIONS(4539), + [anon_sym_GT_GT] = ACTIONS(4539), + [anon_sym___extension__] = ACTIONS(4539), + [anon_sym_extern] = ACTIONS(4539), + [anon_sym___attribute__] = ACTIONS(4539), + [anon_sym_COLON_COLON] = ACTIONS(4541), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4541), + [anon_sym___declspec] = ACTIONS(4539), + [anon_sym___based] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_LBRACK] = ACTIONS(4539), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_static] = ACTIONS(4539), + [anon_sym_register] = ACTIONS(4539), + [anon_sym_inline] = ACTIONS(4539), + [anon_sym___inline] = ACTIONS(4539), + [anon_sym___inline__] = ACTIONS(4539), + [anon_sym___forceinline] = ACTIONS(4539), + [anon_sym_thread_local] = ACTIONS(4539), + [anon_sym___thread] = ACTIONS(4539), + [anon_sym_const] = ACTIONS(4539), + [anon_sym_constexpr] = ACTIONS(4539), + [anon_sym_volatile] = ACTIONS(4539), + [anon_sym_restrict] = ACTIONS(4539), + [anon_sym___restrict__] = ACTIONS(4539), + [anon_sym__Atomic] = ACTIONS(4539), + [anon_sym__Noreturn] = ACTIONS(4539), + [anon_sym_noreturn] = ACTIONS(4539), + [anon_sym_mutable] = ACTIONS(4539), + [anon_sym_constinit] = ACTIONS(4539), + [anon_sym_consteval] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4541), + [anon_sym_SLASH_EQ] = ACTIONS(4541), + [anon_sym_PERCENT_EQ] = ACTIONS(4541), + [anon_sym_PLUS_EQ] = ACTIONS(4541), + [anon_sym_DASH_EQ] = ACTIONS(4541), + [anon_sym_LT_LT_EQ] = ACTIONS(4541), + [anon_sym_GT_GT_EQ] = ACTIONS(4541), + [anon_sym_AMP_EQ] = ACTIONS(4541), + [anon_sym_CARET_EQ] = ACTIONS(4541), + [anon_sym_PIPE_EQ] = ACTIONS(4541), + [anon_sym_and_eq] = ACTIONS(4539), + [anon_sym_or_eq] = ACTIONS(4539), + [anon_sym_xor_eq] = ACTIONS(4539), + [anon_sym_LT_EQ_GT] = ACTIONS(4541), + [anon_sym_or] = ACTIONS(4539), + [anon_sym_and] = ACTIONS(4539), + [anon_sym_bitor] = ACTIONS(4539), + [anon_sym_xor] = ACTIONS(4539), + [anon_sym_bitand] = ACTIONS(4539), + [anon_sym_not_eq] = ACTIONS(4539), + [anon_sym_DASH_DASH] = ACTIONS(4541), + [anon_sym_PLUS_PLUS] = ACTIONS(4541), + [anon_sym_DOT] = ACTIONS(4539), + [anon_sym_DOT_STAR] = ACTIONS(4541), + [anon_sym_DASH_GT] = ACTIONS(4539), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4539), + [anon_sym_decltype] = ACTIONS(4539), + [anon_sym_virtual] = ACTIONS(4539), + [anon_sym_alignas] = ACTIONS(4539), + [anon_sym_template] = ACTIONS(4539), + [anon_sym_operator] = ACTIONS(4539), + [anon_sym_DASH_GT_STAR] = ACTIONS(4541), }, [1682] = { - [sym_expression_statement] = STATE(3330), - [sym__expression] = STATE(5034), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9607), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_type_requirement] = STATE(1671), - [sym_compound_requirement] = STATE(1671), - [sym__requirement] = STATE(1671), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_requirement_seq_repeat1] = STATE(1671), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_RBRACE] = ACTIONS(4214), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_typename] = ACTIONS(4103), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4578), + [anon_sym_COMMA] = ACTIONS(4578), + [anon_sym_RPAREN] = ACTIONS(4578), + [anon_sym_LPAREN2] = ACTIONS(4578), + [anon_sym_TILDE] = ACTIONS(4578), + [anon_sym_DASH] = ACTIONS(4576), + [anon_sym_PLUS] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4576), + [anon_sym_SLASH] = ACTIONS(4576), + [anon_sym_PERCENT] = ACTIONS(4576), + [anon_sym_PIPE_PIPE] = ACTIONS(4578), + [anon_sym_AMP_AMP] = ACTIONS(4578), + [anon_sym_PIPE] = ACTIONS(4576), + [anon_sym_CARET] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4576), + [anon_sym_EQ_EQ] = ACTIONS(4578), + [anon_sym_BANG_EQ] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4576), + [anon_sym_GT_EQ] = ACTIONS(4578), + [anon_sym_LT_EQ] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4576), + [anon_sym_LT_LT] = ACTIONS(4576), + [anon_sym_GT_GT] = ACTIONS(4576), + [anon_sym___extension__] = ACTIONS(4576), + [anon_sym_extern] = ACTIONS(4576), + [anon_sym___attribute__] = ACTIONS(4576), + [anon_sym_COLON_COLON] = ACTIONS(4578), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4578), + [anon_sym___declspec] = ACTIONS(4576), + [anon_sym___based] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4578), + [anon_sym_LBRACK] = ACTIONS(4576), + [anon_sym_EQ] = ACTIONS(4576), + [anon_sym_static] = ACTIONS(4576), + [anon_sym_register] = ACTIONS(4576), + [anon_sym_inline] = ACTIONS(4576), + [anon_sym___inline] = ACTIONS(4576), + [anon_sym___inline__] = ACTIONS(4576), + [anon_sym___forceinline] = ACTIONS(4576), + [anon_sym_thread_local] = ACTIONS(4576), + [anon_sym___thread] = ACTIONS(4576), + [anon_sym_const] = ACTIONS(4576), + [anon_sym_constexpr] = ACTIONS(4576), + [anon_sym_volatile] = ACTIONS(4576), + [anon_sym_restrict] = ACTIONS(4576), + [anon_sym___restrict__] = ACTIONS(4576), + [anon_sym__Atomic] = ACTIONS(4576), + [anon_sym__Noreturn] = ACTIONS(4576), + [anon_sym_noreturn] = ACTIONS(4576), + [anon_sym_mutable] = ACTIONS(4576), + [anon_sym_constinit] = ACTIONS(4576), + [anon_sym_consteval] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4578), + [anon_sym_STAR_EQ] = ACTIONS(4578), + [anon_sym_SLASH_EQ] = ACTIONS(4578), + [anon_sym_PERCENT_EQ] = ACTIONS(4578), + [anon_sym_PLUS_EQ] = ACTIONS(4578), + [anon_sym_DASH_EQ] = ACTIONS(4578), + [anon_sym_LT_LT_EQ] = ACTIONS(4578), + [anon_sym_GT_GT_EQ] = ACTIONS(4578), + [anon_sym_AMP_EQ] = ACTIONS(4578), + [anon_sym_CARET_EQ] = ACTIONS(4578), + [anon_sym_PIPE_EQ] = ACTIONS(4578), + [anon_sym_and_eq] = ACTIONS(4576), + [anon_sym_or_eq] = ACTIONS(4576), + [anon_sym_xor_eq] = ACTIONS(4576), + [anon_sym_LT_EQ_GT] = ACTIONS(4578), + [anon_sym_or] = ACTIONS(4576), + [anon_sym_and] = ACTIONS(4576), + [anon_sym_bitor] = ACTIONS(4576), + [anon_sym_xor] = ACTIONS(4576), + [anon_sym_bitand] = ACTIONS(4576), + [anon_sym_not_eq] = ACTIONS(4576), + [anon_sym_DASH_DASH] = ACTIONS(4578), + [anon_sym_PLUS_PLUS] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4576), + [anon_sym_DOT_STAR] = ACTIONS(4578), + [anon_sym_DASH_GT] = ACTIONS(4576), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4576), + [anon_sym_decltype] = ACTIONS(4576), + [anon_sym_virtual] = ACTIONS(4576), + [anon_sym_alignas] = ACTIONS(4576), + [anon_sym_template] = ACTIONS(4576), + [anon_sym_operator] = ACTIONS(4576), + [anon_sym_DASH_GT_STAR] = ACTIONS(4578), }, [1683] = { - [sym_expression_statement] = STATE(3330), - [sym__expression] = STATE(5034), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9607), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_type_requirement] = STATE(1670), - [sym_compound_requirement] = STATE(1670), - [sym__requirement] = STATE(1670), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_requirement_seq_repeat1] = STATE(1670), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_RBRACE] = ACTIONS(4216), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_typename] = ACTIONS(4103), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4557), + [anon_sym_COMMA] = ACTIONS(4557), + [anon_sym_RPAREN] = ACTIONS(4557), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_TILDE] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4555), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_PERCENT] = ACTIONS(4555), + [anon_sym_PIPE_PIPE] = ACTIONS(4557), + [anon_sym_AMP_AMP] = ACTIONS(4557), + [anon_sym_PIPE] = ACTIONS(4555), + [anon_sym_CARET] = ACTIONS(4555), + [anon_sym_AMP] = ACTIONS(4555), + [anon_sym_EQ_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_GT_EQ] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_LT_LT] = ACTIONS(4555), + [anon_sym_GT_GT] = ACTIONS(4555), + [anon_sym___extension__] = ACTIONS(4555), + [anon_sym_extern] = ACTIONS(4555), + [anon_sym___attribute__] = ACTIONS(4555), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4557), + [anon_sym___declspec] = ACTIONS(4555), + [anon_sym___based] = ACTIONS(4555), + [anon_sym_LBRACE] = ACTIONS(4557), + [anon_sym_LBRACK] = ACTIONS(4555), + [anon_sym_EQ] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_register] = ACTIONS(4555), + [anon_sym_inline] = ACTIONS(4555), + [anon_sym___inline] = ACTIONS(4555), + [anon_sym___inline__] = ACTIONS(4555), + [anon_sym___forceinline] = ACTIONS(4555), + [anon_sym_thread_local] = ACTIONS(4555), + [anon_sym___thread] = ACTIONS(4555), + [anon_sym_const] = ACTIONS(4555), + [anon_sym_constexpr] = ACTIONS(4555), + [anon_sym_volatile] = ACTIONS(4555), + [anon_sym_restrict] = ACTIONS(4555), + [anon_sym___restrict__] = ACTIONS(4555), + [anon_sym__Atomic] = ACTIONS(4555), + [anon_sym__Noreturn] = ACTIONS(4555), + [anon_sym_noreturn] = ACTIONS(4555), + [anon_sym_mutable] = ACTIONS(4555), + [anon_sym_constinit] = ACTIONS(4555), + [anon_sym_consteval] = ACTIONS(4555), + [anon_sym_QMARK] = ACTIONS(4557), + [anon_sym_STAR_EQ] = ACTIONS(4557), + [anon_sym_SLASH_EQ] = ACTIONS(4557), + [anon_sym_PERCENT_EQ] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(4557), + [anon_sym_DASH_EQ] = ACTIONS(4557), + [anon_sym_LT_LT_EQ] = ACTIONS(4557), + [anon_sym_GT_GT_EQ] = ACTIONS(4557), + [anon_sym_AMP_EQ] = ACTIONS(4557), + [anon_sym_CARET_EQ] = ACTIONS(4557), + [anon_sym_PIPE_EQ] = ACTIONS(4557), + [anon_sym_and_eq] = ACTIONS(4555), + [anon_sym_or_eq] = ACTIONS(4555), + [anon_sym_xor_eq] = ACTIONS(4555), + [anon_sym_LT_EQ_GT] = ACTIONS(4557), + [anon_sym_or] = ACTIONS(4555), + [anon_sym_and] = ACTIONS(4555), + [anon_sym_bitor] = ACTIONS(4555), + [anon_sym_xor] = ACTIONS(4555), + [anon_sym_bitand] = ACTIONS(4555), + [anon_sym_not_eq] = ACTIONS(4555), + [anon_sym_DASH_DASH] = ACTIONS(4557), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DOT] = ACTIONS(4555), + [anon_sym_DOT_STAR] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4555), + [anon_sym_decltype] = ACTIONS(4555), + [anon_sym_virtual] = ACTIONS(4555), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym_template] = ACTIONS(4555), + [anon_sym_operator] = ACTIONS(4555), + [anon_sym_DASH_GT_STAR] = ACTIONS(4557), }, [1684] = { - [sym_expression_statement] = STATE(3330), - [sym__expression] = STATE(5034), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9607), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_type_requirement] = STATE(1671), - [sym_compound_requirement] = STATE(1671), - [sym__requirement] = STATE(1671), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_requirement_seq_repeat1] = STATE(1671), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_RBRACE] = ACTIONS(4218), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_typename] = ACTIONS(4103), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4545), + [anon_sym_COMMA] = ACTIONS(4545), + [anon_sym_RPAREN] = ACTIONS(4545), + [anon_sym_LPAREN2] = ACTIONS(4545), + [anon_sym_TILDE] = ACTIONS(4545), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4543), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE] = ACTIONS(4543), + [anon_sym_CARET] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4543), + [anon_sym_EQ_EQ] = ACTIONS(4545), + [anon_sym_BANG_EQ] = ACTIONS(4545), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_GT_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ] = ACTIONS(4543), + [anon_sym_LT] = ACTIONS(4543), + [anon_sym_LT_LT] = ACTIONS(4543), + [anon_sym_GT_GT] = ACTIONS(4543), + [anon_sym___extension__] = ACTIONS(4543), + [anon_sym_extern] = ACTIONS(4543), + [anon_sym___attribute__] = ACTIONS(4543), + [anon_sym_COLON_COLON] = ACTIONS(4545), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4545), + [anon_sym___declspec] = ACTIONS(4543), + [anon_sym___based] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_LBRACK] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_static] = ACTIONS(4543), + [anon_sym_register] = ACTIONS(4543), + [anon_sym_inline] = ACTIONS(4543), + [anon_sym___inline] = ACTIONS(4543), + [anon_sym___inline__] = ACTIONS(4543), + [anon_sym___forceinline] = ACTIONS(4543), + [anon_sym_thread_local] = ACTIONS(4543), + [anon_sym___thread] = ACTIONS(4543), + [anon_sym_const] = ACTIONS(4543), + [anon_sym_constexpr] = ACTIONS(4543), + [anon_sym_volatile] = ACTIONS(4543), + [anon_sym_restrict] = ACTIONS(4543), + [anon_sym___restrict__] = ACTIONS(4543), + [anon_sym__Atomic] = ACTIONS(4543), + [anon_sym__Noreturn] = ACTIONS(4543), + [anon_sym_noreturn] = ACTIONS(4543), + [anon_sym_mutable] = ACTIONS(4543), + [anon_sym_constinit] = ACTIONS(4543), + [anon_sym_consteval] = ACTIONS(4543), + [anon_sym_QMARK] = ACTIONS(4545), + [anon_sym_STAR_EQ] = ACTIONS(4545), + [anon_sym_SLASH_EQ] = ACTIONS(4545), + [anon_sym_PERCENT_EQ] = ACTIONS(4545), + [anon_sym_PLUS_EQ] = ACTIONS(4545), + [anon_sym_DASH_EQ] = ACTIONS(4545), + [anon_sym_LT_LT_EQ] = ACTIONS(4545), + [anon_sym_GT_GT_EQ] = ACTIONS(4545), + [anon_sym_AMP_EQ] = ACTIONS(4545), + [anon_sym_CARET_EQ] = ACTIONS(4545), + [anon_sym_PIPE_EQ] = ACTIONS(4545), + [anon_sym_and_eq] = ACTIONS(4543), + [anon_sym_or_eq] = ACTIONS(4543), + [anon_sym_xor_eq] = ACTIONS(4543), + [anon_sym_LT_EQ_GT] = ACTIONS(4545), + [anon_sym_or] = ACTIONS(4543), + [anon_sym_and] = ACTIONS(4543), + [anon_sym_bitor] = ACTIONS(4543), + [anon_sym_xor] = ACTIONS(4543), + [anon_sym_bitand] = ACTIONS(4543), + [anon_sym_not_eq] = ACTIONS(4543), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_PLUS_PLUS] = ACTIONS(4545), + [anon_sym_DOT] = ACTIONS(4543), + [anon_sym_DOT_STAR] = ACTIONS(4545), + [anon_sym_DASH_GT] = ACTIONS(4543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4543), + [anon_sym_decltype] = ACTIONS(4543), + [anon_sym_virtual] = ACTIONS(4543), + [anon_sym_alignas] = ACTIONS(4543), + [anon_sym_template] = ACTIONS(4543), + [anon_sym_operator] = ACTIONS(4543), + [anon_sym_DASH_GT_STAR] = ACTIONS(4545), }, [1685] = { - [sym_expression_statement] = STATE(3330), - [sym__expression] = STATE(5034), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9607), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_type_requirement] = STATE(1686), - [sym_compound_requirement] = STATE(1686), - [sym__requirement] = STATE(1686), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_requirement_seq_repeat1] = STATE(1686), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_RBRACE] = ACTIONS(4220), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_typename] = ACTIONS(4103), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4589), + [anon_sym_LPAREN2] = ACTIONS(4591), + [anon_sym_TILDE] = ACTIONS(4594), + [anon_sym_DASH] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4591), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_CARET] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_EQ_EQ] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_GT_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4596), + [anon_sym_LT_LT] = ACTIONS(4596), + [anon_sym_GT_GT] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym___extension__] = ACTIONS(4587), + [anon_sym_extern] = ACTIONS(4587), + [anon_sym___attribute__] = ACTIONS(4587), + [anon_sym_COLON_COLON] = ACTIONS(4594), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4591), + [anon_sym___declspec] = ACTIONS(4587), + [anon_sym___based] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4594), + [anon_sym_RBRACE] = ACTIONS(4589), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_register] = ACTIONS(4587), + [anon_sym_inline] = ACTIONS(4587), + [anon_sym___inline] = ACTIONS(4587), + [anon_sym___inline__] = ACTIONS(4587), + [anon_sym___forceinline] = ACTIONS(4587), + [anon_sym_thread_local] = ACTIONS(4587), + [anon_sym___thread] = ACTIONS(4587), + [anon_sym_const] = ACTIONS(4587), + [anon_sym_constexpr] = ACTIONS(4587), + [anon_sym_volatile] = ACTIONS(4587), + [anon_sym_restrict] = ACTIONS(4587), + [anon_sym___restrict__] = ACTIONS(4587), + [anon_sym__Atomic] = ACTIONS(4587), + [anon_sym__Noreturn] = ACTIONS(4587), + [anon_sym_noreturn] = ACTIONS(4587), + [anon_sym_mutable] = ACTIONS(4587), + [anon_sym_constinit] = ACTIONS(4587), + [anon_sym_consteval] = ACTIONS(4587), + [anon_sym_QMARK] = ACTIONS(4589), + [anon_sym_STAR_EQ] = ACTIONS(4589), + [anon_sym_SLASH_EQ] = ACTIONS(4589), + [anon_sym_PERCENT_EQ] = ACTIONS(4589), + [anon_sym_PLUS_EQ] = ACTIONS(4589), + [anon_sym_DASH_EQ] = ACTIONS(4589), + [anon_sym_LT_LT_EQ] = ACTIONS(4589), + [anon_sym_GT_GT_EQ] = ACTIONS(4589), + [anon_sym_AMP_EQ] = ACTIONS(4589), + [anon_sym_CARET_EQ] = ACTIONS(4589), + [anon_sym_PIPE_EQ] = ACTIONS(4589), + [anon_sym_and_eq] = ACTIONS(4596), + [anon_sym_or_eq] = ACTIONS(4596), + [anon_sym_xor_eq] = ACTIONS(4596), + [anon_sym_LT_EQ_GT] = ACTIONS(4589), + [anon_sym_or] = ACTIONS(4596), + [anon_sym_and] = ACTIONS(4596), + [anon_sym_bitor] = ACTIONS(4596), + [anon_sym_xor] = ACTIONS(4596), + [anon_sym_bitand] = ACTIONS(4596), + [anon_sym_not_eq] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_STAR] = ACTIONS(4589), + [anon_sym_DASH_GT] = ACTIONS(4589), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4587), + [anon_sym_decltype] = ACTIONS(4587), + [anon_sym_virtual] = ACTIONS(4587), + [anon_sym_alignas] = ACTIONS(4587), + [anon_sym_template] = ACTIONS(4587), + [anon_sym_operator] = ACTIONS(4587), }, [1686] = { - [sym_expression_statement] = STATE(3330), - [sym__expression] = STATE(5034), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9607), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_type_requirement] = STATE(1671), - [sym_compound_requirement] = STATE(1671), - [sym__requirement] = STATE(1671), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_requirement_seq_repeat1] = STATE(1671), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_RBRACE] = ACTIONS(4222), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_typename] = ACTIONS(4103), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4585), + [anon_sym_COMMA] = ACTIONS(4585), + [anon_sym_RPAREN] = ACTIONS(4585), + [anon_sym_LPAREN2] = ACTIONS(4585), + [anon_sym_TILDE] = ACTIONS(4585), + [anon_sym_DASH] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(4583), + [anon_sym_SLASH] = ACTIONS(4583), + [anon_sym_PERCENT] = ACTIONS(4583), + [anon_sym_PIPE_PIPE] = ACTIONS(4585), + [anon_sym_AMP_AMP] = ACTIONS(4585), + [anon_sym_PIPE] = ACTIONS(4583), + [anon_sym_CARET] = ACTIONS(4583), + [anon_sym_AMP] = ACTIONS(4583), + [anon_sym_EQ_EQ] = ACTIONS(4585), + [anon_sym_BANG_EQ] = ACTIONS(4585), + [anon_sym_GT] = ACTIONS(4583), + [anon_sym_GT_EQ] = ACTIONS(4585), + [anon_sym_LT_EQ] = ACTIONS(4583), + [anon_sym_LT] = ACTIONS(4583), + [anon_sym_LT_LT] = ACTIONS(4583), + [anon_sym_GT_GT] = ACTIONS(4583), + [anon_sym___extension__] = ACTIONS(4583), + [anon_sym_extern] = ACTIONS(4583), + [anon_sym___attribute__] = ACTIONS(4583), + [anon_sym_COLON_COLON] = ACTIONS(4585), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4585), + [anon_sym___declspec] = ACTIONS(4583), + [anon_sym___based] = ACTIONS(4583), + [anon_sym_LBRACE] = ACTIONS(4585), + [anon_sym_LBRACK] = ACTIONS(4583), + [anon_sym_EQ] = ACTIONS(4583), + [anon_sym_static] = ACTIONS(4583), + [anon_sym_register] = ACTIONS(4583), + [anon_sym_inline] = ACTIONS(4583), + [anon_sym___inline] = ACTIONS(4583), + [anon_sym___inline__] = ACTIONS(4583), + [anon_sym___forceinline] = ACTIONS(4583), + [anon_sym_thread_local] = ACTIONS(4583), + [anon_sym___thread] = ACTIONS(4583), + [anon_sym_const] = ACTIONS(4583), + [anon_sym_constexpr] = ACTIONS(4583), + [anon_sym_volatile] = ACTIONS(4583), + [anon_sym_restrict] = ACTIONS(4583), + [anon_sym___restrict__] = ACTIONS(4583), + [anon_sym__Atomic] = ACTIONS(4583), + [anon_sym__Noreturn] = ACTIONS(4583), + [anon_sym_noreturn] = ACTIONS(4583), + [anon_sym_mutable] = ACTIONS(4583), + [anon_sym_constinit] = ACTIONS(4583), + [anon_sym_consteval] = ACTIONS(4583), + [anon_sym_QMARK] = ACTIONS(4585), + [anon_sym_STAR_EQ] = ACTIONS(4585), + [anon_sym_SLASH_EQ] = ACTIONS(4585), + [anon_sym_PERCENT_EQ] = ACTIONS(4585), + [anon_sym_PLUS_EQ] = ACTIONS(4585), + [anon_sym_DASH_EQ] = ACTIONS(4585), + [anon_sym_LT_LT_EQ] = ACTIONS(4585), + [anon_sym_GT_GT_EQ] = ACTIONS(4585), + [anon_sym_AMP_EQ] = ACTIONS(4585), + [anon_sym_CARET_EQ] = ACTIONS(4585), + [anon_sym_PIPE_EQ] = ACTIONS(4585), + [anon_sym_and_eq] = ACTIONS(4583), + [anon_sym_or_eq] = ACTIONS(4583), + [anon_sym_xor_eq] = ACTIONS(4583), + [anon_sym_LT_EQ_GT] = ACTIONS(4585), + [anon_sym_or] = ACTIONS(4583), + [anon_sym_and] = ACTIONS(4583), + [anon_sym_bitor] = ACTIONS(4583), + [anon_sym_xor] = ACTIONS(4583), + [anon_sym_bitand] = ACTIONS(4583), + [anon_sym_not_eq] = ACTIONS(4583), + [anon_sym_DASH_DASH] = ACTIONS(4585), + [anon_sym_PLUS_PLUS] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4583), + [anon_sym_DOT_STAR] = ACTIONS(4585), + [anon_sym_DASH_GT] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4583), + [anon_sym_decltype] = ACTIONS(4583), + [anon_sym_virtual] = ACTIONS(4583), + [anon_sym_alignas] = ACTIONS(4583), + [anon_sym_template] = ACTIONS(4583), + [anon_sym_operator] = ACTIONS(4583), + [anon_sym_DASH_GT_STAR] = ACTIONS(4585), }, [1687] = { - [sym_expression_statement] = STATE(3330), - [sym__expression] = STATE(5034), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9607), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_type_requirement] = STATE(1682), - [sym_compound_requirement] = STATE(1682), - [sym__requirement] = STATE(1682), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_requirement_seq_repeat1] = STATE(1682), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_RBRACE] = ACTIONS(4224), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_typename] = ACTIONS(4103), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_RPAREN] = ACTIONS(4553), + [anon_sym_LPAREN2] = ACTIONS(4553), + [anon_sym_TILDE] = ACTIONS(4553), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_PIPE_PIPE] = ACTIONS(4553), + [anon_sym_AMP_AMP] = ACTIONS(4553), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_LT_LT] = ACTIONS(4551), + [anon_sym_GT_GT] = ACTIONS(4551), + [anon_sym___extension__] = ACTIONS(4551), + [anon_sym_extern] = ACTIONS(4551), + [anon_sym___attribute__] = ACTIONS(4551), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4553), + [anon_sym___declspec] = ACTIONS(4551), + [anon_sym___based] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_static] = ACTIONS(4551), + [anon_sym_register] = ACTIONS(4551), + [anon_sym_inline] = ACTIONS(4551), + [anon_sym___inline] = ACTIONS(4551), + [anon_sym___inline__] = ACTIONS(4551), + [anon_sym___forceinline] = ACTIONS(4551), + [anon_sym_thread_local] = ACTIONS(4551), + [anon_sym___thread] = ACTIONS(4551), + [anon_sym_const] = ACTIONS(4551), + [anon_sym_constexpr] = ACTIONS(4551), + [anon_sym_volatile] = ACTIONS(4551), + [anon_sym_restrict] = ACTIONS(4551), + [anon_sym___restrict__] = ACTIONS(4551), + [anon_sym__Atomic] = ACTIONS(4551), + [anon_sym__Noreturn] = ACTIONS(4551), + [anon_sym_noreturn] = ACTIONS(4551), + [anon_sym_mutable] = ACTIONS(4551), + [anon_sym_constinit] = ACTIONS(4551), + [anon_sym_consteval] = ACTIONS(4551), + [anon_sym_QMARK] = ACTIONS(4553), + [anon_sym_STAR_EQ] = ACTIONS(4553), + [anon_sym_SLASH_EQ] = ACTIONS(4553), + [anon_sym_PERCENT_EQ] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(4553), + [anon_sym_DASH_EQ] = ACTIONS(4553), + [anon_sym_LT_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_GT_EQ] = ACTIONS(4553), + [anon_sym_AMP_EQ] = ACTIONS(4553), + [anon_sym_CARET_EQ] = ACTIONS(4553), + [anon_sym_PIPE_EQ] = ACTIONS(4553), + [anon_sym_and_eq] = ACTIONS(4551), + [anon_sym_or_eq] = ACTIONS(4551), + [anon_sym_xor_eq] = ACTIONS(4551), + [anon_sym_LT_EQ_GT] = ACTIONS(4553), + [anon_sym_or] = ACTIONS(4551), + [anon_sym_and] = ACTIONS(4551), + [anon_sym_bitor] = ACTIONS(4551), + [anon_sym_xor] = ACTIONS(4551), + [anon_sym_bitand] = ACTIONS(4551), + [anon_sym_not_eq] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_PLUS_PLUS] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4551), + [anon_sym_DOT_STAR] = ACTIONS(4553), + [anon_sym_DASH_GT] = ACTIONS(4551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4551), + [anon_sym_decltype] = ACTIONS(4551), + [anon_sym_virtual] = ACTIONS(4551), + [anon_sym_alignas] = ACTIONS(4551), + [anon_sym_template] = ACTIONS(4551), + [anon_sym_operator] = ACTIONS(4551), + [anon_sym_DASH_GT_STAR] = ACTIONS(4553), }, [1688] = { - [sym_expression_statement] = STATE(3330), - [sym__expression] = STATE(5034), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9607), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_type_requirement] = STATE(1680), - [sym_compound_requirement] = STATE(1680), - [sym__requirement] = STATE(1680), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_requirement_seq_repeat1] = STATE(1680), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_typename] = ACTIONS(4103), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4549), + [anon_sym_COMMA] = ACTIONS(4549), + [anon_sym_RPAREN] = ACTIONS(4549), + [anon_sym_LPAREN2] = ACTIONS(4549), + [anon_sym_TILDE] = ACTIONS(4549), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_STAR] = ACTIONS(4547), + [anon_sym_SLASH] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4547), + [anon_sym_PIPE_PIPE] = ACTIONS(4549), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4547), + [anon_sym_CARET] = ACTIONS(4547), + [anon_sym_AMP] = ACTIONS(4547), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_GT] = ACTIONS(4547), + [anon_sym_GT_EQ] = ACTIONS(4549), + [anon_sym_LT_EQ] = ACTIONS(4547), + [anon_sym_LT] = ACTIONS(4547), + [anon_sym_LT_LT] = ACTIONS(4547), + [anon_sym_GT_GT] = ACTIONS(4547), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_extern] = ACTIONS(4547), + [anon_sym___attribute__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4549), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4549), + [anon_sym___declspec] = ACTIONS(4547), + [anon_sym___based] = ACTIONS(4547), + [anon_sym_LBRACE] = ACTIONS(4549), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_static] = ACTIONS(4547), + [anon_sym_register] = ACTIONS(4547), + [anon_sym_inline] = ACTIONS(4547), + [anon_sym___inline] = ACTIONS(4547), + [anon_sym___inline__] = ACTIONS(4547), + [anon_sym___forceinline] = ACTIONS(4547), + [anon_sym_thread_local] = ACTIONS(4547), + [anon_sym___thread] = ACTIONS(4547), + [anon_sym_const] = ACTIONS(4547), + [anon_sym_constexpr] = ACTIONS(4547), + [anon_sym_volatile] = ACTIONS(4547), + [anon_sym_restrict] = ACTIONS(4547), + [anon_sym___restrict__] = ACTIONS(4547), + [anon_sym__Atomic] = ACTIONS(4547), + [anon_sym__Noreturn] = ACTIONS(4547), + [anon_sym_noreturn] = ACTIONS(4547), + [anon_sym_mutable] = ACTIONS(4547), + [anon_sym_constinit] = ACTIONS(4547), + [anon_sym_consteval] = ACTIONS(4547), + [anon_sym_QMARK] = ACTIONS(4549), + [anon_sym_STAR_EQ] = ACTIONS(4549), + [anon_sym_SLASH_EQ] = ACTIONS(4549), + [anon_sym_PERCENT_EQ] = ACTIONS(4549), + [anon_sym_PLUS_EQ] = ACTIONS(4549), + [anon_sym_DASH_EQ] = ACTIONS(4549), + [anon_sym_LT_LT_EQ] = ACTIONS(4549), + [anon_sym_GT_GT_EQ] = ACTIONS(4549), + [anon_sym_AMP_EQ] = ACTIONS(4549), + [anon_sym_CARET_EQ] = ACTIONS(4549), + [anon_sym_PIPE_EQ] = ACTIONS(4549), + [anon_sym_and_eq] = ACTIONS(4547), + [anon_sym_or_eq] = ACTIONS(4547), + [anon_sym_xor_eq] = ACTIONS(4547), + [anon_sym_LT_EQ_GT] = ACTIONS(4549), + [anon_sym_or] = ACTIONS(4547), + [anon_sym_and] = ACTIONS(4547), + [anon_sym_bitor] = ACTIONS(4547), + [anon_sym_xor] = ACTIONS(4547), + [anon_sym_bitand] = ACTIONS(4547), + [anon_sym_not_eq] = ACTIONS(4547), + [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4549), + [anon_sym_DOT] = ACTIONS(4547), + [anon_sym_DOT_STAR] = ACTIONS(4549), + [anon_sym_DASH_GT] = ACTIONS(4547), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4547), + [anon_sym_decltype] = ACTIONS(4547), + [anon_sym_virtual] = ACTIONS(4547), + [anon_sym_alignas] = ACTIONS(4547), + [anon_sym_template] = ACTIONS(4547), + [anon_sym_operator] = ACTIONS(4547), + [anon_sym_DASH_GT_STAR] = ACTIONS(4549), }, [1689] = { - [sym__expression] = STATE(4990), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8341), - [sym_initializer_pair] = STATE(8341), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [sym_identifier] = ACTIONS(3504), - [anon_sym_COMMA] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4230), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_template_argument_list] = STATE(1692), + [sym_identifier] = ACTIONS(4559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4561), + [anon_sym_COMMA] = ACTIONS(4561), + [anon_sym_RPAREN] = ACTIONS(4561), + [anon_sym_LPAREN2] = ACTIONS(4561), + [anon_sym_TILDE] = ACTIONS(4564), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_PIPE_PIPE] = ACTIONS(4571), + [anon_sym_AMP_AMP] = ACTIONS(4561), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_EQ_EQ] = ACTIONS(4571), + [anon_sym_BANG_EQ] = ACTIONS(4571), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_GT_EQ] = ACTIONS(4571), + [anon_sym_LT_EQ] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4580), + [anon_sym_LT_LT] = ACTIONS(4566), + [anon_sym_GT_GT] = ACTIONS(4566), + [anon_sym___extension__] = ACTIONS(4559), + [anon_sym_extern] = ACTIONS(4559), + [anon_sym___attribute__] = ACTIONS(4559), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4564), + [anon_sym___declspec] = ACTIONS(4559), + [anon_sym___based] = ACTIONS(4559), + [anon_sym_LBRACE] = ACTIONS(4564), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_EQ] = ACTIONS(4568), + [anon_sym_static] = ACTIONS(4559), + [anon_sym_register] = ACTIONS(4559), + [anon_sym_inline] = ACTIONS(4559), + [anon_sym___inline] = ACTIONS(4559), + [anon_sym___inline__] = ACTIONS(4559), + [anon_sym___forceinline] = ACTIONS(4559), + [anon_sym_thread_local] = ACTIONS(4559), + [anon_sym___thread] = ACTIONS(4559), + [anon_sym_const] = ACTIONS(4559), + [anon_sym_constexpr] = ACTIONS(4559), + [anon_sym_volatile] = ACTIONS(4559), + [anon_sym_restrict] = ACTIONS(4559), + [anon_sym___restrict__] = ACTIONS(4559), + [anon_sym__Atomic] = ACTIONS(4559), + [anon_sym__Noreturn] = ACTIONS(4559), + [anon_sym_noreturn] = ACTIONS(4559), + [anon_sym_mutable] = ACTIONS(4559), + [anon_sym_constinit] = ACTIONS(4559), + [anon_sym_consteval] = ACTIONS(4559), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_STAR_EQ] = ACTIONS(4571), + [anon_sym_SLASH_EQ] = ACTIONS(4571), + [anon_sym_PERCENT_EQ] = ACTIONS(4571), + [anon_sym_PLUS_EQ] = ACTIONS(4571), + [anon_sym_DASH_EQ] = ACTIONS(4571), + [anon_sym_LT_LT_EQ] = ACTIONS(4571), + [anon_sym_GT_GT_EQ] = ACTIONS(4571), + [anon_sym_AMP_EQ] = ACTIONS(4571), + [anon_sym_CARET_EQ] = ACTIONS(4571), + [anon_sym_PIPE_EQ] = ACTIONS(4571), + [anon_sym_and_eq] = ACTIONS(4566), + [anon_sym_or_eq] = ACTIONS(4566), + [anon_sym_xor_eq] = ACTIONS(4566), + [anon_sym_LT_EQ_GT] = ACTIONS(4571), + [anon_sym_or] = ACTIONS(4566), + [anon_sym_and] = ACTIONS(4566), + [anon_sym_bitor] = ACTIONS(4566), + [anon_sym_xor] = ACTIONS(4566), + [anon_sym_bitand] = ACTIONS(4566), + [anon_sym_not_eq] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DOT] = ACTIONS(4566), + [anon_sym_DOT_STAR] = ACTIONS(4571), + [anon_sym_DASH_GT] = ACTIONS(4571), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4559), + [anon_sym_decltype] = ACTIONS(4559), + [anon_sym_virtual] = ACTIONS(4559), + [anon_sym_alignas] = ACTIONS(4559), + [anon_sym_template] = ACTIONS(4559), + [anon_sym_operator] = ACTIONS(4559), }, [1690] = { - [sym__expression] = STATE(4984), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8259), - [sym_initializer_pair] = STATE(8259), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [sym_identifier] = ACTIONS(3504), - [anon_sym_COMMA] = ACTIONS(4232), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4230), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4589), + [anon_sym_RPAREN] = ACTIONS(4589), + [anon_sym_LPAREN2] = ACTIONS(4591), + [anon_sym_TILDE] = ACTIONS(4594), + [anon_sym_DASH] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4591), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_CARET] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_EQ_EQ] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_GT_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4596), + [anon_sym_LT_LT] = ACTIONS(4596), + [anon_sym_GT_GT] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4589), + [anon_sym___extension__] = ACTIONS(4587), + [anon_sym_extern] = ACTIONS(4587), + [anon_sym___attribute__] = ACTIONS(4587), + [anon_sym_COLON_COLON] = ACTIONS(4594), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4594), + [anon_sym___declspec] = ACTIONS(4587), + [anon_sym___based] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4594), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_register] = ACTIONS(4587), + [anon_sym_inline] = ACTIONS(4587), + [anon_sym___inline] = ACTIONS(4587), + [anon_sym___inline__] = ACTIONS(4587), + [anon_sym___forceinline] = ACTIONS(4587), + [anon_sym_thread_local] = ACTIONS(4587), + [anon_sym___thread] = ACTIONS(4587), + [anon_sym_const] = ACTIONS(4587), + [anon_sym_constexpr] = ACTIONS(4587), + [anon_sym_volatile] = ACTIONS(4587), + [anon_sym_restrict] = ACTIONS(4587), + [anon_sym___restrict__] = ACTIONS(4587), + [anon_sym__Atomic] = ACTIONS(4587), + [anon_sym__Noreturn] = ACTIONS(4587), + [anon_sym_noreturn] = ACTIONS(4587), + [anon_sym_mutable] = ACTIONS(4587), + [anon_sym_constinit] = ACTIONS(4587), + [anon_sym_consteval] = ACTIONS(4587), + [anon_sym_QMARK] = ACTIONS(4589), + [anon_sym_STAR_EQ] = ACTIONS(4589), + [anon_sym_SLASH_EQ] = ACTIONS(4589), + [anon_sym_PERCENT_EQ] = ACTIONS(4589), + [anon_sym_PLUS_EQ] = ACTIONS(4589), + [anon_sym_DASH_EQ] = ACTIONS(4589), + [anon_sym_LT_LT_EQ] = ACTIONS(4589), + [anon_sym_GT_GT_EQ] = ACTIONS(4589), + [anon_sym_AMP_EQ] = ACTIONS(4589), + [anon_sym_CARET_EQ] = ACTIONS(4589), + [anon_sym_PIPE_EQ] = ACTIONS(4589), + [anon_sym_and_eq] = ACTIONS(4596), + [anon_sym_or_eq] = ACTIONS(4596), + [anon_sym_xor_eq] = ACTIONS(4596), + [anon_sym_LT_EQ_GT] = ACTIONS(4589), + [anon_sym_or] = ACTIONS(4596), + [anon_sym_and] = ACTIONS(4596), + [anon_sym_bitor] = ACTIONS(4596), + [anon_sym_xor] = ACTIONS(4596), + [anon_sym_bitand] = ACTIONS(4596), + [anon_sym_not_eq] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_STAR] = ACTIONS(4589), + [anon_sym_DASH_GT] = ACTIONS(4589), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4587), + [anon_sym_decltype] = ACTIONS(4587), + [anon_sym_virtual] = ACTIONS(4587), + [anon_sym_alignas] = ACTIONS(4587), + [anon_sym_template] = ACTIONS(4587), + [anon_sym_operator] = ACTIONS(4587), }, [1691] = { - [sym__expression] = STATE(5023), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8293), - [sym_initializer_pair] = STATE(8293), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [sym_identifier] = ACTIONS(3504), - [anon_sym_COMMA] = ACTIONS(4236), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(4238), - [anon_sym_LBRACK] = ACTIONS(4230), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4591), + [anon_sym_COMMA] = ACTIONS(4591), + [anon_sym_RPAREN] = ACTIONS(4591), + [anon_sym_LPAREN2] = ACTIONS(4591), + [anon_sym_TILDE] = ACTIONS(4594), + [anon_sym_DASH] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4591), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_CARET] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_EQ_EQ] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_GT_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4596), + [anon_sym_LT_LT] = ACTIONS(4596), + [anon_sym_GT_GT] = ACTIONS(4596), + [anon_sym___extension__] = ACTIONS(4587), + [anon_sym_extern] = ACTIONS(4587), + [anon_sym___attribute__] = ACTIONS(4587), + [anon_sym_COLON_COLON] = ACTIONS(4594), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4594), + [anon_sym___declspec] = ACTIONS(4587), + [anon_sym___based] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4594), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_EQ] = ACTIONS(4598), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_register] = ACTIONS(4587), + [anon_sym_inline] = ACTIONS(4587), + [anon_sym___inline] = ACTIONS(4587), + [anon_sym___inline__] = ACTIONS(4587), + [anon_sym___forceinline] = ACTIONS(4587), + [anon_sym_thread_local] = ACTIONS(4587), + [anon_sym___thread] = ACTIONS(4587), + [anon_sym_const] = ACTIONS(4587), + [anon_sym_constexpr] = ACTIONS(4587), + [anon_sym_volatile] = ACTIONS(4587), + [anon_sym_restrict] = ACTIONS(4587), + [anon_sym___restrict__] = ACTIONS(4587), + [anon_sym__Atomic] = ACTIONS(4587), + [anon_sym__Noreturn] = ACTIONS(4587), + [anon_sym_noreturn] = ACTIONS(4587), + [anon_sym_mutable] = ACTIONS(4587), + [anon_sym_constinit] = ACTIONS(4587), + [anon_sym_consteval] = ACTIONS(4587), + [anon_sym_QMARK] = ACTIONS(4589), + [anon_sym_STAR_EQ] = ACTIONS(4589), + [anon_sym_SLASH_EQ] = ACTIONS(4589), + [anon_sym_PERCENT_EQ] = ACTIONS(4589), + [anon_sym_PLUS_EQ] = ACTIONS(4589), + [anon_sym_DASH_EQ] = ACTIONS(4589), + [anon_sym_LT_LT_EQ] = ACTIONS(4589), + [anon_sym_GT_GT_EQ] = ACTIONS(4589), + [anon_sym_AMP_EQ] = ACTIONS(4589), + [anon_sym_CARET_EQ] = ACTIONS(4589), + [anon_sym_PIPE_EQ] = ACTIONS(4589), + [anon_sym_and_eq] = ACTIONS(4596), + [anon_sym_or_eq] = ACTIONS(4596), + [anon_sym_xor_eq] = ACTIONS(4596), + [anon_sym_LT_EQ_GT] = ACTIONS(4589), + [anon_sym_or] = ACTIONS(4596), + [anon_sym_and] = ACTIONS(4596), + [anon_sym_bitor] = ACTIONS(4596), + [anon_sym_xor] = ACTIONS(4596), + [anon_sym_bitand] = ACTIONS(4596), + [anon_sym_not_eq] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_STAR] = ACTIONS(4589), + [anon_sym_DASH_GT] = ACTIONS(4596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4587), + [anon_sym_decltype] = ACTIONS(4587), + [anon_sym_virtual] = ACTIONS(4587), + [anon_sym_alignas] = ACTIONS(4587), + [anon_sym_template] = ACTIONS(4587), + [anon_sym_operator] = ACTIONS(4587), + [anon_sym_DASH_GT_STAR] = ACTIONS(4589), }, [1692] = { - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8017), - [sym_initializer_pair] = STATE(8017), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [sym_identifier] = ACTIONS(3504), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_LBRACK] = ACTIONS(4230), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4591), + [anon_sym_COMMA] = ACTIONS(4591), + [anon_sym_RPAREN] = ACTIONS(4591), + [anon_sym_LPAREN2] = ACTIONS(4591), + [anon_sym_TILDE] = ACTIONS(4594), + [anon_sym_DASH] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4591), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_CARET] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_EQ_EQ] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_GT_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4596), + [anon_sym_LT_LT] = ACTIONS(4596), + [anon_sym_GT_GT] = ACTIONS(4596), + [anon_sym___extension__] = ACTIONS(4587), + [anon_sym_extern] = ACTIONS(4587), + [anon_sym___attribute__] = ACTIONS(4587), + [anon_sym_COLON_COLON] = ACTIONS(4594), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4594), + [anon_sym___declspec] = ACTIONS(4587), + [anon_sym___based] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4594), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_EQ] = ACTIONS(4598), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_register] = ACTIONS(4587), + [anon_sym_inline] = ACTIONS(4587), + [anon_sym___inline] = ACTIONS(4587), + [anon_sym___inline__] = ACTIONS(4587), + [anon_sym___forceinline] = ACTIONS(4587), + [anon_sym_thread_local] = ACTIONS(4587), + [anon_sym___thread] = ACTIONS(4587), + [anon_sym_const] = ACTIONS(4587), + [anon_sym_constexpr] = ACTIONS(4587), + [anon_sym_volatile] = ACTIONS(4587), + [anon_sym_restrict] = ACTIONS(4587), + [anon_sym___restrict__] = ACTIONS(4587), + [anon_sym__Atomic] = ACTIONS(4587), + [anon_sym__Noreturn] = ACTIONS(4587), + [anon_sym_noreturn] = ACTIONS(4587), + [anon_sym_mutable] = ACTIONS(4587), + [anon_sym_constinit] = ACTIONS(4587), + [anon_sym_consteval] = ACTIONS(4587), + [anon_sym_QMARK] = ACTIONS(4589), + [anon_sym_STAR_EQ] = ACTIONS(4589), + [anon_sym_SLASH_EQ] = ACTIONS(4589), + [anon_sym_PERCENT_EQ] = ACTIONS(4589), + [anon_sym_PLUS_EQ] = ACTIONS(4589), + [anon_sym_DASH_EQ] = ACTIONS(4589), + [anon_sym_LT_LT_EQ] = ACTIONS(4589), + [anon_sym_GT_GT_EQ] = ACTIONS(4589), + [anon_sym_AMP_EQ] = ACTIONS(4589), + [anon_sym_CARET_EQ] = ACTIONS(4589), + [anon_sym_PIPE_EQ] = ACTIONS(4589), + [anon_sym_and_eq] = ACTIONS(4596), + [anon_sym_or_eq] = ACTIONS(4596), + [anon_sym_xor_eq] = ACTIONS(4596), + [anon_sym_LT_EQ_GT] = ACTIONS(4589), + [anon_sym_or] = ACTIONS(4596), + [anon_sym_and] = ACTIONS(4596), + [anon_sym_bitor] = ACTIONS(4596), + [anon_sym_xor] = ACTIONS(4596), + [anon_sym_bitand] = ACTIONS(4596), + [anon_sym_not_eq] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_STAR] = ACTIONS(4589), + [anon_sym_DASH_GT] = ACTIONS(4589), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4587), + [anon_sym_decltype] = ACTIONS(4587), + [anon_sym_virtual] = ACTIONS(4587), + [anon_sym_alignas] = ACTIONS(4587), + [anon_sym_template] = ACTIONS(4587), + [anon_sym_operator] = ACTIONS(4587), }, [1693] = { - [sym__expression] = STATE(4922), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8199), - [sym_initializer_pair] = STATE(8199), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [sym_identifier] = ACTIONS(3504), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(4246), - [anon_sym_LBRACK] = ACTIONS(4230), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym__declaration_modifiers] = STATE(2020), + [sym__declaration_specifiers] = STATE(3794), + [sym_attribute_specifier] = STATE(2020), + [sym_attribute_declaration] = STATE(2020), + [sym_ms_declspec_modifier] = STATE(2020), + [sym__abstract_declarator] = STATE(6147), + [sym_abstract_parenthesized_declarator] = STATE(5647), + [sym_abstract_pointer_declarator] = STATE(5647), + [sym_abstract_function_declarator] = STATE(5647), + [sym_abstract_array_declarator] = STATE(5647), + [sym_storage_class_specifier] = STATE(2020), + [sym_type_qualifier] = STATE(2020), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_parameter_list] = STATE(3550), + [sym_parameter_declaration] = STATE(6840), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2020), + [sym_alignas_specifier] = STATE(2020), + [sym_dependent_type] = STATE(3114), + [sym_optional_parameter_declaration] = STATE(6840), + [sym_variadic_parameter_declaration] = STATE(6840), + [sym_abstract_reference_declarator] = STATE(5647), + [sym__function_declarator_seq] = STATE(5604), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5953), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2020), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1962), + [anon_sym_RPAREN] = ACTIONS(4045), + [anon_sym_LPAREN2] = ACTIONS(4603), + [anon_sym_STAR] = ACTIONS(4605), + [anon_sym_AMP_AMP] = ACTIONS(4607), + [anon_sym_AMP] = ACTIONS(4609), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(4613), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(1948), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), }, [1694] = { - [sym__expression] = STATE(4943), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8648), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8780), - [sym_initializer_pair] = STATE(8780), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(4248), - [anon_sym_LBRACK] = ACTIONS(4230), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym__declaration_modifiers] = STATE(2020), + [sym__declaration_specifiers] = STATE(3794), + [sym_attribute_specifier] = STATE(2020), + [sym_attribute_declaration] = STATE(2020), + [sym_ms_declspec_modifier] = STATE(2020), + [sym__abstract_declarator] = STATE(6170), + [sym_abstract_parenthesized_declarator] = STATE(5647), + [sym_abstract_pointer_declarator] = STATE(5647), + [sym_abstract_function_declarator] = STATE(5647), + [sym_abstract_array_declarator] = STATE(5647), + [sym_storage_class_specifier] = STATE(2020), + [sym_type_qualifier] = STATE(2020), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_parameter_list] = STATE(3550), + [sym_parameter_declaration] = STATE(6840), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2020), + [sym_alignas_specifier] = STATE(2020), + [sym_dependent_type] = STATE(3114), + [sym_optional_parameter_declaration] = STATE(6840), + [sym_variadic_parameter_declaration] = STATE(6840), + [sym_abstract_reference_declarator] = STATE(5647), + [sym__function_declarator_seq] = STATE(5604), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5953), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2020), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1962), + [anon_sym_RPAREN] = ACTIONS(4045), + [anon_sym_LPAREN2] = ACTIONS(4603), + [anon_sym_STAR] = ACTIONS(4605), + [anon_sym_AMP_AMP] = ACTIONS(4607), + [anon_sym_AMP] = ACTIONS(4609), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(4613), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(1948), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), }, [1695] = { - [sym__expression] = STATE(4961), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8105), - [sym_initializer_pair] = STATE(8105), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [sym_identifier] = ACTIONS(3504), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(4252), - [anon_sym_LBRACK] = ACTIONS(4230), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4549), + [anon_sym_COMMA] = ACTIONS(4549), + [anon_sym_RPAREN] = ACTIONS(4549), + [anon_sym_LPAREN2] = ACTIONS(4549), + [anon_sym_TILDE] = ACTIONS(4549), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_STAR] = ACTIONS(4547), + [anon_sym_SLASH] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4547), + [anon_sym_PIPE_PIPE] = ACTIONS(4549), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4547), + [anon_sym_CARET] = ACTIONS(4547), + [anon_sym_AMP] = ACTIONS(4547), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_GT] = ACTIONS(4547), + [anon_sym_GT_EQ] = ACTIONS(4549), + [anon_sym_LT_EQ] = ACTIONS(4547), + [anon_sym_LT] = ACTIONS(4547), + [anon_sym_LT_LT] = ACTIONS(4547), + [anon_sym_GT_GT] = ACTIONS(4547), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_extern] = ACTIONS(4547), + [anon_sym___attribute__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4549), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4549), + [anon_sym___declspec] = ACTIONS(4547), + [anon_sym___based] = ACTIONS(4547), + [anon_sym_LBRACE] = ACTIONS(4549), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_static] = ACTIONS(4547), + [anon_sym_register] = ACTIONS(4547), + [anon_sym_inline] = ACTIONS(4547), + [anon_sym___inline] = ACTIONS(4547), + [anon_sym___inline__] = ACTIONS(4547), + [anon_sym___forceinline] = ACTIONS(4547), + [anon_sym_thread_local] = ACTIONS(4547), + [anon_sym___thread] = ACTIONS(4547), + [anon_sym_const] = ACTIONS(4547), + [anon_sym_constexpr] = ACTIONS(4547), + [anon_sym_volatile] = ACTIONS(4547), + [anon_sym_restrict] = ACTIONS(4547), + [anon_sym___restrict__] = ACTIONS(4547), + [anon_sym__Atomic] = ACTIONS(4547), + [anon_sym__Noreturn] = ACTIONS(4547), + [anon_sym_noreturn] = ACTIONS(4547), + [anon_sym_mutable] = ACTIONS(4547), + [anon_sym_constinit] = ACTIONS(4547), + [anon_sym_consteval] = ACTIONS(4547), + [anon_sym_QMARK] = ACTIONS(4549), + [anon_sym_STAR_EQ] = ACTIONS(4549), + [anon_sym_SLASH_EQ] = ACTIONS(4549), + [anon_sym_PERCENT_EQ] = ACTIONS(4549), + [anon_sym_PLUS_EQ] = ACTIONS(4549), + [anon_sym_DASH_EQ] = ACTIONS(4549), + [anon_sym_LT_LT_EQ] = ACTIONS(4549), + [anon_sym_GT_GT_EQ] = ACTIONS(4549), + [anon_sym_AMP_EQ] = ACTIONS(4549), + [anon_sym_CARET_EQ] = ACTIONS(4549), + [anon_sym_PIPE_EQ] = ACTIONS(4549), + [anon_sym_LT_EQ_GT] = ACTIONS(4549), + [anon_sym_or] = ACTIONS(4547), + [anon_sym_and] = ACTIONS(4547), + [anon_sym_bitor] = ACTIONS(4547), + [anon_sym_xor] = ACTIONS(4547), + [anon_sym_bitand] = ACTIONS(4547), + [anon_sym_not_eq] = ACTIONS(4547), + [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4549), + [anon_sym_DOT] = ACTIONS(4547), + [anon_sym_DOT_STAR] = ACTIONS(4549), + [anon_sym_DASH_GT] = ACTIONS(4547), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4547), + [anon_sym_decltype] = ACTIONS(4547), + [anon_sym_virtual] = ACTIONS(4547), + [anon_sym_alignas] = ACTIONS(4547), + [anon_sym_template] = ACTIONS(4547), + [anon_sym_operator] = ACTIONS(4547), + [anon_sym_DASH_GT_STAR] = ACTIONS(4549), }, [1696] = { - [sym__expression] = STATE(5045), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8780), - [sym_initializer_pair] = STATE(8780), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(4254), - [anon_sym_LBRACK] = ACTIONS(4230), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4539), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4541), + [anon_sym_COMMA] = ACTIONS(4541), + [anon_sym_RPAREN] = ACTIONS(4541), + [anon_sym_LPAREN2] = ACTIONS(4541), + [anon_sym_TILDE] = ACTIONS(4541), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_STAR] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4539), + [anon_sym_PERCENT] = ACTIONS(4539), + [anon_sym_PIPE_PIPE] = ACTIONS(4541), + [anon_sym_AMP_AMP] = ACTIONS(4541), + [anon_sym_PIPE] = ACTIONS(4539), + [anon_sym_CARET] = ACTIONS(4539), + [anon_sym_AMP] = ACTIONS(4539), + [anon_sym_EQ_EQ] = ACTIONS(4541), + [anon_sym_BANG_EQ] = ACTIONS(4541), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_GT_EQ] = ACTIONS(4541), + [anon_sym_LT_EQ] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(4539), + [anon_sym_LT_LT] = ACTIONS(4539), + [anon_sym_GT_GT] = ACTIONS(4539), + [anon_sym___extension__] = ACTIONS(4539), + [anon_sym_extern] = ACTIONS(4539), + [anon_sym___attribute__] = ACTIONS(4539), + [anon_sym_COLON_COLON] = ACTIONS(4541), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4541), + [anon_sym___declspec] = ACTIONS(4539), + [anon_sym___based] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_LBRACK] = ACTIONS(4539), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_static] = ACTIONS(4539), + [anon_sym_register] = ACTIONS(4539), + [anon_sym_inline] = ACTIONS(4539), + [anon_sym___inline] = ACTIONS(4539), + [anon_sym___inline__] = ACTIONS(4539), + [anon_sym___forceinline] = ACTIONS(4539), + [anon_sym_thread_local] = ACTIONS(4539), + [anon_sym___thread] = ACTIONS(4539), + [anon_sym_const] = ACTIONS(4539), + [anon_sym_constexpr] = ACTIONS(4539), + [anon_sym_volatile] = ACTIONS(4539), + [anon_sym_restrict] = ACTIONS(4539), + [anon_sym___restrict__] = ACTIONS(4539), + [anon_sym__Atomic] = ACTIONS(4539), + [anon_sym__Noreturn] = ACTIONS(4539), + [anon_sym_noreturn] = ACTIONS(4539), + [anon_sym_mutable] = ACTIONS(4539), + [anon_sym_constinit] = ACTIONS(4539), + [anon_sym_consteval] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4541), + [anon_sym_SLASH_EQ] = ACTIONS(4541), + [anon_sym_PERCENT_EQ] = ACTIONS(4541), + [anon_sym_PLUS_EQ] = ACTIONS(4541), + [anon_sym_DASH_EQ] = ACTIONS(4541), + [anon_sym_LT_LT_EQ] = ACTIONS(4541), + [anon_sym_GT_GT_EQ] = ACTIONS(4541), + [anon_sym_AMP_EQ] = ACTIONS(4541), + [anon_sym_CARET_EQ] = ACTIONS(4541), + [anon_sym_PIPE_EQ] = ACTIONS(4541), + [anon_sym_LT_EQ_GT] = ACTIONS(4541), + [anon_sym_or] = ACTIONS(4539), + [anon_sym_and] = ACTIONS(4539), + [anon_sym_bitor] = ACTIONS(4539), + [anon_sym_xor] = ACTIONS(4539), + [anon_sym_bitand] = ACTIONS(4539), + [anon_sym_not_eq] = ACTIONS(4539), + [anon_sym_DASH_DASH] = ACTIONS(4541), + [anon_sym_PLUS_PLUS] = ACTIONS(4541), + [anon_sym_DOT] = ACTIONS(4539), + [anon_sym_DOT_STAR] = ACTIONS(4541), + [anon_sym_DASH_GT] = ACTIONS(4539), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4539), + [anon_sym_decltype] = ACTIONS(4539), + [anon_sym_virtual] = ACTIONS(4539), + [anon_sym_alignas] = ACTIONS(4539), + [anon_sym_template] = ACTIONS(4539), + [anon_sym_operator] = ACTIONS(4539), + [anon_sym_DASH_GT_STAR] = ACTIONS(4541), }, [1697] = { - [sym__expression] = STATE(5045), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8780), - [sym_initializer_pair] = STATE(8780), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4230), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4545), + [anon_sym_COMMA] = ACTIONS(4545), + [anon_sym_RPAREN] = ACTIONS(4545), + [anon_sym_LPAREN2] = ACTIONS(4545), + [anon_sym_TILDE] = ACTIONS(4545), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4543), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE] = ACTIONS(4543), + [anon_sym_CARET] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4543), + [anon_sym_EQ_EQ] = ACTIONS(4545), + [anon_sym_BANG_EQ] = ACTIONS(4545), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_GT_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ] = ACTIONS(4543), + [anon_sym_LT] = ACTIONS(4543), + [anon_sym_LT_LT] = ACTIONS(4543), + [anon_sym_GT_GT] = ACTIONS(4543), + [anon_sym___extension__] = ACTIONS(4543), + [anon_sym_extern] = ACTIONS(4543), + [anon_sym___attribute__] = ACTIONS(4543), + [anon_sym_COLON_COLON] = ACTIONS(4545), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4545), + [anon_sym___declspec] = ACTIONS(4543), + [anon_sym___based] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_LBRACK] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_static] = ACTIONS(4543), + [anon_sym_register] = ACTIONS(4543), + [anon_sym_inline] = ACTIONS(4543), + [anon_sym___inline] = ACTIONS(4543), + [anon_sym___inline__] = ACTIONS(4543), + [anon_sym___forceinline] = ACTIONS(4543), + [anon_sym_thread_local] = ACTIONS(4543), + [anon_sym___thread] = ACTIONS(4543), + [anon_sym_const] = ACTIONS(4543), + [anon_sym_constexpr] = ACTIONS(4543), + [anon_sym_volatile] = ACTIONS(4543), + [anon_sym_restrict] = ACTIONS(4543), + [anon_sym___restrict__] = ACTIONS(4543), + [anon_sym__Atomic] = ACTIONS(4543), + [anon_sym__Noreturn] = ACTIONS(4543), + [anon_sym_noreturn] = ACTIONS(4543), + [anon_sym_mutable] = ACTIONS(4543), + [anon_sym_constinit] = ACTIONS(4543), + [anon_sym_consteval] = ACTIONS(4543), + [anon_sym_QMARK] = ACTIONS(4545), + [anon_sym_STAR_EQ] = ACTIONS(4545), + [anon_sym_SLASH_EQ] = ACTIONS(4545), + [anon_sym_PERCENT_EQ] = ACTIONS(4545), + [anon_sym_PLUS_EQ] = ACTIONS(4545), + [anon_sym_DASH_EQ] = ACTIONS(4545), + [anon_sym_LT_LT_EQ] = ACTIONS(4545), + [anon_sym_GT_GT_EQ] = ACTIONS(4545), + [anon_sym_AMP_EQ] = ACTIONS(4545), + [anon_sym_CARET_EQ] = ACTIONS(4545), + [anon_sym_PIPE_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ_GT] = ACTIONS(4545), + [anon_sym_or] = ACTIONS(4543), + [anon_sym_and] = ACTIONS(4543), + [anon_sym_bitor] = ACTIONS(4543), + [anon_sym_xor] = ACTIONS(4543), + [anon_sym_bitand] = ACTIONS(4543), + [anon_sym_not_eq] = ACTIONS(4543), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_PLUS_PLUS] = ACTIONS(4545), + [anon_sym_DOT] = ACTIONS(4543), + [anon_sym_DOT_STAR] = ACTIONS(4545), + [anon_sym_DASH_GT] = ACTIONS(4543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4543), + [anon_sym_decltype] = ACTIONS(4543), + [anon_sym_virtual] = ACTIONS(4543), + [anon_sym_alignas] = ACTIONS(4543), + [anon_sym_template] = ACTIONS(4543), + [anon_sym_operator] = ACTIONS(4543), + [anon_sym_DASH_GT_STAR] = ACTIONS(4545), }, [1698] = { - [sym__expression] = STATE(5045), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8780), - [sym_initializer_pair] = STATE(8780), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4230), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4591), + [anon_sym_COMMA] = ACTIONS(4591), + [anon_sym_RPAREN] = ACTIONS(4591), + [anon_sym_LPAREN2] = ACTIONS(4591), + [anon_sym_TILDE] = ACTIONS(4594), + [anon_sym_DASH] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4591), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_CARET] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_EQ_EQ] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_GT_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4596), + [anon_sym_LT_LT] = ACTIONS(4596), + [anon_sym_GT_GT] = ACTIONS(4596), + [anon_sym___extension__] = ACTIONS(4587), + [anon_sym_extern] = ACTIONS(4587), + [anon_sym___attribute__] = ACTIONS(4587), + [anon_sym_COLON_COLON] = ACTIONS(4594), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4594), + [anon_sym___declspec] = ACTIONS(4587), + [anon_sym___based] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4594), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_EQ] = ACTIONS(4598), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_register] = ACTIONS(4587), + [anon_sym_inline] = ACTIONS(4587), + [anon_sym___inline] = ACTIONS(4587), + [anon_sym___inline__] = ACTIONS(4587), + [anon_sym___forceinline] = ACTIONS(4587), + [anon_sym_thread_local] = ACTIONS(4587), + [anon_sym___thread] = ACTIONS(4587), + [anon_sym_const] = ACTIONS(4587), + [anon_sym_constexpr] = ACTIONS(4587), + [anon_sym_volatile] = ACTIONS(4587), + [anon_sym_restrict] = ACTIONS(4587), + [anon_sym___restrict__] = ACTIONS(4587), + [anon_sym__Atomic] = ACTIONS(4587), + [anon_sym__Noreturn] = ACTIONS(4587), + [anon_sym_noreturn] = ACTIONS(4587), + [anon_sym_mutable] = ACTIONS(4587), + [anon_sym_constinit] = ACTIONS(4587), + [anon_sym_consteval] = ACTIONS(4587), + [anon_sym_QMARK] = ACTIONS(4589), + [anon_sym_STAR_EQ] = ACTIONS(4589), + [anon_sym_SLASH_EQ] = ACTIONS(4589), + [anon_sym_PERCENT_EQ] = ACTIONS(4589), + [anon_sym_PLUS_EQ] = ACTIONS(4589), + [anon_sym_DASH_EQ] = ACTIONS(4589), + [anon_sym_LT_LT_EQ] = ACTIONS(4589), + [anon_sym_GT_GT_EQ] = ACTIONS(4589), + [anon_sym_AMP_EQ] = ACTIONS(4589), + [anon_sym_CARET_EQ] = ACTIONS(4589), + [anon_sym_PIPE_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ_GT] = ACTIONS(4589), + [anon_sym_or] = ACTIONS(4596), + [anon_sym_and] = ACTIONS(4596), + [anon_sym_bitor] = ACTIONS(4596), + [anon_sym_xor] = ACTIONS(4596), + [anon_sym_bitand] = ACTIONS(4596), + [anon_sym_not_eq] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_STAR] = ACTIONS(4589), + [anon_sym_DASH_GT] = ACTIONS(4596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4587), + [anon_sym_decltype] = ACTIONS(4587), + [anon_sym_virtual] = ACTIONS(4587), + [anon_sym_alignas] = ACTIONS(4587), + [anon_sym_template] = ACTIONS(4587), + [anon_sym_operator] = ACTIONS(4587), + [anon_sym_DASH_GT_STAR] = ACTIONS(4589), }, [1699] = { - [sym__expression] = STATE(5045), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8780), - [sym_initializer_pair] = STATE(8780), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4230), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4557), + [anon_sym_COMMA] = ACTIONS(4557), + [anon_sym_RPAREN] = ACTIONS(4557), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_TILDE] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4555), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_PERCENT] = ACTIONS(4555), + [anon_sym_PIPE_PIPE] = ACTIONS(4557), + [anon_sym_AMP_AMP] = ACTIONS(4557), + [anon_sym_PIPE] = ACTIONS(4555), + [anon_sym_CARET] = ACTIONS(4555), + [anon_sym_AMP] = ACTIONS(4555), + [anon_sym_EQ_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_GT_EQ] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_LT_LT] = ACTIONS(4555), + [anon_sym_GT_GT] = ACTIONS(4555), + [anon_sym___extension__] = ACTIONS(4555), + [anon_sym_extern] = ACTIONS(4555), + [anon_sym___attribute__] = ACTIONS(4555), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4557), + [anon_sym___declspec] = ACTIONS(4555), + [anon_sym___based] = ACTIONS(4555), + [anon_sym_LBRACE] = ACTIONS(4557), + [anon_sym_LBRACK] = ACTIONS(4555), + [anon_sym_EQ] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_register] = ACTIONS(4555), + [anon_sym_inline] = ACTIONS(4555), + [anon_sym___inline] = ACTIONS(4555), + [anon_sym___inline__] = ACTIONS(4555), + [anon_sym___forceinline] = ACTIONS(4555), + [anon_sym_thread_local] = ACTIONS(4555), + [anon_sym___thread] = ACTIONS(4555), + [anon_sym_const] = ACTIONS(4555), + [anon_sym_constexpr] = ACTIONS(4555), + [anon_sym_volatile] = ACTIONS(4555), + [anon_sym_restrict] = ACTIONS(4555), + [anon_sym___restrict__] = ACTIONS(4555), + [anon_sym__Atomic] = ACTIONS(4555), + [anon_sym__Noreturn] = ACTIONS(4555), + [anon_sym_noreturn] = ACTIONS(4555), + [anon_sym_mutable] = ACTIONS(4555), + [anon_sym_constinit] = ACTIONS(4555), + [anon_sym_consteval] = ACTIONS(4555), + [anon_sym_QMARK] = ACTIONS(4557), + [anon_sym_STAR_EQ] = ACTIONS(4557), + [anon_sym_SLASH_EQ] = ACTIONS(4557), + [anon_sym_PERCENT_EQ] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(4557), + [anon_sym_DASH_EQ] = ACTIONS(4557), + [anon_sym_LT_LT_EQ] = ACTIONS(4557), + [anon_sym_GT_GT_EQ] = ACTIONS(4557), + [anon_sym_AMP_EQ] = ACTIONS(4557), + [anon_sym_CARET_EQ] = ACTIONS(4557), + [anon_sym_PIPE_EQ] = ACTIONS(4557), + [anon_sym_LT_EQ_GT] = ACTIONS(4557), + [anon_sym_or] = ACTIONS(4555), + [anon_sym_and] = ACTIONS(4555), + [anon_sym_bitor] = ACTIONS(4555), + [anon_sym_xor] = ACTIONS(4555), + [anon_sym_bitand] = ACTIONS(4555), + [anon_sym_not_eq] = ACTIONS(4555), + [anon_sym_DASH_DASH] = ACTIONS(4557), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DOT] = ACTIONS(4555), + [anon_sym_DOT_STAR] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4555), + [anon_sym_decltype] = ACTIONS(4555), + [anon_sym_virtual] = ACTIONS(4555), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym_template] = ACTIONS(4555), + [anon_sym_operator] = ACTIONS(4555), + [anon_sym_DASH_GT_STAR] = ACTIONS(4557), }, [1700] = { - [sym__expression] = STATE(5045), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8780), - [sym_initializer_pair] = STATE(8780), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4230), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4585), + [anon_sym_COMMA] = ACTIONS(4585), + [anon_sym_RPAREN] = ACTIONS(4585), + [anon_sym_LPAREN2] = ACTIONS(4585), + [anon_sym_TILDE] = ACTIONS(4585), + [anon_sym_DASH] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(4583), + [anon_sym_SLASH] = ACTIONS(4583), + [anon_sym_PERCENT] = ACTIONS(4583), + [anon_sym_PIPE_PIPE] = ACTIONS(4585), + [anon_sym_AMP_AMP] = ACTIONS(4585), + [anon_sym_PIPE] = ACTIONS(4583), + [anon_sym_CARET] = ACTIONS(4583), + [anon_sym_AMP] = ACTIONS(4583), + [anon_sym_EQ_EQ] = ACTIONS(4585), + [anon_sym_BANG_EQ] = ACTIONS(4585), + [anon_sym_GT] = ACTIONS(4583), + [anon_sym_GT_EQ] = ACTIONS(4585), + [anon_sym_LT_EQ] = ACTIONS(4583), + [anon_sym_LT] = ACTIONS(4583), + [anon_sym_LT_LT] = ACTIONS(4583), + [anon_sym_GT_GT] = ACTIONS(4583), + [anon_sym___extension__] = ACTIONS(4583), + [anon_sym_extern] = ACTIONS(4583), + [anon_sym___attribute__] = ACTIONS(4583), + [anon_sym_COLON_COLON] = ACTIONS(4585), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4585), + [anon_sym___declspec] = ACTIONS(4583), + [anon_sym___based] = ACTIONS(4583), + [anon_sym_LBRACE] = ACTIONS(4585), + [anon_sym_LBRACK] = ACTIONS(4583), + [anon_sym_EQ] = ACTIONS(4583), + [anon_sym_static] = ACTIONS(4583), + [anon_sym_register] = ACTIONS(4583), + [anon_sym_inline] = ACTIONS(4583), + [anon_sym___inline] = ACTIONS(4583), + [anon_sym___inline__] = ACTIONS(4583), + [anon_sym___forceinline] = ACTIONS(4583), + [anon_sym_thread_local] = ACTIONS(4583), + [anon_sym___thread] = ACTIONS(4583), + [anon_sym_const] = ACTIONS(4583), + [anon_sym_constexpr] = ACTIONS(4583), + [anon_sym_volatile] = ACTIONS(4583), + [anon_sym_restrict] = ACTIONS(4583), + [anon_sym___restrict__] = ACTIONS(4583), + [anon_sym__Atomic] = ACTIONS(4583), + [anon_sym__Noreturn] = ACTIONS(4583), + [anon_sym_noreturn] = ACTIONS(4583), + [anon_sym_mutable] = ACTIONS(4583), + [anon_sym_constinit] = ACTIONS(4583), + [anon_sym_consteval] = ACTIONS(4583), + [anon_sym_QMARK] = ACTIONS(4585), + [anon_sym_STAR_EQ] = ACTIONS(4585), + [anon_sym_SLASH_EQ] = ACTIONS(4585), + [anon_sym_PERCENT_EQ] = ACTIONS(4585), + [anon_sym_PLUS_EQ] = ACTIONS(4585), + [anon_sym_DASH_EQ] = ACTIONS(4585), + [anon_sym_LT_LT_EQ] = ACTIONS(4585), + [anon_sym_GT_GT_EQ] = ACTIONS(4585), + [anon_sym_AMP_EQ] = ACTIONS(4585), + [anon_sym_CARET_EQ] = ACTIONS(4585), + [anon_sym_PIPE_EQ] = ACTIONS(4585), + [anon_sym_LT_EQ_GT] = ACTIONS(4585), + [anon_sym_or] = ACTIONS(4583), + [anon_sym_and] = ACTIONS(4583), + [anon_sym_bitor] = ACTIONS(4583), + [anon_sym_xor] = ACTIONS(4583), + [anon_sym_bitand] = ACTIONS(4583), + [anon_sym_not_eq] = ACTIONS(4583), + [anon_sym_DASH_DASH] = ACTIONS(4585), + [anon_sym_PLUS_PLUS] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4583), + [anon_sym_DOT_STAR] = ACTIONS(4585), + [anon_sym_DASH_GT] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4583), + [anon_sym_decltype] = ACTIONS(4583), + [anon_sym_virtual] = ACTIONS(4583), + [anon_sym_alignas] = ACTIONS(4583), + [anon_sym_template] = ACTIONS(4583), + [anon_sym_operator] = ACTIONS(4583), + [anon_sym_DASH_GT_STAR] = ACTIONS(4585), }, [1701] = { - [sym__expression] = STATE(5045), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8780), - [sym_initializer_pair] = STATE(8780), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(4264), - [anon_sym_LBRACK] = ACTIONS(4230), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4578), + [anon_sym_COMMA] = ACTIONS(4578), + [anon_sym_RPAREN] = ACTIONS(4578), + [anon_sym_LPAREN2] = ACTIONS(4578), + [anon_sym_TILDE] = ACTIONS(4578), + [anon_sym_DASH] = ACTIONS(4576), + [anon_sym_PLUS] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4576), + [anon_sym_SLASH] = ACTIONS(4576), + [anon_sym_PERCENT] = ACTIONS(4576), + [anon_sym_PIPE_PIPE] = ACTIONS(4578), + [anon_sym_AMP_AMP] = ACTIONS(4578), + [anon_sym_PIPE] = ACTIONS(4576), + [anon_sym_CARET] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4576), + [anon_sym_EQ_EQ] = ACTIONS(4578), + [anon_sym_BANG_EQ] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4576), + [anon_sym_GT_EQ] = ACTIONS(4578), + [anon_sym_LT_EQ] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4576), + [anon_sym_LT_LT] = ACTIONS(4576), + [anon_sym_GT_GT] = ACTIONS(4576), + [anon_sym___extension__] = ACTIONS(4576), + [anon_sym_extern] = ACTIONS(4576), + [anon_sym___attribute__] = ACTIONS(4576), + [anon_sym_COLON_COLON] = ACTIONS(4578), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4578), + [anon_sym___declspec] = ACTIONS(4576), + [anon_sym___based] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4578), + [anon_sym_LBRACK] = ACTIONS(4576), + [anon_sym_EQ] = ACTIONS(4576), + [anon_sym_static] = ACTIONS(4576), + [anon_sym_register] = ACTIONS(4576), + [anon_sym_inline] = ACTIONS(4576), + [anon_sym___inline] = ACTIONS(4576), + [anon_sym___inline__] = ACTIONS(4576), + [anon_sym___forceinline] = ACTIONS(4576), + [anon_sym_thread_local] = ACTIONS(4576), + [anon_sym___thread] = ACTIONS(4576), + [anon_sym_const] = ACTIONS(4576), + [anon_sym_constexpr] = ACTIONS(4576), + [anon_sym_volatile] = ACTIONS(4576), + [anon_sym_restrict] = ACTIONS(4576), + [anon_sym___restrict__] = ACTIONS(4576), + [anon_sym__Atomic] = ACTIONS(4576), + [anon_sym__Noreturn] = ACTIONS(4576), + [anon_sym_noreturn] = ACTIONS(4576), + [anon_sym_mutable] = ACTIONS(4576), + [anon_sym_constinit] = ACTIONS(4576), + [anon_sym_consteval] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4578), + [anon_sym_STAR_EQ] = ACTIONS(4578), + [anon_sym_SLASH_EQ] = ACTIONS(4578), + [anon_sym_PERCENT_EQ] = ACTIONS(4578), + [anon_sym_PLUS_EQ] = ACTIONS(4578), + [anon_sym_DASH_EQ] = ACTIONS(4578), + [anon_sym_LT_LT_EQ] = ACTIONS(4578), + [anon_sym_GT_GT_EQ] = ACTIONS(4578), + [anon_sym_AMP_EQ] = ACTIONS(4578), + [anon_sym_CARET_EQ] = ACTIONS(4578), + [anon_sym_PIPE_EQ] = ACTIONS(4578), + [anon_sym_LT_EQ_GT] = ACTIONS(4578), + [anon_sym_or] = ACTIONS(4576), + [anon_sym_and] = ACTIONS(4576), + [anon_sym_bitor] = ACTIONS(4576), + [anon_sym_xor] = ACTIONS(4576), + [anon_sym_bitand] = ACTIONS(4576), + [anon_sym_not_eq] = ACTIONS(4576), + [anon_sym_DASH_DASH] = ACTIONS(4578), + [anon_sym_PLUS_PLUS] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4576), + [anon_sym_DOT_STAR] = ACTIONS(4578), + [anon_sym_DASH_GT] = ACTIONS(4576), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4576), + [anon_sym_decltype] = ACTIONS(4576), + [anon_sym_virtual] = ACTIONS(4576), + [anon_sym_alignas] = ACTIONS(4576), + [anon_sym_template] = ACTIONS(4576), + [anon_sym_operator] = ACTIONS(4576), + [anon_sym_DASH_GT_STAR] = ACTIONS(4578), }, [1702] = { - [sym__expression] = STATE(5045), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8780), - [sym_initializer_pair] = STATE(8780), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4230), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_RPAREN] = ACTIONS(4553), + [anon_sym_LPAREN2] = ACTIONS(4553), + [anon_sym_TILDE] = ACTIONS(4553), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_PIPE_PIPE] = ACTIONS(4553), + [anon_sym_AMP_AMP] = ACTIONS(4553), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_LT_LT] = ACTIONS(4551), + [anon_sym_GT_GT] = ACTIONS(4551), + [anon_sym___extension__] = ACTIONS(4551), + [anon_sym_extern] = ACTIONS(4551), + [anon_sym___attribute__] = ACTIONS(4551), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4553), + [anon_sym___declspec] = ACTIONS(4551), + [anon_sym___based] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_static] = ACTIONS(4551), + [anon_sym_register] = ACTIONS(4551), + [anon_sym_inline] = ACTIONS(4551), + [anon_sym___inline] = ACTIONS(4551), + [anon_sym___inline__] = ACTIONS(4551), + [anon_sym___forceinline] = ACTIONS(4551), + [anon_sym_thread_local] = ACTIONS(4551), + [anon_sym___thread] = ACTIONS(4551), + [anon_sym_const] = ACTIONS(4551), + [anon_sym_constexpr] = ACTIONS(4551), + [anon_sym_volatile] = ACTIONS(4551), + [anon_sym_restrict] = ACTIONS(4551), + [anon_sym___restrict__] = ACTIONS(4551), + [anon_sym__Atomic] = ACTIONS(4551), + [anon_sym__Noreturn] = ACTIONS(4551), + [anon_sym_noreturn] = ACTIONS(4551), + [anon_sym_mutable] = ACTIONS(4551), + [anon_sym_constinit] = ACTIONS(4551), + [anon_sym_consteval] = ACTIONS(4551), + [anon_sym_QMARK] = ACTIONS(4553), + [anon_sym_STAR_EQ] = ACTIONS(4553), + [anon_sym_SLASH_EQ] = ACTIONS(4553), + [anon_sym_PERCENT_EQ] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(4553), + [anon_sym_DASH_EQ] = ACTIONS(4553), + [anon_sym_LT_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_GT_EQ] = ACTIONS(4553), + [anon_sym_AMP_EQ] = ACTIONS(4553), + [anon_sym_CARET_EQ] = ACTIONS(4553), + [anon_sym_PIPE_EQ] = ACTIONS(4553), + [anon_sym_LT_EQ_GT] = ACTIONS(4553), + [anon_sym_or] = ACTIONS(4551), + [anon_sym_and] = ACTIONS(4551), + [anon_sym_bitor] = ACTIONS(4551), + [anon_sym_xor] = ACTIONS(4551), + [anon_sym_bitand] = ACTIONS(4551), + [anon_sym_not_eq] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_PLUS_PLUS] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4551), + [anon_sym_DOT_STAR] = ACTIONS(4553), + [anon_sym_DASH_GT] = ACTIONS(4551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4551), + [anon_sym_decltype] = ACTIONS(4551), + [anon_sym_virtual] = ACTIONS(4551), + [anon_sym_alignas] = ACTIONS(4551), + [anon_sym_template] = ACTIONS(4551), + [anon_sym_operator] = ACTIONS(4551), + [anon_sym_DASH_GT_STAR] = ACTIONS(4553), }, [1703] = { - [sym__expression] = STATE(5045), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8780), - [sym_initializer_pair] = STATE(8780), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LBRACK] = ACTIONS(4230), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(2154), + [sym_template_argument_list] = STATE(1919), + [sym_raw_string_literal] = STATE(2154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_RPAREN] = ACTIONS(4063), + [anon_sym_LPAREN2] = ACTIONS(4063), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4071), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4101), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym___extension__] = ACTIONS(4067), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4615), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(4069), + [anon_sym_const] = ACTIONS(4059), + [anon_sym_constexpr] = ACTIONS(4067), + [anon_sym_volatile] = ACTIONS(4067), + [anon_sym_restrict] = ACTIONS(4067), + [anon_sym___restrict__] = ACTIONS(4067), + [anon_sym__Atomic] = ACTIONS(4067), + [anon_sym__Noreturn] = ACTIONS(4067), + [anon_sym_noreturn] = ACTIONS(4067), + [anon_sym_mutable] = ACTIONS(4067), + [anon_sym_constinit] = ACTIONS(4067), + [anon_sym_consteval] = ACTIONS(4067), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4061), + [anon_sym_SLASH_EQ] = ACTIONS(4061), + [anon_sym_PERCENT_EQ] = ACTIONS(4061), + [anon_sym_PLUS_EQ] = ACTIONS(4061), + [anon_sym_DASH_EQ] = ACTIONS(4061), + [anon_sym_LT_LT_EQ] = ACTIONS(4061), + [anon_sym_GT_GT_EQ] = ACTIONS(4061), + [anon_sym_AMP_EQ] = ACTIONS(4061), + [anon_sym_CARET_EQ] = ACTIONS(4061), + [anon_sym_PIPE_EQ] = ACTIONS(4061), + [anon_sym_and_eq] = ACTIONS(4617), + [anon_sym_or_eq] = ACTIONS(4617), + [anon_sym_xor_eq] = ACTIONS(4617), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4069), + [anon_sym_L_DQUOTE] = ACTIONS(4106), + [anon_sym_u_DQUOTE] = ACTIONS(4106), + [anon_sym_U_DQUOTE] = ACTIONS(4106), + [anon_sym_u8_DQUOTE] = ACTIONS(4106), + [anon_sym_DQUOTE] = ACTIONS(4106), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4067), + [anon_sym_decltype] = ACTIONS(4067), + [anon_sym_R_DQUOTE] = ACTIONS(4108), + [anon_sym_LR_DQUOTE] = ACTIONS(4108), + [anon_sym_uR_DQUOTE] = ACTIONS(4108), + [anon_sym_UR_DQUOTE] = ACTIONS(4108), + [anon_sym_u8R_DQUOTE] = ACTIONS(4108), + [anon_sym_DASH_GT_STAR] = ACTIONS(4061), }, [1704] = { - [sym__expression] = STATE(5045), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8780), - [sym_initializer_pair] = STATE(8780), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(4248), - [anon_sym_LBRACK] = ACTIONS(4230), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(2154), + [sym_template_argument_list] = STATE(2112), + [sym_raw_string_literal] = STATE(2154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_RPAREN] = ACTIONS(4074), + [anon_sym_LPAREN2] = ACTIONS(4074), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4071), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4619), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym___extension__] = ACTIONS(4067), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4074), + [anon_sym_EQ] = ACTIONS(4069), + [anon_sym_const] = ACTIONS(4059), + [anon_sym_constexpr] = ACTIONS(4067), + [anon_sym_volatile] = ACTIONS(4067), + [anon_sym_restrict] = ACTIONS(4067), + [anon_sym___restrict__] = ACTIONS(4067), + [anon_sym__Atomic] = ACTIONS(4067), + [anon_sym__Noreturn] = ACTIONS(4067), + [anon_sym_noreturn] = ACTIONS(4067), + [anon_sym_mutable] = ACTIONS(4067), + [anon_sym_constinit] = ACTIONS(4067), + [anon_sym_consteval] = ACTIONS(4067), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4061), + [anon_sym_SLASH_EQ] = ACTIONS(4061), + [anon_sym_PERCENT_EQ] = ACTIONS(4061), + [anon_sym_PLUS_EQ] = ACTIONS(4061), + [anon_sym_DASH_EQ] = ACTIONS(4061), + [anon_sym_LT_LT_EQ] = ACTIONS(4061), + [anon_sym_GT_GT_EQ] = ACTIONS(4061), + [anon_sym_AMP_EQ] = ACTIONS(4061), + [anon_sym_CARET_EQ] = ACTIONS(4061), + [anon_sym_PIPE_EQ] = ACTIONS(4061), + [anon_sym_and_eq] = ACTIONS(4617), + [anon_sym_or_eq] = ACTIONS(4617), + [anon_sym_xor_eq] = ACTIONS(4617), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4069), + [anon_sym_L_DQUOTE] = ACTIONS(4106), + [anon_sym_u_DQUOTE] = ACTIONS(4106), + [anon_sym_U_DQUOTE] = ACTIONS(4106), + [anon_sym_u8_DQUOTE] = ACTIONS(4106), + [anon_sym_DQUOTE] = ACTIONS(4106), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4067), + [anon_sym_decltype] = ACTIONS(4067), + [anon_sym_R_DQUOTE] = ACTIONS(4108), + [anon_sym_LR_DQUOTE] = ACTIONS(4108), + [anon_sym_uR_DQUOTE] = ACTIONS(4108), + [anon_sym_UR_DQUOTE] = ACTIONS(4108), + [anon_sym_u8R_DQUOTE] = ACTIONS(4108), + [anon_sym_DASH_GT_STAR] = ACTIONS(4061), }, [1705] = { - [sym__expression] = STATE(5045), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8780), - [sym_initializer_pair] = STATE(8780), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4230), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4539), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4541), + [anon_sym_COMMA] = ACTIONS(4541), + [anon_sym_RPAREN] = ACTIONS(4541), + [anon_sym_LPAREN2] = ACTIONS(4541), + [anon_sym_TILDE] = ACTIONS(4541), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_STAR] = ACTIONS(4541), + [anon_sym_SLASH] = ACTIONS(4539), + [anon_sym_PERCENT] = ACTIONS(4541), + [anon_sym_PIPE_PIPE] = ACTIONS(4541), + [anon_sym_AMP_AMP] = ACTIONS(4541), + [anon_sym_PIPE] = ACTIONS(4539), + [anon_sym_CARET] = ACTIONS(4541), + [anon_sym_AMP] = ACTIONS(4539), + [anon_sym_EQ_EQ] = ACTIONS(4541), + [anon_sym_BANG_EQ] = ACTIONS(4541), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_GT_EQ] = ACTIONS(4541), + [anon_sym_LT_EQ] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(4539), + [anon_sym_LT_LT] = ACTIONS(4541), + [anon_sym_GT_GT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(4541), + [anon_sym___extension__] = ACTIONS(4539), + [anon_sym_extern] = ACTIONS(4539), + [anon_sym___attribute__] = ACTIONS(4539), + [anon_sym_COLON_COLON] = ACTIONS(4541), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4541), + [anon_sym___declspec] = ACTIONS(4539), + [anon_sym___based] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_RBRACE] = ACTIONS(4541), + [anon_sym_LBRACK] = ACTIONS(4539), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_static] = ACTIONS(4539), + [anon_sym_register] = ACTIONS(4539), + [anon_sym_inline] = ACTIONS(4539), + [anon_sym___inline] = ACTIONS(4539), + [anon_sym___inline__] = ACTIONS(4539), + [anon_sym___forceinline] = ACTIONS(4539), + [anon_sym_thread_local] = ACTIONS(4539), + [anon_sym___thread] = ACTIONS(4539), + [anon_sym_const] = ACTIONS(4539), + [anon_sym_constexpr] = ACTIONS(4539), + [anon_sym_volatile] = ACTIONS(4539), + [anon_sym_restrict] = ACTIONS(4539), + [anon_sym___restrict__] = ACTIONS(4539), + [anon_sym__Atomic] = ACTIONS(4539), + [anon_sym__Noreturn] = ACTIONS(4539), + [anon_sym_noreturn] = ACTIONS(4539), + [anon_sym_mutable] = ACTIONS(4539), + [anon_sym_constinit] = ACTIONS(4539), + [anon_sym_consteval] = ACTIONS(4539), + [anon_sym_COLON] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_LT_EQ_GT] = ACTIONS(4541), + [anon_sym_or] = ACTIONS(4539), + [anon_sym_and] = ACTIONS(4539), + [anon_sym_bitor] = ACTIONS(4539), + [anon_sym_xor] = ACTIONS(4539), + [anon_sym_bitand] = ACTIONS(4539), + [anon_sym_not_eq] = ACTIONS(4539), + [anon_sym_DASH_DASH] = ACTIONS(4541), + [anon_sym_PLUS_PLUS] = ACTIONS(4541), + [anon_sym_DOT] = ACTIONS(4539), + [anon_sym_DOT_STAR] = ACTIONS(4541), + [anon_sym_DASH_GT] = ACTIONS(4541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4539), + [anon_sym_decltype] = ACTIONS(4539), + [anon_sym_final] = ACTIONS(4539), + [anon_sym_override] = ACTIONS(4539), + [anon_sym_virtual] = ACTIONS(4539), + [anon_sym_alignas] = ACTIONS(4539), + [anon_sym_template] = ACTIONS(4539), + [anon_sym_operator] = ACTIONS(4539), + [anon_sym_try] = ACTIONS(4539), + [anon_sym_requires] = ACTIONS(4539), }, [1706] = { - [sym__expression] = STATE(5045), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8780), - [sym_initializer_pair] = STATE(8780), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(4272), - [anon_sym_LBRACK] = ACTIONS(4230), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4578), + [anon_sym_COMMA] = ACTIONS(4578), + [anon_sym_RPAREN] = ACTIONS(4578), + [anon_sym_LPAREN2] = ACTIONS(4578), + [anon_sym_TILDE] = ACTIONS(4578), + [anon_sym_DASH] = ACTIONS(4576), + [anon_sym_PLUS] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4576), + [anon_sym_PERCENT] = ACTIONS(4578), + [anon_sym_PIPE_PIPE] = ACTIONS(4578), + [anon_sym_AMP_AMP] = ACTIONS(4578), + [anon_sym_PIPE] = ACTIONS(4576), + [anon_sym_CARET] = ACTIONS(4578), + [anon_sym_AMP] = ACTIONS(4576), + [anon_sym_EQ_EQ] = ACTIONS(4578), + [anon_sym_BANG_EQ] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4576), + [anon_sym_GT_EQ] = ACTIONS(4578), + [anon_sym_LT_EQ] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4576), + [anon_sym_LT_LT] = ACTIONS(4578), + [anon_sym_GT_GT] = ACTIONS(4578), + [anon_sym_SEMI] = ACTIONS(4578), + [anon_sym___extension__] = ACTIONS(4576), + [anon_sym_extern] = ACTIONS(4576), + [anon_sym___attribute__] = ACTIONS(4576), + [anon_sym_COLON_COLON] = ACTIONS(4578), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4578), + [anon_sym___declspec] = ACTIONS(4576), + [anon_sym___based] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4578), + [anon_sym_RBRACE] = ACTIONS(4578), + [anon_sym_LBRACK] = ACTIONS(4576), + [anon_sym_EQ] = ACTIONS(4576), + [anon_sym_static] = ACTIONS(4576), + [anon_sym_register] = ACTIONS(4576), + [anon_sym_inline] = ACTIONS(4576), + [anon_sym___inline] = ACTIONS(4576), + [anon_sym___inline__] = ACTIONS(4576), + [anon_sym___forceinline] = ACTIONS(4576), + [anon_sym_thread_local] = ACTIONS(4576), + [anon_sym___thread] = ACTIONS(4576), + [anon_sym_const] = ACTIONS(4576), + [anon_sym_constexpr] = ACTIONS(4576), + [anon_sym_volatile] = ACTIONS(4576), + [anon_sym_restrict] = ACTIONS(4576), + [anon_sym___restrict__] = ACTIONS(4576), + [anon_sym__Atomic] = ACTIONS(4576), + [anon_sym__Noreturn] = ACTIONS(4576), + [anon_sym_noreturn] = ACTIONS(4576), + [anon_sym_mutable] = ACTIONS(4576), + [anon_sym_constinit] = ACTIONS(4576), + [anon_sym_consteval] = ACTIONS(4576), + [anon_sym_COLON] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4578), + [anon_sym_LT_EQ_GT] = ACTIONS(4578), + [anon_sym_or] = ACTIONS(4576), + [anon_sym_and] = ACTIONS(4576), + [anon_sym_bitor] = ACTIONS(4576), + [anon_sym_xor] = ACTIONS(4576), + [anon_sym_bitand] = ACTIONS(4576), + [anon_sym_not_eq] = ACTIONS(4576), + [anon_sym_DASH_DASH] = ACTIONS(4578), + [anon_sym_PLUS_PLUS] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4576), + [anon_sym_DOT_STAR] = ACTIONS(4578), + [anon_sym_DASH_GT] = ACTIONS(4578), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4576), + [anon_sym_decltype] = ACTIONS(4576), + [anon_sym_final] = ACTIONS(4576), + [anon_sym_override] = ACTIONS(4576), + [anon_sym_virtual] = ACTIONS(4576), + [anon_sym_alignas] = ACTIONS(4576), + [anon_sym_template] = ACTIONS(4576), + [anon_sym_operator] = ACTIONS(4576), + [anon_sym_try] = ACTIONS(4576), + [anon_sym_requires] = ACTIONS(4576), }, [1707] = { - [sym__expression] = STATE(5045), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8780), - [sym_initializer_pair] = STATE(8780), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4230), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(3250), + [sym_template_argument_list] = STATE(3130), + [sym_raw_string_literal] = STATE(3250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4074), + [anon_sym_COMMA] = ACTIONS(4074), + [anon_sym_LPAREN2] = ACTIONS(4074), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4071), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4069), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4622), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym___extension__] = ACTIONS(4067), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4074), + [anon_sym_EQ] = ACTIONS(4625), + [anon_sym_const] = ACTIONS(4059), + [anon_sym_constexpr] = ACTIONS(4067), + [anon_sym_volatile] = ACTIONS(4067), + [anon_sym_restrict] = ACTIONS(4067), + [anon_sym___restrict__] = ACTIONS(4067), + [anon_sym__Atomic] = ACTIONS(4067), + [anon_sym__Noreturn] = ACTIONS(4067), + [anon_sym_noreturn] = ACTIONS(4067), + [anon_sym_mutable] = ACTIONS(4067), + [anon_sym_constinit] = ACTIONS(4067), + [anon_sym_consteval] = ACTIONS(4067), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4627), + [anon_sym_SLASH_EQ] = ACTIONS(4627), + [anon_sym_PERCENT_EQ] = ACTIONS(4627), + [anon_sym_PLUS_EQ] = ACTIONS(4627), + [anon_sym_DASH_EQ] = ACTIONS(4627), + [anon_sym_LT_LT_EQ] = ACTIONS(4627), + [anon_sym_GT_GT_EQ] = ACTIONS(4625), + [anon_sym_AMP_EQ] = ACTIONS(4627), + [anon_sym_CARET_EQ] = ACTIONS(4627), + [anon_sym_PIPE_EQ] = ACTIONS(4627), + [anon_sym_and_eq] = ACTIONS(4627), + [anon_sym_or_eq] = ACTIONS(4627), + [anon_sym_xor_eq] = ACTIONS(4627), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4629), + [anon_sym_u_DQUOTE] = ACTIONS(4629), + [anon_sym_U_DQUOTE] = ACTIONS(4629), + [anon_sym_u8_DQUOTE] = ACTIONS(4629), + [anon_sym_DQUOTE] = ACTIONS(4629), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4067), + [anon_sym_decltype] = ACTIONS(4067), + [anon_sym_GT2] = ACTIONS(4074), + [anon_sym_R_DQUOTE] = ACTIONS(4631), + [anon_sym_LR_DQUOTE] = ACTIONS(4631), + [anon_sym_uR_DQUOTE] = ACTIONS(4631), + [anon_sym_UR_DQUOTE] = ACTIONS(4631), + [anon_sym_u8R_DQUOTE] = ACTIONS(4631), }, [1708] = { - [sym__expression] = STATE(5045), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8780), - [sym_initializer_pair] = STATE(8780), - [sym_subscript_designator] = STATE(7479), - [sym_field_designator] = STATE(7479), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [aux_sym_initializer_pair_repeat1] = STATE(7479), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(4230), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(287), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_RPAREN] = ACTIONS(4553), + [anon_sym_LPAREN2] = ACTIONS(4553), + [anon_sym_TILDE] = ACTIONS(4553), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4553), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4553), + [anon_sym_PIPE_PIPE] = ACTIONS(4553), + [anon_sym_AMP_AMP] = ACTIONS(4553), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_LT_LT] = ACTIONS(4553), + [anon_sym_GT_GT] = ACTIONS(4553), + [anon_sym_SEMI] = ACTIONS(4553), + [anon_sym___extension__] = ACTIONS(4551), + [anon_sym_extern] = ACTIONS(4551), + [anon_sym___attribute__] = ACTIONS(4551), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4553), + [anon_sym___declspec] = ACTIONS(4551), + [anon_sym___based] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_RBRACE] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_static] = ACTIONS(4551), + [anon_sym_register] = ACTIONS(4551), + [anon_sym_inline] = ACTIONS(4551), + [anon_sym___inline] = ACTIONS(4551), + [anon_sym___inline__] = ACTIONS(4551), + [anon_sym___forceinline] = ACTIONS(4551), + [anon_sym_thread_local] = ACTIONS(4551), + [anon_sym___thread] = ACTIONS(4551), + [anon_sym_const] = ACTIONS(4551), + [anon_sym_constexpr] = ACTIONS(4551), + [anon_sym_volatile] = ACTIONS(4551), + [anon_sym_restrict] = ACTIONS(4551), + [anon_sym___restrict__] = ACTIONS(4551), + [anon_sym__Atomic] = ACTIONS(4551), + [anon_sym__Noreturn] = ACTIONS(4551), + [anon_sym_noreturn] = ACTIONS(4551), + [anon_sym_mutable] = ACTIONS(4551), + [anon_sym_constinit] = ACTIONS(4551), + [anon_sym_consteval] = ACTIONS(4551), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_QMARK] = ACTIONS(4553), + [anon_sym_LT_EQ_GT] = ACTIONS(4553), + [anon_sym_or] = ACTIONS(4551), + [anon_sym_and] = ACTIONS(4551), + [anon_sym_bitor] = ACTIONS(4551), + [anon_sym_xor] = ACTIONS(4551), + [anon_sym_bitand] = ACTIONS(4551), + [anon_sym_not_eq] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_PLUS_PLUS] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4551), + [anon_sym_DOT_STAR] = ACTIONS(4553), + [anon_sym_DASH_GT] = ACTIONS(4553), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4551), + [anon_sym_decltype] = ACTIONS(4551), + [anon_sym_final] = ACTIONS(4551), + [anon_sym_override] = ACTIONS(4551), + [anon_sym_virtual] = ACTIONS(4551), + [anon_sym_alignas] = ACTIONS(4551), + [anon_sym_template] = ACTIONS(4551), + [anon_sym_operator] = ACTIONS(4551), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_requires] = ACTIONS(4551), }, [1709] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(2360), - [sym_raw_string_literal] = STATE(3456), - [sym_identifier] = ACTIONS(4276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4280), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym___extension__] = ACTIONS(4276), - [anon_sym_extern] = ACTIONS(4276), - [anon_sym___attribute__] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4299), - [anon_sym___declspec] = ACTIONS(4276), - [anon_sym___based] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4304), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_static] = ACTIONS(4276), - [anon_sym_register] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym___inline] = ACTIONS(4276), - [anon_sym___inline__] = ACTIONS(4276), - [anon_sym___forceinline] = ACTIONS(4276), - [anon_sym_thread_local] = ACTIONS(4276), - [anon_sym___thread] = ACTIONS(4276), - [anon_sym_const] = ACTIONS(4276), - [anon_sym_constexpr] = ACTIONS(4276), - [anon_sym_volatile] = ACTIONS(4276), - [anon_sym_restrict] = ACTIONS(4276), - [anon_sym___restrict__] = ACTIONS(4276), - [anon_sym__Atomic] = ACTIONS(4276), - [anon_sym__Noreturn] = ACTIONS(4276), - [anon_sym_noreturn] = ACTIONS(4276), - [anon_sym_mutable] = ACTIONS(4276), - [anon_sym_constinit] = ACTIONS(4276), - [anon_sym_consteval] = ACTIONS(4276), - [anon_sym_COLON] = ACTIONS(4310), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4308), - [anon_sym_or_eq] = ACTIONS(4308), - [anon_sym_xor_eq] = ACTIONS(4308), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4286), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4286), - [anon_sym_not_eq] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4276), - [anon_sym_decltype] = ACTIONS(4276), - [anon_sym_virtual] = ACTIONS(4276), - [anon_sym_alignas] = ACTIONS(4276), - [anon_sym_template] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [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), + [sym_identifier] = ACTIONS(4583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4585), + [anon_sym_COMMA] = ACTIONS(4585), + [anon_sym_RPAREN] = ACTIONS(4585), + [anon_sym_LPAREN2] = ACTIONS(4585), + [anon_sym_TILDE] = ACTIONS(4585), + [anon_sym_DASH] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(4585), + [anon_sym_SLASH] = ACTIONS(4583), + [anon_sym_PERCENT] = ACTIONS(4585), + [anon_sym_PIPE_PIPE] = ACTIONS(4585), + [anon_sym_AMP_AMP] = ACTIONS(4585), + [anon_sym_PIPE] = ACTIONS(4583), + [anon_sym_CARET] = ACTIONS(4585), + [anon_sym_AMP] = ACTIONS(4583), + [anon_sym_EQ_EQ] = ACTIONS(4585), + [anon_sym_BANG_EQ] = ACTIONS(4585), + [anon_sym_GT] = ACTIONS(4583), + [anon_sym_GT_EQ] = ACTIONS(4585), + [anon_sym_LT_EQ] = ACTIONS(4583), + [anon_sym_LT] = ACTIONS(4583), + [anon_sym_LT_LT] = ACTIONS(4585), + [anon_sym_GT_GT] = ACTIONS(4585), + [anon_sym_SEMI] = ACTIONS(4585), + [anon_sym___extension__] = ACTIONS(4583), + [anon_sym_extern] = ACTIONS(4583), + [anon_sym___attribute__] = ACTIONS(4583), + [anon_sym_COLON_COLON] = ACTIONS(4585), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4585), + [anon_sym___declspec] = ACTIONS(4583), + [anon_sym___based] = ACTIONS(4583), + [anon_sym_LBRACE] = ACTIONS(4585), + [anon_sym_RBRACE] = ACTIONS(4585), + [anon_sym_LBRACK] = ACTIONS(4583), + [anon_sym_EQ] = ACTIONS(4583), + [anon_sym_static] = ACTIONS(4583), + [anon_sym_register] = ACTIONS(4583), + [anon_sym_inline] = ACTIONS(4583), + [anon_sym___inline] = ACTIONS(4583), + [anon_sym___inline__] = ACTIONS(4583), + [anon_sym___forceinline] = ACTIONS(4583), + [anon_sym_thread_local] = ACTIONS(4583), + [anon_sym___thread] = ACTIONS(4583), + [anon_sym_const] = ACTIONS(4583), + [anon_sym_constexpr] = ACTIONS(4583), + [anon_sym_volatile] = ACTIONS(4583), + [anon_sym_restrict] = ACTIONS(4583), + [anon_sym___restrict__] = ACTIONS(4583), + [anon_sym__Atomic] = ACTIONS(4583), + [anon_sym__Noreturn] = ACTIONS(4583), + [anon_sym_noreturn] = ACTIONS(4583), + [anon_sym_mutable] = ACTIONS(4583), + [anon_sym_constinit] = ACTIONS(4583), + [anon_sym_consteval] = ACTIONS(4583), + [anon_sym_COLON] = ACTIONS(4583), + [anon_sym_QMARK] = ACTIONS(4585), + [anon_sym_LT_EQ_GT] = ACTIONS(4585), + [anon_sym_or] = ACTIONS(4583), + [anon_sym_and] = ACTIONS(4583), + [anon_sym_bitor] = ACTIONS(4583), + [anon_sym_xor] = ACTIONS(4583), + [anon_sym_bitand] = ACTIONS(4583), + [anon_sym_not_eq] = ACTIONS(4583), + [anon_sym_DASH_DASH] = ACTIONS(4585), + [anon_sym_PLUS_PLUS] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4583), + [anon_sym_DOT_STAR] = ACTIONS(4585), + [anon_sym_DASH_GT] = ACTIONS(4585), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4583), + [anon_sym_decltype] = ACTIONS(4583), + [anon_sym_final] = ACTIONS(4583), + [anon_sym_override] = ACTIONS(4583), + [anon_sym_virtual] = ACTIONS(4583), + [anon_sym_alignas] = ACTIONS(4583), + [anon_sym_template] = ACTIONS(4583), + [anon_sym_operator] = ACTIONS(4583), + [anon_sym_try] = ACTIONS(4583), + [anon_sym_requires] = ACTIONS(4583), }, [1710] = { - [sym__declaration_modifiers] = STATE(2688), - [sym__declaration_specifiers] = STATE(4733), - [sym_attribute_specifier] = STATE(2688), - [sym_attribute_declaration] = STATE(2688), - [sym_ms_declspec_modifier] = STATE(2688), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7341), - [sym__abstract_declarator] = STATE(7548), - [sym_parenthesized_declarator] = STATE(6917), - [sym_abstract_parenthesized_declarator] = STATE(6825), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_abstract_pointer_declarator] = STATE(6825), - [sym_function_declarator] = STATE(6917), - [sym_abstract_function_declarator] = STATE(6825), - [sym_array_declarator] = STATE(6917), - [sym_abstract_array_declarator] = STATE(6825), - [sym_storage_class_specifier] = STATE(2688), - [sym_type_qualifier] = STATE(2688), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_parameter_list] = STATE(4706), - [sym_parameter_declaration] = STATE(8273), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2688), - [sym_alignas_specifier] = STATE(2688), - [sym_dependent_type] = STATE(3958), - [sym_optional_parameter_declaration] = STATE(8273), - [sym_variadic_parameter_declaration] = STATE(8273), - [sym_reference_declarator] = STATE(6917), - [sym_abstract_reference_declarator] = STATE(6825), - [sym_structured_binding_declarator] = STATE(6917), - [sym__function_declarator_seq] = STATE(6905), - [sym_template_type] = STATE(3784), - [sym_template_function] = STATE(6917), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6324), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2688), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4318), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(4320), - [anon_sym_LPAREN2] = ACTIONS(4322), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_AMP] = ACTIONS(4328), + [sym_identifier] = ACTIONS(4543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4545), + [anon_sym_COMMA] = ACTIONS(4545), + [anon_sym_RPAREN] = ACTIONS(4545), + [anon_sym_LPAREN2] = ACTIONS(4545), + [anon_sym_TILDE] = ACTIONS(4545), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4545), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE] = ACTIONS(4543), + [anon_sym_CARET] = ACTIONS(4545), + [anon_sym_AMP] = ACTIONS(4543), + [anon_sym_EQ_EQ] = ACTIONS(4545), + [anon_sym_BANG_EQ] = ACTIONS(4545), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_GT_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ] = ACTIONS(4543), + [anon_sym_LT] = ACTIONS(4543), + [anon_sym_LT_LT] = ACTIONS(4545), + [anon_sym_GT_GT] = ACTIONS(4545), + [anon_sym_SEMI] = ACTIONS(4545), + [anon_sym___extension__] = ACTIONS(4543), + [anon_sym_extern] = ACTIONS(4543), + [anon_sym___attribute__] = ACTIONS(4543), + [anon_sym_COLON_COLON] = ACTIONS(4545), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4545), + [anon_sym___declspec] = ACTIONS(4543), + [anon_sym___based] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_LBRACK] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_static] = ACTIONS(4543), + [anon_sym_register] = ACTIONS(4543), + [anon_sym_inline] = ACTIONS(4543), + [anon_sym___inline] = ACTIONS(4543), + [anon_sym___inline__] = ACTIONS(4543), + [anon_sym___forceinline] = ACTIONS(4543), + [anon_sym_thread_local] = ACTIONS(4543), + [anon_sym___thread] = ACTIONS(4543), + [anon_sym_const] = ACTIONS(4543), + [anon_sym_constexpr] = ACTIONS(4543), + [anon_sym_volatile] = ACTIONS(4543), + [anon_sym_restrict] = ACTIONS(4543), + [anon_sym___restrict__] = ACTIONS(4543), + [anon_sym__Atomic] = ACTIONS(4543), + [anon_sym__Noreturn] = ACTIONS(4543), + [anon_sym_noreturn] = ACTIONS(4543), + [anon_sym_mutable] = ACTIONS(4543), + [anon_sym_constinit] = ACTIONS(4543), + [anon_sym_consteval] = ACTIONS(4543), + [anon_sym_COLON] = ACTIONS(4543), + [anon_sym_QMARK] = ACTIONS(4545), + [anon_sym_LT_EQ_GT] = ACTIONS(4545), + [anon_sym_or] = ACTIONS(4543), + [anon_sym_and] = ACTIONS(4543), + [anon_sym_bitor] = ACTIONS(4543), + [anon_sym_xor] = ACTIONS(4543), + [anon_sym_bitand] = ACTIONS(4543), + [anon_sym_not_eq] = ACTIONS(4543), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_PLUS_PLUS] = ACTIONS(4545), + [anon_sym_DOT] = ACTIONS(4543), + [anon_sym_DOT_STAR] = ACTIONS(4545), + [anon_sym_DASH_GT] = ACTIONS(4545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4543), + [anon_sym_decltype] = ACTIONS(4543), + [anon_sym_final] = ACTIONS(4543), + [anon_sym_override] = ACTIONS(4543), + [anon_sym_virtual] = ACTIONS(4543), + [anon_sym_alignas] = ACTIONS(4543), + [anon_sym_template] = ACTIONS(4543), + [anon_sym_operator] = ACTIONS(4543), + [anon_sym_try] = ACTIONS(4543), + [anon_sym_requires] = ACTIONS(4543), + }, + [1711] = { + [sym_identifier] = ACTIONS(4547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4549), + [anon_sym_COMMA] = ACTIONS(4549), + [anon_sym_RPAREN] = ACTIONS(4549), + [anon_sym_LPAREN2] = ACTIONS(4549), + [anon_sym_TILDE] = ACTIONS(4549), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_STAR] = ACTIONS(4549), + [anon_sym_SLASH] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4549), + [anon_sym_PIPE_PIPE] = ACTIONS(4549), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4547), + [anon_sym_CARET] = ACTIONS(4549), + [anon_sym_AMP] = ACTIONS(4547), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_GT] = ACTIONS(4547), + [anon_sym_GT_EQ] = ACTIONS(4549), + [anon_sym_LT_EQ] = ACTIONS(4547), + [anon_sym_LT] = ACTIONS(4547), + [anon_sym_LT_LT] = ACTIONS(4549), + [anon_sym_GT_GT] = ACTIONS(4549), + [anon_sym_SEMI] = ACTIONS(4549), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_extern] = ACTIONS(4547), + [anon_sym___attribute__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4549), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4549), + [anon_sym___declspec] = ACTIONS(4547), + [anon_sym___based] = ACTIONS(4547), + [anon_sym_LBRACE] = ACTIONS(4549), + [anon_sym_RBRACE] = ACTIONS(4549), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_static] = ACTIONS(4547), + [anon_sym_register] = ACTIONS(4547), + [anon_sym_inline] = ACTIONS(4547), + [anon_sym___inline] = ACTIONS(4547), + [anon_sym___inline__] = ACTIONS(4547), + [anon_sym___forceinline] = ACTIONS(4547), + [anon_sym_thread_local] = ACTIONS(4547), + [anon_sym___thread] = ACTIONS(4547), + [anon_sym_const] = ACTIONS(4547), + [anon_sym_constexpr] = ACTIONS(4547), + [anon_sym_volatile] = ACTIONS(4547), + [anon_sym_restrict] = ACTIONS(4547), + [anon_sym___restrict__] = ACTIONS(4547), + [anon_sym__Atomic] = ACTIONS(4547), + [anon_sym__Noreturn] = ACTIONS(4547), + [anon_sym_noreturn] = ACTIONS(4547), + [anon_sym_mutable] = ACTIONS(4547), + [anon_sym_constinit] = ACTIONS(4547), + [anon_sym_consteval] = ACTIONS(4547), + [anon_sym_COLON] = ACTIONS(4547), + [anon_sym_QMARK] = ACTIONS(4549), + [anon_sym_LT_EQ_GT] = ACTIONS(4549), + [anon_sym_or] = ACTIONS(4547), + [anon_sym_and] = ACTIONS(4547), + [anon_sym_bitor] = ACTIONS(4547), + [anon_sym_xor] = ACTIONS(4547), + [anon_sym_bitand] = ACTIONS(4547), + [anon_sym_not_eq] = ACTIONS(4547), + [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4549), + [anon_sym_DOT] = ACTIONS(4547), + [anon_sym_DOT_STAR] = ACTIONS(4549), + [anon_sym_DASH_GT] = ACTIONS(4549), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4547), + [anon_sym_decltype] = ACTIONS(4547), + [anon_sym_final] = ACTIONS(4547), + [anon_sym_override] = ACTIONS(4547), + [anon_sym_virtual] = ACTIONS(4547), + [anon_sym_alignas] = ACTIONS(4547), + [anon_sym_template] = ACTIONS(4547), + [anon_sym_operator] = ACTIONS(4547), + [anon_sym_try] = ACTIONS(4547), + [anon_sym_requires] = ACTIONS(4547), + }, + [1712] = { + [sym_identifier] = ACTIONS(4555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4557), + [anon_sym_COMMA] = ACTIONS(4557), + [anon_sym_RPAREN] = ACTIONS(4557), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_TILDE] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_PERCENT] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4557), + [anon_sym_AMP_AMP] = ACTIONS(4557), + [anon_sym_PIPE] = ACTIONS(4555), + [anon_sym_CARET] = ACTIONS(4557), + [anon_sym_AMP] = ACTIONS(4555), + [anon_sym_EQ_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_GT_EQ] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_LT_LT] = ACTIONS(4557), + [anon_sym_GT_GT] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4557), + [anon_sym___extension__] = ACTIONS(4555), + [anon_sym_extern] = ACTIONS(4555), + [anon_sym___attribute__] = ACTIONS(4555), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4557), + [anon_sym___declspec] = ACTIONS(4555), + [anon_sym___based] = ACTIONS(4555), + [anon_sym_LBRACE] = ACTIONS(4557), + [anon_sym_RBRACE] = ACTIONS(4557), + [anon_sym_LBRACK] = ACTIONS(4555), + [anon_sym_EQ] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_register] = ACTIONS(4555), + [anon_sym_inline] = ACTIONS(4555), + [anon_sym___inline] = ACTIONS(4555), + [anon_sym___inline__] = ACTIONS(4555), + [anon_sym___forceinline] = ACTIONS(4555), + [anon_sym_thread_local] = ACTIONS(4555), + [anon_sym___thread] = ACTIONS(4555), + [anon_sym_const] = ACTIONS(4555), + [anon_sym_constexpr] = ACTIONS(4555), + [anon_sym_volatile] = ACTIONS(4555), + [anon_sym_restrict] = ACTIONS(4555), + [anon_sym___restrict__] = ACTIONS(4555), + [anon_sym__Atomic] = ACTIONS(4555), + [anon_sym__Noreturn] = ACTIONS(4555), + [anon_sym_noreturn] = ACTIONS(4555), + [anon_sym_mutable] = ACTIONS(4555), + [anon_sym_constinit] = ACTIONS(4555), + [anon_sym_consteval] = ACTIONS(4555), + [anon_sym_COLON] = ACTIONS(4555), + [anon_sym_QMARK] = ACTIONS(4557), + [anon_sym_LT_EQ_GT] = ACTIONS(4557), + [anon_sym_or] = ACTIONS(4555), + [anon_sym_and] = ACTIONS(4555), + [anon_sym_bitor] = ACTIONS(4555), + [anon_sym_xor] = ACTIONS(4555), + [anon_sym_bitand] = ACTIONS(4555), + [anon_sym_not_eq] = ACTIONS(4555), + [anon_sym_DASH_DASH] = ACTIONS(4557), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DOT] = ACTIONS(4555), + [anon_sym_DOT_STAR] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4557), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4555), + [anon_sym_decltype] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_override] = ACTIONS(4555), + [anon_sym_virtual] = ACTIONS(4555), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym_template] = ACTIONS(4555), + [anon_sym_operator] = ACTIONS(4555), + [anon_sym_try] = ACTIONS(4555), + [anon_sym_requires] = ACTIONS(4555), + }, + [1713] = { + [sym_function_definition] = STATE(552), + [sym_declaration] = STATE(552), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4564), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_ms_call_modifier] = STATE(2008), + [sym_declaration_list] = STATE(552), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4633), [anon_sym___extension__] = ACTIONS(61), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(4637), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(4332), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -282189,140184 +260516,28847 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(2012), - }, - [1711] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(2362), - [sym_raw_string_literal] = STATE(3456), - [sym_identifier] = ACTIONS(4276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4291), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym___extension__] = ACTIONS(4276), - [anon_sym_extern] = ACTIONS(4276), - [anon_sym___attribute__] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), - [anon_sym___declspec] = ACTIONS(4276), - [anon_sym___based] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4288), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_static] = ACTIONS(4276), - [anon_sym_register] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym___inline] = ACTIONS(4276), - [anon_sym___inline__] = ACTIONS(4276), - [anon_sym___forceinline] = ACTIONS(4276), - [anon_sym_thread_local] = ACTIONS(4276), - [anon_sym___thread] = ACTIONS(4276), - [anon_sym_const] = ACTIONS(4276), - [anon_sym_constexpr] = ACTIONS(4276), - [anon_sym_volatile] = ACTIONS(4276), - [anon_sym_restrict] = ACTIONS(4276), - [anon_sym___restrict__] = ACTIONS(4276), - [anon_sym__Atomic] = ACTIONS(4276), - [anon_sym__Noreturn] = ACTIONS(4276), - [anon_sym_noreturn] = ACTIONS(4276), - [anon_sym_mutable] = ACTIONS(4276), - [anon_sym_constinit] = ACTIONS(4276), - [anon_sym_consteval] = ACTIONS(4276), - [anon_sym_COLON] = ACTIONS(4334), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4308), - [anon_sym_or_eq] = ACTIONS(4308), - [anon_sym_xor_eq] = ACTIONS(4308), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4286), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4286), - [anon_sym_not_eq] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4276), - [anon_sym_decltype] = ACTIONS(4276), - [anon_sym_virtual] = ACTIONS(4276), - [anon_sym_alignas] = ACTIONS(4276), - [anon_sym_template] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [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), - }, - [1712] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(2360), - [sym_raw_string_literal] = STATE(3456), - [sym_identifier] = ACTIONS(4276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4280), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym___extension__] = ACTIONS(4276), - [anon_sym_extern] = ACTIONS(4276), - [anon_sym___attribute__] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4299), - [anon_sym___declspec] = ACTIONS(4276), - [anon_sym___based] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4304), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_static] = ACTIONS(4276), - [anon_sym_register] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym___inline] = ACTIONS(4276), - [anon_sym___inline__] = ACTIONS(4276), - [anon_sym___forceinline] = ACTIONS(4276), - [anon_sym_thread_local] = ACTIONS(4276), - [anon_sym___thread] = ACTIONS(4276), - [anon_sym_const] = ACTIONS(4276), - [anon_sym_constexpr] = ACTIONS(4276), - [anon_sym_volatile] = ACTIONS(4276), - [anon_sym_restrict] = ACTIONS(4276), - [anon_sym___restrict__] = ACTIONS(4276), - [anon_sym__Atomic] = ACTIONS(4276), - [anon_sym__Noreturn] = ACTIONS(4276), - [anon_sym_noreturn] = ACTIONS(4276), - [anon_sym_mutable] = ACTIONS(4276), - [anon_sym_constinit] = ACTIONS(4276), - [anon_sym_consteval] = ACTIONS(4276), - [anon_sym_COLON] = ACTIONS(4336), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4308), - [anon_sym_or_eq] = ACTIONS(4308), - [anon_sym_xor_eq] = ACTIONS(4308), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4286), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4286), - [anon_sym_not_eq] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4276), - [anon_sym_decltype] = ACTIONS(4276), - [anon_sym_virtual] = ACTIONS(4276), - [anon_sym_alignas] = ACTIONS(4276), - [anon_sym_template] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [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), - }, - [1713] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(2362), - [sym_raw_string_literal] = STATE(3456), - [sym_identifier] = ACTIONS(4276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4291), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym___extension__] = ACTIONS(4276), - [anon_sym_extern] = ACTIONS(4276), - [anon_sym___attribute__] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), - [anon_sym___declspec] = ACTIONS(4276), - [anon_sym___based] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4288), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_static] = ACTIONS(4276), - [anon_sym_register] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym___inline] = ACTIONS(4276), - [anon_sym___inline__] = ACTIONS(4276), - [anon_sym___forceinline] = ACTIONS(4276), - [anon_sym_thread_local] = ACTIONS(4276), - [anon_sym___thread] = ACTIONS(4276), - [anon_sym_const] = ACTIONS(4276), - [anon_sym_constexpr] = ACTIONS(4276), - [anon_sym_volatile] = ACTIONS(4276), - [anon_sym_restrict] = ACTIONS(4276), - [anon_sym___restrict__] = ACTIONS(4276), - [anon_sym__Atomic] = ACTIONS(4276), - [anon_sym__Noreturn] = ACTIONS(4276), - [anon_sym_noreturn] = ACTIONS(4276), - [anon_sym_mutable] = ACTIONS(4276), - [anon_sym_constinit] = ACTIONS(4276), - [anon_sym_consteval] = ACTIONS(4276), - [anon_sym_COLON] = ACTIONS(4310), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4308), - [anon_sym_or_eq] = ACTIONS(4308), - [anon_sym_xor_eq] = ACTIONS(4308), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4286), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4286), - [anon_sym_not_eq] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4276), - [anon_sym_decltype] = ACTIONS(4276), - [anon_sym_virtual] = ACTIONS(4276), - [anon_sym_alignas] = ACTIONS(4276), - [anon_sym_template] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [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), }, [1714] = { - [sym_compound_statement] = STATE(8242), - [sym__expression] = STATE(5003), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8242), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4338), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_function_definition] = STATE(881), + [sym_declaration] = STATE(881), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4574), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_ms_call_modifier] = STATE(1972), + [sym_declaration_list] = STATE(881), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4633), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(4639), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), }, [1715] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(2362), - [sym_raw_string_literal] = STATE(3456), - [sym_identifier] = ACTIONS(4276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4291), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym___extension__] = ACTIONS(4276), - [anon_sym_extern] = ACTIONS(4276), - [anon_sym___attribute__] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), - [anon_sym___declspec] = ACTIONS(4276), - [anon_sym___based] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4288), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_static] = ACTIONS(4276), - [anon_sym_register] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym___inline] = ACTIONS(4276), - [anon_sym___inline__] = ACTIONS(4276), - [anon_sym___forceinline] = ACTIONS(4276), - [anon_sym_thread_local] = ACTIONS(4276), - [anon_sym___thread] = ACTIONS(4276), - [anon_sym_const] = ACTIONS(4276), - [anon_sym_constexpr] = ACTIONS(4276), - [anon_sym_volatile] = ACTIONS(4276), - [anon_sym_restrict] = ACTIONS(4276), - [anon_sym___restrict__] = ACTIONS(4276), - [anon_sym__Atomic] = ACTIONS(4276), - [anon_sym__Noreturn] = ACTIONS(4276), - [anon_sym_noreturn] = ACTIONS(4276), - [anon_sym_mutable] = ACTIONS(4276), - [anon_sym_constinit] = ACTIONS(4276), - [anon_sym_consteval] = ACTIONS(4276), - [anon_sym_COLON] = ACTIONS(4342), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4308), - [anon_sym_or_eq] = ACTIONS(4308), - [anon_sym_xor_eq] = ACTIONS(4308), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4286), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4286), - [anon_sym_not_eq] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4276), - [anon_sym_decltype] = ACTIONS(4276), - [anon_sym_virtual] = ACTIONS(4276), - [anon_sym_alignas] = ACTIONS(4276), - [anon_sym_template] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [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), + [sym_function_definition] = STATE(946), + [sym_declaration] = STATE(946), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4561), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_ms_call_modifier] = STATE(1984), + [sym_declaration_list] = STATE(946), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4633), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(4641), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1378), }, [1716] = { - [sym_compound_statement] = STATE(8173), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8173), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4344), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(4346), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_function_definition] = STATE(788), + [sym_declaration] = STATE(788), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4550), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_ms_call_modifier] = STATE(1928), + [sym_declaration_list] = STATE(788), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4633), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(4643), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), }, [1717] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(2362), - [sym_raw_string_literal] = STATE(3456), - [sym_identifier] = ACTIONS(4276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4291), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym___extension__] = ACTIONS(4276), - [anon_sym_extern] = ACTIONS(4276), - [anon_sym___attribute__] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), - [anon_sym___declspec] = ACTIONS(4276), - [anon_sym___based] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4288), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_static] = ACTIONS(4276), - [anon_sym_register] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym___inline] = ACTIONS(4276), - [anon_sym___inline__] = ACTIONS(4276), - [anon_sym___forceinline] = ACTIONS(4276), - [anon_sym_thread_local] = ACTIONS(4276), - [anon_sym___thread] = ACTIONS(4276), - [anon_sym_const] = ACTIONS(4276), - [anon_sym_constexpr] = ACTIONS(4276), - [anon_sym_volatile] = ACTIONS(4276), - [anon_sym_restrict] = ACTIONS(4276), - [anon_sym___restrict__] = ACTIONS(4276), - [anon_sym__Atomic] = ACTIONS(4276), - [anon_sym__Noreturn] = ACTIONS(4276), - [anon_sym_noreturn] = ACTIONS(4276), - [anon_sym_mutable] = ACTIONS(4276), - [anon_sym_constinit] = ACTIONS(4276), - [anon_sym_consteval] = ACTIONS(4276), - [anon_sym_COLON] = ACTIONS(4336), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4308), - [anon_sym_or_eq] = ACTIONS(4308), - [anon_sym_xor_eq] = ACTIONS(4308), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4286), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4286), - [anon_sym_not_eq] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4276), - [anon_sym_decltype] = ACTIONS(4276), - [anon_sym_virtual] = ACTIONS(4276), - [anon_sym_alignas] = ACTIONS(4276), - [anon_sym_template] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [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), + [sym_function_definition] = STATE(348), + [sym_declaration] = STATE(348), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4552), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_ms_call_modifier] = STATE(1937), + [sym_declaration_list] = STATE(348), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4633), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(4645), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1378), }, [1718] = { - [sym_compound_statement] = STATE(8019), - [sym__expression] = STATE(4945), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8019), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4348), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(4350), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_function_definition] = STATE(576), + [sym_declaration] = STATE(576), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4564), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_ms_call_modifier] = STATE(2008), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(7746), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3914), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3913), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4647), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(4649), + [anon_sym_struct] = ACTIONS(4651), + [anon_sym_union] = ACTIONS(4653), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), }, [1719] = { - [sym_compound_statement] = STATE(8398), - [sym__expression] = STATE(4970), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8398), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4352), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(4354), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_function_definition] = STATE(406), + [sym_declaration] = STATE(406), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4552), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_ms_call_modifier] = STATE(1937), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(7408), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3914), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3913), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4647), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(4655), + [anon_sym_struct] = ACTIONS(4657), + [anon_sym_union] = ACTIONS(4659), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), }, [1720] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(2362), - [sym_raw_string_literal] = STATE(3456), - [sym_identifier] = ACTIONS(4276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4291), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym___extension__] = ACTIONS(4276), - [anon_sym_extern] = ACTIONS(4276), - [anon_sym___attribute__] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), - [anon_sym___declspec] = ACTIONS(4276), - [anon_sym___based] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4288), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_static] = ACTIONS(4276), - [anon_sym_register] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym___inline] = ACTIONS(4276), - [anon_sym___inline__] = ACTIONS(4276), - [anon_sym___forceinline] = ACTIONS(4276), - [anon_sym_thread_local] = ACTIONS(4276), - [anon_sym___thread] = ACTIONS(4276), - [anon_sym_const] = ACTIONS(4276), - [anon_sym_constexpr] = ACTIONS(4276), - [anon_sym_volatile] = ACTIONS(4276), - [anon_sym_restrict] = ACTIONS(4276), - [anon_sym___restrict__] = ACTIONS(4276), - [anon_sym__Atomic] = ACTIONS(4276), - [anon_sym__Noreturn] = ACTIONS(4276), - [anon_sym_noreturn] = ACTIONS(4276), - [anon_sym_mutable] = ACTIONS(4276), - [anon_sym_constinit] = ACTIONS(4276), - [anon_sym_consteval] = ACTIONS(4276), - [anon_sym_COLON] = ACTIONS(4356), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4308), - [anon_sym_or_eq] = ACTIONS(4308), - [anon_sym_xor_eq] = ACTIONS(4308), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4286), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4286), - [anon_sym_not_eq] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4276), - [anon_sym_decltype] = ACTIONS(4276), - [anon_sym_virtual] = ACTIONS(4276), - [anon_sym_alignas] = ACTIONS(4276), - [anon_sym_template] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [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), + [sym_function_definition] = STATE(816), + [sym_declaration] = STATE(816), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4574), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_ms_call_modifier] = STATE(1972), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(7240), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3914), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3913), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4647), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(4663), + [anon_sym_union] = ACTIONS(4665), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1378), }, [1721] = { - [sym_string_literal] = STATE(2866), - [sym_template_argument_list] = STATE(2310), - [sym_raw_string_literal] = STATE(2866), - [sym_identifier] = ACTIONS(4276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_RPAREN] = ACTIONS(4291), - [anon_sym_LPAREN2] = ACTIONS(4291), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4358), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym___extension__] = ACTIONS(4276), - [anon_sym_extern] = ACTIONS(4276), - [anon_sym___attribute__] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), - [anon_sym___declspec] = ACTIONS(4276), - [anon_sym___based] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4288), - [anon_sym_EQ] = ACTIONS(4288), - [anon_sym_static] = ACTIONS(4276), - [anon_sym_register] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym___inline] = ACTIONS(4276), - [anon_sym___inline__] = ACTIONS(4276), - [anon_sym___forceinline] = ACTIONS(4276), - [anon_sym_thread_local] = ACTIONS(4276), - [anon_sym___thread] = ACTIONS(4276), - [anon_sym_const] = ACTIONS(4276), - [anon_sym_constexpr] = ACTIONS(4276), - [anon_sym_volatile] = ACTIONS(4276), - [anon_sym_restrict] = ACTIONS(4276), - [anon_sym___restrict__] = ACTIONS(4276), - [anon_sym__Atomic] = ACTIONS(4276), - [anon_sym__Noreturn] = ACTIONS(4276), - [anon_sym_noreturn] = ACTIONS(4276), - [anon_sym_mutable] = ACTIONS(4276), - [anon_sym_constinit] = ACTIONS(4276), - [anon_sym_consteval] = ACTIONS(4276), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_and_eq] = ACTIONS(4361), - [anon_sym_or_eq] = ACTIONS(4361), - [anon_sym_xor_eq] = ACTIONS(4361), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4286), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4286), - [anon_sym_not_eq] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4286), - [anon_sym_L_DQUOTE] = ACTIONS(4363), - [anon_sym_u_DQUOTE] = ACTIONS(4363), - [anon_sym_U_DQUOTE] = ACTIONS(4363), - [anon_sym_u8_DQUOTE] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(4363), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4276), - [anon_sym_decltype] = ACTIONS(4276), - [anon_sym_virtual] = ACTIONS(4276), - [anon_sym_alignas] = ACTIONS(4276), - [anon_sym_template] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [anon_sym_R_DQUOTE] = ACTIONS(4365), - [anon_sym_LR_DQUOTE] = ACTIONS(4365), - [anon_sym_uR_DQUOTE] = ACTIONS(4365), - [anon_sym_UR_DQUOTE] = ACTIONS(4365), - [anon_sym_u8R_DQUOTE] = ACTIONS(4365), - [anon_sym_DASH_GT_STAR] = ACTIONS(4278), + [sym_function_definition] = STATE(1816), + [sym_declaration] = STATE(1816), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4578), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_ms_call_modifier] = STATE(1927), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(7592), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3914), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3913), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4647), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(4667), + [anon_sym_struct] = ACTIONS(4669), + [anon_sym_union] = ACTIONS(4671), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1378), }, [1722] = { - [sym_compound_statement] = STATE(8298), - [sym__expression] = STATE(5022), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8298), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4367), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(4369), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_function_definition] = STATE(2281), + [sym_declaration] = STATE(2281), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4573), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_ms_call_modifier] = STATE(2002), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(7664), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3914), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3913), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4647), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(4673), + [anon_sym_struct] = ACTIONS(4675), + [anon_sym_union] = ACTIONS(4677), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), }, [1723] = { - [sym_compound_statement] = STATE(8346), - [sym__expression] = STATE(4988), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8346), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4371), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(4373), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_function_definition] = STATE(971), + [sym_declaration] = STATE(971), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4561), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_ms_call_modifier] = STATE(1984), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(7337), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3914), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3913), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4647), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(4679), + [anon_sym_struct] = ACTIONS(4681), + [anon_sym_union] = ACTIONS(4683), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), }, [1724] = { - [sym_compound_statement] = STATE(8134), - [sym__expression] = STATE(4949), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8134), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4375), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_function_definition] = STATE(2133), + [sym_declaration] = STATE(2133), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4590), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_ms_call_modifier] = STATE(1999), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(7778), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3914), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3913), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4647), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(4685), + [anon_sym_struct] = ACTIONS(4687), + [anon_sym_union] = ACTIONS(4689), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), }, [1725] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(2362), - [sym_raw_string_literal] = STATE(3456), - [sym_identifier] = ACTIONS(4276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4291), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym___extension__] = ACTIONS(4276), - [anon_sym_extern] = ACTIONS(4276), - [anon_sym___attribute__] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), - [anon_sym___declspec] = ACTIONS(4276), - [anon_sym___based] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4288), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_static] = ACTIONS(4276), - [anon_sym_register] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym___inline] = ACTIONS(4276), - [anon_sym___inline__] = ACTIONS(4276), - [anon_sym___forceinline] = ACTIONS(4276), - [anon_sym_thread_local] = ACTIONS(4276), - [anon_sym___thread] = ACTIONS(4276), - [anon_sym_const] = ACTIONS(4276), - [anon_sym_constexpr] = ACTIONS(4276), - [anon_sym_volatile] = ACTIONS(4276), - [anon_sym_restrict] = ACTIONS(4276), - [anon_sym___restrict__] = ACTIONS(4276), - [anon_sym__Atomic] = ACTIONS(4276), - [anon_sym__Noreturn] = ACTIONS(4276), - [anon_sym_noreturn] = ACTIONS(4276), - [anon_sym_mutable] = ACTIONS(4276), - [anon_sym_constinit] = ACTIONS(4276), - [anon_sym_consteval] = ACTIONS(4276), - [anon_sym_COLON] = ACTIONS(4379), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4308), - [anon_sym_or_eq] = ACTIONS(4308), - [anon_sym_xor_eq] = ACTIONS(4308), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4286), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4286), - [anon_sym_not_eq] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4276), - [anon_sym_decltype] = ACTIONS(4276), - [anon_sym_virtual] = ACTIONS(4276), - [anon_sym_alignas] = ACTIONS(4276), - [anon_sym_template] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [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), + [sym_function_definition] = STATE(814), + [sym_declaration] = STATE(814), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4550), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_ms_call_modifier] = STATE(1928), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(7901), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3914), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3913), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4647), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(4691), + [anon_sym_struct] = ACTIONS(4693), + [anon_sym_union] = ACTIONS(4695), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1378), }, [1726] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(2360), - [sym_raw_string_literal] = STATE(3456), - [sym_identifier] = ACTIONS(4276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4280), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym___extension__] = ACTIONS(4276), - [anon_sym_extern] = ACTIONS(4276), - [anon_sym___attribute__] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4299), - [anon_sym___declspec] = ACTIONS(4276), - [anon_sym___based] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4304), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_static] = ACTIONS(4276), - [anon_sym_register] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym___inline] = ACTIONS(4276), - [anon_sym___inline__] = ACTIONS(4276), - [anon_sym___forceinline] = ACTIONS(4276), - [anon_sym_thread_local] = ACTIONS(4276), - [anon_sym___thread] = ACTIONS(4276), - [anon_sym_const] = ACTIONS(4276), - [anon_sym_constexpr] = ACTIONS(4276), - [anon_sym_volatile] = ACTIONS(4276), - [anon_sym_restrict] = ACTIONS(4276), - [anon_sym___restrict__] = ACTIONS(4276), - [anon_sym__Atomic] = ACTIONS(4276), - [anon_sym__Noreturn] = ACTIONS(4276), - [anon_sym_noreturn] = ACTIONS(4276), - [anon_sym_mutable] = ACTIONS(4276), - [anon_sym_constinit] = ACTIONS(4276), - [anon_sym_consteval] = ACTIONS(4276), - [anon_sym_COLON] = ACTIONS(4342), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4308), - [anon_sym_or_eq] = ACTIONS(4308), - [anon_sym_xor_eq] = ACTIONS(4308), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4286), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4286), - [anon_sym_not_eq] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4276), - [anon_sym_decltype] = ACTIONS(4276), - [anon_sym_virtual] = ACTIONS(4276), - [anon_sym_alignas] = ACTIONS(4276), - [anon_sym_template] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [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), + [sym_identifier] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4594), + [anon_sym_COMMA] = ACTIONS(4594), + [anon_sym_RPAREN] = ACTIONS(4594), + [anon_sym_LPAREN2] = ACTIONS(4594), + [anon_sym_TILDE] = ACTIONS(4594), + [anon_sym_STAR] = ACTIONS(4594), + [anon_sym_PIPE_PIPE] = ACTIONS(4594), + [anon_sym_AMP_AMP] = ACTIONS(4594), + [anon_sym_AMP] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4594), + [anon_sym___extension__] = ACTIONS(4587), + [anon_sym_extern] = ACTIONS(4587), + [anon_sym___attribute__] = ACTIONS(4587), + [anon_sym_COLON_COLON] = ACTIONS(4594), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4594), + [anon_sym___declspec] = ACTIONS(4587), + [anon_sym___based] = ACTIONS(4587), + [anon_sym___cdecl] = ACTIONS(4587), + [anon_sym___clrcall] = ACTIONS(4587), + [anon_sym___stdcall] = ACTIONS(4587), + [anon_sym___fastcall] = ACTIONS(4587), + [anon_sym___thiscall] = ACTIONS(4587), + [anon_sym___vectorcall] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4594), + [anon_sym_signed] = ACTIONS(4587), + [anon_sym_unsigned] = ACTIONS(4587), + [anon_sym_long] = ACTIONS(4587), + [anon_sym_short] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(4594), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_register] = ACTIONS(4587), + [anon_sym_inline] = ACTIONS(4587), + [anon_sym___inline] = ACTIONS(4587), + [anon_sym___inline__] = ACTIONS(4587), + [anon_sym___forceinline] = ACTIONS(4587), + [anon_sym_thread_local] = ACTIONS(4587), + [anon_sym___thread] = ACTIONS(4587), + [anon_sym_const] = ACTIONS(4587), + [anon_sym_constexpr] = ACTIONS(4587), + [anon_sym_volatile] = ACTIONS(4587), + [anon_sym_restrict] = ACTIONS(4587), + [anon_sym___restrict__] = ACTIONS(4587), + [anon_sym__Atomic] = ACTIONS(4587), + [anon_sym__Noreturn] = ACTIONS(4587), + [anon_sym_noreturn] = ACTIONS(4587), + [anon_sym_mutable] = ACTIONS(4587), + [anon_sym_constinit] = ACTIONS(4587), + [anon_sym_consteval] = ACTIONS(4587), + [sym_primitive_type] = ACTIONS(4587), + [anon_sym_enum] = ACTIONS(4587), + [anon_sym_class] = ACTIONS(4587), + [anon_sym_struct] = ACTIONS(4587), + [anon_sym_union] = ACTIONS(4587), + [anon_sym_COLON] = ACTIONS(4587), + [anon_sym_or] = ACTIONS(4587), + [anon_sym_and] = ACTIONS(4587), + [anon_sym_asm] = ACTIONS(4587), + [anon_sym___asm__] = ACTIONS(4587), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4587), + [anon_sym_decltype] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_override] = ACTIONS(4587), + [anon_sym_virtual] = ACTIONS(4587), + [anon_sym_alignas] = ACTIONS(4587), + [anon_sym_explicit] = ACTIONS(4587), + [anon_sym_typename] = ACTIONS(4587), + [anon_sym_template] = ACTIONS(4587), + [anon_sym_GT2] = ACTIONS(4594), + [anon_sym_operator] = ACTIONS(4587), + [anon_sym_try] = ACTIONS(4587), + [anon_sym_friend] = ACTIONS(4587), + [anon_sym_using] = ACTIONS(4587), + [anon_sym_concept] = ACTIONS(4587), + [anon_sym_requires] = ACTIONS(4587), }, [1727] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(2360), - [sym_raw_string_literal] = STATE(3456), - [sym_identifier] = ACTIONS(4276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4280), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym___extension__] = ACTIONS(4276), - [anon_sym_extern] = ACTIONS(4276), - [anon_sym___attribute__] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4299), - [anon_sym___declspec] = ACTIONS(4276), - [anon_sym___based] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4304), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_static] = ACTIONS(4276), - [anon_sym_register] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym___inline] = ACTIONS(4276), - [anon_sym___inline__] = ACTIONS(4276), - [anon_sym___forceinline] = ACTIONS(4276), - [anon_sym_thread_local] = ACTIONS(4276), - [anon_sym___thread] = ACTIONS(4276), - [anon_sym_const] = ACTIONS(4276), - [anon_sym_constexpr] = ACTIONS(4276), - [anon_sym_volatile] = ACTIONS(4276), - [anon_sym_restrict] = ACTIONS(4276), - [anon_sym___restrict__] = ACTIONS(4276), - [anon_sym__Atomic] = ACTIONS(4276), - [anon_sym__Noreturn] = ACTIONS(4276), - [anon_sym_noreturn] = ACTIONS(4276), - [anon_sym_mutable] = ACTIONS(4276), - [anon_sym_constinit] = ACTIONS(4276), - [anon_sym_consteval] = ACTIONS(4276), - [anon_sym_COLON] = ACTIONS(4379), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4308), - [anon_sym_or_eq] = ACTIONS(4308), - [anon_sym_xor_eq] = ACTIONS(4308), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4286), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4286), - [anon_sym_not_eq] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4276), - [anon_sym_decltype] = ACTIONS(4276), - [anon_sym_virtual] = ACTIONS(4276), - [anon_sym_alignas] = ACTIONS(4276), - [anon_sym_template] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [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), + [sym_function_definition] = STATE(2071), + [sym_declaration] = STATE(2071), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4598), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_ms_call_modifier] = STATE(1966), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym__class_name] = STATE(7979), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(3914), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3913), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4647), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(4697), + [anon_sym_struct] = ACTIONS(4699), + [anon_sym_union] = ACTIONS(4701), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1378), }, [1728] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(2362), - [sym_raw_string_literal] = STATE(3456), - [sym_identifier] = ACTIONS(4276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_RPAREN] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4291), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym___extension__] = ACTIONS(4276), - [anon_sym_extern] = ACTIONS(4276), - [anon_sym___attribute__] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), - [anon_sym___declspec] = ACTIONS(4276), - [anon_sym___based] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4288), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_static] = ACTIONS(4276), - [anon_sym_register] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym___inline] = ACTIONS(4276), - [anon_sym___inline__] = ACTIONS(4276), - [anon_sym___forceinline] = ACTIONS(4276), - [anon_sym_thread_local] = ACTIONS(4276), - [anon_sym___thread] = ACTIONS(4276), - [anon_sym_const] = ACTIONS(4276), - [anon_sym_constexpr] = ACTIONS(4276), - [anon_sym_volatile] = ACTIONS(4276), - [anon_sym_restrict] = ACTIONS(4276), - [anon_sym___restrict__] = ACTIONS(4276), - [anon_sym__Atomic] = ACTIONS(4276), - [anon_sym__Noreturn] = ACTIONS(4276), - [anon_sym_noreturn] = ACTIONS(4276), - [anon_sym_mutable] = ACTIONS(4276), - [anon_sym_constinit] = ACTIONS(4276), - [anon_sym_consteval] = ACTIONS(4276), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4308), - [anon_sym_or_eq] = ACTIONS(4308), - [anon_sym_xor_eq] = ACTIONS(4308), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4286), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4286), - [anon_sym_not_eq] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4276), - [anon_sym_decltype] = ACTIONS(4276), - [anon_sym_virtual] = ACTIONS(4276), - [anon_sym_alignas] = ACTIONS(4276), - [anon_sym_template] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [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), + [sym__declaration_modifiers] = STATE(2020), + [sym__declaration_specifiers] = STATE(3811), + [sym_attribute_specifier] = STATE(2020), + [sym_attribute_declaration] = STATE(2020), + [sym_ms_declspec_modifier] = STATE(2020), + [sym_storage_class_specifier] = STATE(2020), + [sym_type_qualifier] = STATE(2020), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_parameter_declaration] = STATE(6832), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2020), + [sym_alignas_specifier] = STATE(2020), + [sym_dependent_type] = STATE(3114), + [sym_type_parameter_declaration] = STATE(6832), + [sym_variadic_type_parameter_declaration] = STATE(6832), + [sym_optional_type_parameter_declaration] = STATE(6832), + [sym_template_template_parameter_declaration] = STATE(6832), + [sym_optional_parameter_declaration] = STATE(6832), + [sym_variadic_parameter_declaration] = STATE(6832), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5953), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2020), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4601), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(4703), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(4705), + [anon_sym_template] = ACTIONS(4707), + [anon_sym_GT2] = ACTIONS(4709), }, [1729] = { - [sym__expression] = STATE(3913), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9634), - [sym__unary_right_fold] = STATE(9540), - [sym__binary_fold] = STATE(9623), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(4711), + [anon_sym_COMMA] = ACTIONS(4713), + [anon_sym_RPAREN] = ACTIONS(4713), + [anon_sym_LPAREN2] = ACTIONS(4713), + [anon_sym_TILDE] = ACTIONS(4713), + [anon_sym_STAR] = ACTIONS(4713), + [anon_sym_PIPE_PIPE] = ACTIONS(4713), + [anon_sym_AMP_AMP] = ACTIONS(4713), + [anon_sym_AMP] = ACTIONS(4711), + [anon_sym_SEMI] = ACTIONS(4713), + [anon_sym___extension__] = ACTIONS(4711), + [anon_sym_extern] = ACTIONS(4711), + [anon_sym___attribute__] = ACTIONS(4711), + [anon_sym_COLON_COLON] = ACTIONS(4713), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4713), + [anon_sym___declspec] = ACTIONS(4711), + [anon_sym___based] = ACTIONS(4711), + [anon_sym___cdecl] = ACTIONS(4711), + [anon_sym___clrcall] = ACTIONS(4711), + [anon_sym___stdcall] = ACTIONS(4711), + [anon_sym___fastcall] = ACTIONS(4711), + [anon_sym___thiscall] = ACTIONS(4711), + [anon_sym___vectorcall] = ACTIONS(4711), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_signed] = ACTIONS(4711), + [anon_sym_unsigned] = ACTIONS(4711), + [anon_sym_long] = ACTIONS(4711), + [anon_sym_short] = ACTIONS(4711), + [anon_sym_LBRACK] = ACTIONS(4711), + [anon_sym_EQ] = ACTIONS(4713), + [anon_sym_static] = ACTIONS(4711), + [anon_sym_register] = ACTIONS(4711), + [anon_sym_inline] = ACTIONS(4711), + [anon_sym___inline] = ACTIONS(4711), + [anon_sym___inline__] = ACTIONS(4711), + [anon_sym___forceinline] = ACTIONS(4711), + [anon_sym_thread_local] = ACTIONS(4711), + [anon_sym___thread] = ACTIONS(4711), + [anon_sym_const] = ACTIONS(4711), + [anon_sym_constexpr] = ACTIONS(4711), + [anon_sym_volatile] = ACTIONS(4711), + [anon_sym_restrict] = ACTIONS(4711), + [anon_sym___restrict__] = ACTIONS(4711), + [anon_sym__Atomic] = ACTIONS(4711), + [anon_sym__Noreturn] = ACTIONS(4711), + [anon_sym_noreturn] = ACTIONS(4711), + [anon_sym_mutable] = ACTIONS(4711), + [anon_sym_constinit] = ACTIONS(4711), + [anon_sym_consteval] = ACTIONS(4711), + [sym_primitive_type] = ACTIONS(4711), + [anon_sym_enum] = ACTIONS(4711), + [anon_sym_class] = ACTIONS(4711), + [anon_sym_struct] = ACTIONS(4711), + [anon_sym_union] = ACTIONS(4711), + [anon_sym_or] = ACTIONS(4711), + [anon_sym_and] = ACTIONS(4711), + [anon_sym_asm] = ACTIONS(4711), + [anon_sym___asm__] = ACTIONS(4711), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4711), + [anon_sym_decltype] = ACTIONS(4711), + [anon_sym_final] = ACTIONS(4711), + [anon_sym_override] = ACTIONS(4711), + [anon_sym_virtual] = ACTIONS(4711), + [anon_sym_alignas] = ACTIONS(4711), + [anon_sym_explicit] = ACTIONS(4711), + [anon_sym_typename] = ACTIONS(4711), + [anon_sym_template] = ACTIONS(4711), + [anon_sym_GT2] = ACTIONS(4713), + [anon_sym_operator] = ACTIONS(4711), + [anon_sym_try] = ACTIONS(4711), + [anon_sym_friend] = ACTIONS(4711), + [anon_sym_using] = ACTIONS(4711), + [anon_sym_concept] = ACTIONS(4711), + [anon_sym_requires] = ACTIONS(4711), }, [1730] = { - [sym__expression] = STATE(5077), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9372), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(9372), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4381), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4715), + [anon_sym_COMMA] = ACTIONS(4717), + [anon_sym_RPAREN] = ACTIONS(4717), + [anon_sym_LPAREN2] = ACTIONS(4717), + [anon_sym_TILDE] = ACTIONS(4717), + [anon_sym_STAR] = ACTIONS(4717), + [anon_sym_PIPE_PIPE] = ACTIONS(4717), + [anon_sym_AMP_AMP] = ACTIONS(4717), + [anon_sym_AMP] = ACTIONS(4715), + [anon_sym_SEMI] = ACTIONS(4717), + [anon_sym___extension__] = ACTIONS(4715), + [anon_sym_extern] = ACTIONS(4715), + [anon_sym___attribute__] = ACTIONS(4715), + [anon_sym_COLON_COLON] = ACTIONS(4717), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4717), + [anon_sym___declspec] = ACTIONS(4715), + [anon_sym___based] = ACTIONS(4715), + [anon_sym___cdecl] = ACTIONS(4715), + [anon_sym___clrcall] = ACTIONS(4715), + [anon_sym___stdcall] = ACTIONS(4715), + [anon_sym___fastcall] = ACTIONS(4715), + [anon_sym___thiscall] = ACTIONS(4715), + [anon_sym___vectorcall] = ACTIONS(4715), + [anon_sym_LBRACE] = ACTIONS(4717), + [anon_sym_signed] = ACTIONS(4715), + [anon_sym_unsigned] = ACTIONS(4715), + [anon_sym_long] = ACTIONS(4715), + [anon_sym_short] = ACTIONS(4715), + [anon_sym_LBRACK] = ACTIONS(4715), + [anon_sym_EQ] = ACTIONS(4717), + [anon_sym_static] = ACTIONS(4715), + [anon_sym_register] = ACTIONS(4715), + [anon_sym_inline] = ACTIONS(4715), + [anon_sym___inline] = ACTIONS(4715), + [anon_sym___inline__] = ACTIONS(4715), + [anon_sym___forceinline] = ACTIONS(4715), + [anon_sym_thread_local] = ACTIONS(4715), + [anon_sym___thread] = ACTIONS(4715), + [anon_sym_const] = ACTIONS(4715), + [anon_sym_constexpr] = ACTIONS(4715), + [anon_sym_volatile] = ACTIONS(4715), + [anon_sym_restrict] = ACTIONS(4715), + [anon_sym___restrict__] = ACTIONS(4715), + [anon_sym__Atomic] = ACTIONS(4715), + [anon_sym__Noreturn] = ACTIONS(4715), + [anon_sym_noreturn] = ACTIONS(4715), + [anon_sym_mutable] = ACTIONS(4715), + [anon_sym_constinit] = ACTIONS(4715), + [anon_sym_consteval] = ACTIONS(4715), + [sym_primitive_type] = ACTIONS(4715), + [anon_sym_enum] = ACTIONS(4715), + [anon_sym_class] = ACTIONS(4715), + [anon_sym_struct] = ACTIONS(4715), + [anon_sym_union] = ACTIONS(4715), + [anon_sym_or] = ACTIONS(4715), + [anon_sym_and] = ACTIONS(4715), + [anon_sym_asm] = ACTIONS(4715), + [anon_sym___asm__] = ACTIONS(4715), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4715), + [anon_sym_decltype] = ACTIONS(4715), + [anon_sym_final] = ACTIONS(4715), + [anon_sym_override] = ACTIONS(4715), + [anon_sym_virtual] = ACTIONS(4715), + [anon_sym_alignas] = ACTIONS(4715), + [anon_sym_explicit] = ACTIONS(4715), + [anon_sym_typename] = ACTIONS(4715), + [anon_sym_template] = ACTIONS(4715), + [anon_sym_GT2] = ACTIONS(4717), + [anon_sym_operator] = ACTIONS(4715), + [anon_sym_try] = ACTIONS(4715), + [anon_sym_friend] = ACTIONS(4715), + [anon_sym_using] = ACTIONS(4715), + [anon_sym_concept] = ACTIONS(4715), + [anon_sym_requires] = ACTIONS(4715), }, [1731] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(2361), - [sym_raw_string_literal] = STATE(3456), - [sym_identifier] = ACTIONS(4276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_RPAREN] = ACTIONS(4291), - [anon_sym_LPAREN2] = ACTIONS(4291), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym___extension__] = ACTIONS(4276), - [anon_sym_extern] = ACTIONS(4276), - [anon_sym___attribute__] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), - [anon_sym___declspec] = ACTIONS(4276), - [anon_sym___based] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4288), - [anon_sym_EQ] = ACTIONS(4276), - [anon_sym_static] = ACTIONS(4276), - [anon_sym_register] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym___inline] = ACTIONS(4276), - [anon_sym___inline__] = ACTIONS(4276), - [anon_sym___forceinline] = ACTIONS(4276), - [anon_sym_thread_local] = ACTIONS(4276), - [anon_sym___thread] = ACTIONS(4276), - [anon_sym_const] = ACTIONS(4276), - [anon_sym_constexpr] = ACTIONS(4276), - [anon_sym_volatile] = ACTIONS(4276), - [anon_sym_restrict] = ACTIONS(4276), - [anon_sym___restrict__] = ACTIONS(4276), - [anon_sym__Atomic] = ACTIONS(4276), - [anon_sym__Noreturn] = ACTIONS(4276), - [anon_sym_noreturn] = ACTIONS(4276), - [anon_sym_mutable] = ACTIONS(4276), - [anon_sym_constinit] = ACTIONS(4276), - [anon_sym_consteval] = ACTIONS(4276), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4308), - [anon_sym_or_eq] = ACTIONS(4308), - [anon_sym_xor_eq] = ACTIONS(4308), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4286), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4286), - [anon_sym_not_eq] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4276), - [anon_sym_decltype] = ACTIONS(4276), - [anon_sym_virtual] = ACTIONS(4276), - [anon_sym_alignas] = ACTIONS(4276), - [anon_sym_template] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [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), + [sym_identifier] = ACTIONS(4719), + [anon_sym_COMMA] = ACTIONS(4721), + [anon_sym_RPAREN] = ACTIONS(4721), + [anon_sym_LPAREN2] = ACTIONS(4721), + [anon_sym_TILDE] = ACTIONS(4721), + [anon_sym_STAR] = ACTIONS(4721), + [anon_sym_PIPE_PIPE] = ACTIONS(4721), + [anon_sym_AMP_AMP] = ACTIONS(4721), + [anon_sym_AMP] = ACTIONS(4719), + [anon_sym_SEMI] = ACTIONS(4721), + [anon_sym___extension__] = ACTIONS(4719), + [anon_sym_extern] = ACTIONS(4719), + [anon_sym___attribute__] = ACTIONS(4719), + [anon_sym_COLON_COLON] = ACTIONS(4721), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4721), + [anon_sym___declspec] = ACTIONS(4719), + [anon_sym___based] = ACTIONS(4719), + [anon_sym___cdecl] = ACTIONS(4719), + [anon_sym___clrcall] = ACTIONS(4719), + [anon_sym___stdcall] = ACTIONS(4719), + [anon_sym___fastcall] = ACTIONS(4719), + [anon_sym___thiscall] = ACTIONS(4719), + [anon_sym___vectorcall] = ACTIONS(4719), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_signed] = ACTIONS(4719), + [anon_sym_unsigned] = ACTIONS(4719), + [anon_sym_long] = ACTIONS(4719), + [anon_sym_short] = ACTIONS(4719), + [anon_sym_LBRACK] = ACTIONS(4719), + [anon_sym_EQ] = ACTIONS(4721), + [anon_sym_static] = ACTIONS(4719), + [anon_sym_register] = ACTIONS(4719), + [anon_sym_inline] = ACTIONS(4719), + [anon_sym___inline] = ACTIONS(4719), + [anon_sym___inline__] = ACTIONS(4719), + [anon_sym___forceinline] = ACTIONS(4719), + [anon_sym_thread_local] = ACTIONS(4719), + [anon_sym___thread] = ACTIONS(4719), + [anon_sym_const] = ACTIONS(4719), + [anon_sym_constexpr] = ACTIONS(4719), + [anon_sym_volatile] = ACTIONS(4719), + [anon_sym_restrict] = ACTIONS(4719), + [anon_sym___restrict__] = ACTIONS(4719), + [anon_sym__Atomic] = ACTIONS(4719), + [anon_sym__Noreturn] = ACTIONS(4719), + [anon_sym_noreturn] = ACTIONS(4719), + [anon_sym_mutable] = ACTIONS(4719), + [anon_sym_constinit] = ACTIONS(4719), + [anon_sym_consteval] = ACTIONS(4719), + [sym_primitive_type] = ACTIONS(4719), + [anon_sym_enum] = ACTIONS(4719), + [anon_sym_class] = ACTIONS(4719), + [anon_sym_struct] = ACTIONS(4719), + [anon_sym_union] = ACTIONS(4719), + [anon_sym_or] = ACTIONS(4719), + [anon_sym_and] = ACTIONS(4719), + [anon_sym_asm] = ACTIONS(4719), + [anon_sym___asm__] = ACTIONS(4719), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4719), + [anon_sym_decltype] = ACTIONS(4719), + [anon_sym_final] = ACTIONS(4719), + [anon_sym_override] = ACTIONS(4719), + [anon_sym_virtual] = ACTIONS(4719), + [anon_sym_alignas] = ACTIONS(4719), + [anon_sym_explicit] = ACTIONS(4719), + [anon_sym_typename] = ACTIONS(4719), + [anon_sym_template] = ACTIONS(4719), + [anon_sym_GT2] = ACTIONS(4721), + [anon_sym_operator] = ACTIONS(4719), + [anon_sym_try] = ACTIONS(4719), + [anon_sym_friend] = ACTIONS(4719), + [anon_sym_using] = ACTIONS(4719), + [anon_sym_concept] = ACTIONS(4719), + [anon_sym_requires] = ACTIONS(4719), }, [1732] = { - [sym__expression] = STATE(3884), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9631), - [sym__unary_right_fold] = STATE(9630), - [sym__binary_fold] = STATE(9629), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(4719), + [anon_sym_COMMA] = ACTIONS(4721), + [anon_sym_RPAREN] = ACTIONS(4721), + [anon_sym_LPAREN2] = ACTIONS(4721), + [anon_sym_TILDE] = ACTIONS(4721), + [anon_sym_STAR] = ACTIONS(4721), + [anon_sym_PIPE_PIPE] = ACTIONS(4721), + [anon_sym_AMP_AMP] = ACTIONS(4721), + [anon_sym_AMP] = ACTIONS(4719), + [anon_sym_SEMI] = ACTIONS(4721), + [anon_sym___extension__] = ACTIONS(4719), + [anon_sym_extern] = ACTIONS(4719), + [anon_sym___attribute__] = ACTIONS(4719), + [anon_sym_COLON_COLON] = ACTIONS(4721), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4721), + [anon_sym___declspec] = ACTIONS(4719), + [anon_sym___based] = ACTIONS(4719), + [anon_sym___cdecl] = ACTIONS(4719), + [anon_sym___clrcall] = ACTIONS(4719), + [anon_sym___stdcall] = ACTIONS(4719), + [anon_sym___fastcall] = ACTIONS(4719), + [anon_sym___thiscall] = ACTIONS(4719), + [anon_sym___vectorcall] = ACTIONS(4719), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_signed] = ACTIONS(4719), + [anon_sym_unsigned] = ACTIONS(4719), + [anon_sym_long] = ACTIONS(4719), + [anon_sym_short] = ACTIONS(4719), + [anon_sym_LBRACK] = ACTIONS(4719), + [anon_sym_EQ] = ACTIONS(4721), + [anon_sym_static] = ACTIONS(4719), + [anon_sym_register] = ACTIONS(4719), + [anon_sym_inline] = ACTIONS(4719), + [anon_sym___inline] = ACTIONS(4719), + [anon_sym___inline__] = ACTIONS(4719), + [anon_sym___forceinline] = ACTIONS(4719), + [anon_sym_thread_local] = ACTIONS(4719), + [anon_sym___thread] = ACTIONS(4719), + [anon_sym_const] = ACTIONS(4719), + [anon_sym_constexpr] = ACTIONS(4719), + [anon_sym_volatile] = ACTIONS(4719), + [anon_sym_restrict] = ACTIONS(4719), + [anon_sym___restrict__] = ACTIONS(4719), + [anon_sym__Atomic] = ACTIONS(4719), + [anon_sym__Noreturn] = ACTIONS(4719), + [anon_sym_noreturn] = ACTIONS(4719), + [anon_sym_mutable] = ACTIONS(4719), + [anon_sym_constinit] = ACTIONS(4719), + [anon_sym_consteval] = ACTIONS(4719), + [sym_primitive_type] = ACTIONS(4719), + [anon_sym_enum] = ACTIONS(4719), + [anon_sym_class] = ACTIONS(4719), + [anon_sym_struct] = ACTIONS(4719), + [anon_sym_union] = ACTIONS(4719), + [anon_sym_or] = ACTIONS(4719), + [anon_sym_and] = ACTIONS(4719), + [anon_sym_asm] = ACTIONS(4719), + [anon_sym___asm__] = ACTIONS(4719), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4719), + [anon_sym_decltype] = ACTIONS(4719), + [anon_sym_final] = ACTIONS(4719), + [anon_sym_override] = ACTIONS(4719), + [anon_sym_virtual] = ACTIONS(4719), + [anon_sym_alignas] = ACTIONS(4719), + [anon_sym_explicit] = ACTIONS(4719), + [anon_sym_typename] = ACTIONS(4719), + [anon_sym_template] = ACTIONS(4719), + [anon_sym_GT2] = ACTIONS(4721), + [anon_sym_operator] = ACTIONS(4719), + [anon_sym_try] = ACTIONS(4719), + [anon_sym_friend] = ACTIONS(4719), + [anon_sym_using] = ACTIONS(4719), + [anon_sym_concept] = ACTIONS(4719), + [anon_sym_requires] = ACTIONS(4719), }, [1733] = { - [sym__expression] = STATE(3890), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9098), - [sym__unary_right_fold] = STATE(9090), - [sym__binary_fold] = STATE(9079), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(4723), + [anon_sym_COMMA] = ACTIONS(4725), + [anon_sym_RPAREN] = ACTIONS(4725), + [anon_sym_LPAREN2] = ACTIONS(4725), + [anon_sym_TILDE] = ACTIONS(4725), + [anon_sym_STAR] = ACTIONS(4725), + [anon_sym_PIPE_PIPE] = ACTIONS(4725), + [anon_sym_AMP_AMP] = ACTIONS(4725), + [anon_sym_AMP] = ACTIONS(4723), + [anon_sym_SEMI] = ACTIONS(4725), + [anon_sym___extension__] = ACTIONS(4723), + [anon_sym_extern] = ACTIONS(4723), + [anon_sym___attribute__] = ACTIONS(4723), + [anon_sym_COLON_COLON] = ACTIONS(4725), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4725), + [anon_sym___declspec] = ACTIONS(4723), + [anon_sym___based] = ACTIONS(4723), + [anon_sym___cdecl] = ACTIONS(4723), + [anon_sym___clrcall] = ACTIONS(4723), + [anon_sym___stdcall] = ACTIONS(4723), + [anon_sym___fastcall] = ACTIONS(4723), + [anon_sym___thiscall] = ACTIONS(4723), + [anon_sym___vectorcall] = ACTIONS(4723), + [anon_sym_LBRACE] = ACTIONS(4725), + [anon_sym_signed] = ACTIONS(4723), + [anon_sym_unsigned] = ACTIONS(4723), + [anon_sym_long] = ACTIONS(4723), + [anon_sym_short] = ACTIONS(4723), + [anon_sym_LBRACK] = ACTIONS(4723), + [anon_sym_EQ] = ACTIONS(4725), + [anon_sym_static] = ACTIONS(4723), + [anon_sym_register] = ACTIONS(4723), + [anon_sym_inline] = ACTIONS(4723), + [anon_sym___inline] = ACTIONS(4723), + [anon_sym___inline__] = ACTIONS(4723), + [anon_sym___forceinline] = ACTIONS(4723), + [anon_sym_thread_local] = ACTIONS(4723), + [anon_sym___thread] = ACTIONS(4723), + [anon_sym_const] = ACTIONS(4723), + [anon_sym_constexpr] = ACTIONS(4723), + [anon_sym_volatile] = ACTIONS(4723), + [anon_sym_restrict] = ACTIONS(4723), + [anon_sym___restrict__] = ACTIONS(4723), + [anon_sym__Atomic] = ACTIONS(4723), + [anon_sym__Noreturn] = ACTIONS(4723), + [anon_sym_noreturn] = ACTIONS(4723), + [anon_sym_mutable] = ACTIONS(4723), + [anon_sym_constinit] = ACTIONS(4723), + [anon_sym_consteval] = ACTIONS(4723), + [sym_primitive_type] = ACTIONS(4723), + [anon_sym_enum] = ACTIONS(4723), + [anon_sym_class] = ACTIONS(4723), + [anon_sym_struct] = ACTIONS(4723), + [anon_sym_union] = ACTIONS(4723), + [anon_sym_or] = ACTIONS(4723), + [anon_sym_and] = ACTIONS(4723), + [anon_sym_asm] = ACTIONS(4723), + [anon_sym___asm__] = ACTIONS(4723), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4723), + [anon_sym_decltype] = ACTIONS(4723), + [anon_sym_final] = ACTIONS(4723), + [anon_sym_override] = ACTIONS(4723), + [anon_sym_virtual] = ACTIONS(4723), + [anon_sym_alignas] = ACTIONS(4723), + [anon_sym_explicit] = ACTIONS(4723), + [anon_sym_typename] = ACTIONS(4723), + [anon_sym_template] = ACTIONS(4723), + [anon_sym_GT2] = ACTIONS(4725), + [anon_sym_operator] = ACTIONS(4723), + [anon_sym_try] = ACTIONS(4723), + [anon_sym_friend] = ACTIONS(4723), + [anon_sym_using] = ACTIONS(4723), + [anon_sym_concept] = ACTIONS(4723), + [anon_sym_requires] = ACTIONS(4723), }, [1734] = { - [sym_compound_statement] = STATE(8779), - [sym__expression] = STATE(5098), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8779), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(4383), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4727), + [anon_sym_COMMA] = ACTIONS(4729), + [anon_sym_RPAREN] = ACTIONS(4729), + [anon_sym_LPAREN2] = ACTIONS(4729), + [anon_sym_TILDE] = ACTIONS(4729), + [anon_sym_STAR] = ACTIONS(4729), + [anon_sym_PIPE_PIPE] = ACTIONS(4729), + [anon_sym_AMP_AMP] = ACTIONS(4729), + [anon_sym_AMP] = ACTIONS(4727), + [anon_sym_SEMI] = ACTIONS(4729), + [anon_sym___extension__] = ACTIONS(4727), + [anon_sym_extern] = ACTIONS(4727), + [anon_sym___attribute__] = ACTIONS(4727), + [anon_sym_COLON_COLON] = ACTIONS(4729), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4729), + [anon_sym___declspec] = ACTIONS(4727), + [anon_sym___based] = ACTIONS(4727), + [anon_sym___cdecl] = ACTIONS(4727), + [anon_sym___clrcall] = ACTIONS(4727), + [anon_sym___stdcall] = ACTIONS(4727), + [anon_sym___fastcall] = ACTIONS(4727), + [anon_sym___thiscall] = ACTIONS(4727), + [anon_sym___vectorcall] = ACTIONS(4727), + [anon_sym_LBRACE] = ACTIONS(4729), + [anon_sym_signed] = ACTIONS(4727), + [anon_sym_unsigned] = ACTIONS(4727), + [anon_sym_long] = ACTIONS(4727), + [anon_sym_short] = ACTIONS(4727), + [anon_sym_LBRACK] = ACTIONS(4727), + [anon_sym_EQ] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4727), + [anon_sym_register] = ACTIONS(4727), + [anon_sym_inline] = ACTIONS(4727), + [anon_sym___inline] = ACTIONS(4727), + [anon_sym___inline__] = ACTIONS(4727), + [anon_sym___forceinline] = ACTIONS(4727), + [anon_sym_thread_local] = ACTIONS(4727), + [anon_sym___thread] = ACTIONS(4727), + [anon_sym_const] = ACTIONS(4727), + [anon_sym_constexpr] = ACTIONS(4727), + [anon_sym_volatile] = ACTIONS(4727), + [anon_sym_restrict] = ACTIONS(4727), + [anon_sym___restrict__] = ACTIONS(4727), + [anon_sym__Atomic] = ACTIONS(4727), + [anon_sym__Noreturn] = ACTIONS(4727), + [anon_sym_noreturn] = ACTIONS(4727), + [anon_sym_mutable] = ACTIONS(4727), + [anon_sym_constinit] = ACTIONS(4727), + [anon_sym_consteval] = ACTIONS(4727), + [sym_primitive_type] = ACTIONS(4727), + [anon_sym_enum] = ACTIONS(4727), + [anon_sym_class] = ACTIONS(4727), + [anon_sym_struct] = ACTIONS(4727), + [anon_sym_union] = ACTIONS(4727), + [anon_sym_or] = ACTIONS(4727), + [anon_sym_and] = ACTIONS(4727), + [anon_sym_asm] = ACTIONS(4727), + [anon_sym___asm__] = ACTIONS(4727), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4727), + [anon_sym_decltype] = ACTIONS(4727), + [anon_sym_final] = ACTIONS(4727), + [anon_sym_override] = ACTIONS(4727), + [anon_sym_virtual] = ACTIONS(4727), + [anon_sym_alignas] = ACTIONS(4727), + [anon_sym_explicit] = ACTIONS(4727), + [anon_sym_typename] = ACTIONS(4727), + [anon_sym_template] = ACTIONS(4727), + [anon_sym_GT2] = ACTIONS(4729), + [anon_sym_operator] = ACTIONS(4727), + [anon_sym_try] = ACTIONS(4727), + [anon_sym_friend] = ACTIONS(4727), + [anon_sym_using] = ACTIONS(4727), + [anon_sym_concept] = ACTIONS(4727), + [anon_sym_requires] = ACTIONS(4727), }, [1735] = { - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9007), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(9007), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4731), + [anon_sym_COMMA] = ACTIONS(4733), + [anon_sym_RPAREN] = ACTIONS(4733), + [anon_sym_LPAREN2] = ACTIONS(4733), + [anon_sym_TILDE] = ACTIONS(4733), + [anon_sym_STAR] = ACTIONS(4733), + [anon_sym_PIPE_PIPE] = ACTIONS(4733), + [anon_sym_AMP_AMP] = ACTIONS(4733), + [anon_sym_AMP] = ACTIONS(4731), + [anon_sym_SEMI] = ACTIONS(4733), + [anon_sym___extension__] = ACTIONS(4731), + [anon_sym_extern] = ACTIONS(4731), + [anon_sym___attribute__] = ACTIONS(4731), + [anon_sym_COLON_COLON] = ACTIONS(4733), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4733), + [anon_sym___declspec] = ACTIONS(4731), + [anon_sym___based] = ACTIONS(4731), + [anon_sym___cdecl] = ACTIONS(4731), + [anon_sym___clrcall] = ACTIONS(4731), + [anon_sym___stdcall] = ACTIONS(4731), + [anon_sym___fastcall] = ACTIONS(4731), + [anon_sym___thiscall] = ACTIONS(4731), + [anon_sym___vectorcall] = ACTIONS(4731), + [anon_sym_LBRACE] = ACTIONS(4733), + [anon_sym_signed] = ACTIONS(4731), + [anon_sym_unsigned] = ACTIONS(4731), + [anon_sym_long] = ACTIONS(4731), + [anon_sym_short] = ACTIONS(4731), + [anon_sym_LBRACK] = ACTIONS(4731), + [anon_sym_EQ] = ACTIONS(4733), + [anon_sym_static] = ACTIONS(4731), + [anon_sym_register] = ACTIONS(4731), + [anon_sym_inline] = ACTIONS(4731), + [anon_sym___inline] = ACTIONS(4731), + [anon_sym___inline__] = ACTIONS(4731), + [anon_sym___forceinline] = ACTIONS(4731), + [anon_sym_thread_local] = ACTIONS(4731), + [anon_sym___thread] = ACTIONS(4731), + [anon_sym_const] = ACTIONS(4731), + [anon_sym_constexpr] = ACTIONS(4731), + [anon_sym_volatile] = ACTIONS(4731), + [anon_sym_restrict] = ACTIONS(4731), + [anon_sym___restrict__] = ACTIONS(4731), + [anon_sym__Atomic] = ACTIONS(4731), + [anon_sym__Noreturn] = ACTIONS(4731), + [anon_sym_noreturn] = ACTIONS(4731), + [anon_sym_mutable] = ACTIONS(4731), + [anon_sym_constinit] = ACTIONS(4731), + [anon_sym_consteval] = ACTIONS(4731), + [sym_primitive_type] = ACTIONS(4731), + [anon_sym_enum] = ACTIONS(4731), + [anon_sym_class] = ACTIONS(4731), + [anon_sym_struct] = ACTIONS(4731), + [anon_sym_union] = ACTIONS(4731), + [anon_sym_or] = ACTIONS(4731), + [anon_sym_and] = ACTIONS(4731), + [anon_sym_asm] = ACTIONS(4731), + [anon_sym___asm__] = ACTIONS(4731), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4731), + [anon_sym_decltype] = ACTIONS(4731), + [anon_sym_final] = ACTIONS(4731), + [anon_sym_override] = ACTIONS(4731), + [anon_sym_virtual] = ACTIONS(4731), + [anon_sym_alignas] = ACTIONS(4731), + [anon_sym_explicit] = ACTIONS(4731), + [anon_sym_typename] = ACTIONS(4731), + [anon_sym_template] = ACTIONS(4731), + [anon_sym_GT2] = ACTIONS(4733), + [anon_sym_operator] = ACTIONS(4731), + [anon_sym_try] = ACTIONS(4731), + [anon_sym_friend] = ACTIONS(4731), + [anon_sym_using] = ACTIONS(4731), + [anon_sym_concept] = ACTIONS(4731), + [anon_sym_requires] = ACTIONS(4731), }, [1736] = { - [sym__expression] = STATE(3937), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9701), - [sym__unary_right_fold] = STATE(9697), - [sym__binary_fold] = STATE(9685), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(4735), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4737), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_TILDE] = ACTIONS(4737), + [anon_sym_STAR] = ACTIONS(4737), + [anon_sym_PIPE_PIPE] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_SEMI] = ACTIONS(4737), + [anon_sym___extension__] = ACTIONS(4735), + [anon_sym_extern] = ACTIONS(4735), + [anon_sym___attribute__] = ACTIONS(4735), + [anon_sym_COLON_COLON] = ACTIONS(4737), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4737), + [anon_sym___declspec] = ACTIONS(4735), + [anon_sym___based] = ACTIONS(4735), + [anon_sym___cdecl] = ACTIONS(4735), + [anon_sym___clrcall] = ACTIONS(4735), + [anon_sym___stdcall] = ACTIONS(4735), + [anon_sym___fastcall] = ACTIONS(4735), + [anon_sym___thiscall] = ACTIONS(4735), + [anon_sym___vectorcall] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4737), + [anon_sym_signed] = ACTIONS(4735), + [anon_sym_unsigned] = ACTIONS(4735), + [anon_sym_long] = ACTIONS(4735), + [anon_sym_short] = ACTIONS(4735), + [anon_sym_LBRACK] = ACTIONS(4735), + [anon_sym_EQ] = ACTIONS(4737), + [anon_sym_static] = ACTIONS(4735), + [anon_sym_register] = ACTIONS(4735), + [anon_sym_inline] = ACTIONS(4735), + [anon_sym___inline] = ACTIONS(4735), + [anon_sym___inline__] = ACTIONS(4735), + [anon_sym___forceinline] = ACTIONS(4735), + [anon_sym_thread_local] = ACTIONS(4735), + [anon_sym___thread] = ACTIONS(4735), + [anon_sym_const] = ACTIONS(4735), + [anon_sym_constexpr] = ACTIONS(4735), + [anon_sym_volatile] = ACTIONS(4735), + [anon_sym_restrict] = ACTIONS(4735), + [anon_sym___restrict__] = ACTIONS(4735), + [anon_sym__Atomic] = ACTIONS(4735), + [anon_sym__Noreturn] = ACTIONS(4735), + [anon_sym_noreturn] = ACTIONS(4735), + [anon_sym_mutable] = ACTIONS(4735), + [anon_sym_constinit] = ACTIONS(4735), + [anon_sym_consteval] = ACTIONS(4735), + [sym_primitive_type] = ACTIONS(4735), + [anon_sym_enum] = ACTIONS(4735), + [anon_sym_class] = ACTIONS(4735), + [anon_sym_struct] = ACTIONS(4735), + [anon_sym_union] = ACTIONS(4735), + [anon_sym_or] = ACTIONS(4735), + [anon_sym_and] = ACTIONS(4735), + [anon_sym_asm] = ACTIONS(4735), + [anon_sym___asm__] = ACTIONS(4735), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4735), + [anon_sym_decltype] = ACTIONS(4735), + [anon_sym_final] = ACTIONS(4735), + [anon_sym_override] = ACTIONS(4735), + [anon_sym_virtual] = ACTIONS(4735), + [anon_sym_alignas] = ACTIONS(4735), + [anon_sym_explicit] = ACTIONS(4735), + [anon_sym_typename] = ACTIONS(4735), + [anon_sym_template] = ACTIONS(4735), + [anon_sym_GT2] = ACTIONS(4737), + [anon_sym_operator] = ACTIONS(4735), + [anon_sym_try] = ACTIONS(4735), + [anon_sym_friend] = ACTIONS(4735), + [anon_sym_using] = ACTIONS(4735), + [anon_sym_concept] = ACTIONS(4735), + [anon_sym_requires] = ACTIONS(4735), }, [1737] = { - [sym__expression] = STATE(3983), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9470), - [sym__unary_right_fold] = STATE(9467), - [sym__binary_fold] = STATE(9458), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(4739), + [anon_sym_COMMA] = ACTIONS(4741), + [anon_sym_RPAREN] = ACTIONS(4741), + [anon_sym_LPAREN2] = ACTIONS(4741), + [anon_sym_TILDE] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(4741), + [anon_sym_PIPE_PIPE] = ACTIONS(4741), + [anon_sym_AMP_AMP] = ACTIONS(4741), + [anon_sym_AMP] = ACTIONS(4739), + [anon_sym_SEMI] = ACTIONS(4741), + [anon_sym___extension__] = ACTIONS(4739), + [anon_sym_extern] = ACTIONS(4739), + [anon_sym___attribute__] = ACTIONS(4739), + [anon_sym_COLON_COLON] = ACTIONS(4741), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4741), + [anon_sym___declspec] = ACTIONS(4739), + [anon_sym___based] = ACTIONS(4739), + [anon_sym___cdecl] = ACTIONS(4739), + [anon_sym___clrcall] = ACTIONS(4739), + [anon_sym___stdcall] = ACTIONS(4739), + [anon_sym___fastcall] = ACTIONS(4739), + [anon_sym___thiscall] = ACTIONS(4739), + [anon_sym___vectorcall] = ACTIONS(4739), + [anon_sym_LBRACE] = ACTIONS(4741), + [anon_sym_signed] = ACTIONS(4739), + [anon_sym_unsigned] = ACTIONS(4739), + [anon_sym_long] = ACTIONS(4739), + [anon_sym_short] = ACTIONS(4739), + [anon_sym_LBRACK] = ACTIONS(4739), + [anon_sym_EQ] = ACTIONS(4741), + [anon_sym_static] = ACTIONS(4739), + [anon_sym_register] = ACTIONS(4739), + [anon_sym_inline] = ACTIONS(4739), + [anon_sym___inline] = ACTIONS(4739), + [anon_sym___inline__] = ACTIONS(4739), + [anon_sym___forceinline] = ACTIONS(4739), + [anon_sym_thread_local] = ACTIONS(4739), + [anon_sym___thread] = ACTIONS(4739), + [anon_sym_const] = ACTIONS(4739), + [anon_sym_constexpr] = ACTIONS(4739), + [anon_sym_volatile] = ACTIONS(4739), + [anon_sym_restrict] = ACTIONS(4739), + [anon_sym___restrict__] = ACTIONS(4739), + [anon_sym__Atomic] = ACTIONS(4739), + [anon_sym__Noreturn] = ACTIONS(4739), + [anon_sym_noreturn] = ACTIONS(4739), + [anon_sym_mutable] = ACTIONS(4739), + [anon_sym_constinit] = ACTIONS(4739), + [anon_sym_consteval] = ACTIONS(4739), + [sym_primitive_type] = ACTIONS(4739), + [anon_sym_enum] = ACTIONS(4739), + [anon_sym_class] = ACTIONS(4739), + [anon_sym_struct] = ACTIONS(4739), + [anon_sym_union] = ACTIONS(4739), + [anon_sym_or] = ACTIONS(4739), + [anon_sym_and] = ACTIONS(4739), + [anon_sym_asm] = ACTIONS(4739), + [anon_sym___asm__] = ACTIONS(4739), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4739), + [anon_sym_decltype] = ACTIONS(4739), + [anon_sym_final] = ACTIONS(4739), + [anon_sym_override] = ACTIONS(4739), + [anon_sym_virtual] = ACTIONS(4739), + [anon_sym_alignas] = ACTIONS(4739), + [anon_sym_explicit] = ACTIONS(4739), + [anon_sym_typename] = ACTIONS(4739), + [anon_sym_template] = ACTIONS(4739), + [anon_sym_GT2] = ACTIONS(4741), + [anon_sym_operator] = ACTIONS(4739), + [anon_sym_try] = ACTIONS(4739), + [anon_sym_friend] = ACTIONS(4739), + [anon_sym_using] = ACTIONS(4739), + [anon_sym_concept] = ACTIONS(4739), + [anon_sym_requires] = ACTIONS(4739), }, [1738] = { - [sym__expression] = STATE(4000), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9088), - [sym__unary_right_fold] = STATE(9089), - [sym__binary_fold] = STATE(9207), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(4743), + [anon_sym_COMMA] = ACTIONS(4745), + [anon_sym_RPAREN] = ACTIONS(4745), + [anon_sym_LPAREN2] = ACTIONS(4745), + [anon_sym_TILDE] = ACTIONS(4745), + [anon_sym_STAR] = ACTIONS(4745), + [anon_sym_PIPE_PIPE] = ACTIONS(4745), + [anon_sym_AMP_AMP] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4745), + [anon_sym___extension__] = ACTIONS(4743), + [anon_sym_extern] = ACTIONS(4743), + [anon_sym___attribute__] = ACTIONS(4743), + [anon_sym_COLON_COLON] = ACTIONS(4745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4745), + [anon_sym___declspec] = ACTIONS(4743), + [anon_sym___based] = ACTIONS(4743), + [anon_sym___cdecl] = ACTIONS(4743), + [anon_sym___clrcall] = ACTIONS(4743), + [anon_sym___stdcall] = ACTIONS(4743), + [anon_sym___fastcall] = ACTIONS(4743), + [anon_sym___thiscall] = ACTIONS(4743), + [anon_sym___vectorcall] = ACTIONS(4743), + [anon_sym_LBRACE] = ACTIONS(4745), + [anon_sym_signed] = ACTIONS(4743), + [anon_sym_unsigned] = ACTIONS(4743), + [anon_sym_long] = ACTIONS(4743), + [anon_sym_short] = ACTIONS(4743), + [anon_sym_LBRACK] = ACTIONS(4743), + [anon_sym_EQ] = ACTIONS(4745), + [anon_sym_static] = ACTIONS(4743), + [anon_sym_register] = ACTIONS(4743), + [anon_sym_inline] = ACTIONS(4743), + [anon_sym___inline] = ACTIONS(4743), + [anon_sym___inline__] = ACTIONS(4743), + [anon_sym___forceinline] = ACTIONS(4743), + [anon_sym_thread_local] = ACTIONS(4743), + [anon_sym___thread] = ACTIONS(4743), + [anon_sym_const] = ACTIONS(4743), + [anon_sym_constexpr] = ACTIONS(4743), + [anon_sym_volatile] = ACTIONS(4743), + [anon_sym_restrict] = ACTIONS(4743), + [anon_sym___restrict__] = ACTIONS(4743), + [anon_sym__Atomic] = ACTIONS(4743), + [anon_sym__Noreturn] = ACTIONS(4743), + [anon_sym_noreturn] = ACTIONS(4743), + [anon_sym_mutable] = ACTIONS(4743), + [anon_sym_constinit] = ACTIONS(4743), + [anon_sym_consteval] = ACTIONS(4743), + [sym_primitive_type] = ACTIONS(4743), + [anon_sym_enum] = ACTIONS(4743), + [anon_sym_class] = ACTIONS(4743), + [anon_sym_struct] = ACTIONS(4743), + [anon_sym_union] = ACTIONS(4743), + [anon_sym_or] = ACTIONS(4743), + [anon_sym_and] = ACTIONS(4743), + [anon_sym_asm] = ACTIONS(4743), + [anon_sym___asm__] = ACTIONS(4743), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4743), + [anon_sym_decltype] = ACTIONS(4743), + [anon_sym_final] = ACTIONS(4743), + [anon_sym_override] = ACTIONS(4743), + [anon_sym_virtual] = ACTIONS(4743), + [anon_sym_alignas] = ACTIONS(4743), + [anon_sym_explicit] = ACTIONS(4743), + [anon_sym_typename] = ACTIONS(4743), + [anon_sym_template] = ACTIONS(4743), + [anon_sym_GT2] = ACTIONS(4745), + [anon_sym_operator] = ACTIONS(4743), + [anon_sym_try] = ACTIONS(4743), + [anon_sym_friend] = ACTIONS(4743), + [anon_sym_using] = ACTIONS(4743), + [anon_sym_concept] = ACTIONS(4743), + [anon_sym_requires] = ACTIONS(4743), }, [1739] = { - [sym__expression] = STATE(5157), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9553), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(9553), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4747), + [anon_sym_COMMA] = ACTIONS(4749), + [anon_sym_RPAREN] = ACTIONS(4749), + [anon_sym_LPAREN2] = ACTIONS(4749), + [anon_sym_TILDE] = ACTIONS(4749), + [anon_sym_STAR] = ACTIONS(4749), + [anon_sym_PIPE_PIPE] = ACTIONS(4749), + [anon_sym_AMP_AMP] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4747), + [anon_sym_SEMI] = ACTIONS(4749), + [anon_sym___extension__] = ACTIONS(4747), + [anon_sym_extern] = ACTIONS(4747), + [anon_sym___attribute__] = ACTIONS(4747), + [anon_sym_COLON_COLON] = ACTIONS(4749), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4749), + [anon_sym___declspec] = ACTIONS(4747), + [anon_sym___based] = ACTIONS(4747), + [anon_sym___cdecl] = ACTIONS(4747), + [anon_sym___clrcall] = ACTIONS(4747), + [anon_sym___stdcall] = ACTIONS(4747), + [anon_sym___fastcall] = ACTIONS(4747), + [anon_sym___thiscall] = ACTIONS(4747), + [anon_sym___vectorcall] = ACTIONS(4747), + [anon_sym_LBRACE] = ACTIONS(4749), + [anon_sym_signed] = ACTIONS(4747), + [anon_sym_unsigned] = ACTIONS(4747), + [anon_sym_long] = ACTIONS(4747), + [anon_sym_short] = ACTIONS(4747), + [anon_sym_LBRACK] = ACTIONS(4747), + [anon_sym_EQ] = ACTIONS(4749), + [anon_sym_static] = ACTIONS(4747), + [anon_sym_register] = ACTIONS(4747), + [anon_sym_inline] = ACTIONS(4747), + [anon_sym___inline] = ACTIONS(4747), + [anon_sym___inline__] = ACTIONS(4747), + [anon_sym___forceinline] = ACTIONS(4747), + [anon_sym_thread_local] = ACTIONS(4747), + [anon_sym___thread] = ACTIONS(4747), + [anon_sym_const] = ACTIONS(4747), + [anon_sym_constexpr] = ACTIONS(4747), + [anon_sym_volatile] = ACTIONS(4747), + [anon_sym_restrict] = ACTIONS(4747), + [anon_sym___restrict__] = ACTIONS(4747), + [anon_sym__Atomic] = ACTIONS(4747), + [anon_sym__Noreturn] = ACTIONS(4747), + [anon_sym_noreturn] = ACTIONS(4747), + [anon_sym_mutable] = ACTIONS(4747), + [anon_sym_constinit] = ACTIONS(4747), + [anon_sym_consteval] = ACTIONS(4747), + [sym_primitive_type] = ACTIONS(4747), + [anon_sym_enum] = ACTIONS(4747), + [anon_sym_class] = ACTIONS(4747), + [anon_sym_struct] = ACTIONS(4747), + [anon_sym_union] = ACTIONS(4747), + [anon_sym_or] = ACTIONS(4747), + [anon_sym_and] = ACTIONS(4747), + [anon_sym_asm] = ACTIONS(4747), + [anon_sym___asm__] = ACTIONS(4747), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4747), + [anon_sym_decltype] = ACTIONS(4747), + [anon_sym_final] = ACTIONS(4747), + [anon_sym_override] = ACTIONS(4747), + [anon_sym_virtual] = ACTIONS(4747), + [anon_sym_alignas] = ACTIONS(4747), + [anon_sym_explicit] = ACTIONS(4747), + [anon_sym_typename] = ACTIONS(4747), + [anon_sym_template] = ACTIONS(4747), + [anon_sym_GT2] = ACTIONS(4749), + [anon_sym_operator] = ACTIONS(4747), + [anon_sym_try] = ACTIONS(4747), + [anon_sym_friend] = ACTIONS(4747), + [anon_sym_using] = ACTIONS(4747), + [anon_sym_concept] = ACTIONS(4747), + [anon_sym_requires] = ACTIONS(4747), }, [1740] = { - [sym__expression] = STATE(3981), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9587), - [sym__unary_right_fold] = STATE(9577), - [sym__binary_fold] = STATE(9562), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(4751), + [anon_sym_COMMA] = ACTIONS(4753), + [anon_sym_RPAREN] = ACTIONS(4753), + [anon_sym_LPAREN2] = ACTIONS(4753), + [anon_sym_TILDE] = ACTIONS(4753), + [anon_sym_STAR] = ACTIONS(4753), + [anon_sym_PIPE_PIPE] = ACTIONS(4753), + [anon_sym_AMP_AMP] = ACTIONS(4753), + [anon_sym_AMP] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4753), + [anon_sym___extension__] = ACTIONS(4751), + [anon_sym_extern] = ACTIONS(4751), + [anon_sym___attribute__] = ACTIONS(4751), + [anon_sym_COLON_COLON] = ACTIONS(4753), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4753), + [anon_sym___declspec] = ACTIONS(4751), + [anon_sym___based] = ACTIONS(4751), + [anon_sym___cdecl] = ACTIONS(4751), + [anon_sym___clrcall] = ACTIONS(4751), + [anon_sym___stdcall] = ACTIONS(4751), + [anon_sym___fastcall] = ACTIONS(4751), + [anon_sym___thiscall] = ACTIONS(4751), + [anon_sym___vectorcall] = ACTIONS(4751), + [anon_sym_LBRACE] = ACTIONS(4753), + [anon_sym_signed] = ACTIONS(4751), + [anon_sym_unsigned] = ACTIONS(4751), + [anon_sym_long] = ACTIONS(4751), + [anon_sym_short] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4753), + [anon_sym_static] = ACTIONS(4751), + [anon_sym_register] = ACTIONS(4751), + [anon_sym_inline] = ACTIONS(4751), + [anon_sym___inline] = ACTIONS(4751), + [anon_sym___inline__] = ACTIONS(4751), + [anon_sym___forceinline] = ACTIONS(4751), + [anon_sym_thread_local] = ACTIONS(4751), + [anon_sym___thread] = ACTIONS(4751), + [anon_sym_const] = ACTIONS(4751), + [anon_sym_constexpr] = ACTIONS(4751), + [anon_sym_volatile] = ACTIONS(4751), + [anon_sym_restrict] = ACTIONS(4751), + [anon_sym___restrict__] = ACTIONS(4751), + [anon_sym__Atomic] = ACTIONS(4751), + [anon_sym__Noreturn] = ACTIONS(4751), + [anon_sym_noreturn] = ACTIONS(4751), + [anon_sym_mutable] = ACTIONS(4751), + [anon_sym_constinit] = ACTIONS(4751), + [anon_sym_consteval] = ACTIONS(4751), + [sym_primitive_type] = ACTIONS(4751), + [anon_sym_enum] = ACTIONS(4751), + [anon_sym_class] = ACTIONS(4751), + [anon_sym_struct] = ACTIONS(4751), + [anon_sym_union] = ACTIONS(4751), + [anon_sym_or] = ACTIONS(4751), + [anon_sym_and] = ACTIONS(4751), + [anon_sym_asm] = ACTIONS(4751), + [anon_sym___asm__] = ACTIONS(4751), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4751), + [anon_sym_decltype] = ACTIONS(4751), + [anon_sym_final] = ACTIONS(4751), + [anon_sym_override] = ACTIONS(4751), + [anon_sym_virtual] = ACTIONS(4751), + [anon_sym_alignas] = ACTIONS(4751), + [anon_sym_explicit] = ACTIONS(4751), + [anon_sym_typename] = ACTIONS(4751), + [anon_sym_template] = ACTIONS(4751), + [anon_sym_GT2] = ACTIONS(4753), + [anon_sym_operator] = ACTIONS(4751), + [anon_sym_try] = ACTIONS(4751), + [anon_sym_friend] = ACTIONS(4751), + [anon_sym_using] = ACTIONS(4751), + [anon_sym_concept] = ACTIONS(4751), + [anon_sym_requires] = ACTIONS(4751), }, [1741] = { - [sym__expression] = STATE(5180), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8921), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8921), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4389), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4755), + [anon_sym_COMMA] = ACTIONS(4757), + [anon_sym_RPAREN] = ACTIONS(4757), + [anon_sym_LPAREN2] = ACTIONS(4757), + [anon_sym_TILDE] = ACTIONS(4757), + [anon_sym_STAR] = ACTIONS(4757), + [anon_sym_PIPE_PIPE] = ACTIONS(4757), + [anon_sym_AMP_AMP] = ACTIONS(4757), + [anon_sym_AMP] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4757), + [anon_sym___extension__] = ACTIONS(4755), + [anon_sym_extern] = ACTIONS(4755), + [anon_sym___attribute__] = ACTIONS(4755), + [anon_sym_COLON_COLON] = ACTIONS(4757), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4757), + [anon_sym___declspec] = ACTIONS(4755), + [anon_sym___based] = ACTIONS(4755), + [anon_sym___cdecl] = ACTIONS(4755), + [anon_sym___clrcall] = ACTIONS(4755), + [anon_sym___stdcall] = ACTIONS(4755), + [anon_sym___fastcall] = ACTIONS(4755), + [anon_sym___thiscall] = ACTIONS(4755), + [anon_sym___vectorcall] = ACTIONS(4755), + [anon_sym_LBRACE] = ACTIONS(4757), + [anon_sym_signed] = ACTIONS(4755), + [anon_sym_unsigned] = ACTIONS(4755), + [anon_sym_long] = ACTIONS(4755), + [anon_sym_short] = ACTIONS(4755), + [anon_sym_LBRACK] = ACTIONS(4755), + [anon_sym_EQ] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4755), + [anon_sym_register] = ACTIONS(4755), + [anon_sym_inline] = ACTIONS(4755), + [anon_sym___inline] = ACTIONS(4755), + [anon_sym___inline__] = ACTIONS(4755), + [anon_sym___forceinline] = ACTIONS(4755), + [anon_sym_thread_local] = ACTIONS(4755), + [anon_sym___thread] = ACTIONS(4755), + [anon_sym_const] = ACTIONS(4755), + [anon_sym_constexpr] = ACTIONS(4755), + [anon_sym_volatile] = ACTIONS(4755), + [anon_sym_restrict] = ACTIONS(4755), + [anon_sym___restrict__] = ACTIONS(4755), + [anon_sym__Atomic] = ACTIONS(4755), + [anon_sym__Noreturn] = ACTIONS(4755), + [anon_sym_noreturn] = ACTIONS(4755), + [anon_sym_mutable] = ACTIONS(4755), + [anon_sym_constinit] = ACTIONS(4755), + [anon_sym_consteval] = ACTIONS(4755), + [sym_primitive_type] = ACTIONS(4755), + [anon_sym_enum] = ACTIONS(4755), + [anon_sym_class] = ACTIONS(4755), + [anon_sym_struct] = ACTIONS(4755), + [anon_sym_union] = ACTIONS(4755), + [anon_sym_or] = ACTIONS(4755), + [anon_sym_and] = ACTIONS(4755), + [anon_sym_asm] = ACTIONS(4755), + [anon_sym___asm__] = ACTIONS(4755), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4755), + [anon_sym_decltype] = ACTIONS(4755), + [anon_sym_final] = ACTIONS(4755), + [anon_sym_override] = ACTIONS(4755), + [anon_sym_virtual] = ACTIONS(4755), + [anon_sym_alignas] = ACTIONS(4755), + [anon_sym_explicit] = ACTIONS(4755), + [anon_sym_typename] = ACTIONS(4755), + [anon_sym_template] = ACTIONS(4755), + [anon_sym_GT2] = ACTIONS(4757), + [anon_sym_operator] = ACTIONS(4755), + [anon_sym_try] = ACTIONS(4755), + [anon_sym_friend] = ACTIONS(4755), + [anon_sym_using] = ACTIONS(4755), + [anon_sym_concept] = ACTIONS(4755), + [anon_sym_requires] = ACTIONS(4755), }, [1742] = { - [sym__expression] = STATE(3986), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9224), - [sym__unary_right_fold] = STATE(9222), - [sym__binary_fold] = STATE(9210), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(4759), + [anon_sym_COMMA] = ACTIONS(4761), + [anon_sym_RPAREN] = ACTIONS(4761), + [anon_sym_LPAREN2] = ACTIONS(4761), + [anon_sym_TILDE] = ACTIONS(4761), + [anon_sym_STAR] = ACTIONS(4761), + [anon_sym_PIPE_PIPE] = ACTIONS(4761), + [anon_sym_AMP_AMP] = ACTIONS(4761), + [anon_sym_AMP] = ACTIONS(4759), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym___extension__] = ACTIONS(4759), + [anon_sym_extern] = ACTIONS(4759), + [anon_sym___attribute__] = ACTIONS(4759), + [anon_sym_COLON_COLON] = ACTIONS(4761), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4761), + [anon_sym___declspec] = ACTIONS(4759), + [anon_sym___based] = ACTIONS(4759), + [anon_sym___cdecl] = ACTIONS(4759), + [anon_sym___clrcall] = ACTIONS(4759), + [anon_sym___stdcall] = ACTIONS(4759), + [anon_sym___fastcall] = ACTIONS(4759), + [anon_sym___thiscall] = ACTIONS(4759), + [anon_sym___vectorcall] = ACTIONS(4759), + [anon_sym_LBRACE] = ACTIONS(4761), + [anon_sym_signed] = ACTIONS(4759), + [anon_sym_unsigned] = ACTIONS(4759), + [anon_sym_long] = ACTIONS(4759), + [anon_sym_short] = ACTIONS(4759), + [anon_sym_LBRACK] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4761), + [anon_sym_static] = ACTIONS(4759), + [anon_sym_register] = ACTIONS(4759), + [anon_sym_inline] = ACTIONS(4759), + [anon_sym___inline] = ACTIONS(4759), + [anon_sym___inline__] = ACTIONS(4759), + [anon_sym___forceinline] = ACTIONS(4759), + [anon_sym_thread_local] = ACTIONS(4759), + [anon_sym___thread] = ACTIONS(4759), + [anon_sym_const] = ACTIONS(4759), + [anon_sym_constexpr] = ACTIONS(4759), + [anon_sym_volatile] = ACTIONS(4759), + [anon_sym_restrict] = ACTIONS(4759), + [anon_sym___restrict__] = ACTIONS(4759), + [anon_sym__Atomic] = ACTIONS(4759), + [anon_sym__Noreturn] = ACTIONS(4759), + [anon_sym_noreturn] = ACTIONS(4759), + [anon_sym_mutable] = ACTIONS(4759), + [anon_sym_constinit] = ACTIONS(4759), + [anon_sym_consteval] = ACTIONS(4759), + [sym_primitive_type] = ACTIONS(4759), + [anon_sym_enum] = ACTIONS(4759), + [anon_sym_class] = ACTIONS(4759), + [anon_sym_struct] = ACTIONS(4759), + [anon_sym_union] = ACTIONS(4759), + [anon_sym_or] = ACTIONS(4759), + [anon_sym_and] = ACTIONS(4759), + [anon_sym_asm] = ACTIONS(4759), + [anon_sym___asm__] = ACTIONS(4759), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4759), + [anon_sym_decltype] = ACTIONS(4759), + [anon_sym_final] = ACTIONS(4759), + [anon_sym_override] = ACTIONS(4759), + [anon_sym_virtual] = ACTIONS(4759), + [anon_sym_alignas] = ACTIONS(4759), + [anon_sym_explicit] = ACTIONS(4759), + [anon_sym_typename] = ACTIONS(4759), + [anon_sym_template] = ACTIONS(4759), + [anon_sym_GT2] = ACTIONS(4761), + [anon_sym_operator] = ACTIONS(4759), + [anon_sym_try] = ACTIONS(4759), + [anon_sym_friend] = ACTIONS(4759), + [anon_sym_using] = ACTIONS(4759), + [anon_sym_concept] = ACTIONS(4759), + [anon_sym_requires] = ACTIONS(4759), }, [1743] = { - [sym__expression] = STATE(5080), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9138), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(9138), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4391), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4719), + [anon_sym_COMMA] = ACTIONS(4721), + [anon_sym_RPAREN] = ACTIONS(4721), + [anon_sym_LPAREN2] = ACTIONS(4721), + [anon_sym_TILDE] = ACTIONS(4721), + [anon_sym_STAR] = ACTIONS(4721), + [anon_sym_PIPE_PIPE] = ACTIONS(4721), + [anon_sym_AMP_AMP] = ACTIONS(4721), + [anon_sym_AMP] = ACTIONS(4719), + [anon_sym_SEMI] = ACTIONS(4721), + [anon_sym___extension__] = ACTIONS(4719), + [anon_sym_extern] = ACTIONS(4719), + [anon_sym___attribute__] = ACTIONS(4719), + [anon_sym_COLON_COLON] = ACTIONS(4721), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4721), + [anon_sym___declspec] = ACTIONS(4719), + [anon_sym___based] = ACTIONS(4719), + [anon_sym___cdecl] = ACTIONS(4719), + [anon_sym___clrcall] = ACTIONS(4719), + [anon_sym___stdcall] = ACTIONS(4719), + [anon_sym___fastcall] = ACTIONS(4719), + [anon_sym___thiscall] = ACTIONS(4719), + [anon_sym___vectorcall] = ACTIONS(4719), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_signed] = ACTIONS(4719), + [anon_sym_unsigned] = ACTIONS(4719), + [anon_sym_long] = ACTIONS(4719), + [anon_sym_short] = ACTIONS(4719), + [anon_sym_LBRACK] = ACTIONS(4719), + [anon_sym_EQ] = ACTIONS(4721), + [anon_sym_static] = ACTIONS(4719), + [anon_sym_register] = ACTIONS(4719), + [anon_sym_inline] = ACTIONS(4719), + [anon_sym___inline] = ACTIONS(4719), + [anon_sym___inline__] = ACTIONS(4719), + [anon_sym___forceinline] = ACTIONS(4719), + [anon_sym_thread_local] = ACTIONS(4719), + [anon_sym___thread] = ACTIONS(4719), + [anon_sym_const] = ACTIONS(4719), + [anon_sym_constexpr] = ACTIONS(4719), + [anon_sym_volatile] = ACTIONS(4719), + [anon_sym_restrict] = ACTIONS(4719), + [anon_sym___restrict__] = ACTIONS(4719), + [anon_sym__Atomic] = ACTIONS(4719), + [anon_sym__Noreturn] = ACTIONS(4719), + [anon_sym_noreturn] = ACTIONS(4719), + [anon_sym_mutable] = ACTIONS(4719), + [anon_sym_constinit] = ACTIONS(4719), + [anon_sym_consteval] = ACTIONS(4719), + [sym_primitive_type] = ACTIONS(4719), + [anon_sym_enum] = ACTIONS(4719), + [anon_sym_class] = ACTIONS(4719), + [anon_sym_struct] = ACTIONS(4719), + [anon_sym_union] = ACTIONS(4719), + [anon_sym_or] = ACTIONS(4719), + [anon_sym_and] = ACTIONS(4719), + [anon_sym_asm] = ACTIONS(4719), + [anon_sym___asm__] = ACTIONS(4719), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4719), + [anon_sym_decltype] = ACTIONS(4719), + [anon_sym_final] = ACTIONS(4719), + [anon_sym_override] = ACTIONS(4719), + [anon_sym_virtual] = ACTIONS(4719), + [anon_sym_alignas] = ACTIONS(4719), + [anon_sym_explicit] = ACTIONS(4719), + [anon_sym_typename] = ACTIONS(4719), + [anon_sym_template] = ACTIONS(4719), + [anon_sym_GT2] = ACTIONS(4721), + [anon_sym_operator] = ACTIONS(4719), + [anon_sym_try] = ACTIONS(4719), + [anon_sym_friend] = ACTIONS(4719), + [anon_sym_using] = ACTIONS(4719), + [anon_sym_concept] = ACTIONS(4719), + [anon_sym_requires] = ACTIONS(4719), }, [1744] = { - [sym__expression] = STATE(5223), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9602), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(9602), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym__declaration_modifiers] = STATE(2020), + [sym__declaration_specifiers] = STATE(3811), + [sym_attribute_specifier] = STATE(2020), + [sym_attribute_declaration] = STATE(2020), + [sym_ms_declspec_modifier] = STATE(2020), + [sym_storage_class_specifier] = STATE(2020), + [sym_type_qualifier] = STATE(2020), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_parameter_declaration] = STATE(6642), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2020), + [sym_alignas_specifier] = STATE(2020), + [sym_dependent_type] = STATE(3114), + [sym_type_parameter_declaration] = STATE(6642), + [sym_variadic_type_parameter_declaration] = STATE(6642), + [sym_optional_type_parameter_declaration] = STATE(6642), + [sym_template_template_parameter_declaration] = STATE(6642), + [sym_optional_parameter_declaration] = STATE(6642), + [sym_variadic_parameter_declaration] = STATE(6642), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5953), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2020), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4601), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(4703), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(4705), + [anon_sym_template] = ACTIONS(4707), + [anon_sym_GT2] = ACTIONS(4763), }, [1745] = { - [sym__expression] = STATE(3964), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym__unary_left_fold] = STATE(9305), - [sym__unary_right_fold] = STATE(9301), - [sym__binary_fold] = STATE(9296), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym__declaration_modifiers] = STATE(2020), + [sym__declaration_specifiers] = STATE(3811), + [sym_attribute_specifier] = STATE(2020), + [sym_attribute_declaration] = STATE(2020), + [sym_ms_declspec_modifier] = STATE(2020), + [sym_storage_class_specifier] = STATE(2020), + [sym_type_qualifier] = STATE(2020), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_parameter_declaration] = STATE(7024), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2020), + [sym_alignas_specifier] = STATE(2020), + [sym_dependent_type] = STATE(3114), + [sym_type_parameter_declaration] = STATE(7024), + [sym_variadic_type_parameter_declaration] = STATE(7024), + [sym_optional_type_parameter_declaration] = STATE(7024), + [sym_template_template_parameter_declaration] = STATE(7024), + [sym_optional_parameter_declaration] = STATE(7024), + [sym_variadic_parameter_declaration] = STATE(7024), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5953), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2020), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4601), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(4703), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(4705), + [anon_sym_template] = ACTIONS(4707), }, [1746] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(2360), - [sym_raw_string_literal] = STATE(3456), - [sym_identifier] = ACTIONS(4276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4280), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym___extension__] = ACTIONS(4276), - [anon_sym_extern] = ACTIONS(4276), - [anon_sym___attribute__] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4299), - [anon_sym___declspec] = ACTIONS(4276), - [anon_sym___based] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4304), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_static] = ACTIONS(4276), - [anon_sym_register] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym___inline] = ACTIONS(4276), - [anon_sym___inline__] = ACTIONS(4276), - [anon_sym___forceinline] = ACTIONS(4276), - [anon_sym_thread_local] = ACTIONS(4276), - [anon_sym___thread] = ACTIONS(4276), - [anon_sym_const] = ACTIONS(4276), - [anon_sym_constexpr] = ACTIONS(4276), - [anon_sym_volatile] = ACTIONS(4276), - [anon_sym_restrict] = ACTIONS(4276), - [anon_sym___restrict__] = ACTIONS(4276), - [anon_sym__Atomic] = ACTIONS(4276), - [anon_sym__Noreturn] = ACTIONS(4276), - [anon_sym_noreturn] = ACTIONS(4276), - [anon_sym_mutable] = ACTIONS(4276), - [anon_sym_constinit] = ACTIONS(4276), - [anon_sym_consteval] = ACTIONS(4276), - [anon_sym_COLON] = ACTIONS(4356), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4308), - [anon_sym_or_eq] = ACTIONS(4308), - [anon_sym_xor_eq] = ACTIONS(4308), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4286), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4286), - [anon_sym_not_eq] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4276), - [anon_sym_decltype] = ACTIONS(4276), - [anon_sym_virtual] = ACTIONS(4276), - [anon_sym_alignas] = ACTIONS(4276), - [anon_sym_template] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [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), + [sym_identifier] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4589), + [anon_sym_LPAREN2] = ACTIONS(4591), + [anon_sym_TILDE] = ACTIONS(4594), + [anon_sym_DASH] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4589), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4591), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_CARET] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_EQ_EQ] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_GT_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4596), + [anon_sym_LT_LT] = ACTIONS(4589), + [anon_sym_GT_GT] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym___extension__] = ACTIONS(4587), + [anon_sym_extern] = ACTIONS(4587), + [anon_sym___attribute__] = ACTIONS(4587), + [anon_sym_COLON_COLON] = ACTIONS(4594), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4591), + [anon_sym___declspec] = ACTIONS(4587), + [anon_sym___based] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4594), + [anon_sym_RBRACE] = ACTIONS(4589), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_register] = ACTIONS(4587), + [anon_sym_inline] = ACTIONS(4587), + [anon_sym___inline] = ACTIONS(4587), + [anon_sym___inline__] = ACTIONS(4587), + [anon_sym___forceinline] = ACTIONS(4587), + [anon_sym_thread_local] = ACTIONS(4587), + [anon_sym___thread] = ACTIONS(4587), + [anon_sym_const] = ACTIONS(4587), + [anon_sym_constexpr] = ACTIONS(4587), + [anon_sym_volatile] = ACTIONS(4587), + [anon_sym_restrict] = ACTIONS(4587), + [anon_sym___restrict__] = ACTIONS(4587), + [anon_sym__Atomic] = ACTIONS(4587), + [anon_sym__Noreturn] = ACTIONS(4587), + [anon_sym_noreturn] = ACTIONS(4587), + [anon_sym_mutable] = ACTIONS(4587), + [anon_sym_constinit] = ACTIONS(4587), + [anon_sym_consteval] = ACTIONS(4587), + [anon_sym_QMARK] = ACTIONS(4589), + [anon_sym_LT_EQ_GT] = ACTIONS(4589), + [anon_sym_or] = ACTIONS(4596), + [anon_sym_and] = ACTIONS(4596), + [anon_sym_bitor] = ACTIONS(4596), + [anon_sym_xor] = ACTIONS(4596), + [anon_sym_bitand] = ACTIONS(4596), + [anon_sym_not_eq] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_STAR] = ACTIONS(4589), + [anon_sym_DASH_GT] = ACTIONS(4589), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4587), + [anon_sym_decltype] = ACTIONS(4587), + [anon_sym_virtual] = ACTIONS(4587), + [anon_sym_alignas] = ACTIONS(4587), + [anon_sym_template] = ACTIONS(4587), + [anon_sym_operator] = ACTIONS(4587), }, [1747] = { - [sym__expression] = STATE(4986), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4397), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4589), + [anon_sym_RPAREN] = ACTIONS(4589), + [anon_sym_LPAREN2] = ACTIONS(4591), + [anon_sym_TILDE] = ACTIONS(4594), + [anon_sym_DASH] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4589), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4591), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_CARET] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_EQ_EQ] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_GT_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4596), + [anon_sym_LT_LT] = ACTIONS(4589), + [anon_sym_GT_GT] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4589), + [anon_sym___extension__] = ACTIONS(4587), + [anon_sym_extern] = ACTIONS(4587), + [anon_sym___attribute__] = ACTIONS(4587), + [anon_sym_COLON_COLON] = ACTIONS(4594), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4594), + [anon_sym___declspec] = ACTIONS(4587), + [anon_sym___based] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4594), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_register] = ACTIONS(4587), + [anon_sym_inline] = ACTIONS(4587), + [anon_sym___inline] = ACTIONS(4587), + [anon_sym___inline__] = ACTIONS(4587), + [anon_sym___forceinline] = ACTIONS(4587), + [anon_sym_thread_local] = ACTIONS(4587), + [anon_sym___thread] = ACTIONS(4587), + [anon_sym_const] = ACTIONS(4587), + [anon_sym_constexpr] = ACTIONS(4587), + [anon_sym_volatile] = ACTIONS(4587), + [anon_sym_restrict] = ACTIONS(4587), + [anon_sym___restrict__] = ACTIONS(4587), + [anon_sym__Atomic] = ACTIONS(4587), + [anon_sym__Noreturn] = ACTIONS(4587), + [anon_sym_noreturn] = ACTIONS(4587), + [anon_sym_mutable] = ACTIONS(4587), + [anon_sym_constinit] = ACTIONS(4587), + [anon_sym_consteval] = ACTIONS(4587), + [anon_sym_QMARK] = ACTIONS(4589), + [anon_sym_LT_EQ_GT] = ACTIONS(4589), + [anon_sym_or] = ACTIONS(4596), + [anon_sym_and] = ACTIONS(4596), + [anon_sym_bitor] = ACTIONS(4596), + [anon_sym_xor] = ACTIONS(4596), + [anon_sym_bitand] = ACTIONS(4596), + [anon_sym_not_eq] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_STAR] = ACTIONS(4589), + [anon_sym_DASH_GT] = ACTIONS(4589), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4587), + [anon_sym_decltype] = ACTIONS(4587), + [anon_sym_virtual] = ACTIONS(4587), + [anon_sym_alignas] = ACTIONS(4587), + [anon_sym_template] = ACTIONS(4587), + [anon_sym_operator] = ACTIONS(4587), }, [1748] = { - [sym__expression] = STATE(5207), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [sym_identifier] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4591), + [anon_sym_COMMA] = ACTIONS(4591), + [anon_sym_RPAREN] = ACTIONS(4591), + [anon_sym_LPAREN2] = ACTIONS(4591), + [anon_sym_TILDE] = ACTIONS(4594), + [anon_sym_DASH] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4589), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4591), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_CARET] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_EQ_EQ] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_GT_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4596), + [anon_sym_LT_LT] = ACTIONS(4589), + [anon_sym_GT_GT] = ACTIONS(4589), + [anon_sym___extension__] = ACTIONS(4587), + [anon_sym_extern] = ACTIONS(4587), + [anon_sym___attribute__] = ACTIONS(4587), + [anon_sym_COLON_COLON] = ACTIONS(4594), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4594), + [anon_sym___declspec] = ACTIONS(4587), + [anon_sym___based] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4594), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_EQ] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_register] = ACTIONS(4587), + [anon_sym_inline] = ACTIONS(4587), + [anon_sym___inline] = ACTIONS(4587), + [anon_sym___inline__] = ACTIONS(4587), + [anon_sym___forceinline] = ACTIONS(4587), + [anon_sym_thread_local] = ACTIONS(4587), + [anon_sym___thread] = ACTIONS(4587), + [anon_sym_const] = ACTIONS(4587), + [anon_sym_constexpr] = ACTIONS(4587), + [anon_sym_volatile] = ACTIONS(4587), + [anon_sym_restrict] = ACTIONS(4587), + [anon_sym___restrict__] = ACTIONS(4587), + [anon_sym__Atomic] = ACTIONS(4587), + [anon_sym__Noreturn] = ACTIONS(4587), + [anon_sym_noreturn] = ACTIONS(4587), + [anon_sym_mutable] = ACTIONS(4587), + [anon_sym_constinit] = ACTIONS(4587), + [anon_sym_consteval] = ACTIONS(4587), + [anon_sym_QMARK] = ACTIONS(4589), + [anon_sym_LT_EQ_GT] = ACTIONS(4589), + [anon_sym_or] = ACTIONS(4596), + [anon_sym_and] = ACTIONS(4596), + [anon_sym_bitor] = ACTIONS(4596), + [anon_sym_xor] = ACTIONS(4596), + [anon_sym_bitand] = ACTIONS(4596), + [anon_sym_not_eq] = ACTIONS(4596), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_STAR] = ACTIONS(4589), + [anon_sym_DASH_GT] = ACTIONS(4589), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4587), + [anon_sym_decltype] = ACTIONS(4587), + [anon_sym_virtual] = ACTIONS(4587), + [anon_sym_alignas] = ACTIONS(4587), + [anon_sym_template] = ACTIONS(4587), + [anon_sym_operator] = ACTIONS(4587), }, [1749] = { - [sym__expression] = STATE(4929), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_initializer_list] = STATE(8247), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4405), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym__declaration_modifiers] = STATE(2020), + [sym__declaration_specifiers] = STATE(3794), + [sym_attribute_specifier] = STATE(2020), + [sym_attribute_declaration] = STATE(2020), + [sym_ms_declspec_modifier] = STATE(2020), + [sym_storage_class_specifier] = STATE(2020), + [sym_type_qualifier] = STATE(2020), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_parameter_declaration] = STATE(6641), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2020), + [sym_alignas_specifier] = STATE(2020), + [sym_dependent_type] = STATE(3114), + [sym_optional_parameter_declaration] = STATE(6641), + [sym_variadic_parameter_declaration] = STATE(6641), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5953), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2020), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_RPAREN] = ACTIONS(4767), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(1948), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), }, [1750] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4545), + [anon_sym_COMMA] = ACTIONS(4545), + [anon_sym_RPAREN] = ACTIONS(4545), + [anon_sym_LPAREN2] = ACTIONS(4545), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4543), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE] = ACTIONS(4543), + [anon_sym_CARET] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4543), + [anon_sym_EQ_EQ] = ACTIONS(4545), + [anon_sym_BANG_EQ] = ACTIONS(4545), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_GT_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ] = ACTIONS(4543), + [anon_sym_LT] = ACTIONS(4543), + [anon_sym_LT_LT] = ACTIONS(4543), + [anon_sym_GT_GT] = ACTIONS(4543), + [anon_sym___extension__] = ACTIONS(4545), + [anon_sym___attribute__] = ACTIONS(4545), + [anon_sym_COLON_COLON] = ACTIONS(4545), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_LBRACK] = ACTIONS(4545), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_const] = ACTIONS(4543), + [anon_sym_constexpr] = ACTIONS(4545), + [anon_sym_volatile] = ACTIONS(4545), + [anon_sym_restrict] = ACTIONS(4545), + [anon_sym___restrict__] = ACTIONS(4545), + [anon_sym__Atomic] = ACTIONS(4545), + [anon_sym__Noreturn] = ACTIONS(4545), + [anon_sym_noreturn] = ACTIONS(4545), + [anon_sym_mutable] = ACTIONS(4545), + [anon_sym_constinit] = ACTIONS(4545), + [anon_sym_consteval] = ACTIONS(4545), + [anon_sym_COLON] = ACTIONS(4543), + [anon_sym_QMARK] = ACTIONS(4545), + [anon_sym_STAR_EQ] = ACTIONS(4545), + [anon_sym_SLASH_EQ] = ACTIONS(4545), + [anon_sym_PERCENT_EQ] = ACTIONS(4545), + [anon_sym_PLUS_EQ] = ACTIONS(4545), + [anon_sym_DASH_EQ] = ACTIONS(4545), + [anon_sym_LT_LT_EQ] = ACTIONS(4545), + [anon_sym_GT_GT_EQ] = ACTIONS(4545), + [anon_sym_AMP_EQ] = ACTIONS(4545), + [anon_sym_CARET_EQ] = ACTIONS(4545), + [anon_sym_PIPE_EQ] = ACTIONS(4545), + [anon_sym_and_eq] = ACTIONS(4545), + [anon_sym_or_eq] = ACTIONS(4545), + [anon_sym_xor_eq] = ACTIONS(4545), + [anon_sym_LT_EQ_GT] = ACTIONS(4545), + [anon_sym_or] = ACTIONS(4543), + [anon_sym_and] = ACTIONS(4543), + [anon_sym_bitor] = ACTIONS(4545), + [anon_sym_xor] = ACTIONS(4543), + [anon_sym_bitand] = ACTIONS(4545), + [anon_sym_not_eq] = ACTIONS(4545), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_PLUS_PLUS] = ACTIONS(4545), + [anon_sym_DOT] = ACTIONS(4543), + [anon_sym_DOT_STAR] = ACTIONS(4545), + [anon_sym_DASH_GT] = ACTIONS(4543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4545), + [anon_sym_decltype] = ACTIONS(4545), + [anon_sym_final] = ACTIONS(4545), + [anon_sym_override] = ACTIONS(4545), + [anon_sym_DASH_GT_STAR] = ACTIONS(4545), }, [1751] = { - [sym__expression] = STATE(5085), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4578), + [anon_sym_COMMA] = ACTIONS(4578), + [anon_sym_RPAREN] = ACTIONS(4578), + [anon_sym_LPAREN2] = ACTIONS(4578), + [anon_sym_DASH] = ACTIONS(4576), + [anon_sym_PLUS] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4576), + [anon_sym_SLASH] = ACTIONS(4576), + [anon_sym_PERCENT] = ACTIONS(4576), + [anon_sym_PIPE_PIPE] = ACTIONS(4578), + [anon_sym_AMP_AMP] = ACTIONS(4578), + [anon_sym_PIPE] = ACTIONS(4576), + [anon_sym_CARET] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4576), + [anon_sym_EQ_EQ] = ACTIONS(4578), + [anon_sym_BANG_EQ] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4576), + [anon_sym_GT_EQ] = ACTIONS(4578), + [anon_sym_LT_EQ] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4576), + [anon_sym_LT_LT] = ACTIONS(4576), + [anon_sym_GT_GT] = ACTIONS(4576), + [anon_sym___extension__] = ACTIONS(4578), + [anon_sym___attribute__] = ACTIONS(4578), + [anon_sym_COLON_COLON] = ACTIONS(4578), + [anon_sym_LBRACE] = ACTIONS(4578), + [anon_sym_LBRACK] = ACTIONS(4578), + [anon_sym_EQ] = ACTIONS(4576), + [anon_sym_const] = ACTIONS(4576), + [anon_sym_constexpr] = ACTIONS(4578), + [anon_sym_volatile] = ACTIONS(4578), + [anon_sym_restrict] = ACTIONS(4578), + [anon_sym___restrict__] = ACTIONS(4578), + [anon_sym__Atomic] = ACTIONS(4578), + [anon_sym__Noreturn] = ACTIONS(4578), + [anon_sym_noreturn] = ACTIONS(4578), + [anon_sym_mutable] = ACTIONS(4578), + [anon_sym_constinit] = ACTIONS(4578), + [anon_sym_consteval] = ACTIONS(4578), + [anon_sym_COLON] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4578), + [anon_sym_STAR_EQ] = ACTIONS(4578), + [anon_sym_SLASH_EQ] = ACTIONS(4578), + [anon_sym_PERCENT_EQ] = ACTIONS(4578), + [anon_sym_PLUS_EQ] = ACTIONS(4578), + [anon_sym_DASH_EQ] = ACTIONS(4578), + [anon_sym_LT_LT_EQ] = ACTIONS(4578), + [anon_sym_GT_GT_EQ] = ACTIONS(4578), + [anon_sym_AMP_EQ] = ACTIONS(4578), + [anon_sym_CARET_EQ] = ACTIONS(4578), + [anon_sym_PIPE_EQ] = ACTIONS(4578), + [anon_sym_and_eq] = ACTIONS(4578), + [anon_sym_or_eq] = ACTIONS(4578), + [anon_sym_xor_eq] = ACTIONS(4578), + [anon_sym_LT_EQ_GT] = ACTIONS(4578), + [anon_sym_or] = ACTIONS(4576), + [anon_sym_and] = ACTIONS(4576), + [anon_sym_bitor] = ACTIONS(4578), + [anon_sym_xor] = ACTIONS(4576), + [anon_sym_bitand] = ACTIONS(4578), + [anon_sym_not_eq] = ACTIONS(4578), + [anon_sym_DASH_DASH] = ACTIONS(4578), + [anon_sym_PLUS_PLUS] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4576), + [anon_sym_DOT_STAR] = ACTIONS(4578), + [anon_sym_DASH_GT] = ACTIONS(4576), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4578), + [anon_sym_decltype] = ACTIONS(4578), + [anon_sym_final] = ACTIONS(4578), + [anon_sym_override] = ACTIONS(4578), + [anon_sym_DASH_GT_STAR] = ACTIONS(4578), }, [1752] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4409), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym__declaration_modifiers] = STATE(2020), + [sym__declaration_specifiers] = STATE(3794), + [sym_attribute_specifier] = STATE(2020), + [sym_attribute_declaration] = STATE(2020), + [sym_ms_declspec_modifier] = STATE(2020), + [sym_storage_class_specifier] = STATE(2020), + [sym_type_qualifier] = STATE(2020), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_parameter_declaration] = STATE(6472), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2020), + [sym_alignas_specifier] = STATE(2020), + [sym_dependent_type] = STATE(3114), + [sym_optional_parameter_declaration] = STATE(6472), + [sym_variadic_parameter_declaration] = STATE(6472), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5953), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2020), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4769), + [anon_sym_RPAREN] = ACTIONS(4771), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(1948), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), }, [1753] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4411), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4541), + [anon_sym_COMMA] = ACTIONS(4541), + [anon_sym_RPAREN] = ACTIONS(4541), + [anon_sym_LPAREN2] = ACTIONS(4541), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_STAR] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4539), + [anon_sym_PERCENT] = ACTIONS(4539), + [anon_sym_PIPE_PIPE] = ACTIONS(4541), + [anon_sym_AMP_AMP] = ACTIONS(4541), + [anon_sym_PIPE] = ACTIONS(4539), + [anon_sym_CARET] = ACTIONS(4539), + [anon_sym_AMP] = ACTIONS(4539), + [anon_sym_EQ_EQ] = ACTIONS(4541), + [anon_sym_BANG_EQ] = ACTIONS(4541), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_GT_EQ] = ACTIONS(4541), + [anon_sym_LT_EQ] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(4539), + [anon_sym_LT_LT] = ACTIONS(4539), + [anon_sym_GT_GT] = ACTIONS(4539), + [anon_sym___extension__] = ACTIONS(4541), + [anon_sym___attribute__] = ACTIONS(4541), + [anon_sym_COLON_COLON] = ACTIONS(4541), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_LBRACK] = ACTIONS(4541), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_const] = ACTIONS(4539), + [anon_sym_constexpr] = ACTIONS(4541), + [anon_sym_volatile] = ACTIONS(4541), + [anon_sym_restrict] = ACTIONS(4541), + [anon_sym___restrict__] = ACTIONS(4541), + [anon_sym__Atomic] = ACTIONS(4541), + [anon_sym__Noreturn] = ACTIONS(4541), + [anon_sym_noreturn] = ACTIONS(4541), + [anon_sym_mutable] = ACTIONS(4541), + [anon_sym_constinit] = ACTIONS(4541), + [anon_sym_consteval] = ACTIONS(4541), + [anon_sym_COLON] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4541), + [anon_sym_SLASH_EQ] = ACTIONS(4541), + [anon_sym_PERCENT_EQ] = ACTIONS(4541), + [anon_sym_PLUS_EQ] = ACTIONS(4541), + [anon_sym_DASH_EQ] = ACTIONS(4541), + [anon_sym_LT_LT_EQ] = ACTIONS(4541), + [anon_sym_GT_GT_EQ] = ACTIONS(4541), + [anon_sym_AMP_EQ] = ACTIONS(4541), + [anon_sym_CARET_EQ] = ACTIONS(4541), + [anon_sym_PIPE_EQ] = ACTIONS(4541), + [anon_sym_and_eq] = ACTIONS(4541), + [anon_sym_or_eq] = ACTIONS(4541), + [anon_sym_xor_eq] = ACTIONS(4541), + [anon_sym_LT_EQ_GT] = ACTIONS(4541), + [anon_sym_or] = ACTIONS(4539), + [anon_sym_and] = ACTIONS(4539), + [anon_sym_bitor] = ACTIONS(4541), + [anon_sym_xor] = ACTIONS(4539), + [anon_sym_bitand] = ACTIONS(4541), + [anon_sym_not_eq] = ACTIONS(4541), + [anon_sym_DASH_DASH] = ACTIONS(4541), + [anon_sym_PLUS_PLUS] = ACTIONS(4541), + [anon_sym_DOT] = ACTIONS(4539), + [anon_sym_DOT_STAR] = ACTIONS(4541), + [anon_sym_DASH_GT] = ACTIONS(4539), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4541), + [anon_sym_decltype] = ACTIONS(4541), + [anon_sym_final] = ACTIONS(4541), + [anon_sym_override] = ACTIONS(4541), + [anon_sym_DASH_GT_STAR] = ACTIONS(4541), }, [1754] = { - [sym__expression] = STATE(4986), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4397), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym__declaration_modifiers] = STATE(2020), + [sym__declaration_specifiers] = STATE(3794), + [sym_attribute_specifier] = STATE(2020), + [sym_attribute_declaration] = STATE(2020), + [sym_ms_declspec_modifier] = STATE(2020), + [sym_storage_class_specifier] = STATE(2020), + [sym_type_qualifier] = STATE(2020), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_parameter_declaration] = STATE(6840), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2020), + [sym_alignas_specifier] = STATE(2020), + [sym_dependent_type] = STATE(3114), + [sym_optional_parameter_declaration] = STATE(6840), + [sym_variadic_parameter_declaration] = STATE(6840), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5953), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2020), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1962), + [anon_sym_RPAREN] = ACTIONS(4045), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(1948), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), }, [1755] = { - [sym__expression] = STATE(4331), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(2020), + [sym__declaration_specifiers] = STATE(3794), + [sym_attribute_specifier] = STATE(2020), + [sym_attribute_declaration] = STATE(2020), + [sym_ms_declspec_modifier] = STATE(2020), + [sym_storage_class_specifier] = STATE(2020), + [sym_type_qualifier] = STATE(2020), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_parameter_declaration] = STATE(6494), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2020), + [sym_alignas_specifier] = STATE(2020), + [sym_dependent_type] = STATE(3114), + [sym_optional_parameter_declaration] = STATE(6494), + [sym_variadic_parameter_declaration] = STATE(6494), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5953), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2020), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4773), + [anon_sym_RPAREN] = ACTIONS(4775), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(1948), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), }, [1756] = { - [sym__expression] = STATE(3900), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4585), + [anon_sym_COMMA] = ACTIONS(4585), + [anon_sym_RPAREN] = ACTIONS(4585), + [anon_sym_LPAREN2] = ACTIONS(4585), + [anon_sym_DASH] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(4583), + [anon_sym_SLASH] = ACTIONS(4583), + [anon_sym_PERCENT] = ACTIONS(4583), + [anon_sym_PIPE_PIPE] = ACTIONS(4585), + [anon_sym_AMP_AMP] = ACTIONS(4585), + [anon_sym_PIPE] = ACTIONS(4583), + [anon_sym_CARET] = ACTIONS(4583), + [anon_sym_AMP] = ACTIONS(4583), + [anon_sym_EQ_EQ] = ACTIONS(4585), + [anon_sym_BANG_EQ] = ACTIONS(4585), + [anon_sym_GT] = ACTIONS(4583), + [anon_sym_GT_EQ] = ACTIONS(4585), + [anon_sym_LT_EQ] = ACTIONS(4583), + [anon_sym_LT] = ACTIONS(4583), + [anon_sym_LT_LT] = ACTIONS(4583), + [anon_sym_GT_GT] = ACTIONS(4583), + [anon_sym___extension__] = ACTIONS(4585), + [anon_sym___attribute__] = ACTIONS(4585), + [anon_sym_COLON_COLON] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4585), + [anon_sym_LBRACK] = ACTIONS(4585), + [anon_sym_EQ] = ACTIONS(4583), + [anon_sym_const] = ACTIONS(4583), + [anon_sym_constexpr] = ACTIONS(4585), + [anon_sym_volatile] = ACTIONS(4585), + [anon_sym_restrict] = ACTIONS(4585), + [anon_sym___restrict__] = ACTIONS(4585), + [anon_sym__Atomic] = ACTIONS(4585), + [anon_sym__Noreturn] = ACTIONS(4585), + [anon_sym_noreturn] = ACTIONS(4585), + [anon_sym_mutable] = ACTIONS(4585), + [anon_sym_constinit] = ACTIONS(4585), + [anon_sym_consteval] = ACTIONS(4585), + [anon_sym_COLON] = ACTIONS(4583), + [anon_sym_QMARK] = ACTIONS(4585), + [anon_sym_STAR_EQ] = ACTIONS(4585), + [anon_sym_SLASH_EQ] = ACTIONS(4585), + [anon_sym_PERCENT_EQ] = ACTIONS(4585), + [anon_sym_PLUS_EQ] = ACTIONS(4585), + [anon_sym_DASH_EQ] = ACTIONS(4585), + [anon_sym_LT_LT_EQ] = ACTIONS(4585), + [anon_sym_GT_GT_EQ] = ACTIONS(4585), + [anon_sym_AMP_EQ] = ACTIONS(4585), + [anon_sym_CARET_EQ] = ACTIONS(4585), + [anon_sym_PIPE_EQ] = ACTIONS(4585), + [anon_sym_and_eq] = ACTIONS(4585), + [anon_sym_or_eq] = ACTIONS(4585), + [anon_sym_xor_eq] = ACTIONS(4585), + [anon_sym_LT_EQ_GT] = ACTIONS(4585), + [anon_sym_or] = ACTIONS(4583), + [anon_sym_and] = ACTIONS(4583), + [anon_sym_bitor] = ACTIONS(4585), + [anon_sym_xor] = ACTIONS(4583), + [anon_sym_bitand] = ACTIONS(4585), + [anon_sym_not_eq] = ACTIONS(4585), + [anon_sym_DASH_DASH] = ACTIONS(4585), + [anon_sym_PLUS_PLUS] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4583), + [anon_sym_DOT_STAR] = ACTIONS(4585), + [anon_sym_DASH_GT] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4585), + [anon_sym_decltype] = ACTIONS(4585), + [anon_sym_final] = ACTIONS(4585), + [anon_sym_override] = ACTIONS(4585), + [anon_sym_DASH_GT_STAR] = ACTIONS(4585), }, [1757] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4397), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4549), + [anon_sym_COMMA] = ACTIONS(4549), + [anon_sym_RPAREN] = ACTIONS(4549), + [anon_sym_LPAREN2] = ACTIONS(4549), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_STAR] = ACTIONS(4547), + [anon_sym_SLASH] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4547), + [anon_sym_PIPE_PIPE] = ACTIONS(4549), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4547), + [anon_sym_CARET] = ACTIONS(4547), + [anon_sym_AMP] = ACTIONS(4547), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_GT] = ACTIONS(4547), + [anon_sym_GT_EQ] = ACTIONS(4549), + [anon_sym_LT_EQ] = ACTIONS(4547), + [anon_sym_LT] = ACTIONS(4547), + [anon_sym_LT_LT] = ACTIONS(4547), + [anon_sym_GT_GT] = ACTIONS(4547), + [anon_sym___extension__] = ACTIONS(4549), + [anon_sym___attribute__] = ACTIONS(4549), + [anon_sym_COLON_COLON] = ACTIONS(4549), + [anon_sym_LBRACE] = ACTIONS(4549), + [anon_sym_LBRACK] = ACTIONS(4549), + [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_const] = ACTIONS(4547), + [anon_sym_constexpr] = ACTIONS(4549), + [anon_sym_volatile] = ACTIONS(4549), + [anon_sym_restrict] = ACTIONS(4549), + [anon_sym___restrict__] = ACTIONS(4549), + [anon_sym__Atomic] = ACTIONS(4549), + [anon_sym__Noreturn] = ACTIONS(4549), + [anon_sym_noreturn] = ACTIONS(4549), + [anon_sym_mutable] = ACTIONS(4549), + [anon_sym_constinit] = ACTIONS(4549), + [anon_sym_consteval] = ACTIONS(4549), + [anon_sym_COLON] = ACTIONS(4547), + [anon_sym_QMARK] = ACTIONS(4549), + [anon_sym_STAR_EQ] = ACTIONS(4549), + [anon_sym_SLASH_EQ] = ACTIONS(4549), + [anon_sym_PERCENT_EQ] = ACTIONS(4549), + [anon_sym_PLUS_EQ] = ACTIONS(4549), + [anon_sym_DASH_EQ] = ACTIONS(4549), + [anon_sym_LT_LT_EQ] = ACTIONS(4549), + [anon_sym_GT_GT_EQ] = ACTIONS(4549), + [anon_sym_AMP_EQ] = ACTIONS(4549), + [anon_sym_CARET_EQ] = ACTIONS(4549), + [anon_sym_PIPE_EQ] = ACTIONS(4549), + [anon_sym_and_eq] = ACTIONS(4549), + [anon_sym_or_eq] = ACTIONS(4549), + [anon_sym_xor_eq] = ACTIONS(4549), + [anon_sym_LT_EQ_GT] = ACTIONS(4549), + [anon_sym_or] = ACTIONS(4547), + [anon_sym_and] = ACTIONS(4547), + [anon_sym_bitor] = ACTIONS(4549), + [anon_sym_xor] = ACTIONS(4547), + [anon_sym_bitand] = ACTIONS(4549), + [anon_sym_not_eq] = ACTIONS(4549), + [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4549), + [anon_sym_DOT] = ACTIONS(4547), + [anon_sym_DOT_STAR] = ACTIONS(4549), + [anon_sym_DASH_GT] = ACTIONS(4547), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4549), + [anon_sym_decltype] = ACTIONS(4549), + [anon_sym_final] = ACTIONS(4549), + [anon_sym_override] = ACTIONS(4549), + [anon_sym_DASH_GT_STAR] = ACTIONS(4549), }, [1758] = { - [sym__expression] = STATE(5377), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4557), + [anon_sym_COMMA] = ACTIONS(4557), + [anon_sym_RPAREN] = ACTIONS(4557), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4555), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_PERCENT] = ACTIONS(4555), + [anon_sym_PIPE_PIPE] = ACTIONS(4557), + [anon_sym_AMP_AMP] = ACTIONS(4557), + [anon_sym_PIPE] = ACTIONS(4555), + [anon_sym_CARET] = ACTIONS(4555), + [anon_sym_AMP] = ACTIONS(4555), + [anon_sym_EQ_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_GT_EQ] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_LT_LT] = ACTIONS(4555), + [anon_sym_GT_GT] = ACTIONS(4555), + [anon_sym___extension__] = ACTIONS(4557), + [anon_sym___attribute__] = ACTIONS(4557), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_LBRACE] = ACTIONS(4557), + [anon_sym_LBRACK] = ACTIONS(4557), + [anon_sym_EQ] = ACTIONS(4555), + [anon_sym_const] = ACTIONS(4555), + [anon_sym_constexpr] = ACTIONS(4557), + [anon_sym_volatile] = ACTIONS(4557), + [anon_sym_restrict] = ACTIONS(4557), + [anon_sym___restrict__] = ACTIONS(4557), + [anon_sym__Atomic] = ACTIONS(4557), + [anon_sym__Noreturn] = ACTIONS(4557), + [anon_sym_noreturn] = ACTIONS(4557), + [anon_sym_mutable] = ACTIONS(4557), + [anon_sym_constinit] = ACTIONS(4557), + [anon_sym_consteval] = ACTIONS(4557), + [anon_sym_COLON] = ACTIONS(4555), + [anon_sym_QMARK] = ACTIONS(4557), + [anon_sym_STAR_EQ] = ACTIONS(4557), + [anon_sym_SLASH_EQ] = ACTIONS(4557), + [anon_sym_PERCENT_EQ] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(4557), + [anon_sym_DASH_EQ] = ACTIONS(4557), + [anon_sym_LT_LT_EQ] = ACTIONS(4557), + [anon_sym_GT_GT_EQ] = ACTIONS(4557), + [anon_sym_AMP_EQ] = ACTIONS(4557), + [anon_sym_CARET_EQ] = ACTIONS(4557), + [anon_sym_PIPE_EQ] = ACTIONS(4557), + [anon_sym_and_eq] = ACTIONS(4557), + [anon_sym_or_eq] = ACTIONS(4557), + [anon_sym_xor_eq] = ACTIONS(4557), + [anon_sym_LT_EQ_GT] = ACTIONS(4557), + [anon_sym_or] = ACTIONS(4555), + [anon_sym_and] = ACTIONS(4555), + [anon_sym_bitor] = ACTIONS(4557), + [anon_sym_xor] = ACTIONS(4555), + [anon_sym_bitand] = ACTIONS(4557), + [anon_sym_not_eq] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DOT] = ACTIONS(4555), + [anon_sym_DOT_STAR] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4557), + [anon_sym_decltype] = ACTIONS(4557), + [anon_sym_final] = ACTIONS(4557), + [anon_sym_override] = ACTIONS(4557), + [anon_sym_DASH_GT_STAR] = ACTIONS(4557), }, [1759] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4415), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_RPAREN] = ACTIONS(4553), + [anon_sym_LPAREN2] = ACTIONS(4553), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_PIPE_PIPE] = ACTIONS(4553), + [anon_sym_AMP_AMP] = ACTIONS(4553), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_LT_LT] = ACTIONS(4551), + [anon_sym_GT_GT] = ACTIONS(4551), + [anon_sym___extension__] = ACTIONS(4553), + [anon_sym___attribute__] = ACTIONS(4553), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_const] = ACTIONS(4551), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_QMARK] = ACTIONS(4553), + [anon_sym_STAR_EQ] = ACTIONS(4553), + [anon_sym_SLASH_EQ] = ACTIONS(4553), + [anon_sym_PERCENT_EQ] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(4553), + [anon_sym_DASH_EQ] = ACTIONS(4553), + [anon_sym_LT_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_GT_EQ] = ACTIONS(4553), + [anon_sym_AMP_EQ] = ACTIONS(4553), + [anon_sym_CARET_EQ] = ACTIONS(4553), + [anon_sym_PIPE_EQ] = ACTIONS(4553), + [anon_sym_and_eq] = ACTIONS(4553), + [anon_sym_or_eq] = ACTIONS(4553), + [anon_sym_xor_eq] = ACTIONS(4553), + [anon_sym_LT_EQ_GT] = ACTIONS(4553), + [anon_sym_or] = ACTIONS(4551), + [anon_sym_and] = ACTIONS(4551), + [anon_sym_bitor] = ACTIONS(4553), + [anon_sym_xor] = ACTIONS(4551), + [anon_sym_bitand] = ACTIONS(4553), + [anon_sym_not_eq] = ACTIONS(4553), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_PLUS_PLUS] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4551), + [anon_sym_DOT_STAR] = ACTIONS(4553), + [anon_sym_DASH_GT] = ACTIONS(4551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4553), + [anon_sym_decltype] = ACTIONS(4553), + [anon_sym_final] = ACTIONS(4553), + [anon_sym_override] = ACTIONS(4553), + [anon_sym_DASH_GT_STAR] = ACTIONS(4553), }, [1760] = { - [sym__expression] = STATE(3892), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_LPAREN2] = ACTIONS(4553), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_PIPE_PIPE] = ACTIONS(4553), + [anon_sym_AMP_AMP] = ACTIONS(4553), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_LT_LT] = ACTIONS(4551), + [anon_sym_GT_GT] = ACTIONS(4551), + [anon_sym___extension__] = ACTIONS(4553), + [anon_sym___attribute__] = ACTIONS(4553), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_const] = ACTIONS(4551), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_QMARK] = ACTIONS(4553), + [anon_sym_STAR_EQ] = ACTIONS(4553), + [anon_sym_SLASH_EQ] = ACTIONS(4553), + [anon_sym_PERCENT_EQ] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(4553), + [anon_sym_DASH_EQ] = ACTIONS(4553), + [anon_sym_LT_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_GT_EQ] = ACTIONS(4551), + [anon_sym_AMP_EQ] = ACTIONS(4553), + [anon_sym_CARET_EQ] = ACTIONS(4553), + [anon_sym_PIPE_EQ] = ACTIONS(4553), + [anon_sym_and_eq] = ACTIONS(4553), + [anon_sym_or_eq] = ACTIONS(4553), + [anon_sym_xor_eq] = ACTIONS(4553), + [anon_sym_LT_EQ_GT] = ACTIONS(4553), + [anon_sym_or] = ACTIONS(4551), + [anon_sym_and] = ACTIONS(4551), + [anon_sym_bitor] = ACTIONS(4553), + [anon_sym_xor] = ACTIONS(4551), + [anon_sym_bitand] = ACTIONS(4553), + [anon_sym_not_eq] = ACTIONS(4553), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_PLUS_PLUS] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4551), + [anon_sym_DOT_STAR] = ACTIONS(4553), + [anon_sym_DASH_GT] = ACTIONS(4553), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4553), + [anon_sym_decltype] = ACTIONS(4553), + [anon_sym_final] = ACTIONS(4553), + [anon_sym_override] = ACTIONS(4553), + [anon_sym_GT2] = ACTIONS(4553), }, [1761] = { - [sym__expression] = STATE(5108), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4549), + [anon_sym_COMMA] = ACTIONS(4549), + [anon_sym_LPAREN2] = ACTIONS(4549), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_STAR] = ACTIONS(4547), + [anon_sym_SLASH] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4547), + [anon_sym_PIPE_PIPE] = ACTIONS(4549), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4547), + [anon_sym_CARET] = ACTIONS(4547), + [anon_sym_AMP] = ACTIONS(4547), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_GT] = ACTIONS(4547), + [anon_sym_GT_EQ] = ACTIONS(4547), + [anon_sym_LT_EQ] = ACTIONS(4547), + [anon_sym_LT] = ACTIONS(4547), + [anon_sym_LT_LT] = ACTIONS(4547), + [anon_sym_GT_GT] = ACTIONS(4547), + [anon_sym___extension__] = ACTIONS(4549), + [anon_sym___attribute__] = ACTIONS(4549), + [anon_sym_COLON_COLON] = ACTIONS(4549), + [anon_sym_LBRACE] = ACTIONS(4549), + [anon_sym_LBRACK] = ACTIONS(4549), + [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_const] = ACTIONS(4547), + [anon_sym_constexpr] = ACTIONS(4549), + [anon_sym_volatile] = ACTIONS(4549), + [anon_sym_restrict] = ACTIONS(4549), + [anon_sym___restrict__] = ACTIONS(4549), + [anon_sym__Atomic] = ACTIONS(4549), + [anon_sym__Noreturn] = ACTIONS(4549), + [anon_sym_noreturn] = ACTIONS(4549), + [anon_sym_mutable] = ACTIONS(4549), + [anon_sym_constinit] = ACTIONS(4549), + [anon_sym_consteval] = ACTIONS(4549), + [anon_sym_COLON] = ACTIONS(4547), + [anon_sym_QMARK] = ACTIONS(4549), + [anon_sym_STAR_EQ] = ACTIONS(4549), + [anon_sym_SLASH_EQ] = ACTIONS(4549), + [anon_sym_PERCENT_EQ] = ACTIONS(4549), + [anon_sym_PLUS_EQ] = ACTIONS(4549), + [anon_sym_DASH_EQ] = ACTIONS(4549), + [anon_sym_LT_LT_EQ] = ACTIONS(4549), + [anon_sym_GT_GT_EQ] = ACTIONS(4547), + [anon_sym_AMP_EQ] = ACTIONS(4549), + [anon_sym_CARET_EQ] = ACTIONS(4549), + [anon_sym_PIPE_EQ] = ACTIONS(4549), + [anon_sym_and_eq] = ACTIONS(4549), + [anon_sym_or_eq] = ACTIONS(4549), + [anon_sym_xor_eq] = ACTIONS(4549), + [anon_sym_LT_EQ_GT] = ACTIONS(4549), + [anon_sym_or] = ACTIONS(4547), + [anon_sym_and] = ACTIONS(4547), + [anon_sym_bitor] = ACTIONS(4549), + [anon_sym_xor] = ACTIONS(4547), + [anon_sym_bitand] = ACTIONS(4549), + [anon_sym_not_eq] = ACTIONS(4549), + [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4549), + [anon_sym_DOT] = ACTIONS(4547), + [anon_sym_DOT_STAR] = ACTIONS(4549), + [anon_sym_DASH_GT] = ACTIONS(4549), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4549), + [anon_sym_decltype] = ACTIONS(4549), + [anon_sym_final] = ACTIONS(4549), + [anon_sym_override] = ACTIONS(4549), + [anon_sym_GT2] = ACTIONS(4549), }, [1762] = { - [sym__expression] = STATE(5404), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym__declaration_modifiers] = STATE(2020), + [sym__declaration_specifiers] = STATE(3794), + [sym_attribute_specifier] = STATE(2020), + [sym_attribute_declaration] = STATE(2020), + [sym_ms_declspec_modifier] = STATE(2020), + [sym_storage_class_specifier] = STATE(2020), + [sym_type_qualifier] = STATE(2020), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_parameter_declaration] = STATE(7033), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2020), + [sym_alignas_specifier] = STATE(2020), + [sym_dependent_type] = STATE(3114), + [sym_optional_parameter_declaration] = STATE(7033), + [sym_variadic_parameter_declaration] = STATE(7033), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5953), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2020), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4777), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(1948), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), }, [1763] = { - [sym__expression] = STATE(4885), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_catch_clause] = STATE(1772), + [aux_sym_constructor_try_statement_repeat1] = STATE(1772), + [sym_identifier] = ACTIONS(2212), + [aux_sym_preproc_def_token1] = ACTIONS(2212), + [aux_sym_preproc_if_token1] = ACTIONS(2212), + [aux_sym_preproc_if_token2] = ACTIONS(2212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2212), + [aux_sym_preproc_else_token1] = ACTIONS(2212), + [aux_sym_preproc_elif_token1] = ACTIONS(2212), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2212), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2212), + [sym_preproc_directive] = ACTIONS(2212), + [anon_sym_LPAREN2] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2212), + [anon_sym___extension__] = ACTIONS(2212), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_extern] = ACTIONS(2212), + [anon_sym___attribute__] = ACTIONS(2212), + [anon_sym_COLON_COLON] = ACTIONS(2214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [anon_sym___declspec] = ACTIONS(2212), + [anon_sym___based] = ACTIONS(2212), + [anon_sym_signed] = ACTIONS(2212), + [anon_sym_unsigned] = ACTIONS(2212), + [anon_sym_long] = ACTIONS(2212), + [anon_sym_short] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_register] = ACTIONS(2212), + [anon_sym_inline] = ACTIONS(2212), + [anon_sym___inline] = ACTIONS(2212), + [anon_sym___inline__] = ACTIONS(2212), + [anon_sym___forceinline] = ACTIONS(2212), + [anon_sym_thread_local] = ACTIONS(2212), + [anon_sym___thread] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_constexpr] = ACTIONS(2212), + [anon_sym_volatile] = ACTIONS(2212), + [anon_sym_restrict] = ACTIONS(2212), + [anon_sym___restrict__] = ACTIONS(2212), + [anon_sym__Atomic] = ACTIONS(2212), + [anon_sym__Noreturn] = ACTIONS(2212), + [anon_sym_noreturn] = ACTIONS(2212), + [anon_sym_mutable] = ACTIONS(2212), + [anon_sym_constinit] = ACTIONS(2212), + [anon_sym_consteval] = ACTIONS(2212), + [sym_primitive_type] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_struct] = ACTIONS(2212), + [anon_sym_union] = ACTIONS(2212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2212), + [anon_sym_decltype] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(2212), + [anon_sym_alignas] = ACTIONS(2212), + [anon_sym_explicit] = ACTIONS(2212), + [anon_sym_typename] = ACTIONS(2212), + [anon_sym_template] = ACTIONS(2212), + [anon_sym_operator] = ACTIONS(2212), + [anon_sym_friend] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_static_assert] = ACTIONS(2212), + [anon_sym_catch] = ACTIONS(4779), }, [1764] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_catch_clause] = STATE(1772), + [aux_sym_constructor_try_statement_repeat1] = STATE(1772), + [sym_identifier] = ACTIONS(2255), + [aux_sym_preproc_def_token1] = ACTIONS(2255), + [aux_sym_preproc_if_token1] = ACTIONS(2255), + [aux_sym_preproc_if_token2] = ACTIONS(2255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2255), + [aux_sym_preproc_else_token1] = ACTIONS(2255), + [aux_sym_preproc_elif_token1] = ACTIONS(2255), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2255), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2255), + [sym_preproc_directive] = ACTIONS(2255), + [anon_sym_LPAREN2] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_AMP_AMP] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym___extension__] = ACTIONS(2255), + [anon_sym_typedef] = ACTIONS(2255), + [anon_sym_extern] = ACTIONS(2255), + [anon_sym___attribute__] = ACTIONS(2255), + [anon_sym_COLON_COLON] = ACTIONS(2257), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2257), + [anon_sym___declspec] = ACTIONS(2255), + [anon_sym___based] = ACTIONS(2255), + [anon_sym_signed] = ACTIONS(2255), + [anon_sym_unsigned] = ACTIONS(2255), + [anon_sym_long] = ACTIONS(2255), + [anon_sym_short] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_register] = ACTIONS(2255), + [anon_sym_inline] = ACTIONS(2255), + [anon_sym___inline] = ACTIONS(2255), + [anon_sym___inline__] = ACTIONS(2255), + [anon_sym___forceinline] = ACTIONS(2255), + [anon_sym_thread_local] = ACTIONS(2255), + [anon_sym___thread] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_constexpr] = ACTIONS(2255), + [anon_sym_volatile] = ACTIONS(2255), + [anon_sym_restrict] = ACTIONS(2255), + [anon_sym___restrict__] = ACTIONS(2255), + [anon_sym__Atomic] = ACTIONS(2255), + [anon_sym__Noreturn] = ACTIONS(2255), + [anon_sym_noreturn] = ACTIONS(2255), + [anon_sym_mutable] = ACTIONS(2255), + [anon_sym_constinit] = ACTIONS(2255), + [anon_sym_consteval] = ACTIONS(2255), + [sym_primitive_type] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [anon_sym_class] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(2255), + [anon_sym_union] = ACTIONS(2255), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2255), + [anon_sym_decltype] = ACTIONS(2255), + [anon_sym_virtual] = ACTIONS(2255), + [anon_sym_alignas] = ACTIONS(2255), + [anon_sym_explicit] = ACTIONS(2255), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(2255), + [anon_sym_operator] = ACTIONS(2255), + [anon_sym_friend] = ACTIONS(2255), + [anon_sym_public] = ACTIONS(2255), + [anon_sym_private] = ACTIONS(2255), + [anon_sym_protected] = ACTIONS(2255), + [anon_sym_using] = ACTIONS(2255), + [anon_sym_static_assert] = ACTIONS(2255), + [anon_sym_catch] = ACTIONS(4779), }, [1765] = { - [sym__expression] = STATE(4927), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4781), + [anon_sym_LPAREN2] = ACTIONS(4783), + [anon_sym_BANG] = ACTIONS(4783), + [anon_sym_TILDE] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4781), + [anon_sym_STAR] = ACTIONS(4783), + [anon_sym_AMP] = ACTIONS(4783), + [anon_sym_SEMI] = ACTIONS(4783), + [anon_sym_COLON_COLON] = ACTIONS(4783), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4783), + [anon_sym_LBRACE] = ACTIONS(4783), + [anon_sym_LBRACK] = ACTIONS(4781), + [sym_primitive_type] = ACTIONS(4781), + [anon_sym_if] = ACTIONS(4781), + [anon_sym_switch] = ACTIONS(4781), + [anon_sym_case] = ACTIONS(4781), + [anon_sym_default] = ACTIONS(4781), + [anon_sym_while] = ACTIONS(4781), + [anon_sym_do] = ACTIONS(4781), + [anon_sym_for] = ACTIONS(4781), + [anon_sym_return] = ACTIONS(4781), + [anon_sym_break] = ACTIONS(4781), + [anon_sym_continue] = ACTIONS(4781), + [anon_sym_goto] = ACTIONS(4781), + [anon_sym_not] = ACTIONS(4781), + [anon_sym_compl] = ACTIONS(4781), + [anon_sym_DASH_DASH] = ACTIONS(4783), + [anon_sym_PLUS_PLUS] = ACTIONS(4783), + [anon_sym_sizeof] = ACTIONS(4781), + [anon_sym___alignof__] = ACTIONS(4781), + [anon_sym___alignof] = ACTIONS(4781), + [anon_sym__alignof] = ACTIONS(4781), + [anon_sym_alignof] = ACTIONS(4781), + [anon_sym__Alignof] = ACTIONS(4781), + [anon_sym_offsetof] = ACTIONS(4781), + [anon_sym__Generic] = ACTIONS(4781), + [anon_sym_asm] = ACTIONS(4781), + [anon_sym___asm__] = ACTIONS(4781), + [sym_number_literal] = ACTIONS(4783), + [anon_sym_L_SQUOTE] = ACTIONS(4783), + [anon_sym_u_SQUOTE] = ACTIONS(4783), + [anon_sym_U_SQUOTE] = ACTIONS(4783), + [anon_sym_u8_SQUOTE] = ACTIONS(4783), + [anon_sym_SQUOTE] = ACTIONS(4783), + [anon_sym_L_DQUOTE] = ACTIONS(4783), + [anon_sym_u_DQUOTE] = ACTIONS(4783), + [anon_sym_U_DQUOTE] = ACTIONS(4783), + [anon_sym_u8_DQUOTE] = ACTIONS(4783), + [anon_sym_DQUOTE] = ACTIONS(4783), + [sym_true] = ACTIONS(4781), + [sym_false] = ACTIONS(4781), + [anon_sym_NULL] = ACTIONS(4781), + [anon_sym_nullptr] = ACTIONS(4781), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(4781), + [anon_sym_template] = ACTIONS(4781), + [anon_sym_try] = ACTIONS(4781), + [anon_sym_delete] = ACTIONS(4781), + [anon_sym_throw] = ACTIONS(4781), + [anon_sym_co_return] = ACTIONS(4781), + [anon_sym_co_yield] = ACTIONS(4781), + [anon_sym_R_DQUOTE] = ACTIONS(4783), + [anon_sym_LR_DQUOTE] = ACTIONS(4783), + [anon_sym_uR_DQUOTE] = ACTIONS(4783), + [anon_sym_UR_DQUOTE] = ACTIONS(4783), + [anon_sym_u8R_DQUOTE] = ACTIONS(4783), + [anon_sym_co_await] = ACTIONS(4781), + [anon_sym_new] = ACTIONS(4781), + [anon_sym_requires] = ACTIONS(4781), + [sym_this] = ACTIONS(4781), }, [1766] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4419), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4585), + [anon_sym_COMMA] = ACTIONS(4585), + [anon_sym_LPAREN2] = ACTIONS(4585), + [anon_sym_DASH] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(4583), + [anon_sym_SLASH] = ACTIONS(4583), + [anon_sym_PERCENT] = ACTIONS(4583), + [anon_sym_PIPE_PIPE] = ACTIONS(4585), + [anon_sym_AMP_AMP] = ACTIONS(4585), + [anon_sym_PIPE] = ACTIONS(4583), + [anon_sym_CARET] = ACTIONS(4583), + [anon_sym_AMP] = ACTIONS(4583), + [anon_sym_EQ_EQ] = ACTIONS(4585), + [anon_sym_BANG_EQ] = ACTIONS(4585), + [anon_sym_GT] = ACTIONS(4583), + [anon_sym_GT_EQ] = ACTIONS(4583), + [anon_sym_LT_EQ] = ACTIONS(4583), + [anon_sym_LT] = ACTIONS(4583), + [anon_sym_LT_LT] = ACTIONS(4583), + [anon_sym_GT_GT] = ACTIONS(4583), + [anon_sym___extension__] = ACTIONS(4585), + [anon_sym___attribute__] = ACTIONS(4585), + [anon_sym_COLON_COLON] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4585), + [anon_sym_LBRACK] = ACTIONS(4585), + [anon_sym_EQ] = ACTIONS(4583), + [anon_sym_const] = ACTIONS(4583), + [anon_sym_constexpr] = ACTIONS(4585), + [anon_sym_volatile] = ACTIONS(4585), + [anon_sym_restrict] = ACTIONS(4585), + [anon_sym___restrict__] = ACTIONS(4585), + [anon_sym__Atomic] = ACTIONS(4585), + [anon_sym__Noreturn] = ACTIONS(4585), + [anon_sym_noreturn] = ACTIONS(4585), + [anon_sym_mutable] = ACTIONS(4585), + [anon_sym_constinit] = ACTIONS(4585), + [anon_sym_consteval] = ACTIONS(4585), + [anon_sym_COLON] = ACTIONS(4583), + [anon_sym_QMARK] = ACTIONS(4585), + [anon_sym_STAR_EQ] = ACTIONS(4585), + [anon_sym_SLASH_EQ] = ACTIONS(4585), + [anon_sym_PERCENT_EQ] = ACTIONS(4585), + [anon_sym_PLUS_EQ] = ACTIONS(4585), + [anon_sym_DASH_EQ] = ACTIONS(4585), + [anon_sym_LT_LT_EQ] = ACTIONS(4585), + [anon_sym_GT_GT_EQ] = ACTIONS(4583), + [anon_sym_AMP_EQ] = ACTIONS(4585), + [anon_sym_CARET_EQ] = ACTIONS(4585), + [anon_sym_PIPE_EQ] = ACTIONS(4585), + [anon_sym_and_eq] = ACTIONS(4585), + [anon_sym_or_eq] = ACTIONS(4585), + [anon_sym_xor_eq] = ACTIONS(4585), + [anon_sym_LT_EQ_GT] = ACTIONS(4585), + [anon_sym_or] = ACTIONS(4583), + [anon_sym_and] = ACTIONS(4583), + [anon_sym_bitor] = ACTIONS(4585), + [anon_sym_xor] = ACTIONS(4583), + [anon_sym_bitand] = ACTIONS(4585), + [anon_sym_not_eq] = ACTIONS(4585), + [anon_sym_DASH_DASH] = ACTIONS(4585), + [anon_sym_PLUS_PLUS] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4583), + [anon_sym_DOT_STAR] = ACTIONS(4585), + [anon_sym_DASH_GT] = ACTIONS(4585), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4585), + [anon_sym_decltype] = ACTIONS(4585), + [anon_sym_final] = ACTIONS(4585), + [anon_sym_override] = ACTIONS(4585), + [anon_sym_GT2] = ACTIONS(4585), }, [1767] = { - [sym__expression] = STATE(4799), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_initializer_list] = STATE(7547), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(4421), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(4423), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_catch_clause] = STATE(1772), + [aux_sym_constructor_try_statement_repeat1] = STATE(1772), + [sym_identifier] = ACTIONS(2249), + [aux_sym_preproc_def_token1] = ACTIONS(2249), + [aux_sym_preproc_if_token1] = ACTIONS(2249), + [aux_sym_preproc_if_token2] = ACTIONS(2249), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2249), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2249), + [aux_sym_preproc_else_token1] = ACTIONS(2249), + [aux_sym_preproc_elif_token1] = ACTIONS(2249), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2249), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2249), + [sym_preproc_directive] = ACTIONS(2249), + [anon_sym_LPAREN2] = ACTIONS(2251), + [anon_sym_TILDE] = ACTIONS(2251), + [anon_sym_STAR] = ACTIONS(2251), + [anon_sym_AMP_AMP] = ACTIONS(2251), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym___extension__] = ACTIONS(2249), + [anon_sym_typedef] = ACTIONS(2249), + [anon_sym_extern] = ACTIONS(2249), + [anon_sym___attribute__] = ACTIONS(2249), + [anon_sym_COLON_COLON] = ACTIONS(2251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2251), + [anon_sym___declspec] = ACTIONS(2249), + [anon_sym___based] = ACTIONS(2249), + [anon_sym_signed] = ACTIONS(2249), + [anon_sym_unsigned] = ACTIONS(2249), + [anon_sym_long] = ACTIONS(2249), + [anon_sym_short] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_register] = ACTIONS(2249), + [anon_sym_inline] = ACTIONS(2249), + [anon_sym___inline] = ACTIONS(2249), + [anon_sym___inline__] = ACTIONS(2249), + [anon_sym___forceinline] = ACTIONS(2249), + [anon_sym_thread_local] = ACTIONS(2249), + [anon_sym___thread] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_constexpr] = ACTIONS(2249), + [anon_sym_volatile] = ACTIONS(2249), + [anon_sym_restrict] = ACTIONS(2249), + [anon_sym___restrict__] = ACTIONS(2249), + [anon_sym__Atomic] = ACTIONS(2249), + [anon_sym__Noreturn] = ACTIONS(2249), + [anon_sym_noreturn] = ACTIONS(2249), + [anon_sym_mutable] = ACTIONS(2249), + [anon_sym_constinit] = ACTIONS(2249), + [anon_sym_consteval] = ACTIONS(2249), + [sym_primitive_type] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2249), + [anon_sym_decltype] = ACTIONS(2249), + [anon_sym_virtual] = ACTIONS(2249), + [anon_sym_alignas] = ACTIONS(2249), + [anon_sym_explicit] = ACTIONS(2249), + [anon_sym_typename] = ACTIONS(2249), + [anon_sym_template] = ACTIONS(2249), + [anon_sym_operator] = ACTIONS(2249), + [anon_sym_friend] = ACTIONS(2249), + [anon_sym_public] = ACTIONS(2249), + [anon_sym_private] = ACTIONS(2249), + [anon_sym_protected] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [anon_sym_static_assert] = ACTIONS(2249), + [anon_sym_catch] = ACTIONS(4779), }, [1768] = { - [sym__expression] = STATE(3806), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(2020), + [sym__declaration_specifiers] = STATE(3794), + [sym_attribute_specifier] = STATE(2020), + [sym_attribute_declaration] = STATE(2020), + [sym_ms_declspec_modifier] = STATE(2020), + [sym_storage_class_specifier] = STATE(2020), + [sym_type_qualifier] = STATE(2020), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_parameter_declaration] = STATE(6847), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2020), + [sym_alignas_specifier] = STATE(2020), + [sym_dependent_type] = STATE(3114), + [sym_optional_parameter_declaration] = STATE(6847), + [sym_variadic_parameter_declaration] = STATE(6847), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5953), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2020), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4601), + [anon_sym_RPAREN] = ACTIONS(1904), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(1948), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), }, [1769] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4425), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4785), + [anon_sym_LPAREN2] = ACTIONS(4787), + [anon_sym_BANG] = ACTIONS(4787), + [anon_sym_TILDE] = ACTIONS(4787), + [anon_sym_DASH] = ACTIONS(4785), + [anon_sym_PLUS] = ACTIONS(4785), + [anon_sym_STAR] = ACTIONS(4787), + [anon_sym_AMP] = ACTIONS(4787), + [anon_sym_SEMI] = ACTIONS(4787), + [anon_sym_COLON_COLON] = ACTIONS(4787), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4787), + [anon_sym_LBRACE] = ACTIONS(4787), + [anon_sym_LBRACK] = ACTIONS(4785), + [sym_primitive_type] = ACTIONS(4785), + [anon_sym_if] = ACTIONS(4785), + [anon_sym_switch] = ACTIONS(4785), + [anon_sym_case] = ACTIONS(4785), + [anon_sym_default] = ACTIONS(4785), + [anon_sym_while] = ACTIONS(4785), + [anon_sym_do] = ACTIONS(4785), + [anon_sym_for] = ACTIONS(4785), + [anon_sym_return] = ACTIONS(4785), + [anon_sym_break] = ACTIONS(4785), + [anon_sym_continue] = ACTIONS(4785), + [anon_sym_goto] = ACTIONS(4785), + [anon_sym_not] = ACTIONS(4785), + [anon_sym_compl] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_sizeof] = ACTIONS(4785), + [anon_sym___alignof__] = ACTIONS(4785), + [anon_sym___alignof] = ACTIONS(4785), + [anon_sym__alignof] = ACTIONS(4785), + [anon_sym_alignof] = ACTIONS(4785), + [anon_sym__Alignof] = ACTIONS(4785), + [anon_sym_offsetof] = ACTIONS(4785), + [anon_sym__Generic] = ACTIONS(4785), + [anon_sym_asm] = ACTIONS(4785), + [anon_sym___asm__] = ACTIONS(4785), + [sym_number_literal] = ACTIONS(4787), + [anon_sym_L_SQUOTE] = ACTIONS(4787), + [anon_sym_u_SQUOTE] = ACTIONS(4787), + [anon_sym_U_SQUOTE] = ACTIONS(4787), + [anon_sym_u8_SQUOTE] = ACTIONS(4787), + [anon_sym_SQUOTE] = ACTIONS(4787), + [anon_sym_L_DQUOTE] = ACTIONS(4787), + [anon_sym_u_DQUOTE] = ACTIONS(4787), + [anon_sym_U_DQUOTE] = ACTIONS(4787), + [anon_sym_u8_DQUOTE] = ACTIONS(4787), + [anon_sym_DQUOTE] = ACTIONS(4787), + [sym_true] = ACTIONS(4785), + [sym_false] = ACTIONS(4785), + [anon_sym_NULL] = ACTIONS(4785), + [anon_sym_nullptr] = ACTIONS(4785), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(4785), + [anon_sym_template] = ACTIONS(4785), + [anon_sym_try] = ACTIONS(4785), + [anon_sym_delete] = ACTIONS(4785), + [anon_sym_throw] = ACTIONS(4785), + [anon_sym_co_return] = ACTIONS(4785), + [anon_sym_co_yield] = ACTIONS(4785), + [anon_sym_R_DQUOTE] = ACTIONS(4787), + [anon_sym_LR_DQUOTE] = ACTIONS(4787), + [anon_sym_uR_DQUOTE] = ACTIONS(4787), + [anon_sym_UR_DQUOTE] = ACTIONS(4787), + [anon_sym_u8R_DQUOTE] = ACTIONS(4787), + [anon_sym_co_await] = ACTIONS(4785), + [anon_sym_new] = ACTIONS(4785), + [anon_sym_requires] = ACTIONS(4785), + [sym_this] = ACTIONS(4785), }, [1770] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4541), + [anon_sym_COMMA] = ACTIONS(4541), + [anon_sym_LPAREN2] = ACTIONS(4541), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_STAR] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4539), + [anon_sym_PERCENT] = ACTIONS(4539), + [anon_sym_PIPE_PIPE] = ACTIONS(4541), + [anon_sym_AMP_AMP] = ACTIONS(4541), + [anon_sym_PIPE] = ACTIONS(4539), + [anon_sym_CARET] = ACTIONS(4539), + [anon_sym_AMP] = ACTIONS(4539), + [anon_sym_EQ_EQ] = ACTIONS(4541), + [anon_sym_BANG_EQ] = ACTIONS(4541), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_GT_EQ] = ACTIONS(4539), + [anon_sym_LT_EQ] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(4539), + [anon_sym_LT_LT] = ACTIONS(4539), + [anon_sym_GT_GT] = ACTIONS(4539), + [anon_sym___extension__] = ACTIONS(4541), + [anon_sym___attribute__] = ACTIONS(4541), + [anon_sym_COLON_COLON] = ACTIONS(4541), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_LBRACK] = ACTIONS(4541), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_const] = ACTIONS(4539), + [anon_sym_constexpr] = ACTIONS(4541), + [anon_sym_volatile] = ACTIONS(4541), + [anon_sym_restrict] = ACTIONS(4541), + [anon_sym___restrict__] = ACTIONS(4541), + [anon_sym__Atomic] = ACTIONS(4541), + [anon_sym__Noreturn] = ACTIONS(4541), + [anon_sym_noreturn] = ACTIONS(4541), + [anon_sym_mutable] = ACTIONS(4541), + [anon_sym_constinit] = ACTIONS(4541), + [anon_sym_consteval] = ACTIONS(4541), + [anon_sym_COLON] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4541), + [anon_sym_SLASH_EQ] = ACTIONS(4541), + [anon_sym_PERCENT_EQ] = ACTIONS(4541), + [anon_sym_PLUS_EQ] = ACTIONS(4541), + [anon_sym_DASH_EQ] = ACTIONS(4541), + [anon_sym_LT_LT_EQ] = ACTIONS(4541), + [anon_sym_GT_GT_EQ] = ACTIONS(4539), + [anon_sym_AMP_EQ] = ACTIONS(4541), + [anon_sym_CARET_EQ] = ACTIONS(4541), + [anon_sym_PIPE_EQ] = ACTIONS(4541), + [anon_sym_and_eq] = ACTIONS(4541), + [anon_sym_or_eq] = ACTIONS(4541), + [anon_sym_xor_eq] = ACTIONS(4541), + [anon_sym_LT_EQ_GT] = ACTIONS(4541), + [anon_sym_or] = ACTIONS(4539), + [anon_sym_and] = ACTIONS(4539), + [anon_sym_bitor] = ACTIONS(4541), + [anon_sym_xor] = ACTIONS(4539), + [anon_sym_bitand] = ACTIONS(4541), + [anon_sym_not_eq] = ACTIONS(4541), + [anon_sym_DASH_DASH] = ACTIONS(4541), + [anon_sym_PLUS_PLUS] = ACTIONS(4541), + [anon_sym_DOT] = ACTIONS(4539), + [anon_sym_DOT_STAR] = ACTIONS(4541), + [anon_sym_DASH_GT] = ACTIONS(4541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4541), + [anon_sym_decltype] = ACTIONS(4541), + [anon_sym_final] = ACTIONS(4541), + [anon_sym_override] = ACTIONS(4541), + [anon_sym_GT2] = ACTIONS(4541), }, [1771] = { - [sym__expression] = STATE(4894), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4578), + [anon_sym_COMMA] = ACTIONS(4578), + [anon_sym_LPAREN2] = ACTIONS(4578), + [anon_sym_DASH] = ACTIONS(4576), + [anon_sym_PLUS] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4576), + [anon_sym_SLASH] = ACTIONS(4576), + [anon_sym_PERCENT] = ACTIONS(4576), + [anon_sym_PIPE_PIPE] = ACTIONS(4578), + [anon_sym_AMP_AMP] = ACTIONS(4578), + [anon_sym_PIPE] = ACTIONS(4576), + [anon_sym_CARET] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4576), + [anon_sym_EQ_EQ] = ACTIONS(4578), + [anon_sym_BANG_EQ] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4576), + [anon_sym_GT_EQ] = ACTIONS(4576), + [anon_sym_LT_EQ] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4576), + [anon_sym_LT_LT] = ACTIONS(4576), + [anon_sym_GT_GT] = ACTIONS(4576), + [anon_sym___extension__] = ACTIONS(4578), + [anon_sym___attribute__] = ACTIONS(4578), + [anon_sym_COLON_COLON] = ACTIONS(4578), + [anon_sym_LBRACE] = ACTIONS(4578), + [anon_sym_LBRACK] = ACTIONS(4578), + [anon_sym_EQ] = ACTIONS(4576), + [anon_sym_const] = ACTIONS(4576), + [anon_sym_constexpr] = ACTIONS(4578), + [anon_sym_volatile] = ACTIONS(4578), + [anon_sym_restrict] = ACTIONS(4578), + [anon_sym___restrict__] = ACTIONS(4578), + [anon_sym__Atomic] = ACTIONS(4578), + [anon_sym__Noreturn] = ACTIONS(4578), + [anon_sym_noreturn] = ACTIONS(4578), + [anon_sym_mutable] = ACTIONS(4578), + [anon_sym_constinit] = ACTIONS(4578), + [anon_sym_consteval] = ACTIONS(4578), + [anon_sym_COLON] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4578), + [anon_sym_STAR_EQ] = ACTIONS(4578), + [anon_sym_SLASH_EQ] = ACTIONS(4578), + [anon_sym_PERCENT_EQ] = ACTIONS(4578), + [anon_sym_PLUS_EQ] = ACTIONS(4578), + [anon_sym_DASH_EQ] = ACTIONS(4578), + [anon_sym_LT_LT_EQ] = ACTIONS(4578), + [anon_sym_GT_GT_EQ] = ACTIONS(4576), + [anon_sym_AMP_EQ] = ACTIONS(4578), + [anon_sym_CARET_EQ] = ACTIONS(4578), + [anon_sym_PIPE_EQ] = ACTIONS(4578), + [anon_sym_and_eq] = ACTIONS(4578), + [anon_sym_or_eq] = ACTIONS(4578), + [anon_sym_xor_eq] = ACTIONS(4578), + [anon_sym_LT_EQ_GT] = ACTIONS(4578), + [anon_sym_or] = ACTIONS(4576), + [anon_sym_and] = ACTIONS(4576), + [anon_sym_bitor] = ACTIONS(4578), + [anon_sym_xor] = ACTIONS(4576), + [anon_sym_bitand] = ACTIONS(4578), + [anon_sym_not_eq] = ACTIONS(4578), + [anon_sym_DASH_DASH] = ACTIONS(4578), + [anon_sym_PLUS_PLUS] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4576), + [anon_sym_DOT_STAR] = ACTIONS(4578), + [anon_sym_DASH_GT] = ACTIONS(4578), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4578), + [anon_sym_decltype] = ACTIONS(4578), + [anon_sym_final] = ACTIONS(4578), + [anon_sym_override] = ACTIONS(4578), + [anon_sym_GT2] = ACTIONS(4578), }, [1772] = { - [sym__expression] = STATE(3538), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_catch_clause] = STATE(1772), + [aux_sym_constructor_try_statement_repeat1] = STATE(1772), + [sym_identifier] = ACTIONS(2218), + [aux_sym_preproc_def_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token2] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2218), + [aux_sym_preproc_else_token1] = ACTIONS(2218), + [aux_sym_preproc_elif_token1] = ACTIONS(2218), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2218), + [sym_preproc_directive] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP_AMP] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2218), + [anon_sym___extension__] = ACTIONS(2218), + [anon_sym_typedef] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym___attribute__] = ACTIONS(2218), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2220), + [anon_sym___declspec] = ACTIONS(2218), + [anon_sym___based] = ACTIONS(2218), + [anon_sym_signed] = ACTIONS(2218), + [anon_sym_unsigned] = ACTIONS(2218), + [anon_sym_long] = ACTIONS(2218), + [anon_sym_short] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_inline] = ACTIONS(2218), + [anon_sym___inline] = ACTIONS(2218), + [anon_sym___inline__] = ACTIONS(2218), + [anon_sym___forceinline] = ACTIONS(2218), + [anon_sym_thread_local] = ACTIONS(2218), + [anon_sym___thread] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_constexpr] = ACTIONS(2218), + [anon_sym_volatile] = ACTIONS(2218), + [anon_sym_restrict] = ACTIONS(2218), + [anon_sym___restrict__] = ACTIONS(2218), + [anon_sym__Atomic] = ACTIONS(2218), + [anon_sym__Noreturn] = ACTIONS(2218), + [anon_sym_noreturn] = ACTIONS(2218), + [anon_sym_mutable] = ACTIONS(2218), + [anon_sym_constinit] = ACTIONS(2218), + [anon_sym_consteval] = ACTIONS(2218), + [sym_primitive_type] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_class] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2218), + [anon_sym_virtual] = ACTIONS(2218), + [anon_sym_alignas] = ACTIONS(2218), + [anon_sym_explicit] = ACTIONS(2218), + [anon_sym_typename] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_operator] = ACTIONS(2218), + [anon_sym_friend] = ACTIONS(2218), + [anon_sym_public] = ACTIONS(2218), + [anon_sym_private] = ACTIONS(2218), + [anon_sym_protected] = ACTIONS(2218), + [anon_sym_using] = ACTIONS(2218), + [anon_sym_static_assert] = ACTIONS(2218), + [anon_sym_catch] = ACTIONS(4789), }, [1773] = { - [sym__expression] = STATE(5016), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_initializer_list] = STATE(8246), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4429), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4545), + [anon_sym_COMMA] = ACTIONS(4545), + [anon_sym_LPAREN2] = ACTIONS(4545), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4543), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE] = ACTIONS(4543), + [anon_sym_CARET] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4543), + [anon_sym_EQ_EQ] = ACTIONS(4545), + [anon_sym_BANG_EQ] = ACTIONS(4545), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_GT_EQ] = ACTIONS(4543), + [anon_sym_LT_EQ] = ACTIONS(4543), + [anon_sym_LT] = ACTIONS(4543), + [anon_sym_LT_LT] = ACTIONS(4543), + [anon_sym_GT_GT] = ACTIONS(4543), + [anon_sym___extension__] = ACTIONS(4545), + [anon_sym___attribute__] = ACTIONS(4545), + [anon_sym_COLON_COLON] = ACTIONS(4545), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_LBRACK] = ACTIONS(4545), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_const] = ACTIONS(4543), + [anon_sym_constexpr] = ACTIONS(4545), + [anon_sym_volatile] = ACTIONS(4545), + [anon_sym_restrict] = ACTIONS(4545), + [anon_sym___restrict__] = ACTIONS(4545), + [anon_sym__Atomic] = ACTIONS(4545), + [anon_sym__Noreturn] = ACTIONS(4545), + [anon_sym_noreturn] = ACTIONS(4545), + [anon_sym_mutable] = ACTIONS(4545), + [anon_sym_constinit] = ACTIONS(4545), + [anon_sym_consteval] = ACTIONS(4545), + [anon_sym_COLON] = ACTIONS(4543), + [anon_sym_QMARK] = ACTIONS(4545), + [anon_sym_STAR_EQ] = ACTIONS(4545), + [anon_sym_SLASH_EQ] = ACTIONS(4545), + [anon_sym_PERCENT_EQ] = ACTIONS(4545), + [anon_sym_PLUS_EQ] = ACTIONS(4545), + [anon_sym_DASH_EQ] = ACTIONS(4545), + [anon_sym_LT_LT_EQ] = ACTIONS(4545), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4545), + [anon_sym_CARET_EQ] = ACTIONS(4545), + [anon_sym_PIPE_EQ] = ACTIONS(4545), + [anon_sym_and_eq] = ACTIONS(4545), + [anon_sym_or_eq] = ACTIONS(4545), + [anon_sym_xor_eq] = ACTIONS(4545), + [anon_sym_LT_EQ_GT] = ACTIONS(4545), + [anon_sym_or] = ACTIONS(4543), + [anon_sym_and] = ACTIONS(4543), + [anon_sym_bitor] = ACTIONS(4545), + [anon_sym_xor] = ACTIONS(4543), + [anon_sym_bitand] = ACTIONS(4545), + [anon_sym_not_eq] = ACTIONS(4545), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_PLUS_PLUS] = ACTIONS(4545), + [anon_sym_DOT] = ACTIONS(4543), + [anon_sym_DOT_STAR] = ACTIONS(4545), + [anon_sym_DASH_GT] = ACTIONS(4545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4545), + [anon_sym_decltype] = ACTIONS(4545), + [anon_sym_final] = ACTIONS(4545), + [anon_sym_override] = ACTIONS(4545), + [anon_sym_GT2] = ACTIONS(4545), }, [1774] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4557), + [anon_sym_COMMA] = ACTIONS(4557), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4555), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_PERCENT] = ACTIONS(4555), + [anon_sym_PIPE_PIPE] = ACTIONS(4557), + [anon_sym_AMP_AMP] = ACTIONS(4557), + [anon_sym_PIPE] = ACTIONS(4555), + [anon_sym_CARET] = ACTIONS(4555), + [anon_sym_AMP] = ACTIONS(4555), + [anon_sym_EQ_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_GT_EQ] = ACTIONS(4555), + [anon_sym_LT_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_LT_LT] = ACTIONS(4555), + [anon_sym_GT_GT] = ACTIONS(4555), + [anon_sym___extension__] = ACTIONS(4557), + [anon_sym___attribute__] = ACTIONS(4557), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_LBRACE] = ACTIONS(4557), + [anon_sym_LBRACK] = ACTIONS(4557), + [anon_sym_EQ] = ACTIONS(4555), + [anon_sym_const] = ACTIONS(4555), + [anon_sym_constexpr] = ACTIONS(4557), + [anon_sym_volatile] = ACTIONS(4557), + [anon_sym_restrict] = ACTIONS(4557), + [anon_sym___restrict__] = ACTIONS(4557), + [anon_sym__Atomic] = ACTIONS(4557), + [anon_sym__Noreturn] = ACTIONS(4557), + [anon_sym_noreturn] = ACTIONS(4557), + [anon_sym_mutable] = ACTIONS(4557), + [anon_sym_constinit] = ACTIONS(4557), + [anon_sym_consteval] = ACTIONS(4557), + [anon_sym_COLON] = ACTIONS(4555), + [anon_sym_QMARK] = ACTIONS(4557), + [anon_sym_STAR_EQ] = ACTIONS(4557), + [anon_sym_SLASH_EQ] = ACTIONS(4557), + [anon_sym_PERCENT_EQ] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(4557), + [anon_sym_DASH_EQ] = ACTIONS(4557), + [anon_sym_LT_LT_EQ] = ACTIONS(4557), + [anon_sym_GT_GT_EQ] = ACTIONS(4555), + [anon_sym_AMP_EQ] = ACTIONS(4557), + [anon_sym_CARET_EQ] = ACTIONS(4557), + [anon_sym_PIPE_EQ] = ACTIONS(4557), + [anon_sym_and_eq] = ACTIONS(4557), + [anon_sym_or_eq] = ACTIONS(4557), + [anon_sym_xor_eq] = ACTIONS(4557), + [anon_sym_LT_EQ_GT] = ACTIONS(4557), + [anon_sym_or] = ACTIONS(4555), + [anon_sym_and] = ACTIONS(4555), + [anon_sym_bitor] = ACTIONS(4557), + [anon_sym_xor] = ACTIONS(4555), + [anon_sym_bitand] = ACTIONS(4557), + [anon_sym_not_eq] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DOT] = ACTIONS(4555), + [anon_sym_DOT_STAR] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4557), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4557), + [anon_sym_decltype] = ACTIONS(4557), + [anon_sym_final] = ACTIONS(4557), + [anon_sym_override] = ACTIONS(4557), + [anon_sym_GT2] = ACTIONS(4557), }, [1775] = { - [sym__expression] = STATE(3581), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [1776] = { - [sym__expression] = STATE(3735), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), + [sym__declaration_modifiers] = STATE(2020), + [sym__declaration_specifiers] = STATE(3794), + [sym_attribute_specifier] = STATE(2020), + [sym_attribute_declaration] = STATE(2020), + [sym_ms_declspec_modifier] = STATE(2020), + [sym_storage_class_specifier] = STATE(2020), + [sym_type_qualifier] = STATE(2020), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_parameter_declaration] = STATE(7026), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2020), + [sym_alignas_specifier] = STATE(2020), + [sym_dependent_type] = STATE(3114), + [sym_optional_parameter_declaration] = STATE(7026), + [sym_variadic_parameter_declaration] = STATE(7026), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5953), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2020), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4601), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(1948), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + }, + [1776] = { + [sym_template_argument_list] = STATE(1804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4571), + [anon_sym_COMMA] = ACTIONS(4571), + [anon_sym_RPAREN] = ACTIONS(4561), + [anon_sym_LPAREN2] = ACTIONS(4561), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_PIPE_PIPE] = ACTIONS(4571), + [anon_sym_AMP_AMP] = ACTIONS(4561), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_EQ_EQ] = ACTIONS(4571), + [anon_sym_BANG_EQ] = ACTIONS(4571), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_GT_EQ] = ACTIONS(4571), + [anon_sym_LT_EQ] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4573), + [anon_sym_LT_LT] = ACTIONS(4566), + [anon_sym_GT_GT] = ACTIONS(4566), + [anon_sym___extension__] = ACTIONS(4564), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4564), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_const] = ACTIONS(4559), + [anon_sym_constexpr] = ACTIONS(4564), + [anon_sym_volatile] = ACTIONS(4564), + [anon_sym_restrict] = ACTIONS(4564), + [anon_sym___restrict__] = ACTIONS(4564), + [anon_sym__Atomic] = ACTIONS(4564), + [anon_sym__Noreturn] = ACTIONS(4564), + [anon_sym_noreturn] = ACTIONS(4564), + [anon_sym_mutable] = ACTIONS(4564), + [anon_sym_constinit] = ACTIONS(4564), + [anon_sym_consteval] = ACTIONS(4564), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_STAR_EQ] = ACTIONS(4571), + [anon_sym_SLASH_EQ] = ACTIONS(4571), + [anon_sym_PERCENT_EQ] = ACTIONS(4571), + [anon_sym_PLUS_EQ] = ACTIONS(4571), + [anon_sym_DASH_EQ] = ACTIONS(4571), + [anon_sym_LT_LT_EQ] = ACTIONS(4571), + [anon_sym_GT_GT_EQ] = ACTIONS(4571), + [anon_sym_AMP_EQ] = ACTIONS(4571), + [anon_sym_CARET_EQ] = ACTIONS(4571), + [anon_sym_PIPE_EQ] = ACTIONS(4571), + [anon_sym_and_eq] = ACTIONS(4571), + [anon_sym_or_eq] = ACTIONS(4571), + [anon_sym_xor_eq] = ACTIONS(4571), + [anon_sym_LT_EQ_GT] = ACTIONS(4571), + [anon_sym_or] = ACTIONS(4566), + [anon_sym_and] = ACTIONS(4566), + [anon_sym_bitor] = ACTIONS(4571), + [anon_sym_xor] = ACTIONS(4566), + [anon_sym_bitand] = ACTIONS(4571), + [anon_sym_not_eq] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DOT] = ACTIONS(4566), + [anon_sym_DOT_STAR] = ACTIONS(4571), + [anon_sym_DASH_GT] = ACTIONS(4566), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4564), + [anon_sym_decltype] = ACTIONS(4564), + [anon_sym_DASH_GT_STAR] = ACTIONS(4571), }, [1777] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4433), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(3483), + [sym_attribute_specifier] = STATE(3483), + [sym_attribute_declaration] = STATE(3483), + [sym_ms_declspec_modifier] = STATE(3483), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5755), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3483), + [sym_type_qualifier] = STATE(3483), + [sym_decltype] = STATE(7683), + [sym_virtual] = STATE(3483), + [sym_alignas_specifier] = STATE(3483), + [sym_explicit_function_specifier] = STATE(3483), + [sym_operator_cast] = STATE(6108), + [sym__constructor_specifiers] = STATE(3483), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(7683), + [sym_template_function] = STATE(5742), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5134), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_operator_cast_identifier] = STATE(6108), + [sym_operator_name] = STATE(5742), + [aux_sym_operator_cast_definition_repeat1] = STATE(3483), + [sym_identifier] = ACTIONS(4792), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(4794), + [anon_sym_extern] = ACTIONS(4796), + [anon_sym___attribute__] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4802), + [anon_sym___declspec] = ACTIONS(4804), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(4796), + [anon_sym_register] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym___inline] = ACTIONS(4796), + [anon_sym___inline__] = ACTIONS(4796), + [anon_sym___forceinline] = ACTIONS(4796), + [anon_sym_thread_local] = ACTIONS(4796), + [anon_sym___thread] = ACTIONS(4796), + [anon_sym_const] = ACTIONS(4794), + [anon_sym_constexpr] = ACTIONS(4794), + [anon_sym_volatile] = ACTIONS(4794), + [anon_sym_restrict] = ACTIONS(4794), + [anon_sym___restrict__] = ACTIONS(4794), + [anon_sym__Atomic] = ACTIONS(4794), + [anon_sym__Noreturn] = ACTIONS(4794), + [anon_sym_noreturn] = ACTIONS(4794), + [anon_sym_mutable] = ACTIONS(4794), + [anon_sym_constinit] = ACTIONS(4794), + [anon_sym_consteval] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(4806), + [anon_sym_alignas] = ACTIONS(4808), + [anon_sym_explicit] = ACTIONS(125), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_operator] = ACTIONS(131), }, [1778] = { - [sym__expression] = STATE(4264), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(3483), + [sym_attribute_specifier] = STATE(3483), + [sym_attribute_declaration] = STATE(3483), + [sym_ms_declspec_modifier] = STATE(3483), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5745), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3483), + [sym_type_qualifier] = STATE(3483), + [sym_decltype] = STATE(7683), + [sym_virtual] = STATE(3483), + [sym_alignas_specifier] = STATE(3483), + [sym_explicit_function_specifier] = STATE(3483), + [sym_operator_cast] = STATE(6130), + [sym__constructor_specifiers] = STATE(3483), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(7683), + [sym_template_function] = STATE(5742), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5134), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_operator_cast_identifier] = STATE(6130), + [sym_operator_name] = STATE(5742), + [aux_sym_operator_cast_definition_repeat1] = STATE(3483), + [sym_identifier] = ACTIONS(4792), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(4794), + [anon_sym_extern] = ACTIONS(4796), + [anon_sym___attribute__] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4802), + [anon_sym___declspec] = ACTIONS(4804), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(4796), + [anon_sym_register] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym___inline] = ACTIONS(4796), + [anon_sym___inline__] = ACTIONS(4796), + [anon_sym___forceinline] = ACTIONS(4796), + [anon_sym_thread_local] = ACTIONS(4796), + [anon_sym___thread] = ACTIONS(4796), + [anon_sym_const] = ACTIONS(4794), + [anon_sym_constexpr] = ACTIONS(4794), + [anon_sym_volatile] = ACTIONS(4794), + [anon_sym_restrict] = ACTIONS(4794), + [anon_sym___restrict__] = ACTIONS(4794), + [anon_sym__Atomic] = ACTIONS(4794), + [anon_sym__Noreturn] = ACTIONS(4794), + [anon_sym_noreturn] = ACTIONS(4794), + [anon_sym_mutable] = ACTIONS(4794), + [anon_sym_constinit] = ACTIONS(4794), + [anon_sym_consteval] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(4806), + [anon_sym_alignas] = ACTIONS(4808), + [anon_sym_explicit] = ACTIONS(125), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [anon_sym_operator] = ACTIONS(131), }, [1779] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(3483), + [sym_attribute_specifier] = STATE(3483), + [sym_attribute_declaration] = STATE(3483), + [sym_ms_declspec_modifier] = STATE(3483), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5822), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3483), + [sym_type_qualifier] = STATE(3483), + [sym_decltype] = STATE(7683), + [sym_virtual] = STATE(3483), + [sym_alignas_specifier] = STATE(3483), + [sym_explicit_function_specifier] = STATE(3483), + [sym_operator_cast] = STATE(6137), + [sym__constructor_specifiers] = STATE(3483), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(7683), + [sym_template_function] = STATE(5742), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5134), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_operator_cast_identifier] = STATE(6137), + [sym_operator_name] = STATE(5742), + [aux_sym_operator_cast_definition_repeat1] = STATE(3483), + [sym_identifier] = ACTIONS(4792), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(4794), + [anon_sym_extern] = ACTIONS(4796), + [anon_sym___attribute__] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4802), + [anon_sym___declspec] = ACTIONS(4804), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(4796), + [anon_sym_register] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym___inline] = ACTIONS(4796), + [anon_sym___inline__] = ACTIONS(4796), + [anon_sym___forceinline] = ACTIONS(4796), + [anon_sym_thread_local] = ACTIONS(4796), + [anon_sym___thread] = ACTIONS(4796), + [anon_sym_const] = ACTIONS(4794), + [anon_sym_constexpr] = ACTIONS(4794), + [anon_sym_volatile] = ACTIONS(4794), + [anon_sym_restrict] = ACTIONS(4794), + [anon_sym___restrict__] = ACTIONS(4794), + [anon_sym__Atomic] = ACTIONS(4794), + [anon_sym__Noreturn] = ACTIONS(4794), + [anon_sym_noreturn] = ACTIONS(4794), + [anon_sym_mutable] = ACTIONS(4794), + [anon_sym_constinit] = ACTIONS(4794), + [anon_sym_consteval] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(4806), + [anon_sym_alignas] = ACTIONS(4808), + [anon_sym_explicit] = ACTIONS(125), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_operator] = ACTIONS(131), }, [1780] = { - [sym__expression] = STATE(4976), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_initializer_list] = STATE(8331), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4437), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(1796), + [sym_raw_string_literal] = STATE(1796), + [aux_sym_concatenated_string_repeat1] = STATE(1796), + [sym_identifier] = ACTIONS(4810), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_RPAREN] = ACTIONS(4812), + [anon_sym_LPAREN2] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_PLUS] = ACTIONS(4814), + [anon_sym_STAR] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4814), + [anon_sym_PERCENT] = ACTIONS(4814), + [anon_sym_PIPE_PIPE] = ACTIONS(4812), + [anon_sym_AMP_AMP] = ACTIONS(4812), + [anon_sym_PIPE] = ACTIONS(4814), + [anon_sym_CARET] = ACTIONS(4814), + [anon_sym_AMP] = ACTIONS(4814), + [anon_sym_EQ_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ] = ACTIONS(4812), + [anon_sym_GT] = ACTIONS(4814), + [anon_sym_GT_EQ] = ACTIONS(4812), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_LT_LT] = ACTIONS(4814), + [anon_sym_GT_GT] = ACTIONS(4814), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_RBRACE] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4812), + [anon_sym_RBRACK] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4814), + [anon_sym_COLON] = ACTIONS(4812), + [anon_sym_QMARK] = ACTIONS(4812), + [anon_sym_STAR_EQ] = ACTIONS(4812), + [anon_sym_SLASH_EQ] = ACTIONS(4812), + [anon_sym_PERCENT_EQ] = ACTIONS(4812), + [anon_sym_PLUS_EQ] = ACTIONS(4812), + [anon_sym_DASH_EQ] = ACTIONS(4812), + [anon_sym_LT_LT_EQ] = ACTIONS(4812), + [anon_sym_GT_GT_EQ] = ACTIONS(4812), + [anon_sym_AMP_EQ] = ACTIONS(4812), + [anon_sym_CARET_EQ] = ACTIONS(4812), + [anon_sym_PIPE_EQ] = ACTIONS(4812), + [anon_sym_and_eq] = ACTIONS(4814), + [anon_sym_or_eq] = ACTIONS(4814), + [anon_sym_xor_eq] = ACTIONS(4814), + [anon_sym_LT_EQ_GT] = ACTIONS(4812), + [anon_sym_or] = ACTIONS(4814), + [anon_sym_and] = ACTIONS(4814), + [anon_sym_bitor] = ACTIONS(4814), + [anon_sym_xor] = ACTIONS(4814), + [anon_sym_bitand] = ACTIONS(4814), + [anon_sym_not_eq] = ACTIONS(4814), + [anon_sym_DASH_DASH] = ACTIONS(4812), + [anon_sym_PLUS_PLUS] = ACTIONS(4812), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_DOT_STAR] = ACTIONS(4812), + [anon_sym_DASH_GT] = ACTIONS(4812), + [anon_sym_L_DQUOTE] = ACTIONS(4816), + [anon_sym_u_DQUOTE] = ACTIONS(4816), + [anon_sym_U_DQUOTE] = ACTIONS(4816), + [anon_sym_u8_DQUOTE] = ACTIONS(4816), + [anon_sym_DQUOTE] = ACTIONS(4816), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4818), + [anon_sym_LR_DQUOTE] = ACTIONS(4818), + [anon_sym_uR_DQUOTE] = ACTIONS(4818), + [anon_sym_UR_DQUOTE] = ACTIONS(4818), + [anon_sym_u8R_DQUOTE] = ACTIONS(4818), + [sym_literal_suffix] = ACTIONS(4814), }, [1781] = { - [sym__expression] = STATE(4825), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_initializer_list] = STATE(7555), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(4439), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(3483), + [sym_attribute_specifier] = STATE(3483), + [sym_attribute_declaration] = STATE(3483), + [sym_ms_declspec_modifier] = STATE(3483), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5761), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3483), + [sym_type_qualifier] = STATE(3483), + [sym_decltype] = STATE(7683), + [sym_virtual] = STATE(3483), + [sym_alignas_specifier] = STATE(3483), + [sym_explicit_function_specifier] = STATE(3483), + [sym_operator_cast] = STATE(6137), + [sym__constructor_specifiers] = STATE(3483), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(7683), + [sym_template_function] = STATE(5742), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5134), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_operator_cast_identifier] = STATE(6137), + [sym_operator_name] = STATE(5742), + [aux_sym_operator_cast_definition_repeat1] = STATE(3483), + [sym_identifier] = ACTIONS(4792), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(4794), + [anon_sym_extern] = ACTIONS(4796), + [anon_sym___attribute__] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4802), + [anon_sym___declspec] = ACTIONS(4804), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(4796), + [anon_sym_register] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym___inline] = ACTIONS(4796), + [anon_sym___inline__] = ACTIONS(4796), + [anon_sym___forceinline] = ACTIONS(4796), + [anon_sym_thread_local] = ACTIONS(4796), + [anon_sym___thread] = ACTIONS(4796), + [anon_sym_const] = ACTIONS(4794), + [anon_sym_constexpr] = ACTIONS(4794), + [anon_sym_volatile] = ACTIONS(4794), + [anon_sym_restrict] = ACTIONS(4794), + [anon_sym___restrict__] = ACTIONS(4794), + [anon_sym__Atomic] = ACTIONS(4794), + [anon_sym__Noreturn] = ACTIONS(4794), + [anon_sym_noreturn] = ACTIONS(4794), + [anon_sym_mutable] = ACTIONS(4794), + [anon_sym_constinit] = ACTIONS(4794), + [anon_sym_consteval] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(4806), + [anon_sym_alignas] = ACTIONS(4808), + [anon_sym_explicit] = ACTIONS(125), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(4441), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_operator] = ACTIONS(131), }, [1782] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4397), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(1782), + [sym_raw_string_literal] = STATE(1782), + [aux_sym_concatenated_string_repeat1] = STATE(1782), + [sym_identifier] = ACTIONS(4820), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4823), + [anon_sym_COMMA] = ACTIONS(4823), + [anon_sym_RPAREN] = ACTIONS(4823), + [anon_sym_LPAREN2] = ACTIONS(4823), + [anon_sym_DASH] = ACTIONS(4825), + [anon_sym_PLUS] = ACTIONS(4825), + [anon_sym_STAR] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4825), + [anon_sym_PERCENT] = ACTIONS(4825), + [anon_sym_PIPE_PIPE] = ACTIONS(4823), + [anon_sym_AMP_AMP] = ACTIONS(4823), + [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_AMP] = ACTIONS(4825), + [anon_sym_EQ_EQ] = ACTIONS(4823), + [anon_sym_BANG_EQ] = ACTIONS(4823), + [anon_sym_GT] = ACTIONS(4825), + [anon_sym_GT_EQ] = ACTIONS(4823), + [anon_sym_LT_EQ] = ACTIONS(4825), + [anon_sym_LT] = ACTIONS(4825), + [anon_sym_LT_LT] = ACTIONS(4825), + [anon_sym_GT_GT] = ACTIONS(4825), + [anon_sym_SEMI] = ACTIONS(4823), + [anon_sym_RBRACE] = ACTIONS(4823), + [anon_sym_LBRACK] = ACTIONS(4823), + [anon_sym_RBRACK] = ACTIONS(4823), + [anon_sym_EQ] = ACTIONS(4825), + [anon_sym_COLON] = ACTIONS(4823), + [anon_sym_QMARK] = ACTIONS(4823), + [anon_sym_STAR_EQ] = ACTIONS(4823), + [anon_sym_SLASH_EQ] = ACTIONS(4823), + [anon_sym_PERCENT_EQ] = ACTIONS(4823), + [anon_sym_PLUS_EQ] = ACTIONS(4823), + [anon_sym_DASH_EQ] = ACTIONS(4823), + [anon_sym_LT_LT_EQ] = ACTIONS(4823), + [anon_sym_GT_GT_EQ] = ACTIONS(4823), + [anon_sym_AMP_EQ] = ACTIONS(4823), + [anon_sym_CARET_EQ] = ACTIONS(4823), + [anon_sym_PIPE_EQ] = ACTIONS(4823), + [anon_sym_and_eq] = ACTIONS(4825), + [anon_sym_or_eq] = ACTIONS(4825), + [anon_sym_xor_eq] = ACTIONS(4825), + [anon_sym_LT_EQ_GT] = ACTIONS(4823), + [anon_sym_or] = ACTIONS(4825), + [anon_sym_and] = ACTIONS(4825), + [anon_sym_bitor] = ACTIONS(4825), + [anon_sym_xor] = ACTIONS(4825), + [anon_sym_bitand] = ACTIONS(4825), + [anon_sym_not_eq] = ACTIONS(4825), + [anon_sym_DASH_DASH] = ACTIONS(4823), + [anon_sym_PLUS_PLUS] = ACTIONS(4823), + [anon_sym_DOT] = ACTIONS(4825), + [anon_sym_DOT_STAR] = ACTIONS(4823), + [anon_sym_DASH_GT] = ACTIONS(4823), + [anon_sym_L_DQUOTE] = ACTIONS(4827), + [anon_sym_u_DQUOTE] = ACTIONS(4827), + [anon_sym_U_DQUOTE] = ACTIONS(4827), + [anon_sym_u8_DQUOTE] = ACTIONS(4827), + [anon_sym_DQUOTE] = ACTIONS(4827), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4830), + [anon_sym_LR_DQUOTE] = ACTIONS(4830), + [anon_sym_uR_DQUOTE] = ACTIONS(4830), + [anon_sym_UR_DQUOTE] = ACTIONS(4830), + [anon_sym_u8R_DQUOTE] = ACTIONS(4830), + [sym_literal_suffix] = ACTIONS(4825), }, [1783] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4443), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(3483), + [sym_attribute_specifier] = STATE(3483), + [sym_attribute_declaration] = STATE(3483), + [sym_ms_declspec_modifier] = STATE(3483), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5727), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3483), + [sym_type_qualifier] = STATE(3483), + [sym_decltype] = STATE(7683), + [sym_virtual] = STATE(3483), + [sym_alignas_specifier] = STATE(3483), + [sym_explicit_function_specifier] = STATE(3483), + [sym_operator_cast] = STATE(6118), + [sym__constructor_specifiers] = STATE(3483), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(7683), + [sym_template_function] = STATE(5742), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5134), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_operator_cast_identifier] = STATE(6118), + [sym_operator_name] = STATE(5742), + [aux_sym_operator_cast_definition_repeat1] = STATE(3483), + [sym_identifier] = ACTIONS(4792), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(4794), + [anon_sym_extern] = ACTIONS(4796), + [anon_sym___attribute__] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4802), + [anon_sym___declspec] = ACTIONS(4804), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(4796), + [anon_sym_register] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym___inline] = ACTIONS(4796), + [anon_sym___inline__] = ACTIONS(4796), + [anon_sym___forceinline] = ACTIONS(4796), + [anon_sym_thread_local] = ACTIONS(4796), + [anon_sym___thread] = ACTIONS(4796), + [anon_sym_const] = ACTIONS(4794), + [anon_sym_constexpr] = ACTIONS(4794), + [anon_sym_volatile] = ACTIONS(4794), + [anon_sym_restrict] = ACTIONS(4794), + [anon_sym___restrict__] = ACTIONS(4794), + [anon_sym__Atomic] = ACTIONS(4794), + [anon_sym__Noreturn] = ACTIONS(4794), + [anon_sym_noreturn] = ACTIONS(4794), + [anon_sym_mutable] = ACTIONS(4794), + [anon_sym_constinit] = ACTIONS(4794), + [anon_sym_consteval] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(4806), + [anon_sym_alignas] = ACTIONS(4808), + [anon_sym_explicit] = ACTIONS(125), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_operator] = ACTIONS(131), }, [1784] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(3483), + [sym_attribute_specifier] = STATE(3483), + [sym_attribute_declaration] = STATE(3483), + [sym_ms_declspec_modifier] = STATE(3483), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5785), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3483), + [sym_type_qualifier] = STATE(3483), + [sym_decltype] = STATE(7683), + [sym_virtual] = STATE(3483), + [sym_alignas_specifier] = STATE(3483), + [sym_explicit_function_specifier] = STATE(3483), + [sym_operator_cast] = STATE(6127), + [sym__constructor_specifiers] = STATE(3483), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(7683), + [sym_template_function] = STATE(5742), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5134), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_operator_cast_identifier] = STATE(6127), + [sym_operator_name] = STATE(5742), + [aux_sym_operator_cast_definition_repeat1] = STATE(3483), + [sym_identifier] = ACTIONS(4792), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(4794), + [anon_sym_extern] = ACTIONS(4796), + [anon_sym___attribute__] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4802), + [anon_sym___declspec] = ACTIONS(4804), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(4796), + [anon_sym_register] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym___inline] = ACTIONS(4796), + [anon_sym___inline__] = ACTIONS(4796), + [anon_sym___forceinline] = ACTIONS(4796), + [anon_sym_thread_local] = ACTIONS(4796), + [anon_sym___thread] = ACTIONS(4796), + [anon_sym_const] = ACTIONS(4794), + [anon_sym_constexpr] = ACTIONS(4794), + [anon_sym_volatile] = ACTIONS(4794), + [anon_sym_restrict] = ACTIONS(4794), + [anon_sym___restrict__] = ACTIONS(4794), + [anon_sym__Atomic] = ACTIONS(4794), + [anon_sym__Noreturn] = ACTIONS(4794), + [anon_sym_noreturn] = ACTIONS(4794), + [anon_sym_mutable] = ACTIONS(4794), + [anon_sym_constinit] = ACTIONS(4794), + [anon_sym_consteval] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(4806), + [anon_sym_alignas] = ACTIONS(4808), + [anon_sym_explicit] = ACTIONS(125), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_operator] = ACTIONS(131), }, [1785] = { - [sym__expression] = STATE(5148), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [sym_string_literal] = STATE(1780), + [sym_template_argument_list] = STATE(2503), + [sym_raw_string_literal] = STATE(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_RPAREN] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4061), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_RBRACK] = ACTIONS(4061), + [anon_sym_EQ] = ACTIONS(4069), + [anon_sym_COLON] = ACTIONS(4069), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4061), + [anon_sym_SLASH_EQ] = ACTIONS(4061), + [anon_sym_PERCENT_EQ] = ACTIONS(4061), + [anon_sym_PLUS_EQ] = ACTIONS(4061), + [anon_sym_DASH_EQ] = ACTIONS(4061), + [anon_sym_LT_LT_EQ] = ACTIONS(4061), + [anon_sym_GT_GT_EQ] = ACTIONS(4061), + [anon_sym_AMP_EQ] = ACTIONS(4061), + [anon_sym_CARET_EQ] = ACTIONS(4061), + [anon_sym_PIPE_EQ] = ACTIONS(4061), + [anon_sym_and_eq] = ACTIONS(4061), + [anon_sym_or_eq] = ACTIONS(4061), + [anon_sym_xor_eq] = ACTIONS(4061), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4816), + [anon_sym_u_DQUOTE] = ACTIONS(4816), + [anon_sym_U_DQUOTE] = ACTIONS(4816), + [anon_sym_u8_DQUOTE] = ACTIONS(4816), + [anon_sym_DQUOTE] = ACTIONS(4816), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4818), + [anon_sym_LR_DQUOTE] = ACTIONS(4818), + [anon_sym_uR_DQUOTE] = ACTIONS(4818), + [anon_sym_UR_DQUOTE] = ACTIONS(4818), + [anon_sym_u8R_DQUOTE] = ACTIONS(4818), }, [1786] = { - [sym__expression] = STATE(4109), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(3483), + [sym_attribute_specifier] = STATE(3483), + [sym_attribute_declaration] = STATE(3483), + [sym_ms_declspec_modifier] = STATE(3483), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5794), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3483), + [sym_type_qualifier] = STATE(3483), + [sym_decltype] = STATE(7683), + [sym_virtual] = STATE(3483), + [sym_alignas_specifier] = STATE(3483), + [sym_explicit_function_specifier] = STATE(3483), + [sym_operator_cast] = STATE(6132), + [sym__constructor_specifiers] = STATE(3483), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(7683), + [sym_template_function] = STATE(5742), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5134), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_operator_cast_identifier] = STATE(6132), + [sym_operator_name] = STATE(5742), + [aux_sym_operator_cast_definition_repeat1] = STATE(3483), + [sym_identifier] = ACTIONS(4792), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(4794), + [anon_sym_extern] = ACTIONS(4796), + [anon_sym___attribute__] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4802), + [anon_sym___declspec] = ACTIONS(4804), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(4796), + [anon_sym_register] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym___inline] = ACTIONS(4796), + [anon_sym___inline__] = ACTIONS(4796), + [anon_sym___forceinline] = ACTIONS(4796), + [anon_sym_thread_local] = ACTIONS(4796), + [anon_sym___thread] = ACTIONS(4796), + [anon_sym_const] = ACTIONS(4794), + [anon_sym_constexpr] = ACTIONS(4794), + [anon_sym_volatile] = ACTIONS(4794), + [anon_sym_restrict] = ACTIONS(4794), + [anon_sym___restrict__] = ACTIONS(4794), + [anon_sym__Atomic] = ACTIONS(4794), + [anon_sym__Noreturn] = ACTIONS(4794), + [anon_sym_noreturn] = ACTIONS(4794), + [anon_sym_mutable] = ACTIONS(4794), + [anon_sym_constinit] = ACTIONS(4794), + [anon_sym_consteval] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(4806), + [anon_sym_alignas] = ACTIONS(4808), + [anon_sym_explicit] = ACTIONS(125), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [anon_sym_operator] = ACTIONS(131), }, [1787] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4447), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(3483), + [sym_attribute_specifier] = STATE(3483), + [sym_attribute_declaration] = STATE(3483), + [sym_ms_declspec_modifier] = STATE(3483), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5813), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3483), + [sym_type_qualifier] = STATE(3483), + [sym_decltype] = STATE(7683), + [sym_virtual] = STATE(3483), + [sym_alignas_specifier] = STATE(3483), + [sym_explicit_function_specifier] = STATE(3483), + [sym_operator_cast] = STATE(6122), + [sym__constructor_specifiers] = STATE(3483), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(7683), + [sym_template_function] = STATE(5742), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5134), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_operator_cast_identifier] = STATE(6122), + [sym_operator_name] = STATE(5742), + [aux_sym_operator_cast_definition_repeat1] = STATE(3483), + [sym_identifier] = ACTIONS(4792), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(4794), + [anon_sym_extern] = ACTIONS(4796), + [anon_sym___attribute__] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4802), + [anon_sym___declspec] = ACTIONS(4804), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(4796), + [anon_sym_register] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym___inline] = ACTIONS(4796), + [anon_sym___inline__] = ACTIONS(4796), + [anon_sym___forceinline] = ACTIONS(4796), + [anon_sym_thread_local] = ACTIONS(4796), + [anon_sym___thread] = ACTIONS(4796), + [anon_sym_const] = ACTIONS(4794), + [anon_sym_constexpr] = ACTIONS(4794), + [anon_sym_volatile] = ACTIONS(4794), + [anon_sym_restrict] = ACTIONS(4794), + [anon_sym___restrict__] = ACTIONS(4794), + [anon_sym__Atomic] = ACTIONS(4794), + [anon_sym__Noreturn] = ACTIONS(4794), + [anon_sym_noreturn] = ACTIONS(4794), + [anon_sym_mutable] = ACTIONS(4794), + [anon_sym_constinit] = ACTIONS(4794), + [anon_sym_consteval] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(4806), + [anon_sym_alignas] = ACTIONS(4808), + [anon_sym_explicit] = ACTIONS(125), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_operator] = ACTIONS(131), }, [1788] = { - [sym__expression] = STATE(4942), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(3483), + [sym_attribute_specifier] = STATE(3483), + [sym_attribute_declaration] = STATE(3483), + [sym_ms_declspec_modifier] = STATE(3483), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5683), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3483), + [sym_type_qualifier] = STATE(3483), + [sym_decltype] = STATE(7683), + [sym_virtual] = STATE(3483), + [sym_alignas_specifier] = STATE(3483), + [sym_explicit_function_specifier] = STATE(3483), + [sym_operator_cast] = STATE(6127), + [sym__constructor_specifiers] = STATE(3483), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(7683), + [sym_template_function] = STATE(5742), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5134), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_operator_cast_identifier] = STATE(6127), + [sym_operator_name] = STATE(5742), + [aux_sym_operator_cast_definition_repeat1] = STATE(3483), + [sym_identifier] = ACTIONS(4792), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(4794), + [anon_sym_extern] = ACTIONS(4796), + [anon_sym___attribute__] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4802), + [anon_sym___declspec] = ACTIONS(4804), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(4796), + [anon_sym_register] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym___inline] = ACTIONS(4796), + [anon_sym___inline__] = ACTIONS(4796), + [anon_sym___forceinline] = ACTIONS(4796), + [anon_sym_thread_local] = ACTIONS(4796), + [anon_sym___thread] = ACTIONS(4796), + [anon_sym_const] = ACTIONS(4794), + [anon_sym_constexpr] = ACTIONS(4794), + [anon_sym_volatile] = ACTIONS(4794), + [anon_sym_restrict] = ACTIONS(4794), + [anon_sym___restrict__] = ACTIONS(4794), + [anon_sym__Atomic] = ACTIONS(4794), + [anon_sym__Noreturn] = ACTIONS(4794), + [anon_sym_noreturn] = ACTIONS(4794), + [anon_sym_mutable] = ACTIONS(4794), + [anon_sym_constinit] = ACTIONS(4794), + [anon_sym_consteval] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(4806), + [anon_sym_alignas] = ACTIONS(4808), + [anon_sym_explicit] = ACTIONS(125), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_operator] = ACTIONS(131), }, [1789] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4449), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(3483), + [sym_attribute_specifier] = STATE(3483), + [sym_attribute_declaration] = STATE(3483), + [sym_ms_declspec_modifier] = STATE(3483), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5672), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3483), + [sym_type_qualifier] = STATE(3483), + [sym_decltype] = STATE(7683), + [sym_virtual] = STATE(3483), + [sym_alignas_specifier] = STATE(3483), + [sym_explicit_function_specifier] = STATE(3483), + [sym_operator_cast] = STATE(6132), + [sym__constructor_specifiers] = STATE(3483), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(7683), + [sym_template_function] = STATE(5742), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5134), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_operator_cast_identifier] = STATE(6132), + [sym_operator_name] = STATE(5742), + [aux_sym_operator_cast_definition_repeat1] = STATE(3483), + [sym_identifier] = ACTIONS(4792), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(4794), + [anon_sym_extern] = ACTIONS(4796), + [anon_sym___attribute__] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4802), + [anon_sym___declspec] = ACTIONS(4804), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(4796), + [anon_sym_register] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym___inline] = ACTIONS(4796), + [anon_sym___inline__] = ACTIONS(4796), + [anon_sym___forceinline] = ACTIONS(4796), + [anon_sym_thread_local] = ACTIONS(4796), + [anon_sym___thread] = ACTIONS(4796), + [anon_sym_const] = ACTIONS(4794), + [anon_sym_constexpr] = ACTIONS(4794), + [anon_sym_volatile] = ACTIONS(4794), + [anon_sym_restrict] = ACTIONS(4794), + [anon_sym___restrict__] = ACTIONS(4794), + [anon_sym__Atomic] = ACTIONS(4794), + [anon_sym__Noreturn] = ACTIONS(4794), + [anon_sym_noreturn] = ACTIONS(4794), + [anon_sym_mutable] = ACTIONS(4794), + [anon_sym_constinit] = ACTIONS(4794), + [anon_sym_consteval] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(4806), + [anon_sym_alignas] = ACTIONS(4808), + [anon_sym_explicit] = ACTIONS(125), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_operator] = ACTIONS(131), }, [1790] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4451), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(3483), + [sym_attribute_specifier] = STATE(3483), + [sym_attribute_declaration] = STATE(3483), + [sym_ms_declspec_modifier] = STATE(3483), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5671), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3483), + [sym_type_qualifier] = STATE(3483), + [sym_decltype] = STATE(7683), + [sym_virtual] = STATE(3483), + [sym_alignas_specifier] = STATE(3483), + [sym_explicit_function_specifier] = STATE(3483), + [sym_operator_cast] = STATE(6112), + [sym__constructor_specifiers] = STATE(3483), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(7683), + [sym_template_function] = STATE(5742), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5134), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_operator_cast_identifier] = STATE(6112), + [sym_operator_name] = STATE(5742), + [aux_sym_operator_cast_definition_repeat1] = STATE(3483), + [sym_identifier] = ACTIONS(4792), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(4794), + [anon_sym_extern] = ACTIONS(4796), + [anon_sym___attribute__] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4802), + [anon_sym___declspec] = ACTIONS(4804), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(4796), + [anon_sym_register] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym___inline] = ACTIONS(4796), + [anon_sym___inline__] = ACTIONS(4796), + [anon_sym___forceinline] = ACTIONS(4796), + [anon_sym_thread_local] = ACTIONS(4796), + [anon_sym___thread] = ACTIONS(4796), + [anon_sym_const] = ACTIONS(4794), + [anon_sym_constexpr] = ACTIONS(4794), + [anon_sym_volatile] = ACTIONS(4794), + [anon_sym_restrict] = ACTIONS(4794), + [anon_sym___restrict__] = ACTIONS(4794), + [anon_sym__Atomic] = ACTIONS(4794), + [anon_sym__Noreturn] = ACTIONS(4794), + [anon_sym_noreturn] = ACTIONS(4794), + [anon_sym_mutable] = ACTIONS(4794), + [anon_sym_constinit] = ACTIONS(4794), + [anon_sym_consteval] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(4806), + [anon_sym_alignas] = ACTIONS(4808), + [anon_sym_explicit] = ACTIONS(125), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_operator] = ACTIONS(131), }, [1791] = { - [sym__expression] = STATE(4096), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token2] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [aux_sym_preproc_else_token1] = ACTIONS(2138), + [aux_sym_preproc_elif_token1] = ACTIONS(2138), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2828), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(4836), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_friend] = ACTIONS(2138), + [anon_sym_public] = ACTIONS(2138), + [anon_sym_private] = ACTIONS(2138), + [anon_sym_protected] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), }, [1792] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(3483), + [sym_attribute_specifier] = STATE(3483), + [sym_attribute_declaration] = STATE(3483), + [sym_ms_declspec_modifier] = STATE(3483), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5796), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3483), + [sym_type_qualifier] = STATE(3483), + [sym_decltype] = STATE(7683), + [sym_virtual] = STATE(3483), + [sym_alignas_specifier] = STATE(3483), + [sym_explicit_function_specifier] = STATE(3483), + [sym_operator_cast] = STATE(6130), + [sym__constructor_specifiers] = STATE(3483), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(7683), + [sym_template_function] = STATE(5742), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5134), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_operator_cast_identifier] = STATE(6130), + [sym_operator_name] = STATE(5742), + [aux_sym_operator_cast_definition_repeat1] = STATE(3483), + [sym_identifier] = ACTIONS(4792), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(4794), + [anon_sym_extern] = ACTIONS(4796), + [anon_sym___attribute__] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4802), + [anon_sym___declspec] = ACTIONS(4804), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(4796), + [anon_sym_register] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym___inline] = ACTIONS(4796), + [anon_sym___inline__] = ACTIONS(4796), + [anon_sym___forceinline] = ACTIONS(4796), + [anon_sym_thread_local] = ACTIONS(4796), + [anon_sym___thread] = ACTIONS(4796), + [anon_sym_const] = ACTIONS(4794), + [anon_sym_constexpr] = ACTIONS(4794), + [anon_sym_volatile] = ACTIONS(4794), + [anon_sym_restrict] = ACTIONS(4794), + [anon_sym___restrict__] = ACTIONS(4794), + [anon_sym__Atomic] = ACTIONS(4794), + [anon_sym__Noreturn] = ACTIONS(4794), + [anon_sym_noreturn] = ACTIONS(4794), + [anon_sym_mutable] = ACTIONS(4794), + [anon_sym_constinit] = ACTIONS(4794), + [anon_sym_consteval] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(4806), + [anon_sym_alignas] = ACTIONS(4808), + [anon_sym_explicit] = ACTIONS(125), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_operator] = ACTIONS(131), }, [1793] = { - [sym__expression] = STATE(3728), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(3483), + [sym_attribute_specifier] = STATE(3483), + [sym_attribute_declaration] = STATE(3483), + [sym_ms_declspec_modifier] = STATE(3483), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5709), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3483), + [sym_type_qualifier] = STATE(3483), + [sym_decltype] = STATE(7683), + [sym_virtual] = STATE(3483), + [sym_alignas_specifier] = STATE(3483), + [sym_explicit_function_specifier] = STATE(3483), + [sym_operator_cast] = STATE(6122), + [sym__constructor_specifiers] = STATE(3483), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(7683), + [sym_template_function] = STATE(5742), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5134), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_operator_cast_identifier] = STATE(6122), + [sym_operator_name] = STATE(5742), + [aux_sym_operator_cast_definition_repeat1] = STATE(3483), + [sym_identifier] = ACTIONS(4792), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(4794), + [anon_sym_extern] = ACTIONS(4796), + [anon_sym___attribute__] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4802), + [anon_sym___declspec] = ACTIONS(4804), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(4796), + [anon_sym_register] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym___inline] = ACTIONS(4796), + [anon_sym___inline__] = ACTIONS(4796), + [anon_sym___forceinline] = ACTIONS(4796), + [anon_sym_thread_local] = ACTIONS(4796), + [anon_sym___thread] = ACTIONS(4796), + [anon_sym_const] = ACTIONS(4794), + [anon_sym_constexpr] = ACTIONS(4794), + [anon_sym_volatile] = ACTIONS(4794), + [anon_sym_restrict] = ACTIONS(4794), + [anon_sym___restrict__] = ACTIONS(4794), + [anon_sym__Atomic] = ACTIONS(4794), + [anon_sym__Noreturn] = ACTIONS(4794), + [anon_sym_noreturn] = ACTIONS(4794), + [anon_sym_mutable] = ACTIONS(4794), + [anon_sym_constinit] = ACTIONS(4794), + [anon_sym_consteval] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(4806), + [anon_sym_alignas] = ACTIONS(4808), + [anon_sym_explicit] = ACTIONS(125), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [anon_sym_operator] = ACTIONS(131), }, [1794] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token2] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [aux_sym_preproc_else_token1] = ACTIONS(2138), + [aux_sym_preproc_elif_token1] = ACTIONS(2138), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2828), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_friend] = ACTIONS(2138), + [anon_sym_public] = ACTIONS(2138), + [anon_sym_private] = ACTIONS(2138), + [anon_sym_protected] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), }, [1795] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4457), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(3483), + [sym_attribute_specifier] = STATE(3483), + [sym_attribute_declaration] = STATE(3483), + [sym_ms_declspec_modifier] = STATE(3483), + [sym_ms_based_modifier] = STATE(7657), + [sym__declarator] = STATE(6057), + [sym_parenthesized_declarator] = STATE(5742), + [sym_attributed_declarator] = STATE(5742), + [sym_pointer_declarator] = STATE(5742), + [sym_function_declarator] = STATE(5668), + [sym_array_declarator] = STATE(5742), + [sym_storage_class_specifier] = STATE(3483), + [sym_type_qualifier] = STATE(3483), + [sym_decltype] = STATE(7683), + [sym_virtual] = STATE(3483), + [sym_alignas_specifier] = STATE(3483), + [sym_explicit_function_specifier] = STATE(3483), + [sym_operator_cast] = STATE(6098), + [sym__constructor_specifiers] = STATE(3483), + [sym_reference_declarator] = STATE(5742), + [sym_structured_binding_declarator] = STATE(5742), + [sym_template_type] = STATE(7683), + [sym_template_function] = STATE(5742), + [sym_destructor_name] = STATE(5742), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5134), + [sym_qualified_identifier] = STATE(5742), + [sym_qualified_operator_cast_identifier] = STATE(6098), + [sym_operator_name] = STATE(5742), + [aux_sym_operator_cast_definition_repeat1] = STATE(3483), + [sym_identifier] = ACTIONS(4792), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(4794), + [anon_sym_extern] = ACTIONS(4796), + [anon_sym___attribute__] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4802), + [anon_sym___declspec] = ACTIONS(4804), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(4796), + [anon_sym_register] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym___inline] = ACTIONS(4796), + [anon_sym___inline__] = ACTIONS(4796), + [anon_sym___forceinline] = ACTIONS(4796), + [anon_sym_thread_local] = ACTIONS(4796), + [anon_sym___thread] = ACTIONS(4796), + [anon_sym_const] = ACTIONS(4794), + [anon_sym_constexpr] = ACTIONS(4794), + [anon_sym_volatile] = ACTIONS(4794), + [anon_sym_restrict] = ACTIONS(4794), + [anon_sym___restrict__] = ACTIONS(4794), + [anon_sym__Atomic] = ACTIONS(4794), + [anon_sym__Noreturn] = ACTIONS(4794), + [anon_sym_noreturn] = ACTIONS(4794), + [anon_sym_mutable] = ACTIONS(4794), + [anon_sym_constinit] = ACTIONS(4794), + [anon_sym_consteval] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(4806), + [anon_sym_alignas] = ACTIONS(4808), + [anon_sym_explicit] = ACTIONS(125), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_operator] = ACTIONS(131), }, [1796] = { - [sym__expression] = STATE(4844), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_initializer_list] = STATE(7554), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(4459), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(4461), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(1782), + [sym_raw_string_literal] = STATE(1782), + [aux_sym_concatenated_string_repeat1] = STATE(1782), + [sym_identifier] = ACTIONS(4838), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_RPAREN] = ACTIONS(4840), + [anon_sym_LPAREN2] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_PLUS] = ACTIONS(4842), + [anon_sym_STAR] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4842), + [anon_sym_PERCENT] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4842), + [anon_sym_AMP] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4840), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_LT_LT] = ACTIONS(4842), + [anon_sym_GT_GT] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_RBRACE] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4840), + [anon_sym_RBRACK] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4842), + [anon_sym_COLON] = ACTIONS(4840), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_STAR_EQ] = ACTIONS(4840), + [anon_sym_SLASH_EQ] = ACTIONS(4840), + [anon_sym_PERCENT_EQ] = ACTIONS(4840), + [anon_sym_PLUS_EQ] = ACTIONS(4840), + [anon_sym_DASH_EQ] = ACTIONS(4840), + [anon_sym_LT_LT_EQ] = ACTIONS(4840), + [anon_sym_GT_GT_EQ] = ACTIONS(4840), + [anon_sym_AMP_EQ] = ACTIONS(4840), + [anon_sym_CARET_EQ] = ACTIONS(4840), + [anon_sym_PIPE_EQ] = ACTIONS(4840), + [anon_sym_and_eq] = ACTIONS(4842), + [anon_sym_or_eq] = ACTIONS(4842), + [anon_sym_xor_eq] = ACTIONS(4842), + [anon_sym_LT_EQ_GT] = ACTIONS(4840), + [anon_sym_or] = ACTIONS(4842), + [anon_sym_and] = ACTIONS(4842), + [anon_sym_bitor] = ACTIONS(4842), + [anon_sym_xor] = ACTIONS(4842), + [anon_sym_bitand] = ACTIONS(4842), + [anon_sym_not_eq] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4840), + [anon_sym_PLUS_PLUS] = ACTIONS(4840), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_DOT_STAR] = ACTIONS(4840), + [anon_sym_DASH_GT] = ACTIONS(4840), + [anon_sym_L_DQUOTE] = ACTIONS(4816), + [anon_sym_u_DQUOTE] = ACTIONS(4816), + [anon_sym_U_DQUOTE] = ACTIONS(4816), + [anon_sym_u8_DQUOTE] = ACTIONS(4816), + [anon_sym_DQUOTE] = ACTIONS(4816), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4818), + [anon_sym_LR_DQUOTE] = ACTIONS(4818), + [anon_sym_uR_DQUOTE] = ACTIONS(4818), + [anon_sym_UR_DQUOTE] = ACTIONS(4818), + [anon_sym_u8R_DQUOTE] = ACTIONS(4818), + [sym_literal_suffix] = ACTIONS(4842), }, [1797] = { - [sym__expression] = STATE(3710), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_AMP_AMP] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), + [sym_catch_clause] = STATE(1797), + [aux_sym_constructor_try_statement_repeat1] = STATE(1797), + [sym_identifier] = ACTIONS(2218), + [aux_sym_preproc_def_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token2] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2218), + [aux_sym_preproc_else_token1] = ACTIONS(2218), + [aux_sym_preproc_elif_token1] = ACTIONS(2218), + [sym_preproc_directive] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP_AMP] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2218), + [anon_sym___extension__] = ACTIONS(2218), + [anon_sym_typedef] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym___attribute__] = ACTIONS(2218), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2220), + [anon_sym___declspec] = ACTIONS(2218), + [anon_sym___based] = ACTIONS(2218), + [anon_sym_signed] = ACTIONS(2218), + [anon_sym_unsigned] = ACTIONS(2218), + [anon_sym_long] = ACTIONS(2218), + [anon_sym_short] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_inline] = ACTIONS(2218), + [anon_sym___inline] = ACTIONS(2218), + [anon_sym___inline__] = ACTIONS(2218), + [anon_sym___forceinline] = ACTIONS(2218), + [anon_sym_thread_local] = ACTIONS(2218), + [anon_sym___thread] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_constexpr] = ACTIONS(2218), + [anon_sym_volatile] = ACTIONS(2218), + [anon_sym_restrict] = ACTIONS(2218), + [anon_sym___restrict__] = ACTIONS(2218), + [anon_sym__Atomic] = ACTIONS(2218), + [anon_sym__Noreturn] = ACTIONS(2218), + [anon_sym_noreturn] = ACTIONS(2218), + [anon_sym_mutable] = ACTIONS(2218), + [anon_sym_constinit] = ACTIONS(2218), + [anon_sym_consteval] = ACTIONS(2218), + [sym_primitive_type] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_class] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2218), + [anon_sym_virtual] = ACTIONS(2218), + [anon_sym_alignas] = ACTIONS(2218), + [anon_sym_explicit] = ACTIONS(2218), + [anon_sym_typename] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_operator] = ACTIONS(2218), + [anon_sym_friend] = ACTIONS(2218), + [anon_sym_public] = ACTIONS(2218), + [anon_sym_private] = ACTIONS(2218), + [anon_sym_protected] = ACTIONS(2218), + [anon_sym_using] = ACTIONS(2218), + [anon_sym_static_assert] = ACTIONS(2218), + [anon_sym_catch] = ACTIONS(4844), }, [1798] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4463), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4578), + [anon_sym_COMMA] = ACTIONS(4578), + [anon_sym_RPAREN] = ACTIONS(4578), + [anon_sym_LPAREN2] = ACTIONS(4578), + [anon_sym_DASH] = ACTIONS(4576), + [anon_sym_PLUS] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4576), + [anon_sym_SLASH] = ACTIONS(4576), + [anon_sym_PERCENT] = ACTIONS(4576), + [anon_sym_PIPE_PIPE] = ACTIONS(4578), + [anon_sym_AMP_AMP] = ACTIONS(4578), + [anon_sym_PIPE] = ACTIONS(4576), + [anon_sym_CARET] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4576), + [anon_sym_EQ_EQ] = ACTIONS(4578), + [anon_sym_BANG_EQ] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4576), + [anon_sym_GT_EQ] = ACTIONS(4578), + [anon_sym_LT_EQ] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4576), + [anon_sym_LT_LT] = ACTIONS(4576), + [anon_sym_GT_GT] = ACTIONS(4576), + [anon_sym___extension__] = ACTIONS(4578), + [anon_sym___attribute__] = ACTIONS(4578), + [anon_sym_COLON_COLON] = ACTIONS(4578), + [anon_sym_LBRACE] = ACTIONS(4578), + [anon_sym_LBRACK] = ACTIONS(4578), + [anon_sym_EQ] = ACTIONS(4576), + [anon_sym_const] = ACTIONS(4576), + [anon_sym_constexpr] = ACTIONS(4578), + [anon_sym_volatile] = ACTIONS(4578), + [anon_sym_restrict] = ACTIONS(4578), + [anon_sym___restrict__] = ACTIONS(4578), + [anon_sym__Atomic] = ACTIONS(4578), + [anon_sym__Noreturn] = ACTIONS(4578), + [anon_sym_noreturn] = ACTIONS(4578), + [anon_sym_mutable] = ACTIONS(4578), + [anon_sym_constinit] = ACTIONS(4578), + [anon_sym_consteval] = ACTIONS(4578), + [anon_sym_COLON] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4578), + [anon_sym_STAR_EQ] = ACTIONS(4578), + [anon_sym_SLASH_EQ] = ACTIONS(4578), + [anon_sym_PERCENT_EQ] = ACTIONS(4578), + [anon_sym_PLUS_EQ] = ACTIONS(4578), + [anon_sym_DASH_EQ] = ACTIONS(4578), + [anon_sym_LT_LT_EQ] = ACTIONS(4578), + [anon_sym_GT_GT_EQ] = ACTIONS(4578), + [anon_sym_AMP_EQ] = ACTIONS(4578), + [anon_sym_CARET_EQ] = ACTIONS(4578), + [anon_sym_PIPE_EQ] = ACTIONS(4578), + [anon_sym_LT_EQ_GT] = ACTIONS(4578), + [anon_sym_or] = ACTIONS(4578), + [anon_sym_and] = ACTIONS(4578), + [anon_sym_bitor] = ACTIONS(4578), + [anon_sym_xor] = ACTIONS(4578), + [anon_sym_bitand] = ACTIONS(4578), + [anon_sym_not_eq] = ACTIONS(4578), + [anon_sym_DASH_DASH] = ACTIONS(4578), + [anon_sym_PLUS_PLUS] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4576), + [anon_sym_DOT_STAR] = ACTIONS(4578), + [anon_sym_DASH_GT] = ACTIONS(4576), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4578), + [anon_sym_decltype] = ACTIONS(4578), + [anon_sym_final] = ACTIONS(4578), + [anon_sym_override] = ACTIONS(4578), + [anon_sym_DASH_GT_STAR] = ACTIONS(4578), }, [1799] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4585), + [anon_sym_COMMA] = ACTIONS(4585), + [anon_sym_RPAREN] = ACTIONS(4585), + [anon_sym_LPAREN2] = ACTIONS(4585), + [anon_sym_DASH] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(4583), + [anon_sym_SLASH] = ACTIONS(4583), + [anon_sym_PERCENT] = ACTIONS(4583), + [anon_sym_PIPE_PIPE] = ACTIONS(4585), + [anon_sym_AMP_AMP] = ACTIONS(4585), + [anon_sym_PIPE] = ACTIONS(4583), + [anon_sym_CARET] = ACTIONS(4583), + [anon_sym_AMP] = ACTIONS(4583), + [anon_sym_EQ_EQ] = ACTIONS(4585), + [anon_sym_BANG_EQ] = ACTIONS(4585), + [anon_sym_GT] = ACTIONS(4583), + [anon_sym_GT_EQ] = ACTIONS(4585), + [anon_sym_LT_EQ] = ACTIONS(4583), + [anon_sym_LT] = ACTIONS(4583), + [anon_sym_LT_LT] = ACTIONS(4583), + [anon_sym_GT_GT] = ACTIONS(4583), + [anon_sym___extension__] = ACTIONS(4585), + [anon_sym___attribute__] = ACTIONS(4585), + [anon_sym_COLON_COLON] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4585), + [anon_sym_LBRACK] = ACTIONS(4585), + [anon_sym_EQ] = ACTIONS(4583), + [anon_sym_const] = ACTIONS(4583), + [anon_sym_constexpr] = ACTIONS(4585), + [anon_sym_volatile] = ACTIONS(4585), + [anon_sym_restrict] = ACTIONS(4585), + [anon_sym___restrict__] = ACTIONS(4585), + [anon_sym__Atomic] = ACTIONS(4585), + [anon_sym__Noreturn] = ACTIONS(4585), + [anon_sym_noreturn] = ACTIONS(4585), + [anon_sym_mutable] = ACTIONS(4585), + [anon_sym_constinit] = ACTIONS(4585), + [anon_sym_consteval] = ACTIONS(4585), + [anon_sym_COLON] = ACTIONS(4583), + [anon_sym_QMARK] = ACTIONS(4585), + [anon_sym_STAR_EQ] = ACTIONS(4585), + [anon_sym_SLASH_EQ] = ACTIONS(4585), + [anon_sym_PERCENT_EQ] = ACTIONS(4585), + [anon_sym_PLUS_EQ] = ACTIONS(4585), + [anon_sym_DASH_EQ] = ACTIONS(4585), + [anon_sym_LT_LT_EQ] = ACTIONS(4585), + [anon_sym_GT_GT_EQ] = ACTIONS(4585), + [anon_sym_AMP_EQ] = ACTIONS(4585), + [anon_sym_CARET_EQ] = ACTIONS(4585), + [anon_sym_PIPE_EQ] = ACTIONS(4585), + [anon_sym_LT_EQ_GT] = ACTIONS(4585), + [anon_sym_or] = ACTIONS(4585), + [anon_sym_and] = ACTIONS(4585), + [anon_sym_bitor] = ACTIONS(4585), + [anon_sym_xor] = ACTIONS(4585), + [anon_sym_bitand] = ACTIONS(4585), + [anon_sym_not_eq] = ACTIONS(4585), + [anon_sym_DASH_DASH] = ACTIONS(4585), + [anon_sym_PLUS_PLUS] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4583), + [anon_sym_DOT_STAR] = ACTIONS(4585), + [anon_sym_DASH_GT] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4585), + [anon_sym_decltype] = ACTIONS(4585), + [anon_sym_final] = ACTIONS(4585), + [anon_sym_override] = ACTIONS(4585), + [anon_sym_DASH_GT_STAR] = ACTIONS(4585), }, [1800] = { - [sym__expression] = STATE(4810), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_initializer_list] = STATE(7556), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(4467), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(4469), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token2] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [aux_sym_preproc_else_token1] = ACTIONS(2138), + [aux_sym_preproc_elif_token1] = ACTIONS(2138), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_friend] = ACTIONS(2138), + [anon_sym_public] = ACTIONS(2138), + [anon_sym_private] = ACTIONS(2138), + [anon_sym_protected] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), }, [1801] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_lambda_default_capture] = STATE(8483), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4471), - [anon_sym_EQ] = ACTIONS(4399), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4557), + [anon_sym_COMMA] = ACTIONS(4557), + [anon_sym_RPAREN] = ACTIONS(4557), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4555), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_PERCENT] = ACTIONS(4555), + [anon_sym_PIPE_PIPE] = ACTIONS(4557), + [anon_sym_AMP_AMP] = ACTIONS(4557), + [anon_sym_PIPE] = ACTIONS(4555), + [anon_sym_CARET] = ACTIONS(4555), + [anon_sym_AMP] = ACTIONS(4555), + [anon_sym_EQ_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_GT_EQ] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_LT_LT] = ACTIONS(4555), + [anon_sym_GT_GT] = ACTIONS(4555), + [anon_sym___extension__] = ACTIONS(4557), + [anon_sym___attribute__] = ACTIONS(4557), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_LBRACE] = ACTIONS(4557), + [anon_sym_LBRACK] = ACTIONS(4557), + [anon_sym_EQ] = ACTIONS(4555), + [anon_sym_const] = ACTIONS(4555), + [anon_sym_constexpr] = ACTIONS(4557), + [anon_sym_volatile] = ACTIONS(4557), + [anon_sym_restrict] = ACTIONS(4557), + [anon_sym___restrict__] = ACTIONS(4557), + [anon_sym__Atomic] = ACTIONS(4557), + [anon_sym__Noreturn] = ACTIONS(4557), + [anon_sym_noreturn] = ACTIONS(4557), + [anon_sym_mutable] = ACTIONS(4557), + [anon_sym_constinit] = ACTIONS(4557), + [anon_sym_consteval] = ACTIONS(4557), + [anon_sym_COLON] = ACTIONS(4555), + [anon_sym_QMARK] = ACTIONS(4557), + [anon_sym_STAR_EQ] = ACTIONS(4557), + [anon_sym_SLASH_EQ] = ACTIONS(4557), + [anon_sym_PERCENT_EQ] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(4557), + [anon_sym_DASH_EQ] = ACTIONS(4557), + [anon_sym_LT_LT_EQ] = ACTIONS(4557), + [anon_sym_GT_GT_EQ] = ACTIONS(4557), + [anon_sym_AMP_EQ] = ACTIONS(4557), + [anon_sym_CARET_EQ] = ACTIONS(4557), + [anon_sym_PIPE_EQ] = ACTIONS(4557), + [anon_sym_LT_EQ_GT] = ACTIONS(4557), + [anon_sym_or] = ACTIONS(4557), + [anon_sym_and] = ACTIONS(4557), + [anon_sym_bitor] = ACTIONS(4557), + [anon_sym_xor] = ACTIONS(4557), + [anon_sym_bitand] = ACTIONS(4557), + [anon_sym_not_eq] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DOT] = ACTIONS(4555), + [anon_sym_DOT_STAR] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4557), + [anon_sym_decltype] = ACTIONS(4557), + [anon_sym_final] = ACTIONS(4557), + [anon_sym_override] = ACTIONS(4557), + [anon_sym_DASH_GT_STAR] = ACTIONS(4557), }, [1802] = { - [sym__expression] = STATE(3852), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_initializer_list] = STATE(4225), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), + [sym_identifier] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token2] = ACTIONS(2134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), + [aux_sym_preproc_else_token1] = ACTIONS(2134), + [aux_sym_preproc_elif_token1] = ACTIONS(2134), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2134), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2134), + [sym_preproc_directive] = ACTIONS(2134), + [anon_sym_LPAREN2] = ACTIONS(2132), + [anon_sym_TILDE] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym___extension__] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym___attribute__] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2134), + [anon_sym___based] = ACTIONS(2134), + [anon_sym_signed] = ACTIONS(2134), + [anon_sym_unsigned] = ACTIONS(2134), + [anon_sym_long] = ACTIONS(2134), + [anon_sym_short] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_register] = ACTIONS(2134), + [anon_sym_inline] = ACTIONS(2134), + [anon_sym___inline] = ACTIONS(2134), + [anon_sym___inline__] = ACTIONS(2134), + [anon_sym___forceinline] = ACTIONS(2134), + [anon_sym_thread_local] = ACTIONS(2134), + [anon_sym___thread] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_constexpr] = ACTIONS(2134), + [anon_sym_volatile] = ACTIONS(2134), + [anon_sym_restrict] = ACTIONS(2134), + [anon_sym___restrict__] = ACTIONS(2134), + [anon_sym__Atomic] = ACTIONS(2134), + [anon_sym__Noreturn] = ACTIONS(2134), + [anon_sym_noreturn] = ACTIONS(2134), + [anon_sym_mutable] = ACTIONS(2134), + [anon_sym_constinit] = ACTIONS(2134), + [anon_sym_consteval] = ACTIONS(2134), + [sym_primitive_type] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_struct] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2134), + [anon_sym_decltype] = ACTIONS(2134), + [anon_sym_virtual] = ACTIONS(2134), + [anon_sym_alignas] = ACTIONS(2134), + [anon_sym_explicit] = ACTIONS(2134), + [anon_sym_typename] = ACTIONS(2134), + [anon_sym_template] = ACTIONS(2134), + [anon_sym_operator] = ACTIONS(2134), + [anon_sym_friend] = ACTIONS(2134), + [anon_sym_public] = ACTIONS(2134), + [anon_sym_private] = ACTIONS(2134), + [anon_sym_protected] = ACTIONS(2134), + [anon_sym_using] = ACTIONS(2134), + [anon_sym_static_assert] = ACTIONS(2134), + [anon_sym_catch] = ACTIONS(2134), }, [1803] = { - [sym__expression] = STATE(5352), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(9544), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4545), + [anon_sym_COMMA] = ACTIONS(4545), + [anon_sym_RPAREN] = ACTIONS(4545), + [anon_sym_LPAREN2] = ACTIONS(4545), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4543), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE] = ACTIONS(4543), + [anon_sym_CARET] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4543), + [anon_sym_EQ_EQ] = ACTIONS(4545), + [anon_sym_BANG_EQ] = ACTIONS(4545), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_GT_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ] = ACTIONS(4543), + [anon_sym_LT] = ACTIONS(4543), + [anon_sym_LT_LT] = ACTIONS(4543), + [anon_sym_GT_GT] = ACTIONS(4543), + [anon_sym___extension__] = ACTIONS(4545), + [anon_sym___attribute__] = ACTIONS(4545), + [anon_sym_COLON_COLON] = ACTIONS(4545), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_LBRACK] = ACTIONS(4545), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_const] = ACTIONS(4543), + [anon_sym_constexpr] = ACTIONS(4545), + [anon_sym_volatile] = ACTIONS(4545), + [anon_sym_restrict] = ACTIONS(4545), + [anon_sym___restrict__] = ACTIONS(4545), + [anon_sym__Atomic] = ACTIONS(4545), + [anon_sym__Noreturn] = ACTIONS(4545), + [anon_sym_noreturn] = ACTIONS(4545), + [anon_sym_mutable] = ACTIONS(4545), + [anon_sym_constinit] = ACTIONS(4545), + [anon_sym_consteval] = ACTIONS(4545), + [anon_sym_COLON] = ACTIONS(4543), + [anon_sym_QMARK] = ACTIONS(4545), + [anon_sym_STAR_EQ] = ACTIONS(4545), + [anon_sym_SLASH_EQ] = ACTIONS(4545), + [anon_sym_PERCENT_EQ] = ACTIONS(4545), + [anon_sym_PLUS_EQ] = ACTIONS(4545), + [anon_sym_DASH_EQ] = ACTIONS(4545), + [anon_sym_LT_LT_EQ] = ACTIONS(4545), + [anon_sym_GT_GT_EQ] = ACTIONS(4545), + [anon_sym_AMP_EQ] = ACTIONS(4545), + [anon_sym_CARET_EQ] = ACTIONS(4545), + [anon_sym_PIPE_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ_GT] = ACTIONS(4545), + [anon_sym_or] = ACTIONS(4545), + [anon_sym_and] = ACTIONS(4545), + [anon_sym_bitor] = ACTIONS(4545), + [anon_sym_xor] = ACTIONS(4545), + [anon_sym_bitand] = ACTIONS(4545), + [anon_sym_not_eq] = ACTIONS(4545), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_PLUS_PLUS] = ACTIONS(4545), + [anon_sym_DOT] = ACTIONS(4543), + [anon_sym_DOT_STAR] = ACTIONS(4545), + [anon_sym_DASH_GT] = ACTIONS(4543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4545), + [anon_sym_decltype] = ACTIONS(4545), + [anon_sym_final] = ACTIONS(4545), + [anon_sym_override] = ACTIONS(4545), + [anon_sym_DASH_GT_STAR] = ACTIONS(4545), }, [1804] = { - [sym__expression] = STATE(4248), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_initializer_list] = STATE(4448), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4589), + [anon_sym_RPAREN] = ACTIONS(4591), + [anon_sym_LPAREN2] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4591), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_CARET] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_EQ_EQ] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_GT_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4596), + [anon_sym_LT_LT] = ACTIONS(4596), + [anon_sym_GT_GT] = ACTIONS(4596), + [anon_sym___extension__] = ACTIONS(4594), + [anon_sym_COLON_COLON] = ACTIONS(4594), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4589), + [anon_sym_LBRACE] = ACTIONS(4594), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_const] = ACTIONS(4587), + [anon_sym_constexpr] = ACTIONS(4594), + [anon_sym_volatile] = ACTIONS(4594), + [anon_sym_restrict] = ACTIONS(4594), + [anon_sym___restrict__] = ACTIONS(4594), + [anon_sym__Atomic] = ACTIONS(4594), + [anon_sym__Noreturn] = ACTIONS(4594), + [anon_sym_noreturn] = ACTIONS(4594), + [anon_sym_mutable] = ACTIONS(4594), + [anon_sym_constinit] = ACTIONS(4594), + [anon_sym_consteval] = ACTIONS(4594), + [anon_sym_QMARK] = ACTIONS(4589), + [anon_sym_STAR_EQ] = ACTIONS(4589), + [anon_sym_SLASH_EQ] = ACTIONS(4589), + [anon_sym_PERCENT_EQ] = ACTIONS(4589), + [anon_sym_PLUS_EQ] = ACTIONS(4589), + [anon_sym_DASH_EQ] = ACTIONS(4589), + [anon_sym_LT_LT_EQ] = ACTIONS(4589), + [anon_sym_GT_GT_EQ] = ACTIONS(4589), + [anon_sym_AMP_EQ] = ACTIONS(4589), + [anon_sym_CARET_EQ] = ACTIONS(4589), + [anon_sym_PIPE_EQ] = ACTIONS(4589), + [anon_sym_and_eq] = ACTIONS(4589), + [anon_sym_or_eq] = ACTIONS(4589), + [anon_sym_xor_eq] = ACTIONS(4589), + [anon_sym_LT_EQ_GT] = ACTIONS(4589), + [anon_sym_or] = ACTIONS(4596), + [anon_sym_and] = ACTIONS(4596), + [anon_sym_bitor] = ACTIONS(4589), + [anon_sym_xor] = ACTIONS(4596), + [anon_sym_bitand] = ACTIONS(4589), + [anon_sym_not_eq] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_STAR] = ACTIONS(4589), + [anon_sym_DASH_GT] = ACTIONS(4596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4594), + [anon_sym_decltype] = ACTIONS(4594), + [anon_sym_DASH_GT_STAR] = ACTIONS(4589), }, [1805] = { - [sym__expression] = STATE(5331), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(9145), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_template_argument_list] = STATE(1908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4571), + [anon_sym_COMMA] = ACTIONS(4571), + [anon_sym_RPAREN] = ACTIONS(4561), + [anon_sym_LPAREN2] = ACTIONS(4561), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_PIPE_PIPE] = ACTIONS(4571), + [anon_sym_AMP_AMP] = ACTIONS(4561), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_EQ_EQ] = ACTIONS(4571), + [anon_sym_BANG_EQ] = ACTIONS(4571), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_GT_EQ] = ACTIONS(4571), + [anon_sym_LT_EQ] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4847), + [anon_sym_LT_LT] = ACTIONS(4566), + [anon_sym_GT_GT] = ACTIONS(4566), + [anon_sym___extension__] = ACTIONS(4564), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4564), + [anon_sym_LBRACK] = ACTIONS(4561), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_const] = ACTIONS(4559), + [anon_sym_constexpr] = ACTIONS(4564), + [anon_sym_volatile] = ACTIONS(4564), + [anon_sym_restrict] = ACTIONS(4564), + [anon_sym___restrict__] = ACTIONS(4564), + [anon_sym__Atomic] = ACTIONS(4564), + [anon_sym__Noreturn] = ACTIONS(4564), + [anon_sym_noreturn] = ACTIONS(4564), + [anon_sym_mutable] = ACTIONS(4564), + [anon_sym_constinit] = ACTIONS(4564), + [anon_sym_consteval] = ACTIONS(4564), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_STAR_EQ] = ACTIONS(4571), + [anon_sym_SLASH_EQ] = ACTIONS(4571), + [anon_sym_PERCENT_EQ] = ACTIONS(4571), + [anon_sym_PLUS_EQ] = ACTIONS(4571), + [anon_sym_DASH_EQ] = ACTIONS(4571), + [anon_sym_LT_LT_EQ] = ACTIONS(4571), + [anon_sym_GT_GT_EQ] = ACTIONS(4571), + [anon_sym_AMP_EQ] = ACTIONS(4571), + [anon_sym_CARET_EQ] = ACTIONS(4571), + [anon_sym_PIPE_EQ] = ACTIONS(4571), + [anon_sym_and_eq] = ACTIONS(4571), + [anon_sym_or_eq] = ACTIONS(4571), + [anon_sym_xor_eq] = ACTIONS(4571), + [anon_sym_LT_EQ_GT] = ACTIONS(4571), + [anon_sym_or] = ACTIONS(4566), + [anon_sym_and] = ACTIONS(4566), + [anon_sym_bitor] = ACTIONS(4571), + [anon_sym_xor] = ACTIONS(4566), + [anon_sym_bitand] = ACTIONS(4571), + [anon_sym_not_eq] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DOT] = ACTIONS(4566), + [anon_sym_DOT_STAR] = ACTIONS(4571), + [anon_sym_DASH_GT] = ACTIONS(4566), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4564), + [anon_sym_decltype] = ACTIONS(4564), + [anon_sym_DASH_GT_STAR] = ACTIONS(4571), }, [1806] = { - [sym__expression] = STATE(5226), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9538), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4549), + [anon_sym_COMMA] = ACTIONS(4549), + [anon_sym_RPAREN] = ACTIONS(4549), + [anon_sym_LPAREN2] = ACTIONS(4549), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_STAR] = ACTIONS(4547), + [anon_sym_SLASH] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4547), + [anon_sym_PIPE_PIPE] = ACTIONS(4549), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4547), + [anon_sym_CARET] = ACTIONS(4547), + [anon_sym_AMP] = ACTIONS(4547), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_GT] = ACTIONS(4547), + [anon_sym_GT_EQ] = ACTIONS(4549), + [anon_sym_LT_EQ] = ACTIONS(4547), + [anon_sym_LT] = ACTIONS(4547), + [anon_sym_LT_LT] = ACTIONS(4547), + [anon_sym_GT_GT] = ACTIONS(4547), + [anon_sym___extension__] = ACTIONS(4549), + [anon_sym___attribute__] = ACTIONS(4549), + [anon_sym_COLON_COLON] = ACTIONS(4549), + [anon_sym_LBRACE] = ACTIONS(4549), + [anon_sym_LBRACK] = ACTIONS(4549), + [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_const] = ACTIONS(4547), + [anon_sym_constexpr] = ACTIONS(4549), + [anon_sym_volatile] = ACTIONS(4549), + [anon_sym_restrict] = ACTIONS(4549), + [anon_sym___restrict__] = ACTIONS(4549), + [anon_sym__Atomic] = ACTIONS(4549), + [anon_sym__Noreturn] = ACTIONS(4549), + [anon_sym_noreturn] = ACTIONS(4549), + [anon_sym_mutable] = ACTIONS(4549), + [anon_sym_constinit] = ACTIONS(4549), + [anon_sym_consteval] = ACTIONS(4549), + [anon_sym_COLON] = ACTIONS(4547), + [anon_sym_QMARK] = ACTIONS(4549), + [anon_sym_STAR_EQ] = ACTIONS(4549), + [anon_sym_SLASH_EQ] = ACTIONS(4549), + [anon_sym_PERCENT_EQ] = ACTIONS(4549), + [anon_sym_PLUS_EQ] = ACTIONS(4549), + [anon_sym_DASH_EQ] = ACTIONS(4549), + [anon_sym_LT_LT_EQ] = ACTIONS(4549), + [anon_sym_GT_GT_EQ] = ACTIONS(4549), + [anon_sym_AMP_EQ] = ACTIONS(4549), + [anon_sym_CARET_EQ] = ACTIONS(4549), + [anon_sym_PIPE_EQ] = ACTIONS(4549), + [anon_sym_LT_EQ_GT] = ACTIONS(4549), + [anon_sym_or] = ACTIONS(4549), + [anon_sym_and] = ACTIONS(4549), + [anon_sym_bitor] = ACTIONS(4549), + [anon_sym_xor] = ACTIONS(4549), + [anon_sym_bitand] = ACTIONS(4549), + [anon_sym_not_eq] = ACTIONS(4549), + [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4549), + [anon_sym_DOT] = ACTIONS(4547), + [anon_sym_DOT_STAR] = ACTIONS(4549), + [anon_sym_DASH_GT] = ACTIONS(4547), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4549), + [anon_sym_decltype] = ACTIONS(4549), + [anon_sym_final] = ACTIONS(4549), + [anon_sym_override] = ACTIONS(4549), + [anon_sym_DASH_GT_STAR] = ACTIONS(4549), }, [1807] = { - [sym__expression] = STATE(5070), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9137), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4475), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_catch_clause] = STATE(1797), + [aux_sym_constructor_try_statement_repeat1] = STATE(1797), + [sym_identifier] = ACTIONS(2212), + [aux_sym_preproc_def_token1] = ACTIONS(2212), + [aux_sym_preproc_if_token1] = ACTIONS(2212), + [aux_sym_preproc_if_token2] = ACTIONS(2212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2212), + [aux_sym_preproc_else_token1] = ACTIONS(2212), + [aux_sym_preproc_elif_token1] = ACTIONS(2212), + [sym_preproc_directive] = ACTIONS(2212), + [anon_sym_LPAREN2] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2212), + [anon_sym___extension__] = ACTIONS(2212), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_extern] = ACTIONS(2212), + [anon_sym___attribute__] = ACTIONS(2212), + [anon_sym_COLON_COLON] = ACTIONS(2214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [anon_sym___declspec] = ACTIONS(2212), + [anon_sym___based] = ACTIONS(2212), + [anon_sym_signed] = ACTIONS(2212), + [anon_sym_unsigned] = ACTIONS(2212), + [anon_sym_long] = ACTIONS(2212), + [anon_sym_short] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_register] = ACTIONS(2212), + [anon_sym_inline] = ACTIONS(2212), + [anon_sym___inline] = ACTIONS(2212), + [anon_sym___inline__] = ACTIONS(2212), + [anon_sym___forceinline] = ACTIONS(2212), + [anon_sym_thread_local] = ACTIONS(2212), + [anon_sym___thread] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_constexpr] = ACTIONS(2212), + [anon_sym_volatile] = ACTIONS(2212), + [anon_sym_restrict] = ACTIONS(2212), + [anon_sym___restrict__] = ACTIONS(2212), + [anon_sym__Atomic] = ACTIONS(2212), + [anon_sym__Noreturn] = ACTIONS(2212), + [anon_sym_noreturn] = ACTIONS(2212), + [anon_sym_mutable] = ACTIONS(2212), + [anon_sym_constinit] = ACTIONS(2212), + [anon_sym_consteval] = ACTIONS(2212), + [sym_primitive_type] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_struct] = ACTIONS(2212), + [anon_sym_union] = ACTIONS(2212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2212), + [anon_sym_decltype] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(2212), + [anon_sym_alignas] = ACTIONS(2212), + [anon_sym_explicit] = ACTIONS(2212), + [anon_sym_typename] = ACTIONS(2212), + [anon_sym_template] = ACTIONS(2212), + [anon_sym_operator] = ACTIONS(2212), + [anon_sym_friend] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_static_assert] = ACTIONS(2212), + [anon_sym_catch] = ACTIONS(4850), }, [1808] = { - [sym__expression] = STATE(4777), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(4789), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_catch_clause] = STATE(1797), + [aux_sym_constructor_try_statement_repeat1] = STATE(1797), + [sym_identifier] = ACTIONS(2249), + [aux_sym_preproc_def_token1] = ACTIONS(2249), + [aux_sym_preproc_if_token1] = ACTIONS(2249), + [aux_sym_preproc_if_token2] = ACTIONS(2249), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2249), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2249), + [aux_sym_preproc_else_token1] = ACTIONS(2249), + [aux_sym_preproc_elif_token1] = ACTIONS(2249), + [sym_preproc_directive] = ACTIONS(2249), + [anon_sym_LPAREN2] = ACTIONS(2251), + [anon_sym_TILDE] = ACTIONS(2251), + [anon_sym_STAR] = ACTIONS(2251), + [anon_sym_AMP_AMP] = ACTIONS(2251), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym___extension__] = ACTIONS(2249), + [anon_sym_typedef] = ACTIONS(2249), + [anon_sym_extern] = ACTIONS(2249), + [anon_sym___attribute__] = ACTIONS(2249), + [anon_sym_COLON_COLON] = ACTIONS(2251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2251), + [anon_sym___declspec] = ACTIONS(2249), + [anon_sym___based] = ACTIONS(2249), + [anon_sym_signed] = ACTIONS(2249), + [anon_sym_unsigned] = ACTIONS(2249), + [anon_sym_long] = ACTIONS(2249), + [anon_sym_short] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_register] = ACTIONS(2249), + [anon_sym_inline] = ACTIONS(2249), + [anon_sym___inline] = ACTIONS(2249), + [anon_sym___inline__] = ACTIONS(2249), + [anon_sym___forceinline] = ACTIONS(2249), + [anon_sym_thread_local] = ACTIONS(2249), + [anon_sym___thread] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_constexpr] = ACTIONS(2249), + [anon_sym_volatile] = ACTIONS(2249), + [anon_sym_restrict] = ACTIONS(2249), + [anon_sym___restrict__] = ACTIONS(2249), + [anon_sym__Atomic] = ACTIONS(2249), + [anon_sym__Noreturn] = ACTIONS(2249), + [anon_sym_noreturn] = ACTIONS(2249), + [anon_sym_mutable] = ACTIONS(2249), + [anon_sym_constinit] = ACTIONS(2249), + [anon_sym_consteval] = ACTIONS(2249), + [sym_primitive_type] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2249), + [anon_sym_decltype] = ACTIONS(2249), + [anon_sym_virtual] = ACTIONS(2249), + [anon_sym_alignas] = ACTIONS(2249), + [anon_sym_explicit] = ACTIONS(2249), + [anon_sym_typename] = ACTIONS(2249), + [anon_sym_template] = ACTIONS(2249), + [anon_sym_operator] = ACTIONS(2249), + [anon_sym_friend] = ACTIONS(2249), + [anon_sym_public] = ACTIONS(2249), + [anon_sym_private] = ACTIONS(2249), + [anon_sym_protected] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [anon_sym_static_assert] = ACTIONS(2249), + [anon_sym_catch] = ACTIONS(4850), }, [1809] = { - [sym__expression] = STATE(5182), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9428), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(2752), + [aux_sym_preproc_def_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token2] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2752), + [aux_sym_preproc_else_token1] = ACTIONS(2752), + [aux_sym_preproc_elif_token1] = ACTIONS(2752), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2752), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2752), + [sym_preproc_directive] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym___extension__] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym___attribute__] = ACTIONS(2752), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2754), + [anon_sym___declspec] = ACTIONS(2752), + [anon_sym___based] = ACTIONS(2752), + [anon_sym_signed] = ACTIONS(2752), + [anon_sym_unsigned] = ACTIONS(2752), + [anon_sym_long] = ACTIONS(2752), + [anon_sym_short] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_register] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym___inline] = ACTIONS(2752), + [anon_sym___inline__] = ACTIONS(2752), + [anon_sym___forceinline] = ACTIONS(2752), + [anon_sym_thread_local] = ACTIONS(2752), + [anon_sym___thread] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_constexpr] = ACTIONS(2752), + [anon_sym_volatile] = ACTIONS(2752), + [anon_sym_restrict] = ACTIONS(2752), + [anon_sym___restrict__] = ACTIONS(2752), + [anon_sym__Atomic] = ACTIONS(2752), + [anon_sym__Noreturn] = ACTIONS(2752), + [anon_sym_noreturn] = ACTIONS(2752), + [anon_sym_mutable] = ACTIONS(2752), + [anon_sym_constinit] = ACTIONS(2752), + [anon_sym_consteval] = ACTIONS(2752), + [sym_primitive_type] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_class] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2752), + [anon_sym_decltype] = ACTIONS(2752), + [anon_sym_virtual] = ACTIONS(2752), + [anon_sym_alignas] = ACTIONS(2752), + [anon_sym_explicit] = ACTIONS(2752), + [anon_sym_typename] = ACTIONS(2752), + [anon_sym_template] = ACTIONS(2752), + [anon_sym_operator] = ACTIONS(2752), + [anon_sym_friend] = ACTIONS(2752), + [anon_sym_public] = ACTIONS(2752), + [anon_sym_private] = ACTIONS(2752), + [anon_sym_protected] = ACTIONS(2752), + [anon_sym_using] = ACTIONS(2752), + [anon_sym_static_assert] = ACTIONS(2752), + [anon_sym_catch] = ACTIONS(2752), }, [1810] = { - [sym__expression] = STATE(5066), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9161), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4479), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_RPAREN] = ACTIONS(4553), + [anon_sym_LPAREN2] = ACTIONS(4553), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_PIPE_PIPE] = ACTIONS(4553), + [anon_sym_AMP_AMP] = ACTIONS(4553), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_LT_LT] = ACTIONS(4551), + [anon_sym_GT_GT] = ACTIONS(4551), + [anon_sym___extension__] = ACTIONS(4553), + [anon_sym___attribute__] = ACTIONS(4553), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_const] = ACTIONS(4551), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_QMARK] = ACTIONS(4553), + [anon_sym_STAR_EQ] = ACTIONS(4553), + [anon_sym_SLASH_EQ] = ACTIONS(4553), + [anon_sym_PERCENT_EQ] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(4553), + [anon_sym_DASH_EQ] = ACTIONS(4553), + [anon_sym_LT_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_GT_EQ] = ACTIONS(4553), + [anon_sym_AMP_EQ] = ACTIONS(4553), + [anon_sym_CARET_EQ] = ACTIONS(4553), + [anon_sym_PIPE_EQ] = ACTIONS(4553), + [anon_sym_LT_EQ_GT] = ACTIONS(4553), + [anon_sym_or] = ACTIONS(4553), + [anon_sym_and] = ACTIONS(4553), + [anon_sym_bitor] = ACTIONS(4553), + [anon_sym_xor] = ACTIONS(4553), + [anon_sym_bitand] = ACTIONS(4553), + [anon_sym_not_eq] = ACTIONS(4553), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_PLUS_PLUS] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4551), + [anon_sym_DOT_STAR] = ACTIONS(4553), + [anon_sym_DASH_GT] = ACTIONS(4551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4553), + [anon_sym_decltype] = ACTIONS(4553), + [anon_sym_final] = ACTIONS(4553), + [anon_sym_override] = ACTIONS(4553), + [anon_sym_DASH_GT_STAR] = ACTIONS(4553), }, [1811] = { - [sym__expression] = STATE(5158), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9172), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4481), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4541), + [anon_sym_COMMA] = ACTIONS(4541), + [anon_sym_RPAREN] = ACTIONS(4541), + [anon_sym_LPAREN2] = ACTIONS(4541), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_STAR] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4539), + [anon_sym_PERCENT] = ACTIONS(4539), + [anon_sym_PIPE_PIPE] = ACTIONS(4541), + [anon_sym_AMP_AMP] = ACTIONS(4541), + [anon_sym_PIPE] = ACTIONS(4539), + [anon_sym_CARET] = ACTIONS(4539), + [anon_sym_AMP] = ACTIONS(4539), + [anon_sym_EQ_EQ] = ACTIONS(4541), + [anon_sym_BANG_EQ] = ACTIONS(4541), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_GT_EQ] = ACTIONS(4541), + [anon_sym_LT_EQ] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(4539), + [anon_sym_LT_LT] = ACTIONS(4539), + [anon_sym_GT_GT] = ACTIONS(4539), + [anon_sym___extension__] = ACTIONS(4541), + [anon_sym___attribute__] = ACTIONS(4541), + [anon_sym_COLON_COLON] = ACTIONS(4541), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_LBRACK] = ACTIONS(4541), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_const] = ACTIONS(4539), + [anon_sym_constexpr] = ACTIONS(4541), + [anon_sym_volatile] = ACTIONS(4541), + [anon_sym_restrict] = ACTIONS(4541), + [anon_sym___restrict__] = ACTIONS(4541), + [anon_sym__Atomic] = ACTIONS(4541), + [anon_sym__Noreturn] = ACTIONS(4541), + [anon_sym_noreturn] = ACTIONS(4541), + [anon_sym_mutable] = ACTIONS(4541), + [anon_sym_constinit] = ACTIONS(4541), + [anon_sym_consteval] = ACTIONS(4541), + [anon_sym_COLON] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4541), + [anon_sym_SLASH_EQ] = ACTIONS(4541), + [anon_sym_PERCENT_EQ] = ACTIONS(4541), + [anon_sym_PLUS_EQ] = ACTIONS(4541), + [anon_sym_DASH_EQ] = ACTIONS(4541), + [anon_sym_LT_LT_EQ] = ACTIONS(4541), + [anon_sym_GT_GT_EQ] = ACTIONS(4541), + [anon_sym_AMP_EQ] = ACTIONS(4541), + [anon_sym_CARET_EQ] = ACTIONS(4541), + [anon_sym_PIPE_EQ] = ACTIONS(4541), + [anon_sym_LT_EQ_GT] = ACTIONS(4541), + [anon_sym_or] = ACTIONS(4541), + [anon_sym_and] = ACTIONS(4541), + [anon_sym_bitor] = ACTIONS(4541), + [anon_sym_xor] = ACTIONS(4541), + [anon_sym_bitand] = ACTIONS(4541), + [anon_sym_not_eq] = ACTIONS(4541), + [anon_sym_DASH_DASH] = ACTIONS(4541), + [anon_sym_PLUS_PLUS] = ACTIONS(4541), + [anon_sym_DOT] = ACTIONS(4539), + [anon_sym_DOT_STAR] = ACTIONS(4541), + [anon_sym_DASH_GT] = ACTIONS(4539), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4541), + [anon_sym_decltype] = ACTIONS(4541), + [anon_sym_final] = ACTIONS(4541), + [anon_sym_override] = ACTIONS(4541), + [anon_sym_DASH_GT_STAR] = ACTIONS(4541), }, [1812] = { - [sym__expression] = STATE(5176), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9638), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4483), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_catch_clause] = STATE(1797), + [aux_sym_constructor_try_statement_repeat1] = STATE(1797), + [sym_identifier] = ACTIONS(2255), + [aux_sym_preproc_def_token1] = ACTIONS(2255), + [aux_sym_preproc_if_token1] = ACTIONS(2255), + [aux_sym_preproc_if_token2] = ACTIONS(2255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2255), + [aux_sym_preproc_else_token1] = ACTIONS(2255), + [aux_sym_preproc_elif_token1] = ACTIONS(2255), + [sym_preproc_directive] = ACTIONS(2255), + [anon_sym_LPAREN2] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_AMP_AMP] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym___extension__] = ACTIONS(2255), + [anon_sym_typedef] = ACTIONS(2255), + [anon_sym_extern] = ACTIONS(2255), + [anon_sym___attribute__] = ACTIONS(2255), + [anon_sym_COLON_COLON] = ACTIONS(2257), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2257), + [anon_sym___declspec] = ACTIONS(2255), + [anon_sym___based] = ACTIONS(2255), + [anon_sym_signed] = ACTIONS(2255), + [anon_sym_unsigned] = ACTIONS(2255), + [anon_sym_long] = ACTIONS(2255), + [anon_sym_short] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_register] = ACTIONS(2255), + [anon_sym_inline] = ACTIONS(2255), + [anon_sym___inline] = ACTIONS(2255), + [anon_sym___inline__] = ACTIONS(2255), + [anon_sym___forceinline] = ACTIONS(2255), + [anon_sym_thread_local] = ACTIONS(2255), + [anon_sym___thread] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_constexpr] = ACTIONS(2255), + [anon_sym_volatile] = ACTIONS(2255), + [anon_sym_restrict] = ACTIONS(2255), + [anon_sym___restrict__] = ACTIONS(2255), + [anon_sym__Atomic] = ACTIONS(2255), + [anon_sym__Noreturn] = ACTIONS(2255), + [anon_sym_noreturn] = ACTIONS(2255), + [anon_sym_mutable] = ACTIONS(2255), + [anon_sym_constinit] = ACTIONS(2255), + [anon_sym_consteval] = ACTIONS(2255), + [sym_primitive_type] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [anon_sym_class] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(2255), + [anon_sym_union] = ACTIONS(2255), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2255), + [anon_sym_decltype] = ACTIONS(2255), + [anon_sym_virtual] = ACTIONS(2255), + [anon_sym_alignas] = ACTIONS(2255), + [anon_sym_explicit] = ACTIONS(2255), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(2255), + [anon_sym_operator] = ACTIONS(2255), + [anon_sym_friend] = ACTIONS(2255), + [anon_sym_public] = ACTIONS(2255), + [anon_sym_private] = ACTIONS(2255), + [anon_sym_protected] = ACTIONS(2255), + [anon_sym_using] = ACTIONS(2255), + [anon_sym_static_assert] = ACTIONS(2255), + [anon_sym_catch] = ACTIONS(4850), }, [1813] = { - [sym__expression] = STATE(5071), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8998), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(4852), + [aux_sym_preproc_def_token1] = ACTIONS(4852), + [aux_sym_preproc_if_token1] = ACTIONS(4852), + [aux_sym_preproc_if_token2] = ACTIONS(4852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4852), + [aux_sym_preproc_else_token1] = ACTIONS(4852), + [aux_sym_preproc_elif_token1] = ACTIONS(4852), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4852), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4852), + [sym_preproc_directive] = ACTIONS(4852), + [anon_sym_LPAREN2] = ACTIONS(4854), + [anon_sym_TILDE] = ACTIONS(4854), + [anon_sym_STAR] = ACTIONS(4854), + [anon_sym_AMP_AMP] = ACTIONS(4854), + [anon_sym_AMP] = ACTIONS(4852), + [anon_sym___extension__] = ACTIONS(4852), + [anon_sym_typedef] = ACTIONS(4852), + [anon_sym_extern] = ACTIONS(4852), + [anon_sym___attribute__] = ACTIONS(4852), + [anon_sym_COLON_COLON] = ACTIONS(4854), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4854), + [anon_sym___declspec] = ACTIONS(4852), + [anon_sym___based] = ACTIONS(4852), + [anon_sym_signed] = ACTIONS(4852), + [anon_sym_unsigned] = ACTIONS(4852), + [anon_sym_long] = ACTIONS(4852), + [anon_sym_short] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_static] = ACTIONS(4852), + [anon_sym_register] = ACTIONS(4852), + [anon_sym_inline] = ACTIONS(4852), + [anon_sym___inline] = ACTIONS(4852), + [anon_sym___inline__] = ACTIONS(4852), + [anon_sym___forceinline] = ACTIONS(4852), + [anon_sym_thread_local] = ACTIONS(4852), + [anon_sym___thread] = ACTIONS(4852), + [anon_sym_const] = ACTIONS(4852), + [anon_sym_constexpr] = ACTIONS(4852), + [anon_sym_volatile] = ACTIONS(4852), + [anon_sym_restrict] = ACTIONS(4852), + [anon_sym___restrict__] = ACTIONS(4852), + [anon_sym__Atomic] = ACTIONS(4852), + [anon_sym__Noreturn] = ACTIONS(4852), + [anon_sym_noreturn] = ACTIONS(4852), + [anon_sym_mutable] = ACTIONS(4852), + [anon_sym_constinit] = ACTIONS(4852), + [anon_sym_consteval] = ACTIONS(4852), + [sym_primitive_type] = ACTIONS(4852), + [anon_sym_enum] = ACTIONS(4852), + [anon_sym_class] = ACTIONS(4852), + [anon_sym_struct] = ACTIONS(4852), + [anon_sym_union] = ACTIONS(4852), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(4852), + [anon_sym_decltype] = ACTIONS(4852), + [anon_sym_virtual] = ACTIONS(4852), + [anon_sym_alignas] = ACTIONS(4852), + [anon_sym_explicit] = ACTIONS(4852), + [anon_sym_typename] = ACTIONS(4852), + [anon_sym_template] = ACTIONS(4852), + [anon_sym_operator] = ACTIONS(4852), + [anon_sym_friend] = ACTIONS(4852), + [anon_sym_public] = ACTIONS(4852), + [anon_sym_private] = ACTIONS(4852), + [anon_sym_protected] = ACTIONS(4852), + [anon_sym_using] = ACTIONS(4852), + [anon_sym_static_assert] = ACTIONS(4852), }, [1814] = { - [sym__expression] = STATE(5029), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_initializer_list] = STATE(4832), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(2804), + [aux_sym_preproc_def_token1] = ACTIONS(2804), + [aux_sym_preproc_if_token1] = ACTIONS(2804), + [aux_sym_preproc_if_token2] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2804), + [aux_sym_preproc_else_token1] = ACTIONS(2804), + [aux_sym_preproc_elif_token1] = ACTIONS(2804), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2804), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2804), + [sym_preproc_directive] = ACTIONS(2804), + [anon_sym_LPAREN2] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2806), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_AMP_AMP] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2804), + [anon_sym___extension__] = ACTIONS(2804), + [anon_sym_typedef] = ACTIONS(2804), + [anon_sym_extern] = ACTIONS(2804), + [anon_sym___attribute__] = ACTIONS(2804), + [anon_sym_COLON_COLON] = ACTIONS(2806), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2806), + [anon_sym___declspec] = ACTIONS(2804), + [anon_sym___based] = ACTIONS(2804), + [anon_sym_signed] = ACTIONS(2804), + [anon_sym_unsigned] = ACTIONS(2804), + [anon_sym_long] = ACTIONS(2804), + [anon_sym_short] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2804), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_register] = ACTIONS(2804), + [anon_sym_inline] = ACTIONS(2804), + [anon_sym___inline] = ACTIONS(2804), + [anon_sym___inline__] = ACTIONS(2804), + [anon_sym___forceinline] = ACTIONS(2804), + [anon_sym_thread_local] = ACTIONS(2804), + [anon_sym___thread] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_constexpr] = ACTIONS(2804), + [anon_sym_volatile] = ACTIONS(2804), + [anon_sym_restrict] = ACTIONS(2804), + [anon_sym___restrict__] = ACTIONS(2804), + [anon_sym__Atomic] = ACTIONS(2804), + [anon_sym__Noreturn] = ACTIONS(2804), + [anon_sym_noreturn] = ACTIONS(2804), + [anon_sym_mutable] = ACTIONS(2804), + [anon_sym_constinit] = ACTIONS(2804), + [anon_sym_consteval] = ACTIONS(2804), + [sym_primitive_type] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [anon_sym_class] = ACTIONS(2804), + [anon_sym_struct] = ACTIONS(2804), + [anon_sym_union] = ACTIONS(2804), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2804), + [anon_sym_decltype] = ACTIONS(2804), + [anon_sym_virtual] = ACTIONS(2804), + [anon_sym_alignas] = ACTIONS(2804), + [anon_sym_explicit] = ACTIONS(2804), + [anon_sym_typename] = ACTIONS(2804), + [anon_sym_template] = ACTIONS(2804), + [anon_sym_operator] = ACTIONS(2804), + [anon_sym_friend] = ACTIONS(2804), + [anon_sym_public] = ACTIONS(2804), + [anon_sym_private] = ACTIONS(2804), + [anon_sym_protected] = ACTIONS(2804), + [anon_sym_using] = ACTIONS(2804), + [anon_sym_static_assert] = ACTIONS(2804), }, [1815] = { - [sym__expression] = STATE(5372), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8931), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(4856), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_RPAREN] = ACTIONS(4858), + [anon_sym_LPAREN2] = ACTIONS(4858), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4858), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_CARET] = ACTIONS(4858), + [anon_sym_AMP] = ACTIONS(4856), + [anon_sym_EQ_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4858), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_LT_LT] = ACTIONS(4858), + [anon_sym_GT_GT] = ACTIONS(4858), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym___extension__] = ACTIONS(4856), + [anon_sym___attribute__] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym___based] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_signed] = ACTIONS(4856), + [anon_sym_unsigned] = ACTIONS(4856), + [anon_sym_long] = ACTIONS(4856), + [anon_sym_short] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_RBRACK] = ACTIONS(4858), + [anon_sym_const] = ACTIONS(4856), + [anon_sym_constexpr] = ACTIONS(4856), + [anon_sym_volatile] = ACTIONS(4856), + [anon_sym_restrict] = ACTIONS(4856), + [anon_sym___restrict__] = ACTIONS(4856), + [anon_sym__Atomic] = ACTIONS(4856), + [anon_sym__Noreturn] = ACTIONS(4856), + [anon_sym_noreturn] = ACTIONS(4856), + [anon_sym_mutable] = ACTIONS(4856), + [anon_sym_constinit] = ACTIONS(4856), + [anon_sym_consteval] = ACTIONS(4856), + [sym_primitive_type] = ACTIONS(4856), + [anon_sym_COLON] = ACTIONS(4856), + [anon_sym_QMARK] = ACTIONS(4858), + [anon_sym_LT_EQ_GT] = ACTIONS(4858), + [anon_sym_or] = ACTIONS(4856), + [anon_sym_and] = ACTIONS(4856), + [anon_sym_bitor] = ACTIONS(4856), + [anon_sym_xor] = ACTIONS(4856), + [anon_sym_bitand] = ACTIONS(4856), + [anon_sym_not_eq] = ACTIONS(4856), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_DOT_STAR] = ACTIONS(4858), + [anon_sym_DASH_GT] = ACTIONS(4858), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(4856), + [anon_sym_decltype] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_requires] = ACTIONS(4856), }, [1816] = { - [sym__expression] = STATE(5101), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8983), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3198), + [aux_sym_preproc_def_token1] = ACTIONS(3198), + [aux_sym_preproc_if_token1] = ACTIONS(3198), + [aux_sym_preproc_if_token2] = ACTIONS(3198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3198), + [aux_sym_preproc_else_token1] = ACTIONS(3198), + [aux_sym_preproc_elif_token1] = ACTIONS(3198), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3198), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3198), + [sym_preproc_directive] = ACTIONS(3198), + [anon_sym_LPAREN2] = ACTIONS(3200), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym___extension__] = ACTIONS(3198), + [anon_sym_typedef] = ACTIONS(3198), + [anon_sym_extern] = ACTIONS(3198), + [anon_sym___attribute__] = ACTIONS(3198), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3200), + [anon_sym___declspec] = ACTIONS(3198), + [anon_sym___based] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3198), + [anon_sym_unsigned] = ACTIONS(3198), + [anon_sym_long] = ACTIONS(3198), + [anon_sym_short] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_register] = ACTIONS(3198), + [anon_sym_inline] = ACTIONS(3198), + [anon_sym___inline] = ACTIONS(3198), + [anon_sym___inline__] = ACTIONS(3198), + [anon_sym___forceinline] = ACTIONS(3198), + [anon_sym_thread_local] = ACTIONS(3198), + [anon_sym___thread] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_constexpr] = ACTIONS(3198), + [anon_sym_volatile] = ACTIONS(3198), + [anon_sym_restrict] = ACTIONS(3198), + [anon_sym___restrict__] = ACTIONS(3198), + [anon_sym__Atomic] = ACTIONS(3198), + [anon_sym__Noreturn] = ACTIONS(3198), + [anon_sym_noreturn] = ACTIONS(3198), + [anon_sym_mutable] = ACTIONS(3198), + [anon_sym_constinit] = ACTIONS(3198), + [anon_sym_consteval] = ACTIONS(3198), + [sym_primitive_type] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3198), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3198), + [anon_sym_decltype] = ACTIONS(3198), + [anon_sym_virtual] = ACTIONS(3198), + [anon_sym_alignas] = ACTIONS(3198), + [anon_sym_explicit] = ACTIONS(3198), + [anon_sym_typename] = ACTIONS(3198), + [anon_sym_template] = ACTIONS(3198), + [anon_sym_operator] = ACTIONS(3198), + [anon_sym_friend] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_static_assert] = ACTIONS(3198), }, [1817] = { - [sym__expression] = STATE(5068), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9679), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4489), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(3791), + [sym_raw_string_literal] = STATE(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4061), + [anon_sym_LBRACK] = ACTIONS(4865), + [anon_sym_EQ] = ACTIONS(4091), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4095), + [anon_sym_or_eq] = ACTIONS(4095), + [anon_sym_xor_eq] = ACTIONS(4095), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, [1818] = { - [sym__expression] = STATE(5220), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9128), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4491), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(1780), + [sym_template_argument_list] = STATE(2616), + [sym_raw_string_literal] = STATE(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4867), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4615), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4061), + [anon_sym_LBRACK] = ACTIONS(4873), + [anon_sym_EQ] = ACTIONS(4069), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4061), + [anon_sym_SLASH_EQ] = ACTIONS(4061), + [anon_sym_PERCENT_EQ] = ACTIONS(4061), + [anon_sym_PLUS_EQ] = ACTIONS(4061), + [anon_sym_DASH_EQ] = ACTIONS(4061), + [anon_sym_LT_LT_EQ] = ACTIONS(4061), + [anon_sym_GT_GT_EQ] = ACTIONS(4061), + [anon_sym_AMP_EQ] = ACTIONS(4061), + [anon_sym_CARET_EQ] = ACTIONS(4061), + [anon_sym_PIPE_EQ] = ACTIONS(4061), + [anon_sym_and_eq] = ACTIONS(4061), + [anon_sym_or_eq] = ACTIONS(4061), + [anon_sym_xor_eq] = ACTIONS(4061), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4816), + [anon_sym_u_DQUOTE] = ACTIONS(4816), + [anon_sym_U_DQUOTE] = ACTIONS(4816), + [anon_sym_u8_DQUOTE] = ACTIONS(4816), + [anon_sym_DQUOTE] = ACTIONS(4816), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4818), + [anon_sym_LR_DQUOTE] = ACTIONS(4818), + [anon_sym_uR_DQUOTE] = ACTIONS(4818), + [anon_sym_UR_DQUOTE] = ACTIONS(4818), + [anon_sym_u8R_DQUOTE] = ACTIONS(4818), }, [1819] = { - [sym__expression] = STATE(5058), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9152), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4493), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4876), + [aux_sym_preproc_def_token1] = ACTIONS(4876), + [aux_sym_preproc_if_token1] = ACTIONS(4876), + [aux_sym_preproc_if_token2] = ACTIONS(4876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4876), + [aux_sym_preproc_else_token1] = ACTIONS(4876), + [aux_sym_preproc_elif_token1] = ACTIONS(4876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4876), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4876), + [sym_preproc_directive] = ACTIONS(4876), + [anon_sym_LPAREN2] = ACTIONS(4878), + [anon_sym_TILDE] = ACTIONS(4878), + [anon_sym_STAR] = ACTIONS(4878), + [anon_sym_AMP_AMP] = ACTIONS(4878), + [anon_sym_AMP] = ACTIONS(4876), + [anon_sym___extension__] = ACTIONS(4876), + [anon_sym_typedef] = ACTIONS(4876), + [anon_sym_extern] = ACTIONS(4876), + [anon_sym___attribute__] = ACTIONS(4876), + [anon_sym_COLON_COLON] = ACTIONS(4878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4878), + [anon_sym___declspec] = ACTIONS(4876), + [anon_sym___based] = ACTIONS(4876), + [anon_sym_signed] = ACTIONS(4876), + [anon_sym_unsigned] = ACTIONS(4876), + [anon_sym_long] = ACTIONS(4876), + [anon_sym_short] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_static] = ACTIONS(4876), + [anon_sym_register] = ACTIONS(4876), + [anon_sym_inline] = ACTIONS(4876), + [anon_sym___inline] = ACTIONS(4876), + [anon_sym___inline__] = ACTIONS(4876), + [anon_sym___forceinline] = ACTIONS(4876), + [anon_sym_thread_local] = ACTIONS(4876), + [anon_sym___thread] = ACTIONS(4876), + [anon_sym_const] = ACTIONS(4876), + [anon_sym_constexpr] = ACTIONS(4876), + [anon_sym_volatile] = ACTIONS(4876), + [anon_sym_restrict] = ACTIONS(4876), + [anon_sym___restrict__] = ACTIONS(4876), + [anon_sym__Atomic] = ACTIONS(4876), + [anon_sym__Noreturn] = ACTIONS(4876), + [anon_sym_noreturn] = ACTIONS(4876), + [anon_sym_mutable] = ACTIONS(4876), + [anon_sym_constinit] = ACTIONS(4876), + [anon_sym_consteval] = ACTIONS(4876), + [sym_primitive_type] = ACTIONS(4876), + [anon_sym_enum] = ACTIONS(4876), + [anon_sym_class] = ACTIONS(4876), + [anon_sym_struct] = ACTIONS(4876), + [anon_sym_union] = ACTIONS(4876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4876), + [anon_sym_decltype] = ACTIONS(4876), + [anon_sym_virtual] = ACTIONS(4876), + [anon_sym_alignas] = ACTIONS(4876), + [anon_sym_explicit] = ACTIONS(4876), + [anon_sym_typename] = ACTIONS(4876), + [anon_sym_template] = ACTIONS(4876), + [anon_sym_operator] = ACTIONS(4876), + [anon_sym_friend] = ACTIONS(4876), + [anon_sym_public] = ACTIONS(4876), + [anon_sym_private] = ACTIONS(4876), + [anon_sym_protected] = ACTIONS(4876), + [anon_sym_using] = ACTIONS(4876), + [anon_sym_static_assert] = ACTIONS(4876), }, [1820] = { - [sym__expression] = STATE(5132), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9612), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4495), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(2989), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token2] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2989), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2989), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2989), + [sym_preproc_directive] = ACTIONS(2989), + [anon_sym_LPAREN2] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym___extension__] = ACTIONS(2989), + [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_extern] = ACTIONS(2989), + [anon_sym___attribute__] = ACTIONS(2989), + [anon_sym_COLON_COLON] = ACTIONS(2991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), + [anon_sym___declspec] = ACTIONS(2989), + [anon_sym___based] = ACTIONS(2989), + [anon_sym_signed] = ACTIONS(2989), + [anon_sym_unsigned] = ACTIONS(2989), + [anon_sym_long] = ACTIONS(2989), + [anon_sym_short] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2989), + [anon_sym_static] = ACTIONS(2989), + [anon_sym_register] = ACTIONS(2989), + [anon_sym_inline] = ACTIONS(2989), + [anon_sym___inline] = ACTIONS(2989), + [anon_sym___inline__] = ACTIONS(2989), + [anon_sym___forceinline] = ACTIONS(2989), + [anon_sym_thread_local] = ACTIONS(2989), + [anon_sym___thread] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_constexpr] = ACTIONS(2989), + [anon_sym_volatile] = ACTIONS(2989), + [anon_sym_restrict] = ACTIONS(2989), + [anon_sym___restrict__] = ACTIONS(2989), + [anon_sym__Atomic] = ACTIONS(2989), + [anon_sym__Noreturn] = ACTIONS(2989), + [anon_sym_noreturn] = ACTIONS(2989), + [anon_sym_mutable] = ACTIONS(2989), + [anon_sym_constinit] = ACTIONS(2989), + [anon_sym_consteval] = ACTIONS(2989), + [sym_primitive_type] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_class] = ACTIONS(2989), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_union] = ACTIONS(2989), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2989), + [anon_sym_decltype] = ACTIONS(2989), + [anon_sym_virtual] = ACTIONS(2989), + [anon_sym_alignas] = ACTIONS(2989), + [anon_sym_explicit] = ACTIONS(2989), + [anon_sym_typename] = ACTIONS(2989), + [anon_sym_template] = ACTIONS(2989), + [anon_sym_operator] = ACTIONS(2989), + [anon_sym_friend] = ACTIONS(2989), + [anon_sym_public] = ACTIONS(2989), + [anon_sym_private] = ACTIONS(2989), + [anon_sym_protected] = ACTIONS(2989), + [anon_sym_using] = ACTIONS(2989), + [anon_sym_static_assert] = ACTIONS(2989), }, [1821] = { - [sym__expression] = STATE(5271), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8925), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4880), + [aux_sym_preproc_def_token1] = ACTIONS(4880), + [aux_sym_preproc_if_token1] = ACTIONS(4880), + [aux_sym_preproc_if_token2] = ACTIONS(4880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4880), + [aux_sym_preproc_else_token1] = ACTIONS(4880), + [aux_sym_preproc_elif_token1] = ACTIONS(4880), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4880), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4880), + [sym_preproc_directive] = ACTIONS(4880), + [anon_sym_LPAREN2] = ACTIONS(4882), + [anon_sym_TILDE] = ACTIONS(4882), + [anon_sym_STAR] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(4882), + [anon_sym_AMP] = ACTIONS(4880), + [anon_sym___extension__] = ACTIONS(4880), + [anon_sym_typedef] = ACTIONS(4880), + [anon_sym_extern] = ACTIONS(4880), + [anon_sym___attribute__] = ACTIONS(4880), + [anon_sym_COLON_COLON] = ACTIONS(4882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4882), + [anon_sym___declspec] = ACTIONS(4880), + [anon_sym___based] = ACTIONS(4880), + [anon_sym_signed] = ACTIONS(4880), + [anon_sym_unsigned] = ACTIONS(4880), + [anon_sym_long] = ACTIONS(4880), + [anon_sym_short] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4880), + [anon_sym_static] = ACTIONS(4880), + [anon_sym_register] = ACTIONS(4880), + [anon_sym_inline] = ACTIONS(4880), + [anon_sym___inline] = ACTIONS(4880), + [anon_sym___inline__] = ACTIONS(4880), + [anon_sym___forceinline] = ACTIONS(4880), + [anon_sym_thread_local] = ACTIONS(4880), + [anon_sym___thread] = ACTIONS(4880), + [anon_sym_const] = ACTIONS(4880), + [anon_sym_constexpr] = ACTIONS(4880), + [anon_sym_volatile] = ACTIONS(4880), + [anon_sym_restrict] = ACTIONS(4880), + [anon_sym___restrict__] = ACTIONS(4880), + [anon_sym__Atomic] = ACTIONS(4880), + [anon_sym__Noreturn] = ACTIONS(4880), + [anon_sym_noreturn] = ACTIONS(4880), + [anon_sym_mutable] = ACTIONS(4880), + [anon_sym_constinit] = ACTIONS(4880), + [anon_sym_consteval] = ACTIONS(4880), + [sym_primitive_type] = ACTIONS(4880), + [anon_sym_enum] = ACTIONS(4880), + [anon_sym_class] = ACTIONS(4880), + [anon_sym_struct] = ACTIONS(4880), + [anon_sym_union] = ACTIONS(4880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4880), + [anon_sym_decltype] = ACTIONS(4880), + [anon_sym_virtual] = ACTIONS(4880), + [anon_sym_alignas] = ACTIONS(4880), + [anon_sym_explicit] = ACTIONS(4880), + [anon_sym_typename] = ACTIONS(4880), + [anon_sym_template] = ACTIONS(4880), + [anon_sym_operator] = ACTIONS(4880), + [anon_sym_friend] = ACTIONS(4880), + [anon_sym_public] = ACTIONS(4880), + [anon_sym_private] = ACTIONS(4880), + [anon_sym_protected] = ACTIONS(4880), + [anon_sym_using] = ACTIONS(4880), + [anon_sym_static_assert] = ACTIONS(4880), }, [1822] = { - [sym__expression] = STATE(5231), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8922), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4497), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [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___extension__] = ACTIONS(2981), + [anon_sym_typedef] = ACTIONS(2981), + [anon_sym_extern] = ACTIONS(2981), + [anon_sym___attribute__] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(2983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), + [anon_sym___declspec] = ACTIONS(2981), + [anon_sym___based] = ACTIONS(2981), + [anon_sym_signed] = ACTIONS(2981), + [anon_sym_unsigned] = ACTIONS(2981), + [anon_sym_long] = ACTIONS(2981), + [anon_sym_short] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_static] = ACTIONS(2981), + [anon_sym_register] = ACTIONS(2981), + [anon_sym_inline] = ACTIONS(2981), + [anon_sym___inline] = ACTIONS(2981), + [anon_sym___inline__] = ACTIONS(2981), + [anon_sym___forceinline] = ACTIONS(2981), + [anon_sym_thread_local] = ACTIONS(2981), + [anon_sym___thread] = ACTIONS(2981), + [anon_sym_const] = ACTIONS(2981), + [anon_sym_constexpr] = ACTIONS(2981), + [anon_sym_volatile] = ACTIONS(2981), + [anon_sym_restrict] = ACTIONS(2981), + [anon_sym___restrict__] = ACTIONS(2981), + [anon_sym__Atomic] = ACTIONS(2981), + [anon_sym__Noreturn] = ACTIONS(2981), + [anon_sym_noreturn] = ACTIONS(2981), + [anon_sym_mutable] = ACTIONS(2981), + [anon_sym_constinit] = ACTIONS(2981), + [anon_sym_consteval] = ACTIONS(2981), + [sym_primitive_type] = ACTIONS(2981), + [anon_sym_enum] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(2981), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_union] = ACTIONS(2981), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2981), + [anon_sym_decltype] = ACTIONS(2981), + [anon_sym_virtual] = ACTIONS(2981), + [anon_sym_alignas] = ACTIONS(2981), + [anon_sym_explicit] = ACTIONS(2981), + [anon_sym_typename] = ACTIONS(2981), + [anon_sym_template] = ACTIONS(2981), + [anon_sym_operator] = ACTIONS(2981), + [anon_sym_friend] = ACTIONS(2981), + [anon_sym_public] = ACTIONS(2981), + [anon_sym_private] = ACTIONS(2981), + [anon_sym_protected] = ACTIONS(2981), + [anon_sym_using] = ACTIONS(2981), + [anon_sym_static_assert] = ACTIONS(2981), }, [1823] = { - [sym__expression] = STATE(3385), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_initializer_list] = STATE(3493), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(3791), + [sym_raw_string_literal] = STATE(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_RPAREN] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4061), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_EQ] = ACTIONS(4091), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4095), + [anon_sym_or_eq] = ACTIONS(4095), + [anon_sym_xor_eq] = ACTIONS(4095), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, [1824] = { - [sym__expression] = STATE(5388), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(9438), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3013), + [aux_sym_preproc_def_token1] = ACTIONS(3013), + [aux_sym_preproc_if_token1] = ACTIONS(3013), + [aux_sym_preproc_if_token2] = ACTIONS(3013), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3013), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3013), + [aux_sym_preproc_else_token1] = ACTIONS(3013), + [aux_sym_preproc_elif_token1] = ACTIONS(3013), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3013), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3013), + [sym_preproc_directive] = ACTIONS(3013), + [anon_sym_LPAREN2] = ACTIONS(3015), + [anon_sym_TILDE] = ACTIONS(3015), + [anon_sym_STAR] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym___extension__] = ACTIONS(3013), + [anon_sym_typedef] = ACTIONS(3013), + [anon_sym_extern] = ACTIONS(3013), + [anon_sym___attribute__] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(3015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3015), + [anon_sym___declspec] = ACTIONS(3013), + [anon_sym___based] = ACTIONS(3013), + [anon_sym_signed] = ACTIONS(3013), + [anon_sym_unsigned] = ACTIONS(3013), + [anon_sym_long] = ACTIONS(3013), + [anon_sym_short] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_static] = ACTIONS(3013), + [anon_sym_register] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym___inline] = ACTIONS(3013), + [anon_sym___inline__] = ACTIONS(3013), + [anon_sym___forceinline] = ACTIONS(3013), + [anon_sym_thread_local] = ACTIONS(3013), + [anon_sym___thread] = ACTIONS(3013), + [anon_sym_const] = ACTIONS(3013), + [anon_sym_constexpr] = ACTIONS(3013), + [anon_sym_volatile] = ACTIONS(3013), + [anon_sym_restrict] = ACTIONS(3013), + [anon_sym___restrict__] = ACTIONS(3013), + [anon_sym__Atomic] = ACTIONS(3013), + [anon_sym__Noreturn] = ACTIONS(3013), + [anon_sym_noreturn] = ACTIONS(3013), + [anon_sym_mutable] = ACTIONS(3013), + [anon_sym_constinit] = ACTIONS(3013), + [anon_sym_consteval] = ACTIONS(3013), + [sym_primitive_type] = ACTIONS(3013), + [anon_sym_enum] = ACTIONS(3013), + [anon_sym_class] = ACTIONS(3013), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3013), + [anon_sym_decltype] = ACTIONS(3013), + [anon_sym_virtual] = ACTIONS(3013), + [anon_sym_alignas] = ACTIONS(3013), + [anon_sym_explicit] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3013), + [anon_sym_template] = ACTIONS(3013), + [anon_sym_operator] = ACTIONS(3013), + [anon_sym_friend] = ACTIONS(3013), + [anon_sym_public] = ACTIONS(3013), + [anon_sym_private] = ACTIONS(3013), + [anon_sym_protected] = ACTIONS(3013), + [anon_sym_using] = ACTIONS(3013), + [anon_sym_static_assert] = ACTIONS(3013), }, [1825] = { - [sym__expression] = STATE(4117), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_initializer_list] = STATE(3493), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(4880), + [aux_sym_preproc_def_token1] = ACTIONS(4880), + [aux_sym_preproc_if_token1] = ACTIONS(4880), + [aux_sym_preproc_if_token2] = ACTIONS(4880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4880), + [aux_sym_preproc_else_token1] = ACTIONS(4880), + [aux_sym_preproc_elif_token1] = ACTIONS(4880), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4880), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4880), + [sym_preproc_directive] = ACTIONS(4880), + [anon_sym_LPAREN2] = ACTIONS(4882), + [anon_sym_TILDE] = ACTIONS(4882), + [anon_sym_STAR] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(4882), + [anon_sym_AMP] = ACTIONS(4880), + [anon_sym___extension__] = ACTIONS(4880), + [anon_sym_typedef] = ACTIONS(4880), + [anon_sym_extern] = ACTIONS(4880), + [anon_sym___attribute__] = ACTIONS(4880), + [anon_sym_COLON_COLON] = ACTIONS(4882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4882), + [anon_sym___declspec] = ACTIONS(4880), + [anon_sym___based] = ACTIONS(4880), + [anon_sym_signed] = ACTIONS(4880), + [anon_sym_unsigned] = ACTIONS(4880), + [anon_sym_long] = ACTIONS(4880), + [anon_sym_short] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4880), + [anon_sym_static] = ACTIONS(4880), + [anon_sym_register] = ACTIONS(4880), + [anon_sym_inline] = ACTIONS(4880), + [anon_sym___inline] = ACTIONS(4880), + [anon_sym___inline__] = ACTIONS(4880), + [anon_sym___forceinline] = ACTIONS(4880), + [anon_sym_thread_local] = ACTIONS(4880), + [anon_sym___thread] = ACTIONS(4880), + [anon_sym_const] = ACTIONS(4880), + [anon_sym_constexpr] = ACTIONS(4880), + [anon_sym_volatile] = ACTIONS(4880), + [anon_sym_restrict] = ACTIONS(4880), + [anon_sym___restrict__] = ACTIONS(4880), + [anon_sym__Atomic] = ACTIONS(4880), + [anon_sym__Noreturn] = ACTIONS(4880), + [anon_sym_noreturn] = ACTIONS(4880), + [anon_sym_mutable] = ACTIONS(4880), + [anon_sym_constinit] = ACTIONS(4880), + [anon_sym_consteval] = ACTIONS(4880), + [sym_primitive_type] = ACTIONS(4880), + [anon_sym_enum] = ACTIONS(4880), + [anon_sym_class] = ACTIONS(4880), + [anon_sym_struct] = ACTIONS(4880), + [anon_sym_union] = ACTIONS(4880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4880), + [anon_sym_decltype] = ACTIONS(4880), + [anon_sym_virtual] = ACTIONS(4880), + [anon_sym_alignas] = ACTIONS(4880), + [anon_sym_explicit] = ACTIONS(4880), + [anon_sym_typename] = ACTIONS(4880), + [anon_sym_template] = ACTIONS(4880), + [anon_sym_operator] = ACTIONS(4880), + [anon_sym_friend] = ACTIONS(4880), + [anon_sym_public] = ACTIONS(4880), + [anon_sym_private] = ACTIONS(4880), + [anon_sym_protected] = ACTIONS(4880), + [anon_sym_using] = ACTIONS(4880), + [anon_sym_static_assert] = ACTIONS(4880), }, [1826] = { - [sym__expression] = STATE(4913), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_initializer_list] = STATE(8251), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(3031), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token2] = ACTIONS(3031), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3031), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3031), + [aux_sym_preproc_else_token1] = ACTIONS(3031), + [aux_sym_preproc_elif_token1] = ACTIONS(3031), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3031), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3031), + [sym_preproc_directive] = ACTIONS(3031), + [anon_sym_LPAREN2] = ACTIONS(3033), + [anon_sym_TILDE] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3033), + [anon_sym_AMP_AMP] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym___extension__] = ACTIONS(3031), + [anon_sym_typedef] = ACTIONS(3031), + [anon_sym_extern] = ACTIONS(3031), + [anon_sym___attribute__] = ACTIONS(3031), + [anon_sym_COLON_COLON] = ACTIONS(3033), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3033), + [anon_sym___declspec] = ACTIONS(3031), + [anon_sym___based] = ACTIONS(3031), + [anon_sym_signed] = ACTIONS(3031), + [anon_sym_unsigned] = ACTIONS(3031), + [anon_sym_long] = ACTIONS(3031), + [anon_sym_short] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_static] = ACTIONS(3031), + [anon_sym_register] = ACTIONS(3031), + [anon_sym_inline] = ACTIONS(3031), + [anon_sym___inline] = ACTIONS(3031), + [anon_sym___inline__] = ACTIONS(3031), + [anon_sym___forceinline] = ACTIONS(3031), + [anon_sym_thread_local] = ACTIONS(3031), + [anon_sym___thread] = ACTIONS(3031), + [anon_sym_const] = ACTIONS(3031), + [anon_sym_constexpr] = ACTIONS(3031), + [anon_sym_volatile] = ACTIONS(3031), + [anon_sym_restrict] = ACTIONS(3031), + [anon_sym___restrict__] = ACTIONS(3031), + [anon_sym__Atomic] = ACTIONS(3031), + [anon_sym__Noreturn] = ACTIONS(3031), + [anon_sym_noreturn] = ACTIONS(3031), + [anon_sym_mutable] = ACTIONS(3031), + [anon_sym_constinit] = ACTIONS(3031), + [anon_sym_consteval] = ACTIONS(3031), + [sym_primitive_type] = ACTIONS(3031), + [anon_sym_enum] = ACTIONS(3031), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3031), + [anon_sym_union] = ACTIONS(3031), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3031), + [anon_sym_decltype] = ACTIONS(3031), + [anon_sym_virtual] = ACTIONS(3031), + [anon_sym_alignas] = ACTIONS(3031), + [anon_sym_explicit] = ACTIONS(3031), + [anon_sym_typename] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3031), + [anon_sym_operator] = ACTIONS(3031), + [anon_sym_friend] = ACTIONS(3031), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_using] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3031), }, [1827] = { - [sym__expression] = STATE(3793), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_initializer_list] = STATE(4156), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), - }, - [1828] = { - [sym__expression] = STATE(5088), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8782), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(3035), + [aux_sym_preproc_def_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token2] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), + [aux_sym_preproc_else_token1] = ACTIONS(3035), + [aux_sym_preproc_elif_token1] = ACTIONS(3035), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3035), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3035), + [sym_preproc_directive] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(3037), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP_AMP] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym___extension__] = ACTIONS(3035), + [anon_sym_typedef] = ACTIONS(3035), + [anon_sym_extern] = ACTIONS(3035), + [anon_sym___attribute__] = ACTIONS(3035), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), + [anon_sym___declspec] = ACTIONS(3035), + [anon_sym___based] = ACTIONS(3035), + [anon_sym_signed] = ACTIONS(3035), + [anon_sym_unsigned] = ACTIONS(3035), + [anon_sym_long] = ACTIONS(3035), + [anon_sym_short] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_static] = ACTIONS(3035), + [anon_sym_register] = ACTIONS(3035), + [anon_sym_inline] = ACTIONS(3035), + [anon_sym___inline] = ACTIONS(3035), + [anon_sym___inline__] = ACTIONS(3035), + [anon_sym___forceinline] = ACTIONS(3035), + [anon_sym_thread_local] = ACTIONS(3035), + [anon_sym___thread] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_constexpr] = ACTIONS(3035), + [anon_sym_volatile] = ACTIONS(3035), + [anon_sym_restrict] = ACTIONS(3035), + [anon_sym___restrict__] = ACTIONS(3035), + [anon_sym__Atomic] = ACTIONS(3035), + [anon_sym__Noreturn] = ACTIONS(3035), + [anon_sym_noreturn] = ACTIONS(3035), + [anon_sym_mutable] = ACTIONS(3035), + [anon_sym_constinit] = ACTIONS(3035), + [anon_sym_consteval] = ACTIONS(3035), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_class] = ACTIONS(3035), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3035), + [anon_sym_decltype] = ACTIONS(3035), + [anon_sym_virtual] = ACTIONS(3035), + [anon_sym_alignas] = ACTIONS(3035), + [anon_sym_explicit] = ACTIONS(3035), + [anon_sym_typename] = ACTIONS(3035), + [anon_sym_template] = ACTIONS(3035), + [anon_sym_operator] = ACTIONS(3035), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_public] = ACTIONS(3035), + [anon_sym_private] = ACTIONS(3035), + [anon_sym_protected] = ACTIONS(3035), + [anon_sym_using] = ACTIONS(3035), + [anon_sym_static_assert] = ACTIONS(3035), }, - [1829] = { - [sym__expression] = STATE(5322), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_initializer_list] = STATE(4789), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1828] = { + [sym_identifier] = ACTIONS(3035), + [aux_sym_preproc_def_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token2] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), + [aux_sym_preproc_else_token1] = ACTIONS(3035), + [aux_sym_preproc_elif_token1] = ACTIONS(3035), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3035), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3035), + [sym_preproc_directive] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(3037), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP_AMP] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym___extension__] = ACTIONS(3035), + [anon_sym_typedef] = ACTIONS(3035), + [anon_sym_extern] = ACTIONS(3035), + [anon_sym___attribute__] = ACTIONS(3035), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), + [anon_sym___declspec] = ACTIONS(3035), + [anon_sym___based] = ACTIONS(3035), + [anon_sym_signed] = ACTIONS(3035), + [anon_sym_unsigned] = ACTIONS(3035), + [anon_sym_long] = ACTIONS(3035), + [anon_sym_short] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_static] = ACTIONS(3035), + [anon_sym_register] = ACTIONS(3035), + [anon_sym_inline] = ACTIONS(3035), + [anon_sym___inline] = ACTIONS(3035), + [anon_sym___inline__] = ACTIONS(3035), + [anon_sym___forceinline] = ACTIONS(3035), + [anon_sym_thread_local] = ACTIONS(3035), + [anon_sym___thread] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_constexpr] = ACTIONS(3035), + [anon_sym_volatile] = ACTIONS(3035), + [anon_sym_restrict] = ACTIONS(3035), + [anon_sym___restrict__] = ACTIONS(3035), + [anon_sym__Atomic] = ACTIONS(3035), + [anon_sym__Noreturn] = ACTIONS(3035), + [anon_sym_noreturn] = ACTIONS(3035), + [anon_sym_mutable] = ACTIONS(3035), + [anon_sym_constinit] = ACTIONS(3035), + [anon_sym_consteval] = ACTIONS(3035), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_class] = ACTIONS(3035), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3035), + [anon_sym_decltype] = ACTIONS(3035), + [anon_sym_virtual] = ACTIONS(3035), + [anon_sym_alignas] = ACTIONS(3035), + [anon_sym_explicit] = ACTIONS(3035), + [anon_sym_typename] = ACTIONS(3035), + [anon_sym_template] = ACTIONS(3035), + [anon_sym_operator] = ACTIONS(3035), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_public] = ACTIONS(3035), + [anon_sym_private] = ACTIONS(3035), + [anon_sym_protected] = ACTIONS(3035), + [anon_sym_using] = ACTIONS(3035), + [anon_sym_static_assert] = ACTIONS(3035), + }, + [1829] = { + [sym_identifier] = ACTIONS(3039), + [aux_sym_preproc_def_token1] = ACTIONS(3039), + [aux_sym_preproc_if_token1] = ACTIONS(3039), + [aux_sym_preproc_if_token2] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3039), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3039), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3039), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3039), + [sym_preproc_directive] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_AMP_AMP] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym___extension__] = ACTIONS(3039), + [anon_sym_typedef] = ACTIONS(3039), + [anon_sym_extern] = ACTIONS(3039), + [anon_sym___attribute__] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3041), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3041), + [anon_sym___declspec] = ACTIONS(3039), + [anon_sym___based] = ACTIONS(3039), + [anon_sym_signed] = ACTIONS(3039), + [anon_sym_unsigned] = ACTIONS(3039), + [anon_sym_long] = ACTIONS(3039), + [anon_sym_short] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_static] = ACTIONS(3039), + [anon_sym_register] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym___inline] = ACTIONS(3039), + [anon_sym___inline__] = ACTIONS(3039), + [anon_sym___forceinline] = ACTIONS(3039), + [anon_sym_thread_local] = ACTIONS(3039), + [anon_sym___thread] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(3039), + [anon_sym_constexpr] = ACTIONS(3039), + [anon_sym_volatile] = ACTIONS(3039), + [anon_sym_restrict] = ACTIONS(3039), + [anon_sym___restrict__] = ACTIONS(3039), + [anon_sym__Atomic] = ACTIONS(3039), + [anon_sym__Noreturn] = ACTIONS(3039), + [anon_sym_noreturn] = ACTIONS(3039), + [anon_sym_mutable] = ACTIONS(3039), + [anon_sym_constinit] = ACTIONS(3039), + [anon_sym_consteval] = ACTIONS(3039), + [sym_primitive_type] = ACTIONS(3039), + [anon_sym_enum] = ACTIONS(3039), + [anon_sym_class] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3039), + [anon_sym_union] = ACTIONS(3039), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3039), + [anon_sym_decltype] = ACTIONS(3039), + [anon_sym_virtual] = ACTIONS(3039), + [anon_sym_alignas] = ACTIONS(3039), + [anon_sym_explicit] = ACTIONS(3039), + [anon_sym_typename] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3039), + [anon_sym_operator] = ACTIONS(3039), + [anon_sym_friend] = ACTIONS(3039), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_using] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3039), }, [1830] = { - [sym__expression] = STATE(5343), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_initializer_list] = STATE(4832), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4876), + [aux_sym_preproc_def_token1] = ACTIONS(4876), + [aux_sym_preproc_if_token1] = ACTIONS(4876), + [aux_sym_preproc_if_token2] = ACTIONS(4876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4876), + [aux_sym_preproc_else_token1] = ACTIONS(4876), + [aux_sym_preproc_elif_token1] = ACTIONS(4876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4876), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4876), + [sym_preproc_directive] = ACTIONS(4876), + [anon_sym_LPAREN2] = ACTIONS(4878), + [anon_sym_TILDE] = ACTIONS(4878), + [anon_sym_STAR] = ACTIONS(4878), + [anon_sym_AMP_AMP] = ACTIONS(4878), + [anon_sym_AMP] = ACTIONS(4876), + [anon_sym___extension__] = ACTIONS(4876), + [anon_sym_typedef] = ACTIONS(4876), + [anon_sym_extern] = ACTIONS(4876), + [anon_sym___attribute__] = ACTIONS(4876), + [anon_sym_COLON_COLON] = ACTIONS(4878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4878), + [anon_sym___declspec] = ACTIONS(4876), + [anon_sym___based] = ACTIONS(4876), + [anon_sym_signed] = ACTIONS(4876), + [anon_sym_unsigned] = ACTIONS(4876), + [anon_sym_long] = ACTIONS(4876), + [anon_sym_short] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_static] = ACTIONS(4876), + [anon_sym_register] = ACTIONS(4876), + [anon_sym_inline] = ACTIONS(4876), + [anon_sym___inline] = ACTIONS(4876), + [anon_sym___inline__] = ACTIONS(4876), + [anon_sym___forceinline] = ACTIONS(4876), + [anon_sym_thread_local] = ACTIONS(4876), + [anon_sym___thread] = ACTIONS(4876), + [anon_sym_const] = ACTIONS(4876), + [anon_sym_constexpr] = ACTIONS(4876), + [anon_sym_volatile] = ACTIONS(4876), + [anon_sym_restrict] = ACTIONS(4876), + [anon_sym___restrict__] = ACTIONS(4876), + [anon_sym__Atomic] = ACTIONS(4876), + [anon_sym__Noreturn] = ACTIONS(4876), + [anon_sym_noreturn] = ACTIONS(4876), + [anon_sym_mutable] = ACTIONS(4876), + [anon_sym_constinit] = ACTIONS(4876), + [anon_sym_consteval] = ACTIONS(4876), + [sym_primitive_type] = ACTIONS(4876), + [anon_sym_enum] = ACTIONS(4876), + [anon_sym_class] = ACTIONS(4876), + [anon_sym_struct] = ACTIONS(4876), + [anon_sym_union] = ACTIONS(4876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4876), + [anon_sym_decltype] = ACTIONS(4876), + [anon_sym_virtual] = ACTIONS(4876), + [anon_sym_alignas] = ACTIONS(4876), + [anon_sym_explicit] = ACTIONS(4876), + [anon_sym_typename] = ACTIONS(4876), + [anon_sym_template] = ACTIONS(4876), + [anon_sym_operator] = ACTIONS(4876), + [anon_sym_friend] = ACTIONS(4876), + [anon_sym_public] = ACTIONS(4876), + [anon_sym_private] = ACTIONS(4876), + [anon_sym_protected] = ACTIONS(4876), + [anon_sym_using] = ACTIONS(4876), + [anon_sym_static_assert] = ACTIONS(4876), }, [1831] = { - [sym__expression] = STATE(5200), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4499), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [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___extension__] = ACTIONS(2977), + [anon_sym_typedef] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2977), + [anon_sym___attribute__] = ACTIONS(2977), + [anon_sym_COLON_COLON] = ACTIONS(2979), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), + [anon_sym___declspec] = ACTIONS(2977), + [anon_sym___based] = ACTIONS(2977), + [anon_sym_signed] = ACTIONS(2977), + [anon_sym_unsigned] = ACTIONS(2977), + [anon_sym_long] = ACTIONS(2977), + [anon_sym_short] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2977), + [anon_sym_register] = ACTIONS(2977), + [anon_sym_inline] = ACTIONS(2977), + [anon_sym___inline] = ACTIONS(2977), + [anon_sym___inline__] = ACTIONS(2977), + [anon_sym___forceinline] = ACTIONS(2977), + [anon_sym_thread_local] = ACTIONS(2977), + [anon_sym___thread] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_constexpr] = ACTIONS(2977), + [anon_sym_volatile] = ACTIONS(2977), + [anon_sym_restrict] = ACTIONS(2977), + [anon_sym___restrict__] = ACTIONS(2977), + [anon_sym__Atomic] = ACTIONS(2977), + [anon_sym__Noreturn] = ACTIONS(2977), + [anon_sym_noreturn] = ACTIONS(2977), + [anon_sym_mutable] = ACTIONS(2977), + [anon_sym_constinit] = ACTIONS(2977), + [anon_sym_consteval] = ACTIONS(2977), + [sym_primitive_type] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_union] = ACTIONS(2977), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2977), + [anon_sym_decltype] = ACTIONS(2977), + [anon_sym_virtual] = ACTIONS(2977), + [anon_sym_alignas] = ACTIONS(2977), + [anon_sym_explicit] = ACTIONS(2977), + [anon_sym_typename] = ACTIONS(2977), + [anon_sym_template] = ACTIONS(2977), + [anon_sym_operator] = ACTIONS(2977), + [anon_sym_friend] = ACTIONS(2977), + [anon_sym_public] = ACTIONS(2977), + [anon_sym_private] = ACTIONS(2977), + [anon_sym_protected] = ACTIONS(2977), + [anon_sym_using] = ACTIONS(2977), + [anon_sym_static_assert] = ACTIONS(2977), }, [1832] = { - [sym__expression] = STATE(5051), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9149), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4501), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_RPAREN] = ACTIONS(4553), + [anon_sym_LPAREN2] = ACTIONS(4553), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4553), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4553), + [anon_sym_PIPE_PIPE] = ACTIONS(4553), + [anon_sym_AMP_AMP] = ACTIONS(4553), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_LT_LT] = ACTIONS(4553), + [anon_sym_GT_GT] = ACTIONS(4553), + [anon_sym_SEMI] = ACTIONS(4553), + [anon_sym___extension__] = ACTIONS(4551), + [anon_sym___attribute__] = ACTIONS(4551), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym___based] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_RBRACE] = ACTIONS(4553), + [anon_sym_signed] = ACTIONS(4551), + [anon_sym_unsigned] = ACTIONS(4551), + [anon_sym_long] = ACTIONS(4551), + [anon_sym_short] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_RBRACK] = ACTIONS(4553), + [anon_sym_const] = ACTIONS(4551), + [anon_sym_constexpr] = ACTIONS(4551), + [anon_sym_volatile] = ACTIONS(4551), + [anon_sym_restrict] = ACTIONS(4551), + [anon_sym___restrict__] = ACTIONS(4551), + [anon_sym__Atomic] = ACTIONS(4551), + [anon_sym__Noreturn] = ACTIONS(4551), + [anon_sym_noreturn] = ACTIONS(4551), + [anon_sym_mutable] = ACTIONS(4551), + [anon_sym_constinit] = ACTIONS(4551), + [anon_sym_consteval] = ACTIONS(4551), + [sym_primitive_type] = ACTIONS(4551), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_QMARK] = ACTIONS(4553), + [anon_sym_LT_EQ_GT] = ACTIONS(4553), + [anon_sym_or] = ACTIONS(4551), + [anon_sym_and] = ACTIONS(4551), + [anon_sym_bitor] = ACTIONS(4551), + [anon_sym_xor] = ACTIONS(4551), + [anon_sym_bitand] = ACTIONS(4551), + [anon_sym_not_eq] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_PLUS_PLUS] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4551), + [anon_sym_DOT_STAR] = ACTIONS(4553), + [anon_sym_DASH_GT] = ACTIONS(4553), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4551), + [anon_sym_decltype] = ACTIONS(4551), + [anon_sym_final] = ACTIONS(4551), + [anon_sym_override] = ACTIONS(4551), + [anon_sym_requires] = ACTIONS(4551), }, [1833] = { - [sym__expression] = STATE(5185), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8870), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4503), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [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___extension__] = ACTIONS(2973), + [anon_sym_typedef] = ACTIONS(2973), + [anon_sym_extern] = ACTIONS(2973), + [anon_sym___attribute__] = ACTIONS(2973), + [anon_sym_COLON_COLON] = ACTIONS(2975), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), + [anon_sym___declspec] = ACTIONS(2973), + [anon_sym___based] = ACTIONS(2973), + [anon_sym_signed] = ACTIONS(2973), + [anon_sym_unsigned] = ACTIONS(2973), + [anon_sym_long] = ACTIONS(2973), + [anon_sym_short] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_static] = ACTIONS(2973), + [anon_sym_register] = ACTIONS(2973), + [anon_sym_inline] = ACTIONS(2973), + [anon_sym___inline] = ACTIONS(2973), + [anon_sym___inline__] = ACTIONS(2973), + [anon_sym___forceinline] = ACTIONS(2973), + [anon_sym_thread_local] = ACTIONS(2973), + [anon_sym___thread] = ACTIONS(2973), + [anon_sym_const] = ACTIONS(2973), + [anon_sym_constexpr] = ACTIONS(2973), + [anon_sym_volatile] = ACTIONS(2973), + [anon_sym_restrict] = ACTIONS(2973), + [anon_sym___restrict__] = ACTIONS(2973), + [anon_sym__Atomic] = ACTIONS(2973), + [anon_sym__Noreturn] = ACTIONS(2973), + [anon_sym_noreturn] = ACTIONS(2973), + [anon_sym_mutable] = ACTIONS(2973), + [anon_sym_constinit] = ACTIONS(2973), + [anon_sym_consteval] = ACTIONS(2973), + [sym_primitive_type] = ACTIONS(2973), + [anon_sym_enum] = ACTIONS(2973), + [anon_sym_class] = ACTIONS(2973), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_union] = ACTIONS(2973), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2973), + [anon_sym_decltype] = ACTIONS(2973), + [anon_sym_virtual] = ACTIONS(2973), + [anon_sym_alignas] = ACTIONS(2973), + [anon_sym_explicit] = ACTIONS(2973), + [anon_sym_typename] = ACTIONS(2973), + [anon_sym_template] = ACTIONS(2973), + [anon_sym_operator] = ACTIONS(2973), + [anon_sym_friend] = ACTIONS(2973), + [anon_sym_public] = ACTIONS(2973), + [anon_sym_private] = ACTIONS(2973), + [anon_sym_protected] = ACTIONS(2973), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_static_assert] = ACTIONS(2973), }, [1834] = { - [sym__expression] = STATE(5165), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9499), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4505), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(4884), + [aux_sym_preproc_def_token1] = ACTIONS(4884), + [aux_sym_preproc_if_token1] = ACTIONS(4884), + [aux_sym_preproc_if_token2] = ACTIONS(4884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4884), + [aux_sym_preproc_else_token1] = ACTIONS(4884), + [aux_sym_preproc_elif_token1] = ACTIONS(4884), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4884), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4884), + [sym_preproc_directive] = ACTIONS(4884), + [anon_sym_LPAREN2] = ACTIONS(4886), + [anon_sym_TILDE] = ACTIONS(4886), + [anon_sym_STAR] = ACTIONS(4886), + [anon_sym_AMP_AMP] = ACTIONS(4886), + [anon_sym_AMP] = ACTIONS(4884), + [anon_sym___extension__] = ACTIONS(4884), + [anon_sym_typedef] = ACTIONS(4884), + [anon_sym_extern] = ACTIONS(4884), + [anon_sym___attribute__] = ACTIONS(4884), + [anon_sym_COLON_COLON] = ACTIONS(4886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4886), + [anon_sym___declspec] = ACTIONS(4884), + [anon_sym___based] = ACTIONS(4884), + [anon_sym_signed] = ACTIONS(4884), + [anon_sym_unsigned] = ACTIONS(4884), + [anon_sym_long] = ACTIONS(4884), + [anon_sym_short] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [anon_sym_static] = ACTIONS(4884), + [anon_sym_register] = ACTIONS(4884), + [anon_sym_inline] = ACTIONS(4884), + [anon_sym___inline] = ACTIONS(4884), + [anon_sym___inline__] = ACTIONS(4884), + [anon_sym___forceinline] = ACTIONS(4884), + [anon_sym_thread_local] = ACTIONS(4884), + [anon_sym___thread] = ACTIONS(4884), + [anon_sym_const] = ACTIONS(4884), + [anon_sym_constexpr] = ACTIONS(4884), + [anon_sym_volatile] = ACTIONS(4884), + [anon_sym_restrict] = ACTIONS(4884), + [anon_sym___restrict__] = ACTIONS(4884), + [anon_sym__Atomic] = ACTIONS(4884), + [anon_sym__Noreturn] = ACTIONS(4884), + [anon_sym_noreturn] = ACTIONS(4884), + [anon_sym_mutable] = ACTIONS(4884), + [anon_sym_constinit] = ACTIONS(4884), + [anon_sym_consteval] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(4884), + [anon_sym_enum] = ACTIONS(4884), + [anon_sym_class] = ACTIONS(4884), + [anon_sym_struct] = ACTIONS(4884), + [anon_sym_union] = ACTIONS(4884), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(4884), + [anon_sym_decltype] = ACTIONS(4884), + [anon_sym_virtual] = ACTIONS(4884), + [anon_sym_alignas] = ACTIONS(4884), + [anon_sym_explicit] = ACTIONS(4884), + [anon_sym_typename] = ACTIONS(4884), + [anon_sym_template] = ACTIONS(4884), + [anon_sym_operator] = ACTIONS(4884), + [anon_sym_friend] = ACTIONS(4884), + [anon_sym_public] = ACTIONS(4884), + [anon_sym_private] = ACTIONS(4884), + [anon_sym_protected] = ACTIONS(4884), + [anon_sym_using] = ACTIONS(4884), + [anon_sym_static_assert] = ACTIONS(4884), }, [1835] = { - [sym__expression] = STATE(5060), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9154), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4507), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(2969), + [aux_sym_preproc_def_token1] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(2969), + [aux_sym_preproc_if_token2] = ACTIONS(2969), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), + [aux_sym_preproc_else_token1] = ACTIONS(2969), + [aux_sym_preproc_elif_token1] = ACTIONS(2969), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), + [sym_preproc_directive] = ACTIONS(2969), + [anon_sym_LPAREN2] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_STAR] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2969), + [anon_sym___extension__] = ACTIONS(2969), + [anon_sym_typedef] = ACTIONS(2969), + [anon_sym_extern] = ACTIONS(2969), + [anon_sym___attribute__] = ACTIONS(2969), + [anon_sym_COLON_COLON] = ACTIONS(2971), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), + [anon_sym___declspec] = ACTIONS(2969), + [anon_sym___based] = ACTIONS(2969), + [anon_sym_signed] = ACTIONS(2969), + [anon_sym_unsigned] = ACTIONS(2969), + [anon_sym_long] = ACTIONS(2969), + [anon_sym_short] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(2969), + [anon_sym_register] = ACTIONS(2969), + [anon_sym_inline] = ACTIONS(2969), + [anon_sym___inline] = ACTIONS(2969), + [anon_sym___inline__] = ACTIONS(2969), + [anon_sym___forceinline] = ACTIONS(2969), + [anon_sym_thread_local] = ACTIONS(2969), + [anon_sym___thread] = ACTIONS(2969), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_constexpr] = ACTIONS(2969), + [anon_sym_volatile] = ACTIONS(2969), + [anon_sym_restrict] = ACTIONS(2969), + [anon_sym___restrict__] = ACTIONS(2969), + [anon_sym__Atomic] = ACTIONS(2969), + [anon_sym__Noreturn] = ACTIONS(2969), + [anon_sym_noreturn] = ACTIONS(2969), + [anon_sym_mutable] = ACTIONS(2969), + [anon_sym_constinit] = ACTIONS(2969), + [anon_sym_consteval] = ACTIONS(2969), + [sym_primitive_type] = ACTIONS(2969), + [anon_sym_enum] = ACTIONS(2969), + [anon_sym_class] = ACTIONS(2969), + [anon_sym_struct] = ACTIONS(2969), + [anon_sym_union] = ACTIONS(2969), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2969), + [anon_sym_decltype] = ACTIONS(2969), + [anon_sym_virtual] = ACTIONS(2969), + [anon_sym_alignas] = ACTIONS(2969), + [anon_sym_explicit] = ACTIONS(2969), + [anon_sym_typename] = ACTIONS(2969), + [anon_sym_template] = ACTIONS(2969), + [anon_sym_operator] = ACTIONS(2969), + [anon_sym_friend] = ACTIONS(2969), + [anon_sym_public] = ACTIONS(2969), + [anon_sym_private] = ACTIONS(2969), + [anon_sym_protected] = ACTIONS(2969), + [anon_sym_using] = ACTIONS(2969), + [anon_sym_static_assert] = ACTIONS(2969), }, [1836] = { - [sym__expression] = STATE(5115), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8975), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4509), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3043), + [aux_sym_preproc_def_token1] = ACTIONS(3043), + [aux_sym_preproc_if_token1] = ACTIONS(3043), + [aux_sym_preproc_if_token2] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3043), + [aux_sym_preproc_else_token1] = ACTIONS(3043), + [aux_sym_preproc_elif_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym___extension__] = ACTIONS(3043), + [anon_sym_typedef] = ACTIONS(3043), + [anon_sym_extern] = ACTIONS(3043), + [anon_sym___attribute__] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3045), + [anon_sym___declspec] = ACTIONS(3043), + [anon_sym___based] = ACTIONS(3043), + [anon_sym_signed] = ACTIONS(3043), + [anon_sym_unsigned] = ACTIONS(3043), + [anon_sym_long] = ACTIONS(3043), + [anon_sym_short] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_static] = ACTIONS(3043), + [anon_sym_register] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym___inline] = ACTIONS(3043), + [anon_sym___inline__] = ACTIONS(3043), + [anon_sym___forceinline] = ACTIONS(3043), + [anon_sym_thread_local] = ACTIONS(3043), + [anon_sym___thread] = ACTIONS(3043), + [anon_sym_const] = ACTIONS(3043), + [anon_sym_constexpr] = ACTIONS(3043), + [anon_sym_volatile] = ACTIONS(3043), + [anon_sym_restrict] = ACTIONS(3043), + [anon_sym___restrict__] = ACTIONS(3043), + [anon_sym__Atomic] = ACTIONS(3043), + [anon_sym__Noreturn] = ACTIONS(3043), + [anon_sym_noreturn] = ACTIONS(3043), + [anon_sym_mutable] = ACTIONS(3043), + [anon_sym_constinit] = ACTIONS(3043), + [anon_sym_consteval] = ACTIONS(3043), + [sym_primitive_type] = ACTIONS(3043), + [anon_sym_enum] = ACTIONS(3043), + [anon_sym_class] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3043), + [anon_sym_union] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3043), + [anon_sym_decltype] = ACTIONS(3043), + [anon_sym_virtual] = ACTIONS(3043), + [anon_sym_alignas] = ACTIONS(3043), + [anon_sym_explicit] = ACTIONS(3043), + [anon_sym_typename] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_friend] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3043), + [anon_sym_private] = ACTIONS(3043), + [anon_sym_protected] = ACTIONS(3043), + [anon_sym_using] = ACTIONS(3043), + [anon_sym_static_assert] = ACTIONS(3043), }, [1837] = { - [sym__expression] = STATE(5049), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9143), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4511), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3047), + [aux_sym_preproc_def_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token2] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3047), + [aux_sym_preproc_else_token1] = ACTIONS(3047), + [aux_sym_preproc_elif_token1] = ACTIONS(3047), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3047), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3047), + [sym_preproc_directive] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3047), + [anon_sym___extension__] = ACTIONS(3047), + [anon_sym_typedef] = ACTIONS(3047), + [anon_sym_extern] = ACTIONS(3047), + [anon_sym___attribute__] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3049), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3049), + [anon_sym___declspec] = ACTIONS(3047), + [anon_sym___based] = ACTIONS(3047), + [anon_sym_signed] = ACTIONS(3047), + [anon_sym_unsigned] = ACTIONS(3047), + [anon_sym_long] = ACTIONS(3047), + [anon_sym_short] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_static] = ACTIONS(3047), + [anon_sym_register] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym___inline] = ACTIONS(3047), + [anon_sym___inline__] = ACTIONS(3047), + [anon_sym___forceinline] = ACTIONS(3047), + [anon_sym_thread_local] = ACTIONS(3047), + [anon_sym___thread] = ACTIONS(3047), + [anon_sym_const] = ACTIONS(3047), + [anon_sym_constexpr] = ACTIONS(3047), + [anon_sym_volatile] = ACTIONS(3047), + [anon_sym_restrict] = ACTIONS(3047), + [anon_sym___restrict__] = ACTIONS(3047), + [anon_sym__Atomic] = ACTIONS(3047), + [anon_sym__Noreturn] = ACTIONS(3047), + [anon_sym_noreturn] = ACTIONS(3047), + [anon_sym_mutable] = ACTIONS(3047), + [anon_sym_constinit] = ACTIONS(3047), + [anon_sym_consteval] = ACTIONS(3047), + [sym_primitive_type] = ACTIONS(3047), + [anon_sym_enum] = ACTIONS(3047), + [anon_sym_class] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_union] = ACTIONS(3047), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3047), + [anon_sym_decltype] = ACTIONS(3047), + [anon_sym_virtual] = ACTIONS(3047), + [anon_sym_alignas] = ACTIONS(3047), + [anon_sym_explicit] = ACTIONS(3047), + [anon_sym_typename] = ACTIONS(3047), + [anon_sym_template] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_friend] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_private] = ACTIONS(3047), + [anon_sym_protected] = ACTIONS(3047), + [anon_sym_using] = ACTIONS(3047), + [anon_sym_static_assert] = ACTIONS(3047), }, [1838] = { - [sym__expression] = STATE(5047), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9203), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token2] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [aux_sym_preproc_else_token1] = ACTIONS(2138), + [aux_sym_preproc_elif_token1] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2828), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_friend] = ACTIONS(2138), + [anon_sym_public] = ACTIONS(2138), + [anon_sym_private] = ACTIONS(2138), + [anon_sym_protected] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), }, [1839] = { - [sym__expression] = STATE(5268), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8970), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3051), + [aux_sym_preproc_def_token1] = ACTIONS(3051), + [aux_sym_preproc_if_token1] = ACTIONS(3051), + [aux_sym_preproc_if_token2] = ACTIONS(3051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3051), + [aux_sym_preproc_else_token1] = ACTIONS(3051), + [aux_sym_preproc_elif_token1] = ACTIONS(3051), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3051), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3051), + [sym_preproc_directive] = ACTIONS(3051), + [anon_sym_LPAREN2] = ACTIONS(3053), + [anon_sym_TILDE] = ACTIONS(3053), + [anon_sym_STAR] = ACTIONS(3053), + [anon_sym_AMP_AMP] = ACTIONS(3053), + [anon_sym_AMP] = ACTIONS(3051), + [anon_sym___extension__] = ACTIONS(3051), + [anon_sym_typedef] = ACTIONS(3051), + [anon_sym_extern] = ACTIONS(3051), + [anon_sym___attribute__] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(3053), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3053), + [anon_sym___declspec] = ACTIONS(3051), + [anon_sym___based] = ACTIONS(3051), + [anon_sym_signed] = ACTIONS(3051), + [anon_sym_unsigned] = ACTIONS(3051), + [anon_sym_long] = ACTIONS(3051), + [anon_sym_short] = ACTIONS(3051), + [anon_sym_LBRACK] = ACTIONS(3051), + [anon_sym_static] = ACTIONS(3051), + [anon_sym_register] = ACTIONS(3051), + [anon_sym_inline] = ACTIONS(3051), + [anon_sym___inline] = ACTIONS(3051), + [anon_sym___inline__] = ACTIONS(3051), + [anon_sym___forceinline] = ACTIONS(3051), + [anon_sym_thread_local] = ACTIONS(3051), + [anon_sym___thread] = ACTIONS(3051), + [anon_sym_const] = ACTIONS(3051), + [anon_sym_constexpr] = ACTIONS(3051), + [anon_sym_volatile] = ACTIONS(3051), + [anon_sym_restrict] = ACTIONS(3051), + [anon_sym___restrict__] = ACTIONS(3051), + [anon_sym__Atomic] = ACTIONS(3051), + [anon_sym__Noreturn] = ACTIONS(3051), + [anon_sym_noreturn] = ACTIONS(3051), + [anon_sym_mutable] = ACTIONS(3051), + [anon_sym_constinit] = ACTIONS(3051), + [anon_sym_consteval] = ACTIONS(3051), + [sym_primitive_type] = ACTIONS(3051), + [anon_sym_enum] = ACTIONS(3051), + [anon_sym_class] = ACTIONS(3051), + [anon_sym_struct] = ACTIONS(3051), + [anon_sym_union] = ACTIONS(3051), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3051), + [anon_sym_decltype] = ACTIONS(3051), + [anon_sym_virtual] = ACTIONS(3051), + [anon_sym_alignas] = ACTIONS(3051), + [anon_sym_explicit] = ACTIONS(3051), + [anon_sym_typename] = ACTIONS(3051), + [anon_sym_template] = ACTIONS(3051), + [anon_sym_operator] = ACTIONS(3051), + [anon_sym_friend] = ACTIONS(3051), + [anon_sym_public] = ACTIONS(3051), + [anon_sym_private] = ACTIONS(3051), + [anon_sym_protected] = ACTIONS(3051), + [anon_sym_using] = ACTIONS(3051), + [anon_sym_static_assert] = ACTIONS(3051), }, [1840] = { - [sym__expression] = STATE(5301), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(9406), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [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___extension__] = ACTIONS(3055), + [anon_sym_typedef] = ACTIONS(3055), + [anon_sym_extern] = ACTIONS(3055), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3055), + [anon_sym_constinit] = ACTIONS(3055), + [anon_sym_consteval] = 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_virtual] = ACTIONS(3055), + [anon_sym_alignas] = ACTIONS(3055), + [anon_sym_explicit] = ACTIONS(3055), + [anon_sym_typename] = ACTIONS(3055), + [anon_sym_template] = ACTIONS(3055), + [anon_sym_operator] = ACTIONS(3055), + [anon_sym_friend] = ACTIONS(3055), + [anon_sym_public] = ACTIONS(3055), + [anon_sym_private] = ACTIONS(3055), + [anon_sym_protected] = ACTIONS(3055), + [anon_sym_using] = ACTIONS(3055), + [anon_sym_static_assert] = ACTIONS(3055), }, [1841] = { - [sym__expression] = STATE(5064), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9142), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4515), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3059), + [aux_sym_preproc_def_token1] = ACTIONS(3059), + [aux_sym_preproc_if_token1] = ACTIONS(3059), + [aux_sym_preproc_if_token2] = ACTIONS(3059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3059), + [aux_sym_preproc_else_token1] = ACTIONS(3059), + [aux_sym_preproc_elif_token1] = ACTIONS(3059), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3059), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3059), + [sym_preproc_directive] = ACTIONS(3059), + [anon_sym_LPAREN2] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3059), + [anon_sym___extension__] = ACTIONS(3059), + [anon_sym_typedef] = ACTIONS(3059), + [anon_sym_extern] = ACTIONS(3059), + [anon_sym___attribute__] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3061), + [anon_sym___declspec] = ACTIONS(3059), + [anon_sym___based] = ACTIONS(3059), + [anon_sym_signed] = ACTIONS(3059), + [anon_sym_unsigned] = ACTIONS(3059), + [anon_sym_long] = ACTIONS(3059), + [anon_sym_short] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_static] = ACTIONS(3059), + [anon_sym_register] = ACTIONS(3059), + [anon_sym_inline] = ACTIONS(3059), + [anon_sym___inline] = ACTIONS(3059), + [anon_sym___inline__] = ACTIONS(3059), + [anon_sym___forceinline] = ACTIONS(3059), + [anon_sym_thread_local] = ACTIONS(3059), + [anon_sym___thread] = ACTIONS(3059), + [anon_sym_const] = ACTIONS(3059), + [anon_sym_constexpr] = ACTIONS(3059), + [anon_sym_volatile] = ACTIONS(3059), + [anon_sym_restrict] = ACTIONS(3059), + [anon_sym___restrict__] = ACTIONS(3059), + [anon_sym__Atomic] = ACTIONS(3059), + [anon_sym__Noreturn] = ACTIONS(3059), + [anon_sym_noreturn] = ACTIONS(3059), + [anon_sym_mutable] = ACTIONS(3059), + [anon_sym_constinit] = ACTIONS(3059), + [anon_sym_consteval] = ACTIONS(3059), + [sym_primitive_type] = ACTIONS(3059), + [anon_sym_enum] = ACTIONS(3059), + [anon_sym_class] = ACTIONS(3059), + [anon_sym_struct] = ACTIONS(3059), + [anon_sym_union] = ACTIONS(3059), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3059), + [anon_sym_decltype] = ACTIONS(3059), + [anon_sym_virtual] = ACTIONS(3059), + [anon_sym_alignas] = ACTIONS(3059), + [anon_sym_explicit] = ACTIONS(3059), + [anon_sym_typename] = ACTIONS(3059), + [anon_sym_template] = ACTIONS(3059), + [anon_sym_operator] = ACTIONS(3059), + [anon_sym_friend] = ACTIONS(3059), + [anon_sym_public] = ACTIONS(3059), + [anon_sym_private] = ACTIONS(3059), + [anon_sym_protected] = ACTIONS(3059), + [anon_sym_using] = ACTIONS(3059), + [anon_sym_static_assert] = ACTIONS(3059), }, [1842] = { - [sym__expression] = STATE(5145), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9608), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4517), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3063), + [aux_sym_preproc_def_token1] = ACTIONS(3063), + [aux_sym_preproc_if_token1] = ACTIONS(3063), + [aux_sym_preproc_if_token2] = ACTIONS(3063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), + [aux_sym_preproc_else_token1] = ACTIONS(3063), + [aux_sym_preproc_elif_token1] = ACTIONS(3063), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3063), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3063), + [sym_preproc_directive] = ACTIONS(3063), + [anon_sym_LPAREN2] = ACTIONS(3065), + [anon_sym_TILDE] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym___extension__] = ACTIONS(3063), + [anon_sym_typedef] = ACTIONS(3063), + [anon_sym_extern] = ACTIONS(3063), + [anon_sym___attribute__] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(3065), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), + [anon_sym___declspec] = ACTIONS(3063), + [anon_sym___based] = ACTIONS(3063), + [anon_sym_signed] = ACTIONS(3063), + [anon_sym_unsigned] = ACTIONS(3063), + [anon_sym_long] = ACTIONS(3063), + [anon_sym_short] = ACTIONS(3063), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_static] = ACTIONS(3063), + [anon_sym_register] = ACTIONS(3063), + [anon_sym_inline] = ACTIONS(3063), + [anon_sym___inline] = ACTIONS(3063), + [anon_sym___inline__] = ACTIONS(3063), + [anon_sym___forceinline] = ACTIONS(3063), + [anon_sym_thread_local] = ACTIONS(3063), + [anon_sym___thread] = ACTIONS(3063), + [anon_sym_const] = ACTIONS(3063), + [anon_sym_constexpr] = ACTIONS(3063), + [anon_sym_volatile] = ACTIONS(3063), + [anon_sym_restrict] = ACTIONS(3063), + [anon_sym___restrict__] = ACTIONS(3063), + [anon_sym__Atomic] = ACTIONS(3063), + [anon_sym__Noreturn] = ACTIONS(3063), + [anon_sym_noreturn] = ACTIONS(3063), + [anon_sym_mutable] = ACTIONS(3063), + [anon_sym_constinit] = ACTIONS(3063), + [anon_sym_consteval] = ACTIONS(3063), + [sym_primitive_type] = ACTIONS(3063), + [anon_sym_enum] = ACTIONS(3063), + [anon_sym_class] = ACTIONS(3063), + [anon_sym_struct] = ACTIONS(3063), + [anon_sym_union] = ACTIONS(3063), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3063), + [anon_sym_decltype] = ACTIONS(3063), + [anon_sym_virtual] = ACTIONS(3063), + [anon_sym_alignas] = ACTIONS(3063), + [anon_sym_explicit] = ACTIONS(3063), + [anon_sym_typename] = ACTIONS(3063), + [anon_sym_template] = ACTIONS(3063), + [anon_sym_operator] = ACTIONS(3063), + [anon_sym_friend] = ACTIONS(3063), + [anon_sym_public] = ACTIONS(3063), + [anon_sym_private] = ACTIONS(3063), + [anon_sym_protected] = ACTIONS(3063), + [anon_sym_using] = ACTIONS(3063), + [anon_sym_static_assert] = ACTIONS(3063), }, [1843] = { - [sym__expression] = STATE(5245), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(9312), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(2965), + [aux_sym_preproc_def_token1] = ACTIONS(2965), + [aux_sym_preproc_if_token1] = ACTIONS(2965), + [aux_sym_preproc_if_token2] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), + [aux_sym_preproc_else_token1] = ACTIONS(2965), + [aux_sym_preproc_elif_token1] = ACTIONS(2965), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2965), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2965), + [sym_preproc_directive] = ACTIONS(2965), + [anon_sym_LPAREN2] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym___extension__] = ACTIONS(2965), + [anon_sym_typedef] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2965), + [anon_sym___attribute__] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(2967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), + [anon_sym___declspec] = ACTIONS(2965), + [anon_sym___based] = ACTIONS(2965), + [anon_sym_signed] = ACTIONS(2965), + [anon_sym_unsigned] = ACTIONS(2965), + [anon_sym_long] = ACTIONS(2965), + [anon_sym_short] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_static] = ACTIONS(2965), + [anon_sym_register] = ACTIONS(2965), + [anon_sym_inline] = ACTIONS(2965), + [anon_sym___inline] = ACTIONS(2965), + [anon_sym___inline__] = ACTIONS(2965), + [anon_sym___forceinline] = ACTIONS(2965), + [anon_sym_thread_local] = ACTIONS(2965), + [anon_sym___thread] = ACTIONS(2965), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_constexpr] = ACTIONS(2965), + [anon_sym_volatile] = ACTIONS(2965), + [anon_sym_restrict] = ACTIONS(2965), + [anon_sym___restrict__] = ACTIONS(2965), + [anon_sym__Atomic] = ACTIONS(2965), + [anon_sym__Noreturn] = ACTIONS(2965), + [anon_sym_noreturn] = ACTIONS(2965), + [anon_sym_mutable] = ACTIONS(2965), + [anon_sym_constinit] = ACTIONS(2965), + [anon_sym_consteval] = ACTIONS(2965), + [sym_primitive_type] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_class] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_union] = ACTIONS(2965), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2965), + [anon_sym_decltype] = ACTIONS(2965), + [anon_sym_virtual] = ACTIONS(2965), + [anon_sym_alignas] = ACTIONS(2965), + [anon_sym_explicit] = ACTIONS(2965), + [anon_sym_typename] = ACTIONS(2965), + [anon_sym_template] = ACTIONS(2965), + [anon_sym_operator] = ACTIONS(2965), + [anon_sym_friend] = ACTIONS(2965), + [anon_sym_public] = ACTIONS(2965), + [anon_sym_private] = ACTIONS(2965), + [anon_sym_protected] = ACTIONS(2965), + [anon_sym_using] = ACTIONS(2965), + [anon_sym_static_assert] = ACTIONS(2965), }, [1844] = { - [sym__expression] = STATE(5082), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9405), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4519), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(4888), + [aux_sym_preproc_def_token1] = ACTIONS(4888), + [aux_sym_preproc_if_token1] = ACTIONS(4888), + [aux_sym_preproc_if_token2] = ACTIONS(4888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4888), + [aux_sym_preproc_else_token1] = ACTIONS(4888), + [aux_sym_preproc_elif_token1] = ACTIONS(4888), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4888), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4888), + [sym_preproc_directive] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(4890), + [anon_sym_TILDE] = ACTIONS(4890), + [anon_sym_STAR] = ACTIONS(4890), + [anon_sym_AMP_AMP] = ACTIONS(4890), + [anon_sym_AMP] = ACTIONS(4888), + [anon_sym___extension__] = ACTIONS(4888), + [anon_sym_typedef] = ACTIONS(4888), + [anon_sym_extern] = ACTIONS(4888), + [anon_sym___attribute__] = ACTIONS(4888), + [anon_sym_COLON_COLON] = ACTIONS(4890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4890), + [anon_sym___declspec] = ACTIONS(4888), + [anon_sym___based] = ACTIONS(4888), + [anon_sym_signed] = ACTIONS(4888), + [anon_sym_unsigned] = ACTIONS(4888), + [anon_sym_long] = ACTIONS(4888), + [anon_sym_short] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4888), + [anon_sym_static] = ACTIONS(4888), + [anon_sym_register] = ACTIONS(4888), + [anon_sym_inline] = ACTIONS(4888), + [anon_sym___inline] = ACTIONS(4888), + [anon_sym___inline__] = ACTIONS(4888), + [anon_sym___forceinline] = ACTIONS(4888), + [anon_sym_thread_local] = ACTIONS(4888), + [anon_sym___thread] = ACTIONS(4888), + [anon_sym_const] = ACTIONS(4888), + [anon_sym_constexpr] = ACTIONS(4888), + [anon_sym_volatile] = ACTIONS(4888), + [anon_sym_restrict] = ACTIONS(4888), + [anon_sym___restrict__] = ACTIONS(4888), + [anon_sym__Atomic] = ACTIONS(4888), + [anon_sym__Noreturn] = ACTIONS(4888), + [anon_sym_noreturn] = ACTIONS(4888), + [anon_sym_mutable] = ACTIONS(4888), + [anon_sym_constinit] = ACTIONS(4888), + [anon_sym_consteval] = ACTIONS(4888), + [sym_primitive_type] = ACTIONS(4888), + [anon_sym_enum] = ACTIONS(4888), + [anon_sym_class] = ACTIONS(4888), + [anon_sym_struct] = ACTIONS(4888), + [anon_sym_union] = ACTIONS(4888), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(4888), + [anon_sym_decltype] = ACTIONS(4888), + [anon_sym_virtual] = ACTIONS(4888), + [anon_sym_alignas] = ACTIONS(4888), + [anon_sym_explicit] = ACTIONS(4888), + [anon_sym_typename] = ACTIONS(4888), + [anon_sym_template] = ACTIONS(4888), + [anon_sym_operator] = ACTIONS(4888), + [anon_sym_friend] = ACTIONS(4888), + [anon_sym_public] = ACTIONS(4888), + [anon_sym_private] = ACTIONS(4888), + [anon_sym_protected] = ACTIONS(4888), + [anon_sym_using] = ACTIONS(4888), + [anon_sym_static_assert] = ACTIONS(4888), }, [1845] = { - [sym__expression] = STATE(5036), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9124), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4521), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3202), + [aux_sym_preproc_def_token1] = ACTIONS(3202), + [aux_sym_preproc_if_token1] = ACTIONS(3202), + [aux_sym_preproc_if_token2] = ACTIONS(3202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3202), + [aux_sym_preproc_else_token1] = ACTIONS(3202), + [aux_sym_preproc_elif_token1] = ACTIONS(3202), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3202), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3202), + [sym_preproc_directive] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym___extension__] = ACTIONS(3202), + [anon_sym_typedef] = ACTIONS(3202), + [anon_sym_extern] = ACTIONS(3202), + [anon_sym___attribute__] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3204), + [anon_sym___declspec] = ACTIONS(3202), + [anon_sym___based] = ACTIONS(3202), + [anon_sym_signed] = ACTIONS(3202), + [anon_sym_unsigned] = ACTIONS(3202), + [anon_sym_long] = ACTIONS(3202), + [anon_sym_short] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_register] = ACTIONS(3202), + [anon_sym_inline] = ACTIONS(3202), + [anon_sym___inline] = ACTIONS(3202), + [anon_sym___inline__] = ACTIONS(3202), + [anon_sym___forceinline] = ACTIONS(3202), + [anon_sym_thread_local] = ACTIONS(3202), + [anon_sym___thread] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_constexpr] = ACTIONS(3202), + [anon_sym_volatile] = ACTIONS(3202), + [anon_sym_restrict] = ACTIONS(3202), + [anon_sym___restrict__] = ACTIONS(3202), + [anon_sym__Atomic] = ACTIONS(3202), + [anon_sym__Noreturn] = ACTIONS(3202), + [anon_sym_noreturn] = ACTIONS(3202), + [anon_sym_mutable] = ACTIONS(3202), + [anon_sym_constinit] = ACTIONS(3202), + [anon_sym_consteval] = ACTIONS(3202), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_union] = ACTIONS(3202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3202), + [anon_sym_decltype] = ACTIONS(3202), + [anon_sym_virtual] = ACTIONS(3202), + [anon_sym_alignas] = ACTIONS(3202), + [anon_sym_explicit] = ACTIONS(3202), + [anon_sym_typename] = ACTIONS(3202), + [anon_sym_template] = ACTIONS(3202), + [anon_sym_operator] = ACTIONS(3202), + [anon_sym_friend] = ACTIONS(3202), + [anon_sym_public] = ACTIONS(3202), + [anon_sym_private] = ACTIONS(3202), + [anon_sym_protected] = ACTIONS(3202), + [anon_sym_using] = ACTIONS(3202), + [anon_sym_static_assert] = ACTIONS(3202), }, [1846] = { - [sym__expression] = STATE(5172), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_initializer_list] = STATE(5425), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3876), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [sym_identifier] = ACTIONS(2957), + [aux_sym_preproc_def_token1] = ACTIONS(2957), + [aux_sym_preproc_if_token1] = ACTIONS(2957), + [aux_sym_preproc_if_token2] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2957), + [aux_sym_preproc_else_token1] = ACTIONS(2957), + [aux_sym_preproc_elif_token1] = ACTIONS(2957), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2957), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2957), + [sym_preproc_directive] = ACTIONS(2957), + [anon_sym_LPAREN2] = ACTIONS(2959), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym___extension__] = ACTIONS(2957), + [anon_sym_typedef] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym___attribute__] = ACTIONS(2957), + [anon_sym_COLON_COLON] = ACTIONS(2959), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), + [anon_sym___declspec] = ACTIONS(2957), + [anon_sym___based] = ACTIONS(2957), + [anon_sym_signed] = ACTIONS(2957), + [anon_sym_unsigned] = ACTIONS(2957), + [anon_sym_long] = ACTIONS(2957), + [anon_sym_short] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_static] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_inline] = ACTIONS(2957), + [anon_sym___inline] = ACTIONS(2957), + [anon_sym___inline__] = ACTIONS(2957), + [anon_sym___forceinline] = ACTIONS(2957), + [anon_sym_thread_local] = ACTIONS(2957), + [anon_sym___thread] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_constexpr] = ACTIONS(2957), + [anon_sym_volatile] = ACTIONS(2957), + [anon_sym_restrict] = ACTIONS(2957), + [anon_sym___restrict__] = ACTIONS(2957), + [anon_sym__Atomic] = ACTIONS(2957), + [anon_sym__Noreturn] = ACTIONS(2957), + [anon_sym_noreturn] = ACTIONS(2957), + [anon_sym_mutable] = ACTIONS(2957), + [anon_sym_constinit] = ACTIONS(2957), + [anon_sym_consteval] = ACTIONS(2957), + [sym_primitive_type] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [anon_sym_class] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_union] = ACTIONS(2957), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2957), + [anon_sym_decltype] = ACTIONS(2957), + [anon_sym_virtual] = ACTIONS(2957), + [anon_sym_alignas] = ACTIONS(2957), + [anon_sym_explicit] = ACTIONS(2957), + [anon_sym_typename] = ACTIONS(2957), + [anon_sym_template] = ACTIONS(2957), + [anon_sym_operator] = ACTIONS(2957), + [anon_sym_friend] = ACTIONS(2957), + [anon_sym_public] = ACTIONS(2957), + [anon_sym_private] = ACTIONS(2957), + [anon_sym_protected] = ACTIONS(2957), + [anon_sym_using] = ACTIONS(2957), + [anon_sym_static_assert] = ACTIONS(2957), }, [1847] = { - [sym__expression] = STATE(5048), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9133), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4523), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(4892), + [aux_sym_preproc_def_token1] = ACTIONS(4892), + [aux_sym_preproc_if_token1] = ACTIONS(4892), + [aux_sym_preproc_if_token2] = ACTIONS(4892), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4892), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4892), + [aux_sym_preproc_else_token1] = ACTIONS(4892), + [aux_sym_preproc_elif_token1] = ACTIONS(4892), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4892), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4892), + [sym_preproc_directive] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(4894), + [anon_sym_TILDE] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_AMP] = ACTIONS(4892), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_typedef] = ACTIONS(4892), + [anon_sym_extern] = ACTIONS(4892), + [anon_sym___attribute__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4894), + [anon_sym___declspec] = ACTIONS(4892), + [anon_sym___based] = ACTIONS(4892), + [anon_sym_signed] = ACTIONS(4892), + [anon_sym_unsigned] = ACTIONS(4892), + [anon_sym_long] = ACTIONS(4892), + [anon_sym_short] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4892), + [anon_sym_static] = ACTIONS(4892), + [anon_sym_register] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym___inline] = ACTIONS(4892), + [anon_sym___inline__] = ACTIONS(4892), + [anon_sym___forceinline] = ACTIONS(4892), + [anon_sym_thread_local] = ACTIONS(4892), + [anon_sym___thread] = ACTIONS(4892), + [anon_sym_const] = ACTIONS(4892), + [anon_sym_constexpr] = ACTIONS(4892), + [anon_sym_volatile] = ACTIONS(4892), + [anon_sym_restrict] = ACTIONS(4892), + [anon_sym___restrict__] = ACTIONS(4892), + [anon_sym__Atomic] = ACTIONS(4892), + [anon_sym__Noreturn] = ACTIONS(4892), + [anon_sym_noreturn] = ACTIONS(4892), + [anon_sym_mutable] = ACTIONS(4892), + [anon_sym_constinit] = ACTIONS(4892), + [anon_sym_consteval] = ACTIONS(4892), + [sym_primitive_type] = ACTIONS(4892), + [anon_sym_enum] = ACTIONS(4892), + [anon_sym_class] = ACTIONS(4892), + [anon_sym_struct] = ACTIONS(4892), + [anon_sym_union] = ACTIONS(4892), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(4892), + [anon_sym_decltype] = ACTIONS(4892), + [anon_sym_virtual] = ACTIONS(4892), + [anon_sym_alignas] = ACTIONS(4892), + [anon_sym_explicit] = ACTIONS(4892), + [anon_sym_typename] = ACTIONS(4892), + [anon_sym_template] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_friend] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_using] = ACTIONS(4892), + [anon_sym_static_assert] = ACTIONS(4892), }, [1848] = { - [sym__expression] = STATE(5164), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_initializer_list] = STATE(8844), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(3091), + [aux_sym_preproc_def_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token2] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), + [aux_sym_preproc_else_token1] = ACTIONS(3091), + [aux_sym_preproc_elif_token1] = ACTIONS(3091), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3091), + [sym_preproc_directive] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym___based] = ACTIONS(3091), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym_explicit] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_operator] = ACTIONS(3091), + [anon_sym_friend] = ACTIONS(3091), + [anon_sym_public] = ACTIONS(3091), + [anon_sym_private] = ACTIONS(3091), + [anon_sym_protected] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_static_assert] = ACTIONS(3091), }, [1849] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_COMMA] = ACTIONS(4525), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4525), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(3099), + [aux_sym_preproc_def_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token2] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), + [aux_sym_preproc_else_token1] = ACTIONS(3099), + [aux_sym_preproc_elif_token1] = ACTIONS(3099), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3099), + [sym_preproc_directive] = ACTIONS(3099), + [anon_sym_LPAREN2] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym___extension__] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym___attribute__] = ACTIONS(3099), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), + [anon_sym___declspec] = ACTIONS(3099), + [anon_sym___based] = ACTIONS(3099), + [anon_sym_signed] = ACTIONS(3099), + [anon_sym_unsigned] = ACTIONS(3099), + [anon_sym_long] = ACTIONS(3099), + [anon_sym_short] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_register] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym___inline] = ACTIONS(3099), + [anon_sym___inline__] = ACTIONS(3099), + [anon_sym___forceinline] = ACTIONS(3099), + [anon_sym_thread_local] = ACTIONS(3099), + [anon_sym___thread] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_constexpr] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_restrict] = ACTIONS(3099), + [anon_sym___restrict__] = ACTIONS(3099), + [anon_sym__Atomic] = ACTIONS(3099), + [anon_sym__Noreturn] = ACTIONS(3099), + [anon_sym_noreturn] = ACTIONS(3099), + [anon_sym_mutable] = ACTIONS(3099), + [anon_sym_constinit] = ACTIONS(3099), + [anon_sym_consteval] = ACTIONS(3099), + [sym_primitive_type] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_alignas] = ACTIONS(3099), + [anon_sym_explicit] = ACTIONS(3099), + [anon_sym_typename] = ACTIONS(3099), + [anon_sym_template] = ACTIONS(3099), + [anon_sym_operator] = ACTIONS(3099), + [anon_sym_friend] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_private] = ACTIONS(3099), + [anon_sym_protected] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_static_assert] = ACTIONS(3099), }, [1850] = { - [sym__expression] = STATE(5189), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8952), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4527), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token2] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [aux_sym_preproc_else_token1] = ACTIONS(3103), + [aux_sym_preproc_elif_token1] = ACTIONS(3103), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_friend] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), }, [1851] = { - [sym__expression] = STATE(5337), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(9204), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token2] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [aux_sym_preproc_else_token1] = ACTIONS(3103), + [aux_sym_preproc_elif_token1] = ACTIONS(3103), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_friend] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), }, [1852] = { - [sym__expression] = STATE(5187), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8953), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4529), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_template_argument_list] = STATE(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4561), + [anon_sym_COMMA] = ACTIONS(4561), + [anon_sym_LPAREN2] = ACTIONS(4561), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_PIPE_PIPE] = ACTIONS(4571), + [anon_sym_AMP_AMP] = ACTIONS(4561), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4568), + [anon_sym_EQ_EQ] = ACTIONS(4571), + [anon_sym_BANG_EQ] = ACTIONS(4571), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_GT_EQ] = ACTIONS(4566), + [anon_sym_LT_EQ] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4896), + [anon_sym_LT_LT] = ACTIONS(4566), + [anon_sym_GT_GT] = ACTIONS(4566), + [anon_sym___extension__] = ACTIONS(4564), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4564), + [anon_sym_LBRACK] = ACTIONS(4561), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_const] = ACTIONS(4559), + [anon_sym_constexpr] = ACTIONS(4564), + [anon_sym_volatile] = ACTIONS(4564), + [anon_sym_restrict] = ACTIONS(4564), + [anon_sym___restrict__] = ACTIONS(4564), + [anon_sym__Atomic] = ACTIONS(4564), + [anon_sym__Noreturn] = ACTIONS(4564), + [anon_sym_noreturn] = ACTIONS(4564), + [anon_sym_mutable] = ACTIONS(4564), + [anon_sym_constinit] = ACTIONS(4564), + [anon_sym_consteval] = ACTIONS(4564), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_STAR_EQ] = ACTIONS(4571), + [anon_sym_SLASH_EQ] = ACTIONS(4571), + [anon_sym_PERCENT_EQ] = ACTIONS(4571), + [anon_sym_PLUS_EQ] = ACTIONS(4571), + [anon_sym_DASH_EQ] = ACTIONS(4571), + [anon_sym_LT_LT_EQ] = ACTIONS(4571), + [anon_sym_GT_GT_EQ] = ACTIONS(4566), + [anon_sym_AMP_EQ] = ACTIONS(4571), + [anon_sym_CARET_EQ] = ACTIONS(4571), + [anon_sym_PIPE_EQ] = ACTIONS(4571), + [anon_sym_and_eq] = ACTIONS(4571), + [anon_sym_or_eq] = ACTIONS(4571), + [anon_sym_xor_eq] = ACTIONS(4571), + [anon_sym_LT_EQ_GT] = ACTIONS(4571), + [anon_sym_or] = ACTIONS(4566), + [anon_sym_and] = ACTIONS(4566), + [anon_sym_bitor] = ACTIONS(4571), + [anon_sym_xor] = ACTIONS(4566), + [anon_sym_bitand] = ACTIONS(4571), + [anon_sym_not_eq] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DOT] = ACTIONS(4566), + [anon_sym_DOT_STAR] = ACTIONS(4571), + [anon_sym_DASH_GT] = ACTIONS(4571), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4564), + [anon_sym_decltype] = ACTIONS(4564), + [anon_sym_GT2] = ACTIONS(4561), }, [1853] = { - [sym__expression] = STATE(5311), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(9606), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(3107), + [aux_sym_preproc_def_token1] = ACTIONS(3107), + [aux_sym_preproc_if_token1] = ACTIONS(3107), + [aux_sym_preproc_if_token2] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3107), + [aux_sym_preproc_else_token1] = ACTIONS(3107), + [aux_sym_preproc_elif_token1] = ACTIONS(3107), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3107), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3107), + [sym_preproc_directive] = ACTIONS(3107), + [anon_sym_LPAREN2] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3107), + [anon_sym___extension__] = ACTIONS(3107), + [anon_sym_typedef] = ACTIONS(3107), + [anon_sym_extern] = ACTIONS(3107), + [anon_sym___attribute__] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), + [anon_sym___declspec] = ACTIONS(3107), + [anon_sym___based] = ACTIONS(3107), + [anon_sym_signed] = ACTIONS(3107), + [anon_sym_unsigned] = ACTIONS(3107), + [anon_sym_long] = ACTIONS(3107), + [anon_sym_short] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_register] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym___inline] = ACTIONS(3107), + [anon_sym___inline__] = ACTIONS(3107), + [anon_sym___forceinline] = ACTIONS(3107), + [anon_sym_thread_local] = ACTIONS(3107), + [anon_sym___thread] = ACTIONS(3107), + [anon_sym_const] = ACTIONS(3107), + [anon_sym_constexpr] = ACTIONS(3107), + [anon_sym_volatile] = ACTIONS(3107), + [anon_sym_restrict] = ACTIONS(3107), + [anon_sym___restrict__] = ACTIONS(3107), + [anon_sym__Atomic] = ACTIONS(3107), + [anon_sym__Noreturn] = ACTIONS(3107), + [anon_sym_noreturn] = ACTIONS(3107), + [anon_sym_mutable] = ACTIONS(3107), + [anon_sym_constinit] = ACTIONS(3107), + [anon_sym_consteval] = ACTIONS(3107), + [sym_primitive_type] = ACTIONS(3107), + [anon_sym_enum] = ACTIONS(3107), + [anon_sym_class] = ACTIONS(3107), + [anon_sym_struct] = ACTIONS(3107), + [anon_sym_union] = ACTIONS(3107), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3107), + [anon_sym_decltype] = ACTIONS(3107), + [anon_sym_virtual] = ACTIONS(3107), + [anon_sym_alignas] = ACTIONS(3107), + [anon_sym_explicit] = ACTIONS(3107), + [anon_sym_typename] = ACTIONS(3107), + [anon_sym_template] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_friend] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_using] = ACTIONS(3107), + [anon_sym_static_assert] = ACTIONS(3107), }, [1854] = { - [sym__expression] = STATE(5167), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9435), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4531), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = 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_TILDE] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym___extension__] = ACTIONS(3111), + [anon_sym_typedef] = ACTIONS(3111), + [anon_sym_extern] = ACTIONS(3111), + [anon_sym___attribute__] = 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_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_mutable] = ACTIONS(3111), + [anon_sym_constinit] = ACTIONS(3111), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3111), + [anon_sym_decltype] = ACTIONS(3111), + [anon_sym_virtual] = ACTIONS(3111), + [anon_sym_alignas] = ACTIONS(3111), + [anon_sym_explicit] = ACTIONS(3111), + [anon_sym_typename] = ACTIONS(3111), + [anon_sym_template] = ACTIONS(3111), + [anon_sym_operator] = ACTIONS(3111), + [anon_sym_friend] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_using] = ACTIONS(3111), + [anon_sym_static_assert] = ACTIONS(3111), }, [1855] = { - [sym__expression] = STATE(5330), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(9619), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [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___extension__] = ACTIONS(3115), + [anon_sym_typedef] = ACTIONS(3115), + [anon_sym_extern] = ACTIONS(3115), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3115), + [anon_sym_constinit] = ACTIONS(3115), + [anon_sym_consteval] = 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), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3115), + [anon_sym_decltype] = ACTIONS(3115), + [anon_sym_virtual] = ACTIONS(3115), + [anon_sym_alignas] = ACTIONS(3115), + [anon_sym_explicit] = ACTIONS(3115), + [anon_sym_typename] = ACTIONS(3115), + [anon_sym_template] = ACTIONS(3115), + [anon_sym_operator] = ACTIONS(3115), + [anon_sym_friend] = ACTIONS(3115), + [anon_sym_public] = ACTIONS(3115), + [anon_sym_private] = ACTIONS(3115), + [anon_sym_protected] = ACTIONS(3115), + [anon_sym_using] = ACTIONS(3115), + [anon_sym_static_assert] = ACTIONS(3115), }, [1856] = { - [sym__expression] = STATE(5181), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8964), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(2884), + [aux_sym_preproc_def_token1] = ACTIONS(2884), + [aux_sym_preproc_if_token1] = ACTIONS(2884), + [aux_sym_preproc_if_token2] = ACTIONS(2884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2884), + [aux_sym_preproc_else_token1] = ACTIONS(2884), + [aux_sym_preproc_elif_token1] = ACTIONS(2884), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2884), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2884), + [sym_preproc_directive] = ACTIONS(2884), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym___extension__] = ACTIONS(2884), + [anon_sym_typedef] = ACTIONS(2884), + [anon_sym_extern] = ACTIONS(2884), + [anon_sym___attribute__] = ACTIONS(2884), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2886), + [anon_sym___declspec] = ACTIONS(2884), + [anon_sym___based] = ACTIONS(2884), + [anon_sym_signed] = ACTIONS(2884), + [anon_sym_unsigned] = ACTIONS(2884), + [anon_sym_long] = ACTIONS(2884), + [anon_sym_short] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(2884), + [anon_sym_register] = ACTIONS(2884), + [anon_sym_inline] = ACTIONS(2884), + [anon_sym___inline] = ACTIONS(2884), + [anon_sym___inline__] = ACTIONS(2884), + [anon_sym___forceinline] = ACTIONS(2884), + [anon_sym_thread_local] = ACTIONS(2884), + [anon_sym___thread] = ACTIONS(2884), + [anon_sym_const] = ACTIONS(2884), + [anon_sym_constexpr] = ACTIONS(2884), + [anon_sym_volatile] = ACTIONS(2884), + [anon_sym_restrict] = ACTIONS(2884), + [anon_sym___restrict__] = ACTIONS(2884), + [anon_sym__Atomic] = ACTIONS(2884), + [anon_sym__Noreturn] = ACTIONS(2884), + [anon_sym_noreturn] = ACTIONS(2884), + [anon_sym_mutable] = ACTIONS(2884), + [anon_sym_constinit] = ACTIONS(2884), + [anon_sym_consteval] = ACTIONS(2884), + [sym_primitive_type] = ACTIONS(2884), + [anon_sym_enum] = ACTIONS(2884), + [anon_sym_class] = ACTIONS(2884), + [anon_sym_struct] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2884), + [anon_sym_decltype] = ACTIONS(2884), + [anon_sym_virtual] = ACTIONS(2884), + [anon_sym_alignas] = ACTIONS(2884), + [anon_sym_explicit] = ACTIONS(2884), + [anon_sym_typename] = ACTIONS(2884), + [anon_sym_template] = ACTIONS(2884), + [anon_sym_operator] = ACTIONS(2884), + [anon_sym_friend] = ACTIONS(2884), + [anon_sym_public] = ACTIONS(2884), + [anon_sym_private] = ACTIONS(2884), + [anon_sym_protected] = ACTIONS(2884), + [anon_sym_using] = ACTIONS(2884), + [anon_sym_static_assert] = ACTIONS(2884), }, [1857] = { - [sym__expression] = STATE(4921), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8743), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [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___extension__] = ACTIONS(3119), + [anon_sym_typedef] = ACTIONS(3119), + [anon_sym_extern] = ACTIONS(3119), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3119), + [anon_sym_constinit] = ACTIONS(3119), + [anon_sym_consteval] = 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), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3119), + [anon_sym_decltype] = ACTIONS(3119), + [anon_sym_virtual] = ACTIONS(3119), + [anon_sym_alignas] = ACTIONS(3119), + [anon_sym_explicit] = ACTIONS(3119), + [anon_sym_typename] = ACTIONS(3119), + [anon_sym_template] = ACTIONS(3119), + [anon_sym_operator] = ACTIONS(3119), + [anon_sym_friend] = ACTIONS(3119), + [anon_sym_public] = ACTIONS(3119), + [anon_sym_private] = ACTIONS(3119), + [anon_sym_protected] = ACTIONS(3119), + [anon_sym_using] = ACTIONS(3119), + [anon_sym_static_assert] = ACTIONS(3119), }, [1858] = { - [sym__expression] = STATE(5171), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_initializer_list] = STATE(4832), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_type_qualifier] = STATE(1858), + [aux_sym__type_definition_type_repeat1] = STATE(1858), + [sym_identifier] = ACTIONS(4899), + [anon_sym_LPAREN2] = ACTIONS(4901), + [anon_sym_BANG] = ACTIONS(4901), + [anon_sym_TILDE] = ACTIONS(4901), + [anon_sym_DASH] = ACTIONS(4899), + [anon_sym_PLUS] = ACTIONS(4899), + [anon_sym_STAR] = ACTIONS(4901), + [anon_sym_AMP] = ACTIONS(4901), + [anon_sym___extension__] = ACTIONS(4903), + [anon_sym_COLON_COLON] = ACTIONS(4901), + [anon_sym_LBRACK] = ACTIONS(4901), + [anon_sym_RBRACK] = ACTIONS(4901), + [anon_sym_const] = ACTIONS(4903), + [anon_sym_constexpr] = ACTIONS(4903), + [anon_sym_volatile] = ACTIONS(4903), + [anon_sym_restrict] = ACTIONS(4903), + [anon_sym___restrict__] = ACTIONS(4903), + [anon_sym__Atomic] = ACTIONS(4903), + [anon_sym__Noreturn] = ACTIONS(4903), + [anon_sym_noreturn] = ACTIONS(4903), + [anon_sym_mutable] = ACTIONS(4903), + [anon_sym_constinit] = ACTIONS(4903), + [anon_sym_consteval] = ACTIONS(4903), + [sym_primitive_type] = ACTIONS(4899), + [anon_sym_not] = ACTIONS(4899), + [anon_sym_compl] = ACTIONS(4899), + [anon_sym_DASH_DASH] = ACTIONS(4901), + [anon_sym_PLUS_PLUS] = ACTIONS(4901), + [anon_sym_sizeof] = ACTIONS(4899), + [anon_sym___alignof__] = ACTIONS(4899), + [anon_sym___alignof] = ACTIONS(4899), + [anon_sym__alignof] = ACTIONS(4899), + [anon_sym_alignof] = ACTIONS(4899), + [anon_sym__Alignof] = ACTIONS(4899), + [anon_sym_offsetof] = ACTIONS(4899), + [anon_sym__Generic] = ACTIONS(4899), + [anon_sym_asm] = ACTIONS(4899), + [anon_sym___asm__] = ACTIONS(4899), + [sym_number_literal] = ACTIONS(4901), + [anon_sym_L_SQUOTE] = ACTIONS(4901), + [anon_sym_u_SQUOTE] = ACTIONS(4901), + [anon_sym_U_SQUOTE] = ACTIONS(4901), + [anon_sym_u8_SQUOTE] = ACTIONS(4901), + [anon_sym_SQUOTE] = ACTIONS(4901), + [anon_sym_L_DQUOTE] = ACTIONS(4901), + [anon_sym_u_DQUOTE] = ACTIONS(4901), + [anon_sym_U_DQUOTE] = ACTIONS(4901), + [anon_sym_u8_DQUOTE] = ACTIONS(4901), + [anon_sym_DQUOTE] = ACTIONS(4901), + [sym_true] = ACTIONS(4899), + [sym_false] = ACTIONS(4899), + [anon_sym_NULL] = ACTIONS(4899), + [anon_sym_nullptr] = ACTIONS(4899), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(4899), + [anon_sym_template] = ACTIONS(4899), + [anon_sym_delete] = ACTIONS(4899), + [anon_sym_R_DQUOTE] = ACTIONS(4901), + [anon_sym_LR_DQUOTE] = ACTIONS(4901), + [anon_sym_uR_DQUOTE] = ACTIONS(4901), + [anon_sym_UR_DQUOTE] = ACTIONS(4901), + [anon_sym_u8R_DQUOTE] = ACTIONS(4901), + [anon_sym_co_await] = ACTIONS(4899), + [anon_sym_new] = ACTIONS(4899), + [anon_sym_requires] = ACTIONS(4899), + [sym_this] = ACTIONS(4899), }, [1859] = { - [sym__expression] = STATE(5111), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9468), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4535), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(1969), + [sym_template_argument_list] = STATE(2944), + [sym_raw_string_literal] = STATE(1969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_RPAREN] = ACTIONS(4860), + [anon_sym_LPAREN2] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4865), + [anon_sym_EQ] = ACTIONS(4069), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4061), + [anon_sym_SLASH_EQ] = ACTIONS(4061), + [anon_sym_PERCENT_EQ] = ACTIONS(4061), + [anon_sym_PLUS_EQ] = ACTIONS(4061), + [anon_sym_DASH_EQ] = ACTIONS(4061), + [anon_sym_LT_LT_EQ] = ACTIONS(4061), + [anon_sym_GT_GT_EQ] = ACTIONS(4061), + [anon_sym_AMP_EQ] = ACTIONS(4061), + [anon_sym_CARET_EQ] = ACTIONS(4061), + [anon_sym_PIPE_EQ] = ACTIONS(4061), + [anon_sym_and_eq] = ACTIONS(4061), + [anon_sym_or_eq] = ACTIONS(4061), + [anon_sym_xor_eq] = ACTIONS(4061), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4069), + [anon_sym_L_DQUOTE] = ACTIONS(4909), + [anon_sym_u_DQUOTE] = ACTIONS(4909), + [anon_sym_U_DQUOTE] = ACTIONS(4909), + [anon_sym_u8_DQUOTE] = ACTIONS(4909), + [anon_sym_DQUOTE] = ACTIONS(4909), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4911), + [anon_sym_LR_DQUOTE] = ACTIONS(4911), + [anon_sym_uR_DQUOTE] = ACTIONS(4911), + [anon_sym_UR_DQUOTE] = ACTIONS(4911), + [anon_sym_u8R_DQUOTE] = ACTIONS(4911), + [anon_sym_DASH_GT_STAR] = ACTIONS(4061), }, [1860] = { - [sym__expression] = STATE(5246), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(9131), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3172), + [aux_sym_preproc_def_token1] = ACTIONS(3172), + [aux_sym_preproc_if_token1] = ACTIONS(3172), + [aux_sym_preproc_if_token2] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3172), + [aux_sym_preproc_else_token1] = ACTIONS(3172), + [aux_sym_preproc_elif_token1] = ACTIONS(3172), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3172), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3172), + [sym_preproc_directive] = ACTIONS(3172), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym___extension__] = ACTIONS(3172), + [anon_sym_typedef] = ACTIONS(3172), + [anon_sym_extern] = ACTIONS(3172), + [anon_sym___attribute__] = ACTIONS(3172), + [anon_sym_COLON_COLON] = ACTIONS(3174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3174), + [anon_sym___declspec] = ACTIONS(3172), + [anon_sym___based] = ACTIONS(3172), + [anon_sym_signed] = ACTIONS(3172), + [anon_sym_unsigned] = ACTIONS(3172), + [anon_sym_long] = ACTIONS(3172), + [anon_sym_short] = ACTIONS(3172), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3172), + [anon_sym_register] = ACTIONS(3172), + [anon_sym_inline] = ACTIONS(3172), + [anon_sym___inline] = ACTIONS(3172), + [anon_sym___inline__] = ACTIONS(3172), + [anon_sym___forceinline] = ACTIONS(3172), + [anon_sym_thread_local] = ACTIONS(3172), + [anon_sym___thread] = ACTIONS(3172), + [anon_sym_const] = ACTIONS(3172), + [anon_sym_constexpr] = ACTIONS(3172), + [anon_sym_volatile] = ACTIONS(3172), + [anon_sym_restrict] = ACTIONS(3172), + [anon_sym___restrict__] = ACTIONS(3172), + [anon_sym__Atomic] = ACTIONS(3172), + [anon_sym__Noreturn] = ACTIONS(3172), + [anon_sym_noreturn] = ACTIONS(3172), + [anon_sym_mutable] = ACTIONS(3172), + [anon_sym_constinit] = ACTIONS(3172), + [anon_sym_consteval] = ACTIONS(3172), + [sym_primitive_type] = ACTIONS(3172), + [anon_sym_enum] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3172), + [anon_sym_union] = ACTIONS(3172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3172), + [anon_sym_decltype] = ACTIONS(3172), + [anon_sym_virtual] = ACTIONS(3172), + [anon_sym_alignas] = ACTIONS(3172), + [anon_sym_explicit] = ACTIONS(3172), + [anon_sym_typename] = ACTIONS(3172), + [anon_sym_template] = ACTIONS(3172), + [anon_sym_operator] = ACTIONS(3172), + [anon_sym_friend] = ACTIONS(3172), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3172), + [anon_sym_static_assert] = ACTIONS(3172), }, [1861] = { - [sym__expression] = STATE(5198), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8927), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4537), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4915), + [anon_sym_COMMA] = ACTIONS(4915), + [anon_sym_RPAREN] = ACTIONS(4915), + [anon_sym_LPAREN2] = ACTIONS(4915), + [anon_sym_DASH] = ACTIONS(4913), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_STAR] = ACTIONS(4915), + [anon_sym_SLASH] = ACTIONS(4913), + [anon_sym_PERCENT] = ACTIONS(4915), + [anon_sym_PIPE_PIPE] = ACTIONS(4915), + [anon_sym_AMP_AMP] = ACTIONS(4915), + [anon_sym_PIPE] = ACTIONS(4913), + [anon_sym_CARET] = ACTIONS(4915), + [anon_sym_AMP] = ACTIONS(4913), + [anon_sym_EQ_EQ] = ACTIONS(4915), + [anon_sym_BANG_EQ] = ACTIONS(4915), + [anon_sym_GT] = ACTIONS(4913), + [anon_sym_GT_EQ] = ACTIONS(4915), + [anon_sym_LT_EQ] = ACTIONS(4913), + [anon_sym_LT] = ACTIONS(4913), + [anon_sym_LT_LT] = ACTIONS(4915), + [anon_sym_GT_GT] = ACTIONS(4915), + [anon_sym_SEMI] = ACTIONS(4915), + [anon_sym___extension__] = ACTIONS(4913), + [anon_sym___attribute__] = ACTIONS(4913), + [anon_sym_COLON_COLON] = ACTIONS(4917), + [anon_sym___based] = ACTIONS(4913), + [anon_sym_LBRACE] = ACTIONS(4915), + [anon_sym_RBRACE] = ACTIONS(4915), + [anon_sym_signed] = ACTIONS(4913), + [anon_sym_unsigned] = ACTIONS(4913), + [anon_sym_long] = ACTIONS(4913), + [anon_sym_short] = ACTIONS(4913), + [anon_sym_LBRACK] = ACTIONS(4915), + [anon_sym_RBRACK] = ACTIONS(4915), + [anon_sym_const] = ACTIONS(4913), + [anon_sym_constexpr] = ACTIONS(4913), + [anon_sym_volatile] = ACTIONS(4913), + [anon_sym_restrict] = ACTIONS(4913), + [anon_sym___restrict__] = ACTIONS(4913), + [anon_sym__Atomic] = ACTIONS(4913), + [anon_sym__Noreturn] = ACTIONS(4913), + [anon_sym_noreturn] = ACTIONS(4913), + [anon_sym_mutable] = ACTIONS(4913), + [anon_sym_constinit] = ACTIONS(4913), + [anon_sym_consteval] = ACTIONS(4913), + [sym_primitive_type] = ACTIONS(4913), + [anon_sym_COLON] = ACTIONS(4913), + [anon_sym_QMARK] = ACTIONS(4915), + [anon_sym_LT_EQ_GT] = ACTIONS(4915), + [anon_sym_or] = ACTIONS(4913), + [anon_sym_and] = ACTIONS(4913), + [anon_sym_bitor] = ACTIONS(4913), + [anon_sym_xor] = ACTIONS(4913), + [anon_sym_bitand] = ACTIONS(4913), + [anon_sym_not_eq] = ACTIONS(4913), + [anon_sym_DASH_DASH] = ACTIONS(4915), + [anon_sym_PLUS_PLUS] = ACTIONS(4915), + [anon_sym_DOT] = ACTIONS(4913), + [anon_sym_DOT_STAR] = ACTIONS(4915), + [anon_sym_DASH_GT] = ACTIONS(4915), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4913), + [anon_sym_decltype] = ACTIONS(4913), + [anon_sym_final] = ACTIONS(4913), + [anon_sym_override] = ACTIONS(4913), + [anon_sym_requires] = ACTIONS(4913), }, [1862] = { - [sym__expression] = STATE(5219), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8924), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4539), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token2] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [aux_sym_preproc_else_token1] = ACTIONS(2138), + [aux_sym_preproc_elif_token1] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2828), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(4836), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_friend] = ACTIONS(2138), + [anon_sym_public] = ACTIONS(2138), + [anon_sym_private] = ACTIONS(2138), + [anon_sym_protected] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), }, [1863] = { - [sym__expression] = STATE(5247), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(9118), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3176), + [aux_sym_preproc_def_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token2] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), + [aux_sym_preproc_else_token1] = ACTIONS(3176), + [aux_sym_preproc_elif_token1] = ACTIONS(3176), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3176), + [sym_preproc_directive] = ACTIONS(3176), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3176), + [anon_sym___extension__] = ACTIONS(3176), + [anon_sym_typedef] = ACTIONS(3176), + [anon_sym_extern] = ACTIONS(3176), + [anon_sym___attribute__] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(3178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), + [anon_sym___declspec] = ACTIONS(3176), + [anon_sym___based] = ACTIONS(3176), + [anon_sym_signed] = ACTIONS(3176), + [anon_sym_unsigned] = ACTIONS(3176), + [anon_sym_long] = ACTIONS(3176), + [anon_sym_short] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_register] = ACTIONS(3176), + [anon_sym_inline] = ACTIONS(3176), + [anon_sym___inline] = ACTIONS(3176), + [anon_sym___inline__] = ACTIONS(3176), + [anon_sym___forceinline] = ACTIONS(3176), + [anon_sym_thread_local] = ACTIONS(3176), + [anon_sym___thread] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_constexpr] = ACTIONS(3176), + [anon_sym_volatile] = ACTIONS(3176), + [anon_sym_restrict] = ACTIONS(3176), + [anon_sym___restrict__] = ACTIONS(3176), + [anon_sym__Atomic] = ACTIONS(3176), + [anon_sym__Noreturn] = ACTIONS(3176), + [anon_sym_noreturn] = ACTIONS(3176), + [anon_sym_mutable] = ACTIONS(3176), + [anon_sym_constinit] = ACTIONS(3176), + [anon_sym_consteval] = ACTIONS(3176), + [sym_primitive_type] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3176), + [anon_sym_virtual] = ACTIONS(3176), + [anon_sym_alignas] = ACTIONS(3176), + [anon_sym_explicit] = ACTIONS(3176), + [anon_sym_typename] = ACTIONS(3176), + [anon_sym_template] = ACTIONS(3176), + [anon_sym_operator] = ACTIONS(3176), + [anon_sym_friend] = ACTIONS(3176), + [anon_sym_public] = ACTIONS(3176), + [anon_sym_private] = ACTIONS(3176), + [anon_sym_protected] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_static_assert] = ACTIONS(3176), }, [1864] = { - [sym__expression] = STATE(4777), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_initializer_list] = STATE(4789), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4919), + [aux_sym_preproc_def_token1] = ACTIONS(4919), + [aux_sym_preproc_if_token1] = ACTIONS(4919), + [aux_sym_preproc_if_token2] = ACTIONS(4919), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4919), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4919), + [aux_sym_preproc_else_token1] = ACTIONS(4919), + [aux_sym_preproc_elif_token1] = ACTIONS(4919), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4919), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4919), + [sym_preproc_directive] = ACTIONS(4919), + [anon_sym_LPAREN2] = ACTIONS(4921), + [anon_sym_TILDE] = ACTIONS(4921), + [anon_sym_STAR] = ACTIONS(4921), + [anon_sym_AMP_AMP] = ACTIONS(4921), + [anon_sym_AMP] = ACTIONS(4919), + [anon_sym___extension__] = ACTIONS(4919), + [anon_sym_typedef] = ACTIONS(4919), + [anon_sym_extern] = ACTIONS(4919), + [anon_sym___attribute__] = ACTIONS(4919), + [anon_sym_COLON_COLON] = ACTIONS(4921), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4921), + [anon_sym___declspec] = ACTIONS(4919), + [anon_sym___based] = ACTIONS(4919), + [anon_sym_signed] = ACTIONS(4919), + [anon_sym_unsigned] = ACTIONS(4919), + [anon_sym_long] = ACTIONS(4919), + [anon_sym_short] = ACTIONS(4919), + [anon_sym_LBRACK] = ACTIONS(4919), + [anon_sym_static] = ACTIONS(4919), + [anon_sym_register] = ACTIONS(4919), + [anon_sym_inline] = ACTIONS(4919), + [anon_sym___inline] = ACTIONS(4919), + [anon_sym___inline__] = ACTIONS(4919), + [anon_sym___forceinline] = ACTIONS(4919), + [anon_sym_thread_local] = ACTIONS(4919), + [anon_sym___thread] = ACTIONS(4919), + [anon_sym_const] = ACTIONS(4919), + [anon_sym_constexpr] = ACTIONS(4919), + [anon_sym_volatile] = ACTIONS(4919), + [anon_sym_restrict] = ACTIONS(4919), + [anon_sym___restrict__] = ACTIONS(4919), + [anon_sym__Atomic] = ACTIONS(4919), + [anon_sym__Noreturn] = ACTIONS(4919), + [anon_sym_noreturn] = ACTIONS(4919), + [anon_sym_mutable] = ACTIONS(4919), + [anon_sym_constinit] = ACTIONS(4919), + [anon_sym_consteval] = ACTIONS(4919), + [sym_primitive_type] = ACTIONS(4919), + [anon_sym_enum] = ACTIONS(4919), + [anon_sym_class] = ACTIONS(4919), + [anon_sym_struct] = ACTIONS(4919), + [anon_sym_union] = ACTIONS(4919), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4919), + [anon_sym_decltype] = ACTIONS(4919), + [anon_sym_virtual] = ACTIONS(4919), + [anon_sym_alignas] = ACTIONS(4919), + [anon_sym_explicit] = ACTIONS(4919), + [anon_sym_typename] = ACTIONS(4919), + [anon_sym_template] = ACTIONS(4919), + [anon_sym_operator] = ACTIONS(4919), + [anon_sym_friend] = ACTIONS(4919), + [anon_sym_public] = ACTIONS(4919), + [anon_sym_private] = ACTIONS(4919), + [anon_sym_protected] = ACTIONS(4919), + [anon_sym_using] = ACTIONS(4919), + [anon_sym_static_assert] = ACTIONS(4919), }, [1865] = { - [sym__expression] = STATE(5116), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(8743), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(2997), + [aux_sym_preproc_def_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token2] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2997), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2997), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2997), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2997), + [sym_preproc_directive] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym___extension__] = ACTIONS(2997), + [anon_sym_typedef] = ACTIONS(2997), + [anon_sym_extern] = ACTIONS(2997), + [anon_sym___attribute__] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2999), + [anon_sym___declspec] = ACTIONS(2997), + [anon_sym___based] = ACTIONS(2997), + [anon_sym_signed] = ACTIONS(2997), + [anon_sym_unsigned] = ACTIONS(2997), + [anon_sym_long] = ACTIONS(2997), + [anon_sym_short] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(2997), + [anon_sym_register] = ACTIONS(2997), + [anon_sym_inline] = ACTIONS(2997), + [anon_sym___inline] = ACTIONS(2997), + [anon_sym___inline__] = ACTIONS(2997), + [anon_sym___forceinline] = ACTIONS(2997), + [anon_sym_thread_local] = ACTIONS(2997), + [anon_sym___thread] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_volatile] = ACTIONS(2997), + [anon_sym_restrict] = ACTIONS(2997), + [anon_sym___restrict__] = ACTIONS(2997), + [anon_sym__Atomic] = ACTIONS(2997), + [anon_sym__Noreturn] = ACTIONS(2997), + [anon_sym_noreturn] = ACTIONS(2997), + [anon_sym_mutable] = ACTIONS(2997), + [anon_sym_constinit] = ACTIONS(2997), + [anon_sym_consteval] = ACTIONS(2997), + [sym_primitive_type] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_class] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2997), + [anon_sym_decltype] = ACTIONS(2997), + [anon_sym_virtual] = ACTIONS(2997), + [anon_sym_alignas] = ACTIONS(2997), + [anon_sym_explicit] = ACTIONS(2997), + [anon_sym_typename] = ACTIONS(2997), + [anon_sym_template] = ACTIONS(2997), + [anon_sym_operator] = ACTIONS(2997), + [anon_sym_friend] = ACTIONS(2997), + [anon_sym_public] = ACTIONS(2997), + [anon_sym_private] = ACTIONS(2997), + [anon_sym_protected] = ACTIONS(2997), + [anon_sym_using] = ACTIONS(2997), + [anon_sym_static_assert] = ACTIONS(2997), }, [1866] = { - [sym__expression] = STATE(5123), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9459), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4541), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4923), + [aux_sym_preproc_def_token1] = ACTIONS(4923), + [aux_sym_preproc_if_token1] = ACTIONS(4923), + [aux_sym_preproc_if_token2] = ACTIONS(4923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4923), + [aux_sym_preproc_else_token1] = ACTIONS(4923), + [aux_sym_preproc_elif_token1] = ACTIONS(4923), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4923), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4923), + [sym_preproc_directive] = ACTIONS(4923), + [anon_sym_LPAREN2] = ACTIONS(4925), + [anon_sym_TILDE] = ACTIONS(4925), + [anon_sym_STAR] = ACTIONS(4925), + [anon_sym_AMP_AMP] = ACTIONS(4925), + [anon_sym_AMP] = ACTIONS(4923), + [anon_sym___extension__] = ACTIONS(4923), + [anon_sym_typedef] = ACTIONS(4923), + [anon_sym_extern] = ACTIONS(4923), + [anon_sym___attribute__] = ACTIONS(4923), + [anon_sym_COLON_COLON] = ACTIONS(4925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4925), + [anon_sym___declspec] = ACTIONS(4923), + [anon_sym___based] = ACTIONS(4923), + [anon_sym_signed] = ACTIONS(4923), + [anon_sym_unsigned] = ACTIONS(4923), + [anon_sym_long] = ACTIONS(4923), + [anon_sym_short] = ACTIONS(4923), + [anon_sym_LBRACK] = ACTIONS(4923), + [anon_sym_static] = ACTIONS(4923), + [anon_sym_register] = ACTIONS(4923), + [anon_sym_inline] = ACTIONS(4923), + [anon_sym___inline] = ACTIONS(4923), + [anon_sym___inline__] = ACTIONS(4923), + [anon_sym___forceinline] = ACTIONS(4923), + [anon_sym_thread_local] = ACTIONS(4923), + [anon_sym___thread] = ACTIONS(4923), + [anon_sym_const] = ACTIONS(4923), + [anon_sym_constexpr] = ACTIONS(4923), + [anon_sym_volatile] = ACTIONS(4923), + [anon_sym_restrict] = ACTIONS(4923), + [anon_sym___restrict__] = ACTIONS(4923), + [anon_sym__Atomic] = ACTIONS(4923), + [anon_sym__Noreturn] = ACTIONS(4923), + [anon_sym_noreturn] = ACTIONS(4923), + [anon_sym_mutable] = ACTIONS(4923), + [anon_sym_constinit] = ACTIONS(4923), + [anon_sym_consteval] = ACTIONS(4923), + [sym_primitive_type] = ACTIONS(4923), + [anon_sym_enum] = ACTIONS(4923), + [anon_sym_class] = ACTIONS(4923), + [anon_sym_struct] = ACTIONS(4923), + [anon_sym_union] = ACTIONS(4923), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4923), + [anon_sym_decltype] = ACTIONS(4923), + [anon_sym_virtual] = ACTIONS(4923), + [anon_sym_alignas] = ACTIONS(4923), + [anon_sym_explicit] = ACTIONS(4923), + [anon_sym_typename] = ACTIONS(4923), + [anon_sym_template] = ACTIONS(4923), + [anon_sym_operator] = ACTIONS(4923), + [anon_sym_friend] = ACTIONS(4923), + [anon_sym_public] = ACTIONS(4923), + [anon_sym_private] = ACTIONS(4923), + [anon_sym_protected] = ACTIONS(4923), + [anon_sym_using] = ACTIONS(4923), + [anon_sym_static_assert] = ACTIONS(4923), }, [1867] = { - [sym__expression] = STATE(5000), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8648), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4543), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3180), + [aux_sym_preproc_def_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token2] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3180), + [aux_sym_preproc_else_token1] = ACTIONS(3180), + [aux_sym_preproc_elif_token1] = ACTIONS(3180), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3180), + [sym_preproc_directive] = ACTIONS(3180), + [anon_sym_LPAREN2] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym___extension__] = ACTIONS(3180), + [anon_sym_typedef] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(3180), + [anon_sym___attribute__] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3182), + [anon_sym___declspec] = ACTIONS(3180), + [anon_sym___based] = ACTIONS(3180), + [anon_sym_signed] = ACTIONS(3180), + [anon_sym_unsigned] = ACTIONS(3180), + [anon_sym_long] = ACTIONS(3180), + [anon_sym_short] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_register] = ACTIONS(3180), + [anon_sym_inline] = ACTIONS(3180), + [anon_sym___inline] = ACTIONS(3180), + [anon_sym___inline__] = ACTIONS(3180), + [anon_sym___forceinline] = ACTIONS(3180), + [anon_sym_thread_local] = ACTIONS(3180), + [anon_sym___thread] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym___restrict__] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym__Noreturn] = ACTIONS(3180), + [anon_sym_noreturn] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3180), + [anon_sym_union] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3180), + [anon_sym_decltype] = ACTIONS(3180), + [anon_sym_virtual] = ACTIONS(3180), + [anon_sym_alignas] = ACTIONS(3180), + [anon_sym_explicit] = ACTIONS(3180), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(3180), + [anon_sym_operator] = ACTIONS(3180), + [anon_sym_friend] = ACTIONS(3180), + [anon_sym_public] = ACTIONS(3180), + [anon_sym_private] = ACTIONS(3180), + [anon_sym_protected] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_static_assert] = ACTIONS(3180), }, [1868] = { - [sym__expression] = STATE(4896), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(4832), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4927), + [aux_sym_preproc_def_token1] = ACTIONS(4927), + [aux_sym_preproc_if_token1] = ACTIONS(4927), + [aux_sym_preproc_if_token2] = ACTIONS(4927), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4927), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4927), + [aux_sym_preproc_else_token1] = ACTIONS(4927), + [aux_sym_preproc_elif_token1] = ACTIONS(4927), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4927), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4927), + [sym_preproc_directive] = ACTIONS(4927), + [anon_sym_LPAREN2] = ACTIONS(4929), + [anon_sym_TILDE] = ACTIONS(4929), + [anon_sym_STAR] = ACTIONS(4929), + [anon_sym_AMP_AMP] = ACTIONS(4929), + [anon_sym_AMP] = ACTIONS(4927), + [anon_sym___extension__] = ACTIONS(4927), + [anon_sym_typedef] = ACTIONS(4927), + [anon_sym_extern] = ACTIONS(4927), + [anon_sym___attribute__] = ACTIONS(4927), + [anon_sym_COLON_COLON] = ACTIONS(4929), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4929), + [anon_sym___declspec] = ACTIONS(4927), + [anon_sym___based] = ACTIONS(4927), + [anon_sym_signed] = ACTIONS(4927), + [anon_sym_unsigned] = ACTIONS(4927), + [anon_sym_long] = ACTIONS(4927), + [anon_sym_short] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4927), + [anon_sym_static] = ACTIONS(4927), + [anon_sym_register] = ACTIONS(4927), + [anon_sym_inline] = ACTIONS(4927), + [anon_sym___inline] = ACTIONS(4927), + [anon_sym___inline__] = ACTIONS(4927), + [anon_sym___forceinline] = ACTIONS(4927), + [anon_sym_thread_local] = ACTIONS(4927), + [anon_sym___thread] = ACTIONS(4927), + [anon_sym_const] = ACTIONS(4927), + [anon_sym_constexpr] = ACTIONS(4927), + [anon_sym_volatile] = ACTIONS(4927), + [anon_sym_restrict] = ACTIONS(4927), + [anon_sym___restrict__] = ACTIONS(4927), + [anon_sym__Atomic] = ACTIONS(4927), + [anon_sym__Noreturn] = ACTIONS(4927), + [anon_sym_noreturn] = ACTIONS(4927), + [anon_sym_mutable] = ACTIONS(4927), + [anon_sym_constinit] = ACTIONS(4927), + [anon_sym_consteval] = ACTIONS(4927), + [sym_primitive_type] = ACTIONS(4927), + [anon_sym_enum] = ACTIONS(4927), + [anon_sym_class] = ACTIONS(4927), + [anon_sym_struct] = ACTIONS(4927), + [anon_sym_union] = ACTIONS(4927), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4927), + [anon_sym_decltype] = ACTIONS(4927), + [anon_sym_virtual] = ACTIONS(4927), + [anon_sym_alignas] = ACTIONS(4927), + [anon_sym_explicit] = ACTIONS(4927), + [anon_sym_typename] = ACTIONS(4927), + [anon_sym_template] = ACTIONS(4927), + [anon_sym_operator] = ACTIONS(4927), + [anon_sym_friend] = ACTIONS(4927), + [anon_sym_public] = ACTIONS(4927), + [anon_sym_private] = ACTIONS(4927), + [anon_sym_protected] = ACTIONS(4927), + [anon_sym_using] = ACTIONS(4927), + [anon_sym_static_assert] = ACTIONS(4927), }, [1869] = { - [sym__expression] = STATE(5346), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_initializer_list] = STATE(9122), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4539), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4541), + [anon_sym_COMMA] = ACTIONS(4541), + [anon_sym_RPAREN] = ACTIONS(4541), + [anon_sym_LPAREN2] = ACTIONS(4541), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_STAR] = ACTIONS(4541), + [anon_sym_SLASH] = ACTIONS(4539), + [anon_sym_PERCENT] = ACTIONS(4541), + [anon_sym_PIPE_PIPE] = ACTIONS(4541), + [anon_sym_AMP_AMP] = ACTIONS(4541), + [anon_sym_PIPE] = ACTIONS(4539), + [anon_sym_CARET] = ACTIONS(4541), + [anon_sym_AMP] = ACTIONS(4539), + [anon_sym_EQ_EQ] = ACTIONS(4541), + [anon_sym_BANG_EQ] = ACTIONS(4541), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_GT_EQ] = ACTIONS(4541), + [anon_sym_LT_EQ] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(4539), + [anon_sym_LT_LT] = ACTIONS(4541), + [anon_sym_GT_GT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(4541), + [anon_sym___extension__] = ACTIONS(4539), + [anon_sym___attribute__] = ACTIONS(4539), + [anon_sym_COLON_COLON] = ACTIONS(4541), + [anon_sym___based] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_RBRACE] = ACTIONS(4541), + [anon_sym_signed] = ACTIONS(4539), + [anon_sym_unsigned] = ACTIONS(4539), + [anon_sym_long] = ACTIONS(4539), + [anon_sym_short] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4541), + [anon_sym_RBRACK] = ACTIONS(4541), + [anon_sym_const] = ACTIONS(4539), + [anon_sym_constexpr] = ACTIONS(4539), + [anon_sym_volatile] = ACTIONS(4539), + [anon_sym_restrict] = ACTIONS(4539), + [anon_sym___restrict__] = ACTIONS(4539), + [anon_sym__Atomic] = ACTIONS(4539), + [anon_sym__Noreturn] = ACTIONS(4539), + [anon_sym_noreturn] = ACTIONS(4539), + [anon_sym_mutable] = ACTIONS(4539), + [anon_sym_constinit] = ACTIONS(4539), + [anon_sym_consteval] = ACTIONS(4539), + [sym_primitive_type] = ACTIONS(4539), + [anon_sym_COLON] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_LT_EQ_GT] = ACTIONS(4541), + [anon_sym_or] = ACTIONS(4539), + [anon_sym_and] = ACTIONS(4539), + [anon_sym_bitor] = ACTIONS(4539), + [anon_sym_xor] = ACTIONS(4539), + [anon_sym_bitand] = ACTIONS(4539), + [anon_sym_not_eq] = ACTIONS(4539), + [anon_sym_DASH_DASH] = ACTIONS(4541), + [anon_sym_PLUS_PLUS] = ACTIONS(4541), + [anon_sym_DOT] = ACTIONS(4539), + [anon_sym_DOT_STAR] = ACTIONS(4541), + [anon_sym_DASH_GT] = ACTIONS(4541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4539), + [anon_sym_decltype] = ACTIONS(4539), + [anon_sym_final] = ACTIONS(4539), + [anon_sym_override] = ACTIONS(4539), + [anon_sym_requires] = ACTIONS(4539), }, [1870] = { - [sym__expression] = STATE(5127), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9441), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4546), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4578), + [anon_sym_COMMA] = ACTIONS(4578), + [anon_sym_RPAREN] = ACTIONS(4578), + [anon_sym_LPAREN2] = ACTIONS(4578), + [anon_sym_DASH] = ACTIONS(4576), + [anon_sym_PLUS] = ACTIONS(4576), + [anon_sym_STAR] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4576), + [anon_sym_PERCENT] = ACTIONS(4578), + [anon_sym_PIPE_PIPE] = ACTIONS(4578), + [anon_sym_AMP_AMP] = ACTIONS(4578), + [anon_sym_PIPE] = ACTIONS(4576), + [anon_sym_CARET] = ACTIONS(4578), + [anon_sym_AMP] = ACTIONS(4576), + [anon_sym_EQ_EQ] = ACTIONS(4578), + [anon_sym_BANG_EQ] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4576), + [anon_sym_GT_EQ] = ACTIONS(4578), + [anon_sym_LT_EQ] = ACTIONS(4576), + [anon_sym_LT] = ACTIONS(4576), + [anon_sym_LT_LT] = ACTIONS(4578), + [anon_sym_GT_GT] = ACTIONS(4578), + [anon_sym_SEMI] = ACTIONS(4578), + [anon_sym___extension__] = ACTIONS(4576), + [anon_sym___attribute__] = ACTIONS(4576), + [anon_sym_COLON_COLON] = ACTIONS(4578), + [anon_sym___based] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4578), + [anon_sym_RBRACE] = ACTIONS(4578), + [anon_sym_signed] = ACTIONS(4576), + [anon_sym_unsigned] = ACTIONS(4576), + [anon_sym_long] = ACTIONS(4576), + [anon_sym_short] = ACTIONS(4576), + [anon_sym_LBRACK] = ACTIONS(4578), + [anon_sym_RBRACK] = ACTIONS(4578), + [anon_sym_const] = ACTIONS(4576), + [anon_sym_constexpr] = ACTIONS(4576), + [anon_sym_volatile] = ACTIONS(4576), + [anon_sym_restrict] = ACTIONS(4576), + [anon_sym___restrict__] = ACTIONS(4576), + [anon_sym__Atomic] = ACTIONS(4576), + [anon_sym__Noreturn] = ACTIONS(4576), + [anon_sym_noreturn] = ACTIONS(4576), + [anon_sym_mutable] = ACTIONS(4576), + [anon_sym_constinit] = ACTIONS(4576), + [anon_sym_consteval] = ACTIONS(4576), + [sym_primitive_type] = ACTIONS(4576), + [anon_sym_COLON] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4578), + [anon_sym_LT_EQ_GT] = ACTIONS(4578), + [anon_sym_or] = ACTIONS(4576), + [anon_sym_and] = ACTIONS(4576), + [anon_sym_bitor] = ACTIONS(4576), + [anon_sym_xor] = ACTIONS(4576), + [anon_sym_bitand] = ACTIONS(4576), + [anon_sym_not_eq] = ACTIONS(4576), + [anon_sym_DASH_DASH] = ACTIONS(4578), + [anon_sym_PLUS_PLUS] = ACTIONS(4578), + [anon_sym_DOT] = ACTIONS(4576), + [anon_sym_DOT_STAR] = ACTIONS(4578), + [anon_sym_DASH_GT] = ACTIONS(4578), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4576), + [anon_sym_decltype] = ACTIONS(4576), + [anon_sym_final] = ACTIONS(4576), + [anon_sym_override] = ACTIONS(4576), + [anon_sym_requires] = ACTIONS(4576), }, [1871] = { - [sym__expression] = STATE(4253), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_initializer_list] = STATE(4442), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(3188), + [aux_sym_preproc_def_token1] = ACTIONS(3188), + [aux_sym_preproc_if_token1] = ACTIONS(3188), + [aux_sym_preproc_if_token2] = ACTIONS(3188), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3188), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3188), + [aux_sym_preproc_else_token1] = ACTIONS(3188), + [aux_sym_preproc_elif_token1] = ACTIONS(3188), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3188), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3188), + [sym_preproc_directive] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_AMP_AMP] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym___extension__] = ACTIONS(3188), + [anon_sym_typedef] = ACTIONS(3188), + [anon_sym_extern] = ACTIONS(3188), + [anon_sym___attribute__] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3190), + [anon_sym___declspec] = ACTIONS(3188), + [anon_sym___based] = ACTIONS(3188), + [anon_sym_signed] = ACTIONS(3188), + [anon_sym_unsigned] = ACTIONS(3188), + [anon_sym_long] = ACTIONS(3188), + [anon_sym_short] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_register] = ACTIONS(3188), + [anon_sym_inline] = ACTIONS(3188), + [anon_sym___inline] = ACTIONS(3188), + [anon_sym___inline__] = ACTIONS(3188), + [anon_sym___forceinline] = ACTIONS(3188), + [anon_sym_thread_local] = ACTIONS(3188), + [anon_sym___thread] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_constexpr] = ACTIONS(3188), + [anon_sym_volatile] = ACTIONS(3188), + [anon_sym_restrict] = ACTIONS(3188), + [anon_sym___restrict__] = ACTIONS(3188), + [anon_sym__Atomic] = ACTIONS(3188), + [anon_sym__Noreturn] = ACTIONS(3188), + [anon_sym_noreturn] = ACTIONS(3188), + [anon_sym_mutable] = ACTIONS(3188), + [anon_sym_constinit] = ACTIONS(3188), + [anon_sym_consteval] = ACTIONS(3188), + [sym_primitive_type] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_struct] = ACTIONS(3188), + [anon_sym_union] = ACTIONS(3188), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3188), + [anon_sym_decltype] = ACTIONS(3188), + [anon_sym_virtual] = ACTIONS(3188), + [anon_sym_alignas] = ACTIONS(3188), + [anon_sym_explicit] = ACTIONS(3188), + [anon_sym_typename] = ACTIONS(3188), + [anon_sym_template] = ACTIONS(3188), + [anon_sym_operator] = ACTIONS(3188), + [anon_sym_friend] = ACTIONS(3188), + [anon_sym_public] = ACTIONS(3188), + [anon_sym_private] = ACTIONS(3188), + [anon_sym_protected] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3188), + [anon_sym_static_assert] = ACTIONS(3188), }, [1872] = { - [sym__expression] = STATE(5236), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_initializer_list] = STATE(5415), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3876), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [sym_identifier] = ACTIONS(4543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4545), + [anon_sym_COMMA] = ACTIONS(4545), + [anon_sym_RPAREN] = ACTIONS(4545), + [anon_sym_LPAREN2] = ACTIONS(4545), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4545), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE] = ACTIONS(4543), + [anon_sym_CARET] = ACTIONS(4545), + [anon_sym_AMP] = ACTIONS(4543), + [anon_sym_EQ_EQ] = ACTIONS(4545), + [anon_sym_BANG_EQ] = ACTIONS(4545), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_GT_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ] = ACTIONS(4543), + [anon_sym_LT] = ACTIONS(4543), + [anon_sym_LT_LT] = ACTIONS(4545), + [anon_sym_GT_GT] = ACTIONS(4545), + [anon_sym_SEMI] = ACTIONS(4545), + [anon_sym___extension__] = ACTIONS(4543), + [anon_sym___attribute__] = ACTIONS(4543), + [anon_sym_COLON_COLON] = ACTIONS(4545), + [anon_sym___based] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_signed] = ACTIONS(4543), + [anon_sym_unsigned] = ACTIONS(4543), + [anon_sym_long] = ACTIONS(4543), + [anon_sym_short] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4545), + [anon_sym_RBRACK] = ACTIONS(4545), + [anon_sym_const] = ACTIONS(4543), + [anon_sym_constexpr] = ACTIONS(4543), + [anon_sym_volatile] = ACTIONS(4543), + [anon_sym_restrict] = ACTIONS(4543), + [anon_sym___restrict__] = ACTIONS(4543), + [anon_sym__Atomic] = ACTIONS(4543), + [anon_sym__Noreturn] = ACTIONS(4543), + [anon_sym_noreturn] = ACTIONS(4543), + [anon_sym_mutable] = ACTIONS(4543), + [anon_sym_constinit] = ACTIONS(4543), + [anon_sym_consteval] = ACTIONS(4543), + [sym_primitive_type] = ACTIONS(4543), + [anon_sym_COLON] = ACTIONS(4543), + [anon_sym_QMARK] = ACTIONS(4545), + [anon_sym_LT_EQ_GT] = ACTIONS(4545), + [anon_sym_or] = ACTIONS(4543), + [anon_sym_and] = ACTIONS(4543), + [anon_sym_bitor] = ACTIONS(4543), + [anon_sym_xor] = ACTIONS(4543), + [anon_sym_bitand] = ACTIONS(4543), + [anon_sym_not_eq] = ACTIONS(4543), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_PLUS_PLUS] = ACTIONS(4545), + [anon_sym_DOT] = ACTIONS(4543), + [anon_sym_DOT_STAR] = ACTIONS(4545), + [anon_sym_DASH_GT] = ACTIONS(4545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4543), + [anon_sym_decltype] = ACTIONS(4543), + [anon_sym_final] = ACTIONS(4543), + [anon_sym_override] = ACTIONS(4543), + [anon_sym_requires] = ACTIONS(4543), }, [1873] = { - [sym__expression] = STATE(3385), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_initializer_list] = STATE(3493), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [1874] = { - [sym__expression] = STATE(5173), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9014), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4548), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(2844), + [aux_sym_preproc_def_token1] = ACTIONS(2844), + [aux_sym_preproc_if_token1] = ACTIONS(2844), + [aux_sym_preproc_if_token2] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2844), + [aux_sym_preproc_else_token1] = ACTIONS(2844), + [aux_sym_preproc_elif_token1] = ACTIONS(2844), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2844), + [sym_preproc_directive] = ACTIONS(2844), + [anon_sym_LPAREN2] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_AMP_AMP] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2844), + [anon_sym___extension__] = ACTIONS(2844), + [anon_sym_typedef] = ACTIONS(2844), + [anon_sym_extern] = ACTIONS(2844), + [anon_sym___attribute__] = ACTIONS(2844), + [anon_sym_COLON_COLON] = ACTIONS(2846), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2846), + [anon_sym___declspec] = ACTIONS(2844), + [anon_sym___based] = ACTIONS(2844), + [anon_sym_signed] = ACTIONS(2844), + [anon_sym_unsigned] = ACTIONS(2844), + [anon_sym_long] = ACTIONS(2844), + [anon_sym_short] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_register] = ACTIONS(2844), + [anon_sym_inline] = ACTIONS(2844), + [anon_sym___inline] = ACTIONS(2844), + [anon_sym___inline__] = ACTIONS(2844), + [anon_sym___forceinline] = ACTIONS(2844), + [anon_sym_thread_local] = ACTIONS(2844), + [anon_sym___thread] = ACTIONS(2844), + [anon_sym_const] = ACTIONS(2844), + [anon_sym_constexpr] = ACTIONS(2844), + [anon_sym_volatile] = ACTIONS(2844), + [anon_sym_restrict] = ACTIONS(2844), + [anon_sym___restrict__] = ACTIONS(2844), + [anon_sym__Atomic] = ACTIONS(2844), + [anon_sym__Noreturn] = ACTIONS(2844), + [anon_sym_noreturn] = ACTIONS(2844), + [anon_sym_mutable] = ACTIONS(2844), + [anon_sym_constinit] = ACTIONS(2844), + [anon_sym_consteval] = ACTIONS(2844), + [sym_primitive_type] = ACTIONS(2844), + [anon_sym_enum] = ACTIONS(2844), + [anon_sym_class] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2844), + [anon_sym_union] = ACTIONS(2844), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2844), + [anon_sym_decltype] = ACTIONS(2844), + [anon_sym_virtual] = ACTIONS(2844), + [anon_sym_alignas] = ACTIONS(2844), + [anon_sym_explicit] = ACTIONS(2844), + [anon_sym_typename] = ACTIONS(2844), + [anon_sym_template] = ACTIONS(2844), + [anon_sym_operator] = ACTIONS(2844), + [anon_sym_friend] = ACTIONS(2844), + [anon_sym_public] = ACTIONS(2844), + [anon_sym_private] = ACTIONS(2844), + [anon_sym_protected] = ACTIONS(2844), + [anon_sym_using] = ACTIONS(2844), + [anon_sym_static_assert] = ACTIONS(2844), + }, + [1874] = { + [sym_identifier] = ACTIONS(4927), + [aux_sym_preproc_def_token1] = ACTIONS(4927), + [aux_sym_preproc_if_token1] = ACTIONS(4927), + [aux_sym_preproc_if_token2] = ACTIONS(4927), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4927), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4927), + [aux_sym_preproc_else_token1] = ACTIONS(4927), + [aux_sym_preproc_elif_token1] = ACTIONS(4927), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4927), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4927), + [sym_preproc_directive] = ACTIONS(4927), + [anon_sym_LPAREN2] = ACTIONS(4929), + [anon_sym_TILDE] = ACTIONS(4929), + [anon_sym_STAR] = ACTIONS(4929), + [anon_sym_AMP_AMP] = ACTIONS(4929), + [anon_sym_AMP] = ACTIONS(4927), + [anon_sym___extension__] = ACTIONS(4927), + [anon_sym_typedef] = ACTIONS(4927), + [anon_sym_extern] = ACTIONS(4927), + [anon_sym___attribute__] = ACTIONS(4927), + [anon_sym_COLON_COLON] = ACTIONS(4929), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4929), + [anon_sym___declspec] = ACTIONS(4927), + [anon_sym___based] = ACTIONS(4927), + [anon_sym_signed] = ACTIONS(4927), + [anon_sym_unsigned] = ACTIONS(4927), + [anon_sym_long] = ACTIONS(4927), + [anon_sym_short] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4927), + [anon_sym_static] = ACTIONS(4927), + [anon_sym_register] = ACTIONS(4927), + [anon_sym_inline] = ACTIONS(4927), + [anon_sym___inline] = ACTIONS(4927), + [anon_sym___inline__] = ACTIONS(4927), + [anon_sym___forceinline] = ACTIONS(4927), + [anon_sym_thread_local] = ACTIONS(4927), + [anon_sym___thread] = ACTIONS(4927), + [anon_sym_const] = ACTIONS(4927), + [anon_sym_constexpr] = ACTIONS(4927), + [anon_sym_volatile] = ACTIONS(4927), + [anon_sym_restrict] = ACTIONS(4927), + [anon_sym___restrict__] = ACTIONS(4927), + [anon_sym__Atomic] = ACTIONS(4927), + [anon_sym__Noreturn] = ACTIONS(4927), + [anon_sym_noreturn] = ACTIONS(4927), + [anon_sym_mutable] = ACTIONS(4927), + [anon_sym_constinit] = ACTIONS(4927), + [anon_sym_consteval] = ACTIONS(4927), + [sym_primitive_type] = ACTIONS(4927), + [anon_sym_enum] = ACTIONS(4927), + [anon_sym_class] = ACTIONS(4927), + [anon_sym_struct] = ACTIONS(4927), + [anon_sym_union] = ACTIONS(4927), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4927), + [anon_sym_decltype] = ACTIONS(4927), + [anon_sym_virtual] = ACTIONS(4927), + [anon_sym_alignas] = ACTIONS(4927), + [anon_sym_explicit] = ACTIONS(4927), + [anon_sym_typename] = ACTIONS(4927), + [anon_sym_template] = ACTIONS(4927), + [anon_sym_operator] = ACTIONS(4927), + [anon_sym_friend] = ACTIONS(4927), + [anon_sym_public] = ACTIONS(4927), + [anon_sym_private] = ACTIONS(4927), + [anon_sym_protected] = ACTIONS(4927), + [anon_sym_using] = ACTIONS(4927), + [anon_sym_static_assert] = ACTIONS(4927), }, [1875] = { - [sym__expression] = STATE(5177), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9012), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4550), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3192), + [aux_sym_preproc_def_token1] = ACTIONS(3192), + [aux_sym_preproc_if_token1] = ACTIONS(3192), + [aux_sym_preproc_if_token2] = ACTIONS(3192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3192), + [aux_sym_preproc_else_token1] = ACTIONS(3192), + [aux_sym_preproc_elif_token1] = ACTIONS(3192), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3192), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3192), + [sym_preproc_directive] = ACTIONS(3192), + [anon_sym_LPAREN2] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3192), + [anon_sym___extension__] = ACTIONS(3192), + [anon_sym_typedef] = ACTIONS(3192), + [anon_sym_extern] = ACTIONS(3192), + [anon_sym___attribute__] = ACTIONS(3192), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3194), + [anon_sym___declspec] = ACTIONS(3192), + [anon_sym___based] = ACTIONS(3192), + [anon_sym_signed] = ACTIONS(3192), + [anon_sym_unsigned] = ACTIONS(3192), + [anon_sym_long] = ACTIONS(3192), + [anon_sym_short] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3192), + [anon_sym_register] = ACTIONS(3192), + [anon_sym_inline] = ACTIONS(3192), + [anon_sym___inline] = ACTIONS(3192), + [anon_sym___inline__] = ACTIONS(3192), + [anon_sym___forceinline] = ACTIONS(3192), + [anon_sym_thread_local] = ACTIONS(3192), + [anon_sym___thread] = ACTIONS(3192), + [anon_sym_const] = ACTIONS(3192), + [anon_sym_constexpr] = ACTIONS(3192), + [anon_sym_volatile] = ACTIONS(3192), + [anon_sym_restrict] = ACTIONS(3192), + [anon_sym___restrict__] = ACTIONS(3192), + [anon_sym__Atomic] = ACTIONS(3192), + [anon_sym__Noreturn] = ACTIONS(3192), + [anon_sym_noreturn] = ACTIONS(3192), + [anon_sym_mutable] = ACTIONS(3192), + [anon_sym_constinit] = ACTIONS(3192), + [anon_sym_consteval] = ACTIONS(3192), + [sym_primitive_type] = ACTIONS(3192), + [anon_sym_enum] = ACTIONS(3192), + [anon_sym_class] = ACTIONS(3192), + [anon_sym_struct] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3192), + [anon_sym_decltype] = ACTIONS(3192), + [anon_sym_virtual] = ACTIONS(3192), + [anon_sym_alignas] = ACTIONS(3192), + [anon_sym_explicit] = ACTIONS(3192), + [anon_sym_typename] = ACTIONS(3192), + [anon_sym_template] = ACTIONS(3192), + [anon_sym_operator] = ACTIONS(3192), + [anon_sym_friend] = ACTIONS(3192), + [anon_sym_public] = ACTIONS(3192), + [anon_sym_private] = ACTIONS(3192), + [anon_sym_protected] = ACTIONS(3192), + [anon_sym_using] = ACTIONS(3192), + [anon_sym_static_assert] = ACTIONS(3192), }, [1876] = { - [sym__expression] = STATE(5124), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9449), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4931), + [aux_sym_preproc_def_token1] = ACTIONS(4931), + [aux_sym_preproc_if_token1] = ACTIONS(4931), + [aux_sym_preproc_if_token2] = ACTIONS(4931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4931), + [aux_sym_preproc_else_token1] = ACTIONS(4931), + [aux_sym_preproc_elif_token1] = ACTIONS(4931), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4931), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4931), + [sym_preproc_directive] = ACTIONS(4931), + [anon_sym_LPAREN2] = ACTIONS(4933), + [anon_sym_TILDE] = ACTIONS(4933), + [anon_sym_STAR] = ACTIONS(4933), + [anon_sym_AMP_AMP] = ACTIONS(4933), + [anon_sym_AMP] = ACTIONS(4931), + [anon_sym___extension__] = ACTIONS(4931), + [anon_sym_typedef] = ACTIONS(4931), + [anon_sym_extern] = ACTIONS(4931), + [anon_sym___attribute__] = ACTIONS(4931), + [anon_sym_COLON_COLON] = ACTIONS(4933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4933), + [anon_sym___declspec] = ACTIONS(4931), + [anon_sym___based] = 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_mutable] = ACTIONS(4931), + [anon_sym_constinit] = ACTIONS(4931), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4931), + [anon_sym_decltype] = ACTIONS(4931), + [anon_sym_virtual] = ACTIONS(4931), + [anon_sym_alignas] = 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_public] = ACTIONS(4931), + [anon_sym_private] = ACTIONS(4931), + [anon_sym_protected] = ACTIONS(4931), + [anon_sym_using] = ACTIONS(4931), + [anon_sym_static_assert] = ACTIONS(4931), }, [1877] = { - [sym__expression] = STATE(4777), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_initializer_list] = STATE(4789), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token2] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [aux_sym_preproc_else_token1] = ACTIONS(4935), + [aux_sym_preproc_elif_token1] = ACTIONS(4935), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4937), + [anon_sym_TILDE] = ACTIONS(4937), + [anon_sym_STAR] = ACTIONS(4937), + [anon_sym_AMP_AMP] = ACTIONS(4937), + [anon_sym_AMP] = ACTIONS(4935), + [anon_sym___extension__] = ACTIONS(4935), + [anon_sym_typedef] = ACTIONS(4935), + [anon_sym_extern] = ACTIONS(4935), + [anon_sym___attribute__] = ACTIONS(4935), + [anon_sym_COLON_COLON] = ACTIONS(4937), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4937), + [anon_sym___declspec] = ACTIONS(4935), + [anon_sym___based] = ACTIONS(4935), + [anon_sym_signed] = ACTIONS(4935), + [anon_sym_unsigned] = ACTIONS(4935), + [anon_sym_long] = ACTIONS(4935), + [anon_sym_short] = ACTIONS(4935), + [anon_sym_LBRACK] = ACTIONS(4935), + [anon_sym_static] = ACTIONS(4935), + [anon_sym_register] = ACTIONS(4935), + [anon_sym_inline] = ACTIONS(4935), + [anon_sym___inline] = ACTIONS(4935), + [anon_sym___inline__] = ACTIONS(4935), + [anon_sym___forceinline] = ACTIONS(4935), + [anon_sym_thread_local] = ACTIONS(4935), + [anon_sym___thread] = ACTIONS(4935), + [anon_sym_const] = ACTIONS(4935), + [anon_sym_constexpr] = ACTIONS(4935), + [anon_sym_volatile] = ACTIONS(4935), + [anon_sym_restrict] = ACTIONS(4935), + [anon_sym___restrict__] = ACTIONS(4935), + [anon_sym__Atomic] = ACTIONS(4935), + [anon_sym__Noreturn] = ACTIONS(4935), + [anon_sym_noreturn] = ACTIONS(4935), + [anon_sym_mutable] = ACTIONS(4935), + [anon_sym_constinit] = ACTIONS(4935), + [anon_sym_consteval] = ACTIONS(4935), + [sym_primitive_type] = ACTIONS(4935), + [anon_sym_enum] = ACTIONS(4935), + [anon_sym_class] = ACTIONS(4935), + [anon_sym_struct] = ACTIONS(4935), + [anon_sym_union] = ACTIONS(4935), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4935), + [anon_sym_decltype] = ACTIONS(4935), + [anon_sym_virtual] = ACTIONS(4935), + [anon_sym_alignas] = ACTIONS(4935), + [anon_sym_explicit] = ACTIONS(4935), + [anon_sym_typename] = ACTIONS(4935), + [anon_sym_template] = ACTIONS(4935), + [anon_sym_operator] = ACTIONS(4935), + [anon_sym_friend] = ACTIONS(4935), + [anon_sym_public] = ACTIONS(4935), + [anon_sym_private] = ACTIONS(4935), + [anon_sym_protected] = ACTIONS(4935), + [anon_sym_using] = ACTIONS(4935), + [anon_sym_static_assert] = ACTIONS(4935), }, [1878] = { - [sym__expression] = STATE(5211), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9082), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4554), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4915), + [anon_sym_COMMA] = ACTIONS(4915), + [anon_sym_RPAREN] = ACTIONS(4915), + [anon_sym_LPAREN2] = ACTIONS(4915), + [anon_sym_DASH] = ACTIONS(4913), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_STAR] = ACTIONS(4915), + [anon_sym_SLASH] = ACTIONS(4913), + [anon_sym_PERCENT] = ACTIONS(4915), + [anon_sym_PIPE_PIPE] = ACTIONS(4915), + [anon_sym_AMP_AMP] = ACTIONS(4915), + [anon_sym_PIPE] = ACTIONS(4913), + [anon_sym_CARET] = ACTIONS(4915), + [anon_sym_AMP] = ACTIONS(4913), + [anon_sym_EQ_EQ] = ACTIONS(4915), + [anon_sym_BANG_EQ] = ACTIONS(4915), + [anon_sym_GT] = ACTIONS(4913), + [anon_sym_GT_EQ] = ACTIONS(4915), + [anon_sym_LT_EQ] = ACTIONS(4913), + [anon_sym_LT] = ACTIONS(4913), + [anon_sym_LT_LT] = ACTIONS(4915), + [anon_sym_GT_GT] = ACTIONS(4915), + [anon_sym_SEMI] = ACTIONS(4915), + [anon_sym___extension__] = ACTIONS(4913), + [anon_sym___attribute__] = ACTIONS(4913), + [anon_sym_COLON_COLON] = ACTIONS(4917), + [anon_sym___based] = ACTIONS(4913), + [anon_sym_LBRACE] = ACTIONS(4915), + [anon_sym_RBRACE] = ACTIONS(4915), + [anon_sym_signed] = ACTIONS(4913), + [anon_sym_unsigned] = ACTIONS(4913), + [anon_sym_long] = ACTIONS(4913), + [anon_sym_short] = ACTIONS(4913), + [anon_sym_LBRACK] = ACTIONS(4915), + [anon_sym_RBRACK] = ACTIONS(4915), + [anon_sym_const] = ACTIONS(4913), + [anon_sym_constexpr] = ACTIONS(4913), + [anon_sym_volatile] = ACTIONS(4913), + [anon_sym_restrict] = ACTIONS(4913), + [anon_sym___restrict__] = ACTIONS(4913), + [anon_sym__Atomic] = ACTIONS(4913), + [anon_sym__Noreturn] = ACTIONS(4913), + [anon_sym_noreturn] = ACTIONS(4913), + [anon_sym_mutable] = ACTIONS(4913), + [anon_sym_constinit] = ACTIONS(4913), + [anon_sym_consteval] = ACTIONS(4913), + [sym_primitive_type] = ACTIONS(4913), + [anon_sym_COLON] = ACTIONS(4913), + [anon_sym_QMARK] = ACTIONS(4915), + [anon_sym_LT_EQ_GT] = ACTIONS(4915), + [anon_sym_or] = ACTIONS(4913), + [anon_sym_and] = ACTIONS(4913), + [anon_sym_bitor] = ACTIONS(4913), + [anon_sym_xor] = ACTIONS(4913), + [anon_sym_bitand] = ACTIONS(4913), + [anon_sym_not_eq] = ACTIONS(4913), + [anon_sym_DASH_DASH] = ACTIONS(4915), + [anon_sym_PLUS_PLUS] = ACTIONS(4915), + [anon_sym_DOT] = ACTIONS(4913), + [anon_sym_DOT_STAR] = ACTIONS(4915), + [anon_sym_DASH_GT] = ACTIONS(4915), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4913), + [anon_sym_decltype] = ACTIONS(4913), + [anon_sym_final] = ACTIONS(4913), + [anon_sym_override] = ACTIONS(4913), + [anon_sym_requires] = ACTIONS(4913), }, [1879] = { - [sym__expression] = STATE(5215), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9119), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4556), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(2848), + [aux_sym_preproc_def_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token2] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2848), + [aux_sym_preproc_else_token1] = ACTIONS(2848), + [aux_sym_preproc_elif_token1] = ACTIONS(2848), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2848), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2848), + [sym_preproc_directive] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_AMP_AMP] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym___extension__] = ACTIONS(2848), + [anon_sym_typedef] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym___attribute__] = ACTIONS(2848), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2850), + [anon_sym___declspec] = ACTIONS(2848), + [anon_sym___based] = ACTIONS(2848), + [anon_sym_signed] = ACTIONS(2848), + [anon_sym_unsigned] = ACTIONS(2848), + [anon_sym_long] = ACTIONS(2848), + [anon_sym_short] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_register] = ACTIONS(2848), + [anon_sym_inline] = ACTIONS(2848), + [anon_sym___inline] = ACTIONS(2848), + [anon_sym___inline__] = ACTIONS(2848), + [anon_sym___forceinline] = ACTIONS(2848), + [anon_sym_thread_local] = ACTIONS(2848), + [anon_sym___thread] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_constexpr] = ACTIONS(2848), + [anon_sym_volatile] = ACTIONS(2848), + [anon_sym_restrict] = ACTIONS(2848), + [anon_sym___restrict__] = ACTIONS(2848), + [anon_sym__Atomic] = ACTIONS(2848), + [anon_sym__Noreturn] = ACTIONS(2848), + [anon_sym_noreturn] = ACTIONS(2848), + [anon_sym_mutable] = ACTIONS(2848), + [anon_sym_constinit] = ACTIONS(2848), + [anon_sym_consteval] = ACTIONS(2848), + [sym_primitive_type] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_class] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2848), + [anon_sym_union] = ACTIONS(2848), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2848), + [anon_sym_decltype] = ACTIONS(2848), + [anon_sym_virtual] = ACTIONS(2848), + [anon_sym_alignas] = ACTIONS(2848), + [anon_sym_explicit] = ACTIONS(2848), + [anon_sym_typename] = ACTIONS(2848), + [anon_sym_template] = ACTIONS(2848), + [anon_sym_operator] = ACTIONS(2848), + [anon_sym_friend] = ACTIONS(2848), + [anon_sym_public] = ACTIONS(2848), + [anon_sym_private] = ACTIONS(2848), + [anon_sym_protected] = ACTIONS(2848), + [anon_sym_using] = ACTIONS(2848), + [anon_sym_static_assert] = ACTIONS(2848), }, [1880] = { - [sym__expression] = STATE(5083), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9084), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4585), + [anon_sym_COMMA] = ACTIONS(4585), + [anon_sym_RPAREN] = ACTIONS(4585), + [anon_sym_LPAREN2] = ACTIONS(4585), + [anon_sym_DASH] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(4585), + [anon_sym_SLASH] = ACTIONS(4583), + [anon_sym_PERCENT] = ACTIONS(4585), + [anon_sym_PIPE_PIPE] = ACTIONS(4585), + [anon_sym_AMP_AMP] = ACTIONS(4585), + [anon_sym_PIPE] = ACTIONS(4583), + [anon_sym_CARET] = ACTIONS(4585), + [anon_sym_AMP] = ACTIONS(4583), + [anon_sym_EQ_EQ] = ACTIONS(4585), + [anon_sym_BANG_EQ] = ACTIONS(4585), + [anon_sym_GT] = ACTIONS(4583), + [anon_sym_GT_EQ] = ACTIONS(4585), + [anon_sym_LT_EQ] = ACTIONS(4583), + [anon_sym_LT] = ACTIONS(4583), + [anon_sym_LT_LT] = ACTIONS(4585), + [anon_sym_GT_GT] = ACTIONS(4585), + [anon_sym_SEMI] = ACTIONS(4585), + [anon_sym___extension__] = ACTIONS(4583), + [anon_sym___attribute__] = ACTIONS(4583), + [anon_sym_COLON_COLON] = ACTIONS(4585), + [anon_sym___based] = ACTIONS(4583), + [anon_sym_LBRACE] = ACTIONS(4585), + [anon_sym_RBRACE] = ACTIONS(4585), + [anon_sym_signed] = ACTIONS(4583), + [anon_sym_unsigned] = ACTIONS(4583), + [anon_sym_long] = ACTIONS(4583), + [anon_sym_short] = ACTIONS(4583), + [anon_sym_LBRACK] = ACTIONS(4585), + [anon_sym_RBRACK] = ACTIONS(4585), + [anon_sym_const] = ACTIONS(4583), + [anon_sym_constexpr] = ACTIONS(4583), + [anon_sym_volatile] = ACTIONS(4583), + [anon_sym_restrict] = ACTIONS(4583), + [anon_sym___restrict__] = ACTIONS(4583), + [anon_sym__Atomic] = ACTIONS(4583), + [anon_sym__Noreturn] = ACTIONS(4583), + [anon_sym_noreturn] = ACTIONS(4583), + [anon_sym_mutable] = ACTIONS(4583), + [anon_sym_constinit] = ACTIONS(4583), + [anon_sym_consteval] = ACTIONS(4583), + [sym_primitive_type] = ACTIONS(4583), + [anon_sym_COLON] = ACTIONS(4583), + [anon_sym_QMARK] = ACTIONS(4585), + [anon_sym_LT_EQ_GT] = ACTIONS(4585), + [anon_sym_or] = ACTIONS(4583), + [anon_sym_and] = ACTIONS(4583), + [anon_sym_bitor] = ACTIONS(4583), + [anon_sym_xor] = ACTIONS(4583), + [anon_sym_bitand] = ACTIONS(4583), + [anon_sym_not_eq] = ACTIONS(4583), + [anon_sym_DASH_DASH] = ACTIONS(4585), + [anon_sym_PLUS_PLUS] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4583), + [anon_sym_DOT_STAR] = ACTIONS(4585), + [anon_sym_DASH_GT] = ACTIONS(4585), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4583), + [anon_sym_decltype] = ACTIONS(4583), + [anon_sym_final] = ACTIONS(4583), + [anon_sym_override] = ACTIONS(4583), + [anon_sym_requires] = ACTIONS(4583), }, [1881] = { - [sym__expression] = STATE(5188), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8866), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4560), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4939), + [aux_sym_preproc_def_token1] = ACTIONS(4939), + [aux_sym_preproc_if_token1] = ACTIONS(4939), + [aux_sym_preproc_if_token2] = ACTIONS(4939), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4939), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4939), + [aux_sym_preproc_else_token1] = ACTIONS(4939), + [aux_sym_preproc_elif_token1] = ACTIONS(4939), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4939), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4939), + [sym_preproc_directive] = ACTIONS(4939), + [anon_sym_LPAREN2] = ACTIONS(4941), + [anon_sym_TILDE] = ACTIONS(4941), + [anon_sym_STAR] = ACTIONS(4941), + [anon_sym_AMP_AMP] = ACTIONS(4941), + [anon_sym_AMP] = ACTIONS(4939), + [anon_sym___extension__] = ACTIONS(4939), + [anon_sym_typedef] = ACTIONS(4939), + [anon_sym_extern] = ACTIONS(4939), + [anon_sym___attribute__] = ACTIONS(4939), + [anon_sym_COLON_COLON] = ACTIONS(4941), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4941), + [anon_sym___declspec] = ACTIONS(4939), + [anon_sym___based] = ACTIONS(4939), + [anon_sym_signed] = ACTIONS(4939), + [anon_sym_unsigned] = ACTIONS(4939), + [anon_sym_long] = ACTIONS(4939), + [anon_sym_short] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [anon_sym_static] = ACTIONS(4939), + [anon_sym_register] = ACTIONS(4939), + [anon_sym_inline] = ACTIONS(4939), + [anon_sym___inline] = ACTIONS(4939), + [anon_sym___inline__] = ACTIONS(4939), + [anon_sym___forceinline] = ACTIONS(4939), + [anon_sym_thread_local] = ACTIONS(4939), + [anon_sym___thread] = ACTIONS(4939), + [anon_sym_const] = ACTIONS(4939), + [anon_sym_constexpr] = ACTIONS(4939), + [anon_sym_volatile] = ACTIONS(4939), + [anon_sym_restrict] = ACTIONS(4939), + [anon_sym___restrict__] = ACTIONS(4939), + [anon_sym__Atomic] = ACTIONS(4939), + [anon_sym__Noreturn] = ACTIONS(4939), + [anon_sym_noreturn] = ACTIONS(4939), + [anon_sym_mutable] = ACTIONS(4939), + [anon_sym_constinit] = ACTIONS(4939), + [anon_sym_consteval] = ACTIONS(4939), + [sym_primitive_type] = ACTIONS(4939), + [anon_sym_enum] = ACTIONS(4939), + [anon_sym_class] = ACTIONS(4939), + [anon_sym_struct] = ACTIONS(4939), + [anon_sym_union] = ACTIONS(4939), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4939), + [anon_sym_decltype] = ACTIONS(4939), + [anon_sym_virtual] = ACTIONS(4939), + [anon_sym_alignas] = ACTIONS(4939), + [anon_sym_explicit] = ACTIONS(4939), + [anon_sym_typename] = ACTIONS(4939), + [anon_sym_template] = ACTIONS(4939), + [anon_sym_operator] = ACTIONS(4939), + [anon_sym_friend] = ACTIONS(4939), + [anon_sym_public] = ACTIONS(4939), + [anon_sym_private] = ACTIONS(4939), + [anon_sym_protected] = ACTIONS(4939), + [anon_sym_using] = ACTIONS(4939), + [anon_sym_static_assert] = ACTIONS(4939), }, [1882] = { - [sym__expression] = STATE(5397), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4562), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token2] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [aux_sym_preproc_else_token1] = ACTIONS(4943), + [aux_sym_preproc_elif_token1] = ACTIONS(4943), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4943), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_TILDE] = ACTIONS(4945), + [anon_sym_STAR] = ACTIONS(4945), + [anon_sym_AMP_AMP] = ACTIONS(4945), + [anon_sym_AMP] = ACTIONS(4943), + [anon_sym___extension__] = ACTIONS(4943), + [anon_sym_typedef] = ACTIONS(4943), + [anon_sym_extern] = ACTIONS(4943), + [anon_sym___attribute__] = ACTIONS(4943), + [anon_sym_COLON_COLON] = ACTIONS(4945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4945), + [anon_sym___declspec] = ACTIONS(4943), + [anon_sym___based] = ACTIONS(4943), + [anon_sym_signed] = ACTIONS(4943), + [anon_sym_unsigned] = ACTIONS(4943), + [anon_sym_long] = ACTIONS(4943), + [anon_sym_short] = ACTIONS(4943), + [anon_sym_LBRACK] = ACTIONS(4943), + [anon_sym_static] = ACTIONS(4943), + [anon_sym_register] = ACTIONS(4943), + [anon_sym_inline] = ACTIONS(4943), + [anon_sym___inline] = ACTIONS(4943), + [anon_sym___inline__] = ACTIONS(4943), + [anon_sym___forceinline] = ACTIONS(4943), + [anon_sym_thread_local] = ACTIONS(4943), + [anon_sym___thread] = ACTIONS(4943), + [anon_sym_const] = ACTIONS(4943), + [anon_sym_constexpr] = ACTIONS(4943), + [anon_sym_volatile] = ACTIONS(4943), + [anon_sym_restrict] = ACTIONS(4943), + [anon_sym___restrict__] = ACTIONS(4943), + [anon_sym__Atomic] = ACTIONS(4943), + [anon_sym__Noreturn] = ACTIONS(4943), + [anon_sym_noreturn] = ACTIONS(4943), + [anon_sym_mutable] = ACTIONS(4943), + [anon_sym_constinit] = ACTIONS(4943), + [anon_sym_consteval] = ACTIONS(4943), + [sym_primitive_type] = ACTIONS(4943), + [anon_sym_enum] = ACTIONS(4943), + [anon_sym_class] = ACTIONS(4943), + [anon_sym_struct] = ACTIONS(4943), + [anon_sym_union] = ACTIONS(4943), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4943), + [anon_sym_decltype] = ACTIONS(4943), + [anon_sym_virtual] = ACTIONS(4943), + [anon_sym_alignas] = ACTIONS(4943), + [anon_sym_explicit] = ACTIONS(4943), + [anon_sym_typename] = ACTIONS(4943), + [anon_sym_template] = ACTIONS(4943), + [anon_sym_operator] = ACTIONS(4943), + [anon_sym_friend] = ACTIONS(4943), + [anon_sym_public] = ACTIONS(4943), + [anon_sym_private] = ACTIONS(4943), + [anon_sym_protected] = ACTIONS(4943), + [anon_sym_using] = ACTIONS(4943), + [anon_sym_static_assert] = ACTIONS(4943), }, [1883] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4564), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(4947), + [aux_sym_preproc_def_token1] = ACTIONS(4947), + [aux_sym_preproc_if_token1] = ACTIONS(4947), + [aux_sym_preproc_if_token2] = ACTIONS(4947), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4947), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4947), + [aux_sym_preproc_else_token1] = ACTIONS(4947), + [aux_sym_preproc_elif_token1] = ACTIONS(4947), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4947), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4947), + [sym_preproc_directive] = ACTIONS(4947), + [anon_sym_LPAREN2] = ACTIONS(4949), + [anon_sym_TILDE] = ACTIONS(4949), + [anon_sym_STAR] = ACTIONS(4949), + [anon_sym_AMP_AMP] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(4947), + [anon_sym___extension__] = ACTIONS(4947), + [anon_sym_typedef] = ACTIONS(4947), + [anon_sym_extern] = ACTIONS(4947), + [anon_sym___attribute__] = ACTIONS(4947), + [anon_sym_COLON_COLON] = ACTIONS(4949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4949), + [anon_sym___declspec] = ACTIONS(4947), + [anon_sym___based] = ACTIONS(4947), + [anon_sym_signed] = ACTIONS(4947), + [anon_sym_unsigned] = ACTIONS(4947), + [anon_sym_long] = ACTIONS(4947), + [anon_sym_short] = ACTIONS(4947), + [anon_sym_LBRACK] = ACTIONS(4947), + [anon_sym_static] = ACTIONS(4947), + [anon_sym_register] = ACTIONS(4947), + [anon_sym_inline] = ACTIONS(4947), + [anon_sym___inline] = ACTIONS(4947), + [anon_sym___inline__] = ACTIONS(4947), + [anon_sym___forceinline] = ACTIONS(4947), + [anon_sym_thread_local] = ACTIONS(4947), + [anon_sym___thread] = ACTIONS(4947), + [anon_sym_const] = ACTIONS(4947), + [anon_sym_constexpr] = ACTIONS(4947), + [anon_sym_volatile] = ACTIONS(4947), + [anon_sym_restrict] = ACTIONS(4947), + [anon_sym___restrict__] = ACTIONS(4947), + [anon_sym__Atomic] = ACTIONS(4947), + [anon_sym__Noreturn] = ACTIONS(4947), + [anon_sym_noreturn] = ACTIONS(4947), + [anon_sym_mutable] = ACTIONS(4947), + [anon_sym_constinit] = ACTIONS(4947), + [anon_sym_consteval] = ACTIONS(4947), + [sym_primitive_type] = ACTIONS(4947), + [anon_sym_enum] = ACTIONS(4947), + [anon_sym_class] = ACTIONS(4947), + [anon_sym_struct] = ACTIONS(4947), + [anon_sym_union] = ACTIONS(4947), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4947), + [anon_sym_decltype] = ACTIONS(4947), + [anon_sym_virtual] = ACTIONS(4947), + [anon_sym_alignas] = ACTIONS(4947), + [anon_sym_explicit] = ACTIONS(4947), + [anon_sym_typename] = ACTIONS(4947), + [anon_sym_template] = ACTIONS(4947), + [anon_sym_operator] = ACTIONS(4947), + [anon_sym_friend] = ACTIONS(4947), + [anon_sym_public] = ACTIONS(4947), + [anon_sym_private] = ACTIONS(4947), + [anon_sym_protected] = ACTIONS(4947), + [anon_sym_using] = ACTIONS(4947), + [anon_sym_static_assert] = ACTIONS(4947), }, [1884] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4566), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(4951), + [aux_sym_preproc_def_token1] = ACTIONS(4951), + [aux_sym_preproc_if_token1] = ACTIONS(4951), + [aux_sym_preproc_if_token2] = ACTIONS(4951), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4951), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4951), + [aux_sym_preproc_else_token1] = ACTIONS(4951), + [aux_sym_preproc_elif_token1] = ACTIONS(4951), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4951), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4951), + [sym_preproc_directive] = ACTIONS(4951), + [anon_sym_LPAREN2] = ACTIONS(4953), + [anon_sym_TILDE] = ACTIONS(4953), + [anon_sym_STAR] = ACTIONS(4953), + [anon_sym_AMP_AMP] = ACTIONS(4953), + [anon_sym_AMP] = ACTIONS(4951), + [anon_sym___extension__] = ACTIONS(4951), + [anon_sym_typedef] = ACTIONS(4951), + [anon_sym_extern] = ACTIONS(4951), + [anon_sym___attribute__] = ACTIONS(4951), + [anon_sym_COLON_COLON] = ACTIONS(4953), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4953), + [anon_sym___declspec] = ACTIONS(4951), + [anon_sym___based] = ACTIONS(4951), + [anon_sym_signed] = ACTIONS(4951), + [anon_sym_unsigned] = ACTIONS(4951), + [anon_sym_long] = ACTIONS(4951), + [anon_sym_short] = ACTIONS(4951), + [anon_sym_LBRACK] = ACTIONS(4951), + [anon_sym_static] = ACTIONS(4951), + [anon_sym_register] = ACTIONS(4951), + [anon_sym_inline] = ACTIONS(4951), + [anon_sym___inline] = ACTIONS(4951), + [anon_sym___inline__] = ACTIONS(4951), + [anon_sym___forceinline] = ACTIONS(4951), + [anon_sym_thread_local] = ACTIONS(4951), + [anon_sym___thread] = ACTIONS(4951), + [anon_sym_const] = ACTIONS(4951), + [anon_sym_constexpr] = ACTIONS(4951), + [anon_sym_volatile] = ACTIONS(4951), + [anon_sym_restrict] = ACTIONS(4951), + [anon_sym___restrict__] = ACTIONS(4951), + [anon_sym__Atomic] = ACTIONS(4951), + [anon_sym__Noreturn] = ACTIONS(4951), + [anon_sym_noreturn] = ACTIONS(4951), + [anon_sym_mutable] = ACTIONS(4951), + [anon_sym_constinit] = ACTIONS(4951), + [anon_sym_consteval] = ACTIONS(4951), + [sym_primitive_type] = ACTIONS(4951), + [anon_sym_enum] = ACTIONS(4951), + [anon_sym_class] = ACTIONS(4951), + [anon_sym_struct] = ACTIONS(4951), + [anon_sym_union] = ACTIONS(4951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4951), + [anon_sym_decltype] = ACTIONS(4951), + [anon_sym_virtual] = ACTIONS(4951), + [anon_sym_alignas] = ACTIONS(4951), + [anon_sym_explicit] = ACTIONS(4951), + [anon_sym_typename] = ACTIONS(4951), + [anon_sym_template] = ACTIONS(4951), + [anon_sym_operator] = ACTIONS(4951), + [anon_sym_friend] = ACTIONS(4951), + [anon_sym_public] = ACTIONS(4951), + [anon_sym_private] = ACTIONS(4951), + [anon_sym_protected] = ACTIONS(4951), + [anon_sym_using] = ACTIONS(4951), + [anon_sym_static_assert] = ACTIONS(4951), }, [1885] = { - [sym__expression] = STATE(5263), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4568), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4951), + [aux_sym_preproc_def_token1] = ACTIONS(4951), + [aux_sym_preproc_if_token1] = ACTIONS(4951), + [aux_sym_preproc_if_token2] = ACTIONS(4951), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4951), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4951), + [aux_sym_preproc_else_token1] = ACTIONS(4951), + [aux_sym_preproc_elif_token1] = ACTIONS(4951), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4951), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4951), + [sym_preproc_directive] = ACTIONS(4951), + [anon_sym_LPAREN2] = ACTIONS(4953), + [anon_sym_TILDE] = ACTIONS(4953), + [anon_sym_STAR] = ACTIONS(4953), + [anon_sym_AMP_AMP] = ACTIONS(4953), + [anon_sym_AMP] = ACTIONS(4951), + [anon_sym___extension__] = ACTIONS(4951), + [anon_sym_typedef] = ACTIONS(4951), + [anon_sym_extern] = ACTIONS(4951), + [anon_sym___attribute__] = ACTIONS(4951), + [anon_sym_COLON_COLON] = ACTIONS(4953), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4953), + [anon_sym___declspec] = ACTIONS(4951), + [anon_sym___based] = ACTIONS(4951), + [anon_sym_signed] = ACTIONS(4951), + [anon_sym_unsigned] = ACTIONS(4951), + [anon_sym_long] = ACTIONS(4951), + [anon_sym_short] = ACTIONS(4951), + [anon_sym_LBRACK] = ACTIONS(4951), + [anon_sym_static] = ACTIONS(4951), + [anon_sym_register] = ACTIONS(4951), + [anon_sym_inline] = ACTIONS(4951), + [anon_sym___inline] = ACTIONS(4951), + [anon_sym___inline__] = ACTIONS(4951), + [anon_sym___forceinline] = ACTIONS(4951), + [anon_sym_thread_local] = ACTIONS(4951), + [anon_sym___thread] = ACTIONS(4951), + [anon_sym_const] = ACTIONS(4951), + [anon_sym_constexpr] = ACTIONS(4951), + [anon_sym_volatile] = ACTIONS(4951), + [anon_sym_restrict] = ACTIONS(4951), + [anon_sym___restrict__] = ACTIONS(4951), + [anon_sym__Atomic] = ACTIONS(4951), + [anon_sym__Noreturn] = ACTIONS(4951), + [anon_sym_noreturn] = ACTIONS(4951), + [anon_sym_mutable] = ACTIONS(4951), + [anon_sym_constinit] = ACTIONS(4951), + [anon_sym_consteval] = ACTIONS(4951), + [sym_primitive_type] = ACTIONS(4951), + [anon_sym_enum] = ACTIONS(4951), + [anon_sym_class] = ACTIONS(4951), + [anon_sym_struct] = ACTIONS(4951), + [anon_sym_union] = ACTIONS(4951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4951), + [anon_sym_decltype] = ACTIONS(4951), + [anon_sym_virtual] = ACTIONS(4951), + [anon_sym_alignas] = ACTIONS(4951), + [anon_sym_explicit] = ACTIONS(4951), + [anon_sym_typename] = ACTIONS(4951), + [anon_sym_template] = ACTIONS(4951), + [anon_sym_operator] = ACTIONS(4951), + [anon_sym_friend] = ACTIONS(4951), + [anon_sym_public] = ACTIONS(4951), + [anon_sym_private] = ACTIONS(4951), + [anon_sym_protected] = ACTIONS(4951), + [anon_sym_using] = ACTIONS(4951), + [anon_sym_static_assert] = ACTIONS(4951), }, [1886] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4570), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(4955), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4957), + [anon_sym_COMMA] = ACTIONS(4957), + [anon_sym_RPAREN] = ACTIONS(4957), + [anon_sym_LPAREN2] = ACTIONS(4957), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_PLUS] = ACTIONS(4955), + [anon_sym_STAR] = ACTIONS(4957), + [anon_sym_SLASH] = ACTIONS(4955), + [anon_sym_PERCENT] = ACTIONS(4957), + [anon_sym_PIPE_PIPE] = ACTIONS(4957), + [anon_sym_AMP_AMP] = ACTIONS(4957), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_CARET] = ACTIONS(4957), + [anon_sym_AMP] = ACTIONS(4955), + [anon_sym_EQ_EQ] = ACTIONS(4957), + [anon_sym_BANG_EQ] = ACTIONS(4957), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_GT_EQ] = ACTIONS(4957), + [anon_sym_LT_EQ] = ACTIONS(4955), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_LT_LT] = ACTIONS(4957), + [anon_sym_GT_GT] = ACTIONS(4957), + [anon_sym_SEMI] = ACTIONS(4957), + [anon_sym___extension__] = ACTIONS(4955), + [anon_sym___attribute__] = ACTIONS(4955), + [anon_sym_COLON_COLON] = ACTIONS(4917), + [anon_sym___based] = ACTIONS(4955), + [anon_sym_LBRACE] = ACTIONS(4957), + [anon_sym_RBRACE] = ACTIONS(4957), + [anon_sym_signed] = ACTIONS(4955), + [anon_sym_unsigned] = ACTIONS(4955), + [anon_sym_long] = ACTIONS(4955), + [anon_sym_short] = ACTIONS(4955), + [anon_sym_LBRACK] = ACTIONS(4957), + [anon_sym_RBRACK] = ACTIONS(4957), + [anon_sym_const] = ACTIONS(4955), + [anon_sym_constexpr] = ACTIONS(4955), + [anon_sym_volatile] = ACTIONS(4955), + [anon_sym_restrict] = ACTIONS(4955), + [anon_sym___restrict__] = ACTIONS(4955), + [anon_sym__Atomic] = ACTIONS(4955), + [anon_sym__Noreturn] = ACTIONS(4955), + [anon_sym_noreturn] = ACTIONS(4955), + [anon_sym_mutable] = ACTIONS(4955), + [anon_sym_constinit] = ACTIONS(4955), + [anon_sym_consteval] = ACTIONS(4955), + [sym_primitive_type] = ACTIONS(4955), + [anon_sym_COLON] = ACTIONS(4955), + [anon_sym_QMARK] = ACTIONS(4957), + [anon_sym_LT_EQ_GT] = ACTIONS(4957), + [anon_sym_or] = ACTIONS(4955), + [anon_sym_and] = ACTIONS(4955), + [anon_sym_bitor] = ACTIONS(4955), + [anon_sym_xor] = ACTIONS(4955), + [anon_sym_bitand] = ACTIONS(4955), + [anon_sym_not_eq] = ACTIONS(4955), + [anon_sym_DASH_DASH] = ACTIONS(4957), + [anon_sym_PLUS_PLUS] = ACTIONS(4957), + [anon_sym_DOT] = ACTIONS(4955), + [anon_sym_DOT_STAR] = ACTIONS(4957), + [anon_sym_DASH_GT] = ACTIONS(4957), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4955), + [anon_sym_decltype] = ACTIONS(4955), + [anon_sym_final] = ACTIONS(4955), + [anon_sym_override] = ACTIONS(4955), + [anon_sym_requires] = ACTIONS(4955), }, [1887] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4572), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(4959), + [aux_sym_preproc_def_token1] = ACTIONS(4959), + [aux_sym_preproc_if_token1] = ACTIONS(4959), + [aux_sym_preproc_if_token2] = ACTIONS(4959), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4959), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4959), + [aux_sym_preproc_else_token1] = ACTIONS(4959), + [aux_sym_preproc_elif_token1] = ACTIONS(4959), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4959), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4959), + [sym_preproc_directive] = ACTIONS(4959), + [anon_sym_LPAREN2] = ACTIONS(4961), + [anon_sym_TILDE] = ACTIONS(4961), + [anon_sym_STAR] = ACTIONS(4961), + [anon_sym_AMP_AMP] = ACTIONS(4961), + [anon_sym_AMP] = ACTIONS(4959), + [anon_sym___extension__] = ACTIONS(4959), + [anon_sym_typedef] = ACTIONS(4959), + [anon_sym_extern] = ACTIONS(4959), + [anon_sym___attribute__] = ACTIONS(4959), + [anon_sym_COLON_COLON] = ACTIONS(4961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4961), + [anon_sym___declspec] = ACTIONS(4959), + [anon_sym___based] = ACTIONS(4959), + [anon_sym_signed] = ACTIONS(4959), + [anon_sym_unsigned] = ACTIONS(4959), + [anon_sym_long] = ACTIONS(4959), + [anon_sym_short] = ACTIONS(4959), + [anon_sym_LBRACK] = ACTIONS(4959), + [anon_sym_static] = ACTIONS(4959), + [anon_sym_register] = ACTIONS(4959), + [anon_sym_inline] = ACTIONS(4959), + [anon_sym___inline] = ACTIONS(4959), + [anon_sym___inline__] = ACTIONS(4959), + [anon_sym___forceinline] = ACTIONS(4959), + [anon_sym_thread_local] = ACTIONS(4959), + [anon_sym___thread] = ACTIONS(4959), + [anon_sym_const] = ACTIONS(4959), + [anon_sym_constexpr] = ACTIONS(4959), + [anon_sym_volatile] = ACTIONS(4959), + [anon_sym_restrict] = ACTIONS(4959), + [anon_sym___restrict__] = ACTIONS(4959), + [anon_sym__Atomic] = ACTIONS(4959), + [anon_sym__Noreturn] = ACTIONS(4959), + [anon_sym_noreturn] = ACTIONS(4959), + [anon_sym_mutable] = ACTIONS(4959), + [anon_sym_constinit] = ACTIONS(4959), + [anon_sym_consteval] = ACTIONS(4959), + [sym_primitive_type] = ACTIONS(4959), + [anon_sym_enum] = ACTIONS(4959), + [anon_sym_class] = ACTIONS(4959), + [anon_sym_struct] = ACTIONS(4959), + [anon_sym_union] = ACTIONS(4959), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4959), + [anon_sym_decltype] = ACTIONS(4959), + [anon_sym_virtual] = ACTIONS(4959), + [anon_sym_alignas] = ACTIONS(4959), + [anon_sym_explicit] = ACTIONS(4959), + [anon_sym_typename] = ACTIONS(4959), + [anon_sym_template] = ACTIONS(4959), + [anon_sym_operator] = ACTIONS(4959), + [anon_sym_friend] = ACTIONS(4959), + [anon_sym_public] = ACTIONS(4959), + [anon_sym_private] = ACTIONS(4959), + [anon_sym_protected] = ACTIONS(4959), + [anon_sym_using] = ACTIONS(4959), + [anon_sym_static_assert] = ACTIONS(4959), }, [1888] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4574), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(4963), + [aux_sym_preproc_def_token1] = ACTIONS(4963), + [aux_sym_preproc_if_token1] = ACTIONS(4963), + [aux_sym_preproc_if_token2] = ACTIONS(4963), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4963), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4963), + [aux_sym_preproc_else_token1] = ACTIONS(4963), + [aux_sym_preproc_elif_token1] = ACTIONS(4963), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4963), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4963), + [sym_preproc_directive] = ACTIONS(4963), + [anon_sym_LPAREN2] = ACTIONS(4965), + [anon_sym_TILDE] = ACTIONS(4965), + [anon_sym_STAR] = ACTIONS(4965), + [anon_sym_AMP_AMP] = ACTIONS(4965), + [anon_sym_AMP] = ACTIONS(4963), + [anon_sym___extension__] = ACTIONS(4963), + [anon_sym_typedef] = ACTIONS(4963), + [anon_sym_extern] = ACTIONS(4963), + [anon_sym___attribute__] = ACTIONS(4963), + [anon_sym_COLON_COLON] = ACTIONS(4965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4965), + [anon_sym___declspec] = ACTIONS(4963), + [anon_sym___based] = ACTIONS(4963), + [anon_sym_signed] = ACTIONS(4963), + [anon_sym_unsigned] = ACTIONS(4963), + [anon_sym_long] = ACTIONS(4963), + [anon_sym_short] = ACTIONS(4963), + [anon_sym_LBRACK] = ACTIONS(4963), + [anon_sym_static] = ACTIONS(4963), + [anon_sym_register] = ACTIONS(4963), + [anon_sym_inline] = ACTIONS(4963), + [anon_sym___inline] = ACTIONS(4963), + [anon_sym___inline__] = ACTIONS(4963), + [anon_sym___forceinline] = ACTIONS(4963), + [anon_sym_thread_local] = ACTIONS(4963), + [anon_sym___thread] = ACTIONS(4963), + [anon_sym_const] = ACTIONS(4963), + [anon_sym_constexpr] = ACTIONS(4963), + [anon_sym_volatile] = ACTIONS(4963), + [anon_sym_restrict] = ACTIONS(4963), + [anon_sym___restrict__] = ACTIONS(4963), + [anon_sym__Atomic] = ACTIONS(4963), + [anon_sym__Noreturn] = ACTIONS(4963), + [anon_sym_noreturn] = ACTIONS(4963), + [anon_sym_mutable] = ACTIONS(4963), + [anon_sym_constinit] = ACTIONS(4963), + [anon_sym_consteval] = ACTIONS(4963), + [sym_primitive_type] = ACTIONS(4963), + [anon_sym_enum] = ACTIONS(4963), + [anon_sym_class] = ACTIONS(4963), + [anon_sym_struct] = ACTIONS(4963), + [anon_sym_union] = ACTIONS(4963), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4963), + [anon_sym_decltype] = ACTIONS(4963), + [anon_sym_virtual] = ACTIONS(4963), + [anon_sym_alignas] = ACTIONS(4963), + [anon_sym_explicit] = ACTIONS(4963), + [anon_sym_typename] = ACTIONS(4963), + [anon_sym_template] = ACTIONS(4963), + [anon_sym_operator] = ACTIONS(4963), + [anon_sym_friend] = ACTIONS(4963), + [anon_sym_public] = ACTIONS(4963), + [anon_sym_private] = ACTIONS(4963), + [anon_sym_protected] = ACTIONS(4963), + [anon_sym_using] = ACTIONS(4963), + [anon_sym_static_assert] = ACTIONS(4963), }, [1889] = { - [sym__expression] = STATE(3499), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4576), - [anon_sym_LPAREN2] = ACTIONS(4578), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(4967), + [aux_sym_preproc_def_token1] = ACTIONS(4967), + [aux_sym_preproc_if_token1] = ACTIONS(4967), + [aux_sym_preproc_if_token2] = ACTIONS(4967), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4967), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4967), + [aux_sym_preproc_else_token1] = ACTIONS(4967), + [aux_sym_preproc_elif_token1] = ACTIONS(4967), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4967), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4967), + [sym_preproc_directive] = ACTIONS(4967), + [anon_sym_LPAREN2] = ACTIONS(4969), + [anon_sym_TILDE] = ACTIONS(4969), + [anon_sym_STAR] = ACTIONS(4969), + [anon_sym_AMP_AMP] = ACTIONS(4969), + [anon_sym_AMP] = ACTIONS(4967), + [anon_sym___extension__] = ACTIONS(4967), + [anon_sym_typedef] = ACTIONS(4967), + [anon_sym_extern] = ACTIONS(4967), + [anon_sym___attribute__] = ACTIONS(4967), + [anon_sym_COLON_COLON] = ACTIONS(4969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4969), + [anon_sym___declspec] = ACTIONS(4967), + [anon_sym___based] = ACTIONS(4967), + [anon_sym_signed] = ACTIONS(4967), + [anon_sym_unsigned] = ACTIONS(4967), + [anon_sym_long] = ACTIONS(4967), + [anon_sym_short] = ACTIONS(4967), + [anon_sym_LBRACK] = ACTIONS(4967), + [anon_sym_static] = ACTIONS(4967), + [anon_sym_register] = ACTIONS(4967), + [anon_sym_inline] = ACTIONS(4967), + [anon_sym___inline] = ACTIONS(4967), + [anon_sym___inline__] = ACTIONS(4967), + [anon_sym___forceinline] = ACTIONS(4967), + [anon_sym_thread_local] = ACTIONS(4967), + [anon_sym___thread] = ACTIONS(4967), + [anon_sym_const] = ACTIONS(4967), + [anon_sym_constexpr] = ACTIONS(4967), + [anon_sym_volatile] = ACTIONS(4967), + [anon_sym_restrict] = ACTIONS(4967), + [anon_sym___restrict__] = ACTIONS(4967), + [anon_sym__Atomic] = ACTIONS(4967), + [anon_sym__Noreturn] = ACTIONS(4967), + [anon_sym_noreturn] = ACTIONS(4967), + [anon_sym_mutable] = ACTIONS(4967), + [anon_sym_constinit] = ACTIONS(4967), + [anon_sym_consteval] = ACTIONS(4967), + [sym_primitive_type] = ACTIONS(4967), + [anon_sym_enum] = ACTIONS(4967), + [anon_sym_class] = ACTIONS(4967), + [anon_sym_struct] = ACTIONS(4967), + [anon_sym_union] = ACTIONS(4967), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4967), + [anon_sym_decltype] = ACTIONS(4967), + [anon_sym_virtual] = ACTIONS(4967), + [anon_sym_alignas] = ACTIONS(4967), + [anon_sym_explicit] = ACTIONS(4967), + [anon_sym_typename] = ACTIONS(4967), + [anon_sym_template] = ACTIONS(4967), + [anon_sym_operator] = ACTIONS(4967), + [anon_sym_friend] = ACTIONS(4967), + [anon_sym_public] = ACTIONS(4967), + [anon_sym_private] = ACTIONS(4967), + [anon_sym_protected] = ACTIONS(4967), + [anon_sym_using] = ACTIONS(4967), + [anon_sym_static_assert] = ACTIONS(4967), }, [1890] = { - [sym__expression] = STATE(5342), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4580), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4971), + [aux_sym_preproc_def_token1] = ACTIONS(4971), + [aux_sym_preproc_if_token1] = ACTIONS(4971), + [aux_sym_preproc_if_token2] = ACTIONS(4971), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4971), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4971), + [aux_sym_preproc_else_token1] = ACTIONS(4971), + [aux_sym_preproc_elif_token1] = ACTIONS(4971), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4971), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4971), + [sym_preproc_directive] = ACTIONS(4971), + [anon_sym_LPAREN2] = ACTIONS(4973), + [anon_sym_TILDE] = ACTIONS(4973), + [anon_sym_STAR] = ACTIONS(4973), + [anon_sym_AMP_AMP] = ACTIONS(4973), + [anon_sym_AMP] = ACTIONS(4971), + [anon_sym___extension__] = ACTIONS(4971), + [anon_sym_typedef] = ACTIONS(4971), + [anon_sym_extern] = ACTIONS(4971), + [anon_sym___attribute__] = ACTIONS(4971), + [anon_sym_COLON_COLON] = ACTIONS(4973), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4973), + [anon_sym___declspec] = ACTIONS(4971), + [anon_sym___based] = ACTIONS(4971), + [anon_sym_signed] = ACTIONS(4971), + [anon_sym_unsigned] = ACTIONS(4971), + [anon_sym_long] = ACTIONS(4971), + [anon_sym_short] = ACTIONS(4971), + [anon_sym_LBRACK] = ACTIONS(4971), + [anon_sym_static] = ACTIONS(4971), + [anon_sym_register] = ACTIONS(4971), + [anon_sym_inline] = ACTIONS(4971), + [anon_sym___inline] = ACTIONS(4971), + [anon_sym___inline__] = ACTIONS(4971), + [anon_sym___forceinline] = ACTIONS(4971), + [anon_sym_thread_local] = ACTIONS(4971), + [anon_sym___thread] = ACTIONS(4971), + [anon_sym_const] = ACTIONS(4971), + [anon_sym_constexpr] = ACTIONS(4971), + [anon_sym_volatile] = ACTIONS(4971), + [anon_sym_restrict] = ACTIONS(4971), + [anon_sym___restrict__] = ACTIONS(4971), + [anon_sym__Atomic] = ACTIONS(4971), + [anon_sym__Noreturn] = ACTIONS(4971), + [anon_sym_noreturn] = ACTIONS(4971), + [anon_sym_mutable] = ACTIONS(4971), + [anon_sym_constinit] = ACTIONS(4971), + [anon_sym_consteval] = ACTIONS(4971), + [sym_primitive_type] = ACTIONS(4971), + [anon_sym_enum] = ACTIONS(4971), + [anon_sym_class] = ACTIONS(4971), + [anon_sym_struct] = ACTIONS(4971), + [anon_sym_union] = ACTIONS(4971), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4971), + [anon_sym_decltype] = ACTIONS(4971), + [anon_sym_virtual] = ACTIONS(4971), + [anon_sym_alignas] = ACTIONS(4971), + [anon_sym_explicit] = ACTIONS(4971), + [anon_sym_typename] = ACTIONS(4971), + [anon_sym_template] = ACTIONS(4971), + [anon_sym_operator] = ACTIONS(4971), + [anon_sym_friend] = ACTIONS(4971), + [anon_sym_public] = ACTIONS(4971), + [anon_sym_private] = ACTIONS(4971), + [anon_sym_protected] = ACTIONS(4971), + [anon_sym_using] = ACTIONS(4971), + [anon_sym_static_assert] = ACTIONS(4971), }, [1891] = { - [sym__expression] = STATE(5008), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_SEMI] = ACTIONS(4582), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(4584), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4975), + [aux_sym_preproc_def_token1] = ACTIONS(4975), + [aux_sym_preproc_if_token1] = ACTIONS(4975), + [aux_sym_preproc_if_token2] = ACTIONS(4975), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4975), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4975), + [aux_sym_preproc_else_token1] = ACTIONS(4975), + [aux_sym_preproc_elif_token1] = ACTIONS(4975), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4975), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4975), + [sym_preproc_directive] = ACTIONS(4975), + [anon_sym_LPAREN2] = ACTIONS(4977), + [anon_sym_TILDE] = ACTIONS(4977), + [anon_sym_STAR] = ACTIONS(4977), + [anon_sym_AMP_AMP] = ACTIONS(4977), + [anon_sym_AMP] = ACTIONS(4975), + [anon_sym___extension__] = ACTIONS(4975), + [anon_sym_typedef] = ACTIONS(4975), + [anon_sym_extern] = ACTIONS(4975), + [anon_sym___attribute__] = ACTIONS(4975), + [anon_sym_COLON_COLON] = ACTIONS(4977), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4977), + [anon_sym___declspec] = ACTIONS(4975), + [anon_sym___based] = ACTIONS(4975), + [anon_sym_signed] = ACTIONS(4975), + [anon_sym_unsigned] = ACTIONS(4975), + [anon_sym_long] = ACTIONS(4975), + [anon_sym_short] = ACTIONS(4975), + [anon_sym_LBRACK] = ACTIONS(4975), + [anon_sym_static] = ACTIONS(4975), + [anon_sym_register] = ACTIONS(4975), + [anon_sym_inline] = ACTIONS(4975), + [anon_sym___inline] = ACTIONS(4975), + [anon_sym___inline__] = ACTIONS(4975), + [anon_sym___forceinline] = ACTIONS(4975), + [anon_sym_thread_local] = ACTIONS(4975), + [anon_sym___thread] = ACTIONS(4975), + [anon_sym_const] = ACTIONS(4975), + [anon_sym_constexpr] = ACTIONS(4975), + [anon_sym_volatile] = ACTIONS(4975), + [anon_sym_restrict] = ACTIONS(4975), + [anon_sym___restrict__] = ACTIONS(4975), + [anon_sym__Atomic] = ACTIONS(4975), + [anon_sym__Noreturn] = ACTIONS(4975), + [anon_sym_noreturn] = ACTIONS(4975), + [anon_sym_mutable] = ACTIONS(4975), + [anon_sym_constinit] = ACTIONS(4975), + [anon_sym_consteval] = ACTIONS(4975), + [sym_primitive_type] = ACTIONS(4975), + [anon_sym_enum] = ACTIONS(4975), + [anon_sym_class] = ACTIONS(4975), + [anon_sym_struct] = ACTIONS(4975), + [anon_sym_union] = ACTIONS(4975), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4975), + [anon_sym_decltype] = ACTIONS(4975), + [anon_sym_virtual] = ACTIONS(4975), + [anon_sym_alignas] = ACTIONS(4975), + [anon_sym_explicit] = ACTIONS(4975), + [anon_sym_typename] = ACTIONS(4975), + [anon_sym_template] = ACTIONS(4975), + [anon_sym_operator] = ACTIONS(4975), + [anon_sym_friend] = ACTIONS(4975), + [anon_sym_public] = ACTIONS(4975), + [anon_sym_private] = ACTIONS(4975), + [anon_sym_protected] = ACTIONS(4975), + [anon_sym_using] = ACTIONS(4975), + [anon_sym_static_assert] = ACTIONS(4975), }, [1892] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4586), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(4979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4981), + [anon_sym_COMMA] = ACTIONS(4981), + [anon_sym_RPAREN] = ACTIONS(4981), + [anon_sym_LPAREN2] = ACTIONS(4981), + [anon_sym_DASH] = ACTIONS(4979), + [anon_sym_PLUS] = ACTIONS(4979), + [anon_sym_STAR] = ACTIONS(4981), + [anon_sym_SLASH] = ACTIONS(4979), + [anon_sym_PERCENT] = ACTIONS(4981), + [anon_sym_PIPE_PIPE] = ACTIONS(4981), + [anon_sym_AMP_AMP] = ACTIONS(4981), + [anon_sym_PIPE] = ACTIONS(4979), + [anon_sym_CARET] = ACTIONS(4981), + [anon_sym_AMP] = ACTIONS(4979), + [anon_sym_EQ_EQ] = ACTIONS(4981), + [anon_sym_BANG_EQ] = ACTIONS(4981), + [anon_sym_GT] = ACTIONS(4979), + [anon_sym_GT_EQ] = ACTIONS(4981), + [anon_sym_LT_EQ] = ACTIONS(4979), + [anon_sym_LT] = ACTIONS(4979), + [anon_sym_LT_LT] = ACTIONS(4981), + [anon_sym_GT_GT] = ACTIONS(4981), + [anon_sym_SEMI] = ACTIONS(4981), + [anon_sym___extension__] = ACTIONS(4979), + [anon_sym___attribute__] = ACTIONS(4979), + [anon_sym_COLON_COLON] = ACTIONS(4917), + [anon_sym___based] = ACTIONS(4979), + [anon_sym_LBRACE] = ACTIONS(4981), + [anon_sym_RBRACE] = ACTIONS(4981), + [anon_sym_signed] = ACTIONS(4979), + [anon_sym_unsigned] = ACTIONS(4979), + [anon_sym_long] = ACTIONS(4979), + [anon_sym_short] = ACTIONS(4979), + [anon_sym_LBRACK] = ACTIONS(4981), + [anon_sym_RBRACK] = ACTIONS(4981), + [anon_sym_const] = ACTIONS(4979), + [anon_sym_constexpr] = ACTIONS(4979), + [anon_sym_volatile] = ACTIONS(4979), + [anon_sym_restrict] = ACTIONS(4979), + [anon_sym___restrict__] = ACTIONS(4979), + [anon_sym__Atomic] = ACTIONS(4979), + [anon_sym__Noreturn] = ACTIONS(4979), + [anon_sym_noreturn] = ACTIONS(4979), + [anon_sym_mutable] = ACTIONS(4979), + [anon_sym_constinit] = ACTIONS(4979), + [anon_sym_consteval] = ACTIONS(4979), + [sym_primitive_type] = ACTIONS(4979), + [anon_sym_COLON] = ACTIONS(4979), + [anon_sym_QMARK] = ACTIONS(4981), + [anon_sym_LT_EQ_GT] = ACTIONS(4981), + [anon_sym_or] = ACTIONS(4979), + [anon_sym_and] = ACTIONS(4979), + [anon_sym_bitor] = ACTIONS(4979), + [anon_sym_xor] = ACTIONS(4979), + [anon_sym_bitand] = ACTIONS(4979), + [anon_sym_not_eq] = ACTIONS(4979), + [anon_sym_DASH_DASH] = ACTIONS(4981), + [anon_sym_PLUS_PLUS] = ACTIONS(4981), + [anon_sym_DOT] = ACTIONS(4979), + [anon_sym_DOT_STAR] = ACTIONS(4981), + [anon_sym_DASH_GT] = ACTIONS(4981), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4979), + [anon_sym_decltype] = ACTIONS(4979), + [anon_sym_final] = ACTIONS(4979), + [anon_sym_override] = ACTIONS(4979), + [anon_sym_requires] = ACTIONS(4979), }, [1893] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4588), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_string_literal] = STATE(2154), + [sym_template_argument_list] = STATE(3400), + [sym_raw_string_literal] = STATE(2154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_RPAREN] = ACTIONS(4860), + [anon_sym_LPAREN2] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4619), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4865), + [anon_sym_EQ] = ACTIONS(4069), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4061), + [anon_sym_SLASH_EQ] = ACTIONS(4061), + [anon_sym_PERCENT_EQ] = ACTIONS(4061), + [anon_sym_PLUS_EQ] = ACTIONS(4061), + [anon_sym_DASH_EQ] = ACTIONS(4061), + [anon_sym_LT_LT_EQ] = ACTIONS(4061), + [anon_sym_GT_GT_EQ] = ACTIONS(4061), + [anon_sym_AMP_EQ] = ACTIONS(4061), + [anon_sym_CARET_EQ] = ACTIONS(4061), + [anon_sym_PIPE_EQ] = ACTIONS(4061), + [anon_sym_and_eq] = ACTIONS(4617), + [anon_sym_or_eq] = ACTIONS(4617), + [anon_sym_xor_eq] = ACTIONS(4617), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4069), + [anon_sym_L_DQUOTE] = ACTIONS(4106), + [anon_sym_u_DQUOTE] = ACTIONS(4106), + [anon_sym_U_DQUOTE] = ACTIONS(4106), + [anon_sym_u8_DQUOTE] = ACTIONS(4106), + [anon_sym_DQUOTE] = ACTIONS(4106), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4108), + [anon_sym_LR_DQUOTE] = ACTIONS(4108), + [anon_sym_uR_DQUOTE] = ACTIONS(4108), + [anon_sym_UR_DQUOTE] = ACTIONS(4108), + [anon_sym_u8R_DQUOTE] = ACTIONS(4108), + [anon_sym_DASH_GT_STAR] = ACTIONS(4061), }, [1894] = { - [sym__expression] = STATE(5291), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_COLON] = ACTIONS(4590), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4983), + [aux_sym_preproc_def_token1] = ACTIONS(4983), + [aux_sym_preproc_if_token1] = ACTIONS(4983), + [aux_sym_preproc_if_token2] = ACTIONS(4983), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4983), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4983), + [aux_sym_preproc_else_token1] = ACTIONS(4983), + [aux_sym_preproc_elif_token1] = ACTIONS(4983), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4983), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4983), + [sym_preproc_directive] = ACTIONS(4983), + [anon_sym_LPAREN2] = ACTIONS(4985), + [anon_sym_TILDE] = ACTIONS(4985), + [anon_sym_STAR] = ACTIONS(4985), + [anon_sym_AMP_AMP] = ACTIONS(4985), + [anon_sym_AMP] = ACTIONS(4983), + [anon_sym___extension__] = ACTIONS(4983), + [anon_sym_typedef] = ACTIONS(4983), + [anon_sym_extern] = ACTIONS(4983), + [anon_sym___attribute__] = ACTIONS(4983), + [anon_sym_COLON_COLON] = ACTIONS(4985), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4985), + [anon_sym___declspec] = ACTIONS(4983), + [anon_sym___based] = ACTIONS(4983), + [anon_sym_signed] = ACTIONS(4983), + [anon_sym_unsigned] = ACTIONS(4983), + [anon_sym_long] = ACTIONS(4983), + [anon_sym_short] = ACTIONS(4983), + [anon_sym_LBRACK] = ACTIONS(4983), + [anon_sym_static] = ACTIONS(4983), + [anon_sym_register] = ACTIONS(4983), + [anon_sym_inline] = ACTIONS(4983), + [anon_sym___inline] = ACTIONS(4983), + [anon_sym___inline__] = ACTIONS(4983), + [anon_sym___forceinline] = ACTIONS(4983), + [anon_sym_thread_local] = ACTIONS(4983), + [anon_sym___thread] = ACTIONS(4983), + [anon_sym_const] = ACTIONS(4983), + [anon_sym_constexpr] = ACTIONS(4983), + [anon_sym_volatile] = ACTIONS(4983), + [anon_sym_restrict] = ACTIONS(4983), + [anon_sym___restrict__] = ACTIONS(4983), + [anon_sym__Atomic] = ACTIONS(4983), + [anon_sym__Noreturn] = ACTIONS(4983), + [anon_sym_noreturn] = ACTIONS(4983), + [anon_sym_mutable] = ACTIONS(4983), + [anon_sym_constinit] = ACTIONS(4983), + [anon_sym_consteval] = ACTIONS(4983), + [sym_primitive_type] = ACTIONS(4983), + [anon_sym_enum] = ACTIONS(4983), + [anon_sym_class] = ACTIONS(4983), + [anon_sym_struct] = ACTIONS(4983), + [anon_sym_union] = ACTIONS(4983), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4983), + [anon_sym_decltype] = ACTIONS(4983), + [anon_sym_virtual] = ACTIONS(4983), + [anon_sym_alignas] = ACTIONS(4983), + [anon_sym_explicit] = ACTIONS(4983), + [anon_sym_typename] = ACTIONS(4983), + [anon_sym_template] = ACTIONS(4983), + [anon_sym_operator] = ACTIONS(4983), + [anon_sym_friend] = ACTIONS(4983), + [anon_sym_public] = ACTIONS(4983), + [anon_sym_private] = ACTIONS(4983), + [anon_sym_protected] = ACTIONS(4983), + [anon_sym_using] = ACTIONS(4983), + [anon_sym_static_assert] = ACTIONS(4983), }, [1895] = { - [sym__expression] = STATE(5265), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4592), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(1969), + [sym_template_argument_list] = STATE(2852), + [sym_raw_string_literal] = STATE(1969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_RPAREN] = ACTIONS(4867), + [anon_sym_LPAREN2] = ACTIONS(4867), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4987), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4615), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4873), + [anon_sym_EQ] = ACTIONS(4069), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4061), + [anon_sym_SLASH_EQ] = ACTIONS(4061), + [anon_sym_PERCENT_EQ] = ACTIONS(4061), + [anon_sym_PLUS_EQ] = ACTIONS(4061), + [anon_sym_DASH_EQ] = ACTIONS(4061), + [anon_sym_LT_LT_EQ] = ACTIONS(4061), + [anon_sym_GT_GT_EQ] = ACTIONS(4061), + [anon_sym_AMP_EQ] = ACTIONS(4061), + [anon_sym_CARET_EQ] = ACTIONS(4061), + [anon_sym_PIPE_EQ] = ACTIONS(4061), + [anon_sym_and_eq] = ACTIONS(4061), + [anon_sym_or_eq] = ACTIONS(4061), + [anon_sym_xor_eq] = ACTIONS(4061), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4069), + [anon_sym_L_DQUOTE] = ACTIONS(4909), + [anon_sym_u_DQUOTE] = ACTIONS(4909), + [anon_sym_U_DQUOTE] = ACTIONS(4909), + [anon_sym_u8_DQUOTE] = ACTIONS(4909), + [anon_sym_DQUOTE] = ACTIONS(4909), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4911), + [anon_sym_LR_DQUOTE] = ACTIONS(4911), + [anon_sym_uR_DQUOTE] = ACTIONS(4911), + [anon_sym_UR_DQUOTE] = ACTIONS(4911), + [anon_sym_u8R_DQUOTE] = ACTIONS(4911), + [anon_sym_DASH_GT_STAR] = ACTIONS(4061), }, [1896] = { - [sym__expression] = STATE(5295), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_COLON] = ACTIONS(4594), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4990), + [aux_sym_preproc_def_token1] = ACTIONS(4990), + [aux_sym_preproc_if_token1] = ACTIONS(4990), + [aux_sym_preproc_if_token2] = ACTIONS(4990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4990), + [aux_sym_preproc_else_token1] = ACTIONS(4990), + [aux_sym_preproc_elif_token1] = ACTIONS(4990), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4990), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4990), + [sym_preproc_directive] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(4992), + [anon_sym_TILDE] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4992), + [anon_sym_AMP] = ACTIONS(4990), + [anon_sym___extension__] = ACTIONS(4990), + [anon_sym_typedef] = ACTIONS(4990), + [anon_sym_extern] = ACTIONS(4990), + [anon_sym___attribute__] = ACTIONS(4990), + [anon_sym_COLON_COLON] = ACTIONS(4992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4992), + [anon_sym___declspec] = ACTIONS(4990), + [anon_sym___based] = ACTIONS(4990), + [anon_sym_signed] = ACTIONS(4990), + [anon_sym_unsigned] = ACTIONS(4990), + [anon_sym_long] = ACTIONS(4990), + [anon_sym_short] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_static] = ACTIONS(4990), + [anon_sym_register] = ACTIONS(4990), + [anon_sym_inline] = ACTIONS(4990), + [anon_sym___inline] = ACTIONS(4990), + [anon_sym___inline__] = ACTIONS(4990), + [anon_sym___forceinline] = ACTIONS(4990), + [anon_sym_thread_local] = ACTIONS(4990), + [anon_sym___thread] = ACTIONS(4990), + [anon_sym_const] = ACTIONS(4990), + [anon_sym_constexpr] = ACTIONS(4990), + [anon_sym_volatile] = ACTIONS(4990), + [anon_sym_restrict] = ACTIONS(4990), + [anon_sym___restrict__] = ACTIONS(4990), + [anon_sym__Atomic] = ACTIONS(4990), + [anon_sym__Noreturn] = ACTIONS(4990), + [anon_sym_noreturn] = ACTIONS(4990), + [anon_sym_mutable] = ACTIONS(4990), + [anon_sym_constinit] = ACTIONS(4990), + [anon_sym_consteval] = ACTIONS(4990), + [sym_primitive_type] = ACTIONS(4990), + [anon_sym_enum] = ACTIONS(4990), + [anon_sym_class] = ACTIONS(4990), + [anon_sym_struct] = ACTIONS(4990), + [anon_sym_union] = ACTIONS(4990), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4990), + [anon_sym_decltype] = ACTIONS(4990), + [anon_sym_virtual] = ACTIONS(4990), + [anon_sym_alignas] = ACTIONS(4990), + [anon_sym_explicit] = ACTIONS(4990), + [anon_sym_typename] = ACTIONS(4990), + [anon_sym_template] = ACTIONS(4990), + [anon_sym_operator] = ACTIONS(4990), + [anon_sym_friend] = ACTIONS(4990), + [anon_sym_public] = ACTIONS(4990), + [anon_sym_private] = ACTIONS(4990), + [anon_sym_protected] = ACTIONS(4990), + [anon_sym_using] = ACTIONS(4990), + [anon_sym_static_assert] = ACTIONS(4990), }, [1897] = { - [sym__expression] = STATE(5000), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(8648), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4549), + [anon_sym_COMMA] = ACTIONS(4549), + [anon_sym_RPAREN] = ACTIONS(4549), + [anon_sym_LPAREN2] = ACTIONS(4549), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_STAR] = ACTIONS(4549), + [anon_sym_SLASH] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4549), + [anon_sym_PIPE_PIPE] = ACTIONS(4549), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4547), + [anon_sym_CARET] = ACTIONS(4549), + [anon_sym_AMP] = ACTIONS(4547), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_GT] = ACTIONS(4547), + [anon_sym_GT_EQ] = ACTIONS(4549), + [anon_sym_LT_EQ] = ACTIONS(4547), + [anon_sym_LT] = ACTIONS(4547), + [anon_sym_LT_LT] = ACTIONS(4549), + [anon_sym_GT_GT] = ACTIONS(4549), + [anon_sym_SEMI] = ACTIONS(4549), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym___attribute__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4549), + [anon_sym___based] = ACTIONS(4547), + [anon_sym_LBRACE] = ACTIONS(4549), + [anon_sym_RBRACE] = ACTIONS(4549), + [anon_sym_signed] = ACTIONS(4547), + [anon_sym_unsigned] = ACTIONS(4547), + [anon_sym_long] = ACTIONS(4547), + [anon_sym_short] = ACTIONS(4547), + [anon_sym_LBRACK] = ACTIONS(4549), + [anon_sym_RBRACK] = ACTIONS(4549), + [anon_sym_const] = ACTIONS(4547), + [anon_sym_constexpr] = ACTIONS(4547), + [anon_sym_volatile] = ACTIONS(4547), + [anon_sym_restrict] = ACTIONS(4547), + [anon_sym___restrict__] = ACTIONS(4547), + [anon_sym__Atomic] = ACTIONS(4547), + [anon_sym__Noreturn] = ACTIONS(4547), + [anon_sym_noreturn] = ACTIONS(4547), + [anon_sym_mutable] = ACTIONS(4547), + [anon_sym_constinit] = ACTIONS(4547), + [anon_sym_consteval] = ACTIONS(4547), + [sym_primitive_type] = ACTIONS(4547), + [anon_sym_COLON] = ACTIONS(4547), + [anon_sym_QMARK] = ACTIONS(4549), + [anon_sym_LT_EQ_GT] = ACTIONS(4549), + [anon_sym_or] = ACTIONS(4547), + [anon_sym_and] = ACTIONS(4547), + [anon_sym_bitor] = ACTIONS(4547), + [anon_sym_xor] = ACTIONS(4547), + [anon_sym_bitand] = ACTIONS(4547), + [anon_sym_not_eq] = ACTIONS(4547), + [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4549), + [anon_sym_DOT] = ACTIONS(4547), + [anon_sym_DOT_STAR] = ACTIONS(4549), + [anon_sym_DASH_GT] = ACTIONS(4549), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4547), + [anon_sym_decltype] = ACTIONS(4547), + [anon_sym_final] = ACTIONS(4547), + [anon_sym_override] = ACTIONS(4547), + [anon_sym_requires] = ACTIONS(4547), }, [1898] = { - [sym__expression] = STATE(5281), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_COLON] = ACTIONS(4596), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token2] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [aux_sym_preproc_else_token1] = ACTIONS(3168), + [aux_sym_preproc_elif_token1] = ACTIONS(3168), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3170), + [anon_sym_AMP_AMP] = ACTIONS(3170), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3170), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_friend] = ACTIONS(3168), + [anon_sym_public] = ACTIONS(3168), + [anon_sym_private] = ACTIONS(3168), + [anon_sym_protected] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), }, [1899] = { - [sym__expression] = STATE(4259), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4598), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(4555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4557), + [anon_sym_COMMA] = ACTIONS(4557), + [anon_sym_RPAREN] = ACTIONS(4557), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_PERCENT] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4557), + [anon_sym_AMP_AMP] = ACTIONS(4557), + [anon_sym_PIPE] = ACTIONS(4555), + [anon_sym_CARET] = ACTIONS(4557), + [anon_sym_AMP] = ACTIONS(4555), + [anon_sym_EQ_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_GT_EQ] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_LT_LT] = ACTIONS(4557), + [anon_sym_GT_GT] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4557), + [anon_sym___extension__] = ACTIONS(4555), + [anon_sym___attribute__] = ACTIONS(4555), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym___based] = ACTIONS(4555), + [anon_sym_LBRACE] = ACTIONS(4557), + [anon_sym_RBRACE] = ACTIONS(4557), + [anon_sym_signed] = ACTIONS(4555), + [anon_sym_unsigned] = ACTIONS(4555), + [anon_sym_long] = ACTIONS(4555), + [anon_sym_short] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4557), + [anon_sym_RBRACK] = ACTIONS(4557), + [anon_sym_const] = ACTIONS(4555), + [anon_sym_constexpr] = ACTIONS(4555), + [anon_sym_volatile] = ACTIONS(4555), + [anon_sym_restrict] = ACTIONS(4555), + [anon_sym___restrict__] = ACTIONS(4555), + [anon_sym__Atomic] = ACTIONS(4555), + [anon_sym__Noreturn] = ACTIONS(4555), + [anon_sym_noreturn] = ACTIONS(4555), + [anon_sym_mutable] = ACTIONS(4555), + [anon_sym_constinit] = ACTIONS(4555), + [anon_sym_consteval] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(4555), + [anon_sym_COLON] = ACTIONS(4555), + [anon_sym_QMARK] = ACTIONS(4557), + [anon_sym_LT_EQ_GT] = ACTIONS(4557), + [anon_sym_or] = ACTIONS(4555), + [anon_sym_and] = ACTIONS(4555), + [anon_sym_bitor] = ACTIONS(4555), + [anon_sym_xor] = ACTIONS(4555), + [anon_sym_bitand] = ACTIONS(4555), + [anon_sym_not_eq] = ACTIONS(4555), + [anon_sym_DASH_DASH] = ACTIONS(4557), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DOT] = ACTIONS(4555), + [anon_sym_DOT_STAR] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4557), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4555), + [anon_sym_decltype] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_override] = ACTIONS(4555), + [anon_sym_requires] = ACTIONS(4555), }, [1900] = { - [sym__expression] = STATE(4265), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4601), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(3208), + [aux_sym_preproc_def_token1] = ACTIONS(3208), + [aux_sym_preproc_if_token1] = ACTIONS(3208), + [aux_sym_preproc_if_token2] = ACTIONS(3208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3208), + [aux_sym_preproc_else_token1] = ACTIONS(3208), + [aux_sym_preproc_elif_token1] = ACTIONS(3208), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3208), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3208), + [sym_preproc_directive] = ACTIONS(3208), + [anon_sym_LPAREN2] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3210), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_AMP_AMP] = ACTIONS(3210), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym___extension__] = ACTIONS(3208), + [anon_sym_typedef] = ACTIONS(3208), + [anon_sym_extern] = ACTIONS(3208), + [anon_sym___attribute__] = ACTIONS(3208), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3210), + [anon_sym___declspec] = ACTIONS(3208), + [anon_sym___based] = ACTIONS(3208), + [anon_sym_signed] = ACTIONS(3208), + [anon_sym_unsigned] = ACTIONS(3208), + [anon_sym_long] = ACTIONS(3208), + [anon_sym_short] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_static] = ACTIONS(3208), + [anon_sym_register] = ACTIONS(3208), + [anon_sym_inline] = ACTIONS(3208), + [anon_sym___inline] = ACTIONS(3208), + [anon_sym___inline__] = ACTIONS(3208), + [anon_sym___forceinline] = ACTIONS(3208), + [anon_sym_thread_local] = ACTIONS(3208), + [anon_sym___thread] = ACTIONS(3208), + [anon_sym_const] = ACTIONS(3208), + [anon_sym_constexpr] = ACTIONS(3208), + [anon_sym_volatile] = ACTIONS(3208), + [anon_sym_restrict] = ACTIONS(3208), + [anon_sym___restrict__] = ACTIONS(3208), + [anon_sym__Atomic] = ACTIONS(3208), + [anon_sym__Noreturn] = ACTIONS(3208), + [anon_sym_noreturn] = ACTIONS(3208), + [anon_sym_mutable] = ACTIONS(3208), + [anon_sym_constinit] = ACTIONS(3208), + [anon_sym_consteval] = ACTIONS(3208), + [sym_primitive_type] = ACTIONS(3208), + [anon_sym_enum] = ACTIONS(3208), + [anon_sym_class] = ACTIONS(3208), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3208), + [anon_sym_decltype] = ACTIONS(3208), + [anon_sym_virtual] = ACTIONS(3208), + [anon_sym_alignas] = ACTIONS(3208), + [anon_sym_explicit] = ACTIONS(3208), + [anon_sym_typename] = ACTIONS(3208), + [anon_sym_template] = ACTIONS(3208), + [anon_sym_operator] = ACTIONS(3208), + [anon_sym_friend] = ACTIONS(3208), + [anon_sym_public] = ACTIONS(3208), + [anon_sym_private] = ACTIONS(3208), + [anon_sym_protected] = ACTIONS(3208), + [anon_sym_using] = ACTIONS(3208), + [anon_sym_static_assert] = ACTIONS(3208), }, [1901] = { - [sym__expression] = STATE(5325), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_COLON] = ACTIONS(4604), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3212), + [aux_sym_preproc_def_token1] = ACTIONS(3212), + [aux_sym_preproc_if_token1] = ACTIONS(3212), + [aux_sym_preproc_if_token2] = ACTIONS(3212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3212), + [aux_sym_preproc_else_token1] = ACTIONS(3212), + [aux_sym_preproc_elif_token1] = ACTIONS(3212), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3212), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3212), + [sym_preproc_directive] = ACTIONS(3212), + [anon_sym_LPAREN2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [anon_sym_AMP_AMP] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym___extension__] = ACTIONS(3212), + [anon_sym_typedef] = ACTIONS(3212), + [anon_sym_extern] = ACTIONS(3212), + [anon_sym___attribute__] = ACTIONS(3212), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3214), + [anon_sym___declspec] = ACTIONS(3212), + [anon_sym___based] = ACTIONS(3212), + [anon_sym_signed] = ACTIONS(3212), + [anon_sym_unsigned] = ACTIONS(3212), + [anon_sym_long] = ACTIONS(3212), + [anon_sym_short] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_static] = ACTIONS(3212), + [anon_sym_register] = ACTIONS(3212), + [anon_sym_inline] = ACTIONS(3212), + [anon_sym___inline] = ACTIONS(3212), + [anon_sym___inline__] = ACTIONS(3212), + [anon_sym___forceinline] = ACTIONS(3212), + [anon_sym_thread_local] = ACTIONS(3212), + [anon_sym___thread] = ACTIONS(3212), + [anon_sym_const] = ACTIONS(3212), + [anon_sym_constexpr] = ACTIONS(3212), + [anon_sym_volatile] = ACTIONS(3212), + [anon_sym_restrict] = ACTIONS(3212), + [anon_sym___restrict__] = ACTIONS(3212), + [anon_sym__Atomic] = ACTIONS(3212), + [anon_sym__Noreturn] = ACTIONS(3212), + [anon_sym_noreturn] = ACTIONS(3212), + [anon_sym_mutable] = ACTIONS(3212), + [anon_sym_constinit] = ACTIONS(3212), + [anon_sym_consteval] = ACTIONS(3212), + [sym_primitive_type] = ACTIONS(3212), + [anon_sym_enum] = ACTIONS(3212), + [anon_sym_class] = ACTIONS(3212), + [anon_sym_struct] = ACTIONS(3212), + [anon_sym_union] = ACTIONS(3212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3212), + [anon_sym_decltype] = ACTIONS(3212), + [anon_sym_virtual] = ACTIONS(3212), + [anon_sym_alignas] = ACTIONS(3212), + [anon_sym_explicit] = ACTIONS(3212), + [anon_sym_typename] = ACTIONS(3212), + [anon_sym_template] = ACTIONS(3212), + [anon_sym_operator] = ACTIONS(3212), + [anon_sym_friend] = ACTIONS(3212), + [anon_sym_public] = ACTIONS(3212), + [anon_sym_private] = ACTIONS(3212), + [anon_sym_protected] = ACTIONS(3212), + [anon_sym_using] = ACTIONS(3212), + [anon_sym_static_assert] = ACTIONS(3212), }, [1902] = { - [sym__expression] = STATE(4267), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4606), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(4994), + [aux_sym_preproc_def_token1] = ACTIONS(4994), + [aux_sym_preproc_if_token1] = ACTIONS(4994), + [aux_sym_preproc_if_token2] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), + [aux_sym_preproc_else_token1] = ACTIONS(4994), + [aux_sym_preproc_elif_token1] = ACTIONS(4994), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4994), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4994), + [sym_preproc_directive] = ACTIONS(4994), + [anon_sym_LPAREN2] = ACTIONS(4996), + [anon_sym_TILDE] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_AMP_AMP] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4994), + [anon_sym___extension__] = ACTIONS(4994), + [anon_sym_typedef] = ACTIONS(4994), + [anon_sym_extern] = ACTIONS(4994), + [anon_sym___attribute__] = ACTIONS(4994), + [anon_sym_COLON_COLON] = ACTIONS(4996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4996), + [anon_sym___declspec] = ACTIONS(4994), + [anon_sym___based] = ACTIONS(4994), + [anon_sym_signed] = ACTIONS(4994), + [anon_sym_unsigned] = ACTIONS(4994), + [anon_sym_long] = ACTIONS(4994), + [anon_sym_short] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_static] = ACTIONS(4994), + [anon_sym_register] = ACTIONS(4994), + [anon_sym_inline] = ACTIONS(4994), + [anon_sym___inline] = ACTIONS(4994), + [anon_sym___inline__] = ACTIONS(4994), + [anon_sym___forceinline] = ACTIONS(4994), + [anon_sym_thread_local] = ACTIONS(4994), + [anon_sym___thread] = ACTIONS(4994), + [anon_sym_const] = ACTIONS(4994), + [anon_sym_constexpr] = ACTIONS(4994), + [anon_sym_volatile] = ACTIONS(4994), + [anon_sym_restrict] = ACTIONS(4994), + [anon_sym___restrict__] = ACTIONS(4994), + [anon_sym__Atomic] = ACTIONS(4994), + [anon_sym__Noreturn] = ACTIONS(4994), + [anon_sym_noreturn] = ACTIONS(4994), + [anon_sym_mutable] = ACTIONS(4994), + [anon_sym_constinit] = ACTIONS(4994), + [anon_sym_consteval] = ACTIONS(4994), + [sym_primitive_type] = ACTIONS(4994), + [anon_sym_enum] = ACTIONS(4994), + [anon_sym_class] = ACTIONS(4994), + [anon_sym_struct] = ACTIONS(4994), + [anon_sym_union] = ACTIONS(4994), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4994), + [anon_sym_decltype] = ACTIONS(4994), + [anon_sym_virtual] = ACTIONS(4994), + [anon_sym_alignas] = ACTIONS(4994), + [anon_sym_explicit] = ACTIONS(4994), + [anon_sym_typename] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(4994), + [anon_sym_operator] = ACTIONS(4994), + [anon_sym_friend] = ACTIONS(4994), + [anon_sym_public] = ACTIONS(4994), + [anon_sym_private] = ACTIONS(4994), + [anon_sym_protected] = ACTIONS(4994), + [anon_sym_using] = ACTIONS(4994), + [anon_sym_static_assert] = ACTIONS(4994), }, [1903] = { - [sym__expression] = STATE(4268), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4609), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(2852), + [aux_sym_preproc_def_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token2] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2852), + [aux_sym_preproc_else_token1] = ACTIONS(2852), + [aux_sym_preproc_elif_token1] = ACTIONS(2852), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2852), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2852), + [sym_preproc_directive] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym___extension__] = ACTIONS(2852), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym___attribute__] = ACTIONS(2852), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2854), + [anon_sym___declspec] = ACTIONS(2852), + [anon_sym___based] = ACTIONS(2852), + [anon_sym_signed] = ACTIONS(2852), + [anon_sym_unsigned] = ACTIONS(2852), + [anon_sym_long] = ACTIONS(2852), + [anon_sym_short] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_register] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym___inline] = ACTIONS(2852), + [anon_sym___inline__] = ACTIONS(2852), + [anon_sym___forceinline] = ACTIONS(2852), + [anon_sym_thread_local] = ACTIONS(2852), + [anon_sym___thread] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_constexpr] = ACTIONS(2852), + [anon_sym_volatile] = ACTIONS(2852), + [anon_sym_restrict] = ACTIONS(2852), + [anon_sym___restrict__] = ACTIONS(2852), + [anon_sym__Atomic] = ACTIONS(2852), + [anon_sym__Noreturn] = ACTIONS(2852), + [anon_sym_noreturn] = ACTIONS(2852), + [anon_sym_mutable] = ACTIONS(2852), + [anon_sym_constinit] = ACTIONS(2852), + [anon_sym_consteval] = ACTIONS(2852), + [sym_primitive_type] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_class] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2852), + [anon_sym_decltype] = ACTIONS(2852), + [anon_sym_virtual] = ACTIONS(2852), + [anon_sym_alignas] = ACTIONS(2852), + [anon_sym_explicit] = ACTIONS(2852), + [anon_sym_typename] = ACTIONS(2852), + [anon_sym_template] = ACTIONS(2852), + [anon_sym_operator] = ACTIONS(2852), + [anon_sym_friend] = ACTIONS(2852), + [anon_sym_public] = ACTIONS(2852), + [anon_sym_private] = ACTIONS(2852), + [anon_sym_protected] = ACTIONS(2852), + [anon_sym_using] = ACTIONS(2852), + [anon_sym_static_assert] = ACTIONS(2852), }, [1904] = { - [sym__expression] = STATE(4269), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4612), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(4998), + [aux_sym_preproc_def_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token2] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4998), + [aux_sym_preproc_else_token1] = ACTIONS(4998), + [aux_sym_preproc_elif_token1] = ACTIONS(4998), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4998), + [sym_preproc_directive] = ACTIONS(4998), + [anon_sym_LPAREN2] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_AMP_AMP] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym___extension__] = ACTIONS(4998), + [anon_sym_typedef] = ACTIONS(4998), + [anon_sym_extern] = ACTIONS(4998), + [anon_sym___attribute__] = ACTIONS(4998), + [anon_sym_COLON_COLON] = ACTIONS(5000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5000), + [anon_sym___declspec] = ACTIONS(4998), + [anon_sym___based] = ACTIONS(4998), + [anon_sym_signed] = ACTIONS(4998), + [anon_sym_unsigned] = ACTIONS(4998), + [anon_sym_long] = ACTIONS(4998), + [anon_sym_short] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_static] = ACTIONS(4998), + [anon_sym_register] = ACTIONS(4998), + [anon_sym_inline] = ACTIONS(4998), + [anon_sym___inline] = ACTIONS(4998), + [anon_sym___inline__] = ACTIONS(4998), + [anon_sym___forceinline] = ACTIONS(4998), + [anon_sym_thread_local] = ACTIONS(4998), + [anon_sym___thread] = ACTIONS(4998), + [anon_sym_const] = ACTIONS(4998), + [anon_sym_constexpr] = ACTIONS(4998), + [anon_sym_volatile] = ACTIONS(4998), + [anon_sym_restrict] = ACTIONS(4998), + [anon_sym___restrict__] = ACTIONS(4998), + [anon_sym__Atomic] = ACTIONS(4998), + [anon_sym__Noreturn] = ACTIONS(4998), + [anon_sym_noreturn] = ACTIONS(4998), + [anon_sym_mutable] = ACTIONS(4998), + [anon_sym_constinit] = ACTIONS(4998), + [anon_sym_consteval] = ACTIONS(4998), + [sym_primitive_type] = ACTIONS(4998), + [anon_sym_enum] = ACTIONS(4998), + [anon_sym_class] = ACTIONS(4998), + [anon_sym_struct] = ACTIONS(4998), + [anon_sym_union] = ACTIONS(4998), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4998), + [anon_sym_decltype] = ACTIONS(4998), + [anon_sym_virtual] = ACTIONS(4998), + [anon_sym_alignas] = ACTIONS(4998), + [anon_sym_explicit] = ACTIONS(4998), + [anon_sym_typename] = ACTIONS(4998), + [anon_sym_template] = ACTIONS(4998), + [anon_sym_operator] = ACTIONS(4998), + [anon_sym_friend] = ACTIONS(4998), + [anon_sym_public] = ACTIONS(4998), + [anon_sym_private] = ACTIONS(4998), + [anon_sym_protected] = ACTIONS(4998), + [anon_sym_using] = ACTIONS(4998), + [anon_sym_static_assert] = ACTIONS(4998), }, [1905] = { - [sym__expression] = STATE(4271), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4615), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(5002), + [aux_sym_preproc_def_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token2] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), + [aux_sym_preproc_else_token1] = ACTIONS(5002), + [aux_sym_preproc_elif_token1] = ACTIONS(5002), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5002), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5002), + [sym_preproc_directive] = ACTIONS(5002), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym___extension__] = ACTIONS(5002), + [anon_sym_typedef] = ACTIONS(5002), + [anon_sym_extern] = ACTIONS(5002), + [anon_sym___attribute__] = ACTIONS(5002), + [anon_sym_COLON_COLON] = ACTIONS(5004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5004), + [anon_sym___declspec] = ACTIONS(5002), + [anon_sym___based] = ACTIONS(5002), + [anon_sym_signed] = ACTIONS(5002), + [anon_sym_unsigned] = ACTIONS(5002), + [anon_sym_long] = ACTIONS(5002), + [anon_sym_short] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_static] = ACTIONS(5002), + [anon_sym_register] = ACTIONS(5002), + [anon_sym_inline] = ACTIONS(5002), + [anon_sym___inline] = ACTIONS(5002), + [anon_sym___inline__] = ACTIONS(5002), + [anon_sym___forceinline] = ACTIONS(5002), + [anon_sym_thread_local] = ACTIONS(5002), + [anon_sym___thread] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5002), + [anon_sym_constexpr] = ACTIONS(5002), + [anon_sym_volatile] = ACTIONS(5002), + [anon_sym_restrict] = ACTIONS(5002), + [anon_sym___restrict__] = ACTIONS(5002), + [anon_sym__Atomic] = ACTIONS(5002), + [anon_sym__Noreturn] = ACTIONS(5002), + [anon_sym_noreturn] = ACTIONS(5002), + [anon_sym_mutable] = ACTIONS(5002), + [anon_sym_constinit] = ACTIONS(5002), + [anon_sym_consteval] = ACTIONS(5002), + [sym_primitive_type] = ACTIONS(5002), + [anon_sym_enum] = ACTIONS(5002), + [anon_sym_class] = ACTIONS(5002), + [anon_sym_struct] = ACTIONS(5002), + [anon_sym_union] = ACTIONS(5002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5002), + [anon_sym_decltype] = ACTIONS(5002), + [anon_sym_virtual] = ACTIONS(5002), + [anon_sym_alignas] = ACTIONS(5002), + [anon_sym_explicit] = ACTIONS(5002), + [anon_sym_typename] = ACTIONS(5002), + [anon_sym_template] = ACTIONS(5002), + [anon_sym_operator] = ACTIONS(5002), + [anon_sym_friend] = ACTIONS(5002), + [anon_sym_public] = ACTIONS(5002), + [anon_sym_private] = ACTIONS(5002), + [anon_sym_protected] = ACTIONS(5002), + [anon_sym_using] = ACTIONS(5002), + [anon_sym_static_assert] = ACTIONS(5002), }, [1906] = { - [sym__expression] = STATE(5008), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_SEMI] = ACTIONS(4618), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(4584), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4998), + [aux_sym_preproc_def_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token2] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4998), + [aux_sym_preproc_else_token1] = ACTIONS(4998), + [aux_sym_preproc_elif_token1] = ACTIONS(4998), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4998), + [sym_preproc_directive] = ACTIONS(4998), + [anon_sym_LPAREN2] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_AMP_AMP] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym___extension__] = ACTIONS(4998), + [anon_sym_typedef] = ACTIONS(4998), + [anon_sym_extern] = ACTIONS(4998), + [anon_sym___attribute__] = ACTIONS(4998), + [anon_sym_COLON_COLON] = ACTIONS(5000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5000), + [anon_sym___declspec] = ACTIONS(4998), + [anon_sym___based] = ACTIONS(4998), + [anon_sym_signed] = ACTIONS(4998), + [anon_sym_unsigned] = ACTIONS(4998), + [anon_sym_long] = ACTIONS(4998), + [anon_sym_short] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_static] = ACTIONS(4998), + [anon_sym_register] = ACTIONS(4998), + [anon_sym_inline] = ACTIONS(4998), + [anon_sym___inline] = ACTIONS(4998), + [anon_sym___inline__] = ACTIONS(4998), + [anon_sym___forceinline] = ACTIONS(4998), + [anon_sym_thread_local] = ACTIONS(4998), + [anon_sym___thread] = ACTIONS(4998), + [anon_sym_const] = ACTIONS(4998), + [anon_sym_constexpr] = ACTIONS(4998), + [anon_sym_volatile] = ACTIONS(4998), + [anon_sym_restrict] = ACTIONS(4998), + [anon_sym___restrict__] = ACTIONS(4998), + [anon_sym__Atomic] = ACTIONS(4998), + [anon_sym__Noreturn] = ACTIONS(4998), + [anon_sym_noreturn] = ACTIONS(4998), + [anon_sym_mutable] = ACTIONS(4998), + [anon_sym_constinit] = ACTIONS(4998), + [anon_sym_consteval] = ACTIONS(4998), + [sym_primitive_type] = ACTIONS(4998), + [anon_sym_enum] = ACTIONS(4998), + [anon_sym_class] = ACTIONS(4998), + [anon_sym_struct] = ACTIONS(4998), + [anon_sym_union] = ACTIONS(4998), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4998), + [anon_sym_decltype] = ACTIONS(4998), + [anon_sym_virtual] = ACTIONS(4998), + [anon_sym_alignas] = ACTIONS(4998), + [anon_sym_explicit] = ACTIONS(4998), + [anon_sym_typename] = ACTIONS(4998), + [anon_sym_template] = ACTIONS(4998), + [anon_sym_operator] = ACTIONS(4998), + [anon_sym_friend] = ACTIONS(4998), + [anon_sym_public] = ACTIONS(4998), + [anon_sym_private] = ACTIONS(4998), + [anon_sym_protected] = ACTIONS(4998), + [anon_sym_using] = ACTIONS(4998), + [anon_sym_static_assert] = ACTIONS(4998), }, [1907] = { - [sym__expression] = STATE(4254), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4620), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(5002), + [aux_sym_preproc_def_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token2] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), + [aux_sym_preproc_else_token1] = ACTIONS(5002), + [aux_sym_preproc_elif_token1] = ACTIONS(5002), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5002), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5002), + [sym_preproc_directive] = ACTIONS(5002), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym___extension__] = ACTIONS(5002), + [anon_sym_typedef] = ACTIONS(5002), + [anon_sym_extern] = ACTIONS(5002), + [anon_sym___attribute__] = ACTIONS(5002), + [anon_sym_COLON_COLON] = ACTIONS(5004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5004), + [anon_sym___declspec] = ACTIONS(5002), + [anon_sym___based] = ACTIONS(5002), + [anon_sym_signed] = ACTIONS(5002), + [anon_sym_unsigned] = ACTIONS(5002), + [anon_sym_long] = ACTIONS(5002), + [anon_sym_short] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_static] = ACTIONS(5002), + [anon_sym_register] = ACTIONS(5002), + [anon_sym_inline] = ACTIONS(5002), + [anon_sym___inline] = ACTIONS(5002), + [anon_sym___inline__] = ACTIONS(5002), + [anon_sym___forceinline] = ACTIONS(5002), + [anon_sym_thread_local] = ACTIONS(5002), + [anon_sym___thread] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5002), + [anon_sym_constexpr] = ACTIONS(5002), + [anon_sym_volatile] = ACTIONS(5002), + [anon_sym_restrict] = ACTIONS(5002), + [anon_sym___restrict__] = ACTIONS(5002), + [anon_sym__Atomic] = ACTIONS(5002), + [anon_sym__Noreturn] = ACTIONS(5002), + [anon_sym_noreturn] = ACTIONS(5002), + [anon_sym_mutable] = ACTIONS(5002), + [anon_sym_constinit] = ACTIONS(5002), + [anon_sym_consteval] = ACTIONS(5002), + [sym_primitive_type] = ACTIONS(5002), + [anon_sym_enum] = ACTIONS(5002), + [anon_sym_class] = ACTIONS(5002), + [anon_sym_struct] = ACTIONS(5002), + [anon_sym_union] = ACTIONS(5002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5002), + [anon_sym_decltype] = ACTIONS(5002), + [anon_sym_virtual] = ACTIONS(5002), + [anon_sym_alignas] = ACTIONS(5002), + [anon_sym_explicit] = ACTIONS(5002), + [anon_sym_typename] = ACTIONS(5002), + [anon_sym_template] = ACTIONS(5002), + [anon_sym_operator] = ACTIONS(5002), + [anon_sym_friend] = ACTIONS(5002), + [anon_sym_public] = ACTIONS(5002), + [anon_sym_private] = ACTIONS(5002), + [anon_sym_protected] = ACTIONS(5002), + [anon_sym_using] = ACTIONS(5002), + [anon_sym_static_assert] = ACTIONS(5002), }, [1908] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4623), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4589), + [anon_sym_RPAREN] = ACTIONS(4591), + [anon_sym_LPAREN2] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4591), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_CARET] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_EQ_EQ] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_GT_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4596), + [anon_sym_LT_LT] = ACTIONS(4596), + [anon_sym_GT_GT] = ACTIONS(4596), + [anon_sym___extension__] = ACTIONS(4594), + [anon_sym_COLON_COLON] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4594), + [anon_sym_LBRACK] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_const] = ACTIONS(4587), + [anon_sym_constexpr] = ACTIONS(4594), + [anon_sym_volatile] = ACTIONS(4594), + [anon_sym_restrict] = ACTIONS(4594), + [anon_sym___restrict__] = ACTIONS(4594), + [anon_sym__Atomic] = ACTIONS(4594), + [anon_sym__Noreturn] = ACTIONS(4594), + [anon_sym_noreturn] = ACTIONS(4594), + [anon_sym_mutable] = ACTIONS(4594), + [anon_sym_constinit] = ACTIONS(4594), + [anon_sym_consteval] = ACTIONS(4594), + [anon_sym_QMARK] = ACTIONS(4589), + [anon_sym_STAR_EQ] = ACTIONS(4589), + [anon_sym_SLASH_EQ] = ACTIONS(4589), + [anon_sym_PERCENT_EQ] = ACTIONS(4589), + [anon_sym_PLUS_EQ] = ACTIONS(4589), + [anon_sym_DASH_EQ] = ACTIONS(4589), + [anon_sym_LT_LT_EQ] = ACTIONS(4589), + [anon_sym_GT_GT_EQ] = ACTIONS(4589), + [anon_sym_AMP_EQ] = ACTIONS(4589), + [anon_sym_CARET_EQ] = ACTIONS(4589), + [anon_sym_PIPE_EQ] = ACTIONS(4589), + [anon_sym_and_eq] = ACTIONS(4589), + [anon_sym_or_eq] = ACTIONS(4589), + [anon_sym_xor_eq] = ACTIONS(4589), + [anon_sym_LT_EQ_GT] = ACTIONS(4589), + [anon_sym_or] = ACTIONS(4596), + [anon_sym_and] = ACTIONS(4596), + [anon_sym_bitor] = ACTIONS(4589), + [anon_sym_xor] = ACTIONS(4596), + [anon_sym_bitand] = ACTIONS(4589), + [anon_sym_not_eq] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_STAR] = ACTIONS(4589), + [anon_sym_DASH_GT] = ACTIONS(4596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4594), + [anon_sym_decltype] = ACTIONS(4594), + [anon_sym_DASH_GT_STAR] = ACTIONS(4589), }, [1909] = { - [sym__expression] = STATE(4254), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(5006), + [aux_sym_preproc_def_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token2] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5006), + [aux_sym_preproc_else_token1] = ACTIONS(5006), + [aux_sym_preproc_elif_token1] = ACTIONS(5006), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5006), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5006), + [sym_preproc_directive] = ACTIONS(5006), + [anon_sym_LPAREN2] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_AMP_AMP] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym___extension__] = ACTIONS(5006), + [anon_sym_typedef] = ACTIONS(5006), + [anon_sym_extern] = ACTIONS(5006), + [anon_sym___attribute__] = ACTIONS(5006), + [anon_sym_COLON_COLON] = ACTIONS(5008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5008), + [anon_sym___declspec] = ACTIONS(5006), + [anon_sym___based] = ACTIONS(5006), + [anon_sym_signed] = ACTIONS(5006), + [anon_sym_unsigned] = ACTIONS(5006), + [anon_sym_long] = ACTIONS(5006), + [anon_sym_short] = ACTIONS(5006), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_static] = ACTIONS(5006), + [anon_sym_register] = ACTIONS(5006), + [anon_sym_inline] = ACTIONS(5006), + [anon_sym___inline] = ACTIONS(5006), + [anon_sym___inline__] = ACTIONS(5006), + [anon_sym___forceinline] = ACTIONS(5006), + [anon_sym_thread_local] = ACTIONS(5006), + [anon_sym___thread] = ACTIONS(5006), + [anon_sym_const] = ACTIONS(5006), + [anon_sym_constexpr] = ACTIONS(5006), + [anon_sym_volatile] = ACTIONS(5006), + [anon_sym_restrict] = ACTIONS(5006), + [anon_sym___restrict__] = ACTIONS(5006), + [anon_sym__Atomic] = ACTIONS(5006), + [anon_sym__Noreturn] = ACTIONS(5006), + [anon_sym_noreturn] = ACTIONS(5006), + [anon_sym_mutable] = ACTIONS(5006), + [anon_sym_constinit] = ACTIONS(5006), + [anon_sym_consteval] = ACTIONS(5006), + [sym_primitive_type] = ACTIONS(5006), + [anon_sym_enum] = ACTIONS(5006), + [anon_sym_class] = ACTIONS(5006), + [anon_sym_struct] = ACTIONS(5006), + [anon_sym_union] = ACTIONS(5006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5006), + [anon_sym_decltype] = ACTIONS(5006), + [anon_sym_virtual] = ACTIONS(5006), + [anon_sym_alignas] = ACTIONS(5006), + [anon_sym_explicit] = ACTIONS(5006), + [anon_sym_typename] = ACTIONS(5006), + [anon_sym_template] = ACTIONS(5006), + [anon_sym_operator] = ACTIONS(5006), + [anon_sym_friend] = ACTIONS(5006), + [anon_sym_public] = ACTIONS(5006), + [anon_sym_private] = ACTIONS(5006), + [anon_sym_protected] = ACTIONS(5006), + [anon_sym_using] = ACTIONS(5006), + [anon_sym_static_assert] = ACTIONS(5006), }, [1910] = { - [sym__expression] = STATE(4257), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_string_literal] = STATE(1780), + [sym_template_argument_list] = STATE(2503), + [sym_raw_string_literal] = STATE(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4860), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4061), + [anon_sym_LBRACK] = ACTIONS(4865), + [anon_sym_EQ] = ACTIONS(4069), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4061), + [anon_sym_SLASH_EQ] = ACTIONS(4061), + [anon_sym_PERCENT_EQ] = ACTIONS(4061), + [anon_sym_PLUS_EQ] = ACTIONS(4061), + [anon_sym_DASH_EQ] = ACTIONS(4061), + [anon_sym_LT_LT_EQ] = ACTIONS(4061), + [anon_sym_GT_GT_EQ] = ACTIONS(4061), + [anon_sym_AMP_EQ] = ACTIONS(4061), + [anon_sym_CARET_EQ] = ACTIONS(4061), + [anon_sym_PIPE_EQ] = ACTIONS(4061), + [anon_sym_and_eq] = ACTIONS(4061), + [anon_sym_or_eq] = ACTIONS(4061), + [anon_sym_xor_eq] = ACTIONS(4061), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4816), + [anon_sym_u_DQUOTE] = ACTIONS(4816), + [anon_sym_U_DQUOTE] = ACTIONS(4816), + [anon_sym_u8_DQUOTE] = ACTIONS(4816), + [anon_sym_DQUOTE] = ACTIONS(4816), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4818), + [anon_sym_LR_DQUOTE] = ACTIONS(4818), + [anon_sym_uR_DQUOTE] = ACTIONS(4818), + [anon_sym_UR_DQUOTE] = ACTIONS(4818), + [anon_sym_u8R_DQUOTE] = ACTIONS(4818), }, [1911] = { - [sym__expression] = STATE(4257), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4631), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(5010), + [aux_sym_preproc_def_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token2] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5010), + [aux_sym_preproc_else_token1] = ACTIONS(5010), + [aux_sym_preproc_elif_token1] = ACTIONS(5010), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5010), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5010), + [sym_preproc_directive] = ACTIONS(5010), + [anon_sym_LPAREN2] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym___extension__] = ACTIONS(5010), + [anon_sym_typedef] = ACTIONS(5010), + [anon_sym_extern] = ACTIONS(5010), + [anon_sym___attribute__] = ACTIONS(5010), + [anon_sym_COLON_COLON] = ACTIONS(5012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5012), + [anon_sym___declspec] = ACTIONS(5010), + [anon_sym___based] = ACTIONS(5010), + [anon_sym_signed] = ACTIONS(5010), + [anon_sym_unsigned] = ACTIONS(5010), + [anon_sym_long] = ACTIONS(5010), + [anon_sym_short] = ACTIONS(5010), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_static] = ACTIONS(5010), + [anon_sym_register] = ACTIONS(5010), + [anon_sym_inline] = ACTIONS(5010), + [anon_sym___inline] = ACTIONS(5010), + [anon_sym___inline__] = ACTIONS(5010), + [anon_sym___forceinline] = ACTIONS(5010), + [anon_sym_thread_local] = ACTIONS(5010), + [anon_sym___thread] = ACTIONS(5010), + [anon_sym_const] = ACTIONS(5010), + [anon_sym_constexpr] = ACTIONS(5010), + [anon_sym_volatile] = ACTIONS(5010), + [anon_sym_restrict] = ACTIONS(5010), + [anon_sym___restrict__] = ACTIONS(5010), + [anon_sym__Atomic] = ACTIONS(5010), + [anon_sym__Noreturn] = ACTIONS(5010), + [anon_sym_noreturn] = ACTIONS(5010), + [anon_sym_mutable] = ACTIONS(5010), + [anon_sym_constinit] = ACTIONS(5010), + [anon_sym_consteval] = ACTIONS(5010), + [sym_primitive_type] = ACTIONS(5010), + [anon_sym_enum] = ACTIONS(5010), + [anon_sym_class] = ACTIONS(5010), + [anon_sym_struct] = ACTIONS(5010), + [anon_sym_union] = ACTIONS(5010), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5010), + [anon_sym_decltype] = ACTIONS(5010), + [anon_sym_virtual] = ACTIONS(5010), + [anon_sym_alignas] = ACTIONS(5010), + [anon_sym_explicit] = ACTIONS(5010), + [anon_sym_typename] = ACTIONS(5010), + [anon_sym_template] = ACTIONS(5010), + [anon_sym_operator] = ACTIONS(5010), + [anon_sym_friend] = ACTIONS(5010), + [anon_sym_public] = ACTIONS(5010), + [anon_sym_private] = ACTIONS(5010), + [anon_sym_protected] = ACTIONS(5010), + [anon_sym_using] = ACTIONS(5010), + [anon_sym_static_assert] = ACTIONS(5010), }, [1912] = { - [sym__expression] = STATE(4257), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4634), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(2880), + [aux_sym_preproc_def_token1] = ACTIONS(2880), + [aux_sym_preproc_if_token1] = ACTIONS(2880), + [aux_sym_preproc_if_token2] = ACTIONS(2880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2880), + [aux_sym_preproc_else_token1] = ACTIONS(2880), + [aux_sym_preproc_elif_token1] = ACTIONS(2880), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2880), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2880), + [sym_preproc_directive] = ACTIONS(2880), + [anon_sym_LPAREN2] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym___extension__] = ACTIONS(2880), + [anon_sym_typedef] = ACTIONS(2880), + [anon_sym_extern] = ACTIONS(2880), + [anon_sym___attribute__] = ACTIONS(2880), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2882), + [anon_sym___declspec] = ACTIONS(2880), + [anon_sym___based] = ACTIONS(2880), + [anon_sym_signed] = ACTIONS(2880), + [anon_sym_unsigned] = ACTIONS(2880), + [anon_sym_long] = ACTIONS(2880), + [anon_sym_short] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_static] = ACTIONS(2880), + [anon_sym_register] = ACTIONS(2880), + [anon_sym_inline] = ACTIONS(2880), + [anon_sym___inline] = ACTIONS(2880), + [anon_sym___inline__] = ACTIONS(2880), + [anon_sym___forceinline] = ACTIONS(2880), + [anon_sym_thread_local] = ACTIONS(2880), + [anon_sym___thread] = ACTIONS(2880), + [anon_sym_const] = ACTIONS(2880), + [anon_sym_constexpr] = ACTIONS(2880), + [anon_sym_volatile] = ACTIONS(2880), + [anon_sym_restrict] = ACTIONS(2880), + [anon_sym___restrict__] = ACTIONS(2880), + [anon_sym__Atomic] = ACTIONS(2880), + [anon_sym__Noreturn] = ACTIONS(2880), + [anon_sym_noreturn] = ACTIONS(2880), + [anon_sym_mutable] = ACTIONS(2880), + [anon_sym_constinit] = ACTIONS(2880), + [anon_sym_consteval] = ACTIONS(2880), + [sym_primitive_type] = ACTIONS(2880), + [anon_sym_enum] = ACTIONS(2880), + [anon_sym_class] = ACTIONS(2880), + [anon_sym_struct] = ACTIONS(2880), + [anon_sym_union] = ACTIONS(2880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2880), + [anon_sym_decltype] = ACTIONS(2880), + [anon_sym_virtual] = ACTIONS(2880), + [anon_sym_alignas] = ACTIONS(2880), + [anon_sym_explicit] = ACTIONS(2880), + [anon_sym_typename] = ACTIONS(2880), + [anon_sym_template] = ACTIONS(2880), + [anon_sym_operator] = ACTIONS(2880), + [anon_sym_friend] = ACTIONS(2880), + [anon_sym_public] = ACTIONS(2880), + [anon_sym_private] = ACTIONS(2880), + [anon_sym_protected] = ACTIONS(2880), + [anon_sym_using] = ACTIONS(2880), + [anon_sym_static_assert] = ACTIONS(2880), }, [1913] = { - [sym__expression] = STATE(4257), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(5014), + [aux_sym_preproc_def_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token2] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5014), + [aux_sym_preproc_else_token1] = ACTIONS(5014), + [aux_sym_preproc_elif_token1] = ACTIONS(5014), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5014), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5014), + [sym_preproc_directive] = ACTIONS(5014), + [anon_sym_LPAREN2] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym___extension__] = ACTIONS(5014), + [anon_sym_typedef] = ACTIONS(5014), + [anon_sym_extern] = ACTIONS(5014), + [anon_sym___attribute__] = ACTIONS(5014), + [anon_sym_COLON_COLON] = ACTIONS(5016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5016), + [anon_sym___declspec] = ACTIONS(5014), + [anon_sym___based] = ACTIONS(5014), + [anon_sym_signed] = ACTIONS(5014), + [anon_sym_unsigned] = ACTIONS(5014), + [anon_sym_long] = ACTIONS(5014), + [anon_sym_short] = ACTIONS(5014), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_static] = ACTIONS(5014), + [anon_sym_register] = ACTIONS(5014), + [anon_sym_inline] = ACTIONS(5014), + [anon_sym___inline] = ACTIONS(5014), + [anon_sym___inline__] = ACTIONS(5014), + [anon_sym___forceinline] = ACTIONS(5014), + [anon_sym_thread_local] = ACTIONS(5014), + [anon_sym___thread] = ACTIONS(5014), + [anon_sym_const] = ACTIONS(5014), + [anon_sym_constexpr] = ACTIONS(5014), + [anon_sym_volatile] = ACTIONS(5014), + [anon_sym_restrict] = ACTIONS(5014), + [anon_sym___restrict__] = ACTIONS(5014), + [anon_sym__Atomic] = ACTIONS(5014), + [anon_sym__Noreturn] = ACTIONS(5014), + [anon_sym_noreturn] = ACTIONS(5014), + [anon_sym_mutable] = ACTIONS(5014), + [anon_sym_constinit] = ACTIONS(5014), + [anon_sym_consteval] = ACTIONS(5014), + [sym_primitive_type] = ACTIONS(5014), + [anon_sym_enum] = ACTIONS(5014), + [anon_sym_class] = ACTIONS(5014), + [anon_sym_struct] = ACTIONS(5014), + [anon_sym_union] = ACTIONS(5014), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5014), + [anon_sym_decltype] = ACTIONS(5014), + [anon_sym_virtual] = ACTIONS(5014), + [anon_sym_alignas] = ACTIONS(5014), + [anon_sym_explicit] = ACTIONS(5014), + [anon_sym_typename] = ACTIONS(5014), + [anon_sym_template] = ACTIONS(5014), + [anon_sym_operator] = ACTIONS(5014), + [anon_sym_friend] = ACTIONS(5014), + [anon_sym_public] = ACTIONS(5014), + [anon_sym_private] = ACTIONS(5014), + [anon_sym_protected] = ACTIONS(5014), + [anon_sym_using] = ACTIONS(5014), + [anon_sym_static_assert] = ACTIONS(5014), }, [1914] = { - [sym__expression] = STATE(4259), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4640), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(5014), + [aux_sym_preproc_def_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token2] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5014), + [aux_sym_preproc_else_token1] = ACTIONS(5014), + [aux_sym_preproc_elif_token1] = ACTIONS(5014), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5014), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5014), + [sym_preproc_directive] = ACTIONS(5014), + [anon_sym_LPAREN2] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym___extension__] = ACTIONS(5014), + [anon_sym_typedef] = ACTIONS(5014), + [anon_sym_extern] = ACTIONS(5014), + [anon_sym___attribute__] = ACTIONS(5014), + [anon_sym_COLON_COLON] = ACTIONS(5016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5016), + [anon_sym___declspec] = ACTIONS(5014), + [anon_sym___based] = ACTIONS(5014), + [anon_sym_signed] = ACTIONS(5014), + [anon_sym_unsigned] = ACTIONS(5014), + [anon_sym_long] = ACTIONS(5014), + [anon_sym_short] = ACTIONS(5014), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_static] = ACTIONS(5014), + [anon_sym_register] = ACTIONS(5014), + [anon_sym_inline] = ACTIONS(5014), + [anon_sym___inline] = ACTIONS(5014), + [anon_sym___inline__] = ACTIONS(5014), + [anon_sym___forceinline] = ACTIONS(5014), + [anon_sym_thread_local] = ACTIONS(5014), + [anon_sym___thread] = ACTIONS(5014), + [anon_sym_const] = ACTIONS(5014), + [anon_sym_constexpr] = ACTIONS(5014), + [anon_sym_volatile] = ACTIONS(5014), + [anon_sym_restrict] = ACTIONS(5014), + [anon_sym___restrict__] = ACTIONS(5014), + [anon_sym__Atomic] = ACTIONS(5014), + [anon_sym__Noreturn] = ACTIONS(5014), + [anon_sym_noreturn] = ACTIONS(5014), + [anon_sym_mutable] = ACTIONS(5014), + [anon_sym_constinit] = ACTIONS(5014), + [anon_sym_consteval] = ACTIONS(5014), + [sym_primitive_type] = ACTIONS(5014), + [anon_sym_enum] = ACTIONS(5014), + [anon_sym_class] = ACTIONS(5014), + [anon_sym_struct] = ACTIONS(5014), + [anon_sym_union] = ACTIONS(5014), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5014), + [anon_sym_decltype] = ACTIONS(5014), + [anon_sym_virtual] = ACTIONS(5014), + [anon_sym_alignas] = ACTIONS(5014), + [anon_sym_explicit] = ACTIONS(5014), + [anon_sym_typename] = ACTIONS(5014), + [anon_sym_template] = ACTIONS(5014), + [anon_sym_operator] = ACTIONS(5014), + [anon_sym_friend] = ACTIONS(5014), + [anon_sym_public] = ACTIONS(5014), + [anon_sym_private] = ACTIONS(5014), + [anon_sym_protected] = ACTIONS(5014), + [anon_sym_using] = ACTIONS(5014), + [anon_sym_static_assert] = ACTIONS(5014), }, [1915] = { - [sym__expression] = STATE(4259), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4643), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(3216), + [aux_sym_preproc_def_token1] = ACTIONS(3216), + [aux_sym_preproc_if_token1] = ACTIONS(3216), + [aux_sym_preproc_if_token2] = ACTIONS(3216), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3216), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3216), + [aux_sym_preproc_else_token1] = ACTIONS(3216), + [aux_sym_preproc_elif_token1] = ACTIONS(3216), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3216), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3216), + [sym_preproc_directive] = ACTIONS(3216), + [anon_sym_LPAREN2] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym___extension__] = ACTIONS(3216), + [anon_sym_typedef] = ACTIONS(3216), + [anon_sym_extern] = ACTIONS(3216), + [anon_sym___attribute__] = ACTIONS(3216), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3218), + [anon_sym___declspec] = ACTIONS(3216), + [anon_sym___based] = ACTIONS(3216), + [anon_sym_signed] = ACTIONS(3216), + [anon_sym_unsigned] = ACTIONS(3216), + [anon_sym_long] = ACTIONS(3216), + [anon_sym_short] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_static] = ACTIONS(3216), + [anon_sym_register] = ACTIONS(3216), + [anon_sym_inline] = ACTIONS(3216), + [anon_sym___inline] = ACTIONS(3216), + [anon_sym___inline__] = ACTIONS(3216), + [anon_sym___forceinline] = ACTIONS(3216), + [anon_sym_thread_local] = ACTIONS(3216), + [anon_sym___thread] = ACTIONS(3216), + [anon_sym_const] = ACTIONS(3216), + [anon_sym_constexpr] = ACTIONS(3216), + [anon_sym_volatile] = ACTIONS(3216), + [anon_sym_restrict] = ACTIONS(3216), + [anon_sym___restrict__] = ACTIONS(3216), + [anon_sym__Atomic] = ACTIONS(3216), + [anon_sym__Noreturn] = ACTIONS(3216), + [anon_sym_noreturn] = ACTIONS(3216), + [anon_sym_mutable] = ACTIONS(3216), + [anon_sym_constinit] = ACTIONS(3216), + [anon_sym_consteval] = ACTIONS(3216), + [sym_primitive_type] = ACTIONS(3216), + [anon_sym_enum] = ACTIONS(3216), + [anon_sym_class] = ACTIONS(3216), + [anon_sym_struct] = ACTIONS(3216), + [anon_sym_union] = ACTIONS(3216), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3216), + [anon_sym_decltype] = ACTIONS(3216), + [anon_sym_virtual] = ACTIONS(3216), + [anon_sym_alignas] = ACTIONS(3216), + [anon_sym_explicit] = ACTIONS(3216), + [anon_sym_typename] = ACTIONS(3216), + [anon_sym_template] = ACTIONS(3216), + [anon_sym_operator] = ACTIONS(3216), + [anon_sym_friend] = ACTIONS(3216), + [anon_sym_public] = ACTIONS(3216), + [anon_sym_private] = ACTIONS(3216), + [anon_sym_protected] = ACTIONS(3216), + [anon_sym_using] = ACTIONS(3216), + [anon_sym_static_assert] = ACTIONS(3216), }, [1916] = { - [sym__expression] = STATE(5332), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_COLON] = ACTIONS(4646), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_decltype_auto] = STATE(1931), + [sym_identifier] = ACTIONS(5018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_LPAREN2] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_PIPE_PIPE] = ACTIONS(5020), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_GT_EQ] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_LT_LT] = ACTIONS(5020), + [anon_sym_GT_GT] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym___extension__] = ACTIONS(5018), + [anon_sym___attribute__] = ACTIONS(5018), + [anon_sym___based] = ACTIONS(5018), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_signed] = ACTIONS(5018), + [anon_sym_unsigned] = ACTIONS(5018), + [anon_sym_long] = ACTIONS(5018), + [anon_sym_short] = ACTIONS(5018), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_RBRACK] = ACTIONS(5020), + [anon_sym_const] = ACTIONS(5018), + [anon_sym_constexpr] = ACTIONS(5018), + [anon_sym_volatile] = ACTIONS(5018), + [anon_sym_restrict] = ACTIONS(5018), + [anon_sym___restrict__] = ACTIONS(5018), + [anon_sym__Atomic] = ACTIONS(5018), + [anon_sym__Noreturn] = ACTIONS(5018), + [anon_sym_noreturn] = ACTIONS(5018), + [anon_sym_mutable] = ACTIONS(5018), + [anon_sym_constinit] = ACTIONS(5018), + [anon_sym_consteval] = ACTIONS(5018), + [sym_primitive_type] = ACTIONS(5018), + [anon_sym_COLON] = ACTIONS(5020), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_LT_EQ_GT] = ACTIONS(5020), + [anon_sym_or] = ACTIONS(5018), + [anon_sym_and] = ACTIONS(5018), + [anon_sym_bitor] = ACTIONS(5018), + [anon_sym_xor] = ACTIONS(5018), + [anon_sym_bitand] = ACTIONS(5018), + [anon_sym_not_eq] = ACTIONS(5018), + [anon_sym_DASH_DASH] = ACTIONS(5020), + [anon_sym_PLUS_PLUS] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_DOT_STAR] = ACTIONS(5020), + [anon_sym_DASH_GT] = ACTIONS(5020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5022), + [anon_sym_decltype] = ACTIONS(5024), + [anon_sym_final] = ACTIONS(5018), + [anon_sym_override] = ACTIONS(5018), + [anon_sym_requires] = ACTIONS(5018), }, [1917] = { - [sym__expression] = STATE(4265), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_string_literal] = STATE(1780), + [sym_raw_string_literal] = STATE(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_RPAREN] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4069), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym_RBRACE] = ACTIONS(4061), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_RBRACK] = ACTIONS(4061), + [anon_sym_EQ] = ACTIONS(4069), + [anon_sym_COLON] = ACTIONS(4061), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4061), + [anon_sym_SLASH_EQ] = ACTIONS(4061), + [anon_sym_PERCENT_EQ] = ACTIONS(4061), + [anon_sym_PLUS_EQ] = ACTIONS(4061), + [anon_sym_DASH_EQ] = ACTIONS(4061), + [anon_sym_LT_LT_EQ] = ACTIONS(4061), + [anon_sym_GT_GT_EQ] = ACTIONS(4061), + [anon_sym_AMP_EQ] = ACTIONS(4061), + [anon_sym_CARET_EQ] = ACTIONS(4061), + [anon_sym_PIPE_EQ] = ACTIONS(4061), + [anon_sym_and_eq] = ACTIONS(4069), + [anon_sym_or_eq] = ACTIONS(4069), + [anon_sym_xor_eq] = ACTIONS(4069), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4069), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4069), + [anon_sym_not_eq] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4816), + [anon_sym_u_DQUOTE] = ACTIONS(4816), + [anon_sym_U_DQUOTE] = ACTIONS(4816), + [anon_sym_u8_DQUOTE] = ACTIONS(4816), + [anon_sym_DQUOTE] = ACTIONS(4816), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4818), + [anon_sym_LR_DQUOTE] = ACTIONS(4818), + [anon_sym_uR_DQUOTE] = ACTIONS(4818), + [anon_sym_UR_DQUOTE] = ACTIONS(4818), + [anon_sym_u8R_DQUOTE] = ACTIONS(4818), + [sym_literal_suffix] = ACTIONS(5026), }, [1918] = { - [sym__expression] = STATE(4267), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4651), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(5028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5030), + [anon_sym_COMMA] = ACTIONS(5030), + [anon_sym_RPAREN] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_PERCENT] = ACTIONS(5030), + [anon_sym_PIPE_PIPE] = ACTIONS(5030), + [anon_sym_AMP_AMP] = ACTIONS(5030), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym_AMP] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5030), + [anon_sym_BANG_EQ] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5030), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5028), + [anon_sym_LT_LT] = ACTIONS(5030), + [anon_sym_GT_GT] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5030), + [anon_sym___extension__] = ACTIONS(5028), + [anon_sym___attribute__] = ACTIONS(5028), + [anon_sym_COLON_COLON] = ACTIONS(5030), + [anon_sym___based] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5030), + [anon_sym_RBRACE] = ACTIONS(5030), + [anon_sym_signed] = ACTIONS(5028), + [anon_sym_unsigned] = ACTIONS(5028), + [anon_sym_long] = ACTIONS(5028), + [anon_sym_short] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_RBRACK] = ACTIONS(5030), + [anon_sym_const] = ACTIONS(5028), + [anon_sym_constexpr] = ACTIONS(5028), + [anon_sym_volatile] = ACTIONS(5028), + [anon_sym_restrict] = ACTIONS(5028), + [anon_sym___restrict__] = ACTIONS(5028), + [anon_sym__Atomic] = ACTIONS(5028), + [anon_sym__Noreturn] = ACTIONS(5028), + [anon_sym_noreturn] = ACTIONS(5028), + [anon_sym_mutable] = ACTIONS(5028), + [anon_sym_constinit] = ACTIONS(5028), + [anon_sym_consteval] = ACTIONS(5028), + [sym_primitive_type] = ACTIONS(5028), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5030), + [anon_sym_LT_EQ_GT] = ACTIONS(5030), + [anon_sym_or] = ACTIONS(5028), + [anon_sym_and] = ACTIONS(5028), + [anon_sym_bitor] = ACTIONS(5028), + [anon_sym_xor] = ACTIONS(5028), + [anon_sym_bitand] = ACTIONS(5028), + [anon_sym_not_eq] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5030), + [anon_sym_PLUS_PLUS] = ACTIONS(5030), + [anon_sym_DOT] = ACTIONS(5028), + [anon_sym_DOT_STAR] = ACTIONS(5030), + [anon_sym_DASH_GT] = ACTIONS(5030), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5028), + [anon_sym_decltype] = ACTIONS(5028), + [anon_sym_final] = ACTIONS(5028), + [anon_sym_override] = ACTIONS(5028), + [anon_sym_requires] = ACTIONS(5028), }, [1919] = { - [sym__expression] = STATE(4268), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4654), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4589), + [anon_sym_RPAREN] = ACTIONS(4591), + [anon_sym_LPAREN2] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4591), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_CARET] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_EQ_EQ] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_GT_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4596), + [anon_sym_LT_LT] = ACTIONS(4596), + [anon_sym_GT_GT] = ACTIONS(4596), + [anon_sym_SEMI] = ACTIONS(4589), + [anon_sym___extension__] = ACTIONS(4594), + [anon_sym_COLON_COLON] = ACTIONS(4594), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4589), + [anon_sym_LBRACE] = ACTIONS(4594), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_const] = ACTIONS(4587), + [anon_sym_constexpr] = ACTIONS(4594), + [anon_sym_volatile] = ACTIONS(4594), + [anon_sym_restrict] = ACTIONS(4594), + [anon_sym___restrict__] = ACTIONS(4594), + [anon_sym__Atomic] = ACTIONS(4594), + [anon_sym__Noreturn] = ACTIONS(4594), + [anon_sym_noreturn] = ACTIONS(4594), + [anon_sym_mutable] = ACTIONS(4594), + [anon_sym_constinit] = ACTIONS(4594), + [anon_sym_consteval] = ACTIONS(4594), + [anon_sym_QMARK] = ACTIONS(4589), + [anon_sym_STAR_EQ] = ACTIONS(4589), + [anon_sym_SLASH_EQ] = ACTIONS(4589), + [anon_sym_PERCENT_EQ] = ACTIONS(4589), + [anon_sym_PLUS_EQ] = ACTIONS(4589), + [anon_sym_DASH_EQ] = ACTIONS(4589), + [anon_sym_LT_LT_EQ] = ACTIONS(4589), + [anon_sym_GT_GT_EQ] = ACTIONS(4589), + [anon_sym_AMP_EQ] = ACTIONS(4589), + [anon_sym_CARET_EQ] = ACTIONS(4589), + [anon_sym_PIPE_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ_GT] = ACTIONS(4589), + [anon_sym_or] = ACTIONS(4589), + [anon_sym_and] = ACTIONS(4589), + [anon_sym_bitor] = ACTIONS(4589), + [anon_sym_xor] = ACTIONS(4589), + [anon_sym_bitand] = ACTIONS(4589), + [anon_sym_not_eq] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_STAR] = ACTIONS(4589), + [anon_sym_DASH_GT] = ACTIONS(4596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4594), + [anon_sym_decltype] = ACTIONS(4594), + [anon_sym_DASH_GT_STAR] = ACTIONS(4589), }, [1920] = { - [sym__expression] = STATE(4269), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(5032), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), + [anon_sym_COMMA] = ACTIONS(5034), + [anon_sym_RPAREN] = ACTIONS(5034), + [anon_sym_LPAREN2] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5032), + [anon_sym_STAR] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5032), + [anon_sym_PERCENT] = ACTIONS(5034), + [anon_sym_PIPE_PIPE] = ACTIONS(5034), + [anon_sym_AMP_AMP] = ACTIONS(5034), + [anon_sym_PIPE] = ACTIONS(5032), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(5032), + [anon_sym_EQ_EQ] = ACTIONS(5034), + [anon_sym_BANG_EQ] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5032), + [anon_sym_GT_EQ] = ACTIONS(5034), + [anon_sym_LT_EQ] = ACTIONS(5032), + [anon_sym_LT] = ACTIONS(5032), + [anon_sym_LT_LT] = ACTIONS(5034), + [anon_sym_GT_GT] = ACTIONS(5034), + [anon_sym_SEMI] = ACTIONS(5034), + [anon_sym___extension__] = ACTIONS(5032), + [anon_sym___attribute__] = ACTIONS(5032), + [anon_sym___based] = ACTIONS(5032), + [anon_sym_LBRACE] = ACTIONS(5034), + [anon_sym_RBRACE] = ACTIONS(5034), + [anon_sym_signed] = ACTIONS(5032), + [anon_sym_unsigned] = ACTIONS(5032), + [anon_sym_long] = ACTIONS(5032), + [anon_sym_short] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_RBRACK] = ACTIONS(5034), + [anon_sym_const] = ACTIONS(5032), + [anon_sym_constexpr] = ACTIONS(5032), + [anon_sym_volatile] = ACTIONS(5032), + [anon_sym_restrict] = ACTIONS(5032), + [anon_sym___restrict__] = ACTIONS(5032), + [anon_sym__Atomic] = ACTIONS(5032), + [anon_sym__Noreturn] = ACTIONS(5032), + [anon_sym_noreturn] = ACTIONS(5032), + [anon_sym_mutable] = ACTIONS(5032), + [anon_sym_constinit] = ACTIONS(5032), + [anon_sym_consteval] = ACTIONS(5032), + [sym_primitive_type] = ACTIONS(5032), + [anon_sym_COLON] = ACTIONS(5034), + [anon_sym_QMARK] = ACTIONS(5034), + [anon_sym_LT_EQ_GT] = ACTIONS(5034), + [anon_sym_or] = ACTIONS(5032), + [anon_sym_and] = ACTIONS(5032), + [anon_sym_bitor] = ACTIONS(5032), + [anon_sym_xor] = ACTIONS(5032), + [anon_sym_bitand] = ACTIONS(5032), + [anon_sym_not_eq] = ACTIONS(5032), + [anon_sym_DASH_DASH] = ACTIONS(5034), + [anon_sym_PLUS_PLUS] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_DOT_STAR] = ACTIONS(5034), + [anon_sym_DASH_GT] = ACTIONS(5034), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5032), + [anon_sym_decltype] = ACTIONS(5032), + [anon_sym_final] = ACTIONS(5032), + [anon_sym_override] = ACTIONS(5032), + [anon_sym_requires] = ACTIONS(5032), }, [1921] = { - [sym__expression] = STATE(4271), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4660), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token2] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [aux_sym_preproc_else_token1] = ACTIONS(2138), + [aux_sym_preproc_elif_token1] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_friend] = ACTIONS(2138), + [anon_sym_public] = ACTIONS(2138), + [anon_sym_private] = ACTIONS(2138), + [anon_sym_protected] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), }, [1922] = { - [sym__expression] = STATE(4281), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4663), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(3791), + [sym_raw_string_literal] = STATE(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_EQ] = ACTIONS(4091), + [anon_sym_COLON] = ACTIONS(4124), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4095), + [anon_sym_or_eq] = ACTIONS(4095), + [anon_sym_xor_eq] = ACTIONS(4095), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, [1923] = { - [sym__expression] = STATE(4281), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4666), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token2] = ACTIONS(2134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), + [aux_sym_preproc_else_token1] = ACTIONS(2134), + [aux_sym_preproc_elif_token1] = ACTIONS(2134), + [sym_preproc_directive] = ACTIONS(2134), + [anon_sym_LPAREN2] = ACTIONS(2132), + [anon_sym_TILDE] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym___extension__] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym___attribute__] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2134), + [anon_sym___based] = ACTIONS(2134), + [anon_sym_signed] = ACTIONS(2134), + [anon_sym_unsigned] = ACTIONS(2134), + [anon_sym_long] = ACTIONS(2134), + [anon_sym_short] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_register] = ACTIONS(2134), + [anon_sym_inline] = ACTIONS(2134), + [anon_sym___inline] = ACTIONS(2134), + [anon_sym___inline__] = ACTIONS(2134), + [anon_sym___forceinline] = ACTIONS(2134), + [anon_sym_thread_local] = ACTIONS(2134), + [anon_sym___thread] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_constexpr] = ACTIONS(2134), + [anon_sym_volatile] = ACTIONS(2134), + [anon_sym_restrict] = ACTIONS(2134), + [anon_sym___restrict__] = ACTIONS(2134), + [anon_sym__Atomic] = ACTIONS(2134), + [anon_sym__Noreturn] = ACTIONS(2134), + [anon_sym_noreturn] = ACTIONS(2134), + [anon_sym_mutable] = ACTIONS(2134), + [anon_sym_constinit] = ACTIONS(2134), + [anon_sym_consteval] = ACTIONS(2134), + [sym_primitive_type] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_struct] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2134), + [anon_sym_decltype] = ACTIONS(2134), + [anon_sym_virtual] = ACTIONS(2134), + [anon_sym_alignas] = ACTIONS(2134), + [anon_sym_explicit] = ACTIONS(2134), + [anon_sym_typename] = ACTIONS(2134), + [anon_sym_template] = ACTIONS(2134), + [anon_sym_operator] = ACTIONS(2134), + [anon_sym_friend] = ACTIONS(2134), + [anon_sym_public] = ACTIONS(2134), + [anon_sym_private] = ACTIONS(2134), + [anon_sym_protected] = ACTIONS(2134), + [anon_sym_using] = ACTIONS(2134), + [anon_sym_static_assert] = ACTIONS(2134), + [anon_sym_catch] = ACTIONS(2134), }, [1924] = { - [sym__expression] = STATE(4281), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_catch_clause] = STATE(1982), + [aux_sym_constructor_try_statement_repeat1] = STATE(1982), + [sym_identifier] = ACTIONS(2255), + [aux_sym_preproc_def_token1] = ACTIONS(2255), + [aux_sym_preproc_if_token1] = ACTIONS(2255), + [aux_sym_preproc_if_token2] = ACTIONS(2255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2255), + [sym_preproc_directive] = ACTIONS(2255), + [anon_sym_LPAREN2] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_AMP_AMP] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym___extension__] = ACTIONS(2255), + [anon_sym_typedef] = ACTIONS(2255), + [anon_sym_extern] = ACTIONS(2255), + [anon_sym___attribute__] = ACTIONS(2255), + [anon_sym_COLON_COLON] = ACTIONS(2257), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2257), + [anon_sym___declspec] = ACTIONS(2255), + [anon_sym___based] = ACTIONS(2255), + [anon_sym_signed] = ACTIONS(2255), + [anon_sym_unsigned] = ACTIONS(2255), + [anon_sym_long] = ACTIONS(2255), + [anon_sym_short] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_register] = ACTIONS(2255), + [anon_sym_inline] = ACTIONS(2255), + [anon_sym___inline] = ACTIONS(2255), + [anon_sym___inline__] = ACTIONS(2255), + [anon_sym___forceinline] = ACTIONS(2255), + [anon_sym_thread_local] = ACTIONS(2255), + [anon_sym___thread] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_constexpr] = ACTIONS(2255), + [anon_sym_volatile] = ACTIONS(2255), + [anon_sym_restrict] = ACTIONS(2255), + [anon_sym___restrict__] = ACTIONS(2255), + [anon_sym__Atomic] = ACTIONS(2255), + [anon_sym__Noreturn] = ACTIONS(2255), + [anon_sym_noreturn] = ACTIONS(2255), + [anon_sym_mutable] = ACTIONS(2255), + [anon_sym_constinit] = ACTIONS(2255), + [anon_sym_consteval] = ACTIONS(2255), + [sym_primitive_type] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [anon_sym_class] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(2255), + [anon_sym_union] = ACTIONS(2255), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2255), + [anon_sym_decltype] = ACTIONS(2255), + [anon_sym_virtual] = ACTIONS(2255), + [anon_sym_alignas] = ACTIONS(2255), + [anon_sym_explicit] = ACTIONS(2255), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(2255), + [anon_sym_operator] = ACTIONS(2255), + [anon_sym_friend] = ACTIONS(2255), + [anon_sym_public] = ACTIONS(2255), + [anon_sym_private] = ACTIONS(2255), + [anon_sym_protected] = ACTIONS(2255), + [anon_sym_using] = ACTIONS(2255), + [anon_sym_static_assert] = ACTIONS(2255), + [anon_sym_catch] = ACTIONS(5036), }, [1925] = { - [sym__expression] = STATE(4282), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4672), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_catch_clause] = STATE(1951), + [aux_sym_constructor_try_statement_repeat1] = STATE(1951), + [sym_identifier] = ACTIONS(2249), + [aux_sym_preproc_def_token1] = ACTIONS(2249), + [aux_sym_preproc_if_token1] = ACTIONS(2249), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2249), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2249), + [sym_preproc_directive] = ACTIONS(2249), + [anon_sym_LPAREN2] = ACTIONS(2251), + [anon_sym_TILDE] = ACTIONS(2251), + [anon_sym_STAR] = ACTIONS(2251), + [anon_sym_AMP_AMP] = ACTIONS(2251), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym___extension__] = ACTIONS(2249), + [anon_sym_typedef] = ACTIONS(2249), + [anon_sym_extern] = ACTIONS(2249), + [anon_sym___attribute__] = ACTIONS(2249), + [anon_sym_COLON_COLON] = ACTIONS(2251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2251), + [anon_sym___declspec] = ACTIONS(2249), + [anon_sym___based] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_signed] = ACTIONS(2249), + [anon_sym_unsigned] = ACTIONS(2249), + [anon_sym_long] = ACTIONS(2249), + [anon_sym_short] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_register] = ACTIONS(2249), + [anon_sym_inline] = ACTIONS(2249), + [anon_sym___inline] = ACTIONS(2249), + [anon_sym___inline__] = ACTIONS(2249), + [anon_sym___forceinline] = ACTIONS(2249), + [anon_sym_thread_local] = ACTIONS(2249), + [anon_sym___thread] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_constexpr] = ACTIONS(2249), + [anon_sym_volatile] = ACTIONS(2249), + [anon_sym_restrict] = ACTIONS(2249), + [anon_sym___restrict__] = ACTIONS(2249), + [anon_sym__Atomic] = ACTIONS(2249), + [anon_sym__Noreturn] = ACTIONS(2249), + [anon_sym_noreturn] = ACTIONS(2249), + [anon_sym_mutable] = ACTIONS(2249), + [anon_sym_constinit] = ACTIONS(2249), + [anon_sym_consteval] = ACTIONS(2249), + [sym_primitive_type] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2249), + [anon_sym_decltype] = ACTIONS(2249), + [anon_sym_virtual] = ACTIONS(2249), + [anon_sym_alignas] = ACTIONS(2249), + [anon_sym_explicit] = ACTIONS(2249), + [anon_sym_typename] = ACTIONS(2249), + [anon_sym_template] = ACTIONS(2249), + [anon_sym_operator] = ACTIONS(2249), + [anon_sym_friend] = ACTIONS(2249), + [anon_sym_public] = ACTIONS(2249), + [anon_sym_private] = ACTIONS(2249), + [anon_sym_protected] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [anon_sym_static_assert] = ACTIONS(2249), + [anon_sym_catch] = ACTIONS(5038), }, [1926] = { - [sym__expression] = STATE(5107), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4675), - [anon_sym_LPAREN2] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5042), + [anon_sym_COMMA] = ACTIONS(5042), + [anon_sym_RPAREN] = ACTIONS(5042), + [anon_sym_LPAREN2] = ACTIONS(5042), + [anon_sym_TILDE] = ACTIONS(5042), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP_AMP] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5040), + [anon_sym_SEMI] = ACTIONS(5042), + [anon_sym___extension__] = ACTIONS(5040), + [anon_sym_extern] = ACTIONS(5040), + [anon_sym___attribute__] = ACTIONS(5040), + [anon_sym_COLON_COLON] = ACTIONS(5042), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5042), + [anon_sym___declspec] = ACTIONS(5040), + [anon_sym___based] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5042), + [anon_sym_signed] = ACTIONS(5040), + [anon_sym_unsigned] = ACTIONS(5040), + [anon_sym_long] = ACTIONS(5040), + [anon_sym_short] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5042), + [anon_sym_static] = ACTIONS(5040), + [anon_sym_register] = ACTIONS(5040), + [anon_sym_inline] = ACTIONS(5040), + [anon_sym___inline] = ACTIONS(5040), + [anon_sym___inline__] = ACTIONS(5040), + [anon_sym___forceinline] = ACTIONS(5040), + [anon_sym_thread_local] = ACTIONS(5040), + [anon_sym___thread] = ACTIONS(5040), + [anon_sym_const] = ACTIONS(5040), + [anon_sym_constexpr] = ACTIONS(5040), + [anon_sym_volatile] = ACTIONS(5040), + [anon_sym_restrict] = ACTIONS(5040), + [anon_sym___restrict__] = ACTIONS(5040), + [anon_sym__Atomic] = ACTIONS(5040), + [anon_sym__Noreturn] = ACTIONS(5040), + [anon_sym_noreturn] = ACTIONS(5040), + [anon_sym_mutable] = ACTIONS(5040), + [anon_sym_constinit] = ACTIONS(5040), + [anon_sym_consteval] = ACTIONS(5040), + [sym_primitive_type] = ACTIONS(5040), + [anon_sym_enum] = ACTIONS(5040), + [anon_sym_class] = ACTIONS(5040), + [anon_sym_struct] = ACTIONS(5040), + [anon_sym_union] = ACTIONS(5040), + [anon_sym_asm] = ACTIONS(5040), + [anon_sym___asm__] = ACTIONS(5040), + [anon_sym_DASH_GT] = ACTIONS(5042), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5040), + [anon_sym_decltype] = ACTIONS(5040), + [anon_sym_final] = ACTIONS(5040), + [anon_sym_override] = ACTIONS(5040), + [anon_sym_virtual] = ACTIONS(5040), + [anon_sym_alignas] = ACTIONS(5040), + [anon_sym_explicit] = ACTIONS(5040), + [anon_sym_typename] = ACTIONS(5040), + [anon_sym_template] = ACTIONS(5040), + [anon_sym_GT2] = ACTIONS(5042), + [anon_sym_operator] = ACTIONS(5040), + [anon_sym_try] = ACTIONS(5040), + [anon_sym_noexcept] = ACTIONS(5040), + [anon_sym_throw] = ACTIONS(5040), + [anon_sym_requires] = ACTIONS(5040), }, [1927] = { - [sym__expression] = STATE(4282), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4679), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [1928] = { - [sym__expression] = STATE(3842), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4576), - [anon_sym_LPAREN2] = ACTIONS(4682), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4744), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4633), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), }, - [1929] = { - [sym__expression] = STATE(5390), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4675), - [anon_sym_LPAREN2] = ACTIONS(4684), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1928] = { + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4746), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4633), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + }, + [1929] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1929), + [sym_identifier] = ACTIONS(5044), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5046), + [anon_sym_COMMA] = ACTIONS(5046), + [anon_sym_RPAREN] = ACTIONS(5046), + [anon_sym_LPAREN2] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5044), + [anon_sym_PLUS] = ACTIONS(5044), + [anon_sym_STAR] = ACTIONS(5046), + [anon_sym_SLASH] = ACTIONS(5044), + [anon_sym_PERCENT] = ACTIONS(5046), + [anon_sym_PIPE_PIPE] = ACTIONS(5046), + [anon_sym_AMP_AMP] = ACTIONS(5046), + [anon_sym_PIPE] = ACTIONS(5044), + [anon_sym_CARET] = ACTIONS(5046), + [anon_sym_AMP] = ACTIONS(5044), + [anon_sym_EQ_EQ] = ACTIONS(5046), + [anon_sym_BANG_EQ] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5044), + [anon_sym_GT_EQ] = ACTIONS(5046), + [anon_sym_LT_EQ] = ACTIONS(5044), + [anon_sym_LT] = ACTIONS(5044), + [anon_sym_LT_LT] = ACTIONS(5046), + [anon_sym_GT_GT] = ACTIONS(5046), + [anon_sym_SEMI] = ACTIONS(5046), + [anon_sym___extension__] = ACTIONS(5044), + [anon_sym___attribute__] = ACTIONS(5044), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_RBRACE] = ACTIONS(5046), + [anon_sym_signed] = ACTIONS(5048), + [anon_sym_unsigned] = ACTIONS(5048), + [anon_sym_long] = ACTIONS(5048), + [anon_sym_short] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_RBRACK] = ACTIONS(5046), + [anon_sym_const] = ACTIONS(5044), + [anon_sym_constexpr] = ACTIONS(5044), + [anon_sym_volatile] = ACTIONS(5044), + [anon_sym_restrict] = ACTIONS(5044), + [anon_sym___restrict__] = ACTIONS(5044), + [anon_sym__Atomic] = ACTIONS(5044), + [anon_sym__Noreturn] = ACTIONS(5044), + [anon_sym_noreturn] = ACTIONS(5044), + [anon_sym_mutable] = ACTIONS(5044), + [anon_sym_constinit] = ACTIONS(5044), + [anon_sym_consteval] = ACTIONS(5044), + [sym_primitive_type] = ACTIONS(5044), + [anon_sym_COLON] = ACTIONS(5046), + [anon_sym_QMARK] = ACTIONS(5046), + [anon_sym_LT_EQ_GT] = ACTIONS(5046), + [anon_sym_or] = ACTIONS(5044), + [anon_sym_and] = ACTIONS(5044), + [anon_sym_bitor] = ACTIONS(5044), + [anon_sym_xor] = ACTIONS(5044), + [anon_sym_bitand] = ACTIONS(5044), + [anon_sym_not_eq] = ACTIONS(5044), + [anon_sym_DASH_DASH] = ACTIONS(5046), + [anon_sym_PLUS_PLUS] = ACTIONS(5046), + [anon_sym_DOT] = ACTIONS(5044), + [anon_sym_DOT_STAR] = ACTIONS(5046), + [anon_sym_DASH_GT] = ACTIONS(5046), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5044), + [anon_sym_decltype] = ACTIONS(5044), + [anon_sym_final] = ACTIONS(5044), + [anon_sym_override] = ACTIONS(5044), + [anon_sym_requires] = ACTIONS(5044), }, [1930] = { - [sym__expression] = STATE(5309), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(1977), + [sym_template_argument_list] = STATE(2503), + [sym_raw_string_literal] = STATE(1977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym___attribute__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_EQ] = ACTIONS(4069), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4061), + [anon_sym_SLASH_EQ] = ACTIONS(4061), + [anon_sym_PERCENT_EQ] = ACTIONS(4061), + [anon_sym_PLUS_EQ] = ACTIONS(4061), + [anon_sym_DASH_EQ] = ACTIONS(4061), + [anon_sym_LT_LT_EQ] = ACTIONS(4061), + [anon_sym_GT_GT_EQ] = ACTIONS(4061), + [anon_sym_AMP_EQ] = ACTIONS(4061), + [anon_sym_CARET_EQ] = ACTIONS(4061), + [anon_sym_PIPE_EQ] = ACTIONS(4061), + [anon_sym_and_eq] = ACTIONS(4061), + [anon_sym_or_eq] = ACTIONS(4061), + [anon_sym_xor_eq] = ACTIONS(4061), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(5051), + [anon_sym_u_DQUOTE] = ACTIONS(5051), + [anon_sym_U_DQUOTE] = ACTIONS(5051), + [anon_sym_u8_DQUOTE] = ACTIONS(5051), + [anon_sym_DQUOTE] = ACTIONS(5051), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5053), + [anon_sym_LR_DQUOTE] = ACTIONS(5053), + [anon_sym_uR_DQUOTE] = ACTIONS(5053), + [anon_sym_UR_DQUOTE] = ACTIONS(5053), + [anon_sym_u8R_DQUOTE] = ACTIONS(5053), }, [1931] = { - [sym__expression] = STATE(5004), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4675), - [anon_sym_LPAREN2] = ACTIONS(4688), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5055), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5057), + [anon_sym_COMMA] = ACTIONS(5057), + [anon_sym_RPAREN] = ACTIONS(5057), + [anon_sym_LPAREN2] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5055), + [anon_sym_STAR] = ACTIONS(5057), + [anon_sym_SLASH] = ACTIONS(5055), + [anon_sym_PERCENT] = ACTIONS(5057), + [anon_sym_PIPE_PIPE] = ACTIONS(5057), + [anon_sym_AMP_AMP] = ACTIONS(5057), + [anon_sym_PIPE] = ACTIONS(5055), + [anon_sym_CARET] = ACTIONS(5057), + [anon_sym_AMP] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_GT] = ACTIONS(5055), + [anon_sym_GT_EQ] = ACTIONS(5057), + [anon_sym_LT_EQ] = ACTIONS(5055), + [anon_sym_LT] = ACTIONS(5055), + [anon_sym_LT_LT] = ACTIONS(5057), + [anon_sym_GT_GT] = ACTIONS(5057), + [anon_sym_SEMI] = ACTIONS(5057), + [anon_sym___extension__] = ACTIONS(5055), + [anon_sym___attribute__] = ACTIONS(5055), + [anon_sym___based] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5057), + [anon_sym_RBRACE] = ACTIONS(5057), + [anon_sym_signed] = ACTIONS(5055), + [anon_sym_unsigned] = ACTIONS(5055), + [anon_sym_long] = ACTIONS(5055), + [anon_sym_short] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5057), + [anon_sym_RBRACK] = ACTIONS(5057), + [anon_sym_const] = ACTIONS(5055), + [anon_sym_constexpr] = ACTIONS(5055), + [anon_sym_volatile] = ACTIONS(5055), + [anon_sym_restrict] = ACTIONS(5055), + [anon_sym___restrict__] = ACTIONS(5055), + [anon_sym__Atomic] = ACTIONS(5055), + [anon_sym__Noreturn] = ACTIONS(5055), + [anon_sym_noreturn] = ACTIONS(5055), + [anon_sym_mutable] = ACTIONS(5055), + [anon_sym_constinit] = ACTIONS(5055), + [anon_sym_consteval] = ACTIONS(5055), + [sym_primitive_type] = ACTIONS(5055), + [anon_sym_COLON] = ACTIONS(5057), + [anon_sym_QMARK] = ACTIONS(5057), + [anon_sym_LT_EQ_GT] = ACTIONS(5057), + [anon_sym_or] = ACTIONS(5055), + [anon_sym_and] = ACTIONS(5055), + [anon_sym_bitor] = ACTIONS(5055), + [anon_sym_xor] = ACTIONS(5055), + [anon_sym_bitand] = ACTIONS(5055), + [anon_sym_not_eq] = ACTIONS(5055), + [anon_sym_DASH_DASH] = ACTIONS(5057), + [anon_sym_PLUS_PLUS] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_DOT_STAR] = ACTIONS(5057), + [anon_sym_DASH_GT] = ACTIONS(5057), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5055), + [anon_sym_decltype] = ACTIONS(5055), + [anon_sym_final] = ACTIONS(5055), + [anon_sym_override] = ACTIONS(5055), + [anon_sym_requires] = ACTIONS(5055), }, [1932] = { - [sym__expression] = STATE(5402), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4690), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5061), + [anon_sym_COMMA] = ACTIONS(5061), + [anon_sym_RPAREN] = ACTIONS(5061), + [anon_sym_LPAREN2] = ACTIONS(5061), + [anon_sym_DASH] = ACTIONS(5059), + [anon_sym_PLUS] = ACTIONS(5059), + [anon_sym_STAR] = ACTIONS(5061), + [anon_sym_SLASH] = ACTIONS(5059), + [anon_sym_PERCENT] = ACTIONS(5061), + [anon_sym_PIPE_PIPE] = ACTIONS(5061), + [anon_sym_AMP_AMP] = ACTIONS(5061), + [anon_sym_PIPE] = ACTIONS(5059), + [anon_sym_CARET] = ACTIONS(5061), + [anon_sym_AMP] = ACTIONS(5059), + [anon_sym_EQ_EQ] = ACTIONS(5061), + [anon_sym_BANG_EQ] = ACTIONS(5061), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_LT_EQ] = ACTIONS(5059), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_LT_LT] = ACTIONS(5061), + [anon_sym_GT_GT] = ACTIONS(5061), + [anon_sym_SEMI] = ACTIONS(5061), + [anon_sym___extension__] = ACTIONS(5059), + [anon_sym___attribute__] = ACTIONS(5059), + [anon_sym___based] = ACTIONS(5059), + [anon_sym_LBRACE] = ACTIONS(5061), + [anon_sym_RBRACE] = ACTIONS(5061), + [anon_sym_signed] = ACTIONS(5059), + [anon_sym_unsigned] = ACTIONS(5059), + [anon_sym_long] = ACTIONS(5059), + [anon_sym_short] = ACTIONS(5059), + [anon_sym_LBRACK] = ACTIONS(5061), + [anon_sym_RBRACK] = ACTIONS(5061), + [anon_sym_const] = ACTIONS(5059), + [anon_sym_constexpr] = ACTIONS(5059), + [anon_sym_volatile] = ACTIONS(5059), + [anon_sym_restrict] = ACTIONS(5059), + [anon_sym___restrict__] = ACTIONS(5059), + [anon_sym__Atomic] = ACTIONS(5059), + [anon_sym__Noreturn] = ACTIONS(5059), + [anon_sym_noreturn] = ACTIONS(5059), + [anon_sym_mutable] = ACTIONS(5059), + [anon_sym_constinit] = ACTIONS(5059), + [anon_sym_consteval] = ACTIONS(5059), + [sym_primitive_type] = ACTIONS(5059), + [anon_sym_COLON] = ACTIONS(5061), + [anon_sym_QMARK] = ACTIONS(5061), + [anon_sym_LT_EQ_GT] = ACTIONS(5061), + [anon_sym_or] = ACTIONS(5059), + [anon_sym_and] = ACTIONS(5059), + [anon_sym_bitor] = ACTIONS(5059), + [anon_sym_xor] = ACTIONS(5059), + [anon_sym_bitand] = ACTIONS(5059), + [anon_sym_not_eq] = ACTIONS(5059), + [anon_sym_DASH_DASH] = ACTIONS(5061), + [anon_sym_PLUS_PLUS] = ACTIONS(5061), + [anon_sym_DOT] = ACTIONS(5059), + [anon_sym_DOT_STAR] = ACTIONS(5061), + [anon_sym_DASH_GT] = ACTIONS(5061), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5059), + [anon_sym_decltype] = ACTIONS(5059), + [anon_sym_final] = ACTIONS(5059), + [anon_sym_override] = ACTIONS(5059), + [anon_sym_requires] = ACTIONS(5059), }, [1933] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4692), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_string_literal] = STATE(1933), + [sym_raw_string_literal] = STATE(1933), + [aux_sym_concatenated_string_repeat1] = STATE(1933), + [sym_identifier] = ACTIONS(5063), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4823), + [anon_sym_COMMA] = ACTIONS(4823), + [anon_sym_LPAREN2] = ACTIONS(4823), + [anon_sym_DASH] = ACTIONS(4825), + [anon_sym_PLUS] = ACTIONS(4825), + [anon_sym_STAR] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4825), + [anon_sym_PERCENT] = ACTIONS(4825), + [anon_sym_PIPE_PIPE] = ACTIONS(4823), + [anon_sym_AMP_AMP] = ACTIONS(4823), + [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_AMP] = ACTIONS(4825), + [anon_sym_EQ_EQ] = ACTIONS(4823), + [anon_sym_BANG_EQ] = ACTIONS(4823), + [anon_sym_GT] = ACTIONS(4825), + [anon_sym_GT_EQ] = ACTIONS(4823), + [anon_sym_LT_EQ] = ACTIONS(4825), + [anon_sym_LT] = ACTIONS(4825), + [anon_sym_LT_LT] = ACTIONS(4825), + [anon_sym_GT_GT] = ACTIONS(4825), + [anon_sym_SEMI] = ACTIONS(4823), + [anon_sym___attribute__] = ACTIONS(4825), + [anon_sym_LBRACK] = ACTIONS(4823), + [anon_sym_EQ] = ACTIONS(4825), + [anon_sym_QMARK] = ACTIONS(4823), + [anon_sym_STAR_EQ] = ACTIONS(4823), + [anon_sym_SLASH_EQ] = ACTIONS(4823), + [anon_sym_PERCENT_EQ] = ACTIONS(4823), + [anon_sym_PLUS_EQ] = ACTIONS(4823), + [anon_sym_DASH_EQ] = ACTIONS(4823), + [anon_sym_LT_LT_EQ] = ACTIONS(4823), + [anon_sym_GT_GT_EQ] = ACTIONS(4823), + [anon_sym_AMP_EQ] = ACTIONS(4823), + [anon_sym_CARET_EQ] = ACTIONS(4823), + [anon_sym_PIPE_EQ] = ACTIONS(4823), + [anon_sym_and_eq] = ACTIONS(4825), + [anon_sym_or_eq] = ACTIONS(4825), + [anon_sym_xor_eq] = ACTIONS(4825), + [anon_sym_LT_EQ_GT] = ACTIONS(4823), + [anon_sym_or] = ACTIONS(4825), + [anon_sym_and] = ACTIONS(4825), + [anon_sym_bitor] = ACTIONS(4825), + [anon_sym_xor] = ACTIONS(4825), + [anon_sym_bitand] = ACTIONS(4825), + [anon_sym_not_eq] = ACTIONS(4825), + [anon_sym_DASH_DASH] = ACTIONS(4823), + [anon_sym_PLUS_PLUS] = ACTIONS(4823), + [anon_sym_DOT] = ACTIONS(4825), + [anon_sym_DOT_STAR] = ACTIONS(4823), + [anon_sym_DASH_GT] = ACTIONS(4823), + [anon_sym_L_DQUOTE] = ACTIONS(5066), + [anon_sym_u_DQUOTE] = ACTIONS(5066), + [anon_sym_U_DQUOTE] = ACTIONS(5066), + [anon_sym_u8_DQUOTE] = ACTIONS(5066), + [anon_sym_DQUOTE] = ACTIONS(5066), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5069), + [anon_sym_LR_DQUOTE] = ACTIONS(5069), + [anon_sym_uR_DQUOTE] = ACTIONS(5069), + [anon_sym_UR_DQUOTE] = ACTIONS(5069), + [anon_sym_u8R_DQUOTE] = ACTIONS(5069), + [sym_literal_suffix] = ACTIONS(4825), }, [1934] = { - [sym__expression] = STATE(5321), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_COLON] = ACTIONS(4694), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [aux_sym_sized_type_specifier_repeat1] = STATE(1929), + [sym_identifier] = ACTIONS(5072), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5074), + [anon_sym_COMMA] = ACTIONS(5074), + [anon_sym_RPAREN] = ACTIONS(5074), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5076), + [anon_sym_STAR] = ACTIONS(5074), + [anon_sym_SLASH] = ACTIONS(5076), + [anon_sym_PERCENT] = ACTIONS(5074), + [anon_sym_PIPE_PIPE] = ACTIONS(5074), + [anon_sym_AMP_AMP] = ACTIONS(5074), + [anon_sym_PIPE] = ACTIONS(5076), + [anon_sym_CARET] = ACTIONS(5074), + [anon_sym_AMP] = ACTIONS(5076), + [anon_sym_EQ_EQ] = ACTIONS(5074), + [anon_sym_BANG_EQ] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5076), + [anon_sym_GT_EQ] = ACTIONS(5074), + [anon_sym_LT_EQ] = ACTIONS(5076), + [anon_sym_LT] = ACTIONS(5076), + [anon_sym_LT_LT] = ACTIONS(5074), + [anon_sym_GT_GT] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(5074), + [anon_sym___extension__] = ACTIONS(5076), + [anon_sym___attribute__] = ACTIONS(5076), + [anon_sym_LBRACE] = ACTIONS(5074), + [anon_sym_RBRACE] = ACTIONS(5074), + [anon_sym_signed] = ACTIONS(5078), + [anon_sym_unsigned] = ACTIONS(5078), + [anon_sym_long] = ACTIONS(5078), + [anon_sym_short] = ACTIONS(5078), + [anon_sym_LBRACK] = ACTIONS(5074), + [anon_sym_RBRACK] = ACTIONS(5074), + [anon_sym_const] = ACTIONS(5076), + [anon_sym_constexpr] = ACTIONS(5076), + [anon_sym_volatile] = ACTIONS(5076), + [anon_sym_restrict] = ACTIONS(5076), + [anon_sym___restrict__] = ACTIONS(5076), + [anon_sym__Atomic] = ACTIONS(5076), + [anon_sym__Noreturn] = ACTIONS(5076), + [anon_sym_noreturn] = ACTIONS(5076), + [anon_sym_mutable] = ACTIONS(5076), + [anon_sym_constinit] = ACTIONS(5076), + [anon_sym_consteval] = ACTIONS(5076), + [sym_primitive_type] = ACTIONS(5080), + [anon_sym_COLON] = ACTIONS(5074), + [anon_sym_QMARK] = ACTIONS(5074), + [anon_sym_LT_EQ_GT] = ACTIONS(5074), + [anon_sym_or] = ACTIONS(5076), + [anon_sym_and] = ACTIONS(5076), + [anon_sym_bitor] = ACTIONS(5076), + [anon_sym_xor] = ACTIONS(5076), + [anon_sym_bitand] = ACTIONS(5076), + [anon_sym_not_eq] = ACTIONS(5076), + [anon_sym_DASH_DASH] = ACTIONS(5074), + [anon_sym_PLUS_PLUS] = ACTIONS(5074), + [anon_sym_DOT] = ACTIONS(5076), + [anon_sym_DOT_STAR] = ACTIONS(5074), + [anon_sym_DASH_GT] = ACTIONS(5074), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5076), + [anon_sym_decltype] = ACTIONS(5076), + [anon_sym_final] = ACTIONS(5076), + [anon_sym_override] = ACTIONS(5076), + [anon_sym_requires] = ACTIONS(5076), }, [1935] = { - [sym__expression] = STATE(5275), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_COLON] = ACTIONS(4696), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5082), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5084), + [anon_sym_COMMA] = ACTIONS(5084), + [anon_sym_RPAREN] = ACTIONS(5084), + [anon_sym_LPAREN2] = ACTIONS(5084), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_PLUS] = ACTIONS(5082), + [anon_sym_STAR] = ACTIONS(5084), + [anon_sym_SLASH] = ACTIONS(5082), + [anon_sym_PERCENT] = ACTIONS(5084), + [anon_sym_PIPE_PIPE] = ACTIONS(5084), + [anon_sym_AMP_AMP] = ACTIONS(5084), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_CARET] = ACTIONS(5084), + [anon_sym_AMP] = ACTIONS(5082), + [anon_sym_EQ_EQ] = ACTIONS(5084), + [anon_sym_BANG_EQ] = ACTIONS(5084), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_GT_EQ] = ACTIONS(5084), + [anon_sym_LT_EQ] = ACTIONS(5082), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_LT_LT] = ACTIONS(5084), + [anon_sym_GT_GT] = ACTIONS(5084), + [anon_sym_SEMI] = ACTIONS(5084), + [anon_sym___extension__] = ACTIONS(5082), + [anon_sym___attribute__] = ACTIONS(5082), + [anon_sym___based] = ACTIONS(5082), + [anon_sym_LBRACE] = ACTIONS(5084), + [anon_sym_RBRACE] = ACTIONS(5084), + [anon_sym_signed] = ACTIONS(5082), + [anon_sym_unsigned] = ACTIONS(5082), + [anon_sym_long] = ACTIONS(5082), + [anon_sym_short] = ACTIONS(5082), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_RBRACK] = ACTIONS(5084), + [anon_sym_const] = ACTIONS(5082), + [anon_sym_constexpr] = ACTIONS(5082), + [anon_sym_volatile] = ACTIONS(5082), + [anon_sym_restrict] = ACTIONS(5082), + [anon_sym___restrict__] = ACTIONS(5082), + [anon_sym__Atomic] = ACTIONS(5082), + [anon_sym__Noreturn] = ACTIONS(5082), + [anon_sym_noreturn] = ACTIONS(5082), + [anon_sym_mutable] = ACTIONS(5082), + [anon_sym_constinit] = ACTIONS(5082), + [anon_sym_consteval] = ACTIONS(5082), + [sym_primitive_type] = ACTIONS(5082), + [anon_sym_COLON] = ACTIONS(5084), + [anon_sym_QMARK] = ACTIONS(5084), + [anon_sym_LT_EQ_GT] = ACTIONS(5084), + [anon_sym_or] = ACTIONS(5082), + [anon_sym_and] = ACTIONS(5082), + [anon_sym_bitor] = ACTIONS(5082), + [anon_sym_xor] = ACTIONS(5082), + [anon_sym_bitand] = ACTIONS(5082), + [anon_sym_not_eq] = ACTIONS(5082), + [anon_sym_DASH_DASH] = ACTIONS(5084), + [anon_sym_PLUS_PLUS] = ACTIONS(5084), + [anon_sym_DOT] = ACTIONS(5082), + [anon_sym_DOT_STAR] = ACTIONS(5084), + [anon_sym_DASH_GT] = ACTIONS(5084), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5082), + [anon_sym_decltype] = ACTIONS(5082), + [anon_sym_final] = ACTIONS(5082), + [anon_sym_override] = ACTIONS(5082), + [anon_sym_requires] = ACTIONS(5082), }, [1936] = { - [sym__expression] = STATE(5361), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4698), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(5086), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5088), + [anon_sym_COMMA] = ACTIONS(5088), + [anon_sym_RPAREN] = ACTIONS(5088), + [anon_sym_LPAREN2] = ACTIONS(5088), + [anon_sym_DASH] = ACTIONS(5086), + [anon_sym_PLUS] = ACTIONS(5086), + [anon_sym_STAR] = ACTIONS(5088), + [anon_sym_SLASH] = ACTIONS(5086), + [anon_sym_PERCENT] = ACTIONS(5088), + [anon_sym_PIPE_PIPE] = ACTIONS(5088), + [anon_sym_AMP_AMP] = ACTIONS(5088), + [anon_sym_PIPE] = ACTIONS(5086), + [anon_sym_CARET] = ACTIONS(5088), + [anon_sym_AMP] = ACTIONS(5086), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_BANG_EQ] = ACTIONS(5088), + [anon_sym_GT] = ACTIONS(5086), + [anon_sym_GT_EQ] = ACTIONS(5088), + [anon_sym_LT_EQ] = ACTIONS(5086), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(5088), + [anon_sym_GT_GT] = ACTIONS(5088), + [anon_sym_SEMI] = ACTIONS(5088), + [anon_sym___extension__] = ACTIONS(5086), + [anon_sym___attribute__] = ACTIONS(5086), + [anon_sym___based] = ACTIONS(5086), + [anon_sym_LBRACE] = ACTIONS(5088), + [anon_sym_RBRACE] = ACTIONS(5088), + [anon_sym_signed] = ACTIONS(5086), + [anon_sym_unsigned] = ACTIONS(5086), + [anon_sym_long] = ACTIONS(5086), + [anon_sym_short] = ACTIONS(5086), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_RBRACK] = ACTIONS(5088), + [anon_sym_const] = ACTIONS(5086), + [anon_sym_constexpr] = ACTIONS(5086), + [anon_sym_volatile] = ACTIONS(5086), + [anon_sym_restrict] = ACTIONS(5086), + [anon_sym___restrict__] = ACTIONS(5086), + [anon_sym__Atomic] = ACTIONS(5086), + [anon_sym__Noreturn] = ACTIONS(5086), + [anon_sym_noreturn] = ACTIONS(5086), + [anon_sym_mutable] = ACTIONS(5086), + [anon_sym_constinit] = ACTIONS(5086), + [anon_sym_consteval] = ACTIONS(5086), + [sym_primitive_type] = ACTIONS(5086), + [anon_sym_COLON] = ACTIONS(5088), + [anon_sym_QMARK] = ACTIONS(5088), + [anon_sym_LT_EQ_GT] = ACTIONS(5088), + [anon_sym_or] = ACTIONS(5086), + [anon_sym_and] = ACTIONS(5086), + [anon_sym_bitor] = ACTIONS(5086), + [anon_sym_xor] = ACTIONS(5086), + [anon_sym_bitand] = ACTIONS(5086), + [anon_sym_not_eq] = ACTIONS(5086), + [anon_sym_DASH_DASH] = ACTIONS(5088), + [anon_sym_PLUS_PLUS] = ACTIONS(5088), + [anon_sym_DOT] = ACTIONS(5086), + [anon_sym_DOT_STAR] = ACTIONS(5088), + [anon_sym_DASH_GT] = ACTIONS(5088), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(5086), + [anon_sym_decltype] = ACTIONS(5086), + [anon_sym_final] = ACTIONS(5086), + [anon_sym_override] = ACTIONS(5086), + [anon_sym_requires] = ACTIONS(5086), }, [1937] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4700), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4733), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4633), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), }, [1938] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4702), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2752), + [aux_sym_preproc_def_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token2] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2752), + [aux_sym_preproc_else_token1] = ACTIONS(2752), + [aux_sym_preproc_elif_token1] = ACTIONS(2752), + [sym_preproc_directive] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym___extension__] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym___attribute__] = ACTIONS(2752), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2754), + [anon_sym___declspec] = ACTIONS(2752), + [anon_sym___based] = ACTIONS(2752), + [anon_sym_signed] = ACTIONS(2752), + [anon_sym_unsigned] = ACTIONS(2752), + [anon_sym_long] = ACTIONS(2752), + [anon_sym_short] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_register] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym___inline] = ACTIONS(2752), + [anon_sym___inline__] = ACTIONS(2752), + [anon_sym___forceinline] = ACTIONS(2752), + [anon_sym_thread_local] = ACTIONS(2752), + [anon_sym___thread] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_constexpr] = ACTIONS(2752), + [anon_sym_volatile] = ACTIONS(2752), + [anon_sym_restrict] = ACTIONS(2752), + [anon_sym___restrict__] = ACTIONS(2752), + [anon_sym__Atomic] = ACTIONS(2752), + [anon_sym__Noreturn] = ACTIONS(2752), + [anon_sym_noreturn] = ACTIONS(2752), + [anon_sym_mutable] = ACTIONS(2752), + [anon_sym_constinit] = ACTIONS(2752), + [anon_sym_consteval] = ACTIONS(2752), + [sym_primitive_type] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_class] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2752), + [anon_sym_decltype] = ACTIONS(2752), + [anon_sym_virtual] = ACTIONS(2752), + [anon_sym_alignas] = ACTIONS(2752), + [anon_sym_explicit] = ACTIONS(2752), + [anon_sym_typename] = ACTIONS(2752), + [anon_sym_template] = ACTIONS(2752), + [anon_sym_operator] = ACTIONS(2752), + [anon_sym_friend] = ACTIONS(2752), + [anon_sym_public] = ACTIONS(2752), + [anon_sym_private] = ACTIONS(2752), + [anon_sym_protected] = ACTIONS(2752), + [anon_sym_using] = ACTIONS(2752), + [anon_sym_static_assert] = ACTIONS(2752), + [anon_sym_catch] = ACTIONS(2752), }, [1939] = { - [sym__expression] = STATE(5008), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_SEMI] = ACTIONS(4704), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(4584), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(5090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5092), + [anon_sym_COMMA] = ACTIONS(5092), + [anon_sym_RPAREN] = ACTIONS(5092), + [anon_sym_LPAREN2] = ACTIONS(5092), + [anon_sym_DASH] = ACTIONS(5090), + [anon_sym_PLUS] = ACTIONS(5090), + [anon_sym_STAR] = ACTIONS(5092), + [anon_sym_SLASH] = ACTIONS(5090), + [anon_sym_PERCENT] = ACTIONS(5092), + [anon_sym_PIPE_PIPE] = ACTIONS(5092), + [anon_sym_AMP_AMP] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5090), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym_AMP] = ACTIONS(5090), + [anon_sym_EQ_EQ] = ACTIONS(5092), + [anon_sym_BANG_EQ] = ACTIONS(5092), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_GT_EQ] = ACTIONS(5092), + [anon_sym_LT_EQ] = ACTIONS(5090), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(5092), + [anon_sym_GT_GT] = ACTIONS(5092), + [anon_sym_SEMI] = ACTIONS(5092), + [anon_sym___extension__] = ACTIONS(5090), + [anon_sym___attribute__] = ACTIONS(5090), + [anon_sym___based] = ACTIONS(5090), + [anon_sym_LBRACE] = ACTIONS(5092), + [anon_sym_RBRACE] = ACTIONS(5092), + [anon_sym_signed] = ACTIONS(5090), + [anon_sym_unsigned] = ACTIONS(5090), + [anon_sym_long] = ACTIONS(5090), + [anon_sym_short] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5092), + [anon_sym_RBRACK] = ACTIONS(5092), + [anon_sym_const] = ACTIONS(5090), + [anon_sym_constexpr] = ACTIONS(5090), + [anon_sym_volatile] = ACTIONS(5090), + [anon_sym_restrict] = ACTIONS(5090), + [anon_sym___restrict__] = ACTIONS(5090), + [anon_sym__Atomic] = ACTIONS(5090), + [anon_sym__Noreturn] = ACTIONS(5090), + [anon_sym_noreturn] = ACTIONS(5090), + [anon_sym_mutable] = ACTIONS(5090), + [anon_sym_constinit] = ACTIONS(5090), + [anon_sym_consteval] = ACTIONS(5090), + [sym_primitive_type] = ACTIONS(5090), + [anon_sym_COLON] = ACTIONS(5092), + [anon_sym_QMARK] = ACTIONS(5092), + [anon_sym_LT_EQ_GT] = ACTIONS(5092), + [anon_sym_or] = ACTIONS(5090), + [anon_sym_and] = ACTIONS(5090), + [anon_sym_bitor] = ACTIONS(5090), + [anon_sym_xor] = ACTIONS(5090), + [anon_sym_bitand] = ACTIONS(5090), + [anon_sym_not_eq] = ACTIONS(5090), + [anon_sym_DASH_DASH] = ACTIONS(5092), + [anon_sym_PLUS_PLUS] = ACTIONS(5092), + [anon_sym_DOT] = ACTIONS(5090), + [anon_sym_DOT_STAR] = ACTIONS(5092), + [anon_sym_DASH_GT] = ACTIONS(5092), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(5090), + [anon_sym_decltype] = ACTIONS(5090), + [anon_sym_final] = ACTIONS(5090), + [anon_sym_override] = ACTIONS(5090), + [anon_sym_requires] = ACTIONS(5090), }, [1940] = { - [sym__expression] = STATE(5334), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4706), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4591), + [anon_sym_COMMA] = ACTIONS(4591), + [anon_sym_LPAREN2] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4591), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_CARET] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_EQ_EQ] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_GT_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4596), + [anon_sym_LT_LT] = ACTIONS(4596), + [anon_sym_GT_GT] = ACTIONS(4596), + [anon_sym___extension__] = ACTIONS(4594), + [anon_sym_COLON_COLON] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4594), + [anon_sym_LBRACK] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_const] = ACTIONS(4587), + [anon_sym_constexpr] = ACTIONS(4594), + [anon_sym_volatile] = ACTIONS(4594), + [anon_sym_restrict] = ACTIONS(4594), + [anon_sym___restrict__] = ACTIONS(4594), + [anon_sym__Atomic] = ACTIONS(4594), + [anon_sym__Noreturn] = ACTIONS(4594), + [anon_sym_noreturn] = ACTIONS(4594), + [anon_sym_mutable] = ACTIONS(4594), + [anon_sym_constinit] = ACTIONS(4594), + [anon_sym_consteval] = ACTIONS(4594), + [anon_sym_QMARK] = ACTIONS(4589), + [anon_sym_STAR_EQ] = ACTIONS(4589), + [anon_sym_SLASH_EQ] = ACTIONS(4589), + [anon_sym_PERCENT_EQ] = ACTIONS(4589), + [anon_sym_PLUS_EQ] = ACTIONS(4589), + [anon_sym_DASH_EQ] = ACTIONS(4589), + [anon_sym_LT_LT_EQ] = ACTIONS(4589), + [anon_sym_GT_GT_EQ] = ACTIONS(4596), + [anon_sym_AMP_EQ] = ACTIONS(4589), + [anon_sym_CARET_EQ] = ACTIONS(4589), + [anon_sym_PIPE_EQ] = ACTIONS(4589), + [anon_sym_and_eq] = ACTIONS(4589), + [anon_sym_or_eq] = ACTIONS(4589), + [anon_sym_xor_eq] = ACTIONS(4589), + [anon_sym_LT_EQ_GT] = ACTIONS(4589), + [anon_sym_or] = ACTIONS(4596), + [anon_sym_and] = ACTIONS(4596), + [anon_sym_bitor] = ACTIONS(4589), + [anon_sym_xor] = ACTIONS(4596), + [anon_sym_bitand] = ACTIONS(4589), + [anon_sym_not_eq] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_STAR] = ACTIONS(4589), + [anon_sym_DASH_GT] = ACTIONS(4589), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4594), + [anon_sym_decltype] = ACTIONS(4594), + [anon_sym_GT2] = ACTIONS(4591), }, [1941] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4708), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(5094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5096), + [anon_sym_COMMA] = ACTIONS(5096), + [anon_sym_RPAREN] = ACTIONS(5096), + [anon_sym_LPAREN2] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5094), + [anon_sym_PLUS] = ACTIONS(5094), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5094), + [anon_sym_PERCENT] = ACTIONS(5096), + [anon_sym_PIPE_PIPE] = ACTIONS(5096), + [anon_sym_AMP_AMP] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5094), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5094), + [anon_sym_EQ_EQ] = ACTIONS(5096), + [anon_sym_BANG_EQ] = ACTIONS(5096), + [anon_sym_GT] = ACTIONS(5094), + [anon_sym_GT_EQ] = ACTIONS(5096), + [anon_sym_LT_EQ] = ACTIONS(5094), + [anon_sym_LT] = ACTIONS(5094), + [anon_sym_LT_LT] = ACTIONS(5096), + [anon_sym_GT_GT] = ACTIONS(5096), + [anon_sym_SEMI] = ACTIONS(5096), + [anon_sym___extension__] = ACTIONS(5094), + [anon_sym___attribute__] = ACTIONS(5094), + [anon_sym___based] = ACTIONS(5094), + [anon_sym_LBRACE] = ACTIONS(5096), + [anon_sym_RBRACE] = ACTIONS(5096), + [anon_sym_signed] = ACTIONS(5094), + [anon_sym_unsigned] = ACTIONS(5094), + [anon_sym_long] = ACTIONS(5094), + [anon_sym_short] = ACTIONS(5094), + [anon_sym_LBRACK] = ACTIONS(5096), + [anon_sym_RBRACK] = ACTIONS(5096), + [anon_sym_const] = ACTIONS(5094), + [anon_sym_constexpr] = ACTIONS(5094), + [anon_sym_volatile] = ACTIONS(5094), + [anon_sym_restrict] = ACTIONS(5094), + [anon_sym___restrict__] = ACTIONS(5094), + [anon_sym__Atomic] = ACTIONS(5094), + [anon_sym__Noreturn] = ACTIONS(5094), + [anon_sym_noreturn] = ACTIONS(5094), + [anon_sym_mutable] = ACTIONS(5094), + [anon_sym_constinit] = ACTIONS(5094), + [anon_sym_consteval] = ACTIONS(5094), + [sym_primitive_type] = ACTIONS(5094), + [anon_sym_COLON] = ACTIONS(5096), + [anon_sym_QMARK] = ACTIONS(5096), + [anon_sym_LT_EQ_GT] = ACTIONS(5096), + [anon_sym_or] = ACTIONS(5094), + [anon_sym_and] = ACTIONS(5094), + [anon_sym_bitor] = ACTIONS(5094), + [anon_sym_xor] = ACTIONS(5094), + [anon_sym_bitand] = ACTIONS(5094), + [anon_sym_not_eq] = ACTIONS(5094), + [anon_sym_DASH_DASH] = ACTIONS(5096), + [anon_sym_PLUS_PLUS] = ACTIONS(5096), + [anon_sym_DOT] = ACTIONS(5094), + [anon_sym_DOT_STAR] = ACTIONS(5096), + [anon_sym_DASH_GT] = ACTIONS(5096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5094), + [anon_sym_decltype] = ACTIONS(5094), + [anon_sym_final] = ACTIONS(5094), + [anon_sym_override] = ACTIONS(5094), + [anon_sym_requires] = ACTIONS(5094), }, [1942] = { - [sym__expression] = STATE(5290), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4710), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_catch_clause] = STATE(1951), + [aux_sym_constructor_try_statement_repeat1] = STATE(1951), + [sym_identifier] = ACTIONS(2212), + [aux_sym_preproc_def_token1] = ACTIONS(2212), + [aux_sym_preproc_if_token1] = ACTIONS(2212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2212), + [sym_preproc_directive] = ACTIONS(2212), + [anon_sym_LPAREN2] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2212), + [anon_sym___extension__] = ACTIONS(2212), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_extern] = ACTIONS(2212), + [anon_sym___attribute__] = ACTIONS(2212), + [anon_sym_COLON_COLON] = ACTIONS(2214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [anon_sym___declspec] = ACTIONS(2212), + [anon_sym___based] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_signed] = ACTIONS(2212), + [anon_sym_unsigned] = ACTIONS(2212), + [anon_sym_long] = ACTIONS(2212), + [anon_sym_short] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_register] = ACTIONS(2212), + [anon_sym_inline] = ACTIONS(2212), + [anon_sym___inline] = ACTIONS(2212), + [anon_sym___inline__] = ACTIONS(2212), + [anon_sym___forceinline] = ACTIONS(2212), + [anon_sym_thread_local] = ACTIONS(2212), + [anon_sym___thread] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_constexpr] = ACTIONS(2212), + [anon_sym_volatile] = ACTIONS(2212), + [anon_sym_restrict] = ACTIONS(2212), + [anon_sym___restrict__] = ACTIONS(2212), + [anon_sym__Atomic] = ACTIONS(2212), + [anon_sym__Noreturn] = ACTIONS(2212), + [anon_sym_noreturn] = ACTIONS(2212), + [anon_sym_mutable] = ACTIONS(2212), + [anon_sym_constinit] = ACTIONS(2212), + [anon_sym_consteval] = ACTIONS(2212), + [sym_primitive_type] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_struct] = ACTIONS(2212), + [anon_sym_union] = ACTIONS(2212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2212), + [anon_sym_decltype] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(2212), + [anon_sym_alignas] = ACTIONS(2212), + [anon_sym_explicit] = ACTIONS(2212), + [anon_sym_typename] = ACTIONS(2212), + [anon_sym_template] = ACTIONS(2212), + [anon_sym_operator] = ACTIONS(2212), + [anon_sym_friend] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_static_assert] = ACTIONS(2212), + [anon_sym_catch] = ACTIONS(5038), }, [1943] = { - [sym__expression] = STATE(5363), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4712), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5098), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5100), + [anon_sym_COMMA] = ACTIONS(5100), + [anon_sym_RPAREN] = ACTIONS(5100), + [anon_sym_LPAREN2] = ACTIONS(5100), + [anon_sym_DASH] = ACTIONS(5098), + [anon_sym_PLUS] = ACTIONS(5098), + [anon_sym_STAR] = ACTIONS(5100), + [anon_sym_SLASH] = ACTIONS(5098), + [anon_sym_PERCENT] = ACTIONS(5100), + [anon_sym_PIPE_PIPE] = ACTIONS(5100), + [anon_sym_AMP_AMP] = ACTIONS(5100), + [anon_sym_PIPE] = ACTIONS(5098), + [anon_sym_CARET] = ACTIONS(5100), + [anon_sym_AMP] = ACTIONS(5098), + [anon_sym_EQ_EQ] = ACTIONS(5100), + [anon_sym_BANG_EQ] = ACTIONS(5100), + [anon_sym_GT] = ACTIONS(5098), + [anon_sym_GT_EQ] = ACTIONS(5100), + [anon_sym_LT_EQ] = ACTIONS(5098), + [anon_sym_LT] = ACTIONS(5098), + [anon_sym_LT_LT] = ACTIONS(5100), + [anon_sym_GT_GT] = ACTIONS(5100), + [anon_sym_SEMI] = ACTIONS(5100), + [anon_sym___extension__] = ACTIONS(5098), + [anon_sym___attribute__] = ACTIONS(5098), + [anon_sym___based] = ACTIONS(5098), + [anon_sym_LBRACE] = ACTIONS(5100), + [anon_sym_RBRACE] = ACTIONS(5100), + [anon_sym_signed] = ACTIONS(5098), + [anon_sym_unsigned] = ACTIONS(5098), + [anon_sym_long] = ACTIONS(5098), + [anon_sym_short] = ACTIONS(5098), + [anon_sym_LBRACK] = ACTIONS(5100), + [anon_sym_RBRACK] = ACTIONS(5100), + [anon_sym_const] = ACTIONS(5098), + [anon_sym_constexpr] = ACTIONS(5098), + [anon_sym_volatile] = ACTIONS(5098), + [anon_sym_restrict] = ACTIONS(5098), + [anon_sym___restrict__] = ACTIONS(5098), + [anon_sym__Atomic] = ACTIONS(5098), + [anon_sym__Noreturn] = ACTIONS(5098), + [anon_sym_noreturn] = ACTIONS(5098), + [anon_sym_mutable] = ACTIONS(5098), + [anon_sym_constinit] = ACTIONS(5098), + [anon_sym_consteval] = ACTIONS(5098), + [sym_primitive_type] = ACTIONS(5098), + [anon_sym_COLON] = ACTIONS(5100), + [anon_sym_QMARK] = ACTIONS(5100), + [anon_sym_LT_EQ_GT] = ACTIONS(5100), + [anon_sym_or] = ACTIONS(5098), + [anon_sym_and] = ACTIONS(5098), + [anon_sym_bitor] = ACTIONS(5098), + [anon_sym_xor] = ACTIONS(5098), + [anon_sym_bitand] = ACTIONS(5098), + [anon_sym_not_eq] = ACTIONS(5098), + [anon_sym_DASH_DASH] = ACTIONS(5100), + [anon_sym_PLUS_PLUS] = ACTIONS(5100), + [anon_sym_DOT] = ACTIONS(5098), + [anon_sym_DOT_STAR] = ACTIONS(5100), + [anon_sym_DASH_GT] = ACTIONS(5100), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5098), + [anon_sym_decltype] = ACTIONS(5098), + [anon_sym_final] = ACTIONS(5098), + [anon_sym_override] = ACTIONS(5098), + [anon_sym_requires] = ACTIONS(5098), }, [1944] = { - [sym__expression] = STATE(5393), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4714), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(3791), + [sym_raw_string_literal] = STATE(2643), + [aux_sym_structured_binding_declarator_repeat1] = STATE(6778), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(5102), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_RBRACK] = ACTIONS(5104), + [anon_sym_EQ] = ACTIONS(5107), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(5109), + [anon_sym_SLASH_EQ] = ACTIONS(5109), + [anon_sym_PERCENT_EQ] = ACTIONS(5109), + [anon_sym_PLUS_EQ] = ACTIONS(5109), + [anon_sym_DASH_EQ] = ACTIONS(5109), + [anon_sym_LT_LT_EQ] = ACTIONS(5109), + [anon_sym_GT_GT_EQ] = ACTIONS(5109), + [anon_sym_AMP_EQ] = ACTIONS(5109), + [anon_sym_CARET_EQ] = ACTIONS(5109), + [anon_sym_PIPE_EQ] = ACTIONS(5109), + [anon_sym_and_eq] = ACTIONS(5109), + [anon_sym_or_eq] = ACTIONS(5109), + [anon_sym_xor_eq] = ACTIONS(5109), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, [1945] = { - [sym__expression] = STATE(4224), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4716), - [anon_sym_LPAREN2] = ACTIONS(4718), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(5111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5113), + [anon_sym_COMMA] = ACTIONS(5113), + [anon_sym_RPAREN] = ACTIONS(5113), + [anon_sym_LPAREN2] = ACTIONS(5113), + [anon_sym_DASH] = ACTIONS(5111), + [anon_sym_PLUS] = ACTIONS(5111), + [anon_sym_STAR] = ACTIONS(5113), + [anon_sym_SLASH] = ACTIONS(5111), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_PIPE_PIPE] = ACTIONS(5113), + [anon_sym_AMP_AMP] = ACTIONS(5113), + [anon_sym_PIPE] = ACTIONS(5111), + [anon_sym_CARET] = ACTIONS(5113), + [anon_sym_AMP] = ACTIONS(5111), + [anon_sym_EQ_EQ] = ACTIONS(5113), + [anon_sym_BANG_EQ] = ACTIONS(5113), + [anon_sym_GT] = ACTIONS(5111), + [anon_sym_GT_EQ] = ACTIONS(5113), + [anon_sym_LT_EQ] = ACTIONS(5111), + [anon_sym_LT] = ACTIONS(5111), + [anon_sym_LT_LT] = ACTIONS(5113), + [anon_sym_GT_GT] = ACTIONS(5113), + [anon_sym_SEMI] = ACTIONS(5113), + [anon_sym___extension__] = ACTIONS(5111), + [anon_sym___attribute__] = ACTIONS(5111), + [anon_sym___based] = ACTIONS(5111), + [anon_sym_LBRACE] = ACTIONS(5113), + [anon_sym_RBRACE] = ACTIONS(5113), + [anon_sym_signed] = ACTIONS(5111), + [anon_sym_unsigned] = ACTIONS(5111), + [anon_sym_long] = ACTIONS(5111), + [anon_sym_short] = ACTIONS(5111), + [anon_sym_LBRACK] = ACTIONS(5113), + [anon_sym_RBRACK] = ACTIONS(5113), + [anon_sym_const] = ACTIONS(5111), + [anon_sym_constexpr] = ACTIONS(5111), + [anon_sym_volatile] = ACTIONS(5111), + [anon_sym_restrict] = ACTIONS(5111), + [anon_sym___restrict__] = ACTIONS(5111), + [anon_sym__Atomic] = ACTIONS(5111), + [anon_sym__Noreturn] = ACTIONS(5111), + [anon_sym_noreturn] = ACTIONS(5111), + [anon_sym_mutable] = ACTIONS(5111), + [anon_sym_constinit] = ACTIONS(5111), + [anon_sym_consteval] = ACTIONS(5111), + [sym_primitive_type] = ACTIONS(5111), + [anon_sym_COLON] = ACTIONS(5113), + [anon_sym_QMARK] = ACTIONS(5113), + [anon_sym_LT_EQ_GT] = ACTIONS(5113), + [anon_sym_or] = ACTIONS(5111), + [anon_sym_and] = ACTIONS(5111), + [anon_sym_bitor] = ACTIONS(5111), + [anon_sym_xor] = ACTIONS(5111), + [anon_sym_bitand] = ACTIONS(5111), + [anon_sym_not_eq] = ACTIONS(5111), + [anon_sym_DASH_DASH] = ACTIONS(5113), + [anon_sym_PLUS_PLUS] = ACTIONS(5113), + [anon_sym_DOT] = ACTIONS(5111), + [anon_sym_DOT_STAR] = ACTIONS(5113), + [anon_sym_DASH_GT] = ACTIONS(5113), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5111), + [anon_sym_decltype] = ACTIONS(5111), + [anon_sym_final] = ACTIONS(5111), + [anon_sym_override] = ACTIONS(5111), + [anon_sym_requires] = ACTIONS(5111), }, [1946] = { - [sym__expression] = STATE(5335), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(5090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5092), + [anon_sym_COMMA] = ACTIONS(5092), + [anon_sym_RPAREN] = ACTIONS(5092), + [anon_sym_LPAREN2] = ACTIONS(5092), + [anon_sym_DASH] = ACTIONS(5090), + [anon_sym_PLUS] = ACTIONS(5090), + [anon_sym_STAR] = ACTIONS(5092), + [anon_sym_SLASH] = ACTIONS(5090), + [anon_sym_PERCENT] = ACTIONS(5092), + [anon_sym_PIPE_PIPE] = ACTIONS(5092), + [anon_sym_AMP_AMP] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5090), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym_AMP] = ACTIONS(5090), + [anon_sym_EQ_EQ] = ACTIONS(5092), + [anon_sym_BANG_EQ] = ACTIONS(5092), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_GT_EQ] = ACTIONS(5092), + [anon_sym_LT_EQ] = ACTIONS(5090), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(5092), + [anon_sym_GT_GT] = ACTIONS(5092), + [anon_sym_SEMI] = ACTIONS(5092), + [anon_sym___extension__] = ACTIONS(5090), + [anon_sym___attribute__] = ACTIONS(5090), + [anon_sym___based] = ACTIONS(5090), + [anon_sym_LBRACE] = ACTIONS(5092), + [anon_sym_RBRACE] = ACTIONS(5092), + [anon_sym_signed] = ACTIONS(5090), + [anon_sym_unsigned] = ACTIONS(5090), + [anon_sym_long] = ACTIONS(5090), + [anon_sym_short] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5092), + [anon_sym_RBRACK] = ACTIONS(5092), + [anon_sym_const] = ACTIONS(5090), + [anon_sym_constexpr] = ACTIONS(5090), + [anon_sym_volatile] = ACTIONS(5090), + [anon_sym_restrict] = ACTIONS(5090), + [anon_sym___restrict__] = ACTIONS(5090), + [anon_sym__Atomic] = ACTIONS(5090), + [anon_sym__Noreturn] = ACTIONS(5090), + [anon_sym_noreturn] = ACTIONS(5090), + [anon_sym_mutable] = ACTIONS(5090), + [anon_sym_constinit] = ACTIONS(5090), + [anon_sym_consteval] = ACTIONS(5090), + [sym_primitive_type] = ACTIONS(5090), + [anon_sym_COLON] = ACTIONS(5092), + [anon_sym_QMARK] = ACTIONS(5092), + [anon_sym_LT_EQ_GT] = ACTIONS(5092), + [anon_sym_or] = ACTIONS(5090), + [anon_sym_and] = ACTIONS(5090), + [anon_sym_bitor] = ACTIONS(5090), + [anon_sym_xor] = ACTIONS(5090), + [anon_sym_bitand] = ACTIONS(5090), + [anon_sym_not_eq] = ACTIONS(5090), + [anon_sym_DASH_DASH] = ACTIONS(5092), + [anon_sym_PLUS_PLUS] = ACTIONS(5092), + [anon_sym_DOT] = ACTIONS(5090), + [anon_sym_DOT_STAR] = ACTIONS(5092), + [anon_sym_DASH_GT] = ACTIONS(5092), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(5090), + [anon_sym_decltype] = ACTIONS(5090), + [anon_sym_final] = ACTIONS(5090), + [anon_sym_override] = ACTIONS(5090), + [anon_sym_requires] = ACTIONS(5090), }, [1947] = { - [sym__expression] = STATE(3955), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), - [anon_sym_LPAREN2] = ACTIONS(4724), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), + [sym_identifier] = ACTIONS(5115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5117), + [anon_sym_COMMA] = ACTIONS(5117), + [anon_sym_RPAREN] = ACTIONS(5117), + [anon_sym_LPAREN2] = ACTIONS(5117), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(5117), + [anon_sym_SLASH] = ACTIONS(5115), + [anon_sym_PERCENT] = ACTIONS(5117), + [anon_sym_PIPE_PIPE] = ACTIONS(5117), + [anon_sym_AMP_AMP] = ACTIONS(5117), + [anon_sym_PIPE] = ACTIONS(5115), + [anon_sym_CARET] = ACTIONS(5117), + [anon_sym_AMP] = ACTIONS(5115), + [anon_sym_EQ_EQ] = ACTIONS(5117), + [anon_sym_BANG_EQ] = ACTIONS(5117), + [anon_sym_GT] = ACTIONS(5115), + [anon_sym_GT_EQ] = ACTIONS(5117), + [anon_sym_LT_EQ] = ACTIONS(5115), + [anon_sym_LT] = ACTIONS(5115), + [anon_sym_LT_LT] = ACTIONS(5117), + [anon_sym_GT_GT] = ACTIONS(5117), + [anon_sym_SEMI] = ACTIONS(5117), + [anon_sym___extension__] = ACTIONS(5115), + [anon_sym___attribute__] = ACTIONS(5115), + [anon_sym___based] = ACTIONS(5115), + [anon_sym_LBRACE] = ACTIONS(5117), + [anon_sym_RBRACE] = ACTIONS(5117), + [anon_sym_signed] = ACTIONS(5115), + [anon_sym_unsigned] = ACTIONS(5115), + [anon_sym_long] = ACTIONS(5115), + [anon_sym_short] = ACTIONS(5115), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_RBRACK] = ACTIONS(5117), + [anon_sym_const] = ACTIONS(5115), + [anon_sym_constexpr] = ACTIONS(5115), + [anon_sym_volatile] = ACTIONS(5115), + [anon_sym_restrict] = ACTIONS(5115), + [anon_sym___restrict__] = ACTIONS(5115), + [anon_sym__Atomic] = ACTIONS(5115), + [anon_sym__Noreturn] = ACTIONS(5115), + [anon_sym_noreturn] = ACTIONS(5115), + [anon_sym_mutable] = ACTIONS(5115), + [anon_sym_constinit] = ACTIONS(5115), + [anon_sym_consteval] = ACTIONS(5115), + [sym_primitive_type] = ACTIONS(5115), + [anon_sym_COLON] = ACTIONS(5117), + [anon_sym_QMARK] = ACTIONS(5117), + [anon_sym_LT_EQ_GT] = ACTIONS(5117), + [anon_sym_or] = ACTIONS(5115), + [anon_sym_and] = ACTIONS(5115), + [anon_sym_bitor] = ACTIONS(5115), + [anon_sym_xor] = ACTIONS(5115), + [anon_sym_bitand] = ACTIONS(5115), + [anon_sym_not_eq] = ACTIONS(5115), + [anon_sym_DASH_DASH] = ACTIONS(5117), + [anon_sym_PLUS_PLUS] = ACTIONS(5117), + [anon_sym_DOT] = ACTIONS(5115), + [anon_sym_DOT_STAR] = ACTIONS(5117), + [anon_sym_DASH_GT] = ACTIONS(5117), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5115), + [anon_sym_decltype] = ACTIONS(5115), + [anon_sym_final] = ACTIONS(5115), + [anon_sym_override] = ACTIONS(5115), + [anon_sym_requires] = ACTIONS(5115), }, [1948] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4726), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(5119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5121), + [anon_sym_COMMA] = ACTIONS(5121), + [anon_sym_RPAREN] = ACTIONS(5121), + [anon_sym_LPAREN2] = ACTIONS(5121), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_STAR] = ACTIONS(5121), + [anon_sym_SLASH] = ACTIONS(5119), + [anon_sym_PERCENT] = ACTIONS(5121), + [anon_sym_PIPE_PIPE] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(5121), + [anon_sym_PIPE] = ACTIONS(5119), + [anon_sym_CARET] = ACTIONS(5121), + [anon_sym_AMP] = ACTIONS(5119), + [anon_sym_EQ_EQ] = ACTIONS(5121), + [anon_sym_BANG_EQ] = ACTIONS(5121), + [anon_sym_GT] = ACTIONS(5119), + [anon_sym_GT_EQ] = ACTIONS(5121), + [anon_sym_LT_EQ] = ACTIONS(5119), + [anon_sym_LT] = ACTIONS(5119), + [anon_sym_LT_LT] = ACTIONS(5121), + [anon_sym_GT_GT] = ACTIONS(5121), + [anon_sym_SEMI] = ACTIONS(5121), + [anon_sym___extension__] = ACTIONS(5119), + [anon_sym___attribute__] = ACTIONS(5119), + [anon_sym___based] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(5121), + [anon_sym_signed] = ACTIONS(5119), + [anon_sym_unsigned] = ACTIONS(5119), + [anon_sym_long] = ACTIONS(5119), + [anon_sym_short] = ACTIONS(5119), + [anon_sym_LBRACK] = ACTIONS(5121), + [anon_sym_RBRACK] = ACTIONS(5121), + [anon_sym_const] = ACTIONS(5119), + [anon_sym_constexpr] = ACTIONS(5119), + [anon_sym_volatile] = ACTIONS(5119), + [anon_sym_restrict] = ACTIONS(5119), + [anon_sym___restrict__] = ACTIONS(5119), + [anon_sym__Atomic] = ACTIONS(5119), + [anon_sym__Noreturn] = ACTIONS(5119), + [anon_sym_noreturn] = ACTIONS(5119), + [anon_sym_mutable] = ACTIONS(5119), + [anon_sym_constinit] = ACTIONS(5119), + [anon_sym_consteval] = ACTIONS(5119), + [sym_primitive_type] = ACTIONS(5119), + [anon_sym_COLON] = ACTIONS(5121), + [anon_sym_QMARK] = ACTIONS(5121), + [anon_sym_LT_EQ_GT] = ACTIONS(5121), + [anon_sym_or] = ACTIONS(5119), + [anon_sym_and] = ACTIONS(5119), + [anon_sym_bitor] = ACTIONS(5119), + [anon_sym_xor] = ACTIONS(5119), + [anon_sym_bitand] = ACTIONS(5119), + [anon_sym_not_eq] = ACTIONS(5119), + [anon_sym_DASH_DASH] = ACTIONS(5121), + [anon_sym_PLUS_PLUS] = ACTIONS(5121), + [anon_sym_DOT] = ACTIONS(5119), + [anon_sym_DOT_STAR] = ACTIONS(5121), + [anon_sym_DASH_GT] = ACTIONS(5121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5119), + [anon_sym_decltype] = ACTIONS(5119), + [anon_sym_final] = ACTIONS(5119), + [anon_sym_override] = ACTIONS(5119), + [anon_sym_requires] = ACTIONS(5119), }, [1949] = { - [sym__expression] = STATE(5289), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4728), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5125), + [anon_sym_COMMA] = ACTIONS(5125), + [anon_sym_RPAREN] = ACTIONS(5125), + [anon_sym_LPAREN2] = ACTIONS(5125), + [anon_sym_DASH] = ACTIONS(5123), + [anon_sym_PLUS] = ACTIONS(5123), + [anon_sym_STAR] = ACTIONS(5125), + [anon_sym_SLASH] = ACTIONS(5123), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE] = ACTIONS(5123), + [anon_sym_CARET] = ACTIONS(5125), + [anon_sym_AMP] = ACTIONS(5123), + [anon_sym_EQ_EQ] = ACTIONS(5125), + [anon_sym_BANG_EQ] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(5123), + [anon_sym_GT_EQ] = ACTIONS(5125), + [anon_sym_LT_EQ] = ACTIONS(5123), + [anon_sym_LT] = ACTIONS(5123), + [anon_sym_LT_LT] = ACTIONS(5125), + [anon_sym_GT_GT] = ACTIONS(5125), + [anon_sym_SEMI] = ACTIONS(5125), + [anon_sym___extension__] = ACTIONS(5123), + [anon_sym___attribute__] = ACTIONS(5123), + [anon_sym___based] = ACTIONS(5123), + [anon_sym_LBRACE] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(5125), + [anon_sym_signed] = ACTIONS(5123), + [anon_sym_unsigned] = ACTIONS(5123), + [anon_sym_long] = ACTIONS(5123), + [anon_sym_short] = ACTIONS(5123), + [anon_sym_LBRACK] = ACTIONS(5125), + [anon_sym_RBRACK] = ACTIONS(5125), + [anon_sym_const] = ACTIONS(5123), + [anon_sym_constexpr] = ACTIONS(5123), + [anon_sym_volatile] = ACTIONS(5123), + [anon_sym_restrict] = ACTIONS(5123), + [anon_sym___restrict__] = ACTIONS(5123), + [anon_sym__Atomic] = ACTIONS(5123), + [anon_sym__Noreturn] = ACTIONS(5123), + [anon_sym_noreturn] = ACTIONS(5123), + [anon_sym_mutable] = ACTIONS(5123), + [anon_sym_constinit] = ACTIONS(5123), + [anon_sym_consteval] = ACTIONS(5123), + [sym_primitive_type] = ACTIONS(5123), + [anon_sym_COLON] = ACTIONS(5125), + [anon_sym_QMARK] = ACTIONS(5125), + [anon_sym_LT_EQ_GT] = ACTIONS(5125), + [anon_sym_or] = ACTIONS(5123), + [anon_sym_and] = ACTIONS(5123), + [anon_sym_bitor] = ACTIONS(5123), + [anon_sym_xor] = ACTIONS(5123), + [anon_sym_bitand] = ACTIONS(5123), + [anon_sym_not_eq] = ACTIONS(5123), + [anon_sym_DASH_DASH] = ACTIONS(5125), + [anon_sym_PLUS_PLUS] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5123), + [anon_sym_DOT_STAR] = ACTIONS(5125), + [anon_sym_DASH_GT] = ACTIONS(5125), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5123), + [anon_sym_decltype] = ACTIONS(5123), + [anon_sym_final] = ACTIONS(5123), + [anon_sym_override] = ACTIONS(5123), + [anon_sym_requires] = ACTIONS(5123), }, [1950] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4730), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(5127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5129), + [anon_sym_COMMA] = ACTIONS(5129), + [anon_sym_RPAREN] = ACTIONS(5129), + [anon_sym_LPAREN2] = ACTIONS(5129), + [anon_sym_DASH] = ACTIONS(5127), + [anon_sym_PLUS] = ACTIONS(5127), + [anon_sym_STAR] = ACTIONS(5129), + [anon_sym_SLASH] = ACTIONS(5127), + [anon_sym_PERCENT] = ACTIONS(5129), + [anon_sym_PIPE_PIPE] = ACTIONS(5129), + [anon_sym_AMP_AMP] = ACTIONS(5129), + [anon_sym_PIPE] = ACTIONS(5127), + [anon_sym_CARET] = ACTIONS(5129), + [anon_sym_AMP] = ACTIONS(5127), + [anon_sym_EQ_EQ] = ACTIONS(5129), + [anon_sym_BANG_EQ] = ACTIONS(5129), + [anon_sym_GT] = ACTIONS(5127), + [anon_sym_GT_EQ] = ACTIONS(5129), + [anon_sym_LT_EQ] = ACTIONS(5127), + [anon_sym_LT] = ACTIONS(5127), + [anon_sym_LT_LT] = ACTIONS(5129), + [anon_sym_GT_GT] = ACTIONS(5129), + [anon_sym_SEMI] = ACTIONS(5129), + [anon_sym___extension__] = ACTIONS(5127), + [anon_sym___attribute__] = ACTIONS(5127), + [anon_sym___based] = ACTIONS(5127), + [anon_sym_LBRACE] = ACTIONS(5129), + [anon_sym_RBRACE] = ACTIONS(5129), + [anon_sym_signed] = ACTIONS(5127), + [anon_sym_unsigned] = ACTIONS(5127), + [anon_sym_long] = ACTIONS(5127), + [anon_sym_short] = ACTIONS(5127), + [anon_sym_LBRACK] = ACTIONS(5129), + [anon_sym_RBRACK] = ACTIONS(5129), + [anon_sym_const] = ACTIONS(5127), + [anon_sym_constexpr] = ACTIONS(5127), + [anon_sym_volatile] = ACTIONS(5127), + [anon_sym_restrict] = ACTIONS(5127), + [anon_sym___restrict__] = ACTIONS(5127), + [anon_sym__Atomic] = ACTIONS(5127), + [anon_sym__Noreturn] = ACTIONS(5127), + [anon_sym_noreturn] = ACTIONS(5127), + [anon_sym_mutable] = ACTIONS(5127), + [anon_sym_constinit] = ACTIONS(5127), + [anon_sym_consteval] = ACTIONS(5127), + [sym_primitive_type] = ACTIONS(5127), + [anon_sym_COLON] = ACTIONS(5129), + [anon_sym_QMARK] = ACTIONS(5129), + [anon_sym_LT_EQ_GT] = ACTIONS(5129), + [anon_sym_or] = ACTIONS(5127), + [anon_sym_and] = ACTIONS(5127), + [anon_sym_bitor] = ACTIONS(5127), + [anon_sym_xor] = ACTIONS(5127), + [anon_sym_bitand] = ACTIONS(5127), + [anon_sym_not_eq] = ACTIONS(5127), + [anon_sym_DASH_DASH] = ACTIONS(5129), + [anon_sym_PLUS_PLUS] = ACTIONS(5129), + [anon_sym_DOT] = ACTIONS(5127), + [anon_sym_DOT_STAR] = ACTIONS(5129), + [anon_sym_DASH_GT] = ACTIONS(5129), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5127), + [anon_sym_decltype] = ACTIONS(5127), + [anon_sym_final] = ACTIONS(5127), + [anon_sym_override] = ACTIONS(5127), + [anon_sym_requires] = ACTIONS(5127), }, [1951] = { - [sym__expression] = STATE(4170), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4576), - [anon_sym_LPAREN2] = ACTIONS(4732), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_catch_clause] = STATE(1951), + [aux_sym_constructor_try_statement_repeat1] = STATE(1951), + [sym_identifier] = ACTIONS(2218), + [aux_sym_preproc_def_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2218), + [sym_preproc_directive] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP_AMP] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2218), + [anon_sym___extension__] = ACTIONS(2218), + [anon_sym_typedef] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym___attribute__] = ACTIONS(2218), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2220), + [anon_sym___declspec] = ACTIONS(2218), + [anon_sym___based] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2220), + [anon_sym_signed] = ACTIONS(2218), + [anon_sym_unsigned] = ACTIONS(2218), + [anon_sym_long] = ACTIONS(2218), + [anon_sym_short] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_inline] = ACTIONS(2218), + [anon_sym___inline] = ACTIONS(2218), + [anon_sym___inline__] = ACTIONS(2218), + [anon_sym___forceinline] = ACTIONS(2218), + [anon_sym_thread_local] = ACTIONS(2218), + [anon_sym___thread] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_constexpr] = ACTIONS(2218), + [anon_sym_volatile] = ACTIONS(2218), + [anon_sym_restrict] = ACTIONS(2218), + [anon_sym___restrict__] = ACTIONS(2218), + [anon_sym__Atomic] = ACTIONS(2218), + [anon_sym__Noreturn] = ACTIONS(2218), + [anon_sym_noreturn] = ACTIONS(2218), + [anon_sym_mutable] = ACTIONS(2218), + [anon_sym_constinit] = ACTIONS(2218), + [anon_sym_consteval] = ACTIONS(2218), + [sym_primitive_type] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_class] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2218), + [anon_sym_virtual] = ACTIONS(2218), + [anon_sym_alignas] = ACTIONS(2218), + [anon_sym_explicit] = ACTIONS(2218), + [anon_sym_typename] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_operator] = ACTIONS(2218), + [anon_sym_friend] = ACTIONS(2218), + [anon_sym_public] = ACTIONS(2218), + [anon_sym_private] = ACTIONS(2218), + [anon_sym_protected] = ACTIONS(2218), + [anon_sym_using] = ACTIONS(2218), + [anon_sym_static_assert] = ACTIONS(2218), + [anon_sym_catch] = ACTIONS(5131), }, [1952] = { - [sym__expression] = STATE(5327), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4734), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(2154), + [sym_template_argument_list] = STATE(3400), + [sym_raw_string_literal] = STATE(2154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_RPAREN] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4619), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_EQ] = ACTIONS(4069), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4061), + [anon_sym_SLASH_EQ] = ACTIONS(4061), + [anon_sym_PERCENT_EQ] = ACTIONS(4061), + [anon_sym_PLUS_EQ] = ACTIONS(4061), + [anon_sym_DASH_EQ] = ACTIONS(4061), + [anon_sym_LT_LT_EQ] = ACTIONS(4061), + [anon_sym_GT_GT_EQ] = ACTIONS(4061), + [anon_sym_AMP_EQ] = ACTIONS(4061), + [anon_sym_CARET_EQ] = ACTIONS(4061), + [anon_sym_PIPE_EQ] = ACTIONS(4061), + [anon_sym_and_eq] = ACTIONS(4617), + [anon_sym_or_eq] = ACTIONS(4617), + [anon_sym_xor_eq] = ACTIONS(4617), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4069), + [anon_sym_L_DQUOTE] = ACTIONS(4106), + [anon_sym_u_DQUOTE] = ACTIONS(4106), + [anon_sym_U_DQUOTE] = ACTIONS(4106), + [anon_sym_u8_DQUOTE] = ACTIONS(4106), + [anon_sym_DQUOTE] = ACTIONS(4106), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4108), + [anon_sym_LR_DQUOTE] = ACTIONS(4108), + [anon_sym_uR_DQUOTE] = ACTIONS(4108), + [anon_sym_UR_DQUOTE] = ACTIONS(4108), + [anon_sym_u8R_DQUOTE] = ACTIONS(4108), + [anon_sym_DASH_GT_STAR] = ACTIONS(4061), }, [1953] = { - [sym__expression] = STATE(5184), - [sym__expression_not_binary] = STATE(4797), - [sym_comma_expression] = STATE(9633), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(5134), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5136), + [anon_sym_COMMA] = ACTIONS(5136), + [anon_sym_RPAREN] = ACTIONS(5136), + [anon_sym_LPAREN2] = ACTIONS(5136), + [anon_sym_DASH] = ACTIONS(5134), + [anon_sym_PLUS] = ACTIONS(5134), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_SLASH] = ACTIONS(5134), + [anon_sym_PERCENT] = ACTIONS(5136), + [anon_sym_PIPE_PIPE] = ACTIONS(5136), + [anon_sym_AMP_AMP] = ACTIONS(5136), + [anon_sym_PIPE] = ACTIONS(5134), + [anon_sym_CARET] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_EQ_EQ] = ACTIONS(5136), + [anon_sym_BANG_EQ] = ACTIONS(5136), + [anon_sym_GT] = ACTIONS(5134), + [anon_sym_GT_EQ] = ACTIONS(5136), + [anon_sym_LT_EQ] = ACTIONS(5134), + [anon_sym_LT] = ACTIONS(5134), + [anon_sym_LT_LT] = ACTIONS(5136), + [anon_sym_GT_GT] = ACTIONS(5136), + [anon_sym_SEMI] = ACTIONS(5136), + [anon_sym___extension__] = ACTIONS(5134), + [anon_sym___attribute__] = ACTIONS(5134), + [anon_sym___based] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(5136), + [anon_sym_RBRACE] = ACTIONS(5136), + [anon_sym_signed] = ACTIONS(5134), + [anon_sym_unsigned] = ACTIONS(5134), + [anon_sym_long] = ACTIONS(5134), + [anon_sym_short] = ACTIONS(5134), + [anon_sym_LBRACK] = ACTIONS(5136), + [anon_sym_RBRACK] = ACTIONS(5136), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_constexpr] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_restrict] = ACTIONS(5134), + [anon_sym___restrict__] = ACTIONS(5134), + [anon_sym__Atomic] = ACTIONS(5134), + [anon_sym__Noreturn] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym_mutable] = ACTIONS(5134), + [anon_sym_constinit] = ACTIONS(5134), + [anon_sym_consteval] = ACTIONS(5134), + [sym_primitive_type] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(5136), + [anon_sym_QMARK] = ACTIONS(5136), + [anon_sym_LT_EQ_GT] = ACTIONS(5136), + [anon_sym_or] = ACTIONS(5134), + [anon_sym_and] = ACTIONS(5134), + [anon_sym_bitor] = ACTIONS(5134), + [anon_sym_xor] = ACTIONS(5134), + [anon_sym_bitand] = ACTIONS(5134), + [anon_sym_not_eq] = ACTIONS(5134), + [anon_sym_DASH_DASH] = ACTIONS(5136), + [anon_sym_PLUS_PLUS] = ACTIONS(5136), + [anon_sym_DOT] = ACTIONS(5134), + [anon_sym_DOT_STAR] = ACTIONS(5136), + [anon_sym_DASH_GT] = ACTIONS(5136), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(5134), + [anon_sym_decltype] = ACTIONS(5134), + [anon_sym_final] = ACTIONS(5134), + [anon_sym_override] = ACTIONS(5134), + [anon_sym_requires] = ACTIONS(5134), }, [1954] = { - [sym__expression] = STATE(5355), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_COLON] = ACTIONS(4736), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5138), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5140), + [anon_sym_COMMA] = ACTIONS(5140), + [anon_sym_RPAREN] = ACTIONS(5140), + [anon_sym_LPAREN2] = ACTIONS(5140), + [anon_sym_DASH] = ACTIONS(5138), + [anon_sym_PLUS] = ACTIONS(5138), + [anon_sym_STAR] = ACTIONS(5140), + [anon_sym_SLASH] = ACTIONS(5138), + [anon_sym_PERCENT] = ACTIONS(5140), + [anon_sym_PIPE_PIPE] = ACTIONS(5140), + [anon_sym_AMP_AMP] = ACTIONS(5140), + [anon_sym_PIPE] = ACTIONS(5138), + [anon_sym_CARET] = ACTIONS(5140), + [anon_sym_AMP] = ACTIONS(5138), + [anon_sym_EQ_EQ] = ACTIONS(5140), + [anon_sym_BANG_EQ] = ACTIONS(5140), + [anon_sym_GT] = ACTIONS(5138), + [anon_sym_GT_EQ] = ACTIONS(5140), + [anon_sym_LT_EQ] = ACTIONS(5138), + [anon_sym_LT] = ACTIONS(5138), + [anon_sym_LT_LT] = ACTIONS(5140), + [anon_sym_GT_GT] = ACTIONS(5140), + [anon_sym_SEMI] = ACTIONS(5140), + [anon_sym___extension__] = ACTIONS(5138), + [anon_sym___attribute__] = ACTIONS(5138), + [anon_sym___based] = ACTIONS(5138), + [anon_sym_LBRACE] = ACTIONS(5140), + [anon_sym_RBRACE] = ACTIONS(5140), + [anon_sym_signed] = ACTIONS(5138), + [anon_sym_unsigned] = ACTIONS(5138), + [anon_sym_long] = ACTIONS(5138), + [anon_sym_short] = ACTIONS(5138), + [anon_sym_LBRACK] = ACTIONS(5140), + [anon_sym_RBRACK] = ACTIONS(5140), + [anon_sym_const] = ACTIONS(5138), + [anon_sym_constexpr] = ACTIONS(5138), + [anon_sym_volatile] = ACTIONS(5138), + [anon_sym_restrict] = ACTIONS(5138), + [anon_sym___restrict__] = ACTIONS(5138), + [anon_sym__Atomic] = ACTIONS(5138), + [anon_sym__Noreturn] = ACTIONS(5138), + [anon_sym_noreturn] = ACTIONS(5138), + [anon_sym_mutable] = ACTIONS(5138), + [anon_sym_constinit] = ACTIONS(5138), + [anon_sym_consteval] = ACTIONS(5138), + [sym_primitive_type] = ACTIONS(5138), + [anon_sym_COLON] = ACTIONS(5140), + [anon_sym_QMARK] = ACTIONS(5140), + [anon_sym_LT_EQ_GT] = ACTIONS(5140), + [anon_sym_or] = ACTIONS(5138), + [anon_sym_and] = ACTIONS(5138), + [anon_sym_bitor] = ACTIONS(5138), + [anon_sym_xor] = ACTIONS(5138), + [anon_sym_bitand] = ACTIONS(5138), + [anon_sym_not_eq] = ACTIONS(5138), + [anon_sym_DASH_DASH] = ACTIONS(5140), + [anon_sym_PLUS_PLUS] = ACTIONS(5140), + [anon_sym_DOT] = ACTIONS(5138), + [anon_sym_DOT_STAR] = ACTIONS(5140), + [anon_sym_DASH_GT] = ACTIONS(5140), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5138), + [anon_sym_decltype] = ACTIONS(5138), + [anon_sym_final] = ACTIONS(5138), + [anon_sym_override] = ACTIONS(5138), + [anon_sym_requires] = ACTIONS(5138), }, [1955] = { - [sym__expression] = STATE(5253), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4738), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5142), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5144), + [anon_sym_COMMA] = ACTIONS(5144), + [anon_sym_RPAREN] = ACTIONS(5144), + [anon_sym_LPAREN2] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5142), + [anon_sym_PLUS] = ACTIONS(5142), + [anon_sym_STAR] = ACTIONS(5144), + [anon_sym_SLASH] = ACTIONS(5142), + [anon_sym_PERCENT] = ACTIONS(5144), + [anon_sym_PIPE_PIPE] = ACTIONS(5144), + [anon_sym_AMP_AMP] = ACTIONS(5144), + [anon_sym_PIPE] = ACTIONS(5142), + [anon_sym_CARET] = ACTIONS(5144), + [anon_sym_AMP] = ACTIONS(5142), + [anon_sym_EQ_EQ] = ACTIONS(5144), + [anon_sym_BANG_EQ] = ACTIONS(5144), + [anon_sym_GT] = ACTIONS(5142), + [anon_sym_GT_EQ] = ACTIONS(5144), + [anon_sym_LT_EQ] = ACTIONS(5142), + [anon_sym_LT] = ACTIONS(5142), + [anon_sym_LT_LT] = ACTIONS(5144), + [anon_sym_GT_GT] = ACTIONS(5144), + [anon_sym_SEMI] = ACTIONS(5144), + [anon_sym___extension__] = ACTIONS(5142), + [anon_sym___attribute__] = ACTIONS(5142), + [anon_sym___based] = ACTIONS(5142), + [anon_sym_LBRACE] = ACTIONS(5144), + [anon_sym_RBRACE] = ACTIONS(5144), + [anon_sym_signed] = ACTIONS(5142), + [anon_sym_unsigned] = ACTIONS(5142), + [anon_sym_long] = ACTIONS(5142), + [anon_sym_short] = ACTIONS(5142), + [anon_sym_LBRACK] = ACTIONS(5144), + [anon_sym_RBRACK] = ACTIONS(5144), + [anon_sym_const] = ACTIONS(5142), + [anon_sym_constexpr] = ACTIONS(5142), + [anon_sym_volatile] = ACTIONS(5142), + [anon_sym_restrict] = ACTIONS(5142), + [anon_sym___restrict__] = ACTIONS(5142), + [anon_sym__Atomic] = ACTIONS(5142), + [anon_sym__Noreturn] = ACTIONS(5142), + [anon_sym_noreturn] = ACTIONS(5142), + [anon_sym_mutable] = ACTIONS(5142), + [anon_sym_constinit] = ACTIONS(5142), + [anon_sym_consteval] = ACTIONS(5142), + [sym_primitive_type] = ACTIONS(5142), + [anon_sym_COLON] = ACTIONS(5144), + [anon_sym_QMARK] = ACTIONS(5144), + [anon_sym_LT_EQ_GT] = ACTIONS(5144), + [anon_sym_or] = ACTIONS(5142), + [anon_sym_and] = ACTIONS(5142), + [anon_sym_bitor] = ACTIONS(5142), + [anon_sym_xor] = ACTIONS(5142), + [anon_sym_bitand] = ACTIONS(5142), + [anon_sym_not_eq] = ACTIONS(5142), + [anon_sym_DASH_DASH] = ACTIONS(5144), + [anon_sym_PLUS_PLUS] = ACTIONS(5144), + [anon_sym_DOT] = ACTIONS(5142), + [anon_sym_DOT_STAR] = ACTIONS(5144), + [anon_sym_DASH_GT] = ACTIONS(5144), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5142), + [anon_sym_decltype] = ACTIONS(5142), + [anon_sym_final] = ACTIONS(5142), + [anon_sym_override] = ACTIONS(5142), + [anon_sym_requires] = ACTIONS(5142), }, [1956] = { - [sym__expression] = STATE(3746), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4740), - [anon_sym_LPAREN2] = ACTIONS(4742), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), + [sym_identifier] = ACTIONS(5146), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5148), + [anon_sym_COMMA] = ACTIONS(5148), + [anon_sym_RPAREN] = ACTIONS(5148), + [anon_sym_LPAREN2] = ACTIONS(5148), + [anon_sym_DASH] = ACTIONS(5146), + [anon_sym_PLUS] = ACTIONS(5146), + [anon_sym_STAR] = ACTIONS(5148), + [anon_sym_SLASH] = ACTIONS(5146), + [anon_sym_PERCENT] = ACTIONS(5148), + [anon_sym_PIPE_PIPE] = ACTIONS(5148), + [anon_sym_AMP_AMP] = ACTIONS(5148), + [anon_sym_PIPE] = ACTIONS(5146), + [anon_sym_CARET] = ACTIONS(5148), + [anon_sym_AMP] = ACTIONS(5146), + [anon_sym_EQ_EQ] = ACTIONS(5148), + [anon_sym_BANG_EQ] = ACTIONS(5148), + [anon_sym_GT] = ACTIONS(5146), + [anon_sym_GT_EQ] = ACTIONS(5148), + [anon_sym_LT_EQ] = ACTIONS(5146), + [anon_sym_LT] = ACTIONS(5146), + [anon_sym_LT_LT] = ACTIONS(5148), + [anon_sym_GT_GT] = ACTIONS(5148), + [anon_sym_SEMI] = ACTIONS(5148), + [anon_sym___extension__] = ACTIONS(5146), + [anon_sym___attribute__] = ACTIONS(5146), + [anon_sym___based] = ACTIONS(5146), + [anon_sym_LBRACE] = ACTIONS(5148), + [anon_sym_RBRACE] = ACTIONS(5148), + [anon_sym_signed] = ACTIONS(5146), + [anon_sym_unsigned] = ACTIONS(5146), + [anon_sym_long] = ACTIONS(5146), + [anon_sym_short] = ACTIONS(5146), + [anon_sym_LBRACK] = ACTIONS(5148), + [anon_sym_RBRACK] = ACTIONS(5148), + [anon_sym_const] = ACTIONS(5146), + [anon_sym_constexpr] = ACTIONS(5146), + [anon_sym_volatile] = ACTIONS(5146), + [anon_sym_restrict] = ACTIONS(5146), + [anon_sym___restrict__] = ACTIONS(5146), + [anon_sym__Atomic] = ACTIONS(5146), + [anon_sym__Noreturn] = ACTIONS(5146), + [anon_sym_noreturn] = ACTIONS(5146), + [anon_sym_mutable] = ACTIONS(5146), + [anon_sym_constinit] = ACTIONS(5146), + [anon_sym_consteval] = ACTIONS(5146), + [sym_primitive_type] = ACTIONS(5146), + [anon_sym_COLON] = ACTIONS(5148), + [anon_sym_QMARK] = ACTIONS(5148), + [anon_sym_LT_EQ_GT] = ACTIONS(5148), + [anon_sym_or] = ACTIONS(5146), + [anon_sym_and] = ACTIONS(5146), + [anon_sym_bitor] = ACTIONS(5146), + [anon_sym_xor] = ACTIONS(5146), + [anon_sym_bitand] = ACTIONS(5146), + [anon_sym_not_eq] = ACTIONS(5146), + [anon_sym_DASH_DASH] = ACTIONS(5148), + [anon_sym_PLUS_PLUS] = ACTIONS(5148), + [anon_sym_DOT] = ACTIONS(5146), + [anon_sym_DOT_STAR] = ACTIONS(5148), + [anon_sym_DASH_GT] = ACTIONS(5148), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5146), + [anon_sym_decltype] = ACTIONS(5146), + [anon_sym_final] = ACTIONS(5146), + [anon_sym_override] = ACTIONS(5146), + [anon_sym_requires] = ACTIONS(5146), }, [1957] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4744), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_string_literal] = STATE(1933), + [sym_raw_string_literal] = STATE(1933), + [aux_sym_concatenated_string_repeat1] = STATE(1933), + [sym_identifier] = ACTIONS(5150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_LPAREN2] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_PLUS] = ACTIONS(4842), + [anon_sym_STAR] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4842), + [anon_sym_PERCENT] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4842), + [anon_sym_AMP] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4840), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_LT_LT] = ACTIONS(4842), + [anon_sym_GT_GT] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym___attribute__] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4842), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_STAR_EQ] = ACTIONS(4840), + [anon_sym_SLASH_EQ] = ACTIONS(4840), + [anon_sym_PERCENT_EQ] = ACTIONS(4840), + [anon_sym_PLUS_EQ] = ACTIONS(4840), + [anon_sym_DASH_EQ] = ACTIONS(4840), + [anon_sym_LT_LT_EQ] = ACTIONS(4840), + [anon_sym_GT_GT_EQ] = ACTIONS(4840), + [anon_sym_AMP_EQ] = ACTIONS(4840), + [anon_sym_CARET_EQ] = ACTIONS(4840), + [anon_sym_PIPE_EQ] = ACTIONS(4840), + [anon_sym_and_eq] = ACTIONS(4842), + [anon_sym_or_eq] = ACTIONS(4842), + [anon_sym_xor_eq] = ACTIONS(4842), + [anon_sym_LT_EQ_GT] = ACTIONS(4840), + [anon_sym_or] = ACTIONS(4842), + [anon_sym_and] = ACTIONS(4842), + [anon_sym_bitor] = ACTIONS(4842), + [anon_sym_xor] = ACTIONS(4842), + [anon_sym_bitand] = ACTIONS(4842), + [anon_sym_not_eq] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4840), + [anon_sym_PLUS_PLUS] = ACTIONS(4840), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_DOT_STAR] = ACTIONS(4840), + [anon_sym_DASH_GT] = ACTIONS(4840), + [anon_sym_L_DQUOTE] = ACTIONS(5051), + [anon_sym_u_DQUOTE] = ACTIONS(5051), + [anon_sym_U_DQUOTE] = ACTIONS(5051), + [anon_sym_u8_DQUOTE] = ACTIONS(5051), + [anon_sym_DQUOTE] = ACTIONS(5051), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5053), + [anon_sym_LR_DQUOTE] = ACTIONS(5053), + [anon_sym_uR_DQUOTE] = ACTIONS(5053), + [anon_sym_UR_DQUOTE] = ACTIONS(5053), + [anon_sym_u8R_DQUOTE] = ACTIONS(5053), + [sym_literal_suffix] = ACTIONS(4842), }, [1958] = { - [sym__expression] = STATE(5381), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4746), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4955), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4957), + [anon_sym_COMMA] = ACTIONS(4957), + [anon_sym_RPAREN] = ACTIONS(4957), + [anon_sym_LPAREN2] = ACTIONS(4957), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_PLUS] = ACTIONS(4955), + [anon_sym_STAR] = ACTIONS(4957), + [anon_sym_SLASH] = ACTIONS(4955), + [anon_sym_PERCENT] = ACTIONS(4957), + [anon_sym_PIPE_PIPE] = ACTIONS(4957), + [anon_sym_AMP_AMP] = ACTIONS(4957), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_CARET] = ACTIONS(4957), + [anon_sym_AMP] = ACTIONS(4955), + [anon_sym_EQ_EQ] = ACTIONS(4957), + [anon_sym_BANG_EQ] = ACTIONS(4957), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_GT_EQ] = ACTIONS(4957), + [anon_sym_LT_EQ] = ACTIONS(4955), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_LT_LT] = ACTIONS(4957), + [anon_sym_GT_GT] = ACTIONS(4957), + [anon_sym_SEMI] = ACTIONS(4957), + [anon_sym___extension__] = ACTIONS(4955), + [anon_sym___attribute__] = ACTIONS(4955), + [anon_sym___based] = ACTIONS(4955), + [anon_sym_LBRACE] = ACTIONS(4957), + [anon_sym_RBRACE] = ACTIONS(4957), + [anon_sym_signed] = ACTIONS(4955), + [anon_sym_unsigned] = ACTIONS(4955), + [anon_sym_long] = ACTIONS(4955), + [anon_sym_short] = ACTIONS(4955), + [anon_sym_LBRACK] = ACTIONS(4957), + [anon_sym_RBRACK] = ACTIONS(4957), + [anon_sym_const] = ACTIONS(4955), + [anon_sym_constexpr] = ACTIONS(4955), + [anon_sym_volatile] = ACTIONS(4955), + [anon_sym_restrict] = ACTIONS(4955), + [anon_sym___restrict__] = ACTIONS(4955), + [anon_sym__Atomic] = ACTIONS(4955), + [anon_sym__Noreturn] = ACTIONS(4955), + [anon_sym_noreturn] = ACTIONS(4955), + [anon_sym_mutable] = ACTIONS(4955), + [anon_sym_constinit] = ACTIONS(4955), + [anon_sym_consteval] = ACTIONS(4955), + [sym_primitive_type] = ACTIONS(4955), + [anon_sym_COLON] = ACTIONS(4957), + [anon_sym_QMARK] = ACTIONS(4957), + [anon_sym_LT_EQ_GT] = ACTIONS(4957), + [anon_sym_or] = ACTIONS(4955), + [anon_sym_and] = ACTIONS(4955), + [anon_sym_bitor] = ACTIONS(4955), + [anon_sym_xor] = ACTIONS(4955), + [anon_sym_bitand] = ACTIONS(4955), + [anon_sym_not_eq] = ACTIONS(4955), + [anon_sym_DASH_DASH] = ACTIONS(4957), + [anon_sym_PLUS_PLUS] = ACTIONS(4957), + [anon_sym_DOT] = ACTIONS(4955), + [anon_sym_DOT_STAR] = ACTIONS(4957), + [anon_sym_DASH_GT] = ACTIONS(4957), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4955), + [anon_sym_decltype] = ACTIONS(4955), + [anon_sym_final] = ACTIONS(4955), + [anon_sym_override] = ACTIONS(4955), + [anon_sym_requires] = ACTIONS(4955), }, [1959] = { - [sym__expression] = STATE(5310), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4748), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5154), + [anon_sym_COMMA] = ACTIONS(5154), + [anon_sym_RPAREN] = ACTIONS(5154), + [anon_sym_LPAREN2] = ACTIONS(5154), + [anon_sym_DASH] = ACTIONS(5152), + [anon_sym_PLUS] = ACTIONS(5152), + [anon_sym_STAR] = ACTIONS(5152), + [anon_sym_SLASH] = ACTIONS(5152), + [anon_sym_PERCENT] = ACTIONS(5152), + [anon_sym_PIPE_PIPE] = ACTIONS(5154), + [anon_sym_AMP_AMP] = ACTIONS(5154), + [anon_sym_PIPE] = ACTIONS(5152), + [anon_sym_CARET] = ACTIONS(5152), + [anon_sym_AMP] = ACTIONS(5152), + [anon_sym_EQ_EQ] = ACTIONS(5154), + [anon_sym_BANG_EQ] = ACTIONS(5154), + [anon_sym_GT] = ACTIONS(5152), + [anon_sym_GT_EQ] = ACTIONS(5154), + [anon_sym_LT_EQ] = ACTIONS(5152), + [anon_sym_LT] = ACTIONS(5152), + [anon_sym_LT_LT] = ACTIONS(5152), + [anon_sym_GT_GT] = ACTIONS(5152), + [anon_sym_SEMI] = ACTIONS(5154), + [anon_sym_RBRACE] = ACTIONS(5154), + [anon_sym_LBRACK] = ACTIONS(5154), + [anon_sym_RBRACK] = ACTIONS(5154), + [anon_sym_EQ] = ACTIONS(5152), + [anon_sym_COLON] = ACTIONS(5154), + [anon_sym_QMARK] = ACTIONS(5154), + [anon_sym_STAR_EQ] = ACTIONS(5154), + [anon_sym_SLASH_EQ] = ACTIONS(5154), + [anon_sym_PERCENT_EQ] = ACTIONS(5154), + [anon_sym_PLUS_EQ] = ACTIONS(5154), + [anon_sym_DASH_EQ] = ACTIONS(5154), + [anon_sym_LT_LT_EQ] = ACTIONS(5154), + [anon_sym_GT_GT_EQ] = ACTIONS(5154), + [anon_sym_AMP_EQ] = ACTIONS(5154), + [anon_sym_CARET_EQ] = ACTIONS(5154), + [anon_sym_PIPE_EQ] = ACTIONS(5154), + [anon_sym_and_eq] = ACTIONS(5152), + [anon_sym_or_eq] = ACTIONS(5152), + [anon_sym_xor_eq] = ACTIONS(5152), + [anon_sym_LT_EQ_GT] = ACTIONS(5154), + [anon_sym_or] = ACTIONS(5152), + [anon_sym_and] = ACTIONS(5152), + [anon_sym_bitor] = ACTIONS(5152), + [anon_sym_xor] = ACTIONS(5152), + [anon_sym_bitand] = ACTIONS(5152), + [anon_sym_not_eq] = ACTIONS(5152), + [anon_sym_DASH_DASH] = ACTIONS(5154), + [anon_sym_PLUS_PLUS] = ACTIONS(5154), + [anon_sym_DOT] = ACTIONS(5152), + [anon_sym_DOT_STAR] = ACTIONS(5154), + [anon_sym_DASH_GT] = ACTIONS(5154), + [anon_sym_L_DQUOTE] = ACTIONS(5154), + [anon_sym_u_DQUOTE] = ACTIONS(5154), + [anon_sym_U_DQUOTE] = ACTIONS(5154), + [anon_sym_u8_DQUOTE] = ACTIONS(5154), + [anon_sym_DQUOTE] = ACTIONS(5154), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5154), + [anon_sym_LR_DQUOTE] = ACTIONS(5154), + [anon_sym_uR_DQUOTE] = ACTIONS(5154), + [anon_sym_UR_DQUOTE] = ACTIONS(5154), + [anon_sym_u8R_DQUOTE] = ACTIONS(5154), + [sym_literal_suffix] = ACTIONS(5152), }, [1960] = { - [sym__expression] = STATE(5253), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4750), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5158), + [anon_sym_COMMA] = ACTIONS(5158), + [anon_sym_RPAREN] = ACTIONS(5158), + [anon_sym_LPAREN2] = ACTIONS(5158), + [anon_sym_DASH] = ACTIONS(5156), + [anon_sym_PLUS] = ACTIONS(5156), + [anon_sym_STAR] = ACTIONS(5158), + [anon_sym_SLASH] = ACTIONS(5156), + [anon_sym_PERCENT] = ACTIONS(5158), + [anon_sym_PIPE_PIPE] = ACTIONS(5158), + [anon_sym_AMP_AMP] = ACTIONS(5158), + [anon_sym_PIPE] = ACTIONS(5156), + [anon_sym_CARET] = ACTIONS(5158), + [anon_sym_AMP] = ACTIONS(5156), + [anon_sym_EQ_EQ] = ACTIONS(5158), + [anon_sym_BANG_EQ] = ACTIONS(5158), + [anon_sym_GT] = ACTIONS(5156), + [anon_sym_GT_EQ] = ACTIONS(5158), + [anon_sym_LT_EQ] = ACTIONS(5156), + [anon_sym_LT] = ACTIONS(5156), + [anon_sym_LT_LT] = ACTIONS(5158), + [anon_sym_GT_GT] = ACTIONS(5158), + [anon_sym_SEMI] = ACTIONS(5158), + [anon_sym___extension__] = ACTIONS(5156), + [anon_sym___attribute__] = ACTIONS(5156), + [anon_sym___based] = ACTIONS(5156), + [anon_sym_LBRACE] = ACTIONS(5158), + [anon_sym_RBRACE] = ACTIONS(5158), + [anon_sym_signed] = ACTIONS(5156), + [anon_sym_unsigned] = ACTIONS(5156), + [anon_sym_long] = ACTIONS(5156), + [anon_sym_short] = ACTIONS(5156), + [anon_sym_LBRACK] = ACTIONS(5158), + [anon_sym_RBRACK] = ACTIONS(5158), + [anon_sym_const] = ACTIONS(5156), + [anon_sym_constexpr] = ACTIONS(5156), + [anon_sym_volatile] = ACTIONS(5156), + [anon_sym_restrict] = ACTIONS(5156), + [anon_sym___restrict__] = ACTIONS(5156), + [anon_sym__Atomic] = ACTIONS(5156), + [anon_sym__Noreturn] = ACTIONS(5156), + [anon_sym_noreturn] = ACTIONS(5156), + [anon_sym_mutable] = ACTIONS(5156), + [anon_sym_constinit] = ACTIONS(5156), + [anon_sym_consteval] = ACTIONS(5156), + [sym_primitive_type] = ACTIONS(5156), + [anon_sym_COLON] = ACTIONS(5158), + [anon_sym_QMARK] = ACTIONS(5158), + [anon_sym_LT_EQ_GT] = ACTIONS(5158), + [anon_sym_or] = ACTIONS(5156), + [anon_sym_and] = ACTIONS(5156), + [anon_sym_bitor] = ACTIONS(5156), + [anon_sym_xor] = ACTIONS(5156), + [anon_sym_bitand] = ACTIONS(5156), + [anon_sym_not_eq] = ACTIONS(5156), + [anon_sym_DASH_DASH] = ACTIONS(5158), + [anon_sym_PLUS_PLUS] = ACTIONS(5158), + [anon_sym_DOT] = ACTIONS(5156), + [anon_sym_DOT_STAR] = ACTIONS(5158), + [anon_sym_DASH_GT] = ACTIONS(5158), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5156), + [anon_sym_decltype] = ACTIONS(5156), + [anon_sym_final] = ACTIONS(5156), + [anon_sym_override] = ACTIONS(5156), + [anon_sym_requires] = ACTIONS(5156), }, [1961] = { - [sym__expression] = STATE(5369), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_COLON] = ACTIONS(4752), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5162), + [anon_sym_COMMA] = ACTIONS(5162), + [anon_sym_RPAREN] = ACTIONS(5162), + [anon_sym_LPAREN2] = ACTIONS(5162), + [anon_sym_DASH] = ACTIONS(5160), + [anon_sym_PLUS] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_SLASH] = ACTIONS(5160), + [anon_sym_PERCENT] = ACTIONS(5162), + [anon_sym_PIPE_PIPE] = ACTIONS(5162), + [anon_sym_AMP_AMP] = ACTIONS(5162), + [anon_sym_PIPE] = ACTIONS(5160), + [anon_sym_CARET] = ACTIONS(5162), + [anon_sym_AMP] = ACTIONS(5160), + [anon_sym_EQ_EQ] = ACTIONS(5162), + [anon_sym_BANG_EQ] = ACTIONS(5162), + [anon_sym_GT] = ACTIONS(5160), + [anon_sym_GT_EQ] = ACTIONS(5162), + [anon_sym_LT_EQ] = ACTIONS(5160), + [anon_sym_LT] = ACTIONS(5160), + [anon_sym_LT_LT] = ACTIONS(5162), + [anon_sym_GT_GT] = ACTIONS(5162), + [anon_sym_SEMI] = ACTIONS(5162), + [anon_sym___extension__] = ACTIONS(5160), + [anon_sym___attribute__] = ACTIONS(5160), + [anon_sym___based] = ACTIONS(5160), + [anon_sym_LBRACE] = ACTIONS(5162), + [anon_sym_RBRACE] = ACTIONS(5162), + [anon_sym_signed] = ACTIONS(5160), + [anon_sym_unsigned] = ACTIONS(5160), + [anon_sym_long] = ACTIONS(5160), + [anon_sym_short] = ACTIONS(5160), + [anon_sym_LBRACK] = ACTIONS(5162), + [anon_sym_RBRACK] = ACTIONS(5162), + [anon_sym_const] = ACTIONS(5160), + [anon_sym_constexpr] = ACTIONS(5160), + [anon_sym_volatile] = ACTIONS(5160), + [anon_sym_restrict] = ACTIONS(5160), + [anon_sym___restrict__] = ACTIONS(5160), + [anon_sym__Atomic] = ACTIONS(5160), + [anon_sym__Noreturn] = ACTIONS(5160), + [anon_sym_noreturn] = ACTIONS(5160), + [anon_sym_mutable] = ACTIONS(5160), + [anon_sym_constinit] = ACTIONS(5160), + [anon_sym_consteval] = ACTIONS(5160), + [sym_primitive_type] = ACTIONS(5160), + [anon_sym_COLON] = ACTIONS(5162), + [anon_sym_QMARK] = ACTIONS(5162), + [anon_sym_LT_EQ_GT] = ACTIONS(5162), + [anon_sym_or] = ACTIONS(5160), + [anon_sym_and] = ACTIONS(5160), + [anon_sym_bitor] = ACTIONS(5160), + [anon_sym_xor] = ACTIONS(5160), + [anon_sym_bitand] = ACTIONS(5160), + [anon_sym_not_eq] = ACTIONS(5160), + [anon_sym_DASH_DASH] = ACTIONS(5162), + [anon_sym_PLUS_PLUS] = ACTIONS(5162), + [anon_sym_DOT] = ACTIONS(5160), + [anon_sym_DOT_STAR] = ACTIONS(5162), + [anon_sym_DASH_GT] = ACTIONS(5162), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5160), + [anon_sym_decltype] = ACTIONS(5160), + [anon_sym_final] = ACTIONS(5160), + [anon_sym_override] = ACTIONS(5160), + [anon_sym_requires] = ACTIONS(5160), }, [1962] = { - [sym__expression] = STATE(5386), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_COLON] = ACTIONS(4754), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5096), + [anon_sym_COMMA] = ACTIONS(5096), + [anon_sym_RPAREN] = ACTIONS(5096), + [anon_sym_LPAREN2] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5094), + [anon_sym_PLUS] = ACTIONS(5094), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5094), + [anon_sym_PERCENT] = ACTIONS(5096), + [anon_sym_PIPE_PIPE] = ACTIONS(5096), + [anon_sym_AMP_AMP] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5094), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5094), + [anon_sym_EQ_EQ] = ACTIONS(5096), + [anon_sym_BANG_EQ] = ACTIONS(5096), + [anon_sym_GT] = ACTIONS(5094), + [anon_sym_GT_EQ] = ACTIONS(5096), + [anon_sym_LT_EQ] = ACTIONS(5094), + [anon_sym_LT] = ACTIONS(5094), + [anon_sym_LT_LT] = ACTIONS(5096), + [anon_sym_GT_GT] = ACTIONS(5096), + [anon_sym_SEMI] = ACTIONS(5096), + [anon_sym___extension__] = ACTIONS(5094), + [anon_sym___attribute__] = ACTIONS(5094), + [anon_sym___based] = ACTIONS(5094), + [anon_sym_LBRACE] = ACTIONS(5096), + [anon_sym_RBRACE] = ACTIONS(5096), + [anon_sym_signed] = ACTIONS(5094), + [anon_sym_unsigned] = ACTIONS(5094), + [anon_sym_long] = ACTIONS(5094), + [anon_sym_short] = ACTIONS(5094), + [anon_sym_LBRACK] = ACTIONS(5096), + [anon_sym_RBRACK] = ACTIONS(5096), + [anon_sym_const] = ACTIONS(5094), + [anon_sym_constexpr] = ACTIONS(5094), + [anon_sym_volatile] = ACTIONS(5094), + [anon_sym_restrict] = ACTIONS(5094), + [anon_sym___restrict__] = ACTIONS(5094), + [anon_sym__Atomic] = ACTIONS(5094), + [anon_sym__Noreturn] = ACTIONS(5094), + [anon_sym_noreturn] = ACTIONS(5094), + [anon_sym_mutable] = ACTIONS(5094), + [anon_sym_constinit] = ACTIONS(5094), + [anon_sym_consteval] = ACTIONS(5094), + [sym_primitive_type] = ACTIONS(5094), + [anon_sym_COLON] = ACTIONS(5096), + [anon_sym_QMARK] = ACTIONS(5096), + [anon_sym_LT_EQ_GT] = ACTIONS(5096), + [anon_sym_or] = ACTIONS(5094), + [anon_sym_and] = ACTIONS(5094), + [anon_sym_bitor] = ACTIONS(5094), + [anon_sym_xor] = ACTIONS(5094), + [anon_sym_bitand] = ACTIONS(5094), + [anon_sym_not_eq] = ACTIONS(5094), + [anon_sym_DASH_DASH] = ACTIONS(5096), + [anon_sym_PLUS_PLUS] = ACTIONS(5096), + [anon_sym_DOT] = ACTIONS(5094), + [anon_sym_DOT_STAR] = ACTIONS(5096), + [anon_sym_DASH_GT] = ACTIONS(5096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5094), + [anon_sym_decltype] = ACTIONS(5094), + [anon_sym_final] = ACTIONS(5094), + [anon_sym_override] = ACTIONS(5094), + [anon_sym_requires] = ACTIONS(5094), }, [1963] = { - [sym__expression] = STATE(5380), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5166), + [anon_sym_COMMA] = ACTIONS(5166), + [anon_sym_RPAREN] = ACTIONS(5166), + [anon_sym_LPAREN2] = ACTIONS(5166), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5166), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_PERCENT] = ACTIONS(5166), + [anon_sym_PIPE_PIPE] = ACTIONS(5166), + [anon_sym_AMP_AMP] = ACTIONS(5166), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_CARET] = ACTIONS(5166), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_EQ_EQ] = ACTIONS(5166), + [anon_sym_BANG_EQ] = ACTIONS(5166), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_GT_EQ] = ACTIONS(5166), + [anon_sym_LT_EQ] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_LT_LT] = ACTIONS(5166), + [anon_sym_GT_GT] = ACTIONS(5166), + [anon_sym_SEMI] = ACTIONS(5166), + [anon_sym___extension__] = ACTIONS(5164), + [anon_sym___attribute__] = ACTIONS(5164), + [anon_sym___based] = ACTIONS(5164), + [anon_sym_LBRACE] = ACTIONS(5166), + [anon_sym_RBRACE] = ACTIONS(5166), + [anon_sym_signed] = ACTIONS(5164), + [anon_sym_unsigned] = ACTIONS(5164), + [anon_sym_long] = ACTIONS(5164), + [anon_sym_short] = ACTIONS(5164), + [anon_sym_LBRACK] = ACTIONS(5166), + [anon_sym_RBRACK] = ACTIONS(5166), + [anon_sym_const] = ACTIONS(5164), + [anon_sym_constexpr] = ACTIONS(5164), + [anon_sym_volatile] = ACTIONS(5164), + [anon_sym_restrict] = ACTIONS(5164), + [anon_sym___restrict__] = ACTIONS(5164), + [anon_sym__Atomic] = ACTIONS(5164), + [anon_sym__Noreturn] = ACTIONS(5164), + [anon_sym_noreturn] = ACTIONS(5164), + [anon_sym_mutable] = ACTIONS(5164), + [anon_sym_constinit] = ACTIONS(5164), + [anon_sym_consteval] = ACTIONS(5164), + [sym_primitive_type] = ACTIONS(5164), + [anon_sym_COLON] = ACTIONS(5166), + [anon_sym_QMARK] = ACTIONS(5166), + [anon_sym_LT_EQ_GT] = ACTIONS(5166), + [anon_sym_or] = ACTIONS(5164), + [anon_sym_and] = ACTIONS(5164), + [anon_sym_bitor] = ACTIONS(5164), + [anon_sym_xor] = ACTIONS(5164), + [anon_sym_bitand] = ACTIONS(5164), + [anon_sym_not_eq] = ACTIONS(5164), + [anon_sym_DASH_DASH] = ACTIONS(5166), + [anon_sym_PLUS_PLUS] = ACTIONS(5166), + [anon_sym_DOT] = ACTIONS(5164), + [anon_sym_DOT_STAR] = ACTIONS(5166), + [anon_sym_DASH_GT] = ACTIONS(5166), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5164), + [anon_sym_decltype] = ACTIONS(5164), + [anon_sym_final] = ACTIONS(5164), + [anon_sym_override] = ACTIONS(5164), + [anon_sym_requires] = ACTIONS(5164), }, [1964] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4758), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(5094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5096), + [anon_sym_COMMA] = ACTIONS(5096), + [anon_sym_RPAREN] = ACTIONS(5096), + [anon_sym_LPAREN2] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5094), + [anon_sym_PLUS] = ACTIONS(5094), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5094), + [anon_sym_PERCENT] = ACTIONS(5096), + [anon_sym_PIPE_PIPE] = ACTIONS(5096), + [anon_sym_AMP_AMP] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5094), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5094), + [anon_sym_EQ_EQ] = ACTIONS(5096), + [anon_sym_BANG_EQ] = ACTIONS(5096), + [anon_sym_GT] = ACTIONS(5094), + [anon_sym_GT_EQ] = ACTIONS(5096), + [anon_sym_LT_EQ] = ACTIONS(5094), + [anon_sym_LT] = ACTIONS(5094), + [anon_sym_LT_LT] = ACTIONS(5096), + [anon_sym_GT_GT] = ACTIONS(5096), + [anon_sym_SEMI] = ACTIONS(5096), + [anon_sym___extension__] = ACTIONS(5094), + [anon_sym___attribute__] = ACTIONS(5094), + [anon_sym___based] = ACTIONS(5094), + [anon_sym_LBRACE] = ACTIONS(5096), + [anon_sym_RBRACE] = ACTIONS(5096), + [anon_sym_signed] = ACTIONS(5094), + [anon_sym_unsigned] = ACTIONS(5094), + [anon_sym_long] = ACTIONS(5094), + [anon_sym_short] = ACTIONS(5094), + [anon_sym_LBRACK] = ACTIONS(5096), + [anon_sym_RBRACK] = ACTIONS(5096), + [anon_sym_const] = ACTIONS(5094), + [anon_sym_constexpr] = ACTIONS(5094), + [anon_sym_volatile] = ACTIONS(5094), + [anon_sym_restrict] = ACTIONS(5094), + [anon_sym___restrict__] = ACTIONS(5094), + [anon_sym__Atomic] = ACTIONS(5094), + [anon_sym__Noreturn] = ACTIONS(5094), + [anon_sym_noreturn] = ACTIONS(5094), + [anon_sym_mutable] = ACTIONS(5094), + [anon_sym_constinit] = ACTIONS(5094), + [anon_sym_consteval] = ACTIONS(5094), + [sym_primitive_type] = ACTIONS(5094), + [anon_sym_COLON] = ACTIONS(5096), + [anon_sym_QMARK] = ACTIONS(5096), + [anon_sym_LT_EQ_GT] = ACTIONS(5096), + [anon_sym_or] = ACTIONS(5094), + [anon_sym_and] = ACTIONS(5094), + [anon_sym_bitor] = ACTIONS(5094), + [anon_sym_xor] = ACTIONS(5094), + [anon_sym_bitand] = ACTIONS(5094), + [anon_sym_not_eq] = ACTIONS(5094), + [anon_sym_DASH_DASH] = ACTIONS(5096), + [anon_sym_PLUS_PLUS] = ACTIONS(5096), + [anon_sym_DOT] = ACTIONS(5094), + [anon_sym_DOT_STAR] = ACTIONS(5096), + [anon_sym_DASH_GT] = ACTIONS(5096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5094), + [anon_sym_decltype] = ACTIONS(5094), + [anon_sym_final] = ACTIONS(5094), + [anon_sym_override] = ACTIONS(5094), + [anon_sym_requires] = ACTIONS(5094), }, [1965] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4760), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(3273), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [anon_sym_LPAREN2] = ACTIONS(3275), + [anon_sym_TILDE] = ACTIONS(3275), + [anon_sym_STAR] = ACTIONS(3275), + [anon_sym_AMP_AMP] = ACTIONS(3275), + [anon_sym_AMP] = ACTIONS(3273), + [anon_sym_SEMI] = ACTIONS(3275), + [anon_sym___extension__] = ACTIONS(3273), + [anon_sym_extern] = ACTIONS(3273), + [anon_sym___attribute__] = ACTIONS(3273), + [anon_sym_COLON_COLON] = ACTIONS(3275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3275), + [anon_sym___declspec] = ACTIONS(3273), + [anon_sym___based] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_signed] = ACTIONS(3273), + [anon_sym_unsigned] = ACTIONS(3273), + [anon_sym_long] = ACTIONS(3273), + [anon_sym_short] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_EQ] = ACTIONS(3275), + [anon_sym_static] = ACTIONS(3273), + [anon_sym_register] = ACTIONS(3273), + [anon_sym_inline] = ACTIONS(3273), + [anon_sym___inline] = ACTIONS(3273), + [anon_sym___inline__] = ACTIONS(3273), + [anon_sym___forceinline] = ACTIONS(3273), + [anon_sym_thread_local] = ACTIONS(3273), + [anon_sym___thread] = ACTIONS(3273), + [anon_sym_const] = ACTIONS(3273), + [anon_sym_constexpr] = ACTIONS(3273), + [anon_sym_volatile] = ACTIONS(3273), + [anon_sym_restrict] = ACTIONS(3273), + [anon_sym___restrict__] = ACTIONS(3273), + [anon_sym__Atomic] = ACTIONS(3273), + [anon_sym__Noreturn] = ACTIONS(3273), + [anon_sym_noreturn] = ACTIONS(3273), + [anon_sym_mutable] = ACTIONS(3273), + [anon_sym_constinit] = ACTIONS(3273), + [anon_sym_consteval] = ACTIONS(3273), + [sym_primitive_type] = ACTIONS(3273), + [anon_sym_enum] = ACTIONS(3273), + [anon_sym_class] = ACTIONS(3273), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3273), + [anon_sym_asm] = ACTIONS(3273), + [anon_sym___asm__] = ACTIONS(3273), + [anon_sym_DASH_GT] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3273), + [anon_sym_decltype] = ACTIONS(3273), + [anon_sym_final] = ACTIONS(3273), + [anon_sym_override] = ACTIONS(3273), + [anon_sym_virtual] = ACTIONS(3273), + [anon_sym_alignas] = ACTIONS(3273), + [anon_sym_explicit] = ACTIONS(3273), + [anon_sym_typename] = ACTIONS(3273), + [anon_sym_template] = ACTIONS(3273), + [anon_sym_GT2] = ACTIONS(3275), + [anon_sym_operator] = ACTIONS(3273), + [anon_sym_try] = ACTIONS(3273), + [anon_sym_noexcept] = ACTIONS(3273), + [anon_sym_throw] = ACTIONS(3273), + [anon_sym_requires] = ACTIONS(3273), }, [1966] = { - [sym__expression] = STATE(5379), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4762), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4710), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4633), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), }, [1967] = { - [sym__expression] = STATE(5131), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4764), - [anon_sym_LPAREN2] = ACTIONS(4766), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [sym_identifier] = ACTIONS(5168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5170), + [anon_sym_COMMA] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(5170), + [anon_sym_LPAREN2] = ACTIONS(5170), + [anon_sym_DASH] = ACTIONS(5168), + [anon_sym_PLUS] = ACTIONS(5168), + [anon_sym_STAR] = ACTIONS(5170), + [anon_sym_SLASH] = ACTIONS(5168), + [anon_sym_PERCENT] = ACTIONS(5170), + [anon_sym_PIPE_PIPE] = ACTIONS(5170), + [anon_sym_AMP_AMP] = ACTIONS(5170), + [anon_sym_PIPE] = ACTIONS(5168), + [anon_sym_CARET] = ACTIONS(5170), + [anon_sym_AMP] = ACTIONS(5168), + [anon_sym_EQ_EQ] = ACTIONS(5170), + [anon_sym_BANG_EQ] = ACTIONS(5170), + [anon_sym_GT] = ACTIONS(5168), + [anon_sym_GT_EQ] = ACTIONS(5170), + [anon_sym_LT_EQ] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5168), + [anon_sym_LT_LT] = ACTIONS(5170), + [anon_sym_GT_GT] = ACTIONS(5170), + [anon_sym_SEMI] = ACTIONS(5170), + [anon_sym___extension__] = ACTIONS(5168), + [anon_sym___attribute__] = ACTIONS(5168), + [anon_sym___based] = ACTIONS(5168), + [anon_sym_LBRACE] = ACTIONS(5170), + [anon_sym_RBRACE] = ACTIONS(5170), + [anon_sym_signed] = ACTIONS(5168), + [anon_sym_unsigned] = ACTIONS(5168), + [anon_sym_long] = ACTIONS(5168), + [anon_sym_short] = ACTIONS(5168), + [anon_sym_LBRACK] = ACTIONS(5170), + [anon_sym_RBRACK] = ACTIONS(5170), + [anon_sym_const] = ACTIONS(5168), + [anon_sym_constexpr] = ACTIONS(5168), + [anon_sym_volatile] = ACTIONS(5168), + [anon_sym_restrict] = ACTIONS(5168), + [anon_sym___restrict__] = ACTIONS(5168), + [anon_sym__Atomic] = ACTIONS(5168), + [anon_sym__Noreturn] = ACTIONS(5168), + [anon_sym_noreturn] = ACTIONS(5168), + [anon_sym_mutable] = ACTIONS(5168), + [anon_sym_constinit] = ACTIONS(5168), + [anon_sym_consteval] = ACTIONS(5168), + [sym_primitive_type] = ACTIONS(5168), + [anon_sym_COLON] = ACTIONS(5170), + [anon_sym_QMARK] = ACTIONS(5170), + [anon_sym_LT_EQ_GT] = ACTIONS(5170), + [anon_sym_or] = ACTIONS(5168), + [anon_sym_and] = ACTIONS(5168), + [anon_sym_bitor] = ACTIONS(5168), + [anon_sym_xor] = ACTIONS(5168), + [anon_sym_bitand] = ACTIONS(5168), + [anon_sym_not_eq] = ACTIONS(5168), + [anon_sym_DASH_DASH] = ACTIONS(5170), + [anon_sym_PLUS_PLUS] = ACTIONS(5170), + [anon_sym_DOT] = ACTIONS(5168), + [anon_sym_DOT_STAR] = ACTIONS(5170), + [anon_sym_DASH_GT] = ACTIONS(5170), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5168), + [anon_sym_decltype] = ACTIONS(5168), + [anon_sym_final] = ACTIONS(5168), + [anon_sym_override] = ACTIONS(5168), + [anon_sym_requires] = ACTIONS(5168), }, [1968] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4768), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_catch_clause] = STATE(1982), + [aux_sym_constructor_try_statement_repeat1] = STATE(1982), + [sym_identifier] = ACTIONS(2249), + [aux_sym_preproc_def_token1] = ACTIONS(2249), + [aux_sym_preproc_if_token1] = ACTIONS(2249), + [aux_sym_preproc_if_token2] = ACTIONS(2249), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2249), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2249), + [sym_preproc_directive] = ACTIONS(2249), + [anon_sym_LPAREN2] = ACTIONS(2251), + [anon_sym_TILDE] = ACTIONS(2251), + [anon_sym_STAR] = ACTIONS(2251), + [anon_sym_AMP_AMP] = ACTIONS(2251), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym___extension__] = ACTIONS(2249), + [anon_sym_typedef] = ACTIONS(2249), + [anon_sym_extern] = ACTIONS(2249), + [anon_sym___attribute__] = ACTIONS(2249), + [anon_sym_COLON_COLON] = ACTIONS(2251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2251), + [anon_sym___declspec] = ACTIONS(2249), + [anon_sym___based] = ACTIONS(2249), + [anon_sym_signed] = ACTIONS(2249), + [anon_sym_unsigned] = ACTIONS(2249), + [anon_sym_long] = ACTIONS(2249), + [anon_sym_short] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_register] = ACTIONS(2249), + [anon_sym_inline] = ACTIONS(2249), + [anon_sym___inline] = ACTIONS(2249), + [anon_sym___inline__] = ACTIONS(2249), + [anon_sym___forceinline] = ACTIONS(2249), + [anon_sym_thread_local] = ACTIONS(2249), + [anon_sym___thread] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_constexpr] = ACTIONS(2249), + [anon_sym_volatile] = ACTIONS(2249), + [anon_sym_restrict] = ACTIONS(2249), + [anon_sym___restrict__] = ACTIONS(2249), + [anon_sym__Atomic] = ACTIONS(2249), + [anon_sym__Noreturn] = ACTIONS(2249), + [anon_sym_noreturn] = ACTIONS(2249), + [anon_sym_mutable] = ACTIONS(2249), + [anon_sym_constinit] = ACTIONS(2249), + [anon_sym_consteval] = ACTIONS(2249), + [sym_primitive_type] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2249), + [anon_sym_decltype] = ACTIONS(2249), + [anon_sym_virtual] = ACTIONS(2249), + [anon_sym_alignas] = ACTIONS(2249), + [anon_sym_explicit] = ACTIONS(2249), + [anon_sym_typename] = ACTIONS(2249), + [anon_sym_template] = ACTIONS(2249), + [anon_sym_operator] = ACTIONS(2249), + [anon_sym_friend] = ACTIONS(2249), + [anon_sym_public] = ACTIONS(2249), + [anon_sym_private] = ACTIONS(2249), + [anon_sym_protected] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [anon_sym_static_assert] = ACTIONS(2249), + [anon_sym_catch] = ACTIONS(5036), }, [1969] = { - [sym__expression] = STATE(5350), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4770), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(1997), + [sym_raw_string_literal] = STATE(1997), + [aux_sym_concatenated_string_repeat1] = STATE(1997), + [sym_identifier] = ACTIONS(5172), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_RPAREN] = ACTIONS(4812), + [anon_sym_LPAREN2] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_PLUS] = ACTIONS(4814), + [anon_sym_STAR] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4814), + [anon_sym_PERCENT] = ACTIONS(4814), + [anon_sym_PIPE_PIPE] = ACTIONS(4812), + [anon_sym_AMP_AMP] = ACTIONS(4812), + [anon_sym_PIPE] = ACTIONS(4814), + [anon_sym_CARET] = ACTIONS(4814), + [anon_sym_AMP] = ACTIONS(4814), + [anon_sym_EQ_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ] = ACTIONS(4812), + [anon_sym_GT] = ACTIONS(4814), + [anon_sym_GT_EQ] = ACTIONS(4812), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_LT_LT] = ACTIONS(4814), + [anon_sym_GT_GT] = ACTIONS(4814), + [anon_sym_LBRACK] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4814), + [anon_sym_QMARK] = ACTIONS(4812), + [anon_sym_STAR_EQ] = ACTIONS(4812), + [anon_sym_SLASH_EQ] = ACTIONS(4812), + [anon_sym_PERCENT_EQ] = ACTIONS(4812), + [anon_sym_PLUS_EQ] = ACTIONS(4812), + [anon_sym_DASH_EQ] = ACTIONS(4812), + [anon_sym_LT_LT_EQ] = ACTIONS(4812), + [anon_sym_GT_GT_EQ] = ACTIONS(4812), + [anon_sym_AMP_EQ] = ACTIONS(4812), + [anon_sym_CARET_EQ] = ACTIONS(4812), + [anon_sym_PIPE_EQ] = ACTIONS(4812), + [anon_sym_and_eq] = ACTIONS(4814), + [anon_sym_or_eq] = ACTIONS(4814), + [anon_sym_xor_eq] = ACTIONS(4814), + [anon_sym_LT_EQ_GT] = ACTIONS(4812), + [anon_sym_or] = ACTIONS(4814), + [anon_sym_and] = ACTIONS(4814), + [anon_sym_bitor] = ACTIONS(4814), + [anon_sym_xor] = ACTIONS(4814), + [anon_sym_bitand] = ACTIONS(4814), + [anon_sym_not_eq] = ACTIONS(4814), + [anon_sym_DASH_DASH] = ACTIONS(4812), + [anon_sym_PLUS_PLUS] = ACTIONS(4812), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_DOT_STAR] = ACTIONS(4812), + [anon_sym_DASH_GT] = ACTIONS(4814), + [anon_sym_L_DQUOTE] = ACTIONS(4909), + [anon_sym_u_DQUOTE] = ACTIONS(4909), + [anon_sym_U_DQUOTE] = ACTIONS(4909), + [anon_sym_u8_DQUOTE] = ACTIONS(4909), + [anon_sym_DQUOTE] = ACTIONS(4909), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4911), + [anon_sym_LR_DQUOTE] = ACTIONS(4911), + [anon_sym_uR_DQUOTE] = ACTIONS(4911), + [anon_sym_UR_DQUOTE] = ACTIONS(4911), + [anon_sym_u8R_DQUOTE] = ACTIONS(4911), + [anon_sym_DASH_GT_STAR] = ACTIONS(4812), + [sym_literal_suffix] = ACTIONS(4814), }, [1970] = { - [sym__expression] = STATE(5351), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4772), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5174), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5176), + [anon_sym_COMMA] = ACTIONS(5176), + [anon_sym_RPAREN] = ACTIONS(5176), + [anon_sym_LPAREN2] = ACTIONS(5176), + [anon_sym_DASH] = ACTIONS(5174), + [anon_sym_PLUS] = ACTIONS(5174), + [anon_sym_STAR] = ACTIONS(5174), + [anon_sym_SLASH] = ACTIONS(5174), + [anon_sym_PERCENT] = ACTIONS(5174), + [anon_sym_PIPE_PIPE] = ACTIONS(5176), + [anon_sym_AMP_AMP] = ACTIONS(5176), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_CARET] = ACTIONS(5174), + [anon_sym_AMP] = ACTIONS(5174), + [anon_sym_EQ_EQ] = ACTIONS(5176), + [anon_sym_BANG_EQ] = ACTIONS(5176), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_EQ] = ACTIONS(5176), + [anon_sym_LT_EQ] = ACTIONS(5174), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_LT_LT] = ACTIONS(5174), + [anon_sym_GT_GT] = ACTIONS(5174), + [anon_sym_SEMI] = ACTIONS(5176), + [anon_sym_RBRACE] = ACTIONS(5176), + [anon_sym_LBRACK] = ACTIONS(5176), + [anon_sym_RBRACK] = ACTIONS(5176), + [anon_sym_EQ] = ACTIONS(5174), + [anon_sym_COLON] = ACTIONS(5176), + [anon_sym_QMARK] = ACTIONS(5176), + [anon_sym_STAR_EQ] = ACTIONS(5176), + [anon_sym_SLASH_EQ] = ACTIONS(5176), + [anon_sym_PERCENT_EQ] = ACTIONS(5176), + [anon_sym_PLUS_EQ] = ACTIONS(5176), + [anon_sym_DASH_EQ] = ACTIONS(5176), + [anon_sym_LT_LT_EQ] = ACTIONS(5176), + [anon_sym_GT_GT_EQ] = ACTIONS(5176), + [anon_sym_AMP_EQ] = ACTIONS(5176), + [anon_sym_CARET_EQ] = ACTIONS(5176), + [anon_sym_PIPE_EQ] = ACTIONS(5176), + [anon_sym_and_eq] = ACTIONS(5174), + [anon_sym_or_eq] = ACTIONS(5174), + [anon_sym_xor_eq] = ACTIONS(5174), + [anon_sym_LT_EQ_GT] = ACTIONS(5176), + [anon_sym_or] = ACTIONS(5174), + [anon_sym_and] = ACTIONS(5174), + [anon_sym_bitor] = ACTIONS(5174), + [anon_sym_xor] = ACTIONS(5174), + [anon_sym_bitand] = ACTIONS(5174), + [anon_sym_not_eq] = ACTIONS(5174), + [anon_sym_DASH_DASH] = ACTIONS(5176), + [anon_sym_PLUS_PLUS] = ACTIONS(5176), + [anon_sym_DOT] = ACTIONS(5174), + [anon_sym_DOT_STAR] = ACTIONS(5176), + [anon_sym_DASH_GT] = ACTIONS(5176), + [anon_sym_L_DQUOTE] = ACTIONS(5176), + [anon_sym_u_DQUOTE] = ACTIONS(5176), + [anon_sym_U_DQUOTE] = ACTIONS(5176), + [anon_sym_u8_DQUOTE] = ACTIONS(5176), + [anon_sym_DQUOTE] = ACTIONS(5176), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5176), + [anon_sym_LR_DQUOTE] = ACTIONS(5176), + [anon_sym_uR_DQUOTE] = ACTIONS(5176), + [anon_sym_UR_DQUOTE] = ACTIONS(5176), + [anon_sym_u8R_DQUOTE] = ACTIONS(5176), + [sym_literal_suffix] = ACTIONS(5174), }, [1971] = { - [sym__expression] = STATE(5367), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_RPAREN] = ACTIONS(4774), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4707), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4633), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), }, [1972] = { - [sym__expression] = STATE(4886), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4675), - [anon_sym_LPAREN2] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4734), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4633), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), }, [1973] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4778), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(5178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5180), + [anon_sym_COMMA] = ACTIONS(5180), + [anon_sym_RPAREN] = ACTIONS(5180), + [anon_sym_LPAREN2] = ACTIONS(5180), + [anon_sym_DASH] = ACTIONS(5178), + [anon_sym_PLUS] = ACTIONS(5178), + [anon_sym_STAR] = ACTIONS(5180), + [anon_sym_SLASH] = ACTIONS(5178), + [anon_sym_PERCENT] = ACTIONS(5180), + [anon_sym_PIPE_PIPE] = ACTIONS(5180), + [anon_sym_AMP_AMP] = ACTIONS(5180), + [anon_sym_PIPE] = ACTIONS(5178), + [anon_sym_CARET] = ACTIONS(5180), + [anon_sym_AMP] = ACTIONS(5178), + [anon_sym_EQ_EQ] = ACTIONS(5180), + [anon_sym_BANG_EQ] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5178), + [anon_sym_GT_EQ] = ACTIONS(5180), + [anon_sym_LT_EQ] = ACTIONS(5178), + [anon_sym_LT] = ACTIONS(5178), + [anon_sym_LT_LT] = ACTIONS(5180), + [anon_sym_GT_GT] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5180), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym___attribute__] = ACTIONS(5178), + [anon_sym___based] = ACTIONS(5178), + [anon_sym_LBRACE] = ACTIONS(5180), + [anon_sym_RBRACE] = 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(5180), + [anon_sym_RBRACK] = ACTIONS(5180), + [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_mutable] = ACTIONS(5178), + [anon_sym_constinit] = ACTIONS(5178), + [anon_sym_consteval] = ACTIONS(5178), + [sym_primitive_type] = ACTIONS(5178), + [anon_sym_COLON] = ACTIONS(5180), + [anon_sym_QMARK] = ACTIONS(5180), + [anon_sym_LT_EQ_GT] = ACTIONS(5180), + [anon_sym_or] = ACTIONS(5178), + [anon_sym_and] = ACTIONS(5178), + [anon_sym_bitor] = ACTIONS(5178), + [anon_sym_xor] = ACTIONS(5178), + [anon_sym_bitand] = ACTIONS(5178), + [anon_sym_not_eq] = ACTIONS(5178), + [anon_sym_DASH_DASH] = ACTIONS(5180), + [anon_sym_PLUS_PLUS] = ACTIONS(5180), + [anon_sym_DOT] = ACTIONS(5178), + [anon_sym_DOT_STAR] = ACTIONS(5180), + [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_requires] = ACTIONS(5178), }, [1974] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(4780), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(3791), + [sym_raw_string_literal] = STATE(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_EQ] = ACTIONS(4091), + [anon_sym_COLON] = ACTIONS(4110), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4095), + [anon_sym_or_eq] = ACTIONS(4095), + [anon_sym_xor_eq] = ACTIONS(4095), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, [1975] = { - [sym__expression] = STATE(5008), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_SEMI] = ACTIONS(4782), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(4584), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_catch_clause] = STATE(1982), + [aux_sym_constructor_try_statement_repeat1] = STATE(1982), + [sym_identifier] = ACTIONS(2212), + [aux_sym_preproc_def_token1] = ACTIONS(2212), + [aux_sym_preproc_if_token1] = ACTIONS(2212), + [aux_sym_preproc_if_token2] = ACTIONS(2212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2212), + [sym_preproc_directive] = ACTIONS(2212), + [anon_sym_LPAREN2] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2212), + [anon_sym___extension__] = ACTIONS(2212), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_extern] = ACTIONS(2212), + [anon_sym___attribute__] = ACTIONS(2212), + [anon_sym_COLON_COLON] = ACTIONS(2214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [anon_sym___declspec] = ACTIONS(2212), + [anon_sym___based] = ACTIONS(2212), + [anon_sym_signed] = ACTIONS(2212), + [anon_sym_unsigned] = ACTIONS(2212), + [anon_sym_long] = ACTIONS(2212), + [anon_sym_short] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_register] = ACTIONS(2212), + [anon_sym_inline] = ACTIONS(2212), + [anon_sym___inline] = ACTIONS(2212), + [anon_sym___inline__] = ACTIONS(2212), + [anon_sym___forceinline] = ACTIONS(2212), + [anon_sym_thread_local] = ACTIONS(2212), + [anon_sym___thread] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_constexpr] = ACTIONS(2212), + [anon_sym_volatile] = ACTIONS(2212), + [anon_sym_restrict] = ACTIONS(2212), + [anon_sym___restrict__] = ACTIONS(2212), + [anon_sym__Atomic] = ACTIONS(2212), + [anon_sym__Noreturn] = ACTIONS(2212), + [anon_sym_noreturn] = ACTIONS(2212), + [anon_sym_mutable] = ACTIONS(2212), + [anon_sym_constinit] = ACTIONS(2212), + [anon_sym_consteval] = ACTIONS(2212), + [sym_primitive_type] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_struct] = ACTIONS(2212), + [anon_sym_union] = ACTIONS(2212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2212), + [anon_sym_decltype] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(2212), + [anon_sym_alignas] = ACTIONS(2212), + [anon_sym_explicit] = ACTIONS(2212), + [anon_sym_typename] = ACTIONS(2212), + [anon_sym_template] = ACTIONS(2212), + [anon_sym_operator] = ACTIONS(2212), + [anon_sym_friend] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_static_assert] = ACTIONS(2212), + [anon_sym_catch] = ACTIONS(5036), }, [1976] = { - [sym__expression] = STATE(5323), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(4784), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5182), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5184), + [anon_sym_COMMA] = ACTIONS(5184), + [anon_sym_RPAREN] = ACTIONS(5184), + [anon_sym_LPAREN2] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5182), + [anon_sym_PLUS] = ACTIONS(5182), + [anon_sym_STAR] = ACTIONS(5182), + [anon_sym_SLASH] = ACTIONS(5182), + [anon_sym_PERCENT] = ACTIONS(5182), + [anon_sym_PIPE_PIPE] = ACTIONS(5184), + [anon_sym_AMP_AMP] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5182), + [anon_sym_CARET] = ACTIONS(5182), + [anon_sym_AMP] = ACTIONS(5182), + [anon_sym_EQ_EQ] = ACTIONS(5184), + [anon_sym_BANG_EQ] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5182), + [anon_sym_GT_EQ] = ACTIONS(5184), + [anon_sym_LT_EQ] = ACTIONS(5182), + [anon_sym_LT] = ACTIONS(5182), + [anon_sym_LT_LT] = ACTIONS(5182), + [anon_sym_GT_GT] = ACTIONS(5182), + [anon_sym_SEMI] = ACTIONS(5184), + [anon_sym_RBRACE] = ACTIONS(5184), + [anon_sym_LBRACK] = ACTIONS(5184), + [anon_sym_RBRACK] = ACTIONS(5184), + [anon_sym_EQ] = ACTIONS(5182), + [anon_sym_COLON] = ACTIONS(5184), + [anon_sym_QMARK] = ACTIONS(5184), + [anon_sym_STAR_EQ] = ACTIONS(5184), + [anon_sym_SLASH_EQ] = ACTIONS(5184), + [anon_sym_PERCENT_EQ] = ACTIONS(5184), + [anon_sym_PLUS_EQ] = ACTIONS(5184), + [anon_sym_DASH_EQ] = ACTIONS(5184), + [anon_sym_LT_LT_EQ] = ACTIONS(5184), + [anon_sym_GT_GT_EQ] = ACTIONS(5184), + [anon_sym_AMP_EQ] = ACTIONS(5184), + [anon_sym_CARET_EQ] = ACTIONS(5184), + [anon_sym_PIPE_EQ] = ACTIONS(5184), + [anon_sym_and_eq] = ACTIONS(5182), + [anon_sym_or_eq] = ACTIONS(5182), + [anon_sym_xor_eq] = ACTIONS(5182), + [anon_sym_LT_EQ_GT] = ACTIONS(5184), + [anon_sym_or] = ACTIONS(5182), + [anon_sym_and] = ACTIONS(5182), + [anon_sym_bitor] = ACTIONS(5182), + [anon_sym_xor] = ACTIONS(5182), + [anon_sym_bitand] = ACTIONS(5182), + [anon_sym_not_eq] = ACTIONS(5182), + [anon_sym_DASH_DASH] = ACTIONS(5184), + [anon_sym_PLUS_PLUS] = ACTIONS(5184), + [anon_sym_DOT] = ACTIONS(5182), + [anon_sym_DOT_STAR] = ACTIONS(5184), + [anon_sym_DASH_GT] = ACTIONS(5184), + [anon_sym_L_DQUOTE] = ACTIONS(5184), + [anon_sym_u_DQUOTE] = ACTIONS(5184), + [anon_sym_U_DQUOTE] = ACTIONS(5184), + [anon_sym_u8_DQUOTE] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5184), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5184), + [anon_sym_LR_DQUOTE] = ACTIONS(5184), + [anon_sym_uR_DQUOTE] = ACTIONS(5184), + [anon_sym_UR_DQUOTE] = ACTIONS(5184), + [anon_sym_u8R_DQUOTE] = ACTIONS(5184), + [sym_literal_suffix] = ACTIONS(5182), }, [1977] = { - [sym__expression] = STATE(5279), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(1957), + [sym_raw_string_literal] = STATE(1957), + [aux_sym_concatenated_string_repeat1] = STATE(1957), + [sym_identifier] = ACTIONS(5186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_LPAREN2] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_PLUS] = ACTIONS(4814), + [anon_sym_STAR] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4814), + [anon_sym_PERCENT] = ACTIONS(4814), + [anon_sym_PIPE_PIPE] = ACTIONS(4812), + [anon_sym_AMP_AMP] = ACTIONS(4812), + [anon_sym_PIPE] = ACTIONS(4814), + [anon_sym_CARET] = ACTIONS(4814), + [anon_sym_AMP] = ACTIONS(4814), + [anon_sym_EQ_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ] = ACTIONS(4812), + [anon_sym_GT] = ACTIONS(4814), + [anon_sym_GT_EQ] = ACTIONS(4812), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_LT_LT] = ACTIONS(4814), + [anon_sym_GT_GT] = ACTIONS(4814), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym___attribute__] = ACTIONS(4814), + [anon_sym_LBRACK] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4814), + [anon_sym_QMARK] = ACTIONS(4812), + [anon_sym_STAR_EQ] = ACTIONS(4812), + [anon_sym_SLASH_EQ] = ACTIONS(4812), + [anon_sym_PERCENT_EQ] = ACTIONS(4812), + [anon_sym_PLUS_EQ] = ACTIONS(4812), + [anon_sym_DASH_EQ] = ACTIONS(4812), + [anon_sym_LT_LT_EQ] = ACTIONS(4812), + [anon_sym_GT_GT_EQ] = ACTIONS(4812), + [anon_sym_AMP_EQ] = ACTIONS(4812), + [anon_sym_CARET_EQ] = ACTIONS(4812), + [anon_sym_PIPE_EQ] = ACTIONS(4812), + [anon_sym_and_eq] = ACTIONS(4814), + [anon_sym_or_eq] = ACTIONS(4814), + [anon_sym_xor_eq] = ACTIONS(4814), + [anon_sym_LT_EQ_GT] = ACTIONS(4812), + [anon_sym_or] = ACTIONS(4814), + [anon_sym_and] = ACTIONS(4814), + [anon_sym_bitor] = ACTIONS(4814), + [anon_sym_xor] = ACTIONS(4814), + [anon_sym_bitand] = ACTIONS(4814), + [anon_sym_not_eq] = ACTIONS(4814), + [anon_sym_DASH_DASH] = ACTIONS(4812), + [anon_sym_PLUS_PLUS] = ACTIONS(4812), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_DOT_STAR] = ACTIONS(4812), + [anon_sym_DASH_GT] = ACTIONS(4812), + [anon_sym_L_DQUOTE] = ACTIONS(5051), + [anon_sym_u_DQUOTE] = ACTIONS(5051), + [anon_sym_U_DQUOTE] = ACTIONS(5051), + [anon_sym_u8_DQUOTE] = ACTIONS(5051), + [anon_sym_DQUOTE] = ACTIONS(5051), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5053), + [anon_sym_LR_DQUOTE] = ACTIONS(5053), + [anon_sym_uR_DQUOTE] = ACTIONS(5053), + [anon_sym_UR_DQUOTE] = ACTIONS(5053), + [anon_sym_u8R_DQUOTE] = ACTIONS(5053), + [sym_literal_suffix] = ACTIONS(4814), }, [1978] = { - [sym__expression] = STATE(3897), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), + [sym_identifier] = ACTIONS(5188), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5190), + [anon_sym_COMMA] = ACTIONS(5190), + [anon_sym_RPAREN] = ACTIONS(5190), + [anon_sym_LPAREN2] = ACTIONS(5190), + [anon_sym_DASH] = ACTIONS(5188), + [anon_sym_PLUS] = ACTIONS(5188), + [anon_sym_STAR] = ACTIONS(5188), + [anon_sym_SLASH] = ACTIONS(5188), + [anon_sym_PERCENT] = ACTIONS(5188), + [anon_sym_PIPE_PIPE] = ACTIONS(5190), + [anon_sym_AMP_AMP] = ACTIONS(5190), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_CARET] = ACTIONS(5188), + [anon_sym_AMP] = ACTIONS(5188), + [anon_sym_EQ_EQ] = ACTIONS(5190), + [anon_sym_BANG_EQ] = ACTIONS(5190), + [anon_sym_GT] = ACTIONS(5188), + [anon_sym_GT_EQ] = ACTIONS(5190), + [anon_sym_LT_EQ] = ACTIONS(5188), + [anon_sym_LT] = ACTIONS(5188), + [anon_sym_LT_LT] = ACTIONS(5188), + [anon_sym_GT_GT] = ACTIONS(5188), + [anon_sym_SEMI] = ACTIONS(5190), + [anon_sym_RBRACE] = ACTIONS(5190), + [anon_sym_LBRACK] = ACTIONS(5190), + [anon_sym_RBRACK] = ACTIONS(5190), + [anon_sym_EQ] = ACTIONS(5188), + [anon_sym_COLON] = ACTIONS(5190), + [anon_sym_QMARK] = ACTIONS(5190), + [anon_sym_STAR_EQ] = ACTIONS(5190), + [anon_sym_SLASH_EQ] = ACTIONS(5190), + [anon_sym_PERCENT_EQ] = ACTIONS(5190), + [anon_sym_PLUS_EQ] = ACTIONS(5190), + [anon_sym_DASH_EQ] = ACTIONS(5190), + [anon_sym_LT_LT_EQ] = ACTIONS(5190), + [anon_sym_GT_GT_EQ] = ACTIONS(5190), + [anon_sym_AMP_EQ] = ACTIONS(5190), + [anon_sym_CARET_EQ] = ACTIONS(5190), + [anon_sym_PIPE_EQ] = ACTIONS(5190), + [anon_sym_and_eq] = ACTIONS(5188), + [anon_sym_or_eq] = ACTIONS(5188), + [anon_sym_xor_eq] = ACTIONS(5188), + [anon_sym_LT_EQ_GT] = ACTIONS(5190), + [anon_sym_or] = ACTIONS(5188), + [anon_sym_and] = ACTIONS(5188), + [anon_sym_bitor] = ACTIONS(5188), + [anon_sym_xor] = ACTIONS(5188), + [anon_sym_bitand] = ACTIONS(5188), + [anon_sym_not_eq] = ACTIONS(5188), + [anon_sym_DASH_DASH] = ACTIONS(5190), + [anon_sym_PLUS_PLUS] = ACTIONS(5190), + [anon_sym_DOT] = ACTIONS(5188), + [anon_sym_DOT_STAR] = ACTIONS(5190), + [anon_sym_DASH_GT] = ACTIONS(5190), + [anon_sym_L_DQUOTE] = ACTIONS(5190), + [anon_sym_u_DQUOTE] = ACTIONS(5190), + [anon_sym_U_DQUOTE] = ACTIONS(5190), + [anon_sym_u8_DQUOTE] = ACTIONS(5190), + [anon_sym_DQUOTE] = ACTIONS(5190), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5190), + [anon_sym_LR_DQUOTE] = ACTIONS(5190), + [anon_sym_uR_DQUOTE] = ACTIONS(5190), + [anon_sym_UR_DQUOTE] = ACTIONS(5190), + [anon_sym_u8R_DQUOTE] = ACTIONS(5190), + [sym_literal_suffix] = ACTIONS(5188), }, [1979] = { - [sym__expression] = STATE(5266), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5192), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5194), + [anon_sym_COMMA] = ACTIONS(5194), + [anon_sym_RPAREN] = ACTIONS(5194), + [anon_sym_LPAREN2] = ACTIONS(5194), + [anon_sym_DASH] = ACTIONS(5192), + [anon_sym_PLUS] = ACTIONS(5192), + [anon_sym_STAR] = ACTIONS(5194), + [anon_sym_SLASH] = ACTIONS(5192), + [anon_sym_PERCENT] = ACTIONS(5194), + [anon_sym_PIPE_PIPE] = ACTIONS(5194), + [anon_sym_AMP_AMP] = ACTIONS(5194), + [anon_sym_PIPE] = ACTIONS(5192), + [anon_sym_CARET] = ACTIONS(5194), + [anon_sym_AMP] = ACTIONS(5192), + [anon_sym_EQ_EQ] = ACTIONS(5194), + [anon_sym_BANG_EQ] = ACTIONS(5194), + [anon_sym_GT] = ACTIONS(5192), + [anon_sym_GT_EQ] = ACTIONS(5194), + [anon_sym_LT_EQ] = ACTIONS(5192), + [anon_sym_LT] = ACTIONS(5192), + [anon_sym_LT_LT] = ACTIONS(5194), + [anon_sym_GT_GT] = ACTIONS(5194), + [anon_sym_SEMI] = ACTIONS(5194), + [anon_sym___extension__] = ACTIONS(5192), + [anon_sym___attribute__] = ACTIONS(5192), + [anon_sym___based] = ACTIONS(5192), + [anon_sym_LBRACE] = ACTIONS(5194), + [anon_sym_RBRACE] = ACTIONS(5194), + [anon_sym_signed] = ACTIONS(5192), + [anon_sym_unsigned] = ACTIONS(5192), + [anon_sym_long] = ACTIONS(5192), + [anon_sym_short] = ACTIONS(5192), + [anon_sym_LBRACK] = ACTIONS(5194), + [anon_sym_RBRACK] = ACTIONS(5194), + [anon_sym_const] = ACTIONS(5192), + [anon_sym_constexpr] = ACTIONS(5192), + [anon_sym_volatile] = ACTIONS(5192), + [anon_sym_restrict] = ACTIONS(5192), + [anon_sym___restrict__] = ACTIONS(5192), + [anon_sym__Atomic] = ACTIONS(5192), + [anon_sym__Noreturn] = ACTIONS(5192), + [anon_sym_noreturn] = ACTIONS(5192), + [anon_sym_mutable] = ACTIONS(5192), + [anon_sym_constinit] = ACTIONS(5192), + [anon_sym_consteval] = ACTIONS(5192), + [sym_primitive_type] = ACTIONS(5192), + [anon_sym_COLON] = ACTIONS(5194), + [anon_sym_QMARK] = ACTIONS(5194), + [anon_sym_LT_EQ_GT] = ACTIONS(5194), + [anon_sym_or] = ACTIONS(5192), + [anon_sym_and] = ACTIONS(5192), + [anon_sym_bitor] = ACTIONS(5192), + [anon_sym_xor] = ACTIONS(5192), + [anon_sym_bitand] = ACTIONS(5192), + [anon_sym_not_eq] = ACTIONS(5192), + [anon_sym_DASH_DASH] = ACTIONS(5194), + [anon_sym_PLUS_PLUS] = ACTIONS(5194), + [anon_sym_DOT] = ACTIONS(5192), + [anon_sym_DOT_STAR] = ACTIONS(5194), + [anon_sym_DASH_GT] = ACTIONS(5194), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5192), + [anon_sym_decltype] = ACTIONS(5192), + [anon_sym_final] = ACTIONS(5192), + [anon_sym_override] = ACTIONS(5192), + [anon_sym_requires] = ACTIONS(5192), }, [1980] = { - [sym__expression] = STATE(3399), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(5196), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5198), + [anon_sym_COMMA] = ACTIONS(5198), + [anon_sym_RPAREN] = ACTIONS(5198), + [anon_sym_LPAREN2] = ACTIONS(5198), + [anon_sym_DASH] = ACTIONS(5196), + [anon_sym_PLUS] = ACTIONS(5196), + [anon_sym_STAR] = ACTIONS(5198), + [anon_sym_SLASH] = ACTIONS(5196), + [anon_sym_PERCENT] = ACTIONS(5198), + [anon_sym_PIPE_PIPE] = ACTIONS(5198), + [anon_sym_AMP_AMP] = ACTIONS(5198), + [anon_sym_PIPE] = ACTIONS(5196), + [anon_sym_CARET] = ACTIONS(5198), + [anon_sym_AMP] = ACTIONS(5196), + [anon_sym_EQ_EQ] = ACTIONS(5198), + [anon_sym_BANG_EQ] = ACTIONS(5198), + [anon_sym_GT] = ACTIONS(5196), + [anon_sym_GT_EQ] = ACTIONS(5198), + [anon_sym_LT_EQ] = ACTIONS(5196), + [anon_sym_LT] = ACTIONS(5196), + [anon_sym_LT_LT] = ACTIONS(5198), + [anon_sym_GT_GT] = ACTIONS(5198), + [anon_sym_SEMI] = ACTIONS(5198), + [anon_sym___extension__] = ACTIONS(5196), + [anon_sym___attribute__] = ACTIONS(5196), + [anon_sym___based] = ACTIONS(5196), + [anon_sym_LBRACE] = ACTIONS(5198), + [anon_sym_RBRACE] = ACTIONS(5198), + [anon_sym_signed] = ACTIONS(5196), + [anon_sym_unsigned] = ACTIONS(5196), + [anon_sym_long] = ACTIONS(5196), + [anon_sym_short] = ACTIONS(5196), + [anon_sym_LBRACK] = ACTIONS(5198), + [anon_sym_RBRACK] = ACTIONS(5198), + [anon_sym_const] = ACTIONS(5196), + [anon_sym_constexpr] = ACTIONS(5196), + [anon_sym_volatile] = ACTIONS(5196), + [anon_sym_restrict] = ACTIONS(5196), + [anon_sym___restrict__] = ACTIONS(5196), + [anon_sym__Atomic] = ACTIONS(5196), + [anon_sym__Noreturn] = ACTIONS(5196), + [anon_sym_noreturn] = ACTIONS(5196), + [anon_sym_mutable] = ACTIONS(5196), + [anon_sym_constinit] = ACTIONS(5196), + [anon_sym_consteval] = ACTIONS(5196), + [sym_primitive_type] = ACTIONS(5196), + [anon_sym_COLON] = ACTIONS(5198), + [anon_sym_QMARK] = ACTIONS(5198), + [anon_sym_LT_EQ_GT] = ACTIONS(5198), + [anon_sym_or] = ACTIONS(5196), + [anon_sym_and] = ACTIONS(5196), + [anon_sym_bitor] = ACTIONS(5196), + [anon_sym_xor] = ACTIONS(5196), + [anon_sym_bitand] = ACTIONS(5196), + [anon_sym_not_eq] = ACTIONS(5196), + [anon_sym_DASH_DASH] = ACTIONS(5198), + [anon_sym_PLUS_PLUS] = ACTIONS(5198), + [anon_sym_DOT] = ACTIONS(5196), + [anon_sym_DOT_STAR] = ACTIONS(5198), + [anon_sym_DASH_GT] = ACTIONS(5198), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5196), + [anon_sym_decltype] = ACTIONS(5196), + [anon_sym_final] = ACTIONS(5196), + [anon_sym_override] = ACTIONS(5196), + [anon_sym_requires] = ACTIONS(5196), }, [1981] = { - [sym__expression] = STATE(3827), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(5200), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5202), + [anon_sym_COMMA] = ACTIONS(5202), + [anon_sym_RPAREN] = ACTIONS(5202), + [anon_sym_LPAREN2] = ACTIONS(5202), + [anon_sym_DASH] = ACTIONS(5200), + [anon_sym_PLUS] = ACTIONS(5200), + [anon_sym_STAR] = ACTIONS(5202), + [anon_sym_SLASH] = ACTIONS(5200), + [anon_sym_PERCENT] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5200), + [anon_sym_CARET] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5200), + [anon_sym_EQ_EQ] = ACTIONS(5202), + [anon_sym_BANG_EQ] = ACTIONS(5202), + [anon_sym_GT] = ACTIONS(5200), + [anon_sym_GT_EQ] = ACTIONS(5202), + [anon_sym_LT_EQ] = ACTIONS(5200), + [anon_sym_LT] = ACTIONS(5200), + [anon_sym_LT_LT] = ACTIONS(5202), + [anon_sym_GT_GT] = ACTIONS(5202), + [anon_sym_SEMI] = ACTIONS(5202), + [anon_sym___extension__] = ACTIONS(5200), + [anon_sym___attribute__] = ACTIONS(5200), + [anon_sym___based] = ACTIONS(5200), + [anon_sym_LBRACE] = ACTIONS(5202), + [anon_sym_RBRACE] = ACTIONS(5202), + [anon_sym_signed] = ACTIONS(5200), + [anon_sym_unsigned] = ACTIONS(5200), + [anon_sym_long] = ACTIONS(5200), + [anon_sym_short] = ACTIONS(5200), + [anon_sym_LBRACK] = ACTIONS(5202), + [anon_sym_RBRACK] = ACTIONS(5202), + [anon_sym_const] = ACTIONS(5200), + [anon_sym_constexpr] = ACTIONS(5200), + [anon_sym_volatile] = ACTIONS(5200), + [anon_sym_restrict] = ACTIONS(5200), + [anon_sym___restrict__] = ACTIONS(5200), + [anon_sym__Atomic] = ACTIONS(5200), + [anon_sym__Noreturn] = ACTIONS(5200), + [anon_sym_noreturn] = ACTIONS(5200), + [anon_sym_mutable] = ACTIONS(5200), + [anon_sym_constinit] = ACTIONS(5200), + [anon_sym_consteval] = ACTIONS(5200), + [sym_primitive_type] = ACTIONS(5200), + [anon_sym_COLON] = ACTIONS(5202), + [anon_sym_QMARK] = ACTIONS(5202), + [anon_sym_LT_EQ_GT] = ACTIONS(5202), + [anon_sym_or] = ACTIONS(5200), + [anon_sym_and] = ACTIONS(5200), + [anon_sym_bitor] = ACTIONS(5200), + [anon_sym_xor] = ACTIONS(5200), + [anon_sym_bitand] = ACTIONS(5200), + [anon_sym_not_eq] = ACTIONS(5200), + [anon_sym_DASH_DASH] = ACTIONS(5202), + [anon_sym_PLUS_PLUS] = ACTIONS(5202), + [anon_sym_DOT] = ACTIONS(5200), + [anon_sym_DOT_STAR] = ACTIONS(5202), + [anon_sym_DASH_GT] = ACTIONS(5202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5200), + [anon_sym_decltype] = ACTIONS(5200), + [anon_sym_final] = ACTIONS(5200), + [anon_sym_override] = ACTIONS(5200), + [anon_sym_requires] = ACTIONS(5200), }, [1982] = { - [sym__expression] = STATE(4783), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_catch_clause] = STATE(1982), + [aux_sym_constructor_try_statement_repeat1] = STATE(1982), + [sym_identifier] = ACTIONS(2218), + [aux_sym_preproc_def_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token2] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2218), + [sym_preproc_directive] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP_AMP] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2218), + [anon_sym___extension__] = ACTIONS(2218), + [anon_sym_typedef] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym___attribute__] = ACTIONS(2218), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2220), + [anon_sym___declspec] = ACTIONS(2218), + [anon_sym___based] = ACTIONS(2218), + [anon_sym_signed] = ACTIONS(2218), + [anon_sym_unsigned] = ACTIONS(2218), + [anon_sym_long] = ACTIONS(2218), + [anon_sym_short] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_inline] = ACTIONS(2218), + [anon_sym___inline] = ACTIONS(2218), + [anon_sym___inline__] = ACTIONS(2218), + [anon_sym___forceinline] = ACTIONS(2218), + [anon_sym_thread_local] = ACTIONS(2218), + [anon_sym___thread] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_constexpr] = ACTIONS(2218), + [anon_sym_volatile] = ACTIONS(2218), + [anon_sym_restrict] = ACTIONS(2218), + [anon_sym___restrict__] = ACTIONS(2218), + [anon_sym__Atomic] = ACTIONS(2218), + [anon_sym__Noreturn] = ACTIONS(2218), + [anon_sym_noreturn] = ACTIONS(2218), + [anon_sym_mutable] = ACTIONS(2218), + [anon_sym_constinit] = ACTIONS(2218), + [anon_sym_consteval] = ACTIONS(2218), + [sym_primitive_type] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_class] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2218), + [anon_sym_virtual] = ACTIONS(2218), + [anon_sym_alignas] = ACTIONS(2218), + [anon_sym_explicit] = ACTIONS(2218), + [anon_sym_typename] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_operator] = ACTIONS(2218), + [anon_sym_friend] = ACTIONS(2218), + [anon_sym_public] = ACTIONS(2218), + [anon_sym_private] = ACTIONS(2218), + [anon_sym_protected] = ACTIONS(2218), + [anon_sym_using] = ACTIONS(2218), + [anon_sym_static_assert] = ACTIONS(2218), + [anon_sym_catch] = ACTIONS(5204), }, [1983] = { - [sym__expression] = STATE(3825), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(4913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4915), + [anon_sym_COMMA] = ACTIONS(4915), + [anon_sym_RPAREN] = ACTIONS(4915), + [anon_sym_LPAREN2] = ACTIONS(4915), + [anon_sym_DASH] = ACTIONS(4913), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_STAR] = ACTIONS(4915), + [anon_sym_SLASH] = ACTIONS(4913), + [anon_sym_PERCENT] = ACTIONS(4915), + [anon_sym_PIPE_PIPE] = ACTIONS(4915), + [anon_sym_AMP_AMP] = ACTIONS(4915), + [anon_sym_PIPE] = ACTIONS(4913), + [anon_sym_CARET] = ACTIONS(4915), + [anon_sym_AMP] = ACTIONS(4913), + [anon_sym_EQ_EQ] = ACTIONS(4915), + [anon_sym_BANG_EQ] = ACTIONS(4915), + [anon_sym_GT] = ACTIONS(4913), + [anon_sym_GT_EQ] = ACTIONS(4915), + [anon_sym_LT_EQ] = ACTIONS(4913), + [anon_sym_LT] = ACTIONS(4913), + [anon_sym_LT_LT] = ACTIONS(4915), + [anon_sym_GT_GT] = ACTIONS(4915), + [anon_sym_SEMI] = ACTIONS(4915), + [anon_sym___extension__] = ACTIONS(4913), + [anon_sym___attribute__] = ACTIONS(4913), + [anon_sym___based] = ACTIONS(4913), + [anon_sym_LBRACE] = ACTIONS(4915), + [anon_sym_RBRACE] = ACTIONS(4915), + [anon_sym_signed] = ACTIONS(4913), + [anon_sym_unsigned] = ACTIONS(4913), + [anon_sym_long] = ACTIONS(4913), + [anon_sym_short] = ACTIONS(4913), + [anon_sym_LBRACK] = ACTIONS(4915), + [anon_sym_RBRACK] = ACTIONS(4915), + [anon_sym_const] = ACTIONS(4913), + [anon_sym_constexpr] = ACTIONS(4913), + [anon_sym_volatile] = ACTIONS(4913), + [anon_sym_restrict] = ACTIONS(4913), + [anon_sym___restrict__] = ACTIONS(4913), + [anon_sym__Atomic] = ACTIONS(4913), + [anon_sym__Noreturn] = ACTIONS(4913), + [anon_sym_noreturn] = ACTIONS(4913), + [anon_sym_mutable] = ACTIONS(4913), + [anon_sym_constinit] = ACTIONS(4913), + [anon_sym_consteval] = ACTIONS(4913), + [sym_primitive_type] = ACTIONS(4913), + [anon_sym_COLON] = ACTIONS(4915), + [anon_sym_QMARK] = ACTIONS(4915), + [anon_sym_LT_EQ_GT] = ACTIONS(4915), + [anon_sym_or] = ACTIONS(4913), + [anon_sym_and] = ACTIONS(4913), + [anon_sym_bitor] = ACTIONS(4913), + [anon_sym_xor] = ACTIONS(4913), + [anon_sym_bitand] = ACTIONS(4913), + [anon_sym_not_eq] = ACTIONS(4913), + [anon_sym_DASH_DASH] = ACTIONS(4915), + [anon_sym_PLUS_PLUS] = ACTIONS(4915), + [anon_sym_DOT] = ACTIONS(4913), + [anon_sym_DOT_STAR] = ACTIONS(4915), + [anon_sym_DASH_GT] = ACTIONS(4915), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4913), + [anon_sym_decltype] = ACTIONS(4913), + [anon_sym_final] = ACTIONS(4913), + [anon_sym_override] = ACTIONS(4913), + [anon_sym_requires] = ACTIONS(4913), }, [1984] = { - [sym__expression] = STATE(3577), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4716), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4633), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), }, [1985] = { - [sym__expression] = STATE(4783), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(4786), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5209), + [anon_sym_COMMA] = ACTIONS(5209), + [anon_sym_RPAREN] = ACTIONS(5209), + [anon_sym_LPAREN2] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5207), + [anon_sym_PLUS] = ACTIONS(5207), + [anon_sym_STAR] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5207), + [anon_sym_PERCENT] = ACTIONS(5209), + [anon_sym_PIPE_PIPE] = ACTIONS(5209), + [anon_sym_AMP_AMP] = ACTIONS(5209), + [anon_sym_PIPE] = ACTIONS(5207), + [anon_sym_CARET] = ACTIONS(5209), + [anon_sym_AMP] = ACTIONS(5207), + [anon_sym_EQ_EQ] = ACTIONS(5209), + [anon_sym_BANG_EQ] = ACTIONS(5209), + [anon_sym_GT] = ACTIONS(5207), + [anon_sym_GT_EQ] = ACTIONS(5209), + [anon_sym_LT_EQ] = ACTIONS(5207), + [anon_sym_LT] = ACTIONS(5207), + [anon_sym_LT_LT] = ACTIONS(5209), + [anon_sym_GT_GT] = ACTIONS(5209), + [anon_sym_SEMI] = ACTIONS(5209), + [anon_sym___extension__] = ACTIONS(5207), + [anon_sym___attribute__] = ACTIONS(5207), + [anon_sym___based] = ACTIONS(5207), + [anon_sym_LBRACE] = ACTIONS(5209), + [anon_sym_RBRACE] = ACTIONS(5209), + [anon_sym_signed] = ACTIONS(5207), + [anon_sym_unsigned] = ACTIONS(5207), + [anon_sym_long] = ACTIONS(5207), + [anon_sym_short] = ACTIONS(5207), + [anon_sym_LBRACK] = ACTIONS(5209), + [anon_sym_RBRACK] = ACTIONS(5209), + [anon_sym_const] = ACTIONS(5207), + [anon_sym_constexpr] = ACTIONS(5207), + [anon_sym_volatile] = ACTIONS(5207), + [anon_sym_restrict] = ACTIONS(5207), + [anon_sym___restrict__] = ACTIONS(5207), + [anon_sym__Atomic] = ACTIONS(5207), + [anon_sym__Noreturn] = ACTIONS(5207), + [anon_sym_noreturn] = ACTIONS(5207), + [anon_sym_mutable] = ACTIONS(5207), + [anon_sym_constinit] = ACTIONS(5207), + [anon_sym_consteval] = ACTIONS(5207), + [sym_primitive_type] = ACTIONS(5207), + [anon_sym_COLON] = ACTIONS(5209), + [anon_sym_QMARK] = ACTIONS(5209), + [anon_sym_LT_EQ_GT] = ACTIONS(5209), + [anon_sym_or] = ACTIONS(5207), + [anon_sym_and] = ACTIONS(5207), + [anon_sym_bitor] = ACTIONS(5207), + [anon_sym_xor] = ACTIONS(5207), + [anon_sym_bitand] = ACTIONS(5207), + [anon_sym_not_eq] = ACTIONS(5207), + [anon_sym_DASH_DASH] = ACTIONS(5209), + [anon_sym_PLUS_PLUS] = ACTIONS(5209), + [anon_sym_DOT] = ACTIONS(5207), + [anon_sym_DOT_STAR] = ACTIONS(5209), + [anon_sym_DASH_GT] = ACTIONS(5209), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5207), + [anon_sym_decltype] = ACTIONS(5207), + [anon_sym_final] = ACTIONS(5207), + [anon_sym_override] = ACTIONS(5207), + [anon_sym_requires] = ACTIONS(5207), }, [1986] = { - [sym__expression] = STATE(4879), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(1969), + [sym_template_argument_list] = STATE(2944), + [sym_raw_string_literal] = STATE(1969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_RPAREN] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_EQ] = ACTIONS(4069), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4061), + [anon_sym_SLASH_EQ] = ACTIONS(4061), + [anon_sym_PERCENT_EQ] = ACTIONS(4061), + [anon_sym_PLUS_EQ] = ACTIONS(4061), + [anon_sym_DASH_EQ] = ACTIONS(4061), + [anon_sym_LT_LT_EQ] = ACTIONS(4061), + [anon_sym_GT_GT_EQ] = ACTIONS(4061), + [anon_sym_AMP_EQ] = ACTIONS(4061), + [anon_sym_CARET_EQ] = ACTIONS(4061), + [anon_sym_PIPE_EQ] = ACTIONS(4061), + [anon_sym_and_eq] = ACTIONS(4061), + [anon_sym_or_eq] = ACTIONS(4061), + [anon_sym_xor_eq] = ACTIONS(4061), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4069), + [anon_sym_L_DQUOTE] = ACTIONS(4909), + [anon_sym_u_DQUOTE] = ACTIONS(4909), + [anon_sym_U_DQUOTE] = ACTIONS(4909), + [anon_sym_u8_DQUOTE] = ACTIONS(4909), + [anon_sym_DQUOTE] = ACTIONS(4909), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4911), + [anon_sym_LR_DQUOTE] = ACTIONS(4911), + [anon_sym_uR_DQUOTE] = ACTIONS(4911), + [anon_sym_UR_DQUOTE] = ACTIONS(4911), + [anon_sym_u8R_DQUOTE] = ACTIONS(4911), + [anon_sym_DASH_GT_STAR] = ACTIONS(4061), }, [1987] = { - [sym__expression] = STATE(3736), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(4788), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), + [sym_identifier] = ACTIONS(5211), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5213), + [anon_sym_COMMA] = ACTIONS(5213), + [anon_sym_RPAREN] = ACTIONS(5213), + [anon_sym_LPAREN2] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5211), + [anon_sym_PLUS] = ACTIONS(5211), + [anon_sym_STAR] = ACTIONS(5213), + [anon_sym_SLASH] = ACTIONS(5211), + [anon_sym_PERCENT] = ACTIONS(5213), + [anon_sym_PIPE_PIPE] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5213), + [anon_sym_PIPE] = ACTIONS(5211), + [anon_sym_CARET] = ACTIONS(5213), + [anon_sym_AMP] = ACTIONS(5211), + [anon_sym_EQ_EQ] = ACTIONS(5213), + [anon_sym_BANG_EQ] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5211), + [anon_sym_GT_EQ] = ACTIONS(5213), + [anon_sym_LT_EQ] = ACTIONS(5211), + [anon_sym_LT] = ACTIONS(5211), + [anon_sym_LT_LT] = ACTIONS(5213), + [anon_sym_GT_GT] = ACTIONS(5213), + [anon_sym_SEMI] = ACTIONS(5213), + [anon_sym___extension__] = ACTIONS(5211), + [anon_sym___attribute__] = ACTIONS(5211), + [anon_sym___based] = ACTIONS(5211), + [anon_sym_LBRACE] = ACTIONS(5213), + [anon_sym_RBRACE] = ACTIONS(5213), + [anon_sym_signed] = ACTIONS(5211), + [anon_sym_unsigned] = ACTIONS(5211), + [anon_sym_long] = ACTIONS(5211), + [anon_sym_short] = ACTIONS(5211), + [anon_sym_LBRACK] = ACTIONS(5213), + [anon_sym_RBRACK] = ACTIONS(5213), + [anon_sym_const] = ACTIONS(5211), + [anon_sym_constexpr] = ACTIONS(5211), + [anon_sym_volatile] = ACTIONS(5211), + [anon_sym_restrict] = ACTIONS(5211), + [anon_sym___restrict__] = ACTIONS(5211), + [anon_sym__Atomic] = ACTIONS(5211), + [anon_sym__Noreturn] = ACTIONS(5211), + [anon_sym_noreturn] = ACTIONS(5211), + [anon_sym_mutable] = ACTIONS(5211), + [anon_sym_constinit] = ACTIONS(5211), + [anon_sym_consteval] = ACTIONS(5211), + [sym_primitive_type] = ACTIONS(5211), + [anon_sym_COLON] = ACTIONS(5213), + [anon_sym_QMARK] = ACTIONS(5213), + [anon_sym_LT_EQ_GT] = ACTIONS(5213), + [anon_sym_or] = ACTIONS(5211), + [anon_sym_and] = ACTIONS(5211), + [anon_sym_bitor] = ACTIONS(5211), + [anon_sym_xor] = ACTIONS(5211), + [anon_sym_bitand] = ACTIONS(5211), + [anon_sym_not_eq] = ACTIONS(5211), + [anon_sym_DASH_DASH] = ACTIONS(5213), + [anon_sym_PLUS_PLUS] = ACTIONS(5213), + [anon_sym_DOT] = ACTIONS(5211), + [anon_sym_DOT_STAR] = ACTIONS(5213), + [anon_sym_DASH_GT] = ACTIONS(5213), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5211), + [anon_sym_decltype] = ACTIONS(5211), + [anon_sym_final] = ACTIONS(5211), + [anon_sym_override] = ACTIONS(5211), + [anon_sym_requires] = ACTIONS(5211), }, [1988] = { - [sym__expression] = STATE(3736), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), + [sym_identifier] = ACTIONS(5215), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5217), + [anon_sym_COMMA] = ACTIONS(5217), + [anon_sym_RPAREN] = ACTIONS(5217), + [anon_sym_LPAREN2] = ACTIONS(5217), + [anon_sym_DASH] = ACTIONS(5215), + [anon_sym_PLUS] = ACTIONS(5215), + [anon_sym_STAR] = ACTIONS(5217), + [anon_sym_SLASH] = ACTIONS(5215), + [anon_sym_PERCENT] = ACTIONS(5217), + [anon_sym_PIPE_PIPE] = ACTIONS(5217), + [anon_sym_AMP_AMP] = ACTIONS(5217), + [anon_sym_PIPE] = ACTIONS(5215), + [anon_sym_CARET] = ACTIONS(5217), + [anon_sym_AMP] = ACTIONS(5215), + [anon_sym_EQ_EQ] = ACTIONS(5217), + [anon_sym_BANG_EQ] = ACTIONS(5217), + [anon_sym_GT] = ACTIONS(5215), + [anon_sym_GT_EQ] = ACTIONS(5217), + [anon_sym_LT_EQ] = ACTIONS(5215), + [anon_sym_LT] = ACTIONS(5215), + [anon_sym_LT_LT] = ACTIONS(5217), + [anon_sym_GT_GT] = ACTIONS(5217), + [anon_sym_SEMI] = ACTIONS(5217), + [anon_sym___extension__] = ACTIONS(5215), + [anon_sym___attribute__] = ACTIONS(5215), + [anon_sym___based] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(5217), + [anon_sym_RBRACE] = ACTIONS(5217), + [anon_sym_signed] = ACTIONS(5215), + [anon_sym_unsigned] = ACTIONS(5215), + [anon_sym_long] = ACTIONS(5215), + [anon_sym_short] = ACTIONS(5215), + [anon_sym_LBRACK] = ACTIONS(5217), + [anon_sym_RBRACK] = ACTIONS(5217), + [anon_sym_const] = ACTIONS(5215), + [anon_sym_constexpr] = ACTIONS(5215), + [anon_sym_volatile] = ACTIONS(5215), + [anon_sym_restrict] = ACTIONS(5215), + [anon_sym___restrict__] = ACTIONS(5215), + [anon_sym__Atomic] = ACTIONS(5215), + [anon_sym__Noreturn] = ACTIONS(5215), + [anon_sym_noreturn] = ACTIONS(5215), + [anon_sym_mutable] = ACTIONS(5215), + [anon_sym_constinit] = ACTIONS(5215), + [anon_sym_consteval] = ACTIONS(5215), + [sym_primitive_type] = ACTIONS(5215), + [anon_sym_COLON] = ACTIONS(5217), + [anon_sym_QMARK] = ACTIONS(5217), + [anon_sym_LT_EQ_GT] = ACTIONS(5217), + [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(5217), + [anon_sym_PLUS_PLUS] = ACTIONS(5217), + [anon_sym_DOT] = ACTIONS(5215), + [anon_sym_DOT_STAR] = ACTIONS(5217), + [anon_sym_DASH_GT] = ACTIONS(5217), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5215), + [anon_sym_decltype] = ACTIONS(5215), + [anon_sym_final] = ACTIONS(5215), + [anon_sym_override] = ACTIONS(5215), + [anon_sym_requires] = ACTIONS(5215), }, [1989] = { - [sym__expression] = STATE(4985), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LPAREN2] = ACTIONS(5221), + [anon_sym_DASH] = ACTIONS(5219), + [anon_sym_PLUS] = ACTIONS(5219), + [anon_sym_STAR] = ACTIONS(5221), + [anon_sym_SLASH] = ACTIONS(5219), + [anon_sym_PERCENT] = ACTIONS(5221), + [anon_sym_PIPE_PIPE] = ACTIONS(5221), + [anon_sym_AMP_AMP] = ACTIONS(5221), + [anon_sym_PIPE] = ACTIONS(5219), + [anon_sym_CARET] = ACTIONS(5221), + [anon_sym_AMP] = ACTIONS(5219), + [anon_sym_EQ_EQ] = ACTIONS(5221), + [anon_sym_BANG_EQ] = ACTIONS(5221), + [anon_sym_GT] = ACTIONS(5219), + [anon_sym_GT_EQ] = ACTIONS(5221), + [anon_sym_LT_EQ] = ACTIONS(5219), + [anon_sym_LT] = ACTIONS(5219), + [anon_sym_LT_LT] = ACTIONS(5221), + [anon_sym_GT_GT] = ACTIONS(5221), + [anon_sym_SEMI] = ACTIONS(5221), + [anon_sym___extension__] = ACTIONS(5219), + [anon_sym___attribute__] = ACTIONS(5219), + [anon_sym___based] = ACTIONS(5219), + [anon_sym_LBRACE] = ACTIONS(5221), + [anon_sym_RBRACE] = ACTIONS(5221), + [anon_sym_signed] = ACTIONS(5219), + [anon_sym_unsigned] = ACTIONS(5219), + [anon_sym_long] = ACTIONS(5219), + [anon_sym_short] = ACTIONS(5219), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_const] = ACTIONS(5219), + [anon_sym_constexpr] = ACTIONS(5219), + [anon_sym_volatile] = ACTIONS(5219), + [anon_sym_restrict] = ACTIONS(5219), + [anon_sym___restrict__] = ACTIONS(5219), + [anon_sym__Atomic] = ACTIONS(5219), + [anon_sym__Noreturn] = ACTIONS(5219), + [anon_sym_noreturn] = ACTIONS(5219), + [anon_sym_mutable] = ACTIONS(5219), + [anon_sym_constinit] = ACTIONS(5219), + [anon_sym_consteval] = ACTIONS(5219), + [sym_primitive_type] = ACTIONS(5219), + [anon_sym_COLON] = ACTIONS(5221), + [anon_sym_QMARK] = ACTIONS(5221), + [anon_sym_LT_EQ_GT] = ACTIONS(5221), + [anon_sym_or] = ACTIONS(5219), + [anon_sym_and] = ACTIONS(5219), + [anon_sym_bitor] = ACTIONS(5219), + [anon_sym_xor] = ACTIONS(5219), + [anon_sym_bitand] = ACTIONS(5219), + [anon_sym_not_eq] = ACTIONS(5219), + [anon_sym_DASH_DASH] = ACTIONS(5221), + [anon_sym_PLUS_PLUS] = ACTIONS(5221), + [anon_sym_DOT] = ACTIONS(5219), + [anon_sym_DOT_STAR] = ACTIONS(5221), + [anon_sym_DASH_GT] = ACTIONS(5221), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5219), + [anon_sym_decltype] = ACTIONS(5219), + [anon_sym_final] = ACTIONS(5219), + [anon_sym_override] = ACTIONS(5219), + [anon_sym_requires] = ACTIONS(5219), }, [1990] = { - [sym__expression] = STATE(3821), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(5223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LPAREN2] = ACTIONS(5225), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5225), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_PIPE_PIPE] = ACTIONS(5225), + [anon_sym_AMP_AMP] = ACTIONS(5225), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5225), + [anon_sym_AMP] = ACTIONS(5223), + [anon_sym_EQ_EQ] = ACTIONS(5225), + [anon_sym_BANG_EQ] = ACTIONS(5225), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_GT_EQ] = ACTIONS(5225), + [anon_sym_LT_EQ] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_LT_LT] = ACTIONS(5225), + [anon_sym_GT_GT] = ACTIONS(5225), + [anon_sym_SEMI] = ACTIONS(5225), + [anon_sym___extension__] = ACTIONS(5223), + [anon_sym___attribute__] = ACTIONS(5223), + [anon_sym___based] = ACTIONS(5223), + [anon_sym_LBRACE] = ACTIONS(5225), + [anon_sym_RBRACE] = ACTIONS(5225), + [anon_sym_signed] = ACTIONS(5223), + [anon_sym_unsigned] = ACTIONS(5223), + [anon_sym_long] = ACTIONS(5223), + [anon_sym_short] = ACTIONS(5223), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_const] = ACTIONS(5223), + [anon_sym_constexpr] = ACTIONS(5223), + [anon_sym_volatile] = ACTIONS(5223), + [anon_sym_restrict] = ACTIONS(5223), + [anon_sym___restrict__] = ACTIONS(5223), + [anon_sym__Atomic] = ACTIONS(5223), + [anon_sym__Noreturn] = ACTIONS(5223), + [anon_sym_noreturn] = ACTIONS(5223), + [anon_sym_mutable] = ACTIONS(5223), + [anon_sym_constinit] = ACTIONS(5223), + [anon_sym_consteval] = ACTIONS(5223), + [sym_primitive_type] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5225), + [anon_sym_QMARK] = ACTIONS(5225), + [anon_sym_LT_EQ_GT] = ACTIONS(5225), + [anon_sym_or] = ACTIONS(5223), + [anon_sym_and] = ACTIONS(5223), + [anon_sym_bitor] = ACTIONS(5223), + [anon_sym_xor] = ACTIONS(5223), + [anon_sym_bitand] = ACTIONS(5223), + [anon_sym_not_eq] = ACTIONS(5223), + [anon_sym_DASH_DASH] = ACTIONS(5225), + [anon_sym_PLUS_PLUS] = ACTIONS(5225), + [anon_sym_DOT] = ACTIONS(5223), + [anon_sym_DOT_STAR] = ACTIONS(5225), + [anon_sym_DASH_GT] = ACTIONS(5225), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5223), + [anon_sym_decltype] = ACTIONS(5223), + [anon_sym_final] = ACTIONS(5223), + [anon_sym_override] = ACTIONS(5223), + [anon_sym_requires] = ACTIONS(5223), }, [1991] = { - [sym__expression] = STATE(3817), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(5227), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LPAREN2] = ACTIONS(5229), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5229), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_PERCENT] = ACTIONS(5229), + [anon_sym_PIPE_PIPE] = ACTIONS(5229), + [anon_sym_AMP_AMP] = ACTIONS(5229), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5229), + [anon_sym_AMP] = ACTIONS(5227), + [anon_sym_EQ_EQ] = ACTIONS(5229), + [anon_sym_BANG_EQ] = ACTIONS(5229), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_GT_EQ] = ACTIONS(5229), + [anon_sym_LT_EQ] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_LT_LT] = ACTIONS(5229), + [anon_sym_GT_GT] = ACTIONS(5229), + [anon_sym_SEMI] = ACTIONS(5229), + [anon_sym___extension__] = ACTIONS(5227), + [anon_sym___attribute__] = ACTIONS(5227), + [anon_sym___based] = ACTIONS(5227), + [anon_sym_LBRACE] = ACTIONS(5229), + [anon_sym_RBRACE] = ACTIONS(5229), + [anon_sym_signed] = ACTIONS(5227), + [anon_sym_unsigned] = ACTIONS(5227), + [anon_sym_long] = ACTIONS(5227), + [anon_sym_short] = ACTIONS(5227), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_const] = ACTIONS(5227), + [anon_sym_constexpr] = ACTIONS(5227), + [anon_sym_volatile] = ACTIONS(5227), + [anon_sym_restrict] = ACTIONS(5227), + [anon_sym___restrict__] = ACTIONS(5227), + [anon_sym__Atomic] = ACTIONS(5227), + [anon_sym__Noreturn] = ACTIONS(5227), + [anon_sym_noreturn] = ACTIONS(5227), + [anon_sym_mutable] = ACTIONS(5227), + [anon_sym_constinit] = ACTIONS(5227), + [anon_sym_consteval] = ACTIONS(5227), + [sym_primitive_type] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5229), + [anon_sym_QMARK] = ACTIONS(5229), + [anon_sym_LT_EQ_GT] = ACTIONS(5229), + [anon_sym_or] = ACTIONS(5227), + [anon_sym_and] = ACTIONS(5227), + [anon_sym_bitor] = ACTIONS(5227), + [anon_sym_xor] = ACTIONS(5227), + [anon_sym_bitand] = ACTIONS(5227), + [anon_sym_not_eq] = ACTIONS(5227), + [anon_sym_DASH_DASH] = ACTIONS(5229), + [anon_sym_PLUS_PLUS] = ACTIONS(5229), + [anon_sym_DOT] = ACTIONS(5227), + [anon_sym_DOT_STAR] = ACTIONS(5229), + [anon_sym_DASH_GT] = ACTIONS(5229), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5227), + [anon_sym_decltype] = ACTIONS(5227), + [anon_sym_final] = ACTIONS(5227), + [anon_sym_override] = ACTIONS(5227), + [anon_sym_requires] = ACTIONS(5227), }, [1992] = { - [sym__expression] = STATE(5214), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(3791), + [sym_raw_string_literal] = STATE(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_EQ] = ACTIONS(4091), + [anon_sym_COLON] = ACTIONS(4130), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4095), + [anon_sym_or_eq] = ACTIONS(4095), + [anon_sym_xor_eq] = ACTIONS(4095), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, [1993] = { - [sym__expression] = STATE(5212), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(3791), + [sym_raw_string_literal] = STATE(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_EQ] = ACTIONS(4091), + [anon_sym_COLON] = ACTIONS(4093), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4095), + [anon_sym_or_eq] = ACTIONS(4095), + [anon_sym_xor_eq] = ACTIONS(4095), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, [1994] = { - [sym__expression] = STATE(5210), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(3791), + [sym_raw_string_literal] = STATE(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_EQ] = ACTIONS(4091), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4095), + [anon_sym_or_eq] = ACTIONS(4095), + [anon_sym_xor_eq] = ACTIONS(4095), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, [1995] = { - [sym__expression] = STATE(5276), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(3791), + [sym_raw_string_literal] = STATE(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_EQ] = ACTIONS(4091), + [anon_sym_COLON] = ACTIONS(4120), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4095), + [anon_sym_or_eq] = ACTIONS(4095), + [anon_sym_xor_eq] = ACTIONS(4095), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, [1996] = { - [sym__expression] = STATE(5209), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(3791), + [sym_raw_string_literal] = STATE(2643), + [aux_sym_structured_binding_declarator_repeat1] = STATE(6778), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(5233), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_RBRACK] = ACTIONS(5104), + [anon_sym_EQ] = ACTIONS(5107), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(5109), + [anon_sym_SLASH_EQ] = ACTIONS(5109), + [anon_sym_PERCENT_EQ] = ACTIONS(5109), + [anon_sym_PLUS_EQ] = ACTIONS(5109), + [anon_sym_DASH_EQ] = ACTIONS(5109), + [anon_sym_LT_LT_EQ] = ACTIONS(5109), + [anon_sym_GT_GT_EQ] = ACTIONS(5109), + [anon_sym_AMP_EQ] = ACTIONS(5109), + [anon_sym_CARET_EQ] = ACTIONS(5109), + [anon_sym_PIPE_EQ] = ACTIONS(5109), + [anon_sym_and_eq] = ACTIONS(5109), + [anon_sym_or_eq] = ACTIONS(5109), + [anon_sym_xor_eq] = ACTIONS(5109), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, [1997] = { - [sym__expression] = STATE(4300), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_string_literal] = STATE(1998), + [sym_raw_string_literal] = STATE(1998), + [aux_sym_concatenated_string_repeat1] = STATE(1998), + [sym_identifier] = ACTIONS(5236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_RPAREN] = ACTIONS(4840), + [anon_sym_LPAREN2] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_PLUS] = ACTIONS(4842), + [anon_sym_STAR] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4842), + [anon_sym_PERCENT] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4842), + [anon_sym_AMP] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4840), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_LT_LT] = ACTIONS(4842), + [anon_sym_GT_GT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4842), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_STAR_EQ] = ACTIONS(4840), + [anon_sym_SLASH_EQ] = ACTIONS(4840), + [anon_sym_PERCENT_EQ] = ACTIONS(4840), + [anon_sym_PLUS_EQ] = ACTIONS(4840), + [anon_sym_DASH_EQ] = ACTIONS(4840), + [anon_sym_LT_LT_EQ] = ACTIONS(4840), + [anon_sym_GT_GT_EQ] = ACTIONS(4840), + [anon_sym_AMP_EQ] = ACTIONS(4840), + [anon_sym_CARET_EQ] = ACTIONS(4840), + [anon_sym_PIPE_EQ] = ACTIONS(4840), + [anon_sym_and_eq] = ACTIONS(4842), + [anon_sym_or_eq] = ACTIONS(4842), + [anon_sym_xor_eq] = ACTIONS(4842), + [anon_sym_LT_EQ_GT] = ACTIONS(4840), + [anon_sym_or] = ACTIONS(4842), + [anon_sym_and] = ACTIONS(4842), + [anon_sym_bitor] = ACTIONS(4842), + [anon_sym_xor] = ACTIONS(4842), + [anon_sym_bitand] = ACTIONS(4842), + [anon_sym_not_eq] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4840), + [anon_sym_PLUS_PLUS] = ACTIONS(4840), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_DOT_STAR] = ACTIONS(4840), + [anon_sym_DASH_GT] = ACTIONS(4842), + [anon_sym_L_DQUOTE] = ACTIONS(4909), + [anon_sym_u_DQUOTE] = ACTIONS(4909), + [anon_sym_U_DQUOTE] = ACTIONS(4909), + [anon_sym_u8_DQUOTE] = ACTIONS(4909), + [anon_sym_DQUOTE] = ACTIONS(4909), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4911), + [anon_sym_LR_DQUOTE] = ACTIONS(4911), + [anon_sym_uR_DQUOTE] = ACTIONS(4911), + [anon_sym_UR_DQUOTE] = ACTIONS(4911), + [anon_sym_u8R_DQUOTE] = ACTIONS(4911), + [anon_sym_DASH_GT_STAR] = ACTIONS(4840), + [sym_literal_suffix] = ACTIONS(4842), }, [1998] = { - [sym__expression] = STATE(5204), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [sym_string_literal] = STATE(1998), + [sym_raw_string_literal] = STATE(1998), + [aux_sym_concatenated_string_repeat1] = STATE(1998), + [sym_identifier] = ACTIONS(5238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4823), + [anon_sym_COMMA] = ACTIONS(4823), + [anon_sym_RPAREN] = ACTIONS(4823), + [anon_sym_LPAREN2] = ACTIONS(4823), + [anon_sym_DASH] = ACTIONS(4825), + [anon_sym_PLUS] = ACTIONS(4825), + [anon_sym_STAR] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4825), + [anon_sym_PERCENT] = ACTIONS(4825), + [anon_sym_PIPE_PIPE] = ACTIONS(4823), + [anon_sym_AMP_AMP] = ACTIONS(4823), + [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_AMP] = ACTIONS(4825), + [anon_sym_EQ_EQ] = ACTIONS(4823), + [anon_sym_BANG_EQ] = ACTIONS(4823), + [anon_sym_GT] = ACTIONS(4825), + [anon_sym_GT_EQ] = ACTIONS(4823), + [anon_sym_LT_EQ] = ACTIONS(4825), + [anon_sym_LT] = ACTIONS(4825), + [anon_sym_LT_LT] = ACTIONS(4825), + [anon_sym_GT_GT] = ACTIONS(4825), + [anon_sym_LBRACK] = ACTIONS(4823), + [anon_sym_EQ] = ACTIONS(4825), + [anon_sym_QMARK] = ACTIONS(4823), + [anon_sym_STAR_EQ] = ACTIONS(4823), + [anon_sym_SLASH_EQ] = ACTIONS(4823), + [anon_sym_PERCENT_EQ] = ACTIONS(4823), + [anon_sym_PLUS_EQ] = ACTIONS(4823), + [anon_sym_DASH_EQ] = ACTIONS(4823), + [anon_sym_LT_LT_EQ] = ACTIONS(4823), + [anon_sym_GT_GT_EQ] = ACTIONS(4823), + [anon_sym_AMP_EQ] = ACTIONS(4823), + [anon_sym_CARET_EQ] = ACTIONS(4823), + [anon_sym_PIPE_EQ] = ACTIONS(4823), + [anon_sym_and_eq] = ACTIONS(4825), + [anon_sym_or_eq] = ACTIONS(4825), + [anon_sym_xor_eq] = ACTIONS(4825), + [anon_sym_LT_EQ_GT] = ACTIONS(4823), + [anon_sym_or] = ACTIONS(4825), + [anon_sym_and] = ACTIONS(4825), + [anon_sym_bitor] = ACTIONS(4825), + [anon_sym_xor] = ACTIONS(4825), + [anon_sym_bitand] = ACTIONS(4825), + [anon_sym_not_eq] = ACTIONS(4825), + [anon_sym_DASH_DASH] = ACTIONS(4823), + [anon_sym_PLUS_PLUS] = ACTIONS(4823), + [anon_sym_DOT] = ACTIONS(4825), + [anon_sym_DOT_STAR] = ACTIONS(4823), + [anon_sym_DASH_GT] = ACTIONS(4825), + [anon_sym_L_DQUOTE] = ACTIONS(5241), + [anon_sym_u_DQUOTE] = ACTIONS(5241), + [anon_sym_U_DQUOTE] = ACTIONS(5241), + [anon_sym_u8_DQUOTE] = ACTIONS(5241), + [anon_sym_DQUOTE] = ACTIONS(5241), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5244), + [anon_sym_LR_DQUOTE] = ACTIONS(5244), + [anon_sym_uR_DQUOTE] = ACTIONS(5244), + [anon_sym_UR_DQUOTE] = ACTIONS(5244), + [anon_sym_u8R_DQUOTE] = ACTIONS(5244), + [anon_sym_DASH_GT_STAR] = ACTIONS(4823), + [sym_literal_suffix] = ACTIONS(4825), }, [1999] = { - [sym__expression] = STATE(5203), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4752), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4633), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), }, [2000] = { - [sym__expression] = STATE(5286), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(3037), + [sym_template_argument_list] = STATE(3791), + [sym_raw_string_literal] = STATE(3037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym___attribute__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_EQ] = ACTIONS(5247), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(5249), + [anon_sym_SLASH_EQ] = ACTIONS(5249), + [anon_sym_PERCENT_EQ] = ACTIONS(5249), + [anon_sym_PLUS_EQ] = ACTIONS(5249), + [anon_sym_DASH_EQ] = ACTIONS(5249), + [anon_sym_LT_LT_EQ] = ACTIONS(5249), + [anon_sym_GT_GT_EQ] = ACTIONS(5249), + [anon_sym_AMP_EQ] = ACTIONS(5249), + [anon_sym_CARET_EQ] = ACTIONS(5249), + [anon_sym_PIPE_EQ] = ACTIONS(5249), + [anon_sym_and_eq] = ACTIONS(5249), + [anon_sym_or_eq] = ACTIONS(5249), + [anon_sym_xor_eq] = ACTIONS(5249), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(5251), + [anon_sym_u_DQUOTE] = ACTIONS(5251), + [anon_sym_U_DQUOTE] = ACTIONS(5251), + [anon_sym_u8_DQUOTE] = ACTIONS(5251), + [anon_sym_DQUOTE] = ACTIONS(5251), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5253), + [anon_sym_LR_DQUOTE] = ACTIONS(5253), + [anon_sym_uR_DQUOTE] = ACTIONS(5253), + [anon_sym_UR_DQUOTE] = ACTIONS(5253), + [anon_sym_u8R_DQUOTE] = ACTIONS(5253), }, [2001] = { - [sym__expression] = STATE(5202), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [sym_identifier] = ACTIONS(5255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5257), + [anon_sym_COMMA] = ACTIONS(5257), + [anon_sym_RPAREN] = ACTIONS(5257), + [anon_sym_LPAREN2] = ACTIONS(5257), + [anon_sym_DASH] = ACTIONS(5255), + [anon_sym_PLUS] = ACTIONS(5255), + [anon_sym_STAR] = ACTIONS(5257), + [anon_sym_SLASH] = ACTIONS(5255), + [anon_sym_PERCENT] = ACTIONS(5257), + [anon_sym_PIPE_PIPE] = ACTIONS(5257), + [anon_sym_AMP_AMP] = ACTIONS(5257), + [anon_sym_PIPE] = ACTIONS(5255), + [anon_sym_CARET] = ACTIONS(5257), + [anon_sym_AMP] = ACTIONS(5255), + [anon_sym_EQ_EQ] = ACTIONS(5257), + [anon_sym_BANG_EQ] = ACTIONS(5257), + [anon_sym_GT] = ACTIONS(5255), + [anon_sym_GT_EQ] = ACTIONS(5257), + [anon_sym_LT_EQ] = ACTIONS(5255), + [anon_sym_LT] = ACTIONS(5255), + [anon_sym_LT_LT] = ACTIONS(5257), + [anon_sym_GT_GT] = ACTIONS(5257), + [anon_sym_SEMI] = ACTIONS(5257), + [anon_sym___extension__] = ACTIONS(5255), + [anon_sym___attribute__] = ACTIONS(5255), + [anon_sym___based] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(5257), + [anon_sym_RBRACE] = ACTIONS(5257), + [anon_sym_signed] = ACTIONS(5255), + [anon_sym_unsigned] = ACTIONS(5255), + [anon_sym_long] = ACTIONS(5255), + [anon_sym_short] = ACTIONS(5255), + [anon_sym_LBRACK] = ACTIONS(5257), + [anon_sym_RBRACK] = ACTIONS(5257), + [anon_sym_const] = ACTIONS(5255), + [anon_sym_constexpr] = ACTIONS(5255), + [anon_sym_volatile] = ACTIONS(5255), + [anon_sym_restrict] = ACTIONS(5255), + [anon_sym___restrict__] = ACTIONS(5255), + [anon_sym__Atomic] = ACTIONS(5255), + [anon_sym__Noreturn] = ACTIONS(5255), + [anon_sym_noreturn] = ACTIONS(5255), + [anon_sym_mutable] = ACTIONS(5255), + [anon_sym_constinit] = ACTIONS(5255), + [anon_sym_consteval] = ACTIONS(5255), + [sym_primitive_type] = ACTIONS(5255), + [anon_sym_COLON] = ACTIONS(5257), + [anon_sym_QMARK] = ACTIONS(5257), + [anon_sym_LT_EQ_GT] = ACTIONS(5257), + [anon_sym_or] = ACTIONS(5255), + [anon_sym_and] = ACTIONS(5255), + [anon_sym_bitor] = ACTIONS(5255), + [anon_sym_xor] = ACTIONS(5255), + [anon_sym_bitand] = ACTIONS(5255), + [anon_sym_not_eq] = ACTIONS(5255), + [anon_sym_DASH_DASH] = ACTIONS(5257), + [anon_sym_PLUS_PLUS] = ACTIONS(5257), + [anon_sym_DOT] = ACTIONS(5255), + [anon_sym_DOT_STAR] = ACTIONS(5257), + [anon_sym_DASH_GT] = ACTIONS(5257), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5255), + [anon_sym_decltype] = ACTIONS(5255), + [anon_sym_final] = ACTIONS(5255), + [anon_sym_override] = ACTIONS(5255), + [anon_sym_requires] = ACTIONS(5255), }, [2002] = { - [sym__expression] = STATE(5241), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4793), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4633), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), }, [2003] = { - [sym__expression] = STATE(5201), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [sym_identifier] = ACTIONS(5259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5261), + [anon_sym_COMMA] = ACTIONS(5261), + [anon_sym_RPAREN] = ACTIONS(5261), + [anon_sym_LPAREN2] = ACTIONS(5261), + [anon_sym_DASH] = ACTIONS(5259), + [anon_sym_PLUS] = ACTIONS(5259), + [anon_sym_STAR] = ACTIONS(5261), + [anon_sym_SLASH] = ACTIONS(5259), + [anon_sym_PERCENT] = ACTIONS(5261), + [anon_sym_PIPE_PIPE] = ACTIONS(5261), + [anon_sym_AMP_AMP] = ACTIONS(5261), + [anon_sym_PIPE] = ACTIONS(5259), + [anon_sym_CARET] = ACTIONS(5261), + [anon_sym_AMP] = ACTIONS(5259), + [anon_sym_EQ_EQ] = ACTIONS(5261), + [anon_sym_BANG_EQ] = ACTIONS(5261), + [anon_sym_GT] = ACTIONS(5259), + [anon_sym_GT_EQ] = ACTIONS(5261), + [anon_sym_LT_EQ] = ACTIONS(5259), + [anon_sym_LT] = ACTIONS(5259), + [anon_sym_LT_LT] = ACTIONS(5261), + [anon_sym_GT_GT] = ACTIONS(5261), + [anon_sym_SEMI] = ACTIONS(5261), + [anon_sym___extension__] = ACTIONS(5259), + [anon_sym___attribute__] = ACTIONS(5259), + [anon_sym___based] = ACTIONS(5259), + [anon_sym_LBRACE] = ACTIONS(5261), + [anon_sym_RBRACE] = ACTIONS(5261), + [anon_sym_signed] = ACTIONS(5259), + [anon_sym_unsigned] = ACTIONS(5259), + [anon_sym_long] = ACTIONS(5259), + [anon_sym_short] = ACTIONS(5259), + [anon_sym_LBRACK] = ACTIONS(5261), + [anon_sym_RBRACK] = ACTIONS(5261), + [anon_sym_const] = ACTIONS(5259), + [anon_sym_constexpr] = ACTIONS(5259), + [anon_sym_volatile] = ACTIONS(5259), + [anon_sym_restrict] = ACTIONS(5259), + [anon_sym___restrict__] = ACTIONS(5259), + [anon_sym__Atomic] = ACTIONS(5259), + [anon_sym__Noreturn] = ACTIONS(5259), + [anon_sym_noreturn] = ACTIONS(5259), + [anon_sym_mutable] = ACTIONS(5259), + [anon_sym_constinit] = ACTIONS(5259), + [anon_sym_consteval] = ACTIONS(5259), + [sym_primitive_type] = ACTIONS(5259), + [anon_sym_COLON] = ACTIONS(5261), + [anon_sym_QMARK] = ACTIONS(5261), + [anon_sym_LT_EQ_GT] = ACTIONS(5261), + [anon_sym_or] = ACTIONS(5259), + [anon_sym_and] = ACTIONS(5259), + [anon_sym_bitor] = ACTIONS(5259), + [anon_sym_xor] = ACTIONS(5259), + [anon_sym_bitand] = ACTIONS(5259), + [anon_sym_not_eq] = ACTIONS(5259), + [anon_sym_DASH_DASH] = ACTIONS(5261), + [anon_sym_PLUS_PLUS] = ACTIONS(5261), + [anon_sym_DOT] = ACTIONS(5259), + [anon_sym_DOT_STAR] = ACTIONS(5261), + [anon_sym_DASH_GT] = ACTIONS(5261), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5259), + [anon_sym_decltype] = ACTIONS(5259), + [anon_sym_final] = ACTIONS(5259), + [anon_sym_override] = ACTIONS(5259), + [anon_sym_requires] = ACTIONS(5259), }, [2004] = { - [sym__expression] = STATE(5395), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5265), + [anon_sym_COMMA] = ACTIONS(5265), + [anon_sym_RPAREN] = ACTIONS(5265), + [anon_sym_LPAREN2] = ACTIONS(5265), + [anon_sym_DASH] = ACTIONS(5263), + [anon_sym_PLUS] = ACTIONS(5263), + [anon_sym_STAR] = ACTIONS(5265), + [anon_sym_SLASH] = ACTIONS(5263), + [anon_sym_PERCENT] = ACTIONS(5265), + [anon_sym_PIPE_PIPE] = ACTIONS(5265), + [anon_sym_AMP_AMP] = ACTIONS(5265), + [anon_sym_PIPE] = ACTIONS(5263), + [anon_sym_CARET] = ACTIONS(5265), + [anon_sym_AMP] = ACTIONS(5263), + [anon_sym_EQ_EQ] = ACTIONS(5265), + [anon_sym_BANG_EQ] = ACTIONS(5265), + [anon_sym_GT] = ACTIONS(5263), + [anon_sym_GT_EQ] = ACTIONS(5265), + [anon_sym_LT_EQ] = ACTIONS(5263), + [anon_sym_LT] = ACTIONS(5263), + [anon_sym_LT_LT] = ACTIONS(5265), + [anon_sym_GT_GT] = ACTIONS(5265), + [anon_sym_SEMI] = ACTIONS(5265), + [anon_sym___extension__] = ACTIONS(5263), + [anon_sym___attribute__] = ACTIONS(5263), + [anon_sym___based] = ACTIONS(5263), + [anon_sym_LBRACE] = ACTIONS(5265), + [anon_sym_RBRACE] = ACTIONS(5265), + [anon_sym_signed] = ACTIONS(5263), + [anon_sym_unsigned] = ACTIONS(5263), + [anon_sym_long] = ACTIONS(5263), + [anon_sym_short] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(5265), + [anon_sym_RBRACK] = ACTIONS(5265), + [anon_sym_const] = ACTIONS(5263), + [anon_sym_constexpr] = ACTIONS(5263), + [anon_sym_volatile] = ACTIONS(5263), + [anon_sym_restrict] = ACTIONS(5263), + [anon_sym___restrict__] = ACTIONS(5263), + [anon_sym__Atomic] = ACTIONS(5263), + [anon_sym__Noreturn] = ACTIONS(5263), + [anon_sym_noreturn] = ACTIONS(5263), + [anon_sym_mutable] = ACTIONS(5263), + [anon_sym_constinit] = ACTIONS(5263), + [anon_sym_consteval] = ACTIONS(5263), + [sym_primitive_type] = ACTIONS(5263), + [anon_sym_COLON] = ACTIONS(5265), + [anon_sym_QMARK] = ACTIONS(5265), + [anon_sym_LT_EQ_GT] = ACTIONS(5265), + [anon_sym_or] = ACTIONS(5263), + [anon_sym_and] = ACTIONS(5263), + [anon_sym_bitor] = ACTIONS(5263), + [anon_sym_xor] = ACTIONS(5263), + [anon_sym_bitand] = ACTIONS(5263), + [anon_sym_not_eq] = ACTIONS(5263), + [anon_sym_DASH_DASH] = ACTIONS(5265), + [anon_sym_PLUS_PLUS] = ACTIONS(5265), + [anon_sym_DOT] = ACTIONS(5263), + [anon_sym_DOT_STAR] = ACTIONS(5265), + [anon_sym_DASH_GT] = ACTIONS(5265), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5263), + [anon_sym_decltype] = ACTIONS(5263), + [anon_sym_final] = ACTIONS(5263), + [anon_sym_override] = ACTIONS(5263), + [anon_sym_requires] = ACTIONS(5263), }, [2005] = { - [sym__expression] = STATE(5320), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5269), + [anon_sym_COMMA] = ACTIONS(5269), + [anon_sym_RPAREN] = ACTIONS(5269), + [anon_sym_LPAREN2] = ACTIONS(5269), + [anon_sym_DASH] = ACTIONS(5267), + [anon_sym_PLUS] = ACTIONS(5267), + [anon_sym_STAR] = ACTIONS(5269), + [anon_sym_SLASH] = ACTIONS(5267), + [anon_sym_PERCENT] = ACTIONS(5269), + [anon_sym_PIPE_PIPE] = ACTIONS(5269), + [anon_sym_AMP_AMP] = ACTIONS(5269), + [anon_sym_PIPE] = ACTIONS(5267), + [anon_sym_CARET] = ACTIONS(5269), + [anon_sym_AMP] = ACTIONS(5267), + [anon_sym_EQ_EQ] = ACTIONS(5269), + [anon_sym_BANG_EQ] = ACTIONS(5269), + [anon_sym_GT] = ACTIONS(5267), + [anon_sym_GT_EQ] = ACTIONS(5269), + [anon_sym_LT_EQ] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(5267), + [anon_sym_LT_LT] = ACTIONS(5269), + [anon_sym_GT_GT] = ACTIONS(5269), + [anon_sym_SEMI] = ACTIONS(5269), + [anon_sym___extension__] = ACTIONS(5267), + [anon_sym___attribute__] = ACTIONS(5267), + [anon_sym___based] = ACTIONS(5267), + [anon_sym_LBRACE] = ACTIONS(5269), + [anon_sym_RBRACE] = ACTIONS(5269), + [anon_sym_signed] = ACTIONS(5267), + [anon_sym_unsigned] = ACTIONS(5267), + [anon_sym_long] = ACTIONS(5267), + [anon_sym_short] = ACTIONS(5267), + [anon_sym_LBRACK] = ACTIONS(5269), + [anon_sym_RBRACK] = ACTIONS(5269), + [anon_sym_const] = ACTIONS(5267), + [anon_sym_constexpr] = ACTIONS(5267), + [anon_sym_volatile] = ACTIONS(5267), + [anon_sym_restrict] = ACTIONS(5267), + [anon_sym___restrict__] = ACTIONS(5267), + [anon_sym__Atomic] = ACTIONS(5267), + [anon_sym__Noreturn] = ACTIONS(5267), + [anon_sym_noreturn] = ACTIONS(5267), + [anon_sym_mutable] = ACTIONS(5267), + [anon_sym_constinit] = ACTIONS(5267), + [anon_sym_consteval] = ACTIONS(5267), + [sym_primitive_type] = ACTIONS(5267), + [anon_sym_COLON] = ACTIONS(5269), + [anon_sym_QMARK] = ACTIONS(5269), + [anon_sym_LT_EQ_GT] = ACTIONS(5269), + [anon_sym_or] = ACTIONS(5267), + [anon_sym_and] = ACTIONS(5267), + [anon_sym_bitor] = ACTIONS(5267), + [anon_sym_xor] = ACTIONS(5267), + [anon_sym_bitand] = ACTIONS(5267), + [anon_sym_not_eq] = ACTIONS(5267), + [anon_sym_DASH_DASH] = ACTIONS(5269), + [anon_sym_PLUS_PLUS] = ACTIONS(5269), + [anon_sym_DOT] = ACTIONS(5267), + [anon_sym_DOT_STAR] = ACTIONS(5269), + [anon_sym_DASH_GT] = ACTIONS(5269), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5267), + [anon_sym_decltype] = ACTIONS(5267), + [anon_sym_final] = ACTIONS(5267), + [anon_sym_override] = ACTIONS(5267), + [anon_sym_requires] = ACTIONS(5267), }, [2006] = { - [sym__expression] = STATE(5199), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(3791), + [sym_raw_string_literal] = STATE(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_EQ] = ACTIONS(4091), + [anon_sym_COLON] = ACTIONS(4122), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_LT_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_GT_EQ] = ACTIONS(4095), + [anon_sym_AMP_EQ] = ACTIONS(4095), + [anon_sym_CARET_EQ] = ACTIONS(4095), + [anon_sym_PIPE_EQ] = ACTIONS(4095), + [anon_sym_and_eq] = ACTIONS(4095), + [anon_sym_or_eq] = ACTIONS(4095), + [anon_sym_xor_eq] = ACTIONS(4095), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, [2007] = { - [sym__expression] = STATE(5195), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [sym_identifier] = ACTIONS(5271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5273), + [anon_sym_COMMA] = ACTIONS(5273), + [anon_sym_RPAREN] = ACTIONS(5273), + [anon_sym_LPAREN2] = ACTIONS(5273), + [anon_sym_DASH] = ACTIONS(5271), + [anon_sym_PLUS] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(5273), + [anon_sym_SLASH] = ACTIONS(5271), + [anon_sym_PERCENT] = ACTIONS(5273), + [anon_sym_PIPE_PIPE] = ACTIONS(5273), + [anon_sym_AMP_AMP] = ACTIONS(5273), + [anon_sym_PIPE] = ACTIONS(5271), + [anon_sym_CARET] = ACTIONS(5273), + [anon_sym_AMP] = ACTIONS(5271), + [anon_sym_EQ_EQ] = ACTIONS(5273), + [anon_sym_BANG_EQ] = ACTIONS(5273), + [anon_sym_GT] = ACTIONS(5271), + [anon_sym_GT_EQ] = ACTIONS(5273), + [anon_sym_LT_EQ] = ACTIONS(5271), + [anon_sym_LT] = ACTIONS(5271), + [anon_sym_LT_LT] = ACTIONS(5273), + [anon_sym_GT_GT] = ACTIONS(5273), + [anon_sym_SEMI] = ACTIONS(5273), + [anon_sym___extension__] = ACTIONS(5271), + [anon_sym___attribute__] = ACTIONS(5271), + [anon_sym___based] = ACTIONS(5271), + [anon_sym_LBRACE] = ACTIONS(5273), + [anon_sym_RBRACE] = ACTIONS(5273), + [anon_sym_signed] = ACTIONS(5271), + [anon_sym_unsigned] = ACTIONS(5271), + [anon_sym_long] = ACTIONS(5271), + [anon_sym_short] = ACTIONS(5271), + [anon_sym_LBRACK] = ACTIONS(5273), + [anon_sym_RBRACK] = ACTIONS(5273), + [anon_sym_const] = ACTIONS(5271), + [anon_sym_constexpr] = ACTIONS(5271), + [anon_sym_volatile] = ACTIONS(5271), + [anon_sym_restrict] = ACTIONS(5271), + [anon_sym___restrict__] = ACTIONS(5271), + [anon_sym__Atomic] = ACTIONS(5271), + [anon_sym__Noreturn] = ACTIONS(5271), + [anon_sym_noreturn] = ACTIONS(5271), + [anon_sym_mutable] = ACTIONS(5271), + [anon_sym_constinit] = ACTIONS(5271), + [anon_sym_consteval] = ACTIONS(5271), + [sym_primitive_type] = ACTIONS(5271), + [anon_sym_COLON] = ACTIONS(5273), + [anon_sym_QMARK] = ACTIONS(5273), + [anon_sym_LT_EQ_GT] = ACTIONS(5273), + [anon_sym_or] = ACTIONS(5271), + [anon_sym_and] = ACTIONS(5271), + [anon_sym_bitor] = ACTIONS(5271), + [anon_sym_xor] = ACTIONS(5271), + [anon_sym_bitand] = ACTIONS(5271), + [anon_sym_not_eq] = ACTIONS(5271), + [anon_sym_DASH_DASH] = ACTIONS(5273), + [anon_sym_PLUS_PLUS] = ACTIONS(5273), + [anon_sym_DOT] = ACTIONS(5271), + [anon_sym_DOT_STAR] = ACTIONS(5273), + [anon_sym_DASH_GT] = ACTIONS(5273), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5271), + [anon_sym_decltype] = ACTIONS(5271), + [anon_sym_final] = ACTIONS(5271), + [anon_sym_override] = ACTIONS(5271), + [anon_sym_requires] = ACTIONS(5271), }, [2008] = { - [sym__expression] = STATE(5224), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(2019), + [sym__declaration_specifiers] = STATE(4772), + [sym_attribute_specifier] = STATE(2019), + [sym_attribute_declaration] = STATE(2019), + [sym_ms_declspec_modifier] = STATE(2019), + [sym_storage_class_specifier] = STATE(2019), + [sym_type_qualifier] = STATE(2019), + [sym__type_specifier] = STATE(2658), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(2019), + [sym_alignas_specifier] = STATE(2019), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(2019), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4633), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), }, [2009] = { - [sym__expression] = STATE(3809), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_catch_clause] = STATE(1951), + [aux_sym_constructor_try_statement_repeat1] = STATE(1951), + [sym_identifier] = ACTIONS(2255), + [aux_sym_preproc_def_token1] = ACTIONS(2255), + [aux_sym_preproc_if_token1] = ACTIONS(2255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2255), + [sym_preproc_directive] = ACTIONS(2255), + [anon_sym_LPAREN2] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_AMP_AMP] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym___extension__] = ACTIONS(2255), + [anon_sym_typedef] = ACTIONS(2255), + [anon_sym_extern] = ACTIONS(2255), + [anon_sym___attribute__] = ACTIONS(2255), + [anon_sym_COLON_COLON] = ACTIONS(2257), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2257), + [anon_sym___declspec] = ACTIONS(2255), + [anon_sym___based] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_signed] = ACTIONS(2255), + [anon_sym_unsigned] = ACTIONS(2255), + [anon_sym_long] = ACTIONS(2255), + [anon_sym_short] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_register] = ACTIONS(2255), + [anon_sym_inline] = ACTIONS(2255), + [anon_sym___inline] = ACTIONS(2255), + [anon_sym___inline__] = ACTIONS(2255), + [anon_sym___forceinline] = ACTIONS(2255), + [anon_sym_thread_local] = ACTIONS(2255), + [anon_sym___thread] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_constexpr] = ACTIONS(2255), + [anon_sym_volatile] = ACTIONS(2255), + [anon_sym_restrict] = ACTIONS(2255), + [anon_sym___restrict__] = ACTIONS(2255), + [anon_sym__Atomic] = ACTIONS(2255), + [anon_sym__Noreturn] = ACTIONS(2255), + [anon_sym_noreturn] = ACTIONS(2255), + [anon_sym_mutable] = ACTIONS(2255), + [anon_sym_constinit] = ACTIONS(2255), + [anon_sym_consteval] = ACTIONS(2255), + [sym_primitive_type] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [anon_sym_class] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(2255), + [anon_sym_union] = ACTIONS(2255), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2255), + [anon_sym_decltype] = ACTIONS(2255), + [anon_sym_virtual] = ACTIONS(2255), + [anon_sym_alignas] = ACTIONS(2255), + [anon_sym_explicit] = ACTIONS(2255), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(2255), + [anon_sym_operator] = ACTIONS(2255), + [anon_sym_friend] = ACTIONS(2255), + [anon_sym_public] = ACTIONS(2255), + [anon_sym_private] = ACTIONS(2255), + [anon_sym_protected] = ACTIONS(2255), + [anon_sym_using] = ACTIONS(2255), + [anon_sym_static_assert] = ACTIONS(2255), + [anon_sym_catch] = ACTIONS(5038), }, [2010] = { - [sym__expression] = STATE(3803), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(4931), + [aux_sym_preproc_def_token1] = ACTIONS(4931), + [aux_sym_preproc_if_token1] = ACTIONS(4931), + [aux_sym_preproc_if_token2] = ACTIONS(4931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4931), + [aux_sym_preproc_else_token1] = ACTIONS(4931), + [aux_sym_preproc_elif_token1] = ACTIONS(4931), + [sym_preproc_directive] = ACTIONS(4931), + [anon_sym_LPAREN2] = ACTIONS(4933), + [anon_sym_TILDE] = ACTIONS(4933), + [anon_sym_STAR] = ACTIONS(4933), + [anon_sym_AMP_AMP] = ACTIONS(4933), + [anon_sym_AMP] = ACTIONS(4931), + [anon_sym___extension__] = ACTIONS(4931), + [anon_sym_typedef] = ACTIONS(4931), + [anon_sym_extern] = ACTIONS(4931), + [anon_sym___attribute__] = ACTIONS(4931), + [anon_sym_COLON_COLON] = ACTIONS(4933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4933), + [anon_sym___declspec] = ACTIONS(4931), + [anon_sym___based] = 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_mutable] = ACTIONS(4931), + [anon_sym_constinit] = ACTIONS(4931), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4931), + [anon_sym_decltype] = ACTIONS(4931), + [anon_sym_virtual] = ACTIONS(4931), + [anon_sym_alignas] = 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_public] = ACTIONS(4931), + [anon_sym_private] = ACTIONS(4931), + [anon_sym_protected] = ACTIONS(4931), + [anon_sym_using] = ACTIONS(4931), + [anon_sym_static_assert] = ACTIONS(4931), }, [2011] = { - [sym__expression] = STATE(4959), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(4884), + [aux_sym_preproc_def_token1] = ACTIONS(4884), + [aux_sym_preproc_if_token1] = ACTIONS(4884), + [aux_sym_preproc_if_token2] = ACTIONS(4884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4884), + [aux_sym_preproc_else_token1] = ACTIONS(4884), + [aux_sym_preproc_elif_token1] = ACTIONS(4884), + [sym_preproc_directive] = ACTIONS(4884), + [anon_sym_LPAREN2] = ACTIONS(4886), + [anon_sym_TILDE] = ACTIONS(4886), + [anon_sym_STAR] = ACTIONS(4886), + [anon_sym_AMP_AMP] = ACTIONS(4886), + [anon_sym_AMP] = ACTIONS(4884), + [anon_sym___extension__] = ACTIONS(4884), + [anon_sym_typedef] = ACTIONS(4884), + [anon_sym_extern] = ACTIONS(4884), + [anon_sym___attribute__] = ACTIONS(4884), + [anon_sym_COLON_COLON] = ACTIONS(4886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4886), + [anon_sym___declspec] = ACTIONS(4884), + [anon_sym___based] = ACTIONS(4884), + [anon_sym_signed] = ACTIONS(4884), + [anon_sym_unsigned] = ACTIONS(4884), + [anon_sym_long] = ACTIONS(4884), + [anon_sym_short] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [anon_sym_static] = ACTIONS(4884), + [anon_sym_register] = ACTIONS(4884), + [anon_sym_inline] = ACTIONS(4884), + [anon_sym___inline] = ACTIONS(4884), + [anon_sym___inline__] = ACTIONS(4884), + [anon_sym___forceinline] = ACTIONS(4884), + [anon_sym_thread_local] = ACTIONS(4884), + [anon_sym___thread] = ACTIONS(4884), + [anon_sym_const] = ACTIONS(4884), + [anon_sym_constexpr] = ACTIONS(4884), + [anon_sym_volatile] = ACTIONS(4884), + [anon_sym_restrict] = ACTIONS(4884), + [anon_sym___restrict__] = ACTIONS(4884), + [anon_sym__Atomic] = ACTIONS(4884), + [anon_sym__Noreturn] = ACTIONS(4884), + [anon_sym_noreturn] = ACTIONS(4884), + [anon_sym_mutable] = ACTIONS(4884), + [anon_sym_constinit] = ACTIONS(4884), + [anon_sym_consteval] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(4884), + [anon_sym_enum] = ACTIONS(4884), + [anon_sym_class] = ACTIONS(4884), + [anon_sym_struct] = ACTIONS(4884), + [anon_sym_union] = ACTIONS(4884), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(4884), + [anon_sym_decltype] = ACTIONS(4884), + [anon_sym_virtual] = ACTIONS(4884), + [anon_sym_alignas] = ACTIONS(4884), + [anon_sym_explicit] = ACTIONS(4884), + [anon_sym_typename] = ACTIONS(4884), + [anon_sym_template] = ACTIONS(4884), + [anon_sym_operator] = ACTIONS(4884), + [anon_sym_friend] = ACTIONS(4884), + [anon_sym_public] = ACTIONS(4884), + [anon_sym_private] = ACTIONS(4884), + [anon_sym_protected] = ACTIONS(4884), + [anon_sym_using] = ACTIONS(4884), + [anon_sym_static_assert] = ACTIONS(4884), }, [2012] = { - [sym__expression] = STATE(5254), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(4790), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2828), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(4836), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_friend] = ACTIONS(2138), + [anon_sym_public] = ACTIONS(2138), + [anon_sym_private] = ACTIONS(2138), + [anon_sym_protected] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), }, [2013] = { - [sym__expression] = STATE(5255), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [aux_sym_concatenated_string_repeat1] = STATE(2022), + [sym_identifier] = ACTIONS(5275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_LPAREN2] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_PLUS] = ACTIONS(4842), + [anon_sym_STAR] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4842), + [anon_sym_PERCENT] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4842), + [anon_sym_AMP] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_LT_LT] = ACTIONS(4842), + [anon_sym_GT_GT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4842), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_STAR_EQ] = ACTIONS(4840), + [anon_sym_SLASH_EQ] = ACTIONS(4840), + [anon_sym_PERCENT_EQ] = ACTIONS(4840), + [anon_sym_PLUS_EQ] = ACTIONS(4840), + [anon_sym_DASH_EQ] = ACTIONS(4840), + [anon_sym_LT_LT_EQ] = ACTIONS(4840), + [anon_sym_GT_GT_EQ] = ACTIONS(4842), + [anon_sym_AMP_EQ] = ACTIONS(4840), + [anon_sym_CARET_EQ] = ACTIONS(4840), + [anon_sym_PIPE_EQ] = ACTIONS(4840), + [anon_sym_and_eq] = ACTIONS(4842), + [anon_sym_or_eq] = ACTIONS(4842), + [anon_sym_xor_eq] = ACTIONS(4842), + [anon_sym_LT_EQ_GT] = ACTIONS(4840), + [anon_sym_or] = ACTIONS(4842), + [anon_sym_and] = ACTIONS(4842), + [anon_sym_bitor] = ACTIONS(4842), + [anon_sym_xor] = ACTIONS(4842), + [anon_sym_bitand] = ACTIONS(4842), + [anon_sym_not_eq] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4840), + [anon_sym_PLUS_PLUS] = ACTIONS(4840), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_DOT_STAR] = ACTIONS(4840), + [anon_sym_DASH_GT] = ACTIONS(4840), + [anon_sym_L_DQUOTE] = ACTIONS(5277), + [anon_sym_u_DQUOTE] = ACTIONS(5277), + [anon_sym_U_DQUOTE] = ACTIONS(5277), + [anon_sym_u8_DQUOTE] = ACTIONS(5277), + [anon_sym_DQUOTE] = ACTIONS(5277), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(4840), + [anon_sym_R_DQUOTE] = ACTIONS(5279), + [anon_sym_LR_DQUOTE] = ACTIONS(5279), + [anon_sym_uR_DQUOTE] = ACTIONS(5279), + [anon_sym_UR_DQUOTE] = ACTIONS(5279), + [anon_sym_u8R_DQUOTE] = ACTIONS(5279), + [sym_literal_suffix] = ACTIONS(4842), }, [2014] = { - [sym__expression] = STATE(3797), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5154), + [anon_sym_COMMA] = ACTIONS(5154), + [anon_sym_RPAREN] = ACTIONS(5154), + [anon_sym_LPAREN2] = ACTIONS(5154), + [anon_sym_DASH] = ACTIONS(5152), + [anon_sym_PLUS] = ACTIONS(5152), + [anon_sym_STAR] = ACTIONS(5152), + [anon_sym_SLASH] = ACTIONS(5152), + [anon_sym_PERCENT] = ACTIONS(5152), + [anon_sym_PIPE_PIPE] = ACTIONS(5154), + [anon_sym_AMP_AMP] = ACTIONS(5154), + [anon_sym_PIPE] = ACTIONS(5152), + [anon_sym_CARET] = ACTIONS(5152), + [anon_sym_AMP] = ACTIONS(5152), + [anon_sym_EQ_EQ] = ACTIONS(5154), + [anon_sym_BANG_EQ] = ACTIONS(5154), + [anon_sym_GT] = ACTIONS(5152), + [anon_sym_GT_EQ] = ACTIONS(5154), + [anon_sym_LT_EQ] = ACTIONS(5152), + [anon_sym_LT] = ACTIONS(5152), + [anon_sym_LT_LT] = ACTIONS(5152), + [anon_sym_GT_GT] = ACTIONS(5152), + [anon_sym_SEMI] = ACTIONS(5154), + [anon_sym_RBRACE] = ACTIONS(5154), + [anon_sym_LBRACK] = ACTIONS(5154), + [anon_sym_RBRACK] = ACTIONS(5154), + [anon_sym_EQ] = ACTIONS(5152), + [anon_sym_COLON] = ACTIONS(5154), + [anon_sym_QMARK] = ACTIONS(5154), + [anon_sym_STAR_EQ] = ACTIONS(5154), + [anon_sym_SLASH_EQ] = ACTIONS(5154), + [anon_sym_PERCENT_EQ] = ACTIONS(5154), + [anon_sym_PLUS_EQ] = ACTIONS(5154), + [anon_sym_DASH_EQ] = ACTIONS(5154), + [anon_sym_LT_LT_EQ] = ACTIONS(5154), + [anon_sym_GT_GT_EQ] = ACTIONS(5154), + [anon_sym_AMP_EQ] = ACTIONS(5154), + [anon_sym_CARET_EQ] = ACTIONS(5154), + [anon_sym_PIPE_EQ] = ACTIONS(5154), + [anon_sym_and_eq] = ACTIONS(5152), + [anon_sym_or_eq] = ACTIONS(5152), + [anon_sym_xor_eq] = ACTIONS(5152), + [anon_sym_LT_EQ_GT] = ACTIONS(5154), + [anon_sym_or] = ACTIONS(5152), + [anon_sym_and] = ACTIONS(5152), + [anon_sym_bitor] = ACTIONS(5152), + [anon_sym_xor] = ACTIONS(5152), + [anon_sym_bitand] = ACTIONS(5152), + [anon_sym_not_eq] = ACTIONS(5152), + [anon_sym_DASH_DASH] = ACTIONS(5154), + [anon_sym_PLUS_PLUS] = ACTIONS(5154), + [anon_sym_DOT] = ACTIONS(5152), + [anon_sym_DOT_STAR] = ACTIONS(5154), + [anon_sym_DASH_GT] = ACTIONS(5154), + [anon_sym_L_DQUOTE] = ACTIONS(5154), + [anon_sym_u_DQUOTE] = ACTIONS(5154), + [anon_sym_U_DQUOTE] = ACTIONS(5154), + [anon_sym_u8_DQUOTE] = ACTIONS(5154), + [anon_sym_DQUOTE] = ACTIONS(5154), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5154), + [anon_sym_LR_DQUOTE] = ACTIONS(5154), + [anon_sym_uR_DQUOTE] = ACTIONS(5154), + [anon_sym_UR_DQUOTE] = ACTIONS(5154), + [anon_sym_u8R_DQUOTE] = ACTIONS(5154), + [sym_literal_suffix] = ACTIONS(5152), }, [2015] = { - [sym__expression] = STATE(5297), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3180), + [aux_sym_preproc_def_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token2] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3180), + [aux_sym_preproc_else_token1] = ACTIONS(3180), + [aux_sym_preproc_elif_token1] = ACTIONS(3180), + [sym_preproc_directive] = ACTIONS(3180), + [anon_sym_LPAREN2] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym___extension__] = ACTIONS(3180), + [anon_sym_typedef] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(3180), + [anon_sym___attribute__] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3182), + [anon_sym___declspec] = ACTIONS(3180), + [anon_sym___based] = ACTIONS(3180), + [anon_sym_signed] = ACTIONS(3180), + [anon_sym_unsigned] = ACTIONS(3180), + [anon_sym_long] = ACTIONS(3180), + [anon_sym_short] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_register] = ACTIONS(3180), + [anon_sym_inline] = ACTIONS(3180), + [anon_sym___inline] = ACTIONS(3180), + [anon_sym___inline__] = ACTIONS(3180), + [anon_sym___forceinline] = ACTIONS(3180), + [anon_sym_thread_local] = ACTIONS(3180), + [anon_sym___thread] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym___restrict__] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym__Noreturn] = ACTIONS(3180), + [anon_sym_noreturn] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3180), + [anon_sym_union] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3180), + [anon_sym_decltype] = ACTIONS(3180), + [anon_sym_virtual] = ACTIONS(3180), + [anon_sym_alignas] = ACTIONS(3180), + [anon_sym_explicit] = ACTIONS(3180), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(3180), + [anon_sym_operator] = ACTIONS(3180), + [anon_sym_friend] = ACTIONS(3180), + [anon_sym_public] = ACTIONS(3180), + [anon_sym_private] = ACTIONS(3180), + [anon_sym_protected] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_static_assert] = ACTIONS(3180), }, [2016] = { - [sym__expression] = STATE(3835), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token2] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2828), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_friend] = ACTIONS(2138), + [anon_sym_public] = ACTIONS(2138), + [anon_sym_private] = ACTIONS(2138), + [anon_sym_protected] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), }, [2017] = { - [sym__expression] = STATE(5278), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3176), + [aux_sym_preproc_def_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token2] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), + [aux_sym_preproc_else_token1] = ACTIONS(3176), + [aux_sym_preproc_elif_token1] = ACTIONS(3176), + [sym_preproc_directive] = ACTIONS(3176), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3176), + [anon_sym___extension__] = ACTIONS(3176), + [anon_sym_typedef] = ACTIONS(3176), + [anon_sym_extern] = ACTIONS(3176), + [anon_sym___attribute__] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(3178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), + [anon_sym___declspec] = ACTIONS(3176), + [anon_sym___based] = ACTIONS(3176), + [anon_sym_signed] = ACTIONS(3176), + [anon_sym_unsigned] = ACTIONS(3176), + [anon_sym_long] = ACTIONS(3176), + [anon_sym_short] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_register] = ACTIONS(3176), + [anon_sym_inline] = ACTIONS(3176), + [anon_sym___inline] = ACTIONS(3176), + [anon_sym___inline__] = ACTIONS(3176), + [anon_sym___forceinline] = ACTIONS(3176), + [anon_sym_thread_local] = ACTIONS(3176), + [anon_sym___thread] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_constexpr] = ACTIONS(3176), + [anon_sym_volatile] = ACTIONS(3176), + [anon_sym_restrict] = ACTIONS(3176), + [anon_sym___restrict__] = ACTIONS(3176), + [anon_sym__Atomic] = ACTIONS(3176), + [anon_sym__Noreturn] = ACTIONS(3176), + [anon_sym_noreturn] = ACTIONS(3176), + [anon_sym_mutable] = ACTIONS(3176), + [anon_sym_constinit] = ACTIONS(3176), + [anon_sym_consteval] = ACTIONS(3176), + [sym_primitive_type] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3176), + [anon_sym_virtual] = ACTIONS(3176), + [anon_sym_alignas] = ACTIONS(3176), + [anon_sym_explicit] = ACTIONS(3176), + [anon_sym_typename] = ACTIONS(3176), + [anon_sym_template] = ACTIONS(3176), + [anon_sym_operator] = ACTIONS(3176), + [anon_sym_friend] = ACTIONS(3176), + [anon_sym_public] = ACTIONS(3176), + [anon_sym_private] = ACTIONS(3176), + [anon_sym_protected] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_static_assert] = ACTIONS(3176), }, [2018] = { - [sym__expression] = STATE(5250), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3172), + [aux_sym_preproc_def_token1] = ACTIONS(3172), + [aux_sym_preproc_if_token1] = ACTIONS(3172), + [aux_sym_preproc_if_token2] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3172), + [aux_sym_preproc_else_token1] = ACTIONS(3172), + [aux_sym_preproc_elif_token1] = ACTIONS(3172), + [sym_preproc_directive] = ACTIONS(3172), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym___extension__] = ACTIONS(3172), + [anon_sym_typedef] = ACTIONS(3172), + [anon_sym_extern] = ACTIONS(3172), + [anon_sym___attribute__] = ACTIONS(3172), + [anon_sym_COLON_COLON] = ACTIONS(3174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3174), + [anon_sym___declspec] = ACTIONS(3172), + [anon_sym___based] = ACTIONS(3172), + [anon_sym_signed] = ACTIONS(3172), + [anon_sym_unsigned] = ACTIONS(3172), + [anon_sym_long] = ACTIONS(3172), + [anon_sym_short] = ACTIONS(3172), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3172), + [anon_sym_register] = ACTIONS(3172), + [anon_sym_inline] = ACTIONS(3172), + [anon_sym___inline] = ACTIONS(3172), + [anon_sym___inline__] = ACTIONS(3172), + [anon_sym___forceinline] = ACTIONS(3172), + [anon_sym_thread_local] = ACTIONS(3172), + [anon_sym___thread] = ACTIONS(3172), + [anon_sym_const] = ACTIONS(3172), + [anon_sym_constexpr] = ACTIONS(3172), + [anon_sym_volatile] = ACTIONS(3172), + [anon_sym_restrict] = ACTIONS(3172), + [anon_sym___restrict__] = ACTIONS(3172), + [anon_sym__Atomic] = ACTIONS(3172), + [anon_sym__Noreturn] = ACTIONS(3172), + [anon_sym_noreturn] = ACTIONS(3172), + [anon_sym_mutable] = ACTIONS(3172), + [anon_sym_constinit] = ACTIONS(3172), + [anon_sym_consteval] = ACTIONS(3172), + [sym_primitive_type] = ACTIONS(3172), + [anon_sym_enum] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3172), + [anon_sym_union] = ACTIONS(3172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3172), + [anon_sym_decltype] = ACTIONS(3172), + [anon_sym_virtual] = ACTIONS(3172), + [anon_sym_alignas] = ACTIONS(3172), + [anon_sym_explicit] = ACTIONS(3172), + [anon_sym_typename] = ACTIONS(3172), + [anon_sym_template] = ACTIONS(3172), + [anon_sym_operator] = ACTIONS(3172), + [anon_sym_friend] = ACTIONS(3172), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3172), + [anon_sym_static_assert] = ACTIONS(3172), }, [2019] = { - [sym__expression] = STATE(5392), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(4792), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym__declaration_modifiers] = STATE(3444), + [sym_attribute_specifier] = STATE(3444), + [sym_attribute_declaration] = STATE(3444), + [sym_ms_declspec_modifier] = STATE(3444), + [sym_storage_class_specifier] = STATE(3444), + [sym_type_qualifier] = STATE(3444), + [sym__type_specifier] = STATE(2736), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3444), + [sym_alignas_specifier] = STATE(3444), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(3444), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4633), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), }, [2020] = { - [sym__expression] = STATE(5399), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym__declaration_modifiers] = STATE(3444), + [sym_attribute_specifier] = STATE(3444), + [sym_attribute_declaration] = STATE(3444), + [sym_ms_declspec_modifier] = STATE(3444), + [sym_storage_class_specifier] = STATE(3444), + [sym_type_qualifier] = STATE(3444), + [sym__type_specifier] = STATE(2736), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3444), + [sym_alignas_specifier] = STATE(3444), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5953), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(3444), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4601), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_class] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1924), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(1948), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), }, [2021] = { - [sym__expression] = STATE(5251), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(2013), + [sym_raw_string_literal] = STATE(2013), + [aux_sym_concatenated_string_repeat1] = STATE(2013), + [sym_identifier] = ACTIONS(5281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_LPAREN2] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_PLUS] = ACTIONS(4814), + [anon_sym_STAR] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4814), + [anon_sym_PERCENT] = ACTIONS(4814), + [anon_sym_PIPE_PIPE] = ACTIONS(4812), + [anon_sym_AMP_AMP] = ACTIONS(4812), + [anon_sym_PIPE] = ACTIONS(4814), + [anon_sym_CARET] = ACTIONS(4814), + [anon_sym_AMP] = ACTIONS(4814), + [anon_sym_EQ_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ] = ACTIONS(4812), + [anon_sym_GT] = ACTIONS(4814), + [anon_sym_GT_EQ] = ACTIONS(4814), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_LT_LT] = ACTIONS(4814), + [anon_sym_GT_GT] = ACTIONS(4814), + [anon_sym_LBRACK] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4814), + [anon_sym_QMARK] = ACTIONS(4812), + [anon_sym_STAR_EQ] = ACTIONS(4812), + [anon_sym_SLASH_EQ] = ACTIONS(4812), + [anon_sym_PERCENT_EQ] = ACTIONS(4812), + [anon_sym_PLUS_EQ] = ACTIONS(4812), + [anon_sym_DASH_EQ] = ACTIONS(4812), + [anon_sym_LT_LT_EQ] = ACTIONS(4812), + [anon_sym_GT_GT_EQ] = ACTIONS(4814), + [anon_sym_AMP_EQ] = ACTIONS(4812), + [anon_sym_CARET_EQ] = ACTIONS(4812), + [anon_sym_PIPE_EQ] = ACTIONS(4812), + [anon_sym_and_eq] = ACTIONS(4814), + [anon_sym_or_eq] = ACTIONS(4814), + [anon_sym_xor_eq] = ACTIONS(4814), + [anon_sym_LT_EQ_GT] = ACTIONS(4812), + [anon_sym_or] = ACTIONS(4814), + [anon_sym_and] = ACTIONS(4814), + [anon_sym_bitor] = ACTIONS(4814), + [anon_sym_xor] = ACTIONS(4814), + [anon_sym_bitand] = ACTIONS(4814), + [anon_sym_not_eq] = ACTIONS(4814), + [anon_sym_DASH_DASH] = ACTIONS(4812), + [anon_sym_PLUS_PLUS] = ACTIONS(4812), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_DOT_STAR] = ACTIONS(4812), + [anon_sym_DASH_GT] = ACTIONS(4812), + [anon_sym_L_DQUOTE] = ACTIONS(5277), + [anon_sym_u_DQUOTE] = ACTIONS(5277), + [anon_sym_U_DQUOTE] = ACTIONS(5277), + [anon_sym_u8_DQUOTE] = ACTIONS(5277), + [anon_sym_DQUOTE] = ACTIONS(5277), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(4812), + [anon_sym_R_DQUOTE] = ACTIONS(5279), + [anon_sym_LR_DQUOTE] = ACTIONS(5279), + [anon_sym_uR_DQUOTE] = ACTIONS(5279), + [anon_sym_UR_DQUOTE] = ACTIONS(5279), + [anon_sym_u8R_DQUOTE] = ACTIONS(5279), + [sym_literal_suffix] = ACTIONS(4814), }, [2022] = { - [sym__expression] = STATE(5256), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [aux_sym_concatenated_string_repeat1] = STATE(2022), + [sym_identifier] = ACTIONS(5283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4823), + [anon_sym_COMMA] = ACTIONS(4823), + [anon_sym_LPAREN2] = ACTIONS(4823), + [anon_sym_DASH] = ACTIONS(4825), + [anon_sym_PLUS] = ACTIONS(4825), + [anon_sym_STAR] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4825), + [anon_sym_PERCENT] = ACTIONS(4825), + [anon_sym_PIPE_PIPE] = ACTIONS(4823), + [anon_sym_AMP_AMP] = ACTIONS(4823), + [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_AMP] = ACTIONS(4825), + [anon_sym_EQ_EQ] = ACTIONS(4823), + [anon_sym_BANG_EQ] = ACTIONS(4823), + [anon_sym_GT] = ACTIONS(4825), + [anon_sym_GT_EQ] = ACTIONS(4825), + [anon_sym_LT_EQ] = ACTIONS(4825), + [anon_sym_LT] = ACTIONS(4825), + [anon_sym_LT_LT] = ACTIONS(4825), + [anon_sym_GT_GT] = ACTIONS(4825), + [anon_sym_LBRACK] = ACTIONS(4823), + [anon_sym_EQ] = ACTIONS(4825), + [anon_sym_QMARK] = ACTIONS(4823), + [anon_sym_STAR_EQ] = ACTIONS(4823), + [anon_sym_SLASH_EQ] = ACTIONS(4823), + [anon_sym_PERCENT_EQ] = ACTIONS(4823), + [anon_sym_PLUS_EQ] = ACTIONS(4823), + [anon_sym_DASH_EQ] = ACTIONS(4823), + [anon_sym_LT_LT_EQ] = ACTIONS(4823), + [anon_sym_GT_GT_EQ] = ACTIONS(4825), + [anon_sym_AMP_EQ] = ACTIONS(4823), + [anon_sym_CARET_EQ] = ACTIONS(4823), + [anon_sym_PIPE_EQ] = ACTIONS(4823), + [anon_sym_and_eq] = ACTIONS(4825), + [anon_sym_or_eq] = ACTIONS(4825), + [anon_sym_xor_eq] = ACTIONS(4825), + [anon_sym_LT_EQ_GT] = ACTIONS(4823), + [anon_sym_or] = ACTIONS(4825), + [anon_sym_and] = ACTIONS(4825), + [anon_sym_bitor] = ACTIONS(4825), + [anon_sym_xor] = ACTIONS(4825), + [anon_sym_bitand] = ACTIONS(4825), + [anon_sym_not_eq] = ACTIONS(4825), + [anon_sym_DASH_DASH] = ACTIONS(4823), + [anon_sym_PLUS_PLUS] = ACTIONS(4823), + [anon_sym_DOT] = ACTIONS(4825), + [anon_sym_DOT_STAR] = ACTIONS(4823), + [anon_sym_DASH_GT] = ACTIONS(4823), + [anon_sym_L_DQUOTE] = ACTIONS(5286), + [anon_sym_u_DQUOTE] = ACTIONS(5286), + [anon_sym_U_DQUOTE] = ACTIONS(5286), + [anon_sym_u8_DQUOTE] = ACTIONS(5286), + [anon_sym_DQUOTE] = ACTIONS(5286), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(4823), + [anon_sym_R_DQUOTE] = ACTIONS(5289), + [anon_sym_LR_DQUOTE] = ACTIONS(5289), + [anon_sym_uR_DQUOTE] = ACTIONS(5289), + [anon_sym_UR_DQUOTE] = ACTIONS(5289), + [anon_sym_u8R_DQUOTE] = ACTIONS(5289), + [sym_literal_suffix] = ACTIONS(4825), }, [2023] = { - [sym__expression] = STATE(3974), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), + [sym_identifier] = ACTIONS(3273), + [anon_sym_LPAREN2] = ACTIONS(3275), + [anon_sym_BANG] = ACTIONS(3275), + [anon_sym_TILDE] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3273), + [anon_sym_STAR] = ACTIONS(3275), + [anon_sym_AMP] = ACTIONS(3275), + [anon_sym___extension__] = ACTIONS(3273), + [anon_sym_COLON_COLON] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_RBRACK] = ACTIONS(3275), + [anon_sym_const] = ACTIONS(3273), + [anon_sym_constexpr] = ACTIONS(3273), + [anon_sym_volatile] = ACTIONS(3273), + [anon_sym_restrict] = ACTIONS(3273), + [anon_sym___restrict__] = ACTIONS(3273), + [anon_sym__Atomic] = ACTIONS(3273), + [anon_sym__Noreturn] = ACTIONS(3273), + [anon_sym_noreturn] = ACTIONS(3273), + [anon_sym_mutable] = ACTIONS(3273), + [anon_sym_constinit] = ACTIONS(3273), + [anon_sym_consteval] = ACTIONS(3273), + [sym_primitive_type] = ACTIONS(3273), + [anon_sym_not] = ACTIONS(3273), + [anon_sym_compl] = ACTIONS(3273), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(3273), + [anon_sym___alignof__] = ACTIONS(3273), + [anon_sym___alignof] = ACTIONS(3273), + [anon_sym__alignof] = ACTIONS(3273), + [anon_sym_alignof] = ACTIONS(3273), + [anon_sym__Alignof] = ACTIONS(3273), + [anon_sym_offsetof] = ACTIONS(3273), + [anon_sym__Generic] = ACTIONS(3273), + [anon_sym_asm] = ACTIONS(3273), + [anon_sym___asm__] = ACTIONS(3273), + [sym_number_literal] = ACTIONS(3275), + [anon_sym_L_SQUOTE] = ACTIONS(3275), + [anon_sym_u_SQUOTE] = ACTIONS(3275), + [anon_sym_U_SQUOTE] = ACTIONS(3275), + [anon_sym_u8_SQUOTE] = ACTIONS(3275), + [anon_sym_SQUOTE] = ACTIONS(3275), + [anon_sym_L_DQUOTE] = ACTIONS(3275), + [anon_sym_u_DQUOTE] = ACTIONS(3275), + [anon_sym_U_DQUOTE] = ACTIONS(3275), + [anon_sym_u8_DQUOTE] = ACTIONS(3275), + [anon_sym_DQUOTE] = ACTIONS(3275), + [sym_true] = ACTIONS(3273), + [sym_false] = ACTIONS(3273), + [anon_sym_NULL] = ACTIONS(3273), + [anon_sym_nullptr] = ACTIONS(3273), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3273), + [anon_sym_template] = ACTIONS(3273), + [anon_sym_delete] = ACTIONS(3273), + [anon_sym_R_DQUOTE] = ACTIONS(3275), + [anon_sym_LR_DQUOTE] = ACTIONS(3275), + [anon_sym_uR_DQUOTE] = ACTIONS(3275), + [anon_sym_UR_DQUOTE] = ACTIONS(3275), + [anon_sym_u8R_DQUOTE] = ACTIONS(3275), + [anon_sym_co_await] = ACTIONS(3273), + [anon_sym_new] = ACTIONS(3273), + [anon_sym_requires] = ACTIONS(3273), + [sym_this] = ACTIONS(3273), }, [2024] = { - [sym__expression] = STATE(5155), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token2] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2828), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(4836), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_friend] = ACTIONS(2138), + [anon_sym_public] = ACTIONS(2138), + [anon_sym_private] = ACTIONS(2138), + [anon_sym_protected] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), }, [2025] = { - [sym__expression] = STATE(5333), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3188), + [aux_sym_preproc_def_token1] = ACTIONS(3188), + [aux_sym_preproc_if_token1] = ACTIONS(3188), + [aux_sym_preproc_if_token2] = ACTIONS(3188), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3188), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3188), + [aux_sym_preproc_else_token1] = ACTIONS(3188), + [aux_sym_preproc_elif_token1] = ACTIONS(3188), + [sym_preproc_directive] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_AMP_AMP] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym___extension__] = ACTIONS(3188), + [anon_sym_typedef] = ACTIONS(3188), + [anon_sym_extern] = ACTIONS(3188), + [anon_sym___attribute__] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3190), + [anon_sym___declspec] = ACTIONS(3188), + [anon_sym___based] = ACTIONS(3188), + [anon_sym_signed] = ACTIONS(3188), + [anon_sym_unsigned] = ACTIONS(3188), + [anon_sym_long] = ACTIONS(3188), + [anon_sym_short] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_register] = ACTIONS(3188), + [anon_sym_inline] = ACTIONS(3188), + [anon_sym___inline] = ACTIONS(3188), + [anon_sym___inline__] = ACTIONS(3188), + [anon_sym___forceinline] = ACTIONS(3188), + [anon_sym_thread_local] = ACTIONS(3188), + [anon_sym___thread] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_constexpr] = ACTIONS(3188), + [anon_sym_volatile] = ACTIONS(3188), + [anon_sym_restrict] = ACTIONS(3188), + [anon_sym___restrict__] = ACTIONS(3188), + [anon_sym__Atomic] = ACTIONS(3188), + [anon_sym__Noreturn] = ACTIONS(3188), + [anon_sym_noreturn] = ACTIONS(3188), + [anon_sym_mutable] = ACTIONS(3188), + [anon_sym_constinit] = ACTIONS(3188), + [anon_sym_consteval] = ACTIONS(3188), + [sym_primitive_type] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_struct] = ACTIONS(3188), + [anon_sym_union] = ACTIONS(3188), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3188), + [anon_sym_decltype] = ACTIONS(3188), + [anon_sym_virtual] = ACTIONS(3188), + [anon_sym_alignas] = ACTIONS(3188), + [anon_sym_explicit] = ACTIONS(3188), + [anon_sym_typename] = ACTIONS(3188), + [anon_sym_template] = ACTIONS(3188), + [anon_sym_operator] = ACTIONS(3188), + [anon_sym_friend] = ACTIONS(3188), + [anon_sym_public] = ACTIONS(3188), + [anon_sym_private] = ACTIONS(3188), + [anon_sym_protected] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3188), + [anon_sym_static_assert] = ACTIONS(3188), }, [2026] = { - [sym__expression] = STATE(5262), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5014), + [aux_sym_preproc_def_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token2] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5014), + [aux_sym_preproc_else_token1] = ACTIONS(5014), + [aux_sym_preproc_elif_token1] = ACTIONS(5014), + [sym_preproc_directive] = ACTIONS(5014), + [anon_sym_LPAREN2] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym___extension__] = ACTIONS(5014), + [anon_sym_typedef] = ACTIONS(5014), + [anon_sym_extern] = ACTIONS(5014), + [anon_sym___attribute__] = ACTIONS(5014), + [anon_sym_COLON_COLON] = ACTIONS(5016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5016), + [anon_sym___declspec] = ACTIONS(5014), + [anon_sym___based] = ACTIONS(5014), + [anon_sym_signed] = ACTIONS(5014), + [anon_sym_unsigned] = ACTIONS(5014), + [anon_sym_long] = ACTIONS(5014), + [anon_sym_short] = ACTIONS(5014), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_static] = ACTIONS(5014), + [anon_sym_register] = ACTIONS(5014), + [anon_sym_inline] = ACTIONS(5014), + [anon_sym___inline] = ACTIONS(5014), + [anon_sym___inline__] = ACTIONS(5014), + [anon_sym___forceinline] = ACTIONS(5014), + [anon_sym_thread_local] = ACTIONS(5014), + [anon_sym___thread] = ACTIONS(5014), + [anon_sym_const] = ACTIONS(5014), + [anon_sym_constexpr] = ACTIONS(5014), + [anon_sym_volatile] = ACTIONS(5014), + [anon_sym_restrict] = ACTIONS(5014), + [anon_sym___restrict__] = ACTIONS(5014), + [anon_sym__Atomic] = ACTIONS(5014), + [anon_sym__Noreturn] = ACTIONS(5014), + [anon_sym_noreturn] = ACTIONS(5014), + [anon_sym_mutable] = ACTIONS(5014), + [anon_sym_constinit] = ACTIONS(5014), + [anon_sym_consteval] = ACTIONS(5014), + [sym_primitive_type] = ACTIONS(5014), + [anon_sym_enum] = ACTIONS(5014), + [anon_sym_class] = ACTIONS(5014), + [anon_sym_struct] = ACTIONS(5014), + [anon_sym_union] = ACTIONS(5014), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5014), + [anon_sym_decltype] = ACTIONS(5014), + [anon_sym_virtual] = ACTIONS(5014), + [anon_sym_alignas] = ACTIONS(5014), + [anon_sym_explicit] = ACTIONS(5014), + [anon_sym_typename] = ACTIONS(5014), + [anon_sym_template] = ACTIONS(5014), + [anon_sym_operator] = ACTIONS(5014), + [anon_sym_friend] = ACTIONS(5014), + [anon_sym_public] = ACTIONS(5014), + [anon_sym_private] = ACTIONS(5014), + [anon_sym_protected] = ACTIONS(5014), + [anon_sym_using] = ACTIONS(5014), + [anon_sym_static_assert] = ACTIONS(5014), }, [2027] = { - [sym__expression] = STATE(5261), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5014), + [aux_sym_preproc_def_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token2] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5014), + [aux_sym_preproc_else_token1] = ACTIONS(5014), + [aux_sym_preproc_elif_token1] = ACTIONS(5014), + [sym_preproc_directive] = ACTIONS(5014), + [anon_sym_LPAREN2] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym___extension__] = ACTIONS(5014), + [anon_sym_typedef] = ACTIONS(5014), + [anon_sym_extern] = ACTIONS(5014), + [anon_sym___attribute__] = ACTIONS(5014), + [anon_sym_COLON_COLON] = ACTIONS(5016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5016), + [anon_sym___declspec] = ACTIONS(5014), + [anon_sym___based] = ACTIONS(5014), + [anon_sym_signed] = ACTIONS(5014), + [anon_sym_unsigned] = ACTIONS(5014), + [anon_sym_long] = ACTIONS(5014), + [anon_sym_short] = ACTIONS(5014), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_static] = ACTIONS(5014), + [anon_sym_register] = ACTIONS(5014), + [anon_sym_inline] = ACTIONS(5014), + [anon_sym___inline] = ACTIONS(5014), + [anon_sym___inline__] = ACTIONS(5014), + [anon_sym___forceinline] = ACTIONS(5014), + [anon_sym_thread_local] = ACTIONS(5014), + [anon_sym___thread] = ACTIONS(5014), + [anon_sym_const] = ACTIONS(5014), + [anon_sym_constexpr] = ACTIONS(5014), + [anon_sym_volatile] = ACTIONS(5014), + [anon_sym_restrict] = ACTIONS(5014), + [anon_sym___restrict__] = ACTIONS(5014), + [anon_sym__Atomic] = ACTIONS(5014), + [anon_sym__Noreturn] = ACTIONS(5014), + [anon_sym_noreturn] = ACTIONS(5014), + [anon_sym_mutable] = ACTIONS(5014), + [anon_sym_constinit] = ACTIONS(5014), + [anon_sym_consteval] = ACTIONS(5014), + [sym_primitive_type] = ACTIONS(5014), + [anon_sym_enum] = ACTIONS(5014), + [anon_sym_class] = ACTIONS(5014), + [anon_sym_struct] = ACTIONS(5014), + [anon_sym_union] = ACTIONS(5014), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5014), + [anon_sym_decltype] = ACTIONS(5014), + [anon_sym_virtual] = ACTIONS(5014), + [anon_sym_alignas] = ACTIONS(5014), + [anon_sym_explicit] = ACTIONS(5014), + [anon_sym_typename] = ACTIONS(5014), + [anon_sym_template] = ACTIONS(5014), + [anon_sym_operator] = ACTIONS(5014), + [anon_sym_friend] = ACTIONS(5014), + [anon_sym_public] = ACTIONS(5014), + [anon_sym_private] = ACTIONS(5014), + [anon_sym_protected] = ACTIONS(5014), + [anon_sym_using] = ACTIONS(5014), + [anon_sym_static_assert] = ACTIONS(5014), }, [2028] = { - [sym__expression] = STATE(5161), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(4794), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [sym_identifier] = ACTIONS(4983), + [aux_sym_preproc_def_token1] = ACTIONS(4983), + [aux_sym_preproc_if_token1] = ACTIONS(4983), + [aux_sym_preproc_if_token2] = ACTIONS(4983), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4983), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4983), + [aux_sym_preproc_else_token1] = ACTIONS(4983), + [aux_sym_preproc_elif_token1] = ACTIONS(4983), + [sym_preproc_directive] = ACTIONS(4983), + [anon_sym_LPAREN2] = ACTIONS(4985), + [anon_sym_TILDE] = ACTIONS(4985), + [anon_sym_STAR] = ACTIONS(4985), + [anon_sym_AMP_AMP] = ACTIONS(4985), + [anon_sym_AMP] = ACTIONS(4983), + [anon_sym___extension__] = ACTIONS(4983), + [anon_sym_typedef] = ACTIONS(4983), + [anon_sym_extern] = ACTIONS(4983), + [anon_sym___attribute__] = ACTIONS(4983), + [anon_sym_COLON_COLON] = ACTIONS(4985), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4985), + [anon_sym___declspec] = ACTIONS(4983), + [anon_sym___based] = ACTIONS(4983), + [anon_sym_signed] = ACTIONS(4983), + [anon_sym_unsigned] = ACTIONS(4983), + [anon_sym_long] = ACTIONS(4983), + [anon_sym_short] = ACTIONS(4983), + [anon_sym_LBRACK] = ACTIONS(4983), + [anon_sym_static] = ACTIONS(4983), + [anon_sym_register] = ACTIONS(4983), + [anon_sym_inline] = ACTIONS(4983), + [anon_sym___inline] = ACTIONS(4983), + [anon_sym___inline__] = ACTIONS(4983), + [anon_sym___forceinline] = ACTIONS(4983), + [anon_sym_thread_local] = ACTIONS(4983), + [anon_sym___thread] = ACTIONS(4983), + [anon_sym_const] = ACTIONS(4983), + [anon_sym_constexpr] = ACTIONS(4983), + [anon_sym_volatile] = ACTIONS(4983), + [anon_sym_restrict] = ACTIONS(4983), + [anon_sym___restrict__] = ACTIONS(4983), + [anon_sym__Atomic] = ACTIONS(4983), + [anon_sym__Noreturn] = ACTIONS(4983), + [anon_sym_noreturn] = ACTIONS(4983), + [anon_sym_mutable] = ACTIONS(4983), + [anon_sym_constinit] = ACTIONS(4983), + [anon_sym_consteval] = ACTIONS(4983), + [sym_primitive_type] = ACTIONS(4983), + [anon_sym_enum] = ACTIONS(4983), + [anon_sym_class] = ACTIONS(4983), + [anon_sym_struct] = ACTIONS(4983), + [anon_sym_union] = ACTIONS(4983), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4983), + [anon_sym_decltype] = ACTIONS(4983), + [anon_sym_virtual] = ACTIONS(4983), + [anon_sym_alignas] = ACTIONS(4983), + [anon_sym_explicit] = ACTIONS(4983), + [anon_sym_typename] = ACTIONS(4983), + [anon_sym_template] = ACTIONS(4983), + [anon_sym_operator] = ACTIONS(4983), + [anon_sym_friend] = ACTIONS(4983), + [anon_sym_public] = ACTIONS(4983), + [anon_sym_private] = ACTIONS(4983), + [anon_sym_protected] = ACTIONS(4983), + [anon_sym_using] = ACTIONS(4983), + [anon_sym_static_assert] = ACTIONS(4983), }, [2029] = { - [sym__expression] = STATE(3956), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), + [sym_identifier] = ACTIONS(5010), + [aux_sym_preproc_def_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token2] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5010), + [aux_sym_preproc_else_token1] = ACTIONS(5010), + [aux_sym_preproc_elif_token1] = ACTIONS(5010), + [sym_preproc_directive] = ACTIONS(5010), + [anon_sym_LPAREN2] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym___extension__] = ACTIONS(5010), + [anon_sym_typedef] = ACTIONS(5010), + [anon_sym_extern] = ACTIONS(5010), + [anon_sym___attribute__] = ACTIONS(5010), + [anon_sym_COLON_COLON] = ACTIONS(5012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5012), + [anon_sym___declspec] = ACTIONS(5010), + [anon_sym___based] = ACTIONS(5010), + [anon_sym_signed] = ACTIONS(5010), + [anon_sym_unsigned] = ACTIONS(5010), + [anon_sym_long] = ACTIONS(5010), + [anon_sym_short] = ACTIONS(5010), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_static] = ACTIONS(5010), + [anon_sym_register] = ACTIONS(5010), + [anon_sym_inline] = ACTIONS(5010), + [anon_sym___inline] = ACTIONS(5010), + [anon_sym___inline__] = ACTIONS(5010), + [anon_sym___forceinline] = ACTIONS(5010), + [anon_sym_thread_local] = ACTIONS(5010), + [anon_sym___thread] = ACTIONS(5010), + [anon_sym_const] = ACTIONS(5010), + [anon_sym_constexpr] = ACTIONS(5010), + [anon_sym_volatile] = ACTIONS(5010), + [anon_sym_restrict] = ACTIONS(5010), + [anon_sym___restrict__] = ACTIONS(5010), + [anon_sym__Atomic] = ACTIONS(5010), + [anon_sym__Noreturn] = ACTIONS(5010), + [anon_sym_noreturn] = ACTIONS(5010), + [anon_sym_mutable] = ACTIONS(5010), + [anon_sym_constinit] = ACTIONS(5010), + [anon_sym_consteval] = ACTIONS(5010), + [sym_primitive_type] = ACTIONS(5010), + [anon_sym_enum] = ACTIONS(5010), + [anon_sym_class] = ACTIONS(5010), + [anon_sym_struct] = ACTIONS(5010), + [anon_sym_union] = ACTIONS(5010), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5010), + [anon_sym_decltype] = ACTIONS(5010), + [anon_sym_virtual] = ACTIONS(5010), + [anon_sym_alignas] = ACTIONS(5010), + [anon_sym_explicit] = ACTIONS(5010), + [anon_sym_typename] = ACTIONS(5010), + [anon_sym_template] = ACTIONS(5010), + [anon_sym_operator] = ACTIONS(5010), + [anon_sym_friend] = ACTIONS(5010), + [anon_sym_public] = ACTIONS(5010), + [anon_sym_private] = ACTIONS(5010), + [anon_sym_protected] = ACTIONS(5010), + [anon_sym_using] = ACTIONS(5010), + [anon_sym_static_assert] = ACTIONS(5010), }, [2030] = { - [sym__expression] = STATE(5260), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(2844), + [aux_sym_preproc_def_token1] = ACTIONS(2844), + [aux_sym_preproc_if_token1] = ACTIONS(2844), + [aux_sym_preproc_if_token2] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2844), + [aux_sym_preproc_else_token1] = ACTIONS(2844), + [aux_sym_preproc_elif_token1] = ACTIONS(2844), + [sym_preproc_directive] = ACTIONS(2844), + [anon_sym_LPAREN2] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_AMP_AMP] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2844), + [anon_sym___extension__] = ACTIONS(2844), + [anon_sym_typedef] = ACTIONS(2844), + [anon_sym_extern] = ACTIONS(2844), + [anon_sym___attribute__] = ACTIONS(2844), + [anon_sym_COLON_COLON] = ACTIONS(2846), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2846), + [anon_sym___declspec] = ACTIONS(2844), + [anon_sym___based] = ACTIONS(2844), + [anon_sym_signed] = ACTIONS(2844), + [anon_sym_unsigned] = ACTIONS(2844), + [anon_sym_long] = ACTIONS(2844), + [anon_sym_short] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_register] = ACTIONS(2844), + [anon_sym_inline] = ACTIONS(2844), + [anon_sym___inline] = ACTIONS(2844), + [anon_sym___inline__] = ACTIONS(2844), + [anon_sym___forceinline] = ACTIONS(2844), + [anon_sym_thread_local] = ACTIONS(2844), + [anon_sym___thread] = ACTIONS(2844), + [anon_sym_const] = ACTIONS(2844), + [anon_sym_constexpr] = ACTIONS(2844), + [anon_sym_volatile] = ACTIONS(2844), + [anon_sym_restrict] = ACTIONS(2844), + [anon_sym___restrict__] = ACTIONS(2844), + [anon_sym__Atomic] = ACTIONS(2844), + [anon_sym__Noreturn] = ACTIONS(2844), + [anon_sym_noreturn] = ACTIONS(2844), + [anon_sym_mutable] = ACTIONS(2844), + [anon_sym_constinit] = ACTIONS(2844), + [anon_sym_consteval] = ACTIONS(2844), + [sym_primitive_type] = ACTIONS(2844), + [anon_sym_enum] = ACTIONS(2844), + [anon_sym_class] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2844), + [anon_sym_union] = ACTIONS(2844), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2844), + [anon_sym_decltype] = ACTIONS(2844), + [anon_sym_virtual] = ACTIONS(2844), + [anon_sym_alignas] = ACTIONS(2844), + [anon_sym_explicit] = ACTIONS(2844), + [anon_sym_typename] = ACTIONS(2844), + [anon_sym_template] = ACTIONS(2844), + [anon_sym_operator] = ACTIONS(2844), + [anon_sym_friend] = ACTIONS(2844), + [anon_sym_public] = ACTIONS(2844), + [anon_sym_private] = ACTIONS(2844), + [anon_sym_protected] = ACTIONS(2844), + [anon_sym_using] = ACTIONS(2844), + [anon_sym_static_assert] = ACTIONS(2844), }, [2031] = { - [sym__expression] = STATE(5035), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token2] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [aux_sym_preproc_else_token1] = ACTIONS(3168), + [aux_sym_preproc_elif_token1] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3170), + [anon_sym_AMP_AMP] = ACTIONS(3170), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3170), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_friend] = ACTIONS(3168), + [anon_sym_public] = ACTIONS(3168), + [anon_sym_private] = ACTIONS(3168), + [anon_sym_protected] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), }, [2032] = { - [sym__expression] = STATE(5134), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(4796), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [sym_identifier] = ACTIONS(5006), + [aux_sym_preproc_def_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token2] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5006), + [aux_sym_preproc_else_token1] = ACTIONS(5006), + [aux_sym_preproc_elif_token1] = ACTIONS(5006), + [sym_preproc_directive] = ACTIONS(5006), + [anon_sym_LPAREN2] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_AMP_AMP] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym___extension__] = ACTIONS(5006), + [anon_sym_typedef] = ACTIONS(5006), + [anon_sym_extern] = ACTIONS(5006), + [anon_sym___attribute__] = ACTIONS(5006), + [anon_sym_COLON_COLON] = ACTIONS(5008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5008), + [anon_sym___declspec] = ACTIONS(5006), + [anon_sym___based] = ACTIONS(5006), + [anon_sym_signed] = ACTIONS(5006), + [anon_sym_unsigned] = ACTIONS(5006), + [anon_sym_long] = ACTIONS(5006), + [anon_sym_short] = ACTIONS(5006), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_static] = ACTIONS(5006), + [anon_sym_register] = ACTIONS(5006), + [anon_sym_inline] = ACTIONS(5006), + [anon_sym___inline] = ACTIONS(5006), + [anon_sym___inline__] = ACTIONS(5006), + [anon_sym___forceinline] = ACTIONS(5006), + [anon_sym_thread_local] = ACTIONS(5006), + [anon_sym___thread] = ACTIONS(5006), + [anon_sym_const] = ACTIONS(5006), + [anon_sym_constexpr] = ACTIONS(5006), + [anon_sym_volatile] = ACTIONS(5006), + [anon_sym_restrict] = ACTIONS(5006), + [anon_sym___restrict__] = ACTIONS(5006), + [anon_sym__Atomic] = ACTIONS(5006), + [anon_sym__Noreturn] = ACTIONS(5006), + [anon_sym_noreturn] = ACTIONS(5006), + [anon_sym_mutable] = ACTIONS(5006), + [anon_sym_constinit] = ACTIONS(5006), + [anon_sym_consteval] = ACTIONS(5006), + [sym_primitive_type] = ACTIONS(5006), + [anon_sym_enum] = ACTIONS(5006), + [anon_sym_class] = ACTIONS(5006), + [anon_sym_struct] = ACTIONS(5006), + [anon_sym_union] = ACTIONS(5006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5006), + [anon_sym_decltype] = ACTIONS(5006), + [anon_sym_virtual] = ACTIONS(5006), + [anon_sym_alignas] = ACTIONS(5006), + [anon_sym_explicit] = ACTIONS(5006), + [anon_sym_typename] = ACTIONS(5006), + [anon_sym_template] = ACTIONS(5006), + [anon_sym_operator] = ACTIONS(5006), + [anon_sym_friend] = ACTIONS(5006), + [anon_sym_public] = ACTIONS(5006), + [anon_sym_private] = ACTIONS(5006), + [anon_sym_protected] = ACTIONS(5006), + [anon_sym_using] = ACTIONS(5006), + [anon_sym_static_assert] = ACTIONS(5006), }, [2033] = { - [sym__expression] = STATE(5008), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(4584), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5002), + [aux_sym_preproc_def_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token2] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), + [aux_sym_preproc_else_token1] = ACTIONS(5002), + [aux_sym_preproc_elif_token1] = ACTIONS(5002), + [sym_preproc_directive] = ACTIONS(5002), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym___extension__] = ACTIONS(5002), + [anon_sym_typedef] = ACTIONS(5002), + [anon_sym_extern] = ACTIONS(5002), + [anon_sym___attribute__] = ACTIONS(5002), + [anon_sym_COLON_COLON] = ACTIONS(5004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5004), + [anon_sym___declspec] = ACTIONS(5002), + [anon_sym___based] = ACTIONS(5002), + [anon_sym_signed] = ACTIONS(5002), + [anon_sym_unsigned] = ACTIONS(5002), + [anon_sym_long] = ACTIONS(5002), + [anon_sym_short] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_static] = ACTIONS(5002), + [anon_sym_register] = ACTIONS(5002), + [anon_sym_inline] = ACTIONS(5002), + [anon_sym___inline] = ACTIONS(5002), + [anon_sym___inline__] = ACTIONS(5002), + [anon_sym___forceinline] = ACTIONS(5002), + [anon_sym_thread_local] = ACTIONS(5002), + [anon_sym___thread] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5002), + [anon_sym_constexpr] = ACTIONS(5002), + [anon_sym_volatile] = ACTIONS(5002), + [anon_sym_restrict] = ACTIONS(5002), + [anon_sym___restrict__] = ACTIONS(5002), + [anon_sym__Atomic] = ACTIONS(5002), + [anon_sym__Noreturn] = ACTIONS(5002), + [anon_sym_noreturn] = ACTIONS(5002), + [anon_sym_mutable] = ACTIONS(5002), + [anon_sym_constinit] = ACTIONS(5002), + [anon_sym_consteval] = ACTIONS(5002), + [sym_primitive_type] = ACTIONS(5002), + [anon_sym_enum] = ACTIONS(5002), + [anon_sym_class] = ACTIONS(5002), + [anon_sym_struct] = ACTIONS(5002), + [anon_sym_union] = ACTIONS(5002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5002), + [anon_sym_decltype] = ACTIONS(5002), + [anon_sym_virtual] = ACTIONS(5002), + [anon_sym_alignas] = ACTIONS(5002), + [anon_sym_explicit] = ACTIONS(5002), + [anon_sym_typename] = ACTIONS(5002), + [anon_sym_template] = ACTIONS(5002), + [anon_sym_operator] = ACTIONS(5002), + [anon_sym_friend] = ACTIONS(5002), + [anon_sym_public] = ACTIONS(5002), + [anon_sym_private] = ACTIONS(5002), + [anon_sym_protected] = ACTIONS(5002), + [anon_sym_using] = ACTIONS(5002), + [anon_sym_static_assert] = ACTIONS(5002), }, [2034] = { - [sym__expression] = STATE(4781), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4990), + [aux_sym_preproc_def_token1] = ACTIONS(4990), + [aux_sym_preproc_if_token1] = ACTIONS(4990), + [aux_sym_preproc_if_token2] = ACTIONS(4990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4990), + [aux_sym_preproc_else_token1] = ACTIONS(4990), + [aux_sym_preproc_elif_token1] = ACTIONS(4990), + [sym_preproc_directive] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(4992), + [anon_sym_TILDE] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4992), + [anon_sym_AMP] = ACTIONS(4990), + [anon_sym___extension__] = ACTIONS(4990), + [anon_sym_typedef] = ACTIONS(4990), + [anon_sym_extern] = ACTIONS(4990), + [anon_sym___attribute__] = ACTIONS(4990), + [anon_sym_COLON_COLON] = ACTIONS(4992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4992), + [anon_sym___declspec] = ACTIONS(4990), + [anon_sym___based] = ACTIONS(4990), + [anon_sym_signed] = ACTIONS(4990), + [anon_sym_unsigned] = ACTIONS(4990), + [anon_sym_long] = ACTIONS(4990), + [anon_sym_short] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_static] = ACTIONS(4990), + [anon_sym_register] = ACTIONS(4990), + [anon_sym_inline] = ACTIONS(4990), + [anon_sym___inline] = ACTIONS(4990), + [anon_sym___inline__] = ACTIONS(4990), + [anon_sym___forceinline] = ACTIONS(4990), + [anon_sym_thread_local] = ACTIONS(4990), + [anon_sym___thread] = ACTIONS(4990), + [anon_sym_const] = ACTIONS(4990), + [anon_sym_constexpr] = ACTIONS(4990), + [anon_sym_volatile] = ACTIONS(4990), + [anon_sym_restrict] = ACTIONS(4990), + [anon_sym___restrict__] = ACTIONS(4990), + [anon_sym__Atomic] = ACTIONS(4990), + [anon_sym__Noreturn] = ACTIONS(4990), + [anon_sym_noreturn] = ACTIONS(4990), + [anon_sym_mutable] = ACTIONS(4990), + [anon_sym_constinit] = ACTIONS(4990), + [anon_sym_consteval] = ACTIONS(4990), + [sym_primitive_type] = ACTIONS(4990), + [anon_sym_enum] = ACTIONS(4990), + [anon_sym_class] = ACTIONS(4990), + [anon_sym_struct] = ACTIONS(4990), + [anon_sym_union] = ACTIONS(4990), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4990), + [anon_sym_decltype] = ACTIONS(4990), + [anon_sym_virtual] = ACTIONS(4990), + [anon_sym_alignas] = ACTIONS(4990), + [anon_sym_explicit] = ACTIONS(4990), + [anon_sym_typename] = ACTIONS(4990), + [anon_sym_template] = ACTIONS(4990), + [anon_sym_operator] = ACTIONS(4990), + [anon_sym_friend] = ACTIONS(4990), + [anon_sym_public] = ACTIONS(4990), + [anon_sym_private] = ACTIONS(4990), + [anon_sym_protected] = ACTIONS(4990), + [anon_sym_using] = ACTIONS(4990), + [anon_sym_static_assert] = ACTIONS(4990), }, [2035] = { - [sym__expression] = STATE(4958), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(4798), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3212), + [aux_sym_preproc_def_token1] = ACTIONS(3212), + [aux_sym_preproc_if_token1] = ACTIONS(3212), + [aux_sym_preproc_if_token2] = ACTIONS(3212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3212), + [aux_sym_preproc_else_token1] = ACTIONS(3212), + [aux_sym_preproc_elif_token1] = ACTIONS(3212), + [sym_preproc_directive] = ACTIONS(3212), + [anon_sym_LPAREN2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [anon_sym_AMP_AMP] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym___extension__] = ACTIONS(3212), + [anon_sym_typedef] = ACTIONS(3212), + [anon_sym_extern] = ACTIONS(3212), + [anon_sym___attribute__] = ACTIONS(3212), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3214), + [anon_sym___declspec] = ACTIONS(3212), + [anon_sym___based] = ACTIONS(3212), + [anon_sym_signed] = ACTIONS(3212), + [anon_sym_unsigned] = ACTIONS(3212), + [anon_sym_long] = ACTIONS(3212), + [anon_sym_short] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_static] = ACTIONS(3212), + [anon_sym_register] = ACTIONS(3212), + [anon_sym_inline] = ACTIONS(3212), + [anon_sym___inline] = ACTIONS(3212), + [anon_sym___inline__] = ACTIONS(3212), + [anon_sym___forceinline] = ACTIONS(3212), + [anon_sym_thread_local] = ACTIONS(3212), + [anon_sym___thread] = ACTIONS(3212), + [anon_sym_const] = ACTIONS(3212), + [anon_sym_constexpr] = ACTIONS(3212), + [anon_sym_volatile] = ACTIONS(3212), + [anon_sym_restrict] = ACTIONS(3212), + [anon_sym___restrict__] = ACTIONS(3212), + [anon_sym__Atomic] = ACTIONS(3212), + [anon_sym__Noreturn] = ACTIONS(3212), + [anon_sym_noreturn] = ACTIONS(3212), + [anon_sym_mutable] = ACTIONS(3212), + [anon_sym_constinit] = ACTIONS(3212), + [anon_sym_consteval] = ACTIONS(3212), + [sym_primitive_type] = ACTIONS(3212), + [anon_sym_enum] = ACTIONS(3212), + [anon_sym_class] = ACTIONS(3212), + [anon_sym_struct] = ACTIONS(3212), + [anon_sym_union] = ACTIONS(3212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3212), + [anon_sym_decltype] = ACTIONS(3212), + [anon_sym_virtual] = ACTIONS(3212), + [anon_sym_alignas] = ACTIONS(3212), + [anon_sym_explicit] = ACTIONS(3212), + [anon_sym_typename] = ACTIONS(3212), + [anon_sym_template] = ACTIONS(3212), + [anon_sym_operator] = ACTIONS(3212), + [anon_sym_friend] = ACTIONS(3212), + [anon_sym_public] = ACTIONS(3212), + [anon_sym_private] = ACTIONS(3212), + [anon_sym_protected] = ACTIONS(3212), + [anon_sym_using] = ACTIONS(3212), + [anon_sym_static_assert] = ACTIONS(3212), }, [2036] = { - [sym__expression] = STATE(5137), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3208), + [aux_sym_preproc_def_token1] = ACTIONS(3208), + [aux_sym_preproc_if_token1] = ACTIONS(3208), + [aux_sym_preproc_if_token2] = ACTIONS(3208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3208), + [aux_sym_preproc_else_token1] = ACTIONS(3208), + [aux_sym_preproc_elif_token1] = ACTIONS(3208), + [sym_preproc_directive] = ACTIONS(3208), + [anon_sym_LPAREN2] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3210), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_AMP_AMP] = ACTIONS(3210), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym___extension__] = ACTIONS(3208), + [anon_sym_typedef] = ACTIONS(3208), + [anon_sym_extern] = ACTIONS(3208), + [anon_sym___attribute__] = ACTIONS(3208), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3210), + [anon_sym___declspec] = ACTIONS(3208), + [anon_sym___based] = ACTIONS(3208), + [anon_sym_signed] = ACTIONS(3208), + [anon_sym_unsigned] = ACTIONS(3208), + [anon_sym_long] = ACTIONS(3208), + [anon_sym_short] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_static] = ACTIONS(3208), + [anon_sym_register] = ACTIONS(3208), + [anon_sym_inline] = ACTIONS(3208), + [anon_sym___inline] = ACTIONS(3208), + [anon_sym___inline__] = ACTIONS(3208), + [anon_sym___forceinline] = ACTIONS(3208), + [anon_sym_thread_local] = ACTIONS(3208), + [anon_sym___thread] = ACTIONS(3208), + [anon_sym_const] = ACTIONS(3208), + [anon_sym_constexpr] = ACTIONS(3208), + [anon_sym_volatile] = ACTIONS(3208), + [anon_sym_restrict] = ACTIONS(3208), + [anon_sym___restrict__] = ACTIONS(3208), + [anon_sym__Atomic] = ACTIONS(3208), + [anon_sym__Noreturn] = ACTIONS(3208), + [anon_sym_noreturn] = ACTIONS(3208), + [anon_sym_mutable] = ACTIONS(3208), + [anon_sym_constinit] = ACTIONS(3208), + [anon_sym_consteval] = ACTIONS(3208), + [sym_primitive_type] = ACTIONS(3208), + [anon_sym_enum] = ACTIONS(3208), + [anon_sym_class] = ACTIONS(3208), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3208), + [anon_sym_decltype] = ACTIONS(3208), + [anon_sym_virtual] = ACTIONS(3208), + [anon_sym_alignas] = ACTIONS(3208), + [anon_sym_explicit] = ACTIONS(3208), + [anon_sym_typename] = ACTIONS(3208), + [anon_sym_template] = ACTIONS(3208), + [anon_sym_operator] = ACTIONS(3208), + [anon_sym_friend] = ACTIONS(3208), + [anon_sym_public] = ACTIONS(3208), + [anon_sym_private] = ACTIONS(3208), + [anon_sym_protected] = ACTIONS(3208), + [anon_sym_using] = ACTIONS(3208), + [anon_sym_static_assert] = ACTIONS(3208), }, [2037] = { - [sym__expression] = STATE(5238), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4998), + [aux_sym_preproc_def_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token2] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4998), + [aux_sym_preproc_else_token1] = ACTIONS(4998), + [aux_sym_preproc_elif_token1] = ACTIONS(4998), + [sym_preproc_directive] = ACTIONS(4998), + [anon_sym_LPAREN2] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_AMP_AMP] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym___extension__] = ACTIONS(4998), + [anon_sym_typedef] = ACTIONS(4998), + [anon_sym_extern] = ACTIONS(4998), + [anon_sym___attribute__] = ACTIONS(4998), + [anon_sym_COLON_COLON] = ACTIONS(5000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5000), + [anon_sym___declspec] = ACTIONS(4998), + [anon_sym___based] = ACTIONS(4998), + [anon_sym_signed] = ACTIONS(4998), + [anon_sym_unsigned] = ACTIONS(4998), + [anon_sym_long] = ACTIONS(4998), + [anon_sym_short] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_static] = ACTIONS(4998), + [anon_sym_register] = ACTIONS(4998), + [anon_sym_inline] = ACTIONS(4998), + [anon_sym___inline] = ACTIONS(4998), + [anon_sym___inline__] = ACTIONS(4998), + [anon_sym___forceinline] = ACTIONS(4998), + [anon_sym_thread_local] = ACTIONS(4998), + [anon_sym___thread] = ACTIONS(4998), + [anon_sym_const] = ACTIONS(4998), + [anon_sym_constexpr] = ACTIONS(4998), + [anon_sym_volatile] = ACTIONS(4998), + [anon_sym_restrict] = ACTIONS(4998), + [anon_sym___restrict__] = ACTIONS(4998), + [anon_sym__Atomic] = ACTIONS(4998), + [anon_sym__Noreturn] = ACTIONS(4998), + [anon_sym_noreturn] = ACTIONS(4998), + [anon_sym_mutable] = ACTIONS(4998), + [anon_sym_constinit] = ACTIONS(4998), + [anon_sym_consteval] = ACTIONS(4998), + [sym_primitive_type] = ACTIONS(4998), + [anon_sym_enum] = ACTIONS(4998), + [anon_sym_class] = ACTIONS(4998), + [anon_sym_struct] = ACTIONS(4998), + [anon_sym_union] = ACTIONS(4998), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4998), + [anon_sym_decltype] = ACTIONS(4998), + [anon_sym_virtual] = ACTIONS(4998), + [anon_sym_alignas] = ACTIONS(4998), + [anon_sym_explicit] = ACTIONS(4998), + [anon_sym_typename] = ACTIONS(4998), + [anon_sym_template] = ACTIONS(4998), + [anon_sym_operator] = ACTIONS(4998), + [anon_sym_friend] = ACTIONS(4998), + [anon_sym_public] = ACTIONS(4998), + [anon_sym_private] = ACTIONS(4998), + [anon_sym_protected] = ACTIONS(4998), + [anon_sym_using] = ACTIONS(4998), + [anon_sym_static_assert] = ACTIONS(4998), }, [2038] = { - [sym__expression] = STATE(5382), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(5002), + [aux_sym_preproc_def_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token2] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), + [aux_sym_preproc_else_token1] = ACTIONS(5002), + [aux_sym_preproc_elif_token1] = ACTIONS(5002), + [sym_preproc_directive] = ACTIONS(5002), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym___extension__] = ACTIONS(5002), + [anon_sym_typedef] = ACTIONS(5002), + [anon_sym_extern] = ACTIONS(5002), + [anon_sym___attribute__] = ACTIONS(5002), + [anon_sym_COLON_COLON] = ACTIONS(5004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5004), + [anon_sym___declspec] = ACTIONS(5002), + [anon_sym___based] = ACTIONS(5002), + [anon_sym_signed] = ACTIONS(5002), + [anon_sym_unsigned] = ACTIONS(5002), + [anon_sym_long] = ACTIONS(5002), + [anon_sym_short] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_static] = ACTIONS(5002), + [anon_sym_register] = ACTIONS(5002), + [anon_sym_inline] = ACTIONS(5002), + [anon_sym___inline] = ACTIONS(5002), + [anon_sym___inline__] = ACTIONS(5002), + [anon_sym___forceinline] = ACTIONS(5002), + [anon_sym_thread_local] = ACTIONS(5002), + [anon_sym___thread] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5002), + [anon_sym_constexpr] = ACTIONS(5002), + [anon_sym_volatile] = ACTIONS(5002), + [anon_sym_restrict] = ACTIONS(5002), + [anon_sym___restrict__] = ACTIONS(5002), + [anon_sym__Atomic] = ACTIONS(5002), + [anon_sym__Noreturn] = ACTIONS(5002), + [anon_sym_noreturn] = ACTIONS(5002), + [anon_sym_mutable] = ACTIONS(5002), + [anon_sym_constinit] = ACTIONS(5002), + [anon_sym_consteval] = ACTIONS(5002), + [sym_primitive_type] = ACTIONS(5002), + [anon_sym_enum] = ACTIONS(5002), + [anon_sym_class] = ACTIONS(5002), + [anon_sym_struct] = ACTIONS(5002), + [anon_sym_union] = ACTIONS(5002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5002), + [anon_sym_decltype] = ACTIONS(5002), + [anon_sym_virtual] = ACTIONS(5002), + [anon_sym_alignas] = ACTIONS(5002), + [anon_sym_explicit] = ACTIONS(5002), + [anon_sym_typename] = ACTIONS(5002), + [anon_sym_template] = ACTIONS(5002), + [anon_sym_operator] = ACTIONS(5002), + [anon_sym_friend] = ACTIONS(5002), + [anon_sym_public] = ACTIONS(5002), + [anon_sym_private] = ACTIONS(5002), + [anon_sym_protected] = ACTIONS(5002), + [anon_sym_using] = ACTIONS(5002), + [anon_sym_static_assert] = ACTIONS(5002), }, [2039] = { - [sym__expression] = STATE(5151), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4998), + [aux_sym_preproc_def_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token2] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4998), + [aux_sym_preproc_else_token1] = ACTIONS(4998), + [aux_sym_preproc_elif_token1] = ACTIONS(4998), + [sym_preproc_directive] = ACTIONS(4998), + [anon_sym_LPAREN2] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_AMP_AMP] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym___extension__] = ACTIONS(4998), + [anon_sym_typedef] = ACTIONS(4998), + [anon_sym_extern] = ACTIONS(4998), + [anon_sym___attribute__] = ACTIONS(4998), + [anon_sym_COLON_COLON] = ACTIONS(5000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5000), + [anon_sym___declspec] = ACTIONS(4998), + [anon_sym___based] = ACTIONS(4998), + [anon_sym_signed] = ACTIONS(4998), + [anon_sym_unsigned] = ACTIONS(4998), + [anon_sym_long] = ACTIONS(4998), + [anon_sym_short] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_static] = ACTIONS(4998), + [anon_sym_register] = ACTIONS(4998), + [anon_sym_inline] = ACTIONS(4998), + [anon_sym___inline] = ACTIONS(4998), + [anon_sym___inline__] = ACTIONS(4998), + [anon_sym___forceinline] = ACTIONS(4998), + [anon_sym_thread_local] = ACTIONS(4998), + [anon_sym___thread] = ACTIONS(4998), + [anon_sym_const] = ACTIONS(4998), + [anon_sym_constexpr] = ACTIONS(4998), + [anon_sym_volatile] = ACTIONS(4998), + [anon_sym_restrict] = ACTIONS(4998), + [anon_sym___restrict__] = ACTIONS(4998), + [anon_sym__Atomic] = ACTIONS(4998), + [anon_sym__Noreturn] = ACTIONS(4998), + [anon_sym_noreturn] = ACTIONS(4998), + [anon_sym_mutable] = ACTIONS(4998), + [anon_sym_constinit] = ACTIONS(4998), + [anon_sym_consteval] = ACTIONS(4998), + [sym_primitive_type] = ACTIONS(4998), + [anon_sym_enum] = ACTIONS(4998), + [anon_sym_class] = ACTIONS(4998), + [anon_sym_struct] = ACTIONS(4998), + [anon_sym_union] = ACTIONS(4998), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4998), + [anon_sym_decltype] = ACTIONS(4998), + [anon_sym_virtual] = ACTIONS(4998), + [anon_sym_alignas] = ACTIONS(4998), + [anon_sym_explicit] = ACTIONS(4998), + [anon_sym_typename] = ACTIONS(4998), + [anon_sym_template] = ACTIONS(4998), + [anon_sym_operator] = ACTIONS(4998), + [anon_sym_friend] = ACTIONS(4998), + [anon_sym_public] = ACTIONS(4998), + [anon_sym_private] = ACTIONS(4998), + [anon_sym_protected] = ACTIONS(4998), + [anon_sym_using] = ACTIONS(4998), + [anon_sym_static_assert] = ACTIONS(4998), }, [2040] = { - [sym__expression] = STATE(3775), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2880), + [aux_sym_preproc_def_token1] = ACTIONS(2880), + [aux_sym_preproc_if_token1] = ACTIONS(2880), + [aux_sym_preproc_if_token2] = ACTIONS(2880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2880), + [aux_sym_preproc_else_token1] = ACTIONS(2880), + [aux_sym_preproc_elif_token1] = ACTIONS(2880), + [sym_preproc_directive] = ACTIONS(2880), + [anon_sym_LPAREN2] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym___extension__] = ACTIONS(2880), + [anon_sym_typedef] = ACTIONS(2880), + [anon_sym_extern] = ACTIONS(2880), + [anon_sym___attribute__] = ACTIONS(2880), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2882), + [anon_sym___declspec] = ACTIONS(2880), + [anon_sym___based] = ACTIONS(2880), + [anon_sym_signed] = ACTIONS(2880), + [anon_sym_unsigned] = ACTIONS(2880), + [anon_sym_long] = ACTIONS(2880), + [anon_sym_short] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_static] = ACTIONS(2880), + [anon_sym_register] = ACTIONS(2880), + [anon_sym_inline] = ACTIONS(2880), + [anon_sym___inline] = ACTIONS(2880), + [anon_sym___inline__] = ACTIONS(2880), + [anon_sym___forceinline] = ACTIONS(2880), + [anon_sym_thread_local] = ACTIONS(2880), + [anon_sym___thread] = ACTIONS(2880), + [anon_sym_const] = ACTIONS(2880), + [anon_sym_constexpr] = ACTIONS(2880), + [anon_sym_volatile] = ACTIONS(2880), + [anon_sym_restrict] = ACTIONS(2880), + [anon_sym___restrict__] = ACTIONS(2880), + [anon_sym__Atomic] = ACTIONS(2880), + [anon_sym__Noreturn] = ACTIONS(2880), + [anon_sym_noreturn] = ACTIONS(2880), + [anon_sym_mutable] = ACTIONS(2880), + [anon_sym_constinit] = ACTIONS(2880), + [anon_sym_consteval] = ACTIONS(2880), + [sym_primitive_type] = ACTIONS(2880), + [anon_sym_enum] = ACTIONS(2880), + [anon_sym_class] = ACTIONS(2880), + [anon_sym_struct] = ACTIONS(2880), + [anon_sym_union] = ACTIONS(2880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2880), + [anon_sym_decltype] = ACTIONS(2880), + [anon_sym_virtual] = ACTIONS(2880), + [anon_sym_alignas] = ACTIONS(2880), + [anon_sym_explicit] = ACTIONS(2880), + [anon_sym_typename] = ACTIONS(2880), + [anon_sym_template] = ACTIONS(2880), + [anon_sym_operator] = ACTIONS(2880), + [anon_sym_friend] = ACTIONS(2880), + [anon_sym_public] = ACTIONS(2880), + [anon_sym_private] = ACTIONS(2880), + [anon_sym_protected] = ACTIONS(2880), + [anon_sym_using] = ACTIONS(2880), + [anon_sym_static_assert] = ACTIONS(2880), }, [2041] = { - [sym__expression] = STATE(4907), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(4994), + [aux_sym_preproc_def_token1] = ACTIONS(4994), + [aux_sym_preproc_if_token1] = ACTIONS(4994), + [aux_sym_preproc_if_token2] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), + [aux_sym_preproc_else_token1] = ACTIONS(4994), + [aux_sym_preproc_elif_token1] = ACTIONS(4994), + [sym_preproc_directive] = ACTIONS(4994), + [anon_sym_LPAREN2] = ACTIONS(4996), + [anon_sym_TILDE] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_AMP_AMP] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4994), + [anon_sym___extension__] = ACTIONS(4994), + [anon_sym_typedef] = ACTIONS(4994), + [anon_sym_extern] = ACTIONS(4994), + [anon_sym___attribute__] = ACTIONS(4994), + [anon_sym_COLON_COLON] = ACTIONS(4996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4996), + [anon_sym___declspec] = ACTIONS(4994), + [anon_sym___based] = ACTIONS(4994), + [anon_sym_signed] = ACTIONS(4994), + [anon_sym_unsigned] = ACTIONS(4994), + [anon_sym_long] = ACTIONS(4994), + [anon_sym_short] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_static] = ACTIONS(4994), + [anon_sym_register] = ACTIONS(4994), + [anon_sym_inline] = ACTIONS(4994), + [anon_sym___inline] = ACTIONS(4994), + [anon_sym___inline__] = ACTIONS(4994), + [anon_sym___forceinline] = ACTIONS(4994), + [anon_sym_thread_local] = ACTIONS(4994), + [anon_sym___thread] = ACTIONS(4994), + [anon_sym_const] = ACTIONS(4994), + [anon_sym_constexpr] = ACTIONS(4994), + [anon_sym_volatile] = ACTIONS(4994), + [anon_sym_restrict] = ACTIONS(4994), + [anon_sym___restrict__] = ACTIONS(4994), + [anon_sym__Atomic] = ACTIONS(4994), + [anon_sym__Noreturn] = ACTIONS(4994), + [anon_sym_noreturn] = ACTIONS(4994), + [anon_sym_mutable] = ACTIONS(4994), + [anon_sym_constinit] = ACTIONS(4994), + [anon_sym_consteval] = ACTIONS(4994), + [sym_primitive_type] = ACTIONS(4994), + [anon_sym_enum] = ACTIONS(4994), + [anon_sym_class] = ACTIONS(4994), + [anon_sym_struct] = ACTIONS(4994), + [anon_sym_union] = ACTIONS(4994), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(4994), + [anon_sym_decltype] = ACTIONS(4994), + [anon_sym_virtual] = ACTIONS(4994), + [anon_sym_alignas] = ACTIONS(4994), + [anon_sym_explicit] = ACTIONS(4994), + [anon_sym_typename] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(4994), + [anon_sym_operator] = ACTIONS(4994), + [anon_sym_friend] = ACTIONS(4994), + [anon_sym_public] = ACTIONS(4994), + [anon_sym_private] = ACTIONS(4994), + [anon_sym_protected] = ACTIONS(4994), + [anon_sym_using] = ACTIONS(4994), + [anon_sym_static_assert] = ACTIONS(4994), }, [2042] = { - [sym__expression] = STATE(4788), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5176), + [anon_sym_COMMA] = ACTIONS(5176), + [anon_sym_RPAREN] = ACTIONS(5176), + [anon_sym_LPAREN2] = ACTIONS(5176), + [anon_sym_DASH] = ACTIONS(5174), + [anon_sym_PLUS] = ACTIONS(5174), + [anon_sym_STAR] = ACTIONS(5174), + [anon_sym_SLASH] = ACTIONS(5174), + [anon_sym_PERCENT] = ACTIONS(5174), + [anon_sym_PIPE_PIPE] = ACTIONS(5176), + [anon_sym_AMP_AMP] = ACTIONS(5176), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_CARET] = ACTIONS(5174), + [anon_sym_AMP] = ACTIONS(5174), + [anon_sym_EQ_EQ] = ACTIONS(5176), + [anon_sym_BANG_EQ] = ACTIONS(5176), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_EQ] = ACTIONS(5176), + [anon_sym_LT_EQ] = ACTIONS(5174), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_LT_LT] = ACTIONS(5174), + [anon_sym_GT_GT] = ACTIONS(5174), + [anon_sym_SEMI] = ACTIONS(5176), + [anon_sym_RBRACE] = ACTIONS(5176), + [anon_sym_LBRACK] = ACTIONS(5176), + [anon_sym_RBRACK] = ACTIONS(5176), + [anon_sym_EQ] = ACTIONS(5174), + [anon_sym_COLON] = ACTIONS(5176), + [anon_sym_QMARK] = ACTIONS(5176), + [anon_sym_STAR_EQ] = ACTIONS(5176), + [anon_sym_SLASH_EQ] = ACTIONS(5176), + [anon_sym_PERCENT_EQ] = ACTIONS(5176), + [anon_sym_PLUS_EQ] = ACTIONS(5176), + [anon_sym_DASH_EQ] = ACTIONS(5176), + [anon_sym_LT_LT_EQ] = ACTIONS(5176), + [anon_sym_GT_GT_EQ] = ACTIONS(5176), + [anon_sym_AMP_EQ] = ACTIONS(5176), + [anon_sym_CARET_EQ] = ACTIONS(5176), + [anon_sym_PIPE_EQ] = ACTIONS(5176), + [anon_sym_and_eq] = ACTIONS(5174), + [anon_sym_or_eq] = ACTIONS(5174), + [anon_sym_xor_eq] = ACTIONS(5174), + [anon_sym_LT_EQ_GT] = ACTIONS(5176), + [anon_sym_or] = ACTIONS(5174), + [anon_sym_and] = ACTIONS(5174), + [anon_sym_bitor] = ACTIONS(5174), + [anon_sym_xor] = ACTIONS(5174), + [anon_sym_bitand] = ACTIONS(5174), + [anon_sym_not_eq] = ACTIONS(5174), + [anon_sym_DASH_DASH] = ACTIONS(5176), + [anon_sym_PLUS_PLUS] = ACTIONS(5176), + [anon_sym_DOT] = ACTIONS(5174), + [anon_sym_DOT_STAR] = ACTIONS(5176), + [anon_sym_DASH_GT] = ACTIONS(5176), + [anon_sym_L_DQUOTE] = ACTIONS(5176), + [anon_sym_u_DQUOTE] = ACTIONS(5176), + [anon_sym_U_DQUOTE] = ACTIONS(5176), + [anon_sym_u8_DQUOTE] = ACTIONS(5176), + [anon_sym_DQUOTE] = ACTIONS(5176), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5176), + [anon_sym_LR_DQUOTE] = ACTIONS(5176), + [anon_sym_uR_DQUOTE] = ACTIONS(5176), + [anon_sym_UR_DQUOTE] = ACTIONS(5176), + [anon_sym_u8R_DQUOTE] = ACTIONS(5176), + [sym_literal_suffix] = ACTIONS(5174), }, [2043] = { - [sym__expression] = STATE(4909), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(3791), + [sym_raw_string_literal] = STATE(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_RBRACK] = ACTIONS(4061), + [anon_sym_EQ] = ACTIONS(5107), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(5109), + [anon_sym_SLASH_EQ] = ACTIONS(5109), + [anon_sym_PERCENT_EQ] = ACTIONS(5109), + [anon_sym_PLUS_EQ] = ACTIONS(5109), + [anon_sym_DASH_EQ] = ACTIONS(5109), + [anon_sym_LT_LT_EQ] = ACTIONS(5109), + [anon_sym_GT_GT_EQ] = ACTIONS(5109), + [anon_sym_AMP_EQ] = ACTIONS(5109), + [anon_sym_CARET_EQ] = ACTIONS(5109), + [anon_sym_PIPE_EQ] = ACTIONS(5109), + [anon_sym_and_eq] = ACTIONS(5109), + [anon_sym_or_eq] = ACTIONS(5109), + [anon_sym_xor_eq] = ACTIONS(5109), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), }, [2044] = { - [sym__expression] = STATE(5338), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(2804), + [aux_sym_preproc_def_token1] = ACTIONS(2804), + [aux_sym_preproc_if_token1] = ACTIONS(2804), + [aux_sym_preproc_if_token2] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2804), + [aux_sym_preproc_else_token1] = ACTIONS(2804), + [aux_sym_preproc_elif_token1] = ACTIONS(2804), + [sym_preproc_directive] = ACTIONS(2804), + [anon_sym_LPAREN2] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2806), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_AMP_AMP] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2804), + [anon_sym___extension__] = ACTIONS(2804), + [anon_sym_typedef] = ACTIONS(2804), + [anon_sym_extern] = ACTIONS(2804), + [anon_sym___attribute__] = ACTIONS(2804), + [anon_sym_COLON_COLON] = ACTIONS(2806), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2806), + [anon_sym___declspec] = ACTIONS(2804), + [anon_sym___based] = ACTIONS(2804), + [anon_sym_signed] = ACTIONS(2804), + [anon_sym_unsigned] = ACTIONS(2804), + [anon_sym_long] = ACTIONS(2804), + [anon_sym_short] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2804), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_register] = ACTIONS(2804), + [anon_sym_inline] = ACTIONS(2804), + [anon_sym___inline] = ACTIONS(2804), + [anon_sym___inline__] = ACTIONS(2804), + [anon_sym___forceinline] = ACTIONS(2804), + [anon_sym_thread_local] = ACTIONS(2804), + [anon_sym___thread] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_constexpr] = ACTIONS(2804), + [anon_sym_volatile] = ACTIONS(2804), + [anon_sym_restrict] = ACTIONS(2804), + [anon_sym___restrict__] = ACTIONS(2804), + [anon_sym__Atomic] = ACTIONS(2804), + [anon_sym__Noreturn] = ACTIONS(2804), + [anon_sym_noreturn] = ACTIONS(2804), + [anon_sym_mutable] = ACTIONS(2804), + [anon_sym_constinit] = ACTIONS(2804), + [anon_sym_consteval] = ACTIONS(2804), + [sym_primitive_type] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [anon_sym_class] = ACTIONS(2804), + [anon_sym_struct] = ACTIONS(2804), + [anon_sym_union] = ACTIONS(2804), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2804), + [anon_sym_decltype] = ACTIONS(2804), + [anon_sym_virtual] = ACTIONS(2804), + [anon_sym_alignas] = ACTIONS(2804), + [anon_sym_explicit] = ACTIONS(2804), + [anon_sym_typename] = ACTIONS(2804), + [anon_sym_template] = ACTIONS(2804), + [anon_sym_operator] = ACTIONS(2804), + [anon_sym_friend] = ACTIONS(2804), + [anon_sym_public] = ACTIONS(2804), + [anon_sym_private] = ACTIONS(2804), + [anon_sym_protected] = ACTIONS(2804), + [anon_sym_using] = ACTIONS(2804), + [anon_sym_static_assert] = ACTIONS(2804), }, [2045] = { - [sym__expression] = STATE(4910), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [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), + [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___extension__] = ACTIONS(3119), + [anon_sym_typedef] = ACTIONS(3119), + [anon_sym_extern] = ACTIONS(3119), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3119), + [anon_sym_constinit] = ACTIONS(3119), + [anon_sym_consteval] = 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), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3119), + [anon_sym_decltype] = ACTIONS(3119), + [anon_sym_virtual] = ACTIONS(3119), + [anon_sym_alignas] = ACTIONS(3119), + [anon_sym_explicit] = ACTIONS(3119), + [anon_sym_typename] = ACTIONS(3119), + [anon_sym_template] = ACTIONS(3119), + [anon_sym_operator] = ACTIONS(3119), + [anon_sym_friend] = ACTIONS(3119), + [anon_sym_public] = ACTIONS(3119), + [anon_sym_private] = ACTIONS(3119), + [anon_sym_protected] = ACTIONS(3119), + [anon_sym_using] = ACTIONS(3119), + [anon_sym_static_assert] = ACTIONS(3119), }, [2046] = { - [sym__expression] = STATE(4897), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(2884), + [aux_sym_preproc_def_token1] = ACTIONS(2884), + [aux_sym_preproc_if_token1] = ACTIONS(2884), + [aux_sym_preproc_if_token2] = ACTIONS(2884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2884), + [aux_sym_preproc_else_token1] = ACTIONS(2884), + [aux_sym_preproc_elif_token1] = ACTIONS(2884), + [sym_preproc_directive] = ACTIONS(2884), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym___extension__] = ACTIONS(2884), + [anon_sym_typedef] = ACTIONS(2884), + [anon_sym_extern] = ACTIONS(2884), + [anon_sym___attribute__] = ACTIONS(2884), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2886), + [anon_sym___declspec] = ACTIONS(2884), + [anon_sym___based] = ACTIONS(2884), + [anon_sym_signed] = ACTIONS(2884), + [anon_sym_unsigned] = ACTIONS(2884), + [anon_sym_long] = ACTIONS(2884), + [anon_sym_short] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(2884), + [anon_sym_register] = ACTIONS(2884), + [anon_sym_inline] = ACTIONS(2884), + [anon_sym___inline] = ACTIONS(2884), + [anon_sym___inline__] = ACTIONS(2884), + [anon_sym___forceinline] = ACTIONS(2884), + [anon_sym_thread_local] = ACTIONS(2884), + [anon_sym___thread] = ACTIONS(2884), + [anon_sym_const] = ACTIONS(2884), + [anon_sym_constexpr] = ACTIONS(2884), + [anon_sym_volatile] = ACTIONS(2884), + [anon_sym_restrict] = ACTIONS(2884), + [anon_sym___restrict__] = ACTIONS(2884), + [anon_sym__Atomic] = ACTIONS(2884), + [anon_sym__Noreturn] = ACTIONS(2884), + [anon_sym_noreturn] = ACTIONS(2884), + [anon_sym_mutable] = ACTIONS(2884), + [anon_sym_constinit] = ACTIONS(2884), + [anon_sym_consteval] = ACTIONS(2884), + [sym_primitive_type] = ACTIONS(2884), + [anon_sym_enum] = ACTIONS(2884), + [anon_sym_class] = ACTIONS(2884), + [anon_sym_struct] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2884), + [anon_sym_decltype] = ACTIONS(2884), + [anon_sym_virtual] = ACTIONS(2884), + [anon_sym_alignas] = ACTIONS(2884), + [anon_sym_explicit] = ACTIONS(2884), + [anon_sym_typename] = ACTIONS(2884), + [anon_sym_template] = ACTIONS(2884), + [anon_sym_operator] = ACTIONS(2884), + [anon_sym_friend] = ACTIONS(2884), + [anon_sym_public] = ACTIONS(2884), + [anon_sym_private] = ACTIONS(2884), + [anon_sym_protected] = ACTIONS(2884), + [anon_sym_using] = ACTIONS(2884), + [anon_sym_static_assert] = ACTIONS(2884), }, [2047] = { - [sym__expression] = STATE(4912), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [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), + [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___extension__] = ACTIONS(3115), + [anon_sym_typedef] = ACTIONS(3115), + [anon_sym_extern] = ACTIONS(3115), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3115), + [anon_sym_constinit] = ACTIONS(3115), + [anon_sym_consteval] = 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), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3115), + [anon_sym_decltype] = ACTIONS(3115), + [anon_sym_virtual] = ACTIONS(3115), + [anon_sym_alignas] = ACTIONS(3115), + [anon_sym_explicit] = ACTIONS(3115), + [anon_sym_typename] = ACTIONS(3115), + [anon_sym_template] = ACTIONS(3115), + [anon_sym_operator] = ACTIONS(3115), + [anon_sym_friend] = ACTIONS(3115), + [anon_sym_public] = ACTIONS(3115), + [anon_sym_private] = ACTIONS(3115), + [anon_sym_protected] = ACTIONS(3115), + [anon_sym_using] = ACTIONS(3115), + [anon_sym_static_assert] = ACTIONS(3115), }, [2048] = { - [sym__expression] = STATE(4901), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(2852), + [aux_sym_preproc_def_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token1] = ACTIONS(2852), + [aux_sym_preproc_if_token2] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2852), + [aux_sym_preproc_else_token1] = ACTIONS(2852), + [aux_sym_preproc_elif_token1] = ACTIONS(2852), + [sym_preproc_directive] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym___extension__] = ACTIONS(2852), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym___attribute__] = ACTIONS(2852), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2854), + [anon_sym___declspec] = ACTIONS(2852), + [anon_sym___based] = ACTIONS(2852), + [anon_sym_signed] = ACTIONS(2852), + [anon_sym_unsigned] = ACTIONS(2852), + [anon_sym_long] = ACTIONS(2852), + [anon_sym_short] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_register] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym___inline] = ACTIONS(2852), + [anon_sym___inline__] = ACTIONS(2852), + [anon_sym___forceinline] = ACTIONS(2852), + [anon_sym_thread_local] = ACTIONS(2852), + [anon_sym___thread] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_constexpr] = ACTIONS(2852), + [anon_sym_volatile] = ACTIONS(2852), + [anon_sym_restrict] = ACTIONS(2852), + [anon_sym___restrict__] = ACTIONS(2852), + [anon_sym__Atomic] = ACTIONS(2852), + [anon_sym__Noreturn] = ACTIONS(2852), + [anon_sym_noreturn] = ACTIONS(2852), + [anon_sym_mutable] = ACTIONS(2852), + [anon_sym_constinit] = ACTIONS(2852), + [anon_sym_consteval] = ACTIONS(2852), + [sym_primitive_type] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_class] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2852), + [anon_sym_decltype] = ACTIONS(2852), + [anon_sym_virtual] = ACTIONS(2852), + [anon_sym_alignas] = ACTIONS(2852), + [anon_sym_explicit] = ACTIONS(2852), + [anon_sym_typename] = ACTIONS(2852), + [anon_sym_template] = ACTIONS(2852), + [anon_sym_operator] = ACTIONS(2852), + [anon_sym_friend] = ACTIONS(2852), + [anon_sym_public] = ACTIONS(2852), + [anon_sym_private] = ACTIONS(2852), + [anon_sym_protected] = ACTIONS(2852), + [anon_sym_using] = ACTIONS(2852), + [anon_sym_static_assert] = ACTIONS(2852), }, [2049] = { - [sym__expression] = STATE(5378), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_string_literal] = STATE(3250), + [sym_template_argument_list] = STATE(4126), + [sym_raw_string_literal] = STATE(3250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4069), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4622), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_EQ] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4627), + [anon_sym_SLASH_EQ] = ACTIONS(4627), + [anon_sym_PERCENT_EQ] = ACTIONS(4627), + [anon_sym_PLUS_EQ] = ACTIONS(4627), + [anon_sym_DASH_EQ] = ACTIONS(4627), + [anon_sym_LT_LT_EQ] = ACTIONS(4627), + [anon_sym_GT_GT_EQ] = ACTIONS(4625), + [anon_sym_AMP_EQ] = ACTIONS(4627), + [anon_sym_CARET_EQ] = ACTIONS(4627), + [anon_sym_PIPE_EQ] = ACTIONS(4627), + [anon_sym_and_eq] = ACTIONS(4627), + [anon_sym_or_eq] = ACTIONS(4627), + [anon_sym_xor_eq] = ACTIONS(4627), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4629), + [anon_sym_u_DQUOTE] = ACTIONS(4629), + [anon_sym_U_DQUOTE] = ACTIONS(4629), + [anon_sym_u8_DQUOTE] = ACTIONS(4629), + [anon_sym_DQUOTE] = ACTIONS(4629), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(4061), + [anon_sym_R_DQUOTE] = ACTIONS(4631), + [anon_sym_LR_DQUOTE] = ACTIONS(4631), + [anon_sym_uR_DQUOTE] = ACTIONS(4631), + [anon_sym_UR_DQUOTE] = ACTIONS(4631), + [anon_sym_u8R_DQUOTE] = ACTIONS(4631), }, [2050] = { - [sym__expression] = STATE(4788), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = 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), + [sym_preproc_directive] = ACTIONS(3111), + [anon_sym_LPAREN2] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym___extension__] = ACTIONS(3111), + [anon_sym_typedef] = ACTIONS(3111), + [anon_sym_extern] = ACTIONS(3111), + [anon_sym___attribute__] = 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_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_mutable] = ACTIONS(3111), + [anon_sym_constinit] = ACTIONS(3111), + [anon_sym_consteval] = 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), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3111), + [anon_sym_decltype] = ACTIONS(3111), + [anon_sym_virtual] = ACTIONS(3111), + [anon_sym_alignas] = ACTIONS(3111), + [anon_sym_explicit] = ACTIONS(3111), + [anon_sym_typename] = ACTIONS(3111), + [anon_sym_template] = ACTIONS(3111), + [anon_sym_operator] = ACTIONS(3111), + [anon_sym_friend] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_using] = ACTIONS(3111), + [anon_sym_static_assert] = ACTIONS(3111), }, [2051] = { - [sym__expression] = STATE(5373), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(3107), + [aux_sym_preproc_def_token1] = ACTIONS(3107), + [aux_sym_preproc_if_token1] = ACTIONS(3107), + [aux_sym_preproc_if_token2] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3107), + [aux_sym_preproc_else_token1] = ACTIONS(3107), + [aux_sym_preproc_elif_token1] = ACTIONS(3107), + [sym_preproc_directive] = ACTIONS(3107), + [anon_sym_LPAREN2] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3107), + [anon_sym___extension__] = ACTIONS(3107), + [anon_sym_typedef] = ACTIONS(3107), + [anon_sym_extern] = ACTIONS(3107), + [anon_sym___attribute__] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), + [anon_sym___declspec] = ACTIONS(3107), + [anon_sym___based] = ACTIONS(3107), + [anon_sym_signed] = ACTIONS(3107), + [anon_sym_unsigned] = ACTIONS(3107), + [anon_sym_long] = ACTIONS(3107), + [anon_sym_short] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_register] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym___inline] = ACTIONS(3107), + [anon_sym___inline__] = ACTIONS(3107), + [anon_sym___forceinline] = ACTIONS(3107), + [anon_sym_thread_local] = ACTIONS(3107), + [anon_sym___thread] = ACTIONS(3107), + [anon_sym_const] = ACTIONS(3107), + [anon_sym_constexpr] = ACTIONS(3107), + [anon_sym_volatile] = ACTIONS(3107), + [anon_sym_restrict] = ACTIONS(3107), + [anon_sym___restrict__] = ACTIONS(3107), + [anon_sym__Atomic] = ACTIONS(3107), + [anon_sym__Noreturn] = ACTIONS(3107), + [anon_sym_noreturn] = ACTIONS(3107), + [anon_sym_mutable] = ACTIONS(3107), + [anon_sym_constinit] = ACTIONS(3107), + [anon_sym_consteval] = ACTIONS(3107), + [sym_primitive_type] = ACTIONS(3107), + [anon_sym_enum] = ACTIONS(3107), + [anon_sym_class] = ACTIONS(3107), + [anon_sym_struct] = ACTIONS(3107), + [anon_sym_union] = ACTIONS(3107), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3107), + [anon_sym_decltype] = ACTIONS(3107), + [anon_sym_virtual] = ACTIONS(3107), + [anon_sym_alignas] = ACTIONS(3107), + [anon_sym_explicit] = ACTIONS(3107), + [anon_sym_typename] = ACTIONS(3107), + [anon_sym_template] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_friend] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_using] = ACTIONS(3107), + [anon_sym_static_assert] = ACTIONS(3107), }, [2052] = { - [sym__expression] = STATE(4900), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token2] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [aux_sym_preproc_else_token1] = ACTIONS(3103), + [aux_sym_preproc_elif_token1] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_friend] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), }, [2053] = { - [sym__expression] = STATE(4878), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token2] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [aux_sym_preproc_else_token1] = ACTIONS(3103), + [aux_sym_preproc_elif_token1] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_friend] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), }, [2054] = { - [sym__expression] = STATE(4893), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(2957), + [aux_sym_preproc_def_token1] = ACTIONS(2957), + [aux_sym_preproc_if_token1] = ACTIONS(2957), + [aux_sym_preproc_if_token2] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2957), + [aux_sym_preproc_else_token1] = ACTIONS(2957), + [aux_sym_preproc_elif_token1] = ACTIONS(2957), + [sym_preproc_directive] = ACTIONS(2957), + [anon_sym_LPAREN2] = ACTIONS(2959), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym___extension__] = ACTIONS(2957), + [anon_sym_typedef] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym___attribute__] = ACTIONS(2957), + [anon_sym_COLON_COLON] = ACTIONS(2959), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), + [anon_sym___declspec] = ACTIONS(2957), + [anon_sym___based] = ACTIONS(2957), + [anon_sym_signed] = ACTIONS(2957), + [anon_sym_unsigned] = ACTIONS(2957), + [anon_sym_long] = ACTIONS(2957), + [anon_sym_short] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_static] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_inline] = ACTIONS(2957), + [anon_sym___inline] = ACTIONS(2957), + [anon_sym___inline__] = ACTIONS(2957), + [anon_sym___forceinline] = ACTIONS(2957), + [anon_sym_thread_local] = ACTIONS(2957), + [anon_sym___thread] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_constexpr] = ACTIONS(2957), + [anon_sym_volatile] = ACTIONS(2957), + [anon_sym_restrict] = ACTIONS(2957), + [anon_sym___restrict__] = ACTIONS(2957), + [anon_sym__Atomic] = ACTIONS(2957), + [anon_sym__Noreturn] = ACTIONS(2957), + [anon_sym_noreturn] = ACTIONS(2957), + [anon_sym_mutable] = ACTIONS(2957), + [anon_sym_constinit] = ACTIONS(2957), + [anon_sym_consteval] = ACTIONS(2957), + [sym_primitive_type] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [anon_sym_class] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_union] = ACTIONS(2957), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2957), + [anon_sym_decltype] = ACTIONS(2957), + [anon_sym_virtual] = ACTIONS(2957), + [anon_sym_alignas] = ACTIONS(2957), + [anon_sym_explicit] = ACTIONS(2957), + [anon_sym_typename] = ACTIONS(2957), + [anon_sym_template] = ACTIONS(2957), + [anon_sym_operator] = ACTIONS(2957), + [anon_sym_friend] = ACTIONS(2957), + [anon_sym_public] = ACTIONS(2957), + [anon_sym_private] = ACTIONS(2957), + [anon_sym_protected] = ACTIONS(2957), + [anon_sym_using] = ACTIONS(2957), + [anon_sym_static_assert] = ACTIONS(2957), }, [2055] = { - [sym__expression] = STATE(5149), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(3099), + [aux_sym_preproc_def_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token2] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), + [aux_sym_preproc_else_token1] = ACTIONS(3099), + [aux_sym_preproc_elif_token1] = ACTIONS(3099), + [sym_preproc_directive] = ACTIONS(3099), + [anon_sym_LPAREN2] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym___extension__] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym___attribute__] = ACTIONS(3099), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), + [anon_sym___declspec] = ACTIONS(3099), + [anon_sym___based] = ACTIONS(3099), + [anon_sym_signed] = ACTIONS(3099), + [anon_sym_unsigned] = ACTIONS(3099), + [anon_sym_long] = ACTIONS(3099), + [anon_sym_short] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_register] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym___inline] = ACTIONS(3099), + [anon_sym___inline__] = ACTIONS(3099), + [anon_sym___forceinline] = ACTIONS(3099), + [anon_sym_thread_local] = ACTIONS(3099), + [anon_sym___thread] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_constexpr] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_restrict] = ACTIONS(3099), + [anon_sym___restrict__] = ACTIONS(3099), + [anon_sym__Atomic] = ACTIONS(3099), + [anon_sym__Noreturn] = ACTIONS(3099), + [anon_sym_noreturn] = ACTIONS(3099), + [anon_sym_mutable] = ACTIONS(3099), + [anon_sym_constinit] = ACTIONS(3099), + [anon_sym_consteval] = ACTIONS(3099), + [sym_primitive_type] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_alignas] = ACTIONS(3099), + [anon_sym_explicit] = ACTIONS(3099), + [anon_sym_typename] = ACTIONS(3099), + [anon_sym_template] = ACTIONS(3099), + [anon_sym_operator] = ACTIONS(3099), + [anon_sym_friend] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_private] = ACTIONS(3099), + [anon_sym_protected] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_static_assert] = ACTIONS(3099), }, [2056] = { - [sym__expression] = STATE(5400), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(4892), + [aux_sym_preproc_def_token1] = ACTIONS(4892), + [aux_sym_preproc_if_token1] = ACTIONS(4892), + [aux_sym_preproc_if_token2] = ACTIONS(4892), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4892), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4892), + [aux_sym_preproc_else_token1] = ACTIONS(4892), + [aux_sym_preproc_elif_token1] = ACTIONS(4892), + [sym_preproc_directive] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(4894), + [anon_sym_TILDE] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_AMP] = ACTIONS(4892), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_typedef] = ACTIONS(4892), + [anon_sym_extern] = ACTIONS(4892), + [anon_sym___attribute__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4894), + [anon_sym___declspec] = ACTIONS(4892), + [anon_sym___based] = ACTIONS(4892), + [anon_sym_signed] = ACTIONS(4892), + [anon_sym_unsigned] = ACTIONS(4892), + [anon_sym_long] = ACTIONS(4892), + [anon_sym_short] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4892), + [anon_sym_static] = ACTIONS(4892), + [anon_sym_register] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym___inline] = ACTIONS(4892), + [anon_sym___inline__] = ACTIONS(4892), + [anon_sym___forceinline] = ACTIONS(4892), + [anon_sym_thread_local] = ACTIONS(4892), + [anon_sym___thread] = ACTIONS(4892), + [anon_sym_const] = ACTIONS(4892), + [anon_sym_constexpr] = ACTIONS(4892), + [anon_sym_volatile] = ACTIONS(4892), + [anon_sym_restrict] = ACTIONS(4892), + [anon_sym___restrict__] = ACTIONS(4892), + [anon_sym__Atomic] = ACTIONS(4892), + [anon_sym__Noreturn] = ACTIONS(4892), + [anon_sym_noreturn] = ACTIONS(4892), + [anon_sym_mutable] = ACTIONS(4892), + [anon_sym_constinit] = ACTIONS(4892), + [anon_sym_consteval] = ACTIONS(4892), + [sym_primitive_type] = ACTIONS(4892), + [anon_sym_enum] = ACTIONS(4892), + [anon_sym_class] = ACTIONS(4892), + [anon_sym_struct] = ACTIONS(4892), + [anon_sym_union] = ACTIONS(4892), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(4892), + [anon_sym_decltype] = ACTIONS(4892), + [anon_sym_virtual] = ACTIONS(4892), + [anon_sym_alignas] = ACTIONS(4892), + [anon_sym_explicit] = ACTIONS(4892), + [anon_sym_typename] = ACTIONS(4892), + [anon_sym_template] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_friend] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_using] = ACTIONS(4892), + [anon_sym_static_assert] = ACTIONS(4892), }, [2057] = { - [sym__expression] = STATE(5102), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), + [sym_identifier] = ACTIONS(2965), + [aux_sym_preproc_def_token1] = ACTIONS(2965), + [aux_sym_preproc_if_token1] = ACTIONS(2965), + [aux_sym_preproc_if_token2] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), + [aux_sym_preproc_else_token1] = ACTIONS(2965), + [aux_sym_preproc_elif_token1] = ACTIONS(2965), + [sym_preproc_directive] = ACTIONS(2965), + [anon_sym_LPAREN2] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym___extension__] = ACTIONS(2965), + [anon_sym_typedef] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2965), + [anon_sym___attribute__] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(2967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), + [anon_sym___declspec] = ACTIONS(2965), + [anon_sym___based] = ACTIONS(2965), + [anon_sym_signed] = ACTIONS(2965), + [anon_sym_unsigned] = ACTIONS(2965), + [anon_sym_long] = ACTIONS(2965), + [anon_sym_short] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_static] = ACTIONS(2965), + [anon_sym_register] = ACTIONS(2965), + [anon_sym_inline] = ACTIONS(2965), + [anon_sym___inline] = ACTIONS(2965), + [anon_sym___inline__] = ACTIONS(2965), + [anon_sym___forceinline] = ACTIONS(2965), + [anon_sym_thread_local] = ACTIONS(2965), + [anon_sym___thread] = ACTIONS(2965), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_constexpr] = ACTIONS(2965), + [anon_sym_volatile] = ACTIONS(2965), + [anon_sym_restrict] = ACTIONS(2965), + [anon_sym___restrict__] = ACTIONS(2965), + [anon_sym__Atomic] = ACTIONS(2965), + [anon_sym__Noreturn] = ACTIONS(2965), + [anon_sym_noreturn] = ACTIONS(2965), + [anon_sym_mutable] = ACTIONS(2965), + [anon_sym_constinit] = ACTIONS(2965), + [anon_sym_consteval] = ACTIONS(2965), + [sym_primitive_type] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_class] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_union] = ACTIONS(2965), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2965), + [anon_sym_decltype] = ACTIONS(2965), + [anon_sym_virtual] = ACTIONS(2965), + [anon_sym_alignas] = ACTIONS(2965), + [anon_sym_explicit] = ACTIONS(2965), + [anon_sym_typename] = ACTIONS(2965), + [anon_sym_template] = ACTIONS(2965), + [anon_sym_operator] = ACTIONS(2965), + [anon_sym_friend] = ACTIONS(2965), + [anon_sym_public] = ACTIONS(2965), + [anon_sym_private] = ACTIONS(2965), + [anon_sym_protected] = ACTIONS(2965), + [anon_sym_using] = ACTIONS(2965), + [anon_sym_static_assert] = ACTIONS(2965), }, [2058] = { - [sym__expression] = STATE(4888), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(3091), + [aux_sym_preproc_def_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token2] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), + [aux_sym_preproc_else_token1] = ACTIONS(3091), + [aux_sym_preproc_elif_token1] = ACTIONS(3091), + [sym_preproc_directive] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym___based] = ACTIONS(3091), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym_explicit] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_operator] = ACTIONS(3091), + [anon_sym_friend] = ACTIONS(3091), + [anon_sym_public] = ACTIONS(3091), + [anon_sym_private] = ACTIONS(3091), + [anon_sym_protected] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_static_assert] = ACTIONS(3091), }, [2059] = { - [sym__expression] = STATE(5283), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4975), + [aux_sym_preproc_def_token1] = ACTIONS(4975), + [aux_sym_preproc_if_token1] = ACTIONS(4975), + [aux_sym_preproc_if_token2] = ACTIONS(4975), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4975), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4975), + [aux_sym_preproc_else_token1] = ACTIONS(4975), + [aux_sym_preproc_elif_token1] = ACTIONS(4975), + [sym_preproc_directive] = ACTIONS(4975), + [anon_sym_LPAREN2] = ACTIONS(4977), + [anon_sym_TILDE] = ACTIONS(4977), + [anon_sym_STAR] = ACTIONS(4977), + [anon_sym_AMP_AMP] = ACTIONS(4977), + [anon_sym_AMP] = ACTIONS(4975), + [anon_sym___extension__] = ACTIONS(4975), + [anon_sym_typedef] = ACTIONS(4975), + [anon_sym_extern] = ACTIONS(4975), + [anon_sym___attribute__] = ACTIONS(4975), + [anon_sym_COLON_COLON] = ACTIONS(4977), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4977), + [anon_sym___declspec] = ACTIONS(4975), + [anon_sym___based] = ACTIONS(4975), + [anon_sym_signed] = ACTIONS(4975), + [anon_sym_unsigned] = ACTIONS(4975), + [anon_sym_long] = ACTIONS(4975), + [anon_sym_short] = ACTIONS(4975), + [anon_sym_LBRACK] = ACTIONS(4975), + [anon_sym_static] = ACTIONS(4975), + [anon_sym_register] = ACTIONS(4975), + [anon_sym_inline] = ACTIONS(4975), + [anon_sym___inline] = ACTIONS(4975), + [anon_sym___inline__] = ACTIONS(4975), + [anon_sym___forceinline] = ACTIONS(4975), + [anon_sym_thread_local] = ACTIONS(4975), + [anon_sym___thread] = ACTIONS(4975), + [anon_sym_const] = ACTIONS(4975), + [anon_sym_constexpr] = ACTIONS(4975), + [anon_sym_volatile] = ACTIONS(4975), + [anon_sym_restrict] = ACTIONS(4975), + [anon_sym___restrict__] = ACTIONS(4975), + [anon_sym__Atomic] = ACTIONS(4975), + [anon_sym__Noreturn] = ACTIONS(4975), + [anon_sym_noreturn] = ACTIONS(4975), + [anon_sym_mutable] = ACTIONS(4975), + [anon_sym_constinit] = ACTIONS(4975), + [anon_sym_consteval] = ACTIONS(4975), + [sym_primitive_type] = ACTIONS(4975), + [anon_sym_enum] = ACTIONS(4975), + [anon_sym_class] = ACTIONS(4975), + [anon_sym_struct] = ACTIONS(4975), + [anon_sym_union] = ACTIONS(4975), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4975), + [anon_sym_decltype] = ACTIONS(4975), + [anon_sym_virtual] = ACTIONS(4975), + [anon_sym_alignas] = ACTIONS(4975), + [anon_sym_explicit] = ACTIONS(4975), + [anon_sym_typename] = ACTIONS(4975), + [anon_sym_template] = ACTIONS(4975), + [anon_sym_operator] = ACTIONS(4975), + [anon_sym_friend] = ACTIONS(4975), + [anon_sym_public] = ACTIONS(4975), + [anon_sym_private] = ACTIONS(4975), + [anon_sym_protected] = ACTIONS(4975), + [anon_sym_using] = ACTIONS(4975), + [anon_sym_static_assert] = ACTIONS(4975), }, [2060] = { - [sym__expression] = STATE(5147), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4971), + [aux_sym_preproc_def_token1] = ACTIONS(4971), + [aux_sym_preproc_if_token1] = ACTIONS(4971), + [aux_sym_preproc_if_token2] = ACTIONS(4971), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4971), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4971), + [aux_sym_preproc_else_token1] = ACTIONS(4971), + [aux_sym_preproc_elif_token1] = ACTIONS(4971), + [sym_preproc_directive] = ACTIONS(4971), + [anon_sym_LPAREN2] = ACTIONS(4973), + [anon_sym_TILDE] = ACTIONS(4973), + [anon_sym_STAR] = ACTIONS(4973), + [anon_sym_AMP_AMP] = ACTIONS(4973), + [anon_sym_AMP] = ACTIONS(4971), + [anon_sym___extension__] = ACTIONS(4971), + [anon_sym_typedef] = ACTIONS(4971), + [anon_sym_extern] = ACTIONS(4971), + [anon_sym___attribute__] = ACTIONS(4971), + [anon_sym_COLON_COLON] = ACTIONS(4973), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4973), + [anon_sym___declspec] = ACTIONS(4971), + [anon_sym___based] = ACTIONS(4971), + [anon_sym_signed] = ACTIONS(4971), + [anon_sym_unsigned] = ACTIONS(4971), + [anon_sym_long] = ACTIONS(4971), + [anon_sym_short] = ACTIONS(4971), + [anon_sym_LBRACK] = ACTIONS(4971), + [anon_sym_static] = ACTIONS(4971), + [anon_sym_register] = ACTIONS(4971), + [anon_sym_inline] = ACTIONS(4971), + [anon_sym___inline] = ACTIONS(4971), + [anon_sym___inline__] = ACTIONS(4971), + [anon_sym___forceinline] = ACTIONS(4971), + [anon_sym_thread_local] = ACTIONS(4971), + [anon_sym___thread] = ACTIONS(4971), + [anon_sym_const] = ACTIONS(4971), + [anon_sym_constexpr] = ACTIONS(4971), + [anon_sym_volatile] = ACTIONS(4971), + [anon_sym_restrict] = ACTIONS(4971), + [anon_sym___restrict__] = ACTIONS(4971), + [anon_sym__Atomic] = ACTIONS(4971), + [anon_sym__Noreturn] = ACTIONS(4971), + [anon_sym_noreturn] = ACTIONS(4971), + [anon_sym_mutable] = ACTIONS(4971), + [anon_sym_constinit] = ACTIONS(4971), + [anon_sym_consteval] = ACTIONS(4971), + [sym_primitive_type] = ACTIONS(4971), + [anon_sym_enum] = ACTIONS(4971), + [anon_sym_class] = ACTIONS(4971), + [anon_sym_struct] = ACTIONS(4971), + [anon_sym_union] = ACTIONS(4971), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4971), + [anon_sym_decltype] = ACTIONS(4971), + [anon_sym_virtual] = ACTIONS(4971), + [anon_sym_alignas] = ACTIONS(4971), + [anon_sym_explicit] = ACTIONS(4971), + [anon_sym_typename] = ACTIONS(4971), + [anon_sym_template] = ACTIONS(4971), + [anon_sym_operator] = ACTIONS(4971), + [anon_sym_friend] = ACTIONS(4971), + [anon_sym_public] = ACTIONS(4971), + [anon_sym_private] = ACTIONS(4971), + [anon_sym_protected] = ACTIONS(4971), + [anon_sym_using] = ACTIONS(4971), + [anon_sym_static_assert] = ACTIONS(4971), }, [2061] = { - [sym__expression] = STATE(4995), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4967), + [aux_sym_preproc_def_token1] = ACTIONS(4967), + [aux_sym_preproc_if_token1] = ACTIONS(4967), + [aux_sym_preproc_if_token2] = ACTIONS(4967), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4967), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4967), + [aux_sym_preproc_else_token1] = ACTIONS(4967), + [aux_sym_preproc_elif_token1] = ACTIONS(4967), + [sym_preproc_directive] = ACTIONS(4967), + [anon_sym_LPAREN2] = ACTIONS(4969), + [anon_sym_TILDE] = ACTIONS(4969), + [anon_sym_STAR] = ACTIONS(4969), + [anon_sym_AMP_AMP] = ACTIONS(4969), + [anon_sym_AMP] = ACTIONS(4967), + [anon_sym___extension__] = ACTIONS(4967), + [anon_sym_typedef] = ACTIONS(4967), + [anon_sym_extern] = ACTIONS(4967), + [anon_sym___attribute__] = ACTIONS(4967), + [anon_sym_COLON_COLON] = ACTIONS(4969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4969), + [anon_sym___declspec] = ACTIONS(4967), + [anon_sym___based] = ACTIONS(4967), + [anon_sym_signed] = ACTIONS(4967), + [anon_sym_unsigned] = ACTIONS(4967), + [anon_sym_long] = ACTIONS(4967), + [anon_sym_short] = ACTIONS(4967), + [anon_sym_LBRACK] = ACTIONS(4967), + [anon_sym_static] = ACTIONS(4967), + [anon_sym_register] = ACTIONS(4967), + [anon_sym_inline] = ACTIONS(4967), + [anon_sym___inline] = ACTIONS(4967), + [anon_sym___inline__] = ACTIONS(4967), + [anon_sym___forceinline] = ACTIONS(4967), + [anon_sym_thread_local] = ACTIONS(4967), + [anon_sym___thread] = ACTIONS(4967), + [anon_sym_const] = ACTIONS(4967), + [anon_sym_constexpr] = ACTIONS(4967), + [anon_sym_volatile] = ACTIONS(4967), + [anon_sym_restrict] = ACTIONS(4967), + [anon_sym___restrict__] = ACTIONS(4967), + [anon_sym__Atomic] = ACTIONS(4967), + [anon_sym__Noreturn] = ACTIONS(4967), + [anon_sym_noreturn] = ACTIONS(4967), + [anon_sym_mutable] = ACTIONS(4967), + [anon_sym_constinit] = ACTIONS(4967), + [anon_sym_consteval] = ACTIONS(4967), + [sym_primitive_type] = ACTIONS(4967), + [anon_sym_enum] = ACTIONS(4967), + [anon_sym_class] = ACTIONS(4967), + [anon_sym_struct] = ACTIONS(4967), + [anon_sym_union] = ACTIONS(4967), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4967), + [anon_sym_decltype] = ACTIONS(4967), + [anon_sym_virtual] = ACTIONS(4967), + [anon_sym_alignas] = ACTIONS(4967), + [anon_sym_explicit] = ACTIONS(4967), + [anon_sym_typename] = ACTIONS(4967), + [anon_sym_template] = ACTIONS(4967), + [anon_sym_operator] = ACTIONS(4967), + [anon_sym_friend] = ACTIONS(4967), + [anon_sym_public] = ACTIONS(4967), + [anon_sym_private] = ACTIONS(4967), + [anon_sym_protected] = ACTIONS(4967), + [anon_sym_using] = ACTIONS(4967), + [anon_sym_static_assert] = ACTIONS(4967), }, [2062] = { - [sym__expression] = STATE(5144), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4963), + [aux_sym_preproc_def_token1] = ACTIONS(4963), + [aux_sym_preproc_if_token1] = ACTIONS(4963), + [aux_sym_preproc_if_token2] = ACTIONS(4963), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4963), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4963), + [aux_sym_preproc_else_token1] = ACTIONS(4963), + [aux_sym_preproc_elif_token1] = ACTIONS(4963), + [sym_preproc_directive] = ACTIONS(4963), + [anon_sym_LPAREN2] = ACTIONS(4965), + [anon_sym_TILDE] = ACTIONS(4965), + [anon_sym_STAR] = ACTIONS(4965), + [anon_sym_AMP_AMP] = ACTIONS(4965), + [anon_sym_AMP] = ACTIONS(4963), + [anon_sym___extension__] = ACTIONS(4963), + [anon_sym_typedef] = ACTIONS(4963), + [anon_sym_extern] = ACTIONS(4963), + [anon_sym___attribute__] = ACTIONS(4963), + [anon_sym_COLON_COLON] = ACTIONS(4965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4965), + [anon_sym___declspec] = ACTIONS(4963), + [anon_sym___based] = ACTIONS(4963), + [anon_sym_signed] = ACTIONS(4963), + [anon_sym_unsigned] = ACTIONS(4963), + [anon_sym_long] = ACTIONS(4963), + [anon_sym_short] = ACTIONS(4963), + [anon_sym_LBRACK] = ACTIONS(4963), + [anon_sym_static] = ACTIONS(4963), + [anon_sym_register] = ACTIONS(4963), + [anon_sym_inline] = ACTIONS(4963), + [anon_sym___inline] = ACTIONS(4963), + [anon_sym___inline__] = ACTIONS(4963), + [anon_sym___forceinline] = ACTIONS(4963), + [anon_sym_thread_local] = ACTIONS(4963), + [anon_sym___thread] = ACTIONS(4963), + [anon_sym_const] = ACTIONS(4963), + [anon_sym_constexpr] = ACTIONS(4963), + [anon_sym_volatile] = ACTIONS(4963), + [anon_sym_restrict] = ACTIONS(4963), + [anon_sym___restrict__] = ACTIONS(4963), + [anon_sym__Atomic] = ACTIONS(4963), + [anon_sym__Noreturn] = ACTIONS(4963), + [anon_sym_noreturn] = ACTIONS(4963), + [anon_sym_mutable] = ACTIONS(4963), + [anon_sym_constinit] = ACTIONS(4963), + [anon_sym_consteval] = ACTIONS(4963), + [sym_primitive_type] = ACTIONS(4963), + [anon_sym_enum] = ACTIONS(4963), + [anon_sym_class] = ACTIONS(4963), + [anon_sym_struct] = ACTIONS(4963), + [anon_sym_union] = ACTIONS(4963), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4963), + [anon_sym_decltype] = ACTIONS(4963), + [anon_sym_virtual] = ACTIONS(4963), + [anon_sym_alignas] = ACTIONS(4963), + [anon_sym_explicit] = ACTIONS(4963), + [anon_sym_typename] = ACTIONS(4963), + [anon_sym_template] = ACTIONS(4963), + [anon_sym_operator] = ACTIONS(4963), + [anon_sym_friend] = ACTIONS(4963), + [anon_sym_public] = ACTIONS(4963), + [anon_sym_private] = ACTIONS(4963), + [anon_sym_protected] = ACTIONS(4963), + [anon_sym_using] = ACTIONS(4963), + [anon_sym_static_assert] = ACTIONS(4963), }, [2063] = { - [sym__expression] = STATE(4783), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4959), + [aux_sym_preproc_def_token1] = ACTIONS(4959), + [aux_sym_preproc_if_token1] = ACTIONS(4959), + [aux_sym_preproc_if_token2] = ACTIONS(4959), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4959), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4959), + [aux_sym_preproc_else_token1] = ACTIONS(4959), + [aux_sym_preproc_elif_token1] = ACTIONS(4959), + [sym_preproc_directive] = ACTIONS(4959), + [anon_sym_LPAREN2] = ACTIONS(4961), + [anon_sym_TILDE] = ACTIONS(4961), + [anon_sym_STAR] = ACTIONS(4961), + [anon_sym_AMP_AMP] = ACTIONS(4961), + [anon_sym_AMP] = ACTIONS(4959), + [anon_sym___extension__] = ACTIONS(4959), + [anon_sym_typedef] = ACTIONS(4959), + [anon_sym_extern] = ACTIONS(4959), + [anon_sym___attribute__] = ACTIONS(4959), + [anon_sym_COLON_COLON] = ACTIONS(4961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4961), + [anon_sym___declspec] = ACTIONS(4959), + [anon_sym___based] = ACTIONS(4959), + [anon_sym_signed] = ACTIONS(4959), + [anon_sym_unsigned] = ACTIONS(4959), + [anon_sym_long] = ACTIONS(4959), + [anon_sym_short] = ACTIONS(4959), + [anon_sym_LBRACK] = ACTIONS(4959), + [anon_sym_static] = ACTIONS(4959), + [anon_sym_register] = ACTIONS(4959), + [anon_sym_inline] = ACTIONS(4959), + [anon_sym___inline] = ACTIONS(4959), + [anon_sym___inline__] = ACTIONS(4959), + [anon_sym___forceinline] = ACTIONS(4959), + [anon_sym_thread_local] = ACTIONS(4959), + [anon_sym___thread] = ACTIONS(4959), + [anon_sym_const] = ACTIONS(4959), + [anon_sym_constexpr] = ACTIONS(4959), + [anon_sym_volatile] = ACTIONS(4959), + [anon_sym_restrict] = ACTIONS(4959), + [anon_sym___restrict__] = ACTIONS(4959), + [anon_sym__Atomic] = ACTIONS(4959), + [anon_sym__Noreturn] = ACTIONS(4959), + [anon_sym_noreturn] = ACTIONS(4959), + [anon_sym_mutable] = ACTIONS(4959), + [anon_sym_constinit] = ACTIONS(4959), + [anon_sym_consteval] = ACTIONS(4959), + [sym_primitive_type] = ACTIONS(4959), + [anon_sym_enum] = ACTIONS(4959), + [anon_sym_class] = ACTIONS(4959), + [anon_sym_struct] = ACTIONS(4959), + [anon_sym_union] = ACTIONS(4959), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4959), + [anon_sym_decltype] = ACTIONS(4959), + [anon_sym_virtual] = ACTIONS(4959), + [anon_sym_alignas] = ACTIONS(4959), + [anon_sym_explicit] = ACTIONS(4959), + [anon_sym_typename] = ACTIONS(4959), + [anon_sym_template] = ACTIONS(4959), + [anon_sym_operator] = ACTIONS(4959), + [anon_sym_friend] = ACTIONS(4959), + [anon_sym_public] = ACTIONS(4959), + [anon_sym_private] = ACTIONS(4959), + [anon_sym_protected] = ACTIONS(4959), + [anon_sym_using] = ACTIONS(4959), + [anon_sym_static_assert] = ACTIONS(4959), }, [2064] = { - [sym__expression] = STATE(4316), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(4800), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(4951), + [aux_sym_preproc_def_token1] = ACTIONS(4951), + [aux_sym_preproc_if_token1] = ACTIONS(4951), + [aux_sym_preproc_if_token2] = ACTIONS(4951), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4951), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4951), + [aux_sym_preproc_else_token1] = ACTIONS(4951), + [aux_sym_preproc_elif_token1] = ACTIONS(4951), + [sym_preproc_directive] = ACTIONS(4951), + [anon_sym_LPAREN2] = ACTIONS(4953), + [anon_sym_TILDE] = ACTIONS(4953), + [anon_sym_STAR] = ACTIONS(4953), + [anon_sym_AMP_AMP] = ACTIONS(4953), + [anon_sym_AMP] = ACTIONS(4951), + [anon_sym___extension__] = ACTIONS(4951), + [anon_sym_typedef] = ACTIONS(4951), + [anon_sym_extern] = ACTIONS(4951), + [anon_sym___attribute__] = ACTIONS(4951), + [anon_sym_COLON_COLON] = ACTIONS(4953), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4953), + [anon_sym___declspec] = ACTIONS(4951), + [anon_sym___based] = ACTIONS(4951), + [anon_sym_signed] = ACTIONS(4951), + [anon_sym_unsigned] = ACTIONS(4951), + [anon_sym_long] = ACTIONS(4951), + [anon_sym_short] = ACTIONS(4951), + [anon_sym_LBRACK] = ACTIONS(4951), + [anon_sym_static] = ACTIONS(4951), + [anon_sym_register] = ACTIONS(4951), + [anon_sym_inline] = ACTIONS(4951), + [anon_sym___inline] = ACTIONS(4951), + [anon_sym___inline__] = ACTIONS(4951), + [anon_sym___forceinline] = ACTIONS(4951), + [anon_sym_thread_local] = ACTIONS(4951), + [anon_sym___thread] = ACTIONS(4951), + [anon_sym_const] = ACTIONS(4951), + [anon_sym_constexpr] = ACTIONS(4951), + [anon_sym_volatile] = ACTIONS(4951), + [anon_sym_restrict] = ACTIONS(4951), + [anon_sym___restrict__] = ACTIONS(4951), + [anon_sym__Atomic] = ACTIONS(4951), + [anon_sym__Noreturn] = ACTIONS(4951), + [anon_sym_noreturn] = ACTIONS(4951), + [anon_sym_mutable] = ACTIONS(4951), + [anon_sym_constinit] = ACTIONS(4951), + [anon_sym_consteval] = ACTIONS(4951), + [sym_primitive_type] = ACTIONS(4951), + [anon_sym_enum] = ACTIONS(4951), + [anon_sym_class] = ACTIONS(4951), + [anon_sym_struct] = ACTIONS(4951), + [anon_sym_union] = ACTIONS(4951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4951), + [anon_sym_decltype] = ACTIONS(4951), + [anon_sym_virtual] = ACTIONS(4951), + [anon_sym_alignas] = ACTIONS(4951), + [anon_sym_explicit] = ACTIONS(4951), + [anon_sym_typename] = ACTIONS(4951), + [anon_sym_template] = ACTIONS(4951), + [anon_sym_operator] = ACTIONS(4951), + [anon_sym_friend] = ACTIONS(4951), + [anon_sym_public] = ACTIONS(4951), + [anon_sym_private] = ACTIONS(4951), + [anon_sym_protected] = ACTIONS(4951), + [anon_sym_using] = ACTIONS(4951), + [anon_sym_static_assert] = ACTIONS(4951), }, [2065] = { - [sym__expression] = STATE(5356), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4951), + [aux_sym_preproc_def_token1] = ACTIONS(4951), + [aux_sym_preproc_if_token1] = ACTIONS(4951), + [aux_sym_preproc_if_token2] = ACTIONS(4951), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4951), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4951), + [aux_sym_preproc_else_token1] = ACTIONS(4951), + [aux_sym_preproc_elif_token1] = ACTIONS(4951), + [sym_preproc_directive] = ACTIONS(4951), + [anon_sym_LPAREN2] = ACTIONS(4953), + [anon_sym_TILDE] = ACTIONS(4953), + [anon_sym_STAR] = ACTIONS(4953), + [anon_sym_AMP_AMP] = ACTIONS(4953), + [anon_sym_AMP] = ACTIONS(4951), + [anon_sym___extension__] = ACTIONS(4951), + [anon_sym_typedef] = ACTIONS(4951), + [anon_sym_extern] = ACTIONS(4951), + [anon_sym___attribute__] = ACTIONS(4951), + [anon_sym_COLON_COLON] = ACTIONS(4953), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4953), + [anon_sym___declspec] = ACTIONS(4951), + [anon_sym___based] = ACTIONS(4951), + [anon_sym_signed] = ACTIONS(4951), + [anon_sym_unsigned] = ACTIONS(4951), + [anon_sym_long] = ACTIONS(4951), + [anon_sym_short] = ACTIONS(4951), + [anon_sym_LBRACK] = ACTIONS(4951), + [anon_sym_static] = ACTIONS(4951), + [anon_sym_register] = ACTIONS(4951), + [anon_sym_inline] = ACTIONS(4951), + [anon_sym___inline] = ACTIONS(4951), + [anon_sym___inline__] = ACTIONS(4951), + [anon_sym___forceinline] = ACTIONS(4951), + [anon_sym_thread_local] = ACTIONS(4951), + [anon_sym___thread] = ACTIONS(4951), + [anon_sym_const] = ACTIONS(4951), + [anon_sym_constexpr] = ACTIONS(4951), + [anon_sym_volatile] = ACTIONS(4951), + [anon_sym_restrict] = ACTIONS(4951), + [anon_sym___restrict__] = ACTIONS(4951), + [anon_sym__Atomic] = ACTIONS(4951), + [anon_sym__Noreturn] = ACTIONS(4951), + [anon_sym_noreturn] = ACTIONS(4951), + [anon_sym_mutable] = ACTIONS(4951), + [anon_sym_constinit] = ACTIONS(4951), + [anon_sym_consteval] = ACTIONS(4951), + [sym_primitive_type] = ACTIONS(4951), + [anon_sym_enum] = ACTIONS(4951), + [anon_sym_class] = ACTIONS(4951), + [anon_sym_struct] = ACTIONS(4951), + [anon_sym_union] = ACTIONS(4951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4951), + [anon_sym_decltype] = ACTIONS(4951), + [anon_sym_virtual] = ACTIONS(4951), + [anon_sym_alignas] = ACTIONS(4951), + [anon_sym_explicit] = ACTIONS(4951), + [anon_sym_typename] = ACTIONS(4951), + [anon_sym_template] = ACTIONS(4951), + [anon_sym_operator] = ACTIONS(4951), + [anon_sym_friend] = ACTIONS(4951), + [anon_sym_public] = ACTIONS(4951), + [anon_sym_private] = ACTIONS(4951), + [anon_sym_protected] = ACTIONS(4951), + [anon_sym_using] = ACTIONS(4951), + [anon_sym_static_assert] = ACTIONS(4951), }, [2066] = { - [sym__expression] = STATE(4778), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4947), + [aux_sym_preproc_def_token1] = ACTIONS(4947), + [aux_sym_preproc_if_token1] = ACTIONS(4947), + [aux_sym_preproc_if_token2] = ACTIONS(4947), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4947), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4947), + [aux_sym_preproc_else_token1] = ACTIONS(4947), + [aux_sym_preproc_elif_token1] = ACTIONS(4947), + [sym_preproc_directive] = ACTIONS(4947), + [anon_sym_LPAREN2] = ACTIONS(4949), + [anon_sym_TILDE] = ACTIONS(4949), + [anon_sym_STAR] = ACTIONS(4949), + [anon_sym_AMP_AMP] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(4947), + [anon_sym___extension__] = ACTIONS(4947), + [anon_sym_typedef] = ACTIONS(4947), + [anon_sym_extern] = ACTIONS(4947), + [anon_sym___attribute__] = ACTIONS(4947), + [anon_sym_COLON_COLON] = ACTIONS(4949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4949), + [anon_sym___declspec] = ACTIONS(4947), + [anon_sym___based] = ACTIONS(4947), + [anon_sym_signed] = ACTIONS(4947), + [anon_sym_unsigned] = ACTIONS(4947), + [anon_sym_long] = ACTIONS(4947), + [anon_sym_short] = ACTIONS(4947), + [anon_sym_LBRACK] = ACTIONS(4947), + [anon_sym_static] = ACTIONS(4947), + [anon_sym_register] = ACTIONS(4947), + [anon_sym_inline] = ACTIONS(4947), + [anon_sym___inline] = ACTIONS(4947), + [anon_sym___inline__] = ACTIONS(4947), + [anon_sym___forceinline] = ACTIONS(4947), + [anon_sym_thread_local] = ACTIONS(4947), + [anon_sym___thread] = ACTIONS(4947), + [anon_sym_const] = ACTIONS(4947), + [anon_sym_constexpr] = ACTIONS(4947), + [anon_sym_volatile] = ACTIONS(4947), + [anon_sym_restrict] = ACTIONS(4947), + [anon_sym___restrict__] = ACTIONS(4947), + [anon_sym__Atomic] = ACTIONS(4947), + [anon_sym__Noreturn] = ACTIONS(4947), + [anon_sym_noreturn] = ACTIONS(4947), + [anon_sym_mutable] = ACTIONS(4947), + [anon_sym_constinit] = ACTIONS(4947), + [anon_sym_consteval] = ACTIONS(4947), + [sym_primitive_type] = ACTIONS(4947), + [anon_sym_enum] = ACTIONS(4947), + [anon_sym_class] = ACTIONS(4947), + [anon_sym_struct] = ACTIONS(4947), + [anon_sym_union] = ACTIONS(4947), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4947), + [anon_sym_decltype] = ACTIONS(4947), + [anon_sym_virtual] = ACTIONS(4947), + [anon_sym_alignas] = ACTIONS(4947), + [anon_sym_explicit] = ACTIONS(4947), + [anon_sym_typename] = ACTIONS(4947), + [anon_sym_template] = ACTIONS(4947), + [anon_sym_operator] = ACTIONS(4947), + [anon_sym_friend] = ACTIONS(4947), + [anon_sym_public] = ACTIONS(4947), + [anon_sym_private] = ACTIONS(4947), + [anon_sym_protected] = ACTIONS(4947), + [anon_sym_using] = ACTIONS(4947), + [anon_sym_static_assert] = ACTIONS(4947), }, [2067] = { - [sym__expression] = STATE(4317), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), + [sym_identifier] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token2] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [aux_sym_preproc_else_token1] = ACTIONS(4943), + [aux_sym_preproc_elif_token1] = ACTIONS(4943), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_TILDE] = ACTIONS(4945), + [anon_sym_STAR] = ACTIONS(4945), + [anon_sym_AMP_AMP] = ACTIONS(4945), + [anon_sym_AMP] = ACTIONS(4943), + [anon_sym___extension__] = ACTIONS(4943), + [anon_sym_typedef] = ACTIONS(4943), + [anon_sym_extern] = ACTIONS(4943), + [anon_sym___attribute__] = ACTIONS(4943), + [anon_sym_COLON_COLON] = ACTIONS(4945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4945), + [anon_sym___declspec] = ACTIONS(4943), + [anon_sym___based] = ACTIONS(4943), + [anon_sym_signed] = ACTIONS(4943), + [anon_sym_unsigned] = ACTIONS(4943), + [anon_sym_long] = ACTIONS(4943), + [anon_sym_short] = ACTIONS(4943), + [anon_sym_LBRACK] = ACTIONS(4943), + [anon_sym_static] = ACTIONS(4943), + [anon_sym_register] = ACTIONS(4943), + [anon_sym_inline] = ACTIONS(4943), + [anon_sym___inline] = ACTIONS(4943), + [anon_sym___inline__] = ACTIONS(4943), + [anon_sym___forceinline] = ACTIONS(4943), + [anon_sym_thread_local] = ACTIONS(4943), + [anon_sym___thread] = ACTIONS(4943), + [anon_sym_const] = ACTIONS(4943), + [anon_sym_constexpr] = ACTIONS(4943), + [anon_sym_volatile] = ACTIONS(4943), + [anon_sym_restrict] = ACTIONS(4943), + [anon_sym___restrict__] = ACTIONS(4943), + [anon_sym__Atomic] = ACTIONS(4943), + [anon_sym__Noreturn] = ACTIONS(4943), + [anon_sym_noreturn] = ACTIONS(4943), + [anon_sym_mutable] = ACTIONS(4943), + [anon_sym_constinit] = ACTIONS(4943), + [anon_sym_consteval] = ACTIONS(4943), + [sym_primitive_type] = ACTIONS(4943), + [anon_sym_enum] = ACTIONS(4943), + [anon_sym_class] = ACTIONS(4943), + [anon_sym_struct] = ACTIONS(4943), + [anon_sym_union] = ACTIONS(4943), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4943), + [anon_sym_decltype] = ACTIONS(4943), + [anon_sym_virtual] = ACTIONS(4943), + [anon_sym_alignas] = ACTIONS(4943), + [anon_sym_explicit] = ACTIONS(4943), + [anon_sym_typename] = ACTIONS(4943), + [anon_sym_template] = ACTIONS(4943), + [anon_sym_operator] = ACTIONS(4943), + [anon_sym_friend] = ACTIONS(4943), + [anon_sym_public] = ACTIONS(4943), + [anon_sym_private] = ACTIONS(4943), + [anon_sym_protected] = ACTIONS(4943), + [anon_sym_using] = ACTIONS(4943), + [anon_sym_static_assert] = ACTIONS(4943), }, [2068] = { - [sym__expression] = STATE(5394), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4939), + [aux_sym_preproc_def_token1] = ACTIONS(4939), + [aux_sym_preproc_if_token1] = ACTIONS(4939), + [aux_sym_preproc_if_token2] = ACTIONS(4939), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4939), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4939), + [aux_sym_preproc_else_token1] = ACTIONS(4939), + [aux_sym_preproc_elif_token1] = ACTIONS(4939), + [sym_preproc_directive] = ACTIONS(4939), + [anon_sym_LPAREN2] = ACTIONS(4941), + [anon_sym_TILDE] = ACTIONS(4941), + [anon_sym_STAR] = ACTIONS(4941), + [anon_sym_AMP_AMP] = ACTIONS(4941), + [anon_sym_AMP] = ACTIONS(4939), + [anon_sym___extension__] = ACTIONS(4939), + [anon_sym_typedef] = ACTIONS(4939), + [anon_sym_extern] = ACTIONS(4939), + [anon_sym___attribute__] = ACTIONS(4939), + [anon_sym_COLON_COLON] = ACTIONS(4941), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4941), + [anon_sym___declspec] = ACTIONS(4939), + [anon_sym___based] = ACTIONS(4939), + [anon_sym_signed] = ACTIONS(4939), + [anon_sym_unsigned] = ACTIONS(4939), + [anon_sym_long] = ACTIONS(4939), + [anon_sym_short] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [anon_sym_static] = ACTIONS(4939), + [anon_sym_register] = ACTIONS(4939), + [anon_sym_inline] = ACTIONS(4939), + [anon_sym___inline] = ACTIONS(4939), + [anon_sym___inline__] = ACTIONS(4939), + [anon_sym___forceinline] = ACTIONS(4939), + [anon_sym_thread_local] = ACTIONS(4939), + [anon_sym___thread] = ACTIONS(4939), + [anon_sym_const] = ACTIONS(4939), + [anon_sym_constexpr] = ACTIONS(4939), + [anon_sym_volatile] = ACTIONS(4939), + [anon_sym_restrict] = ACTIONS(4939), + [anon_sym___restrict__] = ACTIONS(4939), + [anon_sym__Atomic] = ACTIONS(4939), + [anon_sym__Noreturn] = ACTIONS(4939), + [anon_sym_noreturn] = ACTIONS(4939), + [anon_sym_mutable] = ACTIONS(4939), + [anon_sym_constinit] = ACTIONS(4939), + [anon_sym_consteval] = ACTIONS(4939), + [sym_primitive_type] = ACTIONS(4939), + [anon_sym_enum] = ACTIONS(4939), + [anon_sym_class] = ACTIONS(4939), + [anon_sym_struct] = ACTIONS(4939), + [anon_sym_union] = ACTIONS(4939), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4939), + [anon_sym_decltype] = ACTIONS(4939), + [anon_sym_virtual] = ACTIONS(4939), + [anon_sym_alignas] = ACTIONS(4939), + [anon_sym_explicit] = ACTIONS(4939), + [anon_sym_typename] = ACTIONS(4939), + [anon_sym_template] = ACTIONS(4939), + [anon_sym_operator] = ACTIONS(4939), + [anon_sym_friend] = ACTIONS(4939), + [anon_sym_public] = ACTIONS(4939), + [anon_sym_private] = ACTIONS(4939), + [anon_sym_protected] = ACTIONS(4939), + [anon_sym_using] = ACTIONS(4939), + [anon_sym_static_assert] = ACTIONS(4939), }, [2069] = { - [sym__expression] = STATE(5143), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token2] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [aux_sym_preproc_else_token1] = ACTIONS(4935), + [aux_sym_preproc_elif_token1] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4937), + [anon_sym_TILDE] = ACTIONS(4937), + [anon_sym_STAR] = ACTIONS(4937), + [anon_sym_AMP_AMP] = ACTIONS(4937), + [anon_sym_AMP] = ACTIONS(4935), + [anon_sym___extension__] = ACTIONS(4935), + [anon_sym_typedef] = ACTIONS(4935), + [anon_sym_extern] = ACTIONS(4935), + [anon_sym___attribute__] = ACTIONS(4935), + [anon_sym_COLON_COLON] = ACTIONS(4937), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4937), + [anon_sym___declspec] = ACTIONS(4935), + [anon_sym___based] = ACTIONS(4935), + [anon_sym_signed] = ACTIONS(4935), + [anon_sym_unsigned] = ACTIONS(4935), + [anon_sym_long] = ACTIONS(4935), + [anon_sym_short] = ACTIONS(4935), + [anon_sym_LBRACK] = ACTIONS(4935), + [anon_sym_static] = ACTIONS(4935), + [anon_sym_register] = ACTIONS(4935), + [anon_sym_inline] = ACTIONS(4935), + [anon_sym___inline] = ACTIONS(4935), + [anon_sym___inline__] = ACTIONS(4935), + [anon_sym___forceinline] = ACTIONS(4935), + [anon_sym_thread_local] = ACTIONS(4935), + [anon_sym___thread] = ACTIONS(4935), + [anon_sym_const] = ACTIONS(4935), + [anon_sym_constexpr] = ACTIONS(4935), + [anon_sym_volatile] = ACTIONS(4935), + [anon_sym_restrict] = ACTIONS(4935), + [anon_sym___restrict__] = ACTIONS(4935), + [anon_sym__Atomic] = ACTIONS(4935), + [anon_sym__Noreturn] = ACTIONS(4935), + [anon_sym_noreturn] = ACTIONS(4935), + [anon_sym_mutable] = ACTIONS(4935), + [anon_sym_constinit] = ACTIONS(4935), + [anon_sym_consteval] = ACTIONS(4935), + [sym_primitive_type] = ACTIONS(4935), + [anon_sym_enum] = ACTIONS(4935), + [anon_sym_class] = ACTIONS(4935), + [anon_sym_struct] = ACTIONS(4935), + [anon_sym_union] = ACTIONS(4935), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4935), + [anon_sym_decltype] = ACTIONS(4935), + [anon_sym_virtual] = ACTIONS(4935), + [anon_sym_alignas] = ACTIONS(4935), + [anon_sym_explicit] = ACTIONS(4935), + [anon_sym_typename] = ACTIONS(4935), + [anon_sym_template] = ACTIONS(4935), + [anon_sym_operator] = ACTIONS(4935), + [anon_sym_friend] = ACTIONS(4935), + [anon_sym_public] = ACTIONS(4935), + [anon_sym_private] = ACTIONS(4935), + [anon_sym_protected] = ACTIONS(4935), + [anon_sym_using] = ACTIONS(4935), + [anon_sym_static_assert] = ACTIONS(4935), }, [2070] = { - [sym__expression] = STATE(5374), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3202), + [aux_sym_preproc_def_token1] = ACTIONS(3202), + [aux_sym_preproc_if_token1] = ACTIONS(3202), + [aux_sym_preproc_if_token2] = ACTIONS(3202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3202), + [aux_sym_preproc_else_token1] = ACTIONS(3202), + [aux_sym_preproc_elif_token1] = ACTIONS(3202), + [sym_preproc_directive] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym___extension__] = ACTIONS(3202), + [anon_sym_typedef] = ACTIONS(3202), + [anon_sym_extern] = ACTIONS(3202), + [anon_sym___attribute__] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3204), + [anon_sym___declspec] = ACTIONS(3202), + [anon_sym___based] = ACTIONS(3202), + [anon_sym_signed] = ACTIONS(3202), + [anon_sym_unsigned] = ACTIONS(3202), + [anon_sym_long] = ACTIONS(3202), + [anon_sym_short] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_register] = ACTIONS(3202), + [anon_sym_inline] = ACTIONS(3202), + [anon_sym___inline] = ACTIONS(3202), + [anon_sym___inline__] = ACTIONS(3202), + [anon_sym___forceinline] = ACTIONS(3202), + [anon_sym_thread_local] = ACTIONS(3202), + [anon_sym___thread] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_constexpr] = ACTIONS(3202), + [anon_sym_volatile] = ACTIONS(3202), + [anon_sym_restrict] = ACTIONS(3202), + [anon_sym___restrict__] = ACTIONS(3202), + [anon_sym__Atomic] = ACTIONS(3202), + [anon_sym__Noreturn] = ACTIONS(3202), + [anon_sym_noreturn] = ACTIONS(3202), + [anon_sym_mutable] = ACTIONS(3202), + [anon_sym_constinit] = ACTIONS(3202), + [anon_sym_consteval] = ACTIONS(3202), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_union] = ACTIONS(3202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3202), + [anon_sym_decltype] = ACTIONS(3202), + [anon_sym_virtual] = ACTIONS(3202), + [anon_sym_alignas] = ACTIONS(3202), + [anon_sym_explicit] = ACTIONS(3202), + [anon_sym_typename] = ACTIONS(3202), + [anon_sym_template] = ACTIONS(3202), + [anon_sym_operator] = ACTIONS(3202), + [anon_sym_friend] = ACTIONS(3202), + [anon_sym_public] = ACTIONS(3202), + [anon_sym_private] = ACTIONS(3202), + [anon_sym_protected] = ACTIONS(3202), + [anon_sym_using] = ACTIONS(3202), + [anon_sym_static_assert] = ACTIONS(3202), }, [2071] = { - [sym__expression] = STATE(4962), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3198), + [aux_sym_preproc_def_token1] = ACTIONS(3198), + [aux_sym_preproc_if_token1] = ACTIONS(3198), + [aux_sym_preproc_if_token2] = ACTIONS(3198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3198), + [aux_sym_preproc_else_token1] = ACTIONS(3198), + [aux_sym_preproc_elif_token1] = ACTIONS(3198), + [sym_preproc_directive] = ACTIONS(3198), + [anon_sym_LPAREN2] = ACTIONS(3200), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym___extension__] = ACTIONS(3198), + [anon_sym_typedef] = ACTIONS(3198), + [anon_sym_extern] = ACTIONS(3198), + [anon_sym___attribute__] = ACTIONS(3198), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3200), + [anon_sym___declspec] = ACTIONS(3198), + [anon_sym___based] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3198), + [anon_sym_unsigned] = ACTIONS(3198), + [anon_sym_long] = ACTIONS(3198), + [anon_sym_short] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_register] = ACTIONS(3198), + [anon_sym_inline] = ACTIONS(3198), + [anon_sym___inline] = ACTIONS(3198), + [anon_sym___inline__] = ACTIONS(3198), + [anon_sym___forceinline] = ACTIONS(3198), + [anon_sym_thread_local] = ACTIONS(3198), + [anon_sym___thread] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_constexpr] = ACTIONS(3198), + [anon_sym_volatile] = ACTIONS(3198), + [anon_sym_restrict] = ACTIONS(3198), + [anon_sym___restrict__] = ACTIONS(3198), + [anon_sym__Atomic] = ACTIONS(3198), + [anon_sym__Noreturn] = ACTIONS(3198), + [anon_sym_noreturn] = ACTIONS(3198), + [anon_sym_mutable] = ACTIONS(3198), + [anon_sym_constinit] = ACTIONS(3198), + [anon_sym_consteval] = ACTIONS(3198), + [sym_primitive_type] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3198), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3198), + [anon_sym_decltype] = ACTIONS(3198), + [anon_sym_virtual] = ACTIONS(3198), + [anon_sym_alignas] = ACTIONS(3198), + [anon_sym_explicit] = ACTIONS(3198), + [anon_sym_typename] = ACTIONS(3198), + [anon_sym_template] = ACTIONS(3198), + [anon_sym_operator] = ACTIONS(3198), + [anon_sym_friend] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_static_assert] = ACTIONS(3198), }, [2072] = { - [sym__expression] = STATE(5142), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(2969), + [aux_sym_preproc_def_token1] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(2969), + [aux_sym_preproc_if_token2] = ACTIONS(2969), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), + [aux_sym_preproc_else_token1] = ACTIONS(2969), + [aux_sym_preproc_elif_token1] = ACTIONS(2969), + [sym_preproc_directive] = ACTIONS(2969), + [anon_sym_LPAREN2] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_STAR] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2969), + [anon_sym___extension__] = ACTIONS(2969), + [anon_sym_typedef] = ACTIONS(2969), + [anon_sym_extern] = ACTIONS(2969), + [anon_sym___attribute__] = ACTIONS(2969), + [anon_sym_COLON_COLON] = ACTIONS(2971), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), + [anon_sym___declspec] = ACTIONS(2969), + [anon_sym___based] = ACTIONS(2969), + [anon_sym_signed] = ACTIONS(2969), + [anon_sym_unsigned] = ACTIONS(2969), + [anon_sym_long] = ACTIONS(2969), + [anon_sym_short] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(2969), + [anon_sym_register] = ACTIONS(2969), + [anon_sym_inline] = ACTIONS(2969), + [anon_sym___inline] = ACTIONS(2969), + [anon_sym___inline__] = ACTIONS(2969), + [anon_sym___forceinline] = ACTIONS(2969), + [anon_sym_thread_local] = ACTIONS(2969), + [anon_sym___thread] = ACTIONS(2969), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_constexpr] = ACTIONS(2969), + [anon_sym_volatile] = ACTIONS(2969), + [anon_sym_restrict] = ACTIONS(2969), + [anon_sym___restrict__] = ACTIONS(2969), + [anon_sym__Atomic] = ACTIONS(2969), + [anon_sym__Noreturn] = ACTIONS(2969), + [anon_sym_noreturn] = ACTIONS(2969), + [anon_sym_mutable] = ACTIONS(2969), + [anon_sym_constinit] = ACTIONS(2969), + [anon_sym_consteval] = ACTIONS(2969), + [sym_primitive_type] = ACTIONS(2969), + [anon_sym_enum] = ACTIONS(2969), + [anon_sym_class] = ACTIONS(2969), + [anon_sym_struct] = ACTIONS(2969), + [anon_sym_union] = ACTIONS(2969), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2969), + [anon_sym_decltype] = ACTIONS(2969), + [anon_sym_virtual] = ACTIONS(2969), + [anon_sym_alignas] = ACTIONS(2969), + [anon_sym_explicit] = ACTIONS(2969), + [anon_sym_typename] = ACTIONS(2969), + [anon_sym_template] = ACTIONS(2969), + [anon_sym_operator] = ACTIONS(2969), + [anon_sym_friend] = ACTIONS(2969), + [anon_sym_public] = ACTIONS(2969), + [anon_sym_private] = ACTIONS(2969), + [anon_sym_protected] = ACTIONS(2969), + [anon_sym_using] = ACTIONS(2969), + [anon_sym_static_assert] = ACTIONS(2969), }, [2073] = { - [sym__expression] = STATE(5030), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4927), + [aux_sym_preproc_def_token1] = ACTIONS(4927), + [aux_sym_preproc_if_token1] = ACTIONS(4927), + [aux_sym_preproc_if_token2] = ACTIONS(4927), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4927), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4927), + [aux_sym_preproc_else_token1] = ACTIONS(4927), + [aux_sym_preproc_elif_token1] = ACTIONS(4927), + [sym_preproc_directive] = ACTIONS(4927), + [anon_sym_LPAREN2] = ACTIONS(4929), + [anon_sym_TILDE] = ACTIONS(4929), + [anon_sym_STAR] = ACTIONS(4929), + [anon_sym_AMP_AMP] = ACTIONS(4929), + [anon_sym_AMP] = ACTIONS(4927), + [anon_sym___extension__] = ACTIONS(4927), + [anon_sym_typedef] = ACTIONS(4927), + [anon_sym_extern] = ACTIONS(4927), + [anon_sym___attribute__] = ACTIONS(4927), + [anon_sym_COLON_COLON] = ACTIONS(4929), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4929), + [anon_sym___declspec] = ACTIONS(4927), + [anon_sym___based] = ACTIONS(4927), + [anon_sym_signed] = ACTIONS(4927), + [anon_sym_unsigned] = ACTIONS(4927), + [anon_sym_long] = ACTIONS(4927), + [anon_sym_short] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4927), + [anon_sym_static] = ACTIONS(4927), + [anon_sym_register] = ACTIONS(4927), + [anon_sym_inline] = ACTIONS(4927), + [anon_sym___inline] = ACTIONS(4927), + [anon_sym___inline__] = ACTIONS(4927), + [anon_sym___forceinline] = ACTIONS(4927), + [anon_sym_thread_local] = ACTIONS(4927), + [anon_sym___thread] = ACTIONS(4927), + [anon_sym_const] = ACTIONS(4927), + [anon_sym_constexpr] = ACTIONS(4927), + [anon_sym_volatile] = ACTIONS(4927), + [anon_sym_restrict] = ACTIONS(4927), + [anon_sym___restrict__] = ACTIONS(4927), + [anon_sym__Atomic] = ACTIONS(4927), + [anon_sym__Noreturn] = ACTIONS(4927), + [anon_sym_noreturn] = ACTIONS(4927), + [anon_sym_mutable] = ACTIONS(4927), + [anon_sym_constinit] = ACTIONS(4927), + [anon_sym_consteval] = ACTIONS(4927), + [sym_primitive_type] = ACTIONS(4927), + [anon_sym_enum] = ACTIONS(4927), + [anon_sym_class] = ACTIONS(4927), + [anon_sym_struct] = ACTIONS(4927), + [anon_sym_union] = ACTIONS(4927), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4927), + [anon_sym_decltype] = ACTIONS(4927), + [anon_sym_virtual] = ACTIONS(4927), + [anon_sym_alignas] = ACTIONS(4927), + [anon_sym_explicit] = ACTIONS(4927), + [anon_sym_typename] = ACTIONS(4927), + [anon_sym_template] = ACTIONS(4927), + [anon_sym_operator] = ACTIONS(4927), + [anon_sym_friend] = ACTIONS(4927), + [anon_sym_public] = ACTIONS(4927), + [anon_sym_private] = ACTIONS(4927), + [anon_sym_protected] = ACTIONS(4927), + [anon_sym_using] = ACTIONS(4927), + [anon_sym_static_assert] = ACTIONS(4927), }, [2074] = { - [sym__expression] = STATE(5274), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4927), + [aux_sym_preproc_def_token1] = ACTIONS(4927), + [aux_sym_preproc_if_token1] = ACTIONS(4927), + [aux_sym_preproc_if_token2] = ACTIONS(4927), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4927), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4927), + [aux_sym_preproc_else_token1] = ACTIONS(4927), + [aux_sym_preproc_elif_token1] = ACTIONS(4927), + [sym_preproc_directive] = ACTIONS(4927), + [anon_sym_LPAREN2] = ACTIONS(4929), + [anon_sym_TILDE] = ACTIONS(4929), + [anon_sym_STAR] = ACTIONS(4929), + [anon_sym_AMP_AMP] = ACTIONS(4929), + [anon_sym_AMP] = ACTIONS(4927), + [anon_sym___extension__] = ACTIONS(4927), + [anon_sym_typedef] = ACTIONS(4927), + [anon_sym_extern] = ACTIONS(4927), + [anon_sym___attribute__] = ACTIONS(4927), + [anon_sym_COLON_COLON] = ACTIONS(4929), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4929), + [anon_sym___declspec] = ACTIONS(4927), + [anon_sym___based] = ACTIONS(4927), + [anon_sym_signed] = ACTIONS(4927), + [anon_sym_unsigned] = ACTIONS(4927), + [anon_sym_long] = ACTIONS(4927), + [anon_sym_short] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4927), + [anon_sym_static] = ACTIONS(4927), + [anon_sym_register] = ACTIONS(4927), + [anon_sym_inline] = ACTIONS(4927), + [anon_sym___inline] = ACTIONS(4927), + [anon_sym___inline__] = ACTIONS(4927), + [anon_sym___forceinline] = ACTIONS(4927), + [anon_sym_thread_local] = ACTIONS(4927), + [anon_sym___thread] = ACTIONS(4927), + [anon_sym_const] = ACTIONS(4927), + [anon_sym_constexpr] = ACTIONS(4927), + [anon_sym_volatile] = ACTIONS(4927), + [anon_sym_restrict] = ACTIONS(4927), + [anon_sym___restrict__] = ACTIONS(4927), + [anon_sym__Atomic] = ACTIONS(4927), + [anon_sym__Noreturn] = ACTIONS(4927), + [anon_sym_noreturn] = ACTIONS(4927), + [anon_sym_mutable] = ACTIONS(4927), + [anon_sym_constinit] = ACTIONS(4927), + [anon_sym_consteval] = ACTIONS(4927), + [sym_primitive_type] = ACTIONS(4927), + [anon_sym_enum] = ACTIONS(4927), + [anon_sym_class] = ACTIONS(4927), + [anon_sym_struct] = ACTIONS(4927), + [anon_sym_union] = ACTIONS(4927), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4927), + [anon_sym_decltype] = ACTIONS(4927), + [anon_sym_virtual] = ACTIONS(4927), + [anon_sym_alignas] = ACTIONS(4927), + [anon_sym_explicit] = ACTIONS(4927), + [anon_sym_typename] = ACTIONS(4927), + [anon_sym_template] = ACTIONS(4927), + [anon_sym_operator] = ACTIONS(4927), + [anon_sym_friend] = ACTIONS(4927), + [anon_sym_public] = ACTIONS(4927), + [anon_sym_private] = ACTIONS(4927), + [anon_sym_protected] = ACTIONS(4927), + [anon_sym_using] = ACTIONS(4927), + [anon_sym_static_assert] = ACTIONS(4927), }, [2075] = { - [sym__expression] = STATE(5140), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [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), + [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___extension__] = ACTIONS(2973), + [anon_sym_typedef] = ACTIONS(2973), + [anon_sym_extern] = ACTIONS(2973), + [anon_sym___attribute__] = ACTIONS(2973), + [anon_sym_COLON_COLON] = ACTIONS(2975), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), + [anon_sym___declspec] = ACTIONS(2973), + [anon_sym___based] = ACTIONS(2973), + [anon_sym_signed] = ACTIONS(2973), + [anon_sym_unsigned] = ACTIONS(2973), + [anon_sym_long] = ACTIONS(2973), + [anon_sym_short] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_static] = ACTIONS(2973), + [anon_sym_register] = ACTIONS(2973), + [anon_sym_inline] = ACTIONS(2973), + [anon_sym___inline] = ACTIONS(2973), + [anon_sym___inline__] = ACTIONS(2973), + [anon_sym___forceinline] = ACTIONS(2973), + [anon_sym_thread_local] = ACTIONS(2973), + [anon_sym___thread] = ACTIONS(2973), + [anon_sym_const] = ACTIONS(2973), + [anon_sym_constexpr] = ACTIONS(2973), + [anon_sym_volatile] = ACTIONS(2973), + [anon_sym_restrict] = ACTIONS(2973), + [anon_sym___restrict__] = ACTIONS(2973), + [anon_sym__Atomic] = ACTIONS(2973), + [anon_sym__Noreturn] = ACTIONS(2973), + [anon_sym_noreturn] = ACTIONS(2973), + [anon_sym_mutable] = ACTIONS(2973), + [anon_sym_constinit] = ACTIONS(2973), + [anon_sym_consteval] = ACTIONS(2973), + [sym_primitive_type] = ACTIONS(2973), + [anon_sym_enum] = ACTIONS(2973), + [anon_sym_class] = ACTIONS(2973), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_union] = ACTIONS(2973), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2973), + [anon_sym_decltype] = ACTIONS(2973), + [anon_sym_virtual] = ACTIONS(2973), + [anon_sym_alignas] = ACTIONS(2973), + [anon_sym_explicit] = ACTIONS(2973), + [anon_sym_typename] = ACTIONS(2973), + [anon_sym_template] = ACTIONS(2973), + [anon_sym_operator] = ACTIONS(2973), + [anon_sym_friend] = ACTIONS(2973), + [anon_sym_public] = ACTIONS(2973), + [anon_sym_private] = ACTIONS(2973), + [anon_sym_protected] = ACTIONS(2973), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_static_assert] = ACTIONS(2973), }, [2076] = { - [sym__expression] = STATE(5280), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4923), + [aux_sym_preproc_def_token1] = ACTIONS(4923), + [aux_sym_preproc_if_token1] = ACTIONS(4923), + [aux_sym_preproc_if_token2] = ACTIONS(4923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4923), + [aux_sym_preproc_else_token1] = ACTIONS(4923), + [aux_sym_preproc_elif_token1] = ACTIONS(4923), + [sym_preproc_directive] = ACTIONS(4923), + [anon_sym_LPAREN2] = ACTIONS(4925), + [anon_sym_TILDE] = ACTIONS(4925), + [anon_sym_STAR] = ACTIONS(4925), + [anon_sym_AMP_AMP] = ACTIONS(4925), + [anon_sym_AMP] = ACTIONS(4923), + [anon_sym___extension__] = ACTIONS(4923), + [anon_sym_typedef] = ACTIONS(4923), + [anon_sym_extern] = ACTIONS(4923), + [anon_sym___attribute__] = ACTIONS(4923), + [anon_sym_COLON_COLON] = ACTIONS(4925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4925), + [anon_sym___declspec] = ACTIONS(4923), + [anon_sym___based] = ACTIONS(4923), + [anon_sym_signed] = ACTIONS(4923), + [anon_sym_unsigned] = ACTIONS(4923), + [anon_sym_long] = ACTIONS(4923), + [anon_sym_short] = ACTIONS(4923), + [anon_sym_LBRACK] = ACTIONS(4923), + [anon_sym_static] = ACTIONS(4923), + [anon_sym_register] = ACTIONS(4923), + [anon_sym_inline] = ACTIONS(4923), + [anon_sym___inline] = ACTIONS(4923), + [anon_sym___inline__] = ACTIONS(4923), + [anon_sym___forceinline] = ACTIONS(4923), + [anon_sym_thread_local] = ACTIONS(4923), + [anon_sym___thread] = ACTIONS(4923), + [anon_sym_const] = ACTIONS(4923), + [anon_sym_constexpr] = ACTIONS(4923), + [anon_sym_volatile] = ACTIONS(4923), + [anon_sym_restrict] = ACTIONS(4923), + [anon_sym___restrict__] = ACTIONS(4923), + [anon_sym__Atomic] = ACTIONS(4923), + [anon_sym__Noreturn] = ACTIONS(4923), + [anon_sym_noreturn] = ACTIONS(4923), + [anon_sym_mutable] = ACTIONS(4923), + [anon_sym_constinit] = ACTIONS(4923), + [anon_sym_consteval] = ACTIONS(4923), + [sym_primitive_type] = ACTIONS(4923), + [anon_sym_enum] = ACTIONS(4923), + [anon_sym_class] = ACTIONS(4923), + [anon_sym_struct] = ACTIONS(4923), + [anon_sym_union] = ACTIONS(4923), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4923), + [anon_sym_decltype] = ACTIONS(4923), + [anon_sym_virtual] = ACTIONS(4923), + [anon_sym_alignas] = ACTIONS(4923), + [anon_sym_explicit] = ACTIONS(4923), + [anon_sym_typename] = ACTIONS(4923), + [anon_sym_template] = ACTIONS(4923), + [anon_sym_operator] = ACTIONS(4923), + [anon_sym_friend] = ACTIONS(4923), + [anon_sym_public] = ACTIONS(4923), + [anon_sym_private] = ACTIONS(4923), + [anon_sym_protected] = ACTIONS(4923), + [anon_sym_using] = ACTIONS(4923), + [anon_sym_static_assert] = ACTIONS(4923), }, [2077] = { - [sym__expression] = STATE(5376), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(4852), + [aux_sym_preproc_def_token1] = ACTIONS(4852), + [aux_sym_preproc_if_token1] = ACTIONS(4852), + [aux_sym_preproc_if_token2] = ACTIONS(4852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4852), + [aux_sym_preproc_else_token1] = ACTIONS(4852), + [aux_sym_preproc_elif_token1] = ACTIONS(4852), + [sym_preproc_directive] = ACTIONS(4852), + [anon_sym_LPAREN2] = ACTIONS(4854), + [anon_sym_TILDE] = ACTIONS(4854), + [anon_sym_STAR] = ACTIONS(4854), + [anon_sym_AMP_AMP] = ACTIONS(4854), + [anon_sym_AMP] = ACTIONS(4852), + [anon_sym___extension__] = ACTIONS(4852), + [anon_sym_typedef] = ACTIONS(4852), + [anon_sym_extern] = ACTIONS(4852), + [anon_sym___attribute__] = ACTIONS(4852), + [anon_sym_COLON_COLON] = ACTIONS(4854), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4854), + [anon_sym___declspec] = ACTIONS(4852), + [anon_sym___based] = ACTIONS(4852), + [anon_sym_signed] = ACTIONS(4852), + [anon_sym_unsigned] = ACTIONS(4852), + [anon_sym_long] = ACTIONS(4852), + [anon_sym_short] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_static] = ACTIONS(4852), + [anon_sym_register] = ACTIONS(4852), + [anon_sym_inline] = ACTIONS(4852), + [anon_sym___inline] = ACTIONS(4852), + [anon_sym___inline__] = ACTIONS(4852), + [anon_sym___forceinline] = ACTIONS(4852), + [anon_sym_thread_local] = ACTIONS(4852), + [anon_sym___thread] = ACTIONS(4852), + [anon_sym_const] = ACTIONS(4852), + [anon_sym_constexpr] = ACTIONS(4852), + [anon_sym_volatile] = ACTIONS(4852), + [anon_sym_restrict] = ACTIONS(4852), + [anon_sym___restrict__] = ACTIONS(4852), + [anon_sym__Atomic] = ACTIONS(4852), + [anon_sym__Noreturn] = ACTIONS(4852), + [anon_sym_noreturn] = ACTIONS(4852), + [anon_sym_mutable] = ACTIONS(4852), + [anon_sym_constinit] = ACTIONS(4852), + [anon_sym_consteval] = ACTIONS(4852), + [sym_primitive_type] = ACTIONS(4852), + [anon_sym_enum] = ACTIONS(4852), + [anon_sym_class] = ACTIONS(4852), + [anon_sym_struct] = ACTIONS(4852), + [anon_sym_union] = ACTIONS(4852), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(4852), + [anon_sym_decltype] = ACTIONS(4852), + [anon_sym_virtual] = ACTIONS(4852), + [anon_sym_alignas] = ACTIONS(4852), + [anon_sym_explicit] = ACTIONS(4852), + [anon_sym_typename] = ACTIONS(4852), + [anon_sym_template] = ACTIONS(4852), + [anon_sym_operator] = ACTIONS(4852), + [anon_sym_friend] = ACTIONS(4852), + [anon_sym_public] = ACTIONS(4852), + [anon_sym_private] = ACTIONS(4852), + [anon_sym_protected] = ACTIONS(4852), + [anon_sym_using] = ACTIONS(4852), + [anon_sym_static_assert] = ACTIONS(4852), }, [2078] = { - [sym__expression] = STATE(4778), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4919), + [aux_sym_preproc_def_token1] = ACTIONS(4919), + [aux_sym_preproc_if_token1] = ACTIONS(4919), + [aux_sym_preproc_if_token2] = ACTIONS(4919), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4919), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4919), + [aux_sym_preproc_else_token1] = ACTIONS(4919), + [aux_sym_preproc_elif_token1] = ACTIONS(4919), + [sym_preproc_directive] = ACTIONS(4919), + [anon_sym_LPAREN2] = ACTIONS(4921), + [anon_sym_TILDE] = ACTIONS(4921), + [anon_sym_STAR] = ACTIONS(4921), + [anon_sym_AMP_AMP] = ACTIONS(4921), + [anon_sym_AMP] = ACTIONS(4919), + [anon_sym___extension__] = ACTIONS(4919), + [anon_sym_typedef] = ACTIONS(4919), + [anon_sym_extern] = ACTIONS(4919), + [anon_sym___attribute__] = ACTIONS(4919), + [anon_sym_COLON_COLON] = ACTIONS(4921), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4921), + [anon_sym___declspec] = ACTIONS(4919), + [anon_sym___based] = ACTIONS(4919), + [anon_sym_signed] = ACTIONS(4919), + [anon_sym_unsigned] = ACTIONS(4919), + [anon_sym_long] = ACTIONS(4919), + [anon_sym_short] = ACTIONS(4919), + [anon_sym_LBRACK] = ACTIONS(4919), + [anon_sym_static] = ACTIONS(4919), + [anon_sym_register] = ACTIONS(4919), + [anon_sym_inline] = ACTIONS(4919), + [anon_sym___inline] = ACTIONS(4919), + [anon_sym___inline__] = ACTIONS(4919), + [anon_sym___forceinline] = ACTIONS(4919), + [anon_sym_thread_local] = ACTIONS(4919), + [anon_sym___thread] = ACTIONS(4919), + [anon_sym_const] = ACTIONS(4919), + [anon_sym_constexpr] = ACTIONS(4919), + [anon_sym_volatile] = ACTIONS(4919), + [anon_sym_restrict] = ACTIONS(4919), + [anon_sym___restrict__] = ACTIONS(4919), + [anon_sym__Atomic] = ACTIONS(4919), + [anon_sym__Noreturn] = ACTIONS(4919), + [anon_sym_noreturn] = ACTIONS(4919), + [anon_sym_mutable] = ACTIONS(4919), + [anon_sym_constinit] = ACTIONS(4919), + [anon_sym_consteval] = ACTIONS(4919), + [sym_primitive_type] = ACTIONS(4919), + [anon_sym_enum] = ACTIONS(4919), + [anon_sym_class] = ACTIONS(4919), + [anon_sym_struct] = ACTIONS(4919), + [anon_sym_union] = ACTIONS(4919), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4919), + [anon_sym_decltype] = ACTIONS(4919), + [anon_sym_virtual] = ACTIONS(4919), + [anon_sym_alignas] = ACTIONS(4919), + [anon_sym_explicit] = ACTIONS(4919), + [anon_sym_typename] = ACTIONS(4919), + [anon_sym_template] = ACTIONS(4919), + [anon_sym_operator] = ACTIONS(4919), + [anon_sym_friend] = ACTIONS(4919), + [anon_sym_public] = ACTIONS(4919), + [anon_sym_private] = ACTIONS(4919), + [anon_sym_protected] = ACTIONS(4919), + [anon_sym_using] = ACTIONS(4919), + [anon_sym_static_assert] = ACTIONS(4919), }, [2079] = { - [sym__expression] = STATE(5139), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(4888), + [aux_sym_preproc_def_token1] = ACTIONS(4888), + [aux_sym_preproc_if_token1] = ACTIONS(4888), + [aux_sym_preproc_if_token2] = ACTIONS(4888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4888), + [aux_sym_preproc_else_token1] = ACTIONS(4888), + [aux_sym_preproc_elif_token1] = ACTIONS(4888), + [sym_preproc_directive] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(4890), + [anon_sym_TILDE] = ACTIONS(4890), + [anon_sym_STAR] = ACTIONS(4890), + [anon_sym_AMP_AMP] = ACTIONS(4890), + [anon_sym_AMP] = ACTIONS(4888), + [anon_sym___extension__] = ACTIONS(4888), + [anon_sym_typedef] = ACTIONS(4888), + [anon_sym_extern] = ACTIONS(4888), + [anon_sym___attribute__] = ACTIONS(4888), + [anon_sym_COLON_COLON] = ACTIONS(4890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4890), + [anon_sym___declspec] = ACTIONS(4888), + [anon_sym___based] = ACTIONS(4888), + [anon_sym_signed] = ACTIONS(4888), + [anon_sym_unsigned] = ACTIONS(4888), + [anon_sym_long] = ACTIONS(4888), + [anon_sym_short] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4888), + [anon_sym_static] = ACTIONS(4888), + [anon_sym_register] = ACTIONS(4888), + [anon_sym_inline] = ACTIONS(4888), + [anon_sym___inline] = ACTIONS(4888), + [anon_sym___inline__] = ACTIONS(4888), + [anon_sym___forceinline] = ACTIONS(4888), + [anon_sym_thread_local] = ACTIONS(4888), + [anon_sym___thread] = ACTIONS(4888), + [anon_sym_const] = ACTIONS(4888), + [anon_sym_constexpr] = ACTIONS(4888), + [anon_sym_volatile] = ACTIONS(4888), + [anon_sym_restrict] = ACTIONS(4888), + [anon_sym___restrict__] = ACTIONS(4888), + [anon_sym__Atomic] = ACTIONS(4888), + [anon_sym__Noreturn] = ACTIONS(4888), + [anon_sym_noreturn] = ACTIONS(4888), + [anon_sym_mutable] = ACTIONS(4888), + [anon_sym_constinit] = ACTIONS(4888), + [anon_sym_consteval] = ACTIONS(4888), + [sym_primitive_type] = ACTIONS(4888), + [anon_sym_enum] = ACTIONS(4888), + [anon_sym_class] = ACTIONS(4888), + [anon_sym_struct] = ACTIONS(4888), + [anon_sym_union] = ACTIONS(4888), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(4888), + [anon_sym_decltype] = ACTIONS(4888), + [anon_sym_virtual] = ACTIONS(4888), + [anon_sym_alignas] = ACTIONS(4888), + [anon_sym_explicit] = ACTIONS(4888), + [anon_sym_typename] = ACTIONS(4888), + [anon_sym_template] = ACTIONS(4888), + [anon_sym_operator] = ACTIONS(4888), + [anon_sym_friend] = ACTIONS(4888), + [anon_sym_public] = ACTIONS(4888), + [anon_sym_private] = ACTIONS(4888), + [anon_sym_protected] = ACTIONS(4888), + [anon_sym_using] = ACTIONS(4888), + [anon_sym_static_assert] = ACTIONS(4888), }, [2080] = { - [sym__expression] = STATE(5138), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [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), + [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___extension__] = ACTIONS(2977), + [anon_sym_typedef] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2977), + [anon_sym___attribute__] = ACTIONS(2977), + [anon_sym_COLON_COLON] = ACTIONS(2979), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), + [anon_sym___declspec] = ACTIONS(2977), + [anon_sym___based] = ACTIONS(2977), + [anon_sym_signed] = ACTIONS(2977), + [anon_sym_unsigned] = ACTIONS(2977), + [anon_sym_long] = ACTIONS(2977), + [anon_sym_short] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2977), + [anon_sym_register] = ACTIONS(2977), + [anon_sym_inline] = ACTIONS(2977), + [anon_sym___inline] = ACTIONS(2977), + [anon_sym___inline__] = ACTIONS(2977), + [anon_sym___forceinline] = ACTIONS(2977), + [anon_sym_thread_local] = ACTIONS(2977), + [anon_sym___thread] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_constexpr] = ACTIONS(2977), + [anon_sym_volatile] = ACTIONS(2977), + [anon_sym_restrict] = ACTIONS(2977), + [anon_sym___restrict__] = ACTIONS(2977), + [anon_sym__Atomic] = ACTIONS(2977), + [anon_sym__Noreturn] = ACTIONS(2977), + [anon_sym_noreturn] = ACTIONS(2977), + [anon_sym_mutable] = ACTIONS(2977), + [anon_sym_constinit] = ACTIONS(2977), + [anon_sym_consteval] = ACTIONS(2977), + [sym_primitive_type] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_union] = ACTIONS(2977), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2977), + [anon_sym_decltype] = ACTIONS(2977), + [anon_sym_virtual] = ACTIONS(2977), + [anon_sym_alignas] = ACTIONS(2977), + [anon_sym_explicit] = ACTIONS(2977), + [anon_sym_typename] = ACTIONS(2977), + [anon_sym_template] = ACTIONS(2977), + [anon_sym_operator] = ACTIONS(2977), + [anon_sym_friend] = ACTIONS(2977), + [anon_sym_public] = ACTIONS(2977), + [anon_sym_private] = ACTIONS(2977), + [anon_sym_protected] = ACTIONS(2977), + [anon_sym_using] = ACTIONS(2977), + [anon_sym_static_assert] = ACTIONS(2977), }, [2081] = { - [sym__expression] = STATE(5360), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [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), + [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___extension__] = ACTIONS(2981), + [anon_sym_typedef] = ACTIONS(2981), + [anon_sym_extern] = ACTIONS(2981), + [anon_sym___attribute__] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(2983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), + [anon_sym___declspec] = ACTIONS(2981), + [anon_sym___based] = ACTIONS(2981), + [anon_sym_signed] = ACTIONS(2981), + [anon_sym_unsigned] = ACTIONS(2981), + [anon_sym_long] = ACTIONS(2981), + [anon_sym_short] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_static] = ACTIONS(2981), + [anon_sym_register] = ACTIONS(2981), + [anon_sym_inline] = ACTIONS(2981), + [anon_sym___inline] = ACTIONS(2981), + [anon_sym___inline__] = ACTIONS(2981), + [anon_sym___forceinline] = ACTIONS(2981), + [anon_sym_thread_local] = ACTIONS(2981), + [anon_sym___thread] = ACTIONS(2981), + [anon_sym_const] = ACTIONS(2981), + [anon_sym_constexpr] = ACTIONS(2981), + [anon_sym_volatile] = ACTIONS(2981), + [anon_sym_restrict] = ACTIONS(2981), + [anon_sym___restrict__] = ACTIONS(2981), + [anon_sym__Atomic] = ACTIONS(2981), + [anon_sym__Noreturn] = ACTIONS(2981), + [anon_sym_noreturn] = ACTIONS(2981), + [anon_sym_mutable] = ACTIONS(2981), + [anon_sym_constinit] = ACTIONS(2981), + [anon_sym_consteval] = ACTIONS(2981), + [sym_primitive_type] = ACTIONS(2981), + [anon_sym_enum] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(2981), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_union] = ACTIONS(2981), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(2981), + [anon_sym_decltype] = ACTIONS(2981), + [anon_sym_virtual] = ACTIONS(2981), + [anon_sym_alignas] = ACTIONS(2981), + [anon_sym_explicit] = ACTIONS(2981), + [anon_sym_typename] = ACTIONS(2981), + [anon_sym_template] = ACTIONS(2981), + [anon_sym_operator] = ACTIONS(2981), + [anon_sym_friend] = ACTIONS(2981), + [anon_sym_public] = ACTIONS(2981), + [anon_sym_private] = ACTIONS(2981), + [anon_sym_protected] = ACTIONS(2981), + [anon_sym_using] = ACTIONS(2981), + [anon_sym_static_assert] = ACTIONS(2981), }, [2082] = { - [sym__expression] = STATE(4895), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5184), + [anon_sym_COMMA] = ACTIONS(5184), + [anon_sym_RPAREN] = ACTIONS(5184), + [anon_sym_LPAREN2] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5182), + [anon_sym_PLUS] = ACTIONS(5182), + [anon_sym_STAR] = ACTIONS(5182), + [anon_sym_SLASH] = ACTIONS(5182), + [anon_sym_PERCENT] = ACTIONS(5182), + [anon_sym_PIPE_PIPE] = ACTIONS(5184), + [anon_sym_AMP_AMP] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5182), + [anon_sym_CARET] = ACTIONS(5182), + [anon_sym_AMP] = ACTIONS(5182), + [anon_sym_EQ_EQ] = ACTIONS(5184), + [anon_sym_BANG_EQ] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5182), + [anon_sym_GT_EQ] = ACTIONS(5184), + [anon_sym_LT_EQ] = ACTIONS(5182), + [anon_sym_LT] = ACTIONS(5182), + [anon_sym_LT_LT] = ACTIONS(5182), + [anon_sym_GT_GT] = ACTIONS(5182), + [anon_sym_SEMI] = ACTIONS(5184), + [anon_sym_RBRACE] = ACTIONS(5184), + [anon_sym_LBRACK] = ACTIONS(5184), + [anon_sym_RBRACK] = ACTIONS(5184), + [anon_sym_EQ] = ACTIONS(5182), + [anon_sym_COLON] = ACTIONS(5184), + [anon_sym_QMARK] = ACTIONS(5184), + [anon_sym_STAR_EQ] = ACTIONS(5184), + [anon_sym_SLASH_EQ] = ACTIONS(5184), + [anon_sym_PERCENT_EQ] = ACTIONS(5184), + [anon_sym_PLUS_EQ] = ACTIONS(5184), + [anon_sym_DASH_EQ] = ACTIONS(5184), + [anon_sym_LT_LT_EQ] = ACTIONS(5184), + [anon_sym_GT_GT_EQ] = ACTIONS(5184), + [anon_sym_AMP_EQ] = ACTIONS(5184), + [anon_sym_CARET_EQ] = ACTIONS(5184), + [anon_sym_PIPE_EQ] = ACTIONS(5184), + [anon_sym_and_eq] = ACTIONS(5182), + [anon_sym_or_eq] = ACTIONS(5182), + [anon_sym_xor_eq] = ACTIONS(5182), + [anon_sym_LT_EQ_GT] = ACTIONS(5184), + [anon_sym_or] = ACTIONS(5182), + [anon_sym_and] = ACTIONS(5182), + [anon_sym_bitor] = ACTIONS(5182), + [anon_sym_xor] = ACTIONS(5182), + [anon_sym_bitand] = ACTIONS(5182), + [anon_sym_not_eq] = ACTIONS(5182), + [anon_sym_DASH_DASH] = ACTIONS(5184), + [anon_sym_PLUS_PLUS] = ACTIONS(5184), + [anon_sym_DOT] = ACTIONS(5182), + [anon_sym_DOT_STAR] = ACTIONS(5184), + [anon_sym_DASH_GT] = ACTIONS(5184), + [anon_sym_L_DQUOTE] = ACTIONS(5184), + [anon_sym_u_DQUOTE] = ACTIONS(5184), + [anon_sym_U_DQUOTE] = ACTIONS(5184), + [anon_sym_u8_DQUOTE] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5184), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5184), + [anon_sym_LR_DQUOTE] = ACTIONS(5184), + [anon_sym_uR_DQUOTE] = ACTIONS(5184), + [anon_sym_UR_DQUOTE] = ACTIONS(5184), + [anon_sym_u8R_DQUOTE] = ACTIONS(5184), + [sym_literal_suffix] = ACTIONS(5182), }, [2083] = { - [sym__expression] = STATE(5239), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2828), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2828), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_friend] = ACTIONS(2138), + [anon_sym_public] = ACTIONS(2138), + [anon_sym_private] = ACTIONS(2138), + [anon_sym_protected] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), }, [2084] = { - [sym__expression] = STATE(5401), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3216), + [aux_sym_preproc_def_token1] = ACTIONS(3216), + [aux_sym_preproc_if_token1] = ACTIONS(3216), + [aux_sym_preproc_if_token2] = ACTIONS(3216), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3216), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3216), + [aux_sym_preproc_else_token1] = ACTIONS(3216), + [aux_sym_preproc_elif_token1] = ACTIONS(3216), + [sym_preproc_directive] = ACTIONS(3216), + [anon_sym_LPAREN2] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym___extension__] = ACTIONS(3216), + [anon_sym_typedef] = ACTIONS(3216), + [anon_sym_extern] = ACTIONS(3216), + [anon_sym___attribute__] = ACTIONS(3216), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3218), + [anon_sym___declspec] = ACTIONS(3216), + [anon_sym___based] = ACTIONS(3216), + [anon_sym_signed] = ACTIONS(3216), + [anon_sym_unsigned] = ACTIONS(3216), + [anon_sym_long] = ACTIONS(3216), + [anon_sym_short] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_static] = ACTIONS(3216), + [anon_sym_register] = ACTIONS(3216), + [anon_sym_inline] = ACTIONS(3216), + [anon_sym___inline] = ACTIONS(3216), + [anon_sym___inline__] = ACTIONS(3216), + [anon_sym___forceinline] = ACTIONS(3216), + [anon_sym_thread_local] = ACTIONS(3216), + [anon_sym___thread] = ACTIONS(3216), + [anon_sym_const] = ACTIONS(3216), + [anon_sym_constexpr] = ACTIONS(3216), + [anon_sym_volatile] = ACTIONS(3216), + [anon_sym_restrict] = ACTIONS(3216), + [anon_sym___restrict__] = ACTIONS(3216), + [anon_sym__Atomic] = ACTIONS(3216), + [anon_sym__Noreturn] = ACTIONS(3216), + [anon_sym_noreturn] = ACTIONS(3216), + [anon_sym_mutable] = ACTIONS(3216), + [anon_sym_constinit] = ACTIONS(3216), + [anon_sym_consteval] = ACTIONS(3216), + [sym_primitive_type] = ACTIONS(3216), + [anon_sym_enum] = ACTIONS(3216), + [anon_sym_class] = ACTIONS(3216), + [anon_sym_struct] = ACTIONS(3216), + [anon_sym_union] = ACTIONS(3216), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3216), + [anon_sym_decltype] = ACTIONS(3216), + [anon_sym_virtual] = ACTIONS(3216), + [anon_sym_alignas] = ACTIONS(3216), + [anon_sym_explicit] = ACTIONS(3216), + [anon_sym_typename] = ACTIONS(3216), + [anon_sym_template] = ACTIONS(3216), + [anon_sym_operator] = ACTIONS(3216), + [anon_sym_friend] = ACTIONS(3216), + [anon_sym_public] = ACTIONS(3216), + [anon_sym_private] = ACTIONS(3216), + [anon_sym_protected] = ACTIONS(3216), + [anon_sym_using] = ACTIONS(3216), + [anon_sym_static_assert] = ACTIONS(3216), }, [2085] = { - [sym__expression] = STATE(5398), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3192), + [aux_sym_preproc_def_token1] = ACTIONS(3192), + [aux_sym_preproc_if_token1] = ACTIONS(3192), + [aux_sym_preproc_if_token2] = ACTIONS(3192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3192), + [aux_sym_preproc_else_token1] = ACTIONS(3192), + [aux_sym_preproc_elif_token1] = ACTIONS(3192), + [sym_preproc_directive] = ACTIONS(3192), + [anon_sym_LPAREN2] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3192), + [anon_sym___extension__] = ACTIONS(3192), + [anon_sym_typedef] = ACTIONS(3192), + [anon_sym_extern] = ACTIONS(3192), + [anon_sym___attribute__] = ACTIONS(3192), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3194), + [anon_sym___declspec] = ACTIONS(3192), + [anon_sym___based] = ACTIONS(3192), + [anon_sym_signed] = ACTIONS(3192), + [anon_sym_unsigned] = ACTIONS(3192), + [anon_sym_long] = ACTIONS(3192), + [anon_sym_short] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3192), + [anon_sym_register] = ACTIONS(3192), + [anon_sym_inline] = ACTIONS(3192), + [anon_sym___inline] = ACTIONS(3192), + [anon_sym___inline__] = ACTIONS(3192), + [anon_sym___forceinline] = ACTIONS(3192), + [anon_sym_thread_local] = ACTIONS(3192), + [anon_sym___thread] = ACTIONS(3192), + [anon_sym_const] = ACTIONS(3192), + [anon_sym_constexpr] = ACTIONS(3192), + [anon_sym_volatile] = ACTIONS(3192), + [anon_sym_restrict] = ACTIONS(3192), + [anon_sym___restrict__] = ACTIONS(3192), + [anon_sym__Atomic] = ACTIONS(3192), + [anon_sym__Noreturn] = ACTIONS(3192), + [anon_sym_noreturn] = ACTIONS(3192), + [anon_sym_mutable] = ACTIONS(3192), + [anon_sym_constinit] = ACTIONS(3192), + [anon_sym_consteval] = ACTIONS(3192), + [sym_primitive_type] = ACTIONS(3192), + [anon_sym_enum] = ACTIONS(3192), + [anon_sym_class] = ACTIONS(3192), + [anon_sym_struct] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3192), + [anon_sym_decltype] = ACTIONS(3192), + [anon_sym_virtual] = ACTIONS(3192), + [anon_sym_alignas] = ACTIONS(3192), + [anon_sym_explicit] = ACTIONS(3192), + [anon_sym_typename] = ACTIONS(3192), + [anon_sym_template] = ACTIONS(3192), + [anon_sym_operator] = ACTIONS(3192), + [anon_sym_friend] = ACTIONS(3192), + [anon_sym_public] = ACTIONS(3192), + [anon_sym_private] = ACTIONS(3192), + [anon_sym_protected] = ACTIONS(3192), + [anon_sym_using] = ACTIONS(3192), + [anon_sym_static_assert] = ACTIONS(3192), }, [2086] = { - [sym__expression] = STATE(5304), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3063), + [aux_sym_preproc_def_token1] = ACTIONS(3063), + [aux_sym_preproc_if_token1] = ACTIONS(3063), + [aux_sym_preproc_if_token2] = ACTIONS(3063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), + [aux_sym_preproc_else_token1] = ACTIONS(3063), + [aux_sym_preproc_elif_token1] = ACTIONS(3063), + [sym_preproc_directive] = ACTIONS(3063), + [anon_sym_LPAREN2] = ACTIONS(3065), + [anon_sym_TILDE] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym___extension__] = ACTIONS(3063), + [anon_sym_typedef] = ACTIONS(3063), + [anon_sym_extern] = ACTIONS(3063), + [anon_sym___attribute__] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(3065), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), + [anon_sym___declspec] = ACTIONS(3063), + [anon_sym___based] = ACTIONS(3063), + [anon_sym_signed] = ACTIONS(3063), + [anon_sym_unsigned] = ACTIONS(3063), + [anon_sym_long] = ACTIONS(3063), + [anon_sym_short] = ACTIONS(3063), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_static] = ACTIONS(3063), + [anon_sym_register] = ACTIONS(3063), + [anon_sym_inline] = ACTIONS(3063), + [anon_sym___inline] = ACTIONS(3063), + [anon_sym___inline__] = ACTIONS(3063), + [anon_sym___forceinline] = ACTIONS(3063), + [anon_sym_thread_local] = ACTIONS(3063), + [anon_sym___thread] = ACTIONS(3063), + [anon_sym_const] = ACTIONS(3063), + [anon_sym_constexpr] = ACTIONS(3063), + [anon_sym_volatile] = ACTIONS(3063), + [anon_sym_restrict] = ACTIONS(3063), + [anon_sym___restrict__] = ACTIONS(3063), + [anon_sym__Atomic] = ACTIONS(3063), + [anon_sym__Noreturn] = ACTIONS(3063), + [anon_sym_noreturn] = ACTIONS(3063), + [anon_sym_mutable] = ACTIONS(3063), + [anon_sym_constinit] = ACTIONS(3063), + [anon_sym_consteval] = ACTIONS(3063), + [sym_primitive_type] = ACTIONS(3063), + [anon_sym_enum] = ACTIONS(3063), + [anon_sym_class] = ACTIONS(3063), + [anon_sym_struct] = ACTIONS(3063), + [anon_sym_union] = ACTIONS(3063), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3063), + [anon_sym_decltype] = ACTIONS(3063), + [anon_sym_virtual] = ACTIONS(3063), + [anon_sym_alignas] = ACTIONS(3063), + [anon_sym_explicit] = ACTIONS(3063), + [anon_sym_typename] = ACTIONS(3063), + [anon_sym_template] = ACTIONS(3063), + [anon_sym_operator] = ACTIONS(3063), + [anon_sym_friend] = ACTIONS(3063), + [anon_sym_public] = ACTIONS(3063), + [anon_sym_private] = ACTIONS(3063), + [anon_sym_protected] = ACTIONS(3063), + [anon_sym_using] = ACTIONS(3063), + [anon_sym_static_assert] = ACTIONS(3063), }, [2087] = { - [sym__expression] = STATE(5089), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4876), + [aux_sym_preproc_def_token1] = ACTIONS(4876), + [aux_sym_preproc_if_token1] = ACTIONS(4876), + [aux_sym_preproc_if_token2] = ACTIONS(4876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4876), + [aux_sym_preproc_else_token1] = ACTIONS(4876), + [aux_sym_preproc_elif_token1] = ACTIONS(4876), + [sym_preproc_directive] = ACTIONS(4876), + [anon_sym_LPAREN2] = ACTIONS(4878), + [anon_sym_TILDE] = ACTIONS(4878), + [anon_sym_STAR] = ACTIONS(4878), + [anon_sym_AMP_AMP] = ACTIONS(4878), + [anon_sym_AMP] = ACTIONS(4876), + [anon_sym___extension__] = ACTIONS(4876), + [anon_sym_typedef] = ACTIONS(4876), + [anon_sym_extern] = ACTIONS(4876), + [anon_sym___attribute__] = ACTIONS(4876), + [anon_sym_COLON_COLON] = ACTIONS(4878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4878), + [anon_sym___declspec] = ACTIONS(4876), + [anon_sym___based] = ACTIONS(4876), + [anon_sym_signed] = ACTIONS(4876), + [anon_sym_unsigned] = ACTIONS(4876), + [anon_sym_long] = ACTIONS(4876), + [anon_sym_short] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_static] = ACTIONS(4876), + [anon_sym_register] = ACTIONS(4876), + [anon_sym_inline] = ACTIONS(4876), + [anon_sym___inline] = ACTIONS(4876), + [anon_sym___inline__] = ACTIONS(4876), + [anon_sym___forceinline] = ACTIONS(4876), + [anon_sym_thread_local] = ACTIONS(4876), + [anon_sym___thread] = ACTIONS(4876), + [anon_sym_const] = ACTIONS(4876), + [anon_sym_constexpr] = ACTIONS(4876), + [anon_sym_volatile] = ACTIONS(4876), + [anon_sym_restrict] = ACTIONS(4876), + [anon_sym___restrict__] = ACTIONS(4876), + [anon_sym__Atomic] = ACTIONS(4876), + [anon_sym__Noreturn] = ACTIONS(4876), + [anon_sym_noreturn] = ACTIONS(4876), + [anon_sym_mutable] = ACTIONS(4876), + [anon_sym_constinit] = ACTIONS(4876), + [anon_sym_consteval] = ACTIONS(4876), + [sym_primitive_type] = ACTIONS(4876), + [anon_sym_enum] = ACTIONS(4876), + [anon_sym_class] = ACTIONS(4876), + [anon_sym_struct] = ACTIONS(4876), + [anon_sym_union] = ACTIONS(4876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4876), + [anon_sym_decltype] = ACTIONS(4876), + [anon_sym_virtual] = ACTIONS(4876), + [anon_sym_alignas] = ACTIONS(4876), + [anon_sym_explicit] = ACTIONS(4876), + [anon_sym_typename] = ACTIONS(4876), + [anon_sym_template] = ACTIONS(4876), + [anon_sym_operator] = ACTIONS(4876), + [anon_sym_friend] = ACTIONS(4876), + [anon_sym_public] = ACTIONS(4876), + [anon_sym_private] = ACTIONS(4876), + [anon_sym_protected] = ACTIONS(4876), + [anon_sym_using] = ACTIONS(4876), + [anon_sym_static_assert] = ACTIONS(4876), }, [2088] = { - [sym__expression] = STATE(5403), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4880), + [aux_sym_preproc_def_token1] = ACTIONS(4880), + [aux_sym_preproc_if_token1] = ACTIONS(4880), + [aux_sym_preproc_if_token2] = ACTIONS(4880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4880), + [aux_sym_preproc_else_token1] = ACTIONS(4880), + [aux_sym_preproc_elif_token1] = ACTIONS(4880), + [sym_preproc_directive] = ACTIONS(4880), + [anon_sym_LPAREN2] = ACTIONS(4882), + [anon_sym_TILDE] = ACTIONS(4882), + [anon_sym_STAR] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(4882), + [anon_sym_AMP] = ACTIONS(4880), + [anon_sym___extension__] = ACTIONS(4880), + [anon_sym_typedef] = ACTIONS(4880), + [anon_sym_extern] = ACTIONS(4880), + [anon_sym___attribute__] = ACTIONS(4880), + [anon_sym_COLON_COLON] = ACTIONS(4882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4882), + [anon_sym___declspec] = ACTIONS(4880), + [anon_sym___based] = ACTIONS(4880), + [anon_sym_signed] = ACTIONS(4880), + [anon_sym_unsigned] = ACTIONS(4880), + [anon_sym_long] = ACTIONS(4880), + [anon_sym_short] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4880), + [anon_sym_static] = ACTIONS(4880), + [anon_sym_register] = ACTIONS(4880), + [anon_sym_inline] = ACTIONS(4880), + [anon_sym___inline] = ACTIONS(4880), + [anon_sym___inline__] = ACTIONS(4880), + [anon_sym___forceinline] = ACTIONS(4880), + [anon_sym_thread_local] = ACTIONS(4880), + [anon_sym___thread] = ACTIONS(4880), + [anon_sym_const] = ACTIONS(4880), + [anon_sym_constexpr] = ACTIONS(4880), + [anon_sym_volatile] = ACTIONS(4880), + [anon_sym_restrict] = ACTIONS(4880), + [anon_sym___restrict__] = ACTIONS(4880), + [anon_sym__Atomic] = ACTIONS(4880), + [anon_sym__Noreturn] = ACTIONS(4880), + [anon_sym_noreturn] = ACTIONS(4880), + [anon_sym_mutable] = ACTIONS(4880), + [anon_sym_constinit] = ACTIONS(4880), + [anon_sym_consteval] = ACTIONS(4880), + [sym_primitive_type] = ACTIONS(4880), + [anon_sym_enum] = ACTIONS(4880), + [anon_sym_class] = ACTIONS(4880), + [anon_sym_struct] = ACTIONS(4880), + [anon_sym_union] = ACTIONS(4880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4880), + [anon_sym_decltype] = ACTIONS(4880), + [anon_sym_virtual] = ACTIONS(4880), + [anon_sym_alignas] = ACTIONS(4880), + [anon_sym_explicit] = ACTIONS(4880), + [anon_sym_typename] = ACTIONS(4880), + [anon_sym_template] = ACTIONS(4880), + [anon_sym_operator] = ACTIONS(4880), + [anon_sym_friend] = ACTIONS(4880), + [anon_sym_public] = ACTIONS(4880), + [anon_sym_private] = ACTIONS(4880), + [anon_sym_protected] = ACTIONS(4880), + [anon_sym_using] = ACTIONS(4880), + [anon_sym_static_assert] = ACTIONS(4880), }, [2089] = { - [sym__expression] = STATE(5133), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4880), + [aux_sym_preproc_def_token1] = ACTIONS(4880), + [aux_sym_preproc_if_token1] = ACTIONS(4880), + [aux_sym_preproc_if_token2] = ACTIONS(4880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4880), + [aux_sym_preproc_else_token1] = ACTIONS(4880), + [aux_sym_preproc_elif_token1] = ACTIONS(4880), + [sym_preproc_directive] = ACTIONS(4880), + [anon_sym_LPAREN2] = ACTIONS(4882), + [anon_sym_TILDE] = ACTIONS(4882), + [anon_sym_STAR] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(4882), + [anon_sym_AMP] = ACTIONS(4880), + [anon_sym___extension__] = ACTIONS(4880), + [anon_sym_typedef] = ACTIONS(4880), + [anon_sym_extern] = ACTIONS(4880), + [anon_sym___attribute__] = ACTIONS(4880), + [anon_sym_COLON_COLON] = ACTIONS(4882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4882), + [anon_sym___declspec] = ACTIONS(4880), + [anon_sym___based] = ACTIONS(4880), + [anon_sym_signed] = ACTIONS(4880), + [anon_sym_unsigned] = ACTIONS(4880), + [anon_sym_long] = ACTIONS(4880), + [anon_sym_short] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4880), + [anon_sym_static] = ACTIONS(4880), + [anon_sym_register] = ACTIONS(4880), + [anon_sym_inline] = ACTIONS(4880), + [anon_sym___inline] = ACTIONS(4880), + [anon_sym___inline__] = ACTIONS(4880), + [anon_sym___forceinline] = ACTIONS(4880), + [anon_sym_thread_local] = ACTIONS(4880), + [anon_sym___thread] = ACTIONS(4880), + [anon_sym_const] = ACTIONS(4880), + [anon_sym_constexpr] = ACTIONS(4880), + [anon_sym_volatile] = ACTIONS(4880), + [anon_sym_restrict] = ACTIONS(4880), + [anon_sym___restrict__] = ACTIONS(4880), + [anon_sym__Atomic] = ACTIONS(4880), + [anon_sym__Noreturn] = ACTIONS(4880), + [anon_sym_noreturn] = ACTIONS(4880), + [anon_sym_mutable] = ACTIONS(4880), + [anon_sym_constinit] = ACTIONS(4880), + [anon_sym_consteval] = ACTIONS(4880), + [sym_primitive_type] = ACTIONS(4880), + [anon_sym_enum] = ACTIONS(4880), + [anon_sym_class] = ACTIONS(4880), + [anon_sym_struct] = ACTIONS(4880), + [anon_sym_union] = ACTIONS(4880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4880), + [anon_sym_decltype] = ACTIONS(4880), + [anon_sym_virtual] = ACTIONS(4880), + [anon_sym_alignas] = ACTIONS(4880), + [anon_sym_explicit] = ACTIONS(4880), + [anon_sym_typename] = ACTIONS(4880), + [anon_sym_template] = ACTIONS(4880), + [anon_sym_operator] = ACTIONS(4880), + [anon_sym_friend] = ACTIONS(4880), + [anon_sym_public] = ACTIONS(4880), + [anon_sym_private] = ACTIONS(4880), + [anon_sym_protected] = ACTIONS(4880), + [anon_sym_using] = ACTIONS(4880), + [anon_sym_static_assert] = ACTIONS(4880), }, [2090] = { - [sym__expression] = STATE(3568), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5190), + [anon_sym_COMMA] = ACTIONS(5190), + [anon_sym_RPAREN] = ACTIONS(5190), + [anon_sym_LPAREN2] = ACTIONS(5190), + [anon_sym_DASH] = ACTIONS(5188), + [anon_sym_PLUS] = ACTIONS(5188), + [anon_sym_STAR] = ACTIONS(5188), + [anon_sym_SLASH] = ACTIONS(5188), + [anon_sym_PERCENT] = ACTIONS(5188), + [anon_sym_PIPE_PIPE] = ACTIONS(5190), + [anon_sym_AMP_AMP] = ACTIONS(5190), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_CARET] = ACTIONS(5188), + [anon_sym_AMP] = ACTIONS(5188), + [anon_sym_EQ_EQ] = ACTIONS(5190), + [anon_sym_BANG_EQ] = ACTIONS(5190), + [anon_sym_GT] = ACTIONS(5188), + [anon_sym_GT_EQ] = ACTIONS(5190), + [anon_sym_LT_EQ] = ACTIONS(5188), + [anon_sym_LT] = ACTIONS(5188), + [anon_sym_LT_LT] = ACTIONS(5188), + [anon_sym_GT_GT] = ACTIONS(5188), + [anon_sym_SEMI] = ACTIONS(5190), + [anon_sym_RBRACE] = ACTIONS(5190), + [anon_sym_LBRACK] = ACTIONS(5190), + [anon_sym_RBRACK] = ACTIONS(5190), + [anon_sym_EQ] = ACTIONS(5188), + [anon_sym_COLON] = ACTIONS(5190), + [anon_sym_QMARK] = ACTIONS(5190), + [anon_sym_STAR_EQ] = ACTIONS(5190), + [anon_sym_SLASH_EQ] = ACTIONS(5190), + [anon_sym_PERCENT_EQ] = ACTIONS(5190), + [anon_sym_PLUS_EQ] = ACTIONS(5190), + [anon_sym_DASH_EQ] = ACTIONS(5190), + [anon_sym_LT_LT_EQ] = ACTIONS(5190), + [anon_sym_GT_GT_EQ] = ACTIONS(5190), + [anon_sym_AMP_EQ] = ACTIONS(5190), + [anon_sym_CARET_EQ] = ACTIONS(5190), + [anon_sym_PIPE_EQ] = ACTIONS(5190), + [anon_sym_and_eq] = ACTIONS(5188), + [anon_sym_or_eq] = ACTIONS(5188), + [anon_sym_xor_eq] = ACTIONS(5188), + [anon_sym_LT_EQ_GT] = ACTIONS(5190), + [anon_sym_or] = ACTIONS(5188), + [anon_sym_and] = ACTIONS(5188), + [anon_sym_bitor] = ACTIONS(5188), + [anon_sym_xor] = ACTIONS(5188), + [anon_sym_bitand] = ACTIONS(5188), + [anon_sym_not_eq] = ACTIONS(5188), + [anon_sym_DASH_DASH] = ACTIONS(5190), + [anon_sym_PLUS_PLUS] = ACTIONS(5190), + [anon_sym_DOT] = ACTIONS(5188), + [anon_sym_DOT_STAR] = ACTIONS(5190), + [anon_sym_DASH_GT] = ACTIONS(5190), + [anon_sym_L_DQUOTE] = ACTIONS(5190), + [anon_sym_u_DQUOTE] = ACTIONS(5190), + [anon_sym_U_DQUOTE] = ACTIONS(5190), + [anon_sym_u8_DQUOTE] = ACTIONS(5190), + [anon_sym_DQUOTE] = ACTIONS(5190), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5190), + [anon_sym_LR_DQUOTE] = ACTIONS(5190), + [anon_sym_uR_DQUOTE] = ACTIONS(5190), + [anon_sym_UR_DQUOTE] = ACTIONS(5190), + [anon_sym_u8R_DQUOTE] = ACTIONS(5190), + [sym_literal_suffix] = ACTIONS(5188), }, [2091] = { - [sym__expression] = STATE(4783), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(4876), + [aux_sym_preproc_def_token1] = ACTIONS(4876), + [aux_sym_preproc_if_token1] = ACTIONS(4876), + [aux_sym_preproc_if_token2] = ACTIONS(4876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4876), + [aux_sym_preproc_else_token1] = ACTIONS(4876), + [aux_sym_preproc_elif_token1] = ACTIONS(4876), + [sym_preproc_directive] = ACTIONS(4876), + [anon_sym_LPAREN2] = ACTIONS(4878), + [anon_sym_TILDE] = ACTIONS(4878), + [anon_sym_STAR] = ACTIONS(4878), + [anon_sym_AMP_AMP] = ACTIONS(4878), + [anon_sym_AMP] = ACTIONS(4876), + [anon_sym___extension__] = ACTIONS(4876), + [anon_sym_typedef] = ACTIONS(4876), + [anon_sym_extern] = ACTIONS(4876), + [anon_sym___attribute__] = ACTIONS(4876), + [anon_sym_COLON_COLON] = ACTIONS(4878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4878), + [anon_sym___declspec] = ACTIONS(4876), + [anon_sym___based] = ACTIONS(4876), + [anon_sym_signed] = ACTIONS(4876), + [anon_sym_unsigned] = ACTIONS(4876), + [anon_sym_long] = ACTIONS(4876), + [anon_sym_short] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_static] = ACTIONS(4876), + [anon_sym_register] = ACTIONS(4876), + [anon_sym_inline] = ACTIONS(4876), + [anon_sym___inline] = ACTIONS(4876), + [anon_sym___inline__] = ACTIONS(4876), + [anon_sym___forceinline] = ACTIONS(4876), + [anon_sym_thread_local] = ACTIONS(4876), + [anon_sym___thread] = ACTIONS(4876), + [anon_sym_const] = ACTIONS(4876), + [anon_sym_constexpr] = ACTIONS(4876), + [anon_sym_volatile] = ACTIONS(4876), + [anon_sym_restrict] = ACTIONS(4876), + [anon_sym___restrict__] = ACTIONS(4876), + [anon_sym__Atomic] = ACTIONS(4876), + [anon_sym__Noreturn] = ACTIONS(4876), + [anon_sym_noreturn] = ACTIONS(4876), + [anon_sym_mutable] = ACTIONS(4876), + [anon_sym_constinit] = ACTIONS(4876), + [anon_sym_consteval] = ACTIONS(4876), + [sym_primitive_type] = ACTIONS(4876), + [anon_sym_enum] = ACTIONS(4876), + [anon_sym_class] = ACTIONS(4876), + [anon_sym_struct] = ACTIONS(4876), + [anon_sym_union] = ACTIONS(4876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4876), + [anon_sym_decltype] = ACTIONS(4876), + [anon_sym_virtual] = ACTIONS(4876), + [anon_sym_alignas] = ACTIONS(4876), + [anon_sym_explicit] = ACTIONS(4876), + [anon_sym_typename] = ACTIONS(4876), + [anon_sym_template] = ACTIONS(4876), + [anon_sym_operator] = ACTIONS(4876), + [anon_sym_friend] = ACTIONS(4876), + [anon_sym_public] = ACTIONS(4876), + [anon_sym_private] = ACTIONS(4876), + [anon_sym_protected] = ACTIONS(4876), + [anon_sym_using] = ACTIONS(4876), + [anon_sym_static_assert] = ACTIONS(4876), }, [2092] = { - [sym__expression] = STATE(3875), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), + [sym_identifier] = ACTIONS(3059), + [aux_sym_preproc_def_token1] = ACTIONS(3059), + [aux_sym_preproc_if_token1] = ACTIONS(3059), + [aux_sym_preproc_if_token2] = ACTIONS(3059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3059), + [aux_sym_preproc_else_token1] = ACTIONS(3059), + [aux_sym_preproc_elif_token1] = ACTIONS(3059), + [sym_preproc_directive] = ACTIONS(3059), + [anon_sym_LPAREN2] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3059), + [anon_sym___extension__] = ACTIONS(3059), + [anon_sym_typedef] = ACTIONS(3059), + [anon_sym_extern] = ACTIONS(3059), + [anon_sym___attribute__] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3061), + [anon_sym___declspec] = ACTIONS(3059), + [anon_sym___based] = ACTIONS(3059), + [anon_sym_signed] = ACTIONS(3059), + [anon_sym_unsigned] = ACTIONS(3059), + [anon_sym_long] = ACTIONS(3059), + [anon_sym_short] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_static] = ACTIONS(3059), + [anon_sym_register] = ACTIONS(3059), + [anon_sym_inline] = ACTIONS(3059), + [anon_sym___inline] = ACTIONS(3059), + [anon_sym___inline__] = ACTIONS(3059), + [anon_sym___forceinline] = ACTIONS(3059), + [anon_sym_thread_local] = ACTIONS(3059), + [anon_sym___thread] = ACTIONS(3059), + [anon_sym_const] = ACTIONS(3059), + [anon_sym_constexpr] = ACTIONS(3059), + [anon_sym_volatile] = ACTIONS(3059), + [anon_sym_restrict] = ACTIONS(3059), + [anon_sym___restrict__] = ACTIONS(3059), + [anon_sym__Atomic] = ACTIONS(3059), + [anon_sym__Noreturn] = ACTIONS(3059), + [anon_sym_noreturn] = ACTIONS(3059), + [anon_sym_mutable] = ACTIONS(3059), + [anon_sym_constinit] = ACTIONS(3059), + [anon_sym_consteval] = ACTIONS(3059), + [sym_primitive_type] = ACTIONS(3059), + [anon_sym_enum] = ACTIONS(3059), + [anon_sym_class] = ACTIONS(3059), + [anon_sym_struct] = ACTIONS(3059), + [anon_sym_union] = ACTIONS(3059), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3059), + [anon_sym_decltype] = ACTIONS(3059), + [anon_sym_virtual] = ACTIONS(3059), + [anon_sym_alignas] = ACTIONS(3059), + [anon_sym_explicit] = ACTIONS(3059), + [anon_sym_typename] = ACTIONS(3059), + [anon_sym_template] = ACTIONS(3059), + [anon_sym_operator] = ACTIONS(3059), + [anon_sym_friend] = ACTIONS(3059), + [anon_sym_public] = ACTIONS(3059), + [anon_sym_private] = ACTIONS(3059), + [anon_sym_protected] = ACTIONS(3059), + [anon_sym_using] = ACTIONS(3059), + [anon_sym_static_assert] = ACTIONS(3059), }, [2093] = { - [sym__expression] = STATE(3874), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), + [sym_identifier] = ACTIONS(2989), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token2] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2989), + [sym_preproc_directive] = ACTIONS(2989), + [anon_sym_LPAREN2] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym___extension__] = ACTIONS(2989), + [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_extern] = ACTIONS(2989), + [anon_sym___attribute__] = ACTIONS(2989), + [anon_sym_COLON_COLON] = ACTIONS(2991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), + [anon_sym___declspec] = ACTIONS(2989), + [anon_sym___based] = ACTIONS(2989), + [anon_sym_signed] = ACTIONS(2989), + [anon_sym_unsigned] = ACTIONS(2989), + [anon_sym_long] = ACTIONS(2989), + [anon_sym_short] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2989), + [anon_sym_static] = ACTIONS(2989), + [anon_sym_register] = ACTIONS(2989), + [anon_sym_inline] = ACTIONS(2989), + [anon_sym___inline] = ACTIONS(2989), + [anon_sym___inline__] = ACTIONS(2989), + [anon_sym___forceinline] = ACTIONS(2989), + [anon_sym_thread_local] = ACTIONS(2989), + [anon_sym___thread] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_constexpr] = ACTIONS(2989), + [anon_sym_volatile] = ACTIONS(2989), + [anon_sym_restrict] = ACTIONS(2989), + [anon_sym___restrict__] = ACTIONS(2989), + [anon_sym__Atomic] = ACTIONS(2989), + [anon_sym__Noreturn] = ACTIONS(2989), + [anon_sym_noreturn] = ACTIONS(2989), + [anon_sym_mutable] = ACTIONS(2989), + [anon_sym_constinit] = ACTIONS(2989), + [anon_sym_consteval] = ACTIONS(2989), + [sym_primitive_type] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_class] = ACTIONS(2989), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_union] = ACTIONS(2989), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2989), + [anon_sym_decltype] = ACTIONS(2989), + [anon_sym_virtual] = ACTIONS(2989), + [anon_sym_alignas] = ACTIONS(2989), + [anon_sym_explicit] = ACTIONS(2989), + [anon_sym_typename] = ACTIONS(2989), + [anon_sym_template] = ACTIONS(2989), + [anon_sym_operator] = ACTIONS(2989), + [anon_sym_friend] = ACTIONS(2989), + [anon_sym_public] = ACTIONS(2989), + [anon_sym_private] = ACTIONS(2989), + [anon_sym_protected] = ACTIONS(2989), + [anon_sym_using] = ACTIONS(2989), + [anon_sym_static_assert] = ACTIONS(2989), }, [2094] = { - [sym__expression] = STATE(3329), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2997), + [aux_sym_preproc_def_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token2] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2997), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2997), + [sym_preproc_directive] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym___extension__] = ACTIONS(2997), + [anon_sym_typedef] = ACTIONS(2997), + [anon_sym_extern] = ACTIONS(2997), + [anon_sym___attribute__] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2999), + [anon_sym___declspec] = ACTIONS(2997), + [anon_sym___based] = ACTIONS(2997), + [anon_sym_signed] = ACTIONS(2997), + [anon_sym_unsigned] = ACTIONS(2997), + [anon_sym_long] = ACTIONS(2997), + [anon_sym_short] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(2997), + [anon_sym_register] = ACTIONS(2997), + [anon_sym_inline] = ACTIONS(2997), + [anon_sym___inline] = ACTIONS(2997), + [anon_sym___inline__] = ACTIONS(2997), + [anon_sym___forceinline] = ACTIONS(2997), + [anon_sym_thread_local] = ACTIONS(2997), + [anon_sym___thread] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_volatile] = ACTIONS(2997), + [anon_sym_restrict] = ACTIONS(2997), + [anon_sym___restrict__] = ACTIONS(2997), + [anon_sym__Atomic] = ACTIONS(2997), + [anon_sym__Noreturn] = ACTIONS(2997), + [anon_sym_noreturn] = ACTIONS(2997), + [anon_sym_mutable] = ACTIONS(2997), + [anon_sym_constinit] = ACTIONS(2997), + [anon_sym_consteval] = ACTIONS(2997), + [sym_primitive_type] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_class] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2997), + [anon_sym_decltype] = ACTIONS(2997), + [anon_sym_virtual] = ACTIONS(2997), + [anon_sym_alignas] = ACTIONS(2997), + [anon_sym_explicit] = ACTIONS(2997), + [anon_sym_typename] = ACTIONS(2997), + [anon_sym_template] = ACTIONS(2997), + [anon_sym_operator] = ACTIONS(2997), + [anon_sym_friend] = ACTIONS(2997), + [anon_sym_public] = ACTIONS(2997), + [anon_sym_private] = ACTIONS(2997), + [anon_sym_protected] = ACTIONS(2997), + [anon_sym_using] = ACTIONS(2997), + [anon_sym_static_assert] = ACTIONS(2997), }, [2095] = { - [sym__expression] = STATE(3873), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), + [sym_string_literal] = STATE(2021), + [sym_template_argument_list] = STATE(3141), + [sym_raw_string_literal] = STATE(2021), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4069), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(5292), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_EQ] = ACTIONS(4069), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4061), + [anon_sym_SLASH_EQ] = ACTIONS(4061), + [anon_sym_PERCENT_EQ] = ACTIONS(4061), + [anon_sym_PLUS_EQ] = ACTIONS(4061), + [anon_sym_DASH_EQ] = ACTIONS(4061), + [anon_sym_LT_LT_EQ] = ACTIONS(4061), + [anon_sym_GT_GT_EQ] = ACTIONS(4069), + [anon_sym_AMP_EQ] = ACTIONS(4061), + [anon_sym_CARET_EQ] = ACTIONS(4061), + [anon_sym_PIPE_EQ] = ACTIONS(4061), + [anon_sym_and_eq] = ACTIONS(4061), + [anon_sym_or_eq] = ACTIONS(4061), + [anon_sym_xor_eq] = ACTIONS(4061), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(5277), + [anon_sym_u_DQUOTE] = ACTIONS(5277), + [anon_sym_U_DQUOTE] = ACTIONS(5277), + [anon_sym_u8_DQUOTE] = ACTIONS(5277), + [anon_sym_DQUOTE] = ACTIONS(5277), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(4061), + [anon_sym_R_DQUOTE] = ACTIONS(5279), + [anon_sym_LR_DQUOTE] = ACTIONS(5279), + [anon_sym_uR_DQUOTE] = ACTIONS(5279), + [anon_sym_UR_DQUOTE] = ACTIONS(5279), + [anon_sym_u8R_DQUOTE] = ACTIONS(5279), }, [2096] = { - [sym__expression] = STATE(3869), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), + [aux_sym_sized_type_specifier_repeat1] = STATE(2106), + [sym_identifier] = ACTIONS(5295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5074), + [anon_sym_COMMA] = ACTIONS(5074), + [anon_sym_RPAREN] = ACTIONS(5074), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5076), + [anon_sym_STAR] = ACTIONS(5076), + [anon_sym_SLASH] = ACTIONS(5076), + [anon_sym_PERCENT] = ACTIONS(5076), + [anon_sym_PIPE_PIPE] = ACTIONS(5074), + [anon_sym_AMP_AMP] = ACTIONS(5074), + [anon_sym_PIPE] = ACTIONS(5076), + [anon_sym_CARET] = ACTIONS(5076), + [anon_sym_AMP] = ACTIONS(5076), + [anon_sym_EQ_EQ] = ACTIONS(5074), + [anon_sym_BANG_EQ] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5076), + [anon_sym_GT_EQ] = ACTIONS(5074), + [anon_sym_LT_EQ] = ACTIONS(5076), + [anon_sym_LT] = ACTIONS(5076), + [anon_sym_LT_LT] = ACTIONS(5076), + [anon_sym_GT_GT] = ACTIONS(5076), + [anon_sym_SEMI] = ACTIONS(5074), + [anon_sym___attribute__] = ACTIONS(5076), + [anon_sym_LBRACE] = ACTIONS(5074), + [anon_sym_RBRACE] = ACTIONS(5074), + [anon_sym_signed] = ACTIONS(5297), + [anon_sym_unsigned] = ACTIONS(5297), + [anon_sym_long] = ACTIONS(5297), + [anon_sym_short] = ACTIONS(5297), + [anon_sym_LBRACK] = ACTIONS(5074), + [anon_sym_RBRACK] = ACTIONS(5074), + [anon_sym_EQ] = ACTIONS(5076), + [sym_primitive_type] = ACTIONS(5299), + [anon_sym_COLON] = ACTIONS(5074), + [anon_sym_QMARK] = ACTIONS(5074), + [anon_sym_STAR_EQ] = ACTIONS(5074), + [anon_sym_SLASH_EQ] = ACTIONS(5074), + [anon_sym_PERCENT_EQ] = ACTIONS(5074), + [anon_sym_PLUS_EQ] = ACTIONS(5074), + [anon_sym_DASH_EQ] = ACTIONS(5074), + [anon_sym_LT_LT_EQ] = ACTIONS(5074), + [anon_sym_GT_GT_EQ] = ACTIONS(5074), + [anon_sym_AMP_EQ] = ACTIONS(5074), + [anon_sym_CARET_EQ] = ACTIONS(5074), + [anon_sym_PIPE_EQ] = ACTIONS(5074), + [anon_sym_and_eq] = ACTIONS(5076), + [anon_sym_or_eq] = ACTIONS(5076), + [anon_sym_xor_eq] = ACTIONS(5076), + [anon_sym_LT_EQ_GT] = ACTIONS(5074), + [anon_sym_or] = ACTIONS(5076), + [anon_sym_and] = ACTIONS(5076), + [anon_sym_bitor] = ACTIONS(5076), + [anon_sym_xor] = ACTIONS(5076), + [anon_sym_bitand] = ACTIONS(5076), + [anon_sym_not_eq] = ACTIONS(5076), + [anon_sym_DASH_DASH] = ACTIONS(5074), + [anon_sym_PLUS_PLUS] = ACTIONS(5074), + [anon_sym_DOT] = ACTIONS(5076), + [anon_sym_DOT_STAR] = ACTIONS(5074), + [anon_sym_DASH_GT] = ACTIONS(5074), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5076), + [anon_sym_decltype] = ACTIONS(5076), }, [2097] = { - [sym__expression] = STATE(5354), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym__declaration_modifiers] = STATE(3444), + [sym_attribute_specifier] = STATE(3444), + [sym_attribute_declaration] = STATE(3444), + [sym_ms_declspec_modifier] = STATE(3444), + [sym_storage_class_specifier] = STATE(3444), + [sym_type_qualifier] = STATE(3444), + [sym__type_specifier] = STATE(3804), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3444), + [sym_alignas_specifier] = STATE(3444), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5983), + [sym_qualified_type_identifier] = STATE(2910), + [aux_sym__declaration_specifiers_repeat1] = STATE(3444), + [aux_sym_sized_type_specifier_repeat1] = STATE(3112), + [sym_identifier] = ACTIONS(3667), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3673), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(3675), + [anon_sym_unsigned] = ACTIONS(3675), + [anon_sym_long] = ACTIONS(3675), + [anon_sym_short] = ACTIONS(3675), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(3677), + [anon_sym_class] = ACTIONS(3679), + [anon_sym_struct] = ACTIONS(3681), + [anon_sym_union] = ACTIONS(3683), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(3685), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), }, [2098] = { - [sym__expression] = STATE(3868), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), + [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), + [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___extension__] = ACTIONS(3055), + [anon_sym_typedef] = ACTIONS(3055), + [anon_sym_extern] = ACTIONS(3055), + [anon_sym___attribute__] = 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_mutable] = ACTIONS(3055), + [anon_sym_constinit] = ACTIONS(3055), + [anon_sym_consteval] = 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_virtual] = ACTIONS(3055), + [anon_sym_alignas] = ACTIONS(3055), + [anon_sym_explicit] = ACTIONS(3055), + [anon_sym_typename] = ACTIONS(3055), + [anon_sym_template] = ACTIONS(3055), + [anon_sym_operator] = ACTIONS(3055), + [anon_sym_friend] = ACTIONS(3055), + [anon_sym_public] = ACTIONS(3055), + [anon_sym_private] = ACTIONS(3055), + [anon_sym_protected] = ACTIONS(3055), + [anon_sym_using] = ACTIONS(3055), + [anon_sym_static_assert] = ACTIONS(3055), }, [2099] = { - [sym__expression] = STATE(3867), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), + [sym_identifier] = ACTIONS(3051), + [aux_sym_preproc_def_token1] = ACTIONS(3051), + [aux_sym_preproc_if_token1] = ACTIONS(3051), + [aux_sym_preproc_if_token2] = ACTIONS(3051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3051), + [aux_sym_preproc_else_token1] = ACTIONS(3051), + [aux_sym_preproc_elif_token1] = ACTIONS(3051), + [sym_preproc_directive] = ACTIONS(3051), + [anon_sym_LPAREN2] = ACTIONS(3053), + [anon_sym_TILDE] = ACTIONS(3053), + [anon_sym_STAR] = ACTIONS(3053), + [anon_sym_AMP_AMP] = ACTIONS(3053), + [anon_sym_AMP] = ACTIONS(3051), + [anon_sym___extension__] = ACTIONS(3051), + [anon_sym_typedef] = ACTIONS(3051), + [anon_sym_extern] = ACTIONS(3051), + [anon_sym___attribute__] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(3053), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3053), + [anon_sym___declspec] = ACTIONS(3051), + [anon_sym___based] = ACTIONS(3051), + [anon_sym_signed] = ACTIONS(3051), + [anon_sym_unsigned] = ACTIONS(3051), + [anon_sym_long] = ACTIONS(3051), + [anon_sym_short] = ACTIONS(3051), + [anon_sym_LBRACK] = ACTIONS(3051), + [anon_sym_static] = ACTIONS(3051), + [anon_sym_register] = ACTIONS(3051), + [anon_sym_inline] = ACTIONS(3051), + [anon_sym___inline] = ACTIONS(3051), + [anon_sym___inline__] = ACTIONS(3051), + [anon_sym___forceinline] = ACTIONS(3051), + [anon_sym_thread_local] = ACTIONS(3051), + [anon_sym___thread] = ACTIONS(3051), + [anon_sym_const] = ACTIONS(3051), + [anon_sym_constexpr] = ACTIONS(3051), + [anon_sym_volatile] = ACTIONS(3051), + [anon_sym_restrict] = ACTIONS(3051), + [anon_sym___restrict__] = ACTIONS(3051), + [anon_sym__Atomic] = ACTIONS(3051), + [anon_sym__Noreturn] = ACTIONS(3051), + [anon_sym_noreturn] = ACTIONS(3051), + [anon_sym_mutable] = ACTIONS(3051), + [anon_sym_constinit] = ACTIONS(3051), + [anon_sym_consteval] = ACTIONS(3051), + [sym_primitive_type] = ACTIONS(3051), + [anon_sym_enum] = ACTIONS(3051), + [anon_sym_class] = ACTIONS(3051), + [anon_sym_struct] = ACTIONS(3051), + [anon_sym_union] = ACTIONS(3051), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3051), + [anon_sym_decltype] = ACTIONS(3051), + [anon_sym_virtual] = ACTIONS(3051), + [anon_sym_alignas] = ACTIONS(3051), + [anon_sym_explicit] = ACTIONS(3051), + [anon_sym_typename] = ACTIONS(3051), + [anon_sym_template] = ACTIONS(3051), + [anon_sym_operator] = ACTIONS(3051), + [anon_sym_friend] = ACTIONS(3051), + [anon_sym_public] = ACTIONS(3051), + [anon_sym_private] = ACTIONS(3051), + [anon_sym_protected] = ACTIONS(3051), + [anon_sym_using] = ACTIONS(3051), + [anon_sym_static_assert] = ACTIONS(3051), }, [2100] = { - [sym__expression] = STATE(3866), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), + [sym_identifier] = ACTIONS(3047), + [aux_sym_preproc_def_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token2] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3047), + [aux_sym_preproc_else_token1] = ACTIONS(3047), + [aux_sym_preproc_elif_token1] = ACTIONS(3047), + [sym_preproc_directive] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3047), + [anon_sym___extension__] = ACTIONS(3047), + [anon_sym_typedef] = ACTIONS(3047), + [anon_sym_extern] = ACTIONS(3047), + [anon_sym___attribute__] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3049), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3049), + [anon_sym___declspec] = ACTIONS(3047), + [anon_sym___based] = ACTIONS(3047), + [anon_sym_signed] = ACTIONS(3047), + [anon_sym_unsigned] = ACTIONS(3047), + [anon_sym_long] = ACTIONS(3047), + [anon_sym_short] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_static] = ACTIONS(3047), + [anon_sym_register] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym___inline] = ACTIONS(3047), + [anon_sym___inline__] = ACTIONS(3047), + [anon_sym___forceinline] = ACTIONS(3047), + [anon_sym_thread_local] = ACTIONS(3047), + [anon_sym___thread] = ACTIONS(3047), + [anon_sym_const] = ACTIONS(3047), + [anon_sym_constexpr] = ACTIONS(3047), + [anon_sym_volatile] = ACTIONS(3047), + [anon_sym_restrict] = ACTIONS(3047), + [anon_sym___restrict__] = ACTIONS(3047), + [anon_sym__Atomic] = ACTIONS(3047), + [anon_sym__Noreturn] = ACTIONS(3047), + [anon_sym_noreturn] = ACTIONS(3047), + [anon_sym_mutable] = ACTIONS(3047), + [anon_sym_constinit] = ACTIONS(3047), + [anon_sym_consteval] = ACTIONS(3047), + [sym_primitive_type] = ACTIONS(3047), + [anon_sym_enum] = ACTIONS(3047), + [anon_sym_class] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_union] = ACTIONS(3047), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3047), + [anon_sym_decltype] = ACTIONS(3047), + [anon_sym_virtual] = ACTIONS(3047), + [anon_sym_alignas] = ACTIONS(3047), + [anon_sym_explicit] = ACTIONS(3047), + [anon_sym_typename] = ACTIONS(3047), + [anon_sym_template] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_friend] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_private] = ACTIONS(3047), + [anon_sym_protected] = ACTIONS(3047), + [anon_sym_using] = ACTIONS(3047), + [anon_sym_static_assert] = ACTIONS(3047), }, [2101] = { - [sym__expression] = STATE(3865), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), + [sym_identifier] = ACTIONS(3043), + [aux_sym_preproc_def_token1] = ACTIONS(3043), + [aux_sym_preproc_if_token1] = ACTIONS(3043), + [aux_sym_preproc_if_token2] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3043), + [aux_sym_preproc_else_token1] = ACTIONS(3043), + [aux_sym_preproc_elif_token1] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym___extension__] = ACTIONS(3043), + [anon_sym_typedef] = ACTIONS(3043), + [anon_sym_extern] = ACTIONS(3043), + [anon_sym___attribute__] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3045), + [anon_sym___declspec] = ACTIONS(3043), + [anon_sym___based] = ACTIONS(3043), + [anon_sym_signed] = ACTIONS(3043), + [anon_sym_unsigned] = ACTIONS(3043), + [anon_sym_long] = ACTIONS(3043), + [anon_sym_short] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_static] = ACTIONS(3043), + [anon_sym_register] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym___inline] = ACTIONS(3043), + [anon_sym___inline__] = ACTIONS(3043), + [anon_sym___forceinline] = ACTIONS(3043), + [anon_sym_thread_local] = ACTIONS(3043), + [anon_sym___thread] = ACTIONS(3043), + [anon_sym_const] = ACTIONS(3043), + [anon_sym_constexpr] = ACTIONS(3043), + [anon_sym_volatile] = ACTIONS(3043), + [anon_sym_restrict] = ACTIONS(3043), + [anon_sym___restrict__] = ACTIONS(3043), + [anon_sym__Atomic] = ACTIONS(3043), + [anon_sym__Noreturn] = ACTIONS(3043), + [anon_sym_noreturn] = ACTIONS(3043), + [anon_sym_mutable] = ACTIONS(3043), + [anon_sym_constinit] = ACTIONS(3043), + [anon_sym_consteval] = ACTIONS(3043), + [sym_primitive_type] = ACTIONS(3043), + [anon_sym_enum] = ACTIONS(3043), + [anon_sym_class] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3043), + [anon_sym_union] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3043), + [anon_sym_decltype] = ACTIONS(3043), + [anon_sym_virtual] = ACTIONS(3043), + [anon_sym_alignas] = ACTIONS(3043), + [anon_sym_explicit] = ACTIONS(3043), + [anon_sym_typename] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_friend] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3043), + [anon_sym_private] = ACTIONS(3043), + [anon_sym_protected] = ACTIONS(3043), + [anon_sym_using] = ACTIONS(3043), + [anon_sym_static_assert] = ACTIONS(3043), }, [2102] = { - [sym__expression] = STATE(3864), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), + [sym__declaration_modifiers] = STATE(3444), + [sym_attribute_specifier] = STATE(3444), + [sym_attribute_declaration] = STATE(3444), + [sym_ms_declspec_modifier] = STATE(3444), + [sym_storage_class_specifier] = STATE(3444), + [sym_type_qualifier] = STATE(3444), + [sym__type_specifier] = STATE(2736), + [sym_sized_type_specifier] = STATE(3114), + [sym_enum_specifier] = STATE(3114), + [sym_struct_specifier] = STATE(3114), + [sym_union_specifier] = STATE(3114), + [sym_placeholder_type_specifier] = STATE(3114), + [sym_decltype_auto] = STATE(3103), + [sym_decltype] = STATE(2911), + [sym_class_specifier] = STATE(3114), + [sym_virtual] = STATE(3444), + [sym_alignas_specifier] = STATE(3444), + [sym_dependent_type] = STATE(3114), + [sym_template_type] = STATE(2911), + [sym_dependent_type_identifier] = STATE(7683), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_type_identifier] = STATE(3729), + [aux_sym__declaration_specifiers_repeat1] = STATE(3444), + [aux_sym_sized_type_specifier_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(4633), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2715), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(2717), [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), }, [2103] = { - [sym__expression] = STATE(5324), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3039), + [aux_sym_preproc_def_token1] = ACTIONS(3039), + [aux_sym_preproc_if_token1] = ACTIONS(3039), + [aux_sym_preproc_if_token2] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3039), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3039), + [sym_preproc_directive] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_AMP_AMP] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym___extension__] = ACTIONS(3039), + [anon_sym_typedef] = ACTIONS(3039), + [anon_sym_extern] = ACTIONS(3039), + [anon_sym___attribute__] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3041), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3041), + [anon_sym___declspec] = ACTIONS(3039), + [anon_sym___based] = ACTIONS(3039), + [anon_sym_signed] = ACTIONS(3039), + [anon_sym_unsigned] = ACTIONS(3039), + [anon_sym_long] = ACTIONS(3039), + [anon_sym_short] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_static] = ACTIONS(3039), + [anon_sym_register] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym___inline] = ACTIONS(3039), + [anon_sym___inline__] = ACTIONS(3039), + [anon_sym___forceinline] = ACTIONS(3039), + [anon_sym_thread_local] = ACTIONS(3039), + [anon_sym___thread] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(3039), + [anon_sym_constexpr] = ACTIONS(3039), + [anon_sym_volatile] = ACTIONS(3039), + [anon_sym_restrict] = ACTIONS(3039), + [anon_sym___restrict__] = ACTIONS(3039), + [anon_sym__Atomic] = ACTIONS(3039), + [anon_sym__Noreturn] = ACTIONS(3039), + [anon_sym_noreturn] = ACTIONS(3039), + [anon_sym_mutable] = ACTIONS(3039), + [anon_sym_constinit] = ACTIONS(3039), + [anon_sym_consteval] = ACTIONS(3039), + [sym_primitive_type] = ACTIONS(3039), + [anon_sym_enum] = ACTIONS(3039), + [anon_sym_class] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3039), + [anon_sym_union] = ACTIONS(3039), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3039), + [anon_sym_decltype] = ACTIONS(3039), + [anon_sym_virtual] = ACTIONS(3039), + [anon_sym_alignas] = ACTIONS(3039), + [anon_sym_explicit] = ACTIONS(3039), + [anon_sym_typename] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3039), + [anon_sym_operator] = ACTIONS(3039), + [anon_sym_friend] = ACTIONS(3039), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_using] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3039), }, [2104] = { - [sym__expression] = STATE(3863), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), + [sym_identifier] = ACTIONS(3035), + [aux_sym_preproc_def_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token2] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), + [aux_sym_preproc_else_token1] = ACTIONS(3035), + [aux_sym_preproc_elif_token1] = ACTIONS(3035), + [sym_preproc_directive] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(3037), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP_AMP] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym___extension__] = ACTIONS(3035), + [anon_sym_typedef] = ACTIONS(3035), + [anon_sym_extern] = ACTIONS(3035), + [anon_sym___attribute__] = ACTIONS(3035), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), + [anon_sym___declspec] = ACTIONS(3035), + [anon_sym___based] = ACTIONS(3035), + [anon_sym_signed] = ACTIONS(3035), + [anon_sym_unsigned] = ACTIONS(3035), + [anon_sym_long] = ACTIONS(3035), + [anon_sym_short] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_static] = ACTIONS(3035), + [anon_sym_register] = ACTIONS(3035), + [anon_sym_inline] = ACTIONS(3035), + [anon_sym___inline] = ACTIONS(3035), + [anon_sym___inline__] = ACTIONS(3035), + [anon_sym___forceinline] = ACTIONS(3035), + [anon_sym_thread_local] = ACTIONS(3035), + [anon_sym___thread] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_constexpr] = ACTIONS(3035), + [anon_sym_volatile] = ACTIONS(3035), + [anon_sym_restrict] = ACTIONS(3035), + [anon_sym___restrict__] = ACTIONS(3035), + [anon_sym__Atomic] = ACTIONS(3035), + [anon_sym__Noreturn] = ACTIONS(3035), + [anon_sym_noreturn] = ACTIONS(3035), + [anon_sym_mutable] = ACTIONS(3035), + [anon_sym_constinit] = ACTIONS(3035), + [anon_sym_consteval] = ACTIONS(3035), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_class] = ACTIONS(3035), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3035), + [anon_sym_decltype] = ACTIONS(3035), + [anon_sym_virtual] = ACTIONS(3035), + [anon_sym_alignas] = ACTIONS(3035), + [anon_sym_explicit] = ACTIONS(3035), + [anon_sym_typename] = ACTIONS(3035), + [anon_sym_template] = ACTIONS(3035), + [anon_sym_operator] = ACTIONS(3035), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_public] = ACTIONS(3035), + [anon_sym_private] = ACTIONS(3035), + [anon_sym_protected] = ACTIONS(3035), + [anon_sym_using] = ACTIONS(3035), + [anon_sym_static_assert] = ACTIONS(3035), }, [2105] = { - [sym__expression] = STATE(5329), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(3035), + [aux_sym_preproc_def_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token1] = ACTIONS(3035), + [aux_sym_preproc_if_token2] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), + [aux_sym_preproc_else_token1] = ACTIONS(3035), + [aux_sym_preproc_elif_token1] = ACTIONS(3035), + [sym_preproc_directive] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(3037), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_AMP_AMP] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym___extension__] = ACTIONS(3035), + [anon_sym_typedef] = ACTIONS(3035), + [anon_sym_extern] = ACTIONS(3035), + [anon_sym___attribute__] = ACTIONS(3035), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), + [anon_sym___declspec] = ACTIONS(3035), + [anon_sym___based] = ACTIONS(3035), + [anon_sym_signed] = ACTIONS(3035), + [anon_sym_unsigned] = ACTIONS(3035), + [anon_sym_long] = ACTIONS(3035), + [anon_sym_short] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_static] = ACTIONS(3035), + [anon_sym_register] = ACTIONS(3035), + [anon_sym_inline] = ACTIONS(3035), + [anon_sym___inline] = ACTIONS(3035), + [anon_sym___inline__] = ACTIONS(3035), + [anon_sym___forceinline] = ACTIONS(3035), + [anon_sym_thread_local] = ACTIONS(3035), + [anon_sym___thread] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_constexpr] = ACTIONS(3035), + [anon_sym_volatile] = ACTIONS(3035), + [anon_sym_restrict] = ACTIONS(3035), + [anon_sym___restrict__] = ACTIONS(3035), + [anon_sym__Atomic] = ACTIONS(3035), + [anon_sym__Noreturn] = ACTIONS(3035), + [anon_sym_noreturn] = ACTIONS(3035), + [anon_sym_mutable] = ACTIONS(3035), + [anon_sym_constinit] = ACTIONS(3035), + [anon_sym_consteval] = ACTIONS(3035), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_class] = ACTIONS(3035), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3035), + [anon_sym_decltype] = ACTIONS(3035), + [anon_sym_virtual] = ACTIONS(3035), + [anon_sym_alignas] = ACTIONS(3035), + [anon_sym_explicit] = ACTIONS(3035), + [anon_sym_typename] = ACTIONS(3035), + [anon_sym_template] = ACTIONS(3035), + [anon_sym_operator] = ACTIONS(3035), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_public] = ACTIONS(3035), + [anon_sym_private] = ACTIONS(3035), + [anon_sym_protected] = ACTIONS(3035), + [anon_sym_using] = ACTIONS(3035), + [anon_sym_static_assert] = ACTIONS(3035), }, [2106] = { - [sym__expression] = STATE(4898), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(4802), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [aux_sym_sized_type_specifier_repeat1] = STATE(2106), + [sym_identifier] = ACTIONS(5044), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5046), + [anon_sym_COMMA] = ACTIONS(5046), + [anon_sym_RPAREN] = ACTIONS(5046), + [anon_sym_LPAREN2] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5044), + [anon_sym_PLUS] = ACTIONS(5044), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5044), + [anon_sym_PERCENT] = ACTIONS(5044), + [anon_sym_PIPE_PIPE] = ACTIONS(5046), + [anon_sym_AMP_AMP] = ACTIONS(5046), + [anon_sym_PIPE] = ACTIONS(5044), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_AMP] = ACTIONS(5044), + [anon_sym_EQ_EQ] = ACTIONS(5046), + [anon_sym_BANG_EQ] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5044), + [anon_sym_GT_EQ] = ACTIONS(5046), + [anon_sym_LT_EQ] = ACTIONS(5044), + [anon_sym_LT] = ACTIONS(5044), + [anon_sym_LT_LT] = ACTIONS(5044), + [anon_sym_GT_GT] = ACTIONS(5044), + [anon_sym_SEMI] = ACTIONS(5046), + [anon_sym___attribute__] = ACTIONS(5044), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_RBRACE] = ACTIONS(5046), + [anon_sym_signed] = ACTIONS(5301), + [anon_sym_unsigned] = ACTIONS(5301), + [anon_sym_long] = ACTIONS(5301), + [anon_sym_short] = ACTIONS(5301), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_RBRACK] = ACTIONS(5046), + [anon_sym_EQ] = ACTIONS(5044), + [sym_primitive_type] = ACTIONS(5044), + [anon_sym_COLON] = ACTIONS(5046), + [anon_sym_QMARK] = ACTIONS(5046), + [anon_sym_STAR_EQ] = ACTIONS(5046), + [anon_sym_SLASH_EQ] = ACTIONS(5046), + [anon_sym_PERCENT_EQ] = ACTIONS(5046), + [anon_sym_PLUS_EQ] = ACTIONS(5046), + [anon_sym_DASH_EQ] = ACTIONS(5046), + [anon_sym_LT_LT_EQ] = ACTIONS(5046), + [anon_sym_GT_GT_EQ] = ACTIONS(5046), + [anon_sym_AMP_EQ] = ACTIONS(5046), + [anon_sym_CARET_EQ] = ACTIONS(5046), + [anon_sym_PIPE_EQ] = ACTIONS(5046), + [anon_sym_and_eq] = ACTIONS(5044), + [anon_sym_or_eq] = ACTIONS(5044), + [anon_sym_xor_eq] = ACTIONS(5044), + [anon_sym_LT_EQ_GT] = ACTIONS(5046), + [anon_sym_or] = ACTIONS(5044), + [anon_sym_and] = ACTIONS(5044), + [anon_sym_bitor] = ACTIONS(5044), + [anon_sym_xor] = ACTIONS(5044), + [anon_sym_bitand] = ACTIONS(5044), + [anon_sym_not_eq] = ACTIONS(5044), + [anon_sym_DASH_DASH] = ACTIONS(5046), + [anon_sym_PLUS_PLUS] = ACTIONS(5046), + [anon_sym_DOT] = ACTIONS(5044), + [anon_sym_DOT_STAR] = ACTIONS(5046), + [anon_sym_DASH_GT] = ACTIONS(5046), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5044), + [anon_sym_decltype] = ACTIONS(5044), }, [2107] = { - [sym__expression] = STATE(5349), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [sym_identifier] = ACTIONS(3031), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token2] = ACTIONS(3031), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3031), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3031), + [aux_sym_preproc_else_token1] = ACTIONS(3031), + [aux_sym_preproc_elif_token1] = ACTIONS(3031), + [sym_preproc_directive] = ACTIONS(3031), + [anon_sym_LPAREN2] = ACTIONS(3033), + [anon_sym_TILDE] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3033), + [anon_sym_AMP_AMP] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym___extension__] = ACTIONS(3031), + [anon_sym_typedef] = ACTIONS(3031), + [anon_sym_extern] = ACTIONS(3031), + [anon_sym___attribute__] = ACTIONS(3031), + [anon_sym_COLON_COLON] = ACTIONS(3033), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3033), + [anon_sym___declspec] = ACTIONS(3031), + [anon_sym___based] = ACTIONS(3031), + [anon_sym_signed] = ACTIONS(3031), + [anon_sym_unsigned] = ACTIONS(3031), + [anon_sym_long] = ACTIONS(3031), + [anon_sym_short] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_static] = ACTIONS(3031), + [anon_sym_register] = ACTIONS(3031), + [anon_sym_inline] = ACTIONS(3031), + [anon_sym___inline] = ACTIONS(3031), + [anon_sym___inline__] = ACTIONS(3031), + [anon_sym___forceinline] = ACTIONS(3031), + [anon_sym_thread_local] = ACTIONS(3031), + [anon_sym___thread] = ACTIONS(3031), + [anon_sym_const] = ACTIONS(3031), + [anon_sym_constexpr] = ACTIONS(3031), + [anon_sym_volatile] = ACTIONS(3031), + [anon_sym_restrict] = ACTIONS(3031), + [anon_sym___restrict__] = ACTIONS(3031), + [anon_sym__Atomic] = ACTIONS(3031), + [anon_sym__Noreturn] = ACTIONS(3031), + [anon_sym_noreturn] = ACTIONS(3031), + [anon_sym_mutable] = ACTIONS(3031), + [anon_sym_constinit] = ACTIONS(3031), + [anon_sym_consteval] = ACTIONS(3031), + [sym_primitive_type] = ACTIONS(3031), + [anon_sym_enum] = ACTIONS(3031), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3031), + [anon_sym_union] = ACTIONS(3031), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_auto] = ACTIONS(3031), + [anon_sym_decltype] = ACTIONS(3031), + [anon_sym_virtual] = ACTIONS(3031), + [anon_sym_alignas] = ACTIONS(3031), + [anon_sym_explicit] = ACTIONS(3031), + [anon_sym_typename] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3031), + [anon_sym_operator] = ACTIONS(3031), + [anon_sym_friend] = ACTIONS(3031), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_using] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3031), }, [2108] = { - [sym__expression] = STATE(3711), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2109] = { - [sym__expression] = STATE(3373), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2110] = { - [sym__expression] = STATE(5128), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), - }, - [2111] = { - [sym__expression] = STATE(5347), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2112] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2113] = { - [sym__expression] = STATE(5348), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), + [sym_identifier] = ACTIONS(3013), + [aux_sym_preproc_def_token1] = ACTIONS(3013), + [aux_sym_preproc_if_token1] = ACTIONS(3013), + [aux_sym_preproc_if_token2] = ACTIONS(3013), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3013), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3013), + [aux_sym_preproc_else_token1] = ACTIONS(3013), + [aux_sym_preproc_elif_token1] = ACTIONS(3013), + [sym_preproc_directive] = ACTIONS(3013), + [anon_sym_LPAREN2] = ACTIONS(3015), + [anon_sym_TILDE] = ACTIONS(3015), + [anon_sym_STAR] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym___extension__] = ACTIONS(3013), + [anon_sym_typedef] = ACTIONS(3013), + [anon_sym_extern] = ACTIONS(3013), + [anon_sym___attribute__] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(3015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3015), + [anon_sym___declspec] = ACTIONS(3013), + [anon_sym___based] = ACTIONS(3013), + [anon_sym_signed] = ACTIONS(3013), + [anon_sym_unsigned] = ACTIONS(3013), + [anon_sym_long] = ACTIONS(3013), + [anon_sym_short] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_static] = ACTIONS(3013), + [anon_sym_register] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym___inline] = ACTIONS(3013), + [anon_sym___inline__] = ACTIONS(3013), + [anon_sym___forceinline] = ACTIONS(3013), + [anon_sym_thread_local] = ACTIONS(3013), + [anon_sym___thread] = ACTIONS(3013), + [anon_sym_const] = ACTIONS(3013), + [anon_sym_constexpr] = ACTIONS(3013), + [anon_sym_volatile] = ACTIONS(3013), + [anon_sym_restrict] = ACTIONS(3013), + [anon_sym___restrict__] = ACTIONS(3013), + [anon_sym__Atomic] = ACTIONS(3013), + [anon_sym__Noreturn] = ACTIONS(3013), + [anon_sym_noreturn] = ACTIONS(3013), + [anon_sym_mutable] = ACTIONS(3013), + [anon_sym_constinit] = ACTIONS(3013), + [anon_sym_consteval] = ACTIONS(3013), + [sym_primitive_type] = ACTIONS(3013), + [anon_sym_enum] = ACTIONS(3013), + [anon_sym_class] = ACTIONS(3013), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3013), + [anon_sym_decltype] = ACTIONS(3013), + [anon_sym_virtual] = ACTIONS(3013), + [anon_sym_alignas] = ACTIONS(3013), + [anon_sym_explicit] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3013), + [anon_sym_template] = ACTIONS(3013), + [anon_sym_operator] = ACTIONS(3013), + [anon_sym_friend] = ACTIONS(3013), + [anon_sym_public] = ACTIONS(3013), + [anon_sym_private] = ACTIONS(3013), + [anon_sym_protected] = ACTIONS(3013), + [anon_sym_using] = ACTIONS(3013), + [anon_sym_static_assert] = ACTIONS(3013), }, - [2114] = { - [sym__expression] = STATE(4781), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2115] = { - [sym__expression] = STATE(3742), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(4804), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), - }, - [2116] = { - [sym__expression] = STATE(5130), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), - }, - [2117] = { - [sym__expression] = STATE(4159), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2118] = { - [sym__expression] = STATE(3737), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), - }, - [2119] = { - [sym__expression] = STATE(4160), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2120] = { - [sym__expression] = STATE(5314), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2121] = { - [sym__expression] = STATE(3400), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2122] = { - [sym__expression] = STATE(5318), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2123] = { - [sym__expression] = STATE(5313), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2124] = { - [sym__expression] = STATE(5312), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2125] = { - [sym__expression] = STATE(5326), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2126] = { - [sym__expression] = STATE(4290), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [2127] = { - [sym__expression] = STATE(5317), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2128] = { - [sym__expression] = STATE(3709), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(4806), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), - }, - [2129] = { - [sym__expression] = STATE(5340), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2130] = { - [sym__expression] = STATE(5345), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2131] = { - [sym__expression] = STATE(4778), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2132] = { - [sym__expression] = STATE(5389), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2133] = { - [sym__expression] = STATE(4228), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [2134] = { - [sym__expression] = STATE(5222), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(4808), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2135] = { - [sym__expression] = STATE(3476), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2136] = { - [sym__expression] = STATE(4254), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [2137] = { - [sym__expression] = STATE(4257), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [2138] = { - [sym__expression] = STATE(4259), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [2139] = { - [sym__expression] = STATE(4265), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [2140] = { - [sym__expression] = STATE(5315), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2141] = { - [sym__expression] = STATE(5179), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(4810), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2142] = { - [sym__expression] = STATE(4267), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [2143] = { - [sym__expression] = STATE(4268), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [2144] = { - [sym__expression] = STATE(5225), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2145] = { - [sym__expression] = STATE(4269), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [2146] = { - [sym__expression] = STATE(4271), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [2147] = { - [sym__expression] = STATE(4281), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [2148] = { - [sym__expression] = STATE(4282), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [2149] = { - [sym__expression] = STATE(4781), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2150] = { - [sym__expression] = STATE(4231), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(4812), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [2151] = { - [sym__expression] = STATE(5007), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2152] = { - [sym__expression] = STATE(5371), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2153] = { - [sym__expression] = STATE(5093), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2154] = { - [sym__expression] = STATE(4935), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2155] = { - [sym__expression] = STATE(5341), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(4814), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2156] = { - [sym__expression] = STATE(4971), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2157] = { - [sym__expression] = STATE(4233), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [2158] = { - [sym__expression] = STATE(4233), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(4816), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [2159] = { - [sym__expression] = STATE(5299), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2160] = { - [sym__expression] = STATE(5243), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2161] = { - [sym__expression] = STATE(5033), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2162] = { - [sym__expression] = STATE(4788), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2163] = { - [sym__expression] = STATE(5018), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2164] = { - [sym__expression] = STATE(5017), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2165] = { - [sym__expression] = STATE(5015), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2166] = { - [sym__expression] = STATE(5014), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2167] = { - [sym__expression] = STATE(5006), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2168] = { - [sym__expression] = STATE(5005), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2169] = { - [sym__expression] = STATE(5233), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), - }, - [2170] = { - [sym__expression] = STATE(3840), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2171] = { - [sym__expression] = STATE(5002), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2172] = { - [sym__expression] = STATE(4998), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2173] = { - [sym__expression] = STATE(3790), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), - }, - [2174] = { - [sym__expression] = STATE(5344), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2175] = { - [sym__expression] = STATE(5024), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2176] = { - [sym__expression] = STATE(5100), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2177] = { - [sym__expression] = STATE(5041), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2178] = { - [sym__expression] = STATE(3750), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), - }, - [2179] = { - [sym__expression] = STATE(3752), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), - }, - [2180] = { - [sym__expression] = STATE(5163), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2181] = { - [sym__expression] = STATE(3511), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(4818), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2182] = { - [sym__expression] = STATE(5052), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), - }, - [2183] = { - [sym__expression] = STATE(5242), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2184] = { - [sym__expression] = STATE(4924), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2185] = { - [sym__expression] = STATE(3754), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), - }, - [2186] = { - [sym__expression] = STATE(3766), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), - }, - [2187] = { - [sym__expression] = STATE(3767), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), - }, - [2188] = { - [sym__expression] = STATE(5267), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2189] = { - [sym__expression] = STATE(5359), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2190] = { - [sym__expression] = STATE(5384), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2191] = { - [sym__expression] = STATE(3772), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), - }, - [2192] = { - [sym__expression] = STATE(5170), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2193] = { - [sym__expression] = STATE(5316), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2194] = { - [sym__expression] = STATE(3774), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), - }, - [2195] = { - [sym__expression] = STATE(5183), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2196] = { - [sym__expression] = STATE(3714), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), - }, - [2197] = { - [sym__expression] = STATE(3905), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), - }, - [2198] = { - [sym__expression] = STATE(5257), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2199] = { - [sym__expression] = STATE(4884), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(4820), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2200] = { - [sym__expression] = STATE(4992), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2201] = { - [sym__expression] = STATE(3380), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2202] = { - [sym__expression] = STATE(5196), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2203] = { - [sym__expression] = STATE(3495), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(4822), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2204] = { - [sym__expression] = STATE(3860), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), - }, - [2205] = { - [sym__expression] = STATE(4967), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2206] = { - [sym__expression] = STATE(3778), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), - }, - [2207] = { - [sym__expression] = STATE(5253), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2208] = { - [sym__expression] = STATE(5368), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2209] = { - [sym__expression] = STATE(3726), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2210] = { - [sym__expression] = STATE(3911), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(4824), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), - }, - [2211] = { - [sym__expression] = STATE(4999), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2212] = { - [sym__expression] = STATE(4091), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2213] = { - [sym__expression] = STATE(3779), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), - }, - [2214] = { - [sym__expression] = STATE(3465), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2215] = { - [sym__expression] = STATE(3399), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2216] = { - [sym__expression] = STATE(3748), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), - }, - [2217] = { - [sym__expression] = STATE(3468), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2218] = { - [sym__expression] = STATE(4103), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2219] = { - [sym__expression] = STATE(3469), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2220] = { - [sym__expression] = STATE(3470), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2221] = { - [sym__expression] = STATE(3471), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2222] = { - [sym__expression] = STATE(5194), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2223] = { - [sym__expression] = STATE(4123), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2224] = { - [sym__expression] = STATE(4216), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2225] = { - [sym__expression] = STATE(4214), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2226] = { - [sym__expression] = STATE(3787), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), - }, - [2227] = { - [sym__expression] = STATE(5252), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2228] = { - [sym__expression] = STATE(4953), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2229] = { - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2230] = { - [sym__expression] = STATE(4173), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(4828), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2231] = { - [sym__expression] = STATE(3472), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2232] = { - [sym__expression] = STATE(5307), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2233] = { - [sym__expression] = STATE(5227), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2234] = { - [sym__expression] = STATE(5092), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2235] = { - [sym__expression] = STATE(3473), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2236] = { - [sym__expression] = STATE(4129), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2237] = { - [sym__expression] = STATE(3936), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), - }, - [2238] = { - [sym__expression] = STATE(4151), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2239] = { - [sym__expression] = STATE(4153), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2240] = { - [sym__expression] = STATE(5095), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2241] = { - [sym__expression] = STATE(4165), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2242] = { - [sym__expression] = STATE(5387), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4374), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4374), - [sym_call_expression] = STATE(4374), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4374), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4374), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4374), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4374), - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3896), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2243] = { - [sym__expression] = STATE(4987), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2244] = { - [sym__expression] = STATE(4210), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2245] = { - [sym__expression] = STATE(3948), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(4830), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), - }, - [2246] = { - [sym__expression] = STATE(4199), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2247] = { - [sym__expression] = STATE(4201), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2248] = { - [sym__expression] = STATE(3474), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2249] = { - [sym__expression] = STATE(3475), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2250] = { - [sym__expression] = STATE(4202), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2251] = { - [sym__expression] = STATE(4239), - [sym__expression_not_binary] = STATE(4454), - [sym_conditional_expression] = STATE(4454), - [sym_assignment_expression] = STATE(4454), - [sym_pointer_expression] = STATE(4031), - [sym_unary_expression] = STATE(4454), - [sym_binary_expression] = STATE(4454), - [sym_update_expression] = STATE(4454), - [sym_cast_expression] = STATE(4454), - [sym_sizeof_expression] = STATE(4454), - [sym_alignof_expression] = STATE(4454), - [sym_offsetof_expression] = STATE(4454), - [sym_generic_expression] = STATE(4454), - [sym_subscript_expression] = STATE(4031), - [sym_call_expression] = STATE(4031), - [sym_gnu_asm_expression] = STATE(4454), - [sym_field_expression] = STATE(4031), - [sym_compound_literal_expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(4031), - [sym_char_literal] = STATE(4362), - [sym_concatenated_string] = STATE(4362), - [sym_string_literal] = STATE(3078), - [sym_null] = STATE(4454), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8484), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4454), - [sym_raw_string_literal] = STATE(3078), - [sym_co_await_expression] = STATE(4454), - [sym_new_expression] = STATE(4454), - [sym_delete_expression] = STATE(4454), - [sym_requires_clause] = STATE(4454), - [sym_requires_expression] = STATE(4454), - [sym_lambda_expression] = STATE(4454), - [sym_lambda_capture_specifier] = STATE(6647), - [sym_fold_expression] = STATE(4454), - [sym_parameter_pack_expansion] = STATE(4454), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4031), - [sym_qualified_type_identifier] = STATE(8484), - [sym_user_defined_literal] = STATE(4031), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_compl] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [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(1944), - [anon_sym__Generic] = ACTIONS(1946), - [anon_sym_asm] = ACTIONS(1948), - [anon_sym___asm__] = ACTIONS(1948), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1958), - [anon_sym_nullptr] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1962), - [anon_sym_R_DQUOTE] = ACTIONS(1964), - [anon_sym_LR_DQUOTE] = ACTIONS(1964), - [anon_sym_uR_DQUOTE] = ACTIONS(1964), - [anon_sym_UR_DQUOTE] = ACTIONS(1964), - [anon_sym_u8R_DQUOTE] = ACTIONS(1964), - [anon_sym_co_await] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_requires] = ACTIONS(1970), - [sym_this] = ACTIONS(1956), - }, - [2252] = { - [sym__expression] = STATE(4204), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2253] = { - [sym__expression] = STATE(4207), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2254] = { - [sym__expression] = STATE(4956), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4033), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4033), - [sym_call_expression] = STATE(4033), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4033), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4033), - [sym_char_literal] = STATE(5106), - [sym_concatenated_string] = STATE(5106), - [sym_string_literal] = STATE(4234), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(4234), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4033), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4033), - [sym_identifier] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3832), - [anon_sym_TILDE] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3830), - [anon_sym_PLUS] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3830), - [anon_sym_compl] = ACTIONS(3830), - [anon_sym_DASH_DASH] = ACTIONS(3838), - [anon_sym_PLUS_PLUS] = ACTIONS(3838), - [anon_sym_sizeof] = ACTIONS(3840), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3842), - [anon_sym_L_SQUOTE] = ACTIONS(3844), - [anon_sym_u_SQUOTE] = ACTIONS(3844), - [anon_sym_U_SQUOTE] = ACTIONS(3844), - [anon_sym_u8_SQUOTE] = ACTIONS(3844), - [anon_sym_SQUOTE] = ACTIONS(3844), - [anon_sym_L_DQUOTE] = ACTIONS(3846), - [anon_sym_u_DQUOTE] = ACTIONS(3846), - [anon_sym_U_DQUOTE] = ACTIONS(3846), - [anon_sym_u8_DQUOTE] = ACTIONS(3846), - [anon_sym_DQUOTE] = ACTIONS(3846), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2255] = { - [sym__expression] = STATE(4186), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2202), - [anon_sym_compl] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_sizeof] = ACTIONS(2212), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2214), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2256] = { - [sym__expression] = STATE(3999), - [sym__expression_not_binary] = STATE(4309), - [sym_conditional_expression] = STATE(4309), - [sym_assignment_expression] = STATE(4309), - [sym_pointer_expression] = STATE(4309), - [sym_unary_expression] = STATE(4309), - [sym_binary_expression] = STATE(4309), - [sym_update_expression] = STATE(4309), - [sym_cast_expression] = STATE(4309), - [sym_sizeof_expression] = STATE(4309), - [sym_alignof_expression] = STATE(4309), - [sym_offsetof_expression] = STATE(4309), - [sym_generic_expression] = STATE(4309), - [sym_subscript_expression] = STATE(4309), - [sym_call_expression] = STATE(4309), - [sym_gnu_asm_expression] = STATE(4309), - [sym_field_expression] = STATE(4309), - [sym_compound_literal_expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(4309), - [sym_char_literal] = STATE(4073), - [sym_concatenated_string] = STATE(4073), - [sym_string_literal] = STATE(2917), - [sym_null] = STATE(4309), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8631), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4309), - [sym_raw_string_literal] = STATE(2917), - [sym_co_await_expression] = STATE(4309), - [sym_new_expression] = STATE(4309), - [sym_delete_expression] = STATE(4309), - [sym_requires_clause] = STATE(4309), - [sym_requires_expression] = STATE(4309), - [sym_lambda_expression] = STATE(4309), - [sym_lambda_capture_specifier] = STATE(6642), - [sym_fold_expression] = STATE(4309), - [sym_parameter_pack_expansion] = STATE(4309), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4309), - [sym_qualified_type_identifier] = STATE(8631), - [sym_user_defined_literal] = STATE(4309), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2162), - [anon_sym___alignof__] = ACTIONS(2164), - [anon_sym___alignof] = ACTIONS(2164), - [anon_sym__alignof] = ACTIONS(2164), - [anon_sym_alignof] = ACTIONS(2164), - [anon_sym__Alignof] = ACTIONS(2164), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2168), - [anon_sym_asm] = ACTIONS(2170), - [anon_sym___asm__] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2174), - [anon_sym_u_SQUOTE] = ACTIONS(2174), - [anon_sym_U_SQUOTE] = ACTIONS(2174), - [anon_sym_u8_SQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_nullptr] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_R_DQUOTE] = ACTIONS(2184), - [anon_sym_LR_DQUOTE] = ACTIONS(2184), - [anon_sym_uR_DQUOTE] = ACTIONS(2184), - [anon_sym_UR_DQUOTE] = ACTIONS(2184), - [anon_sym_u8R_DQUOTE] = ACTIONS(2184), - [anon_sym_co_await] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_requires] = ACTIONS(2190), - [sym_this] = ACTIONS(2178), - }, - [2257] = { - [sym__expression] = STATE(5303), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2258] = { - [sym__expression] = STATE(5073), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2259] = { - [sym__expression] = STATE(3833), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2260] = { - [sym__expression] = STATE(5305), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2261] = { - [sym__expression] = STATE(5302), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2262] = { - [sym__expression] = STATE(5296), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2263] = { - [sym__expression] = STATE(5272), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2264] = { - [sym__expression] = STATE(5096), - [sym__expression_not_binary] = STATE(5420), - [sym_conditional_expression] = STATE(5420), - [sym_assignment_expression] = STATE(5420), - [sym_pointer_expression] = STATE(4285), - [sym_unary_expression] = STATE(5420), - [sym_binary_expression] = STATE(5420), - [sym_update_expression] = STATE(5420), - [sym_cast_expression] = STATE(5420), - [sym_sizeof_expression] = STATE(5420), - [sym_alignof_expression] = STATE(5420), - [sym_offsetof_expression] = STATE(5420), - [sym_generic_expression] = STATE(5420), - [sym_subscript_expression] = STATE(4285), - [sym_call_expression] = STATE(4285), - [sym_gnu_asm_expression] = STATE(5420), - [sym_field_expression] = STATE(4285), - [sym_compound_literal_expression] = STATE(5420), - [sym_parenthesized_expression] = STATE(4285), - [sym_char_literal] = STATE(5396), - [sym_concatenated_string] = STATE(5396), - [sym_string_literal] = STATE(4366), - [sym_null] = STATE(5420), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8694), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(5420), - [sym_raw_string_literal] = STATE(4366), - [sym_co_await_expression] = STATE(5420), - [sym_new_expression] = STATE(5420), - [sym_delete_expression] = STATE(5420), - [sym_requires_clause] = STATE(5420), - [sym_requires_expression] = STATE(5420), - [sym_lambda_expression] = STATE(5420), - [sym_lambda_capture_specifier] = STATE(6641), - [sym_fold_expression] = STATE(5420), - [sym_parameter_pack_expansion] = STATE(5420), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6442), - [sym_qualified_identifier] = STATE(4285), - [sym_qualified_type_identifier] = STATE(8694), - [sym_user_defined_literal] = STATE(4285), - [sym_identifier] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(3878), - [anon_sym_not] = ACTIONS(3133), - [anon_sym_compl] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3157), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym___asm__] = ACTIONS(3161), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_L_SQUOTE] = ACTIONS(3165), - [anon_sym_u_SQUOTE] = ACTIONS(3165), - [anon_sym_U_SQUOTE] = ACTIONS(3165), - [anon_sym_u8_SQUOTE] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3165), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3181), - [anon_sym_R_DQUOTE] = ACTIONS(3183), - [anon_sym_LR_DQUOTE] = ACTIONS(3183), - [anon_sym_uR_DQUOTE] = ACTIONS(3183), - [anon_sym_UR_DQUOTE] = ACTIONS(3183), - [anon_sym_u8R_DQUOTE] = ACTIONS(3183), - [anon_sym_co_await] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3169), - }, - [2265] = { - [sym__expression] = STATE(3839), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(4832), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2266] = { - [sym__expression] = STATE(5294), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2267] = { - [sym__expression] = STATE(5097), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2268] = { - [sym__expression] = STATE(3757), - [sym__expression_not_binary] = STATE(4133), - [sym_conditional_expression] = STATE(4133), - [sym_assignment_expression] = STATE(4133), - [sym_pointer_expression] = STATE(4133), - [sym_unary_expression] = STATE(4133), - [sym_binary_expression] = STATE(4133), - [sym_update_expression] = STATE(4133), - [sym_cast_expression] = STATE(4133), - [sym_sizeof_expression] = STATE(4133), - [sym_alignof_expression] = STATE(4133), - [sym_offsetof_expression] = STATE(4133), - [sym_generic_expression] = STATE(4133), - [sym_subscript_expression] = STATE(4133), - [sym_call_expression] = STATE(4133), - [sym_gnu_asm_expression] = STATE(4133), - [sym_field_expression] = STATE(4133), - [sym_compound_literal_expression] = STATE(4133), - [sym_parenthesized_expression] = STATE(4133), - [sym_char_literal] = STATE(3925), - [sym_concatenated_string] = STATE(3925), - [sym_string_literal] = STATE(2803), - [sym_null] = STATE(4133), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8447), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4133), - [sym_raw_string_literal] = STATE(2803), - [sym_co_await_expression] = STATE(4133), - [sym_new_expression] = STATE(4133), - [sym_delete_expression] = STATE(4133), - [sym_requires_clause] = STATE(4133), - [sym_requires_expression] = STATE(4133), - [sym_lambda_expression] = STATE(4133), - [sym_lambda_capture_specifier] = STATE(6619), - [sym_fold_expression] = STATE(4133), - [sym_parameter_pack_expansion] = STATE(4133), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6419), - [sym_qualified_identifier] = STATE(4133), - [sym_qualified_type_identifier] = STATE(8447), - [sym_user_defined_literal] = STATE(4133), - [sym_identifier] = ACTIONS(2096), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [anon_sym___alignof__] = ACTIONS(2116), - [anon_sym___alignof] = ACTIONS(2116), - [anon_sym__alignof] = ACTIONS(2116), - [anon_sym_alignof] = ACTIONS(2116), - [anon_sym__Alignof] = ACTIONS(2116), - [anon_sym_offsetof] = ACTIONS(2118), - [anon_sym__Generic] = ACTIONS(2120), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2126), - [anon_sym_u_SQUOTE] = ACTIONS(2126), - [anon_sym_U_SQUOTE] = ACTIONS(2126), - [anon_sym_u8_SQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [anon_sym_NULL] = ACTIONS(2132), - [anon_sym_nullptr] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2134), - [anon_sym_R_DQUOTE] = ACTIONS(2136), - [anon_sym_LR_DQUOTE] = ACTIONS(2136), - [anon_sym_uR_DQUOTE] = ACTIONS(2136), - [anon_sym_UR_DQUOTE] = ACTIONS(2136), - [anon_sym_u8R_DQUOTE] = ACTIONS(2136), - [anon_sym_co_await] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_requires] = ACTIONS(2142), - [sym_this] = ACTIONS(2130), - }, - [2269] = { - [sym__expression] = STATE(3373), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2270] = { - [sym__expression] = STATE(5308), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2271] = { - [sym__expression] = STATE(4974), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(3951), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(3951), - [sym_call_expression] = STATE(3951), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(3951), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(3951), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3951), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(3951), - [sym_identifier] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2272] = { - [sym__expression] = STATE(3329), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(4834), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2273] = { - [sym__expression] = STATE(3380), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2274] = { - [sym__expression] = STATE(3841), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3899), - [sym_concatenated_string] = STATE(3899), - [sym_string_literal] = STATE(2799), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2799), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN2] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(4836), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_compl] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2082), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2086), - [anon_sym_u_SQUOTE] = ACTIONS(2086), - [anon_sym_U_SQUOTE] = ACTIONS(2086), - [anon_sym_u8_SQUOTE] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_R_DQUOTE] = ACTIONS(2092), - [anon_sym_LR_DQUOTE] = ACTIONS(2092), - [anon_sym_uR_DQUOTE] = ACTIONS(2092), - [anon_sym_UR_DQUOTE] = ACTIONS(2092), - [anon_sym_u8R_DQUOTE] = ACTIONS(2092), - [anon_sym_co_await] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2275] = { - [sym__expression] = STATE(3329), - [sym__expression_not_binary] = STATE(3555), - [sym_conditional_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_pointer_expression] = STATE(3555), - [sym_unary_expression] = STATE(3555), - [sym_binary_expression] = STATE(3555), - [sym_update_expression] = STATE(3555), - [sym_cast_expression] = STATE(3555), - [sym_sizeof_expression] = STATE(3555), - [sym_alignof_expression] = STATE(3555), - [sym_offsetof_expression] = STATE(3555), - [sym_generic_expression] = STATE(3555), - [sym_subscript_expression] = STATE(3555), - [sym_call_expression] = STATE(3555), - [sym_gnu_asm_expression] = STATE(3555), - [sym_field_expression] = STATE(3555), - [sym_compound_literal_expression] = STATE(3555), - [sym_parenthesized_expression] = STATE(3555), - [sym_char_literal] = STATE(3570), - [sym_concatenated_string] = STATE(3570), - [sym_string_literal] = STATE(2458), - [sym_null] = STATE(3555), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8745), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(3555), - [sym_raw_string_literal] = STATE(2458), - [sym_co_await_expression] = STATE(3555), - [sym_new_expression] = STATE(3555), - [sym_delete_expression] = STATE(3555), - [sym_requires_clause] = STATE(3555), - [sym_requires_expression] = STATE(3555), - [sym_lambda_expression] = STATE(3555), - [sym_lambda_capture_specifier] = STATE(6635), - [sym_fold_expression] = STATE(3555), - [sym_parameter_pack_expansion] = STATE(3555), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(3555), - [sym_qualified_type_identifier] = STATE(8745), - [sym_user_defined_literal] = STATE(3555), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2032), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_compl] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_sizeof] = ACTIONS(2036), - [anon_sym___alignof__] = ACTIONS(2038), - [anon_sym___alignof] = ACTIONS(2038), - [anon_sym__alignof] = ACTIONS(2038), - [anon_sym_alignof] = ACTIONS(2038), - [anon_sym__Alignof] = ACTIONS(2038), - [anon_sym_offsetof] = ACTIONS(2040), - [anon_sym__Generic] = ACTIONS(2042), - [anon_sym_asm] = ACTIONS(2044), - [anon_sym___asm__] = ACTIONS(2044), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2050), - [anon_sym_u_DQUOTE] = ACTIONS(2050), - [anon_sym_U_DQUOTE] = ACTIONS(2050), - [anon_sym_u8_DQUOTE] = ACTIONS(2050), - [anon_sym_DQUOTE] = ACTIONS(2050), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [anon_sym_NULL] = ACTIONS(2054), - [anon_sym_nullptr] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_R_DQUOTE] = ACTIONS(2060), - [anon_sym_LR_DQUOTE] = ACTIONS(2060), - [anon_sym_uR_DQUOTE] = ACTIONS(2060), - [anon_sym_UR_DQUOTE] = ACTIONS(2060), - [anon_sym_u8R_DQUOTE] = ACTIONS(2060), - [anon_sym_co_await] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_requires] = ACTIONS(2066), - [sym_this] = ACTIONS(2052), - }, - [2276] = { - [sym__expression] = STATE(5306), - [sym__expression_not_binary] = STATE(4797), - [sym_conditional_expression] = STATE(4797), - [sym_assignment_expression] = STATE(4797), - [sym_pointer_expression] = STATE(4297), - [sym_unary_expression] = STATE(4797), - [sym_binary_expression] = STATE(4797), - [sym_update_expression] = STATE(4797), - [sym_cast_expression] = STATE(4797), - [sym_sizeof_expression] = STATE(4797), - [sym_alignof_expression] = STATE(4797), - [sym_offsetof_expression] = STATE(4797), - [sym_generic_expression] = STATE(4797), - [sym_subscript_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_gnu_asm_expression] = STATE(4797), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4797), - [sym_parenthesized_expression] = STATE(4297), - [sym_char_literal] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(3780), - [sym_null] = STATE(4797), - [sym_decltype] = STATE(9648), - [sym__class_name] = STATE(8466), - [sym_template_type] = STATE(3369), - [sym_template_function] = STATE(4797), - [sym_raw_string_literal] = STATE(3780), - [sym_co_await_expression] = STATE(4797), - [sym_new_expression] = STATE(4797), - [sym_delete_expression] = STATE(4797), - [sym_requires_clause] = STATE(4797), - [sym_requires_expression] = STATE(4797), - [sym_lambda_expression] = STATE(4797), - [sym_lambda_capture_specifier] = STATE(6621), - [sym_fold_expression] = STATE(4797), - [sym_parameter_pack_expansion] = STATE(4797), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6244), - [sym_qualified_identifier] = STATE(4297), - [sym_qualified_type_identifier] = STATE(8466), - [sym_user_defined_literal] = STATE(4297), - [sym_identifier] = ACTIONS(3854), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(3858), - [anon_sym_compl] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_sizeof] = ACTIONS(3866), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(213), - }, - [2277] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5821), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7366), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6917), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_parameter_list] = STATE(1481), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4920), - [sym_template_function] = STATE(6917), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6412), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4838), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(4840), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4842), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(2012), - }, - [2278] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5806), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7358), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6917), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_parameter_list] = STATE(1482), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4920), - [sym_template_function] = STATE(6917), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6412), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4838), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(4840), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4842), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(2012), - }, - [2279] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5840), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7343), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6917), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_parameter_list] = STATE(1483), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4920), - [sym_template_function] = STATE(6917), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6412), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4838), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(4840), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4842), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(2012), - }, - [2280] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5829), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7337), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6917), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_parameter_list] = STATE(1486), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4920), - [sym_template_function] = STATE(6917), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6412), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4838), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(4840), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4842), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(2012), - }, - [2281] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5816), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7312), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6917), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_parameter_list] = STATE(1485), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(4920), - [sym_template_function] = STATE(6917), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6412), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_type_identifier] = STATE(4533), - [sym_operator_name] = STATE(6917), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4838), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(4840), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4842), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(2012), - }, - [2282] = { - [sym_identifier] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3348), - [anon_sym___extension__] = ACTIONS(3346), - [anon_sym_extern] = ACTIONS(3346), - [anon_sym___attribute__] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3348), - [anon_sym___declspec] = ACTIONS(3346), - [anon_sym_signed] = ACTIONS(3346), - [anon_sym_unsigned] = ACTIONS(3346), - [anon_sym_long] = ACTIONS(3346), - [anon_sym_short] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_register] = ACTIONS(3346), - [anon_sym_inline] = ACTIONS(3346), - [anon_sym___inline] = ACTIONS(3346), - [anon_sym___inline__] = ACTIONS(3346), - [anon_sym___forceinline] = ACTIONS(3346), - [anon_sym_thread_local] = ACTIONS(3346), - [anon_sym___thread] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_constexpr] = ACTIONS(3346), - [anon_sym_volatile] = ACTIONS(3346), - [anon_sym_restrict] = ACTIONS(3346), - [anon_sym___restrict__] = ACTIONS(3346), - [anon_sym__Atomic] = ACTIONS(3346), - [anon_sym__Noreturn] = ACTIONS(3346), - [anon_sym_noreturn] = ACTIONS(3346), - [anon_sym_mutable] = ACTIONS(3346), - [anon_sym_constinit] = ACTIONS(3346), - [anon_sym_consteval] = ACTIONS(3346), - [sym_primitive_type] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_struct] = ACTIONS(3346), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3346), - [anon_sym_compl] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3346), - [anon_sym___alignof__] = ACTIONS(3346), - [anon_sym___alignof] = ACTIONS(3346), - [anon_sym__alignof] = ACTIONS(3346), - [anon_sym_alignof] = ACTIONS(3346), - [anon_sym__Alignof] = ACTIONS(3346), - [anon_sym_offsetof] = ACTIONS(3346), - [anon_sym__Generic] = ACTIONS(3346), - [anon_sym_asm] = ACTIONS(3346), - [anon_sym___asm__] = ACTIONS(3346), - [sym_number_literal] = ACTIONS(3348), - [anon_sym_L_SQUOTE] = ACTIONS(3348), - [anon_sym_u_SQUOTE] = ACTIONS(3348), - [anon_sym_U_SQUOTE] = ACTIONS(3348), - [anon_sym_u8_SQUOTE] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3348), - [anon_sym_L_DQUOTE] = ACTIONS(3348), - [anon_sym_u_DQUOTE] = ACTIONS(3348), - [anon_sym_U_DQUOTE] = ACTIONS(3348), - [anon_sym_u8_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE] = ACTIONS(3348), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [anon_sym_NULL] = ACTIONS(3346), - [anon_sym_nullptr] = ACTIONS(3346), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3346), - [anon_sym_decltype] = ACTIONS(3346), - [anon_sym_virtual] = ACTIONS(3346), - [anon_sym_alignas] = ACTIONS(3346), - [anon_sym_typename] = ACTIONS(3346), - [anon_sym_template] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_R_DQUOTE] = ACTIONS(3348), - [anon_sym_LR_DQUOTE] = ACTIONS(3348), - [anon_sym_uR_DQUOTE] = ACTIONS(3348), - [anon_sym_UR_DQUOTE] = ACTIONS(3348), - [anon_sym_u8R_DQUOTE] = ACTIONS(3348), - [anon_sym_co_await] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_requires] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - }, - [2283] = { - [sym_identifier] = ACTIONS(2795), - [anon_sym_LPAREN2] = ACTIONS(2800), - [anon_sym_BANG] = ACTIONS(2800), - [anon_sym_TILDE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2800), - [anon_sym___extension__] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym___attribute__] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2800), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2800), - [anon_sym___declspec] = 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_mutable] = ACTIONS(2795), - [anon_sym_constinit] = ACTIONS(2795), - [anon_sym_consteval] = 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_not] = ACTIONS(2795), - [anon_sym_compl] = ACTIONS(2795), - [anon_sym_DASH_DASH] = ACTIONS(2800), - [anon_sym_PLUS_PLUS] = ACTIONS(2800), - [anon_sym_sizeof] = ACTIONS(2795), - [anon_sym___alignof__] = ACTIONS(2795), - [anon_sym___alignof] = ACTIONS(2795), - [anon_sym__alignof] = ACTIONS(2795), - [anon_sym_alignof] = ACTIONS(2795), - [anon_sym__Alignof] = ACTIONS(2795), - [anon_sym_offsetof] = ACTIONS(2795), - [anon_sym__Generic] = ACTIONS(2795), - [anon_sym_asm] = ACTIONS(2795), - [anon_sym___asm__] = ACTIONS(2795), - [sym_number_literal] = ACTIONS(2800), - [anon_sym_L_SQUOTE] = ACTIONS(2800), - [anon_sym_u_SQUOTE] = ACTIONS(2800), - [anon_sym_U_SQUOTE] = ACTIONS(2800), - [anon_sym_u8_SQUOTE] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2800), - [anon_sym_L_DQUOTE] = ACTIONS(2800), - [anon_sym_u_DQUOTE] = ACTIONS(2800), - [anon_sym_U_DQUOTE] = ACTIONS(2800), - [anon_sym_u8_DQUOTE] = ACTIONS(2800), - [anon_sym_DQUOTE] = ACTIONS(2800), - [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_virtual] = ACTIONS(2795), - [anon_sym_alignas] = ACTIONS(2795), - [anon_sym_typename] = ACTIONS(2795), - [anon_sym_template] = ACTIONS(2795), - [anon_sym_delete] = ACTIONS(2795), - [anon_sym_R_DQUOTE] = ACTIONS(2800), - [anon_sym_LR_DQUOTE] = ACTIONS(2800), - [anon_sym_uR_DQUOTE] = ACTIONS(2800), - [anon_sym_UR_DQUOTE] = ACTIONS(2800), - [anon_sym_u8R_DQUOTE] = ACTIONS(2800), - [anon_sym_co_await] = ACTIONS(2795), - [anon_sym_new] = ACTIONS(2795), - [anon_sym_requires] = ACTIONS(2795), - [sym_this] = ACTIONS(2795), - }, - [2284] = { - [sym_identifier] = ACTIONS(3224), - [anon_sym_LPAREN2] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3226), - [anon_sym_AMP] = ACTIONS(3226), - [anon_sym___extension__] = ACTIONS(3224), - [anon_sym_extern] = ACTIONS(3224), - [anon_sym___attribute__] = ACTIONS(3224), - [anon_sym_COLON_COLON] = ACTIONS(3226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3226), - [anon_sym___declspec] = ACTIONS(3224), - [anon_sym_signed] = ACTIONS(3224), - [anon_sym_unsigned] = ACTIONS(3224), - [anon_sym_long] = ACTIONS(3224), - [anon_sym_short] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_register] = ACTIONS(3224), - [anon_sym_inline] = ACTIONS(3224), - [anon_sym___inline] = ACTIONS(3224), - [anon_sym___inline__] = ACTIONS(3224), - [anon_sym___forceinline] = ACTIONS(3224), - [anon_sym_thread_local] = ACTIONS(3224), - [anon_sym___thread] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_constexpr] = ACTIONS(3224), - [anon_sym_volatile] = ACTIONS(3224), - [anon_sym_restrict] = ACTIONS(3224), - [anon_sym___restrict__] = ACTIONS(3224), - [anon_sym__Atomic] = ACTIONS(3224), - [anon_sym__Noreturn] = ACTIONS(3224), - [anon_sym_noreturn] = ACTIONS(3224), - [anon_sym_mutable] = ACTIONS(3224), - [anon_sym_constinit] = ACTIONS(3224), - [anon_sym_consteval] = ACTIONS(3224), - [sym_primitive_type] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_struct] = ACTIONS(3224), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_not] = ACTIONS(3224), - [anon_sym_compl] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_sizeof] = ACTIONS(3224), - [anon_sym___alignof__] = ACTIONS(3224), - [anon_sym___alignof] = ACTIONS(3224), - [anon_sym__alignof] = ACTIONS(3224), - [anon_sym_alignof] = ACTIONS(3224), - [anon_sym__Alignof] = ACTIONS(3224), - [anon_sym_offsetof] = ACTIONS(3224), - [anon_sym__Generic] = ACTIONS(3224), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3226), - [anon_sym_u_SQUOTE] = ACTIONS(3226), - [anon_sym_U_SQUOTE] = ACTIONS(3226), - [anon_sym_u8_SQUOTE] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [anon_sym_L_DQUOTE] = ACTIONS(3226), - [anon_sym_u_DQUOTE] = ACTIONS(3226), - [anon_sym_U_DQUOTE] = ACTIONS(3226), - [anon_sym_u8_DQUOTE] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [anon_sym_NULL] = ACTIONS(3224), - [anon_sym_nullptr] = ACTIONS(3224), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3224), - [anon_sym_decltype] = ACTIONS(3224), - [anon_sym_virtual] = ACTIONS(3224), - [anon_sym_alignas] = ACTIONS(3224), - [anon_sym_typename] = ACTIONS(3224), - [anon_sym_template] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_R_DQUOTE] = ACTIONS(3226), - [anon_sym_LR_DQUOTE] = ACTIONS(3226), - [anon_sym_uR_DQUOTE] = ACTIONS(3226), - [anon_sym_UR_DQUOTE] = ACTIONS(3226), - [anon_sym_u8R_DQUOTE] = ACTIONS(3226), - [anon_sym_co_await] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_requires] = ACTIONS(3224), - [sym_this] = ACTIONS(3224), - }, - [2285] = { - [sym_identifier] = ACTIONS(4844), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4846), - [anon_sym_COMMA] = ACTIONS(4846), - [anon_sym_RPAREN] = ACTIONS(4846), - [anon_sym_LPAREN2] = ACTIONS(4846), - [anon_sym_TILDE] = ACTIONS(4846), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4844), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE] = ACTIONS(4844), - [anon_sym_CARET] = ACTIONS(4844), - [anon_sym_AMP] = ACTIONS(4844), - [anon_sym_EQ_EQ] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4846), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4844), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_LT_LT] = ACTIONS(4844), - [anon_sym_GT_GT] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym___extension__] = ACTIONS(4844), - [anon_sym_extern] = ACTIONS(4844), - [anon_sym___attribute__] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4846), - [anon_sym___declspec] = ACTIONS(4844), - [anon_sym___based] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4844), - [anon_sym_EQ] = ACTIONS(4844), - [anon_sym_static] = ACTIONS(4844), - [anon_sym_register] = ACTIONS(4844), - [anon_sym_inline] = ACTIONS(4844), - [anon_sym___inline] = ACTIONS(4844), - [anon_sym___inline__] = ACTIONS(4844), - [anon_sym___forceinline] = ACTIONS(4844), - [anon_sym_thread_local] = ACTIONS(4844), - [anon_sym___thread] = ACTIONS(4844), - [anon_sym_const] = ACTIONS(4844), - [anon_sym_constexpr] = ACTIONS(4844), - [anon_sym_volatile] = ACTIONS(4844), - [anon_sym_restrict] = ACTIONS(4844), - [anon_sym___restrict__] = ACTIONS(4844), - [anon_sym__Atomic] = ACTIONS(4844), - [anon_sym__Noreturn] = ACTIONS(4844), - [anon_sym_noreturn] = ACTIONS(4844), - [anon_sym_mutable] = ACTIONS(4844), - [anon_sym_constinit] = ACTIONS(4844), - [anon_sym_consteval] = ACTIONS(4844), - [anon_sym_QMARK] = ACTIONS(4846), - [anon_sym_STAR_EQ] = ACTIONS(4846), - [anon_sym_SLASH_EQ] = ACTIONS(4846), - [anon_sym_PERCENT_EQ] = ACTIONS(4846), - [anon_sym_PLUS_EQ] = ACTIONS(4846), - [anon_sym_DASH_EQ] = ACTIONS(4846), - [anon_sym_LT_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_GT_EQ] = ACTIONS(4846), - [anon_sym_AMP_EQ] = ACTIONS(4846), - [anon_sym_CARET_EQ] = ACTIONS(4846), - [anon_sym_PIPE_EQ] = ACTIONS(4846), - [anon_sym_and_eq] = ACTIONS(4844), - [anon_sym_or_eq] = ACTIONS(4844), - [anon_sym_xor_eq] = ACTIONS(4844), - [anon_sym_LT_EQ_GT] = ACTIONS(4846), - [anon_sym_or] = ACTIONS(4844), - [anon_sym_and] = ACTIONS(4844), - [anon_sym_bitor] = ACTIONS(4844), - [anon_sym_xor] = ACTIONS(4844), - [anon_sym_bitand] = ACTIONS(4844), - [anon_sym_not_eq] = ACTIONS(4844), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_DOT_STAR] = ACTIONS(4846), - [anon_sym_DASH_GT] = ACTIONS(4846), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4844), - [anon_sym_decltype] = ACTIONS(4844), - [anon_sym_virtual] = ACTIONS(4844), - [anon_sym_alignas] = ACTIONS(4844), - [anon_sym_template] = ACTIONS(4844), - [anon_sym_operator] = ACTIONS(4844), - }, - [2286] = { - [sym_identifier] = ACTIONS(4848), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4850), - [anon_sym_COMMA] = ACTIONS(4850), - [anon_sym_RPAREN] = ACTIONS(4850), - [anon_sym_LPAREN2] = ACTIONS(4850), - [anon_sym_TILDE] = ACTIONS(4850), - [anon_sym_DASH] = ACTIONS(4848), - [anon_sym_PLUS] = ACTIONS(4848), - [anon_sym_STAR] = ACTIONS(4848), - [anon_sym_SLASH] = ACTIONS(4848), - [anon_sym_PERCENT] = ACTIONS(4848), - [anon_sym_PIPE_PIPE] = ACTIONS(4850), - [anon_sym_AMP_AMP] = ACTIONS(4850), - [anon_sym_PIPE] = ACTIONS(4848), - [anon_sym_CARET] = ACTIONS(4848), - [anon_sym_AMP] = ACTIONS(4848), - [anon_sym_EQ_EQ] = ACTIONS(4850), - [anon_sym_BANG_EQ] = ACTIONS(4850), - [anon_sym_GT] = ACTIONS(4848), - [anon_sym_GT_EQ] = ACTIONS(4850), - [anon_sym_LT_EQ] = ACTIONS(4848), - [anon_sym_LT] = ACTIONS(4848), - [anon_sym_LT_LT] = ACTIONS(4848), - [anon_sym_GT_GT] = ACTIONS(4848), - [anon_sym_SEMI] = ACTIONS(4850), - [anon_sym___extension__] = ACTIONS(4848), - [anon_sym_extern] = ACTIONS(4848), - [anon_sym___attribute__] = ACTIONS(4848), - [anon_sym_COLON_COLON] = ACTIONS(4850), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4850), - [anon_sym___declspec] = ACTIONS(4848), - [anon_sym___based] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4850), - [anon_sym_RBRACE] = ACTIONS(4850), - [anon_sym_LBRACK] = ACTIONS(4848), - [anon_sym_EQ] = ACTIONS(4848), - [anon_sym_static] = ACTIONS(4848), - [anon_sym_register] = ACTIONS(4848), - [anon_sym_inline] = ACTIONS(4848), - [anon_sym___inline] = ACTIONS(4848), - [anon_sym___inline__] = ACTIONS(4848), - [anon_sym___forceinline] = ACTIONS(4848), - [anon_sym_thread_local] = ACTIONS(4848), - [anon_sym___thread] = ACTIONS(4848), - [anon_sym_const] = ACTIONS(4848), - [anon_sym_constexpr] = ACTIONS(4848), - [anon_sym_volatile] = ACTIONS(4848), - [anon_sym_restrict] = ACTIONS(4848), - [anon_sym___restrict__] = ACTIONS(4848), - [anon_sym__Atomic] = ACTIONS(4848), - [anon_sym__Noreturn] = ACTIONS(4848), - [anon_sym_noreturn] = ACTIONS(4848), - [anon_sym_mutable] = ACTIONS(4848), - [anon_sym_constinit] = ACTIONS(4848), - [anon_sym_consteval] = ACTIONS(4848), - [anon_sym_QMARK] = ACTIONS(4850), - [anon_sym_STAR_EQ] = ACTIONS(4850), - [anon_sym_SLASH_EQ] = ACTIONS(4850), - [anon_sym_PERCENT_EQ] = ACTIONS(4850), - [anon_sym_PLUS_EQ] = ACTIONS(4850), - [anon_sym_DASH_EQ] = ACTIONS(4850), - [anon_sym_LT_LT_EQ] = ACTIONS(4850), - [anon_sym_GT_GT_EQ] = ACTIONS(4850), - [anon_sym_AMP_EQ] = ACTIONS(4850), - [anon_sym_CARET_EQ] = ACTIONS(4850), - [anon_sym_PIPE_EQ] = ACTIONS(4850), - [anon_sym_and_eq] = ACTIONS(4848), - [anon_sym_or_eq] = ACTIONS(4848), - [anon_sym_xor_eq] = ACTIONS(4848), - [anon_sym_LT_EQ_GT] = ACTIONS(4850), - [anon_sym_or] = ACTIONS(4848), - [anon_sym_and] = ACTIONS(4848), - [anon_sym_bitor] = ACTIONS(4848), - [anon_sym_xor] = ACTIONS(4848), - [anon_sym_bitand] = ACTIONS(4848), - [anon_sym_not_eq] = ACTIONS(4848), - [anon_sym_DASH_DASH] = ACTIONS(4850), - [anon_sym_PLUS_PLUS] = ACTIONS(4850), - [anon_sym_DOT] = ACTIONS(4848), - [anon_sym_DOT_STAR] = ACTIONS(4850), - [anon_sym_DASH_GT] = ACTIONS(4850), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4848), - [anon_sym_decltype] = ACTIONS(4848), - [anon_sym_virtual] = ACTIONS(4848), - [anon_sym_alignas] = ACTIONS(4848), - [anon_sym_template] = ACTIONS(4848), - [anon_sym_operator] = ACTIONS(4848), - }, - [2287] = { - [sym_identifier] = ACTIONS(4852), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_RPAREN] = ACTIONS(4854), - [anon_sym_LPAREN2] = ACTIONS(4854), - [anon_sym_TILDE] = ACTIONS(4854), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4852), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE] = ACTIONS(4852), - [anon_sym_CARET] = ACTIONS(4852), - [anon_sym_AMP] = ACTIONS(4852), - [anon_sym_EQ_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4854), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4852), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_LT_LT] = ACTIONS(4852), - [anon_sym_GT_GT] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym___extension__] = ACTIONS(4852), - [anon_sym_extern] = ACTIONS(4852), - [anon_sym___attribute__] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4854), - [anon_sym___declspec] = ACTIONS(4852), - [anon_sym___based] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4852), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_static] = ACTIONS(4852), - [anon_sym_register] = ACTIONS(4852), - [anon_sym_inline] = ACTIONS(4852), - [anon_sym___inline] = ACTIONS(4852), - [anon_sym___inline__] = ACTIONS(4852), - [anon_sym___forceinline] = ACTIONS(4852), - [anon_sym_thread_local] = ACTIONS(4852), - [anon_sym___thread] = ACTIONS(4852), - [anon_sym_const] = ACTIONS(4852), - [anon_sym_constexpr] = ACTIONS(4852), - [anon_sym_volatile] = ACTIONS(4852), - [anon_sym_restrict] = ACTIONS(4852), - [anon_sym___restrict__] = ACTIONS(4852), - [anon_sym__Atomic] = ACTIONS(4852), - [anon_sym__Noreturn] = ACTIONS(4852), - [anon_sym_noreturn] = ACTIONS(4852), - [anon_sym_mutable] = ACTIONS(4852), - [anon_sym_constinit] = ACTIONS(4852), - [anon_sym_consteval] = ACTIONS(4852), - [anon_sym_QMARK] = ACTIONS(4854), - [anon_sym_STAR_EQ] = ACTIONS(4854), - [anon_sym_SLASH_EQ] = ACTIONS(4854), - [anon_sym_PERCENT_EQ] = ACTIONS(4854), - [anon_sym_PLUS_EQ] = ACTIONS(4854), - [anon_sym_DASH_EQ] = ACTIONS(4854), - [anon_sym_LT_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_GT_EQ] = ACTIONS(4854), - [anon_sym_AMP_EQ] = ACTIONS(4854), - [anon_sym_CARET_EQ] = ACTIONS(4854), - [anon_sym_PIPE_EQ] = ACTIONS(4854), - [anon_sym_and_eq] = ACTIONS(4852), - [anon_sym_or_eq] = ACTIONS(4852), - [anon_sym_xor_eq] = ACTIONS(4852), - [anon_sym_LT_EQ_GT] = ACTIONS(4854), - [anon_sym_or] = ACTIONS(4852), - [anon_sym_and] = ACTIONS(4852), - [anon_sym_bitor] = ACTIONS(4852), - [anon_sym_xor] = ACTIONS(4852), - [anon_sym_bitand] = ACTIONS(4852), - [anon_sym_not_eq] = ACTIONS(4852), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_DOT_STAR] = ACTIONS(4854), - [anon_sym_DASH_GT] = ACTIONS(4854), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4852), - [anon_sym_decltype] = ACTIONS(4852), - [anon_sym_virtual] = ACTIONS(4852), - [anon_sym_alignas] = ACTIONS(4852), - [anon_sym_template] = ACTIONS(4852), - [anon_sym_operator] = ACTIONS(4852), - }, - [2288] = { - [sym_identifier] = ACTIONS(4856), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4858), - [anon_sym_COMMA] = ACTIONS(4858), - [anon_sym_RPAREN] = ACTIONS(4858), - [anon_sym_LPAREN2] = ACTIONS(4858), - [anon_sym_TILDE] = ACTIONS(4858), - [anon_sym_DASH] = ACTIONS(4856), - [anon_sym_PLUS] = ACTIONS(4856), - [anon_sym_STAR] = ACTIONS(4856), - [anon_sym_SLASH] = ACTIONS(4856), - [anon_sym_PERCENT] = ACTIONS(4856), - [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_AMP_AMP] = ACTIONS(4858), - [anon_sym_PIPE] = ACTIONS(4856), - [anon_sym_CARET] = ACTIONS(4856), - [anon_sym_AMP] = ACTIONS(4856), - [anon_sym_EQ_EQ] = ACTIONS(4858), - [anon_sym_BANG_EQ] = ACTIONS(4858), - [anon_sym_GT] = ACTIONS(4856), - [anon_sym_GT_EQ] = ACTIONS(4858), - [anon_sym_LT_EQ] = ACTIONS(4856), - [anon_sym_LT] = ACTIONS(4856), - [anon_sym_LT_LT] = ACTIONS(4856), - [anon_sym_GT_GT] = ACTIONS(4856), - [anon_sym_SEMI] = ACTIONS(4858), - [anon_sym___extension__] = ACTIONS(4856), - [anon_sym_extern] = ACTIONS(4856), - [anon_sym___attribute__] = ACTIONS(4856), - [anon_sym_COLON_COLON] = ACTIONS(4858), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4858), - [anon_sym___declspec] = ACTIONS(4856), - [anon_sym___based] = ACTIONS(4856), - [anon_sym_LBRACE] = ACTIONS(4858), - [anon_sym_RBRACE] = ACTIONS(4858), - [anon_sym_LBRACK] = ACTIONS(4856), - [anon_sym_EQ] = ACTIONS(4856), - [anon_sym_static] = ACTIONS(4856), - [anon_sym_register] = ACTIONS(4856), - [anon_sym_inline] = ACTIONS(4856), - [anon_sym___inline] = ACTIONS(4856), - [anon_sym___inline__] = ACTIONS(4856), - [anon_sym___forceinline] = ACTIONS(4856), - [anon_sym_thread_local] = ACTIONS(4856), - [anon_sym___thread] = ACTIONS(4856), - [anon_sym_const] = ACTIONS(4856), - [anon_sym_constexpr] = ACTIONS(4856), - [anon_sym_volatile] = ACTIONS(4856), - [anon_sym_restrict] = ACTIONS(4856), - [anon_sym___restrict__] = ACTIONS(4856), - [anon_sym__Atomic] = ACTIONS(4856), - [anon_sym__Noreturn] = ACTIONS(4856), - [anon_sym_noreturn] = ACTIONS(4856), - [anon_sym_mutable] = ACTIONS(4856), - [anon_sym_constinit] = ACTIONS(4856), - [anon_sym_consteval] = ACTIONS(4856), - [anon_sym_QMARK] = ACTIONS(4858), - [anon_sym_STAR_EQ] = ACTIONS(4858), - [anon_sym_SLASH_EQ] = ACTIONS(4858), - [anon_sym_PERCENT_EQ] = ACTIONS(4858), - [anon_sym_PLUS_EQ] = ACTIONS(4858), - [anon_sym_DASH_EQ] = ACTIONS(4858), - [anon_sym_LT_LT_EQ] = ACTIONS(4858), - [anon_sym_GT_GT_EQ] = ACTIONS(4858), - [anon_sym_AMP_EQ] = ACTIONS(4858), - [anon_sym_CARET_EQ] = ACTIONS(4858), - [anon_sym_PIPE_EQ] = ACTIONS(4858), - [anon_sym_and_eq] = ACTIONS(4856), - [anon_sym_or_eq] = ACTIONS(4856), - [anon_sym_xor_eq] = ACTIONS(4856), - [anon_sym_LT_EQ_GT] = ACTIONS(4858), - [anon_sym_or] = ACTIONS(4856), - [anon_sym_and] = ACTIONS(4856), - [anon_sym_bitor] = ACTIONS(4856), - [anon_sym_xor] = ACTIONS(4856), - [anon_sym_bitand] = ACTIONS(4856), - [anon_sym_not_eq] = ACTIONS(4856), - [anon_sym_DASH_DASH] = ACTIONS(4858), - [anon_sym_PLUS_PLUS] = ACTIONS(4858), - [anon_sym_DOT] = ACTIONS(4856), - [anon_sym_DOT_STAR] = ACTIONS(4858), - [anon_sym_DASH_GT] = ACTIONS(4858), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4856), - [anon_sym_decltype] = ACTIONS(4856), - [anon_sym_virtual] = ACTIONS(4856), - [anon_sym_alignas] = ACTIONS(4856), - [anon_sym_template] = ACTIONS(4856), - [anon_sym_operator] = ACTIONS(4856), - }, - [2289] = { - [sym_template_argument_list] = STATE(2300), - [sym_identifier] = ACTIONS(4860), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4862), - [anon_sym_COMMA] = ACTIONS(4862), - [anon_sym_RPAREN] = ACTIONS(4862), - [anon_sym_LPAREN2] = ACTIONS(4862), - [anon_sym_TILDE] = ACTIONS(4865), - [anon_sym_DASH] = ACTIONS(4867), - [anon_sym_PLUS] = ACTIONS(4867), - [anon_sym_STAR] = ACTIONS(4869), - [anon_sym_SLASH] = ACTIONS(4867), - [anon_sym_PERCENT] = ACTIONS(4867), - [anon_sym_PIPE_PIPE] = ACTIONS(4872), - [anon_sym_AMP_AMP] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_CARET] = ACTIONS(4867), - [anon_sym_AMP] = ACTIONS(4869), - [anon_sym_EQ_EQ] = ACTIONS(4872), - [anon_sym_BANG_EQ] = ACTIONS(4872), - [anon_sym_GT] = ACTIONS(4867), - [anon_sym_GT_EQ] = ACTIONS(4872), - [anon_sym_LT_EQ] = ACTIONS(4867), - [anon_sym_LT] = ACTIONS(4874), - [anon_sym_LT_LT] = ACTIONS(4867), - [anon_sym_GT_GT] = ACTIONS(4867), - [anon_sym___extension__] = ACTIONS(4860), - [anon_sym_extern] = ACTIONS(4860), - [anon_sym___attribute__] = ACTIONS(4860), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4865), - [anon_sym___declspec] = ACTIONS(4860), - [anon_sym___based] = ACTIONS(4860), - [anon_sym_LBRACE] = ACTIONS(4865), - [anon_sym_LBRACK] = ACTIONS(4869), - [anon_sym_EQ] = ACTIONS(4869), - [anon_sym_static] = ACTIONS(4860), - [anon_sym_register] = ACTIONS(4860), - [anon_sym_inline] = ACTIONS(4860), - [anon_sym___inline] = ACTIONS(4860), - [anon_sym___inline__] = ACTIONS(4860), - [anon_sym___forceinline] = ACTIONS(4860), - [anon_sym_thread_local] = ACTIONS(4860), - [anon_sym___thread] = ACTIONS(4860), - [anon_sym_const] = ACTIONS(4860), - [anon_sym_constexpr] = ACTIONS(4860), - [anon_sym_volatile] = ACTIONS(4860), - [anon_sym_restrict] = ACTIONS(4860), - [anon_sym___restrict__] = ACTIONS(4860), - [anon_sym__Atomic] = ACTIONS(4860), - [anon_sym__Noreturn] = ACTIONS(4860), - [anon_sym_noreturn] = ACTIONS(4860), - [anon_sym_mutable] = ACTIONS(4860), - [anon_sym_constinit] = ACTIONS(4860), - [anon_sym_consteval] = ACTIONS(4860), - [anon_sym_QMARK] = ACTIONS(4872), - [anon_sym_STAR_EQ] = ACTIONS(4872), - [anon_sym_SLASH_EQ] = ACTIONS(4872), - [anon_sym_PERCENT_EQ] = ACTIONS(4872), - [anon_sym_PLUS_EQ] = ACTIONS(4872), - [anon_sym_DASH_EQ] = ACTIONS(4872), - [anon_sym_LT_LT_EQ] = ACTIONS(4872), - [anon_sym_GT_GT_EQ] = ACTIONS(4872), - [anon_sym_AMP_EQ] = ACTIONS(4872), - [anon_sym_CARET_EQ] = ACTIONS(4872), - [anon_sym_PIPE_EQ] = ACTIONS(4872), - [anon_sym_and_eq] = ACTIONS(4867), - [anon_sym_or_eq] = ACTIONS(4867), - [anon_sym_xor_eq] = ACTIONS(4867), - [anon_sym_LT_EQ_GT] = ACTIONS(4872), - [anon_sym_or] = ACTIONS(4867), - [anon_sym_and] = ACTIONS(4867), - [anon_sym_bitor] = ACTIONS(4867), - [anon_sym_xor] = ACTIONS(4867), - [anon_sym_bitand] = ACTIONS(4867), - [anon_sym_not_eq] = ACTIONS(4867), - [anon_sym_DASH_DASH] = ACTIONS(4872), - [anon_sym_PLUS_PLUS] = ACTIONS(4872), - [anon_sym_DOT] = ACTIONS(4867), - [anon_sym_DOT_STAR] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4867), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4860), - [anon_sym_decltype] = ACTIONS(4860), - [anon_sym_virtual] = ACTIONS(4860), - [anon_sym_alignas] = ACTIONS(4860), - [anon_sym_template] = ACTIONS(4860), - [anon_sym_operator] = ACTIONS(4860), - [anon_sym_DASH_GT_STAR] = ACTIONS(4872), - }, - [2290] = { - [sym_identifier] = ACTIONS(4877), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4879), - [anon_sym_COMMA] = ACTIONS(4879), - [anon_sym_RPAREN] = ACTIONS(4879), - [anon_sym_LPAREN2] = ACTIONS(4879), - [anon_sym_TILDE] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4877), - [anon_sym_PLUS] = ACTIONS(4877), - [anon_sym_STAR] = ACTIONS(4877), - [anon_sym_SLASH] = ACTIONS(4877), - [anon_sym_PERCENT] = ACTIONS(4877), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4877), - [anon_sym_CARET] = ACTIONS(4877), - [anon_sym_AMP] = ACTIONS(4877), - [anon_sym_EQ_EQ] = ACTIONS(4879), - [anon_sym_BANG_EQ] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4877), - [anon_sym_GT_EQ] = ACTIONS(4879), - [anon_sym_LT_EQ] = ACTIONS(4877), - [anon_sym_LT] = ACTIONS(4877), - [anon_sym_LT_LT] = ACTIONS(4877), - [anon_sym_GT_GT] = ACTIONS(4877), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym___extension__] = ACTIONS(4877), - [anon_sym_extern] = ACTIONS(4877), - [anon_sym___attribute__] = ACTIONS(4877), - [anon_sym_COLON_COLON] = ACTIONS(4879), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4879), - [anon_sym___declspec] = ACTIONS(4877), - [anon_sym___based] = ACTIONS(4877), - [anon_sym_LBRACE] = ACTIONS(4879), - [anon_sym_RBRACE] = ACTIONS(4879), - [anon_sym_LBRACK] = ACTIONS(4877), - [anon_sym_EQ] = ACTIONS(4877), - [anon_sym_static] = ACTIONS(4877), - [anon_sym_register] = ACTIONS(4877), - [anon_sym_inline] = ACTIONS(4877), - [anon_sym___inline] = ACTIONS(4877), - [anon_sym___inline__] = ACTIONS(4877), - [anon_sym___forceinline] = ACTIONS(4877), - [anon_sym_thread_local] = ACTIONS(4877), - [anon_sym___thread] = ACTIONS(4877), - [anon_sym_const] = ACTIONS(4877), - [anon_sym_constexpr] = ACTIONS(4877), - [anon_sym_volatile] = ACTIONS(4877), - [anon_sym_restrict] = ACTIONS(4877), - [anon_sym___restrict__] = ACTIONS(4877), - [anon_sym__Atomic] = ACTIONS(4877), - [anon_sym__Noreturn] = ACTIONS(4877), - [anon_sym_noreturn] = ACTIONS(4877), - [anon_sym_mutable] = ACTIONS(4877), - [anon_sym_constinit] = ACTIONS(4877), - [anon_sym_consteval] = ACTIONS(4877), - [anon_sym_QMARK] = ACTIONS(4879), - [anon_sym_STAR_EQ] = ACTIONS(4879), - [anon_sym_SLASH_EQ] = ACTIONS(4879), - [anon_sym_PERCENT_EQ] = ACTIONS(4879), - [anon_sym_PLUS_EQ] = ACTIONS(4879), - [anon_sym_DASH_EQ] = ACTIONS(4879), - [anon_sym_LT_LT_EQ] = ACTIONS(4879), - [anon_sym_GT_GT_EQ] = ACTIONS(4879), - [anon_sym_AMP_EQ] = ACTIONS(4879), - [anon_sym_CARET_EQ] = ACTIONS(4879), - [anon_sym_PIPE_EQ] = ACTIONS(4879), - [anon_sym_and_eq] = ACTIONS(4877), - [anon_sym_or_eq] = ACTIONS(4877), - [anon_sym_xor_eq] = ACTIONS(4877), - [anon_sym_LT_EQ_GT] = ACTIONS(4879), - [anon_sym_or] = ACTIONS(4877), - [anon_sym_and] = ACTIONS(4877), - [anon_sym_bitor] = ACTIONS(4877), - [anon_sym_xor] = ACTIONS(4877), - [anon_sym_bitand] = ACTIONS(4877), - [anon_sym_not_eq] = ACTIONS(4877), - [anon_sym_DASH_DASH] = ACTIONS(4879), - [anon_sym_PLUS_PLUS] = ACTIONS(4879), - [anon_sym_DOT] = ACTIONS(4877), - [anon_sym_DOT_STAR] = ACTIONS(4879), - [anon_sym_DASH_GT] = ACTIONS(4879), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4877), - [anon_sym_decltype] = ACTIONS(4877), - [anon_sym_virtual] = ACTIONS(4877), - [anon_sym_alignas] = ACTIONS(4877), - [anon_sym_template] = ACTIONS(4877), - [anon_sym_operator] = ACTIONS(4877), - }, - [2291] = { - [sym_template_argument_list] = STATE(2305), - [sym_identifier] = ACTIONS(4860), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4872), - [anon_sym_COMMA] = ACTIONS(4872), - [anon_sym_LPAREN2] = ACTIONS(4862), - [anon_sym_TILDE] = ACTIONS(4865), - [anon_sym_DASH] = ACTIONS(4867), - [anon_sym_PLUS] = ACTIONS(4867), - [anon_sym_STAR] = ACTIONS(4869), - [anon_sym_SLASH] = ACTIONS(4867), - [anon_sym_PERCENT] = ACTIONS(4867), - [anon_sym_PIPE_PIPE] = ACTIONS(4872), - [anon_sym_AMP_AMP] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_CARET] = ACTIONS(4867), - [anon_sym_AMP] = ACTIONS(4869), - [anon_sym_EQ_EQ] = ACTIONS(4872), - [anon_sym_BANG_EQ] = ACTIONS(4872), - [anon_sym_GT] = ACTIONS(4867), - [anon_sym_GT_EQ] = ACTIONS(4872), - [anon_sym_LT_EQ] = ACTIONS(4867), - [anon_sym_LT] = ACTIONS(4881), - [anon_sym_LT_LT] = ACTIONS(4867), - [anon_sym_GT_GT] = ACTIONS(4867), - [anon_sym_SEMI] = ACTIONS(4862), - [anon_sym___extension__] = ACTIONS(4860), - [anon_sym_extern] = ACTIONS(4860), - [anon_sym___attribute__] = ACTIONS(4860), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4862), - [anon_sym___declspec] = ACTIONS(4860), - [anon_sym___based] = ACTIONS(4860), - [anon_sym_LBRACE] = ACTIONS(4865), - [anon_sym_RBRACE] = ACTIONS(4872), - [anon_sym_LBRACK] = ACTIONS(4869), - [anon_sym_EQ] = ACTIONS(4867), - [anon_sym_static] = ACTIONS(4860), - [anon_sym_register] = ACTIONS(4860), - [anon_sym_inline] = ACTIONS(4860), - [anon_sym___inline] = ACTIONS(4860), - [anon_sym___inline__] = ACTIONS(4860), - [anon_sym___forceinline] = ACTIONS(4860), - [anon_sym_thread_local] = ACTIONS(4860), - [anon_sym___thread] = ACTIONS(4860), - [anon_sym_const] = ACTIONS(4860), - [anon_sym_constexpr] = ACTIONS(4860), - [anon_sym_volatile] = ACTIONS(4860), - [anon_sym_restrict] = ACTIONS(4860), - [anon_sym___restrict__] = ACTIONS(4860), - [anon_sym__Atomic] = ACTIONS(4860), - [anon_sym__Noreturn] = ACTIONS(4860), - [anon_sym_noreturn] = ACTIONS(4860), - [anon_sym_mutable] = ACTIONS(4860), - [anon_sym_constinit] = ACTIONS(4860), - [anon_sym_consteval] = ACTIONS(4860), - [anon_sym_QMARK] = ACTIONS(4872), - [anon_sym_STAR_EQ] = ACTIONS(4872), - [anon_sym_SLASH_EQ] = ACTIONS(4872), - [anon_sym_PERCENT_EQ] = ACTIONS(4872), - [anon_sym_PLUS_EQ] = ACTIONS(4872), - [anon_sym_DASH_EQ] = ACTIONS(4872), - [anon_sym_LT_LT_EQ] = ACTIONS(4872), - [anon_sym_GT_GT_EQ] = ACTIONS(4872), - [anon_sym_AMP_EQ] = ACTIONS(4872), - [anon_sym_CARET_EQ] = ACTIONS(4872), - [anon_sym_PIPE_EQ] = ACTIONS(4872), - [anon_sym_and_eq] = ACTIONS(4867), - [anon_sym_or_eq] = ACTIONS(4867), - [anon_sym_xor_eq] = ACTIONS(4867), - [anon_sym_LT_EQ_GT] = ACTIONS(4872), - [anon_sym_or] = ACTIONS(4867), - [anon_sym_and] = ACTIONS(4867), - [anon_sym_bitor] = ACTIONS(4867), - [anon_sym_xor] = ACTIONS(4867), - [anon_sym_bitand] = ACTIONS(4867), - [anon_sym_not_eq] = ACTIONS(4867), - [anon_sym_DASH_DASH] = ACTIONS(4872), - [anon_sym_PLUS_PLUS] = ACTIONS(4872), - [anon_sym_DOT] = ACTIONS(4867), - [anon_sym_DOT_STAR] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4872), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4860), - [anon_sym_decltype] = ACTIONS(4860), - [anon_sym_virtual] = ACTIONS(4860), - [anon_sym_alignas] = ACTIONS(4860), - [anon_sym_template] = ACTIONS(4860), - [anon_sym_operator] = ACTIONS(4860), - }, - [2292] = { - [sym_identifier] = ACTIONS(4884), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4886), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_LPAREN2] = ACTIONS(4886), - [anon_sym_TILDE] = ACTIONS(4886), - [anon_sym_DASH] = ACTIONS(4884), - [anon_sym_PLUS] = ACTIONS(4884), - [anon_sym_STAR] = ACTIONS(4884), - [anon_sym_SLASH] = ACTIONS(4884), - [anon_sym_PERCENT] = ACTIONS(4884), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4884), - [anon_sym_CARET] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4884), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4884), - [anon_sym_GT_EQ] = ACTIONS(4886), - [anon_sym_LT_EQ] = ACTIONS(4884), - [anon_sym_LT] = ACTIONS(4884), - [anon_sym_LT_LT] = ACTIONS(4884), - [anon_sym_GT_GT] = ACTIONS(4884), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym___extension__] = ACTIONS(4884), - [anon_sym_extern] = ACTIONS(4884), - [anon_sym___attribute__] = ACTIONS(4884), - [anon_sym_COLON_COLON] = ACTIONS(4886), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4886), - [anon_sym___declspec] = ACTIONS(4884), - [anon_sym___based] = ACTIONS(4884), - [anon_sym_LBRACE] = ACTIONS(4886), - [anon_sym_RBRACE] = ACTIONS(4886), - [anon_sym_LBRACK] = ACTIONS(4884), - [anon_sym_EQ] = ACTIONS(4884), - [anon_sym_static] = ACTIONS(4884), - [anon_sym_register] = ACTIONS(4884), - [anon_sym_inline] = ACTIONS(4884), - [anon_sym___inline] = ACTIONS(4884), - [anon_sym___inline__] = ACTIONS(4884), - [anon_sym___forceinline] = ACTIONS(4884), - [anon_sym_thread_local] = ACTIONS(4884), - [anon_sym___thread] = ACTIONS(4884), - [anon_sym_const] = ACTIONS(4884), - [anon_sym_constexpr] = ACTIONS(4884), - [anon_sym_volatile] = ACTIONS(4884), - [anon_sym_restrict] = ACTIONS(4884), - [anon_sym___restrict__] = ACTIONS(4884), - [anon_sym__Atomic] = ACTIONS(4884), - [anon_sym__Noreturn] = ACTIONS(4884), - [anon_sym_noreturn] = ACTIONS(4884), - [anon_sym_mutable] = ACTIONS(4884), - [anon_sym_constinit] = ACTIONS(4884), - [anon_sym_consteval] = ACTIONS(4884), - [anon_sym_QMARK] = ACTIONS(4886), - [anon_sym_STAR_EQ] = ACTIONS(4886), - [anon_sym_SLASH_EQ] = ACTIONS(4886), - [anon_sym_PERCENT_EQ] = ACTIONS(4886), - [anon_sym_PLUS_EQ] = ACTIONS(4886), - [anon_sym_DASH_EQ] = ACTIONS(4886), - [anon_sym_LT_LT_EQ] = ACTIONS(4886), - [anon_sym_GT_GT_EQ] = ACTIONS(4886), - [anon_sym_AMP_EQ] = ACTIONS(4886), - [anon_sym_CARET_EQ] = ACTIONS(4886), - [anon_sym_PIPE_EQ] = ACTIONS(4886), - [anon_sym_and_eq] = ACTIONS(4884), - [anon_sym_or_eq] = ACTIONS(4884), - [anon_sym_xor_eq] = ACTIONS(4884), - [anon_sym_LT_EQ_GT] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4884), - [anon_sym_and] = ACTIONS(4884), - [anon_sym_bitor] = ACTIONS(4884), - [anon_sym_xor] = ACTIONS(4884), - [anon_sym_bitand] = ACTIONS(4884), - [anon_sym_not_eq] = ACTIONS(4884), - [anon_sym_DASH_DASH] = ACTIONS(4886), - [anon_sym_PLUS_PLUS] = ACTIONS(4886), - [anon_sym_DOT] = ACTIONS(4884), - [anon_sym_DOT_STAR] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4886), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4884), - [anon_sym_decltype] = ACTIONS(4884), - [anon_sym_virtual] = ACTIONS(4884), - [anon_sym_alignas] = ACTIONS(4884), - [anon_sym_template] = ACTIONS(4884), - [anon_sym_operator] = ACTIONS(4884), - }, - [2293] = { - [sym_identifier] = ACTIONS(4888), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4890), - [anon_sym_COMMA] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4890), - [anon_sym_TILDE] = ACTIONS(4890), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_STAR] = ACTIONS(4888), - [anon_sym_SLASH] = ACTIONS(4888), - [anon_sym_PERCENT] = ACTIONS(4888), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4888), - [anon_sym_CARET] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4888), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4890), - [anon_sym_LT_EQ] = ACTIONS(4888), - [anon_sym_LT] = ACTIONS(4888), - [anon_sym_LT_LT] = ACTIONS(4888), - [anon_sym_GT_GT] = ACTIONS(4888), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym___extension__] = ACTIONS(4888), - [anon_sym_extern] = ACTIONS(4888), - [anon_sym___attribute__] = ACTIONS(4888), - [anon_sym_COLON_COLON] = ACTIONS(4890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4890), - [anon_sym___declspec] = ACTIONS(4888), - [anon_sym___based] = ACTIONS(4888), - [anon_sym_LBRACE] = ACTIONS(4890), - [anon_sym_RBRACE] = ACTIONS(4890), - [anon_sym_LBRACK] = ACTIONS(4888), - [anon_sym_EQ] = ACTIONS(4888), - [anon_sym_static] = ACTIONS(4888), - [anon_sym_register] = ACTIONS(4888), - [anon_sym_inline] = ACTIONS(4888), - [anon_sym___inline] = ACTIONS(4888), - [anon_sym___inline__] = ACTIONS(4888), - [anon_sym___forceinline] = ACTIONS(4888), - [anon_sym_thread_local] = ACTIONS(4888), - [anon_sym___thread] = ACTIONS(4888), - [anon_sym_const] = ACTIONS(4888), - [anon_sym_constexpr] = ACTIONS(4888), - [anon_sym_volatile] = ACTIONS(4888), - [anon_sym_restrict] = ACTIONS(4888), - [anon_sym___restrict__] = ACTIONS(4888), - [anon_sym__Atomic] = ACTIONS(4888), - [anon_sym__Noreturn] = ACTIONS(4888), - [anon_sym_noreturn] = ACTIONS(4888), - [anon_sym_mutable] = ACTIONS(4888), - [anon_sym_constinit] = ACTIONS(4888), - [anon_sym_consteval] = ACTIONS(4888), - [anon_sym_QMARK] = ACTIONS(4890), - [anon_sym_STAR_EQ] = ACTIONS(4890), - [anon_sym_SLASH_EQ] = ACTIONS(4890), - [anon_sym_PERCENT_EQ] = ACTIONS(4890), - [anon_sym_PLUS_EQ] = ACTIONS(4890), - [anon_sym_DASH_EQ] = ACTIONS(4890), - [anon_sym_LT_LT_EQ] = ACTIONS(4890), - [anon_sym_GT_GT_EQ] = ACTIONS(4890), - [anon_sym_AMP_EQ] = ACTIONS(4890), - [anon_sym_CARET_EQ] = ACTIONS(4890), - [anon_sym_PIPE_EQ] = ACTIONS(4890), - [anon_sym_and_eq] = ACTIONS(4888), - [anon_sym_or_eq] = ACTIONS(4888), - [anon_sym_xor_eq] = ACTIONS(4888), - [anon_sym_LT_EQ_GT] = ACTIONS(4890), - [anon_sym_or] = ACTIONS(4888), - [anon_sym_and] = ACTIONS(4888), - [anon_sym_bitor] = ACTIONS(4888), - [anon_sym_xor] = ACTIONS(4888), - [anon_sym_bitand] = ACTIONS(4888), - [anon_sym_not_eq] = ACTIONS(4888), - [anon_sym_DASH_DASH] = ACTIONS(4890), - [anon_sym_PLUS_PLUS] = ACTIONS(4890), - [anon_sym_DOT] = ACTIONS(4888), - [anon_sym_DOT_STAR] = ACTIONS(4890), - [anon_sym_DASH_GT] = ACTIONS(4890), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4888), - [anon_sym_decltype] = ACTIONS(4888), - [anon_sym_virtual] = ACTIONS(4888), - [anon_sym_alignas] = ACTIONS(4888), - [anon_sym_template] = ACTIONS(4888), - [anon_sym_operator] = ACTIONS(4888), - }, - [2294] = { - [sym_template_argument_list] = STATE(2303), - [sym_identifier] = ACTIONS(4860), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4872), - [anon_sym_COMMA] = ACTIONS(4872), - [anon_sym_RPAREN] = ACTIONS(4872), - [anon_sym_LPAREN2] = ACTIONS(4862), - [anon_sym_TILDE] = ACTIONS(4865), - [anon_sym_DASH] = ACTIONS(4867), - [anon_sym_PLUS] = ACTIONS(4867), - [anon_sym_STAR] = ACTIONS(4869), - [anon_sym_SLASH] = ACTIONS(4867), - [anon_sym_PERCENT] = ACTIONS(4867), - [anon_sym_PIPE_PIPE] = ACTIONS(4872), - [anon_sym_AMP_AMP] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_CARET] = ACTIONS(4867), - [anon_sym_AMP] = ACTIONS(4869), - [anon_sym_EQ_EQ] = ACTIONS(4872), - [anon_sym_BANG_EQ] = ACTIONS(4872), - [anon_sym_GT] = ACTIONS(4867), - [anon_sym_GT_EQ] = ACTIONS(4872), - [anon_sym_LT_EQ] = ACTIONS(4867), - [anon_sym_LT] = ACTIONS(4881), - [anon_sym_LT_LT] = ACTIONS(4867), - [anon_sym_GT_GT] = ACTIONS(4867), - [anon_sym_SEMI] = ACTIONS(4872), - [anon_sym___extension__] = ACTIONS(4860), - [anon_sym_extern] = ACTIONS(4860), - [anon_sym___attribute__] = ACTIONS(4860), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4865), - [anon_sym___declspec] = ACTIONS(4860), - [anon_sym___based] = ACTIONS(4860), - [anon_sym_LBRACE] = ACTIONS(4865), - [anon_sym_LBRACK] = ACTIONS(4869), - [anon_sym_EQ] = ACTIONS(4867), - [anon_sym_static] = ACTIONS(4860), - [anon_sym_register] = ACTIONS(4860), - [anon_sym_inline] = ACTIONS(4860), - [anon_sym___inline] = ACTIONS(4860), - [anon_sym___inline__] = ACTIONS(4860), - [anon_sym___forceinline] = ACTIONS(4860), - [anon_sym_thread_local] = ACTIONS(4860), - [anon_sym___thread] = ACTIONS(4860), - [anon_sym_const] = ACTIONS(4860), - [anon_sym_constexpr] = ACTIONS(4860), - [anon_sym_volatile] = ACTIONS(4860), - [anon_sym_restrict] = ACTIONS(4860), - [anon_sym___restrict__] = ACTIONS(4860), - [anon_sym__Atomic] = ACTIONS(4860), - [anon_sym__Noreturn] = ACTIONS(4860), - [anon_sym_noreturn] = ACTIONS(4860), - [anon_sym_mutable] = ACTIONS(4860), - [anon_sym_constinit] = ACTIONS(4860), - [anon_sym_consteval] = ACTIONS(4860), - [anon_sym_QMARK] = ACTIONS(4872), - [anon_sym_STAR_EQ] = ACTIONS(4872), - [anon_sym_SLASH_EQ] = ACTIONS(4872), - [anon_sym_PERCENT_EQ] = ACTIONS(4872), - [anon_sym_PLUS_EQ] = ACTIONS(4872), - [anon_sym_DASH_EQ] = ACTIONS(4872), - [anon_sym_LT_LT_EQ] = ACTIONS(4872), - [anon_sym_GT_GT_EQ] = ACTIONS(4872), - [anon_sym_AMP_EQ] = ACTIONS(4872), - [anon_sym_CARET_EQ] = ACTIONS(4872), - [anon_sym_PIPE_EQ] = ACTIONS(4872), - [anon_sym_and_eq] = ACTIONS(4867), - [anon_sym_or_eq] = ACTIONS(4867), - [anon_sym_xor_eq] = ACTIONS(4867), - [anon_sym_LT_EQ_GT] = ACTIONS(4872), - [anon_sym_or] = ACTIONS(4867), - [anon_sym_and] = ACTIONS(4867), - [anon_sym_bitor] = ACTIONS(4867), - [anon_sym_xor] = ACTIONS(4867), - [anon_sym_bitand] = ACTIONS(4867), - [anon_sym_not_eq] = ACTIONS(4867), - [anon_sym_DASH_DASH] = ACTIONS(4872), - [anon_sym_PLUS_PLUS] = ACTIONS(4872), - [anon_sym_DOT] = ACTIONS(4867), - [anon_sym_DOT_STAR] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4872), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4860), - [anon_sym_decltype] = ACTIONS(4860), - [anon_sym_virtual] = ACTIONS(4860), - [anon_sym_alignas] = ACTIONS(4860), - [anon_sym_template] = ACTIONS(4860), - [anon_sym_operator] = ACTIONS(4860), - }, - [2295] = { - [sym_identifier] = ACTIONS(4844), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4846), - [anon_sym_COMMA] = ACTIONS(4846), - [anon_sym_RPAREN] = ACTIONS(4846), - [anon_sym_LPAREN2] = ACTIONS(4846), - [anon_sym_TILDE] = ACTIONS(4846), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4844), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE] = ACTIONS(4844), - [anon_sym_CARET] = ACTIONS(4844), - [anon_sym_AMP] = ACTIONS(4844), - [anon_sym_EQ_EQ] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4846), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4844), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_LT_LT] = ACTIONS(4844), - [anon_sym_GT_GT] = ACTIONS(4844), - [anon_sym___extension__] = ACTIONS(4844), - [anon_sym_extern] = ACTIONS(4844), - [anon_sym___attribute__] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4846), - [anon_sym___declspec] = ACTIONS(4844), - [anon_sym___based] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4844), - [anon_sym_EQ] = ACTIONS(4844), - [anon_sym_static] = ACTIONS(4844), - [anon_sym_register] = ACTIONS(4844), - [anon_sym_inline] = ACTIONS(4844), - [anon_sym___inline] = ACTIONS(4844), - [anon_sym___inline__] = ACTIONS(4844), - [anon_sym___forceinline] = ACTIONS(4844), - [anon_sym_thread_local] = ACTIONS(4844), - [anon_sym___thread] = ACTIONS(4844), - [anon_sym_const] = ACTIONS(4844), - [anon_sym_constexpr] = ACTIONS(4844), - [anon_sym_volatile] = ACTIONS(4844), - [anon_sym_restrict] = ACTIONS(4844), - [anon_sym___restrict__] = ACTIONS(4844), - [anon_sym__Atomic] = ACTIONS(4844), - [anon_sym__Noreturn] = ACTIONS(4844), - [anon_sym_noreturn] = ACTIONS(4844), - [anon_sym_mutable] = ACTIONS(4844), - [anon_sym_constinit] = ACTIONS(4844), - [anon_sym_consteval] = ACTIONS(4844), - [anon_sym_QMARK] = ACTIONS(4846), - [anon_sym_STAR_EQ] = ACTIONS(4846), - [anon_sym_SLASH_EQ] = ACTIONS(4846), - [anon_sym_PERCENT_EQ] = ACTIONS(4846), - [anon_sym_PLUS_EQ] = ACTIONS(4846), - [anon_sym_DASH_EQ] = ACTIONS(4846), - [anon_sym_LT_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_GT_EQ] = ACTIONS(4846), - [anon_sym_AMP_EQ] = ACTIONS(4846), - [anon_sym_CARET_EQ] = ACTIONS(4846), - [anon_sym_PIPE_EQ] = ACTIONS(4846), - [anon_sym_and_eq] = ACTIONS(4844), - [anon_sym_or_eq] = ACTIONS(4844), - [anon_sym_xor_eq] = ACTIONS(4844), - [anon_sym_LT_EQ_GT] = ACTIONS(4846), - [anon_sym_or] = ACTIONS(4844), - [anon_sym_and] = ACTIONS(4844), - [anon_sym_bitor] = ACTIONS(4844), - [anon_sym_xor] = ACTIONS(4844), - [anon_sym_bitand] = ACTIONS(4844), - [anon_sym_not_eq] = ACTIONS(4844), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_DOT_STAR] = ACTIONS(4846), - [anon_sym_DASH_GT] = ACTIONS(4844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4844), - [anon_sym_decltype] = ACTIONS(4844), - [anon_sym_virtual] = ACTIONS(4844), - [anon_sym_alignas] = ACTIONS(4844), - [anon_sym_template] = ACTIONS(4844), - [anon_sym_operator] = ACTIONS(4844), - [anon_sym_DASH_GT_STAR] = ACTIONS(4846), - }, - [2296] = { - [sym_identifier] = ACTIONS(4856), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4858), - [anon_sym_COMMA] = ACTIONS(4858), - [anon_sym_RPAREN] = ACTIONS(4858), - [anon_sym_LPAREN2] = ACTIONS(4858), - [anon_sym_TILDE] = ACTIONS(4858), - [anon_sym_DASH] = ACTIONS(4856), - [anon_sym_PLUS] = ACTIONS(4856), - [anon_sym_STAR] = ACTIONS(4856), - [anon_sym_SLASH] = ACTIONS(4856), - [anon_sym_PERCENT] = ACTIONS(4856), - [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_AMP_AMP] = ACTIONS(4858), - [anon_sym_PIPE] = ACTIONS(4856), - [anon_sym_CARET] = ACTIONS(4856), - [anon_sym_AMP] = ACTIONS(4856), - [anon_sym_EQ_EQ] = ACTIONS(4858), - [anon_sym_BANG_EQ] = ACTIONS(4858), - [anon_sym_GT] = ACTIONS(4856), - [anon_sym_GT_EQ] = ACTIONS(4858), - [anon_sym_LT_EQ] = ACTIONS(4856), - [anon_sym_LT] = ACTIONS(4856), - [anon_sym_LT_LT] = ACTIONS(4856), - [anon_sym_GT_GT] = ACTIONS(4856), - [anon_sym___extension__] = ACTIONS(4856), - [anon_sym_extern] = ACTIONS(4856), - [anon_sym___attribute__] = ACTIONS(4856), - [anon_sym_COLON_COLON] = ACTIONS(4858), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4858), - [anon_sym___declspec] = ACTIONS(4856), - [anon_sym___based] = ACTIONS(4856), - [anon_sym_LBRACE] = ACTIONS(4858), - [anon_sym_LBRACK] = ACTIONS(4856), - [anon_sym_EQ] = ACTIONS(4856), - [anon_sym_static] = ACTIONS(4856), - [anon_sym_register] = ACTIONS(4856), - [anon_sym_inline] = ACTIONS(4856), - [anon_sym___inline] = ACTIONS(4856), - [anon_sym___inline__] = ACTIONS(4856), - [anon_sym___forceinline] = ACTIONS(4856), - [anon_sym_thread_local] = ACTIONS(4856), - [anon_sym___thread] = ACTIONS(4856), - [anon_sym_const] = ACTIONS(4856), - [anon_sym_constexpr] = ACTIONS(4856), - [anon_sym_volatile] = ACTIONS(4856), - [anon_sym_restrict] = ACTIONS(4856), - [anon_sym___restrict__] = ACTIONS(4856), - [anon_sym__Atomic] = ACTIONS(4856), - [anon_sym__Noreturn] = ACTIONS(4856), - [anon_sym_noreturn] = ACTIONS(4856), - [anon_sym_mutable] = ACTIONS(4856), - [anon_sym_constinit] = ACTIONS(4856), - [anon_sym_consteval] = ACTIONS(4856), - [anon_sym_QMARK] = ACTIONS(4858), - [anon_sym_STAR_EQ] = ACTIONS(4858), - [anon_sym_SLASH_EQ] = ACTIONS(4858), - [anon_sym_PERCENT_EQ] = ACTIONS(4858), - [anon_sym_PLUS_EQ] = ACTIONS(4858), - [anon_sym_DASH_EQ] = ACTIONS(4858), - [anon_sym_LT_LT_EQ] = ACTIONS(4858), - [anon_sym_GT_GT_EQ] = ACTIONS(4858), - [anon_sym_AMP_EQ] = ACTIONS(4858), - [anon_sym_CARET_EQ] = ACTIONS(4858), - [anon_sym_PIPE_EQ] = ACTIONS(4858), - [anon_sym_and_eq] = ACTIONS(4856), - [anon_sym_or_eq] = ACTIONS(4856), - [anon_sym_xor_eq] = ACTIONS(4856), - [anon_sym_LT_EQ_GT] = ACTIONS(4858), - [anon_sym_or] = ACTIONS(4856), - [anon_sym_and] = ACTIONS(4856), - [anon_sym_bitor] = ACTIONS(4856), - [anon_sym_xor] = ACTIONS(4856), - [anon_sym_bitand] = ACTIONS(4856), - [anon_sym_not_eq] = ACTIONS(4856), - [anon_sym_DASH_DASH] = ACTIONS(4858), - [anon_sym_PLUS_PLUS] = ACTIONS(4858), - [anon_sym_DOT] = ACTIONS(4856), - [anon_sym_DOT_STAR] = ACTIONS(4858), - [anon_sym_DASH_GT] = ACTIONS(4856), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4856), - [anon_sym_decltype] = ACTIONS(4856), - [anon_sym_virtual] = ACTIONS(4856), - [anon_sym_alignas] = ACTIONS(4856), - [anon_sym_template] = ACTIONS(4856), - [anon_sym_operator] = ACTIONS(4856), - [anon_sym_DASH_GT_STAR] = ACTIONS(4858), - }, - [2297] = { - [sym_identifier] = ACTIONS(4852), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_RPAREN] = ACTIONS(4854), - [anon_sym_LPAREN2] = ACTIONS(4854), - [anon_sym_TILDE] = ACTIONS(4854), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4852), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE] = ACTIONS(4852), - [anon_sym_CARET] = ACTIONS(4852), - [anon_sym_AMP] = ACTIONS(4852), - [anon_sym_EQ_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4854), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4852), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_LT_LT] = ACTIONS(4852), - [anon_sym_GT_GT] = ACTIONS(4852), - [anon_sym___extension__] = ACTIONS(4852), - [anon_sym_extern] = ACTIONS(4852), - [anon_sym___attribute__] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4854), - [anon_sym___declspec] = ACTIONS(4852), - [anon_sym___based] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4852), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_static] = ACTIONS(4852), - [anon_sym_register] = ACTIONS(4852), - [anon_sym_inline] = ACTIONS(4852), - [anon_sym___inline] = ACTIONS(4852), - [anon_sym___inline__] = ACTIONS(4852), - [anon_sym___forceinline] = ACTIONS(4852), - [anon_sym_thread_local] = ACTIONS(4852), - [anon_sym___thread] = ACTIONS(4852), - [anon_sym_const] = ACTIONS(4852), - [anon_sym_constexpr] = ACTIONS(4852), - [anon_sym_volatile] = ACTIONS(4852), - [anon_sym_restrict] = ACTIONS(4852), - [anon_sym___restrict__] = ACTIONS(4852), - [anon_sym__Atomic] = ACTIONS(4852), - [anon_sym__Noreturn] = ACTIONS(4852), - [anon_sym_noreturn] = ACTIONS(4852), - [anon_sym_mutable] = ACTIONS(4852), - [anon_sym_constinit] = ACTIONS(4852), - [anon_sym_consteval] = ACTIONS(4852), - [anon_sym_QMARK] = ACTIONS(4854), - [anon_sym_STAR_EQ] = ACTIONS(4854), - [anon_sym_SLASH_EQ] = ACTIONS(4854), - [anon_sym_PERCENT_EQ] = ACTIONS(4854), - [anon_sym_PLUS_EQ] = ACTIONS(4854), - [anon_sym_DASH_EQ] = ACTIONS(4854), - [anon_sym_LT_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_GT_EQ] = ACTIONS(4854), - [anon_sym_AMP_EQ] = ACTIONS(4854), - [anon_sym_CARET_EQ] = ACTIONS(4854), - [anon_sym_PIPE_EQ] = ACTIONS(4854), - [anon_sym_and_eq] = ACTIONS(4852), - [anon_sym_or_eq] = ACTIONS(4852), - [anon_sym_xor_eq] = ACTIONS(4852), - [anon_sym_LT_EQ_GT] = ACTIONS(4854), - [anon_sym_or] = ACTIONS(4852), - [anon_sym_and] = ACTIONS(4852), - [anon_sym_bitor] = ACTIONS(4852), - [anon_sym_xor] = ACTIONS(4852), - [anon_sym_bitand] = ACTIONS(4852), - [anon_sym_not_eq] = ACTIONS(4852), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_DOT_STAR] = ACTIONS(4854), - [anon_sym_DASH_GT] = ACTIONS(4852), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4852), - [anon_sym_decltype] = ACTIONS(4852), - [anon_sym_virtual] = ACTIONS(4852), - [anon_sym_alignas] = ACTIONS(4852), - [anon_sym_template] = ACTIONS(4852), - [anon_sym_operator] = ACTIONS(4852), - [anon_sym_DASH_GT_STAR] = ACTIONS(4854), - }, - [2298] = { - [sym_identifier] = ACTIONS(4884), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4886), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_LPAREN2] = ACTIONS(4886), - [anon_sym_TILDE] = ACTIONS(4886), - [anon_sym_DASH] = ACTIONS(4884), - [anon_sym_PLUS] = ACTIONS(4884), - [anon_sym_STAR] = ACTIONS(4884), - [anon_sym_SLASH] = ACTIONS(4884), - [anon_sym_PERCENT] = ACTIONS(4884), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4884), - [anon_sym_CARET] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4884), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4884), - [anon_sym_GT_EQ] = ACTIONS(4886), - [anon_sym_LT_EQ] = ACTIONS(4884), - [anon_sym_LT] = ACTIONS(4884), - [anon_sym_LT_LT] = ACTIONS(4884), - [anon_sym_GT_GT] = ACTIONS(4884), - [anon_sym___extension__] = ACTIONS(4884), - [anon_sym_extern] = ACTIONS(4884), - [anon_sym___attribute__] = ACTIONS(4884), - [anon_sym_COLON_COLON] = ACTIONS(4886), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4886), - [anon_sym___declspec] = ACTIONS(4884), - [anon_sym___based] = ACTIONS(4884), - [anon_sym_LBRACE] = ACTIONS(4886), - [anon_sym_LBRACK] = ACTIONS(4884), - [anon_sym_EQ] = ACTIONS(4884), - [anon_sym_static] = ACTIONS(4884), - [anon_sym_register] = ACTIONS(4884), - [anon_sym_inline] = ACTIONS(4884), - [anon_sym___inline] = ACTIONS(4884), - [anon_sym___inline__] = ACTIONS(4884), - [anon_sym___forceinline] = ACTIONS(4884), - [anon_sym_thread_local] = ACTIONS(4884), - [anon_sym___thread] = ACTIONS(4884), - [anon_sym_const] = ACTIONS(4884), - [anon_sym_constexpr] = ACTIONS(4884), - [anon_sym_volatile] = ACTIONS(4884), - [anon_sym_restrict] = ACTIONS(4884), - [anon_sym___restrict__] = ACTIONS(4884), - [anon_sym__Atomic] = ACTIONS(4884), - [anon_sym__Noreturn] = ACTIONS(4884), - [anon_sym_noreturn] = ACTIONS(4884), - [anon_sym_mutable] = ACTIONS(4884), - [anon_sym_constinit] = ACTIONS(4884), - [anon_sym_consteval] = ACTIONS(4884), - [anon_sym_QMARK] = ACTIONS(4886), - [anon_sym_STAR_EQ] = ACTIONS(4886), - [anon_sym_SLASH_EQ] = ACTIONS(4886), - [anon_sym_PERCENT_EQ] = ACTIONS(4886), - [anon_sym_PLUS_EQ] = ACTIONS(4886), - [anon_sym_DASH_EQ] = ACTIONS(4886), - [anon_sym_LT_LT_EQ] = ACTIONS(4886), - [anon_sym_GT_GT_EQ] = ACTIONS(4886), - [anon_sym_AMP_EQ] = ACTIONS(4886), - [anon_sym_CARET_EQ] = ACTIONS(4886), - [anon_sym_PIPE_EQ] = ACTIONS(4886), - [anon_sym_and_eq] = ACTIONS(4884), - [anon_sym_or_eq] = ACTIONS(4884), - [anon_sym_xor_eq] = ACTIONS(4884), - [anon_sym_LT_EQ_GT] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4884), - [anon_sym_and] = ACTIONS(4884), - [anon_sym_bitor] = ACTIONS(4884), - [anon_sym_xor] = ACTIONS(4884), - [anon_sym_bitand] = ACTIONS(4884), - [anon_sym_not_eq] = ACTIONS(4884), - [anon_sym_DASH_DASH] = ACTIONS(4886), - [anon_sym_PLUS_PLUS] = ACTIONS(4886), - [anon_sym_DOT] = ACTIONS(4884), - [anon_sym_DOT_STAR] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4884), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4884), - [anon_sym_decltype] = ACTIONS(4884), - [anon_sym_virtual] = ACTIONS(4884), - [anon_sym_alignas] = ACTIONS(4884), - [anon_sym_template] = ACTIONS(4884), - [anon_sym_operator] = ACTIONS(4884), - [anon_sym_DASH_GT_STAR] = ACTIONS(4886), - }, - [2299] = { - [sym_identifier] = ACTIONS(4848), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4850), - [anon_sym_COMMA] = ACTIONS(4850), - [anon_sym_RPAREN] = ACTIONS(4850), - [anon_sym_LPAREN2] = ACTIONS(4850), - [anon_sym_TILDE] = ACTIONS(4850), - [anon_sym_DASH] = ACTIONS(4848), - [anon_sym_PLUS] = ACTIONS(4848), - [anon_sym_STAR] = ACTIONS(4848), - [anon_sym_SLASH] = ACTIONS(4848), - [anon_sym_PERCENT] = ACTIONS(4848), - [anon_sym_PIPE_PIPE] = ACTIONS(4850), - [anon_sym_AMP_AMP] = ACTIONS(4850), - [anon_sym_PIPE] = ACTIONS(4848), - [anon_sym_CARET] = ACTIONS(4848), - [anon_sym_AMP] = ACTIONS(4848), - [anon_sym_EQ_EQ] = ACTIONS(4850), - [anon_sym_BANG_EQ] = ACTIONS(4850), - [anon_sym_GT] = ACTIONS(4848), - [anon_sym_GT_EQ] = ACTIONS(4850), - [anon_sym_LT_EQ] = ACTIONS(4848), - [anon_sym_LT] = ACTIONS(4848), - [anon_sym_LT_LT] = ACTIONS(4848), - [anon_sym_GT_GT] = ACTIONS(4848), - [anon_sym___extension__] = ACTIONS(4848), - [anon_sym_extern] = ACTIONS(4848), - [anon_sym___attribute__] = ACTIONS(4848), - [anon_sym_COLON_COLON] = ACTIONS(4850), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4850), - [anon_sym___declspec] = ACTIONS(4848), - [anon_sym___based] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4850), - [anon_sym_LBRACK] = ACTIONS(4848), - [anon_sym_EQ] = ACTIONS(4848), - [anon_sym_static] = ACTIONS(4848), - [anon_sym_register] = ACTIONS(4848), - [anon_sym_inline] = ACTIONS(4848), - [anon_sym___inline] = ACTIONS(4848), - [anon_sym___inline__] = ACTIONS(4848), - [anon_sym___forceinline] = ACTIONS(4848), - [anon_sym_thread_local] = ACTIONS(4848), - [anon_sym___thread] = ACTIONS(4848), - [anon_sym_const] = ACTIONS(4848), - [anon_sym_constexpr] = ACTIONS(4848), - [anon_sym_volatile] = ACTIONS(4848), - [anon_sym_restrict] = ACTIONS(4848), - [anon_sym___restrict__] = ACTIONS(4848), - [anon_sym__Atomic] = ACTIONS(4848), - [anon_sym__Noreturn] = ACTIONS(4848), - [anon_sym_noreturn] = ACTIONS(4848), - [anon_sym_mutable] = ACTIONS(4848), - [anon_sym_constinit] = ACTIONS(4848), - [anon_sym_consteval] = ACTIONS(4848), - [anon_sym_QMARK] = ACTIONS(4850), - [anon_sym_STAR_EQ] = ACTIONS(4850), - [anon_sym_SLASH_EQ] = ACTIONS(4850), - [anon_sym_PERCENT_EQ] = ACTIONS(4850), - [anon_sym_PLUS_EQ] = ACTIONS(4850), - [anon_sym_DASH_EQ] = ACTIONS(4850), - [anon_sym_LT_LT_EQ] = ACTIONS(4850), - [anon_sym_GT_GT_EQ] = ACTIONS(4850), - [anon_sym_AMP_EQ] = ACTIONS(4850), - [anon_sym_CARET_EQ] = ACTIONS(4850), - [anon_sym_PIPE_EQ] = ACTIONS(4850), - [anon_sym_and_eq] = ACTIONS(4848), - [anon_sym_or_eq] = ACTIONS(4848), - [anon_sym_xor_eq] = ACTIONS(4848), - [anon_sym_LT_EQ_GT] = ACTIONS(4850), - [anon_sym_or] = ACTIONS(4848), - [anon_sym_and] = ACTIONS(4848), - [anon_sym_bitor] = ACTIONS(4848), - [anon_sym_xor] = ACTIONS(4848), - [anon_sym_bitand] = ACTIONS(4848), - [anon_sym_not_eq] = ACTIONS(4848), - [anon_sym_DASH_DASH] = ACTIONS(4850), - [anon_sym_PLUS_PLUS] = ACTIONS(4850), - [anon_sym_DOT] = ACTIONS(4848), - [anon_sym_DOT_STAR] = ACTIONS(4850), - [anon_sym_DASH_GT] = ACTIONS(4848), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4848), - [anon_sym_decltype] = ACTIONS(4848), - [anon_sym_virtual] = ACTIONS(4848), - [anon_sym_alignas] = ACTIONS(4848), - [anon_sym_template] = ACTIONS(4848), - [anon_sym_operator] = ACTIONS(4848), - [anon_sym_DASH_GT_STAR] = ACTIONS(4850), - }, - [2300] = { - [sym_identifier] = ACTIONS(4892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4894), - [anon_sym_COMMA] = ACTIONS(4894), - [anon_sym_RPAREN] = ACTIONS(4894), - [anon_sym_LPAREN2] = ACTIONS(4894), - [anon_sym_TILDE] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4899), - [anon_sym_STAR] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4899), - [anon_sym_PERCENT] = ACTIONS(4899), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_CARET] = ACTIONS(4899), - [anon_sym_AMP] = ACTIONS(4901), - [anon_sym_EQ_EQ] = ACTIONS(4904), - [anon_sym_BANG_EQ] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4899), - [anon_sym_GT_EQ] = ACTIONS(4904), - [anon_sym_LT_EQ] = ACTIONS(4899), - [anon_sym_LT] = ACTIONS(4899), - [anon_sym_LT_LT] = ACTIONS(4899), - [anon_sym_GT_GT] = ACTIONS(4899), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_extern] = ACTIONS(4892), - [anon_sym___attribute__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4897), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4897), - [anon_sym___declspec] = ACTIONS(4892), - [anon_sym___based] = ACTIONS(4892), - [anon_sym_LBRACE] = ACTIONS(4897), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_EQ] = ACTIONS(4901), - [anon_sym_static] = ACTIONS(4892), - [anon_sym_register] = ACTIONS(4892), - [anon_sym_inline] = ACTIONS(4892), - [anon_sym___inline] = ACTIONS(4892), - [anon_sym___inline__] = ACTIONS(4892), - [anon_sym___forceinline] = ACTIONS(4892), - [anon_sym_thread_local] = ACTIONS(4892), - [anon_sym___thread] = ACTIONS(4892), - [anon_sym_const] = ACTIONS(4892), - [anon_sym_constexpr] = ACTIONS(4892), - [anon_sym_volatile] = ACTIONS(4892), - [anon_sym_restrict] = ACTIONS(4892), - [anon_sym___restrict__] = ACTIONS(4892), - [anon_sym__Atomic] = ACTIONS(4892), - [anon_sym__Noreturn] = ACTIONS(4892), - [anon_sym_noreturn] = ACTIONS(4892), - [anon_sym_mutable] = ACTIONS(4892), - [anon_sym_constinit] = ACTIONS(4892), - [anon_sym_consteval] = ACTIONS(4892), - [anon_sym_QMARK] = ACTIONS(4904), - [anon_sym_STAR_EQ] = ACTIONS(4904), - [anon_sym_SLASH_EQ] = ACTIONS(4904), - [anon_sym_PERCENT_EQ] = ACTIONS(4904), - [anon_sym_PLUS_EQ] = ACTIONS(4904), - [anon_sym_DASH_EQ] = ACTIONS(4904), - [anon_sym_LT_LT_EQ] = ACTIONS(4904), - [anon_sym_GT_GT_EQ] = ACTIONS(4904), - [anon_sym_AMP_EQ] = ACTIONS(4904), - [anon_sym_CARET_EQ] = ACTIONS(4904), - [anon_sym_PIPE_EQ] = ACTIONS(4904), - [anon_sym_and_eq] = ACTIONS(4899), - [anon_sym_or_eq] = ACTIONS(4899), - [anon_sym_xor_eq] = ACTIONS(4899), - [anon_sym_LT_EQ_GT] = ACTIONS(4904), - [anon_sym_or] = ACTIONS(4899), - [anon_sym_and] = ACTIONS(4899), - [anon_sym_bitor] = ACTIONS(4899), - [anon_sym_xor] = ACTIONS(4899), - [anon_sym_bitand] = ACTIONS(4899), - [anon_sym_not_eq] = ACTIONS(4899), - [anon_sym_DASH_DASH] = ACTIONS(4904), - [anon_sym_PLUS_PLUS] = ACTIONS(4904), - [anon_sym_DOT] = ACTIONS(4899), - [anon_sym_DOT_STAR] = ACTIONS(4904), - [anon_sym_DASH_GT] = ACTIONS(4899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4892), - [anon_sym_decltype] = ACTIONS(4892), - [anon_sym_virtual] = ACTIONS(4892), - [anon_sym_alignas] = ACTIONS(4892), - [anon_sym_template] = ACTIONS(4892), - [anon_sym_operator] = ACTIONS(4892), - [anon_sym_DASH_GT_STAR] = ACTIONS(4904), - }, - [2301] = { - [sym_identifier] = ACTIONS(4877), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4879), - [anon_sym_COMMA] = ACTIONS(4879), - [anon_sym_RPAREN] = ACTIONS(4879), - [anon_sym_LPAREN2] = ACTIONS(4879), - [anon_sym_TILDE] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4877), - [anon_sym_PLUS] = ACTIONS(4877), - [anon_sym_STAR] = ACTIONS(4877), - [anon_sym_SLASH] = ACTIONS(4877), - [anon_sym_PERCENT] = ACTIONS(4877), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4877), - [anon_sym_CARET] = ACTIONS(4877), - [anon_sym_AMP] = ACTIONS(4877), - [anon_sym_EQ_EQ] = ACTIONS(4879), - [anon_sym_BANG_EQ] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4877), - [anon_sym_GT_EQ] = ACTIONS(4879), - [anon_sym_LT_EQ] = ACTIONS(4877), - [anon_sym_LT] = ACTIONS(4877), - [anon_sym_LT_LT] = ACTIONS(4877), - [anon_sym_GT_GT] = ACTIONS(4877), - [anon_sym___extension__] = ACTIONS(4877), - [anon_sym_extern] = ACTIONS(4877), - [anon_sym___attribute__] = ACTIONS(4877), - [anon_sym_COLON_COLON] = ACTIONS(4879), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4879), - [anon_sym___declspec] = ACTIONS(4877), - [anon_sym___based] = ACTIONS(4877), - [anon_sym_LBRACE] = ACTIONS(4879), - [anon_sym_LBRACK] = ACTIONS(4877), - [anon_sym_EQ] = ACTIONS(4877), - [anon_sym_static] = ACTIONS(4877), - [anon_sym_register] = ACTIONS(4877), - [anon_sym_inline] = ACTIONS(4877), - [anon_sym___inline] = ACTIONS(4877), - [anon_sym___inline__] = ACTIONS(4877), - [anon_sym___forceinline] = ACTIONS(4877), - [anon_sym_thread_local] = ACTIONS(4877), - [anon_sym___thread] = ACTIONS(4877), - [anon_sym_const] = ACTIONS(4877), - [anon_sym_constexpr] = ACTIONS(4877), - [anon_sym_volatile] = ACTIONS(4877), - [anon_sym_restrict] = ACTIONS(4877), - [anon_sym___restrict__] = ACTIONS(4877), - [anon_sym__Atomic] = ACTIONS(4877), - [anon_sym__Noreturn] = ACTIONS(4877), - [anon_sym_noreturn] = ACTIONS(4877), - [anon_sym_mutable] = ACTIONS(4877), - [anon_sym_constinit] = ACTIONS(4877), - [anon_sym_consteval] = ACTIONS(4877), - [anon_sym_QMARK] = ACTIONS(4879), - [anon_sym_STAR_EQ] = ACTIONS(4879), - [anon_sym_SLASH_EQ] = ACTIONS(4879), - [anon_sym_PERCENT_EQ] = ACTIONS(4879), - [anon_sym_PLUS_EQ] = ACTIONS(4879), - [anon_sym_DASH_EQ] = ACTIONS(4879), - [anon_sym_LT_LT_EQ] = ACTIONS(4879), - [anon_sym_GT_GT_EQ] = ACTIONS(4879), - [anon_sym_AMP_EQ] = ACTIONS(4879), - [anon_sym_CARET_EQ] = ACTIONS(4879), - [anon_sym_PIPE_EQ] = ACTIONS(4879), - [anon_sym_and_eq] = ACTIONS(4877), - [anon_sym_or_eq] = ACTIONS(4877), - [anon_sym_xor_eq] = ACTIONS(4877), - [anon_sym_LT_EQ_GT] = ACTIONS(4879), - [anon_sym_or] = ACTIONS(4877), - [anon_sym_and] = ACTIONS(4877), - [anon_sym_bitor] = ACTIONS(4877), - [anon_sym_xor] = ACTIONS(4877), - [anon_sym_bitand] = ACTIONS(4877), - [anon_sym_not_eq] = ACTIONS(4877), - [anon_sym_DASH_DASH] = ACTIONS(4879), - [anon_sym_PLUS_PLUS] = ACTIONS(4879), - [anon_sym_DOT] = ACTIONS(4877), - [anon_sym_DOT_STAR] = ACTIONS(4879), - [anon_sym_DASH_GT] = ACTIONS(4877), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4877), - [anon_sym_decltype] = ACTIONS(4877), - [anon_sym_virtual] = ACTIONS(4877), - [anon_sym_alignas] = ACTIONS(4877), - [anon_sym_template] = ACTIONS(4877), - [anon_sym_operator] = ACTIONS(4877), - [anon_sym_DASH_GT_STAR] = ACTIONS(4879), - }, - [2302] = { - [sym_identifier] = ACTIONS(4888), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4890), - [anon_sym_COMMA] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4890), - [anon_sym_TILDE] = ACTIONS(4890), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_STAR] = ACTIONS(4888), - [anon_sym_SLASH] = ACTIONS(4888), - [anon_sym_PERCENT] = ACTIONS(4888), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4888), - [anon_sym_CARET] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4888), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4890), - [anon_sym_LT_EQ] = ACTIONS(4888), - [anon_sym_LT] = ACTIONS(4888), - [anon_sym_LT_LT] = ACTIONS(4888), - [anon_sym_GT_GT] = ACTIONS(4888), - [anon_sym___extension__] = ACTIONS(4888), - [anon_sym_extern] = ACTIONS(4888), - [anon_sym___attribute__] = ACTIONS(4888), - [anon_sym_COLON_COLON] = ACTIONS(4890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4890), - [anon_sym___declspec] = ACTIONS(4888), - [anon_sym___based] = ACTIONS(4888), - [anon_sym_LBRACE] = ACTIONS(4890), - [anon_sym_LBRACK] = ACTIONS(4888), - [anon_sym_EQ] = ACTIONS(4888), - [anon_sym_static] = ACTIONS(4888), - [anon_sym_register] = ACTIONS(4888), - [anon_sym_inline] = ACTIONS(4888), - [anon_sym___inline] = ACTIONS(4888), - [anon_sym___inline__] = ACTIONS(4888), - [anon_sym___forceinline] = ACTIONS(4888), - [anon_sym_thread_local] = ACTIONS(4888), - [anon_sym___thread] = ACTIONS(4888), - [anon_sym_const] = ACTIONS(4888), - [anon_sym_constexpr] = ACTIONS(4888), - [anon_sym_volatile] = ACTIONS(4888), - [anon_sym_restrict] = ACTIONS(4888), - [anon_sym___restrict__] = ACTIONS(4888), - [anon_sym__Atomic] = ACTIONS(4888), - [anon_sym__Noreturn] = ACTIONS(4888), - [anon_sym_noreturn] = ACTIONS(4888), - [anon_sym_mutable] = ACTIONS(4888), - [anon_sym_constinit] = ACTIONS(4888), - [anon_sym_consteval] = ACTIONS(4888), - [anon_sym_QMARK] = ACTIONS(4890), - [anon_sym_STAR_EQ] = ACTIONS(4890), - [anon_sym_SLASH_EQ] = ACTIONS(4890), - [anon_sym_PERCENT_EQ] = ACTIONS(4890), - [anon_sym_PLUS_EQ] = ACTIONS(4890), - [anon_sym_DASH_EQ] = ACTIONS(4890), - [anon_sym_LT_LT_EQ] = ACTIONS(4890), - [anon_sym_GT_GT_EQ] = ACTIONS(4890), - [anon_sym_AMP_EQ] = ACTIONS(4890), - [anon_sym_CARET_EQ] = ACTIONS(4890), - [anon_sym_PIPE_EQ] = ACTIONS(4890), - [anon_sym_and_eq] = ACTIONS(4888), - [anon_sym_or_eq] = ACTIONS(4888), - [anon_sym_xor_eq] = ACTIONS(4888), - [anon_sym_LT_EQ_GT] = ACTIONS(4890), - [anon_sym_or] = ACTIONS(4888), - [anon_sym_and] = ACTIONS(4888), - [anon_sym_bitor] = ACTIONS(4888), - [anon_sym_xor] = ACTIONS(4888), - [anon_sym_bitand] = ACTIONS(4888), - [anon_sym_not_eq] = ACTIONS(4888), - [anon_sym_DASH_DASH] = ACTIONS(4890), - [anon_sym_PLUS_PLUS] = ACTIONS(4890), - [anon_sym_DOT] = ACTIONS(4888), - [anon_sym_DOT_STAR] = ACTIONS(4890), - [anon_sym_DASH_GT] = ACTIONS(4888), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4888), - [anon_sym_decltype] = ACTIONS(4888), - [anon_sym_virtual] = ACTIONS(4888), - [anon_sym_alignas] = ACTIONS(4888), - [anon_sym_template] = ACTIONS(4888), - [anon_sym_operator] = ACTIONS(4888), - [anon_sym_DASH_GT_STAR] = ACTIONS(4890), - }, - [2303] = { - [sym_identifier] = ACTIONS(4892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), - [anon_sym_COMMA] = ACTIONS(4904), - [anon_sym_RPAREN] = ACTIONS(4904), - [anon_sym_LPAREN2] = ACTIONS(4894), - [anon_sym_TILDE] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4899), - [anon_sym_STAR] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4899), - [anon_sym_PERCENT] = ACTIONS(4899), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_CARET] = ACTIONS(4899), - [anon_sym_AMP] = ACTIONS(4901), - [anon_sym_EQ_EQ] = ACTIONS(4904), - [anon_sym_BANG_EQ] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4899), - [anon_sym_GT_EQ] = ACTIONS(4904), - [anon_sym_LT_EQ] = ACTIONS(4899), - [anon_sym_LT] = ACTIONS(4899), - [anon_sym_LT_LT] = ACTIONS(4899), - [anon_sym_GT_GT] = ACTIONS(4899), - [anon_sym_SEMI] = ACTIONS(4904), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_extern] = ACTIONS(4892), - [anon_sym___attribute__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4897), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4897), - [anon_sym___declspec] = ACTIONS(4892), - [anon_sym___based] = ACTIONS(4892), - [anon_sym_LBRACE] = ACTIONS(4897), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_EQ] = ACTIONS(4899), - [anon_sym_static] = ACTIONS(4892), - [anon_sym_register] = ACTIONS(4892), - [anon_sym_inline] = ACTIONS(4892), - [anon_sym___inline] = ACTIONS(4892), - [anon_sym___inline__] = ACTIONS(4892), - [anon_sym___forceinline] = ACTIONS(4892), - [anon_sym_thread_local] = ACTIONS(4892), - [anon_sym___thread] = ACTIONS(4892), - [anon_sym_const] = ACTIONS(4892), - [anon_sym_constexpr] = ACTIONS(4892), - [anon_sym_volatile] = ACTIONS(4892), - [anon_sym_restrict] = ACTIONS(4892), - [anon_sym___restrict__] = ACTIONS(4892), - [anon_sym__Atomic] = ACTIONS(4892), - [anon_sym__Noreturn] = ACTIONS(4892), - [anon_sym_noreturn] = ACTIONS(4892), - [anon_sym_mutable] = ACTIONS(4892), - [anon_sym_constinit] = ACTIONS(4892), - [anon_sym_consteval] = ACTIONS(4892), - [anon_sym_QMARK] = ACTIONS(4904), - [anon_sym_STAR_EQ] = ACTIONS(4904), - [anon_sym_SLASH_EQ] = ACTIONS(4904), - [anon_sym_PERCENT_EQ] = ACTIONS(4904), - [anon_sym_PLUS_EQ] = ACTIONS(4904), - [anon_sym_DASH_EQ] = ACTIONS(4904), - [anon_sym_LT_LT_EQ] = ACTIONS(4904), - [anon_sym_GT_GT_EQ] = ACTIONS(4904), - [anon_sym_AMP_EQ] = ACTIONS(4904), - [anon_sym_CARET_EQ] = ACTIONS(4904), - [anon_sym_PIPE_EQ] = ACTIONS(4904), - [anon_sym_and_eq] = ACTIONS(4899), - [anon_sym_or_eq] = ACTIONS(4899), - [anon_sym_xor_eq] = ACTIONS(4899), - [anon_sym_LT_EQ_GT] = ACTIONS(4904), - [anon_sym_or] = ACTIONS(4899), - [anon_sym_and] = ACTIONS(4899), - [anon_sym_bitor] = ACTIONS(4899), - [anon_sym_xor] = ACTIONS(4899), - [anon_sym_bitand] = ACTIONS(4899), - [anon_sym_not_eq] = ACTIONS(4899), - [anon_sym_DASH_DASH] = ACTIONS(4904), - [anon_sym_PLUS_PLUS] = ACTIONS(4904), - [anon_sym_DOT] = ACTIONS(4899), - [anon_sym_DOT_STAR] = ACTIONS(4904), - [anon_sym_DASH_GT] = ACTIONS(4904), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4892), - [anon_sym_decltype] = ACTIONS(4892), - [anon_sym_virtual] = ACTIONS(4892), - [anon_sym_alignas] = ACTIONS(4892), - [anon_sym_template] = ACTIONS(4892), - [anon_sym_operator] = ACTIONS(4892), - }, - [2304] = { - [sym_template_argument_list] = STATE(2306), - [sym_identifier] = ACTIONS(4860), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4862), - [anon_sym_COMMA] = ACTIONS(4862), - [anon_sym_RPAREN] = ACTIONS(4862), - [anon_sym_LPAREN2] = ACTIONS(4862), - [anon_sym_TILDE] = ACTIONS(4865), - [anon_sym_DASH] = ACTIONS(4867), - [anon_sym_PLUS] = ACTIONS(4867), - [anon_sym_STAR] = ACTIONS(4869), - [anon_sym_SLASH] = ACTIONS(4867), - [anon_sym_PERCENT] = ACTIONS(4867), - [anon_sym_PIPE_PIPE] = ACTIONS(4872), - [anon_sym_AMP_AMP] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_CARET] = ACTIONS(4867), - [anon_sym_AMP] = ACTIONS(4869), - [anon_sym_EQ_EQ] = ACTIONS(4872), - [anon_sym_BANG_EQ] = ACTIONS(4872), - [anon_sym_GT] = ACTIONS(4867), - [anon_sym_GT_EQ] = ACTIONS(4872), - [anon_sym_LT_EQ] = ACTIONS(4867), - [anon_sym_LT] = ACTIONS(4881), - [anon_sym_LT_LT] = ACTIONS(4867), - [anon_sym_GT_GT] = ACTIONS(4867), - [anon_sym___extension__] = ACTIONS(4860), - [anon_sym_extern] = ACTIONS(4860), - [anon_sym___attribute__] = ACTIONS(4860), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4865), - [anon_sym___declspec] = ACTIONS(4860), - [anon_sym___based] = ACTIONS(4860), - [anon_sym_LBRACE] = ACTIONS(4865), - [anon_sym_LBRACK] = ACTIONS(4869), - [anon_sym_EQ] = ACTIONS(4869), - [anon_sym_static] = ACTIONS(4860), - [anon_sym_register] = ACTIONS(4860), - [anon_sym_inline] = ACTIONS(4860), - [anon_sym___inline] = ACTIONS(4860), - [anon_sym___inline__] = ACTIONS(4860), - [anon_sym___forceinline] = ACTIONS(4860), - [anon_sym_thread_local] = ACTIONS(4860), - [anon_sym___thread] = ACTIONS(4860), - [anon_sym_const] = ACTIONS(4860), - [anon_sym_constexpr] = ACTIONS(4860), - [anon_sym_volatile] = ACTIONS(4860), - [anon_sym_restrict] = ACTIONS(4860), - [anon_sym___restrict__] = ACTIONS(4860), - [anon_sym__Atomic] = ACTIONS(4860), - [anon_sym__Noreturn] = ACTIONS(4860), - [anon_sym_noreturn] = ACTIONS(4860), - [anon_sym_mutable] = ACTIONS(4860), - [anon_sym_constinit] = ACTIONS(4860), - [anon_sym_consteval] = ACTIONS(4860), - [anon_sym_QMARK] = ACTIONS(4872), - [anon_sym_STAR_EQ] = ACTIONS(4872), - [anon_sym_SLASH_EQ] = ACTIONS(4872), - [anon_sym_PERCENT_EQ] = ACTIONS(4872), - [anon_sym_PLUS_EQ] = ACTIONS(4872), - [anon_sym_DASH_EQ] = ACTIONS(4872), - [anon_sym_LT_LT_EQ] = ACTIONS(4872), - [anon_sym_GT_GT_EQ] = ACTIONS(4872), - [anon_sym_AMP_EQ] = ACTIONS(4872), - [anon_sym_CARET_EQ] = ACTIONS(4872), - [anon_sym_PIPE_EQ] = ACTIONS(4872), - [anon_sym_and_eq] = ACTIONS(4867), - [anon_sym_or_eq] = ACTIONS(4867), - [anon_sym_xor_eq] = ACTIONS(4867), - [anon_sym_LT_EQ_GT] = ACTIONS(4872), - [anon_sym_or] = ACTIONS(4867), - [anon_sym_and] = ACTIONS(4867), - [anon_sym_bitor] = ACTIONS(4867), - [anon_sym_xor] = ACTIONS(4867), - [anon_sym_bitand] = ACTIONS(4867), - [anon_sym_not_eq] = ACTIONS(4867), - [anon_sym_DASH_DASH] = ACTIONS(4872), - [anon_sym_PLUS_PLUS] = ACTIONS(4872), - [anon_sym_DOT] = ACTIONS(4867), - [anon_sym_DOT_STAR] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4872), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4860), - [anon_sym_decltype] = ACTIONS(4860), - [anon_sym_virtual] = ACTIONS(4860), - [anon_sym_alignas] = ACTIONS(4860), - [anon_sym_template] = ACTIONS(4860), - [anon_sym_operator] = ACTIONS(4860), - }, - [2305] = { - [sym_identifier] = ACTIONS(4892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), - [anon_sym_COMMA] = ACTIONS(4904), - [anon_sym_LPAREN2] = ACTIONS(4894), - [anon_sym_TILDE] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4899), - [anon_sym_STAR] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4899), - [anon_sym_PERCENT] = ACTIONS(4899), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_CARET] = ACTIONS(4899), - [anon_sym_AMP] = ACTIONS(4901), - [anon_sym_EQ_EQ] = ACTIONS(4904), - [anon_sym_BANG_EQ] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4899), - [anon_sym_GT_EQ] = ACTIONS(4904), - [anon_sym_LT_EQ] = ACTIONS(4899), - [anon_sym_LT] = ACTIONS(4899), - [anon_sym_LT_LT] = ACTIONS(4899), - [anon_sym_GT_GT] = ACTIONS(4899), - [anon_sym_SEMI] = ACTIONS(4894), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_extern] = ACTIONS(4892), - [anon_sym___attribute__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4897), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4894), - [anon_sym___declspec] = ACTIONS(4892), - [anon_sym___based] = ACTIONS(4892), - [anon_sym_LBRACE] = ACTIONS(4897), - [anon_sym_RBRACE] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_EQ] = ACTIONS(4899), - [anon_sym_static] = ACTIONS(4892), - [anon_sym_register] = ACTIONS(4892), - [anon_sym_inline] = ACTIONS(4892), - [anon_sym___inline] = ACTIONS(4892), - [anon_sym___inline__] = ACTIONS(4892), - [anon_sym___forceinline] = ACTIONS(4892), - [anon_sym_thread_local] = ACTIONS(4892), - [anon_sym___thread] = ACTIONS(4892), - [anon_sym_const] = ACTIONS(4892), - [anon_sym_constexpr] = ACTIONS(4892), - [anon_sym_volatile] = ACTIONS(4892), - [anon_sym_restrict] = ACTIONS(4892), - [anon_sym___restrict__] = ACTIONS(4892), - [anon_sym__Atomic] = ACTIONS(4892), - [anon_sym__Noreturn] = ACTIONS(4892), - [anon_sym_noreturn] = ACTIONS(4892), - [anon_sym_mutable] = ACTIONS(4892), - [anon_sym_constinit] = ACTIONS(4892), - [anon_sym_consteval] = ACTIONS(4892), - [anon_sym_QMARK] = ACTIONS(4904), - [anon_sym_STAR_EQ] = ACTIONS(4904), - [anon_sym_SLASH_EQ] = ACTIONS(4904), - [anon_sym_PERCENT_EQ] = ACTIONS(4904), - [anon_sym_PLUS_EQ] = ACTIONS(4904), - [anon_sym_DASH_EQ] = ACTIONS(4904), - [anon_sym_LT_LT_EQ] = ACTIONS(4904), - [anon_sym_GT_GT_EQ] = ACTIONS(4904), - [anon_sym_AMP_EQ] = ACTIONS(4904), - [anon_sym_CARET_EQ] = ACTIONS(4904), - [anon_sym_PIPE_EQ] = ACTIONS(4904), - [anon_sym_and_eq] = ACTIONS(4899), - [anon_sym_or_eq] = ACTIONS(4899), - [anon_sym_xor_eq] = ACTIONS(4899), - [anon_sym_LT_EQ_GT] = ACTIONS(4904), - [anon_sym_or] = ACTIONS(4899), - [anon_sym_and] = ACTIONS(4899), - [anon_sym_bitor] = ACTIONS(4899), - [anon_sym_xor] = ACTIONS(4899), - [anon_sym_bitand] = ACTIONS(4899), - [anon_sym_not_eq] = ACTIONS(4899), - [anon_sym_DASH_DASH] = ACTIONS(4904), - [anon_sym_PLUS_PLUS] = ACTIONS(4904), - [anon_sym_DOT] = ACTIONS(4899), - [anon_sym_DOT_STAR] = ACTIONS(4904), - [anon_sym_DASH_GT] = ACTIONS(4904), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4892), - [anon_sym_decltype] = ACTIONS(4892), - [anon_sym_virtual] = ACTIONS(4892), - [anon_sym_alignas] = ACTIONS(4892), - [anon_sym_template] = ACTIONS(4892), - [anon_sym_operator] = ACTIONS(4892), - }, - [2306] = { - [sym_identifier] = ACTIONS(4892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4894), - [anon_sym_COMMA] = ACTIONS(4894), - [anon_sym_RPAREN] = ACTIONS(4894), - [anon_sym_LPAREN2] = ACTIONS(4894), - [anon_sym_TILDE] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4899), - [anon_sym_STAR] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4899), - [anon_sym_PERCENT] = ACTIONS(4899), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_CARET] = ACTIONS(4899), - [anon_sym_AMP] = ACTIONS(4901), - [anon_sym_EQ_EQ] = ACTIONS(4904), - [anon_sym_BANG_EQ] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4899), - [anon_sym_GT_EQ] = ACTIONS(4904), - [anon_sym_LT_EQ] = ACTIONS(4899), - [anon_sym_LT] = ACTIONS(4899), - [anon_sym_LT_LT] = ACTIONS(4899), - [anon_sym_GT_GT] = ACTIONS(4899), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_extern] = ACTIONS(4892), - [anon_sym___attribute__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4897), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4897), - [anon_sym___declspec] = ACTIONS(4892), - [anon_sym___based] = ACTIONS(4892), - [anon_sym_LBRACE] = ACTIONS(4897), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_EQ] = ACTIONS(4901), - [anon_sym_static] = ACTIONS(4892), - [anon_sym_register] = ACTIONS(4892), - [anon_sym_inline] = ACTIONS(4892), - [anon_sym___inline] = ACTIONS(4892), - [anon_sym___inline__] = ACTIONS(4892), - [anon_sym___forceinline] = ACTIONS(4892), - [anon_sym_thread_local] = ACTIONS(4892), - [anon_sym___thread] = ACTIONS(4892), - [anon_sym_const] = ACTIONS(4892), - [anon_sym_constexpr] = ACTIONS(4892), - [anon_sym_volatile] = ACTIONS(4892), - [anon_sym_restrict] = ACTIONS(4892), - [anon_sym___restrict__] = ACTIONS(4892), - [anon_sym__Atomic] = ACTIONS(4892), - [anon_sym__Noreturn] = ACTIONS(4892), - [anon_sym_noreturn] = ACTIONS(4892), - [anon_sym_mutable] = ACTIONS(4892), - [anon_sym_constinit] = ACTIONS(4892), - [anon_sym_consteval] = ACTIONS(4892), - [anon_sym_QMARK] = ACTIONS(4904), - [anon_sym_STAR_EQ] = ACTIONS(4904), - [anon_sym_SLASH_EQ] = ACTIONS(4904), - [anon_sym_PERCENT_EQ] = ACTIONS(4904), - [anon_sym_PLUS_EQ] = ACTIONS(4904), - [anon_sym_DASH_EQ] = ACTIONS(4904), - [anon_sym_LT_LT_EQ] = ACTIONS(4904), - [anon_sym_GT_GT_EQ] = ACTIONS(4904), - [anon_sym_AMP_EQ] = ACTIONS(4904), - [anon_sym_CARET_EQ] = ACTIONS(4904), - [anon_sym_PIPE_EQ] = ACTIONS(4904), - [anon_sym_and_eq] = ACTIONS(4899), - [anon_sym_or_eq] = ACTIONS(4899), - [anon_sym_xor_eq] = ACTIONS(4899), - [anon_sym_LT_EQ_GT] = ACTIONS(4904), - [anon_sym_or] = ACTIONS(4899), - [anon_sym_and] = ACTIONS(4899), - [anon_sym_bitor] = ACTIONS(4899), - [anon_sym_xor] = ACTIONS(4899), - [anon_sym_bitand] = ACTIONS(4899), - [anon_sym_not_eq] = ACTIONS(4899), - [anon_sym_DASH_DASH] = ACTIONS(4904), - [anon_sym_PLUS_PLUS] = ACTIONS(4904), - [anon_sym_DOT] = ACTIONS(4899), - [anon_sym_DOT_STAR] = ACTIONS(4904), - [anon_sym_DASH_GT] = ACTIONS(4904), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4892), - [anon_sym_decltype] = ACTIONS(4892), - [anon_sym_virtual] = ACTIONS(4892), - [anon_sym_alignas] = ACTIONS(4892), - [anon_sym_template] = ACTIONS(4892), - [anon_sym_operator] = ACTIONS(4892), - }, - [2307] = { - [sym__declaration_modifiers] = STATE(2688), - [sym__declaration_specifiers] = STATE(4733), - [sym_attribute_specifier] = STATE(2688), - [sym_attribute_declaration] = STATE(2688), - [sym_ms_declspec_modifier] = STATE(2688), - [sym__abstract_declarator] = STATE(7545), - [sym_abstract_parenthesized_declarator] = STATE(6825), - [sym_abstract_pointer_declarator] = STATE(6825), - [sym_abstract_function_declarator] = STATE(6825), - [sym_abstract_array_declarator] = STATE(6825), - [sym_storage_class_specifier] = STATE(2688), - [sym_type_qualifier] = STATE(2688), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_parameter_list] = STATE(4706), - [sym_parameter_declaration] = STATE(8273), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2688), - [sym_alignas_specifier] = STATE(2688), - [sym_dependent_type] = STATE(3958), - [sym_optional_parameter_declaration] = STATE(8273), - [sym_variadic_parameter_declaration] = STATE(8273), - [sym_abstract_reference_declarator] = STATE(6825), - [sym__function_declarator_seq] = STATE(6905), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7280), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2688), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4906), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(4320), - [anon_sym_LPAREN2] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4912), - [anon_sym_AMP] = ACTIONS(4914), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(4918), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(1960), - [anon_sym_template] = ACTIONS(1378), - }, - [2308] = { - [sym__declaration_modifiers] = STATE(2688), - [sym__declaration_specifiers] = STATE(4733), - [sym_attribute_specifier] = STATE(2688), - [sym_attribute_declaration] = STATE(2688), - [sym_ms_declspec_modifier] = STATE(2688), - [sym__abstract_declarator] = STATE(7548), - [sym_abstract_parenthesized_declarator] = STATE(6825), - [sym_abstract_pointer_declarator] = STATE(6825), - [sym_abstract_function_declarator] = STATE(6825), - [sym_abstract_array_declarator] = STATE(6825), - [sym_storage_class_specifier] = STATE(2688), - [sym_type_qualifier] = STATE(2688), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_parameter_list] = STATE(4706), - [sym_parameter_declaration] = STATE(8273), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2688), - [sym_alignas_specifier] = STATE(2688), - [sym_dependent_type] = STATE(3958), - [sym_optional_parameter_declaration] = STATE(8273), - [sym_variadic_parameter_declaration] = STATE(8273), - [sym_abstract_reference_declarator] = STATE(6825), - [sym__function_declarator_seq] = STATE(6905), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7280), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2688), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4906), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(4320), - [anon_sym_LPAREN2] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4912), - [anon_sym_AMP] = ACTIONS(4914), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(4918), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(1960), - [anon_sym_template] = ACTIONS(1378), - }, - [2309] = { - [sym_identifier] = ACTIONS(4848), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4850), - [anon_sym_COMMA] = ACTIONS(4850), - [anon_sym_RPAREN] = ACTIONS(4850), - [anon_sym_LPAREN2] = ACTIONS(4850), - [anon_sym_TILDE] = ACTIONS(4850), - [anon_sym_DASH] = ACTIONS(4848), - [anon_sym_PLUS] = ACTIONS(4848), - [anon_sym_STAR] = ACTIONS(4848), - [anon_sym_SLASH] = ACTIONS(4848), - [anon_sym_PERCENT] = ACTIONS(4848), - [anon_sym_PIPE_PIPE] = ACTIONS(4850), - [anon_sym_AMP_AMP] = ACTIONS(4850), - [anon_sym_PIPE] = ACTIONS(4848), - [anon_sym_CARET] = ACTIONS(4848), - [anon_sym_AMP] = ACTIONS(4848), - [anon_sym_EQ_EQ] = ACTIONS(4850), - [anon_sym_BANG_EQ] = ACTIONS(4850), - [anon_sym_GT] = ACTIONS(4848), - [anon_sym_GT_EQ] = ACTIONS(4850), - [anon_sym_LT_EQ] = ACTIONS(4848), - [anon_sym_LT] = ACTIONS(4848), - [anon_sym_LT_LT] = ACTIONS(4848), - [anon_sym_GT_GT] = ACTIONS(4848), - [anon_sym___extension__] = ACTIONS(4848), - [anon_sym_extern] = ACTIONS(4848), - [anon_sym___attribute__] = ACTIONS(4848), - [anon_sym_COLON_COLON] = ACTIONS(4850), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4850), - [anon_sym___declspec] = ACTIONS(4848), - [anon_sym___based] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4850), - [anon_sym_LBRACK] = ACTIONS(4848), - [anon_sym_EQ] = ACTIONS(4848), - [anon_sym_static] = ACTIONS(4848), - [anon_sym_register] = ACTIONS(4848), - [anon_sym_inline] = ACTIONS(4848), - [anon_sym___inline] = ACTIONS(4848), - [anon_sym___inline__] = ACTIONS(4848), - [anon_sym___forceinline] = ACTIONS(4848), - [anon_sym_thread_local] = ACTIONS(4848), - [anon_sym___thread] = ACTIONS(4848), - [anon_sym_const] = ACTIONS(4848), - [anon_sym_constexpr] = ACTIONS(4848), - [anon_sym_volatile] = ACTIONS(4848), - [anon_sym_restrict] = ACTIONS(4848), - [anon_sym___restrict__] = ACTIONS(4848), - [anon_sym__Atomic] = ACTIONS(4848), - [anon_sym__Noreturn] = ACTIONS(4848), - [anon_sym_noreturn] = ACTIONS(4848), - [anon_sym_mutable] = ACTIONS(4848), - [anon_sym_constinit] = ACTIONS(4848), - [anon_sym_consteval] = ACTIONS(4848), - [anon_sym_QMARK] = ACTIONS(4850), - [anon_sym_STAR_EQ] = ACTIONS(4850), - [anon_sym_SLASH_EQ] = ACTIONS(4850), - [anon_sym_PERCENT_EQ] = ACTIONS(4850), - [anon_sym_PLUS_EQ] = ACTIONS(4850), - [anon_sym_DASH_EQ] = ACTIONS(4850), - [anon_sym_LT_LT_EQ] = ACTIONS(4850), - [anon_sym_GT_GT_EQ] = ACTIONS(4850), - [anon_sym_AMP_EQ] = ACTIONS(4850), - [anon_sym_CARET_EQ] = ACTIONS(4850), - [anon_sym_PIPE_EQ] = ACTIONS(4850), - [anon_sym_LT_EQ_GT] = ACTIONS(4850), - [anon_sym_or] = ACTIONS(4848), - [anon_sym_and] = ACTIONS(4848), - [anon_sym_bitor] = ACTIONS(4848), - [anon_sym_xor] = ACTIONS(4848), - [anon_sym_bitand] = ACTIONS(4848), - [anon_sym_not_eq] = ACTIONS(4848), - [anon_sym_DASH_DASH] = ACTIONS(4850), - [anon_sym_PLUS_PLUS] = ACTIONS(4850), - [anon_sym_DOT] = ACTIONS(4848), - [anon_sym_DOT_STAR] = ACTIONS(4850), - [anon_sym_DASH_GT] = ACTIONS(4848), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4848), - [anon_sym_decltype] = ACTIONS(4848), - [anon_sym_virtual] = ACTIONS(4848), - [anon_sym_alignas] = ACTIONS(4848), - [anon_sym_template] = ACTIONS(4848), - [anon_sym_operator] = ACTIONS(4848), - [anon_sym_DASH_GT_STAR] = ACTIONS(4850), - }, - [2310] = { - [sym_identifier] = ACTIONS(4892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4894), - [anon_sym_COMMA] = ACTIONS(4894), - [anon_sym_RPAREN] = ACTIONS(4894), - [anon_sym_LPAREN2] = ACTIONS(4894), - [anon_sym_TILDE] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4899), - [anon_sym_STAR] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4899), - [anon_sym_PERCENT] = ACTIONS(4899), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_CARET] = ACTIONS(4899), - [anon_sym_AMP] = ACTIONS(4901), - [anon_sym_EQ_EQ] = ACTIONS(4904), - [anon_sym_BANG_EQ] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4899), - [anon_sym_GT_EQ] = ACTIONS(4904), - [anon_sym_LT_EQ] = ACTIONS(4899), - [anon_sym_LT] = ACTIONS(4899), - [anon_sym_LT_LT] = ACTIONS(4899), - [anon_sym_GT_GT] = ACTIONS(4899), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_extern] = ACTIONS(4892), - [anon_sym___attribute__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4897), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4897), - [anon_sym___declspec] = ACTIONS(4892), - [anon_sym___based] = ACTIONS(4892), - [anon_sym_LBRACE] = ACTIONS(4897), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_EQ] = ACTIONS(4901), - [anon_sym_static] = ACTIONS(4892), - [anon_sym_register] = ACTIONS(4892), - [anon_sym_inline] = ACTIONS(4892), - [anon_sym___inline] = ACTIONS(4892), - [anon_sym___inline__] = ACTIONS(4892), - [anon_sym___forceinline] = ACTIONS(4892), - [anon_sym_thread_local] = ACTIONS(4892), - [anon_sym___thread] = ACTIONS(4892), - [anon_sym_const] = ACTIONS(4892), - [anon_sym_constexpr] = ACTIONS(4892), - [anon_sym_volatile] = ACTIONS(4892), - [anon_sym_restrict] = ACTIONS(4892), - [anon_sym___restrict__] = ACTIONS(4892), - [anon_sym__Atomic] = ACTIONS(4892), - [anon_sym__Noreturn] = ACTIONS(4892), - [anon_sym_noreturn] = ACTIONS(4892), - [anon_sym_mutable] = ACTIONS(4892), - [anon_sym_constinit] = ACTIONS(4892), - [anon_sym_consteval] = ACTIONS(4892), - [anon_sym_QMARK] = ACTIONS(4904), - [anon_sym_STAR_EQ] = ACTIONS(4904), - [anon_sym_SLASH_EQ] = ACTIONS(4904), - [anon_sym_PERCENT_EQ] = ACTIONS(4904), - [anon_sym_PLUS_EQ] = ACTIONS(4904), - [anon_sym_DASH_EQ] = ACTIONS(4904), - [anon_sym_LT_LT_EQ] = ACTIONS(4904), - [anon_sym_GT_GT_EQ] = ACTIONS(4904), - [anon_sym_AMP_EQ] = ACTIONS(4904), - [anon_sym_CARET_EQ] = ACTIONS(4904), - [anon_sym_PIPE_EQ] = ACTIONS(4904), - [anon_sym_LT_EQ_GT] = ACTIONS(4904), - [anon_sym_or] = ACTIONS(4899), - [anon_sym_and] = ACTIONS(4899), - [anon_sym_bitor] = ACTIONS(4899), - [anon_sym_xor] = ACTIONS(4899), - [anon_sym_bitand] = ACTIONS(4899), - [anon_sym_not_eq] = ACTIONS(4899), - [anon_sym_DASH_DASH] = ACTIONS(4904), - [anon_sym_PLUS_PLUS] = ACTIONS(4904), - [anon_sym_DOT] = ACTIONS(4899), - [anon_sym_DOT_STAR] = ACTIONS(4904), - [anon_sym_DASH_GT] = ACTIONS(4899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4892), - [anon_sym_decltype] = ACTIONS(4892), - [anon_sym_virtual] = ACTIONS(4892), - [anon_sym_alignas] = ACTIONS(4892), - [anon_sym_template] = ACTIONS(4892), - [anon_sym_operator] = ACTIONS(4892), - [anon_sym_DASH_GT_STAR] = ACTIONS(4904), - }, - [2311] = { - [sym_identifier] = ACTIONS(4884), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4886), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_LPAREN2] = ACTIONS(4886), - [anon_sym_TILDE] = ACTIONS(4886), - [anon_sym_DASH] = ACTIONS(4884), - [anon_sym_PLUS] = ACTIONS(4884), - [anon_sym_STAR] = ACTIONS(4884), - [anon_sym_SLASH] = ACTIONS(4884), - [anon_sym_PERCENT] = ACTIONS(4884), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4884), - [anon_sym_CARET] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4884), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4884), - [anon_sym_GT_EQ] = ACTIONS(4886), - [anon_sym_LT_EQ] = ACTIONS(4884), - [anon_sym_LT] = ACTIONS(4884), - [anon_sym_LT_LT] = ACTIONS(4884), - [anon_sym_GT_GT] = ACTIONS(4884), - [anon_sym___extension__] = ACTIONS(4884), - [anon_sym_extern] = ACTIONS(4884), - [anon_sym___attribute__] = ACTIONS(4884), - [anon_sym_COLON_COLON] = ACTIONS(4886), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4886), - [anon_sym___declspec] = ACTIONS(4884), - [anon_sym___based] = ACTIONS(4884), - [anon_sym_LBRACE] = ACTIONS(4886), - [anon_sym_LBRACK] = ACTIONS(4884), - [anon_sym_EQ] = ACTIONS(4884), - [anon_sym_static] = ACTIONS(4884), - [anon_sym_register] = ACTIONS(4884), - [anon_sym_inline] = ACTIONS(4884), - [anon_sym___inline] = ACTIONS(4884), - [anon_sym___inline__] = ACTIONS(4884), - [anon_sym___forceinline] = ACTIONS(4884), - [anon_sym_thread_local] = ACTIONS(4884), - [anon_sym___thread] = ACTIONS(4884), - [anon_sym_const] = ACTIONS(4884), - [anon_sym_constexpr] = ACTIONS(4884), - [anon_sym_volatile] = ACTIONS(4884), - [anon_sym_restrict] = ACTIONS(4884), - [anon_sym___restrict__] = ACTIONS(4884), - [anon_sym__Atomic] = ACTIONS(4884), - [anon_sym__Noreturn] = ACTIONS(4884), - [anon_sym_noreturn] = ACTIONS(4884), - [anon_sym_mutable] = ACTIONS(4884), - [anon_sym_constinit] = ACTIONS(4884), - [anon_sym_consteval] = ACTIONS(4884), - [anon_sym_QMARK] = ACTIONS(4886), - [anon_sym_STAR_EQ] = ACTIONS(4886), - [anon_sym_SLASH_EQ] = ACTIONS(4886), - [anon_sym_PERCENT_EQ] = ACTIONS(4886), - [anon_sym_PLUS_EQ] = ACTIONS(4886), - [anon_sym_DASH_EQ] = ACTIONS(4886), - [anon_sym_LT_LT_EQ] = ACTIONS(4886), - [anon_sym_GT_GT_EQ] = ACTIONS(4886), - [anon_sym_AMP_EQ] = ACTIONS(4886), - [anon_sym_CARET_EQ] = ACTIONS(4886), - [anon_sym_PIPE_EQ] = ACTIONS(4886), - [anon_sym_LT_EQ_GT] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4884), - [anon_sym_and] = ACTIONS(4884), - [anon_sym_bitor] = ACTIONS(4884), - [anon_sym_xor] = ACTIONS(4884), - [anon_sym_bitand] = ACTIONS(4884), - [anon_sym_not_eq] = ACTIONS(4884), - [anon_sym_DASH_DASH] = ACTIONS(4886), - [anon_sym_PLUS_PLUS] = ACTIONS(4886), - [anon_sym_DOT] = ACTIONS(4884), - [anon_sym_DOT_STAR] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4884), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4884), - [anon_sym_decltype] = ACTIONS(4884), - [anon_sym_virtual] = ACTIONS(4884), - [anon_sym_alignas] = ACTIONS(4884), - [anon_sym_template] = ACTIONS(4884), - [anon_sym_operator] = ACTIONS(4884), - [anon_sym_DASH_GT_STAR] = ACTIONS(4886), - }, - [2312] = { - [sym_identifier] = ACTIONS(4856), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4858), - [anon_sym_COMMA] = ACTIONS(4858), - [anon_sym_RPAREN] = ACTIONS(4858), - [anon_sym_LPAREN2] = ACTIONS(4858), - [anon_sym_TILDE] = ACTIONS(4858), - [anon_sym_DASH] = ACTIONS(4856), - [anon_sym_PLUS] = ACTIONS(4856), - [anon_sym_STAR] = ACTIONS(4856), - [anon_sym_SLASH] = ACTIONS(4856), - [anon_sym_PERCENT] = ACTIONS(4856), - [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_AMP_AMP] = ACTIONS(4858), - [anon_sym_PIPE] = ACTIONS(4856), - [anon_sym_CARET] = ACTIONS(4856), - [anon_sym_AMP] = ACTIONS(4856), - [anon_sym_EQ_EQ] = ACTIONS(4858), - [anon_sym_BANG_EQ] = ACTIONS(4858), - [anon_sym_GT] = ACTIONS(4856), - [anon_sym_GT_EQ] = ACTIONS(4858), - [anon_sym_LT_EQ] = ACTIONS(4856), - [anon_sym_LT] = ACTIONS(4856), - [anon_sym_LT_LT] = ACTIONS(4856), - [anon_sym_GT_GT] = ACTIONS(4856), - [anon_sym___extension__] = ACTIONS(4856), - [anon_sym_extern] = ACTIONS(4856), - [anon_sym___attribute__] = ACTIONS(4856), - [anon_sym_COLON_COLON] = ACTIONS(4858), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4858), - [anon_sym___declspec] = ACTIONS(4856), - [anon_sym___based] = ACTIONS(4856), - [anon_sym_LBRACE] = ACTIONS(4858), - [anon_sym_LBRACK] = ACTIONS(4856), - [anon_sym_EQ] = ACTIONS(4856), - [anon_sym_static] = ACTIONS(4856), - [anon_sym_register] = ACTIONS(4856), - [anon_sym_inline] = ACTIONS(4856), - [anon_sym___inline] = ACTIONS(4856), - [anon_sym___inline__] = ACTIONS(4856), - [anon_sym___forceinline] = ACTIONS(4856), - [anon_sym_thread_local] = ACTIONS(4856), - [anon_sym___thread] = ACTIONS(4856), - [anon_sym_const] = ACTIONS(4856), - [anon_sym_constexpr] = ACTIONS(4856), - [anon_sym_volatile] = ACTIONS(4856), - [anon_sym_restrict] = ACTIONS(4856), - [anon_sym___restrict__] = ACTIONS(4856), - [anon_sym__Atomic] = ACTIONS(4856), - [anon_sym__Noreturn] = ACTIONS(4856), - [anon_sym_noreturn] = ACTIONS(4856), - [anon_sym_mutable] = ACTIONS(4856), - [anon_sym_constinit] = ACTIONS(4856), - [anon_sym_consteval] = ACTIONS(4856), - [anon_sym_QMARK] = ACTIONS(4858), - [anon_sym_STAR_EQ] = ACTIONS(4858), - [anon_sym_SLASH_EQ] = ACTIONS(4858), - [anon_sym_PERCENT_EQ] = ACTIONS(4858), - [anon_sym_PLUS_EQ] = ACTIONS(4858), - [anon_sym_DASH_EQ] = ACTIONS(4858), - [anon_sym_LT_LT_EQ] = ACTIONS(4858), - [anon_sym_GT_GT_EQ] = ACTIONS(4858), - [anon_sym_AMP_EQ] = ACTIONS(4858), - [anon_sym_CARET_EQ] = ACTIONS(4858), - [anon_sym_PIPE_EQ] = ACTIONS(4858), - [anon_sym_LT_EQ_GT] = ACTIONS(4858), - [anon_sym_or] = ACTIONS(4856), - [anon_sym_and] = ACTIONS(4856), - [anon_sym_bitor] = ACTIONS(4856), - [anon_sym_xor] = ACTIONS(4856), - [anon_sym_bitand] = ACTIONS(4856), - [anon_sym_not_eq] = ACTIONS(4856), - [anon_sym_DASH_DASH] = ACTIONS(4858), - [anon_sym_PLUS_PLUS] = ACTIONS(4858), - [anon_sym_DOT] = ACTIONS(4856), - [anon_sym_DOT_STAR] = ACTIONS(4858), - [anon_sym_DASH_GT] = ACTIONS(4856), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4856), - [anon_sym_decltype] = ACTIONS(4856), - [anon_sym_virtual] = ACTIONS(4856), - [anon_sym_alignas] = ACTIONS(4856), - [anon_sym_template] = ACTIONS(4856), - [anon_sym_operator] = ACTIONS(4856), - [anon_sym_DASH_GT_STAR] = ACTIONS(4858), - }, - [2313] = { - [sym_identifier] = ACTIONS(4844), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4846), - [anon_sym_COMMA] = ACTIONS(4846), - [anon_sym_RPAREN] = ACTIONS(4846), - [anon_sym_LPAREN2] = ACTIONS(4846), - [anon_sym_TILDE] = ACTIONS(4846), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4844), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE] = ACTIONS(4844), - [anon_sym_CARET] = ACTIONS(4844), - [anon_sym_AMP] = ACTIONS(4844), - [anon_sym_EQ_EQ] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4846), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4844), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_LT_LT] = ACTIONS(4844), - [anon_sym_GT_GT] = ACTIONS(4844), - [anon_sym___extension__] = ACTIONS(4844), - [anon_sym_extern] = ACTIONS(4844), - [anon_sym___attribute__] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4846), - [anon_sym___declspec] = ACTIONS(4844), - [anon_sym___based] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4844), - [anon_sym_EQ] = ACTIONS(4844), - [anon_sym_static] = ACTIONS(4844), - [anon_sym_register] = ACTIONS(4844), - [anon_sym_inline] = ACTIONS(4844), - [anon_sym___inline] = ACTIONS(4844), - [anon_sym___inline__] = ACTIONS(4844), - [anon_sym___forceinline] = ACTIONS(4844), - [anon_sym_thread_local] = ACTIONS(4844), - [anon_sym___thread] = ACTIONS(4844), - [anon_sym_const] = ACTIONS(4844), - [anon_sym_constexpr] = ACTIONS(4844), - [anon_sym_volatile] = ACTIONS(4844), - [anon_sym_restrict] = ACTIONS(4844), - [anon_sym___restrict__] = ACTIONS(4844), - [anon_sym__Atomic] = ACTIONS(4844), - [anon_sym__Noreturn] = ACTIONS(4844), - [anon_sym_noreturn] = ACTIONS(4844), - [anon_sym_mutable] = ACTIONS(4844), - [anon_sym_constinit] = ACTIONS(4844), - [anon_sym_consteval] = ACTIONS(4844), - [anon_sym_QMARK] = ACTIONS(4846), - [anon_sym_STAR_EQ] = ACTIONS(4846), - [anon_sym_SLASH_EQ] = ACTIONS(4846), - [anon_sym_PERCENT_EQ] = ACTIONS(4846), - [anon_sym_PLUS_EQ] = ACTIONS(4846), - [anon_sym_DASH_EQ] = ACTIONS(4846), - [anon_sym_LT_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_GT_EQ] = ACTIONS(4846), - [anon_sym_AMP_EQ] = ACTIONS(4846), - [anon_sym_CARET_EQ] = ACTIONS(4846), - [anon_sym_PIPE_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ_GT] = ACTIONS(4846), - [anon_sym_or] = ACTIONS(4844), - [anon_sym_and] = ACTIONS(4844), - [anon_sym_bitor] = ACTIONS(4844), - [anon_sym_xor] = ACTIONS(4844), - [anon_sym_bitand] = ACTIONS(4844), - [anon_sym_not_eq] = ACTIONS(4844), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_DOT_STAR] = ACTIONS(4846), - [anon_sym_DASH_GT] = ACTIONS(4844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4844), - [anon_sym_decltype] = ACTIONS(4844), - [anon_sym_virtual] = ACTIONS(4844), - [anon_sym_alignas] = ACTIONS(4844), - [anon_sym_template] = ACTIONS(4844), - [anon_sym_operator] = ACTIONS(4844), - [anon_sym_DASH_GT_STAR] = ACTIONS(4846), - }, - [2314] = { - [sym_identifier] = ACTIONS(4877), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4879), - [anon_sym_COMMA] = ACTIONS(4879), - [anon_sym_RPAREN] = ACTIONS(4879), - [anon_sym_LPAREN2] = ACTIONS(4879), - [anon_sym_TILDE] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4877), - [anon_sym_PLUS] = ACTIONS(4877), - [anon_sym_STAR] = ACTIONS(4877), - [anon_sym_SLASH] = ACTIONS(4877), - [anon_sym_PERCENT] = ACTIONS(4877), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4877), - [anon_sym_CARET] = ACTIONS(4877), - [anon_sym_AMP] = ACTIONS(4877), - [anon_sym_EQ_EQ] = ACTIONS(4879), - [anon_sym_BANG_EQ] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4877), - [anon_sym_GT_EQ] = ACTIONS(4879), - [anon_sym_LT_EQ] = ACTIONS(4877), - [anon_sym_LT] = ACTIONS(4877), - [anon_sym_LT_LT] = ACTIONS(4877), - [anon_sym_GT_GT] = ACTIONS(4877), - [anon_sym___extension__] = ACTIONS(4877), - [anon_sym_extern] = ACTIONS(4877), - [anon_sym___attribute__] = ACTIONS(4877), - [anon_sym_COLON_COLON] = ACTIONS(4879), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4879), - [anon_sym___declspec] = ACTIONS(4877), - [anon_sym___based] = ACTIONS(4877), - [anon_sym_LBRACE] = ACTIONS(4879), - [anon_sym_LBRACK] = ACTIONS(4877), - [anon_sym_EQ] = ACTIONS(4877), - [anon_sym_static] = ACTIONS(4877), - [anon_sym_register] = ACTIONS(4877), - [anon_sym_inline] = ACTIONS(4877), - [anon_sym___inline] = ACTIONS(4877), - [anon_sym___inline__] = ACTIONS(4877), - [anon_sym___forceinline] = ACTIONS(4877), - [anon_sym_thread_local] = ACTIONS(4877), - [anon_sym___thread] = ACTIONS(4877), - [anon_sym_const] = ACTIONS(4877), - [anon_sym_constexpr] = ACTIONS(4877), - [anon_sym_volatile] = ACTIONS(4877), - [anon_sym_restrict] = ACTIONS(4877), - [anon_sym___restrict__] = ACTIONS(4877), - [anon_sym__Atomic] = ACTIONS(4877), - [anon_sym__Noreturn] = ACTIONS(4877), - [anon_sym_noreturn] = ACTIONS(4877), - [anon_sym_mutable] = ACTIONS(4877), - [anon_sym_constinit] = ACTIONS(4877), - [anon_sym_consteval] = ACTIONS(4877), - [anon_sym_QMARK] = ACTIONS(4879), - [anon_sym_STAR_EQ] = ACTIONS(4879), - [anon_sym_SLASH_EQ] = ACTIONS(4879), - [anon_sym_PERCENT_EQ] = ACTIONS(4879), - [anon_sym_PLUS_EQ] = ACTIONS(4879), - [anon_sym_DASH_EQ] = ACTIONS(4879), - [anon_sym_LT_LT_EQ] = ACTIONS(4879), - [anon_sym_GT_GT_EQ] = ACTIONS(4879), - [anon_sym_AMP_EQ] = ACTIONS(4879), - [anon_sym_CARET_EQ] = ACTIONS(4879), - [anon_sym_PIPE_EQ] = ACTIONS(4879), - [anon_sym_LT_EQ_GT] = ACTIONS(4879), - [anon_sym_or] = ACTIONS(4877), - [anon_sym_and] = ACTIONS(4877), - [anon_sym_bitor] = ACTIONS(4877), - [anon_sym_xor] = ACTIONS(4877), - [anon_sym_bitand] = ACTIONS(4877), - [anon_sym_not_eq] = ACTIONS(4877), - [anon_sym_DASH_DASH] = ACTIONS(4879), - [anon_sym_PLUS_PLUS] = ACTIONS(4879), - [anon_sym_DOT] = ACTIONS(4877), - [anon_sym_DOT_STAR] = ACTIONS(4879), - [anon_sym_DASH_GT] = ACTIONS(4877), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4877), - [anon_sym_decltype] = ACTIONS(4877), - [anon_sym_virtual] = ACTIONS(4877), - [anon_sym_alignas] = ACTIONS(4877), - [anon_sym_template] = ACTIONS(4877), - [anon_sym_operator] = ACTIONS(4877), - [anon_sym_DASH_GT_STAR] = ACTIONS(4879), - }, - [2315] = { - [sym_identifier] = ACTIONS(4888), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4890), - [anon_sym_COMMA] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4890), - [anon_sym_TILDE] = ACTIONS(4890), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_STAR] = ACTIONS(4888), - [anon_sym_SLASH] = ACTIONS(4888), - [anon_sym_PERCENT] = ACTIONS(4888), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4888), - [anon_sym_CARET] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4888), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4890), - [anon_sym_LT_EQ] = ACTIONS(4888), - [anon_sym_LT] = ACTIONS(4888), - [anon_sym_LT_LT] = ACTIONS(4888), - [anon_sym_GT_GT] = ACTIONS(4888), - [anon_sym___extension__] = ACTIONS(4888), - [anon_sym_extern] = ACTIONS(4888), - [anon_sym___attribute__] = ACTIONS(4888), - [anon_sym_COLON_COLON] = ACTIONS(4890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4890), - [anon_sym___declspec] = ACTIONS(4888), - [anon_sym___based] = ACTIONS(4888), - [anon_sym_LBRACE] = ACTIONS(4890), - [anon_sym_LBRACK] = ACTIONS(4888), - [anon_sym_EQ] = ACTIONS(4888), - [anon_sym_static] = ACTIONS(4888), - [anon_sym_register] = ACTIONS(4888), - [anon_sym_inline] = ACTIONS(4888), - [anon_sym___inline] = ACTIONS(4888), - [anon_sym___inline__] = ACTIONS(4888), - [anon_sym___forceinline] = ACTIONS(4888), - [anon_sym_thread_local] = ACTIONS(4888), - [anon_sym___thread] = ACTIONS(4888), - [anon_sym_const] = ACTIONS(4888), - [anon_sym_constexpr] = ACTIONS(4888), - [anon_sym_volatile] = ACTIONS(4888), - [anon_sym_restrict] = ACTIONS(4888), - [anon_sym___restrict__] = ACTIONS(4888), - [anon_sym__Atomic] = ACTIONS(4888), - [anon_sym__Noreturn] = ACTIONS(4888), - [anon_sym_noreturn] = ACTIONS(4888), - [anon_sym_mutable] = ACTIONS(4888), - [anon_sym_constinit] = ACTIONS(4888), - [anon_sym_consteval] = ACTIONS(4888), - [anon_sym_QMARK] = ACTIONS(4890), - [anon_sym_STAR_EQ] = ACTIONS(4890), - [anon_sym_SLASH_EQ] = ACTIONS(4890), - [anon_sym_PERCENT_EQ] = ACTIONS(4890), - [anon_sym_PLUS_EQ] = ACTIONS(4890), - [anon_sym_DASH_EQ] = ACTIONS(4890), - [anon_sym_LT_LT_EQ] = ACTIONS(4890), - [anon_sym_GT_GT_EQ] = ACTIONS(4890), - [anon_sym_AMP_EQ] = ACTIONS(4890), - [anon_sym_CARET_EQ] = ACTIONS(4890), - [anon_sym_PIPE_EQ] = ACTIONS(4890), - [anon_sym_LT_EQ_GT] = ACTIONS(4890), - [anon_sym_or] = ACTIONS(4888), - [anon_sym_and] = ACTIONS(4888), - [anon_sym_bitor] = ACTIONS(4888), - [anon_sym_xor] = ACTIONS(4888), - [anon_sym_bitand] = ACTIONS(4888), - [anon_sym_not_eq] = ACTIONS(4888), - [anon_sym_DASH_DASH] = ACTIONS(4890), - [anon_sym_PLUS_PLUS] = ACTIONS(4890), - [anon_sym_DOT] = ACTIONS(4888), - [anon_sym_DOT_STAR] = ACTIONS(4890), - [anon_sym_DASH_GT] = ACTIONS(4888), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4888), - [anon_sym_decltype] = ACTIONS(4888), - [anon_sym_virtual] = ACTIONS(4888), - [anon_sym_alignas] = ACTIONS(4888), - [anon_sym_template] = ACTIONS(4888), - [anon_sym_operator] = ACTIONS(4888), - [anon_sym_DASH_GT_STAR] = ACTIONS(4890), - }, - [2316] = { - [sym_identifier] = ACTIONS(4852), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_RPAREN] = ACTIONS(4854), - [anon_sym_LPAREN2] = ACTIONS(4854), - [anon_sym_TILDE] = ACTIONS(4854), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4852), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE] = ACTIONS(4852), - [anon_sym_CARET] = ACTIONS(4852), - [anon_sym_AMP] = ACTIONS(4852), - [anon_sym_EQ_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4854), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4852), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_LT_LT] = ACTIONS(4852), - [anon_sym_GT_GT] = ACTIONS(4852), - [anon_sym___extension__] = ACTIONS(4852), - [anon_sym_extern] = ACTIONS(4852), - [anon_sym___attribute__] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4854), - [anon_sym___declspec] = ACTIONS(4852), - [anon_sym___based] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4852), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_static] = ACTIONS(4852), - [anon_sym_register] = ACTIONS(4852), - [anon_sym_inline] = ACTIONS(4852), - [anon_sym___inline] = ACTIONS(4852), - [anon_sym___inline__] = ACTIONS(4852), - [anon_sym___forceinline] = ACTIONS(4852), - [anon_sym_thread_local] = ACTIONS(4852), - [anon_sym___thread] = ACTIONS(4852), - [anon_sym_const] = ACTIONS(4852), - [anon_sym_constexpr] = ACTIONS(4852), - [anon_sym_volatile] = ACTIONS(4852), - [anon_sym_restrict] = ACTIONS(4852), - [anon_sym___restrict__] = ACTIONS(4852), - [anon_sym__Atomic] = ACTIONS(4852), - [anon_sym__Noreturn] = ACTIONS(4852), - [anon_sym_noreturn] = ACTIONS(4852), - [anon_sym_mutable] = ACTIONS(4852), - [anon_sym_constinit] = ACTIONS(4852), - [anon_sym_consteval] = ACTIONS(4852), - [anon_sym_QMARK] = ACTIONS(4854), - [anon_sym_STAR_EQ] = ACTIONS(4854), - [anon_sym_SLASH_EQ] = ACTIONS(4854), - [anon_sym_PERCENT_EQ] = ACTIONS(4854), - [anon_sym_PLUS_EQ] = ACTIONS(4854), - [anon_sym_DASH_EQ] = ACTIONS(4854), - [anon_sym_LT_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_GT_EQ] = ACTIONS(4854), - [anon_sym_AMP_EQ] = ACTIONS(4854), - [anon_sym_CARET_EQ] = ACTIONS(4854), - [anon_sym_PIPE_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ_GT] = ACTIONS(4854), - [anon_sym_or] = ACTIONS(4852), - [anon_sym_and] = ACTIONS(4852), - [anon_sym_bitor] = ACTIONS(4852), - [anon_sym_xor] = ACTIONS(4852), - [anon_sym_bitand] = ACTIONS(4852), - [anon_sym_not_eq] = ACTIONS(4852), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_DOT_STAR] = ACTIONS(4854), - [anon_sym_DASH_GT] = ACTIONS(4852), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4852), - [anon_sym_decltype] = ACTIONS(4852), - [anon_sym_virtual] = ACTIONS(4852), - [anon_sym_alignas] = ACTIONS(4852), - [anon_sym_template] = ACTIONS(4852), - [anon_sym_operator] = ACTIONS(4852), - [anon_sym_DASH_GT_STAR] = ACTIONS(4854), - }, - [2317] = { - [sym_string_literal] = STATE(2866), - [sym_template_argument_list] = STATE(2623), - [sym_raw_string_literal] = STATE(2866), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_RPAREN] = ACTIONS(4280), - [anon_sym_LPAREN2] = ACTIONS(4280), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4358), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym___extension__] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4920), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4304), - [anon_sym_EQ] = ACTIONS(4286), - [anon_sym_const] = ACTIONS(4276), - [anon_sym_constexpr] = ACTIONS(4284), - [anon_sym_volatile] = ACTIONS(4284), - [anon_sym_restrict] = ACTIONS(4284), - [anon_sym___restrict__] = ACTIONS(4284), - [anon_sym__Atomic] = ACTIONS(4284), - [anon_sym__Noreturn] = ACTIONS(4284), - [anon_sym_noreturn] = ACTIONS(4284), - [anon_sym_mutable] = ACTIONS(4284), - [anon_sym_constinit] = ACTIONS(4284), - [anon_sym_consteval] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_and_eq] = ACTIONS(4922), - [anon_sym_or_eq] = ACTIONS(4922), - [anon_sym_xor_eq] = ACTIONS(4922), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4286), - [anon_sym_L_DQUOTE] = ACTIONS(4363), - [anon_sym_u_DQUOTE] = ACTIONS(4363), - [anon_sym_U_DQUOTE] = ACTIONS(4363), - [anon_sym_u8_DQUOTE] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(4363), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4284), - [anon_sym_decltype] = ACTIONS(4284), - [anon_sym_R_DQUOTE] = ACTIONS(4365), - [anon_sym_LR_DQUOTE] = ACTIONS(4365), - [anon_sym_uR_DQUOTE] = ACTIONS(4365), - [anon_sym_UR_DQUOTE] = ACTIONS(4365), - [anon_sym_u8R_DQUOTE] = ACTIONS(4365), - [anon_sym_DASH_GT_STAR] = ACTIONS(4278), - }, - [2318] = { - [sym_string_literal] = STATE(2866), - [sym_template_argument_list] = STATE(2793), - [sym_raw_string_literal] = STATE(2866), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_RPAREN] = ACTIONS(4291), - [anon_sym_LPAREN2] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym___extension__] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4286), - [anon_sym_const] = ACTIONS(4276), - [anon_sym_constexpr] = ACTIONS(4284), - [anon_sym_volatile] = ACTIONS(4284), - [anon_sym_restrict] = ACTIONS(4284), - [anon_sym___restrict__] = ACTIONS(4284), - [anon_sym__Atomic] = ACTIONS(4284), - [anon_sym__Noreturn] = ACTIONS(4284), - [anon_sym_noreturn] = ACTIONS(4284), - [anon_sym_mutable] = ACTIONS(4284), - [anon_sym_constinit] = ACTIONS(4284), - [anon_sym_consteval] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_and_eq] = ACTIONS(4922), - [anon_sym_or_eq] = ACTIONS(4922), - [anon_sym_xor_eq] = ACTIONS(4922), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4286), - [anon_sym_L_DQUOTE] = ACTIONS(4363), - [anon_sym_u_DQUOTE] = ACTIONS(4363), - [anon_sym_U_DQUOTE] = ACTIONS(4363), - [anon_sym_u8_DQUOTE] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(4363), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4284), - [anon_sym_decltype] = ACTIONS(4284), - [anon_sym_R_DQUOTE] = ACTIONS(4365), - [anon_sym_LR_DQUOTE] = ACTIONS(4365), - [anon_sym_uR_DQUOTE] = ACTIONS(4365), - [anon_sym_UR_DQUOTE] = ACTIONS(4365), - [anon_sym_u8R_DQUOTE] = ACTIONS(4365), - [anon_sym_DASH_GT_STAR] = ACTIONS(4278), - }, - [2319] = { - [sym_identifier] = ACTIONS(4844), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4846), - [anon_sym_COMMA] = ACTIONS(4846), - [anon_sym_RPAREN] = ACTIONS(4846), - [anon_sym_LPAREN2] = ACTIONS(4846), - [anon_sym_TILDE] = ACTIONS(4846), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4846), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4846), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE] = ACTIONS(4844), - [anon_sym_CARET] = ACTIONS(4846), - [anon_sym_AMP] = ACTIONS(4844), - [anon_sym_EQ_EQ] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4846), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4844), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_LT_LT] = ACTIONS(4846), - [anon_sym_GT_GT] = ACTIONS(4846), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym___extension__] = ACTIONS(4844), - [anon_sym_extern] = ACTIONS(4844), - [anon_sym___attribute__] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4846), - [anon_sym___declspec] = ACTIONS(4844), - [anon_sym___based] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4844), - [anon_sym_EQ] = ACTIONS(4844), - [anon_sym_static] = ACTIONS(4844), - [anon_sym_register] = ACTIONS(4844), - [anon_sym_inline] = ACTIONS(4844), - [anon_sym___inline] = ACTIONS(4844), - [anon_sym___inline__] = ACTIONS(4844), - [anon_sym___forceinline] = ACTIONS(4844), - [anon_sym_thread_local] = ACTIONS(4844), - [anon_sym___thread] = ACTIONS(4844), - [anon_sym_const] = ACTIONS(4844), - [anon_sym_constexpr] = ACTIONS(4844), - [anon_sym_volatile] = ACTIONS(4844), - [anon_sym_restrict] = ACTIONS(4844), - [anon_sym___restrict__] = ACTIONS(4844), - [anon_sym__Atomic] = ACTIONS(4844), - [anon_sym__Noreturn] = ACTIONS(4844), - [anon_sym_noreturn] = ACTIONS(4844), - [anon_sym_mutable] = ACTIONS(4844), - [anon_sym_constinit] = ACTIONS(4844), - [anon_sym_consteval] = ACTIONS(4844), - [anon_sym_COLON] = ACTIONS(4844), - [anon_sym_QMARK] = ACTIONS(4846), - [anon_sym_LT_EQ_GT] = ACTIONS(4846), - [anon_sym_or] = ACTIONS(4844), - [anon_sym_and] = ACTIONS(4844), - [anon_sym_bitor] = ACTIONS(4844), - [anon_sym_xor] = ACTIONS(4844), - [anon_sym_bitand] = ACTIONS(4844), - [anon_sym_not_eq] = ACTIONS(4844), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_DOT_STAR] = ACTIONS(4846), - [anon_sym_DASH_GT] = ACTIONS(4846), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4844), - [anon_sym_decltype] = ACTIONS(4844), - [anon_sym_final] = ACTIONS(4844), - [anon_sym_override] = ACTIONS(4844), - [anon_sym_virtual] = ACTIONS(4844), - [anon_sym_alignas] = ACTIONS(4844), - [anon_sym_template] = ACTIONS(4844), - [anon_sym_operator] = ACTIONS(4844), - [anon_sym_try] = ACTIONS(4844), - [anon_sym_requires] = ACTIONS(4844), - }, - [2320] = { - [sym_identifier] = ACTIONS(4856), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4858), - [anon_sym_COMMA] = ACTIONS(4858), - [anon_sym_RPAREN] = ACTIONS(4858), - [anon_sym_LPAREN2] = ACTIONS(4858), - [anon_sym_TILDE] = ACTIONS(4858), - [anon_sym_DASH] = ACTIONS(4856), - [anon_sym_PLUS] = ACTIONS(4856), - [anon_sym_STAR] = ACTIONS(4858), - [anon_sym_SLASH] = ACTIONS(4856), - [anon_sym_PERCENT] = ACTIONS(4858), - [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_AMP_AMP] = ACTIONS(4858), - [anon_sym_PIPE] = ACTIONS(4856), - [anon_sym_CARET] = ACTIONS(4858), - [anon_sym_AMP] = ACTIONS(4856), - [anon_sym_EQ_EQ] = ACTIONS(4858), - [anon_sym_BANG_EQ] = ACTIONS(4858), - [anon_sym_GT] = ACTIONS(4856), - [anon_sym_GT_EQ] = ACTIONS(4858), - [anon_sym_LT_EQ] = ACTIONS(4856), - [anon_sym_LT] = ACTIONS(4856), - [anon_sym_LT_LT] = ACTIONS(4858), - [anon_sym_GT_GT] = ACTIONS(4858), - [anon_sym_SEMI] = ACTIONS(4858), - [anon_sym___extension__] = ACTIONS(4856), - [anon_sym_extern] = ACTIONS(4856), - [anon_sym___attribute__] = ACTIONS(4856), - [anon_sym_COLON_COLON] = ACTIONS(4858), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4858), - [anon_sym___declspec] = ACTIONS(4856), - [anon_sym___based] = ACTIONS(4856), - [anon_sym_LBRACE] = ACTIONS(4858), - [anon_sym_RBRACE] = ACTIONS(4858), - [anon_sym_LBRACK] = ACTIONS(4856), - [anon_sym_EQ] = ACTIONS(4856), - [anon_sym_static] = ACTIONS(4856), - [anon_sym_register] = ACTIONS(4856), - [anon_sym_inline] = ACTIONS(4856), - [anon_sym___inline] = ACTIONS(4856), - [anon_sym___inline__] = ACTIONS(4856), - [anon_sym___forceinline] = ACTIONS(4856), - [anon_sym_thread_local] = ACTIONS(4856), - [anon_sym___thread] = ACTIONS(4856), - [anon_sym_const] = ACTIONS(4856), - [anon_sym_constexpr] = ACTIONS(4856), - [anon_sym_volatile] = ACTIONS(4856), - [anon_sym_restrict] = ACTIONS(4856), - [anon_sym___restrict__] = ACTIONS(4856), - [anon_sym__Atomic] = ACTIONS(4856), - [anon_sym__Noreturn] = ACTIONS(4856), - [anon_sym_noreturn] = ACTIONS(4856), - [anon_sym_mutable] = ACTIONS(4856), - [anon_sym_constinit] = ACTIONS(4856), - [anon_sym_consteval] = ACTIONS(4856), - [anon_sym_COLON] = ACTIONS(4856), - [anon_sym_QMARK] = ACTIONS(4858), - [anon_sym_LT_EQ_GT] = ACTIONS(4858), - [anon_sym_or] = ACTIONS(4856), - [anon_sym_and] = ACTIONS(4856), - [anon_sym_bitor] = ACTIONS(4856), - [anon_sym_xor] = ACTIONS(4856), - [anon_sym_bitand] = ACTIONS(4856), - [anon_sym_not_eq] = ACTIONS(4856), - [anon_sym_DASH_DASH] = ACTIONS(4858), - [anon_sym_PLUS_PLUS] = ACTIONS(4858), - [anon_sym_DOT] = ACTIONS(4856), - [anon_sym_DOT_STAR] = ACTIONS(4858), - [anon_sym_DASH_GT] = ACTIONS(4858), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4856), - [anon_sym_decltype] = ACTIONS(4856), - [anon_sym_final] = ACTIONS(4856), - [anon_sym_override] = ACTIONS(4856), - [anon_sym_virtual] = ACTIONS(4856), - [anon_sym_alignas] = ACTIONS(4856), - [anon_sym_template] = ACTIONS(4856), - [anon_sym_operator] = ACTIONS(4856), - [anon_sym_try] = ACTIONS(4856), - [anon_sym_requires] = ACTIONS(4856), - }, - [2321] = { - [sym_identifier] = ACTIONS(4884), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4886), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_LPAREN2] = ACTIONS(4886), - [anon_sym_TILDE] = ACTIONS(4886), - [anon_sym_DASH] = ACTIONS(4884), - [anon_sym_PLUS] = ACTIONS(4884), - [anon_sym_STAR] = ACTIONS(4886), - [anon_sym_SLASH] = ACTIONS(4884), - [anon_sym_PERCENT] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4884), - [anon_sym_CARET] = ACTIONS(4886), - [anon_sym_AMP] = ACTIONS(4884), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4884), - [anon_sym_GT_EQ] = ACTIONS(4886), - [anon_sym_LT_EQ] = ACTIONS(4884), - [anon_sym_LT] = ACTIONS(4884), - [anon_sym_LT_LT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4886), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym___extension__] = ACTIONS(4884), - [anon_sym_extern] = ACTIONS(4884), - [anon_sym___attribute__] = ACTIONS(4884), - [anon_sym_COLON_COLON] = ACTIONS(4886), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4886), - [anon_sym___declspec] = ACTIONS(4884), - [anon_sym___based] = ACTIONS(4884), - [anon_sym_LBRACE] = ACTIONS(4886), - [anon_sym_RBRACE] = ACTIONS(4886), - [anon_sym_LBRACK] = ACTIONS(4884), - [anon_sym_EQ] = ACTIONS(4884), - [anon_sym_static] = ACTIONS(4884), - [anon_sym_register] = ACTIONS(4884), - [anon_sym_inline] = ACTIONS(4884), - [anon_sym___inline] = ACTIONS(4884), - [anon_sym___inline__] = ACTIONS(4884), - [anon_sym___forceinline] = ACTIONS(4884), - [anon_sym_thread_local] = ACTIONS(4884), - [anon_sym___thread] = ACTIONS(4884), - [anon_sym_const] = ACTIONS(4884), - [anon_sym_constexpr] = ACTIONS(4884), - [anon_sym_volatile] = ACTIONS(4884), - [anon_sym_restrict] = ACTIONS(4884), - [anon_sym___restrict__] = ACTIONS(4884), - [anon_sym__Atomic] = ACTIONS(4884), - [anon_sym__Noreturn] = ACTIONS(4884), - [anon_sym_noreturn] = ACTIONS(4884), - [anon_sym_mutable] = ACTIONS(4884), - [anon_sym_constinit] = ACTIONS(4884), - [anon_sym_consteval] = ACTIONS(4884), - [anon_sym_COLON] = ACTIONS(4884), - [anon_sym_QMARK] = ACTIONS(4886), - [anon_sym_LT_EQ_GT] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4884), - [anon_sym_and] = ACTIONS(4884), - [anon_sym_bitor] = ACTIONS(4884), - [anon_sym_xor] = ACTIONS(4884), - [anon_sym_bitand] = ACTIONS(4884), - [anon_sym_not_eq] = ACTIONS(4884), - [anon_sym_DASH_DASH] = ACTIONS(4886), - [anon_sym_PLUS_PLUS] = ACTIONS(4886), - [anon_sym_DOT] = ACTIONS(4884), - [anon_sym_DOT_STAR] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4886), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4884), - [anon_sym_decltype] = ACTIONS(4884), - [anon_sym_final] = ACTIONS(4884), - [anon_sym_override] = ACTIONS(4884), - [anon_sym_virtual] = ACTIONS(4884), - [anon_sym_alignas] = ACTIONS(4884), - [anon_sym_template] = ACTIONS(4884), - [anon_sym_operator] = ACTIONS(4884), - [anon_sym_try] = ACTIONS(4884), - [anon_sym_requires] = ACTIONS(4884), - }, - [2322] = { - [sym_identifier] = ACTIONS(4848), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4850), - [anon_sym_COMMA] = ACTIONS(4850), - [anon_sym_RPAREN] = ACTIONS(4850), - [anon_sym_LPAREN2] = ACTIONS(4850), - [anon_sym_TILDE] = ACTIONS(4850), - [anon_sym_DASH] = ACTIONS(4848), - [anon_sym_PLUS] = ACTIONS(4848), - [anon_sym_STAR] = ACTIONS(4850), - [anon_sym_SLASH] = ACTIONS(4848), - [anon_sym_PERCENT] = ACTIONS(4850), - [anon_sym_PIPE_PIPE] = ACTIONS(4850), - [anon_sym_AMP_AMP] = ACTIONS(4850), - [anon_sym_PIPE] = ACTIONS(4848), - [anon_sym_CARET] = ACTIONS(4850), - [anon_sym_AMP] = ACTIONS(4848), - [anon_sym_EQ_EQ] = ACTIONS(4850), - [anon_sym_BANG_EQ] = ACTIONS(4850), - [anon_sym_GT] = ACTIONS(4848), - [anon_sym_GT_EQ] = ACTIONS(4850), - [anon_sym_LT_EQ] = ACTIONS(4848), - [anon_sym_LT] = ACTIONS(4848), - [anon_sym_LT_LT] = ACTIONS(4850), - [anon_sym_GT_GT] = ACTIONS(4850), - [anon_sym_SEMI] = ACTIONS(4850), - [anon_sym___extension__] = ACTIONS(4848), - [anon_sym_extern] = ACTIONS(4848), - [anon_sym___attribute__] = ACTIONS(4848), - [anon_sym_COLON_COLON] = ACTIONS(4850), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4850), - [anon_sym___declspec] = ACTIONS(4848), - [anon_sym___based] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4850), - [anon_sym_RBRACE] = ACTIONS(4850), - [anon_sym_LBRACK] = ACTIONS(4848), - [anon_sym_EQ] = ACTIONS(4848), - [anon_sym_static] = ACTIONS(4848), - [anon_sym_register] = ACTIONS(4848), - [anon_sym_inline] = ACTIONS(4848), - [anon_sym___inline] = ACTIONS(4848), - [anon_sym___inline__] = ACTIONS(4848), - [anon_sym___forceinline] = ACTIONS(4848), - [anon_sym_thread_local] = ACTIONS(4848), - [anon_sym___thread] = ACTIONS(4848), - [anon_sym_const] = ACTIONS(4848), - [anon_sym_constexpr] = ACTIONS(4848), - [anon_sym_volatile] = ACTIONS(4848), - [anon_sym_restrict] = ACTIONS(4848), - [anon_sym___restrict__] = ACTIONS(4848), - [anon_sym__Atomic] = ACTIONS(4848), - [anon_sym__Noreturn] = ACTIONS(4848), - [anon_sym_noreturn] = ACTIONS(4848), - [anon_sym_mutable] = ACTIONS(4848), - [anon_sym_constinit] = ACTIONS(4848), - [anon_sym_consteval] = ACTIONS(4848), - [anon_sym_COLON] = ACTIONS(4848), - [anon_sym_QMARK] = ACTIONS(4850), - [anon_sym_LT_EQ_GT] = ACTIONS(4850), - [anon_sym_or] = ACTIONS(4848), - [anon_sym_and] = ACTIONS(4848), - [anon_sym_bitor] = ACTIONS(4848), - [anon_sym_xor] = ACTIONS(4848), - [anon_sym_bitand] = ACTIONS(4848), - [anon_sym_not_eq] = ACTIONS(4848), - [anon_sym_DASH_DASH] = ACTIONS(4850), - [anon_sym_PLUS_PLUS] = ACTIONS(4850), - [anon_sym_DOT] = ACTIONS(4848), - [anon_sym_DOT_STAR] = ACTIONS(4850), - [anon_sym_DASH_GT] = ACTIONS(4850), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4848), - [anon_sym_decltype] = ACTIONS(4848), - [anon_sym_final] = ACTIONS(4848), - [anon_sym_override] = ACTIONS(4848), - [anon_sym_virtual] = ACTIONS(4848), - [anon_sym_alignas] = ACTIONS(4848), - [anon_sym_template] = ACTIONS(4848), - [anon_sym_operator] = ACTIONS(4848), - [anon_sym_try] = ACTIONS(4848), - [anon_sym_requires] = ACTIONS(4848), - }, - [2323] = { - [sym_identifier] = ACTIONS(4888), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4890), - [anon_sym_COMMA] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4890), - [anon_sym_TILDE] = ACTIONS(4890), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_STAR] = ACTIONS(4890), - [anon_sym_SLASH] = ACTIONS(4888), - [anon_sym_PERCENT] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4888), - [anon_sym_CARET] = ACTIONS(4890), - [anon_sym_AMP] = ACTIONS(4888), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4890), - [anon_sym_LT_EQ] = ACTIONS(4888), - [anon_sym_LT] = ACTIONS(4888), - [anon_sym_LT_LT] = ACTIONS(4890), - [anon_sym_GT_GT] = ACTIONS(4890), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym___extension__] = ACTIONS(4888), - [anon_sym_extern] = ACTIONS(4888), - [anon_sym___attribute__] = ACTIONS(4888), - [anon_sym_COLON_COLON] = ACTIONS(4890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4890), - [anon_sym___declspec] = ACTIONS(4888), - [anon_sym___based] = ACTIONS(4888), - [anon_sym_LBRACE] = ACTIONS(4890), - [anon_sym_RBRACE] = ACTIONS(4890), - [anon_sym_LBRACK] = ACTIONS(4888), - [anon_sym_EQ] = ACTIONS(4888), - [anon_sym_static] = ACTIONS(4888), - [anon_sym_register] = ACTIONS(4888), - [anon_sym_inline] = ACTIONS(4888), - [anon_sym___inline] = ACTIONS(4888), - [anon_sym___inline__] = ACTIONS(4888), - [anon_sym___forceinline] = ACTIONS(4888), - [anon_sym_thread_local] = ACTIONS(4888), - [anon_sym___thread] = ACTIONS(4888), - [anon_sym_const] = ACTIONS(4888), - [anon_sym_constexpr] = ACTIONS(4888), - [anon_sym_volatile] = ACTIONS(4888), - [anon_sym_restrict] = ACTIONS(4888), - [anon_sym___restrict__] = ACTIONS(4888), - [anon_sym__Atomic] = ACTIONS(4888), - [anon_sym__Noreturn] = ACTIONS(4888), - [anon_sym_noreturn] = ACTIONS(4888), - [anon_sym_mutable] = ACTIONS(4888), - [anon_sym_constinit] = ACTIONS(4888), - [anon_sym_consteval] = ACTIONS(4888), - [anon_sym_COLON] = ACTIONS(4888), - [anon_sym_QMARK] = ACTIONS(4890), - [anon_sym_LT_EQ_GT] = ACTIONS(4890), - [anon_sym_or] = ACTIONS(4888), - [anon_sym_and] = ACTIONS(4888), - [anon_sym_bitor] = ACTIONS(4888), - [anon_sym_xor] = ACTIONS(4888), - [anon_sym_bitand] = ACTIONS(4888), - [anon_sym_not_eq] = ACTIONS(4888), - [anon_sym_DASH_DASH] = ACTIONS(4890), - [anon_sym_PLUS_PLUS] = ACTIONS(4890), - [anon_sym_DOT] = ACTIONS(4888), - [anon_sym_DOT_STAR] = ACTIONS(4890), - [anon_sym_DASH_GT] = ACTIONS(4890), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4888), - [anon_sym_decltype] = ACTIONS(4888), - [anon_sym_final] = ACTIONS(4888), - [anon_sym_override] = ACTIONS(4888), - [anon_sym_virtual] = ACTIONS(4888), - [anon_sym_alignas] = ACTIONS(4888), - [anon_sym_template] = ACTIONS(4888), - [anon_sym_operator] = ACTIONS(4888), - [anon_sym_try] = ACTIONS(4888), - [anon_sym_requires] = ACTIONS(4888), - }, - [2324] = { - [sym_string_literal] = STATE(4101), - [sym_template_argument_list] = STATE(3991), - [sym_raw_string_literal] = STATE(4101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_LPAREN2] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4927), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym___extension__] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4930), - [anon_sym_const] = ACTIONS(4276), - [anon_sym_constexpr] = ACTIONS(4284), - [anon_sym_volatile] = ACTIONS(4284), - [anon_sym_restrict] = ACTIONS(4284), - [anon_sym___restrict__] = ACTIONS(4284), - [anon_sym__Atomic] = ACTIONS(4284), - [anon_sym__Noreturn] = ACTIONS(4284), - [anon_sym_noreturn] = ACTIONS(4284), - [anon_sym_mutable] = ACTIONS(4284), - [anon_sym_constinit] = ACTIONS(4284), - [anon_sym_consteval] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4932), - [anon_sym_SLASH_EQ] = ACTIONS(4932), - [anon_sym_PERCENT_EQ] = ACTIONS(4932), - [anon_sym_PLUS_EQ] = ACTIONS(4932), - [anon_sym_DASH_EQ] = ACTIONS(4932), - [anon_sym_LT_LT_EQ] = ACTIONS(4932), - [anon_sym_GT_GT_EQ] = ACTIONS(4930), - [anon_sym_AMP_EQ] = ACTIONS(4932), - [anon_sym_CARET_EQ] = ACTIONS(4932), - [anon_sym_PIPE_EQ] = ACTIONS(4932), - [anon_sym_and_eq] = ACTIONS(4932), - [anon_sym_or_eq] = ACTIONS(4932), - [anon_sym_xor_eq] = ACTIONS(4932), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4934), - [anon_sym_u_DQUOTE] = ACTIONS(4934), - [anon_sym_U_DQUOTE] = ACTIONS(4934), - [anon_sym_u8_DQUOTE] = ACTIONS(4934), - [anon_sym_DQUOTE] = ACTIONS(4934), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4284), - [anon_sym_decltype] = ACTIONS(4284), - [anon_sym_GT2] = ACTIONS(4291), - [anon_sym_R_DQUOTE] = ACTIONS(4936), - [anon_sym_LR_DQUOTE] = ACTIONS(4936), - [anon_sym_uR_DQUOTE] = ACTIONS(4936), - [anon_sym_UR_DQUOTE] = ACTIONS(4936), - [anon_sym_u8R_DQUOTE] = ACTIONS(4936), - }, - [2325] = { - [sym_identifier] = ACTIONS(4877), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4879), - [anon_sym_COMMA] = ACTIONS(4879), - [anon_sym_RPAREN] = ACTIONS(4879), - [anon_sym_LPAREN2] = ACTIONS(4879), - [anon_sym_TILDE] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4877), - [anon_sym_PLUS] = ACTIONS(4877), - [anon_sym_STAR] = ACTIONS(4879), - [anon_sym_SLASH] = ACTIONS(4877), - [anon_sym_PERCENT] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4877), - [anon_sym_CARET] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4877), - [anon_sym_EQ_EQ] = ACTIONS(4879), - [anon_sym_BANG_EQ] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4877), - [anon_sym_GT_EQ] = ACTIONS(4879), - [anon_sym_LT_EQ] = ACTIONS(4877), - [anon_sym_LT] = ACTIONS(4877), - [anon_sym_LT_LT] = ACTIONS(4879), - [anon_sym_GT_GT] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym___extension__] = ACTIONS(4877), - [anon_sym_extern] = ACTIONS(4877), - [anon_sym___attribute__] = ACTIONS(4877), - [anon_sym_COLON_COLON] = ACTIONS(4879), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4879), - [anon_sym___declspec] = ACTIONS(4877), - [anon_sym___based] = ACTIONS(4877), - [anon_sym_LBRACE] = ACTIONS(4879), - [anon_sym_RBRACE] = ACTIONS(4879), - [anon_sym_LBRACK] = ACTIONS(4877), - [anon_sym_EQ] = ACTIONS(4877), - [anon_sym_static] = ACTIONS(4877), - [anon_sym_register] = ACTIONS(4877), - [anon_sym_inline] = ACTIONS(4877), - [anon_sym___inline] = ACTIONS(4877), - [anon_sym___inline__] = ACTIONS(4877), - [anon_sym___forceinline] = ACTIONS(4877), - [anon_sym_thread_local] = ACTIONS(4877), - [anon_sym___thread] = ACTIONS(4877), - [anon_sym_const] = ACTIONS(4877), - [anon_sym_constexpr] = ACTIONS(4877), - [anon_sym_volatile] = ACTIONS(4877), - [anon_sym_restrict] = ACTIONS(4877), - [anon_sym___restrict__] = ACTIONS(4877), - [anon_sym__Atomic] = ACTIONS(4877), - [anon_sym__Noreturn] = ACTIONS(4877), - [anon_sym_noreturn] = ACTIONS(4877), - [anon_sym_mutable] = ACTIONS(4877), - [anon_sym_constinit] = ACTIONS(4877), - [anon_sym_consteval] = ACTIONS(4877), - [anon_sym_COLON] = ACTIONS(4877), - [anon_sym_QMARK] = ACTIONS(4879), - [anon_sym_LT_EQ_GT] = ACTIONS(4879), - [anon_sym_or] = ACTIONS(4877), - [anon_sym_and] = ACTIONS(4877), - [anon_sym_bitor] = ACTIONS(4877), - [anon_sym_xor] = ACTIONS(4877), - [anon_sym_bitand] = ACTIONS(4877), - [anon_sym_not_eq] = ACTIONS(4877), - [anon_sym_DASH_DASH] = ACTIONS(4879), - [anon_sym_PLUS_PLUS] = ACTIONS(4879), - [anon_sym_DOT] = ACTIONS(4877), - [anon_sym_DOT_STAR] = ACTIONS(4879), - [anon_sym_DASH_GT] = ACTIONS(4879), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4877), - [anon_sym_decltype] = ACTIONS(4877), - [anon_sym_final] = ACTIONS(4877), - [anon_sym_override] = ACTIONS(4877), - [anon_sym_virtual] = ACTIONS(4877), - [anon_sym_alignas] = ACTIONS(4877), - [anon_sym_template] = ACTIONS(4877), - [anon_sym_operator] = ACTIONS(4877), - [anon_sym_try] = ACTIONS(4877), - [anon_sym_requires] = ACTIONS(4877), - }, - [2326] = { - [sym_identifier] = ACTIONS(4852), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_RPAREN] = ACTIONS(4854), - [anon_sym_LPAREN2] = ACTIONS(4854), - [anon_sym_TILDE] = ACTIONS(4854), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4854), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE] = ACTIONS(4852), - [anon_sym_CARET] = ACTIONS(4854), - [anon_sym_AMP] = ACTIONS(4852), - [anon_sym_EQ_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4854), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4852), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_LT_LT] = ACTIONS(4854), - [anon_sym_GT_GT] = ACTIONS(4854), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym___extension__] = ACTIONS(4852), - [anon_sym_extern] = ACTIONS(4852), - [anon_sym___attribute__] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4854), - [anon_sym___declspec] = ACTIONS(4852), - [anon_sym___based] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4852), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_static] = ACTIONS(4852), - [anon_sym_register] = ACTIONS(4852), - [anon_sym_inline] = ACTIONS(4852), - [anon_sym___inline] = ACTIONS(4852), - [anon_sym___inline__] = ACTIONS(4852), - [anon_sym___forceinline] = ACTIONS(4852), - [anon_sym_thread_local] = ACTIONS(4852), - [anon_sym___thread] = ACTIONS(4852), - [anon_sym_const] = ACTIONS(4852), - [anon_sym_constexpr] = ACTIONS(4852), - [anon_sym_volatile] = ACTIONS(4852), - [anon_sym_restrict] = ACTIONS(4852), - [anon_sym___restrict__] = ACTIONS(4852), - [anon_sym__Atomic] = ACTIONS(4852), - [anon_sym__Noreturn] = ACTIONS(4852), - [anon_sym_noreturn] = ACTIONS(4852), - [anon_sym_mutable] = ACTIONS(4852), - [anon_sym_constinit] = ACTIONS(4852), - [anon_sym_consteval] = ACTIONS(4852), - [anon_sym_COLON] = ACTIONS(4852), - [anon_sym_QMARK] = ACTIONS(4854), - [anon_sym_LT_EQ_GT] = ACTIONS(4854), - [anon_sym_or] = ACTIONS(4852), - [anon_sym_and] = ACTIONS(4852), - [anon_sym_bitor] = ACTIONS(4852), - [anon_sym_xor] = ACTIONS(4852), - [anon_sym_bitand] = ACTIONS(4852), - [anon_sym_not_eq] = ACTIONS(4852), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_DOT_STAR] = ACTIONS(4854), - [anon_sym_DASH_GT] = ACTIONS(4854), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4852), - [anon_sym_decltype] = ACTIONS(4852), - [anon_sym_final] = ACTIONS(4852), - [anon_sym_override] = ACTIONS(4852), - [anon_sym_virtual] = ACTIONS(4852), - [anon_sym_alignas] = ACTIONS(4852), - [anon_sym_template] = ACTIONS(4852), - [anon_sym_operator] = ACTIONS(4852), - [anon_sym_try] = ACTIONS(4852), - [anon_sym_requires] = ACTIONS(4852), - }, - [2327] = { - [sym_function_definition] = STATE(824), - [sym_declaration] = STATE(824), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5723), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_ms_call_modifier] = STATE(2642), - [sym_declaration_list] = STATE(824), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(4942), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2328] = { - [sym_function_definition] = STATE(1308), - [sym_declaration] = STATE(1308), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5716), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_ms_call_modifier] = STATE(2604), - [sym_declaration_list] = STATE(1308), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(4944), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2329] = { - [sym_function_definition] = STATE(1265), - [sym_declaration] = STATE(1265), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5755), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_ms_call_modifier] = STATE(2586), - [sym_declaration_list] = STATE(1265), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(4946), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2330] = { - [sym_function_definition] = STATE(586), - [sym_declaration] = STATE(586), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5767), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_ms_call_modifier] = STATE(2622), - [sym_declaration_list] = STATE(586), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(4948), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2331] = { - [sym_function_definition] = STATE(1404), - [sym_declaration] = STATE(1404), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5758), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_ms_call_modifier] = STATE(2601), - [sym_declaration_list] = STATE(1404), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(4950), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2332] = { - [sym_function_definition] = STATE(2862), - [sym_declaration] = STATE(2862), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5705), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_ms_call_modifier] = STATE(2632), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(9160), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4882), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4880), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4952), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(4954), - [anon_sym_struct] = ACTIONS(4956), - [anon_sym_union] = ACTIONS(4958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2333] = { - [sym_function_definition] = STATE(1390), - [sym_declaration] = STATE(1390), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5758), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_ms_call_modifier] = STATE(2601), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(9096), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4882), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4880), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4952), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(4960), - [anon_sym_struct] = ACTIONS(4962), - [anon_sym_union] = ACTIONS(4964), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2334] = { - [sym_identifier] = ACTIONS(4892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4897), - [anon_sym_COMMA] = ACTIONS(4897), - [anon_sym_RPAREN] = ACTIONS(4897), - [anon_sym_LPAREN2] = ACTIONS(4897), - [anon_sym_TILDE] = ACTIONS(4897), - [anon_sym_STAR] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4892), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_extern] = ACTIONS(4892), - [anon_sym___attribute__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4897), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4897), - [anon_sym___declspec] = ACTIONS(4892), - [anon_sym___based] = ACTIONS(4892), - [anon_sym___cdecl] = ACTIONS(4892), - [anon_sym___clrcall] = ACTIONS(4892), - [anon_sym___stdcall] = ACTIONS(4892), - [anon_sym___fastcall] = ACTIONS(4892), - [anon_sym___thiscall] = ACTIONS(4892), - [anon_sym___vectorcall] = ACTIONS(4892), - [anon_sym_LBRACE] = ACTIONS(4897), - [anon_sym_signed] = ACTIONS(4892), - [anon_sym_unsigned] = ACTIONS(4892), - [anon_sym_long] = ACTIONS(4892), - [anon_sym_short] = ACTIONS(4892), - [anon_sym_LBRACK] = ACTIONS(4892), - [anon_sym_EQ] = ACTIONS(4897), - [anon_sym_static] = ACTIONS(4892), - [anon_sym_register] = ACTIONS(4892), - [anon_sym_inline] = ACTIONS(4892), - [anon_sym___inline] = ACTIONS(4892), - [anon_sym___inline__] = ACTIONS(4892), - [anon_sym___forceinline] = ACTIONS(4892), - [anon_sym_thread_local] = ACTIONS(4892), - [anon_sym___thread] = ACTIONS(4892), - [anon_sym_const] = ACTIONS(4892), - [anon_sym_constexpr] = ACTIONS(4892), - [anon_sym_volatile] = ACTIONS(4892), - [anon_sym_restrict] = ACTIONS(4892), - [anon_sym___restrict__] = ACTIONS(4892), - [anon_sym__Atomic] = ACTIONS(4892), - [anon_sym__Noreturn] = ACTIONS(4892), - [anon_sym_noreturn] = ACTIONS(4892), - [anon_sym_mutable] = ACTIONS(4892), - [anon_sym_constinit] = ACTIONS(4892), - [anon_sym_consteval] = ACTIONS(4892), - [sym_primitive_type] = ACTIONS(4892), - [anon_sym_enum] = ACTIONS(4892), - [anon_sym_class] = ACTIONS(4892), - [anon_sym_struct] = ACTIONS(4892), - [anon_sym_union] = ACTIONS(4892), - [anon_sym_COLON] = ACTIONS(4892), - [anon_sym_or] = ACTIONS(4892), - [anon_sym_and] = ACTIONS(4892), - [anon_sym_asm] = ACTIONS(4892), - [anon_sym___asm__] = ACTIONS(4892), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4892), - [anon_sym_decltype] = ACTIONS(4892), - [anon_sym_final] = ACTIONS(4892), - [anon_sym_override] = ACTIONS(4892), - [anon_sym_virtual] = ACTIONS(4892), - [anon_sym_alignas] = ACTIONS(4892), - [anon_sym_explicit] = ACTIONS(4892), - [anon_sym_typename] = ACTIONS(4892), - [anon_sym_template] = ACTIONS(4892), - [anon_sym_GT2] = ACTIONS(4897), - [anon_sym_operator] = ACTIONS(4892), - [anon_sym_try] = ACTIONS(4892), - [anon_sym_friend] = ACTIONS(4892), - [anon_sym_using] = ACTIONS(4892), - [anon_sym_concept] = ACTIONS(4892), - [anon_sym_requires] = ACTIONS(4892), - }, - [2335] = { - [sym_function_definition] = STATE(603), - [sym_declaration] = STATE(603), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5767), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_ms_call_modifier] = STATE(2622), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(9189), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4882), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4880), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4952), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(4966), - [anon_sym_struct] = ACTIONS(4968), - [anon_sym_union] = ACTIONS(4970), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2336] = { - [sym_function_definition] = STATE(1325), - [sym_declaration] = STATE(1325), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5716), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_ms_call_modifier] = STATE(2604), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(9581), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4882), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4880), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4952), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(4972), - [anon_sym_struct] = ACTIONS(4974), - [anon_sym_union] = ACTIONS(4976), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2337] = { - [sym_function_definition] = STATE(808), - [sym_declaration] = STATE(808), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5723), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_ms_call_modifier] = STATE(2642), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(9117), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4882), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4880), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4952), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(4978), - [anon_sym_struct] = ACTIONS(4980), - [anon_sym_union] = ACTIONS(4982), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2338] = { - [sym_function_definition] = STATE(2663), - [sym_declaration] = STATE(2663), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5780), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_ms_call_modifier] = STATE(2563), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(9373), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4882), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4880), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4952), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(4984), - [anon_sym_struct] = ACTIONS(4986), - [anon_sym_union] = ACTIONS(4988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2339] = { - [sym_function_definition] = STATE(1374), - [sym_declaration] = STATE(1374), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5755), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_ms_call_modifier] = STATE(2586), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(9549), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4882), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4880), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4952), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(4990), - [anon_sym_struct] = ACTIONS(4992), - [anon_sym_union] = ACTIONS(4994), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2340] = { - [sym_function_definition] = STATE(2840), - [sym_declaration] = STATE(2840), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5731), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_ms_call_modifier] = STATE(2610), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(9181), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4882), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4880), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4952), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(4996), - [anon_sym_struct] = ACTIONS(4998), - [anon_sym_union] = ACTIONS(5000), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2341] = { - [sym_function_definition] = STATE(2448), - [sym_declaration] = STATE(2448), - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5709), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_ms_call_modifier] = STATE(2576), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym__class_name] = STATE(9496), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(4882), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4880), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4952), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(5002), - [anon_sym_struct] = ACTIONS(5004), - [anon_sym_union] = ACTIONS(5006), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2342] = { - [sym_identifier] = ACTIONS(5008), - [anon_sym_COMMA] = ACTIONS(5010), - [anon_sym_RPAREN] = ACTIONS(5010), - [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_SEMI] = ACTIONS(5010), - [anon_sym___extension__] = ACTIONS(5008), - [anon_sym_extern] = ACTIONS(5008), - [anon_sym___attribute__] = ACTIONS(5008), - [anon_sym_COLON_COLON] = ACTIONS(5010), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5010), - [anon_sym___declspec] = ACTIONS(5008), - [anon_sym___based] = ACTIONS(5008), - [anon_sym___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_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_EQ] = ACTIONS(5010), - [anon_sym_static] = ACTIONS(5008), - [anon_sym_register] = ACTIONS(5008), - [anon_sym_inline] = ACTIONS(5008), - [anon_sym___inline] = ACTIONS(5008), - [anon_sym___inline__] = ACTIONS(5008), - [anon_sym___forceinline] = ACTIONS(5008), - [anon_sym_thread_local] = ACTIONS(5008), - [anon_sym___thread] = ACTIONS(5008), - [anon_sym_const] = ACTIONS(5008), - [anon_sym_constexpr] = ACTIONS(5008), - [anon_sym_volatile] = ACTIONS(5008), - [anon_sym_restrict] = ACTIONS(5008), - [anon_sym___restrict__] = ACTIONS(5008), - [anon_sym__Atomic] = ACTIONS(5008), - [anon_sym__Noreturn] = ACTIONS(5008), - [anon_sym_noreturn] = ACTIONS(5008), - [anon_sym_mutable] = ACTIONS(5008), - [anon_sym_constinit] = ACTIONS(5008), - [anon_sym_consteval] = ACTIONS(5008), - [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), - [anon_sym_asm] = ACTIONS(5008), - [anon_sym___asm__] = ACTIONS(5008), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5008), - [anon_sym_decltype] = ACTIONS(5008), - [anon_sym_final] = ACTIONS(5008), - [anon_sym_override] = ACTIONS(5008), - [anon_sym_virtual] = ACTIONS(5008), - [anon_sym_alignas] = ACTIONS(5008), - [anon_sym_explicit] = ACTIONS(5008), - [anon_sym_typename] = ACTIONS(5008), - [anon_sym_template] = ACTIONS(5008), - [anon_sym_GT2] = ACTIONS(5010), - [anon_sym_operator] = ACTIONS(5008), - [anon_sym_try] = ACTIONS(5008), - [anon_sym_friend] = ACTIONS(5008), - [anon_sym_using] = ACTIONS(5008), - [anon_sym_concept] = ACTIONS(5008), - [anon_sym_requires] = ACTIONS(5008), - }, - [2343] = { - [sym_identifier] = ACTIONS(5012), - [anon_sym_COMMA] = ACTIONS(5014), - [anon_sym_RPAREN] = ACTIONS(5014), - [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_SEMI] = ACTIONS(5014), - [anon_sym___extension__] = ACTIONS(5012), - [anon_sym_extern] = 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_signed] = ACTIONS(5012), - [anon_sym_unsigned] = ACTIONS(5012), - [anon_sym_long] = ACTIONS(5012), - [anon_sym_short] = ACTIONS(5012), - [anon_sym_LBRACK] = ACTIONS(5012), - [anon_sym_EQ] = ACTIONS(5014), - [anon_sym_static] = ACTIONS(5012), - [anon_sym_register] = ACTIONS(5012), - [anon_sym_inline] = ACTIONS(5012), - [anon_sym___inline] = ACTIONS(5012), - [anon_sym___inline__] = ACTIONS(5012), - [anon_sym___forceinline] = ACTIONS(5012), - [anon_sym_thread_local] = ACTIONS(5012), - [anon_sym___thread] = ACTIONS(5012), - [anon_sym_const] = ACTIONS(5012), - [anon_sym_constexpr] = ACTIONS(5012), - [anon_sym_volatile] = ACTIONS(5012), - [anon_sym_restrict] = ACTIONS(5012), - [anon_sym___restrict__] = ACTIONS(5012), - [anon_sym__Atomic] = ACTIONS(5012), - [anon_sym__Noreturn] = ACTIONS(5012), - [anon_sym_noreturn] = ACTIONS(5012), - [anon_sym_mutable] = ACTIONS(5012), - [anon_sym_constinit] = ACTIONS(5012), - [anon_sym_consteval] = ACTIONS(5012), - [sym_primitive_type] = ACTIONS(5012), - [anon_sym_enum] = ACTIONS(5012), - [anon_sym_class] = ACTIONS(5012), - [anon_sym_struct] = ACTIONS(5012), - [anon_sym_union] = ACTIONS(5012), - [anon_sym_or] = ACTIONS(5012), - [anon_sym_and] = ACTIONS(5012), - [anon_sym_asm] = ACTIONS(5012), - [anon_sym___asm__] = ACTIONS(5012), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5012), - [anon_sym_decltype] = ACTIONS(5012), - [anon_sym_final] = ACTIONS(5012), - [anon_sym_override] = ACTIONS(5012), - [anon_sym_virtual] = ACTIONS(5012), - [anon_sym_alignas] = ACTIONS(5012), - [anon_sym_explicit] = ACTIONS(5012), - [anon_sym_typename] = ACTIONS(5012), - [anon_sym_template] = ACTIONS(5012), - [anon_sym_GT2] = ACTIONS(5014), - [anon_sym_operator] = ACTIONS(5012), - [anon_sym_try] = ACTIONS(5012), - [anon_sym_friend] = ACTIONS(5012), - [anon_sym_using] = ACTIONS(5012), - [anon_sym_concept] = ACTIONS(5012), - [anon_sym_requires] = ACTIONS(5012), - }, - [2344] = { - [sym__declaration_modifiers] = STATE(2688), - [sym__declaration_specifiers] = STATE(4754), - [sym_attribute_specifier] = STATE(2688), - [sym_attribute_declaration] = STATE(2688), - [sym_ms_declspec_modifier] = STATE(2688), - [sym_storage_class_specifier] = STATE(2688), - [sym_type_qualifier] = STATE(2688), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_parameter_declaration] = STATE(8271), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2688), - [sym_alignas_specifier] = STATE(2688), - [sym_dependent_type] = STATE(3958), - [sym_type_parameter_declaration] = STATE(8271), - [sym_variadic_type_parameter_declaration] = STATE(8271), - [sym_optional_type_parameter_declaration] = STATE(8271), - [sym_template_template_parameter_declaration] = STATE(8271), - [sym_optional_parameter_declaration] = STATE(8271), - [sym_variadic_parameter_declaration] = STATE(8271), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7280), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2688), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4906), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(5016), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(5018), - [anon_sym_template] = ACTIONS(5020), - [anon_sym_GT2] = ACTIONS(5022), - }, - [2345] = { - [sym_identifier] = ACTIONS(5024), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_RPAREN] = ACTIONS(5026), - [anon_sym_LPAREN2] = ACTIONS(5026), - [anon_sym_TILDE] = ACTIONS(5026), - [anon_sym_STAR] = ACTIONS(5026), - [anon_sym_PIPE_PIPE] = ACTIONS(5026), - [anon_sym_AMP_AMP] = ACTIONS(5026), - [anon_sym_AMP] = ACTIONS(5024), - [anon_sym_SEMI] = ACTIONS(5026), - [anon_sym___extension__] = ACTIONS(5024), - [anon_sym_extern] = ACTIONS(5024), - [anon_sym___attribute__] = ACTIONS(5024), - [anon_sym_COLON_COLON] = ACTIONS(5026), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5026), - [anon_sym___declspec] = ACTIONS(5024), - [anon_sym___based] = ACTIONS(5024), - [anon_sym___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(5026), - [anon_sym_signed] = ACTIONS(5024), - [anon_sym_unsigned] = ACTIONS(5024), - [anon_sym_long] = ACTIONS(5024), - [anon_sym_short] = ACTIONS(5024), - [anon_sym_LBRACK] = ACTIONS(5024), - [anon_sym_EQ] = ACTIONS(5026), - [anon_sym_static] = ACTIONS(5024), - [anon_sym_register] = ACTIONS(5024), - [anon_sym_inline] = ACTIONS(5024), - [anon_sym___inline] = ACTIONS(5024), - [anon_sym___inline__] = ACTIONS(5024), - [anon_sym___forceinline] = ACTIONS(5024), - [anon_sym_thread_local] = ACTIONS(5024), - [anon_sym___thread] = ACTIONS(5024), - [anon_sym_const] = ACTIONS(5024), - [anon_sym_constexpr] = ACTIONS(5024), - [anon_sym_volatile] = ACTIONS(5024), - [anon_sym_restrict] = ACTIONS(5024), - [anon_sym___restrict__] = ACTIONS(5024), - [anon_sym__Atomic] = ACTIONS(5024), - [anon_sym__Noreturn] = ACTIONS(5024), - [anon_sym_noreturn] = ACTIONS(5024), - [anon_sym_mutable] = ACTIONS(5024), - [anon_sym_constinit] = ACTIONS(5024), - [anon_sym_consteval] = ACTIONS(5024), - [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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5024), - [anon_sym_decltype] = ACTIONS(5024), - [anon_sym_final] = ACTIONS(5024), - [anon_sym_override] = ACTIONS(5024), - [anon_sym_virtual] = ACTIONS(5024), - [anon_sym_alignas] = ACTIONS(5024), - [anon_sym_explicit] = ACTIONS(5024), - [anon_sym_typename] = ACTIONS(5024), - [anon_sym_template] = ACTIONS(5024), - [anon_sym_GT2] = ACTIONS(5026), - [anon_sym_operator] = ACTIONS(5024), - [anon_sym_try] = ACTIONS(5024), - [anon_sym_friend] = ACTIONS(5024), - [anon_sym_using] = ACTIONS(5024), - [anon_sym_concept] = ACTIONS(5024), - [anon_sym_requires] = ACTIONS(5024), - }, - [2346] = { - [sym_identifier] = ACTIONS(5028), - [anon_sym_COMMA] = ACTIONS(5030), - [anon_sym_RPAREN] = ACTIONS(5030), - [anon_sym_LPAREN2] = ACTIONS(5030), - [anon_sym_TILDE] = ACTIONS(5030), - [anon_sym_STAR] = ACTIONS(5030), - [anon_sym_PIPE_PIPE] = ACTIONS(5030), - [anon_sym_AMP_AMP] = ACTIONS(5030), - [anon_sym_AMP] = ACTIONS(5028), - [anon_sym_SEMI] = ACTIONS(5030), - [anon_sym___extension__] = ACTIONS(5028), - [anon_sym_extern] = ACTIONS(5028), - [anon_sym___attribute__] = ACTIONS(5028), - [anon_sym_COLON_COLON] = ACTIONS(5030), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5030), - [anon_sym___declspec] = ACTIONS(5028), - [anon_sym___based] = ACTIONS(5028), - [anon_sym___cdecl] = ACTIONS(5028), - [anon_sym___clrcall] = ACTIONS(5028), - [anon_sym___stdcall] = ACTIONS(5028), - [anon_sym___fastcall] = ACTIONS(5028), - [anon_sym___thiscall] = ACTIONS(5028), - [anon_sym___vectorcall] = ACTIONS(5028), - [anon_sym_LBRACE] = ACTIONS(5030), - [anon_sym_signed] = ACTIONS(5028), - [anon_sym_unsigned] = ACTIONS(5028), - [anon_sym_long] = ACTIONS(5028), - [anon_sym_short] = ACTIONS(5028), - [anon_sym_LBRACK] = ACTIONS(5028), - [anon_sym_EQ] = ACTIONS(5030), - [anon_sym_static] = ACTIONS(5028), - [anon_sym_register] = ACTIONS(5028), - [anon_sym_inline] = ACTIONS(5028), - [anon_sym___inline] = ACTIONS(5028), - [anon_sym___inline__] = ACTIONS(5028), - [anon_sym___forceinline] = ACTIONS(5028), - [anon_sym_thread_local] = ACTIONS(5028), - [anon_sym___thread] = ACTIONS(5028), - [anon_sym_const] = ACTIONS(5028), - [anon_sym_constexpr] = ACTIONS(5028), - [anon_sym_volatile] = ACTIONS(5028), - [anon_sym_restrict] = ACTIONS(5028), - [anon_sym___restrict__] = ACTIONS(5028), - [anon_sym__Atomic] = ACTIONS(5028), - [anon_sym__Noreturn] = ACTIONS(5028), - [anon_sym_noreturn] = ACTIONS(5028), - [anon_sym_mutable] = ACTIONS(5028), - [anon_sym_constinit] = ACTIONS(5028), - [anon_sym_consteval] = ACTIONS(5028), - [sym_primitive_type] = ACTIONS(5028), - [anon_sym_enum] = ACTIONS(5028), - [anon_sym_class] = ACTIONS(5028), - [anon_sym_struct] = ACTIONS(5028), - [anon_sym_union] = ACTIONS(5028), - [anon_sym_or] = ACTIONS(5028), - [anon_sym_and] = ACTIONS(5028), - [anon_sym_asm] = ACTIONS(5028), - [anon_sym___asm__] = ACTIONS(5028), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5028), - [anon_sym_decltype] = ACTIONS(5028), - [anon_sym_final] = ACTIONS(5028), - [anon_sym_override] = ACTIONS(5028), - [anon_sym_virtual] = ACTIONS(5028), - [anon_sym_alignas] = ACTIONS(5028), - [anon_sym_explicit] = ACTIONS(5028), - [anon_sym_typename] = ACTIONS(5028), - [anon_sym_template] = ACTIONS(5028), - [anon_sym_GT2] = ACTIONS(5030), - [anon_sym_operator] = ACTIONS(5028), - [anon_sym_try] = ACTIONS(5028), - [anon_sym_friend] = ACTIONS(5028), - [anon_sym_using] = ACTIONS(5028), - [anon_sym_concept] = ACTIONS(5028), - [anon_sym_requires] = ACTIONS(5028), - }, - [2347] = { - [sym__declaration_modifiers] = STATE(2688), - [sym__declaration_specifiers] = STATE(4754), - [sym_attribute_specifier] = STATE(2688), - [sym_attribute_declaration] = STATE(2688), - [sym_ms_declspec_modifier] = STATE(2688), - [sym_storage_class_specifier] = STATE(2688), - [sym_type_qualifier] = STATE(2688), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_parameter_declaration] = STATE(8311), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2688), - [sym_alignas_specifier] = STATE(2688), - [sym_dependent_type] = STATE(3958), - [sym_type_parameter_declaration] = STATE(8311), - [sym_variadic_type_parameter_declaration] = STATE(8311), - [sym_optional_type_parameter_declaration] = STATE(8311), - [sym_template_template_parameter_declaration] = STATE(8311), - [sym_optional_parameter_declaration] = STATE(8311), - [sym_variadic_parameter_declaration] = STATE(8311), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7280), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2688), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4906), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(5016), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(5018), - [anon_sym_template] = ACTIONS(5020), - [anon_sym_GT2] = ACTIONS(5032), - }, - [2348] = { - [sym_identifier] = ACTIONS(5034), - [anon_sym_COMMA] = ACTIONS(5036), - [anon_sym_RPAREN] = ACTIONS(5036), - [anon_sym_LPAREN2] = ACTIONS(5036), - [anon_sym_TILDE] = ACTIONS(5036), - [anon_sym_STAR] = ACTIONS(5036), - [anon_sym_PIPE_PIPE] = ACTIONS(5036), - [anon_sym_AMP_AMP] = ACTIONS(5036), - [anon_sym_AMP] = ACTIONS(5034), - [anon_sym_SEMI] = ACTIONS(5036), - [anon_sym___extension__] = ACTIONS(5034), - [anon_sym_extern] = ACTIONS(5034), - [anon_sym___attribute__] = ACTIONS(5034), - [anon_sym_COLON_COLON] = ACTIONS(5036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5036), - [anon_sym___declspec] = ACTIONS(5034), - [anon_sym___based] = ACTIONS(5034), - [anon_sym___cdecl] = ACTIONS(5034), - [anon_sym___clrcall] = ACTIONS(5034), - [anon_sym___stdcall] = ACTIONS(5034), - [anon_sym___fastcall] = ACTIONS(5034), - [anon_sym___thiscall] = ACTIONS(5034), - [anon_sym___vectorcall] = ACTIONS(5034), - [anon_sym_LBRACE] = ACTIONS(5036), - [anon_sym_signed] = ACTIONS(5034), - [anon_sym_unsigned] = ACTIONS(5034), - [anon_sym_long] = ACTIONS(5034), - [anon_sym_short] = ACTIONS(5034), - [anon_sym_LBRACK] = ACTIONS(5034), - [anon_sym_EQ] = ACTIONS(5036), - [anon_sym_static] = ACTIONS(5034), - [anon_sym_register] = ACTIONS(5034), - [anon_sym_inline] = ACTIONS(5034), - [anon_sym___inline] = ACTIONS(5034), - [anon_sym___inline__] = ACTIONS(5034), - [anon_sym___forceinline] = ACTIONS(5034), - [anon_sym_thread_local] = ACTIONS(5034), - [anon_sym___thread] = ACTIONS(5034), - [anon_sym_const] = ACTIONS(5034), - [anon_sym_constexpr] = ACTIONS(5034), - [anon_sym_volatile] = ACTIONS(5034), - [anon_sym_restrict] = ACTIONS(5034), - [anon_sym___restrict__] = ACTIONS(5034), - [anon_sym__Atomic] = ACTIONS(5034), - [anon_sym__Noreturn] = ACTIONS(5034), - [anon_sym_noreturn] = ACTIONS(5034), - [anon_sym_mutable] = ACTIONS(5034), - [anon_sym_constinit] = ACTIONS(5034), - [anon_sym_consteval] = ACTIONS(5034), - [sym_primitive_type] = ACTIONS(5034), - [anon_sym_enum] = ACTIONS(5034), - [anon_sym_class] = ACTIONS(5034), - [anon_sym_struct] = ACTIONS(5034), - [anon_sym_union] = ACTIONS(5034), - [anon_sym_or] = ACTIONS(5034), - [anon_sym_and] = ACTIONS(5034), - [anon_sym_asm] = ACTIONS(5034), - [anon_sym___asm__] = ACTIONS(5034), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5034), - [anon_sym_decltype] = ACTIONS(5034), - [anon_sym_final] = ACTIONS(5034), - [anon_sym_override] = ACTIONS(5034), - [anon_sym_virtual] = ACTIONS(5034), - [anon_sym_alignas] = ACTIONS(5034), - [anon_sym_explicit] = ACTIONS(5034), - [anon_sym_typename] = ACTIONS(5034), - [anon_sym_template] = ACTIONS(5034), - [anon_sym_GT2] = ACTIONS(5036), - [anon_sym_operator] = ACTIONS(5034), - [anon_sym_try] = ACTIONS(5034), - [anon_sym_friend] = ACTIONS(5034), - [anon_sym_using] = ACTIONS(5034), - [anon_sym_concept] = ACTIONS(5034), - [anon_sym_requires] = ACTIONS(5034), - }, - [2349] = { - [sym_identifier] = ACTIONS(5038), - [anon_sym_COMMA] = ACTIONS(5040), - [anon_sym_RPAREN] = ACTIONS(5040), - [anon_sym_LPAREN2] = ACTIONS(5040), - [anon_sym_TILDE] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_PIPE_PIPE] = ACTIONS(5040), - [anon_sym_AMP_AMP] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5038), - [anon_sym_SEMI] = ACTIONS(5040), - [anon_sym___extension__] = ACTIONS(5038), - [anon_sym_extern] = ACTIONS(5038), - [anon_sym___attribute__] = ACTIONS(5038), - [anon_sym_COLON_COLON] = ACTIONS(5040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5040), - [anon_sym___declspec] = ACTIONS(5038), - [anon_sym___based] = ACTIONS(5038), - [anon_sym___cdecl] = ACTIONS(5038), - [anon_sym___clrcall] = ACTIONS(5038), - [anon_sym___stdcall] = ACTIONS(5038), - [anon_sym___fastcall] = ACTIONS(5038), - [anon_sym___thiscall] = ACTIONS(5038), - [anon_sym___vectorcall] = ACTIONS(5038), - [anon_sym_LBRACE] = ACTIONS(5040), - [anon_sym_signed] = ACTIONS(5038), - [anon_sym_unsigned] = ACTIONS(5038), - [anon_sym_long] = ACTIONS(5038), - [anon_sym_short] = ACTIONS(5038), - [anon_sym_LBRACK] = ACTIONS(5038), - [anon_sym_EQ] = ACTIONS(5040), - [anon_sym_static] = ACTIONS(5038), - [anon_sym_register] = ACTIONS(5038), - [anon_sym_inline] = ACTIONS(5038), - [anon_sym___inline] = ACTIONS(5038), - [anon_sym___inline__] = ACTIONS(5038), - [anon_sym___forceinline] = ACTIONS(5038), - [anon_sym_thread_local] = ACTIONS(5038), - [anon_sym___thread] = ACTIONS(5038), - [anon_sym_const] = ACTIONS(5038), - [anon_sym_constexpr] = ACTIONS(5038), - [anon_sym_volatile] = ACTIONS(5038), - [anon_sym_restrict] = ACTIONS(5038), - [anon_sym___restrict__] = ACTIONS(5038), - [anon_sym__Atomic] = ACTIONS(5038), - [anon_sym__Noreturn] = ACTIONS(5038), - [anon_sym_noreturn] = ACTIONS(5038), - [anon_sym_mutable] = ACTIONS(5038), - [anon_sym_constinit] = ACTIONS(5038), - [anon_sym_consteval] = ACTIONS(5038), - [sym_primitive_type] = ACTIONS(5038), - [anon_sym_enum] = ACTIONS(5038), - [anon_sym_class] = ACTIONS(5038), - [anon_sym_struct] = ACTIONS(5038), - [anon_sym_union] = ACTIONS(5038), - [anon_sym_or] = ACTIONS(5038), - [anon_sym_and] = ACTIONS(5038), - [anon_sym_asm] = ACTIONS(5038), - [anon_sym___asm__] = ACTIONS(5038), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5038), - [anon_sym_decltype] = ACTIONS(5038), - [anon_sym_final] = ACTIONS(5038), - [anon_sym_override] = ACTIONS(5038), - [anon_sym_virtual] = ACTIONS(5038), - [anon_sym_alignas] = ACTIONS(5038), - [anon_sym_explicit] = ACTIONS(5038), - [anon_sym_typename] = ACTIONS(5038), - [anon_sym_template] = ACTIONS(5038), - [anon_sym_GT2] = ACTIONS(5040), - [anon_sym_operator] = ACTIONS(5038), - [anon_sym_try] = ACTIONS(5038), - [anon_sym_friend] = ACTIONS(5038), - [anon_sym_using] = ACTIONS(5038), - [anon_sym_concept] = ACTIONS(5038), - [anon_sym_requires] = ACTIONS(5038), - }, - [2350] = { - [sym_identifier] = ACTIONS(5042), - [anon_sym_COMMA] = ACTIONS(5044), - [anon_sym_RPAREN] = ACTIONS(5044), - [anon_sym_LPAREN2] = ACTIONS(5044), - [anon_sym_TILDE] = ACTIONS(5044), - [anon_sym_STAR] = ACTIONS(5044), - [anon_sym_PIPE_PIPE] = ACTIONS(5044), - [anon_sym_AMP_AMP] = ACTIONS(5044), - [anon_sym_AMP] = ACTIONS(5042), - [anon_sym_SEMI] = ACTIONS(5044), - [anon_sym___extension__] = ACTIONS(5042), - [anon_sym_extern] = ACTIONS(5042), - [anon_sym___attribute__] = ACTIONS(5042), - [anon_sym_COLON_COLON] = ACTIONS(5044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5044), - [anon_sym___declspec] = ACTIONS(5042), - [anon_sym___based] = ACTIONS(5042), - [anon_sym___cdecl] = ACTIONS(5042), - [anon_sym___clrcall] = ACTIONS(5042), - [anon_sym___stdcall] = ACTIONS(5042), - [anon_sym___fastcall] = ACTIONS(5042), - [anon_sym___thiscall] = ACTIONS(5042), - [anon_sym___vectorcall] = ACTIONS(5042), - [anon_sym_LBRACE] = ACTIONS(5044), - [anon_sym_signed] = ACTIONS(5042), - [anon_sym_unsigned] = ACTIONS(5042), - [anon_sym_long] = ACTIONS(5042), - [anon_sym_short] = ACTIONS(5042), - [anon_sym_LBRACK] = ACTIONS(5042), - [anon_sym_EQ] = ACTIONS(5044), - [anon_sym_static] = ACTIONS(5042), - [anon_sym_register] = ACTIONS(5042), - [anon_sym_inline] = ACTIONS(5042), - [anon_sym___inline] = ACTIONS(5042), - [anon_sym___inline__] = ACTIONS(5042), - [anon_sym___forceinline] = ACTIONS(5042), - [anon_sym_thread_local] = ACTIONS(5042), - [anon_sym___thread] = ACTIONS(5042), - [anon_sym_const] = ACTIONS(5042), - [anon_sym_constexpr] = ACTIONS(5042), - [anon_sym_volatile] = ACTIONS(5042), - [anon_sym_restrict] = ACTIONS(5042), - [anon_sym___restrict__] = ACTIONS(5042), - [anon_sym__Atomic] = ACTIONS(5042), - [anon_sym__Noreturn] = ACTIONS(5042), - [anon_sym_noreturn] = ACTIONS(5042), - [anon_sym_mutable] = ACTIONS(5042), - [anon_sym_constinit] = ACTIONS(5042), - [anon_sym_consteval] = ACTIONS(5042), - [sym_primitive_type] = ACTIONS(5042), - [anon_sym_enum] = ACTIONS(5042), - [anon_sym_class] = ACTIONS(5042), - [anon_sym_struct] = ACTIONS(5042), - [anon_sym_union] = ACTIONS(5042), - [anon_sym_or] = ACTIONS(5042), - [anon_sym_and] = ACTIONS(5042), - [anon_sym_asm] = ACTIONS(5042), - [anon_sym___asm__] = ACTIONS(5042), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5042), - [anon_sym_decltype] = ACTIONS(5042), - [anon_sym_final] = ACTIONS(5042), - [anon_sym_override] = ACTIONS(5042), - [anon_sym_virtual] = ACTIONS(5042), - [anon_sym_alignas] = ACTIONS(5042), - [anon_sym_explicit] = ACTIONS(5042), - [anon_sym_typename] = ACTIONS(5042), - [anon_sym_template] = ACTIONS(5042), - [anon_sym_GT2] = ACTIONS(5044), - [anon_sym_operator] = ACTIONS(5042), - [anon_sym_try] = ACTIONS(5042), - [anon_sym_friend] = ACTIONS(5042), - [anon_sym_using] = ACTIONS(5042), - [anon_sym_concept] = ACTIONS(5042), - [anon_sym_requires] = ACTIONS(5042), - }, - [2351] = { - [sym_identifier] = ACTIONS(5046), - [anon_sym_COMMA] = ACTIONS(5048), - [anon_sym_RPAREN] = ACTIONS(5048), - [anon_sym_LPAREN2] = ACTIONS(5048), - [anon_sym_TILDE] = ACTIONS(5048), - [anon_sym_STAR] = ACTIONS(5048), - [anon_sym_PIPE_PIPE] = ACTIONS(5048), - [anon_sym_AMP_AMP] = ACTIONS(5048), - [anon_sym_AMP] = ACTIONS(5046), - [anon_sym_SEMI] = ACTIONS(5048), - [anon_sym___extension__] = ACTIONS(5046), - [anon_sym_extern] = ACTIONS(5046), - [anon_sym___attribute__] = ACTIONS(5046), - [anon_sym_COLON_COLON] = ACTIONS(5048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5048), - [anon_sym___declspec] = ACTIONS(5046), - [anon_sym___based] = ACTIONS(5046), - [anon_sym___cdecl] = ACTIONS(5046), - [anon_sym___clrcall] = ACTIONS(5046), - [anon_sym___stdcall] = ACTIONS(5046), - [anon_sym___fastcall] = ACTIONS(5046), - [anon_sym___thiscall] = ACTIONS(5046), - [anon_sym___vectorcall] = ACTIONS(5046), - [anon_sym_LBRACE] = ACTIONS(5048), - [anon_sym_signed] = ACTIONS(5046), - [anon_sym_unsigned] = ACTIONS(5046), - [anon_sym_long] = ACTIONS(5046), - [anon_sym_short] = ACTIONS(5046), - [anon_sym_LBRACK] = ACTIONS(5046), - [anon_sym_EQ] = ACTIONS(5048), - [anon_sym_static] = ACTIONS(5046), - [anon_sym_register] = ACTIONS(5046), - [anon_sym_inline] = ACTIONS(5046), - [anon_sym___inline] = ACTIONS(5046), - [anon_sym___inline__] = ACTIONS(5046), - [anon_sym___forceinline] = ACTIONS(5046), - [anon_sym_thread_local] = ACTIONS(5046), - [anon_sym___thread] = ACTIONS(5046), - [anon_sym_const] = ACTIONS(5046), - [anon_sym_constexpr] = ACTIONS(5046), - [anon_sym_volatile] = ACTIONS(5046), - [anon_sym_restrict] = ACTIONS(5046), - [anon_sym___restrict__] = ACTIONS(5046), - [anon_sym__Atomic] = ACTIONS(5046), - [anon_sym__Noreturn] = ACTIONS(5046), - [anon_sym_noreturn] = ACTIONS(5046), - [anon_sym_mutable] = ACTIONS(5046), - [anon_sym_constinit] = ACTIONS(5046), - [anon_sym_consteval] = ACTIONS(5046), - [sym_primitive_type] = ACTIONS(5046), - [anon_sym_enum] = ACTIONS(5046), - [anon_sym_class] = ACTIONS(5046), - [anon_sym_struct] = ACTIONS(5046), - [anon_sym_union] = ACTIONS(5046), - [anon_sym_or] = ACTIONS(5046), - [anon_sym_and] = ACTIONS(5046), - [anon_sym_asm] = ACTIONS(5046), - [anon_sym___asm__] = ACTIONS(5046), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5046), - [anon_sym_decltype] = ACTIONS(5046), - [anon_sym_final] = ACTIONS(5046), - [anon_sym_override] = ACTIONS(5046), - [anon_sym_virtual] = ACTIONS(5046), - [anon_sym_alignas] = ACTIONS(5046), - [anon_sym_explicit] = ACTIONS(5046), - [anon_sym_typename] = ACTIONS(5046), - [anon_sym_template] = ACTIONS(5046), - [anon_sym_GT2] = ACTIONS(5048), - [anon_sym_operator] = ACTIONS(5046), - [anon_sym_try] = ACTIONS(5046), - [anon_sym_friend] = ACTIONS(5046), - [anon_sym_using] = ACTIONS(5046), - [anon_sym_concept] = ACTIONS(5046), - [anon_sym_requires] = ACTIONS(5046), - }, - [2352] = { - [sym_identifier] = ACTIONS(5050), - [anon_sym_COMMA] = ACTIONS(5052), - [anon_sym_RPAREN] = ACTIONS(5052), - [anon_sym_LPAREN2] = ACTIONS(5052), - [anon_sym_TILDE] = ACTIONS(5052), - [anon_sym_STAR] = ACTIONS(5052), - [anon_sym_PIPE_PIPE] = ACTIONS(5052), - [anon_sym_AMP_AMP] = ACTIONS(5052), - [anon_sym_AMP] = ACTIONS(5050), - [anon_sym_SEMI] = ACTIONS(5052), - [anon_sym___extension__] = ACTIONS(5050), - [anon_sym_extern] = ACTIONS(5050), - [anon_sym___attribute__] = ACTIONS(5050), - [anon_sym_COLON_COLON] = ACTIONS(5052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5052), - [anon_sym___declspec] = ACTIONS(5050), - [anon_sym___based] = ACTIONS(5050), - [anon_sym___cdecl] = ACTIONS(5050), - [anon_sym___clrcall] = ACTIONS(5050), - [anon_sym___stdcall] = ACTIONS(5050), - [anon_sym___fastcall] = ACTIONS(5050), - [anon_sym___thiscall] = ACTIONS(5050), - [anon_sym___vectorcall] = ACTIONS(5050), - [anon_sym_LBRACE] = ACTIONS(5052), - [anon_sym_signed] = ACTIONS(5050), - [anon_sym_unsigned] = ACTIONS(5050), - [anon_sym_long] = ACTIONS(5050), - [anon_sym_short] = ACTIONS(5050), - [anon_sym_LBRACK] = ACTIONS(5050), - [anon_sym_EQ] = ACTIONS(5052), - [anon_sym_static] = ACTIONS(5050), - [anon_sym_register] = ACTIONS(5050), - [anon_sym_inline] = ACTIONS(5050), - [anon_sym___inline] = ACTIONS(5050), - [anon_sym___inline__] = ACTIONS(5050), - [anon_sym___forceinline] = ACTIONS(5050), - [anon_sym_thread_local] = ACTIONS(5050), - [anon_sym___thread] = ACTIONS(5050), - [anon_sym_const] = ACTIONS(5050), - [anon_sym_constexpr] = ACTIONS(5050), - [anon_sym_volatile] = ACTIONS(5050), - [anon_sym_restrict] = ACTIONS(5050), - [anon_sym___restrict__] = ACTIONS(5050), - [anon_sym__Atomic] = ACTIONS(5050), - [anon_sym__Noreturn] = ACTIONS(5050), - [anon_sym_noreturn] = ACTIONS(5050), - [anon_sym_mutable] = ACTIONS(5050), - [anon_sym_constinit] = ACTIONS(5050), - [anon_sym_consteval] = ACTIONS(5050), - [sym_primitive_type] = ACTIONS(5050), - [anon_sym_enum] = ACTIONS(5050), - [anon_sym_class] = ACTIONS(5050), - [anon_sym_struct] = ACTIONS(5050), - [anon_sym_union] = ACTIONS(5050), - [anon_sym_or] = ACTIONS(5050), - [anon_sym_and] = ACTIONS(5050), - [anon_sym_asm] = ACTIONS(5050), - [anon_sym___asm__] = ACTIONS(5050), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5050), - [anon_sym_decltype] = ACTIONS(5050), - [anon_sym_final] = ACTIONS(5050), - [anon_sym_override] = ACTIONS(5050), - [anon_sym_virtual] = ACTIONS(5050), - [anon_sym_alignas] = ACTIONS(5050), - [anon_sym_explicit] = ACTIONS(5050), - [anon_sym_typename] = ACTIONS(5050), - [anon_sym_template] = ACTIONS(5050), - [anon_sym_GT2] = ACTIONS(5052), - [anon_sym_operator] = ACTIONS(5050), - [anon_sym_try] = ACTIONS(5050), - [anon_sym_friend] = ACTIONS(5050), - [anon_sym_using] = ACTIONS(5050), - [anon_sym_concept] = ACTIONS(5050), - [anon_sym_requires] = ACTIONS(5050), - }, - [2353] = { - [sym_identifier] = ACTIONS(5054), - [anon_sym_COMMA] = ACTIONS(5056), - [anon_sym_RPAREN] = ACTIONS(5056), - [anon_sym_LPAREN2] = ACTIONS(5056), - [anon_sym_TILDE] = ACTIONS(5056), - [anon_sym_STAR] = ACTIONS(5056), - [anon_sym_PIPE_PIPE] = ACTIONS(5056), - [anon_sym_AMP_AMP] = ACTIONS(5056), - [anon_sym_AMP] = ACTIONS(5054), - [anon_sym_SEMI] = ACTIONS(5056), - [anon_sym___extension__] = ACTIONS(5054), - [anon_sym_extern] = ACTIONS(5054), - [anon_sym___attribute__] = ACTIONS(5054), - [anon_sym_COLON_COLON] = ACTIONS(5056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5056), - [anon_sym___declspec] = ACTIONS(5054), - [anon_sym___based] = ACTIONS(5054), - [anon_sym___cdecl] = ACTIONS(5054), - [anon_sym___clrcall] = ACTIONS(5054), - [anon_sym___stdcall] = ACTIONS(5054), - [anon_sym___fastcall] = ACTIONS(5054), - [anon_sym___thiscall] = ACTIONS(5054), - [anon_sym___vectorcall] = ACTIONS(5054), - [anon_sym_LBRACE] = ACTIONS(5056), - [anon_sym_signed] = ACTIONS(5054), - [anon_sym_unsigned] = ACTIONS(5054), - [anon_sym_long] = ACTIONS(5054), - [anon_sym_short] = ACTIONS(5054), - [anon_sym_LBRACK] = ACTIONS(5054), - [anon_sym_EQ] = ACTIONS(5056), - [anon_sym_static] = ACTIONS(5054), - [anon_sym_register] = ACTIONS(5054), - [anon_sym_inline] = ACTIONS(5054), - [anon_sym___inline] = ACTIONS(5054), - [anon_sym___inline__] = ACTIONS(5054), - [anon_sym___forceinline] = ACTIONS(5054), - [anon_sym_thread_local] = ACTIONS(5054), - [anon_sym___thread] = ACTIONS(5054), - [anon_sym_const] = ACTIONS(5054), - [anon_sym_constexpr] = ACTIONS(5054), - [anon_sym_volatile] = ACTIONS(5054), - [anon_sym_restrict] = ACTIONS(5054), - [anon_sym___restrict__] = ACTIONS(5054), - [anon_sym__Atomic] = ACTIONS(5054), - [anon_sym__Noreturn] = ACTIONS(5054), - [anon_sym_noreturn] = ACTIONS(5054), - [anon_sym_mutable] = ACTIONS(5054), - [anon_sym_constinit] = ACTIONS(5054), - [anon_sym_consteval] = ACTIONS(5054), - [sym_primitive_type] = ACTIONS(5054), - [anon_sym_enum] = ACTIONS(5054), - [anon_sym_class] = ACTIONS(5054), - [anon_sym_struct] = ACTIONS(5054), - [anon_sym_union] = ACTIONS(5054), - [anon_sym_or] = ACTIONS(5054), - [anon_sym_and] = ACTIONS(5054), - [anon_sym_asm] = ACTIONS(5054), - [anon_sym___asm__] = ACTIONS(5054), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5054), - [anon_sym_decltype] = ACTIONS(5054), - [anon_sym_final] = ACTIONS(5054), - [anon_sym_override] = ACTIONS(5054), - [anon_sym_virtual] = ACTIONS(5054), - [anon_sym_alignas] = ACTIONS(5054), - [anon_sym_explicit] = ACTIONS(5054), - [anon_sym_typename] = ACTIONS(5054), - [anon_sym_template] = ACTIONS(5054), - [anon_sym_GT2] = ACTIONS(5056), - [anon_sym_operator] = ACTIONS(5054), - [anon_sym_try] = ACTIONS(5054), - [anon_sym_friend] = ACTIONS(5054), - [anon_sym_using] = ACTIONS(5054), - [anon_sym_concept] = ACTIONS(5054), - [anon_sym_requires] = ACTIONS(5054), - }, - [2354] = { - [sym_identifier] = ACTIONS(5054), - [anon_sym_COMMA] = ACTIONS(5056), - [anon_sym_RPAREN] = ACTIONS(5056), - [anon_sym_LPAREN2] = ACTIONS(5056), - [anon_sym_TILDE] = ACTIONS(5056), - [anon_sym_STAR] = ACTIONS(5056), - [anon_sym_PIPE_PIPE] = ACTIONS(5056), - [anon_sym_AMP_AMP] = ACTIONS(5056), - [anon_sym_AMP] = ACTIONS(5054), - [anon_sym_SEMI] = ACTIONS(5056), - [anon_sym___extension__] = ACTIONS(5054), - [anon_sym_extern] = ACTIONS(5054), - [anon_sym___attribute__] = ACTIONS(5054), - [anon_sym_COLON_COLON] = ACTIONS(5056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5056), - [anon_sym___declspec] = ACTIONS(5054), - [anon_sym___based] = ACTIONS(5054), - [anon_sym___cdecl] = ACTIONS(5054), - [anon_sym___clrcall] = ACTIONS(5054), - [anon_sym___stdcall] = ACTIONS(5054), - [anon_sym___fastcall] = ACTIONS(5054), - [anon_sym___thiscall] = ACTIONS(5054), - [anon_sym___vectorcall] = ACTIONS(5054), - [anon_sym_LBRACE] = ACTIONS(5056), - [anon_sym_signed] = ACTIONS(5054), - [anon_sym_unsigned] = ACTIONS(5054), - [anon_sym_long] = ACTIONS(5054), - [anon_sym_short] = ACTIONS(5054), - [anon_sym_LBRACK] = ACTIONS(5054), - [anon_sym_EQ] = ACTIONS(5056), - [anon_sym_static] = ACTIONS(5054), - [anon_sym_register] = ACTIONS(5054), - [anon_sym_inline] = ACTIONS(5054), - [anon_sym___inline] = ACTIONS(5054), - [anon_sym___inline__] = ACTIONS(5054), - [anon_sym___forceinline] = ACTIONS(5054), - [anon_sym_thread_local] = ACTIONS(5054), - [anon_sym___thread] = ACTIONS(5054), - [anon_sym_const] = ACTIONS(5054), - [anon_sym_constexpr] = ACTIONS(5054), - [anon_sym_volatile] = ACTIONS(5054), - [anon_sym_restrict] = ACTIONS(5054), - [anon_sym___restrict__] = ACTIONS(5054), - [anon_sym__Atomic] = ACTIONS(5054), - [anon_sym__Noreturn] = ACTIONS(5054), - [anon_sym_noreturn] = ACTIONS(5054), - [anon_sym_mutable] = ACTIONS(5054), - [anon_sym_constinit] = ACTIONS(5054), - [anon_sym_consteval] = ACTIONS(5054), - [sym_primitive_type] = ACTIONS(5054), - [anon_sym_enum] = ACTIONS(5054), - [anon_sym_class] = ACTIONS(5054), - [anon_sym_struct] = ACTIONS(5054), - [anon_sym_union] = ACTIONS(5054), - [anon_sym_or] = ACTIONS(5054), - [anon_sym_and] = ACTIONS(5054), - [anon_sym_asm] = ACTIONS(5054), - [anon_sym___asm__] = ACTIONS(5054), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5054), - [anon_sym_decltype] = ACTIONS(5054), - [anon_sym_final] = ACTIONS(5054), - [anon_sym_override] = ACTIONS(5054), - [anon_sym_virtual] = ACTIONS(5054), - [anon_sym_alignas] = ACTIONS(5054), - [anon_sym_explicit] = ACTIONS(5054), - [anon_sym_typename] = ACTIONS(5054), - [anon_sym_template] = ACTIONS(5054), - [anon_sym_GT2] = ACTIONS(5056), - [anon_sym_operator] = ACTIONS(5054), - [anon_sym_try] = ACTIONS(5054), - [anon_sym_friend] = ACTIONS(5054), - [anon_sym_using] = ACTIONS(5054), - [anon_sym_concept] = ACTIONS(5054), - [anon_sym_requires] = ACTIONS(5054), - }, - [2355] = { - [sym_identifier] = ACTIONS(5054), - [anon_sym_COMMA] = ACTIONS(5056), - [anon_sym_RPAREN] = ACTIONS(5056), - [anon_sym_LPAREN2] = ACTIONS(5056), - [anon_sym_TILDE] = ACTIONS(5056), - [anon_sym_STAR] = ACTIONS(5056), - [anon_sym_PIPE_PIPE] = ACTIONS(5056), - [anon_sym_AMP_AMP] = ACTIONS(5056), - [anon_sym_AMP] = ACTIONS(5054), - [anon_sym_SEMI] = ACTIONS(5056), - [anon_sym___extension__] = ACTIONS(5054), - [anon_sym_extern] = ACTIONS(5054), - [anon_sym___attribute__] = ACTIONS(5054), - [anon_sym_COLON_COLON] = ACTIONS(5056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5056), - [anon_sym___declspec] = ACTIONS(5054), - [anon_sym___based] = ACTIONS(5054), - [anon_sym___cdecl] = ACTIONS(5054), - [anon_sym___clrcall] = ACTIONS(5054), - [anon_sym___stdcall] = ACTIONS(5054), - [anon_sym___fastcall] = ACTIONS(5054), - [anon_sym___thiscall] = ACTIONS(5054), - [anon_sym___vectorcall] = ACTIONS(5054), - [anon_sym_LBRACE] = ACTIONS(5056), - [anon_sym_signed] = ACTIONS(5054), - [anon_sym_unsigned] = ACTIONS(5054), - [anon_sym_long] = ACTIONS(5054), - [anon_sym_short] = ACTIONS(5054), - [anon_sym_LBRACK] = ACTIONS(5054), - [anon_sym_EQ] = ACTIONS(5056), - [anon_sym_static] = ACTIONS(5054), - [anon_sym_register] = ACTIONS(5054), - [anon_sym_inline] = ACTIONS(5054), - [anon_sym___inline] = ACTIONS(5054), - [anon_sym___inline__] = ACTIONS(5054), - [anon_sym___forceinline] = ACTIONS(5054), - [anon_sym_thread_local] = ACTIONS(5054), - [anon_sym___thread] = ACTIONS(5054), - [anon_sym_const] = ACTIONS(5054), - [anon_sym_constexpr] = ACTIONS(5054), - [anon_sym_volatile] = ACTIONS(5054), - [anon_sym_restrict] = ACTIONS(5054), - [anon_sym___restrict__] = ACTIONS(5054), - [anon_sym__Atomic] = ACTIONS(5054), - [anon_sym__Noreturn] = ACTIONS(5054), - [anon_sym_noreturn] = ACTIONS(5054), - [anon_sym_mutable] = ACTIONS(5054), - [anon_sym_constinit] = ACTIONS(5054), - [anon_sym_consteval] = ACTIONS(5054), - [sym_primitive_type] = ACTIONS(5054), - [anon_sym_enum] = ACTIONS(5054), - [anon_sym_class] = ACTIONS(5054), - [anon_sym_struct] = ACTIONS(5054), - [anon_sym_union] = ACTIONS(5054), - [anon_sym_or] = ACTIONS(5054), - [anon_sym_and] = ACTIONS(5054), - [anon_sym_asm] = ACTIONS(5054), - [anon_sym___asm__] = ACTIONS(5054), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5054), - [anon_sym_decltype] = ACTIONS(5054), - [anon_sym_final] = ACTIONS(5054), - [anon_sym_override] = ACTIONS(5054), - [anon_sym_virtual] = ACTIONS(5054), - [anon_sym_alignas] = ACTIONS(5054), - [anon_sym_explicit] = ACTIONS(5054), - [anon_sym_typename] = ACTIONS(5054), - [anon_sym_template] = ACTIONS(5054), - [anon_sym_GT2] = ACTIONS(5056), - [anon_sym_operator] = ACTIONS(5054), - [anon_sym_try] = ACTIONS(5054), - [anon_sym_friend] = ACTIONS(5054), - [anon_sym_using] = ACTIONS(5054), - [anon_sym_concept] = ACTIONS(5054), - [anon_sym_requires] = ACTIONS(5054), - }, - [2356] = { - [sym_identifier] = ACTIONS(5058), - [anon_sym_COMMA] = ACTIONS(5060), - [anon_sym_RPAREN] = ACTIONS(5060), - [anon_sym_LPAREN2] = ACTIONS(5060), - [anon_sym_TILDE] = ACTIONS(5060), - [anon_sym_STAR] = ACTIONS(5060), - [anon_sym_PIPE_PIPE] = ACTIONS(5060), - [anon_sym_AMP_AMP] = ACTIONS(5060), - [anon_sym_AMP] = ACTIONS(5058), - [anon_sym_SEMI] = ACTIONS(5060), - [anon_sym___extension__] = ACTIONS(5058), - [anon_sym_extern] = ACTIONS(5058), - [anon_sym___attribute__] = ACTIONS(5058), - [anon_sym_COLON_COLON] = ACTIONS(5060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5060), - [anon_sym___declspec] = ACTIONS(5058), - [anon_sym___based] = ACTIONS(5058), - [anon_sym___cdecl] = ACTIONS(5058), - [anon_sym___clrcall] = ACTIONS(5058), - [anon_sym___stdcall] = ACTIONS(5058), - [anon_sym___fastcall] = ACTIONS(5058), - [anon_sym___thiscall] = ACTIONS(5058), - [anon_sym___vectorcall] = ACTIONS(5058), - [anon_sym_LBRACE] = ACTIONS(5060), - [anon_sym_signed] = ACTIONS(5058), - [anon_sym_unsigned] = ACTIONS(5058), - [anon_sym_long] = ACTIONS(5058), - [anon_sym_short] = ACTIONS(5058), - [anon_sym_LBRACK] = ACTIONS(5058), - [anon_sym_EQ] = ACTIONS(5060), - [anon_sym_static] = ACTIONS(5058), - [anon_sym_register] = ACTIONS(5058), - [anon_sym_inline] = ACTIONS(5058), - [anon_sym___inline] = ACTIONS(5058), - [anon_sym___inline__] = ACTIONS(5058), - [anon_sym___forceinline] = ACTIONS(5058), - [anon_sym_thread_local] = ACTIONS(5058), - [anon_sym___thread] = ACTIONS(5058), - [anon_sym_const] = ACTIONS(5058), - [anon_sym_constexpr] = ACTIONS(5058), - [anon_sym_volatile] = ACTIONS(5058), - [anon_sym_restrict] = ACTIONS(5058), - [anon_sym___restrict__] = ACTIONS(5058), - [anon_sym__Atomic] = ACTIONS(5058), - [anon_sym__Noreturn] = ACTIONS(5058), - [anon_sym_noreturn] = ACTIONS(5058), - [anon_sym_mutable] = ACTIONS(5058), - [anon_sym_constinit] = ACTIONS(5058), - [anon_sym_consteval] = ACTIONS(5058), - [sym_primitive_type] = ACTIONS(5058), - [anon_sym_enum] = ACTIONS(5058), - [anon_sym_class] = ACTIONS(5058), - [anon_sym_struct] = ACTIONS(5058), - [anon_sym_union] = ACTIONS(5058), - [anon_sym_or] = ACTIONS(5058), - [anon_sym_and] = ACTIONS(5058), - [anon_sym_asm] = ACTIONS(5058), - [anon_sym___asm__] = ACTIONS(5058), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5058), - [anon_sym_decltype] = ACTIONS(5058), - [anon_sym_final] = ACTIONS(5058), - [anon_sym_override] = ACTIONS(5058), - [anon_sym_virtual] = ACTIONS(5058), - [anon_sym_alignas] = ACTIONS(5058), - [anon_sym_explicit] = ACTIONS(5058), - [anon_sym_typename] = ACTIONS(5058), - [anon_sym_template] = ACTIONS(5058), - [anon_sym_GT2] = ACTIONS(5060), - [anon_sym_operator] = ACTIONS(5058), - [anon_sym_try] = ACTIONS(5058), - [anon_sym_friend] = ACTIONS(5058), - [anon_sym_using] = ACTIONS(5058), - [anon_sym_concept] = ACTIONS(5058), - [anon_sym_requires] = ACTIONS(5058), - }, - [2357] = { - [sym_identifier] = ACTIONS(5062), - [anon_sym_COMMA] = ACTIONS(5064), - [anon_sym_RPAREN] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5064), - [anon_sym_TILDE] = ACTIONS(5064), - [anon_sym_STAR] = ACTIONS(5064), - [anon_sym_PIPE_PIPE] = ACTIONS(5064), - [anon_sym_AMP_AMP] = ACTIONS(5064), - [anon_sym_AMP] = ACTIONS(5062), - [anon_sym_SEMI] = ACTIONS(5064), - [anon_sym___extension__] = ACTIONS(5062), - [anon_sym_extern] = ACTIONS(5062), - [anon_sym___attribute__] = ACTIONS(5062), - [anon_sym_COLON_COLON] = ACTIONS(5064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5064), - [anon_sym___declspec] = ACTIONS(5062), - [anon_sym___based] = ACTIONS(5062), - [anon_sym___cdecl] = ACTIONS(5062), - [anon_sym___clrcall] = ACTIONS(5062), - [anon_sym___stdcall] = ACTIONS(5062), - [anon_sym___fastcall] = ACTIONS(5062), - [anon_sym___thiscall] = ACTIONS(5062), - [anon_sym___vectorcall] = ACTIONS(5062), - [anon_sym_LBRACE] = ACTIONS(5064), - [anon_sym_signed] = ACTIONS(5062), - [anon_sym_unsigned] = ACTIONS(5062), - [anon_sym_long] = ACTIONS(5062), - [anon_sym_short] = ACTIONS(5062), - [anon_sym_LBRACK] = ACTIONS(5062), - [anon_sym_EQ] = ACTIONS(5064), - [anon_sym_static] = ACTIONS(5062), - [anon_sym_register] = ACTIONS(5062), - [anon_sym_inline] = ACTIONS(5062), - [anon_sym___inline] = ACTIONS(5062), - [anon_sym___inline__] = ACTIONS(5062), - [anon_sym___forceinline] = ACTIONS(5062), - [anon_sym_thread_local] = ACTIONS(5062), - [anon_sym___thread] = ACTIONS(5062), - [anon_sym_const] = ACTIONS(5062), - [anon_sym_constexpr] = ACTIONS(5062), - [anon_sym_volatile] = ACTIONS(5062), - [anon_sym_restrict] = ACTIONS(5062), - [anon_sym___restrict__] = ACTIONS(5062), - [anon_sym__Atomic] = ACTIONS(5062), - [anon_sym__Noreturn] = ACTIONS(5062), - [anon_sym_noreturn] = ACTIONS(5062), - [anon_sym_mutable] = ACTIONS(5062), - [anon_sym_constinit] = ACTIONS(5062), - [anon_sym_consteval] = ACTIONS(5062), - [sym_primitive_type] = ACTIONS(5062), - [anon_sym_enum] = ACTIONS(5062), - [anon_sym_class] = ACTIONS(5062), - [anon_sym_struct] = ACTIONS(5062), - [anon_sym_union] = ACTIONS(5062), - [anon_sym_or] = ACTIONS(5062), - [anon_sym_and] = ACTIONS(5062), - [anon_sym_asm] = ACTIONS(5062), - [anon_sym___asm__] = ACTIONS(5062), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5062), - [anon_sym_decltype] = ACTIONS(5062), - [anon_sym_final] = ACTIONS(5062), - [anon_sym_override] = ACTIONS(5062), - [anon_sym_virtual] = ACTIONS(5062), - [anon_sym_alignas] = ACTIONS(5062), - [anon_sym_explicit] = ACTIONS(5062), - [anon_sym_typename] = ACTIONS(5062), - [anon_sym_template] = ACTIONS(5062), - [anon_sym_GT2] = ACTIONS(5064), - [anon_sym_operator] = ACTIONS(5062), - [anon_sym_try] = ACTIONS(5062), - [anon_sym_friend] = ACTIONS(5062), - [anon_sym_using] = ACTIONS(5062), - [anon_sym_concept] = ACTIONS(5062), - [anon_sym_requires] = ACTIONS(5062), - }, - [2358] = { - [sym_identifier] = ACTIONS(5066), - [anon_sym_COMMA] = ACTIONS(5068), - [anon_sym_RPAREN] = ACTIONS(5068), - [anon_sym_LPAREN2] = ACTIONS(5068), - [anon_sym_TILDE] = ACTIONS(5068), - [anon_sym_STAR] = ACTIONS(5068), - [anon_sym_PIPE_PIPE] = ACTIONS(5068), - [anon_sym_AMP_AMP] = ACTIONS(5068), - [anon_sym_AMP] = ACTIONS(5066), - [anon_sym_SEMI] = ACTIONS(5068), - [anon_sym___extension__] = ACTIONS(5066), - [anon_sym_extern] = ACTIONS(5066), - [anon_sym___attribute__] = ACTIONS(5066), - [anon_sym_COLON_COLON] = ACTIONS(5068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5068), - [anon_sym___declspec] = ACTIONS(5066), - [anon_sym___based] = ACTIONS(5066), - [anon_sym___cdecl] = ACTIONS(5066), - [anon_sym___clrcall] = ACTIONS(5066), - [anon_sym___stdcall] = ACTIONS(5066), - [anon_sym___fastcall] = ACTIONS(5066), - [anon_sym___thiscall] = ACTIONS(5066), - [anon_sym___vectorcall] = ACTIONS(5066), - [anon_sym_LBRACE] = ACTIONS(5068), - [anon_sym_signed] = ACTIONS(5066), - [anon_sym_unsigned] = ACTIONS(5066), - [anon_sym_long] = ACTIONS(5066), - [anon_sym_short] = ACTIONS(5066), - [anon_sym_LBRACK] = ACTIONS(5066), - [anon_sym_EQ] = ACTIONS(5068), - [anon_sym_static] = ACTIONS(5066), - [anon_sym_register] = ACTIONS(5066), - [anon_sym_inline] = ACTIONS(5066), - [anon_sym___inline] = ACTIONS(5066), - [anon_sym___inline__] = ACTIONS(5066), - [anon_sym___forceinline] = ACTIONS(5066), - [anon_sym_thread_local] = ACTIONS(5066), - [anon_sym___thread] = ACTIONS(5066), - [anon_sym_const] = ACTIONS(5066), - [anon_sym_constexpr] = ACTIONS(5066), - [anon_sym_volatile] = ACTIONS(5066), - [anon_sym_restrict] = ACTIONS(5066), - [anon_sym___restrict__] = ACTIONS(5066), - [anon_sym__Atomic] = ACTIONS(5066), - [anon_sym__Noreturn] = ACTIONS(5066), - [anon_sym_noreturn] = ACTIONS(5066), - [anon_sym_mutable] = ACTIONS(5066), - [anon_sym_constinit] = ACTIONS(5066), - [anon_sym_consteval] = ACTIONS(5066), - [sym_primitive_type] = ACTIONS(5066), - [anon_sym_enum] = ACTIONS(5066), - [anon_sym_class] = ACTIONS(5066), - [anon_sym_struct] = ACTIONS(5066), - [anon_sym_union] = ACTIONS(5066), - [anon_sym_or] = ACTIONS(5066), - [anon_sym_and] = ACTIONS(5066), - [anon_sym_asm] = ACTIONS(5066), - [anon_sym___asm__] = ACTIONS(5066), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5066), - [anon_sym_decltype] = ACTIONS(5066), - [anon_sym_final] = ACTIONS(5066), - [anon_sym_override] = ACTIONS(5066), - [anon_sym_virtual] = ACTIONS(5066), - [anon_sym_alignas] = ACTIONS(5066), - [anon_sym_explicit] = ACTIONS(5066), - [anon_sym_typename] = ACTIONS(5066), - [anon_sym_template] = ACTIONS(5066), - [anon_sym_GT2] = ACTIONS(5068), - [anon_sym_operator] = ACTIONS(5066), - [anon_sym_try] = ACTIONS(5066), - [anon_sym_friend] = ACTIONS(5066), - [anon_sym_using] = ACTIONS(5066), - [anon_sym_concept] = ACTIONS(5066), - [anon_sym_requires] = ACTIONS(5066), - }, - [2359] = { - [sym__declaration_modifiers] = STATE(2688), - [sym__declaration_specifiers] = STATE(4754), - [sym_attribute_specifier] = STATE(2688), - [sym_attribute_declaration] = STATE(2688), - [sym_ms_declspec_modifier] = STATE(2688), - [sym_storage_class_specifier] = STATE(2688), - [sym_type_qualifier] = STATE(2688), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_parameter_declaration] = STATE(8822), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2688), - [sym_alignas_specifier] = STATE(2688), - [sym_dependent_type] = STATE(3958), - [sym_type_parameter_declaration] = STATE(8822), - [sym_variadic_type_parameter_declaration] = STATE(8822), - [sym_optional_type_parameter_declaration] = STATE(8822), - [sym_template_template_parameter_declaration] = STATE(8822), - [sym_optional_parameter_declaration] = STATE(8822), - [sym_variadic_parameter_declaration] = STATE(8822), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7280), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2688), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4906), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(5016), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(5018), - [anon_sym_template] = ACTIONS(5020), - }, - [2360] = { - [sym_identifier] = ACTIONS(4892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), - [anon_sym_COMMA] = ACTIONS(4904), - [anon_sym_LPAREN2] = ACTIONS(4894), - [anon_sym_TILDE] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4899), - [anon_sym_STAR] = ACTIONS(4894), - [anon_sym_SLASH] = ACTIONS(4899), - [anon_sym_PERCENT] = ACTIONS(4904), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_CARET] = ACTIONS(4904), - [anon_sym_AMP] = ACTIONS(4901), - [anon_sym_EQ_EQ] = ACTIONS(4904), - [anon_sym_BANG_EQ] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4899), - [anon_sym_GT_EQ] = ACTIONS(4904), - [anon_sym_LT_EQ] = ACTIONS(4899), - [anon_sym_LT] = ACTIONS(4899), - [anon_sym_LT_LT] = ACTIONS(4904), - [anon_sym_GT_GT] = ACTIONS(4904), - [anon_sym_SEMI] = ACTIONS(4894), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_extern] = ACTIONS(4892), - [anon_sym___attribute__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4897), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4894), - [anon_sym___declspec] = ACTIONS(4892), - [anon_sym___based] = ACTIONS(4892), - [anon_sym_LBRACE] = ACTIONS(4897), - [anon_sym_RBRACE] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_static] = ACTIONS(4892), - [anon_sym_register] = ACTIONS(4892), - [anon_sym_inline] = ACTIONS(4892), - [anon_sym___inline] = ACTIONS(4892), - [anon_sym___inline__] = ACTIONS(4892), - [anon_sym___forceinline] = ACTIONS(4892), - [anon_sym_thread_local] = ACTIONS(4892), - [anon_sym___thread] = ACTIONS(4892), - [anon_sym_const] = ACTIONS(4892), - [anon_sym_constexpr] = ACTIONS(4892), - [anon_sym_volatile] = ACTIONS(4892), - [anon_sym_restrict] = ACTIONS(4892), - [anon_sym___restrict__] = ACTIONS(4892), - [anon_sym__Atomic] = ACTIONS(4892), - [anon_sym__Noreturn] = ACTIONS(4892), - [anon_sym_noreturn] = ACTIONS(4892), - [anon_sym_mutable] = ACTIONS(4892), - [anon_sym_constinit] = ACTIONS(4892), - [anon_sym_consteval] = ACTIONS(4892), - [anon_sym_QMARK] = ACTIONS(4904), - [anon_sym_LT_EQ_GT] = ACTIONS(4904), - [anon_sym_or] = ACTIONS(4899), - [anon_sym_and] = ACTIONS(4899), - [anon_sym_bitor] = ACTIONS(4899), - [anon_sym_xor] = ACTIONS(4899), - [anon_sym_bitand] = ACTIONS(4899), - [anon_sym_not_eq] = ACTIONS(4899), - [anon_sym_DASH_DASH] = ACTIONS(4904), - [anon_sym_PLUS_PLUS] = ACTIONS(4904), - [anon_sym_DOT] = ACTIONS(4899), - [anon_sym_DOT_STAR] = ACTIONS(4904), - [anon_sym_DASH_GT] = ACTIONS(4904), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4892), - [anon_sym_decltype] = ACTIONS(4892), - [anon_sym_virtual] = ACTIONS(4892), - [anon_sym_alignas] = ACTIONS(4892), - [anon_sym_template] = ACTIONS(4892), - [anon_sym_operator] = ACTIONS(4892), - }, - [2361] = { - [sym_identifier] = ACTIONS(4892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4894), - [anon_sym_COMMA] = ACTIONS(4894), - [anon_sym_RPAREN] = ACTIONS(4894), - [anon_sym_LPAREN2] = ACTIONS(4894), - [anon_sym_TILDE] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4899), - [anon_sym_STAR] = ACTIONS(4894), - [anon_sym_SLASH] = ACTIONS(4899), - [anon_sym_PERCENT] = ACTIONS(4904), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_CARET] = ACTIONS(4904), - [anon_sym_AMP] = ACTIONS(4901), - [anon_sym_EQ_EQ] = ACTIONS(4904), - [anon_sym_BANG_EQ] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4899), - [anon_sym_GT_EQ] = ACTIONS(4904), - [anon_sym_LT_EQ] = ACTIONS(4899), - [anon_sym_LT] = ACTIONS(4899), - [anon_sym_LT_LT] = ACTIONS(4904), - [anon_sym_GT_GT] = ACTIONS(4904), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_extern] = ACTIONS(4892), - [anon_sym___attribute__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4897), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4897), - [anon_sym___declspec] = ACTIONS(4892), - [anon_sym___based] = ACTIONS(4892), - [anon_sym_LBRACE] = ACTIONS(4897), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_EQ] = ACTIONS(4892), - [anon_sym_static] = ACTIONS(4892), - [anon_sym_register] = ACTIONS(4892), - [anon_sym_inline] = ACTIONS(4892), - [anon_sym___inline] = ACTIONS(4892), - [anon_sym___inline__] = ACTIONS(4892), - [anon_sym___forceinline] = ACTIONS(4892), - [anon_sym_thread_local] = ACTIONS(4892), - [anon_sym___thread] = ACTIONS(4892), - [anon_sym_const] = ACTIONS(4892), - [anon_sym_constexpr] = ACTIONS(4892), - [anon_sym_volatile] = ACTIONS(4892), - [anon_sym_restrict] = ACTIONS(4892), - [anon_sym___restrict__] = ACTIONS(4892), - [anon_sym__Atomic] = ACTIONS(4892), - [anon_sym__Noreturn] = ACTIONS(4892), - [anon_sym_noreturn] = ACTIONS(4892), - [anon_sym_mutable] = ACTIONS(4892), - [anon_sym_constinit] = ACTIONS(4892), - [anon_sym_consteval] = ACTIONS(4892), - [anon_sym_QMARK] = ACTIONS(4904), - [anon_sym_LT_EQ_GT] = ACTIONS(4904), - [anon_sym_or] = ACTIONS(4899), - [anon_sym_and] = ACTIONS(4899), - [anon_sym_bitor] = ACTIONS(4899), - [anon_sym_xor] = ACTIONS(4899), - [anon_sym_bitand] = ACTIONS(4899), - [anon_sym_not_eq] = ACTIONS(4899), - [anon_sym_DASH_DASH] = ACTIONS(4904), - [anon_sym_PLUS_PLUS] = ACTIONS(4904), - [anon_sym_DOT] = ACTIONS(4899), - [anon_sym_DOT_STAR] = ACTIONS(4904), - [anon_sym_DASH_GT] = ACTIONS(4904), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4892), - [anon_sym_decltype] = ACTIONS(4892), - [anon_sym_virtual] = ACTIONS(4892), - [anon_sym_alignas] = ACTIONS(4892), - [anon_sym_template] = ACTIONS(4892), - [anon_sym_operator] = ACTIONS(4892), - }, - [2362] = { - [sym_identifier] = ACTIONS(4892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), - [anon_sym_COMMA] = ACTIONS(4904), - [anon_sym_RPAREN] = ACTIONS(4904), - [anon_sym_LPAREN2] = ACTIONS(4894), - [anon_sym_TILDE] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4899), - [anon_sym_STAR] = ACTIONS(4894), - [anon_sym_SLASH] = ACTIONS(4899), - [anon_sym_PERCENT] = ACTIONS(4904), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_CARET] = ACTIONS(4904), - [anon_sym_AMP] = ACTIONS(4901), - [anon_sym_EQ_EQ] = ACTIONS(4904), - [anon_sym_BANG_EQ] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4899), - [anon_sym_GT_EQ] = ACTIONS(4904), - [anon_sym_LT_EQ] = ACTIONS(4899), - [anon_sym_LT] = ACTIONS(4899), - [anon_sym_LT_LT] = ACTIONS(4904), - [anon_sym_GT_GT] = ACTIONS(4904), - [anon_sym_SEMI] = ACTIONS(4904), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_extern] = ACTIONS(4892), - [anon_sym___attribute__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4897), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4897), - [anon_sym___declspec] = ACTIONS(4892), - [anon_sym___based] = ACTIONS(4892), - [anon_sym_LBRACE] = ACTIONS(4897), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_static] = ACTIONS(4892), - [anon_sym_register] = ACTIONS(4892), - [anon_sym_inline] = ACTIONS(4892), - [anon_sym___inline] = ACTIONS(4892), - [anon_sym___inline__] = ACTIONS(4892), - [anon_sym___forceinline] = ACTIONS(4892), - [anon_sym_thread_local] = ACTIONS(4892), - [anon_sym___thread] = ACTIONS(4892), - [anon_sym_const] = ACTIONS(4892), - [anon_sym_constexpr] = ACTIONS(4892), - [anon_sym_volatile] = ACTIONS(4892), - [anon_sym_restrict] = ACTIONS(4892), - [anon_sym___restrict__] = ACTIONS(4892), - [anon_sym__Atomic] = ACTIONS(4892), - [anon_sym__Noreturn] = ACTIONS(4892), - [anon_sym_noreturn] = ACTIONS(4892), - [anon_sym_mutable] = ACTIONS(4892), - [anon_sym_constinit] = ACTIONS(4892), - [anon_sym_consteval] = ACTIONS(4892), - [anon_sym_QMARK] = ACTIONS(4904), - [anon_sym_LT_EQ_GT] = ACTIONS(4904), - [anon_sym_or] = ACTIONS(4899), - [anon_sym_and] = ACTIONS(4899), - [anon_sym_bitor] = ACTIONS(4899), - [anon_sym_xor] = ACTIONS(4899), - [anon_sym_bitand] = ACTIONS(4899), - [anon_sym_not_eq] = ACTIONS(4899), - [anon_sym_DASH_DASH] = ACTIONS(4904), - [anon_sym_PLUS_PLUS] = ACTIONS(4904), - [anon_sym_DOT] = ACTIONS(4899), - [anon_sym_DOT_STAR] = ACTIONS(4904), - [anon_sym_DASH_GT] = ACTIONS(4904), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4892), - [anon_sym_decltype] = ACTIONS(4892), - [anon_sym_virtual] = ACTIONS(4892), - [anon_sym_alignas] = ACTIONS(4892), - [anon_sym_template] = ACTIONS(4892), - [anon_sym_operator] = ACTIONS(4892), - }, - [2363] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4846), - [anon_sym_COMMA] = ACTIONS(4846), - [anon_sym_RPAREN] = ACTIONS(4846), - [anon_sym_LPAREN2] = ACTIONS(4846), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4844), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE] = ACTIONS(4844), - [anon_sym_CARET] = ACTIONS(4844), - [anon_sym_AMP] = ACTIONS(4844), - [anon_sym_EQ_EQ] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4846), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4844), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_LT_LT] = ACTIONS(4844), - [anon_sym_GT_GT] = ACTIONS(4844), - [anon_sym___extension__] = ACTIONS(4846), - [anon_sym___attribute__] = ACTIONS(4846), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_EQ] = ACTIONS(4844), - [anon_sym_const] = ACTIONS(4844), - [anon_sym_constexpr] = ACTIONS(4846), - [anon_sym_volatile] = ACTIONS(4846), - [anon_sym_restrict] = ACTIONS(4846), - [anon_sym___restrict__] = ACTIONS(4846), - [anon_sym__Atomic] = ACTIONS(4846), - [anon_sym__Noreturn] = ACTIONS(4846), - [anon_sym_noreturn] = ACTIONS(4846), - [anon_sym_mutable] = ACTIONS(4846), - [anon_sym_constinit] = ACTIONS(4846), - [anon_sym_consteval] = ACTIONS(4846), - [anon_sym_COLON] = ACTIONS(4844), - [anon_sym_QMARK] = ACTIONS(4846), - [anon_sym_STAR_EQ] = ACTIONS(4846), - [anon_sym_SLASH_EQ] = ACTIONS(4846), - [anon_sym_PERCENT_EQ] = ACTIONS(4846), - [anon_sym_PLUS_EQ] = ACTIONS(4846), - [anon_sym_DASH_EQ] = ACTIONS(4846), - [anon_sym_LT_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_GT_EQ] = ACTIONS(4846), - [anon_sym_AMP_EQ] = ACTIONS(4846), - [anon_sym_CARET_EQ] = ACTIONS(4846), - [anon_sym_PIPE_EQ] = ACTIONS(4846), - [anon_sym_and_eq] = ACTIONS(4846), - [anon_sym_or_eq] = ACTIONS(4846), - [anon_sym_xor_eq] = ACTIONS(4846), - [anon_sym_LT_EQ_GT] = ACTIONS(4846), - [anon_sym_or] = ACTIONS(4844), - [anon_sym_and] = ACTIONS(4844), - [anon_sym_bitor] = ACTIONS(4846), - [anon_sym_xor] = ACTIONS(4844), - [anon_sym_bitand] = ACTIONS(4846), - [anon_sym_not_eq] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_DOT_STAR] = ACTIONS(4846), - [anon_sym_DASH_GT] = ACTIONS(4844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4846), - [anon_sym_decltype] = ACTIONS(4846), - [anon_sym_final] = ACTIONS(4846), - [anon_sym_override] = ACTIONS(4846), - [anon_sym_DASH_GT_STAR] = ACTIONS(4846), - }, - [2364] = { - [sym__declaration_modifiers] = STATE(2688), - [sym__declaration_specifiers] = STATE(4733), - [sym_attribute_specifier] = STATE(2688), - [sym_attribute_declaration] = STATE(2688), - [sym_ms_declspec_modifier] = STATE(2688), - [sym_storage_class_specifier] = STATE(2688), - [sym_type_qualifier] = STATE(2688), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_parameter_declaration] = STATE(8065), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2688), - [sym_alignas_specifier] = STATE(2688), - [sym_dependent_type] = STATE(3958), - [sym_optional_parameter_declaration] = STATE(8065), - [sym_variadic_parameter_declaration] = STATE(8065), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7280), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2688), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4906), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_RPAREN] = ACTIONS(5072), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(1960), - [anon_sym_template] = ACTIONS(1378), - }, - [2365] = { - [sym__declaration_modifiers] = STATE(2688), - [sym__declaration_specifiers] = STATE(4733), - [sym_attribute_specifier] = STATE(2688), - [sym_attribute_declaration] = STATE(2688), - [sym_ms_declspec_modifier] = STATE(2688), - [sym_storage_class_specifier] = STATE(2688), - [sym_type_qualifier] = STATE(2688), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_parameter_declaration] = STATE(8254), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2688), - [sym_alignas_specifier] = STATE(2688), - [sym_dependent_type] = STATE(3958), - [sym_optional_parameter_declaration] = STATE(8254), - [sym_variadic_parameter_declaration] = STATE(8254), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7280), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2688), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4906), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5074), - [anon_sym_RPAREN] = ACTIONS(5076), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(1960), - [anon_sym_template] = ACTIONS(1378), - }, - [2366] = { - [sym__declaration_modifiers] = STATE(2688), - [sym__declaration_specifiers] = STATE(4733), - [sym_attribute_specifier] = STATE(2688), - [sym_attribute_declaration] = STATE(2688), - [sym_ms_declspec_modifier] = STATE(2688), - [sym_storage_class_specifier] = STATE(2688), - [sym_type_qualifier] = STATE(2688), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_parameter_declaration] = STATE(8328), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2688), - [sym_alignas_specifier] = STATE(2688), - [sym_dependent_type] = STATE(3958), - [sym_optional_parameter_declaration] = STATE(8328), - [sym_variadic_parameter_declaration] = STATE(8328), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7280), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2688), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4906), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5078), - [anon_sym_RPAREN] = ACTIONS(5080), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(1960), - [anon_sym_template] = ACTIONS(1378), - }, - [2367] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4850), - [anon_sym_COMMA] = ACTIONS(4850), - [anon_sym_RPAREN] = ACTIONS(4850), - [anon_sym_LPAREN2] = ACTIONS(4850), - [anon_sym_DASH] = ACTIONS(4848), - [anon_sym_PLUS] = ACTIONS(4848), - [anon_sym_STAR] = ACTIONS(4848), - [anon_sym_SLASH] = ACTIONS(4848), - [anon_sym_PERCENT] = ACTIONS(4848), - [anon_sym_PIPE_PIPE] = ACTIONS(4850), - [anon_sym_AMP_AMP] = ACTIONS(4850), - [anon_sym_PIPE] = ACTIONS(4848), - [anon_sym_CARET] = ACTIONS(4848), - [anon_sym_AMP] = ACTIONS(4848), - [anon_sym_EQ_EQ] = ACTIONS(4850), - [anon_sym_BANG_EQ] = ACTIONS(4850), - [anon_sym_GT] = ACTIONS(4848), - [anon_sym_GT_EQ] = ACTIONS(4850), - [anon_sym_LT_EQ] = ACTIONS(4848), - [anon_sym_LT] = ACTIONS(4848), - [anon_sym_LT_LT] = ACTIONS(4848), - [anon_sym_GT_GT] = ACTIONS(4848), - [anon_sym___extension__] = ACTIONS(4850), - [anon_sym___attribute__] = ACTIONS(4850), - [anon_sym_COLON_COLON] = ACTIONS(4850), - [anon_sym_LBRACE] = ACTIONS(4850), - [anon_sym_LBRACK] = ACTIONS(4850), - [anon_sym_EQ] = ACTIONS(4848), - [anon_sym_const] = ACTIONS(4848), - [anon_sym_constexpr] = ACTIONS(4850), - [anon_sym_volatile] = ACTIONS(4850), - [anon_sym_restrict] = ACTIONS(4850), - [anon_sym___restrict__] = ACTIONS(4850), - [anon_sym__Atomic] = ACTIONS(4850), - [anon_sym__Noreturn] = ACTIONS(4850), - [anon_sym_noreturn] = ACTIONS(4850), - [anon_sym_mutable] = ACTIONS(4850), - [anon_sym_constinit] = ACTIONS(4850), - [anon_sym_consteval] = ACTIONS(4850), - [anon_sym_COLON] = ACTIONS(4848), - [anon_sym_QMARK] = ACTIONS(4850), - [anon_sym_STAR_EQ] = ACTIONS(4850), - [anon_sym_SLASH_EQ] = ACTIONS(4850), - [anon_sym_PERCENT_EQ] = ACTIONS(4850), - [anon_sym_PLUS_EQ] = ACTIONS(4850), - [anon_sym_DASH_EQ] = ACTIONS(4850), - [anon_sym_LT_LT_EQ] = ACTIONS(4850), - [anon_sym_GT_GT_EQ] = ACTIONS(4850), - [anon_sym_AMP_EQ] = ACTIONS(4850), - [anon_sym_CARET_EQ] = ACTIONS(4850), - [anon_sym_PIPE_EQ] = ACTIONS(4850), - [anon_sym_and_eq] = ACTIONS(4850), - [anon_sym_or_eq] = ACTIONS(4850), - [anon_sym_xor_eq] = ACTIONS(4850), - [anon_sym_LT_EQ_GT] = ACTIONS(4850), - [anon_sym_or] = ACTIONS(4848), - [anon_sym_and] = ACTIONS(4848), - [anon_sym_bitor] = ACTIONS(4850), - [anon_sym_xor] = ACTIONS(4848), - [anon_sym_bitand] = ACTIONS(4850), - [anon_sym_not_eq] = ACTIONS(4850), - [anon_sym_DASH_DASH] = ACTIONS(4850), - [anon_sym_PLUS_PLUS] = ACTIONS(4850), - [anon_sym_DOT] = ACTIONS(4848), - [anon_sym_DOT_STAR] = ACTIONS(4850), - [anon_sym_DASH_GT] = ACTIONS(4848), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4850), - [anon_sym_decltype] = ACTIONS(4850), - [anon_sym_final] = ACTIONS(4850), - [anon_sym_override] = ACTIONS(4850), - [anon_sym_DASH_GT_STAR] = ACTIONS(4850), - }, - [2368] = { - [sym__declaration_modifiers] = STATE(2688), - [sym__declaration_specifiers] = STATE(4733), - [sym_attribute_specifier] = STATE(2688), - [sym_attribute_declaration] = STATE(2688), - [sym_ms_declspec_modifier] = STATE(2688), - [sym_storage_class_specifier] = STATE(2688), - [sym_type_qualifier] = STATE(2688), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_parameter_declaration] = STATE(8273), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2688), - [sym_alignas_specifier] = STATE(2688), - [sym_dependent_type] = STATE(3958), - [sym_optional_parameter_declaration] = STATE(8273), - [sym_variadic_parameter_declaration] = STATE(8273), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7280), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2688), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4906), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(4320), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(1960), - [anon_sym_template] = ACTIONS(1378), - }, - [2369] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_RPAREN] = ACTIONS(4854), - [anon_sym_LPAREN2] = ACTIONS(4854), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4852), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE] = ACTIONS(4852), - [anon_sym_CARET] = ACTIONS(4852), - [anon_sym_AMP] = ACTIONS(4852), - [anon_sym_EQ_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4854), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4852), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_LT_LT] = ACTIONS(4852), - [anon_sym_GT_GT] = ACTIONS(4852), - [anon_sym___extension__] = ACTIONS(4854), - [anon_sym___attribute__] = ACTIONS(4854), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_const] = ACTIONS(4852), - [anon_sym_constexpr] = ACTIONS(4854), - [anon_sym_volatile] = ACTIONS(4854), - [anon_sym_restrict] = ACTIONS(4854), - [anon_sym___restrict__] = ACTIONS(4854), - [anon_sym__Atomic] = ACTIONS(4854), - [anon_sym__Noreturn] = ACTIONS(4854), - [anon_sym_noreturn] = ACTIONS(4854), - [anon_sym_mutable] = ACTIONS(4854), - [anon_sym_constinit] = ACTIONS(4854), - [anon_sym_consteval] = ACTIONS(4854), - [anon_sym_COLON] = ACTIONS(4852), - [anon_sym_QMARK] = ACTIONS(4854), - [anon_sym_STAR_EQ] = ACTIONS(4854), - [anon_sym_SLASH_EQ] = ACTIONS(4854), - [anon_sym_PERCENT_EQ] = ACTIONS(4854), - [anon_sym_PLUS_EQ] = ACTIONS(4854), - [anon_sym_DASH_EQ] = ACTIONS(4854), - [anon_sym_LT_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_GT_EQ] = ACTIONS(4854), - [anon_sym_AMP_EQ] = ACTIONS(4854), - [anon_sym_CARET_EQ] = ACTIONS(4854), - [anon_sym_PIPE_EQ] = ACTIONS(4854), - [anon_sym_and_eq] = ACTIONS(4854), - [anon_sym_or_eq] = ACTIONS(4854), - [anon_sym_xor_eq] = ACTIONS(4854), - [anon_sym_LT_EQ_GT] = ACTIONS(4854), - [anon_sym_or] = ACTIONS(4852), - [anon_sym_and] = ACTIONS(4852), - [anon_sym_bitor] = ACTIONS(4854), - [anon_sym_xor] = ACTIONS(4852), - [anon_sym_bitand] = ACTIONS(4854), - [anon_sym_not_eq] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_DOT_STAR] = ACTIONS(4854), - [anon_sym_DASH_GT] = ACTIONS(4852), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4854), - [anon_sym_decltype] = ACTIONS(4854), - [anon_sym_final] = ACTIONS(4854), - [anon_sym_override] = ACTIONS(4854), - [anon_sym_DASH_GT_STAR] = ACTIONS(4854), - }, - [2370] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4858), - [anon_sym_COMMA] = ACTIONS(4858), - [anon_sym_RPAREN] = ACTIONS(4858), - [anon_sym_LPAREN2] = ACTIONS(4858), - [anon_sym_DASH] = ACTIONS(4856), - [anon_sym_PLUS] = ACTIONS(4856), - [anon_sym_STAR] = ACTIONS(4856), - [anon_sym_SLASH] = ACTIONS(4856), - [anon_sym_PERCENT] = ACTIONS(4856), - [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_AMP_AMP] = ACTIONS(4858), - [anon_sym_PIPE] = ACTIONS(4856), - [anon_sym_CARET] = ACTIONS(4856), - [anon_sym_AMP] = ACTIONS(4856), - [anon_sym_EQ_EQ] = ACTIONS(4858), - [anon_sym_BANG_EQ] = ACTIONS(4858), - [anon_sym_GT] = ACTIONS(4856), - [anon_sym_GT_EQ] = ACTIONS(4858), - [anon_sym_LT_EQ] = ACTIONS(4856), - [anon_sym_LT] = ACTIONS(4856), - [anon_sym_LT_LT] = ACTIONS(4856), - [anon_sym_GT_GT] = ACTIONS(4856), - [anon_sym___extension__] = ACTIONS(4858), - [anon_sym___attribute__] = ACTIONS(4858), - [anon_sym_COLON_COLON] = ACTIONS(4858), - [anon_sym_LBRACE] = ACTIONS(4858), - [anon_sym_LBRACK] = ACTIONS(4858), - [anon_sym_EQ] = ACTIONS(4856), - [anon_sym_const] = ACTIONS(4856), - [anon_sym_constexpr] = ACTIONS(4858), - [anon_sym_volatile] = ACTIONS(4858), - [anon_sym_restrict] = ACTIONS(4858), - [anon_sym___restrict__] = ACTIONS(4858), - [anon_sym__Atomic] = ACTIONS(4858), - [anon_sym__Noreturn] = ACTIONS(4858), - [anon_sym_noreturn] = ACTIONS(4858), - [anon_sym_mutable] = ACTIONS(4858), - [anon_sym_constinit] = ACTIONS(4858), - [anon_sym_consteval] = ACTIONS(4858), - [anon_sym_COLON] = ACTIONS(4856), - [anon_sym_QMARK] = ACTIONS(4858), - [anon_sym_STAR_EQ] = ACTIONS(4858), - [anon_sym_SLASH_EQ] = ACTIONS(4858), - [anon_sym_PERCENT_EQ] = ACTIONS(4858), - [anon_sym_PLUS_EQ] = ACTIONS(4858), - [anon_sym_DASH_EQ] = ACTIONS(4858), - [anon_sym_LT_LT_EQ] = ACTIONS(4858), - [anon_sym_GT_GT_EQ] = ACTIONS(4858), - [anon_sym_AMP_EQ] = ACTIONS(4858), - [anon_sym_CARET_EQ] = ACTIONS(4858), - [anon_sym_PIPE_EQ] = ACTIONS(4858), - [anon_sym_and_eq] = ACTIONS(4858), - [anon_sym_or_eq] = ACTIONS(4858), - [anon_sym_xor_eq] = ACTIONS(4858), - [anon_sym_LT_EQ_GT] = ACTIONS(4858), - [anon_sym_or] = ACTIONS(4856), - [anon_sym_and] = ACTIONS(4856), - [anon_sym_bitor] = ACTIONS(4858), - [anon_sym_xor] = ACTIONS(4856), - [anon_sym_bitand] = ACTIONS(4858), - [anon_sym_not_eq] = ACTIONS(4858), - [anon_sym_DASH_DASH] = ACTIONS(4858), - [anon_sym_PLUS_PLUS] = ACTIONS(4858), - [anon_sym_DOT] = ACTIONS(4856), - [anon_sym_DOT_STAR] = ACTIONS(4858), - [anon_sym_DASH_GT] = ACTIONS(4856), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4858), - [anon_sym_decltype] = ACTIONS(4858), - [anon_sym_final] = ACTIONS(4858), - [anon_sym_override] = ACTIONS(4858), - [anon_sym_DASH_GT_STAR] = ACTIONS(4858), - }, - [2371] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4886), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_LPAREN2] = ACTIONS(4886), - [anon_sym_DASH] = ACTIONS(4884), - [anon_sym_PLUS] = ACTIONS(4884), - [anon_sym_STAR] = ACTIONS(4884), - [anon_sym_SLASH] = ACTIONS(4884), - [anon_sym_PERCENT] = ACTIONS(4884), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4884), - [anon_sym_CARET] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4884), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4884), - [anon_sym_GT_EQ] = ACTIONS(4886), - [anon_sym_LT_EQ] = ACTIONS(4884), - [anon_sym_LT] = ACTIONS(4884), - [anon_sym_LT_LT] = ACTIONS(4884), - [anon_sym_GT_GT] = ACTIONS(4884), - [anon_sym___extension__] = ACTIONS(4886), - [anon_sym___attribute__] = ACTIONS(4886), - [anon_sym_COLON_COLON] = ACTIONS(4886), - [anon_sym_LBRACE] = ACTIONS(4886), - [anon_sym_LBRACK] = ACTIONS(4886), - [anon_sym_EQ] = ACTIONS(4884), - [anon_sym_const] = ACTIONS(4884), - [anon_sym_constexpr] = ACTIONS(4886), - [anon_sym_volatile] = ACTIONS(4886), - [anon_sym_restrict] = ACTIONS(4886), - [anon_sym___restrict__] = ACTIONS(4886), - [anon_sym__Atomic] = ACTIONS(4886), - [anon_sym__Noreturn] = ACTIONS(4886), - [anon_sym_noreturn] = ACTIONS(4886), - [anon_sym_mutable] = ACTIONS(4886), - [anon_sym_constinit] = ACTIONS(4886), - [anon_sym_consteval] = ACTIONS(4886), - [anon_sym_COLON] = ACTIONS(4884), - [anon_sym_QMARK] = ACTIONS(4886), - [anon_sym_STAR_EQ] = ACTIONS(4886), - [anon_sym_SLASH_EQ] = ACTIONS(4886), - [anon_sym_PERCENT_EQ] = ACTIONS(4886), - [anon_sym_PLUS_EQ] = ACTIONS(4886), - [anon_sym_DASH_EQ] = ACTIONS(4886), - [anon_sym_LT_LT_EQ] = ACTIONS(4886), - [anon_sym_GT_GT_EQ] = ACTIONS(4886), - [anon_sym_AMP_EQ] = ACTIONS(4886), - [anon_sym_CARET_EQ] = ACTIONS(4886), - [anon_sym_PIPE_EQ] = ACTIONS(4886), - [anon_sym_and_eq] = ACTIONS(4886), - [anon_sym_or_eq] = ACTIONS(4886), - [anon_sym_xor_eq] = ACTIONS(4886), - [anon_sym_LT_EQ_GT] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4884), - [anon_sym_and] = ACTIONS(4884), - [anon_sym_bitor] = ACTIONS(4886), - [anon_sym_xor] = ACTIONS(4884), - [anon_sym_bitand] = ACTIONS(4886), - [anon_sym_not_eq] = ACTIONS(4886), - [anon_sym_DASH_DASH] = ACTIONS(4886), - [anon_sym_PLUS_PLUS] = ACTIONS(4886), - [anon_sym_DOT] = ACTIONS(4884), - [anon_sym_DOT_STAR] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4884), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4886), - [anon_sym_decltype] = ACTIONS(4886), - [anon_sym_final] = ACTIONS(4886), - [anon_sym_override] = ACTIONS(4886), - [anon_sym_DASH_GT_STAR] = ACTIONS(4886), - }, - [2372] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4890), - [anon_sym_COMMA] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4890), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_STAR] = ACTIONS(4888), - [anon_sym_SLASH] = ACTIONS(4888), - [anon_sym_PERCENT] = ACTIONS(4888), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4888), - [anon_sym_CARET] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4888), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4890), - [anon_sym_LT_EQ] = ACTIONS(4888), - [anon_sym_LT] = ACTIONS(4888), - [anon_sym_LT_LT] = ACTIONS(4888), - [anon_sym_GT_GT] = ACTIONS(4888), - [anon_sym___extension__] = ACTIONS(4890), - [anon_sym___attribute__] = ACTIONS(4890), - [anon_sym_COLON_COLON] = ACTIONS(4890), - [anon_sym_LBRACE] = ACTIONS(4890), - [anon_sym_LBRACK] = ACTIONS(4890), - [anon_sym_EQ] = ACTIONS(4888), - [anon_sym_const] = ACTIONS(4888), - [anon_sym_constexpr] = ACTIONS(4890), - [anon_sym_volatile] = ACTIONS(4890), - [anon_sym_restrict] = ACTIONS(4890), - [anon_sym___restrict__] = ACTIONS(4890), - [anon_sym__Atomic] = ACTIONS(4890), - [anon_sym__Noreturn] = ACTIONS(4890), - [anon_sym_noreturn] = ACTIONS(4890), - [anon_sym_mutable] = ACTIONS(4890), - [anon_sym_constinit] = ACTIONS(4890), - [anon_sym_consteval] = ACTIONS(4890), - [anon_sym_COLON] = ACTIONS(4888), - [anon_sym_QMARK] = ACTIONS(4890), - [anon_sym_STAR_EQ] = ACTIONS(4890), - [anon_sym_SLASH_EQ] = ACTIONS(4890), - [anon_sym_PERCENT_EQ] = ACTIONS(4890), - [anon_sym_PLUS_EQ] = ACTIONS(4890), - [anon_sym_DASH_EQ] = ACTIONS(4890), - [anon_sym_LT_LT_EQ] = ACTIONS(4890), - [anon_sym_GT_GT_EQ] = ACTIONS(4890), - [anon_sym_AMP_EQ] = ACTIONS(4890), - [anon_sym_CARET_EQ] = ACTIONS(4890), - [anon_sym_PIPE_EQ] = ACTIONS(4890), - [anon_sym_and_eq] = ACTIONS(4890), - [anon_sym_or_eq] = ACTIONS(4890), - [anon_sym_xor_eq] = ACTIONS(4890), - [anon_sym_LT_EQ_GT] = ACTIONS(4890), - [anon_sym_or] = ACTIONS(4888), - [anon_sym_and] = ACTIONS(4888), - [anon_sym_bitor] = ACTIONS(4890), - [anon_sym_xor] = ACTIONS(4888), - [anon_sym_bitand] = ACTIONS(4890), - [anon_sym_not_eq] = ACTIONS(4890), - [anon_sym_DASH_DASH] = ACTIONS(4890), - [anon_sym_PLUS_PLUS] = ACTIONS(4890), - [anon_sym_DOT] = ACTIONS(4888), - [anon_sym_DOT_STAR] = ACTIONS(4890), - [anon_sym_DASH_GT] = ACTIONS(4888), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4890), - [anon_sym_decltype] = ACTIONS(4890), - [anon_sym_final] = ACTIONS(4890), - [anon_sym_override] = ACTIONS(4890), - [anon_sym_DASH_GT_STAR] = ACTIONS(4890), - }, - [2373] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4879), - [anon_sym_COMMA] = ACTIONS(4879), - [anon_sym_RPAREN] = ACTIONS(4879), - [anon_sym_LPAREN2] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4877), - [anon_sym_PLUS] = ACTIONS(4877), - [anon_sym_STAR] = ACTIONS(4877), - [anon_sym_SLASH] = ACTIONS(4877), - [anon_sym_PERCENT] = ACTIONS(4877), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4877), - [anon_sym_CARET] = ACTIONS(4877), - [anon_sym_AMP] = ACTIONS(4877), - [anon_sym_EQ_EQ] = ACTIONS(4879), - [anon_sym_BANG_EQ] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4877), - [anon_sym_GT_EQ] = ACTIONS(4879), - [anon_sym_LT_EQ] = ACTIONS(4877), - [anon_sym_LT] = ACTIONS(4877), - [anon_sym_LT_LT] = ACTIONS(4877), - [anon_sym_GT_GT] = ACTIONS(4877), - [anon_sym___extension__] = ACTIONS(4879), - [anon_sym___attribute__] = ACTIONS(4879), - [anon_sym_COLON_COLON] = ACTIONS(4879), - [anon_sym_LBRACE] = ACTIONS(4879), - [anon_sym_LBRACK] = ACTIONS(4879), - [anon_sym_EQ] = ACTIONS(4877), - [anon_sym_const] = ACTIONS(4877), - [anon_sym_constexpr] = ACTIONS(4879), - [anon_sym_volatile] = ACTIONS(4879), - [anon_sym_restrict] = ACTIONS(4879), - [anon_sym___restrict__] = ACTIONS(4879), - [anon_sym__Atomic] = ACTIONS(4879), - [anon_sym__Noreturn] = ACTIONS(4879), - [anon_sym_noreturn] = ACTIONS(4879), - [anon_sym_mutable] = ACTIONS(4879), - [anon_sym_constinit] = ACTIONS(4879), - [anon_sym_consteval] = ACTIONS(4879), - [anon_sym_COLON] = ACTIONS(4877), - [anon_sym_QMARK] = ACTIONS(4879), - [anon_sym_STAR_EQ] = ACTIONS(4879), - [anon_sym_SLASH_EQ] = ACTIONS(4879), - [anon_sym_PERCENT_EQ] = ACTIONS(4879), - [anon_sym_PLUS_EQ] = ACTIONS(4879), - [anon_sym_DASH_EQ] = ACTIONS(4879), - [anon_sym_LT_LT_EQ] = ACTIONS(4879), - [anon_sym_GT_GT_EQ] = ACTIONS(4879), - [anon_sym_AMP_EQ] = ACTIONS(4879), - [anon_sym_CARET_EQ] = ACTIONS(4879), - [anon_sym_PIPE_EQ] = ACTIONS(4879), - [anon_sym_and_eq] = ACTIONS(4879), - [anon_sym_or_eq] = ACTIONS(4879), - [anon_sym_xor_eq] = ACTIONS(4879), - [anon_sym_LT_EQ_GT] = ACTIONS(4879), - [anon_sym_or] = ACTIONS(4877), - [anon_sym_and] = ACTIONS(4877), - [anon_sym_bitor] = ACTIONS(4879), - [anon_sym_xor] = ACTIONS(4877), - [anon_sym_bitand] = ACTIONS(4879), - [anon_sym_not_eq] = ACTIONS(4879), - [anon_sym_DASH_DASH] = ACTIONS(4879), - [anon_sym_PLUS_PLUS] = ACTIONS(4879), - [anon_sym_DOT] = ACTIONS(4877), - [anon_sym_DOT_STAR] = ACTIONS(4879), - [anon_sym_DASH_GT] = ACTIONS(4877), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4879), - [anon_sym_decltype] = ACTIONS(4879), - [anon_sym_final] = ACTIONS(4879), - [anon_sym_override] = ACTIONS(4879), - [anon_sym_DASH_GT_STAR] = ACTIONS(4879), - }, - [2374] = { - [sym_catch_clause] = STATE(2387), - [aux_sym_constructor_try_statement_repeat1] = STATE(2387), - [sym_identifier] = ACTIONS(2559), - [aux_sym_preproc_def_token1] = ACTIONS(2559), - [aux_sym_preproc_if_token1] = ACTIONS(2559), - [aux_sym_preproc_if_token2] = ACTIONS(2559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), - [aux_sym_preproc_else_token1] = ACTIONS(2559), - [aux_sym_preproc_elif_token1] = ACTIONS(2559), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2559), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2559), - [sym_preproc_directive] = ACTIONS(2559), - [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(2559), - [anon_sym___extension__] = ACTIONS(2559), - [anon_sym_typedef] = ACTIONS(2559), - [anon_sym_extern] = ACTIONS(2559), - [anon_sym___attribute__] = ACTIONS(2559), - [anon_sym_COLON_COLON] = ACTIONS(2561), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2559), - [anon_sym___based] = ACTIONS(2559), - [anon_sym_signed] = ACTIONS(2559), - [anon_sym_unsigned] = ACTIONS(2559), - [anon_sym_long] = ACTIONS(2559), - [anon_sym_short] = ACTIONS(2559), - [anon_sym_LBRACK] = ACTIONS(2559), - [anon_sym_static] = ACTIONS(2559), - [anon_sym_register] = ACTIONS(2559), - [anon_sym_inline] = ACTIONS(2559), - [anon_sym___inline] = ACTIONS(2559), - [anon_sym___inline__] = ACTIONS(2559), - [anon_sym___forceinline] = ACTIONS(2559), - [anon_sym_thread_local] = ACTIONS(2559), - [anon_sym___thread] = ACTIONS(2559), - [anon_sym_const] = ACTIONS(2559), - [anon_sym_constexpr] = ACTIONS(2559), - [anon_sym_volatile] = ACTIONS(2559), - [anon_sym_restrict] = ACTIONS(2559), - [anon_sym___restrict__] = ACTIONS(2559), - [anon_sym__Atomic] = ACTIONS(2559), - [anon_sym__Noreturn] = ACTIONS(2559), - [anon_sym_noreturn] = ACTIONS(2559), - [anon_sym_mutable] = ACTIONS(2559), - [anon_sym_constinit] = ACTIONS(2559), - [anon_sym_consteval] = ACTIONS(2559), - [sym_primitive_type] = ACTIONS(2559), - [anon_sym_enum] = ACTIONS(2559), - [anon_sym_class] = ACTIONS(2559), - [anon_sym_struct] = ACTIONS(2559), - [anon_sym_union] = ACTIONS(2559), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2559), - [anon_sym_decltype] = ACTIONS(2559), - [anon_sym_virtual] = ACTIONS(2559), - [anon_sym_alignas] = ACTIONS(2559), - [anon_sym_explicit] = ACTIONS(2559), - [anon_sym_typename] = ACTIONS(2559), - [anon_sym_template] = ACTIONS(2559), - [anon_sym_operator] = ACTIONS(2559), - [anon_sym_friend] = ACTIONS(2559), - [anon_sym_public] = ACTIONS(2559), - [anon_sym_private] = ACTIONS(2559), - [anon_sym_protected] = ACTIONS(2559), - [anon_sym_using] = ACTIONS(2559), - [anon_sym_static_assert] = ACTIONS(2559), - [anon_sym_catch] = ACTIONS(5082), - }, - [2375] = { - [sym_catch_clause] = STATE(2387), - [aux_sym_constructor_try_statement_repeat1] = STATE(2387), - [sym_identifier] = ACTIONS(2224), - [aux_sym_preproc_def_token1] = ACTIONS(2224), - [aux_sym_preproc_if_token1] = ACTIONS(2224), - [aux_sym_preproc_if_token2] = ACTIONS(2224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2224), - [aux_sym_preproc_else_token1] = ACTIONS(2224), - [aux_sym_preproc_elif_token1] = ACTIONS(2224), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2224), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2224), - [sym_preproc_directive] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_AMP_AMP] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym___extension__] = ACTIONS(2224), - [anon_sym_typedef] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym___attribute__] = ACTIONS(2224), - [anon_sym_COLON_COLON] = ACTIONS(2226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2226), - [anon_sym___declspec] = ACTIONS(2224), - [anon_sym___based] = ACTIONS(2224), - [anon_sym_signed] = ACTIONS(2224), - [anon_sym_unsigned] = ACTIONS(2224), - [anon_sym_long] = ACTIONS(2224), - [anon_sym_short] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2224), - [anon_sym_register] = ACTIONS(2224), - [anon_sym_inline] = ACTIONS(2224), - [anon_sym___inline] = ACTIONS(2224), - [anon_sym___inline__] = ACTIONS(2224), - [anon_sym___forceinline] = ACTIONS(2224), - [anon_sym_thread_local] = ACTIONS(2224), - [anon_sym___thread] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [anon_sym_constexpr] = ACTIONS(2224), - [anon_sym_volatile] = ACTIONS(2224), - [anon_sym_restrict] = ACTIONS(2224), - [anon_sym___restrict__] = ACTIONS(2224), - [anon_sym__Atomic] = ACTIONS(2224), - [anon_sym__Noreturn] = ACTIONS(2224), - [anon_sym_noreturn] = ACTIONS(2224), - [anon_sym_mutable] = ACTIONS(2224), - [anon_sym_constinit] = ACTIONS(2224), - [anon_sym_consteval] = ACTIONS(2224), - [sym_primitive_type] = ACTIONS(2224), - [anon_sym_enum] = ACTIONS(2224), - [anon_sym_class] = ACTIONS(2224), - [anon_sym_struct] = ACTIONS(2224), - [anon_sym_union] = ACTIONS(2224), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2224), - [anon_sym_decltype] = ACTIONS(2224), - [anon_sym_virtual] = ACTIONS(2224), - [anon_sym_alignas] = ACTIONS(2224), - [anon_sym_explicit] = ACTIONS(2224), - [anon_sym_typename] = ACTIONS(2224), - [anon_sym_template] = ACTIONS(2224), - [anon_sym_operator] = ACTIONS(2224), - [anon_sym_friend] = ACTIONS(2224), - [anon_sym_public] = ACTIONS(2224), - [anon_sym_private] = ACTIONS(2224), - [anon_sym_protected] = ACTIONS(2224), - [anon_sym_using] = ACTIONS(2224), - [anon_sym_static_assert] = ACTIONS(2224), - [anon_sym_catch] = ACTIONS(5082), - }, - [2376] = { - [sym_catch_clause] = STATE(2387), - [aux_sym_constructor_try_statement_repeat1] = STATE(2387), - [sym_identifier] = ACTIONS(2563), - [aux_sym_preproc_def_token1] = ACTIONS(2563), - [aux_sym_preproc_if_token1] = ACTIONS(2563), - [aux_sym_preproc_if_token2] = ACTIONS(2563), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2563), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2563), - [aux_sym_preproc_else_token1] = ACTIONS(2563), - [aux_sym_preproc_elif_token1] = ACTIONS(2563), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2563), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2563), - [sym_preproc_directive] = ACTIONS(2563), - [anon_sym_LPAREN2] = ACTIONS(2565), - [anon_sym_TILDE] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2565), - [anon_sym_AMP_AMP] = ACTIONS(2565), - [anon_sym_AMP] = ACTIONS(2563), - [anon_sym___extension__] = ACTIONS(2563), - [anon_sym_typedef] = ACTIONS(2563), - [anon_sym_extern] = ACTIONS(2563), - [anon_sym___attribute__] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2565), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), - [anon_sym___declspec] = ACTIONS(2563), - [anon_sym___based] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2563), - [anon_sym_unsigned] = ACTIONS(2563), - [anon_sym_long] = ACTIONS(2563), - [anon_sym_short] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(2563), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2563), - [anon_sym_inline] = ACTIONS(2563), - [anon_sym___inline] = ACTIONS(2563), - [anon_sym___inline__] = ACTIONS(2563), - [anon_sym___forceinline] = ACTIONS(2563), - [anon_sym_thread_local] = ACTIONS(2563), - [anon_sym___thread] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_constexpr] = ACTIONS(2563), - [anon_sym_volatile] = ACTIONS(2563), - [anon_sym_restrict] = ACTIONS(2563), - [anon_sym___restrict__] = ACTIONS(2563), - [anon_sym__Atomic] = ACTIONS(2563), - [anon_sym__Noreturn] = ACTIONS(2563), - [anon_sym_noreturn] = ACTIONS(2563), - [anon_sym_mutable] = ACTIONS(2563), - [anon_sym_constinit] = ACTIONS(2563), - [anon_sym_consteval] = ACTIONS(2563), - [sym_primitive_type] = ACTIONS(2563), - [anon_sym_enum] = ACTIONS(2563), - [anon_sym_class] = ACTIONS(2563), - [anon_sym_struct] = ACTIONS(2563), - [anon_sym_union] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2563), - [anon_sym_decltype] = ACTIONS(2563), - [anon_sym_virtual] = ACTIONS(2563), - [anon_sym_alignas] = ACTIONS(2563), - [anon_sym_explicit] = ACTIONS(2563), - [anon_sym_typename] = ACTIONS(2563), - [anon_sym_template] = ACTIONS(2563), - [anon_sym_operator] = ACTIONS(2563), - [anon_sym_friend] = ACTIONS(2563), - [anon_sym_public] = ACTIONS(2563), - [anon_sym_private] = ACTIONS(2563), - [anon_sym_protected] = ACTIONS(2563), - [anon_sym_using] = ACTIONS(2563), - [anon_sym_static_assert] = ACTIONS(2563), - [anon_sym_catch] = ACTIONS(5082), - }, - [2377] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4846), - [anon_sym_COMMA] = ACTIONS(4846), - [anon_sym_LPAREN2] = ACTIONS(4846), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4844), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE] = ACTIONS(4844), - [anon_sym_CARET] = ACTIONS(4844), - [anon_sym_AMP] = ACTIONS(4844), - [anon_sym_EQ_EQ] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4846), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_GT_EQ] = ACTIONS(4844), - [anon_sym_LT_EQ] = ACTIONS(4844), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_LT_LT] = ACTIONS(4844), - [anon_sym_GT_GT] = ACTIONS(4844), - [anon_sym___extension__] = ACTIONS(4846), - [anon_sym___attribute__] = ACTIONS(4846), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_EQ] = ACTIONS(4844), - [anon_sym_const] = ACTIONS(4844), - [anon_sym_constexpr] = ACTIONS(4846), - [anon_sym_volatile] = ACTIONS(4846), - [anon_sym_restrict] = ACTIONS(4846), - [anon_sym___restrict__] = ACTIONS(4846), - [anon_sym__Atomic] = ACTIONS(4846), - [anon_sym__Noreturn] = ACTIONS(4846), - [anon_sym_noreturn] = ACTIONS(4846), - [anon_sym_mutable] = ACTIONS(4846), - [anon_sym_constinit] = ACTIONS(4846), - [anon_sym_consteval] = ACTIONS(4846), - [anon_sym_COLON] = ACTIONS(4844), - [anon_sym_QMARK] = ACTIONS(4846), - [anon_sym_STAR_EQ] = ACTIONS(4846), - [anon_sym_SLASH_EQ] = ACTIONS(4846), - [anon_sym_PERCENT_EQ] = ACTIONS(4846), - [anon_sym_PLUS_EQ] = ACTIONS(4846), - [anon_sym_DASH_EQ] = ACTIONS(4846), - [anon_sym_LT_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_GT_EQ] = ACTIONS(4844), - [anon_sym_AMP_EQ] = ACTIONS(4846), - [anon_sym_CARET_EQ] = ACTIONS(4846), - [anon_sym_PIPE_EQ] = ACTIONS(4846), - [anon_sym_and_eq] = ACTIONS(4846), - [anon_sym_or_eq] = ACTIONS(4846), - [anon_sym_xor_eq] = ACTIONS(4846), - [anon_sym_LT_EQ_GT] = ACTIONS(4846), - [anon_sym_or] = ACTIONS(4844), - [anon_sym_and] = ACTIONS(4844), - [anon_sym_bitor] = ACTIONS(4846), - [anon_sym_xor] = ACTIONS(4844), - [anon_sym_bitand] = ACTIONS(4846), - [anon_sym_not_eq] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_DOT_STAR] = ACTIONS(4846), - [anon_sym_DASH_GT] = ACTIONS(4846), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4846), - [anon_sym_decltype] = ACTIONS(4846), - [anon_sym_final] = ACTIONS(4846), - [anon_sym_override] = ACTIONS(4846), - [anon_sym_GT2] = ACTIONS(4846), - }, - [2378] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_LPAREN2] = ACTIONS(4854), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4852), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE] = ACTIONS(4852), - [anon_sym_CARET] = ACTIONS(4852), - [anon_sym_AMP] = ACTIONS(4852), - [anon_sym_EQ_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4854), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_GT_EQ] = ACTIONS(4852), - [anon_sym_LT_EQ] = ACTIONS(4852), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_LT_LT] = ACTIONS(4852), - [anon_sym_GT_GT] = ACTIONS(4852), - [anon_sym___extension__] = ACTIONS(4854), - [anon_sym___attribute__] = ACTIONS(4854), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_const] = ACTIONS(4852), - [anon_sym_constexpr] = ACTIONS(4854), - [anon_sym_volatile] = ACTIONS(4854), - [anon_sym_restrict] = ACTIONS(4854), - [anon_sym___restrict__] = ACTIONS(4854), - [anon_sym__Atomic] = ACTIONS(4854), - [anon_sym__Noreturn] = ACTIONS(4854), - [anon_sym_noreturn] = ACTIONS(4854), - [anon_sym_mutable] = ACTIONS(4854), - [anon_sym_constinit] = ACTIONS(4854), - [anon_sym_consteval] = ACTIONS(4854), - [anon_sym_COLON] = ACTIONS(4852), - [anon_sym_QMARK] = ACTIONS(4854), - [anon_sym_STAR_EQ] = ACTIONS(4854), - [anon_sym_SLASH_EQ] = ACTIONS(4854), - [anon_sym_PERCENT_EQ] = ACTIONS(4854), - [anon_sym_PLUS_EQ] = ACTIONS(4854), - [anon_sym_DASH_EQ] = ACTIONS(4854), - [anon_sym_LT_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_GT_EQ] = ACTIONS(4852), - [anon_sym_AMP_EQ] = ACTIONS(4854), - [anon_sym_CARET_EQ] = ACTIONS(4854), - [anon_sym_PIPE_EQ] = ACTIONS(4854), - [anon_sym_and_eq] = ACTIONS(4854), - [anon_sym_or_eq] = ACTIONS(4854), - [anon_sym_xor_eq] = ACTIONS(4854), - [anon_sym_LT_EQ_GT] = ACTIONS(4854), - [anon_sym_or] = ACTIONS(4852), - [anon_sym_and] = ACTIONS(4852), - [anon_sym_bitor] = ACTIONS(4854), - [anon_sym_xor] = ACTIONS(4852), - [anon_sym_bitand] = ACTIONS(4854), - [anon_sym_not_eq] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_DOT_STAR] = ACTIONS(4854), - [anon_sym_DASH_GT] = ACTIONS(4854), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4854), - [anon_sym_decltype] = ACTIONS(4854), - [anon_sym_final] = ACTIONS(4854), - [anon_sym_override] = ACTIONS(4854), - [anon_sym_GT2] = ACTIONS(4854), - }, - [2379] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4858), - [anon_sym_COMMA] = ACTIONS(4858), - [anon_sym_LPAREN2] = ACTIONS(4858), - [anon_sym_DASH] = ACTIONS(4856), - [anon_sym_PLUS] = ACTIONS(4856), - [anon_sym_STAR] = ACTIONS(4856), - [anon_sym_SLASH] = ACTIONS(4856), - [anon_sym_PERCENT] = ACTIONS(4856), - [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_AMP_AMP] = ACTIONS(4858), - [anon_sym_PIPE] = ACTIONS(4856), - [anon_sym_CARET] = ACTIONS(4856), - [anon_sym_AMP] = ACTIONS(4856), - [anon_sym_EQ_EQ] = ACTIONS(4858), - [anon_sym_BANG_EQ] = ACTIONS(4858), - [anon_sym_GT] = ACTIONS(4856), - [anon_sym_GT_EQ] = ACTIONS(4856), - [anon_sym_LT_EQ] = ACTIONS(4856), - [anon_sym_LT] = ACTIONS(4856), - [anon_sym_LT_LT] = ACTIONS(4856), - [anon_sym_GT_GT] = ACTIONS(4856), - [anon_sym___extension__] = ACTIONS(4858), - [anon_sym___attribute__] = ACTIONS(4858), - [anon_sym_COLON_COLON] = ACTIONS(4858), - [anon_sym_LBRACE] = ACTIONS(4858), - [anon_sym_LBRACK] = ACTIONS(4858), - [anon_sym_EQ] = ACTIONS(4856), - [anon_sym_const] = ACTIONS(4856), - [anon_sym_constexpr] = ACTIONS(4858), - [anon_sym_volatile] = ACTIONS(4858), - [anon_sym_restrict] = ACTIONS(4858), - [anon_sym___restrict__] = ACTIONS(4858), - [anon_sym__Atomic] = ACTIONS(4858), - [anon_sym__Noreturn] = ACTIONS(4858), - [anon_sym_noreturn] = ACTIONS(4858), - [anon_sym_mutable] = ACTIONS(4858), - [anon_sym_constinit] = ACTIONS(4858), - [anon_sym_consteval] = ACTIONS(4858), - [anon_sym_COLON] = ACTIONS(4856), - [anon_sym_QMARK] = ACTIONS(4858), - [anon_sym_STAR_EQ] = ACTIONS(4858), - [anon_sym_SLASH_EQ] = ACTIONS(4858), - [anon_sym_PERCENT_EQ] = ACTIONS(4858), - [anon_sym_PLUS_EQ] = ACTIONS(4858), - [anon_sym_DASH_EQ] = ACTIONS(4858), - [anon_sym_LT_LT_EQ] = ACTIONS(4858), - [anon_sym_GT_GT_EQ] = ACTIONS(4856), - [anon_sym_AMP_EQ] = ACTIONS(4858), - [anon_sym_CARET_EQ] = ACTIONS(4858), - [anon_sym_PIPE_EQ] = ACTIONS(4858), - [anon_sym_and_eq] = ACTIONS(4858), - [anon_sym_or_eq] = ACTIONS(4858), - [anon_sym_xor_eq] = ACTIONS(4858), - [anon_sym_LT_EQ_GT] = ACTIONS(4858), - [anon_sym_or] = ACTIONS(4856), - [anon_sym_and] = ACTIONS(4856), - [anon_sym_bitor] = ACTIONS(4858), - [anon_sym_xor] = ACTIONS(4856), - [anon_sym_bitand] = ACTIONS(4858), - [anon_sym_not_eq] = ACTIONS(4858), - [anon_sym_DASH_DASH] = ACTIONS(4858), - [anon_sym_PLUS_PLUS] = ACTIONS(4858), - [anon_sym_DOT] = ACTIONS(4856), - [anon_sym_DOT_STAR] = ACTIONS(4858), - [anon_sym_DASH_GT] = ACTIONS(4858), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4858), - [anon_sym_decltype] = ACTIONS(4858), - [anon_sym_final] = ACTIONS(4858), - [anon_sym_override] = ACTIONS(4858), - [anon_sym_GT2] = ACTIONS(4858), - }, - [2380] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4886), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_LPAREN2] = ACTIONS(4886), - [anon_sym_DASH] = ACTIONS(4884), - [anon_sym_PLUS] = ACTIONS(4884), - [anon_sym_STAR] = ACTIONS(4884), - [anon_sym_SLASH] = ACTIONS(4884), - [anon_sym_PERCENT] = ACTIONS(4884), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4884), - [anon_sym_CARET] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4884), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4884), - [anon_sym_GT_EQ] = ACTIONS(4884), - [anon_sym_LT_EQ] = ACTIONS(4884), - [anon_sym_LT] = ACTIONS(4884), - [anon_sym_LT_LT] = ACTIONS(4884), - [anon_sym_GT_GT] = ACTIONS(4884), - [anon_sym___extension__] = ACTIONS(4886), - [anon_sym___attribute__] = ACTIONS(4886), - [anon_sym_COLON_COLON] = ACTIONS(4886), - [anon_sym_LBRACE] = ACTIONS(4886), - [anon_sym_LBRACK] = ACTIONS(4886), - [anon_sym_EQ] = ACTIONS(4884), - [anon_sym_const] = ACTIONS(4884), - [anon_sym_constexpr] = ACTIONS(4886), - [anon_sym_volatile] = ACTIONS(4886), - [anon_sym_restrict] = ACTIONS(4886), - [anon_sym___restrict__] = ACTIONS(4886), - [anon_sym__Atomic] = ACTIONS(4886), - [anon_sym__Noreturn] = ACTIONS(4886), - [anon_sym_noreturn] = ACTIONS(4886), - [anon_sym_mutable] = ACTIONS(4886), - [anon_sym_constinit] = ACTIONS(4886), - [anon_sym_consteval] = ACTIONS(4886), - [anon_sym_COLON] = ACTIONS(4884), - [anon_sym_QMARK] = ACTIONS(4886), - [anon_sym_STAR_EQ] = ACTIONS(4886), - [anon_sym_SLASH_EQ] = ACTIONS(4886), - [anon_sym_PERCENT_EQ] = ACTIONS(4886), - [anon_sym_PLUS_EQ] = ACTIONS(4886), - [anon_sym_DASH_EQ] = ACTIONS(4886), - [anon_sym_LT_LT_EQ] = ACTIONS(4886), - [anon_sym_GT_GT_EQ] = ACTIONS(4884), - [anon_sym_AMP_EQ] = ACTIONS(4886), - [anon_sym_CARET_EQ] = ACTIONS(4886), - [anon_sym_PIPE_EQ] = ACTIONS(4886), - [anon_sym_and_eq] = ACTIONS(4886), - [anon_sym_or_eq] = ACTIONS(4886), - [anon_sym_xor_eq] = ACTIONS(4886), - [anon_sym_LT_EQ_GT] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4884), - [anon_sym_and] = ACTIONS(4884), - [anon_sym_bitor] = ACTIONS(4886), - [anon_sym_xor] = ACTIONS(4884), - [anon_sym_bitand] = ACTIONS(4886), - [anon_sym_not_eq] = ACTIONS(4886), - [anon_sym_DASH_DASH] = ACTIONS(4886), - [anon_sym_PLUS_PLUS] = ACTIONS(4886), - [anon_sym_DOT] = ACTIONS(4884), - [anon_sym_DOT_STAR] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4886), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4886), - [anon_sym_decltype] = ACTIONS(4886), - [anon_sym_final] = ACTIONS(4886), - [anon_sym_override] = ACTIONS(4886), - [anon_sym_GT2] = ACTIONS(4886), - }, - [2381] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4879), - [anon_sym_COMMA] = ACTIONS(4879), - [anon_sym_LPAREN2] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4877), - [anon_sym_PLUS] = ACTIONS(4877), - [anon_sym_STAR] = ACTIONS(4877), - [anon_sym_SLASH] = ACTIONS(4877), - [anon_sym_PERCENT] = ACTIONS(4877), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4877), - [anon_sym_CARET] = ACTIONS(4877), - [anon_sym_AMP] = ACTIONS(4877), - [anon_sym_EQ_EQ] = ACTIONS(4879), - [anon_sym_BANG_EQ] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4877), - [anon_sym_GT_EQ] = ACTIONS(4877), - [anon_sym_LT_EQ] = ACTIONS(4877), - [anon_sym_LT] = ACTIONS(4877), - [anon_sym_LT_LT] = ACTIONS(4877), - [anon_sym_GT_GT] = ACTIONS(4877), - [anon_sym___extension__] = ACTIONS(4879), - [anon_sym___attribute__] = ACTIONS(4879), - [anon_sym_COLON_COLON] = ACTIONS(4879), - [anon_sym_LBRACE] = ACTIONS(4879), - [anon_sym_LBRACK] = ACTIONS(4879), - [anon_sym_EQ] = ACTIONS(4877), - [anon_sym_const] = ACTIONS(4877), - [anon_sym_constexpr] = ACTIONS(4879), - [anon_sym_volatile] = ACTIONS(4879), - [anon_sym_restrict] = ACTIONS(4879), - [anon_sym___restrict__] = ACTIONS(4879), - [anon_sym__Atomic] = ACTIONS(4879), - [anon_sym__Noreturn] = ACTIONS(4879), - [anon_sym_noreturn] = ACTIONS(4879), - [anon_sym_mutable] = ACTIONS(4879), - [anon_sym_constinit] = ACTIONS(4879), - [anon_sym_consteval] = ACTIONS(4879), - [anon_sym_COLON] = ACTIONS(4877), - [anon_sym_QMARK] = ACTIONS(4879), - [anon_sym_STAR_EQ] = ACTIONS(4879), - [anon_sym_SLASH_EQ] = ACTIONS(4879), - [anon_sym_PERCENT_EQ] = ACTIONS(4879), - [anon_sym_PLUS_EQ] = ACTIONS(4879), - [anon_sym_DASH_EQ] = ACTIONS(4879), - [anon_sym_LT_LT_EQ] = ACTIONS(4879), - [anon_sym_GT_GT_EQ] = ACTIONS(4877), - [anon_sym_AMP_EQ] = ACTIONS(4879), - [anon_sym_CARET_EQ] = ACTIONS(4879), - [anon_sym_PIPE_EQ] = ACTIONS(4879), - [anon_sym_and_eq] = ACTIONS(4879), - [anon_sym_or_eq] = ACTIONS(4879), - [anon_sym_xor_eq] = ACTIONS(4879), - [anon_sym_LT_EQ_GT] = ACTIONS(4879), - [anon_sym_or] = ACTIONS(4877), - [anon_sym_and] = ACTIONS(4877), - [anon_sym_bitor] = ACTIONS(4879), - [anon_sym_xor] = ACTIONS(4877), - [anon_sym_bitand] = ACTIONS(4879), - [anon_sym_not_eq] = ACTIONS(4879), - [anon_sym_DASH_DASH] = ACTIONS(4879), - [anon_sym_PLUS_PLUS] = ACTIONS(4879), - [anon_sym_DOT] = ACTIONS(4877), - [anon_sym_DOT_STAR] = ACTIONS(4879), - [anon_sym_DASH_GT] = ACTIONS(4879), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4879), - [anon_sym_decltype] = ACTIONS(4879), - [anon_sym_final] = ACTIONS(4879), - [anon_sym_override] = ACTIONS(4879), - [anon_sym_GT2] = ACTIONS(4879), - }, - [2382] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4890), - [anon_sym_COMMA] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4890), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_STAR] = ACTIONS(4888), - [anon_sym_SLASH] = ACTIONS(4888), - [anon_sym_PERCENT] = ACTIONS(4888), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4888), - [anon_sym_CARET] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4888), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4888), - [anon_sym_LT_EQ] = ACTIONS(4888), - [anon_sym_LT] = ACTIONS(4888), - [anon_sym_LT_LT] = ACTIONS(4888), - [anon_sym_GT_GT] = ACTIONS(4888), - [anon_sym___extension__] = ACTIONS(4890), - [anon_sym___attribute__] = ACTIONS(4890), - [anon_sym_COLON_COLON] = ACTIONS(4890), - [anon_sym_LBRACE] = ACTIONS(4890), - [anon_sym_LBRACK] = ACTIONS(4890), - [anon_sym_EQ] = ACTIONS(4888), - [anon_sym_const] = ACTIONS(4888), - [anon_sym_constexpr] = ACTIONS(4890), - [anon_sym_volatile] = ACTIONS(4890), - [anon_sym_restrict] = ACTIONS(4890), - [anon_sym___restrict__] = ACTIONS(4890), - [anon_sym__Atomic] = ACTIONS(4890), - [anon_sym__Noreturn] = ACTIONS(4890), - [anon_sym_noreturn] = ACTIONS(4890), - [anon_sym_mutable] = ACTIONS(4890), - [anon_sym_constinit] = ACTIONS(4890), - [anon_sym_consteval] = ACTIONS(4890), - [anon_sym_COLON] = ACTIONS(4888), - [anon_sym_QMARK] = ACTIONS(4890), - [anon_sym_STAR_EQ] = ACTIONS(4890), - [anon_sym_SLASH_EQ] = ACTIONS(4890), - [anon_sym_PERCENT_EQ] = ACTIONS(4890), - [anon_sym_PLUS_EQ] = ACTIONS(4890), - [anon_sym_DASH_EQ] = ACTIONS(4890), - [anon_sym_LT_LT_EQ] = ACTIONS(4890), - [anon_sym_GT_GT_EQ] = ACTIONS(4888), - [anon_sym_AMP_EQ] = ACTIONS(4890), - [anon_sym_CARET_EQ] = ACTIONS(4890), - [anon_sym_PIPE_EQ] = ACTIONS(4890), - [anon_sym_and_eq] = ACTIONS(4890), - [anon_sym_or_eq] = ACTIONS(4890), - [anon_sym_xor_eq] = ACTIONS(4890), - [anon_sym_LT_EQ_GT] = ACTIONS(4890), - [anon_sym_or] = ACTIONS(4888), - [anon_sym_and] = ACTIONS(4888), - [anon_sym_bitor] = ACTIONS(4890), - [anon_sym_xor] = ACTIONS(4888), - [anon_sym_bitand] = ACTIONS(4890), - [anon_sym_not_eq] = ACTIONS(4890), - [anon_sym_DASH_DASH] = ACTIONS(4890), - [anon_sym_PLUS_PLUS] = ACTIONS(4890), - [anon_sym_DOT] = ACTIONS(4888), - [anon_sym_DOT_STAR] = ACTIONS(4890), - [anon_sym_DASH_GT] = ACTIONS(4890), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4890), - [anon_sym_decltype] = ACTIONS(4890), - [anon_sym_final] = ACTIONS(4890), - [anon_sym_override] = ACTIONS(4890), - [anon_sym_GT2] = ACTIONS(4890), - }, - [2383] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4850), - [anon_sym_COMMA] = ACTIONS(4850), - [anon_sym_LPAREN2] = ACTIONS(4850), - [anon_sym_DASH] = ACTIONS(4848), - [anon_sym_PLUS] = ACTIONS(4848), - [anon_sym_STAR] = ACTIONS(4848), - [anon_sym_SLASH] = ACTIONS(4848), - [anon_sym_PERCENT] = ACTIONS(4848), - [anon_sym_PIPE_PIPE] = ACTIONS(4850), - [anon_sym_AMP_AMP] = ACTIONS(4850), - [anon_sym_PIPE] = ACTIONS(4848), - [anon_sym_CARET] = ACTIONS(4848), - [anon_sym_AMP] = ACTIONS(4848), - [anon_sym_EQ_EQ] = ACTIONS(4850), - [anon_sym_BANG_EQ] = ACTIONS(4850), - [anon_sym_GT] = ACTIONS(4848), - [anon_sym_GT_EQ] = ACTIONS(4848), - [anon_sym_LT_EQ] = ACTIONS(4848), - [anon_sym_LT] = ACTIONS(4848), - [anon_sym_LT_LT] = ACTIONS(4848), - [anon_sym_GT_GT] = ACTIONS(4848), - [anon_sym___extension__] = ACTIONS(4850), - [anon_sym___attribute__] = ACTIONS(4850), - [anon_sym_COLON_COLON] = ACTIONS(4850), - [anon_sym_LBRACE] = ACTIONS(4850), - [anon_sym_LBRACK] = ACTIONS(4850), - [anon_sym_EQ] = ACTIONS(4848), - [anon_sym_const] = ACTIONS(4848), - [anon_sym_constexpr] = ACTIONS(4850), - [anon_sym_volatile] = ACTIONS(4850), - [anon_sym_restrict] = ACTIONS(4850), - [anon_sym___restrict__] = ACTIONS(4850), - [anon_sym__Atomic] = ACTIONS(4850), - [anon_sym__Noreturn] = ACTIONS(4850), - [anon_sym_noreturn] = ACTIONS(4850), - [anon_sym_mutable] = ACTIONS(4850), - [anon_sym_constinit] = ACTIONS(4850), - [anon_sym_consteval] = ACTIONS(4850), - [anon_sym_COLON] = ACTIONS(4848), - [anon_sym_QMARK] = ACTIONS(4850), - [anon_sym_STAR_EQ] = ACTIONS(4850), - [anon_sym_SLASH_EQ] = ACTIONS(4850), - [anon_sym_PERCENT_EQ] = ACTIONS(4850), - [anon_sym_PLUS_EQ] = ACTIONS(4850), - [anon_sym_DASH_EQ] = ACTIONS(4850), - [anon_sym_LT_LT_EQ] = ACTIONS(4850), - [anon_sym_GT_GT_EQ] = ACTIONS(4848), - [anon_sym_AMP_EQ] = ACTIONS(4850), - [anon_sym_CARET_EQ] = ACTIONS(4850), - [anon_sym_PIPE_EQ] = ACTIONS(4850), - [anon_sym_and_eq] = ACTIONS(4850), - [anon_sym_or_eq] = ACTIONS(4850), - [anon_sym_xor_eq] = ACTIONS(4850), - [anon_sym_LT_EQ_GT] = ACTIONS(4850), - [anon_sym_or] = ACTIONS(4848), - [anon_sym_and] = ACTIONS(4848), - [anon_sym_bitor] = ACTIONS(4850), - [anon_sym_xor] = ACTIONS(4848), - [anon_sym_bitand] = ACTIONS(4850), - [anon_sym_not_eq] = ACTIONS(4850), - [anon_sym_DASH_DASH] = ACTIONS(4850), - [anon_sym_PLUS_PLUS] = ACTIONS(4850), - [anon_sym_DOT] = ACTIONS(4848), - [anon_sym_DOT_STAR] = ACTIONS(4850), - [anon_sym_DASH_GT] = ACTIONS(4850), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4850), - [anon_sym_decltype] = ACTIONS(4850), - [anon_sym_final] = ACTIONS(4850), - [anon_sym_override] = ACTIONS(4850), - [anon_sym_GT2] = ACTIONS(4850), - }, - [2384] = { - [sym__declaration_modifiers] = STATE(2688), - [sym__declaration_specifiers] = STATE(4733), - [sym_attribute_specifier] = STATE(2688), - [sym_attribute_declaration] = STATE(2688), - [sym_ms_declspec_modifier] = STATE(2688), - [sym_storage_class_specifier] = STATE(2688), - [sym_type_qualifier] = STATE(2688), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_parameter_declaration] = STATE(8834), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2688), - [sym_alignas_specifier] = STATE(2688), - [sym_dependent_type] = STATE(3958), - [sym_optional_parameter_declaration] = STATE(8834), - [sym_variadic_parameter_declaration] = STATE(8834), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7280), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2688), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4906), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5084), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(1960), - [anon_sym_template] = ACTIONS(1378), - }, - [2385] = { - [sym_identifier] = ACTIONS(5086), - [anon_sym_LPAREN2] = ACTIONS(5088), - [anon_sym_BANG] = ACTIONS(5088), - [anon_sym_TILDE] = ACTIONS(5088), - [anon_sym_DASH] = ACTIONS(5086), - [anon_sym_PLUS] = ACTIONS(5086), - [anon_sym_STAR] = ACTIONS(5088), - [anon_sym_AMP] = ACTIONS(5088), - [anon_sym_SEMI] = ACTIONS(5088), - [anon_sym_COLON_COLON] = ACTIONS(5088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5088), - [anon_sym_LBRACE] = ACTIONS(5088), - [anon_sym_LBRACK] = ACTIONS(5086), - [sym_primitive_type] = ACTIONS(5086), - [anon_sym_if] = ACTIONS(5086), - [anon_sym_switch] = ACTIONS(5086), - [anon_sym_case] = ACTIONS(5086), - [anon_sym_default] = ACTIONS(5086), - [anon_sym_while] = ACTIONS(5086), - [anon_sym_do] = ACTIONS(5086), - [anon_sym_for] = ACTIONS(5086), - [anon_sym_return] = ACTIONS(5086), - [anon_sym_break] = ACTIONS(5086), - [anon_sym_continue] = ACTIONS(5086), - [anon_sym_goto] = ACTIONS(5086), - [anon_sym_not] = ACTIONS(5086), - [anon_sym_compl] = ACTIONS(5086), - [anon_sym_DASH_DASH] = ACTIONS(5088), - [anon_sym_PLUS_PLUS] = ACTIONS(5088), - [anon_sym_sizeof] = ACTIONS(5086), - [anon_sym___alignof__] = ACTIONS(5086), - [anon_sym___alignof] = ACTIONS(5086), - [anon_sym__alignof] = ACTIONS(5086), - [anon_sym_alignof] = ACTIONS(5086), - [anon_sym__Alignof] = ACTIONS(5086), - [anon_sym_offsetof] = ACTIONS(5086), - [anon_sym__Generic] = ACTIONS(5086), - [anon_sym_asm] = ACTIONS(5086), - [anon_sym___asm__] = ACTIONS(5086), - [sym_number_literal] = ACTIONS(5088), - [anon_sym_L_SQUOTE] = ACTIONS(5088), - [anon_sym_u_SQUOTE] = ACTIONS(5088), - [anon_sym_U_SQUOTE] = ACTIONS(5088), - [anon_sym_u8_SQUOTE] = ACTIONS(5088), - [anon_sym_SQUOTE] = ACTIONS(5088), - [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_true] = ACTIONS(5086), - [sym_false] = ACTIONS(5086), - [anon_sym_NULL] = ACTIONS(5086), - [anon_sym_nullptr] = ACTIONS(5086), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5086), - [anon_sym_template] = ACTIONS(5086), - [anon_sym_try] = ACTIONS(5086), - [anon_sym_delete] = ACTIONS(5086), - [anon_sym_throw] = ACTIONS(5086), - [anon_sym_co_return] = ACTIONS(5086), - [anon_sym_co_yield] = ACTIONS(5086), - [anon_sym_R_DQUOTE] = ACTIONS(5088), - [anon_sym_LR_DQUOTE] = ACTIONS(5088), - [anon_sym_uR_DQUOTE] = ACTIONS(5088), - [anon_sym_UR_DQUOTE] = ACTIONS(5088), - [anon_sym_u8R_DQUOTE] = ACTIONS(5088), - [anon_sym_co_await] = ACTIONS(5086), - [anon_sym_new] = ACTIONS(5086), - [anon_sym_requires] = ACTIONS(5086), - [sym_this] = ACTIONS(5086), - }, - [2386] = { - [sym_identifier] = ACTIONS(5090), - [anon_sym_LPAREN2] = ACTIONS(5092), - [anon_sym_BANG] = ACTIONS(5092), - [anon_sym_TILDE] = ACTIONS(5092), - [anon_sym_DASH] = ACTIONS(5090), - [anon_sym_PLUS] = ACTIONS(5090), - [anon_sym_STAR] = ACTIONS(5092), - [anon_sym_AMP] = ACTIONS(5092), - [anon_sym_SEMI] = ACTIONS(5092), - [anon_sym_COLON_COLON] = ACTIONS(5092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5092), - [anon_sym_LBRACE] = ACTIONS(5092), - [anon_sym_LBRACK] = ACTIONS(5090), - [sym_primitive_type] = ACTIONS(5090), - [anon_sym_if] = ACTIONS(5090), - [anon_sym_switch] = ACTIONS(5090), - [anon_sym_case] = ACTIONS(5090), - [anon_sym_default] = ACTIONS(5090), - [anon_sym_while] = ACTIONS(5090), - [anon_sym_do] = ACTIONS(5090), - [anon_sym_for] = ACTIONS(5090), - [anon_sym_return] = ACTIONS(5090), - [anon_sym_break] = ACTIONS(5090), - [anon_sym_continue] = ACTIONS(5090), - [anon_sym_goto] = ACTIONS(5090), - [anon_sym_not] = ACTIONS(5090), - [anon_sym_compl] = ACTIONS(5090), - [anon_sym_DASH_DASH] = ACTIONS(5092), - [anon_sym_PLUS_PLUS] = ACTIONS(5092), - [anon_sym_sizeof] = ACTIONS(5090), - [anon_sym___alignof__] = ACTIONS(5090), - [anon_sym___alignof] = ACTIONS(5090), - [anon_sym__alignof] = ACTIONS(5090), - [anon_sym_alignof] = ACTIONS(5090), - [anon_sym__Alignof] = ACTIONS(5090), - [anon_sym_offsetof] = ACTIONS(5090), - [anon_sym__Generic] = ACTIONS(5090), - [anon_sym_asm] = ACTIONS(5090), - [anon_sym___asm__] = ACTIONS(5090), - [sym_number_literal] = ACTIONS(5092), - [anon_sym_L_SQUOTE] = ACTIONS(5092), - [anon_sym_u_SQUOTE] = ACTIONS(5092), - [anon_sym_U_SQUOTE] = ACTIONS(5092), - [anon_sym_u8_SQUOTE] = ACTIONS(5092), - [anon_sym_SQUOTE] = ACTIONS(5092), - [anon_sym_L_DQUOTE] = ACTIONS(5092), - [anon_sym_u_DQUOTE] = ACTIONS(5092), - [anon_sym_U_DQUOTE] = ACTIONS(5092), - [anon_sym_u8_DQUOTE] = ACTIONS(5092), - [anon_sym_DQUOTE] = ACTIONS(5092), - [sym_true] = ACTIONS(5090), - [sym_false] = ACTIONS(5090), - [anon_sym_NULL] = ACTIONS(5090), - [anon_sym_nullptr] = ACTIONS(5090), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5090), - [anon_sym_template] = ACTIONS(5090), - [anon_sym_try] = ACTIONS(5090), - [anon_sym_delete] = ACTIONS(5090), - [anon_sym_throw] = ACTIONS(5090), - [anon_sym_co_return] = ACTIONS(5090), - [anon_sym_co_yield] = ACTIONS(5090), - [anon_sym_R_DQUOTE] = ACTIONS(5092), - [anon_sym_LR_DQUOTE] = ACTIONS(5092), - [anon_sym_uR_DQUOTE] = ACTIONS(5092), - [anon_sym_UR_DQUOTE] = ACTIONS(5092), - [anon_sym_u8R_DQUOTE] = ACTIONS(5092), - [anon_sym_co_await] = ACTIONS(5090), - [anon_sym_new] = ACTIONS(5090), - [anon_sym_requires] = ACTIONS(5090), - [sym_this] = ACTIONS(5090), - }, - [2387] = { - [sym_catch_clause] = STATE(2387), - [aux_sym_constructor_try_statement_repeat1] = STATE(2387), - [sym_identifier] = ACTIONS(2230), - [aux_sym_preproc_def_token1] = ACTIONS(2230), - [aux_sym_preproc_if_token1] = ACTIONS(2230), - [aux_sym_preproc_if_token2] = ACTIONS(2230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2230), - [aux_sym_preproc_else_token1] = ACTIONS(2230), - [aux_sym_preproc_elif_token1] = ACTIONS(2230), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2230), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2230), - [sym_preproc_directive] = ACTIONS(2230), - [anon_sym_LPAREN2] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_AMP_AMP] = ACTIONS(2232), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym___extension__] = ACTIONS(2230), - [anon_sym_typedef] = ACTIONS(2230), - [anon_sym_extern] = ACTIONS(2230), - [anon_sym___attribute__] = ACTIONS(2230), - [anon_sym_COLON_COLON] = ACTIONS(2232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2232), - [anon_sym___declspec] = ACTIONS(2230), - [anon_sym___based] = ACTIONS(2230), - [anon_sym_signed] = ACTIONS(2230), - [anon_sym_unsigned] = ACTIONS(2230), - [anon_sym_long] = ACTIONS(2230), - [anon_sym_short] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_register] = ACTIONS(2230), - [anon_sym_inline] = ACTIONS(2230), - [anon_sym___inline] = ACTIONS(2230), - [anon_sym___inline__] = ACTIONS(2230), - [anon_sym___forceinline] = ACTIONS(2230), - [anon_sym_thread_local] = ACTIONS(2230), - [anon_sym___thread] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_constexpr] = ACTIONS(2230), - [anon_sym_volatile] = ACTIONS(2230), - [anon_sym_restrict] = ACTIONS(2230), - [anon_sym___restrict__] = ACTIONS(2230), - [anon_sym__Atomic] = ACTIONS(2230), - [anon_sym__Noreturn] = ACTIONS(2230), - [anon_sym_noreturn] = ACTIONS(2230), - [anon_sym_mutable] = ACTIONS(2230), - [anon_sym_constinit] = ACTIONS(2230), - [anon_sym_consteval] = ACTIONS(2230), - [sym_primitive_type] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [anon_sym_class] = ACTIONS(2230), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_union] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2230), - [anon_sym_decltype] = ACTIONS(2230), - [anon_sym_virtual] = ACTIONS(2230), - [anon_sym_alignas] = ACTIONS(2230), - [anon_sym_explicit] = ACTIONS(2230), - [anon_sym_typename] = ACTIONS(2230), - [anon_sym_template] = ACTIONS(2230), - [anon_sym_operator] = ACTIONS(2230), - [anon_sym_friend] = ACTIONS(2230), - [anon_sym_public] = ACTIONS(2230), - [anon_sym_private] = ACTIONS(2230), - [anon_sym_protected] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2230), - [anon_sym_static_assert] = ACTIONS(2230), - [anon_sym_catch] = ACTIONS(5094), - }, - [2388] = { - [sym__declaration_modifiers] = STATE(2688), - [sym__declaration_specifiers] = STATE(4733), - [sym_attribute_specifier] = STATE(2688), - [sym_attribute_declaration] = STATE(2688), - [sym_ms_declspec_modifier] = STATE(2688), - [sym_storage_class_specifier] = STATE(2688), - [sym_type_qualifier] = STATE(2688), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_parameter_declaration] = STATE(8288), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2688), - [sym_alignas_specifier] = STATE(2688), - [sym_dependent_type] = STATE(3958), - [sym_optional_parameter_declaration] = STATE(8288), - [sym_variadic_parameter_declaration] = STATE(8288), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7280), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2688), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(1960), - [anon_sym_template] = ACTIONS(1378), - }, - [2389] = { - [sym__declaration_modifiers] = STATE(4299), - [sym_attribute_specifier] = STATE(4299), - [sym_attribute_declaration] = STATE(4299), - [sym_ms_declspec_modifier] = STATE(4299), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6972), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4299), - [sym_type_qualifier] = STATE(4299), - [sym_decltype] = STATE(9648), - [sym_virtual] = STATE(4299), - [sym_alignas_specifier] = STATE(4299), - [sym_explicit_function_specifier] = STATE(4299), - [sym_operator_cast] = STATE(7512), - [sym__constructor_specifiers] = STATE(4299), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(9648), - [sym_template_function] = STATE(6917), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6237), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_operator_cast_identifier] = STATE(7512), - [sym_operator_name] = STATE(6917), - [aux_sym_operator_cast_definition_repeat1] = STATE(4299), - [sym_identifier] = ACTIONS(5097), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(5099), - [anon_sym_extern] = ACTIONS(5101), - [anon_sym___attribute__] = ACTIONS(5103), - [anon_sym_COLON_COLON] = ACTIONS(5105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5107), - [anon_sym___declspec] = ACTIONS(5109), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(5101), - [anon_sym_register] = ACTIONS(5101), - [anon_sym_inline] = ACTIONS(5101), - [anon_sym___inline] = ACTIONS(5101), - [anon_sym___inline__] = ACTIONS(5101), - [anon_sym___forceinline] = ACTIONS(5101), - [anon_sym_thread_local] = ACTIONS(5101), - [anon_sym___thread] = ACTIONS(5101), - [anon_sym_const] = ACTIONS(5099), - [anon_sym_constexpr] = ACTIONS(5099), - [anon_sym_volatile] = ACTIONS(5099), - [anon_sym_restrict] = ACTIONS(5099), - [anon_sym___restrict__] = ACTIONS(5099), - [anon_sym__Atomic] = ACTIONS(5099), - [anon_sym__Noreturn] = ACTIONS(5099), - [anon_sym_noreturn] = ACTIONS(5099), - [anon_sym_mutable] = ACTIONS(5099), - [anon_sym_constinit] = ACTIONS(5099), - [anon_sym_consteval] = ACTIONS(5099), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_virtual] = ACTIONS(5111), - [anon_sym_alignas] = ACTIONS(5113), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(131), - }, - [2390] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2889), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token2] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [aux_sym_preproc_else_token1] = ACTIONS(2194), - [aux_sym_preproc_elif_token1] = ACTIONS(2194), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_friend] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - }, - [2391] = { - [sym_string_literal] = STATE(2391), - [sym_raw_string_literal] = STATE(2391), - [aux_sym_concatenated_string_repeat1] = STATE(2391), - [sym_identifier] = ACTIONS(5115), - [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(5120), - [anon_sym_PLUS] = ACTIONS(5120), - [anon_sym_STAR] = ACTIONS(5120), - [anon_sym_SLASH] = ACTIONS(5120), - [anon_sym_PERCENT] = ACTIONS(5120), - [anon_sym_PIPE_PIPE] = ACTIONS(5118), - [anon_sym_AMP_AMP] = ACTIONS(5118), - [anon_sym_PIPE] = ACTIONS(5120), - [anon_sym_CARET] = ACTIONS(5120), - [anon_sym_AMP] = ACTIONS(5120), - [anon_sym_EQ_EQ] = ACTIONS(5118), - [anon_sym_BANG_EQ] = ACTIONS(5118), - [anon_sym_GT] = ACTIONS(5120), - [anon_sym_GT_EQ] = ACTIONS(5118), - [anon_sym_LT_EQ] = ACTIONS(5120), - [anon_sym_LT] = ACTIONS(5120), - [anon_sym_LT_LT] = ACTIONS(5120), - [anon_sym_GT_GT] = ACTIONS(5120), - [anon_sym_SEMI] = ACTIONS(5118), - [anon_sym_RBRACE] = ACTIONS(5118), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_RBRACK] = ACTIONS(5118), - [anon_sym_EQ] = ACTIONS(5120), - [anon_sym_COLON] = ACTIONS(5118), - [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(5120), - [anon_sym_or_eq] = ACTIONS(5120), - [anon_sym_xor_eq] = ACTIONS(5120), - [anon_sym_LT_EQ_GT] = ACTIONS(5118), - [anon_sym_or] = ACTIONS(5120), - [anon_sym_and] = ACTIONS(5120), - [anon_sym_bitor] = ACTIONS(5120), - [anon_sym_xor] = ACTIONS(5120), - [anon_sym_bitand] = ACTIONS(5120), - [anon_sym_not_eq] = ACTIONS(5120), - [anon_sym_DASH_DASH] = ACTIONS(5118), - [anon_sym_PLUS_PLUS] = ACTIONS(5118), - [anon_sym_DOT] = ACTIONS(5120), - [anon_sym_DOT_STAR] = ACTIONS(5118), - [anon_sym_DASH_GT] = ACTIONS(5118), - [anon_sym_L_DQUOTE] = ACTIONS(5122), - [anon_sym_u_DQUOTE] = ACTIONS(5122), - [anon_sym_U_DQUOTE] = ACTIONS(5122), - [anon_sym_u8_DQUOTE] = ACTIONS(5122), - [anon_sym_DQUOTE] = ACTIONS(5122), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5125), - [anon_sym_LR_DQUOTE] = ACTIONS(5125), - [anon_sym_uR_DQUOTE] = ACTIONS(5125), - [anon_sym_UR_DQUOTE] = ACTIONS(5125), - [anon_sym_u8R_DQUOTE] = ACTIONS(5125), - [sym_literal_suffix] = ACTIONS(5120), - }, - [2392] = { - [sym__declaration_modifiers] = STATE(4299), - [sym_attribute_specifier] = STATE(4299), - [sym_attribute_declaration] = STATE(4299), - [sym_ms_declspec_modifier] = STATE(4299), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6936), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4299), - [sym_type_qualifier] = STATE(4299), - [sym_decltype] = STATE(9648), - [sym_virtual] = STATE(4299), - [sym_alignas_specifier] = STATE(4299), - [sym_explicit_function_specifier] = STATE(4299), - [sym_operator_cast] = STATE(7428), - [sym__constructor_specifiers] = STATE(4299), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(9648), - [sym_template_function] = STATE(6917), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6237), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_operator_cast_identifier] = STATE(7428), - [sym_operator_name] = STATE(6917), - [aux_sym_operator_cast_definition_repeat1] = STATE(4299), - [sym_identifier] = ACTIONS(5097), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(5099), - [anon_sym_extern] = ACTIONS(5101), - [anon_sym___attribute__] = ACTIONS(5103), - [anon_sym_COLON_COLON] = ACTIONS(5105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5107), - [anon_sym___declspec] = ACTIONS(5109), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(5101), - [anon_sym_register] = ACTIONS(5101), - [anon_sym_inline] = ACTIONS(5101), - [anon_sym___inline] = ACTIONS(5101), - [anon_sym___inline__] = ACTIONS(5101), - [anon_sym___forceinline] = ACTIONS(5101), - [anon_sym_thread_local] = ACTIONS(5101), - [anon_sym___thread] = ACTIONS(5101), - [anon_sym_const] = ACTIONS(5099), - [anon_sym_constexpr] = ACTIONS(5099), - [anon_sym_volatile] = ACTIONS(5099), - [anon_sym_restrict] = ACTIONS(5099), - [anon_sym___restrict__] = ACTIONS(5099), - [anon_sym__Atomic] = ACTIONS(5099), - [anon_sym__Noreturn] = ACTIONS(5099), - [anon_sym_noreturn] = ACTIONS(5099), - [anon_sym_mutable] = ACTIONS(5099), - [anon_sym_constinit] = ACTIONS(5099), - [anon_sym_consteval] = ACTIONS(5099), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_virtual] = ACTIONS(5111), - [anon_sym_alignas] = ACTIONS(5113), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(131), - }, - [2393] = { - [sym__declaration_modifiers] = STATE(4299), - [sym_attribute_specifier] = STATE(4299), - [sym_attribute_declaration] = STATE(4299), - [sym_ms_declspec_modifier] = STATE(4299), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7103), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4299), - [sym_type_qualifier] = STATE(4299), - [sym_decltype] = STATE(9648), - [sym_virtual] = STATE(4299), - [sym_alignas_specifier] = STATE(4299), - [sym_explicit_function_specifier] = STATE(4299), - [sym_operator_cast] = STATE(7423), - [sym__constructor_specifiers] = STATE(4299), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(9648), - [sym_template_function] = STATE(6917), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6237), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_operator_cast_identifier] = STATE(7423), - [sym_operator_name] = STATE(6917), - [aux_sym_operator_cast_definition_repeat1] = STATE(4299), - [sym_identifier] = ACTIONS(5097), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(5099), - [anon_sym_extern] = ACTIONS(5101), - [anon_sym___attribute__] = ACTIONS(5103), - [anon_sym_COLON_COLON] = ACTIONS(5105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5107), - [anon_sym___declspec] = ACTIONS(5109), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(5101), - [anon_sym_register] = ACTIONS(5101), - [anon_sym_inline] = ACTIONS(5101), - [anon_sym___inline] = ACTIONS(5101), - [anon_sym___inline__] = ACTIONS(5101), - [anon_sym___forceinline] = ACTIONS(5101), - [anon_sym_thread_local] = ACTIONS(5101), - [anon_sym___thread] = ACTIONS(5101), - [anon_sym_const] = ACTIONS(5099), - [anon_sym_constexpr] = ACTIONS(5099), - [anon_sym_volatile] = ACTIONS(5099), - [anon_sym_restrict] = ACTIONS(5099), - [anon_sym___restrict__] = ACTIONS(5099), - [anon_sym__Atomic] = ACTIONS(5099), - [anon_sym__Noreturn] = ACTIONS(5099), - [anon_sym_noreturn] = ACTIONS(5099), - [anon_sym_mutable] = ACTIONS(5099), - [anon_sym_constinit] = ACTIONS(5099), - [anon_sym_consteval] = ACTIONS(5099), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_virtual] = ACTIONS(5111), - [anon_sym_alignas] = ACTIONS(5113), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(131), - }, - [2394] = { - [sym_template_argument_list] = STATE(2418), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4872), - [anon_sym_COMMA] = ACTIONS(4872), - [anon_sym_RPAREN] = ACTIONS(4862), - [anon_sym_LPAREN2] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4867), - [anon_sym_PLUS] = ACTIONS(4867), - [anon_sym_STAR] = ACTIONS(4869), - [anon_sym_SLASH] = ACTIONS(4867), - [anon_sym_PERCENT] = ACTIONS(4867), - [anon_sym_PIPE_PIPE] = ACTIONS(4872), - [anon_sym_AMP_AMP] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_CARET] = ACTIONS(4867), - [anon_sym_AMP] = ACTIONS(4869), - [anon_sym_EQ_EQ] = ACTIONS(4872), - [anon_sym_BANG_EQ] = ACTIONS(4872), - [anon_sym_GT] = ACTIONS(4867), - [anon_sym_GT_EQ] = ACTIONS(4872), - [anon_sym_LT_EQ] = ACTIONS(4867), - [anon_sym_LT] = ACTIONS(4874), - [anon_sym_LT_LT] = ACTIONS(4867), - [anon_sym_GT_GT] = ACTIONS(4867), - [anon_sym___extension__] = ACTIONS(4865), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4872), - [anon_sym_LBRACE] = ACTIONS(4865), - [anon_sym_LBRACK] = ACTIONS(4869), - [anon_sym_EQ] = ACTIONS(4867), - [anon_sym_const] = ACTIONS(4860), - [anon_sym_constexpr] = ACTIONS(4865), - [anon_sym_volatile] = ACTIONS(4865), - [anon_sym_restrict] = ACTIONS(4865), - [anon_sym___restrict__] = ACTIONS(4865), - [anon_sym__Atomic] = ACTIONS(4865), - [anon_sym__Noreturn] = ACTIONS(4865), - [anon_sym_noreturn] = ACTIONS(4865), - [anon_sym_mutable] = ACTIONS(4865), - [anon_sym_constinit] = ACTIONS(4865), - [anon_sym_consteval] = ACTIONS(4865), - [anon_sym_QMARK] = ACTIONS(4872), - [anon_sym_STAR_EQ] = ACTIONS(4872), - [anon_sym_SLASH_EQ] = ACTIONS(4872), - [anon_sym_PERCENT_EQ] = ACTIONS(4872), - [anon_sym_PLUS_EQ] = ACTIONS(4872), - [anon_sym_DASH_EQ] = ACTIONS(4872), - [anon_sym_LT_LT_EQ] = ACTIONS(4872), - [anon_sym_GT_GT_EQ] = ACTIONS(4872), - [anon_sym_AMP_EQ] = ACTIONS(4872), - [anon_sym_CARET_EQ] = ACTIONS(4872), - [anon_sym_PIPE_EQ] = ACTIONS(4872), - [anon_sym_and_eq] = ACTIONS(4872), - [anon_sym_or_eq] = ACTIONS(4872), - [anon_sym_xor_eq] = ACTIONS(4872), - [anon_sym_LT_EQ_GT] = ACTIONS(4872), - [anon_sym_or] = ACTIONS(4867), - [anon_sym_and] = ACTIONS(4867), - [anon_sym_bitor] = ACTIONS(4872), - [anon_sym_xor] = ACTIONS(4867), - [anon_sym_bitand] = ACTIONS(4872), - [anon_sym_not_eq] = ACTIONS(4872), - [anon_sym_DASH_DASH] = ACTIONS(4872), - [anon_sym_PLUS_PLUS] = ACTIONS(4872), - [anon_sym_DOT] = ACTIONS(4867), - [anon_sym_DOT_STAR] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4867), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4865), - [anon_sym_decltype] = ACTIONS(4865), - [anon_sym_DASH_GT_STAR] = ACTIONS(4872), - }, - [2395] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2889), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token2] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [aux_sym_preproc_else_token1] = ACTIONS(2194), - [aux_sym_preproc_elif_token1] = ACTIONS(2194), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(5128), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_friend] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - }, - [2396] = { - [sym__declaration_modifiers] = STATE(4299), - [sym_attribute_specifier] = STATE(4299), - [sym_attribute_declaration] = STATE(4299), - [sym_ms_declspec_modifier] = STATE(4299), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6981), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4299), - [sym_type_qualifier] = STATE(4299), - [sym_decltype] = STATE(9648), - [sym_virtual] = STATE(4299), - [sym_alignas_specifier] = STATE(4299), - [sym_explicit_function_specifier] = STATE(4299), - [sym_operator_cast] = STATE(7460), - [sym__constructor_specifiers] = STATE(4299), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(9648), - [sym_template_function] = STATE(6917), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6237), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_operator_cast_identifier] = STATE(7460), - [sym_operator_name] = STATE(6917), - [aux_sym_operator_cast_definition_repeat1] = STATE(4299), - [sym_identifier] = ACTIONS(5097), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(5099), - [anon_sym_extern] = ACTIONS(5101), - [anon_sym___attribute__] = ACTIONS(5103), - [anon_sym_COLON_COLON] = ACTIONS(5105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5107), - [anon_sym___declspec] = ACTIONS(5109), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(5101), - [anon_sym_register] = ACTIONS(5101), - [anon_sym_inline] = ACTIONS(5101), - [anon_sym___inline] = ACTIONS(5101), - [anon_sym___inline__] = ACTIONS(5101), - [anon_sym___forceinline] = ACTIONS(5101), - [anon_sym_thread_local] = ACTIONS(5101), - [anon_sym___thread] = ACTIONS(5101), - [anon_sym_const] = ACTIONS(5099), - [anon_sym_constexpr] = ACTIONS(5099), - [anon_sym_volatile] = ACTIONS(5099), - [anon_sym_restrict] = ACTIONS(5099), - [anon_sym___restrict__] = ACTIONS(5099), - [anon_sym__Atomic] = ACTIONS(5099), - [anon_sym__Noreturn] = ACTIONS(5099), - [anon_sym_noreturn] = ACTIONS(5099), - [anon_sym_mutable] = ACTIONS(5099), - [anon_sym_constinit] = ACTIONS(5099), - [anon_sym_consteval] = ACTIONS(5099), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_virtual] = ACTIONS(5111), - [anon_sym_alignas] = ACTIONS(5113), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(131), - }, - [2397] = { - [sym_string_literal] = STATE(2410), - [sym_raw_string_literal] = STATE(2410), - [aux_sym_concatenated_string_repeat1] = STATE(2410), - [sym_identifier] = ACTIONS(5130), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5132), - [anon_sym_COMMA] = ACTIONS(5132), - [anon_sym_RPAREN] = ACTIONS(5132), - [anon_sym_LPAREN2] = ACTIONS(5132), - [anon_sym_DASH] = ACTIONS(5134), - [anon_sym_PLUS] = ACTIONS(5134), - [anon_sym_STAR] = ACTIONS(5134), - [anon_sym_SLASH] = ACTIONS(5134), - [anon_sym_PERCENT] = ACTIONS(5134), - [anon_sym_PIPE_PIPE] = ACTIONS(5132), - [anon_sym_AMP_AMP] = ACTIONS(5132), - [anon_sym_PIPE] = ACTIONS(5134), - [anon_sym_CARET] = ACTIONS(5134), - [anon_sym_AMP] = ACTIONS(5134), - [anon_sym_EQ_EQ] = ACTIONS(5132), - [anon_sym_BANG_EQ] = ACTIONS(5132), - [anon_sym_GT] = ACTIONS(5134), - [anon_sym_GT_EQ] = ACTIONS(5132), - [anon_sym_LT_EQ] = ACTIONS(5134), - [anon_sym_LT] = ACTIONS(5134), - [anon_sym_LT_LT] = ACTIONS(5134), - [anon_sym_GT_GT] = ACTIONS(5134), - [anon_sym_SEMI] = ACTIONS(5132), - [anon_sym_RBRACE] = ACTIONS(5132), - [anon_sym_LBRACK] = ACTIONS(5132), - [anon_sym_RBRACK] = ACTIONS(5132), - [anon_sym_EQ] = ACTIONS(5134), - [anon_sym_COLON] = ACTIONS(5132), - [anon_sym_QMARK] = ACTIONS(5132), - [anon_sym_STAR_EQ] = ACTIONS(5132), - [anon_sym_SLASH_EQ] = ACTIONS(5132), - [anon_sym_PERCENT_EQ] = ACTIONS(5132), - [anon_sym_PLUS_EQ] = ACTIONS(5132), - [anon_sym_DASH_EQ] = ACTIONS(5132), - [anon_sym_LT_LT_EQ] = ACTIONS(5132), - [anon_sym_GT_GT_EQ] = ACTIONS(5132), - [anon_sym_AMP_EQ] = ACTIONS(5132), - [anon_sym_CARET_EQ] = ACTIONS(5132), - [anon_sym_PIPE_EQ] = ACTIONS(5132), - [anon_sym_and_eq] = ACTIONS(5134), - [anon_sym_or_eq] = ACTIONS(5134), - [anon_sym_xor_eq] = ACTIONS(5134), - [anon_sym_LT_EQ_GT] = ACTIONS(5132), - [anon_sym_or] = ACTIONS(5134), - [anon_sym_and] = ACTIONS(5134), - [anon_sym_bitor] = ACTIONS(5134), - [anon_sym_xor] = ACTIONS(5134), - [anon_sym_bitand] = ACTIONS(5134), - [anon_sym_not_eq] = ACTIONS(5134), - [anon_sym_DASH_DASH] = ACTIONS(5132), - [anon_sym_PLUS_PLUS] = ACTIONS(5132), - [anon_sym_DOT] = ACTIONS(5134), - [anon_sym_DOT_STAR] = ACTIONS(5132), - [anon_sym_DASH_GT] = ACTIONS(5132), - [anon_sym_L_DQUOTE] = ACTIONS(5136), - [anon_sym_u_DQUOTE] = ACTIONS(5136), - [anon_sym_U_DQUOTE] = ACTIONS(5136), - [anon_sym_u8_DQUOTE] = ACTIONS(5136), - [anon_sym_DQUOTE] = ACTIONS(5136), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5138), - [anon_sym_LR_DQUOTE] = ACTIONS(5138), - [anon_sym_uR_DQUOTE] = ACTIONS(5138), - [anon_sym_UR_DQUOTE] = ACTIONS(5138), - [anon_sym_u8R_DQUOTE] = ACTIONS(5138), - [sym_literal_suffix] = ACTIONS(5134), - }, - [2398] = { - [sym__declaration_modifiers] = STATE(4299), - [sym_attribute_specifier] = STATE(4299), - [sym_attribute_declaration] = STATE(4299), - [sym_ms_declspec_modifier] = STATE(4299), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6969), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4299), - [sym_type_qualifier] = STATE(4299), - [sym_decltype] = STATE(9648), - [sym_virtual] = STATE(4299), - [sym_alignas_specifier] = STATE(4299), - [sym_explicit_function_specifier] = STATE(4299), - [sym_operator_cast] = STATE(7418), - [sym__constructor_specifiers] = STATE(4299), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(9648), - [sym_template_function] = STATE(6917), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6237), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_operator_cast_identifier] = STATE(7418), - [sym_operator_name] = STATE(6917), - [aux_sym_operator_cast_definition_repeat1] = STATE(4299), - [sym_identifier] = ACTIONS(5097), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(5099), - [anon_sym_extern] = ACTIONS(5101), - [anon_sym___attribute__] = ACTIONS(5103), - [anon_sym_COLON_COLON] = ACTIONS(5105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5107), - [anon_sym___declspec] = ACTIONS(5109), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(5101), - [anon_sym_register] = ACTIONS(5101), - [anon_sym_inline] = ACTIONS(5101), - [anon_sym___inline] = ACTIONS(5101), - [anon_sym___inline__] = ACTIONS(5101), - [anon_sym___forceinline] = ACTIONS(5101), - [anon_sym_thread_local] = ACTIONS(5101), - [anon_sym___thread] = ACTIONS(5101), - [anon_sym_const] = ACTIONS(5099), - [anon_sym_constexpr] = ACTIONS(5099), - [anon_sym_volatile] = ACTIONS(5099), - [anon_sym_restrict] = ACTIONS(5099), - [anon_sym___restrict__] = ACTIONS(5099), - [anon_sym__Atomic] = ACTIONS(5099), - [anon_sym__Noreturn] = ACTIONS(5099), - [anon_sym_noreturn] = ACTIONS(5099), - [anon_sym_mutable] = ACTIONS(5099), - [anon_sym_constinit] = ACTIONS(5099), - [anon_sym_consteval] = ACTIONS(5099), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_virtual] = ACTIONS(5111), - [anon_sym_alignas] = ACTIONS(5113), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(131), - }, - [2399] = { - [sym__declaration_modifiers] = STATE(4299), - [sym_attribute_specifier] = STATE(4299), - [sym_attribute_declaration] = STATE(4299), - [sym_ms_declspec_modifier] = STATE(4299), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6937), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4299), - [sym_type_qualifier] = STATE(4299), - [sym_decltype] = STATE(9648), - [sym_virtual] = STATE(4299), - [sym_alignas_specifier] = STATE(4299), - [sym_explicit_function_specifier] = STATE(4299), - [sym_operator_cast] = STATE(7518), - [sym__constructor_specifiers] = STATE(4299), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(9648), - [sym_template_function] = STATE(6917), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6237), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_operator_cast_identifier] = STATE(7518), - [sym_operator_name] = STATE(6917), - [aux_sym_operator_cast_definition_repeat1] = STATE(4299), - [sym_identifier] = ACTIONS(5097), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(5099), - [anon_sym_extern] = ACTIONS(5101), - [anon_sym___attribute__] = ACTIONS(5103), - [anon_sym_COLON_COLON] = ACTIONS(5105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5107), - [anon_sym___declspec] = ACTIONS(5109), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(5101), - [anon_sym_register] = ACTIONS(5101), - [anon_sym_inline] = ACTIONS(5101), - [anon_sym___inline] = ACTIONS(5101), - [anon_sym___inline__] = ACTIONS(5101), - [anon_sym___forceinline] = ACTIONS(5101), - [anon_sym_thread_local] = ACTIONS(5101), - [anon_sym___thread] = ACTIONS(5101), - [anon_sym_const] = ACTIONS(5099), - [anon_sym_constexpr] = ACTIONS(5099), - [anon_sym_volatile] = ACTIONS(5099), - [anon_sym_restrict] = ACTIONS(5099), - [anon_sym___restrict__] = ACTIONS(5099), - [anon_sym__Atomic] = ACTIONS(5099), - [anon_sym__Noreturn] = ACTIONS(5099), - [anon_sym_noreturn] = ACTIONS(5099), - [anon_sym_mutable] = ACTIONS(5099), - [anon_sym_constinit] = ACTIONS(5099), - [anon_sym_consteval] = ACTIONS(5099), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_virtual] = ACTIONS(5111), - [anon_sym_alignas] = ACTIONS(5113), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(131), - }, - [2400] = { - [sym__declaration_modifiers] = STATE(4299), - [sym_attribute_specifier] = STATE(4299), - [sym_attribute_declaration] = STATE(4299), - [sym_ms_declspec_modifier] = STATE(4299), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7118), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4299), - [sym_type_qualifier] = STATE(4299), - [sym_decltype] = STATE(9648), - [sym_virtual] = STATE(4299), - [sym_alignas_specifier] = STATE(4299), - [sym_explicit_function_specifier] = STATE(4299), - [sym_operator_cast] = STATE(7428), - [sym__constructor_specifiers] = STATE(4299), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(9648), - [sym_template_function] = STATE(6917), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6237), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_operator_cast_identifier] = STATE(7428), - [sym_operator_name] = STATE(6917), - [aux_sym_operator_cast_definition_repeat1] = STATE(4299), - [sym_identifier] = ACTIONS(5097), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(5099), - [anon_sym_extern] = ACTIONS(5101), - [anon_sym___attribute__] = ACTIONS(5103), - [anon_sym_COLON_COLON] = ACTIONS(5105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5107), - [anon_sym___declspec] = ACTIONS(5109), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(5101), - [anon_sym_register] = ACTIONS(5101), - [anon_sym_inline] = ACTIONS(5101), - [anon_sym___inline] = ACTIONS(5101), - [anon_sym___inline__] = ACTIONS(5101), - [anon_sym___forceinline] = ACTIONS(5101), - [anon_sym_thread_local] = ACTIONS(5101), - [anon_sym___thread] = ACTIONS(5101), - [anon_sym_const] = ACTIONS(5099), - [anon_sym_constexpr] = ACTIONS(5099), - [anon_sym_volatile] = ACTIONS(5099), - [anon_sym_restrict] = ACTIONS(5099), - [anon_sym___restrict__] = ACTIONS(5099), - [anon_sym__Atomic] = ACTIONS(5099), - [anon_sym__Noreturn] = ACTIONS(5099), - [anon_sym_noreturn] = ACTIONS(5099), - [anon_sym_mutable] = ACTIONS(5099), - [anon_sym_constinit] = ACTIONS(5099), - [anon_sym_consteval] = ACTIONS(5099), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_virtual] = ACTIONS(5111), - [anon_sym_alignas] = ACTIONS(5113), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(131), - }, - [2401] = { - [sym__declaration_modifiers] = STATE(4299), - [sym_attribute_specifier] = STATE(4299), - [sym_attribute_declaration] = STATE(4299), - [sym_ms_declspec_modifier] = STATE(4299), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6932), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4299), - [sym_type_qualifier] = STATE(4299), - [sym_decltype] = STATE(9648), - [sym_virtual] = STATE(4299), - [sym_alignas_specifier] = STATE(4299), - [sym_explicit_function_specifier] = STATE(4299), - [sym_operator_cast] = STATE(7431), - [sym__constructor_specifiers] = STATE(4299), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(9648), - [sym_template_function] = STATE(6917), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6237), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_operator_cast_identifier] = STATE(7431), - [sym_operator_name] = STATE(6917), - [aux_sym_operator_cast_definition_repeat1] = STATE(4299), - [sym_identifier] = ACTIONS(5097), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(5099), - [anon_sym_extern] = ACTIONS(5101), - [anon_sym___attribute__] = ACTIONS(5103), - [anon_sym_COLON_COLON] = ACTIONS(5105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5107), - [anon_sym___declspec] = ACTIONS(5109), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(5101), - [anon_sym_register] = ACTIONS(5101), - [anon_sym_inline] = ACTIONS(5101), - [anon_sym___inline] = ACTIONS(5101), - [anon_sym___inline__] = ACTIONS(5101), - [anon_sym___forceinline] = ACTIONS(5101), - [anon_sym_thread_local] = ACTIONS(5101), - [anon_sym___thread] = ACTIONS(5101), - [anon_sym_const] = ACTIONS(5099), - [anon_sym_constexpr] = ACTIONS(5099), - [anon_sym_volatile] = ACTIONS(5099), - [anon_sym_restrict] = ACTIONS(5099), - [anon_sym___restrict__] = ACTIONS(5099), - [anon_sym__Atomic] = ACTIONS(5099), - [anon_sym__Noreturn] = ACTIONS(5099), - [anon_sym_noreturn] = ACTIONS(5099), - [anon_sym_mutable] = ACTIONS(5099), - [anon_sym_constinit] = ACTIONS(5099), - [anon_sym_consteval] = ACTIONS(5099), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_virtual] = ACTIONS(5111), - [anon_sym_alignas] = ACTIONS(5113), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(131), - }, - [2402] = { - [sym__declaration_modifiers] = STATE(4299), - [sym_attribute_specifier] = STATE(4299), - [sym_attribute_declaration] = STATE(4299), - [sym_ms_declspec_modifier] = STATE(4299), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7048), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4299), - [sym_type_qualifier] = STATE(4299), - [sym_decltype] = STATE(9648), - [sym_virtual] = STATE(4299), - [sym_alignas_specifier] = STATE(4299), - [sym_explicit_function_specifier] = STATE(4299), - [sym_operator_cast] = STATE(7431), - [sym__constructor_specifiers] = STATE(4299), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(9648), - [sym_template_function] = STATE(6917), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6237), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_operator_cast_identifier] = STATE(7431), - [sym_operator_name] = STATE(6917), - [aux_sym_operator_cast_definition_repeat1] = STATE(4299), - [sym_identifier] = ACTIONS(5097), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(5099), - [anon_sym_extern] = ACTIONS(5101), - [anon_sym___attribute__] = ACTIONS(5103), - [anon_sym_COLON_COLON] = ACTIONS(5105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5107), - [anon_sym___declspec] = ACTIONS(5109), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(5101), - [anon_sym_register] = ACTIONS(5101), - [anon_sym_inline] = ACTIONS(5101), - [anon_sym___inline] = ACTIONS(5101), - [anon_sym___inline__] = ACTIONS(5101), - [anon_sym___forceinline] = ACTIONS(5101), - [anon_sym_thread_local] = ACTIONS(5101), - [anon_sym___thread] = ACTIONS(5101), - [anon_sym_const] = ACTIONS(5099), - [anon_sym_constexpr] = ACTIONS(5099), - [anon_sym_volatile] = ACTIONS(5099), - [anon_sym_restrict] = ACTIONS(5099), - [anon_sym___restrict__] = ACTIONS(5099), - [anon_sym__Atomic] = ACTIONS(5099), - [anon_sym__Noreturn] = ACTIONS(5099), - [anon_sym_noreturn] = ACTIONS(5099), - [anon_sym_mutable] = ACTIONS(5099), - [anon_sym_constinit] = ACTIONS(5099), - [anon_sym_consteval] = ACTIONS(5099), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_virtual] = ACTIONS(5111), - [anon_sym_alignas] = ACTIONS(5113), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(131), - }, - [2403] = { - [sym__declaration_modifiers] = STATE(4299), - [sym_attribute_specifier] = STATE(4299), - [sym_attribute_declaration] = STATE(4299), - [sym_ms_declspec_modifier] = STATE(4299), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6999), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4299), - [sym_type_qualifier] = STATE(4299), - [sym_decltype] = STATE(9648), - [sym_virtual] = STATE(4299), - [sym_alignas_specifier] = STATE(4299), - [sym_explicit_function_specifier] = STATE(4299), - [sym_operator_cast] = STATE(7508), - [sym__constructor_specifiers] = STATE(4299), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(9648), - [sym_template_function] = STATE(6917), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6237), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_operator_cast_identifier] = STATE(7508), - [sym_operator_name] = STATE(6917), - [aux_sym_operator_cast_definition_repeat1] = STATE(4299), - [sym_identifier] = ACTIONS(5097), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(5099), - [anon_sym_extern] = ACTIONS(5101), - [anon_sym___attribute__] = ACTIONS(5103), - [anon_sym_COLON_COLON] = ACTIONS(5105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5107), - [anon_sym___declspec] = ACTIONS(5109), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(5101), - [anon_sym_register] = ACTIONS(5101), - [anon_sym_inline] = ACTIONS(5101), - [anon_sym___inline] = ACTIONS(5101), - [anon_sym___inline__] = ACTIONS(5101), - [anon_sym___forceinline] = ACTIONS(5101), - [anon_sym_thread_local] = ACTIONS(5101), - [anon_sym___thread] = ACTIONS(5101), - [anon_sym_const] = ACTIONS(5099), - [anon_sym_constexpr] = ACTIONS(5099), - [anon_sym_volatile] = ACTIONS(5099), - [anon_sym_restrict] = ACTIONS(5099), - [anon_sym___restrict__] = ACTIONS(5099), - [anon_sym__Atomic] = ACTIONS(5099), - [anon_sym__Noreturn] = ACTIONS(5099), - [anon_sym_noreturn] = ACTIONS(5099), - [anon_sym_mutable] = ACTIONS(5099), - [anon_sym_constinit] = ACTIONS(5099), - [anon_sym_consteval] = ACTIONS(5099), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_virtual] = ACTIONS(5111), - [anon_sym_alignas] = ACTIONS(5113), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(131), - }, - [2404] = { - [sym__declaration_modifiers] = STATE(4299), - [sym_attribute_specifier] = STATE(4299), - [sym_attribute_declaration] = STATE(4299), - [sym_ms_declspec_modifier] = STATE(4299), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7011), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4299), - [sym_type_qualifier] = STATE(4299), - [sym_decltype] = STATE(9648), - [sym_virtual] = STATE(4299), - [sym_alignas_specifier] = STATE(4299), - [sym_explicit_function_specifier] = STATE(4299), - [sym_operator_cast] = STATE(7415), - [sym__constructor_specifiers] = STATE(4299), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(9648), - [sym_template_function] = STATE(6917), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6237), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_operator_cast_identifier] = STATE(7415), - [sym_operator_name] = STATE(6917), - [aux_sym_operator_cast_definition_repeat1] = STATE(4299), - [sym_identifier] = ACTIONS(5097), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(5099), - [anon_sym_extern] = ACTIONS(5101), - [anon_sym___attribute__] = ACTIONS(5103), - [anon_sym_COLON_COLON] = ACTIONS(5105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5107), - [anon_sym___declspec] = ACTIONS(5109), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(5101), - [anon_sym_register] = ACTIONS(5101), - [anon_sym_inline] = ACTIONS(5101), - [anon_sym___inline] = ACTIONS(5101), - [anon_sym___inline__] = ACTIONS(5101), - [anon_sym___forceinline] = ACTIONS(5101), - [anon_sym_thread_local] = ACTIONS(5101), - [anon_sym___thread] = ACTIONS(5101), - [anon_sym_const] = ACTIONS(5099), - [anon_sym_constexpr] = ACTIONS(5099), - [anon_sym_volatile] = ACTIONS(5099), - [anon_sym_restrict] = ACTIONS(5099), - [anon_sym___restrict__] = ACTIONS(5099), - [anon_sym__Atomic] = ACTIONS(5099), - [anon_sym__Noreturn] = ACTIONS(5099), - [anon_sym_noreturn] = ACTIONS(5099), - [anon_sym_mutable] = ACTIONS(5099), - [anon_sym_constinit] = ACTIONS(5099), - [anon_sym_consteval] = ACTIONS(5099), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_virtual] = ACTIONS(5111), - [anon_sym_alignas] = ACTIONS(5113), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(131), - }, - [2405] = { - [sym__declaration_modifiers] = STATE(4299), - [sym_attribute_specifier] = STATE(4299), - [sym_attribute_declaration] = STATE(4299), - [sym_ms_declspec_modifier] = STATE(4299), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7074), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4299), - [sym_type_qualifier] = STATE(4299), - [sym_decltype] = STATE(9648), - [sym_virtual] = STATE(4299), - [sym_alignas_specifier] = STATE(4299), - [sym_explicit_function_specifier] = STATE(4299), - [sym_operator_cast] = STATE(7518), - [sym__constructor_specifiers] = STATE(4299), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(9648), - [sym_template_function] = STATE(6917), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6237), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_operator_cast_identifier] = STATE(7518), - [sym_operator_name] = STATE(6917), - [aux_sym_operator_cast_definition_repeat1] = STATE(4299), - [sym_identifier] = ACTIONS(5097), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(5099), - [anon_sym_extern] = ACTIONS(5101), - [anon_sym___attribute__] = ACTIONS(5103), - [anon_sym_COLON_COLON] = ACTIONS(5105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5107), - [anon_sym___declspec] = ACTIONS(5109), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(5101), - [anon_sym_register] = ACTIONS(5101), - [anon_sym_inline] = ACTIONS(5101), - [anon_sym___inline] = ACTIONS(5101), - [anon_sym___inline__] = ACTIONS(5101), - [anon_sym___forceinline] = ACTIONS(5101), - [anon_sym_thread_local] = ACTIONS(5101), - [anon_sym___thread] = ACTIONS(5101), - [anon_sym_const] = ACTIONS(5099), - [anon_sym_constexpr] = ACTIONS(5099), - [anon_sym_volatile] = ACTIONS(5099), - [anon_sym_restrict] = ACTIONS(5099), - [anon_sym___restrict__] = ACTIONS(5099), - [anon_sym__Atomic] = ACTIONS(5099), - [anon_sym__Noreturn] = ACTIONS(5099), - [anon_sym_noreturn] = ACTIONS(5099), - [anon_sym_mutable] = ACTIONS(5099), - [anon_sym_constinit] = ACTIONS(5099), - [anon_sym_consteval] = ACTIONS(5099), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_virtual] = ACTIONS(5111), - [anon_sym_alignas] = ACTIONS(5113), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(131), - }, - [2406] = { - [sym_string_literal] = STATE(2397), - [sym_template_argument_list] = STATE(3292), - [sym_raw_string_literal] = STATE(2397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_RPAREN] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5140), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_RBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4286), - [anon_sym_COLON] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_and_eq] = ACTIONS(4278), - [anon_sym_or_eq] = ACTIONS(4278), - [anon_sym_xor_eq] = ACTIONS(4278), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(5136), - [anon_sym_u_DQUOTE] = ACTIONS(5136), - [anon_sym_U_DQUOTE] = ACTIONS(5136), - [anon_sym_u8_DQUOTE] = ACTIONS(5136), - [anon_sym_DQUOTE] = ACTIONS(5136), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5138), - [anon_sym_LR_DQUOTE] = ACTIONS(5138), - [anon_sym_uR_DQUOTE] = ACTIONS(5138), - [anon_sym_UR_DQUOTE] = ACTIONS(5138), - [anon_sym_u8R_DQUOTE] = ACTIONS(5138), - }, - [2407] = { - [sym__declaration_modifiers] = STATE(4299), - [sym_attribute_specifier] = STATE(4299), - [sym_attribute_declaration] = STATE(4299), - [sym_ms_declspec_modifier] = STATE(4299), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(6920), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4299), - [sym_type_qualifier] = STATE(4299), - [sym_decltype] = STATE(9648), - [sym_virtual] = STATE(4299), - [sym_alignas_specifier] = STATE(4299), - [sym_explicit_function_specifier] = STATE(4299), - [sym_operator_cast] = STATE(7423), - [sym__constructor_specifiers] = STATE(4299), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(9648), - [sym_template_function] = STATE(6917), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6237), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_operator_cast_identifier] = STATE(7423), - [sym_operator_name] = STATE(6917), - [aux_sym_operator_cast_definition_repeat1] = STATE(4299), - [sym_identifier] = ACTIONS(5097), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(5099), - [anon_sym_extern] = ACTIONS(5101), - [anon_sym___attribute__] = ACTIONS(5103), - [anon_sym_COLON_COLON] = ACTIONS(5105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5107), - [anon_sym___declspec] = ACTIONS(5109), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(5101), - [anon_sym_register] = ACTIONS(5101), - [anon_sym_inline] = ACTIONS(5101), - [anon_sym___inline] = ACTIONS(5101), - [anon_sym___inline__] = ACTIONS(5101), - [anon_sym___forceinline] = ACTIONS(5101), - [anon_sym_thread_local] = ACTIONS(5101), - [anon_sym___thread] = ACTIONS(5101), - [anon_sym_const] = ACTIONS(5099), - [anon_sym_constexpr] = ACTIONS(5099), - [anon_sym_volatile] = ACTIONS(5099), - [anon_sym_restrict] = ACTIONS(5099), - [anon_sym___restrict__] = ACTIONS(5099), - [anon_sym__Atomic] = ACTIONS(5099), - [anon_sym__Noreturn] = ACTIONS(5099), - [anon_sym_noreturn] = ACTIONS(5099), - [anon_sym_mutable] = ACTIONS(5099), - [anon_sym_constinit] = ACTIONS(5099), - [anon_sym_consteval] = ACTIONS(5099), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_virtual] = ACTIONS(5111), - [anon_sym_alignas] = ACTIONS(5113), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(131), - }, - [2408] = { - [sym__declaration_modifiers] = STATE(2688), - [sym__declaration_specifiers] = STATE(4733), - [sym_attribute_specifier] = STATE(2688), - [sym_attribute_declaration] = STATE(2688), - [sym_ms_declspec_modifier] = STATE(2688), - [sym_storage_class_specifier] = STATE(2688), - [sym_type_qualifier] = STATE(2688), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_parameter_declaration] = STATE(8826), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2688), - [sym_alignas_specifier] = STATE(2688), - [sym_dependent_type] = STATE(3958), - [sym_optional_parameter_declaration] = STATE(8826), - [sym_variadic_parameter_declaration] = STATE(8826), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7280), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2688), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4906), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(1960), - [anon_sym_template] = ACTIONS(1378), - }, - [2409] = { - [sym__declaration_modifiers] = STATE(4299), - [sym_attribute_specifier] = STATE(4299), - [sym_attribute_declaration] = STATE(4299), - [sym_ms_declspec_modifier] = STATE(4299), - [sym_ms_based_modifier] = STATE(9661), - [sym__declarator] = STATE(7395), - [sym_parenthesized_declarator] = STATE(6917), - [sym_attributed_declarator] = STATE(6917), - [sym_pointer_declarator] = STATE(6917), - [sym_function_declarator] = STATE(7135), - [sym_array_declarator] = STATE(6917), - [sym_storage_class_specifier] = STATE(4299), - [sym_type_qualifier] = STATE(4299), - [sym_decltype] = STATE(9648), - [sym_virtual] = STATE(4299), - [sym_alignas_specifier] = STATE(4299), - [sym_explicit_function_specifier] = STATE(4299), - [sym_operator_cast] = STATE(7415), - [sym__constructor_specifiers] = STATE(4299), - [sym_reference_declarator] = STATE(6917), - [sym_structured_binding_declarator] = STATE(6917), - [sym_template_type] = STATE(9648), - [sym_template_function] = STATE(6917), - [sym_destructor_name] = STATE(6917), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(6237), - [sym_qualified_identifier] = STATE(6917), - [sym_qualified_operator_cast_identifier] = STATE(7415), - [sym_operator_name] = STATE(6917), - [aux_sym_operator_cast_definition_repeat1] = STATE(4299), - [sym_identifier] = ACTIONS(5097), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(5099), - [anon_sym_extern] = ACTIONS(5101), - [anon_sym___attribute__] = ACTIONS(5103), - [anon_sym_COLON_COLON] = ACTIONS(5105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5107), - [anon_sym___declspec] = ACTIONS(5109), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(5101), - [anon_sym_register] = ACTIONS(5101), - [anon_sym_inline] = ACTIONS(5101), - [anon_sym___inline] = ACTIONS(5101), - [anon_sym___inline__] = ACTIONS(5101), - [anon_sym___forceinline] = ACTIONS(5101), - [anon_sym_thread_local] = ACTIONS(5101), - [anon_sym___thread] = ACTIONS(5101), - [anon_sym_const] = ACTIONS(5099), - [anon_sym_constexpr] = ACTIONS(5099), - [anon_sym_volatile] = ACTIONS(5099), - [anon_sym_restrict] = ACTIONS(5099), - [anon_sym___restrict__] = ACTIONS(5099), - [anon_sym__Atomic] = ACTIONS(5099), - [anon_sym__Noreturn] = ACTIONS(5099), - [anon_sym_noreturn] = ACTIONS(5099), - [anon_sym_mutable] = ACTIONS(5099), - [anon_sym_constinit] = ACTIONS(5099), - [anon_sym_consteval] = ACTIONS(5099), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2056), - [anon_sym_virtual] = ACTIONS(5111), - [anon_sym_alignas] = ACTIONS(5113), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_template] = ACTIONS(1378), - [anon_sym_operator] = ACTIONS(131), - }, - [2410] = { - [sym_string_literal] = STATE(2391), - [sym_raw_string_literal] = STATE(2391), - [aux_sym_concatenated_string_repeat1] = STATE(2391), - [sym_identifier] = ACTIONS(5143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5145), - [anon_sym_COMMA] = ACTIONS(5145), - [anon_sym_RPAREN] = ACTIONS(5145), - [anon_sym_LPAREN2] = ACTIONS(5145), - [anon_sym_DASH] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_PERCENT] = ACTIONS(5147), - [anon_sym_PIPE_PIPE] = ACTIONS(5145), - [anon_sym_AMP_AMP] = ACTIONS(5145), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_CARET] = ACTIONS(5147), - [anon_sym_AMP] = ACTIONS(5147), - [anon_sym_EQ_EQ] = ACTIONS(5145), - [anon_sym_BANG_EQ] = ACTIONS(5145), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_GT_EQ] = ACTIONS(5145), - [anon_sym_LT_EQ] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5147), - [anon_sym_LT_LT] = ACTIONS(5147), - [anon_sym_GT_GT] = ACTIONS(5147), - [anon_sym_SEMI] = ACTIONS(5145), - [anon_sym_RBRACE] = ACTIONS(5145), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_RBRACK] = ACTIONS(5145), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_COLON] = ACTIONS(5145), - [anon_sym_QMARK] = ACTIONS(5145), - [anon_sym_STAR_EQ] = ACTIONS(5145), - [anon_sym_SLASH_EQ] = ACTIONS(5145), - [anon_sym_PERCENT_EQ] = ACTIONS(5145), - [anon_sym_PLUS_EQ] = ACTIONS(5145), - [anon_sym_DASH_EQ] = ACTIONS(5145), - [anon_sym_LT_LT_EQ] = ACTIONS(5145), - [anon_sym_GT_GT_EQ] = ACTIONS(5145), - [anon_sym_AMP_EQ] = ACTIONS(5145), - [anon_sym_CARET_EQ] = ACTIONS(5145), - [anon_sym_PIPE_EQ] = ACTIONS(5145), - [anon_sym_and_eq] = ACTIONS(5147), - [anon_sym_or_eq] = ACTIONS(5147), - [anon_sym_xor_eq] = ACTIONS(5147), - [anon_sym_LT_EQ_GT] = ACTIONS(5145), - [anon_sym_or] = ACTIONS(5147), - [anon_sym_and] = ACTIONS(5147), - [anon_sym_bitor] = ACTIONS(5147), - [anon_sym_xor] = ACTIONS(5147), - [anon_sym_bitand] = ACTIONS(5147), - [anon_sym_not_eq] = ACTIONS(5147), - [anon_sym_DASH_DASH] = ACTIONS(5145), - [anon_sym_PLUS_PLUS] = ACTIONS(5145), - [anon_sym_DOT] = ACTIONS(5147), - [anon_sym_DOT_STAR] = ACTIONS(5145), - [anon_sym_DASH_GT] = ACTIONS(5145), - [anon_sym_L_DQUOTE] = ACTIONS(5136), - [anon_sym_u_DQUOTE] = ACTIONS(5136), - [anon_sym_U_DQUOTE] = ACTIONS(5136), - [anon_sym_u8_DQUOTE] = ACTIONS(5136), - [anon_sym_DQUOTE] = ACTIONS(5136), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5138), - [anon_sym_LR_DQUOTE] = ACTIONS(5138), - [anon_sym_uR_DQUOTE] = ACTIONS(5138), - [anon_sym_UR_DQUOTE] = ACTIONS(5138), - [anon_sym_u8R_DQUOTE] = ACTIONS(5138), - [sym_literal_suffix] = ACTIONS(5147), - }, - [2411] = { - [sym_identifier] = ACTIONS(2198), - [aux_sym_preproc_def_token1] = ACTIONS(2198), - [aux_sym_preproc_if_token1] = ACTIONS(2198), - [aux_sym_preproc_if_token2] = ACTIONS(2198), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2198), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2198), - [aux_sym_preproc_else_token1] = ACTIONS(2198), - [aux_sym_preproc_elif_token1] = ACTIONS(2198), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2198), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2198), - [sym_preproc_directive] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2196), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2198), - [anon_sym___extension__] = ACTIONS(2198), - [anon_sym_typedef] = ACTIONS(2198), - [anon_sym_extern] = ACTIONS(2198), - [anon_sym___attribute__] = ACTIONS(2198), - [anon_sym_COLON_COLON] = ACTIONS(2196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2196), - [anon_sym___declspec] = ACTIONS(2198), - [anon_sym___based] = ACTIONS(2198), - [anon_sym_signed] = ACTIONS(2198), - [anon_sym_unsigned] = ACTIONS(2198), - [anon_sym_long] = ACTIONS(2198), - [anon_sym_short] = ACTIONS(2198), - [anon_sym_LBRACK] = ACTIONS(2198), - [anon_sym_static] = ACTIONS(2198), - [anon_sym_register] = ACTIONS(2198), - [anon_sym_inline] = ACTIONS(2198), - [anon_sym___inline] = ACTIONS(2198), - [anon_sym___inline__] = ACTIONS(2198), - [anon_sym___forceinline] = ACTIONS(2198), - [anon_sym_thread_local] = ACTIONS(2198), - [anon_sym___thread] = ACTIONS(2198), - [anon_sym_const] = ACTIONS(2198), - [anon_sym_constexpr] = ACTIONS(2198), - [anon_sym_volatile] = ACTIONS(2198), - [anon_sym_restrict] = ACTIONS(2198), - [anon_sym___restrict__] = ACTIONS(2198), - [anon_sym__Atomic] = ACTIONS(2198), - [anon_sym__Noreturn] = ACTIONS(2198), - [anon_sym_noreturn] = ACTIONS(2198), - [anon_sym_mutable] = ACTIONS(2198), - [anon_sym_constinit] = ACTIONS(2198), - [anon_sym_consteval] = ACTIONS(2198), - [sym_primitive_type] = ACTIONS(2198), - [anon_sym_enum] = ACTIONS(2198), - [anon_sym_class] = ACTIONS(2198), - [anon_sym_struct] = ACTIONS(2198), - [anon_sym_union] = ACTIONS(2198), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2198), - [anon_sym_decltype] = ACTIONS(2198), - [anon_sym_virtual] = ACTIONS(2198), - [anon_sym_alignas] = ACTIONS(2198), - [anon_sym_explicit] = ACTIONS(2198), - [anon_sym_typename] = ACTIONS(2198), - [anon_sym_template] = ACTIONS(2198), - [anon_sym_operator] = ACTIONS(2198), - [anon_sym_friend] = ACTIONS(2198), - [anon_sym_public] = ACTIONS(2198), - [anon_sym_private] = ACTIONS(2198), - [anon_sym_protected] = ACTIONS(2198), - [anon_sym_using] = ACTIONS(2198), - [anon_sym_static_assert] = ACTIONS(2198), - [anon_sym_catch] = ACTIONS(2198), - }, - [2412] = { - [sym_identifier] = ACTIONS(2768), - [aux_sym_preproc_def_token1] = ACTIONS(2768), - [aux_sym_preproc_if_token1] = ACTIONS(2768), - [aux_sym_preproc_if_token2] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2768), - [aux_sym_preproc_else_token1] = ACTIONS(2768), - [aux_sym_preproc_elif_token1] = ACTIONS(2768), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2768), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2768), - [sym_preproc_directive] = ACTIONS(2768), - [anon_sym_LPAREN2] = ACTIONS(2770), - [anon_sym_TILDE] = ACTIONS(2770), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym_typedef] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2770), - [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(2768), - [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_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2768), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym_explicit] = ACTIONS(2768), - [anon_sym_typename] = ACTIONS(2768), - [anon_sym_template] = ACTIONS(2768), - [anon_sym_operator] = ACTIONS(2768), - [anon_sym_friend] = ACTIONS(2768), - [anon_sym_public] = ACTIONS(2768), - [anon_sym_private] = ACTIONS(2768), - [anon_sym_protected] = ACTIONS(2768), - [anon_sym_using] = ACTIONS(2768), - [anon_sym_static_assert] = ACTIONS(2768), - [anon_sym_catch] = ACTIONS(2768), - }, - [2413] = { - [sym_template_argument_list] = STATE(2518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4872), - [anon_sym_COMMA] = ACTIONS(4872), - [anon_sym_RPAREN] = ACTIONS(4862), - [anon_sym_LPAREN2] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4867), - [anon_sym_PLUS] = ACTIONS(4867), - [anon_sym_STAR] = ACTIONS(4869), - [anon_sym_SLASH] = ACTIONS(4867), - [anon_sym_PERCENT] = ACTIONS(4867), - [anon_sym_PIPE_PIPE] = ACTIONS(4872), - [anon_sym_AMP_AMP] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_CARET] = ACTIONS(4867), - [anon_sym_AMP] = ACTIONS(4869), - [anon_sym_EQ_EQ] = ACTIONS(4872), - [anon_sym_BANG_EQ] = ACTIONS(4872), - [anon_sym_GT] = ACTIONS(4867), - [anon_sym_GT_EQ] = ACTIONS(4872), - [anon_sym_LT_EQ] = ACTIONS(4867), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_LT_LT] = ACTIONS(4867), - [anon_sym_GT_GT] = ACTIONS(4867), - [anon_sym___extension__] = ACTIONS(4865), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4865), - [anon_sym_LBRACK] = ACTIONS(4862), - [anon_sym_EQ] = ACTIONS(4867), - [anon_sym_const] = ACTIONS(4860), - [anon_sym_constexpr] = ACTIONS(4865), - [anon_sym_volatile] = ACTIONS(4865), - [anon_sym_restrict] = ACTIONS(4865), - [anon_sym___restrict__] = ACTIONS(4865), - [anon_sym__Atomic] = ACTIONS(4865), - [anon_sym__Noreturn] = ACTIONS(4865), - [anon_sym_noreturn] = ACTIONS(4865), - [anon_sym_mutable] = ACTIONS(4865), - [anon_sym_constinit] = ACTIONS(4865), - [anon_sym_consteval] = ACTIONS(4865), - [anon_sym_QMARK] = ACTIONS(4872), - [anon_sym_STAR_EQ] = ACTIONS(4872), - [anon_sym_SLASH_EQ] = ACTIONS(4872), - [anon_sym_PERCENT_EQ] = ACTIONS(4872), - [anon_sym_PLUS_EQ] = ACTIONS(4872), - [anon_sym_DASH_EQ] = ACTIONS(4872), - [anon_sym_LT_LT_EQ] = ACTIONS(4872), - [anon_sym_GT_GT_EQ] = ACTIONS(4872), - [anon_sym_AMP_EQ] = ACTIONS(4872), - [anon_sym_CARET_EQ] = ACTIONS(4872), - [anon_sym_PIPE_EQ] = ACTIONS(4872), - [anon_sym_and_eq] = ACTIONS(4872), - [anon_sym_or_eq] = ACTIONS(4872), - [anon_sym_xor_eq] = ACTIONS(4872), - [anon_sym_LT_EQ_GT] = ACTIONS(4872), - [anon_sym_or] = ACTIONS(4867), - [anon_sym_and] = ACTIONS(4867), - [anon_sym_bitor] = ACTIONS(4872), - [anon_sym_xor] = ACTIONS(4867), - [anon_sym_bitand] = ACTIONS(4872), - [anon_sym_not_eq] = ACTIONS(4872), - [anon_sym_DASH_DASH] = ACTIONS(4872), - [anon_sym_PLUS_PLUS] = ACTIONS(4872), - [anon_sym_DOT] = ACTIONS(4867), - [anon_sym_DOT_STAR] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4867), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4865), - [anon_sym_decltype] = ACTIONS(4865), - [anon_sym_DASH_GT_STAR] = ACTIONS(4872), - }, - [2414] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4850), - [anon_sym_COMMA] = ACTIONS(4850), - [anon_sym_RPAREN] = ACTIONS(4850), - [anon_sym_LPAREN2] = ACTIONS(4850), - [anon_sym_DASH] = ACTIONS(4848), - [anon_sym_PLUS] = ACTIONS(4848), - [anon_sym_STAR] = ACTIONS(4848), - [anon_sym_SLASH] = ACTIONS(4848), - [anon_sym_PERCENT] = ACTIONS(4848), - [anon_sym_PIPE_PIPE] = ACTIONS(4850), - [anon_sym_AMP_AMP] = ACTIONS(4850), - [anon_sym_PIPE] = ACTIONS(4848), - [anon_sym_CARET] = ACTIONS(4848), - [anon_sym_AMP] = ACTIONS(4848), - [anon_sym_EQ_EQ] = ACTIONS(4850), - [anon_sym_BANG_EQ] = ACTIONS(4850), - [anon_sym_GT] = ACTIONS(4848), - [anon_sym_GT_EQ] = ACTIONS(4850), - [anon_sym_LT_EQ] = ACTIONS(4848), - [anon_sym_LT] = ACTIONS(4848), - [anon_sym_LT_LT] = ACTIONS(4848), - [anon_sym_GT_GT] = ACTIONS(4848), - [anon_sym___extension__] = ACTIONS(4850), - [anon_sym___attribute__] = ACTIONS(4850), - [anon_sym_COLON_COLON] = ACTIONS(4850), - [anon_sym_LBRACE] = ACTIONS(4850), - [anon_sym_LBRACK] = ACTIONS(4850), - [anon_sym_EQ] = ACTIONS(4848), - [anon_sym_const] = ACTIONS(4848), - [anon_sym_constexpr] = ACTIONS(4850), - [anon_sym_volatile] = ACTIONS(4850), - [anon_sym_restrict] = ACTIONS(4850), - [anon_sym___restrict__] = ACTIONS(4850), - [anon_sym__Atomic] = ACTIONS(4850), - [anon_sym__Noreturn] = ACTIONS(4850), - [anon_sym_noreturn] = ACTIONS(4850), - [anon_sym_mutable] = ACTIONS(4850), - [anon_sym_constinit] = ACTIONS(4850), - [anon_sym_consteval] = ACTIONS(4850), - [anon_sym_COLON] = ACTIONS(4848), - [anon_sym_QMARK] = ACTIONS(4850), - [anon_sym_STAR_EQ] = ACTIONS(4850), - [anon_sym_SLASH_EQ] = ACTIONS(4850), - [anon_sym_PERCENT_EQ] = ACTIONS(4850), - [anon_sym_PLUS_EQ] = ACTIONS(4850), - [anon_sym_DASH_EQ] = ACTIONS(4850), - [anon_sym_LT_LT_EQ] = ACTIONS(4850), - [anon_sym_GT_GT_EQ] = ACTIONS(4850), - [anon_sym_AMP_EQ] = ACTIONS(4850), - [anon_sym_CARET_EQ] = ACTIONS(4850), - [anon_sym_PIPE_EQ] = ACTIONS(4850), - [anon_sym_LT_EQ_GT] = ACTIONS(4850), - [anon_sym_or] = ACTIONS(4850), - [anon_sym_and] = ACTIONS(4850), - [anon_sym_bitor] = ACTIONS(4850), - [anon_sym_xor] = ACTIONS(4850), - [anon_sym_bitand] = ACTIONS(4850), - [anon_sym_not_eq] = ACTIONS(4850), - [anon_sym_DASH_DASH] = ACTIONS(4850), - [anon_sym_PLUS_PLUS] = ACTIONS(4850), - [anon_sym_DOT] = ACTIONS(4848), - [anon_sym_DOT_STAR] = ACTIONS(4850), - [anon_sym_DASH_GT] = ACTIONS(4848), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4850), - [anon_sym_decltype] = ACTIONS(4850), - [anon_sym_final] = ACTIONS(4850), - [anon_sym_override] = ACTIONS(4850), - [anon_sym_DASH_GT_STAR] = ACTIONS(4850), - }, - [2415] = { - [sym_catch_clause] = STATE(2420), - [aux_sym_constructor_try_statement_repeat1] = STATE(2420), - [sym_identifier] = ACTIONS(2559), - [aux_sym_preproc_def_token1] = ACTIONS(2559), - [aux_sym_preproc_if_token1] = ACTIONS(2559), - [aux_sym_preproc_if_token2] = ACTIONS(2559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), - [aux_sym_preproc_else_token1] = ACTIONS(2559), - [aux_sym_preproc_elif_token1] = ACTIONS(2559), - [sym_preproc_directive] = ACTIONS(2559), - [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(2559), - [anon_sym___extension__] = ACTIONS(2559), - [anon_sym_typedef] = ACTIONS(2559), - [anon_sym_extern] = ACTIONS(2559), - [anon_sym___attribute__] = ACTIONS(2559), - [anon_sym_COLON_COLON] = ACTIONS(2561), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2559), - [anon_sym___based] = ACTIONS(2559), - [anon_sym_signed] = ACTIONS(2559), - [anon_sym_unsigned] = ACTIONS(2559), - [anon_sym_long] = ACTIONS(2559), - [anon_sym_short] = ACTIONS(2559), - [anon_sym_LBRACK] = ACTIONS(2559), - [anon_sym_static] = ACTIONS(2559), - [anon_sym_register] = ACTIONS(2559), - [anon_sym_inline] = ACTIONS(2559), - [anon_sym___inline] = ACTIONS(2559), - [anon_sym___inline__] = ACTIONS(2559), - [anon_sym___forceinline] = ACTIONS(2559), - [anon_sym_thread_local] = ACTIONS(2559), - [anon_sym___thread] = ACTIONS(2559), - [anon_sym_const] = ACTIONS(2559), - [anon_sym_constexpr] = ACTIONS(2559), - [anon_sym_volatile] = ACTIONS(2559), - [anon_sym_restrict] = ACTIONS(2559), - [anon_sym___restrict__] = ACTIONS(2559), - [anon_sym__Atomic] = ACTIONS(2559), - [anon_sym__Noreturn] = ACTIONS(2559), - [anon_sym_noreturn] = ACTIONS(2559), - [anon_sym_mutable] = ACTIONS(2559), - [anon_sym_constinit] = ACTIONS(2559), - [anon_sym_consteval] = ACTIONS(2559), - [sym_primitive_type] = ACTIONS(2559), - [anon_sym_enum] = ACTIONS(2559), - [anon_sym_class] = ACTIONS(2559), - [anon_sym_struct] = ACTIONS(2559), - [anon_sym_union] = ACTIONS(2559), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2559), - [anon_sym_decltype] = ACTIONS(2559), - [anon_sym_virtual] = ACTIONS(2559), - [anon_sym_alignas] = ACTIONS(2559), - [anon_sym_explicit] = ACTIONS(2559), - [anon_sym_typename] = ACTIONS(2559), - [anon_sym_template] = ACTIONS(2559), - [anon_sym_operator] = ACTIONS(2559), - [anon_sym_friend] = ACTIONS(2559), - [anon_sym_public] = ACTIONS(2559), - [anon_sym_private] = ACTIONS(2559), - [anon_sym_protected] = ACTIONS(2559), - [anon_sym_using] = ACTIONS(2559), - [anon_sym_static_assert] = ACTIONS(2559), - [anon_sym_catch] = ACTIONS(5152), - }, - [2416] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token2] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [aux_sym_preproc_else_token1] = ACTIONS(2194), - [aux_sym_preproc_elif_token1] = ACTIONS(2194), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_friend] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - [anon_sym_catch] = ACTIONS(2194), - }, - [2417] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4858), - [anon_sym_COMMA] = ACTIONS(4858), - [anon_sym_RPAREN] = ACTIONS(4858), - [anon_sym_LPAREN2] = ACTIONS(4858), - [anon_sym_DASH] = ACTIONS(4856), - [anon_sym_PLUS] = ACTIONS(4856), - [anon_sym_STAR] = ACTIONS(4856), - [anon_sym_SLASH] = ACTIONS(4856), - [anon_sym_PERCENT] = ACTIONS(4856), - [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_AMP_AMP] = ACTIONS(4858), - [anon_sym_PIPE] = ACTIONS(4856), - [anon_sym_CARET] = ACTIONS(4856), - [anon_sym_AMP] = ACTIONS(4856), - [anon_sym_EQ_EQ] = ACTIONS(4858), - [anon_sym_BANG_EQ] = ACTIONS(4858), - [anon_sym_GT] = ACTIONS(4856), - [anon_sym_GT_EQ] = ACTIONS(4858), - [anon_sym_LT_EQ] = ACTIONS(4856), - [anon_sym_LT] = ACTIONS(4856), - [anon_sym_LT_LT] = ACTIONS(4856), - [anon_sym_GT_GT] = ACTIONS(4856), - [anon_sym___extension__] = ACTIONS(4858), - [anon_sym___attribute__] = ACTIONS(4858), - [anon_sym_COLON_COLON] = ACTIONS(4858), - [anon_sym_LBRACE] = ACTIONS(4858), - [anon_sym_LBRACK] = ACTIONS(4858), - [anon_sym_EQ] = ACTIONS(4856), - [anon_sym_const] = ACTIONS(4856), - [anon_sym_constexpr] = ACTIONS(4858), - [anon_sym_volatile] = ACTIONS(4858), - [anon_sym_restrict] = ACTIONS(4858), - [anon_sym___restrict__] = ACTIONS(4858), - [anon_sym__Atomic] = ACTIONS(4858), - [anon_sym__Noreturn] = ACTIONS(4858), - [anon_sym_noreturn] = ACTIONS(4858), - [anon_sym_mutable] = ACTIONS(4858), - [anon_sym_constinit] = ACTIONS(4858), - [anon_sym_consteval] = ACTIONS(4858), - [anon_sym_COLON] = ACTIONS(4856), - [anon_sym_QMARK] = ACTIONS(4858), - [anon_sym_STAR_EQ] = ACTIONS(4858), - [anon_sym_SLASH_EQ] = ACTIONS(4858), - [anon_sym_PERCENT_EQ] = ACTIONS(4858), - [anon_sym_PLUS_EQ] = ACTIONS(4858), - [anon_sym_DASH_EQ] = ACTIONS(4858), - [anon_sym_LT_LT_EQ] = ACTIONS(4858), - [anon_sym_GT_GT_EQ] = ACTIONS(4858), - [anon_sym_AMP_EQ] = ACTIONS(4858), - [anon_sym_CARET_EQ] = ACTIONS(4858), - [anon_sym_PIPE_EQ] = ACTIONS(4858), - [anon_sym_LT_EQ_GT] = ACTIONS(4858), - [anon_sym_or] = ACTIONS(4858), - [anon_sym_and] = ACTIONS(4858), - [anon_sym_bitor] = ACTIONS(4858), - [anon_sym_xor] = ACTIONS(4858), - [anon_sym_bitand] = ACTIONS(4858), - [anon_sym_not_eq] = ACTIONS(4858), - [anon_sym_DASH_DASH] = ACTIONS(4858), - [anon_sym_PLUS_PLUS] = ACTIONS(4858), - [anon_sym_DOT] = ACTIONS(4856), - [anon_sym_DOT_STAR] = ACTIONS(4858), - [anon_sym_DASH_GT] = ACTIONS(4856), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4858), - [anon_sym_decltype] = ACTIONS(4858), - [anon_sym_final] = ACTIONS(4858), - [anon_sym_override] = ACTIONS(4858), - [anon_sym_DASH_GT_STAR] = ACTIONS(4858), - }, - [2418] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), - [anon_sym_COMMA] = ACTIONS(4904), - [anon_sym_RPAREN] = ACTIONS(4894), - [anon_sym_LPAREN2] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4899), - [anon_sym_STAR] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4899), - [anon_sym_PERCENT] = ACTIONS(4899), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_CARET] = ACTIONS(4899), - [anon_sym_AMP] = ACTIONS(4901), - [anon_sym_EQ_EQ] = ACTIONS(4904), - [anon_sym_BANG_EQ] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4899), - [anon_sym_GT_EQ] = ACTIONS(4904), - [anon_sym_LT_EQ] = ACTIONS(4899), - [anon_sym_LT] = ACTIONS(4899), - [anon_sym_LT_LT] = ACTIONS(4899), - [anon_sym_GT_GT] = ACTIONS(4899), - [anon_sym___extension__] = ACTIONS(4897), - [anon_sym_COLON_COLON] = ACTIONS(4897), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4904), - [anon_sym_LBRACE] = ACTIONS(4897), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_EQ] = ACTIONS(4899), - [anon_sym_const] = ACTIONS(4892), - [anon_sym_constexpr] = ACTIONS(4897), - [anon_sym_volatile] = ACTIONS(4897), - [anon_sym_restrict] = ACTIONS(4897), - [anon_sym___restrict__] = ACTIONS(4897), - [anon_sym__Atomic] = ACTIONS(4897), - [anon_sym__Noreturn] = ACTIONS(4897), - [anon_sym_noreturn] = ACTIONS(4897), - [anon_sym_mutable] = ACTIONS(4897), - [anon_sym_constinit] = ACTIONS(4897), - [anon_sym_consteval] = ACTIONS(4897), - [anon_sym_QMARK] = ACTIONS(4904), - [anon_sym_STAR_EQ] = ACTIONS(4904), - [anon_sym_SLASH_EQ] = ACTIONS(4904), - [anon_sym_PERCENT_EQ] = ACTIONS(4904), - [anon_sym_PLUS_EQ] = ACTIONS(4904), - [anon_sym_DASH_EQ] = ACTIONS(4904), - [anon_sym_LT_LT_EQ] = ACTIONS(4904), - [anon_sym_GT_GT_EQ] = ACTIONS(4904), - [anon_sym_AMP_EQ] = ACTIONS(4904), - [anon_sym_CARET_EQ] = ACTIONS(4904), - [anon_sym_PIPE_EQ] = ACTIONS(4904), - [anon_sym_and_eq] = ACTIONS(4904), - [anon_sym_or_eq] = ACTIONS(4904), - [anon_sym_xor_eq] = ACTIONS(4904), - [anon_sym_LT_EQ_GT] = ACTIONS(4904), - [anon_sym_or] = ACTIONS(4899), - [anon_sym_and] = ACTIONS(4899), - [anon_sym_bitor] = ACTIONS(4904), - [anon_sym_xor] = ACTIONS(4899), - [anon_sym_bitand] = ACTIONS(4904), - [anon_sym_not_eq] = ACTIONS(4904), - [anon_sym_DASH_DASH] = ACTIONS(4904), - [anon_sym_PLUS_PLUS] = ACTIONS(4904), - [anon_sym_DOT] = ACTIONS(4899), - [anon_sym_DOT_STAR] = ACTIONS(4904), - [anon_sym_DASH_GT] = ACTIONS(4899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4897), - [anon_sym_decltype] = ACTIONS(4897), - [anon_sym_DASH_GT_STAR] = ACTIONS(4904), - }, - [2419] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4846), - [anon_sym_COMMA] = ACTIONS(4846), - [anon_sym_RPAREN] = ACTIONS(4846), - [anon_sym_LPAREN2] = ACTIONS(4846), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4844), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE] = ACTIONS(4844), - [anon_sym_CARET] = ACTIONS(4844), - [anon_sym_AMP] = ACTIONS(4844), - [anon_sym_EQ_EQ] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4846), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4844), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_LT_LT] = ACTIONS(4844), - [anon_sym_GT_GT] = ACTIONS(4844), - [anon_sym___extension__] = ACTIONS(4846), - [anon_sym___attribute__] = ACTIONS(4846), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_EQ] = ACTIONS(4844), - [anon_sym_const] = ACTIONS(4844), - [anon_sym_constexpr] = ACTIONS(4846), - [anon_sym_volatile] = ACTIONS(4846), - [anon_sym_restrict] = ACTIONS(4846), - [anon_sym___restrict__] = ACTIONS(4846), - [anon_sym__Atomic] = ACTIONS(4846), - [anon_sym__Noreturn] = ACTIONS(4846), - [anon_sym_noreturn] = ACTIONS(4846), - [anon_sym_mutable] = ACTIONS(4846), - [anon_sym_constinit] = ACTIONS(4846), - [anon_sym_consteval] = ACTIONS(4846), - [anon_sym_COLON] = ACTIONS(4844), - [anon_sym_QMARK] = ACTIONS(4846), - [anon_sym_STAR_EQ] = ACTIONS(4846), - [anon_sym_SLASH_EQ] = ACTIONS(4846), - [anon_sym_PERCENT_EQ] = ACTIONS(4846), - [anon_sym_PLUS_EQ] = ACTIONS(4846), - [anon_sym_DASH_EQ] = ACTIONS(4846), - [anon_sym_LT_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_GT_EQ] = ACTIONS(4846), - [anon_sym_AMP_EQ] = ACTIONS(4846), - [anon_sym_CARET_EQ] = ACTIONS(4846), - [anon_sym_PIPE_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ_GT] = ACTIONS(4846), - [anon_sym_or] = ACTIONS(4846), - [anon_sym_and] = ACTIONS(4846), - [anon_sym_bitor] = ACTIONS(4846), - [anon_sym_xor] = ACTIONS(4846), - [anon_sym_bitand] = ACTIONS(4846), - [anon_sym_not_eq] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_DOT_STAR] = ACTIONS(4846), - [anon_sym_DASH_GT] = ACTIONS(4844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4846), - [anon_sym_decltype] = ACTIONS(4846), - [anon_sym_final] = ACTIONS(4846), - [anon_sym_override] = ACTIONS(4846), - [anon_sym_DASH_GT_STAR] = ACTIONS(4846), - }, - [2420] = { - [sym_catch_clause] = STATE(2420), - [aux_sym_constructor_try_statement_repeat1] = STATE(2420), - [sym_identifier] = ACTIONS(2230), - [aux_sym_preproc_def_token1] = ACTIONS(2230), - [aux_sym_preproc_if_token1] = ACTIONS(2230), - [aux_sym_preproc_if_token2] = ACTIONS(2230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2230), - [aux_sym_preproc_else_token1] = ACTIONS(2230), - [aux_sym_preproc_elif_token1] = ACTIONS(2230), - [sym_preproc_directive] = ACTIONS(2230), - [anon_sym_LPAREN2] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_AMP_AMP] = ACTIONS(2232), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym___extension__] = ACTIONS(2230), - [anon_sym_typedef] = ACTIONS(2230), - [anon_sym_extern] = ACTIONS(2230), - [anon_sym___attribute__] = ACTIONS(2230), - [anon_sym_COLON_COLON] = ACTIONS(2232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2232), - [anon_sym___declspec] = ACTIONS(2230), - [anon_sym___based] = ACTIONS(2230), - [anon_sym_signed] = ACTIONS(2230), - [anon_sym_unsigned] = ACTIONS(2230), - [anon_sym_long] = ACTIONS(2230), - [anon_sym_short] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_register] = ACTIONS(2230), - [anon_sym_inline] = ACTIONS(2230), - [anon_sym___inline] = ACTIONS(2230), - [anon_sym___inline__] = ACTIONS(2230), - [anon_sym___forceinline] = ACTIONS(2230), - [anon_sym_thread_local] = ACTIONS(2230), - [anon_sym___thread] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_constexpr] = ACTIONS(2230), - [anon_sym_volatile] = ACTIONS(2230), - [anon_sym_restrict] = ACTIONS(2230), - [anon_sym___restrict__] = ACTIONS(2230), - [anon_sym__Atomic] = ACTIONS(2230), - [anon_sym__Noreturn] = ACTIONS(2230), - [anon_sym_noreturn] = ACTIONS(2230), - [anon_sym_mutable] = ACTIONS(2230), - [anon_sym_constinit] = ACTIONS(2230), - [anon_sym_consteval] = ACTIONS(2230), - [sym_primitive_type] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [anon_sym_class] = ACTIONS(2230), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_union] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2230), - [anon_sym_decltype] = ACTIONS(2230), - [anon_sym_virtual] = ACTIONS(2230), - [anon_sym_alignas] = ACTIONS(2230), - [anon_sym_explicit] = ACTIONS(2230), - [anon_sym_typename] = ACTIONS(2230), - [anon_sym_template] = ACTIONS(2230), - [anon_sym_operator] = ACTIONS(2230), - [anon_sym_friend] = ACTIONS(2230), - [anon_sym_public] = ACTIONS(2230), - [anon_sym_private] = ACTIONS(2230), - [anon_sym_protected] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2230), - [anon_sym_static_assert] = ACTIONS(2230), - [anon_sym_catch] = ACTIONS(5154), - }, - [2421] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4886), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_LPAREN2] = ACTIONS(4886), - [anon_sym_DASH] = ACTIONS(4884), - [anon_sym_PLUS] = ACTIONS(4884), - [anon_sym_STAR] = ACTIONS(4884), - [anon_sym_SLASH] = ACTIONS(4884), - [anon_sym_PERCENT] = ACTIONS(4884), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4884), - [anon_sym_CARET] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4884), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4884), - [anon_sym_GT_EQ] = ACTIONS(4886), - [anon_sym_LT_EQ] = ACTIONS(4884), - [anon_sym_LT] = ACTIONS(4884), - [anon_sym_LT_LT] = ACTIONS(4884), - [anon_sym_GT_GT] = ACTIONS(4884), - [anon_sym___extension__] = ACTIONS(4886), - [anon_sym___attribute__] = ACTIONS(4886), - [anon_sym_COLON_COLON] = ACTIONS(4886), - [anon_sym_LBRACE] = ACTIONS(4886), - [anon_sym_LBRACK] = ACTIONS(4886), - [anon_sym_EQ] = ACTIONS(4884), - [anon_sym_const] = ACTIONS(4884), - [anon_sym_constexpr] = ACTIONS(4886), - [anon_sym_volatile] = ACTIONS(4886), - [anon_sym_restrict] = ACTIONS(4886), - [anon_sym___restrict__] = ACTIONS(4886), - [anon_sym__Atomic] = ACTIONS(4886), - [anon_sym__Noreturn] = ACTIONS(4886), - [anon_sym_noreturn] = ACTIONS(4886), - [anon_sym_mutable] = ACTIONS(4886), - [anon_sym_constinit] = ACTIONS(4886), - [anon_sym_consteval] = ACTIONS(4886), - [anon_sym_COLON] = ACTIONS(4884), - [anon_sym_QMARK] = ACTIONS(4886), - [anon_sym_STAR_EQ] = ACTIONS(4886), - [anon_sym_SLASH_EQ] = ACTIONS(4886), - [anon_sym_PERCENT_EQ] = ACTIONS(4886), - [anon_sym_PLUS_EQ] = ACTIONS(4886), - [anon_sym_DASH_EQ] = ACTIONS(4886), - [anon_sym_LT_LT_EQ] = ACTIONS(4886), - [anon_sym_GT_GT_EQ] = ACTIONS(4886), - [anon_sym_AMP_EQ] = ACTIONS(4886), - [anon_sym_CARET_EQ] = ACTIONS(4886), - [anon_sym_PIPE_EQ] = ACTIONS(4886), - [anon_sym_LT_EQ_GT] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4886), - [anon_sym_and] = ACTIONS(4886), - [anon_sym_bitor] = ACTIONS(4886), - [anon_sym_xor] = ACTIONS(4886), - [anon_sym_bitand] = ACTIONS(4886), - [anon_sym_not_eq] = ACTIONS(4886), - [anon_sym_DASH_DASH] = ACTIONS(4886), - [anon_sym_PLUS_PLUS] = ACTIONS(4886), - [anon_sym_DOT] = ACTIONS(4884), - [anon_sym_DOT_STAR] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4884), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4886), - [anon_sym_decltype] = ACTIONS(4886), - [anon_sym_final] = ACTIONS(4886), - [anon_sym_override] = ACTIONS(4886), - [anon_sym_DASH_GT_STAR] = ACTIONS(4886), - }, - [2422] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_RPAREN] = ACTIONS(4854), - [anon_sym_LPAREN2] = ACTIONS(4854), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4852), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE] = ACTIONS(4852), - [anon_sym_CARET] = ACTIONS(4852), - [anon_sym_AMP] = ACTIONS(4852), - [anon_sym_EQ_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4854), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4852), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_LT_LT] = ACTIONS(4852), - [anon_sym_GT_GT] = ACTIONS(4852), - [anon_sym___extension__] = ACTIONS(4854), - [anon_sym___attribute__] = ACTIONS(4854), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_const] = ACTIONS(4852), - [anon_sym_constexpr] = ACTIONS(4854), - [anon_sym_volatile] = ACTIONS(4854), - [anon_sym_restrict] = ACTIONS(4854), - [anon_sym___restrict__] = ACTIONS(4854), - [anon_sym__Atomic] = ACTIONS(4854), - [anon_sym__Noreturn] = ACTIONS(4854), - [anon_sym_noreturn] = ACTIONS(4854), - [anon_sym_mutable] = ACTIONS(4854), - [anon_sym_constinit] = ACTIONS(4854), - [anon_sym_consteval] = ACTIONS(4854), - [anon_sym_COLON] = ACTIONS(4852), - [anon_sym_QMARK] = ACTIONS(4854), - [anon_sym_STAR_EQ] = ACTIONS(4854), - [anon_sym_SLASH_EQ] = ACTIONS(4854), - [anon_sym_PERCENT_EQ] = ACTIONS(4854), - [anon_sym_PLUS_EQ] = ACTIONS(4854), - [anon_sym_DASH_EQ] = ACTIONS(4854), - [anon_sym_LT_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_GT_EQ] = ACTIONS(4854), - [anon_sym_AMP_EQ] = ACTIONS(4854), - [anon_sym_CARET_EQ] = ACTIONS(4854), - [anon_sym_PIPE_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ_GT] = ACTIONS(4854), - [anon_sym_or] = ACTIONS(4854), - [anon_sym_and] = ACTIONS(4854), - [anon_sym_bitor] = ACTIONS(4854), - [anon_sym_xor] = ACTIONS(4854), - [anon_sym_bitand] = ACTIONS(4854), - [anon_sym_not_eq] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_DOT_STAR] = ACTIONS(4854), - [anon_sym_DASH_GT] = ACTIONS(4852), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4854), - [anon_sym_decltype] = ACTIONS(4854), - [anon_sym_final] = ACTIONS(4854), - [anon_sym_override] = ACTIONS(4854), - [anon_sym_DASH_GT_STAR] = ACTIONS(4854), - }, - [2423] = { - [sym_catch_clause] = STATE(2420), - [aux_sym_constructor_try_statement_repeat1] = STATE(2420), - [sym_identifier] = ACTIONS(2224), - [aux_sym_preproc_def_token1] = ACTIONS(2224), - [aux_sym_preproc_if_token1] = ACTIONS(2224), - [aux_sym_preproc_if_token2] = ACTIONS(2224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2224), - [aux_sym_preproc_else_token1] = ACTIONS(2224), - [aux_sym_preproc_elif_token1] = ACTIONS(2224), - [sym_preproc_directive] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_AMP_AMP] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym___extension__] = ACTIONS(2224), - [anon_sym_typedef] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym___attribute__] = ACTIONS(2224), - [anon_sym_COLON_COLON] = ACTIONS(2226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2226), - [anon_sym___declspec] = ACTIONS(2224), - [anon_sym___based] = ACTIONS(2224), - [anon_sym_signed] = ACTIONS(2224), - [anon_sym_unsigned] = ACTIONS(2224), - [anon_sym_long] = ACTIONS(2224), - [anon_sym_short] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2224), - [anon_sym_register] = ACTIONS(2224), - [anon_sym_inline] = ACTIONS(2224), - [anon_sym___inline] = ACTIONS(2224), - [anon_sym___inline__] = ACTIONS(2224), - [anon_sym___forceinline] = ACTIONS(2224), - [anon_sym_thread_local] = ACTIONS(2224), - [anon_sym___thread] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [anon_sym_constexpr] = ACTIONS(2224), - [anon_sym_volatile] = ACTIONS(2224), - [anon_sym_restrict] = ACTIONS(2224), - [anon_sym___restrict__] = ACTIONS(2224), - [anon_sym__Atomic] = ACTIONS(2224), - [anon_sym__Noreturn] = ACTIONS(2224), - [anon_sym_noreturn] = ACTIONS(2224), - [anon_sym_mutable] = ACTIONS(2224), - [anon_sym_constinit] = ACTIONS(2224), - [anon_sym_consteval] = ACTIONS(2224), - [sym_primitive_type] = ACTIONS(2224), - [anon_sym_enum] = ACTIONS(2224), - [anon_sym_class] = ACTIONS(2224), - [anon_sym_struct] = ACTIONS(2224), - [anon_sym_union] = ACTIONS(2224), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2224), - [anon_sym_decltype] = ACTIONS(2224), - [anon_sym_virtual] = ACTIONS(2224), - [anon_sym_alignas] = ACTIONS(2224), - [anon_sym_explicit] = ACTIONS(2224), - [anon_sym_typename] = ACTIONS(2224), - [anon_sym_template] = ACTIONS(2224), - [anon_sym_operator] = ACTIONS(2224), - [anon_sym_friend] = ACTIONS(2224), - [anon_sym_public] = ACTIONS(2224), - [anon_sym_private] = ACTIONS(2224), - [anon_sym_protected] = ACTIONS(2224), - [anon_sym_using] = ACTIONS(2224), - [anon_sym_static_assert] = ACTIONS(2224), - [anon_sym_catch] = ACTIONS(5152), - }, - [2424] = { - [sym_catch_clause] = STATE(2420), - [aux_sym_constructor_try_statement_repeat1] = STATE(2420), - [sym_identifier] = ACTIONS(2563), - [aux_sym_preproc_def_token1] = ACTIONS(2563), - [aux_sym_preproc_if_token1] = ACTIONS(2563), - [aux_sym_preproc_if_token2] = ACTIONS(2563), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2563), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2563), - [aux_sym_preproc_else_token1] = ACTIONS(2563), - [aux_sym_preproc_elif_token1] = ACTIONS(2563), - [sym_preproc_directive] = ACTIONS(2563), - [anon_sym_LPAREN2] = ACTIONS(2565), - [anon_sym_TILDE] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2565), - [anon_sym_AMP_AMP] = ACTIONS(2565), - [anon_sym_AMP] = ACTIONS(2563), - [anon_sym___extension__] = ACTIONS(2563), - [anon_sym_typedef] = ACTIONS(2563), - [anon_sym_extern] = ACTIONS(2563), - [anon_sym___attribute__] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2565), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), - [anon_sym___declspec] = ACTIONS(2563), - [anon_sym___based] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2563), - [anon_sym_unsigned] = ACTIONS(2563), - [anon_sym_long] = ACTIONS(2563), - [anon_sym_short] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(2563), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2563), - [anon_sym_inline] = ACTIONS(2563), - [anon_sym___inline] = ACTIONS(2563), - [anon_sym___inline__] = ACTIONS(2563), - [anon_sym___forceinline] = ACTIONS(2563), - [anon_sym_thread_local] = ACTIONS(2563), - [anon_sym___thread] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_constexpr] = ACTIONS(2563), - [anon_sym_volatile] = ACTIONS(2563), - [anon_sym_restrict] = ACTIONS(2563), - [anon_sym___restrict__] = ACTIONS(2563), - [anon_sym__Atomic] = ACTIONS(2563), - [anon_sym__Noreturn] = ACTIONS(2563), - [anon_sym_noreturn] = ACTIONS(2563), - [anon_sym_mutable] = ACTIONS(2563), - [anon_sym_constinit] = ACTIONS(2563), - [anon_sym_consteval] = ACTIONS(2563), - [sym_primitive_type] = ACTIONS(2563), - [anon_sym_enum] = ACTIONS(2563), - [anon_sym_class] = ACTIONS(2563), - [anon_sym_struct] = ACTIONS(2563), - [anon_sym_union] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2563), - [anon_sym_decltype] = ACTIONS(2563), - [anon_sym_virtual] = ACTIONS(2563), - [anon_sym_alignas] = ACTIONS(2563), - [anon_sym_explicit] = ACTIONS(2563), - [anon_sym_typename] = ACTIONS(2563), - [anon_sym_template] = ACTIONS(2563), - [anon_sym_operator] = ACTIONS(2563), - [anon_sym_friend] = ACTIONS(2563), - [anon_sym_public] = ACTIONS(2563), - [anon_sym_private] = ACTIONS(2563), - [anon_sym_protected] = ACTIONS(2563), - [anon_sym_using] = ACTIONS(2563), - [anon_sym_static_assert] = ACTIONS(2563), - [anon_sym_catch] = ACTIONS(5152), - }, - [2425] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4890), - [anon_sym_COMMA] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4890), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_STAR] = ACTIONS(4888), - [anon_sym_SLASH] = ACTIONS(4888), - [anon_sym_PERCENT] = ACTIONS(4888), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4888), - [anon_sym_CARET] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4888), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4890), - [anon_sym_LT_EQ] = ACTIONS(4888), - [anon_sym_LT] = ACTIONS(4888), - [anon_sym_LT_LT] = ACTIONS(4888), - [anon_sym_GT_GT] = ACTIONS(4888), - [anon_sym___extension__] = ACTIONS(4890), - [anon_sym___attribute__] = ACTIONS(4890), - [anon_sym_COLON_COLON] = ACTIONS(4890), - [anon_sym_LBRACE] = ACTIONS(4890), - [anon_sym_LBRACK] = ACTIONS(4890), - [anon_sym_EQ] = ACTIONS(4888), - [anon_sym_const] = ACTIONS(4888), - [anon_sym_constexpr] = ACTIONS(4890), - [anon_sym_volatile] = ACTIONS(4890), - [anon_sym_restrict] = ACTIONS(4890), - [anon_sym___restrict__] = ACTIONS(4890), - [anon_sym__Atomic] = ACTIONS(4890), - [anon_sym__Noreturn] = ACTIONS(4890), - [anon_sym_noreturn] = ACTIONS(4890), - [anon_sym_mutable] = ACTIONS(4890), - [anon_sym_constinit] = ACTIONS(4890), - [anon_sym_consteval] = ACTIONS(4890), - [anon_sym_COLON] = ACTIONS(4888), - [anon_sym_QMARK] = ACTIONS(4890), - [anon_sym_STAR_EQ] = ACTIONS(4890), - [anon_sym_SLASH_EQ] = ACTIONS(4890), - [anon_sym_PERCENT_EQ] = ACTIONS(4890), - [anon_sym_PLUS_EQ] = ACTIONS(4890), - [anon_sym_DASH_EQ] = ACTIONS(4890), - [anon_sym_LT_LT_EQ] = ACTIONS(4890), - [anon_sym_GT_GT_EQ] = ACTIONS(4890), - [anon_sym_AMP_EQ] = ACTIONS(4890), - [anon_sym_CARET_EQ] = ACTIONS(4890), - [anon_sym_PIPE_EQ] = ACTIONS(4890), - [anon_sym_LT_EQ_GT] = ACTIONS(4890), - [anon_sym_or] = ACTIONS(4890), - [anon_sym_and] = ACTIONS(4890), - [anon_sym_bitor] = ACTIONS(4890), - [anon_sym_xor] = ACTIONS(4890), - [anon_sym_bitand] = ACTIONS(4890), - [anon_sym_not_eq] = ACTIONS(4890), - [anon_sym_DASH_DASH] = ACTIONS(4890), - [anon_sym_PLUS_PLUS] = ACTIONS(4890), - [anon_sym_DOT] = ACTIONS(4888), - [anon_sym_DOT_STAR] = ACTIONS(4890), - [anon_sym_DASH_GT] = ACTIONS(4888), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4890), - [anon_sym_decltype] = ACTIONS(4890), - [anon_sym_final] = ACTIONS(4890), - [anon_sym_override] = ACTIONS(4890), - [anon_sym_DASH_GT_STAR] = ACTIONS(4890), - }, - [2426] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4879), - [anon_sym_COMMA] = ACTIONS(4879), - [anon_sym_RPAREN] = ACTIONS(4879), - [anon_sym_LPAREN2] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4877), - [anon_sym_PLUS] = ACTIONS(4877), - [anon_sym_STAR] = ACTIONS(4877), - [anon_sym_SLASH] = ACTIONS(4877), - [anon_sym_PERCENT] = ACTIONS(4877), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4877), - [anon_sym_CARET] = ACTIONS(4877), - [anon_sym_AMP] = ACTIONS(4877), - [anon_sym_EQ_EQ] = ACTIONS(4879), - [anon_sym_BANG_EQ] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4877), - [anon_sym_GT_EQ] = ACTIONS(4879), - [anon_sym_LT_EQ] = ACTIONS(4877), - [anon_sym_LT] = ACTIONS(4877), - [anon_sym_LT_LT] = ACTIONS(4877), - [anon_sym_GT_GT] = ACTIONS(4877), - [anon_sym___extension__] = ACTIONS(4879), - [anon_sym___attribute__] = ACTIONS(4879), - [anon_sym_COLON_COLON] = ACTIONS(4879), - [anon_sym_LBRACE] = ACTIONS(4879), - [anon_sym_LBRACK] = ACTIONS(4879), - [anon_sym_EQ] = ACTIONS(4877), - [anon_sym_const] = ACTIONS(4877), - [anon_sym_constexpr] = ACTIONS(4879), - [anon_sym_volatile] = ACTIONS(4879), - [anon_sym_restrict] = ACTIONS(4879), - [anon_sym___restrict__] = ACTIONS(4879), - [anon_sym__Atomic] = ACTIONS(4879), - [anon_sym__Noreturn] = ACTIONS(4879), - [anon_sym_noreturn] = ACTIONS(4879), - [anon_sym_mutable] = ACTIONS(4879), - [anon_sym_constinit] = ACTIONS(4879), - [anon_sym_consteval] = ACTIONS(4879), - [anon_sym_COLON] = ACTIONS(4877), - [anon_sym_QMARK] = ACTIONS(4879), - [anon_sym_STAR_EQ] = ACTIONS(4879), - [anon_sym_SLASH_EQ] = ACTIONS(4879), - [anon_sym_PERCENT_EQ] = ACTIONS(4879), - [anon_sym_PLUS_EQ] = ACTIONS(4879), - [anon_sym_DASH_EQ] = ACTIONS(4879), - [anon_sym_LT_LT_EQ] = ACTIONS(4879), - [anon_sym_GT_GT_EQ] = ACTIONS(4879), - [anon_sym_AMP_EQ] = ACTIONS(4879), - [anon_sym_CARET_EQ] = ACTIONS(4879), - [anon_sym_PIPE_EQ] = ACTIONS(4879), - [anon_sym_LT_EQ_GT] = ACTIONS(4879), - [anon_sym_or] = ACTIONS(4879), - [anon_sym_and] = ACTIONS(4879), - [anon_sym_bitor] = ACTIONS(4879), - [anon_sym_xor] = ACTIONS(4879), - [anon_sym_bitand] = ACTIONS(4879), - [anon_sym_not_eq] = ACTIONS(4879), - [anon_sym_DASH_DASH] = ACTIONS(4879), - [anon_sym_PLUS_PLUS] = ACTIONS(4879), - [anon_sym_DOT] = ACTIONS(4877), - [anon_sym_DOT_STAR] = ACTIONS(4879), - [anon_sym_DASH_GT] = ACTIONS(4877), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4879), - [anon_sym_decltype] = ACTIONS(4879), - [anon_sym_final] = ACTIONS(4879), - [anon_sym_override] = ACTIONS(4879), - [anon_sym_DASH_GT_STAR] = ACTIONS(4879), - }, - [2427] = { - [sym_identifier] = ACTIONS(3396), - [aux_sym_preproc_def_token1] = ACTIONS(3396), - [aux_sym_preproc_if_token1] = ACTIONS(3396), - [aux_sym_preproc_if_token2] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3396), - [aux_sym_preproc_else_token1] = ACTIONS(3396), - [aux_sym_preproc_elif_token1] = ACTIONS(3396), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3396), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3396), - [sym_preproc_directive] = ACTIONS(3396), - [anon_sym_LPAREN2] = ACTIONS(3398), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3398), - [anon_sym_AMP_AMP] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym___extension__] = ACTIONS(3396), - [anon_sym_typedef] = ACTIONS(3396), - [anon_sym_extern] = ACTIONS(3396), - [anon_sym___attribute__] = ACTIONS(3396), - [anon_sym_COLON_COLON] = ACTIONS(3398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3398), - [anon_sym___declspec] = ACTIONS(3396), - [anon_sym___based] = ACTIONS(3396), - [anon_sym_signed] = ACTIONS(3396), - [anon_sym_unsigned] = ACTIONS(3396), - [anon_sym_long] = ACTIONS(3396), - [anon_sym_short] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_static] = ACTIONS(3396), - [anon_sym_register] = ACTIONS(3396), - [anon_sym_inline] = ACTIONS(3396), - [anon_sym___inline] = ACTIONS(3396), - [anon_sym___inline__] = ACTIONS(3396), - [anon_sym___forceinline] = ACTIONS(3396), - [anon_sym_thread_local] = ACTIONS(3396), - [anon_sym___thread] = ACTIONS(3396), - [anon_sym_const] = ACTIONS(3396), - [anon_sym_constexpr] = ACTIONS(3396), - [anon_sym_volatile] = ACTIONS(3396), - [anon_sym_restrict] = ACTIONS(3396), - [anon_sym___restrict__] = ACTIONS(3396), - [anon_sym__Atomic] = ACTIONS(3396), - [anon_sym__Noreturn] = ACTIONS(3396), - [anon_sym_noreturn] = ACTIONS(3396), - [anon_sym_mutable] = ACTIONS(3396), - [anon_sym_constinit] = ACTIONS(3396), - [anon_sym_consteval] = ACTIONS(3396), - [sym_primitive_type] = ACTIONS(3396), - [anon_sym_enum] = ACTIONS(3396), - [anon_sym_class] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(3396), - [anon_sym_union] = ACTIONS(3396), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3396), - [anon_sym_decltype] = ACTIONS(3396), - [anon_sym_virtual] = ACTIONS(3396), - [anon_sym_alignas] = ACTIONS(3396), - [anon_sym_explicit] = ACTIONS(3396), - [anon_sym_typename] = ACTIONS(3396), - [anon_sym_template] = ACTIONS(3396), - [anon_sym_operator] = ACTIONS(3396), - [anon_sym_friend] = ACTIONS(3396), - [anon_sym_public] = ACTIONS(3396), - [anon_sym_private] = ACTIONS(3396), - [anon_sym_protected] = ACTIONS(3396), - [anon_sym_using] = ACTIONS(3396), - [anon_sym_static_assert] = ACTIONS(3396), - }, - [2428] = { - [sym_identifier] = ACTIONS(2925), - [aux_sym_preproc_def_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token2] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2925), - [aux_sym_preproc_else_token1] = ACTIONS(2925), - [aux_sym_preproc_elif_token1] = ACTIONS(2925), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2925), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2925), - [sym_preproc_directive] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2925), - [anon_sym_typedef] = ACTIONS(2925), - [anon_sym_extern] = ACTIONS(2925), - [anon_sym___attribute__] = ACTIONS(2925), - [anon_sym_COLON_COLON] = ACTIONS(2927), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), - [anon_sym___declspec] = ACTIONS(2925), - [anon_sym___based] = ACTIONS(2925), - [anon_sym_signed] = ACTIONS(2925), - [anon_sym_unsigned] = ACTIONS(2925), - [anon_sym_long] = ACTIONS(2925), - [anon_sym_short] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_static] = ACTIONS(2925), - [anon_sym_register] = ACTIONS(2925), - [anon_sym_inline] = ACTIONS(2925), - [anon_sym___inline] = ACTIONS(2925), - [anon_sym___inline__] = ACTIONS(2925), - [anon_sym___forceinline] = ACTIONS(2925), - [anon_sym_thread_local] = ACTIONS(2925), - [anon_sym___thread] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(2925), - [anon_sym_constexpr] = ACTIONS(2925), - [anon_sym_volatile] = ACTIONS(2925), - [anon_sym_restrict] = ACTIONS(2925), - [anon_sym___restrict__] = ACTIONS(2925), - [anon_sym__Atomic] = ACTIONS(2925), - [anon_sym__Noreturn] = ACTIONS(2925), - [anon_sym_noreturn] = ACTIONS(2925), - [anon_sym_mutable] = ACTIONS(2925), - [anon_sym_constinit] = ACTIONS(2925), - [anon_sym_consteval] = ACTIONS(2925), - [sym_primitive_type] = ACTIONS(2925), - [anon_sym_enum] = ACTIONS(2925), - [anon_sym_class] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_union] = ACTIONS(2925), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2925), - [anon_sym_decltype] = ACTIONS(2925), - [anon_sym_virtual] = ACTIONS(2925), - [anon_sym_alignas] = ACTIONS(2925), - [anon_sym_explicit] = ACTIONS(2925), - [anon_sym_typename] = ACTIONS(2925), - [anon_sym_template] = ACTIONS(2925), - [anon_sym_operator] = ACTIONS(2925), - [anon_sym_friend] = ACTIONS(2925), - [anon_sym_public] = ACTIONS(2925), - [anon_sym_private] = ACTIONS(2925), - [anon_sym_protected] = ACTIONS(2925), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_static_assert] = ACTIONS(2925), - }, - [2429] = { - [sym_identifier] = ACTIONS(5157), - [aux_sym_preproc_def_token1] = ACTIONS(5157), - [aux_sym_preproc_if_token1] = ACTIONS(5157), - [aux_sym_preproc_if_token2] = ACTIONS(5157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5157), - [aux_sym_preproc_else_token1] = ACTIONS(5157), - [aux_sym_preproc_elif_token1] = ACTIONS(5157), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5157), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5157), - [sym_preproc_directive] = ACTIONS(5157), - [anon_sym_LPAREN2] = ACTIONS(5159), - [anon_sym_TILDE] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_AMP_AMP] = ACTIONS(5159), - [anon_sym_AMP] = ACTIONS(5157), - [anon_sym___extension__] = ACTIONS(5157), - [anon_sym_typedef] = ACTIONS(5157), - [anon_sym_extern] = ACTIONS(5157), - [anon_sym___attribute__] = ACTIONS(5157), - [anon_sym_COLON_COLON] = ACTIONS(5159), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5159), - [anon_sym___declspec] = ACTIONS(5157), - [anon_sym___based] = ACTIONS(5157), - [anon_sym_signed] = ACTIONS(5157), - [anon_sym_unsigned] = ACTIONS(5157), - [anon_sym_long] = ACTIONS(5157), - [anon_sym_short] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_static] = ACTIONS(5157), - [anon_sym_register] = ACTIONS(5157), - [anon_sym_inline] = ACTIONS(5157), - [anon_sym___inline] = ACTIONS(5157), - [anon_sym___inline__] = ACTIONS(5157), - [anon_sym___forceinline] = ACTIONS(5157), - [anon_sym_thread_local] = ACTIONS(5157), - [anon_sym___thread] = ACTIONS(5157), - [anon_sym_const] = ACTIONS(5157), - [anon_sym_constexpr] = ACTIONS(5157), - [anon_sym_volatile] = ACTIONS(5157), - [anon_sym_restrict] = ACTIONS(5157), - [anon_sym___restrict__] = ACTIONS(5157), - [anon_sym__Atomic] = ACTIONS(5157), - [anon_sym__Noreturn] = ACTIONS(5157), - [anon_sym_noreturn] = ACTIONS(5157), - [anon_sym_mutable] = ACTIONS(5157), - [anon_sym_constinit] = ACTIONS(5157), - [anon_sym_consteval] = ACTIONS(5157), - [sym_primitive_type] = ACTIONS(5157), - [anon_sym_enum] = ACTIONS(5157), - [anon_sym_class] = ACTIONS(5157), - [anon_sym_struct] = ACTIONS(5157), - [anon_sym_union] = ACTIONS(5157), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5157), - [anon_sym_decltype] = ACTIONS(5157), - [anon_sym_virtual] = ACTIONS(5157), - [anon_sym_alignas] = ACTIONS(5157), - [anon_sym_explicit] = ACTIONS(5157), - [anon_sym_typename] = ACTIONS(5157), - [anon_sym_template] = ACTIONS(5157), - [anon_sym_operator] = ACTIONS(5157), - [anon_sym_friend] = ACTIONS(5157), - [anon_sym_public] = ACTIONS(5157), - [anon_sym_private] = ACTIONS(5157), - [anon_sym_protected] = ACTIONS(5157), - [anon_sym_using] = ACTIONS(5157), - [anon_sym_static_assert] = ACTIONS(5157), - }, - [2430] = { - [sym_identifier] = ACTIONS(5161), - [aux_sym_preproc_def_token1] = ACTIONS(5161), - [aux_sym_preproc_if_token1] = ACTIONS(5161), - [aux_sym_preproc_if_token2] = ACTIONS(5161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5161), - [aux_sym_preproc_else_token1] = ACTIONS(5161), - [aux_sym_preproc_elif_token1] = ACTIONS(5161), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5161), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5161), - [sym_preproc_directive] = ACTIONS(5161), - [anon_sym_LPAREN2] = ACTIONS(5163), - [anon_sym_TILDE] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_AMP_AMP] = ACTIONS(5163), - [anon_sym_AMP] = ACTIONS(5161), - [anon_sym___extension__] = ACTIONS(5161), - [anon_sym_typedef] = ACTIONS(5161), - [anon_sym_extern] = ACTIONS(5161), - [anon_sym___attribute__] = ACTIONS(5161), - [anon_sym_COLON_COLON] = ACTIONS(5163), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5163), - [anon_sym___declspec] = ACTIONS(5161), - [anon_sym___based] = ACTIONS(5161), - [anon_sym_signed] = ACTIONS(5161), - [anon_sym_unsigned] = ACTIONS(5161), - [anon_sym_long] = ACTIONS(5161), - [anon_sym_short] = ACTIONS(5161), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_static] = ACTIONS(5161), - [anon_sym_register] = ACTIONS(5161), - [anon_sym_inline] = ACTIONS(5161), - [anon_sym___inline] = ACTIONS(5161), - [anon_sym___inline__] = ACTIONS(5161), - [anon_sym___forceinline] = ACTIONS(5161), - [anon_sym_thread_local] = ACTIONS(5161), - [anon_sym___thread] = ACTIONS(5161), - [anon_sym_const] = ACTIONS(5161), - [anon_sym_constexpr] = ACTIONS(5161), - [anon_sym_volatile] = ACTIONS(5161), - [anon_sym_restrict] = ACTIONS(5161), - [anon_sym___restrict__] = ACTIONS(5161), - [anon_sym__Atomic] = ACTIONS(5161), - [anon_sym__Noreturn] = ACTIONS(5161), - [anon_sym_noreturn] = ACTIONS(5161), - [anon_sym_mutable] = ACTIONS(5161), - [anon_sym_constinit] = ACTIONS(5161), - [anon_sym_consteval] = ACTIONS(5161), - [sym_primitive_type] = ACTIONS(5161), - [anon_sym_enum] = ACTIONS(5161), - [anon_sym_class] = ACTIONS(5161), - [anon_sym_struct] = ACTIONS(5161), - [anon_sym_union] = ACTIONS(5161), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5161), - [anon_sym_decltype] = ACTIONS(5161), - [anon_sym_virtual] = ACTIONS(5161), - [anon_sym_alignas] = ACTIONS(5161), - [anon_sym_explicit] = ACTIONS(5161), - [anon_sym_typename] = ACTIONS(5161), - [anon_sym_template] = ACTIONS(5161), - [anon_sym_operator] = ACTIONS(5161), - [anon_sym_friend] = ACTIONS(5161), - [anon_sym_public] = ACTIONS(5161), - [anon_sym_private] = ACTIONS(5161), - [anon_sym_protected] = ACTIONS(5161), - [anon_sym_using] = ACTIONS(5161), - [anon_sym_static_assert] = ACTIONS(5161), - }, - [2431] = { - [sym_identifier] = ACTIONS(5161), - [aux_sym_preproc_def_token1] = ACTIONS(5161), - [aux_sym_preproc_if_token1] = ACTIONS(5161), - [aux_sym_preproc_if_token2] = ACTIONS(5161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5161), - [aux_sym_preproc_else_token1] = ACTIONS(5161), - [aux_sym_preproc_elif_token1] = ACTIONS(5161), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5161), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5161), - [sym_preproc_directive] = ACTIONS(5161), - [anon_sym_LPAREN2] = ACTIONS(5163), - [anon_sym_TILDE] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_AMP_AMP] = ACTIONS(5163), - [anon_sym_AMP] = ACTIONS(5161), - [anon_sym___extension__] = ACTIONS(5161), - [anon_sym_typedef] = ACTIONS(5161), - [anon_sym_extern] = ACTIONS(5161), - [anon_sym___attribute__] = ACTIONS(5161), - [anon_sym_COLON_COLON] = ACTIONS(5163), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5163), - [anon_sym___declspec] = ACTIONS(5161), - [anon_sym___based] = ACTIONS(5161), - [anon_sym_signed] = ACTIONS(5161), - [anon_sym_unsigned] = ACTIONS(5161), - [anon_sym_long] = ACTIONS(5161), - [anon_sym_short] = ACTIONS(5161), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_static] = ACTIONS(5161), - [anon_sym_register] = ACTIONS(5161), - [anon_sym_inline] = ACTIONS(5161), - [anon_sym___inline] = ACTIONS(5161), - [anon_sym___inline__] = ACTIONS(5161), - [anon_sym___forceinline] = ACTIONS(5161), - [anon_sym_thread_local] = ACTIONS(5161), - [anon_sym___thread] = ACTIONS(5161), - [anon_sym_const] = ACTIONS(5161), - [anon_sym_constexpr] = ACTIONS(5161), - [anon_sym_volatile] = ACTIONS(5161), - [anon_sym_restrict] = ACTIONS(5161), - [anon_sym___restrict__] = ACTIONS(5161), - [anon_sym__Atomic] = ACTIONS(5161), - [anon_sym__Noreturn] = ACTIONS(5161), - [anon_sym_noreturn] = ACTIONS(5161), - [anon_sym_mutable] = ACTIONS(5161), - [anon_sym_constinit] = ACTIONS(5161), - [anon_sym_consteval] = ACTIONS(5161), - [sym_primitive_type] = ACTIONS(5161), - [anon_sym_enum] = ACTIONS(5161), - [anon_sym_class] = ACTIONS(5161), - [anon_sym_struct] = ACTIONS(5161), - [anon_sym_union] = ACTIONS(5161), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5161), - [anon_sym_decltype] = ACTIONS(5161), - [anon_sym_virtual] = ACTIONS(5161), - [anon_sym_alignas] = ACTIONS(5161), - [anon_sym_explicit] = ACTIONS(5161), - [anon_sym_typename] = ACTIONS(5161), - [anon_sym_template] = ACTIONS(5161), - [anon_sym_operator] = ACTIONS(5161), - [anon_sym_friend] = ACTIONS(5161), - [anon_sym_public] = ACTIONS(5161), - [anon_sym_private] = ACTIONS(5161), - [anon_sym_protected] = ACTIONS(5161), - [anon_sym_using] = ACTIONS(5161), - [anon_sym_static_assert] = ACTIONS(5161), - }, - [2432] = { - [sym_identifier] = ACTIONS(5165), - [aux_sym_preproc_def_token1] = ACTIONS(5165), - [aux_sym_preproc_if_token1] = ACTIONS(5165), - [aux_sym_preproc_if_token2] = ACTIONS(5165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5165), - [aux_sym_preproc_else_token1] = ACTIONS(5165), - [aux_sym_preproc_elif_token1] = ACTIONS(5165), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5165), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5165), - [sym_preproc_directive] = ACTIONS(5165), - [anon_sym_LPAREN2] = ACTIONS(5167), - [anon_sym_TILDE] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_AMP_AMP] = ACTIONS(5167), - [anon_sym_AMP] = ACTIONS(5165), - [anon_sym___extension__] = ACTIONS(5165), - [anon_sym_typedef] = ACTIONS(5165), - [anon_sym_extern] = ACTIONS(5165), - [anon_sym___attribute__] = ACTIONS(5165), - [anon_sym_COLON_COLON] = ACTIONS(5167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5167), - [anon_sym___declspec] = ACTIONS(5165), - [anon_sym___based] = ACTIONS(5165), - [anon_sym_signed] = ACTIONS(5165), - [anon_sym_unsigned] = ACTIONS(5165), - [anon_sym_long] = ACTIONS(5165), - [anon_sym_short] = ACTIONS(5165), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_static] = ACTIONS(5165), - [anon_sym_register] = ACTIONS(5165), - [anon_sym_inline] = ACTIONS(5165), - [anon_sym___inline] = ACTIONS(5165), - [anon_sym___inline__] = ACTIONS(5165), - [anon_sym___forceinline] = ACTIONS(5165), - [anon_sym_thread_local] = ACTIONS(5165), - [anon_sym___thread] = ACTIONS(5165), - [anon_sym_const] = ACTIONS(5165), - [anon_sym_constexpr] = ACTIONS(5165), - [anon_sym_volatile] = ACTIONS(5165), - [anon_sym_restrict] = ACTIONS(5165), - [anon_sym___restrict__] = ACTIONS(5165), - [anon_sym__Atomic] = ACTIONS(5165), - [anon_sym__Noreturn] = ACTIONS(5165), - [anon_sym_noreturn] = ACTIONS(5165), - [anon_sym_mutable] = ACTIONS(5165), - [anon_sym_constinit] = ACTIONS(5165), - [anon_sym_consteval] = ACTIONS(5165), - [sym_primitive_type] = ACTIONS(5165), - [anon_sym_enum] = ACTIONS(5165), - [anon_sym_class] = ACTIONS(5165), - [anon_sym_struct] = ACTIONS(5165), - [anon_sym_union] = ACTIONS(5165), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5165), - [anon_sym_decltype] = ACTIONS(5165), - [anon_sym_virtual] = ACTIONS(5165), - [anon_sym_alignas] = ACTIONS(5165), - [anon_sym_explicit] = ACTIONS(5165), - [anon_sym_typename] = ACTIONS(5165), - [anon_sym_template] = ACTIONS(5165), - [anon_sym_operator] = ACTIONS(5165), - [anon_sym_friend] = ACTIONS(5165), - [anon_sym_public] = ACTIONS(5165), - [anon_sym_private] = ACTIONS(5165), - [anon_sym_protected] = ACTIONS(5165), - [anon_sym_using] = ACTIONS(5165), - [anon_sym_static_assert] = ACTIONS(5165), - }, - [2433] = { - [sym_identifier] = ACTIONS(5169), - [aux_sym_preproc_def_token1] = ACTIONS(5169), - [aux_sym_preproc_if_token1] = ACTIONS(5169), - [aux_sym_preproc_if_token2] = ACTIONS(5169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5169), - [aux_sym_preproc_else_token1] = ACTIONS(5169), - [aux_sym_preproc_elif_token1] = ACTIONS(5169), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5169), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5169), - [sym_preproc_directive] = ACTIONS(5169), - [anon_sym_LPAREN2] = ACTIONS(5171), - [anon_sym_TILDE] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_AMP_AMP] = ACTIONS(5171), - [anon_sym_AMP] = ACTIONS(5169), - [anon_sym___extension__] = ACTIONS(5169), - [anon_sym_typedef] = ACTIONS(5169), - [anon_sym_extern] = ACTIONS(5169), - [anon_sym___attribute__] = ACTIONS(5169), - [anon_sym_COLON_COLON] = ACTIONS(5171), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5171), - [anon_sym___declspec] = ACTIONS(5169), - [anon_sym___based] = ACTIONS(5169), - [anon_sym_signed] = ACTIONS(5169), - [anon_sym_unsigned] = ACTIONS(5169), - [anon_sym_long] = ACTIONS(5169), - [anon_sym_short] = ACTIONS(5169), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_static] = ACTIONS(5169), - [anon_sym_register] = ACTIONS(5169), - [anon_sym_inline] = ACTIONS(5169), - [anon_sym___inline] = ACTIONS(5169), - [anon_sym___inline__] = ACTIONS(5169), - [anon_sym___forceinline] = ACTIONS(5169), - [anon_sym_thread_local] = ACTIONS(5169), - [anon_sym___thread] = ACTIONS(5169), - [anon_sym_const] = ACTIONS(5169), - [anon_sym_constexpr] = ACTIONS(5169), - [anon_sym_volatile] = ACTIONS(5169), - [anon_sym_restrict] = ACTIONS(5169), - [anon_sym___restrict__] = ACTIONS(5169), - [anon_sym__Atomic] = ACTIONS(5169), - [anon_sym__Noreturn] = ACTIONS(5169), - [anon_sym_noreturn] = ACTIONS(5169), - [anon_sym_mutable] = ACTIONS(5169), - [anon_sym_constinit] = ACTIONS(5169), - [anon_sym_consteval] = ACTIONS(5169), - [sym_primitive_type] = ACTIONS(5169), - [anon_sym_enum] = ACTIONS(5169), - [anon_sym_class] = ACTIONS(5169), - [anon_sym_struct] = ACTIONS(5169), - [anon_sym_union] = ACTIONS(5169), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5169), - [anon_sym_decltype] = ACTIONS(5169), - [anon_sym_virtual] = ACTIONS(5169), - [anon_sym_alignas] = ACTIONS(5169), - [anon_sym_explicit] = ACTIONS(5169), - [anon_sym_typename] = ACTIONS(5169), - [anon_sym_template] = ACTIONS(5169), - [anon_sym_operator] = ACTIONS(5169), - [anon_sym_friend] = ACTIONS(5169), - [anon_sym_public] = ACTIONS(5169), - [anon_sym_private] = ACTIONS(5169), - [anon_sym_protected] = ACTIONS(5169), - [anon_sym_using] = ACTIONS(5169), - [anon_sym_static_assert] = ACTIONS(5169), - }, - [2434] = { - [sym_identifier] = ACTIONS(5173), - [aux_sym_preproc_def_token1] = ACTIONS(5173), - [aux_sym_preproc_if_token1] = ACTIONS(5173), - [aux_sym_preproc_if_token2] = ACTIONS(5173), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5173), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5173), - [aux_sym_preproc_else_token1] = ACTIONS(5173), - [aux_sym_preproc_elif_token1] = ACTIONS(5173), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5173), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5173), - [sym_preproc_directive] = ACTIONS(5173), - [anon_sym_LPAREN2] = ACTIONS(5175), - [anon_sym_TILDE] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_AMP_AMP] = ACTIONS(5175), - [anon_sym_AMP] = ACTIONS(5173), - [anon_sym___extension__] = ACTIONS(5173), - [anon_sym_typedef] = ACTIONS(5173), - [anon_sym_extern] = ACTIONS(5173), - [anon_sym___attribute__] = ACTIONS(5173), - [anon_sym_COLON_COLON] = ACTIONS(5175), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5175), - [anon_sym___declspec] = ACTIONS(5173), - [anon_sym___based] = ACTIONS(5173), - [anon_sym_signed] = ACTIONS(5173), - [anon_sym_unsigned] = ACTIONS(5173), - [anon_sym_long] = ACTIONS(5173), - [anon_sym_short] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_static] = ACTIONS(5173), - [anon_sym_register] = ACTIONS(5173), - [anon_sym_inline] = ACTIONS(5173), - [anon_sym___inline] = ACTIONS(5173), - [anon_sym___inline__] = ACTIONS(5173), - [anon_sym___forceinline] = ACTIONS(5173), - [anon_sym_thread_local] = ACTIONS(5173), - [anon_sym___thread] = ACTIONS(5173), - [anon_sym_const] = ACTIONS(5173), - [anon_sym_constexpr] = ACTIONS(5173), - [anon_sym_volatile] = ACTIONS(5173), - [anon_sym_restrict] = ACTIONS(5173), - [anon_sym___restrict__] = ACTIONS(5173), - [anon_sym__Atomic] = ACTIONS(5173), - [anon_sym__Noreturn] = ACTIONS(5173), - [anon_sym_noreturn] = ACTIONS(5173), - [anon_sym_mutable] = ACTIONS(5173), - [anon_sym_constinit] = ACTIONS(5173), - [anon_sym_consteval] = ACTIONS(5173), - [sym_primitive_type] = ACTIONS(5173), - [anon_sym_enum] = ACTIONS(5173), - [anon_sym_class] = ACTIONS(5173), - [anon_sym_struct] = ACTIONS(5173), - [anon_sym_union] = ACTIONS(5173), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5173), - [anon_sym_decltype] = ACTIONS(5173), - [anon_sym_virtual] = ACTIONS(5173), - [anon_sym_alignas] = ACTIONS(5173), - [anon_sym_explicit] = ACTIONS(5173), - [anon_sym_typename] = ACTIONS(5173), - [anon_sym_template] = ACTIONS(5173), - [anon_sym_operator] = ACTIONS(5173), - [anon_sym_friend] = ACTIONS(5173), - [anon_sym_public] = ACTIONS(5173), - [anon_sym_private] = ACTIONS(5173), - [anon_sym_protected] = ACTIONS(5173), - [anon_sym_using] = ACTIONS(5173), - [anon_sym_static_assert] = ACTIONS(5173), - }, - [2435] = { - [sym_identifier] = ACTIONS(2985), - [aux_sym_preproc_def_token1] = ACTIONS(2985), - [aux_sym_preproc_if_token1] = ACTIONS(2985), - [aux_sym_preproc_if_token2] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2985), - [aux_sym_preproc_else_token1] = ACTIONS(2985), - [aux_sym_preproc_elif_token1] = ACTIONS(2985), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2985), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2985), - [sym_preproc_directive] = ACTIONS(2985), - [anon_sym_LPAREN2] = ACTIONS(2987), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym___extension__] = ACTIONS(2985), - [anon_sym_typedef] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym___attribute__] = ACTIONS(2985), - [anon_sym_COLON_COLON] = ACTIONS(2987), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), - [anon_sym___declspec] = ACTIONS(2985), - [anon_sym___based] = ACTIONS(2985), - [anon_sym_signed] = ACTIONS(2985), - [anon_sym_unsigned] = ACTIONS(2985), - [anon_sym_long] = ACTIONS(2985), - [anon_sym_short] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_register] = ACTIONS(2985), - [anon_sym_inline] = ACTIONS(2985), - [anon_sym___inline] = ACTIONS(2985), - [anon_sym___inline__] = ACTIONS(2985), - [anon_sym___forceinline] = ACTIONS(2985), - [anon_sym_thread_local] = ACTIONS(2985), - [anon_sym___thread] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_constexpr] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_restrict] = ACTIONS(2985), - [anon_sym___restrict__] = ACTIONS(2985), - [anon_sym__Atomic] = ACTIONS(2985), - [anon_sym__Noreturn] = ACTIONS(2985), - [anon_sym_noreturn] = ACTIONS(2985), - [anon_sym_mutable] = ACTIONS(2985), - [anon_sym_constinit] = ACTIONS(2985), - [anon_sym_consteval] = ACTIONS(2985), - [sym_primitive_type] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_class] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_union] = ACTIONS(2985), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2985), - [anon_sym_decltype] = ACTIONS(2985), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_alignas] = ACTIONS(2985), - [anon_sym_explicit] = ACTIONS(2985), - [anon_sym_typename] = ACTIONS(2985), - [anon_sym_template] = ACTIONS(2985), - [anon_sym_operator] = ACTIONS(2985), - [anon_sym_friend] = ACTIONS(2985), - [anon_sym_public] = ACTIONS(2985), - [anon_sym_private] = ACTIONS(2985), - [anon_sym_protected] = ACTIONS(2985), - [anon_sym_using] = ACTIONS(2985), - [anon_sym_static_assert] = ACTIONS(2985), - }, - [2436] = { - [sym_identifier] = ACTIONS(4877), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4879), - [anon_sym_COMMA] = ACTIONS(4879), - [anon_sym_RPAREN] = ACTIONS(4879), - [anon_sym_LPAREN2] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4877), - [anon_sym_PLUS] = ACTIONS(4877), - [anon_sym_STAR] = ACTIONS(4879), - [anon_sym_SLASH] = ACTIONS(4877), - [anon_sym_PERCENT] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4877), - [anon_sym_CARET] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4877), - [anon_sym_EQ_EQ] = ACTIONS(4879), - [anon_sym_BANG_EQ] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4877), - [anon_sym_GT_EQ] = ACTIONS(4879), - [anon_sym_LT_EQ] = ACTIONS(4877), - [anon_sym_LT] = ACTIONS(4877), - [anon_sym_LT_LT] = ACTIONS(4879), - [anon_sym_GT_GT] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym___extension__] = ACTIONS(4877), - [anon_sym___attribute__] = ACTIONS(4877), - [anon_sym_COLON_COLON] = ACTIONS(4879), - [anon_sym___based] = ACTIONS(4877), - [anon_sym_LBRACE] = ACTIONS(4879), - [anon_sym_RBRACE] = ACTIONS(4879), - [anon_sym_signed] = ACTIONS(4877), - [anon_sym_unsigned] = ACTIONS(4877), - [anon_sym_long] = ACTIONS(4877), - [anon_sym_short] = ACTIONS(4877), - [anon_sym_LBRACK] = ACTIONS(4879), - [anon_sym_RBRACK] = ACTIONS(4879), - [anon_sym_const] = ACTIONS(4877), - [anon_sym_constexpr] = ACTIONS(4877), - [anon_sym_volatile] = ACTIONS(4877), - [anon_sym_restrict] = ACTIONS(4877), - [anon_sym___restrict__] = ACTIONS(4877), - [anon_sym__Atomic] = ACTIONS(4877), - [anon_sym__Noreturn] = ACTIONS(4877), - [anon_sym_noreturn] = ACTIONS(4877), - [anon_sym_mutable] = ACTIONS(4877), - [anon_sym_constinit] = ACTIONS(4877), - [anon_sym_consteval] = ACTIONS(4877), - [sym_primitive_type] = ACTIONS(4877), - [anon_sym_COLON] = ACTIONS(4877), - [anon_sym_QMARK] = ACTIONS(4879), - [anon_sym_LT_EQ_GT] = ACTIONS(4879), - [anon_sym_or] = ACTIONS(4877), - [anon_sym_and] = ACTIONS(4877), - [anon_sym_bitor] = ACTIONS(4877), - [anon_sym_xor] = ACTIONS(4877), - [anon_sym_bitand] = ACTIONS(4877), - [anon_sym_not_eq] = ACTIONS(4877), - [anon_sym_DASH_DASH] = ACTIONS(4879), - [anon_sym_PLUS_PLUS] = ACTIONS(4879), - [anon_sym_DOT] = ACTIONS(4877), - [anon_sym_DOT_STAR] = ACTIONS(4879), - [anon_sym_DASH_GT] = ACTIONS(4879), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4877), - [anon_sym_decltype] = ACTIONS(4877), - [anon_sym_final] = ACTIONS(4877), - [anon_sym_override] = ACTIONS(4877), - [anon_sym_requires] = ACTIONS(4877), - }, - [2437] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(4762), - [sym_raw_string_literal] = STATE(3456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_RPAREN] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4312), - [anon_sym_or_eq] = ACTIONS(4312), - [anon_sym_xor_eq] = ACTIONS(4312), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [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), - }, - [2438] = { - [sym_identifier] = ACTIONS(4888), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4890), - [anon_sym_COMMA] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4890), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_STAR] = ACTIONS(4890), - [anon_sym_SLASH] = ACTIONS(4888), - [anon_sym_PERCENT] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4888), - [anon_sym_CARET] = ACTIONS(4890), - [anon_sym_AMP] = ACTIONS(4888), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4890), - [anon_sym_LT_EQ] = ACTIONS(4888), - [anon_sym_LT] = ACTIONS(4888), - [anon_sym_LT_LT] = ACTIONS(4890), - [anon_sym_GT_GT] = ACTIONS(4890), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym___extension__] = ACTIONS(4888), - [anon_sym___attribute__] = ACTIONS(4888), - [anon_sym_COLON_COLON] = ACTIONS(4890), - [anon_sym___based] = ACTIONS(4888), - [anon_sym_LBRACE] = ACTIONS(4890), - [anon_sym_RBRACE] = ACTIONS(4890), - [anon_sym_signed] = ACTIONS(4888), - [anon_sym_unsigned] = ACTIONS(4888), - [anon_sym_long] = ACTIONS(4888), - [anon_sym_short] = ACTIONS(4888), - [anon_sym_LBRACK] = ACTIONS(4890), - [anon_sym_RBRACK] = ACTIONS(4890), - [anon_sym_const] = ACTIONS(4888), - [anon_sym_constexpr] = ACTIONS(4888), - [anon_sym_volatile] = ACTIONS(4888), - [anon_sym_restrict] = ACTIONS(4888), - [anon_sym___restrict__] = ACTIONS(4888), - [anon_sym__Atomic] = ACTIONS(4888), - [anon_sym__Noreturn] = ACTIONS(4888), - [anon_sym_noreturn] = ACTIONS(4888), - [anon_sym_mutable] = ACTIONS(4888), - [anon_sym_constinit] = ACTIONS(4888), - [anon_sym_consteval] = ACTIONS(4888), - [sym_primitive_type] = ACTIONS(4888), - [anon_sym_COLON] = ACTIONS(4888), - [anon_sym_QMARK] = ACTIONS(4890), - [anon_sym_LT_EQ_GT] = ACTIONS(4890), - [anon_sym_or] = ACTIONS(4888), - [anon_sym_and] = ACTIONS(4888), - [anon_sym_bitor] = ACTIONS(4888), - [anon_sym_xor] = ACTIONS(4888), - [anon_sym_bitand] = ACTIONS(4888), - [anon_sym_not_eq] = ACTIONS(4888), - [anon_sym_DASH_DASH] = ACTIONS(4890), - [anon_sym_PLUS_PLUS] = ACTIONS(4890), - [anon_sym_DOT] = ACTIONS(4888), - [anon_sym_DOT_STAR] = ACTIONS(4890), - [anon_sym_DASH_GT] = ACTIONS(4890), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4888), - [anon_sym_decltype] = ACTIONS(4888), - [anon_sym_final] = ACTIONS(4888), - [anon_sym_override] = ACTIONS(4888), - [anon_sym_requires] = ACTIONS(4888), - }, - [2439] = { - [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___extension__] = ACTIONS(2981), - [anon_sym_typedef] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym___attribute__] = ACTIONS(2981), - [anon_sym_COLON_COLON] = ACTIONS(2983), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), - [anon_sym___declspec] = ACTIONS(2981), - [anon_sym___based] = ACTIONS(2981), - [anon_sym_signed] = ACTIONS(2981), - [anon_sym_unsigned] = ACTIONS(2981), - [anon_sym_long] = ACTIONS(2981), - [anon_sym_short] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_static] = ACTIONS(2981), - [anon_sym_register] = ACTIONS(2981), - [anon_sym_inline] = ACTIONS(2981), - [anon_sym___inline] = ACTIONS(2981), - [anon_sym___inline__] = ACTIONS(2981), - [anon_sym___forceinline] = ACTIONS(2981), - [anon_sym_thread_local] = ACTIONS(2981), - [anon_sym___thread] = ACTIONS(2981), - [anon_sym_const] = ACTIONS(2981), - [anon_sym_constexpr] = ACTIONS(2981), - [anon_sym_volatile] = ACTIONS(2981), - [anon_sym_restrict] = ACTIONS(2981), - [anon_sym___restrict__] = ACTIONS(2981), - [anon_sym__Atomic] = ACTIONS(2981), - [anon_sym__Noreturn] = ACTIONS(2981), - [anon_sym_noreturn] = ACTIONS(2981), - [anon_sym_mutable] = ACTIONS(2981), - [anon_sym_constinit] = ACTIONS(2981), - [anon_sym_consteval] = ACTIONS(2981), - [sym_primitive_type] = ACTIONS(2981), - [anon_sym_enum] = ACTIONS(2981), - [anon_sym_class] = ACTIONS(2981), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_union] = ACTIONS(2981), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2981), - [anon_sym_decltype] = ACTIONS(2981), - [anon_sym_virtual] = ACTIONS(2981), - [anon_sym_alignas] = ACTIONS(2981), - [anon_sym_explicit] = ACTIONS(2981), - [anon_sym_typename] = ACTIONS(2981), - [anon_sym_template] = ACTIONS(2981), - [anon_sym_operator] = ACTIONS(2981), - [anon_sym_friend] = ACTIONS(2981), - [anon_sym_public] = ACTIONS(2981), - [anon_sym_private] = ACTIONS(2981), - [anon_sym_protected] = ACTIONS(2981), - [anon_sym_using] = ACTIONS(2981), - [anon_sym_static_assert] = ACTIONS(2981), - }, - [2440] = { - [sym_identifier] = ACTIONS(3251), - [aux_sym_preproc_def_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token2] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3251), - [aux_sym_preproc_else_token1] = ACTIONS(3251), - [aux_sym_preproc_elif_token1] = ACTIONS(3251), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3251), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3251), - [sym_preproc_directive] = ACTIONS(3251), - [anon_sym_LPAREN2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_STAR] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym___extension__] = ACTIONS(3251), - [anon_sym_typedef] = ACTIONS(3251), - [anon_sym_extern] = ACTIONS(3251), - [anon_sym___attribute__] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(3253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3253), - [anon_sym___declspec] = ACTIONS(3251), - [anon_sym___based] = ACTIONS(3251), - [anon_sym_signed] = ACTIONS(3251), - [anon_sym_unsigned] = ACTIONS(3251), - [anon_sym_long] = ACTIONS(3251), - [anon_sym_short] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_register] = ACTIONS(3251), - [anon_sym_inline] = ACTIONS(3251), - [anon_sym___inline] = ACTIONS(3251), - [anon_sym___inline__] = ACTIONS(3251), - [anon_sym___forceinline] = ACTIONS(3251), - [anon_sym_thread_local] = ACTIONS(3251), - [anon_sym___thread] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_constexpr] = ACTIONS(3251), - [anon_sym_volatile] = ACTIONS(3251), - [anon_sym_restrict] = ACTIONS(3251), - [anon_sym___restrict__] = ACTIONS(3251), - [anon_sym__Atomic] = ACTIONS(3251), - [anon_sym__Noreturn] = ACTIONS(3251), - [anon_sym_noreturn] = ACTIONS(3251), - [anon_sym_mutable] = ACTIONS(3251), - [anon_sym_constinit] = ACTIONS(3251), - [anon_sym_consteval] = ACTIONS(3251), - [sym_primitive_type] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_union] = ACTIONS(3251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3251), - [anon_sym_decltype] = ACTIONS(3251), - [anon_sym_virtual] = ACTIONS(3251), - [anon_sym_alignas] = ACTIONS(3251), - [anon_sym_explicit] = ACTIONS(3251), - [anon_sym_typename] = ACTIONS(3251), - [anon_sym_template] = ACTIONS(3251), - [anon_sym_operator] = ACTIONS(3251), - [anon_sym_friend] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_protected] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_static_assert] = ACTIONS(3251), - }, - [2441] = { - [sym_identifier] = ACTIONS(3031), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token2] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3031), - [aux_sym_preproc_else_token1] = ACTIONS(3031), - [aux_sym_preproc_elif_token1] = ACTIONS(3031), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3031), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3031), - [sym_preproc_directive] = ACTIONS(3031), - [anon_sym_LPAREN2] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym___extension__] = ACTIONS(3031), - [anon_sym_typedef] = ACTIONS(3031), - [anon_sym_extern] = ACTIONS(3031), - [anon_sym___attribute__] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3033), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3033), - [anon_sym___declspec] = ACTIONS(3031), - [anon_sym___based] = ACTIONS(3031), - [anon_sym_signed] = ACTIONS(3031), - [anon_sym_unsigned] = ACTIONS(3031), - [anon_sym_long] = ACTIONS(3031), - [anon_sym_short] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_static] = ACTIONS(3031), - [anon_sym_register] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym___inline] = ACTIONS(3031), - [anon_sym___inline__] = ACTIONS(3031), - [anon_sym___forceinline] = ACTIONS(3031), - [anon_sym_thread_local] = ACTIONS(3031), - [anon_sym___thread] = ACTIONS(3031), - [anon_sym_const] = ACTIONS(3031), - [anon_sym_constexpr] = ACTIONS(3031), - [anon_sym_volatile] = ACTIONS(3031), - [anon_sym_restrict] = ACTIONS(3031), - [anon_sym___restrict__] = ACTIONS(3031), - [anon_sym__Atomic] = ACTIONS(3031), - [anon_sym__Noreturn] = ACTIONS(3031), - [anon_sym_noreturn] = ACTIONS(3031), - [anon_sym_mutable] = ACTIONS(3031), - [anon_sym_constinit] = ACTIONS(3031), - [anon_sym_consteval] = ACTIONS(3031), - [sym_primitive_type] = ACTIONS(3031), - [anon_sym_enum] = ACTIONS(3031), - [anon_sym_class] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_union] = ACTIONS(3031), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3031), - [anon_sym_decltype] = ACTIONS(3031), - [anon_sym_virtual] = ACTIONS(3031), - [anon_sym_alignas] = ACTIONS(3031), - [anon_sym_explicit] = ACTIONS(3031), - [anon_sym_typename] = ACTIONS(3031), - [anon_sym_template] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_friend] = ACTIONS(3031), - [anon_sym_public] = ACTIONS(3031), - [anon_sym_private] = ACTIONS(3031), - [anon_sym_protected] = ACTIONS(3031), - [anon_sym_using] = ACTIONS(3031), - [anon_sym_static_assert] = ACTIONS(3031), - }, - [2442] = { - [sym_identifier] = 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_TILDE] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym___extension__] = ACTIONS(3045), - [anon_sym_typedef] = ACTIONS(3045), - [anon_sym_extern] = ACTIONS(3045), - [anon_sym___attribute__] = 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_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_mutable] = ACTIONS(3045), - [anon_sym_constinit] = ACTIONS(3045), - [anon_sym_consteval] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3045), - [anon_sym_decltype] = ACTIONS(3045), - [anon_sym_virtual] = ACTIONS(3045), - [anon_sym_alignas] = ACTIONS(3045), - [anon_sym_explicit] = ACTIONS(3045), - [anon_sym_typename] = ACTIONS(3045), - [anon_sym_template] = ACTIONS(3045), - [anon_sym_operator] = ACTIONS(3045), - [anon_sym_friend] = ACTIONS(3045), - [anon_sym_public] = ACTIONS(3045), - [anon_sym_private] = ACTIONS(3045), - [anon_sym_protected] = ACTIONS(3045), - [anon_sym_using] = ACTIONS(3045), - [anon_sym_static_assert] = ACTIONS(3045), - }, - [2443] = { - [sym_identifier] = ACTIONS(3049), - [aux_sym_preproc_def_token1] = ACTIONS(3049), - [aux_sym_preproc_if_token1] = ACTIONS(3049), - [aux_sym_preproc_if_token2] = ACTIONS(3049), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3049), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3049), - [aux_sym_preproc_else_token1] = ACTIONS(3049), - [aux_sym_preproc_elif_token1] = ACTIONS(3049), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3049), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3049), - [sym_preproc_directive] = ACTIONS(3049), - [anon_sym_LPAREN2] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym___extension__] = ACTIONS(3049), - [anon_sym_typedef] = ACTIONS(3049), - [anon_sym_extern] = ACTIONS(3049), - [anon_sym___attribute__] = ACTIONS(3049), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3051), - [anon_sym___declspec] = ACTIONS(3049), - [anon_sym___based] = ACTIONS(3049), - [anon_sym_signed] = ACTIONS(3049), - [anon_sym_unsigned] = ACTIONS(3049), - [anon_sym_long] = ACTIONS(3049), - [anon_sym_short] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_static] = ACTIONS(3049), - [anon_sym_register] = ACTIONS(3049), - [anon_sym_inline] = ACTIONS(3049), - [anon_sym___inline] = ACTIONS(3049), - [anon_sym___inline__] = ACTIONS(3049), - [anon_sym___forceinline] = ACTIONS(3049), - [anon_sym_thread_local] = ACTIONS(3049), - [anon_sym___thread] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_constexpr] = ACTIONS(3049), - [anon_sym_volatile] = ACTIONS(3049), - [anon_sym_restrict] = ACTIONS(3049), - [anon_sym___restrict__] = ACTIONS(3049), - [anon_sym__Atomic] = ACTIONS(3049), - [anon_sym__Noreturn] = ACTIONS(3049), - [anon_sym_noreturn] = ACTIONS(3049), - [anon_sym_mutable] = ACTIONS(3049), - [anon_sym_constinit] = ACTIONS(3049), - [anon_sym_consteval] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3049), - [anon_sym_enum] = ACTIONS(3049), - [anon_sym_class] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_union] = ACTIONS(3049), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3049), - [anon_sym_decltype] = ACTIONS(3049), - [anon_sym_virtual] = ACTIONS(3049), - [anon_sym_alignas] = ACTIONS(3049), - [anon_sym_explicit] = ACTIONS(3049), - [anon_sym_typename] = ACTIONS(3049), - [anon_sym_template] = ACTIONS(3049), - [anon_sym_operator] = ACTIONS(3049), - [anon_sym_friend] = ACTIONS(3049), - [anon_sym_public] = ACTIONS(3049), - [anon_sym_private] = ACTIONS(3049), - [anon_sym_protected] = ACTIONS(3049), - [anon_sym_using] = ACTIONS(3049), - [anon_sym_static_assert] = ACTIONS(3049), - }, - [2444] = { - [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___extension__] = ACTIONS(3217), - [anon_sym_typedef] = ACTIONS(3217), - [anon_sym_extern] = ACTIONS(3217), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3217), - [anon_sym_constinit] = ACTIONS(3217), - [anon_sym_consteval] = 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_virtual] = ACTIONS(3217), - [anon_sym_alignas] = ACTIONS(3217), - [anon_sym_explicit] = ACTIONS(3217), - [anon_sym_typename] = ACTIONS(3217), - [anon_sym_template] = ACTIONS(3217), - [anon_sym_operator] = ACTIONS(3217), - [anon_sym_friend] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_static_assert] = ACTIONS(3217), - }, - [2445] = { - [sym_identifier] = ACTIONS(3053), - [aux_sym_preproc_def_token1] = ACTIONS(3053), - [aux_sym_preproc_if_token1] = ACTIONS(3053), - [aux_sym_preproc_if_token2] = ACTIONS(3053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3053), - [aux_sym_preproc_else_token1] = ACTIONS(3053), - [aux_sym_preproc_elif_token1] = ACTIONS(3053), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3053), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3053), - [sym_preproc_directive] = ACTIONS(3053), - [anon_sym_LPAREN2] = ACTIONS(3055), - [anon_sym_TILDE] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_AMP_AMP] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(3053), - [anon_sym_typedef] = ACTIONS(3053), - [anon_sym_extern] = ACTIONS(3053), - [anon_sym___attribute__] = ACTIONS(3053), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3055), - [anon_sym___declspec] = ACTIONS(3053), - [anon_sym___based] = ACTIONS(3053), - [anon_sym_signed] = ACTIONS(3053), - [anon_sym_unsigned] = ACTIONS(3053), - [anon_sym_long] = ACTIONS(3053), - [anon_sym_short] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_static] = ACTIONS(3053), - [anon_sym_register] = ACTIONS(3053), - [anon_sym_inline] = ACTIONS(3053), - [anon_sym___inline] = ACTIONS(3053), - [anon_sym___inline__] = ACTIONS(3053), - [anon_sym___forceinline] = ACTIONS(3053), - [anon_sym_thread_local] = ACTIONS(3053), - [anon_sym___thread] = ACTIONS(3053), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_constexpr] = ACTIONS(3053), - [anon_sym_volatile] = ACTIONS(3053), - [anon_sym_restrict] = ACTIONS(3053), - [anon_sym___restrict__] = ACTIONS(3053), - [anon_sym__Atomic] = ACTIONS(3053), - [anon_sym__Noreturn] = ACTIONS(3053), - [anon_sym_noreturn] = ACTIONS(3053), - [anon_sym_mutable] = ACTIONS(3053), - [anon_sym_constinit] = ACTIONS(3053), - [anon_sym_consteval] = ACTIONS(3053), - [sym_primitive_type] = ACTIONS(3053), - [anon_sym_enum] = ACTIONS(3053), - [anon_sym_class] = ACTIONS(3053), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_union] = ACTIONS(3053), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3053), - [anon_sym_decltype] = ACTIONS(3053), - [anon_sym_virtual] = ACTIONS(3053), - [anon_sym_alignas] = ACTIONS(3053), - [anon_sym_explicit] = ACTIONS(3053), - [anon_sym_typename] = ACTIONS(3053), - [anon_sym_template] = ACTIONS(3053), - [anon_sym_operator] = ACTIONS(3053), - [anon_sym_friend] = ACTIONS(3053), - [anon_sym_public] = ACTIONS(3053), - [anon_sym_private] = ACTIONS(3053), - [anon_sym_protected] = ACTIONS(3053), - [anon_sym_using] = ACTIONS(3053), - [anon_sym_static_assert] = ACTIONS(3053), - }, - [2446] = { - [sym_identifier] = ACTIONS(3286), - [aux_sym_preproc_def_token1] = ACTIONS(3286), - [aux_sym_preproc_if_token1] = ACTIONS(3286), - [aux_sym_preproc_if_token2] = ACTIONS(3286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), - [aux_sym_preproc_else_token1] = ACTIONS(3286), - [aux_sym_preproc_elif_token1] = ACTIONS(3286), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3286), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3286), - [sym_preproc_directive] = ACTIONS(3286), - [anon_sym_LPAREN2] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_AMP] = ACTIONS(3286), - [anon_sym___extension__] = ACTIONS(3286), - [anon_sym_typedef] = ACTIONS(3286), - [anon_sym_extern] = ACTIONS(3286), - [anon_sym___attribute__] = ACTIONS(3286), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), - [anon_sym___declspec] = ACTIONS(3286), - [anon_sym___based] = ACTIONS(3286), - [anon_sym_signed] = ACTIONS(3286), - [anon_sym_unsigned] = ACTIONS(3286), - [anon_sym_long] = ACTIONS(3286), - [anon_sym_short] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3286), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_register] = ACTIONS(3286), - [anon_sym_inline] = ACTIONS(3286), - [anon_sym___inline] = ACTIONS(3286), - [anon_sym___inline__] = ACTIONS(3286), - [anon_sym___forceinline] = ACTIONS(3286), - [anon_sym_thread_local] = ACTIONS(3286), - [anon_sym___thread] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_constexpr] = ACTIONS(3286), - [anon_sym_volatile] = ACTIONS(3286), - [anon_sym_restrict] = ACTIONS(3286), - [anon_sym___restrict__] = ACTIONS(3286), - [anon_sym__Atomic] = ACTIONS(3286), - [anon_sym__Noreturn] = ACTIONS(3286), - [anon_sym_noreturn] = ACTIONS(3286), - [anon_sym_mutable] = ACTIONS(3286), - [anon_sym_constinit] = ACTIONS(3286), - [anon_sym_consteval] = ACTIONS(3286), - [sym_primitive_type] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), - [anon_sym_class] = ACTIONS(3286), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_union] = ACTIONS(3286), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3286), - [anon_sym_decltype] = ACTIONS(3286), - [anon_sym_virtual] = ACTIONS(3286), - [anon_sym_alignas] = ACTIONS(3286), - [anon_sym_explicit] = ACTIONS(3286), - [anon_sym_typename] = ACTIONS(3286), - [anon_sym_template] = ACTIONS(3286), - [anon_sym_operator] = ACTIONS(3286), - [anon_sym_friend] = ACTIONS(3286), - [anon_sym_public] = ACTIONS(3286), - [anon_sym_private] = ACTIONS(3286), - [anon_sym_protected] = ACTIONS(3286), - [anon_sym_using] = ACTIONS(3286), - [anon_sym_static_assert] = ACTIONS(3286), - }, - [2447] = { - [sym_identifier] = ACTIONS(3428), - [aux_sym_preproc_def_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3428), - [aux_sym_preproc_else_token1] = ACTIONS(3428), - [aux_sym_preproc_elif_token1] = ACTIONS(3428), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3428), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3428), - [sym_preproc_directive] = ACTIONS(3428), - [anon_sym_LPAREN2] = ACTIONS(3430), - [anon_sym_TILDE] = ACTIONS(3430), - [anon_sym_STAR] = ACTIONS(3430), - [anon_sym_AMP_AMP] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym___extension__] = ACTIONS(3428), - [anon_sym_typedef] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym___attribute__] = ACTIONS(3428), - [anon_sym_COLON_COLON] = ACTIONS(3430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3430), - [anon_sym___declspec] = ACTIONS(3428), - [anon_sym___based] = ACTIONS(3428), - [anon_sym_signed] = ACTIONS(3428), - [anon_sym_unsigned] = ACTIONS(3428), - [anon_sym_long] = ACTIONS(3428), - [anon_sym_short] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_register] = ACTIONS(3428), - [anon_sym_inline] = ACTIONS(3428), - [anon_sym___inline] = ACTIONS(3428), - [anon_sym___inline__] = ACTIONS(3428), - [anon_sym___forceinline] = ACTIONS(3428), - [anon_sym_thread_local] = ACTIONS(3428), - [anon_sym___thread] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_constexpr] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_restrict] = ACTIONS(3428), - [anon_sym___restrict__] = ACTIONS(3428), - [anon_sym__Atomic] = ACTIONS(3428), - [anon_sym__Noreturn] = ACTIONS(3428), - [anon_sym_noreturn] = ACTIONS(3428), - [anon_sym_mutable] = ACTIONS(3428), - [anon_sym_constinit] = ACTIONS(3428), - [anon_sym_consteval] = ACTIONS(3428), - [sym_primitive_type] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_union] = ACTIONS(3428), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3428), - [anon_sym_decltype] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_alignas] = ACTIONS(3428), - [anon_sym_explicit] = ACTIONS(3428), - [anon_sym_typename] = ACTIONS(3428), - [anon_sym_template] = ACTIONS(3428), - [anon_sym_operator] = ACTIONS(3428), - [anon_sym_friend] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_using] = ACTIONS(3428), - [anon_sym_static_assert] = ACTIONS(3428), - }, - [2448] = { - [sym_identifier] = ACTIONS(3436), - [aux_sym_preproc_def_token1] = ACTIONS(3436), - [aux_sym_preproc_if_token1] = ACTIONS(3436), - [aux_sym_preproc_if_token2] = ACTIONS(3436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3436), - [aux_sym_preproc_else_token1] = ACTIONS(3436), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3436), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3436), - [sym_preproc_directive] = ACTIONS(3436), - [anon_sym_LPAREN2] = ACTIONS(3438), - [anon_sym_TILDE] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_AMP] = ACTIONS(3436), - [anon_sym___extension__] = ACTIONS(3436), - [anon_sym_typedef] = ACTIONS(3436), - [anon_sym_extern] = ACTIONS(3436), - [anon_sym___attribute__] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3438), - [anon_sym___declspec] = ACTIONS(3436), - [anon_sym___based] = ACTIONS(3436), - [anon_sym_signed] = ACTIONS(3436), - [anon_sym_unsigned] = ACTIONS(3436), - [anon_sym_long] = ACTIONS(3436), - [anon_sym_short] = ACTIONS(3436), - [anon_sym_LBRACK] = ACTIONS(3436), - [anon_sym_static] = ACTIONS(3436), - [anon_sym_register] = ACTIONS(3436), - [anon_sym_inline] = ACTIONS(3436), - [anon_sym___inline] = ACTIONS(3436), - [anon_sym___inline__] = ACTIONS(3436), - [anon_sym___forceinline] = ACTIONS(3436), - [anon_sym_thread_local] = ACTIONS(3436), - [anon_sym___thread] = ACTIONS(3436), - [anon_sym_const] = ACTIONS(3436), - [anon_sym_constexpr] = ACTIONS(3436), - [anon_sym_volatile] = ACTIONS(3436), - [anon_sym_restrict] = ACTIONS(3436), - [anon_sym___restrict__] = ACTIONS(3436), - [anon_sym__Atomic] = ACTIONS(3436), - [anon_sym__Noreturn] = ACTIONS(3436), - [anon_sym_noreturn] = ACTIONS(3436), - [anon_sym_mutable] = ACTIONS(3436), - [anon_sym_constinit] = ACTIONS(3436), - [anon_sym_consteval] = ACTIONS(3436), - [sym_primitive_type] = ACTIONS(3436), - [anon_sym_enum] = ACTIONS(3436), - [anon_sym_class] = ACTIONS(3436), - [anon_sym_struct] = ACTIONS(3436), - [anon_sym_union] = ACTIONS(3436), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3436), - [anon_sym_decltype] = ACTIONS(3436), - [anon_sym_virtual] = ACTIONS(3436), - [anon_sym_alignas] = ACTIONS(3436), - [anon_sym_explicit] = ACTIONS(3436), - [anon_sym_typename] = ACTIONS(3436), - [anon_sym_template] = ACTIONS(3436), - [anon_sym_operator] = ACTIONS(3436), - [anon_sym_friend] = ACTIONS(3436), - [anon_sym_public] = ACTIONS(3436), - [anon_sym_private] = ACTIONS(3436), - [anon_sym_protected] = ACTIONS(3436), - [anon_sym_using] = ACTIONS(3436), - [anon_sym_static_assert] = ACTIONS(3436), - }, - [2449] = { - [sym_identifier] = ACTIONS(3087), - [aux_sym_preproc_def_token1] = ACTIONS(3087), - [aux_sym_preproc_if_token1] = ACTIONS(3087), - [aux_sym_preproc_if_token2] = ACTIONS(3087), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), - [aux_sym_preproc_else_token1] = ACTIONS(3087), - [aux_sym_preproc_elif_token1] = ACTIONS(3087), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3087), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3087), - [sym_preproc_directive] = ACTIONS(3087), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym___extension__] = ACTIONS(3087), - [anon_sym_typedef] = ACTIONS(3087), - [anon_sym_extern] = ACTIONS(3087), - [anon_sym___attribute__] = ACTIONS(3087), - [anon_sym_COLON_COLON] = ACTIONS(3089), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), - [anon_sym___declspec] = ACTIONS(3087), - [anon_sym___based] = ACTIONS(3087), - [anon_sym_signed] = ACTIONS(3087), - [anon_sym_unsigned] = ACTIONS(3087), - [anon_sym_long] = ACTIONS(3087), - [anon_sym_short] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_register] = ACTIONS(3087), - [anon_sym_inline] = ACTIONS(3087), - [anon_sym___inline] = ACTIONS(3087), - [anon_sym___inline__] = ACTIONS(3087), - [anon_sym___forceinline] = ACTIONS(3087), - [anon_sym_thread_local] = ACTIONS(3087), - [anon_sym___thread] = ACTIONS(3087), - [anon_sym_const] = ACTIONS(3087), - [anon_sym_constexpr] = ACTIONS(3087), - [anon_sym_volatile] = ACTIONS(3087), - [anon_sym_restrict] = ACTIONS(3087), - [anon_sym___restrict__] = ACTIONS(3087), - [anon_sym__Atomic] = ACTIONS(3087), - [anon_sym__Noreturn] = ACTIONS(3087), - [anon_sym_noreturn] = ACTIONS(3087), - [anon_sym_mutable] = ACTIONS(3087), - [anon_sym_constinit] = ACTIONS(3087), - [anon_sym_consteval] = ACTIONS(3087), - [sym_primitive_type] = ACTIONS(3087), - [anon_sym_enum] = ACTIONS(3087), - [anon_sym_class] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_union] = ACTIONS(3087), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3087), - [anon_sym_decltype] = ACTIONS(3087), - [anon_sym_virtual] = ACTIONS(3087), - [anon_sym_alignas] = ACTIONS(3087), - [anon_sym_explicit] = ACTIONS(3087), - [anon_sym_typename] = ACTIONS(3087), - [anon_sym_template] = ACTIONS(3087), - [anon_sym_operator] = ACTIONS(3087), - [anon_sym_friend] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3087), - [anon_sym_private] = ACTIONS(3087), - [anon_sym_protected] = ACTIONS(3087), - [anon_sym_using] = ACTIONS(3087), - [anon_sym_static_assert] = ACTIONS(3087), - }, - [2450] = { - [sym_identifier] = 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_TILDE] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym___extension__] = ACTIONS(3027), - [anon_sym_typedef] = ACTIONS(3027), - [anon_sym_extern] = ACTIONS(3027), - [anon_sym___attribute__] = 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_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_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3027), - [anon_sym_decltype] = ACTIONS(3027), - [anon_sym_virtual] = ACTIONS(3027), - [anon_sym_alignas] = ACTIONS(3027), - [anon_sym_explicit] = ACTIONS(3027), - [anon_sym_typename] = ACTIONS(3027), - [anon_sym_template] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_friend] = ACTIONS(3027), - [anon_sym_public] = ACTIONS(3027), - [anon_sym_private] = ACTIONS(3027), - [anon_sym_protected] = ACTIONS(3027), - [anon_sym_using] = ACTIONS(3027), - [anon_sym_static_assert] = ACTIONS(3027), - }, - [2451] = { - [sym_identifier] = ACTIONS(3282), - [aux_sym_preproc_def_token1] = ACTIONS(3282), - [aux_sym_preproc_if_token1] = ACTIONS(3282), - [aux_sym_preproc_if_token2] = ACTIONS(3282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3282), - [aux_sym_preproc_else_token1] = ACTIONS(3282), - [aux_sym_preproc_elif_token1] = ACTIONS(3282), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3282), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3282), - [sym_preproc_directive] = ACTIONS(3282), - [anon_sym_LPAREN2] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_AMP_AMP] = ACTIONS(3284), - [anon_sym_AMP] = ACTIONS(3282), - [anon_sym___extension__] = ACTIONS(3282), - [anon_sym_typedef] = ACTIONS(3282), - [anon_sym_extern] = ACTIONS(3282), - [anon_sym___attribute__] = ACTIONS(3282), - [anon_sym_COLON_COLON] = ACTIONS(3284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3284), - [anon_sym___declspec] = ACTIONS(3282), - [anon_sym___based] = ACTIONS(3282), - [anon_sym_signed] = ACTIONS(3282), - [anon_sym_unsigned] = ACTIONS(3282), - [anon_sym_long] = ACTIONS(3282), - [anon_sym_short] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_register] = ACTIONS(3282), - [anon_sym_inline] = ACTIONS(3282), - [anon_sym___inline] = ACTIONS(3282), - [anon_sym___inline__] = ACTIONS(3282), - [anon_sym___forceinline] = ACTIONS(3282), - [anon_sym_thread_local] = ACTIONS(3282), - [anon_sym___thread] = ACTIONS(3282), - [anon_sym_const] = ACTIONS(3282), - [anon_sym_constexpr] = ACTIONS(3282), - [anon_sym_volatile] = ACTIONS(3282), - [anon_sym_restrict] = ACTIONS(3282), - [anon_sym___restrict__] = ACTIONS(3282), - [anon_sym__Atomic] = ACTIONS(3282), - [anon_sym__Noreturn] = ACTIONS(3282), - [anon_sym_noreturn] = ACTIONS(3282), - [anon_sym_mutable] = ACTIONS(3282), - [anon_sym_constinit] = ACTIONS(3282), - [anon_sym_consteval] = ACTIONS(3282), - [sym_primitive_type] = ACTIONS(3282), - [anon_sym_enum] = ACTIONS(3282), - [anon_sym_class] = ACTIONS(3282), - [anon_sym_struct] = ACTIONS(3282), - [anon_sym_union] = ACTIONS(3282), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3282), - [anon_sym_decltype] = ACTIONS(3282), - [anon_sym_virtual] = ACTIONS(3282), - [anon_sym_alignas] = ACTIONS(3282), - [anon_sym_explicit] = ACTIONS(3282), - [anon_sym_typename] = ACTIONS(3282), - [anon_sym_template] = ACTIONS(3282), - [anon_sym_operator] = ACTIONS(3282), - [anon_sym_friend] = ACTIONS(3282), - [anon_sym_public] = ACTIONS(3282), - [anon_sym_private] = ACTIONS(3282), - [anon_sym_protected] = ACTIONS(3282), - [anon_sym_using] = ACTIONS(3282), - [anon_sym_static_assert] = ACTIONS(3282), - }, - [2452] = { - [sym_identifier] = ACTIONS(3230), - [aux_sym_preproc_def_token1] = ACTIONS(3230), - [aux_sym_preproc_if_token1] = ACTIONS(3230), - [aux_sym_preproc_if_token2] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3230), - [aux_sym_preproc_else_token1] = ACTIONS(3230), - [aux_sym_preproc_elif_token1] = ACTIONS(3230), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3230), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3230), - [sym_preproc_directive] = ACTIONS(3230), - [anon_sym_LPAREN2] = ACTIONS(3232), - [anon_sym_TILDE] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(3232), - [anon_sym_AMP_AMP] = ACTIONS(3232), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym___extension__] = ACTIONS(3230), - [anon_sym_typedef] = ACTIONS(3230), - [anon_sym_extern] = ACTIONS(3230), - [anon_sym___attribute__] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3232), - [anon_sym___declspec] = ACTIONS(3230), - [anon_sym___based] = ACTIONS(3230), - [anon_sym_signed] = ACTIONS(3230), - [anon_sym_unsigned] = ACTIONS(3230), - [anon_sym_long] = ACTIONS(3230), - [anon_sym_short] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3230), - [anon_sym_register] = ACTIONS(3230), - [anon_sym_inline] = ACTIONS(3230), - [anon_sym___inline] = ACTIONS(3230), - [anon_sym___inline__] = ACTIONS(3230), - [anon_sym___forceinline] = ACTIONS(3230), - [anon_sym_thread_local] = ACTIONS(3230), - [anon_sym___thread] = ACTIONS(3230), - [anon_sym_const] = ACTIONS(3230), - [anon_sym_constexpr] = ACTIONS(3230), - [anon_sym_volatile] = ACTIONS(3230), - [anon_sym_restrict] = ACTIONS(3230), - [anon_sym___restrict__] = ACTIONS(3230), - [anon_sym__Atomic] = ACTIONS(3230), - [anon_sym__Noreturn] = ACTIONS(3230), - [anon_sym_noreturn] = ACTIONS(3230), - [anon_sym_mutable] = ACTIONS(3230), - [anon_sym_constinit] = ACTIONS(3230), - [anon_sym_consteval] = ACTIONS(3230), - [sym_primitive_type] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3230), - [anon_sym_class] = ACTIONS(3230), - [anon_sym_struct] = ACTIONS(3230), - [anon_sym_union] = ACTIONS(3230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3230), - [anon_sym_decltype] = ACTIONS(3230), - [anon_sym_virtual] = ACTIONS(3230), - [anon_sym_alignas] = ACTIONS(3230), - [anon_sym_explicit] = ACTIONS(3230), - [anon_sym_typename] = ACTIONS(3230), - [anon_sym_template] = ACTIONS(3230), - [anon_sym_operator] = ACTIONS(3230), - [anon_sym_friend] = ACTIONS(3230), - [anon_sym_public] = ACTIONS(3230), - [anon_sym_private] = ACTIONS(3230), - [anon_sym_protected] = ACTIONS(3230), - [anon_sym_using] = ACTIONS(3230), - [anon_sym_static_assert] = ACTIONS(3230), - }, - [2453] = { - [sym_identifier] = ACTIONS(3346), - [aux_sym_preproc_def_token1] = ACTIONS(3346), - [aux_sym_preproc_if_token1] = ACTIONS(3346), - [aux_sym_preproc_if_token2] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3346), - [aux_sym_preproc_else_token1] = ACTIONS(3346), - [aux_sym_preproc_elif_token1] = ACTIONS(3346), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3346), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3346), - [sym_preproc_directive] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_AMP_AMP] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym___extension__] = ACTIONS(3346), - [anon_sym_typedef] = ACTIONS(3346), - [anon_sym_extern] = ACTIONS(3346), - [anon_sym___attribute__] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3348), - [anon_sym___declspec] = ACTIONS(3346), - [anon_sym___based] = ACTIONS(3346), - [anon_sym_signed] = ACTIONS(3346), - [anon_sym_unsigned] = ACTIONS(3346), - [anon_sym_long] = ACTIONS(3346), - [anon_sym_short] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_register] = ACTIONS(3346), - [anon_sym_inline] = ACTIONS(3346), - [anon_sym___inline] = ACTIONS(3346), - [anon_sym___inline__] = ACTIONS(3346), - [anon_sym___forceinline] = ACTIONS(3346), - [anon_sym_thread_local] = ACTIONS(3346), - [anon_sym___thread] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_constexpr] = ACTIONS(3346), - [anon_sym_volatile] = ACTIONS(3346), - [anon_sym_restrict] = ACTIONS(3346), - [anon_sym___restrict__] = ACTIONS(3346), - [anon_sym__Atomic] = ACTIONS(3346), - [anon_sym__Noreturn] = ACTIONS(3346), - [anon_sym_noreturn] = ACTIONS(3346), - [anon_sym_mutable] = ACTIONS(3346), - [anon_sym_constinit] = ACTIONS(3346), - [anon_sym_consteval] = ACTIONS(3346), - [sym_primitive_type] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_struct] = ACTIONS(3346), - [anon_sym_union] = ACTIONS(3346), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3346), - [anon_sym_decltype] = ACTIONS(3346), - [anon_sym_virtual] = ACTIONS(3346), - [anon_sym_alignas] = ACTIONS(3346), - [anon_sym_explicit] = ACTIONS(3346), - [anon_sym_typename] = ACTIONS(3346), - [anon_sym_template] = ACTIONS(3346), - [anon_sym_operator] = ACTIONS(3346), - [anon_sym_friend] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3346), - [anon_sym_private] = ACTIONS(3346), - [anon_sym_protected] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_static_assert] = ACTIONS(3346), - }, - [2454] = { - [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___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3123), - [anon_sym_extern] = ACTIONS(3123), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3123), - [anon_sym_constinit] = ACTIONS(3123), - [anon_sym_consteval] = 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_virtual] = ACTIONS(3123), - [anon_sym_alignas] = ACTIONS(3123), - [anon_sym_explicit] = ACTIONS(3123), - [anon_sym_typename] = ACTIONS(3123), - [anon_sym_template] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_friend] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_using] = ACTIONS(3123), - [anon_sym_static_assert] = ACTIONS(3123), - }, - [2455] = { - [sym_identifier] = 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_TILDE] = ACTIONS(3316), - [anon_sym_STAR] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_AMP] = ACTIONS(3314), - [anon_sym___extension__] = ACTIONS(3314), - [anon_sym_typedef] = ACTIONS(3314), - [anon_sym_extern] = ACTIONS(3314), - [anon_sym___attribute__] = 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_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_mutable] = ACTIONS(3314), - [anon_sym_constinit] = ACTIONS(3314), - [anon_sym_consteval] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3314), - [anon_sym_decltype] = ACTIONS(3314), - [anon_sym_virtual] = ACTIONS(3314), - [anon_sym_alignas] = ACTIONS(3314), - [anon_sym_explicit] = ACTIONS(3314), - [anon_sym_typename] = ACTIONS(3314), - [anon_sym_template] = ACTIONS(3314), - [anon_sym_operator] = ACTIONS(3314), - [anon_sym_friend] = ACTIONS(3314), - [anon_sym_public] = ACTIONS(3314), - [anon_sym_private] = ACTIONS(3314), - [anon_sym_protected] = ACTIONS(3314), - [anon_sym_using] = ACTIONS(3314), - [anon_sym_static_assert] = ACTIONS(3314), - }, - [2456] = { - [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___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3123), - [anon_sym_extern] = ACTIONS(3123), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3123), - [anon_sym_constinit] = ACTIONS(3123), - [anon_sym_consteval] = 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_virtual] = ACTIONS(3123), - [anon_sym_alignas] = ACTIONS(3123), - [anon_sym_explicit] = ACTIONS(3123), - [anon_sym_typename] = ACTIONS(3123), - [anon_sym_template] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_friend] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_using] = ACTIONS(3123), - [anon_sym_static_assert] = ACTIONS(3123), - }, - [2457] = { - [sym_identifier] = ACTIONS(5180), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5182), - [anon_sym_COMMA] = ACTIONS(5182), - [anon_sym_RPAREN] = ACTIONS(5182), - [anon_sym_LPAREN2] = ACTIONS(5182), - [anon_sym_DASH] = ACTIONS(5180), - [anon_sym_PLUS] = ACTIONS(5180), - [anon_sym_STAR] = ACTIONS(5182), - [anon_sym_SLASH] = ACTIONS(5180), - [anon_sym_PERCENT] = ACTIONS(5182), - [anon_sym_PIPE_PIPE] = ACTIONS(5182), - [anon_sym_AMP_AMP] = ACTIONS(5182), - [anon_sym_PIPE] = ACTIONS(5180), - [anon_sym_CARET] = ACTIONS(5182), - [anon_sym_AMP] = ACTIONS(5180), - [anon_sym_EQ_EQ] = ACTIONS(5182), - [anon_sym_BANG_EQ] = ACTIONS(5182), - [anon_sym_GT] = ACTIONS(5180), - [anon_sym_GT_EQ] = ACTIONS(5182), - [anon_sym_LT_EQ] = ACTIONS(5180), - [anon_sym_LT] = ACTIONS(5180), - [anon_sym_LT_LT] = ACTIONS(5182), - [anon_sym_GT_GT] = ACTIONS(5182), - [anon_sym_SEMI] = ACTIONS(5182), - [anon_sym___extension__] = ACTIONS(5180), - [anon_sym___attribute__] = ACTIONS(5180), - [anon_sym_COLON_COLON] = ACTIONS(5182), - [anon_sym___based] = ACTIONS(5180), - [anon_sym_LBRACE] = ACTIONS(5182), - [anon_sym_RBRACE] = ACTIONS(5182), - [anon_sym_signed] = ACTIONS(5180), - [anon_sym_unsigned] = ACTIONS(5180), - [anon_sym_long] = ACTIONS(5180), - [anon_sym_short] = ACTIONS(5180), - [anon_sym_LBRACK] = ACTIONS(5182), - [anon_sym_RBRACK] = ACTIONS(5182), - [anon_sym_const] = ACTIONS(5180), - [anon_sym_constexpr] = ACTIONS(5180), - [anon_sym_volatile] = ACTIONS(5180), - [anon_sym_restrict] = ACTIONS(5180), - [anon_sym___restrict__] = ACTIONS(5180), - [anon_sym__Atomic] = ACTIONS(5180), - [anon_sym__Noreturn] = ACTIONS(5180), - [anon_sym_noreturn] = ACTIONS(5180), - [anon_sym_mutable] = ACTIONS(5180), - [anon_sym_constinit] = ACTIONS(5180), - [anon_sym_consteval] = ACTIONS(5180), - [sym_primitive_type] = ACTIONS(5180), - [anon_sym_COLON] = ACTIONS(5180), - [anon_sym_QMARK] = ACTIONS(5182), - [anon_sym_LT_EQ_GT] = ACTIONS(5182), - [anon_sym_or] = ACTIONS(5180), - [anon_sym_and] = ACTIONS(5180), - [anon_sym_bitor] = ACTIONS(5180), - [anon_sym_xor] = ACTIONS(5180), - [anon_sym_bitand] = ACTIONS(5180), - [anon_sym_not_eq] = ACTIONS(5180), - [anon_sym_DASH_DASH] = ACTIONS(5182), - [anon_sym_PLUS_PLUS] = ACTIONS(5182), - [anon_sym_DOT] = ACTIONS(5180), - [anon_sym_DOT_STAR] = ACTIONS(5182), - [anon_sym_DASH_GT] = ACTIONS(5182), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5180), - [anon_sym_decltype] = ACTIONS(5180), - [anon_sym_final] = ACTIONS(5180), - [anon_sym_override] = ACTIONS(5180), - [anon_sym_requires] = ACTIONS(5180), - }, - [2458] = { - [sym_string_literal] = STATE(2397), - [sym_raw_string_literal] = STATE(2397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_RPAREN] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4286), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_RBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4286), - [anon_sym_COLON] = ACTIONS(4278), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_and_eq] = ACTIONS(4286), - [anon_sym_or_eq] = ACTIONS(4286), - [anon_sym_xor_eq] = ACTIONS(4286), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4286), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4286), - [anon_sym_not_eq] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(5136), - [anon_sym_u_DQUOTE] = ACTIONS(5136), - [anon_sym_U_DQUOTE] = ACTIONS(5136), - [anon_sym_u8_DQUOTE] = ACTIONS(5136), - [anon_sym_DQUOTE] = ACTIONS(5136), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5138), - [anon_sym_LR_DQUOTE] = ACTIONS(5138), - [anon_sym_uR_DQUOTE] = ACTIONS(5138), - [anon_sym_UR_DQUOTE] = ACTIONS(5138), - [anon_sym_u8R_DQUOTE] = ACTIONS(5138), - [sym_literal_suffix] = ACTIONS(5184), - }, - [2459] = { - [sym_identifier] = ACTIONS(2961), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token2] = ACTIONS(2961), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2961), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2961), - [aux_sym_preproc_else_token1] = ACTIONS(2961), - [aux_sym_preproc_elif_token1] = ACTIONS(2961), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2961), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2961), - [sym_preproc_directive] = ACTIONS(2961), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym___extension__] = ACTIONS(2961), - [anon_sym_typedef] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym_COLON_COLON] = ACTIONS(2963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), - [anon_sym___declspec] = ACTIONS(2961), - [anon_sym___based] = ACTIONS(2961), - [anon_sym_signed] = ACTIONS(2961), - [anon_sym_unsigned] = ACTIONS(2961), - [anon_sym_long] = ACTIONS(2961), - [anon_sym_short] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_static] = ACTIONS(2961), - [anon_sym_register] = ACTIONS(2961), - [anon_sym_inline] = ACTIONS(2961), - [anon_sym___inline] = ACTIONS(2961), - [anon_sym___inline__] = ACTIONS(2961), - [anon_sym___forceinline] = ACTIONS(2961), - [anon_sym_thread_local] = ACTIONS(2961), - [anon_sym___thread] = ACTIONS(2961), - [anon_sym_const] = ACTIONS(2961), - [anon_sym_constexpr] = ACTIONS(2961), - [anon_sym_volatile] = ACTIONS(2961), - [anon_sym_restrict] = ACTIONS(2961), - [anon_sym___restrict__] = ACTIONS(2961), - [anon_sym__Atomic] = ACTIONS(2961), - [anon_sym__Noreturn] = ACTIONS(2961), - [anon_sym_noreturn] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [sym_primitive_type] = ACTIONS(2961), - [anon_sym_enum] = ACTIONS(2961), - [anon_sym_class] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_union] = ACTIONS(2961), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2961), - [anon_sym_decltype] = ACTIONS(2961), - [anon_sym_virtual] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym_explicit] = ACTIONS(2961), - [anon_sym_typename] = ACTIONS(2961), - [anon_sym_template] = ACTIONS(2961), - [anon_sym_operator] = ACTIONS(2961), - [anon_sym_friend] = ACTIONS(2961), - [anon_sym_public] = ACTIONS(2961), - [anon_sym_private] = ACTIONS(2961), - [anon_sym_protected] = ACTIONS(2961), - [anon_sym_using] = ACTIONS(2961), - [anon_sym_static_assert] = ACTIONS(2961), - }, - [2460] = { - [sym_identifier] = ACTIONS(3195), - [aux_sym_preproc_def_token1] = ACTIONS(3195), - [aux_sym_preproc_if_token1] = ACTIONS(3195), - [aux_sym_preproc_if_token2] = ACTIONS(3195), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3195), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3195), - [aux_sym_preproc_else_token1] = ACTIONS(3195), - [aux_sym_preproc_elif_token1] = ACTIONS(3195), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3195), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3195), - [sym_preproc_directive] = ACTIONS(3195), - [anon_sym_LPAREN2] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym___extension__] = ACTIONS(3195), - [anon_sym_typedef] = ACTIONS(3195), - [anon_sym_extern] = ACTIONS(3195), - [anon_sym___attribute__] = ACTIONS(3195), - [anon_sym_COLON_COLON] = ACTIONS(3197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3197), - [anon_sym___declspec] = ACTIONS(3195), - [anon_sym___based] = ACTIONS(3195), - [anon_sym_signed] = ACTIONS(3195), - [anon_sym_unsigned] = ACTIONS(3195), - [anon_sym_long] = ACTIONS(3195), - [anon_sym_short] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_static] = ACTIONS(3195), - [anon_sym_register] = ACTIONS(3195), - [anon_sym_inline] = ACTIONS(3195), - [anon_sym___inline] = ACTIONS(3195), - [anon_sym___inline__] = ACTIONS(3195), - [anon_sym___forceinline] = ACTIONS(3195), - [anon_sym_thread_local] = ACTIONS(3195), - [anon_sym___thread] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_constexpr] = ACTIONS(3195), - [anon_sym_volatile] = ACTIONS(3195), - [anon_sym_restrict] = ACTIONS(3195), - [anon_sym___restrict__] = ACTIONS(3195), - [anon_sym__Atomic] = ACTIONS(3195), - [anon_sym__Noreturn] = ACTIONS(3195), - [anon_sym_noreturn] = ACTIONS(3195), - [anon_sym_mutable] = ACTIONS(3195), - [anon_sym_constinit] = ACTIONS(3195), - [anon_sym_consteval] = ACTIONS(3195), - [sym_primitive_type] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3195), - [anon_sym_class] = ACTIONS(3195), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_union] = ACTIONS(3195), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3195), - [anon_sym_decltype] = ACTIONS(3195), - [anon_sym_virtual] = ACTIONS(3195), - [anon_sym_alignas] = ACTIONS(3195), - [anon_sym_explicit] = ACTIONS(3195), - [anon_sym_typename] = ACTIONS(3195), - [anon_sym_template] = ACTIONS(3195), - [anon_sym_operator] = ACTIONS(3195), - [anon_sym_friend] = ACTIONS(3195), - [anon_sym_public] = ACTIONS(3195), - [anon_sym_private] = ACTIONS(3195), - [anon_sym_protected] = ACTIONS(3195), - [anon_sym_using] = ACTIONS(3195), - [anon_sym_static_assert] = ACTIONS(3195), - }, - [2461] = { - [sym_identifier] = ACTIONS(2953), - [aux_sym_preproc_def_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token2] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2953), - [aux_sym_preproc_else_token1] = ACTIONS(2953), - [aux_sym_preproc_elif_token1] = ACTIONS(2953), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2953), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2953), - [sym_preproc_directive] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym___extension__] = ACTIONS(2953), - [anon_sym_typedef] = ACTIONS(2953), - [anon_sym_extern] = ACTIONS(2953), - [anon_sym___attribute__] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), - [anon_sym___declspec] = ACTIONS(2953), - [anon_sym___based] = ACTIONS(2953), - [anon_sym_signed] = ACTIONS(2953), - [anon_sym_unsigned] = ACTIONS(2953), - [anon_sym_long] = ACTIONS(2953), - [anon_sym_short] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2953), - [anon_sym_register] = ACTIONS(2953), - [anon_sym_inline] = ACTIONS(2953), - [anon_sym___inline] = ACTIONS(2953), - [anon_sym___inline__] = ACTIONS(2953), - [anon_sym___forceinline] = ACTIONS(2953), - [anon_sym_thread_local] = ACTIONS(2953), - [anon_sym___thread] = ACTIONS(2953), - [anon_sym_const] = ACTIONS(2953), - [anon_sym_constexpr] = ACTIONS(2953), - [anon_sym_volatile] = ACTIONS(2953), - [anon_sym_restrict] = ACTIONS(2953), - [anon_sym___restrict__] = ACTIONS(2953), - [anon_sym__Atomic] = ACTIONS(2953), - [anon_sym__Noreturn] = ACTIONS(2953), - [anon_sym_noreturn] = ACTIONS(2953), - [anon_sym_mutable] = ACTIONS(2953), - [anon_sym_constinit] = ACTIONS(2953), - [anon_sym_consteval] = ACTIONS(2953), - [sym_primitive_type] = ACTIONS(2953), - [anon_sym_enum] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2953), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_union] = ACTIONS(2953), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2953), - [anon_sym_decltype] = ACTIONS(2953), - [anon_sym_virtual] = ACTIONS(2953), - [anon_sym_alignas] = ACTIONS(2953), - [anon_sym_explicit] = ACTIONS(2953), - [anon_sym_typename] = ACTIONS(2953), - [anon_sym_template] = ACTIONS(2953), - [anon_sym_operator] = ACTIONS(2953), - [anon_sym_friend] = ACTIONS(2953), - [anon_sym_public] = ACTIONS(2953), - [anon_sym_private] = ACTIONS(2953), - [anon_sym_protected] = ACTIONS(2953), - [anon_sym_using] = ACTIONS(2953), - [anon_sym_static_assert] = ACTIONS(2953), - }, - [2462] = { - [sym_identifier] = ACTIONS(2949), - [aux_sym_preproc_def_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token2] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), - [aux_sym_preproc_else_token1] = ACTIONS(2949), - [aux_sym_preproc_elif_token1] = ACTIONS(2949), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2949), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2949), - [sym_preproc_directive] = ACTIONS(2949), - [anon_sym_LPAREN2] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2949), - [anon_sym___extension__] = ACTIONS(2949), - [anon_sym_typedef] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2949), - [anon_sym___attribute__] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), - [anon_sym___declspec] = ACTIONS(2949), - [anon_sym___based] = ACTIONS(2949), - [anon_sym_signed] = ACTIONS(2949), - [anon_sym_unsigned] = ACTIONS(2949), - [anon_sym_long] = ACTIONS(2949), - [anon_sym_short] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_register] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2949), - [anon_sym___inline] = ACTIONS(2949), - [anon_sym___inline__] = ACTIONS(2949), - [anon_sym___forceinline] = ACTIONS(2949), - [anon_sym_thread_local] = ACTIONS(2949), - [anon_sym___thread] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_constexpr] = ACTIONS(2949), - [anon_sym_volatile] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2949), - [anon_sym___restrict__] = ACTIONS(2949), - [anon_sym__Atomic] = ACTIONS(2949), - [anon_sym__Noreturn] = ACTIONS(2949), - [anon_sym_noreturn] = ACTIONS(2949), - [anon_sym_mutable] = ACTIONS(2949), - [anon_sym_constinit] = ACTIONS(2949), - [anon_sym_consteval] = ACTIONS(2949), - [sym_primitive_type] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2949), - [anon_sym_decltype] = ACTIONS(2949), - [anon_sym_virtual] = ACTIONS(2949), - [anon_sym_alignas] = ACTIONS(2949), - [anon_sym_explicit] = ACTIONS(2949), - [anon_sym_typename] = ACTIONS(2949), - [anon_sym_template] = ACTIONS(2949), - [anon_sym_operator] = ACTIONS(2949), - [anon_sym_friend] = ACTIONS(2949), - [anon_sym_public] = ACTIONS(2949), - [anon_sym_private] = ACTIONS(2949), - [anon_sym_protected] = ACTIONS(2949), - [anon_sym_using] = ACTIONS(2949), - [anon_sym_static_assert] = ACTIONS(2949), - }, - [2463] = { - [sym_identifier] = ACTIONS(3203), - [aux_sym_preproc_def_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token2] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3203), - [aux_sym_preproc_else_token1] = ACTIONS(3203), - [aux_sym_preproc_elif_token1] = ACTIONS(3203), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3203), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3203), - [sym_preproc_directive] = ACTIONS(3203), - [anon_sym_LPAREN2] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym___extension__] = ACTIONS(3203), - [anon_sym_typedef] = ACTIONS(3203), - [anon_sym_extern] = ACTIONS(3203), - [anon_sym___attribute__] = ACTIONS(3203), - [anon_sym_COLON_COLON] = ACTIONS(3205), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3205), - [anon_sym___declspec] = ACTIONS(3203), - [anon_sym___based] = ACTIONS(3203), - [anon_sym_signed] = ACTIONS(3203), - [anon_sym_unsigned] = ACTIONS(3203), - [anon_sym_long] = ACTIONS(3203), - [anon_sym_short] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_static] = ACTIONS(3203), - [anon_sym_register] = ACTIONS(3203), - [anon_sym_inline] = ACTIONS(3203), - [anon_sym___inline] = ACTIONS(3203), - [anon_sym___inline__] = ACTIONS(3203), - [anon_sym___forceinline] = ACTIONS(3203), - [anon_sym_thread_local] = ACTIONS(3203), - [anon_sym___thread] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_constexpr] = ACTIONS(3203), - [anon_sym_volatile] = ACTIONS(3203), - [anon_sym_restrict] = ACTIONS(3203), - [anon_sym___restrict__] = ACTIONS(3203), - [anon_sym__Atomic] = ACTIONS(3203), - [anon_sym__Noreturn] = ACTIONS(3203), - [anon_sym_noreturn] = ACTIONS(3203), - [anon_sym_mutable] = ACTIONS(3203), - [anon_sym_constinit] = ACTIONS(3203), - [anon_sym_consteval] = ACTIONS(3203), - [sym_primitive_type] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [anon_sym_class] = ACTIONS(3203), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3203), - [anon_sym_decltype] = ACTIONS(3203), - [anon_sym_virtual] = ACTIONS(3203), - [anon_sym_alignas] = ACTIONS(3203), - [anon_sym_explicit] = ACTIONS(3203), - [anon_sym_typename] = ACTIONS(3203), - [anon_sym_template] = ACTIONS(3203), - [anon_sym_operator] = ACTIONS(3203), - [anon_sym_friend] = ACTIONS(3203), - [anon_sym_public] = ACTIONS(3203), - [anon_sym_private] = ACTIONS(3203), - [anon_sym_protected] = ACTIONS(3203), - [anon_sym_using] = ACTIONS(3203), - [anon_sym_static_assert] = ACTIONS(3203), - }, - [2464] = { - [sym_identifier] = ACTIONS(5186), - [aux_sym_preproc_def_token1] = ACTIONS(5186), - [aux_sym_preproc_if_token1] = ACTIONS(5186), - [aux_sym_preproc_if_token2] = ACTIONS(5186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5186), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5186), - [aux_sym_preproc_else_token1] = ACTIONS(5186), - [aux_sym_preproc_elif_token1] = ACTIONS(5186), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5186), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5186), - [sym_preproc_directive] = ACTIONS(5186), - [anon_sym_LPAREN2] = ACTIONS(5188), - [anon_sym_TILDE] = ACTIONS(5188), - [anon_sym_STAR] = ACTIONS(5188), - [anon_sym_AMP_AMP] = ACTIONS(5188), - [anon_sym_AMP] = ACTIONS(5186), - [anon_sym___extension__] = ACTIONS(5186), - [anon_sym_typedef] = ACTIONS(5186), - [anon_sym_extern] = ACTIONS(5186), - [anon_sym___attribute__] = 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_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_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_mutable] = ACTIONS(5186), - [anon_sym_constinit] = ACTIONS(5186), - [anon_sym_consteval] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5186), - [anon_sym_decltype] = ACTIONS(5186), - [anon_sym_virtual] = ACTIONS(5186), - [anon_sym_alignas] = ACTIONS(5186), - [anon_sym_explicit] = ACTIONS(5186), - [anon_sym_typename] = ACTIONS(5186), - [anon_sym_template] = ACTIONS(5186), - [anon_sym_operator] = ACTIONS(5186), - [anon_sym_friend] = ACTIONS(5186), - [anon_sym_public] = ACTIONS(5186), - [anon_sym_private] = ACTIONS(5186), - [anon_sym_protected] = ACTIONS(5186), - [anon_sym_using] = ACTIONS(5186), - [anon_sym_static_assert] = ACTIONS(5186), - }, - [2465] = { - [sym_identifier] = ACTIONS(2937), - [aux_sym_preproc_def_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token2] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), - [aux_sym_preproc_else_token1] = ACTIONS(2937), - [aux_sym_preproc_elif_token1] = ACTIONS(2937), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2937), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2937), - [sym_preproc_directive] = ACTIONS(2937), - [anon_sym_LPAREN2] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2937), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym_typedef] = ACTIONS(2937), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), - [anon_sym___declspec] = ACTIONS(2937), - [anon_sym___based] = ACTIONS(2937), - [anon_sym_signed] = ACTIONS(2937), - [anon_sym_unsigned] = ACTIONS(2937), - [anon_sym_long] = ACTIONS(2937), - [anon_sym_short] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(2937), - [anon_sym_register] = ACTIONS(2937), - [anon_sym_inline] = ACTIONS(2937), - [anon_sym___inline] = ACTIONS(2937), - [anon_sym___inline__] = ACTIONS(2937), - [anon_sym___forceinline] = ACTIONS(2937), - [anon_sym_thread_local] = ACTIONS(2937), - [anon_sym___thread] = ACTIONS(2937), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_class] = ACTIONS(2937), - [anon_sym_struct] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2937), - [anon_sym_decltype] = ACTIONS(2937), - [anon_sym_virtual] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2937), - [anon_sym_explicit] = ACTIONS(2937), - [anon_sym_typename] = ACTIONS(2937), - [anon_sym_template] = ACTIONS(2937), - [anon_sym_operator] = ACTIONS(2937), - [anon_sym_friend] = ACTIONS(2937), - [anon_sym_public] = ACTIONS(2937), - [anon_sym_private] = ACTIONS(2937), - [anon_sym_protected] = ACTIONS(2937), - [anon_sym_using] = ACTIONS(2937), - [anon_sym_static_assert] = ACTIONS(2937), - }, - [2466] = { - [sym_decltype_auto] = STATE(2636), - [sym_identifier] = ACTIONS(5190), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5192), - [anon_sym_COMMA] = ACTIONS(5192), - [anon_sym_RPAREN] = ACTIONS(5192), - [anon_sym_LPAREN2] = ACTIONS(5192), - [anon_sym_DASH] = ACTIONS(5190), - [anon_sym_PLUS] = ACTIONS(5190), - [anon_sym_STAR] = ACTIONS(5192), - [anon_sym_SLASH] = ACTIONS(5190), - [anon_sym_PERCENT] = ACTIONS(5192), - [anon_sym_PIPE_PIPE] = ACTIONS(5192), - [anon_sym_AMP_AMP] = ACTIONS(5192), - [anon_sym_PIPE] = ACTIONS(5190), - [anon_sym_CARET] = ACTIONS(5192), - [anon_sym_AMP] = ACTIONS(5190), - [anon_sym_EQ_EQ] = ACTIONS(5192), - [anon_sym_BANG_EQ] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(5190), - [anon_sym_GT_EQ] = ACTIONS(5192), - [anon_sym_LT_EQ] = ACTIONS(5190), - [anon_sym_LT] = ACTIONS(5190), - [anon_sym_LT_LT] = ACTIONS(5192), - [anon_sym_GT_GT] = ACTIONS(5192), - [anon_sym_SEMI] = ACTIONS(5192), - [anon_sym___extension__] = ACTIONS(5190), - [anon_sym___attribute__] = ACTIONS(5190), - [anon_sym___based] = ACTIONS(5190), - [anon_sym_LBRACE] = ACTIONS(5192), - [anon_sym_RBRACE] = 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(5192), - [anon_sym_RBRACK] = ACTIONS(5192), - [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_mutable] = ACTIONS(5190), - [anon_sym_constinit] = ACTIONS(5190), - [anon_sym_consteval] = ACTIONS(5190), - [sym_primitive_type] = ACTIONS(5190), - [anon_sym_COLON] = ACTIONS(5192), - [anon_sym_QMARK] = ACTIONS(5192), - [anon_sym_LT_EQ_GT] = ACTIONS(5192), - [anon_sym_or] = ACTIONS(5190), - [anon_sym_and] = ACTIONS(5190), - [anon_sym_bitor] = ACTIONS(5190), - [anon_sym_xor] = ACTIONS(5190), - [anon_sym_bitand] = ACTIONS(5190), - [anon_sym_not_eq] = ACTIONS(5190), - [anon_sym_DASH_DASH] = ACTIONS(5192), - [anon_sym_PLUS_PLUS] = ACTIONS(5192), - [anon_sym_DOT] = ACTIONS(5190), - [anon_sym_DOT_STAR] = ACTIONS(5192), - [anon_sym_DASH_GT] = ACTIONS(5192), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5194), - [anon_sym_decltype] = ACTIONS(5196), - [anon_sym_final] = ACTIONS(5190), - [anon_sym_override] = ACTIONS(5190), - [anon_sym_requires] = ACTIONS(5190), - }, - [2467] = { - [sym_identifier] = ACTIONS(2881), - [aux_sym_preproc_def_token1] = ACTIONS(2881), - [aux_sym_preproc_if_token1] = ACTIONS(2881), - [aux_sym_preproc_if_token2] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2881), - [aux_sym_preproc_else_token1] = ACTIONS(2881), - [aux_sym_preproc_elif_token1] = ACTIONS(2881), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2881), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2881), - [sym_preproc_directive] = ACTIONS(2881), - [anon_sym_LPAREN2] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2881), - [anon_sym___extension__] = ACTIONS(2881), - [anon_sym_typedef] = ACTIONS(2881), - [anon_sym_extern] = ACTIONS(2881), - [anon_sym___attribute__] = ACTIONS(2881), - [anon_sym_COLON_COLON] = ACTIONS(2883), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2883), - [anon_sym___declspec] = ACTIONS(2881), - [anon_sym___based] = ACTIONS(2881), - [anon_sym_signed] = ACTIONS(2881), - [anon_sym_unsigned] = ACTIONS(2881), - [anon_sym_long] = ACTIONS(2881), - [anon_sym_short] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_register] = ACTIONS(2881), - [anon_sym_inline] = ACTIONS(2881), - [anon_sym___inline] = ACTIONS(2881), - [anon_sym___inline__] = ACTIONS(2881), - [anon_sym___forceinline] = ACTIONS(2881), - [anon_sym_thread_local] = ACTIONS(2881), - [anon_sym___thread] = ACTIONS(2881), - [anon_sym_const] = ACTIONS(2881), - [anon_sym_constexpr] = ACTIONS(2881), - [anon_sym_volatile] = ACTIONS(2881), - [anon_sym_restrict] = ACTIONS(2881), - [anon_sym___restrict__] = ACTIONS(2881), - [anon_sym__Atomic] = ACTIONS(2881), - [anon_sym__Noreturn] = ACTIONS(2881), - [anon_sym_noreturn] = ACTIONS(2881), - [anon_sym_mutable] = ACTIONS(2881), - [anon_sym_constinit] = ACTIONS(2881), - [anon_sym_consteval] = ACTIONS(2881), - [sym_primitive_type] = ACTIONS(2881), - [anon_sym_enum] = ACTIONS(2881), - [anon_sym_class] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2881), - [anon_sym_union] = ACTIONS(2881), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2881), - [anon_sym_decltype] = ACTIONS(2881), - [anon_sym_virtual] = ACTIONS(2881), - [anon_sym_alignas] = ACTIONS(2881), - [anon_sym_explicit] = ACTIONS(2881), - [anon_sym_typename] = ACTIONS(2881), - [anon_sym_template] = ACTIONS(2881), - [anon_sym_operator] = ACTIONS(2881), - [anon_sym_friend] = ACTIONS(2881), - [anon_sym_public] = ACTIONS(2881), - [anon_sym_private] = ACTIONS(2881), - [anon_sym_protected] = ACTIONS(2881), - [anon_sym_using] = ACTIONS(2881), - [anon_sym_static_assert] = ACTIONS(2881), - }, - [2468] = { - [sym_identifier] = ACTIONS(2873), - [aux_sym_preproc_def_token1] = ACTIONS(2873), - [aux_sym_preproc_if_token1] = ACTIONS(2873), - [aux_sym_preproc_if_token2] = ACTIONS(2873), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2873), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2873), - [aux_sym_preproc_else_token1] = ACTIONS(2873), - [aux_sym_preproc_elif_token1] = ACTIONS(2873), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2873), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2873), - [sym_preproc_directive] = ACTIONS(2873), - [anon_sym_LPAREN2] = ACTIONS(2875), - [anon_sym_TILDE] = ACTIONS(2875), - [anon_sym_STAR] = ACTIONS(2875), - [anon_sym_AMP_AMP] = ACTIONS(2875), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym___extension__] = ACTIONS(2873), - [anon_sym_typedef] = ACTIONS(2873), - [anon_sym_extern] = ACTIONS(2873), - [anon_sym___attribute__] = ACTIONS(2873), - [anon_sym_COLON_COLON] = ACTIONS(2875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2875), - [anon_sym___declspec] = ACTIONS(2873), - [anon_sym___based] = ACTIONS(2873), - [anon_sym_signed] = ACTIONS(2873), - [anon_sym_unsigned] = ACTIONS(2873), - [anon_sym_long] = ACTIONS(2873), - [anon_sym_short] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_register] = ACTIONS(2873), - [anon_sym_inline] = ACTIONS(2873), - [anon_sym___inline] = ACTIONS(2873), - [anon_sym___inline__] = ACTIONS(2873), - [anon_sym___forceinline] = ACTIONS(2873), - [anon_sym_thread_local] = ACTIONS(2873), - [anon_sym___thread] = ACTIONS(2873), - [anon_sym_const] = ACTIONS(2873), - [anon_sym_constexpr] = ACTIONS(2873), - [anon_sym_volatile] = ACTIONS(2873), - [anon_sym_restrict] = ACTIONS(2873), - [anon_sym___restrict__] = ACTIONS(2873), - [anon_sym__Atomic] = ACTIONS(2873), - [anon_sym__Noreturn] = ACTIONS(2873), - [anon_sym_noreturn] = ACTIONS(2873), - [anon_sym_mutable] = ACTIONS(2873), - [anon_sym_constinit] = ACTIONS(2873), - [anon_sym_consteval] = ACTIONS(2873), - [sym_primitive_type] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2873), - [anon_sym_union] = ACTIONS(2873), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2873), - [anon_sym_decltype] = ACTIONS(2873), - [anon_sym_virtual] = ACTIONS(2873), - [anon_sym_alignas] = ACTIONS(2873), - [anon_sym_explicit] = ACTIONS(2873), - [anon_sym_typename] = ACTIONS(2873), - [anon_sym_template] = ACTIONS(2873), - [anon_sym_operator] = ACTIONS(2873), - [anon_sym_friend] = ACTIONS(2873), - [anon_sym_public] = ACTIONS(2873), - [anon_sym_private] = ACTIONS(2873), - [anon_sym_protected] = ACTIONS(2873), - [anon_sym_using] = ACTIONS(2873), - [anon_sym_static_assert] = ACTIONS(2873), - }, - [2469] = { - [sym_identifier] = ACTIONS(2869), - [aux_sym_preproc_def_token1] = ACTIONS(2869), - [aux_sym_preproc_if_token1] = ACTIONS(2869), - [aux_sym_preproc_if_token2] = ACTIONS(2869), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2869), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2869), - [aux_sym_preproc_else_token1] = ACTIONS(2869), - [aux_sym_preproc_elif_token1] = ACTIONS(2869), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2869), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2869), - [sym_preproc_directive] = ACTIONS(2869), - [anon_sym_LPAREN2] = ACTIONS(2871), - [anon_sym_TILDE] = ACTIONS(2871), - [anon_sym_STAR] = ACTIONS(2871), - [anon_sym_AMP_AMP] = ACTIONS(2871), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym___extension__] = ACTIONS(2869), - [anon_sym_typedef] = ACTIONS(2869), - [anon_sym_extern] = ACTIONS(2869), - [anon_sym___attribute__] = ACTIONS(2869), - [anon_sym_COLON_COLON] = ACTIONS(2871), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2871), - [anon_sym___declspec] = ACTIONS(2869), - [anon_sym___based] = ACTIONS(2869), - [anon_sym_signed] = ACTIONS(2869), - [anon_sym_unsigned] = ACTIONS(2869), - [anon_sym_long] = ACTIONS(2869), - [anon_sym_short] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_static] = ACTIONS(2869), - [anon_sym_register] = ACTIONS(2869), - [anon_sym_inline] = ACTIONS(2869), - [anon_sym___inline] = ACTIONS(2869), - [anon_sym___inline__] = ACTIONS(2869), - [anon_sym___forceinline] = ACTIONS(2869), - [anon_sym_thread_local] = ACTIONS(2869), - [anon_sym___thread] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2869), - [anon_sym_constexpr] = ACTIONS(2869), - [anon_sym_volatile] = ACTIONS(2869), - [anon_sym_restrict] = ACTIONS(2869), - [anon_sym___restrict__] = ACTIONS(2869), - [anon_sym__Atomic] = ACTIONS(2869), - [anon_sym__Noreturn] = ACTIONS(2869), - [anon_sym_noreturn] = ACTIONS(2869), - [anon_sym_mutable] = ACTIONS(2869), - [anon_sym_constinit] = ACTIONS(2869), - [anon_sym_consteval] = ACTIONS(2869), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2869), - [anon_sym_class] = ACTIONS(2869), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_union] = ACTIONS(2869), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2869), - [anon_sym_decltype] = ACTIONS(2869), - [anon_sym_virtual] = ACTIONS(2869), - [anon_sym_alignas] = ACTIONS(2869), - [anon_sym_explicit] = ACTIONS(2869), - [anon_sym_typename] = ACTIONS(2869), - [anon_sym_template] = ACTIONS(2869), - [anon_sym_operator] = ACTIONS(2869), - [anon_sym_friend] = ACTIONS(2869), - [anon_sym_public] = ACTIONS(2869), - [anon_sym_private] = ACTIONS(2869), - [anon_sym_protected] = ACTIONS(2869), - [anon_sym_using] = ACTIONS(2869), - [anon_sym_static_assert] = ACTIONS(2869), - }, - [2470] = { - [sym_string_literal] = STATE(2397), - [sym_template_argument_list] = STATE(3292), - [sym_raw_string_literal] = STATE(2397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(5198), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5140), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(5200), - [anon_sym_EQ] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_and_eq] = ACTIONS(4278), - [anon_sym_or_eq] = ACTIONS(4278), - [anon_sym_xor_eq] = ACTIONS(4278), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(5136), - [anon_sym_u_DQUOTE] = ACTIONS(5136), - [anon_sym_U_DQUOTE] = ACTIONS(5136), - [anon_sym_u8_DQUOTE] = ACTIONS(5136), - [anon_sym_DQUOTE] = ACTIONS(5136), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5138), - [anon_sym_LR_DQUOTE] = ACTIONS(5138), - [anon_sym_uR_DQUOTE] = ACTIONS(5138), - [anon_sym_UR_DQUOTE] = ACTIONS(5138), - [anon_sym_u8R_DQUOTE] = ACTIONS(5138), - }, - [2471] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(4762), - [sym_raw_string_literal] = STATE(3456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(5198), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(5200), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4312), - [anon_sym_or_eq] = ACTIONS(4312), - [anon_sym_xor_eq] = ACTIONS(4312), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [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), - }, - [2472] = { - [sym_identifier] = ACTIONS(3224), - [aux_sym_preproc_def_token1] = ACTIONS(3224), - [aux_sym_preproc_if_token1] = ACTIONS(3224), - [aux_sym_preproc_if_token2] = ACTIONS(3224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3224), - [aux_sym_preproc_else_token1] = ACTIONS(3224), - [aux_sym_preproc_elif_token1] = ACTIONS(3224), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3224), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3224), - [sym_preproc_directive] = ACTIONS(3224), - [anon_sym_LPAREN2] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3226), - [anon_sym_AMP_AMP] = ACTIONS(3226), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym___extension__] = ACTIONS(3224), - [anon_sym_typedef] = ACTIONS(3224), - [anon_sym_extern] = ACTIONS(3224), - [anon_sym___attribute__] = ACTIONS(3224), - [anon_sym_COLON_COLON] = ACTIONS(3226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3226), - [anon_sym___declspec] = ACTIONS(3224), - [anon_sym___based] = ACTIONS(3224), - [anon_sym_signed] = ACTIONS(3224), - [anon_sym_unsigned] = ACTIONS(3224), - [anon_sym_long] = ACTIONS(3224), - [anon_sym_short] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_register] = ACTIONS(3224), - [anon_sym_inline] = ACTIONS(3224), - [anon_sym___inline] = ACTIONS(3224), - [anon_sym___inline__] = ACTIONS(3224), - [anon_sym___forceinline] = ACTIONS(3224), - [anon_sym_thread_local] = ACTIONS(3224), - [anon_sym___thread] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_constexpr] = ACTIONS(3224), - [anon_sym_volatile] = ACTIONS(3224), - [anon_sym_restrict] = ACTIONS(3224), - [anon_sym___restrict__] = ACTIONS(3224), - [anon_sym__Atomic] = ACTIONS(3224), - [anon_sym__Noreturn] = ACTIONS(3224), - [anon_sym_noreturn] = ACTIONS(3224), - [anon_sym_mutable] = ACTIONS(3224), - [anon_sym_constinit] = ACTIONS(3224), - [anon_sym_consteval] = ACTIONS(3224), - [sym_primitive_type] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_struct] = ACTIONS(3224), - [anon_sym_union] = ACTIONS(3224), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3224), - [anon_sym_decltype] = ACTIONS(3224), - [anon_sym_virtual] = ACTIONS(3224), - [anon_sym_alignas] = ACTIONS(3224), - [anon_sym_explicit] = ACTIONS(3224), - [anon_sym_typename] = ACTIONS(3224), - [anon_sym_template] = ACTIONS(3224), - [anon_sym_operator] = ACTIONS(3224), - [anon_sym_friend] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_using] = ACTIONS(3224), - [anon_sym_static_assert] = ACTIONS(3224), - }, - [2473] = { - [sym_identifier] = ACTIONS(3270), - [aux_sym_preproc_def_token1] = ACTIONS(3270), - [aux_sym_preproc_if_token1] = ACTIONS(3270), - [aux_sym_preproc_if_token2] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3270), - [aux_sym_preproc_else_token1] = ACTIONS(3270), - [aux_sym_preproc_elif_token1] = ACTIONS(3270), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3270), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3270), - [sym_preproc_directive] = ACTIONS(3270), - [anon_sym_LPAREN2] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_AMP] = ACTIONS(3270), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym_typedef] = ACTIONS(3270), - [anon_sym_extern] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3272), - [anon_sym___declspec] = ACTIONS(3270), - [anon_sym___based] = ACTIONS(3270), - [anon_sym_signed] = ACTIONS(3270), - [anon_sym_unsigned] = ACTIONS(3270), - [anon_sym_long] = ACTIONS(3270), - [anon_sym_short] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_register] = ACTIONS(3270), - [anon_sym_inline] = ACTIONS(3270), - [anon_sym___inline] = ACTIONS(3270), - [anon_sym___inline__] = ACTIONS(3270), - [anon_sym___forceinline] = ACTIONS(3270), - [anon_sym_thread_local] = ACTIONS(3270), - [anon_sym___thread] = ACTIONS(3270), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [sym_primitive_type] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3270), - [anon_sym_struct] = ACTIONS(3270), - [anon_sym_union] = ACTIONS(3270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3270), - [anon_sym_decltype] = ACTIONS(3270), - [anon_sym_virtual] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3270), - [anon_sym_explicit] = ACTIONS(3270), - [anon_sym_typename] = ACTIONS(3270), - [anon_sym_template] = ACTIONS(3270), - [anon_sym_operator] = ACTIONS(3270), - [anon_sym_friend] = ACTIONS(3270), - [anon_sym_public] = ACTIONS(3270), - [anon_sym_private] = ACTIONS(3270), - [anon_sym_protected] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3270), - [anon_sym_static_assert] = ACTIONS(3270), - }, - [2474] = { - [sym_identifier] = ACTIONS(3352), - [aux_sym_preproc_def_token1] = ACTIONS(3352), - [aux_sym_preproc_if_token1] = ACTIONS(3352), - [aux_sym_preproc_if_token2] = ACTIONS(3352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3352), - [aux_sym_preproc_else_token1] = ACTIONS(3352), - [aux_sym_preproc_elif_token1] = ACTIONS(3352), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3352), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3352), - [sym_preproc_directive] = ACTIONS(3352), - [anon_sym_LPAREN2] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_AMP_AMP] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym___extension__] = ACTIONS(3352), - [anon_sym_typedef] = ACTIONS(3352), - [anon_sym_extern] = ACTIONS(3352), - [anon_sym___attribute__] = ACTIONS(3352), - [anon_sym_COLON_COLON] = ACTIONS(3354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3354), - [anon_sym___declspec] = ACTIONS(3352), - [anon_sym___based] = ACTIONS(3352), - [anon_sym_signed] = ACTIONS(3352), - [anon_sym_unsigned] = ACTIONS(3352), - [anon_sym_long] = ACTIONS(3352), - [anon_sym_short] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_static] = ACTIONS(3352), - [anon_sym_register] = ACTIONS(3352), - [anon_sym_inline] = ACTIONS(3352), - [anon_sym___inline] = ACTIONS(3352), - [anon_sym___inline__] = ACTIONS(3352), - [anon_sym___forceinline] = ACTIONS(3352), - [anon_sym_thread_local] = ACTIONS(3352), - [anon_sym___thread] = ACTIONS(3352), - [anon_sym_const] = ACTIONS(3352), - [anon_sym_constexpr] = ACTIONS(3352), - [anon_sym_volatile] = ACTIONS(3352), - [anon_sym_restrict] = ACTIONS(3352), - [anon_sym___restrict__] = ACTIONS(3352), - [anon_sym__Atomic] = ACTIONS(3352), - [anon_sym__Noreturn] = ACTIONS(3352), - [anon_sym_noreturn] = ACTIONS(3352), - [anon_sym_mutable] = ACTIONS(3352), - [anon_sym_constinit] = ACTIONS(3352), - [anon_sym_consteval] = ACTIONS(3352), - [sym_primitive_type] = ACTIONS(3352), - [anon_sym_enum] = ACTIONS(3352), - [anon_sym_class] = ACTIONS(3352), - [anon_sym_struct] = ACTIONS(3352), - [anon_sym_union] = ACTIONS(3352), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3352), - [anon_sym_decltype] = ACTIONS(3352), - [anon_sym_virtual] = ACTIONS(3352), - [anon_sym_alignas] = ACTIONS(3352), - [anon_sym_explicit] = ACTIONS(3352), - [anon_sym_typename] = ACTIONS(3352), - [anon_sym_template] = ACTIONS(3352), - [anon_sym_operator] = ACTIONS(3352), - [anon_sym_friend] = ACTIONS(3352), - [anon_sym_public] = ACTIONS(3352), - [anon_sym_private] = ACTIONS(3352), - [anon_sym_protected] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3352), - [anon_sym_static_assert] = ACTIONS(3352), - }, - [2475] = { - [sym_identifier] = ACTIONS(4844), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4846), - [anon_sym_COMMA] = ACTIONS(4846), - [anon_sym_RPAREN] = ACTIONS(4846), - [anon_sym_LPAREN2] = ACTIONS(4846), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4846), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4846), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE] = ACTIONS(4844), - [anon_sym_CARET] = ACTIONS(4846), - [anon_sym_AMP] = ACTIONS(4844), - [anon_sym_EQ_EQ] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4846), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4844), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_LT_LT] = ACTIONS(4846), - [anon_sym_GT_GT] = ACTIONS(4846), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym___extension__] = ACTIONS(4844), - [anon_sym___attribute__] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym___based] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_signed] = ACTIONS(4844), - [anon_sym_unsigned] = ACTIONS(4844), - [anon_sym_long] = ACTIONS(4844), - [anon_sym_short] = ACTIONS(4844), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_RBRACK] = ACTIONS(4846), - [anon_sym_const] = ACTIONS(4844), - [anon_sym_constexpr] = ACTIONS(4844), - [anon_sym_volatile] = ACTIONS(4844), - [anon_sym_restrict] = ACTIONS(4844), - [anon_sym___restrict__] = ACTIONS(4844), - [anon_sym__Atomic] = ACTIONS(4844), - [anon_sym__Noreturn] = ACTIONS(4844), - [anon_sym_noreturn] = ACTIONS(4844), - [anon_sym_mutable] = ACTIONS(4844), - [anon_sym_constinit] = ACTIONS(4844), - [anon_sym_consteval] = ACTIONS(4844), - [sym_primitive_type] = ACTIONS(4844), - [anon_sym_COLON] = ACTIONS(4844), - [anon_sym_QMARK] = ACTIONS(4846), - [anon_sym_LT_EQ_GT] = ACTIONS(4846), - [anon_sym_or] = ACTIONS(4844), - [anon_sym_and] = ACTIONS(4844), - [anon_sym_bitor] = ACTIONS(4844), - [anon_sym_xor] = ACTIONS(4844), - [anon_sym_bitand] = ACTIONS(4844), - [anon_sym_not_eq] = ACTIONS(4844), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_DOT_STAR] = ACTIONS(4846), - [anon_sym_DASH_GT] = ACTIONS(4846), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4844), - [anon_sym_decltype] = ACTIONS(4844), - [anon_sym_final] = ACTIONS(4844), - [anon_sym_override] = ACTIONS(4844), - [anon_sym_requires] = ACTIONS(4844), - }, - [2476] = { - [sym_identifier] = ACTIONS(2965), - [aux_sym_preproc_def_token1] = ACTIONS(2965), - [aux_sym_preproc_if_token1] = ACTIONS(2965), - [aux_sym_preproc_if_token2] = ACTIONS(2965), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), - [aux_sym_preproc_else_token1] = ACTIONS(2965), - [aux_sym_preproc_elif_token1] = ACTIONS(2965), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2965), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2965), - [sym_preproc_directive] = ACTIONS(2965), - [anon_sym_LPAREN2] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_AMP_AMP] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym___extension__] = ACTIONS(2965), - [anon_sym_typedef] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2965), - [anon_sym___attribute__] = ACTIONS(2965), - [anon_sym_COLON_COLON] = ACTIONS(2967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), - [anon_sym___declspec] = ACTIONS(2965), - [anon_sym___based] = ACTIONS(2965), - [anon_sym_signed] = ACTIONS(2965), - [anon_sym_unsigned] = ACTIONS(2965), - [anon_sym_long] = ACTIONS(2965), - [anon_sym_short] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2965), - [anon_sym_static] = ACTIONS(2965), - [anon_sym_register] = ACTIONS(2965), - [anon_sym_inline] = ACTIONS(2965), - [anon_sym___inline] = ACTIONS(2965), - [anon_sym___inline__] = ACTIONS(2965), - [anon_sym___forceinline] = ACTIONS(2965), - [anon_sym_thread_local] = ACTIONS(2965), - [anon_sym___thread] = ACTIONS(2965), - [anon_sym_const] = ACTIONS(2965), - [anon_sym_constexpr] = ACTIONS(2965), - [anon_sym_volatile] = ACTIONS(2965), - [anon_sym_restrict] = ACTIONS(2965), - [anon_sym___restrict__] = ACTIONS(2965), - [anon_sym__Atomic] = ACTIONS(2965), - [anon_sym__Noreturn] = ACTIONS(2965), - [anon_sym_noreturn] = ACTIONS(2965), - [anon_sym_mutable] = ACTIONS(2965), - [anon_sym_constinit] = ACTIONS(2965), - [anon_sym_consteval] = ACTIONS(2965), - [sym_primitive_type] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2965), - [anon_sym_class] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_union] = ACTIONS(2965), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2965), - [anon_sym_decltype] = ACTIONS(2965), - [anon_sym_virtual] = ACTIONS(2965), - [anon_sym_alignas] = ACTIONS(2965), - [anon_sym_explicit] = ACTIONS(2965), - [anon_sym_typename] = ACTIONS(2965), - [anon_sym_template] = ACTIONS(2965), - [anon_sym_operator] = ACTIONS(2965), - [anon_sym_friend] = ACTIONS(2965), - [anon_sym_public] = ACTIONS(2965), - [anon_sym_private] = ACTIONS(2965), - [anon_sym_protected] = ACTIONS(2965), - [anon_sym_using] = ACTIONS(2965), - [anon_sym_static_assert] = ACTIONS(2965), - }, - [2477] = { - [sym_identifier] = ACTIONS(4856), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4858), - [anon_sym_COMMA] = ACTIONS(4858), - [anon_sym_RPAREN] = ACTIONS(4858), - [anon_sym_LPAREN2] = ACTIONS(4858), - [anon_sym_DASH] = ACTIONS(4856), - [anon_sym_PLUS] = ACTIONS(4856), - [anon_sym_STAR] = ACTIONS(4858), - [anon_sym_SLASH] = ACTIONS(4856), - [anon_sym_PERCENT] = ACTIONS(4858), - [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_AMP_AMP] = ACTIONS(4858), - [anon_sym_PIPE] = ACTIONS(4856), - [anon_sym_CARET] = ACTIONS(4858), - [anon_sym_AMP] = ACTIONS(4856), - [anon_sym_EQ_EQ] = ACTIONS(4858), - [anon_sym_BANG_EQ] = ACTIONS(4858), - [anon_sym_GT] = ACTIONS(4856), - [anon_sym_GT_EQ] = ACTIONS(4858), - [anon_sym_LT_EQ] = ACTIONS(4856), - [anon_sym_LT] = ACTIONS(4856), - [anon_sym_LT_LT] = ACTIONS(4858), - [anon_sym_GT_GT] = ACTIONS(4858), - [anon_sym_SEMI] = ACTIONS(4858), - [anon_sym___extension__] = ACTIONS(4856), - [anon_sym___attribute__] = ACTIONS(4856), - [anon_sym_COLON_COLON] = ACTIONS(4858), - [anon_sym___based] = ACTIONS(4856), - [anon_sym_LBRACE] = ACTIONS(4858), - [anon_sym_RBRACE] = ACTIONS(4858), - [anon_sym_signed] = ACTIONS(4856), - [anon_sym_unsigned] = ACTIONS(4856), - [anon_sym_long] = ACTIONS(4856), - [anon_sym_short] = ACTIONS(4856), - [anon_sym_LBRACK] = ACTIONS(4858), - [anon_sym_RBRACK] = ACTIONS(4858), - [anon_sym_const] = ACTIONS(4856), - [anon_sym_constexpr] = ACTIONS(4856), - [anon_sym_volatile] = ACTIONS(4856), - [anon_sym_restrict] = ACTIONS(4856), - [anon_sym___restrict__] = ACTIONS(4856), - [anon_sym__Atomic] = ACTIONS(4856), - [anon_sym__Noreturn] = ACTIONS(4856), - [anon_sym_noreturn] = ACTIONS(4856), - [anon_sym_mutable] = ACTIONS(4856), - [anon_sym_constinit] = ACTIONS(4856), - [anon_sym_consteval] = ACTIONS(4856), - [sym_primitive_type] = ACTIONS(4856), - [anon_sym_COLON] = ACTIONS(4856), - [anon_sym_QMARK] = ACTIONS(4858), - [anon_sym_LT_EQ_GT] = ACTIONS(4858), - [anon_sym_or] = ACTIONS(4856), - [anon_sym_and] = ACTIONS(4856), - [anon_sym_bitor] = ACTIONS(4856), - [anon_sym_xor] = ACTIONS(4856), - [anon_sym_bitand] = ACTIONS(4856), - [anon_sym_not_eq] = ACTIONS(4856), - [anon_sym_DASH_DASH] = ACTIONS(4858), - [anon_sym_PLUS_PLUS] = ACTIONS(4858), - [anon_sym_DOT] = ACTIONS(4856), - [anon_sym_DOT_STAR] = ACTIONS(4858), - [anon_sym_DASH_GT] = ACTIONS(4858), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4856), - [anon_sym_decltype] = ACTIONS(4856), - [anon_sym_final] = ACTIONS(4856), - [anon_sym_override] = ACTIONS(4856), - [anon_sym_requires] = ACTIONS(4856), - }, - [2478] = { - [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___extension__] = ACTIONS(2977), - [anon_sym_typedef] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym___attribute__] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2979), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), - [anon_sym___declspec] = ACTIONS(2977), - [anon_sym___based] = ACTIONS(2977), - [anon_sym_signed] = ACTIONS(2977), - [anon_sym_unsigned] = ACTIONS(2977), - [anon_sym_long] = ACTIONS(2977), - [anon_sym_short] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_static] = ACTIONS(2977), - [anon_sym_register] = ACTIONS(2977), - [anon_sym_inline] = ACTIONS(2977), - [anon_sym___inline] = ACTIONS(2977), - [anon_sym___inline__] = ACTIONS(2977), - [anon_sym___forceinline] = ACTIONS(2977), - [anon_sym_thread_local] = ACTIONS(2977), - [anon_sym___thread] = ACTIONS(2977), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_constexpr] = ACTIONS(2977), - [anon_sym_volatile] = ACTIONS(2977), - [anon_sym_restrict] = ACTIONS(2977), - [anon_sym___restrict__] = ACTIONS(2977), - [anon_sym__Atomic] = ACTIONS(2977), - [anon_sym__Noreturn] = ACTIONS(2977), - [anon_sym_noreturn] = ACTIONS(2977), - [anon_sym_mutable] = ACTIONS(2977), - [anon_sym_constinit] = ACTIONS(2977), - [anon_sym_consteval] = ACTIONS(2977), - [sym_primitive_type] = ACTIONS(2977), - [anon_sym_enum] = ACTIONS(2977), - [anon_sym_class] = ACTIONS(2977), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_union] = ACTIONS(2977), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2977), - [anon_sym_decltype] = ACTIONS(2977), - [anon_sym_virtual] = ACTIONS(2977), - [anon_sym_alignas] = ACTIONS(2977), - [anon_sym_explicit] = ACTIONS(2977), - [anon_sym_typename] = ACTIONS(2977), - [anon_sym_template] = ACTIONS(2977), - [anon_sym_operator] = ACTIONS(2977), - [anon_sym_friend] = ACTIONS(2977), - [anon_sym_public] = ACTIONS(2977), - [anon_sym_private] = ACTIONS(2977), - [anon_sym_protected] = ACTIONS(2977), - [anon_sym_using] = ACTIONS(2977), - [anon_sym_static_assert] = ACTIONS(2977), - }, - [2479] = { - [sym_identifier] = ACTIONS(5202), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5204), - [anon_sym_COMMA] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5204), - [anon_sym_LPAREN2] = ACTIONS(5204), - [anon_sym_DASH] = ACTIONS(5202), - [anon_sym_PLUS] = ACTIONS(5202), - [anon_sym_STAR] = ACTIONS(5204), - [anon_sym_SLASH] = ACTIONS(5202), - [anon_sym_PERCENT] = ACTIONS(5204), - [anon_sym_PIPE_PIPE] = ACTIONS(5204), - [anon_sym_AMP_AMP] = ACTIONS(5204), - [anon_sym_PIPE] = ACTIONS(5202), - [anon_sym_CARET] = ACTIONS(5204), - [anon_sym_AMP] = ACTIONS(5202), - [anon_sym_EQ_EQ] = ACTIONS(5204), - [anon_sym_BANG_EQ] = ACTIONS(5204), - [anon_sym_GT] = ACTIONS(5202), - [anon_sym_GT_EQ] = ACTIONS(5204), - [anon_sym_LT_EQ] = ACTIONS(5202), - [anon_sym_LT] = ACTIONS(5202), - [anon_sym_LT_LT] = ACTIONS(5204), - [anon_sym_GT_GT] = ACTIONS(5204), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym___extension__] = ACTIONS(5202), - [anon_sym___attribute__] = ACTIONS(5202), - [anon_sym_COLON_COLON] = ACTIONS(5206), - [anon_sym___based] = ACTIONS(5202), - [anon_sym_LBRACE] = ACTIONS(5204), - [anon_sym_RBRACE] = 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(5204), - [anon_sym_RBRACK] = ACTIONS(5204), - [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_mutable] = ACTIONS(5202), - [anon_sym_constinit] = ACTIONS(5202), - [anon_sym_consteval] = ACTIONS(5202), - [sym_primitive_type] = ACTIONS(5202), - [anon_sym_COLON] = ACTIONS(5202), - [anon_sym_QMARK] = ACTIONS(5204), - [anon_sym_LT_EQ_GT] = ACTIONS(5204), - [anon_sym_or] = ACTIONS(5202), - [anon_sym_and] = ACTIONS(5202), - [anon_sym_bitor] = ACTIONS(5202), - [anon_sym_xor] = ACTIONS(5202), - [anon_sym_bitand] = ACTIONS(5202), - [anon_sym_not_eq] = ACTIONS(5202), - [anon_sym_DASH_DASH] = ACTIONS(5204), - [anon_sym_PLUS_PLUS] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(5202), - [anon_sym_DOT_STAR] = ACTIONS(5204), - [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_requires] = ACTIONS(5202), - }, - [2480] = { - [sym_identifier] = ACTIONS(2844), - [aux_sym_preproc_def_token1] = ACTIONS(2844), - [aux_sym_preproc_if_token1] = ACTIONS(2844), - [aux_sym_preproc_if_token2] = ACTIONS(2844), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2844), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2844), - [aux_sym_preproc_else_token1] = ACTIONS(2844), - [aux_sym_preproc_elif_token1] = ACTIONS(2844), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2844), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2844), - [sym_preproc_directive] = ACTIONS(2844), - [anon_sym_LPAREN2] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2844), - [anon_sym___extension__] = ACTIONS(2844), - [anon_sym_typedef] = ACTIONS(2844), - [anon_sym_extern] = ACTIONS(2844), - [anon_sym___attribute__] = ACTIONS(2844), - [anon_sym_COLON_COLON] = ACTIONS(2846), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2846), - [anon_sym___declspec] = ACTIONS(2844), - [anon_sym___based] = ACTIONS(2844), - [anon_sym_signed] = ACTIONS(2844), - [anon_sym_unsigned] = ACTIONS(2844), - [anon_sym_long] = ACTIONS(2844), - [anon_sym_short] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_static] = ACTIONS(2844), - [anon_sym_register] = ACTIONS(2844), - [anon_sym_inline] = ACTIONS(2844), - [anon_sym___inline] = ACTIONS(2844), - [anon_sym___inline__] = ACTIONS(2844), - [anon_sym___forceinline] = ACTIONS(2844), - [anon_sym_thread_local] = ACTIONS(2844), - [anon_sym___thread] = ACTIONS(2844), - [anon_sym_const] = ACTIONS(2844), - [anon_sym_constexpr] = ACTIONS(2844), - [anon_sym_volatile] = ACTIONS(2844), - [anon_sym_restrict] = ACTIONS(2844), - [anon_sym___restrict__] = ACTIONS(2844), - [anon_sym__Atomic] = ACTIONS(2844), - [anon_sym__Noreturn] = ACTIONS(2844), - [anon_sym_noreturn] = ACTIONS(2844), - [anon_sym_mutable] = ACTIONS(2844), - [anon_sym_constinit] = ACTIONS(2844), - [anon_sym_consteval] = ACTIONS(2844), - [sym_primitive_type] = ACTIONS(2844), - [anon_sym_enum] = ACTIONS(2844), - [anon_sym_class] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(2844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2844), - [anon_sym_decltype] = ACTIONS(2844), - [anon_sym_virtual] = ACTIONS(2844), - [anon_sym_alignas] = ACTIONS(2844), - [anon_sym_explicit] = ACTIONS(2844), - [anon_sym_typename] = ACTIONS(2844), - [anon_sym_template] = ACTIONS(2844), - [anon_sym_operator] = ACTIONS(2844), - [anon_sym_friend] = ACTIONS(2844), - [anon_sym_public] = ACTIONS(2844), - [anon_sym_private] = ACTIONS(2844), - [anon_sym_protected] = ACTIONS(2844), - [anon_sym_using] = ACTIONS(2844), - [anon_sym_static_assert] = ACTIONS(2844), - }, - [2481] = { - [sym_identifier] = ACTIONS(5208), - [aux_sym_preproc_def_token1] = ACTIONS(5208), - [aux_sym_preproc_if_token1] = ACTIONS(5208), - [aux_sym_preproc_if_token2] = ACTIONS(5208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5208), - [aux_sym_preproc_else_token1] = ACTIONS(5208), - [aux_sym_preproc_elif_token1] = ACTIONS(5208), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5208), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5208), - [sym_preproc_directive] = ACTIONS(5208), - [anon_sym_LPAREN2] = ACTIONS(5210), - [anon_sym_TILDE] = ACTIONS(5210), - [anon_sym_STAR] = ACTIONS(5210), - [anon_sym_AMP_AMP] = ACTIONS(5210), - [anon_sym_AMP] = ACTIONS(5208), - [anon_sym___extension__] = ACTIONS(5208), - [anon_sym_typedef] = ACTIONS(5208), - [anon_sym_extern] = ACTIONS(5208), - [anon_sym___attribute__] = ACTIONS(5208), - [anon_sym_COLON_COLON] = ACTIONS(5210), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5210), - [anon_sym___declspec] = ACTIONS(5208), - [anon_sym___based] = ACTIONS(5208), - [anon_sym_signed] = ACTIONS(5208), - [anon_sym_unsigned] = ACTIONS(5208), - [anon_sym_long] = ACTIONS(5208), - [anon_sym_short] = ACTIONS(5208), - [anon_sym_LBRACK] = ACTIONS(5208), - [anon_sym_static] = ACTIONS(5208), - [anon_sym_register] = ACTIONS(5208), - [anon_sym_inline] = ACTIONS(5208), - [anon_sym___inline] = ACTIONS(5208), - [anon_sym___inline__] = ACTIONS(5208), - [anon_sym___forceinline] = ACTIONS(5208), - [anon_sym_thread_local] = ACTIONS(5208), - [anon_sym___thread] = ACTIONS(5208), - [anon_sym_const] = ACTIONS(5208), - [anon_sym_constexpr] = ACTIONS(5208), - [anon_sym_volatile] = ACTIONS(5208), - [anon_sym_restrict] = ACTIONS(5208), - [anon_sym___restrict__] = ACTIONS(5208), - [anon_sym__Atomic] = ACTIONS(5208), - [anon_sym__Noreturn] = ACTIONS(5208), - [anon_sym_noreturn] = ACTIONS(5208), - [anon_sym_mutable] = ACTIONS(5208), - [anon_sym_constinit] = ACTIONS(5208), - [anon_sym_consteval] = ACTIONS(5208), - [sym_primitive_type] = ACTIONS(5208), - [anon_sym_enum] = ACTIONS(5208), - [anon_sym_class] = ACTIONS(5208), - [anon_sym_struct] = ACTIONS(5208), - [anon_sym_union] = ACTIONS(5208), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5208), - [anon_sym_decltype] = ACTIONS(5208), - [anon_sym_virtual] = ACTIONS(5208), - [anon_sym_alignas] = ACTIONS(5208), - [anon_sym_explicit] = ACTIONS(5208), - [anon_sym_typename] = ACTIONS(5208), - [anon_sym_template] = ACTIONS(5208), - [anon_sym_operator] = ACTIONS(5208), - [anon_sym_friend] = ACTIONS(5208), - [anon_sym_public] = ACTIONS(5208), - [anon_sym_private] = ACTIONS(5208), - [anon_sym_protected] = ACTIONS(5208), - [anon_sym_using] = ACTIONS(5208), - [anon_sym_static_assert] = ACTIONS(5208), - }, - [2482] = { - [sym_identifier] = ACTIONS(3274), - [aux_sym_preproc_def_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token2] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), - [aux_sym_preproc_else_token1] = ACTIONS(3274), - [aux_sym_preproc_elif_token1] = ACTIONS(3274), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3274), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3274), - [sym_preproc_directive] = ACTIONS(3274), - [anon_sym_LPAREN2] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_AMP] = ACTIONS(3274), - [anon_sym___extension__] = ACTIONS(3274), - [anon_sym_typedef] = ACTIONS(3274), - [anon_sym_extern] = ACTIONS(3274), - [anon_sym___attribute__] = ACTIONS(3274), - [anon_sym_COLON_COLON] = ACTIONS(3276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), - [anon_sym___declspec] = ACTIONS(3274), - [anon_sym___based] = ACTIONS(3274), - [anon_sym_signed] = ACTIONS(3274), - [anon_sym_unsigned] = ACTIONS(3274), - [anon_sym_long] = ACTIONS(3274), - [anon_sym_short] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_register] = ACTIONS(3274), - [anon_sym_inline] = ACTIONS(3274), - [anon_sym___inline] = ACTIONS(3274), - [anon_sym___inline__] = ACTIONS(3274), - [anon_sym___forceinline] = ACTIONS(3274), - [anon_sym_thread_local] = ACTIONS(3274), - [anon_sym___thread] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_constexpr] = ACTIONS(3274), - [anon_sym_volatile] = ACTIONS(3274), - [anon_sym_restrict] = ACTIONS(3274), - [anon_sym___restrict__] = ACTIONS(3274), - [anon_sym__Atomic] = ACTIONS(3274), - [anon_sym__Noreturn] = ACTIONS(3274), - [anon_sym_noreturn] = ACTIONS(3274), - [anon_sym_mutable] = ACTIONS(3274), - [anon_sym_constinit] = ACTIONS(3274), - [anon_sym_consteval] = ACTIONS(3274), - [sym_primitive_type] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_union] = ACTIONS(3274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3274), - [anon_sym_decltype] = ACTIONS(3274), - [anon_sym_virtual] = ACTIONS(3274), - [anon_sym_alignas] = ACTIONS(3274), - [anon_sym_explicit] = ACTIONS(3274), - [anon_sym_typename] = ACTIONS(3274), - [anon_sym_template] = ACTIONS(3274), - [anon_sym_operator] = ACTIONS(3274), - [anon_sym_friend] = ACTIONS(3274), - [anon_sym_public] = ACTIONS(3274), - [anon_sym_private] = ACTIONS(3274), - [anon_sym_protected] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_static_assert] = ACTIONS(3274), - }, - [2483] = { - [sym_identifier] = ACTIONS(3278), - [aux_sym_preproc_def_token1] = ACTIONS(3278), - [aux_sym_preproc_if_token1] = ACTIONS(3278), - [aux_sym_preproc_if_token2] = ACTIONS(3278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3278), - [aux_sym_preproc_else_token1] = ACTIONS(3278), - [aux_sym_preproc_elif_token1] = ACTIONS(3278), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3278), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3278), - [sym_preproc_directive] = ACTIONS(3278), - [anon_sym_LPAREN2] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3280), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_AMP] = ACTIONS(3278), - [anon_sym___extension__] = ACTIONS(3278), - [anon_sym_typedef] = ACTIONS(3278), - [anon_sym_extern] = ACTIONS(3278), - [anon_sym___attribute__] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3280), - [anon_sym___declspec] = ACTIONS(3278), - [anon_sym___based] = ACTIONS(3278), - [anon_sym_signed] = ACTIONS(3278), - [anon_sym_unsigned] = ACTIONS(3278), - [anon_sym_long] = ACTIONS(3278), - [anon_sym_short] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3278), - [anon_sym_static] = ACTIONS(3278), - [anon_sym_register] = ACTIONS(3278), - [anon_sym_inline] = ACTIONS(3278), - [anon_sym___inline] = ACTIONS(3278), - [anon_sym___inline__] = ACTIONS(3278), - [anon_sym___forceinline] = ACTIONS(3278), - [anon_sym_thread_local] = ACTIONS(3278), - [anon_sym___thread] = ACTIONS(3278), - [anon_sym_const] = ACTIONS(3278), - [anon_sym_constexpr] = ACTIONS(3278), - [anon_sym_volatile] = ACTIONS(3278), - [anon_sym_restrict] = ACTIONS(3278), - [anon_sym___restrict__] = ACTIONS(3278), - [anon_sym__Atomic] = ACTIONS(3278), - [anon_sym__Noreturn] = ACTIONS(3278), - [anon_sym_noreturn] = ACTIONS(3278), - [anon_sym_mutable] = ACTIONS(3278), - [anon_sym_constinit] = ACTIONS(3278), - [anon_sym_consteval] = ACTIONS(3278), - [sym_primitive_type] = ACTIONS(3278), - [anon_sym_enum] = ACTIONS(3278), - [anon_sym_class] = ACTIONS(3278), - [anon_sym_struct] = ACTIONS(3278), - [anon_sym_union] = ACTIONS(3278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3278), - [anon_sym_decltype] = ACTIONS(3278), - [anon_sym_virtual] = ACTIONS(3278), - [anon_sym_alignas] = ACTIONS(3278), - [anon_sym_explicit] = ACTIONS(3278), - [anon_sym_typename] = ACTIONS(3278), - [anon_sym_template] = ACTIONS(3278), - [anon_sym_operator] = ACTIONS(3278), - [anon_sym_friend] = ACTIONS(3278), - [anon_sym_public] = ACTIONS(3278), - [anon_sym_private] = ACTIONS(3278), - [anon_sym_protected] = ACTIONS(3278), - [anon_sym_using] = ACTIONS(3278), - [anon_sym_static_assert] = ACTIONS(3278), - }, - [2484] = { - [sym_identifier] = ACTIONS(3308), - [aux_sym_preproc_def_token1] = ACTIONS(3308), - [aux_sym_preproc_if_token1] = ACTIONS(3308), - [aux_sym_preproc_if_token2] = ACTIONS(3308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3308), - [aux_sym_preproc_else_token1] = ACTIONS(3308), - [aux_sym_preproc_elif_token1] = ACTIONS(3308), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3308), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3308), - [sym_preproc_directive] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3310), - [anon_sym_STAR] = ACTIONS(3310), - [anon_sym_AMP_AMP] = ACTIONS(3310), - [anon_sym_AMP] = ACTIONS(3308), - [anon_sym___extension__] = ACTIONS(3308), - [anon_sym_typedef] = ACTIONS(3308), - [anon_sym_extern] = ACTIONS(3308), - [anon_sym___attribute__] = ACTIONS(3308), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3310), - [anon_sym___declspec] = ACTIONS(3308), - [anon_sym___based] = ACTIONS(3308), - [anon_sym_signed] = ACTIONS(3308), - [anon_sym_unsigned] = ACTIONS(3308), - [anon_sym_long] = ACTIONS(3308), - [anon_sym_short] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3308), - [anon_sym_static] = ACTIONS(3308), - [anon_sym_register] = ACTIONS(3308), - [anon_sym_inline] = ACTIONS(3308), - [anon_sym___inline] = ACTIONS(3308), - [anon_sym___inline__] = ACTIONS(3308), - [anon_sym___forceinline] = ACTIONS(3308), - [anon_sym_thread_local] = ACTIONS(3308), - [anon_sym___thread] = ACTIONS(3308), - [anon_sym_const] = ACTIONS(3308), - [anon_sym_constexpr] = ACTIONS(3308), - [anon_sym_volatile] = ACTIONS(3308), - [anon_sym_restrict] = ACTIONS(3308), - [anon_sym___restrict__] = ACTIONS(3308), - [anon_sym__Atomic] = ACTIONS(3308), - [anon_sym__Noreturn] = ACTIONS(3308), - [anon_sym_noreturn] = ACTIONS(3308), - [anon_sym_mutable] = ACTIONS(3308), - [anon_sym_constinit] = ACTIONS(3308), - [anon_sym_consteval] = ACTIONS(3308), - [sym_primitive_type] = ACTIONS(3308), - [anon_sym_enum] = ACTIONS(3308), - [anon_sym_class] = ACTIONS(3308), - [anon_sym_struct] = ACTIONS(3308), - [anon_sym_union] = ACTIONS(3308), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3308), - [anon_sym_decltype] = ACTIONS(3308), - [anon_sym_virtual] = ACTIONS(3308), - [anon_sym_alignas] = ACTIONS(3308), - [anon_sym_explicit] = ACTIONS(3308), - [anon_sym_typename] = ACTIONS(3308), - [anon_sym_template] = ACTIONS(3308), - [anon_sym_operator] = ACTIONS(3308), - [anon_sym_friend] = ACTIONS(3308), - [anon_sym_public] = ACTIONS(3308), - [anon_sym_private] = ACTIONS(3308), - [anon_sym_protected] = ACTIONS(3308), - [anon_sym_using] = ACTIONS(3308), - [anon_sym_static_assert] = ACTIONS(3308), - }, - [2485] = { - [sym_identifier] = ACTIONS(2989), - [aux_sym_preproc_def_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token2] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), - [aux_sym_preproc_else_token1] = ACTIONS(2989), - [aux_sym_preproc_elif_token1] = ACTIONS(2989), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2989), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2989), - [sym_preproc_directive] = ACTIONS(2989), - [anon_sym_LPAREN2] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym___extension__] = ACTIONS(2989), - [anon_sym_typedef] = ACTIONS(2989), - [anon_sym_extern] = ACTIONS(2989), - [anon_sym___attribute__] = ACTIONS(2989), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), - [anon_sym___declspec] = ACTIONS(2989), - [anon_sym___based] = ACTIONS(2989), - [anon_sym_signed] = ACTIONS(2989), - [anon_sym_unsigned] = ACTIONS(2989), - [anon_sym_long] = ACTIONS(2989), - [anon_sym_short] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_register] = ACTIONS(2989), - [anon_sym_inline] = ACTIONS(2989), - [anon_sym___inline] = ACTIONS(2989), - [anon_sym___inline__] = ACTIONS(2989), - [anon_sym___forceinline] = ACTIONS(2989), - [anon_sym_thread_local] = ACTIONS(2989), - [anon_sym___thread] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_constexpr] = ACTIONS(2989), - [anon_sym_volatile] = ACTIONS(2989), - [anon_sym_restrict] = ACTIONS(2989), - [anon_sym___restrict__] = ACTIONS(2989), - [anon_sym__Atomic] = ACTIONS(2989), - [anon_sym__Noreturn] = ACTIONS(2989), - [anon_sym_noreturn] = ACTIONS(2989), - [anon_sym_mutable] = ACTIONS(2989), - [anon_sym_constinit] = ACTIONS(2989), - [anon_sym_consteval] = ACTIONS(2989), - [sym_primitive_type] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_class] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2989), - [anon_sym_decltype] = ACTIONS(2989), - [anon_sym_virtual] = ACTIONS(2989), - [anon_sym_alignas] = ACTIONS(2989), - [anon_sym_explicit] = ACTIONS(2989), - [anon_sym_typename] = ACTIONS(2989), - [anon_sym_template] = ACTIONS(2989), - [anon_sym_operator] = ACTIONS(2989), - [anon_sym_friend] = ACTIONS(2989), - [anon_sym_public] = ACTIONS(2989), - [anon_sym_private] = ACTIONS(2989), - [anon_sym_protected] = ACTIONS(2989), - [anon_sym_using] = ACTIONS(2989), - [anon_sym_static_assert] = ACTIONS(2989), - }, - [2486] = { - [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___extension__] = ACTIONS(3003), - [anon_sym_typedef] = ACTIONS(3003), - [anon_sym_extern] = ACTIONS(3003), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3003), - [anon_sym_constinit] = ACTIONS(3003), - [anon_sym_consteval] = 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_virtual] = ACTIONS(3003), - [anon_sym_alignas] = ACTIONS(3003), - [anon_sym_explicit] = ACTIONS(3003), - [anon_sym_typename] = ACTIONS(3003), - [anon_sym_template] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_friend] = ACTIONS(3003), - [anon_sym_public] = ACTIONS(3003), - [anon_sym_private] = ACTIONS(3003), - [anon_sym_protected] = ACTIONS(3003), - [anon_sym_using] = ACTIONS(3003), - [anon_sym_static_assert] = ACTIONS(3003), - }, - [2487] = { - [sym_identifier] = ACTIONS(5212), - [aux_sym_preproc_def_token1] = ACTIONS(5212), - [aux_sym_preproc_if_token1] = ACTIONS(5212), - [aux_sym_preproc_if_token2] = ACTIONS(5212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5212), - [aux_sym_preproc_else_token1] = ACTIONS(5212), - [aux_sym_preproc_elif_token1] = ACTIONS(5212), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5212), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5212), - [sym_preproc_directive] = ACTIONS(5212), - [anon_sym_LPAREN2] = ACTIONS(5214), - [anon_sym_TILDE] = ACTIONS(5214), - [anon_sym_STAR] = ACTIONS(5214), - [anon_sym_AMP_AMP] = ACTIONS(5214), - [anon_sym_AMP] = ACTIONS(5212), - [anon_sym___extension__] = ACTIONS(5212), - [anon_sym_typedef] = ACTIONS(5212), - [anon_sym_extern] = ACTIONS(5212), - [anon_sym___attribute__] = ACTIONS(5212), - [anon_sym_COLON_COLON] = ACTIONS(5214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5214), - [anon_sym___declspec] = ACTIONS(5212), - [anon_sym___based] = ACTIONS(5212), - [anon_sym_signed] = ACTIONS(5212), - [anon_sym_unsigned] = ACTIONS(5212), - [anon_sym_long] = ACTIONS(5212), - [anon_sym_short] = ACTIONS(5212), - [anon_sym_LBRACK] = ACTIONS(5212), - [anon_sym_static] = ACTIONS(5212), - [anon_sym_register] = ACTIONS(5212), - [anon_sym_inline] = ACTIONS(5212), - [anon_sym___inline] = ACTIONS(5212), - [anon_sym___inline__] = ACTIONS(5212), - [anon_sym___forceinline] = ACTIONS(5212), - [anon_sym_thread_local] = ACTIONS(5212), - [anon_sym___thread] = ACTIONS(5212), - [anon_sym_const] = ACTIONS(5212), - [anon_sym_constexpr] = ACTIONS(5212), - [anon_sym_volatile] = ACTIONS(5212), - [anon_sym_restrict] = ACTIONS(5212), - [anon_sym___restrict__] = ACTIONS(5212), - [anon_sym__Atomic] = ACTIONS(5212), - [anon_sym__Noreturn] = ACTIONS(5212), - [anon_sym_noreturn] = ACTIONS(5212), - [anon_sym_mutable] = ACTIONS(5212), - [anon_sym_constinit] = ACTIONS(5212), - [anon_sym_consteval] = ACTIONS(5212), - [sym_primitive_type] = ACTIONS(5212), - [anon_sym_enum] = ACTIONS(5212), - [anon_sym_class] = ACTIONS(5212), - [anon_sym_struct] = ACTIONS(5212), - [anon_sym_union] = ACTIONS(5212), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5212), - [anon_sym_decltype] = ACTIONS(5212), - [anon_sym_virtual] = ACTIONS(5212), - [anon_sym_alignas] = ACTIONS(5212), - [anon_sym_explicit] = ACTIONS(5212), - [anon_sym_typename] = ACTIONS(5212), - [anon_sym_template] = ACTIONS(5212), - [anon_sym_operator] = ACTIONS(5212), - [anon_sym_friend] = ACTIONS(5212), - [anon_sym_public] = ACTIONS(5212), - [anon_sym_private] = ACTIONS(5212), - [anon_sym_protected] = ACTIONS(5212), - [anon_sym_using] = ACTIONS(5212), - [anon_sym_static_assert] = ACTIONS(5212), - }, - [2488] = { - [sym_identifier] = ACTIONS(4884), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4886), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_LPAREN2] = ACTIONS(4886), - [anon_sym_DASH] = ACTIONS(4884), - [anon_sym_PLUS] = ACTIONS(4884), - [anon_sym_STAR] = ACTIONS(4886), - [anon_sym_SLASH] = ACTIONS(4884), - [anon_sym_PERCENT] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4884), - [anon_sym_CARET] = ACTIONS(4886), - [anon_sym_AMP] = ACTIONS(4884), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4884), - [anon_sym_GT_EQ] = ACTIONS(4886), - [anon_sym_LT_EQ] = ACTIONS(4884), - [anon_sym_LT] = ACTIONS(4884), - [anon_sym_LT_LT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4886), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym___extension__] = ACTIONS(4884), - [anon_sym___attribute__] = ACTIONS(4884), - [anon_sym_COLON_COLON] = ACTIONS(4886), - [anon_sym___based] = ACTIONS(4884), - [anon_sym_LBRACE] = ACTIONS(4886), - [anon_sym_RBRACE] = ACTIONS(4886), - [anon_sym_signed] = ACTIONS(4884), - [anon_sym_unsigned] = ACTIONS(4884), - [anon_sym_long] = ACTIONS(4884), - [anon_sym_short] = ACTIONS(4884), - [anon_sym_LBRACK] = ACTIONS(4886), - [anon_sym_RBRACK] = ACTIONS(4886), - [anon_sym_const] = ACTIONS(4884), - [anon_sym_constexpr] = ACTIONS(4884), - [anon_sym_volatile] = ACTIONS(4884), - [anon_sym_restrict] = ACTIONS(4884), - [anon_sym___restrict__] = ACTIONS(4884), - [anon_sym__Atomic] = ACTIONS(4884), - [anon_sym__Noreturn] = ACTIONS(4884), - [anon_sym_noreturn] = ACTIONS(4884), - [anon_sym_mutable] = ACTIONS(4884), - [anon_sym_constinit] = ACTIONS(4884), - [anon_sym_consteval] = ACTIONS(4884), - [sym_primitive_type] = ACTIONS(4884), - [anon_sym_COLON] = ACTIONS(4884), - [anon_sym_QMARK] = ACTIONS(4886), - [anon_sym_LT_EQ_GT] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4884), - [anon_sym_and] = ACTIONS(4884), - [anon_sym_bitor] = ACTIONS(4884), - [anon_sym_xor] = ACTIONS(4884), - [anon_sym_bitand] = ACTIONS(4884), - [anon_sym_not_eq] = ACTIONS(4884), - [anon_sym_DASH_DASH] = ACTIONS(4886), - [anon_sym_PLUS_PLUS] = ACTIONS(4886), - [anon_sym_DOT] = ACTIONS(4884), - [anon_sym_DOT_STAR] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4886), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4884), - [anon_sym_decltype] = ACTIONS(4884), - [anon_sym_final] = ACTIONS(4884), - [anon_sym_override] = ACTIONS(4884), - [anon_sym_requires] = ACTIONS(4884), - }, - [2489] = { - [sym_identifier] = ACTIONS(5216), - [aux_sym_preproc_def_token1] = ACTIONS(5216), - [aux_sym_preproc_if_token1] = ACTIONS(5216), - [aux_sym_preproc_if_token2] = ACTIONS(5216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5216), - [aux_sym_preproc_else_token1] = ACTIONS(5216), - [aux_sym_preproc_elif_token1] = ACTIONS(5216), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5216), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5216), - [sym_preproc_directive] = ACTIONS(5216), - [anon_sym_LPAREN2] = ACTIONS(5218), - [anon_sym_TILDE] = ACTIONS(5218), - [anon_sym_STAR] = ACTIONS(5218), - [anon_sym_AMP_AMP] = ACTIONS(5218), - [anon_sym_AMP] = ACTIONS(5216), - [anon_sym___extension__] = ACTIONS(5216), - [anon_sym_typedef] = ACTIONS(5216), - [anon_sym_extern] = ACTIONS(5216), - [anon_sym___attribute__] = ACTIONS(5216), - [anon_sym_COLON_COLON] = ACTIONS(5218), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5218), - [anon_sym___declspec] = ACTIONS(5216), - [anon_sym___based] = ACTIONS(5216), - [anon_sym_signed] = ACTIONS(5216), - [anon_sym_unsigned] = ACTIONS(5216), - [anon_sym_long] = ACTIONS(5216), - [anon_sym_short] = ACTIONS(5216), - [anon_sym_LBRACK] = ACTIONS(5216), - [anon_sym_static] = ACTIONS(5216), - [anon_sym_register] = ACTIONS(5216), - [anon_sym_inline] = ACTIONS(5216), - [anon_sym___inline] = ACTIONS(5216), - [anon_sym___inline__] = ACTIONS(5216), - [anon_sym___forceinline] = ACTIONS(5216), - [anon_sym_thread_local] = ACTIONS(5216), - [anon_sym___thread] = ACTIONS(5216), - [anon_sym_const] = ACTIONS(5216), - [anon_sym_constexpr] = ACTIONS(5216), - [anon_sym_volatile] = ACTIONS(5216), - [anon_sym_restrict] = ACTIONS(5216), - [anon_sym___restrict__] = ACTIONS(5216), - [anon_sym__Atomic] = ACTIONS(5216), - [anon_sym__Noreturn] = ACTIONS(5216), - [anon_sym_noreturn] = ACTIONS(5216), - [anon_sym_mutable] = ACTIONS(5216), - [anon_sym_constinit] = ACTIONS(5216), - [anon_sym_consteval] = ACTIONS(5216), - [sym_primitive_type] = ACTIONS(5216), - [anon_sym_enum] = ACTIONS(5216), - [anon_sym_class] = ACTIONS(5216), - [anon_sym_struct] = ACTIONS(5216), - [anon_sym_union] = ACTIONS(5216), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5216), - [anon_sym_decltype] = ACTIONS(5216), - [anon_sym_virtual] = ACTIONS(5216), - [anon_sym_alignas] = ACTIONS(5216), - [anon_sym_explicit] = ACTIONS(5216), - [anon_sym_typename] = ACTIONS(5216), - [anon_sym_template] = ACTIONS(5216), - [anon_sym_operator] = ACTIONS(5216), - [anon_sym_friend] = ACTIONS(5216), - [anon_sym_public] = ACTIONS(5216), - [anon_sym_private] = ACTIONS(5216), - [anon_sym_protected] = ACTIONS(5216), - [anon_sym_using] = ACTIONS(5216), - [anon_sym_static_assert] = ACTIONS(5216), - }, - [2490] = { - [sym_identifier] = ACTIONS(3454), - [aux_sym_preproc_def_token1] = ACTIONS(3454), - [aux_sym_preproc_if_token1] = ACTIONS(3454), - [aux_sym_preproc_if_token2] = ACTIONS(3454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3454), - [aux_sym_preproc_else_token1] = ACTIONS(3454), - [aux_sym_preproc_elif_token1] = ACTIONS(3454), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3454), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3454), - [sym_preproc_directive] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3456), - [anon_sym_TILDE] = ACTIONS(3456), - [anon_sym_STAR] = ACTIONS(3456), - [anon_sym_AMP_AMP] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym___extension__] = ACTIONS(3454), - [anon_sym_typedef] = ACTIONS(3454), - [anon_sym_extern] = ACTIONS(3454), - [anon_sym___attribute__] = ACTIONS(3454), - [anon_sym_COLON_COLON] = ACTIONS(3456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3456), - [anon_sym___declspec] = ACTIONS(3454), - [anon_sym___based] = ACTIONS(3454), - [anon_sym_signed] = ACTIONS(3454), - [anon_sym_unsigned] = ACTIONS(3454), - [anon_sym_long] = ACTIONS(3454), - [anon_sym_short] = ACTIONS(3454), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3454), - [anon_sym_register] = ACTIONS(3454), - [anon_sym_inline] = ACTIONS(3454), - [anon_sym___inline] = ACTIONS(3454), - [anon_sym___inline__] = ACTIONS(3454), - [anon_sym___forceinline] = ACTIONS(3454), - [anon_sym_thread_local] = ACTIONS(3454), - [anon_sym___thread] = ACTIONS(3454), - [anon_sym_const] = ACTIONS(3454), - [anon_sym_constexpr] = ACTIONS(3454), - [anon_sym_volatile] = ACTIONS(3454), - [anon_sym_restrict] = ACTIONS(3454), - [anon_sym___restrict__] = ACTIONS(3454), - [anon_sym__Atomic] = ACTIONS(3454), - [anon_sym__Noreturn] = ACTIONS(3454), - [anon_sym_noreturn] = ACTIONS(3454), - [anon_sym_mutable] = ACTIONS(3454), - [anon_sym_constinit] = ACTIONS(3454), - [anon_sym_consteval] = ACTIONS(3454), - [sym_primitive_type] = ACTIONS(3454), - [anon_sym_enum] = ACTIONS(3454), - [anon_sym_class] = ACTIONS(3454), - [anon_sym_struct] = ACTIONS(3454), - [anon_sym_union] = ACTIONS(3454), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3454), - [anon_sym_decltype] = ACTIONS(3454), - [anon_sym_virtual] = ACTIONS(3454), - [anon_sym_alignas] = ACTIONS(3454), - [anon_sym_explicit] = ACTIONS(3454), - [anon_sym_typename] = ACTIONS(3454), - [anon_sym_template] = ACTIONS(3454), - [anon_sym_operator] = ACTIONS(3454), - [anon_sym_friend] = ACTIONS(3454), - [anon_sym_public] = ACTIONS(3454), - [anon_sym_private] = ACTIONS(3454), - [anon_sym_protected] = ACTIONS(3454), - [anon_sym_using] = ACTIONS(3454), - [anon_sym_static_assert] = ACTIONS(3454), - }, - [2491] = { - [sym_identifier] = ACTIONS(5220), - [aux_sym_preproc_def_token1] = ACTIONS(5220), - [aux_sym_preproc_if_token1] = ACTIONS(5220), - [aux_sym_preproc_if_token2] = ACTIONS(5220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5220), - [aux_sym_preproc_else_token1] = ACTIONS(5220), - [aux_sym_preproc_elif_token1] = ACTIONS(5220), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5220), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5220), - [sym_preproc_directive] = ACTIONS(5220), - [anon_sym_LPAREN2] = ACTIONS(5222), - [anon_sym_TILDE] = ACTIONS(5222), - [anon_sym_STAR] = ACTIONS(5222), - [anon_sym_AMP_AMP] = ACTIONS(5222), - [anon_sym_AMP] = ACTIONS(5220), - [anon_sym___extension__] = ACTIONS(5220), - [anon_sym_typedef] = ACTIONS(5220), - [anon_sym_extern] = ACTIONS(5220), - [anon_sym___attribute__] = ACTIONS(5220), - [anon_sym_COLON_COLON] = ACTIONS(5222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5222), - [anon_sym___declspec] = ACTIONS(5220), - [anon_sym___based] = ACTIONS(5220), - [anon_sym_signed] = ACTIONS(5220), - [anon_sym_unsigned] = ACTIONS(5220), - [anon_sym_long] = ACTIONS(5220), - [anon_sym_short] = ACTIONS(5220), - [anon_sym_LBRACK] = ACTIONS(5220), - [anon_sym_static] = ACTIONS(5220), - [anon_sym_register] = ACTIONS(5220), - [anon_sym_inline] = ACTIONS(5220), - [anon_sym___inline] = ACTIONS(5220), - [anon_sym___inline__] = ACTIONS(5220), - [anon_sym___forceinline] = ACTIONS(5220), - [anon_sym_thread_local] = ACTIONS(5220), - [anon_sym___thread] = ACTIONS(5220), - [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_mutable] = ACTIONS(5220), - [anon_sym_constinit] = ACTIONS(5220), - [anon_sym_consteval] = ACTIONS(5220), - [sym_primitive_type] = ACTIONS(5220), - [anon_sym_enum] = ACTIONS(5220), - [anon_sym_class] = ACTIONS(5220), - [anon_sym_struct] = ACTIONS(5220), - [anon_sym_union] = ACTIONS(5220), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5220), - [anon_sym_decltype] = ACTIONS(5220), - [anon_sym_virtual] = ACTIONS(5220), - [anon_sym_alignas] = ACTIONS(5220), - [anon_sym_explicit] = ACTIONS(5220), - [anon_sym_typename] = ACTIONS(5220), - [anon_sym_template] = ACTIONS(5220), - [anon_sym_operator] = ACTIONS(5220), - [anon_sym_friend] = ACTIONS(5220), - [anon_sym_public] = ACTIONS(5220), - [anon_sym_private] = ACTIONS(5220), - [anon_sym_protected] = ACTIONS(5220), - [anon_sym_using] = ACTIONS(5220), - [anon_sym_static_assert] = ACTIONS(5220), - }, - [2492] = { - [sym_identifier] = ACTIONS(3294), - [aux_sym_preproc_def_token1] = ACTIONS(3294), - [aux_sym_preproc_if_token1] = ACTIONS(3294), - [aux_sym_preproc_if_token2] = ACTIONS(3294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), - [aux_sym_preproc_else_token1] = ACTIONS(3294), - [aux_sym_preproc_elif_token1] = ACTIONS(3294), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3294), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3294), - [sym_preproc_directive] = ACTIONS(3294), - [anon_sym_LPAREN2] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3294), - [anon_sym___extension__] = ACTIONS(3294), - [anon_sym_typedef] = ACTIONS(3294), - [anon_sym_extern] = ACTIONS(3294), - [anon_sym___attribute__] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), - [anon_sym___declspec] = ACTIONS(3294), - [anon_sym___based] = ACTIONS(3294), - [anon_sym_signed] = ACTIONS(3294), - [anon_sym_unsigned] = ACTIONS(3294), - [anon_sym_long] = ACTIONS(3294), - [anon_sym_short] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_register] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym___inline] = ACTIONS(3294), - [anon_sym___inline__] = ACTIONS(3294), - [anon_sym___forceinline] = ACTIONS(3294), - [anon_sym_thread_local] = ACTIONS(3294), - [anon_sym___thread] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_constexpr] = ACTIONS(3294), - [anon_sym_volatile] = ACTIONS(3294), - [anon_sym_restrict] = ACTIONS(3294), - [anon_sym___restrict__] = ACTIONS(3294), - [anon_sym__Atomic] = ACTIONS(3294), - [anon_sym__Noreturn] = ACTIONS(3294), - [anon_sym_noreturn] = ACTIONS(3294), - [anon_sym_mutable] = ACTIONS(3294), - [anon_sym_constinit] = ACTIONS(3294), - [anon_sym_consteval] = ACTIONS(3294), - [sym_primitive_type] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), - [anon_sym_class] = ACTIONS(3294), - [anon_sym_struct] = ACTIONS(3294), - [anon_sym_union] = ACTIONS(3294), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3294), - [anon_sym_decltype] = ACTIONS(3294), - [anon_sym_virtual] = ACTIONS(3294), - [anon_sym_alignas] = ACTIONS(3294), - [anon_sym_explicit] = ACTIONS(3294), - [anon_sym_typename] = ACTIONS(3294), - [anon_sym_template] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_friend] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_using] = ACTIONS(3294), - [anon_sym_static_assert] = ACTIONS(3294), - }, - [2493] = { - [sym_identifier] = ACTIONS(5220), - [aux_sym_preproc_def_token1] = ACTIONS(5220), - [aux_sym_preproc_if_token1] = ACTIONS(5220), - [aux_sym_preproc_if_token2] = ACTIONS(5220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5220), - [aux_sym_preproc_else_token1] = ACTIONS(5220), - [aux_sym_preproc_elif_token1] = ACTIONS(5220), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5220), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5220), - [sym_preproc_directive] = ACTIONS(5220), - [anon_sym_LPAREN2] = ACTIONS(5222), - [anon_sym_TILDE] = ACTIONS(5222), - [anon_sym_STAR] = ACTIONS(5222), - [anon_sym_AMP_AMP] = ACTIONS(5222), - [anon_sym_AMP] = ACTIONS(5220), - [anon_sym___extension__] = ACTIONS(5220), - [anon_sym_typedef] = ACTIONS(5220), - [anon_sym_extern] = ACTIONS(5220), - [anon_sym___attribute__] = ACTIONS(5220), - [anon_sym_COLON_COLON] = ACTIONS(5222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5222), - [anon_sym___declspec] = ACTIONS(5220), - [anon_sym___based] = ACTIONS(5220), - [anon_sym_signed] = ACTIONS(5220), - [anon_sym_unsigned] = ACTIONS(5220), - [anon_sym_long] = ACTIONS(5220), - [anon_sym_short] = ACTIONS(5220), - [anon_sym_LBRACK] = ACTIONS(5220), - [anon_sym_static] = ACTIONS(5220), - [anon_sym_register] = ACTIONS(5220), - [anon_sym_inline] = ACTIONS(5220), - [anon_sym___inline] = ACTIONS(5220), - [anon_sym___inline__] = ACTIONS(5220), - [anon_sym___forceinline] = ACTIONS(5220), - [anon_sym_thread_local] = ACTIONS(5220), - [anon_sym___thread] = ACTIONS(5220), - [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_mutable] = ACTIONS(5220), - [anon_sym_constinit] = ACTIONS(5220), - [anon_sym_consteval] = ACTIONS(5220), - [sym_primitive_type] = ACTIONS(5220), - [anon_sym_enum] = ACTIONS(5220), - [anon_sym_class] = ACTIONS(5220), - [anon_sym_struct] = ACTIONS(5220), - [anon_sym_union] = ACTIONS(5220), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5220), - [anon_sym_decltype] = ACTIONS(5220), - [anon_sym_virtual] = ACTIONS(5220), - [anon_sym_alignas] = ACTIONS(5220), - [anon_sym_explicit] = ACTIONS(5220), - [anon_sym_typename] = ACTIONS(5220), - [anon_sym_template] = ACTIONS(5220), - [anon_sym_operator] = ACTIONS(5220), - [anon_sym_friend] = ACTIONS(5220), - [anon_sym_public] = ACTIONS(5220), - [anon_sym_private] = ACTIONS(5220), - [anon_sym_protected] = ACTIONS(5220), - [anon_sym_using] = ACTIONS(5220), - [anon_sym_static_assert] = ACTIONS(5220), - }, - [2494] = { - [sym_identifier] = ACTIONS(5216), - [aux_sym_preproc_def_token1] = ACTIONS(5216), - [aux_sym_preproc_if_token1] = ACTIONS(5216), - [aux_sym_preproc_if_token2] = ACTIONS(5216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5216), - [aux_sym_preproc_else_token1] = ACTIONS(5216), - [aux_sym_preproc_elif_token1] = ACTIONS(5216), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5216), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5216), - [sym_preproc_directive] = ACTIONS(5216), - [anon_sym_LPAREN2] = ACTIONS(5218), - [anon_sym_TILDE] = ACTIONS(5218), - [anon_sym_STAR] = ACTIONS(5218), - [anon_sym_AMP_AMP] = ACTIONS(5218), - [anon_sym_AMP] = ACTIONS(5216), - [anon_sym___extension__] = ACTIONS(5216), - [anon_sym_typedef] = ACTIONS(5216), - [anon_sym_extern] = ACTIONS(5216), - [anon_sym___attribute__] = ACTIONS(5216), - [anon_sym_COLON_COLON] = ACTIONS(5218), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5218), - [anon_sym___declspec] = ACTIONS(5216), - [anon_sym___based] = ACTIONS(5216), - [anon_sym_signed] = ACTIONS(5216), - [anon_sym_unsigned] = ACTIONS(5216), - [anon_sym_long] = ACTIONS(5216), - [anon_sym_short] = ACTIONS(5216), - [anon_sym_LBRACK] = ACTIONS(5216), - [anon_sym_static] = ACTIONS(5216), - [anon_sym_register] = ACTIONS(5216), - [anon_sym_inline] = ACTIONS(5216), - [anon_sym___inline] = ACTIONS(5216), - [anon_sym___inline__] = ACTIONS(5216), - [anon_sym___forceinline] = ACTIONS(5216), - [anon_sym_thread_local] = ACTIONS(5216), - [anon_sym___thread] = ACTIONS(5216), - [anon_sym_const] = ACTIONS(5216), - [anon_sym_constexpr] = ACTIONS(5216), - [anon_sym_volatile] = ACTIONS(5216), - [anon_sym_restrict] = ACTIONS(5216), - [anon_sym___restrict__] = ACTIONS(5216), - [anon_sym__Atomic] = ACTIONS(5216), - [anon_sym__Noreturn] = ACTIONS(5216), - [anon_sym_noreturn] = ACTIONS(5216), - [anon_sym_mutable] = ACTIONS(5216), - [anon_sym_constinit] = ACTIONS(5216), - [anon_sym_consteval] = ACTIONS(5216), - [sym_primitive_type] = ACTIONS(5216), - [anon_sym_enum] = ACTIONS(5216), - [anon_sym_class] = ACTIONS(5216), - [anon_sym_struct] = ACTIONS(5216), - [anon_sym_union] = ACTIONS(5216), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5216), - [anon_sym_decltype] = ACTIONS(5216), - [anon_sym_virtual] = ACTIONS(5216), - [anon_sym_alignas] = ACTIONS(5216), - [anon_sym_explicit] = ACTIONS(5216), - [anon_sym_typename] = ACTIONS(5216), - [anon_sym_template] = ACTIONS(5216), - [anon_sym_operator] = ACTIONS(5216), - [anon_sym_friend] = ACTIONS(5216), - [anon_sym_public] = ACTIONS(5216), - [anon_sym_private] = ACTIONS(5216), - [anon_sym_protected] = ACTIONS(5216), - [anon_sym_using] = ACTIONS(5216), - [anon_sym_static_assert] = ACTIONS(5216), - }, - [2495] = { - [sym_identifier] = ACTIONS(5224), - [aux_sym_preproc_def_token1] = ACTIONS(5224), - [aux_sym_preproc_if_token1] = ACTIONS(5224), - [aux_sym_preproc_if_token2] = ACTIONS(5224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5224), - [aux_sym_preproc_else_token1] = ACTIONS(5224), - [aux_sym_preproc_elif_token1] = ACTIONS(5224), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5224), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5224), - [sym_preproc_directive] = ACTIONS(5224), - [anon_sym_LPAREN2] = ACTIONS(5226), - [anon_sym_TILDE] = ACTIONS(5226), - [anon_sym_STAR] = ACTIONS(5226), - [anon_sym_AMP_AMP] = ACTIONS(5226), - [anon_sym_AMP] = ACTIONS(5224), - [anon_sym___extension__] = ACTIONS(5224), - [anon_sym_typedef] = ACTIONS(5224), - [anon_sym_extern] = ACTIONS(5224), - [anon_sym___attribute__] = ACTIONS(5224), - [anon_sym_COLON_COLON] = ACTIONS(5226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5226), - [anon_sym___declspec] = ACTIONS(5224), - [anon_sym___based] = ACTIONS(5224), - [anon_sym_signed] = ACTIONS(5224), - [anon_sym_unsigned] = ACTIONS(5224), - [anon_sym_long] = ACTIONS(5224), - [anon_sym_short] = ACTIONS(5224), - [anon_sym_LBRACK] = ACTIONS(5224), - [anon_sym_static] = ACTIONS(5224), - [anon_sym_register] = ACTIONS(5224), - [anon_sym_inline] = ACTIONS(5224), - [anon_sym___inline] = ACTIONS(5224), - [anon_sym___inline__] = ACTIONS(5224), - [anon_sym___forceinline] = ACTIONS(5224), - [anon_sym_thread_local] = ACTIONS(5224), - [anon_sym___thread] = ACTIONS(5224), - [anon_sym_const] = ACTIONS(5224), - [anon_sym_constexpr] = ACTIONS(5224), - [anon_sym_volatile] = ACTIONS(5224), - [anon_sym_restrict] = ACTIONS(5224), - [anon_sym___restrict__] = ACTIONS(5224), - [anon_sym__Atomic] = ACTIONS(5224), - [anon_sym__Noreturn] = ACTIONS(5224), - [anon_sym_noreturn] = ACTIONS(5224), - [anon_sym_mutable] = ACTIONS(5224), - [anon_sym_constinit] = ACTIONS(5224), - [anon_sym_consteval] = ACTIONS(5224), - [sym_primitive_type] = ACTIONS(5224), - [anon_sym_enum] = ACTIONS(5224), - [anon_sym_class] = ACTIONS(5224), - [anon_sym_struct] = ACTIONS(5224), - [anon_sym_union] = ACTIONS(5224), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5224), - [anon_sym_decltype] = ACTIONS(5224), - [anon_sym_virtual] = ACTIONS(5224), - [anon_sym_alignas] = ACTIONS(5224), - [anon_sym_explicit] = ACTIONS(5224), - [anon_sym_typename] = ACTIONS(5224), - [anon_sym_template] = ACTIONS(5224), - [anon_sym_operator] = ACTIONS(5224), - [anon_sym_friend] = ACTIONS(5224), - [anon_sym_public] = ACTIONS(5224), - [anon_sym_private] = ACTIONS(5224), - [anon_sym_protected] = ACTIONS(5224), - [anon_sym_using] = ACTIONS(5224), - [anon_sym_static_assert] = ACTIONS(5224), - }, - [2496] = { - [sym_identifier] = ACTIONS(5228), - [aux_sym_preproc_def_token1] = ACTIONS(5228), - [aux_sym_preproc_if_token1] = ACTIONS(5228), - [aux_sym_preproc_if_token2] = ACTIONS(5228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5228), - [aux_sym_preproc_else_token1] = ACTIONS(5228), - [aux_sym_preproc_elif_token1] = ACTIONS(5228), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5228), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5228), - [sym_preproc_directive] = ACTIONS(5228), - [anon_sym_LPAREN2] = ACTIONS(5230), - [anon_sym_TILDE] = ACTIONS(5230), - [anon_sym_STAR] = ACTIONS(5230), - [anon_sym_AMP_AMP] = ACTIONS(5230), - [anon_sym_AMP] = ACTIONS(5228), - [anon_sym___extension__] = ACTIONS(5228), - [anon_sym_typedef] = ACTIONS(5228), - [anon_sym_extern] = ACTIONS(5228), - [anon_sym___attribute__] = ACTIONS(5228), - [anon_sym_COLON_COLON] = ACTIONS(5230), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5230), - [anon_sym___declspec] = ACTIONS(5228), - [anon_sym___based] = ACTIONS(5228), - [anon_sym_signed] = ACTIONS(5228), - [anon_sym_unsigned] = ACTIONS(5228), - [anon_sym_long] = ACTIONS(5228), - [anon_sym_short] = ACTIONS(5228), - [anon_sym_LBRACK] = ACTIONS(5228), - [anon_sym_static] = ACTIONS(5228), - [anon_sym_register] = ACTIONS(5228), - [anon_sym_inline] = ACTIONS(5228), - [anon_sym___inline] = ACTIONS(5228), - [anon_sym___inline__] = ACTIONS(5228), - [anon_sym___forceinline] = ACTIONS(5228), - [anon_sym_thread_local] = ACTIONS(5228), - [anon_sym___thread] = ACTIONS(5228), - [anon_sym_const] = ACTIONS(5228), - [anon_sym_constexpr] = ACTIONS(5228), - [anon_sym_volatile] = ACTIONS(5228), - [anon_sym_restrict] = ACTIONS(5228), - [anon_sym___restrict__] = ACTIONS(5228), - [anon_sym__Atomic] = ACTIONS(5228), - [anon_sym__Noreturn] = ACTIONS(5228), - [anon_sym_noreturn] = ACTIONS(5228), - [anon_sym_mutable] = ACTIONS(5228), - [anon_sym_constinit] = ACTIONS(5228), - [anon_sym_consteval] = ACTIONS(5228), - [sym_primitive_type] = ACTIONS(5228), - [anon_sym_enum] = ACTIONS(5228), - [anon_sym_class] = ACTIONS(5228), - [anon_sym_struct] = ACTIONS(5228), - [anon_sym_union] = ACTIONS(5228), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5228), - [anon_sym_decltype] = ACTIONS(5228), - [anon_sym_virtual] = ACTIONS(5228), - [anon_sym_alignas] = ACTIONS(5228), - [anon_sym_explicit] = ACTIONS(5228), - [anon_sym_typename] = ACTIONS(5228), - [anon_sym_template] = ACTIONS(5228), - [anon_sym_operator] = ACTIONS(5228), - [anon_sym_friend] = ACTIONS(5228), - [anon_sym_public] = ACTIONS(5228), - [anon_sym_private] = ACTIONS(5228), - [anon_sym_protected] = ACTIONS(5228), - [anon_sym_using] = ACTIONS(5228), - [anon_sym_static_assert] = ACTIONS(5228), - }, - [2497] = { - [sym_identifier] = ACTIONS(2913), - [aux_sym_preproc_def_token1] = ACTIONS(2913), - [aux_sym_preproc_if_token1] = ACTIONS(2913), - [aux_sym_preproc_if_token2] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2913), - [aux_sym_preproc_else_token1] = ACTIONS(2913), - [aux_sym_preproc_elif_token1] = ACTIONS(2913), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2913), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2913), - [sym_preproc_directive] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym___extension__] = ACTIONS(2913), - [anon_sym_typedef] = ACTIONS(2913), - [anon_sym_extern] = ACTIONS(2913), - [anon_sym___attribute__] = ACTIONS(2913), - [anon_sym_COLON_COLON] = ACTIONS(2915), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2915), - [anon_sym___declspec] = ACTIONS(2913), - [anon_sym___based] = ACTIONS(2913), - [anon_sym_signed] = ACTIONS(2913), - [anon_sym_unsigned] = ACTIONS(2913), - [anon_sym_long] = ACTIONS(2913), - [anon_sym_short] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_static] = ACTIONS(2913), - [anon_sym_register] = ACTIONS(2913), - [anon_sym_inline] = ACTIONS(2913), - [anon_sym___inline] = ACTIONS(2913), - [anon_sym___inline__] = ACTIONS(2913), - [anon_sym___forceinline] = ACTIONS(2913), - [anon_sym_thread_local] = ACTIONS(2913), - [anon_sym___thread] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_constexpr] = ACTIONS(2913), - [anon_sym_volatile] = ACTIONS(2913), - [anon_sym_restrict] = ACTIONS(2913), - [anon_sym___restrict__] = ACTIONS(2913), - [anon_sym__Atomic] = ACTIONS(2913), - [anon_sym__Noreturn] = ACTIONS(2913), - [anon_sym_noreturn] = ACTIONS(2913), - [anon_sym_mutable] = ACTIONS(2913), - [anon_sym_constinit] = ACTIONS(2913), - [anon_sym_consteval] = ACTIONS(2913), - [sym_primitive_type] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), - [anon_sym_class] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_union] = ACTIONS(2913), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2913), - [anon_sym_decltype] = ACTIONS(2913), - [anon_sym_virtual] = ACTIONS(2913), - [anon_sym_alignas] = ACTIONS(2913), - [anon_sym_explicit] = ACTIONS(2913), - [anon_sym_typename] = ACTIONS(2913), - [anon_sym_template] = ACTIONS(2913), - [anon_sym_operator] = ACTIONS(2913), - [anon_sym_friend] = ACTIONS(2913), - [anon_sym_public] = ACTIONS(2913), - [anon_sym_private] = ACTIONS(2913), - [anon_sym_protected] = ACTIONS(2913), - [anon_sym_using] = ACTIONS(2913), - [anon_sym_static_assert] = ACTIONS(2913), - }, - [2498] = { - [sym_identifier] = 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_TILDE] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3011), - [anon_sym___extension__] = ACTIONS(3011), - [anon_sym_typedef] = ACTIONS(3011), - [anon_sym_extern] = ACTIONS(3011), - [anon_sym___attribute__] = 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_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_mutable] = ACTIONS(3011), - [anon_sym_constinit] = ACTIONS(3011), - [anon_sym_consteval] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3011), - [anon_sym_decltype] = ACTIONS(3011), - [anon_sym_virtual] = ACTIONS(3011), - [anon_sym_alignas] = ACTIONS(3011), - [anon_sym_explicit] = ACTIONS(3011), - [anon_sym_typename] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3011), - [anon_sym_operator] = ACTIONS(3011), - [anon_sym_friend] = ACTIONS(3011), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_using] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3011), - }, - [2499] = { - [sym_identifier] = ACTIONS(5232), - [aux_sym_preproc_def_token1] = ACTIONS(5232), - [aux_sym_preproc_if_token1] = ACTIONS(5232), - [aux_sym_preproc_if_token2] = ACTIONS(5232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5232), - [aux_sym_preproc_else_token1] = ACTIONS(5232), - [aux_sym_preproc_elif_token1] = ACTIONS(5232), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5232), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5232), - [sym_preproc_directive] = ACTIONS(5232), - [anon_sym_LPAREN2] = ACTIONS(5234), - [anon_sym_TILDE] = ACTIONS(5234), - [anon_sym_STAR] = ACTIONS(5234), - [anon_sym_AMP_AMP] = ACTIONS(5234), - [anon_sym_AMP] = ACTIONS(5232), - [anon_sym___extension__] = ACTIONS(5232), - [anon_sym_typedef] = ACTIONS(5232), - [anon_sym_extern] = ACTIONS(5232), - [anon_sym___attribute__] = ACTIONS(5232), - [anon_sym_COLON_COLON] = ACTIONS(5234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5234), - [anon_sym___declspec] = ACTIONS(5232), - [anon_sym___based] = ACTIONS(5232), - [anon_sym_signed] = ACTIONS(5232), - [anon_sym_unsigned] = ACTIONS(5232), - [anon_sym_long] = ACTIONS(5232), - [anon_sym_short] = ACTIONS(5232), - [anon_sym_LBRACK] = ACTIONS(5232), - [anon_sym_static] = ACTIONS(5232), - [anon_sym_register] = ACTIONS(5232), - [anon_sym_inline] = ACTIONS(5232), - [anon_sym___inline] = ACTIONS(5232), - [anon_sym___inline__] = ACTIONS(5232), - [anon_sym___forceinline] = ACTIONS(5232), - [anon_sym_thread_local] = ACTIONS(5232), - [anon_sym___thread] = ACTIONS(5232), - [anon_sym_const] = ACTIONS(5232), - [anon_sym_constexpr] = ACTIONS(5232), - [anon_sym_volatile] = ACTIONS(5232), - [anon_sym_restrict] = ACTIONS(5232), - [anon_sym___restrict__] = ACTIONS(5232), - [anon_sym__Atomic] = ACTIONS(5232), - [anon_sym__Noreturn] = ACTIONS(5232), - [anon_sym_noreturn] = ACTIONS(5232), - [anon_sym_mutable] = ACTIONS(5232), - [anon_sym_constinit] = ACTIONS(5232), - [anon_sym_consteval] = ACTIONS(5232), - [sym_primitive_type] = ACTIONS(5232), - [anon_sym_enum] = ACTIONS(5232), - [anon_sym_class] = ACTIONS(5232), - [anon_sym_struct] = ACTIONS(5232), - [anon_sym_union] = ACTIONS(5232), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5232), - [anon_sym_decltype] = ACTIONS(5232), - [anon_sym_virtual] = ACTIONS(5232), - [anon_sym_alignas] = ACTIONS(5232), - [anon_sym_explicit] = ACTIONS(5232), - [anon_sym_typename] = ACTIONS(5232), - [anon_sym_template] = ACTIONS(5232), - [anon_sym_operator] = ACTIONS(5232), - [anon_sym_friend] = ACTIONS(5232), - [anon_sym_public] = ACTIONS(5232), - [anon_sym_private] = ACTIONS(5232), - [anon_sym_protected] = ACTIONS(5232), - [anon_sym_using] = ACTIONS(5232), - [anon_sym_static_assert] = ACTIONS(5232), - }, - [2500] = { - [sym_identifier] = ACTIONS(5208), - [aux_sym_preproc_def_token1] = ACTIONS(5208), - [aux_sym_preproc_if_token1] = ACTIONS(5208), - [aux_sym_preproc_if_token2] = ACTIONS(5208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5208), - [aux_sym_preproc_else_token1] = ACTIONS(5208), - [aux_sym_preproc_elif_token1] = ACTIONS(5208), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5208), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5208), - [sym_preproc_directive] = ACTIONS(5208), - [anon_sym_LPAREN2] = ACTIONS(5210), - [anon_sym_TILDE] = ACTIONS(5210), - [anon_sym_STAR] = ACTIONS(5210), - [anon_sym_AMP_AMP] = ACTIONS(5210), - [anon_sym_AMP] = ACTIONS(5208), - [anon_sym___extension__] = ACTIONS(5208), - [anon_sym_typedef] = ACTIONS(5208), - [anon_sym_extern] = ACTIONS(5208), - [anon_sym___attribute__] = ACTIONS(5208), - [anon_sym_COLON_COLON] = ACTIONS(5210), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5210), - [anon_sym___declspec] = ACTIONS(5208), - [anon_sym___based] = ACTIONS(5208), - [anon_sym_signed] = ACTIONS(5208), - [anon_sym_unsigned] = ACTIONS(5208), - [anon_sym_long] = ACTIONS(5208), - [anon_sym_short] = ACTIONS(5208), - [anon_sym_LBRACK] = ACTIONS(5208), - [anon_sym_static] = ACTIONS(5208), - [anon_sym_register] = ACTIONS(5208), - [anon_sym_inline] = ACTIONS(5208), - [anon_sym___inline] = ACTIONS(5208), - [anon_sym___inline__] = ACTIONS(5208), - [anon_sym___forceinline] = ACTIONS(5208), - [anon_sym_thread_local] = ACTIONS(5208), - [anon_sym___thread] = ACTIONS(5208), - [anon_sym_const] = ACTIONS(5208), - [anon_sym_constexpr] = ACTIONS(5208), - [anon_sym_volatile] = ACTIONS(5208), - [anon_sym_restrict] = ACTIONS(5208), - [anon_sym___restrict__] = ACTIONS(5208), - [anon_sym__Atomic] = ACTIONS(5208), - [anon_sym__Noreturn] = ACTIONS(5208), - [anon_sym_noreturn] = ACTIONS(5208), - [anon_sym_mutable] = ACTIONS(5208), - [anon_sym_constinit] = ACTIONS(5208), - [anon_sym_consteval] = ACTIONS(5208), - [sym_primitive_type] = ACTIONS(5208), - [anon_sym_enum] = ACTIONS(5208), - [anon_sym_class] = ACTIONS(5208), - [anon_sym_struct] = ACTIONS(5208), - [anon_sym_union] = ACTIONS(5208), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5208), - [anon_sym_decltype] = ACTIONS(5208), - [anon_sym_virtual] = ACTIONS(5208), - [anon_sym_alignas] = ACTIONS(5208), - [anon_sym_explicit] = ACTIONS(5208), - [anon_sym_typename] = ACTIONS(5208), - [anon_sym_template] = ACTIONS(5208), - [anon_sym_operator] = ACTIONS(5208), - [anon_sym_friend] = ACTIONS(5208), - [anon_sym_public] = ACTIONS(5208), - [anon_sym_private] = ACTIONS(5208), - [anon_sym_protected] = ACTIONS(5208), - [anon_sym_using] = ACTIONS(5208), - [anon_sym_static_assert] = ACTIONS(5208), - }, - [2501] = { - [sym_identifier] = 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_TILDE] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym___extension__] = ACTIONS(3027), - [anon_sym_typedef] = ACTIONS(3027), - [anon_sym_extern] = ACTIONS(3027), - [anon_sym___attribute__] = 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_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_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3027), - [anon_sym_decltype] = ACTIONS(3027), - [anon_sym_virtual] = ACTIONS(3027), - [anon_sym_alignas] = ACTIONS(3027), - [anon_sym_explicit] = ACTIONS(3027), - [anon_sym_typename] = ACTIONS(3027), - [anon_sym_template] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_friend] = ACTIONS(3027), - [anon_sym_public] = ACTIONS(3027), - [anon_sym_private] = ACTIONS(3027), - [anon_sym_protected] = ACTIONS(3027), - [anon_sym_using] = ACTIONS(3027), - [anon_sym_static_assert] = ACTIONS(3027), - }, - [2502] = { - [sym_identifier] = ACTIONS(4852), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_RPAREN] = ACTIONS(4854), - [anon_sym_LPAREN2] = ACTIONS(4854), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4854), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE] = ACTIONS(4852), - [anon_sym_CARET] = ACTIONS(4854), - [anon_sym_AMP] = ACTIONS(4852), - [anon_sym_EQ_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4854), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4852), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_LT_LT] = ACTIONS(4854), - [anon_sym_GT_GT] = ACTIONS(4854), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym___extension__] = ACTIONS(4852), - [anon_sym___attribute__] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym___based] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_signed] = ACTIONS(4852), - [anon_sym_unsigned] = ACTIONS(4852), - [anon_sym_long] = ACTIONS(4852), - [anon_sym_short] = ACTIONS(4852), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_RBRACK] = ACTIONS(4854), - [anon_sym_const] = ACTIONS(4852), - [anon_sym_constexpr] = ACTIONS(4852), - [anon_sym_volatile] = ACTIONS(4852), - [anon_sym_restrict] = ACTIONS(4852), - [anon_sym___restrict__] = ACTIONS(4852), - [anon_sym__Atomic] = ACTIONS(4852), - [anon_sym__Noreturn] = ACTIONS(4852), - [anon_sym_noreturn] = ACTIONS(4852), - [anon_sym_mutable] = ACTIONS(4852), - [anon_sym_constinit] = ACTIONS(4852), - [anon_sym_consteval] = ACTIONS(4852), - [sym_primitive_type] = ACTIONS(4852), - [anon_sym_COLON] = ACTIONS(4852), - [anon_sym_QMARK] = ACTIONS(4854), - [anon_sym_LT_EQ_GT] = ACTIONS(4854), - [anon_sym_or] = ACTIONS(4852), - [anon_sym_and] = ACTIONS(4852), - [anon_sym_bitor] = ACTIONS(4852), - [anon_sym_xor] = ACTIONS(4852), - [anon_sym_bitand] = ACTIONS(4852), - [anon_sym_not_eq] = ACTIONS(4852), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_DOT_STAR] = ACTIONS(4854), - [anon_sym_DASH_GT] = ACTIONS(4854), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4852), - [anon_sym_decltype] = ACTIONS(4852), - [anon_sym_final] = ACTIONS(4852), - [anon_sym_override] = ACTIONS(4852), - [anon_sym_requires] = ACTIONS(4852), - }, - [2503] = { - [sym_identifier] = ACTIONS(5236), - [aux_sym_preproc_def_token1] = ACTIONS(5236), - [aux_sym_preproc_if_token1] = ACTIONS(5236), - [aux_sym_preproc_if_token2] = ACTIONS(5236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5236), - [aux_sym_preproc_else_token1] = ACTIONS(5236), - [aux_sym_preproc_elif_token1] = ACTIONS(5236), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5236), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5236), - [sym_preproc_directive] = ACTIONS(5236), - [anon_sym_LPAREN2] = ACTIONS(5238), - [anon_sym_TILDE] = ACTIONS(5238), - [anon_sym_STAR] = ACTIONS(5238), - [anon_sym_AMP_AMP] = ACTIONS(5238), - [anon_sym_AMP] = ACTIONS(5236), - [anon_sym___extension__] = ACTIONS(5236), - [anon_sym_typedef] = ACTIONS(5236), - [anon_sym_extern] = ACTIONS(5236), - [anon_sym___attribute__] = ACTIONS(5236), - [anon_sym_COLON_COLON] = ACTIONS(5238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5238), - [anon_sym___declspec] = ACTIONS(5236), - [anon_sym___based] = ACTIONS(5236), - [anon_sym_signed] = ACTIONS(5236), - [anon_sym_unsigned] = ACTIONS(5236), - [anon_sym_long] = ACTIONS(5236), - [anon_sym_short] = ACTIONS(5236), - [anon_sym_LBRACK] = ACTIONS(5236), - [anon_sym_static] = ACTIONS(5236), - [anon_sym_register] = ACTIONS(5236), - [anon_sym_inline] = ACTIONS(5236), - [anon_sym___inline] = ACTIONS(5236), - [anon_sym___inline__] = ACTIONS(5236), - [anon_sym___forceinline] = ACTIONS(5236), - [anon_sym_thread_local] = ACTIONS(5236), - [anon_sym___thread] = ACTIONS(5236), - [anon_sym_const] = ACTIONS(5236), - [anon_sym_constexpr] = ACTIONS(5236), - [anon_sym_volatile] = ACTIONS(5236), - [anon_sym_restrict] = ACTIONS(5236), - [anon_sym___restrict__] = ACTIONS(5236), - [anon_sym__Atomic] = ACTIONS(5236), - [anon_sym__Noreturn] = ACTIONS(5236), - [anon_sym_noreturn] = ACTIONS(5236), - [anon_sym_mutable] = ACTIONS(5236), - [anon_sym_constinit] = ACTIONS(5236), - [anon_sym_consteval] = ACTIONS(5236), - [sym_primitive_type] = ACTIONS(5236), - [anon_sym_enum] = ACTIONS(5236), - [anon_sym_class] = ACTIONS(5236), - [anon_sym_struct] = ACTIONS(5236), - [anon_sym_union] = ACTIONS(5236), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5236), - [anon_sym_decltype] = ACTIONS(5236), - [anon_sym_virtual] = ACTIONS(5236), - [anon_sym_alignas] = ACTIONS(5236), - [anon_sym_explicit] = ACTIONS(5236), - [anon_sym_typename] = ACTIONS(5236), - [anon_sym_template] = ACTIONS(5236), - [anon_sym_operator] = ACTIONS(5236), - [anon_sym_friend] = ACTIONS(5236), - [anon_sym_public] = ACTIONS(5236), - [anon_sym_private] = ACTIONS(5236), - [anon_sym_protected] = ACTIONS(5236), - [anon_sym_using] = ACTIONS(5236), - [anon_sym_static_assert] = ACTIONS(5236), - }, - [2504] = { - [sym_identifier] = ACTIONS(5236), - [aux_sym_preproc_def_token1] = ACTIONS(5236), - [aux_sym_preproc_if_token1] = ACTIONS(5236), - [aux_sym_preproc_if_token2] = ACTIONS(5236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5236), - [aux_sym_preproc_else_token1] = ACTIONS(5236), - [aux_sym_preproc_elif_token1] = ACTIONS(5236), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5236), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5236), - [sym_preproc_directive] = ACTIONS(5236), - [anon_sym_LPAREN2] = ACTIONS(5238), - [anon_sym_TILDE] = ACTIONS(5238), - [anon_sym_STAR] = ACTIONS(5238), - [anon_sym_AMP_AMP] = ACTIONS(5238), - [anon_sym_AMP] = ACTIONS(5236), - [anon_sym___extension__] = ACTIONS(5236), - [anon_sym_typedef] = ACTIONS(5236), - [anon_sym_extern] = ACTIONS(5236), - [anon_sym___attribute__] = ACTIONS(5236), - [anon_sym_COLON_COLON] = ACTIONS(5238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5238), - [anon_sym___declspec] = ACTIONS(5236), - [anon_sym___based] = ACTIONS(5236), - [anon_sym_signed] = ACTIONS(5236), - [anon_sym_unsigned] = ACTIONS(5236), - [anon_sym_long] = ACTIONS(5236), - [anon_sym_short] = ACTIONS(5236), - [anon_sym_LBRACK] = ACTIONS(5236), - [anon_sym_static] = ACTIONS(5236), - [anon_sym_register] = ACTIONS(5236), - [anon_sym_inline] = ACTIONS(5236), - [anon_sym___inline] = ACTIONS(5236), - [anon_sym___inline__] = ACTIONS(5236), - [anon_sym___forceinline] = ACTIONS(5236), - [anon_sym_thread_local] = ACTIONS(5236), - [anon_sym___thread] = ACTIONS(5236), - [anon_sym_const] = ACTIONS(5236), - [anon_sym_constexpr] = ACTIONS(5236), - [anon_sym_volatile] = ACTIONS(5236), - [anon_sym_restrict] = ACTIONS(5236), - [anon_sym___restrict__] = ACTIONS(5236), - [anon_sym__Atomic] = ACTIONS(5236), - [anon_sym__Noreturn] = ACTIONS(5236), - [anon_sym_noreturn] = ACTIONS(5236), - [anon_sym_mutable] = ACTIONS(5236), - [anon_sym_constinit] = ACTIONS(5236), - [anon_sym_consteval] = ACTIONS(5236), - [sym_primitive_type] = ACTIONS(5236), - [anon_sym_enum] = ACTIONS(5236), - [anon_sym_class] = ACTIONS(5236), - [anon_sym_struct] = ACTIONS(5236), - [anon_sym_union] = ACTIONS(5236), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5236), - [anon_sym_decltype] = ACTIONS(5236), - [anon_sym_virtual] = ACTIONS(5236), - [anon_sym_alignas] = ACTIONS(5236), - [anon_sym_explicit] = ACTIONS(5236), - [anon_sym_typename] = ACTIONS(5236), - [anon_sym_template] = ACTIONS(5236), - [anon_sym_operator] = ACTIONS(5236), - [anon_sym_friend] = ACTIONS(5236), - [anon_sym_public] = ACTIONS(5236), - [anon_sym_private] = ACTIONS(5236), - [anon_sym_protected] = ACTIONS(5236), - [anon_sym_using] = ACTIONS(5236), - [anon_sym_static_assert] = ACTIONS(5236), - }, - [2505] = { - [sym_identifier] = ACTIONS(5212), - [aux_sym_preproc_def_token1] = ACTIONS(5212), - [aux_sym_preproc_if_token1] = ACTIONS(5212), - [aux_sym_preproc_if_token2] = ACTIONS(5212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5212), - [aux_sym_preproc_else_token1] = ACTIONS(5212), - [aux_sym_preproc_elif_token1] = ACTIONS(5212), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5212), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5212), - [sym_preproc_directive] = ACTIONS(5212), - [anon_sym_LPAREN2] = ACTIONS(5214), - [anon_sym_TILDE] = ACTIONS(5214), - [anon_sym_STAR] = ACTIONS(5214), - [anon_sym_AMP_AMP] = ACTIONS(5214), - [anon_sym_AMP] = ACTIONS(5212), - [anon_sym___extension__] = ACTIONS(5212), - [anon_sym_typedef] = ACTIONS(5212), - [anon_sym_extern] = ACTIONS(5212), - [anon_sym___attribute__] = ACTIONS(5212), - [anon_sym_COLON_COLON] = ACTIONS(5214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5214), - [anon_sym___declspec] = ACTIONS(5212), - [anon_sym___based] = ACTIONS(5212), - [anon_sym_signed] = ACTIONS(5212), - [anon_sym_unsigned] = ACTIONS(5212), - [anon_sym_long] = ACTIONS(5212), - [anon_sym_short] = ACTIONS(5212), - [anon_sym_LBRACK] = ACTIONS(5212), - [anon_sym_static] = ACTIONS(5212), - [anon_sym_register] = ACTIONS(5212), - [anon_sym_inline] = ACTIONS(5212), - [anon_sym___inline] = ACTIONS(5212), - [anon_sym___inline__] = ACTIONS(5212), - [anon_sym___forceinline] = ACTIONS(5212), - [anon_sym_thread_local] = ACTIONS(5212), - [anon_sym___thread] = ACTIONS(5212), - [anon_sym_const] = ACTIONS(5212), - [anon_sym_constexpr] = ACTIONS(5212), - [anon_sym_volatile] = ACTIONS(5212), - [anon_sym_restrict] = ACTIONS(5212), - [anon_sym___restrict__] = ACTIONS(5212), - [anon_sym__Atomic] = ACTIONS(5212), - [anon_sym__Noreturn] = ACTIONS(5212), - [anon_sym_noreturn] = ACTIONS(5212), - [anon_sym_mutable] = ACTIONS(5212), - [anon_sym_constinit] = ACTIONS(5212), - [anon_sym_consteval] = ACTIONS(5212), - [sym_primitive_type] = ACTIONS(5212), - [anon_sym_enum] = ACTIONS(5212), - [anon_sym_class] = ACTIONS(5212), - [anon_sym_struct] = ACTIONS(5212), - [anon_sym_union] = ACTIONS(5212), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5212), - [anon_sym_decltype] = ACTIONS(5212), - [anon_sym_virtual] = ACTIONS(5212), - [anon_sym_alignas] = ACTIONS(5212), - [anon_sym_explicit] = ACTIONS(5212), - [anon_sym_typename] = ACTIONS(5212), - [anon_sym_template] = ACTIONS(5212), - [anon_sym_operator] = ACTIONS(5212), - [anon_sym_friend] = ACTIONS(5212), - [anon_sym_public] = ACTIONS(5212), - [anon_sym_private] = ACTIONS(5212), - [anon_sym_protected] = ACTIONS(5212), - [anon_sym_using] = ACTIONS(5212), - [anon_sym_static_assert] = ACTIONS(5212), - }, - [2506] = { - [sym_identifier] = ACTIONS(3073), - [aux_sym_preproc_def_token1] = ACTIONS(3073), - [aux_sym_preproc_if_token1] = ACTIONS(3073), - [aux_sym_preproc_if_token2] = ACTIONS(3073), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3073), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3073), - [aux_sym_preproc_else_token1] = ACTIONS(3073), - [aux_sym_preproc_elif_token1] = ACTIONS(3073), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3073), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3073), - [sym_preproc_directive] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_TILDE] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_AMP_AMP] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym___extension__] = ACTIONS(3073), - [anon_sym_typedef] = ACTIONS(3073), - [anon_sym_extern] = ACTIONS(3073), - [anon_sym___attribute__] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3075), - [anon_sym___declspec] = ACTIONS(3073), - [anon_sym___based] = ACTIONS(3073), - [anon_sym_signed] = ACTIONS(3073), - [anon_sym_unsigned] = ACTIONS(3073), - [anon_sym_long] = ACTIONS(3073), - [anon_sym_short] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_register] = ACTIONS(3073), - [anon_sym_inline] = ACTIONS(3073), - [anon_sym___inline] = ACTIONS(3073), - [anon_sym___inline__] = ACTIONS(3073), - [anon_sym___forceinline] = ACTIONS(3073), - [anon_sym_thread_local] = ACTIONS(3073), - [anon_sym___thread] = ACTIONS(3073), - [anon_sym_const] = ACTIONS(3073), - [anon_sym_constexpr] = ACTIONS(3073), - [anon_sym_volatile] = ACTIONS(3073), - [anon_sym_restrict] = ACTIONS(3073), - [anon_sym___restrict__] = ACTIONS(3073), - [anon_sym__Atomic] = ACTIONS(3073), - [anon_sym__Noreturn] = ACTIONS(3073), - [anon_sym_noreturn] = ACTIONS(3073), - [anon_sym_mutable] = ACTIONS(3073), - [anon_sym_constinit] = ACTIONS(3073), - [anon_sym_consteval] = ACTIONS(3073), - [sym_primitive_type] = ACTIONS(3073), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3073), - [anon_sym_struct] = ACTIONS(3073), - [anon_sym_union] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3073), - [anon_sym_decltype] = ACTIONS(3073), - [anon_sym_virtual] = ACTIONS(3073), - [anon_sym_alignas] = ACTIONS(3073), - [anon_sym_explicit] = ACTIONS(3073), - [anon_sym_typename] = ACTIONS(3073), - [anon_sym_template] = ACTIONS(3073), - [anon_sym_operator] = ACTIONS(3073), - [anon_sym_friend] = ACTIONS(3073), - [anon_sym_public] = ACTIONS(3073), - [anon_sym_private] = ACTIONS(3073), - [anon_sym_protected] = ACTIONS(3073), - [anon_sym_using] = ACTIONS(3073), - [anon_sym_static_assert] = ACTIONS(3073), - }, - [2507] = { - [sym_identifier] = ACTIONS(3298), - [aux_sym_preproc_def_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token2] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3298), - [aux_sym_preproc_else_token1] = ACTIONS(3298), - [aux_sym_preproc_elif_token1] = ACTIONS(3298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3298), - [sym_preproc_directive] = ACTIONS(3298), - [anon_sym_LPAREN2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_STAR] = ACTIONS(3300), - [anon_sym_AMP_AMP] = ACTIONS(3300), - [anon_sym_AMP] = ACTIONS(3298), - [anon_sym___extension__] = ACTIONS(3298), - [anon_sym_typedef] = ACTIONS(3298), - [anon_sym_extern] = ACTIONS(3298), - [anon_sym___attribute__] = ACTIONS(3298), - [anon_sym_COLON_COLON] = ACTIONS(3300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3300), - [anon_sym___declspec] = ACTIONS(3298), - [anon_sym___based] = ACTIONS(3298), - [anon_sym_signed] = ACTIONS(3298), - [anon_sym_unsigned] = ACTIONS(3298), - [anon_sym_long] = ACTIONS(3298), - [anon_sym_short] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3298), - [anon_sym_register] = ACTIONS(3298), - [anon_sym_inline] = ACTIONS(3298), - [anon_sym___inline] = ACTIONS(3298), - [anon_sym___inline__] = ACTIONS(3298), - [anon_sym___forceinline] = ACTIONS(3298), - [anon_sym_thread_local] = ACTIONS(3298), - [anon_sym___thread] = ACTIONS(3298), - [anon_sym_const] = ACTIONS(3298), - [anon_sym_constexpr] = ACTIONS(3298), - [anon_sym_volatile] = ACTIONS(3298), - [anon_sym_restrict] = ACTIONS(3298), - [anon_sym___restrict__] = ACTIONS(3298), - [anon_sym__Atomic] = ACTIONS(3298), - [anon_sym__Noreturn] = ACTIONS(3298), - [anon_sym_noreturn] = ACTIONS(3298), - [anon_sym_mutable] = ACTIONS(3298), - [anon_sym_constinit] = ACTIONS(3298), - [anon_sym_consteval] = ACTIONS(3298), - [sym_primitive_type] = ACTIONS(3298), - [anon_sym_enum] = ACTIONS(3298), - [anon_sym_class] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3298), - [anon_sym_union] = ACTIONS(3298), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3298), - [anon_sym_decltype] = ACTIONS(3298), - [anon_sym_virtual] = ACTIONS(3298), - [anon_sym_alignas] = ACTIONS(3298), - [anon_sym_explicit] = ACTIONS(3298), - [anon_sym_typename] = ACTIONS(3298), - [anon_sym_template] = ACTIONS(3298), - [anon_sym_operator] = ACTIONS(3298), - [anon_sym_friend] = ACTIONS(3298), - [anon_sym_public] = ACTIONS(3298), - [anon_sym_private] = ACTIONS(3298), - [anon_sym_protected] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3298), - [anon_sym_static_assert] = ACTIONS(3298), - }, - [2508] = { - [sym_identifier] = 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_TILDE] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3113), - [anon_sym_AMP_AMP] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym___extension__] = ACTIONS(3111), - [anon_sym_typedef] = ACTIONS(3111), - [anon_sym_extern] = ACTIONS(3111), - [anon_sym___attribute__] = 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_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_mutable] = ACTIONS(3111), - [anon_sym_constinit] = ACTIONS(3111), - [anon_sym_consteval] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3111), - [anon_sym_decltype] = ACTIONS(3111), - [anon_sym_virtual] = ACTIONS(3111), - [anon_sym_alignas] = ACTIONS(3111), - [anon_sym_explicit] = ACTIONS(3111), - [anon_sym_typename] = ACTIONS(3111), - [anon_sym_template] = ACTIONS(3111), - [anon_sym_operator] = ACTIONS(3111), - [anon_sym_friend] = ACTIONS(3111), - [anon_sym_public] = ACTIONS(3111), - [anon_sym_private] = ACTIONS(3111), - [anon_sym_protected] = ACTIONS(3111), - [anon_sym_using] = ACTIONS(3111), - [anon_sym_static_assert] = ACTIONS(3111), - }, - [2509] = { - [sym_identifier] = ACTIONS(3107), - [aux_sym_preproc_def_token1] = ACTIONS(3107), - [aux_sym_preproc_if_token1] = ACTIONS(3107), - [aux_sym_preproc_if_token2] = ACTIONS(3107), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3107), - [aux_sym_preproc_else_token1] = ACTIONS(3107), - [aux_sym_preproc_elif_token1] = ACTIONS(3107), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3107), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3107), - [sym_preproc_directive] = ACTIONS(3107), - [anon_sym_LPAREN2] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3107), - [anon_sym___extension__] = ACTIONS(3107), - [anon_sym_typedef] = ACTIONS(3107), - [anon_sym_extern] = ACTIONS(3107), - [anon_sym___attribute__] = ACTIONS(3107), - [anon_sym_COLON_COLON] = ACTIONS(3109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), - [anon_sym___declspec] = ACTIONS(3107), - [anon_sym___based] = ACTIONS(3107), - [anon_sym_signed] = ACTIONS(3107), - [anon_sym_unsigned] = ACTIONS(3107), - [anon_sym_long] = ACTIONS(3107), - [anon_sym_short] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_register] = ACTIONS(3107), - [anon_sym_inline] = ACTIONS(3107), - [anon_sym___inline] = ACTIONS(3107), - [anon_sym___inline__] = ACTIONS(3107), - [anon_sym___forceinline] = ACTIONS(3107), - [anon_sym_thread_local] = ACTIONS(3107), - [anon_sym___thread] = ACTIONS(3107), - [anon_sym_const] = ACTIONS(3107), - [anon_sym_constexpr] = ACTIONS(3107), - [anon_sym_volatile] = ACTIONS(3107), - [anon_sym_restrict] = ACTIONS(3107), - [anon_sym___restrict__] = ACTIONS(3107), - [anon_sym__Atomic] = ACTIONS(3107), - [anon_sym__Noreturn] = ACTIONS(3107), - [anon_sym_noreturn] = ACTIONS(3107), - [anon_sym_mutable] = ACTIONS(3107), - [anon_sym_constinit] = ACTIONS(3107), - [anon_sym_consteval] = ACTIONS(3107), - [sym_primitive_type] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3107), - [anon_sym_union] = ACTIONS(3107), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3107), - [anon_sym_decltype] = ACTIONS(3107), - [anon_sym_virtual] = ACTIONS(3107), - [anon_sym_alignas] = ACTIONS(3107), - [anon_sym_explicit] = ACTIONS(3107), - [anon_sym_typename] = ACTIONS(3107), - [anon_sym_template] = ACTIONS(3107), - [anon_sym_operator] = ACTIONS(3107), - [anon_sym_friend] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_protected] = ACTIONS(3107), - [anon_sym_using] = ACTIONS(3107), - [anon_sym_static_assert] = ACTIONS(3107), - }, - [2510] = { - [sym_identifier] = ACTIONS(3083), - [aux_sym_preproc_def_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token2] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), - [aux_sym_preproc_else_token1] = ACTIONS(3083), - [aux_sym_preproc_elif_token1] = ACTIONS(3083), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3083), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3083), - [sym_preproc_directive] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym___extension__] = ACTIONS(3083), - [anon_sym_typedef] = ACTIONS(3083), - [anon_sym_extern] = ACTIONS(3083), - [anon_sym___attribute__] = ACTIONS(3083), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), - [anon_sym___declspec] = ACTIONS(3083), - [anon_sym___based] = ACTIONS(3083), - [anon_sym_signed] = ACTIONS(3083), - [anon_sym_unsigned] = ACTIONS(3083), - [anon_sym_long] = ACTIONS(3083), - [anon_sym_short] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_static] = ACTIONS(3083), - [anon_sym_register] = ACTIONS(3083), - [anon_sym_inline] = ACTIONS(3083), - [anon_sym___inline] = ACTIONS(3083), - [anon_sym___inline__] = ACTIONS(3083), - [anon_sym___forceinline] = ACTIONS(3083), - [anon_sym_thread_local] = ACTIONS(3083), - [anon_sym___thread] = ACTIONS(3083), - [anon_sym_const] = ACTIONS(3083), - [anon_sym_constexpr] = ACTIONS(3083), - [anon_sym_volatile] = ACTIONS(3083), - [anon_sym_restrict] = ACTIONS(3083), - [anon_sym___restrict__] = ACTIONS(3083), - [anon_sym__Atomic] = ACTIONS(3083), - [anon_sym__Noreturn] = ACTIONS(3083), - [anon_sym_noreturn] = ACTIONS(3083), - [anon_sym_mutable] = ACTIONS(3083), - [anon_sym_constinit] = ACTIONS(3083), - [anon_sym_consteval] = ACTIONS(3083), - [sym_primitive_type] = ACTIONS(3083), - [anon_sym_enum] = ACTIONS(3083), - [anon_sym_class] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3083), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3083), - [anon_sym_decltype] = ACTIONS(3083), - [anon_sym_virtual] = ACTIONS(3083), - [anon_sym_alignas] = ACTIONS(3083), - [anon_sym_explicit] = ACTIONS(3083), - [anon_sym_typename] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3083), - [anon_sym_operator] = ACTIONS(3083), - [anon_sym_friend] = ACTIONS(3083), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_using] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3083), - }, - [2511] = { - [sym_identifier] = ACTIONS(5240), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5242), - [anon_sym_COMMA] = ACTIONS(5242), - [anon_sym_RPAREN] = ACTIONS(5242), - [anon_sym_LPAREN2] = ACTIONS(5242), - [anon_sym_DASH] = ACTIONS(5240), - [anon_sym_PLUS] = ACTIONS(5240), - [anon_sym_STAR] = ACTIONS(5242), - [anon_sym_SLASH] = ACTIONS(5240), - [anon_sym_PERCENT] = ACTIONS(5242), - [anon_sym_PIPE_PIPE] = ACTIONS(5242), - [anon_sym_AMP_AMP] = ACTIONS(5242), - [anon_sym_PIPE] = ACTIONS(5240), - [anon_sym_CARET] = ACTIONS(5242), - [anon_sym_AMP] = ACTIONS(5240), - [anon_sym_EQ_EQ] = ACTIONS(5242), - [anon_sym_BANG_EQ] = ACTIONS(5242), - [anon_sym_GT] = ACTIONS(5240), - [anon_sym_GT_EQ] = ACTIONS(5242), - [anon_sym_LT_EQ] = ACTIONS(5240), - [anon_sym_LT] = ACTIONS(5240), - [anon_sym_LT_LT] = ACTIONS(5242), - [anon_sym_GT_GT] = ACTIONS(5242), - [anon_sym_SEMI] = ACTIONS(5242), - [anon_sym___extension__] = ACTIONS(5240), - [anon_sym___attribute__] = ACTIONS(5240), - [anon_sym_COLON_COLON] = ACTIONS(5206), - [anon_sym___based] = ACTIONS(5240), - [anon_sym_LBRACE] = ACTIONS(5242), - [anon_sym_RBRACE] = ACTIONS(5242), - [anon_sym_signed] = ACTIONS(5240), - [anon_sym_unsigned] = ACTIONS(5240), - [anon_sym_long] = ACTIONS(5240), - [anon_sym_short] = ACTIONS(5240), - [anon_sym_LBRACK] = ACTIONS(5242), - [anon_sym_RBRACK] = ACTIONS(5242), - [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_mutable] = ACTIONS(5240), - [anon_sym_constinit] = ACTIONS(5240), - [anon_sym_consteval] = ACTIONS(5240), - [sym_primitive_type] = ACTIONS(5240), - [anon_sym_COLON] = ACTIONS(5240), - [anon_sym_QMARK] = ACTIONS(5242), - [anon_sym_LT_EQ_GT] = ACTIONS(5242), - [anon_sym_or] = ACTIONS(5240), - [anon_sym_and] = ACTIONS(5240), - [anon_sym_bitor] = ACTIONS(5240), - [anon_sym_xor] = ACTIONS(5240), - [anon_sym_bitand] = ACTIONS(5240), - [anon_sym_not_eq] = ACTIONS(5240), - [anon_sym_DASH_DASH] = ACTIONS(5242), - [anon_sym_PLUS_PLUS] = ACTIONS(5242), - [anon_sym_DOT] = ACTIONS(5240), - [anon_sym_DOT_STAR] = ACTIONS(5242), - [anon_sym_DASH_GT] = ACTIONS(5242), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5240), - [anon_sym_decltype] = ACTIONS(5240), - [anon_sym_final] = ACTIONS(5240), - [anon_sym_override] = ACTIONS(5240), - [anon_sym_requires] = ACTIONS(5240), - }, - [2512] = { - [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___extension__] = ACTIONS(3304), - [anon_sym_typedef] = ACTIONS(3304), - [anon_sym_extern] = ACTIONS(3304), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = 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_virtual] = ACTIONS(3304), - [anon_sym_alignas] = ACTIONS(3304), - [anon_sym_explicit] = ACTIONS(3304), - [anon_sym_typename] = ACTIONS(3304), - [anon_sym_template] = ACTIONS(3304), - [anon_sym_operator] = ACTIONS(3304), - [anon_sym_friend] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_protected] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_static_assert] = ACTIONS(3304), - }, - [2513] = { - [sym_identifier] = ACTIONS(5244), - [aux_sym_preproc_def_token1] = ACTIONS(5244), - [aux_sym_preproc_if_token1] = ACTIONS(5244), - [aux_sym_preproc_if_token2] = ACTIONS(5244), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5244), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5244), - [aux_sym_preproc_else_token1] = ACTIONS(5244), - [aux_sym_preproc_elif_token1] = ACTIONS(5244), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5244), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5244), - [sym_preproc_directive] = ACTIONS(5244), - [anon_sym_LPAREN2] = ACTIONS(5246), - [anon_sym_TILDE] = ACTIONS(5246), - [anon_sym_STAR] = ACTIONS(5246), - [anon_sym_AMP_AMP] = ACTIONS(5246), - [anon_sym_AMP] = ACTIONS(5244), - [anon_sym___extension__] = ACTIONS(5244), - [anon_sym_typedef] = ACTIONS(5244), - [anon_sym_extern] = ACTIONS(5244), - [anon_sym___attribute__] = ACTIONS(5244), - [anon_sym_COLON_COLON] = ACTIONS(5246), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5246), - [anon_sym___declspec] = ACTIONS(5244), - [anon_sym___based] = ACTIONS(5244), - [anon_sym_signed] = ACTIONS(5244), - [anon_sym_unsigned] = ACTIONS(5244), - [anon_sym_long] = ACTIONS(5244), - [anon_sym_short] = ACTIONS(5244), - [anon_sym_LBRACK] = ACTIONS(5244), - [anon_sym_static] = ACTIONS(5244), - [anon_sym_register] = ACTIONS(5244), - [anon_sym_inline] = ACTIONS(5244), - [anon_sym___inline] = ACTIONS(5244), - [anon_sym___inline__] = ACTIONS(5244), - [anon_sym___forceinline] = ACTIONS(5244), - [anon_sym_thread_local] = ACTIONS(5244), - [anon_sym___thread] = ACTIONS(5244), - [anon_sym_const] = ACTIONS(5244), - [anon_sym_constexpr] = ACTIONS(5244), - [anon_sym_volatile] = ACTIONS(5244), - [anon_sym_restrict] = ACTIONS(5244), - [anon_sym___restrict__] = ACTIONS(5244), - [anon_sym__Atomic] = ACTIONS(5244), - [anon_sym__Noreturn] = ACTIONS(5244), - [anon_sym_noreturn] = ACTIONS(5244), - [anon_sym_mutable] = ACTIONS(5244), - [anon_sym_constinit] = ACTIONS(5244), - [anon_sym_consteval] = ACTIONS(5244), - [sym_primitive_type] = ACTIONS(5244), - [anon_sym_enum] = ACTIONS(5244), - [anon_sym_class] = ACTIONS(5244), - [anon_sym_struct] = ACTIONS(5244), - [anon_sym_union] = ACTIONS(5244), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5244), - [anon_sym_decltype] = ACTIONS(5244), - [anon_sym_virtual] = ACTIONS(5244), - [anon_sym_alignas] = ACTIONS(5244), - [anon_sym_explicit] = ACTIONS(5244), - [anon_sym_typename] = ACTIONS(5244), - [anon_sym_template] = ACTIONS(5244), - [anon_sym_operator] = ACTIONS(5244), - [anon_sym_friend] = ACTIONS(5244), - [anon_sym_public] = ACTIONS(5244), - [anon_sym_private] = ACTIONS(5244), - [anon_sym_protected] = ACTIONS(5244), - [anon_sym_using] = ACTIONS(5244), - [anon_sym_static_assert] = ACTIONS(5244), - }, - [2514] = { - [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___extension__] = ACTIONS(3304), - [anon_sym_typedef] = ACTIONS(3304), - [anon_sym_extern] = ACTIONS(3304), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = 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_virtual] = ACTIONS(3304), - [anon_sym_alignas] = ACTIONS(3304), - [anon_sym_explicit] = ACTIONS(3304), - [anon_sym_typename] = ACTIONS(3304), - [anon_sym_template] = ACTIONS(3304), - [anon_sym_operator] = ACTIONS(3304), - [anon_sym_friend] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_protected] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_static_assert] = ACTIONS(3304), - }, - [2515] = { - [sym_string_literal] = STATE(2397), - [sym_template_argument_list] = STATE(3383), - [sym_raw_string_literal] = STATE(2397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(5248), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5251), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4920), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(5254), - [anon_sym_EQ] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_and_eq] = ACTIONS(4278), - [anon_sym_or_eq] = ACTIONS(4278), - [anon_sym_xor_eq] = ACTIONS(4278), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(5136), - [anon_sym_u_DQUOTE] = ACTIONS(5136), - [anon_sym_U_DQUOTE] = ACTIONS(5136), - [anon_sym_u8_DQUOTE] = ACTIONS(5136), - [anon_sym_DQUOTE] = ACTIONS(5136), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5138), - [anon_sym_LR_DQUOTE] = ACTIONS(5138), - [anon_sym_uR_DQUOTE] = ACTIONS(5138), - [anon_sym_UR_DQUOTE] = ACTIONS(5138), - [anon_sym_u8R_DQUOTE] = ACTIONS(5138), - }, - [2516] = { - [sym_identifier] = ACTIONS(5240), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5242), - [anon_sym_COMMA] = ACTIONS(5242), - [anon_sym_RPAREN] = ACTIONS(5242), - [anon_sym_LPAREN2] = ACTIONS(5242), - [anon_sym_DASH] = ACTIONS(5240), - [anon_sym_PLUS] = ACTIONS(5240), - [anon_sym_STAR] = ACTIONS(5242), - [anon_sym_SLASH] = ACTIONS(5240), - [anon_sym_PERCENT] = ACTIONS(5242), - [anon_sym_PIPE_PIPE] = ACTIONS(5242), - [anon_sym_AMP_AMP] = ACTIONS(5242), - [anon_sym_PIPE] = ACTIONS(5240), - [anon_sym_CARET] = ACTIONS(5242), - [anon_sym_AMP] = ACTIONS(5240), - [anon_sym_EQ_EQ] = ACTIONS(5242), - [anon_sym_BANG_EQ] = ACTIONS(5242), - [anon_sym_GT] = ACTIONS(5240), - [anon_sym_GT_EQ] = ACTIONS(5242), - [anon_sym_LT_EQ] = ACTIONS(5240), - [anon_sym_LT] = ACTIONS(5240), - [anon_sym_LT_LT] = ACTIONS(5242), - [anon_sym_GT_GT] = ACTIONS(5242), - [anon_sym_SEMI] = ACTIONS(5242), - [anon_sym___extension__] = ACTIONS(5240), - [anon_sym___attribute__] = ACTIONS(5240), - [anon_sym_COLON_COLON] = ACTIONS(5206), - [anon_sym___based] = ACTIONS(5240), - [anon_sym_LBRACE] = ACTIONS(5242), - [anon_sym_RBRACE] = ACTIONS(5242), - [anon_sym_signed] = ACTIONS(5240), - [anon_sym_unsigned] = ACTIONS(5240), - [anon_sym_long] = ACTIONS(5240), - [anon_sym_short] = ACTIONS(5240), - [anon_sym_LBRACK] = ACTIONS(5242), - [anon_sym_RBRACK] = ACTIONS(5242), - [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_mutable] = ACTIONS(5240), - [anon_sym_constinit] = ACTIONS(5240), - [anon_sym_consteval] = ACTIONS(5240), - [sym_primitive_type] = ACTIONS(5240), - [anon_sym_COLON] = ACTIONS(5240), - [anon_sym_QMARK] = ACTIONS(5242), - [anon_sym_LT_EQ_GT] = ACTIONS(5242), - [anon_sym_or] = ACTIONS(5240), - [anon_sym_and] = ACTIONS(5240), - [anon_sym_bitor] = ACTIONS(5240), - [anon_sym_xor] = ACTIONS(5240), - [anon_sym_bitand] = ACTIONS(5240), - [anon_sym_not_eq] = ACTIONS(5240), - [anon_sym_DASH_DASH] = ACTIONS(5242), - [anon_sym_PLUS_PLUS] = ACTIONS(5242), - [anon_sym_DOT] = ACTIONS(5240), - [anon_sym_DOT_STAR] = ACTIONS(5242), - [anon_sym_DASH_GT] = ACTIONS(5242), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5240), - [anon_sym_decltype] = ACTIONS(5240), - [anon_sym_final] = ACTIONS(5240), - [anon_sym_override] = ACTIONS(5240), - [anon_sym_requires] = ACTIONS(5240), - }, - [2517] = { - [sym_string_literal] = STATE(2603), - [sym_template_argument_list] = STATE(3665), - [sym_raw_string_literal] = STATE(2603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_RPAREN] = ACTIONS(5248), - [anon_sym_LPAREN2] = ACTIONS(5248), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5257), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4920), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(5254), - [anon_sym_EQ] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_and_eq] = ACTIONS(4278), - [anon_sym_or_eq] = ACTIONS(4278), - [anon_sym_xor_eq] = ACTIONS(4278), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4286), - [anon_sym_L_DQUOTE] = ACTIONS(5260), - [anon_sym_u_DQUOTE] = ACTIONS(5260), - [anon_sym_U_DQUOTE] = ACTIONS(5260), - [anon_sym_u8_DQUOTE] = ACTIONS(5260), - [anon_sym_DQUOTE] = ACTIONS(5260), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5262), - [anon_sym_LR_DQUOTE] = ACTIONS(5262), - [anon_sym_uR_DQUOTE] = ACTIONS(5262), - [anon_sym_UR_DQUOTE] = ACTIONS(5262), - [anon_sym_u8R_DQUOTE] = ACTIONS(5262), - [anon_sym_DASH_GT_STAR] = ACTIONS(4278), - }, - [2518] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), - [anon_sym_COMMA] = ACTIONS(4904), - [anon_sym_RPAREN] = ACTIONS(4894), - [anon_sym_LPAREN2] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4899), - [anon_sym_STAR] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4899), - [anon_sym_PERCENT] = ACTIONS(4899), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_CARET] = ACTIONS(4899), - [anon_sym_AMP] = ACTIONS(4901), - [anon_sym_EQ_EQ] = ACTIONS(4904), - [anon_sym_BANG_EQ] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4899), - [anon_sym_GT_EQ] = ACTIONS(4904), - [anon_sym_LT_EQ] = ACTIONS(4899), - [anon_sym_LT] = ACTIONS(4899), - [anon_sym_LT_LT] = ACTIONS(4899), - [anon_sym_GT_GT] = ACTIONS(4899), - [anon_sym___extension__] = ACTIONS(4897), - [anon_sym_COLON_COLON] = ACTIONS(4897), - [anon_sym_LBRACE] = ACTIONS(4897), - [anon_sym_LBRACK] = ACTIONS(4894), - [anon_sym_EQ] = ACTIONS(4899), - [anon_sym_const] = ACTIONS(4892), - [anon_sym_constexpr] = ACTIONS(4897), - [anon_sym_volatile] = ACTIONS(4897), - [anon_sym_restrict] = ACTIONS(4897), - [anon_sym___restrict__] = ACTIONS(4897), - [anon_sym__Atomic] = ACTIONS(4897), - [anon_sym__Noreturn] = ACTIONS(4897), - [anon_sym_noreturn] = ACTIONS(4897), - [anon_sym_mutable] = ACTIONS(4897), - [anon_sym_constinit] = ACTIONS(4897), - [anon_sym_consteval] = ACTIONS(4897), - [anon_sym_QMARK] = ACTIONS(4904), - [anon_sym_STAR_EQ] = ACTIONS(4904), - [anon_sym_SLASH_EQ] = ACTIONS(4904), - [anon_sym_PERCENT_EQ] = ACTIONS(4904), - [anon_sym_PLUS_EQ] = ACTIONS(4904), - [anon_sym_DASH_EQ] = ACTIONS(4904), - [anon_sym_LT_LT_EQ] = ACTIONS(4904), - [anon_sym_GT_GT_EQ] = ACTIONS(4904), - [anon_sym_AMP_EQ] = ACTIONS(4904), - [anon_sym_CARET_EQ] = ACTIONS(4904), - [anon_sym_PIPE_EQ] = ACTIONS(4904), - [anon_sym_and_eq] = ACTIONS(4904), - [anon_sym_or_eq] = ACTIONS(4904), - [anon_sym_xor_eq] = ACTIONS(4904), - [anon_sym_LT_EQ_GT] = ACTIONS(4904), - [anon_sym_or] = ACTIONS(4899), - [anon_sym_and] = ACTIONS(4899), - [anon_sym_bitor] = ACTIONS(4904), - [anon_sym_xor] = ACTIONS(4899), - [anon_sym_bitand] = ACTIONS(4904), - [anon_sym_not_eq] = ACTIONS(4904), - [anon_sym_DASH_DASH] = ACTIONS(4904), - [anon_sym_PLUS_PLUS] = ACTIONS(4904), - [anon_sym_DOT] = ACTIONS(4899), - [anon_sym_DOT_STAR] = ACTIONS(4904), - [anon_sym_DASH_GT] = ACTIONS(4899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4897), - [anon_sym_decltype] = ACTIONS(4897), - [anon_sym_DASH_GT_STAR] = ACTIONS(4904), - }, - [2519] = { - [sym_identifier] = ACTIONS(2917), - [aux_sym_preproc_def_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token2] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), - [aux_sym_preproc_else_token1] = ACTIONS(2917), - [aux_sym_preproc_elif_token1] = ACTIONS(2917), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2917), - [sym_preproc_directive] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym___based] = ACTIONS(2917), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_explicit] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_operator] = ACTIONS(2917), - [anon_sym_friend] = ACTIONS(2917), - [anon_sym_public] = ACTIONS(2917), - [anon_sym_private] = ACTIONS(2917), - [anon_sym_protected] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_static_assert] = ACTIONS(2917), - }, - [2520] = { - [sym_identifier] = ACTIONS(5264), - [aux_sym_preproc_def_token1] = ACTIONS(5264), - [aux_sym_preproc_if_token1] = ACTIONS(5264), - [aux_sym_preproc_if_token2] = ACTIONS(5264), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5264), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5264), - [aux_sym_preproc_else_token1] = ACTIONS(5264), - [aux_sym_preproc_elif_token1] = ACTIONS(5264), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5264), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5264), - [sym_preproc_directive] = ACTIONS(5264), - [anon_sym_LPAREN2] = ACTIONS(5266), - [anon_sym_TILDE] = ACTIONS(5266), - [anon_sym_STAR] = ACTIONS(5266), - [anon_sym_AMP_AMP] = ACTIONS(5266), - [anon_sym_AMP] = ACTIONS(5264), - [anon_sym___extension__] = ACTIONS(5264), - [anon_sym_typedef] = ACTIONS(5264), - [anon_sym_extern] = ACTIONS(5264), - [anon_sym___attribute__] = ACTIONS(5264), - [anon_sym_COLON_COLON] = ACTIONS(5266), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5266), - [anon_sym___declspec] = ACTIONS(5264), - [anon_sym___based] = ACTIONS(5264), - [anon_sym_signed] = ACTIONS(5264), - [anon_sym_unsigned] = ACTIONS(5264), - [anon_sym_long] = ACTIONS(5264), - [anon_sym_short] = ACTIONS(5264), - [anon_sym_LBRACK] = ACTIONS(5264), - [anon_sym_static] = ACTIONS(5264), - [anon_sym_register] = ACTIONS(5264), - [anon_sym_inline] = ACTIONS(5264), - [anon_sym___inline] = ACTIONS(5264), - [anon_sym___inline__] = ACTIONS(5264), - [anon_sym___forceinline] = ACTIONS(5264), - [anon_sym_thread_local] = ACTIONS(5264), - [anon_sym___thread] = ACTIONS(5264), - [anon_sym_const] = ACTIONS(5264), - [anon_sym_constexpr] = ACTIONS(5264), - [anon_sym_volatile] = ACTIONS(5264), - [anon_sym_restrict] = ACTIONS(5264), - [anon_sym___restrict__] = ACTIONS(5264), - [anon_sym__Atomic] = ACTIONS(5264), - [anon_sym__Noreturn] = ACTIONS(5264), - [anon_sym_noreturn] = ACTIONS(5264), - [anon_sym_mutable] = ACTIONS(5264), - [anon_sym_constinit] = ACTIONS(5264), - [anon_sym_consteval] = ACTIONS(5264), - [sym_primitive_type] = ACTIONS(5264), - [anon_sym_enum] = ACTIONS(5264), - [anon_sym_class] = ACTIONS(5264), - [anon_sym_struct] = ACTIONS(5264), - [anon_sym_union] = ACTIONS(5264), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5264), - [anon_sym_decltype] = ACTIONS(5264), - [anon_sym_virtual] = ACTIONS(5264), - [anon_sym_alignas] = ACTIONS(5264), - [anon_sym_explicit] = ACTIONS(5264), - [anon_sym_typename] = ACTIONS(5264), - [anon_sym_template] = ACTIONS(5264), - [anon_sym_operator] = ACTIONS(5264), - [anon_sym_friend] = ACTIONS(5264), - [anon_sym_public] = ACTIONS(5264), - [anon_sym_private] = ACTIONS(5264), - [anon_sym_protected] = ACTIONS(5264), - [anon_sym_using] = ACTIONS(5264), - [anon_sym_static_assert] = ACTIONS(5264), - }, - [2521] = { - [sym_identifier] = ACTIONS(5268), - [aux_sym_preproc_def_token1] = ACTIONS(5268), - [aux_sym_preproc_if_token1] = ACTIONS(5268), - [aux_sym_preproc_if_token2] = ACTIONS(5268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5268), - [aux_sym_preproc_else_token1] = ACTIONS(5268), - [aux_sym_preproc_elif_token1] = ACTIONS(5268), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5268), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5268), - [sym_preproc_directive] = ACTIONS(5268), - [anon_sym_LPAREN2] = ACTIONS(5270), - [anon_sym_TILDE] = ACTIONS(5270), - [anon_sym_STAR] = ACTIONS(5270), - [anon_sym_AMP_AMP] = ACTIONS(5270), - [anon_sym_AMP] = ACTIONS(5268), - [anon_sym___extension__] = ACTIONS(5268), - [anon_sym_typedef] = ACTIONS(5268), - [anon_sym_extern] = ACTIONS(5268), - [anon_sym___attribute__] = ACTIONS(5268), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5270), - [anon_sym___declspec] = ACTIONS(5268), - [anon_sym___based] = ACTIONS(5268), - [anon_sym_signed] = ACTIONS(5268), - [anon_sym_unsigned] = ACTIONS(5268), - [anon_sym_long] = ACTIONS(5268), - [anon_sym_short] = ACTIONS(5268), - [anon_sym_LBRACK] = ACTIONS(5268), - [anon_sym_static] = ACTIONS(5268), - [anon_sym_register] = ACTIONS(5268), - [anon_sym_inline] = ACTIONS(5268), - [anon_sym___inline] = ACTIONS(5268), - [anon_sym___inline__] = ACTIONS(5268), - [anon_sym___forceinline] = ACTIONS(5268), - [anon_sym_thread_local] = ACTIONS(5268), - [anon_sym___thread] = ACTIONS(5268), - [anon_sym_const] = ACTIONS(5268), - [anon_sym_constexpr] = ACTIONS(5268), - [anon_sym_volatile] = ACTIONS(5268), - [anon_sym_restrict] = ACTIONS(5268), - [anon_sym___restrict__] = ACTIONS(5268), - [anon_sym__Atomic] = ACTIONS(5268), - [anon_sym__Noreturn] = ACTIONS(5268), - [anon_sym_noreturn] = ACTIONS(5268), - [anon_sym_mutable] = ACTIONS(5268), - [anon_sym_constinit] = ACTIONS(5268), - [anon_sym_consteval] = ACTIONS(5268), - [sym_primitive_type] = ACTIONS(5268), - [anon_sym_enum] = ACTIONS(5268), - [anon_sym_class] = ACTIONS(5268), - [anon_sym_struct] = ACTIONS(5268), - [anon_sym_union] = ACTIONS(5268), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5268), - [anon_sym_decltype] = ACTIONS(5268), - [anon_sym_virtual] = ACTIONS(5268), - [anon_sym_alignas] = ACTIONS(5268), - [anon_sym_explicit] = ACTIONS(5268), - [anon_sym_typename] = ACTIONS(5268), - [anon_sym_template] = ACTIONS(5268), - [anon_sym_operator] = ACTIONS(5268), - [anon_sym_friend] = ACTIONS(5268), - [anon_sym_public] = ACTIONS(5268), - [anon_sym_private] = ACTIONS(5268), - [anon_sym_protected] = ACTIONS(5268), - [anon_sym_using] = ACTIONS(5268), - [anon_sym_static_assert] = ACTIONS(5268), - }, - [2522] = { - [sym_identifier] = ACTIONS(4848), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4850), - [anon_sym_COMMA] = ACTIONS(4850), - [anon_sym_RPAREN] = ACTIONS(4850), - [anon_sym_LPAREN2] = ACTIONS(4850), - [anon_sym_DASH] = ACTIONS(4848), - [anon_sym_PLUS] = ACTIONS(4848), - [anon_sym_STAR] = ACTIONS(4850), - [anon_sym_SLASH] = ACTIONS(4848), - [anon_sym_PERCENT] = ACTIONS(4850), - [anon_sym_PIPE_PIPE] = ACTIONS(4850), - [anon_sym_AMP_AMP] = ACTIONS(4850), - [anon_sym_PIPE] = ACTIONS(4848), - [anon_sym_CARET] = ACTIONS(4850), - [anon_sym_AMP] = ACTIONS(4848), - [anon_sym_EQ_EQ] = ACTIONS(4850), - [anon_sym_BANG_EQ] = ACTIONS(4850), - [anon_sym_GT] = ACTIONS(4848), - [anon_sym_GT_EQ] = ACTIONS(4850), - [anon_sym_LT_EQ] = ACTIONS(4848), - [anon_sym_LT] = ACTIONS(4848), - [anon_sym_LT_LT] = ACTIONS(4850), - [anon_sym_GT_GT] = ACTIONS(4850), - [anon_sym_SEMI] = ACTIONS(4850), - [anon_sym___extension__] = ACTIONS(4848), - [anon_sym___attribute__] = ACTIONS(4848), - [anon_sym_COLON_COLON] = ACTIONS(4850), - [anon_sym___based] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4850), - [anon_sym_RBRACE] = ACTIONS(4850), - [anon_sym_signed] = ACTIONS(4848), - [anon_sym_unsigned] = ACTIONS(4848), - [anon_sym_long] = ACTIONS(4848), - [anon_sym_short] = ACTIONS(4848), - [anon_sym_LBRACK] = ACTIONS(4850), - [anon_sym_RBRACK] = ACTIONS(4850), - [anon_sym_const] = ACTIONS(4848), - [anon_sym_constexpr] = ACTIONS(4848), - [anon_sym_volatile] = ACTIONS(4848), - [anon_sym_restrict] = ACTIONS(4848), - [anon_sym___restrict__] = ACTIONS(4848), - [anon_sym__Atomic] = ACTIONS(4848), - [anon_sym__Noreturn] = ACTIONS(4848), - [anon_sym_noreturn] = ACTIONS(4848), - [anon_sym_mutable] = ACTIONS(4848), - [anon_sym_constinit] = ACTIONS(4848), - [anon_sym_consteval] = ACTIONS(4848), - [sym_primitive_type] = ACTIONS(4848), - [anon_sym_COLON] = ACTIONS(4848), - [anon_sym_QMARK] = ACTIONS(4850), - [anon_sym_LT_EQ_GT] = ACTIONS(4850), - [anon_sym_or] = ACTIONS(4848), - [anon_sym_and] = ACTIONS(4848), - [anon_sym_bitor] = ACTIONS(4848), - [anon_sym_xor] = ACTIONS(4848), - [anon_sym_bitand] = ACTIONS(4848), - [anon_sym_not_eq] = ACTIONS(4848), - [anon_sym_DASH_DASH] = ACTIONS(4850), - [anon_sym_PLUS_PLUS] = ACTIONS(4850), - [anon_sym_DOT] = ACTIONS(4848), - [anon_sym_DOT_STAR] = ACTIONS(4850), - [anon_sym_DASH_GT] = ACTIONS(4850), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4848), - [anon_sym_decltype] = ACTIONS(4848), - [anon_sym_final] = ACTIONS(4848), - [anon_sym_override] = ACTIONS(4848), - [anon_sym_requires] = ACTIONS(4848), - }, - [2523] = { - [sym_identifier] = ACTIONS(5272), - [aux_sym_preproc_def_token1] = ACTIONS(5272), - [aux_sym_preproc_if_token1] = ACTIONS(5272), - [aux_sym_preproc_if_token2] = ACTIONS(5272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5272), - [aux_sym_preproc_else_token1] = ACTIONS(5272), - [aux_sym_preproc_elif_token1] = ACTIONS(5272), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5272), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5272), - [sym_preproc_directive] = ACTIONS(5272), - [anon_sym_LPAREN2] = ACTIONS(5274), - [anon_sym_TILDE] = ACTIONS(5274), - [anon_sym_STAR] = ACTIONS(5274), - [anon_sym_AMP_AMP] = ACTIONS(5274), - [anon_sym_AMP] = ACTIONS(5272), - [anon_sym___extension__] = ACTIONS(5272), - [anon_sym_typedef] = ACTIONS(5272), - [anon_sym_extern] = ACTIONS(5272), - [anon_sym___attribute__] = ACTIONS(5272), - [anon_sym_COLON_COLON] = ACTIONS(5274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5274), - [anon_sym___declspec] = ACTIONS(5272), - [anon_sym___based] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(5272), - [anon_sym_unsigned] = ACTIONS(5272), - [anon_sym_long] = ACTIONS(5272), - [anon_sym_short] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5272), - [anon_sym_static] = ACTIONS(5272), - [anon_sym_register] = ACTIONS(5272), - [anon_sym_inline] = ACTIONS(5272), - [anon_sym___inline] = ACTIONS(5272), - [anon_sym___inline__] = ACTIONS(5272), - [anon_sym___forceinline] = ACTIONS(5272), - [anon_sym_thread_local] = ACTIONS(5272), - [anon_sym___thread] = ACTIONS(5272), - [anon_sym_const] = ACTIONS(5272), - [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_mutable] = ACTIONS(5272), - [anon_sym_constinit] = ACTIONS(5272), - [anon_sym_consteval] = ACTIONS(5272), - [sym_primitive_type] = ACTIONS(5272), - [anon_sym_enum] = ACTIONS(5272), - [anon_sym_class] = ACTIONS(5272), - [anon_sym_struct] = ACTIONS(5272), - [anon_sym_union] = ACTIONS(5272), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5272), - [anon_sym_decltype] = ACTIONS(5272), - [anon_sym_virtual] = ACTIONS(5272), - [anon_sym_alignas] = ACTIONS(5272), - [anon_sym_explicit] = ACTIONS(5272), - [anon_sym_typename] = ACTIONS(5272), - [anon_sym_template] = ACTIONS(5272), - [anon_sym_operator] = ACTIONS(5272), - [anon_sym_friend] = ACTIONS(5272), - [anon_sym_public] = ACTIONS(5272), - [anon_sym_private] = ACTIONS(5272), - [anon_sym_protected] = ACTIONS(5272), - [anon_sym_using] = ACTIONS(5272), - [anon_sym_static_assert] = ACTIONS(5272), - }, - [2524] = { - [sym_identifier] = ACTIONS(3414), - [aux_sym_preproc_def_token1] = ACTIONS(3414), - [aux_sym_preproc_if_token1] = ACTIONS(3414), - [aux_sym_preproc_if_token2] = ACTIONS(3414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3414), - [aux_sym_preproc_else_token1] = ACTIONS(3414), - [aux_sym_preproc_elif_token1] = ACTIONS(3414), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3414), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3414), - [sym_preproc_directive] = ACTIONS(3414), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_TILDE] = ACTIONS(3416), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym___extension__] = ACTIONS(3414), - [anon_sym_typedef] = ACTIONS(3414), - [anon_sym_extern] = ACTIONS(3414), - [anon_sym___attribute__] = ACTIONS(3414), - [anon_sym_COLON_COLON] = ACTIONS(3416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3416), - [anon_sym___declspec] = ACTIONS(3414), - [anon_sym___based] = ACTIONS(3414), - [anon_sym_signed] = ACTIONS(3414), - [anon_sym_unsigned] = ACTIONS(3414), - [anon_sym_long] = ACTIONS(3414), - [anon_sym_short] = ACTIONS(3414), - [anon_sym_LBRACK] = ACTIONS(3414), - [anon_sym_static] = ACTIONS(3414), - [anon_sym_register] = ACTIONS(3414), - [anon_sym_inline] = ACTIONS(3414), - [anon_sym___inline] = ACTIONS(3414), - [anon_sym___inline__] = ACTIONS(3414), - [anon_sym___forceinline] = ACTIONS(3414), - [anon_sym_thread_local] = ACTIONS(3414), - [anon_sym___thread] = ACTIONS(3414), - [anon_sym_const] = ACTIONS(3414), - [anon_sym_constexpr] = ACTIONS(3414), - [anon_sym_volatile] = ACTIONS(3414), - [anon_sym_restrict] = ACTIONS(3414), - [anon_sym___restrict__] = ACTIONS(3414), - [anon_sym__Atomic] = ACTIONS(3414), - [anon_sym__Noreturn] = ACTIONS(3414), - [anon_sym_noreturn] = ACTIONS(3414), - [anon_sym_mutable] = ACTIONS(3414), - [anon_sym_constinit] = ACTIONS(3414), - [anon_sym_consteval] = ACTIONS(3414), - [sym_primitive_type] = ACTIONS(3414), - [anon_sym_enum] = ACTIONS(3414), - [anon_sym_class] = ACTIONS(3414), - [anon_sym_struct] = ACTIONS(3414), - [anon_sym_union] = ACTIONS(3414), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3414), - [anon_sym_decltype] = ACTIONS(3414), - [anon_sym_virtual] = ACTIONS(3414), - [anon_sym_alignas] = ACTIONS(3414), - [anon_sym_explicit] = ACTIONS(3414), - [anon_sym_typename] = ACTIONS(3414), - [anon_sym_template] = ACTIONS(3414), - [anon_sym_operator] = ACTIONS(3414), - [anon_sym_friend] = ACTIONS(3414), - [anon_sym_public] = ACTIONS(3414), - [anon_sym_private] = ACTIONS(3414), - [anon_sym_protected] = ACTIONS(3414), - [anon_sym_using] = ACTIONS(3414), - [anon_sym_static_assert] = ACTIONS(3414), - }, - [2525] = { - [sym_identifier] = ACTIONS(3328), - [aux_sym_preproc_def_token1] = ACTIONS(3328), - [aux_sym_preproc_if_token1] = ACTIONS(3328), - [aux_sym_preproc_if_token2] = ACTIONS(3328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3328), - [aux_sym_preproc_else_token1] = ACTIONS(3328), - [aux_sym_preproc_elif_token1] = ACTIONS(3328), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3328), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3328), - [sym_preproc_directive] = ACTIONS(3328), - [anon_sym_LPAREN2] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym___extension__] = ACTIONS(3328), - [anon_sym_typedef] = ACTIONS(3328), - [anon_sym_extern] = ACTIONS(3328), - [anon_sym___attribute__] = ACTIONS(3328), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3330), - [anon_sym___declspec] = ACTIONS(3328), - [anon_sym___based] = ACTIONS(3328), - [anon_sym_signed] = ACTIONS(3328), - [anon_sym_unsigned] = ACTIONS(3328), - [anon_sym_long] = ACTIONS(3328), - [anon_sym_short] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_register] = ACTIONS(3328), - [anon_sym_inline] = ACTIONS(3328), - [anon_sym___inline] = ACTIONS(3328), - [anon_sym___inline__] = ACTIONS(3328), - [anon_sym___forceinline] = ACTIONS(3328), - [anon_sym_thread_local] = ACTIONS(3328), - [anon_sym___thread] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_constexpr] = ACTIONS(3328), - [anon_sym_volatile] = ACTIONS(3328), - [anon_sym_restrict] = ACTIONS(3328), - [anon_sym___restrict__] = ACTIONS(3328), - [anon_sym__Atomic] = ACTIONS(3328), - [anon_sym__Noreturn] = ACTIONS(3328), - [anon_sym_noreturn] = ACTIONS(3328), - [anon_sym_mutable] = ACTIONS(3328), - [anon_sym_constinit] = ACTIONS(3328), - [anon_sym_consteval] = ACTIONS(3328), - [sym_primitive_type] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_struct] = ACTIONS(3328), - [anon_sym_union] = ACTIONS(3328), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3328), - [anon_sym_decltype] = ACTIONS(3328), - [anon_sym_virtual] = ACTIONS(3328), - [anon_sym_alignas] = ACTIONS(3328), - [anon_sym_explicit] = ACTIONS(3328), - [anon_sym_typename] = ACTIONS(3328), - [anon_sym_template] = ACTIONS(3328), - [anon_sym_operator] = ACTIONS(3328), - [anon_sym_friend] = ACTIONS(3328), - [anon_sym_public] = ACTIONS(3328), - [anon_sym_private] = ACTIONS(3328), - [anon_sym_protected] = ACTIONS(3328), - [anon_sym_using] = ACTIONS(3328), - [anon_sym_static_assert] = ACTIONS(3328), - }, - [2526] = { - [sym_identifier] = ACTIONS(3410), - [aux_sym_preproc_def_token1] = ACTIONS(3410), - [aux_sym_preproc_if_token1] = ACTIONS(3410), - [aux_sym_preproc_if_token2] = ACTIONS(3410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3410), - [aux_sym_preproc_else_token1] = ACTIONS(3410), - [aux_sym_preproc_elif_token1] = ACTIONS(3410), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3410), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3410), - [sym_preproc_directive] = ACTIONS(3410), - [anon_sym_LPAREN2] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3410), - [anon_sym___extension__] = ACTIONS(3410), - [anon_sym_typedef] = ACTIONS(3410), - [anon_sym_extern] = ACTIONS(3410), - [anon_sym___attribute__] = ACTIONS(3410), - [anon_sym_COLON_COLON] = ACTIONS(3412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), - [anon_sym___declspec] = ACTIONS(3410), - [anon_sym___based] = ACTIONS(3410), - [anon_sym_signed] = ACTIONS(3410), - [anon_sym_unsigned] = ACTIONS(3410), - [anon_sym_long] = ACTIONS(3410), - [anon_sym_short] = ACTIONS(3410), - [anon_sym_LBRACK] = ACTIONS(3410), - [anon_sym_static] = ACTIONS(3410), - [anon_sym_register] = ACTIONS(3410), - [anon_sym_inline] = ACTIONS(3410), - [anon_sym___inline] = ACTIONS(3410), - [anon_sym___inline__] = ACTIONS(3410), - [anon_sym___forceinline] = ACTIONS(3410), - [anon_sym_thread_local] = ACTIONS(3410), - [anon_sym___thread] = ACTIONS(3410), - [anon_sym_const] = ACTIONS(3410), - [anon_sym_constexpr] = ACTIONS(3410), - [anon_sym_volatile] = ACTIONS(3410), - [anon_sym_restrict] = ACTIONS(3410), - [anon_sym___restrict__] = ACTIONS(3410), - [anon_sym__Atomic] = ACTIONS(3410), - [anon_sym__Noreturn] = ACTIONS(3410), - [anon_sym_noreturn] = ACTIONS(3410), - [anon_sym_mutable] = ACTIONS(3410), - [anon_sym_constinit] = ACTIONS(3410), - [anon_sym_consteval] = ACTIONS(3410), - [sym_primitive_type] = ACTIONS(3410), - [anon_sym_enum] = ACTIONS(3410), - [anon_sym_class] = ACTIONS(3410), - [anon_sym_struct] = ACTIONS(3410), - [anon_sym_union] = ACTIONS(3410), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3410), - [anon_sym_decltype] = ACTIONS(3410), - [anon_sym_virtual] = ACTIONS(3410), - [anon_sym_alignas] = ACTIONS(3410), - [anon_sym_explicit] = ACTIONS(3410), - [anon_sym_typename] = ACTIONS(3410), - [anon_sym_template] = ACTIONS(3410), - [anon_sym_operator] = ACTIONS(3410), - [anon_sym_friend] = ACTIONS(3410), - [anon_sym_public] = ACTIONS(3410), - [anon_sym_private] = ACTIONS(3410), - [anon_sym_protected] = ACTIONS(3410), - [anon_sym_using] = ACTIONS(3410), - [anon_sym_static_assert] = ACTIONS(3410), - }, - [2527] = { - [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___extension__] = ACTIONS(3115), - [anon_sym_typedef] = ACTIONS(3115), - [anon_sym_extern] = ACTIONS(3115), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3115), - [anon_sym_constinit] = ACTIONS(3115), - [anon_sym_consteval] = 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_virtual] = ACTIONS(3115), - [anon_sym_alignas] = ACTIONS(3115), - [anon_sym_explicit] = ACTIONS(3115), - [anon_sym_typename] = ACTIONS(3115), - [anon_sym_template] = ACTIONS(3115), - [anon_sym_operator] = ACTIONS(3115), - [anon_sym_friend] = ACTIONS(3115), - [anon_sym_public] = ACTIONS(3115), - [anon_sym_private] = ACTIONS(3115), - [anon_sym_protected] = ACTIONS(3115), - [anon_sym_using] = ACTIONS(3115), - [anon_sym_static_assert] = ACTIONS(3115), - }, - [2528] = { - [sym_identifier] = ACTIONS(3406), - [aux_sym_preproc_def_token1] = ACTIONS(3406), - [aux_sym_preproc_if_token1] = ACTIONS(3406), - [aux_sym_preproc_if_token2] = ACTIONS(3406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3406), - [aux_sym_preproc_else_token1] = ACTIONS(3406), - [aux_sym_preproc_elif_token1] = ACTIONS(3406), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3406), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3406), - [sym_preproc_directive] = ACTIONS(3406), - [anon_sym_LPAREN2] = ACTIONS(3408), - [anon_sym_TILDE] = ACTIONS(3408), - [anon_sym_STAR] = ACTIONS(3408), - [anon_sym_AMP_AMP] = ACTIONS(3408), - [anon_sym_AMP] = ACTIONS(3406), - [anon_sym___extension__] = ACTIONS(3406), - [anon_sym_typedef] = ACTIONS(3406), - [anon_sym_extern] = ACTIONS(3406), - [anon_sym___attribute__] = ACTIONS(3406), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3408), - [anon_sym___declspec] = ACTIONS(3406), - [anon_sym___based] = ACTIONS(3406), - [anon_sym_signed] = ACTIONS(3406), - [anon_sym_unsigned] = ACTIONS(3406), - [anon_sym_long] = ACTIONS(3406), - [anon_sym_short] = ACTIONS(3406), - [anon_sym_LBRACK] = ACTIONS(3406), - [anon_sym_static] = ACTIONS(3406), - [anon_sym_register] = ACTIONS(3406), - [anon_sym_inline] = ACTIONS(3406), - [anon_sym___inline] = ACTIONS(3406), - [anon_sym___inline__] = ACTIONS(3406), - [anon_sym___forceinline] = ACTIONS(3406), - [anon_sym_thread_local] = ACTIONS(3406), - [anon_sym___thread] = ACTIONS(3406), - [anon_sym_const] = ACTIONS(3406), - [anon_sym_constexpr] = ACTIONS(3406), - [anon_sym_volatile] = ACTIONS(3406), - [anon_sym_restrict] = ACTIONS(3406), - [anon_sym___restrict__] = ACTIONS(3406), - [anon_sym__Atomic] = ACTIONS(3406), - [anon_sym__Noreturn] = ACTIONS(3406), - [anon_sym_noreturn] = ACTIONS(3406), - [anon_sym_mutable] = ACTIONS(3406), - [anon_sym_constinit] = ACTIONS(3406), - [anon_sym_consteval] = ACTIONS(3406), - [sym_primitive_type] = ACTIONS(3406), - [anon_sym_enum] = ACTIONS(3406), - [anon_sym_class] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3406), - [anon_sym_union] = ACTIONS(3406), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3406), - [anon_sym_decltype] = ACTIONS(3406), - [anon_sym_virtual] = ACTIONS(3406), - [anon_sym_alignas] = ACTIONS(3406), - [anon_sym_explicit] = ACTIONS(3406), - [anon_sym_typename] = ACTIONS(3406), - [anon_sym_template] = ACTIONS(3406), - [anon_sym_operator] = ACTIONS(3406), - [anon_sym_friend] = ACTIONS(3406), - [anon_sym_public] = ACTIONS(3406), - [anon_sym_private] = ACTIONS(3406), - [anon_sym_protected] = ACTIONS(3406), - [anon_sym_using] = ACTIONS(3406), - [anon_sym_static_assert] = ACTIONS(3406), - }, - [2529] = { - [sym_identifier] = ACTIONS(5276), - [aux_sym_preproc_def_token1] = ACTIONS(5276), - [aux_sym_preproc_if_token1] = ACTIONS(5276), - [aux_sym_preproc_if_token2] = ACTIONS(5276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5276), - [aux_sym_preproc_else_token1] = ACTIONS(5276), - [aux_sym_preproc_elif_token1] = ACTIONS(5276), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5276), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5276), - [sym_preproc_directive] = ACTIONS(5276), - [anon_sym_LPAREN2] = ACTIONS(5278), - [anon_sym_TILDE] = ACTIONS(5278), - [anon_sym_STAR] = ACTIONS(5278), - [anon_sym_AMP_AMP] = ACTIONS(5278), - [anon_sym_AMP] = ACTIONS(5276), - [anon_sym___extension__] = ACTIONS(5276), - [anon_sym_typedef] = ACTIONS(5276), - [anon_sym_extern] = ACTIONS(5276), - [anon_sym___attribute__] = ACTIONS(5276), - [anon_sym_COLON_COLON] = ACTIONS(5278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5278), - [anon_sym___declspec] = ACTIONS(5276), - [anon_sym___based] = ACTIONS(5276), - [anon_sym_signed] = ACTIONS(5276), - [anon_sym_unsigned] = ACTIONS(5276), - [anon_sym_long] = ACTIONS(5276), - [anon_sym_short] = ACTIONS(5276), - [anon_sym_LBRACK] = ACTIONS(5276), - [anon_sym_static] = ACTIONS(5276), - [anon_sym_register] = ACTIONS(5276), - [anon_sym_inline] = ACTIONS(5276), - [anon_sym___inline] = ACTIONS(5276), - [anon_sym___inline__] = ACTIONS(5276), - [anon_sym___forceinline] = ACTIONS(5276), - [anon_sym_thread_local] = ACTIONS(5276), - [anon_sym___thread] = ACTIONS(5276), - [anon_sym_const] = ACTIONS(5276), - [anon_sym_constexpr] = ACTIONS(5276), - [anon_sym_volatile] = ACTIONS(5276), - [anon_sym_restrict] = ACTIONS(5276), - [anon_sym___restrict__] = ACTIONS(5276), - [anon_sym__Atomic] = ACTIONS(5276), - [anon_sym__Noreturn] = ACTIONS(5276), - [anon_sym_noreturn] = ACTIONS(5276), - [anon_sym_mutable] = ACTIONS(5276), - [anon_sym_constinit] = ACTIONS(5276), - [anon_sym_consteval] = ACTIONS(5276), - [sym_primitive_type] = ACTIONS(5276), - [anon_sym_enum] = ACTIONS(5276), - [anon_sym_class] = ACTIONS(5276), - [anon_sym_struct] = ACTIONS(5276), - [anon_sym_union] = ACTIONS(5276), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5276), - [anon_sym_decltype] = ACTIONS(5276), - [anon_sym_virtual] = ACTIONS(5276), - [anon_sym_alignas] = ACTIONS(5276), - [anon_sym_explicit] = ACTIONS(5276), - [anon_sym_typename] = ACTIONS(5276), - [anon_sym_template] = ACTIONS(5276), - [anon_sym_operator] = ACTIONS(5276), - [anon_sym_friend] = ACTIONS(5276), - [anon_sym_public] = ACTIONS(5276), - [anon_sym_private] = ACTIONS(5276), - [anon_sym_protected] = ACTIONS(5276), - [anon_sym_using] = ACTIONS(5276), - [anon_sym_static_assert] = ACTIONS(5276), - }, - [2530] = { - [sym_string_literal] = STATE(2866), - [sym_template_argument_list] = STATE(4246), - [sym_raw_string_literal] = STATE(2866), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_RPAREN] = ACTIONS(5198), - [anon_sym_LPAREN2] = ACTIONS(5198), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(5200), - [anon_sym_EQ] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_and_eq] = ACTIONS(4922), - [anon_sym_or_eq] = ACTIONS(4922), - [anon_sym_xor_eq] = ACTIONS(4922), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4286), - [anon_sym_L_DQUOTE] = ACTIONS(4363), - [anon_sym_u_DQUOTE] = ACTIONS(4363), - [anon_sym_U_DQUOTE] = ACTIONS(4363), - [anon_sym_u8_DQUOTE] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(4363), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(4365), - [anon_sym_LR_DQUOTE] = ACTIONS(4365), - [anon_sym_uR_DQUOTE] = ACTIONS(4365), - [anon_sym_UR_DQUOTE] = ACTIONS(4365), - [anon_sym_u8R_DQUOTE] = ACTIONS(4365), - [anon_sym_DASH_GT_STAR] = ACTIONS(4278), - }, - [2531] = { - [sym_identifier] = ACTIONS(3366), - [aux_sym_preproc_def_token1] = ACTIONS(3366), - [aux_sym_preproc_if_token1] = ACTIONS(3366), - [aux_sym_preproc_if_token2] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3366), - [aux_sym_preproc_else_token1] = ACTIONS(3366), - [aux_sym_preproc_elif_token1] = ACTIONS(3366), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3366), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3366), - [sym_preproc_directive] = ACTIONS(3366), - [anon_sym_LPAREN2] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_AMP_AMP] = ACTIONS(3368), - [anon_sym_AMP] = ACTIONS(3366), - [anon_sym___extension__] = ACTIONS(3366), - [anon_sym_typedef] = ACTIONS(3366), - [anon_sym_extern] = ACTIONS(3366), - [anon_sym___attribute__] = ACTIONS(3366), - [anon_sym_COLON_COLON] = ACTIONS(3368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3368), - [anon_sym___declspec] = ACTIONS(3366), - [anon_sym___based] = ACTIONS(3366), - [anon_sym_signed] = ACTIONS(3366), - [anon_sym_unsigned] = ACTIONS(3366), - [anon_sym_long] = ACTIONS(3366), - [anon_sym_short] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_register] = ACTIONS(3366), - [anon_sym_inline] = ACTIONS(3366), - [anon_sym___inline] = ACTIONS(3366), - [anon_sym___inline__] = ACTIONS(3366), - [anon_sym___forceinline] = ACTIONS(3366), - [anon_sym_thread_local] = ACTIONS(3366), - [anon_sym___thread] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_constexpr] = ACTIONS(3366), - [anon_sym_volatile] = ACTIONS(3366), - [anon_sym_restrict] = ACTIONS(3366), - [anon_sym___restrict__] = ACTIONS(3366), - [anon_sym__Atomic] = ACTIONS(3366), - [anon_sym__Noreturn] = ACTIONS(3366), - [anon_sym_noreturn] = ACTIONS(3366), - [anon_sym_mutable] = ACTIONS(3366), - [anon_sym_constinit] = ACTIONS(3366), - [anon_sym_consteval] = ACTIONS(3366), - [sym_primitive_type] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_struct] = ACTIONS(3366), - [anon_sym_union] = ACTIONS(3366), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3366), - [anon_sym_decltype] = ACTIONS(3366), - [anon_sym_virtual] = ACTIONS(3366), - [anon_sym_alignas] = ACTIONS(3366), - [anon_sym_explicit] = ACTIONS(3366), - [anon_sym_typename] = ACTIONS(3366), - [anon_sym_template] = ACTIONS(3366), - [anon_sym_operator] = ACTIONS(3366), - [anon_sym_friend] = ACTIONS(3366), - [anon_sym_public] = ACTIONS(3366), - [anon_sym_private] = ACTIONS(3366), - [anon_sym_protected] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_static_assert] = ACTIONS(3366), - }, - [2532] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2889), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token2] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [aux_sym_preproc_else_token1] = ACTIONS(2194), - [aux_sym_preproc_elif_token1] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_friend] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - }, - [2533] = { - [sym_identifier] = ACTIONS(2917), - [aux_sym_preproc_def_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token2] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), - [aux_sym_preproc_else_token1] = ACTIONS(2917), - [aux_sym_preproc_elif_token1] = ACTIONS(2917), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2917), - [sym_preproc_directive] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym___based] = ACTIONS(2917), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_explicit] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_operator] = ACTIONS(2917), - [anon_sym_friend] = ACTIONS(2917), - [anon_sym_public] = ACTIONS(2917), - [anon_sym_private] = ACTIONS(2917), - [anon_sym_protected] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_static_assert] = ACTIONS(2917), - }, - [2534] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2889), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token2] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [aux_sym_preproc_else_token1] = ACTIONS(2194), - [aux_sym_preproc_elif_token1] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(5128), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_friend] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - }, - [2535] = { - [sym_string_literal] = STATE(2603), - [sym_template_argument_list] = STATE(3732), - [sym_raw_string_literal] = STATE(2603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_RPAREN] = ACTIONS(5198), - [anon_sym_LPAREN2] = ACTIONS(5198), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5280), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(5200), - [anon_sym_EQ] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_and_eq] = ACTIONS(4278), - [anon_sym_or_eq] = ACTIONS(4278), - [anon_sym_xor_eq] = ACTIONS(4278), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4286), - [anon_sym_L_DQUOTE] = ACTIONS(5260), - [anon_sym_u_DQUOTE] = ACTIONS(5260), - [anon_sym_U_DQUOTE] = ACTIONS(5260), - [anon_sym_u8_DQUOTE] = ACTIONS(5260), - [anon_sym_DQUOTE] = ACTIONS(5260), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5262), - [anon_sym_LR_DQUOTE] = ACTIONS(5262), - [anon_sym_uR_DQUOTE] = ACTIONS(5262), - [anon_sym_UR_DQUOTE] = ACTIONS(5262), - [anon_sym_u8R_DQUOTE] = ACTIONS(5262), - [anon_sym_DASH_GT_STAR] = ACTIONS(4278), - }, - [2536] = { - [sym_identifier] = ACTIONS(3400), - [aux_sym_preproc_def_token1] = ACTIONS(3400), - [aux_sym_preproc_if_token1] = ACTIONS(3400), - [aux_sym_preproc_if_token2] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3400), - [aux_sym_preproc_else_token1] = ACTIONS(3400), - [aux_sym_preproc_elif_token1] = ACTIONS(3400), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3400), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3400), - [sym_preproc_directive] = ACTIONS(3400), - [anon_sym_LPAREN2] = ACTIONS(3402), - [anon_sym_TILDE] = ACTIONS(3402), - [anon_sym_STAR] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3400), - [anon_sym___extension__] = ACTIONS(3400), - [anon_sym_typedef] = ACTIONS(3400), - [anon_sym_extern] = ACTIONS(3400), - [anon_sym___attribute__] = ACTIONS(3400), - [anon_sym_COLON_COLON] = ACTIONS(3402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3402), - [anon_sym___declspec] = ACTIONS(3400), - [anon_sym___based] = ACTIONS(3400), - [anon_sym_signed] = ACTIONS(3400), - [anon_sym_unsigned] = ACTIONS(3400), - [anon_sym_long] = ACTIONS(3400), - [anon_sym_short] = ACTIONS(3400), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_static] = ACTIONS(3400), - [anon_sym_register] = ACTIONS(3400), - [anon_sym_inline] = ACTIONS(3400), - [anon_sym___inline] = ACTIONS(3400), - [anon_sym___inline__] = ACTIONS(3400), - [anon_sym___forceinline] = ACTIONS(3400), - [anon_sym_thread_local] = ACTIONS(3400), - [anon_sym___thread] = ACTIONS(3400), - [anon_sym_const] = ACTIONS(3400), - [anon_sym_constexpr] = ACTIONS(3400), - [anon_sym_volatile] = ACTIONS(3400), - [anon_sym_restrict] = ACTIONS(3400), - [anon_sym___restrict__] = ACTIONS(3400), - [anon_sym__Atomic] = ACTIONS(3400), - [anon_sym__Noreturn] = ACTIONS(3400), - [anon_sym_noreturn] = ACTIONS(3400), - [anon_sym_mutable] = ACTIONS(3400), - [anon_sym_constinit] = ACTIONS(3400), - [anon_sym_consteval] = ACTIONS(3400), - [sym_primitive_type] = ACTIONS(3400), - [anon_sym_enum] = ACTIONS(3400), - [anon_sym_class] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3400), - [anon_sym_union] = ACTIONS(3400), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3400), - [anon_sym_decltype] = ACTIONS(3400), - [anon_sym_virtual] = ACTIONS(3400), - [anon_sym_alignas] = ACTIONS(3400), - [anon_sym_explicit] = ACTIONS(3400), - [anon_sym_typename] = ACTIONS(3400), - [anon_sym_template] = ACTIONS(3400), - [anon_sym_operator] = ACTIONS(3400), - [anon_sym_friend] = ACTIONS(3400), - [anon_sym_public] = ACTIONS(3400), - [anon_sym_private] = ACTIONS(3400), - [anon_sym_protected] = ACTIONS(3400), - [anon_sym_using] = ACTIONS(3400), - [anon_sym_static_assert] = ACTIONS(3400), - }, - [2537] = { - [sym_identifier] = ACTIONS(5283), - [aux_sym_preproc_def_token1] = ACTIONS(5283), - [aux_sym_preproc_if_token1] = ACTIONS(5283), - [aux_sym_preproc_if_token2] = ACTIONS(5283), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5283), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5283), - [aux_sym_preproc_else_token1] = ACTIONS(5283), - [aux_sym_preproc_elif_token1] = ACTIONS(5283), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5283), - [sym_preproc_directive] = ACTIONS(5283), - [anon_sym_LPAREN2] = ACTIONS(5285), - [anon_sym_TILDE] = ACTIONS(5285), - [anon_sym_STAR] = ACTIONS(5285), - [anon_sym_AMP_AMP] = ACTIONS(5285), - [anon_sym_AMP] = ACTIONS(5283), - [anon_sym___extension__] = ACTIONS(5283), - [anon_sym_typedef] = ACTIONS(5283), - [anon_sym_extern] = ACTIONS(5283), - [anon_sym___attribute__] = ACTIONS(5283), - [anon_sym_COLON_COLON] = ACTIONS(5285), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5285), - [anon_sym___declspec] = ACTIONS(5283), - [anon_sym___based] = ACTIONS(5283), - [anon_sym_signed] = ACTIONS(5283), - [anon_sym_unsigned] = ACTIONS(5283), - [anon_sym_long] = ACTIONS(5283), - [anon_sym_short] = ACTIONS(5283), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_static] = ACTIONS(5283), - [anon_sym_register] = ACTIONS(5283), - [anon_sym_inline] = ACTIONS(5283), - [anon_sym___inline] = ACTIONS(5283), - [anon_sym___inline__] = ACTIONS(5283), - [anon_sym___forceinline] = ACTIONS(5283), - [anon_sym_thread_local] = ACTIONS(5283), - [anon_sym___thread] = ACTIONS(5283), - [anon_sym_const] = ACTIONS(5283), - [anon_sym_constexpr] = ACTIONS(5283), - [anon_sym_volatile] = ACTIONS(5283), - [anon_sym_restrict] = ACTIONS(5283), - [anon_sym___restrict__] = ACTIONS(5283), - [anon_sym__Atomic] = ACTIONS(5283), - [anon_sym__Noreturn] = ACTIONS(5283), - [anon_sym_noreturn] = ACTIONS(5283), - [anon_sym_mutable] = ACTIONS(5283), - [anon_sym_constinit] = ACTIONS(5283), - [anon_sym_consteval] = ACTIONS(5283), - [sym_primitive_type] = ACTIONS(5283), - [anon_sym_enum] = ACTIONS(5283), - [anon_sym_class] = ACTIONS(5283), - [anon_sym_struct] = ACTIONS(5283), - [anon_sym_union] = ACTIONS(5283), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5283), - [anon_sym_decltype] = ACTIONS(5283), - [anon_sym_virtual] = ACTIONS(5283), - [anon_sym_alignas] = ACTIONS(5283), - [anon_sym_explicit] = ACTIONS(5283), - [anon_sym_typename] = ACTIONS(5283), - [anon_sym_template] = ACTIONS(5283), - [anon_sym_operator] = ACTIONS(5283), - [anon_sym_friend] = ACTIONS(5283), - [anon_sym_public] = ACTIONS(5283), - [anon_sym_private] = ACTIONS(5283), - [anon_sym_protected] = ACTIONS(5283), - [anon_sym_using] = ACTIONS(5283), - [anon_sym_static_assert] = ACTIONS(5283), - }, - [2538] = { - [sym_identifier] = ACTIONS(3388), - [aux_sym_preproc_def_token1] = ACTIONS(3388), - [aux_sym_preproc_if_token1] = ACTIONS(3388), - [aux_sym_preproc_if_token2] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3388), - [aux_sym_preproc_else_token1] = ACTIONS(3388), - [aux_sym_preproc_elif_token1] = ACTIONS(3388), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3388), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3388), - [sym_preproc_directive] = ACTIONS(3388), - [anon_sym_LPAREN2] = ACTIONS(3390), - [anon_sym_TILDE] = ACTIONS(3390), - [anon_sym_STAR] = ACTIONS(3390), - [anon_sym_AMP_AMP] = ACTIONS(3390), - [anon_sym_AMP] = ACTIONS(3388), - [anon_sym___extension__] = ACTIONS(3388), - [anon_sym_typedef] = ACTIONS(3388), - [anon_sym_extern] = ACTIONS(3388), - [anon_sym___attribute__] = ACTIONS(3388), - [anon_sym_COLON_COLON] = ACTIONS(3390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3390), - [anon_sym___declspec] = ACTIONS(3388), - [anon_sym___based] = ACTIONS(3388), - [anon_sym_signed] = ACTIONS(3388), - [anon_sym_unsigned] = ACTIONS(3388), - [anon_sym_long] = ACTIONS(3388), - [anon_sym_short] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3388), - [anon_sym_static] = ACTIONS(3388), - [anon_sym_register] = ACTIONS(3388), - [anon_sym_inline] = ACTIONS(3388), - [anon_sym___inline] = ACTIONS(3388), - [anon_sym___inline__] = ACTIONS(3388), - [anon_sym___forceinline] = ACTIONS(3388), - [anon_sym_thread_local] = ACTIONS(3388), - [anon_sym___thread] = ACTIONS(3388), - [anon_sym_const] = ACTIONS(3388), - [anon_sym_constexpr] = ACTIONS(3388), - [anon_sym_volatile] = ACTIONS(3388), - [anon_sym_restrict] = ACTIONS(3388), - [anon_sym___restrict__] = ACTIONS(3388), - [anon_sym__Atomic] = ACTIONS(3388), - [anon_sym__Noreturn] = ACTIONS(3388), - [anon_sym_noreturn] = ACTIONS(3388), - [anon_sym_mutable] = ACTIONS(3388), - [anon_sym_constinit] = ACTIONS(3388), - [anon_sym_consteval] = ACTIONS(3388), - [sym_primitive_type] = ACTIONS(3388), - [anon_sym_enum] = ACTIONS(3388), - [anon_sym_class] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(3388), - [anon_sym_union] = ACTIONS(3388), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3388), - [anon_sym_decltype] = ACTIONS(3388), - [anon_sym_virtual] = ACTIONS(3388), - [anon_sym_alignas] = ACTIONS(3388), - [anon_sym_explicit] = ACTIONS(3388), - [anon_sym_typename] = ACTIONS(3388), - [anon_sym_template] = ACTIONS(3388), - [anon_sym_operator] = ACTIONS(3388), - [anon_sym_friend] = ACTIONS(3388), - [anon_sym_public] = ACTIONS(3388), - [anon_sym_private] = ACTIONS(3388), - [anon_sym_protected] = ACTIONS(3388), - [anon_sym_using] = ACTIONS(3388), - [anon_sym_static_assert] = ACTIONS(3388), - }, - [2539] = { - [sym_template_argument_list] = STATE(2602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4862), - [anon_sym_COMMA] = ACTIONS(4862), - [anon_sym_LPAREN2] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4867), - [anon_sym_PLUS] = ACTIONS(4867), - [anon_sym_STAR] = ACTIONS(4869), - [anon_sym_SLASH] = ACTIONS(4867), - [anon_sym_PERCENT] = ACTIONS(4867), - [anon_sym_PIPE_PIPE] = ACTIONS(4872), - [anon_sym_AMP_AMP] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4867), - [anon_sym_CARET] = ACTIONS(4867), - [anon_sym_AMP] = ACTIONS(4869), - [anon_sym_EQ_EQ] = ACTIONS(4872), - [anon_sym_BANG_EQ] = ACTIONS(4872), - [anon_sym_GT] = ACTIONS(4867), - [anon_sym_GT_EQ] = ACTIONS(4867), - [anon_sym_LT_EQ] = ACTIONS(4867), - [anon_sym_LT] = ACTIONS(5287), - [anon_sym_LT_LT] = ACTIONS(4867), - [anon_sym_GT_GT] = ACTIONS(4867), - [anon_sym___extension__] = ACTIONS(4865), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4865), - [anon_sym_LBRACK] = ACTIONS(4862), - [anon_sym_EQ] = ACTIONS(4867), - [anon_sym_const] = ACTIONS(4860), - [anon_sym_constexpr] = ACTIONS(4865), - [anon_sym_volatile] = ACTIONS(4865), - [anon_sym_restrict] = ACTIONS(4865), - [anon_sym___restrict__] = ACTIONS(4865), - [anon_sym__Atomic] = ACTIONS(4865), - [anon_sym__Noreturn] = ACTIONS(4865), - [anon_sym_noreturn] = ACTIONS(4865), - [anon_sym_mutable] = ACTIONS(4865), - [anon_sym_constinit] = ACTIONS(4865), - [anon_sym_consteval] = ACTIONS(4865), - [anon_sym_QMARK] = ACTIONS(4872), - [anon_sym_STAR_EQ] = ACTIONS(4872), - [anon_sym_SLASH_EQ] = ACTIONS(4872), - [anon_sym_PERCENT_EQ] = ACTIONS(4872), - [anon_sym_PLUS_EQ] = ACTIONS(4872), - [anon_sym_DASH_EQ] = ACTIONS(4872), - [anon_sym_LT_LT_EQ] = ACTIONS(4872), - [anon_sym_GT_GT_EQ] = ACTIONS(4867), - [anon_sym_AMP_EQ] = ACTIONS(4872), - [anon_sym_CARET_EQ] = ACTIONS(4872), - [anon_sym_PIPE_EQ] = ACTIONS(4872), - [anon_sym_and_eq] = ACTIONS(4872), - [anon_sym_or_eq] = ACTIONS(4872), - [anon_sym_xor_eq] = ACTIONS(4872), - [anon_sym_LT_EQ_GT] = ACTIONS(4872), - [anon_sym_or] = ACTIONS(4867), - [anon_sym_and] = ACTIONS(4867), - [anon_sym_bitor] = ACTIONS(4872), - [anon_sym_xor] = ACTIONS(4867), - [anon_sym_bitand] = ACTIONS(4872), - [anon_sym_not_eq] = ACTIONS(4872), - [anon_sym_DASH_DASH] = ACTIONS(4872), - [anon_sym_PLUS_PLUS] = ACTIONS(4872), - [anon_sym_DOT] = ACTIONS(4867), - [anon_sym_DOT_STAR] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4872), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4865), - [anon_sym_decltype] = ACTIONS(4865), - [anon_sym_GT2] = ACTIONS(4862), - }, - [2540] = { - [sym_identifier] = ACTIONS(5290), - [aux_sym_preproc_def_token1] = ACTIONS(5290), - [aux_sym_preproc_if_token1] = ACTIONS(5290), - [aux_sym_preproc_if_token2] = ACTIONS(5290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5290), - [aux_sym_preproc_else_token1] = ACTIONS(5290), - [aux_sym_preproc_elif_token1] = ACTIONS(5290), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5290), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5290), - [sym_preproc_directive] = ACTIONS(5290), - [anon_sym_LPAREN2] = ACTIONS(5292), - [anon_sym_TILDE] = ACTIONS(5292), - [anon_sym_STAR] = ACTIONS(5292), - [anon_sym_AMP_AMP] = ACTIONS(5292), - [anon_sym_AMP] = ACTIONS(5290), - [anon_sym___extension__] = ACTIONS(5290), - [anon_sym_typedef] = ACTIONS(5290), - [anon_sym_extern] = ACTIONS(5290), - [anon_sym___attribute__] = ACTIONS(5290), - [anon_sym_COLON_COLON] = ACTIONS(5292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5292), - [anon_sym___declspec] = ACTIONS(5290), - [anon_sym___based] = ACTIONS(5290), - [anon_sym_signed] = ACTIONS(5290), - [anon_sym_unsigned] = ACTIONS(5290), - [anon_sym_long] = ACTIONS(5290), - [anon_sym_short] = ACTIONS(5290), - [anon_sym_LBRACK] = ACTIONS(5290), - [anon_sym_static] = ACTIONS(5290), - [anon_sym_register] = ACTIONS(5290), - [anon_sym_inline] = ACTIONS(5290), - [anon_sym___inline] = ACTIONS(5290), - [anon_sym___inline__] = ACTIONS(5290), - [anon_sym___forceinline] = ACTIONS(5290), - [anon_sym_thread_local] = ACTIONS(5290), - [anon_sym___thread] = ACTIONS(5290), - [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_mutable] = ACTIONS(5290), - [anon_sym_constinit] = ACTIONS(5290), - [anon_sym_consteval] = ACTIONS(5290), - [sym_primitive_type] = ACTIONS(5290), - [anon_sym_enum] = ACTIONS(5290), - [anon_sym_class] = ACTIONS(5290), - [anon_sym_struct] = ACTIONS(5290), - [anon_sym_union] = ACTIONS(5290), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5290), - [anon_sym_decltype] = ACTIONS(5290), - [anon_sym_virtual] = ACTIONS(5290), - [anon_sym_alignas] = ACTIONS(5290), - [anon_sym_explicit] = ACTIONS(5290), - [anon_sym_typename] = ACTIONS(5290), - [anon_sym_template] = ACTIONS(5290), - [anon_sym_operator] = ACTIONS(5290), - [anon_sym_friend] = ACTIONS(5290), - [anon_sym_public] = ACTIONS(5290), - [anon_sym_private] = ACTIONS(5290), - [anon_sym_protected] = ACTIONS(5290), - [anon_sym_using] = ACTIONS(5290), - [anon_sym_static_assert] = ACTIONS(5290), - }, - [2541] = { - [sym_identifier] = ACTIONS(5294), - [aux_sym_preproc_def_token1] = ACTIONS(5294), - [aux_sym_preproc_if_token1] = ACTIONS(5294), - [aux_sym_preproc_if_token2] = ACTIONS(5294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5294), - [aux_sym_preproc_else_token1] = ACTIONS(5294), - [aux_sym_preproc_elif_token1] = ACTIONS(5294), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5294), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5294), - [sym_preproc_directive] = ACTIONS(5294), - [anon_sym_LPAREN2] = ACTIONS(5296), - [anon_sym_TILDE] = ACTIONS(5296), - [anon_sym_STAR] = ACTIONS(5296), - [anon_sym_AMP_AMP] = ACTIONS(5296), - [anon_sym_AMP] = ACTIONS(5294), - [anon_sym___extension__] = ACTIONS(5294), - [anon_sym_typedef] = ACTIONS(5294), - [anon_sym_extern] = ACTIONS(5294), - [anon_sym___attribute__] = ACTIONS(5294), - [anon_sym_COLON_COLON] = ACTIONS(5296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5296), - [anon_sym___declspec] = ACTIONS(5294), - [anon_sym___based] = ACTIONS(5294), - [anon_sym_signed] = ACTIONS(5294), - [anon_sym_unsigned] = ACTIONS(5294), - [anon_sym_long] = ACTIONS(5294), - [anon_sym_short] = ACTIONS(5294), - [anon_sym_LBRACK] = ACTIONS(5294), - [anon_sym_static] = ACTIONS(5294), - [anon_sym_register] = ACTIONS(5294), - [anon_sym_inline] = ACTIONS(5294), - [anon_sym___inline] = ACTIONS(5294), - [anon_sym___inline__] = ACTIONS(5294), - [anon_sym___forceinline] = ACTIONS(5294), - [anon_sym_thread_local] = ACTIONS(5294), - [anon_sym___thread] = ACTIONS(5294), - [anon_sym_const] = ACTIONS(5294), - [anon_sym_constexpr] = ACTIONS(5294), - [anon_sym_volatile] = ACTIONS(5294), - [anon_sym_restrict] = ACTIONS(5294), - [anon_sym___restrict__] = ACTIONS(5294), - [anon_sym__Atomic] = ACTIONS(5294), - [anon_sym__Noreturn] = ACTIONS(5294), - [anon_sym_noreturn] = ACTIONS(5294), - [anon_sym_mutable] = ACTIONS(5294), - [anon_sym_constinit] = ACTIONS(5294), - [anon_sym_consteval] = ACTIONS(5294), - [sym_primitive_type] = ACTIONS(5294), - [anon_sym_enum] = ACTIONS(5294), - [anon_sym_class] = ACTIONS(5294), - [anon_sym_struct] = ACTIONS(5294), - [anon_sym_union] = ACTIONS(5294), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5294), - [anon_sym_decltype] = ACTIONS(5294), - [anon_sym_virtual] = ACTIONS(5294), - [anon_sym_alignas] = ACTIONS(5294), - [anon_sym_explicit] = ACTIONS(5294), - [anon_sym_typename] = ACTIONS(5294), - [anon_sym_template] = ACTIONS(5294), - [anon_sym_operator] = ACTIONS(5294), - [anon_sym_friend] = ACTIONS(5294), - [anon_sym_public] = ACTIONS(5294), - [anon_sym_private] = ACTIONS(5294), - [anon_sym_protected] = ACTIONS(5294), - [anon_sym_using] = ACTIONS(5294), - [anon_sym_static_assert] = ACTIONS(5294), - }, - [2542] = { - [sym_identifier] = ACTIONS(5298), - [aux_sym_preproc_def_token1] = ACTIONS(5298), - [aux_sym_preproc_if_token1] = ACTIONS(5298), - [aux_sym_preproc_if_token2] = ACTIONS(5298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5298), - [aux_sym_preproc_else_token1] = ACTIONS(5298), - [aux_sym_preproc_elif_token1] = ACTIONS(5298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5298), - [sym_preproc_directive] = ACTIONS(5298), - [anon_sym_LPAREN2] = ACTIONS(5300), - [anon_sym_TILDE] = ACTIONS(5300), - [anon_sym_STAR] = ACTIONS(5300), - [anon_sym_AMP_AMP] = ACTIONS(5300), - [anon_sym_AMP] = ACTIONS(5298), - [anon_sym___extension__] = ACTIONS(5298), - [anon_sym_typedef] = ACTIONS(5298), - [anon_sym_extern] = ACTIONS(5298), - [anon_sym___attribute__] = ACTIONS(5298), - [anon_sym_COLON_COLON] = ACTIONS(5300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5300), - [anon_sym___declspec] = ACTIONS(5298), - [anon_sym___based] = ACTIONS(5298), - [anon_sym_signed] = ACTIONS(5298), - [anon_sym_unsigned] = ACTIONS(5298), - [anon_sym_long] = ACTIONS(5298), - [anon_sym_short] = ACTIONS(5298), - [anon_sym_LBRACK] = ACTIONS(5298), - [anon_sym_static] = ACTIONS(5298), - [anon_sym_register] = ACTIONS(5298), - [anon_sym_inline] = ACTIONS(5298), - [anon_sym___inline] = ACTIONS(5298), - [anon_sym___inline__] = ACTIONS(5298), - [anon_sym___forceinline] = ACTIONS(5298), - [anon_sym_thread_local] = ACTIONS(5298), - [anon_sym___thread] = ACTIONS(5298), - [anon_sym_const] = ACTIONS(5298), - [anon_sym_constexpr] = ACTIONS(5298), - [anon_sym_volatile] = ACTIONS(5298), - [anon_sym_restrict] = ACTIONS(5298), - [anon_sym___restrict__] = ACTIONS(5298), - [anon_sym__Atomic] = ACTIONS(5298), - [anon_sym__Noreturn] = ACTIONS(5298), - [anon_sym_noreturn] = ACTIONS(5298), - [anon_sym_mutable] = ACTIONS(5298), - [anon_sym_constinit] = ACTIONS(5298), - [anon_sym_consteval] = ACTIONS(5298), - [sym_primitive_type] = ACTIONS(5298), - [anon_sym_enum] = ACTIONS(5298), - [anon_sym_class] = ACTIONS(5298), - [anon_sym_struct] = ACTIONS(5298), - [anon_sym_union] = ACTIONS(5298), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5298), - [anon_sym_decltype] = ACTIONS(5298), - [anon_sym_virtual] = ACTIONS(5298), - [anon_sym_alignas] = ACTIONS(5298), - [anon_sym_explicit] = ACTIONS(5298), - [anon_sym_typename] = ACTIONS(5298), - [anon_sym_template] = ACTIONS(5298), - [anon_sym_operator] = ACTIONS(5298), - [anon_sym_friend] = ACTIONS(5298), - [anon_sym_public] = ACTIONS(5298), - [anon_sym_private] = ACTIONS(5298), - [anon_sym_protected] = ACTIONS(5298), - [anon_sym_using] = ACTIONS(5298), - [anon_sym_static_assert] = ACTIONS(5298), - }, - [2543] = { - [sym_identifier] = ACTIONS(5302), - [aux_sym_preproc_def_token1] = ACTIONS(5302), - [aux_sym_preproc_if_token1] = ACTIONS(5302), - [aux_sym_preproc_if_token2] = ACTIONS(5302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5302), - [aux_sym_preproc_else_token1] = ACTIONS(5302), - [aux_sym_preproc_elif_token1] = ACTIONS(5302), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5302), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5302), - [sym_preproc_directive] = ACTIONS(5302), - [anon_sym_LPAREN2] = ACTIONS(5304), - [anon_sym_TILDE] = ACTIONS(5304), - [anon_sym_STAR] = ACTIONS(5304), - [anon_sym_AMP_AMP] = ACTIONS(5304), - [anon_sym_AMP] = ACTIONS(5302), - [anon_sym___extension__] = ACTIONS(5302), - [anon_sym_typedef] = ACTIONS(5302), - [anon_sym_extern] = ACTIONS(5302), - [anon_sym___attribute__] = ACTIONS(5302), - [anon_sym_COLON_COLON] = ACTIONS(5304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5304), - [anon_sym___declspec] = ACTIONS(5302), - [anon_sym___based] = ACTIONS(5302), - [anon_sym_signed] = ACTIONS(5302), - [anon_sym_unsigned] = ACTIONS(5302), - [anon_sym_long] = ACTIONS(5302), - [anon_sym_short] = ACTIONS(5302), - [anon_sym_LBRACK] = ACTIONS(5302), - [anon_sym_static] = ACTIONS(5302), - [anon_sym_register] = ACTIONS(5302), - [anon_sym_inline] = ACTIONS(5302), - [anon_sym___inline] = ACTIONS(5302), - [anon_sym___inline__] = ACTIONS(5302), - [anon_sym___forceinline] = ACTIONS(5302), - [anon_sym_thread_local] = ACTIONS(5302), - [anon_sym___thread] = ACTIONS(5302), - [anon_sym_const] = ACTIONS(5302), - [anon_sym_constexpr] = ACTIONS(5302), - [anon_sym_volatile] = ACTIONS(5302), - [anon_sym_restrict] = ACTIONS(5302), - [anon_sym___restrict__] = ACTIONS(5302), - [anon_sym__Atomic] = ACTIONS(5302), - [anon_sym__Noreturn] = ACTIONS(5302), - [anon_sym_noreturn] = ACTIONS(5302), - [anon_sym_mutable] = ACTIONS(5302), - [anon_sym_constinit] = ACTIONS(5302), - [anon_sym_consteval] = ACTIONS(5302), - [sym_primitive_type] = ACTIONS(5302), - [anon_sym_enum] = ACTIONS(5302), - [anon_sym_class] = ACTIONS(5302), - [anon_sym_struct] = ACTIONS(5302), - [anon_sym_union] = ACTIONS(5302), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5302), - [anon_sym_decltype] = ACTIONS(5302), - [anon_sym_virtual] = ACTIONS(5302), - [anon_sym_alignas] = ACTIONS(5302), - [anon_sym_explicit] = ACTIONS(5302), - [anon_sym_typename] = ACTIONS(5302), - [anon_sym_template] = ACTIONS(5302), - [anon_sym_operator] = ACTIONS(5302), - [anon_sym_friend] = ACTIONS(5302), - [anon_sym_public] = ACTIONS(5302), - [anon_sym_private] = ACTIONS(5302), - [anon_sym_protected] = ACTIONS(5302), - [anon_sym_using] = ACTIONS(5302), - [anon_sym_static_assert] = ACTIONS(5302), - }, - [2544] = { - [sym_identifier] = ACTIONS(3380), - [aux_sym_preproc_def_token1] = ACTIONS(3380), - [aux_sym_preproc_if_token1] = ACTIONS(3380), - [aux_sym_preproc_if_token2] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), - [aux_sym_preproc_else_token1] = ACTIONS(3380), - [aux_sym_preproc_elif_token1] = ACTIONS(3380), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3380), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3380), - [sym_preproc_directive] = ACTIONS(3380), - [anon_sym_LPAREN2] = ACTIONS(3382), - [anon_sym_TILDE] = ACTIONS(3382), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_AMP_AMP] = ACTIONS(3382), - [anon_sym_AMP] = ACTIONS(3380), - [anon_sym___extension__] = ACTIONS(3380), - [anon_sym_typedef] = ACTIONS(3380), - [anon_sym_extern] = ACTIONS(3380), - [anon_sym___attribute__] = ACTIONS(3380), - [anon_sym_COLON_COLON] = ACTIONS(3382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), - [anon_sym___declspec] = ACTIONS(3380), - [anon_sym___based] = ACTIONS(3380), - [anon_sym_signed] = ACTIONS(3380), - [anon_sym_unsigned] = ACTIONS(3380), - [anon_sym_long] = ACTIONS(3380), - [anon_sym_short] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_register] = ACTIONS(3380), - [anon_sym_inline] = ACTIONS(3380), - [anon_sym___inline] = ACTIONS(3380), - [anon_sym___inline__] = ACTIONS(3380), - [anon_sym___forceinline] = ACTIONS(3380), - [anon_sym_thread_local] = ACTIONS(3380), - [anon_sym___thread] = ACTIONS(3380), - [anon_sym_const] = ACTIONS(3380), - [anon_sym_constexpr] = ACTIONS(3380), - [anon_sym_volatile] = ACTIONS(3380), - [anon_sym_restrict] = ACTIONS(3380), - [anon_sym___restrict__] = ACTIONS(3380), - [anon_sym__Atomic] = ACTIONS(3380), - [anon_sym__Noreturn] = ACTIONS(3380), - [anon_sym_noreturn] = ACTIONS(3380), - [anon_sym_mutable] = ACTIONS(3380), - [anon_sym_constinit] = ACTIONS(3380), - [anon_sym_consteval] = ACTIONS(3380), - [sym_primitive_type] = ACTIONS(3380), - [anon_sym_enum] = ACTIONS(3380), - [anon_sym_class] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(3380), - [anon_sym_union] = ACTIONS(3380), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3380), - [anon_sym_decltype] = ACTIONS(3380), - [anon_sym_virtual] = ACTIONS(3380), - [anon_sym_alignas] = ACTIONS(3380), - [anon_sym_explicit] = ACTIONS(3380), - [anon_sym_typename] = ACTIONS(3380), - [anon_sym_template] = ACTIONS(3380), - [anon_sym_operator] = ACTIONS(3380), - [anon_sym_friend] = ACTIONS(3380), - [anon_sym_public] = ACTIONS(3380), - [anon_sym_private] = ACTIONS(3380), - [anon_sym_protected] = ACTIONS(3380), - [anon_sym_using] = ACTIONS(3380), - [anon_sym_static_assert] = ACTIONS(3380), - }, - [2545] = { - [sym_identifier] = ACTIONS(5302), - [aux_sym_preproc_def_token1] = ACTIONS(5302), - [aux_sym_preproc_if_token1] = ACTIONS(5302), - [aux_sym_preproc_if_token2] = ACTIONS(5302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5302), - [aux_sym_preproc_else_token1] = ACTIONS(5302), - [aux_sym_preproc_elif_token1] = ACTIONS(5302), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5302), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5302), - [sym_preproc_directive] = ACTIONS(5302), - [anon_sym_LPAREN2] = ACTIONS(5304), - [anon_sym_TILDE] = ACTIONS(5304), - [anon_sym_STAR] = ACTIONS(5304), - [anon_sym_AMP_AMP] = ACTIONS(5304), - [anon_sym_AMP] = ACTIONS(5302), - [anon_sym___extension__] = ACTIONS(5302), - [anon_sym_typedef] = ACTIONS(5302), - [anon_sym_extern] = ACTIONS(5302), - [anon_sym___attribute__] = ACTIONS(5302), - [anon_sym_COLON_COLON] = ACTIONS(5304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5304), - [anon_sym___declspec] = ACTIONS(5302), - [anon_sym___based] = ACTIONS(5302), - [anon_sym_signed] = ACTIONS(5302), - [anon_sym_unsigned] = ACTIONS(5302), - [anon_sym_long] = ACTIONS(5302), - [anon_sym_short] = ACTIONS(5302), - [anon_sym_LBRACK] = ACTIONS(5302), - [anon_sym_static] = ACTIONS(5302), - [anon_sym_register] = ACTIONS(5302), - [anon_sym_inline] = ACTIONS(5302), - [anon_sym___inline] = ACTIONS(5302), - [anon_sym___inline__] = ACTIONS(5302), - [anon_sym___forceinline] = ACTIONS(5302), - [anon_sym_thread_local] = ACTIONS(5302), - [anon_sym___thread] = ACTIONS(5302), - [anon_sym_const] = ACTIONS(5302), - [anon_sym_constexpr] = ACTIONS(5302), - [anon_sym_volatile] = ACTIONS(5302), - [anon_sym_restrict] = ACTIONS(5302), - [anon_sym___restrict__] = ACTIONS(5302), - [anon_sym__Atomic] = ACTIONS(5302), - [anon_sym__Noreturn] = ACTIONS(5302), - [anon_sym_noreturn] = ACTIONS(5302), - [anon_sym_mutable] = ACTIONS(5302), - [anon_sym_constinit] = ACTIONS(5302), - [anon_sym_consteval] = ACTIONS(5302), - [sym_primitive_type] = ACTIONS(5302), - [anon_sym_enum] = ACTIONS(5302), - [anon_sym_class] = ACTIONS(5302), - [anon_sym_struct] = ACTIONS(5302), - [anon_sym_union] = ACTIONS(5302), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5302), - [anon_sym_decltype] = ACTIONS(5302), - [anon_sym_virtual] = ACTIONS(5302), - [anon_sym_alignas] = ACTIONS(5302), - [anon_sym_explicit] = ACTIONS(5302), - [anon_sym_typename] = ACTIONS(5302), - [anon_sym_template] = ACTIONS(5302), - [anon_sym_operator] = ACTIONS(5302), - [anon_sym_friend] = ACTIONS(5302), - [anon_sym_public] = ACTIONS(5302), - [anon_sym_private] = ACTIONS(5302), - [anon_sym_protected] = ACTIONS(5302), - [anon_sym_using] = ACTIONS(5302), - [anon_sym_static_assert] = ACTIONS(5302), - }, - [2546] = { - [sym_identifier] = ACTIONS(3444), - [aux_sym_preproc_def_token1] = ACTIONS(3444), - [aux_sym_preproc_if_token1] = ACTIONS(3444), - [aux_sym_preproc_if_token2] = ACTIONS(3444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3444), - [aux_sym_preproc_else_token1] = ACTIONS(3444), - [aux_sym_preproc_elif_token1] = ACTIONS(3444), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3444), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3444), - [sym_preproc_directive] = ACTIONS(3444), - [anon_sym_LPAREN2] = ACTIONS(3446), - [anon_sym_TILDE] = ACTIONS(3446), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(3446), - [anon_sym_AMP] = ACTIONS(3444), - [anon_sym___extension__] = ACTIONS(3444), - [anon_sym_typedef] = ACTIONS(3444), - [anon_sym_extern] = ACTIONS(3444), - [anon_sym___attribute__] = ACTIONS(3444), - [anon_sym_COLON_COLON] = ACTIONS(3446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3446), - [anon_sym___declspec] = ACTIONS(3444), - [anon_sym___based] = ACTIONS(3444), - [anon_sym_signed] = ACTIONS(3444), - [anon_sym_unsigned] = ACTIONS(3444), - [anon_sym_long] = ACTIONS(3444), - [anon_sym_short] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3444), - [anon_sym_static] = ACTIONS(3444), - [anon_sym_register] = ACTIONS(3444), - [anon_sym_inline] = ACTIONS(3444), - [anon_sym___inline] = ACTIONS(3444), - [anon_sym___inline__] = ACTIONS(3444), - [anon_sym___forceinline] = ACTIONS(3444), - [anon_sym_thread_local] = ACTIONS(3444), - [anon_sym___thread] = ACTIONS(3444), - [anon_sym_const] = ACTIONS(3444), - [anon_sym_constexpr] = ACTIONS(3444), - [anon_sym_volatile] = ACTIONS(3444), - [anon_sym_restrict] = ACTIONS(3444), - [anon_sym___restrict__] = ACTIONS(3444), - [anon_sym__Atomic] = ACTIONS(3444), - [anon_sym__Noreturn] = ACTIONS(3444), - [anon_sym_noreturn] = ACTIONS(3444), - [anon_sym_mutable] = ACTIONS(3444), - [anon_sym_constinit] = ACTIONS(3444), - [anon_sym_consteval] = ACTIONS(3444), - [sym_primitive_type] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), - [anon_sym_class] = ACTIONS(3444), - [anon_sym_struct] = ACTIONS(3444), - [anon_sym_union] = ACTIONS(3444), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3444), - [anon_sym_decltype] = ACTIONS(3444), - [anon_sym_virtual] = ACTIONS(3444), - [anon_sym_alignas] = ACTIONS(3444), - [anon_sym_explicit] = ACTIONS(3444), - [anon_sym_typename] = ACTIONS(3444), - [anon_sym_template] = ACTIONS(3444), - [anon_sym_operator] = ACTIONS(3444), - [anon_sym_friend] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3444), - [anon_sym_private] = ACTIONS(3444), - [anon_sym_protected] = ACTIONS(3444), - [anon_sym_using] = ACTIONS(3444), - [anon_sym_static_assert] = ACTIONS(3444), - }, - [2547] = { - [sym_identifier] = ACTIONS(5306), - [aux_sym_preproc_def_token1] = ACTIONS(5306), - [aux_sym_preproc_if_token1] = ACTIONS(5306), - [aux_sym_preproc_if_token2] = ACTIONS(5306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5306), - [aux_sym_preproc_else_token1] = ACTIONS(5306), - [aux_sym_preproc_elif_token1] = ACTIONS(5306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5306), - [sym_preproc_directive] = ACTIONS(5306), - [anon_sym_LPAREN2] = ACTIONS(5308), - [anon_sym_TILDE] = ACTIONS(5308), - [anon_sym_STAR] = ACTIONS(5308), - [anon_sym_AMP_AMP] = ACTIONS(5308), - [anon_sym_AMP] = ACTIONS(5306), - [anon_sym___extension__] = ACTIONS(5306), - [anon_sym_typedef] = ACTIONS(5306), - [anon_sym_extern] = ACTIONS(5306), - [anon_sym___attribute__] = ACTIONS(5306), - [anon_sym_COLON_COLON] = ACTIONS(5308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5308), - [anon_sym___declspec] = ACTIONS(5306), - [anon_sym___based] = ACTIONS(5306), - [anon_sym_signed] = ACTIONS(5306), - [anon_sym_unsigned] = ACTIONS(5306), - [anon_sym_long] = ACTIONS(5306), - [anon_sym_short] = ACTIONS(5306), - [anon_sym_LBRACK] = ACTIONS(5306), - [anon_sym_static] = ACTIONS(5306), - [anon_sym_register] = ACTIONS(5306), - [anon_sym_inline] = ACTIONS(5306), - [anon_sym___inline] = ACTIONS(5306), - [anon_sym___inline__] = ACTIONS(5306), - [anon_sym___forceinline] = ACTIONS(5306), - [anon_sym_thread_local] = ACTIONS(5306), - [anon_sym___thread] = ACTIONS(5306), - [anon_sym_const] = ACTIONS(5306), - [anon_sym_constexpr] = ACTIONS(5306), - [anon_sym_volatile] = ACTIONS(5306), - [anon_sym_restrict] = ACTIONS(5306), - [anon_sym___restrict__] = ACTIONS(5306), - [anon_sym__Atomic] = ACTIONS(5306), - [anon_sym__Noreturn] = ACTIONS(5306), - [anon_sym_noreturn] = ACTIONS(5306), - [anon_sym_mutable] = ACTIONS(5306), - [anon_sym_constinit] = ACTIONS(5306), - [anon_sym_consteval] = ACTIONS(5306), - [sym_primitive_type] = ACTIONS(5306), - [anon_sym_enum] = ACTIONS(5306), - [anon_sym_class] = ACTIONS(5306), - [anon_sym_struct] = ACTIONS(5306), - [anon_sym_union] = ACTIONS(5306), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5306), - [anon_sym_decltype] = ACTIONS(5306), - [anon_sym_virtual] = ACTIONS(5306), - [anon_sym_alignas] = ACTIONS(5306), - [anon_sym_explicit] = ACTIONS(5306), - [anon_sym_typename] = ACTIONS(5306), - [anon_sym_template] = ACTIONS(5306), - [anon_sym_operator] = ACTIONS(5306), - [anon_sym_friend] = ACTIONS(5306), - [anon_sym_public] = ACTIONS(5306), - [anon_sym_private] = ACTIONS(5306), - [anon_sym_protected] = ACTIONS(5306), - [anon_sym_using] = ACTIONS(5306), - [anon_sym_static_assert] = ACTIONS(5306), - }, - [2548] = { - [sym_identifier] = ACTIONS(3290), - [aux_sym_preproc_def_token1] = ACTIONS(3290), - [aux_sym_preproc_if_token1] = ACTIONS(3290), - [aux_sym_preproc_if_token2] = ACTIONS(3290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3290), - [aux_sym_preproc_else_token1] = ACTIONS(3290), - [aux_sym_preproc_elif_token1] = ACTIONS(3290), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3290), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3290), - [sym_preproc_directive] = ACTIONS(3290), - [anon_sym_LPAREN2] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_AMP] = ACTIONS(3290), - [anon_sym___extension__] = ACTIONS(3290), - [anon_sym_typedef] = ACTIONS(3290), - [anon_sym_extern] = ACTIONS(3290), - [anon_sym___attribute__] = ACTIONS(3290), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3292), - [anon_sym___declspec] = ACTIONS(3290), - [anon_sym___based] = ACTIONS(3290), - [anon_sym_signed] = ACTIONS(3290), - [anon_sym_unsigned] = ACTIONS(3290), - [anon_sym_long] = ACTIONS(3290), - [anon_sym_short] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_static] = ACTIONS(3290), - [anon_sym_register] = ACTIONS(3290), - [anon_sym_inline] = ACTIONS(3290), - [anon_sym___inline] = ACTIONS(3290), - [anon_sym___inline__] = ACTIONS(3290), - [anon_sym___forceinline] = ACTIONS(3290), - [anon_sym_thread_local] = ACTIONS(3290), - [anon_sym___thread] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_constexpr] = ACTIONS(3290), - [anon_sym_volatile] = ACTIONS(3290), - [anon_sym_restrict] = ACTIONS(3290), - [anon_sym___restrict__] = ACTIONS(3290), - [anon_sym__Atomic] = ACTIONS(3290), - [anon_sym__Noreturn] = ACTIONS(3290), - [anon_sym_noreturn] = ACTIONS(3290), - [anon_sym_mutable] = ACTIONS(3290), - [anon_sym_constinit] = ACTIONS(3290), - [anon_sym_consteval] = ACTIONS(3290), - [sym_primitive_type] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), - [anon_sym_class] = ACTIONS(3290), - [anon_sym_struct] = ACTIONS(3290), - [anon_sym_union] = ACTIONS(3290), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3290), - [anon_sym_decltype] = ACTIONS(3290), - [anon_sym_virtual] = ACTIONS(3290), - [anon_sym_alignas] = ACTIONS(3290), - [anon_sym_explicit] = ACTIONS(3290), - [anon_sym_typename] = ACTIONS(3290), - [anon_sym_template] = ACTIONS(3290), - [anon_sym_operator] = ACTIONS(3290), - [anon_sym_friend] = ACTIONS(3290), - [anon_sym_public] = ACTIONS(3290), - [anon_sym_private] = ACTIONS(3290), - [anon_sym_protected] = ACTIONS(3290), - [anon_sym_using] = ACTIONS(3290), - [anon_sym_static_assert] = ACTIONS(3290), - }, - [2549] = { - [sym_identifier] = ACTIONS(3450), - [aux_sym_preproc_def_token1] = ACTIONS(3450), - [aux_sym_preproc_if_token1] = ACTIONS(3450), - [aux_sym_preproc_if_token2] = ACTIONS(3450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3450), - [aux_sym_preproc_else_token1] = ACTIONS(3450), - [aux_sym_preproc_elif_token1] = ACTIONS(3450), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3450), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3450), - [sym_preproc_directive] = ACTIONS(3450), - [anon_sym_LPAREN2] = ACTIONS(3452), - [anon_sym_TILDE] = ACTIONS(3452), - [anon_sym_STAR] = ACTIONS(3452), - [anon_sym_AMP_AMP] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3450), - [anon_sym___extension__] = ACTIONS(3450), - [anon_sym_typedef] = ACTIONS(3450), - [anon_sym_extern] = ACTIONS(3450), - [anon_sym___attribute__] = ACTIONS(3450), - [anon_sym_COLON_COLON] = ACTIONS(3452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3452), - [anon_sym___declspec] = ACTIONS(3450), - [anon_sym___based] = ACTIONS(3450), - [anon_sym_signed] = ACTIONS(3450), - [anon_sym_unsigned] = ACTIONS(3450), - [anon_sym_long] = ACTIONS(3450), - [anon_sym_short] = ACTIONS(3450), - [anon_sym_LBRACK] = ACTIONS(3450), - [anon_sym_static] = ACTIONS(3450), - [anon_sym_register] = ACTIONS(3450), - [anon_sym_inline] = ACTIONS(3450), - [anon_sym___inline] = ACTIONS(3450), - [anon_sym___inline__] = ACTIONS(3450), - [anon_sym___forceinline] = ACTIONS(3450), - [anon_sym_thread_local] = ACTIONS(3450), - [anon_sym___thread] = ACTIONS(3450), - [anon_sym_const] = ACTIONS(3450), - [anon_sym_constexpr] = ACTIONS(3450), - [anon_sym_volatile] = ACTIONS(3450), - [anon_sym_restrict] = ACTIONS(3450), - [anon_sym___restrict__] = ACTIONS(3450), - [anon_sym__Atomic] = ACTIONS(3450), - [anon_sym__Noreturn] = ACTIONS(3450), - [anon_sym_noreturn] = ACTIONS(3450), - [anon_sym_mutable] = ACTIONS(3450), - [anon_sym_constinit] = ACTIONS(3450), - [anon_sym_consteval] = ACTIONS(3450), - [sym_primitive_type] = ACTIONS(3450), - [anon_sym_enum] = ACTIONS(3450), - [anon_sym_class] = ACTIONS(3450), - [anon_sym_struct] = ACTIONS(3450), - [anon_sym_union] = ACTIONS(3450), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3450), - [anon_sym_decltype] = ACTIONS(3450), - [anon_sym_virtual] = ACTIONS(3450), - [anon_sym_alignas] = ACTIONS(3450), - [anon_sym_explicit] = ACTIONS(3450), - [anon_sym_typename] = ACTIONS(3450), - [anon_sym_template] = ACTIONS(3450), - [anon_sym_operator] = ACTIONS(3450), - [anon_sym_friend] = ACTIONS(3450), - [anon_sym_public] = ACTIONS(3450), - [anon_sym_private] = ACTIONS(3450), - [anon_sym_protected] = ACTIONS(3450), - [anon_sym_using] = ACTIONS(3450), - [anon_sym_static_assert] = ACTIONS(3450), - }, - [2550] = { - [sym_identifier] = ACTIONS(5310), - [aux_sym_preproc_def_token1] = ACTIONS(5310), - [aux_sym_preproc_if_token1] = ACTIONS(5310), - [aux_sym_preproc_if_token2] = ACTIONS(5310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5310), - [aux_sym_preproc_else_token1] = ACTIONS(5310), - [aux_sym_preproc_elif_token1] = ACTIONS(5310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5310), - [sym_preproc_directive] = ACTIONS(5310), - [anon_sym_LPAREN2] = ACTIONS(5312), - [anon_sym_TILDE] = ACTIONS(5312), - [anon_sym_STAR] = ACTIONS(5312), - [anon_sym_AMP_AMP] = ACTIONS(5312), - [anon_sym_AMP] = ACTIONS(5310), - [anon_sym___extension__] = ACTIONS(5310), - [anon_sym_typedef] = ACTIONS(5310), - [anon_sym_extern] = ACTIONS(5310), - [anon_sym___attribute__] = ACTIONS(5310), - [anon_sym_COLON_COLON] = ACTIONS(5312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5312), - [anon_sym___declspec] = ACTIONS(5310), - [anon_sym___based] = ACTIONS(5310), - [anon_sym_signed] = ACTIONS(5310), - [anon_sym_unsigned] = ACTIONS(5310), - [anon_sym_long] = ACTIONS(5310), - [anon_sym_short] = ACTIONS(5310), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_static] = ACTIONS(5310), - [anon_sym_register] = ACTIONS(5310), - [anon_sym_inline] = ACTIONS(5310), - [anon_sym___inline] = ACTIONS(5310), - [anon_sym___inline__] = ACTIONS(5310), - [anon_sym___forceinline] = ACTIONS(5310), - [anon_sym_thread_local] = ACTIONS(5310), - [anon_sym___thread] = ACTIONS(5310), - [anon_sym_const] = ACTIONS(5310), - [anon_sym_constexpr] = ACTIONS(5310), - [anon_sym_volatile] = ACTIONS(5310), - [anon_sym_restrict] = ACTIONS(5310), - [anon_sym___restrict__] = ACTIONS(5310), - [anon_sym__Atomic] = ACTIONS(5310), - [anon_sym__Noreturn] = ACTIONS(5310), - [anon_sym_noreturn] = ACTIONS(5310), - [anon_sym_mutable] = ACTIONS(5310), - [anon_sym_constinit] = ACTIONS(5310), - [anon_sym_consteval] = ACTIONS(5310), - [sym_primitive_type] = ACTIONS(5310), - [anon_sym_enum] = ACTIONS(5310), - [anon_sym_class] = ACTIONS(5310), - [anon_sym_struct] = ACTIONS(5310), - [anon_sym_union] = ACTIONS(5310), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5310), - [anon_sym_decltype] = ACTIONS(5310), - [anon_sym_virtual] = ACTIONS(5310), - [anon_sym_alignas] = ACTIONS(5310), - [anon_sym_explicit] = ACTIONS(5310), - [anon_sym_typename] = ACTIONS(5310), - [anon_sym_template] = ACTIONS(5310), - [anon_sym_operator] = ACTIONS(5310), - [anon_sym_friend] = ACTIONS(5310), - [anon_sym_public] = ACTIONS(5310), - [anon_sym_private] = ACTIONS(5310), - [anon_sym_protected] = ACTIONS(5310), - [anon_sym_using] = ACTIONS(5310), - [anon_sym_static_assert] = ACTIONS(5310), - }, - [2551] = { - [sym_identifier] = ACTIONS(3370), - [aux_sym_preproc_def_token1] = ACTIONS(3370), - [aux_sym_preproc_if_token1] = ACTIONS(3370), - [aux_sym_preproc_if_token2] = ACTIONS(3370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3370), - [aux_sym_preproc_else_token1] = ACTIONS(3370), - [aux_sym_preproc_elif_token1] = ACTIONS(3370), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3370), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3370), - [sym_preproc_directive] = ACTIONS(3370), - [anon_sym_LPAREN2] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(3372), - [anon_sym_STAR] = ACTIONS(3372), - [anon_sym_AMP_AMP] = ACTIONS(3372), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym___extension__] = ACTIONS(3370), - [anon_sym_typedef] = ACTIONS(3370), - [anon_sym_extern] = ACTIONS(3370), - [anon_sym___attribute__] = ACTIONS(3370), - [anon_sym_COLON_COLON] = ACTIONS(3372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3372), - [anon_sym___declspec] = ACTIONS(3370), - [anon_sym___based] = ACTIONS(3370), - [anon_sym_signed] = ACTIONS(3370), - [anon_sym_unsigned] = ACTIONS(3370), - [anon_sym_long] = ACTIONS(3370), - [anon_sym_short] = ACTIONS(3370), - [anon_sym_LBRACK] = ACTIONS(3370), - [anon_sym_static] = ACTIONS(3370), - [anon_sym_register] = ACTIONS(3370), - [anon_sym_inline] = ACTIONS(3370), - [anon_sym___inline] = ACTIONS(3370), - [anon_sym___inline__] = ACTIONS(3370), - [anon_sym___forceinline] = ACTIONS(3370), - [anon_sym_thread_local] = ACTIONS(3370), - [anon_sym___thread] = ACTIONS(3370), - [anon_sym_const] = ACTIONS(3370), - [anon_sym_constexpr] = ACTIONS(3370), - [anon_sym_volatile] = ACTIONS(3370), - [anon_sym_restrict] = ACTIONS(3370), - [anon_sym___restrict__] = ACTIONS(3370), - [anon_sym__Atomic] = ACTIONS(3370), - [anon_sym__Noreturn] = ACTIONS(3370), - [anon_sym_noreturn] = ACTIONS(3370), - [anon_sym_mutable] = ACTIONS(3370), - [anon_sym_constinit] = ACTIONS(3370), - [anon_sym_consteval] = ACTIONS(3370), - [sym_primitive_type] = ACTIONS(3370), - [anon_sym_enum] = ACTIONS(3370), - [anon_sym_class] = ACTIONS(3370), - [anon_sym_struct] = ACTIONS(3370), - [anon_sym_union] = ACTIONS(3370), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3370), - [anon_sym_virtual] = ACTIONS(3370), - [anon_sym_alignas] = ACTIONS(3370), - [anon_sym_explicit] = ACTIONS(3370), - [anon_sym_typename] = ACTIONS(3370), - [anon_sym_template] = ACTIONS(3370), - [anon_sym_operator] = ACTIONS(3370), - [anon_sym_friend] = ACTIONS(3370), - [anon_sym_public] = ACTIONS(3370), - [anon_sym_private] = ACTIONS(3370), - [anon_sym_protected] = ACTIONS(3370), - [anon_sym_using] = ACTIONS(3370), - [anon_sym_static_assert] = ACTIONS(3370), - }, - [2552] = { - [sym_type_qualifier] = STATE(2552), - [aux_sym_type_definition_repeat1] = STATE(2552), - [sym_identifier] = ACTIONS(5314), - [anon_sym_LPAREN2] = ACTIONS(5316), - [anon_sym_BANG] = ACTIONS(5316), - [anon_sym_TILDE] = ACTIONS(5316), - [anon_sym_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(5314), - [anon_sym_STAR] = ACTIONS(5316), - [anon_sym_AMP] = ACTIONS(5316), - [anon_sym___extension__] = ACTIONS(5318), - [anon_sym_COLON_COLON] = ACTIONS(5316), - [anon_sym_LBRACK] = ACTIONS(5316), - [anon_sym_RBRACK] = ACTIONS(5316), - [anon_sym_const] = ACTIONS(5318), - [anon_sym_constexpr] = ACTIONS(5318), - [anon_sym_volatile] = ACTIONS(5318), - [anon_sym_restrict] = ACTIONS(5318), - [anon_sym___restrict__] = ACTIONS(5318), - [anon_sym__Atomic] = ACTIONS(5318), - [anon_sym__Noreturn] = ACTIONS(5318), - [anon_sym_noreturn] = ACTIONS(5318), - [anon_sym_mutable] = ACTIONS(5318), - [anon_sym_constinit] = ACTIONS(5318), - [anon_sym_consteval] = ACTIONS(5318), - [sym_primitive_type] = ACTIONS(5314), - [anon_sym_not] = ACTIONS(5314), - [anon_sym_compl] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5316), - [anon_sym_PLUS_PLUS] = ACTIONS(5316), - [anon_sym_sizeof] = ACTIONS(5314), - [anon_sym___alignof__] = ACTIONS(5314), - [anon_sym___alignof] = ACTIONS(5314), - [anon_sym__alignof] = ACTIONS(5314), - [anon_sym_alignof] = ACTIONS(5314), - [anon_sym__Alignof] = ACTIONS(5314), - [anon_sym_offsetof] = ACTIONS(5314), - [anon_sym__Generic] = ACTIONS(5314), - [anon_sym_asm] = ACTIONS(5314), - [anon_sym___asm__] = ACTIONS(5314), - [sym_number_literal] = ACTIONS(5316), - [anon_sym_L_SQUOTE] = ACTIONS(5316), - [anon_sym_u_SQUOTE] = ACTIONS(5316), - [anon_sym_U_SQUOTE] = ACTIONS(5316), - [anon_sym_u8_SQUOTE] = ACTIONS(5316), - [anon_sym_SQUOTE] = ACTIONS(5316), - [anon_sym_L_DQUOTE] = ACTIONS(5316), - [anon_sym_u_DQUOTE] = ACTIONS(5316), - [anon_sym_U_DQUOTE] = ACTIONS(5316), - [anon_sym_u8_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5316), - [sym_true] = ACTIONS(5314), - [sym_false] = ACTIONS(5314), - [anon_sym_NULL] = ACTIONS(5314), - [anon_sym_nullptr] = ACTIONS(5314), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5314), - [anon_sym_template] = ACTIONS(5314), - [anon_sym_delete] = ACTIONS(5314), - [anon_sym_R_DQUOTE] = ACTIONS(5316), - [anon_sym_LR_DQUOTE] = ACTIONS(5316), - [anon_sym_uR_DQUOTE] = ACTIONS(5316), - [anon_sym_UR_DQUOTE] = ACTIONS(5316), - [anon_sym_u8R_DQUOTE] = ACTIONS(5316), - [anon_sym_co_await] = ACTIONS(5314), - [anon_sym_new] = ACTIONS(5314), - [anon_sym_requires] = ACTIONS(5314), - [sym_this] = ACTIONS(5314), - }, - [2553] = { - [sym_identifier] = ACTIONS(5321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5323), - [anon_sym_COMMA] = ACTIONS(5323), - [anon_sym_RPAREN] = ACTIONS(5323), - [anon_sym_LPAREN2] = ACTIONS(5323), - [anon_sym_DASH] = ACTIONS(5321), - [anon_sym_PLUS] = ACTIONS(5321), - [anon_sym_STAR] = ACTIONS(5323), - [anon_sym_SLASH] = ACTIONS(5321), - [anon_sym_PERCENT] = ACTIONS(5323), - [anon_sym_PIPE_PIPE] = ACTIONS(5323), - [anon_sym_AMP_AMP] = ACTIONS(5323), - [anon_sym_PIPE] = ACTIONS(5321), - [anon_sym_CARET] = ACTIONS(5323), - [anon_sym_AMP] = ACTIONS(5321), - [anon_sym_EQ_EQ] = ACTIONS(5323), - [anon_sym_BANG_EQ] = ACTIONS(5323), - [anon_sym_GT] = ACTIONS(5321), - [anon_sym_GT_EQ] = ACTIONS(5323), - [anon_sym_LT_EQ] = ACTIONS(5321), - [anon_sym_LT] = ACTIONS(5321), - [anon_sym_LT_LT] = ACTIONS(5323), - [anon_sym_GT_GT] = ACTIONS(5323), - [anon_sym_SEMI] = ACTIONS(5323), - [anon_sym___extension__] = ACTIONS(5321), - [anon_sym___attribute__] = ACTIONS(5321), - [anon_sym_COLON_COLON] = ACTIONS(5206), - [anon_sym___based] = ACTIONS(5321), - [anon_sym_LBRACE] = ACTIONS(5323), - [anon_sym_RBRACE] = ACTIONS(5323), - [anon_sym_signed] = ACTIONS(5321), - [anon_sym_unsigned] = ACTIONS(5321), - [anon_sym_long] = ACTIONS(5321), - [anon_sym_short] = ACTIONS(5321), - [anon_sym_LBRACK] = ACTIONS(5323), - [anon_sym_RBRACK] = ACTIONS(5323), - [anon_sym_const] = ACTIONS(5321), - [anon_sym_constexpr] = ACTIONS(5321), - [anon_sym_volatile] = ACTIONS(5321), - [anon_sym_restrict] = ACTIONS(5321), - [anon_sym___restrict__] = ACTIONS(5321), - [anon_sym__Atomic] = ACTIONS(5321), - [anon_sym__Noreturn] = ACTIONS(5321), - [anon_sym_noreturn] = ACTIONS(5321), - [anon_sym_mutable] = ACTIONS(5321), - [anon_sym_constinit] = ACTIONS(5321), - [anon_sym_consteval] = ACTIONS(5321), - [sym_primitive_type] = ACTIONS(5321), - [anon_sym_COLON] = ACTIONS(5321), - [anon_sym_QMARK] = ACTIONS(5323), - [anon_sym_LT_EQ_GT] = ACTIONS(5323), - [anon_sym_or] = ACTIONS(5321), - [anon_sym_and] = ACTIONS(5321), - [anon_sym_bitor] = ACTIONS(5321), - [anon_sym_xor] = ACTIONS(5321), - [anon_sym_bitand] = ACTIONS(5321), - [anon_sym_not_eq] = ACTIONS(5321), - [anon_sym_DASH_DASH] = ACTIONS(5323), - [anon_sym_PLUS_PLUS] = ACTIONS(5323), - [anon_sym_DOT] = ACTIONS(5321), - [anon_sym_DOT_STAR] = ACTIONS(5323), - [anon_sym_DASH_GT] = ACTIONS(5323), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5321), - [anon_sym_decltype] = ACTIONS(5321), - [anon_sym_final] = ACTIONS(5321), - [anon_sym_override] = ACTIONS(5321), - [anon_sym_requires] = ACTIONS(5321), - }, - [2554] = { - [sym_identifier] = ACTIONS(3336), - [aux_sym_preproc_def_token1] = ACTIONS(3336), - [aux_sym_preproc_if_token1] = ACTIONS(3336), - [aux_sym_preproc_if_token2] = ACTIONS(3336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3336), - [aux_sym_preproc_else_token1] = ACTIONS(3336), - [aux_sym_preproc_elif_token1] = ACTIONS(3336), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3336), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3336), - [sym_preproc_directive] = ACTIONS(3336), - [anon_sym_LPAREN2] = ACTIONS(3338), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_STAR] = ACTIONS(3338), - [anon_sym_AMP_AMP] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym___extension__] = ACTIONS(3336), - [anon_sym_typedef] = ACTIONS(3336), - [anon_sym_extern] = ACTIONS(3336), - [anon_sym___attribute__] = ACTIONS(3336), - [anon_sym_COLON_COLON] = ACTIONS(3338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3338), - [anon_sym___declspec] = ACTIONS(3336), - [anon_sym___based] = ACTIONS(3336), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_register] = ACTIONS(3336), - [anon_sym_inline] = ACTIONS(3336), - [anon_sym___inline] = ACTIONS(3336), - [anon_sym___inline__] = ACTIONS(3336), - [anon_sym___forceinline] = ACTIONS(3336), - [anon_sym_thread_local] = ACTIONS(3336), - [anon_sym___thread] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_constexpr] = ACTIONS(3336), - [anon_sym_volatile] = ACTIONS(3336), - [anon_sym_restrict] = ACTIONS(3336), - [anon_sym___restrict__] = ACTIONS(3336), - [anon_sym__Atomic] = ACTIONS(3336), - [anon_sym__Noreturn] = ACTIONS(3336), - [anon_sym_noreturn] = ACTIONS(3336), - [anon_sym_mutable] = ACTIONS(3336), - [anon_sym_constinit] = ACTIONS(3336), - [anon_sym_consteval] = ACTIONS(3336), - [sym_primitive_type] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_union] = ACTIONS(3336), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3336), - [anon_sym_decltype] = ACTIONS(3336), - [anon_sym_virtual] = ACTIONS(3336), - [anon_sym_alignas] = ACTIONS(3336), - [anon_sym_explicit] = ACTIONS(3336), - [anon_sym_typename] = ACTIONS(3336), - [anon_sym_template] = ACTIONS(3336), - [anon_sym_operator] = ACTIONS(3336), - [anon_sym_friend] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_static_assert] = ACTIONS(3336), - }, - [2555] = { - [sym_identifier] = ACTIONS(5325), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5327), - [anon_sym_COMMA] = ACTIONS(5327), - [anon_sym_RPAREN] = ACTIONS(5327), - [anon_sym_LPAREN2] = ACTIONS(5327), - [anon_sym_DASH] = ACTIONS(5325), - [anon_sym_PLUS] = ACTIONS(5325), - [anon_sym_STAR] = ACTIONS(5327), - [anon_sym_SLASH] = ACTIONS(5325), - [anon_sym_PERCENT] = ACTIONS(5327), - [anon_sym_PIPE_PIPE] = ACTIONS(5327), - [anon_sym_AMP_AMP] = ACTIONS(5327), - [anon_sym_PIPE] = ACTIONS(5325), - [anon_sym_CARET] = ACTIONS(5327), - [anon_sym_AMP] = ACTIONS(5325), - [anon_sym_EQ_EQ] = ACTIONS(5327), - [anon_sym_BANG_EQ] = ACTIONS(5327), - [anon_sym_GT] = ACTIONS(5325), - [anon_sym_GT_EQ] = ACTIONS(5327), - [anon_sym_LT_EQ] = ACTIONS(5325), - [anon_sym_LT] = ACTIONS(5325), - [anon_sym_LT_LT] = ACTIONS(5327), - [anon_sym_GT_GT] = ACTIONS(5327), - [anon_sym_SEMI] = ACTIONS(5327), - [anon_sym___extension__] = ACTIONS(5325), - [anon_sym___attribute__] = ACTIONS(5325), - [anon_sym_COLON_COLON] = ACTIONS(5327), - [anon_sym___based] = ACTIONS(5325), - [anon_sym_LBRACE] = ACTIONS(5327), - [anon_sym_RBRACE] = ACTIONS(5327), - [anon_sym_signed] = ACTIONS(5325), - [anon_sym_unsigned] = ACTIONS(5325), - [anon_sym_long] = ACTIONS(5325), - [anon_sym_short] = ACTIONS(5325), - [anon_sym_LBRACK] = ACTIONS(5327), - [anon_sym_RBRACK] = ACTIONS(5327), - [anon_sym_const] = ACTIONS(5325), - [anon_sym_constexpr] = ACTIONS(5325), - [anon_sym_volatile] = ACTIONS(5325), - [anon_sym_restrict] = ACTIONS(5325), - [anon_sym___restrict__] = ACTIONS(5325), - [anon_sym__Atomic] = ACTIONS(5325), - [anon_sym__Noreturn] = ACTIONS(5325), - [anon_sym_noreturn] = ACTIONS(5325), - [anon_sym_mutable] = ACTIONS(5325), - [anon_sym_constinit] = ACTIONS(5325), - [anon_sym_consteval] = ACTIONS(5325), - [sym_primitive_type] = ACTIONS(5325), - [anon_sym_COLON] = ACTIONS(5325), - [anon_sym_QMARK] = ACTIONS(5327), - [anon_sym_LT_EQ_GT] = ACTIONS(5327), - [anon_sym_or] = ACTIONS(5325), - [anon_sym_and] = ACTIONS(5325), - [anon_sym_bitor] = ACTIONS(5325), - [anon_sym_xor] = ACTIONS(5325), - [anon_sym_bitand] = ACTIONS(5325), - [anon_sym_not_eq] = ACTIONS(5325), - [anon_sym_DASH_DASH] = ACTIONS(5327), - [anon_sym_PLUS_PLUS] = ACTIONS(5327), - [anon_sym_DOT] = ACTIONS(5325), - [anon_sym_DOT_STAR] = ACTIONS(5327), - [anon_sym_DASH_GT] = ACTIONS(5327), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5325), - [anon_sym_decltype] = ACTIONS(5325), - [anon_sym_final] = ACTIONS(5325), - [anon_sym_override] = ACTIONS(5325), - [anon_sym_requires] = ACTIONS(5325), - }, - [2556] = { - [sym_identifier] = ACTIONS(5329), - [aux_sym_preproc_def_token1] = ACTIONS(5329), - [aux_sym_preproc_if_token1] = ACTIONS(5329), - [aux_sym_preproc_if_token2] = ACTIONS(5329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5329), - [aux_sym_preproc_else_token1] = ACTIONS(5329), - [aux_sym_preproc_elif_token1] = ACTIONS(5329), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5329), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5329), - [sym_preproc_directive] = ACTIONS(5329), - [anon_sym_LPAREN2] = ACTIONS(5331), - [anon_sym_TILDE] = ACTIONS(5331), - [anon_sym_STAR] = ACTIONS(5331), - [anon_sym_AMP_AMP] = ACTIONS(5331), - [anon_sym_AMP] = ACTIONS(5329), - [anon_sym___extension__] = ACTIONS(5329), - [anon_sym_typedef] = ACTIONS(5329), - [anon_sym_extern] = ACTIONS(5329), - [anon_sym___attribute__] = ACTIONS(5329), - [anon_sym_COLON_COLON] = ACTIONS(5331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5331), - [anon_sym___declspec] = ACTIONS(5329), - [anon_sym___based] = ACTIONS(5329), - [anon_sym_signed] = ACTIONS(5329), - [anon_sym_unsigned] = ACTIONS(5329), - [anon_sym_long] = ACTIONS(5329), - [anon_sym_short] = ACTIONS(5329), - [anon_sym_LBRACK] = ACTIONS(5329), - [anon_sym_static] = ACTIONS(5329), - [anon_sym_register] = ACTIONS(5329), - [anon_sym_inline] = ACTIONS(5329), - [anon_sym___inline] = ACTIONS(5329), - [anon_sym___inline__] = ACTIONS(5329), - [anon_sym___forceinline] = ACTIONS(5329), - [anon_sym_thread_local] = ACTIONS(5329), - [anon_sym___thread] = ACTIONS(5329), - [anon_sym_const] = ACTIONS(5329), - [anon_sym_constexpr] = ACTIONS(5329), - [anon_sym_volatile] = ACTIONS(5329), - [anon_sym_restrict] = ACTIONS(5329), - [anon_sym___restrict__] = ACTIONS(5329), - [anon_sym__Atomic] = ACTIONS(5329), - [anon_sym__Noreturn] = ACTIONS(5329), - [anon_sym_noreturn] = ACTIONS(5329), - [anon_sym_mutable] = ACTIONS(5329), - [anon_sym_constinit] = ACTIONS(5329), - [anon_sym_consteval] = ACTIONS(5329), - [sym_primitive_type] = ACTIONS(5329), - [anon_sym_enum] = ACTIONS(5329), - [anon_sym_class] = ACTIONS(5329), - [anon_sym_struct] = ACTIONS(5329), - [anon_sym_union] = ACTIONS(5329), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5329), - [anon_sym_decltype] = ACTIONS(5329), - [anon_sym_virtual] = ACTIONS(5329), - [anon_sym_alignas] = ACTIONS(5329), - [anon_sym_explicit] = ACTIONS(5329), - [anon_sym_typename] = ACTIONS(5329), - [anon_sym_template] = ACTIONS(5329), - [anon_sym_operator] = ACTIONS(5329), - [anon_sym_friend] = ACTIONS(5329), - [anon_sym_public] = ACTIONS(5329), - [anon_sym_private] = ACTIONS(5329), - [anon_sym_protected] = ACTIONS(5329), - [anon_sym_using] = ACTIONS(5329), - [anon_sym_static_assert] = ACTIONS(5329), - }, - [2557] = { - [sym_identifier] = ACTIONS(5333), - [aux_sym_preproc_def_token1] = ACTIONS(5333), - [aux_sym_preproc_if_token1] = ACTIONS(5333), - [aux_sym_preproc_if_token2] = ACTIONS(5333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5333), - [aux_sym_preproc_else_token1] = ACTIONS(5333), - [aux_sym_preproc_elif_token1] = ACTIONS(5333), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5333), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5333), - [sym_preproc_directive] = ACTIONS(5333), - [anon_sym_LPAREN2] = ACTIONS(5335), - [anon_sym_TILDE] = ACTIONS(5335), - [anon_sym_STAR] = ACTIONS(5335), - [anon_sym_AMP_AMP] = ACTIONS(5335), - [anon_sym_AMP] = ACTIONS(5333), - [anon_sym___extension__] = ACTIONS(5333), - [anon_sym_typedef] = ACTIONS(5333), - [anon_sym_extern] = ACTIONS(5333), - [anon_sym___attribute__] = ACTIONS(5333), - [anon_sym_COLON_COLON] = ACTIONS(5335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5335), - [anon_sym___declspec] = ACTIONS(5333), - [anon_sym___based] = ACTIONS(5333), - [anon_sym_signed] = ACTIONS(5333), - [anon_sym_unsigned] = ACTIONS(5333), - [anon_sym_long] = ACTIONS(5333), - [anon_sym_short] = ACTIONS(5333), - [anon_sym_LBRACK] = ACTIONS(5333), - [anon_sym_static] = ACTIONS(5333), - [anon_sym_register] = ACTIONS(5333), - [anon_sym_inline] = ACTIONS(5333), - [anon_sym___inline] = ACTIONS(5333), - [anon_sym___inline__] = ACTIONS(5333), - [anon_sym___forceinline] = ACTIONS(5333), - [anon_sym_thread_local] = ACTIONS(5333), - [anon_sym___thread] = ACTIONS(5333), - [anon_sym_const] = ACTIONS(5333), - [anon_sym_constexpr] = ACTIONS(5333), - [anon_sym_volatile] = ACTIONS(5333), - [anon_sym_restrict] = ACTIONS(5333), - [anon_sym___restrict__] = ACTIONS(5333), - [anon_sym__Atomic] = ACTIONS(5333), - [anon_sym__Noreturn] = ACTIONS(5333), - [anon_sym_noreturn] = ACTIONS(5333), - [anon_sym_mutable] = ACTIONS(5333), - [anon_sym_constinit] = ACTIONS(5333), - [anon_sym_consteval] = ACTIONS(5333), - [sym_primitive_type] = ACTIONS(5333), - [anon_sym_enum] = ACTIONS(5333), - [anon_sym_class] = ACTIONS(5333), - [anon_sym_struct] = ACTIONS(5333), - [anon_sym_union] = ACTIONS(5333), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5333), - [anon_sym_decltype] = ACTIONS(5333), - [anon_sym_virtual] = ACTIONS(5333), - [anon_sym_alignas] = ACTIONS(5333), - [anon_sym_explicit] = ACTIONS(5333), - [anon_sym_typename] = ACTIONS(5333), - [anon_sym_template] = ACTIONS(5333), - [anon_sym_operator] = ACTIONS(5333), - [anon_sym_friend] = ACTIONS(5333), - [anon_sym_public] = ACTIONS(5333), - [anon_sym_private] = ACTIONS(5333), - [anon_sym_protected] = ACTIONS(5333), - [anon_sym_using] = ACTIONS(5333), - [anon_sym_static_assert] = ACTIONS(5333), - }, - [2558] = { - [sym_identifier] = ACTIONS(5337), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5339), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_RPAREN] = ACTIONS(5339), - [anon_sym_LPAREN2] = ACTIONS(5339), - [anon_sym_DASH] = ACTIONS(5337), - [anon_sym_PLUS] = ACTIONS(5337), - [anon_sym_STAR] = ACTIONS(5339), - [anon_sym_SLASH] = ACTIONS(5337), - [anon_sym_PERCENT] = ACTIONS(5339), - [anon_sym_PIPE_PIPE] = ACTIONS(5339), - [anon_sym_AMP_AMP] = ACTIONS(5339), - [anon_sym_PIPE] = ACTIONS(5337), - [anon_sym_CARET] = ACTIONS(5339), - [anon_sym_AMP] = ACTIONS(5337), - [anon_sym_EQ_EQ] = ACTIONS(5339), - [anon_sym_BANG_EQ] = ACTIONS(5339), - [anon_sym_GT] = ACTIONS(5337), - [anon_sym_GT_EQ] = ACTIONS(5339), - [anon_sym_LT_EQ] = ACTIONS(5337), - [anon_sym_LT] = ACTIONS(5337), - [anon_sym_LT_LT] = ACTIONS(5339), - [anon_sym_GT_GT] = ACTIONS(5339), - [anon_sym_SEMI] = ACTIONS(5339), - [anon_sym___extension__] = ACTIONS(5337), - [anon_sym___attribute__] = ACTIONS(5337), - [anon_sym___based] = ACTIONS(5337), - [anon_sym_LBRACE] = ACTIONS(5339), - [anon_sym_RBRACE] = ACTIONS(5339), - [anon_sym_signed] = ACTIONS(5337), - [anon_sym_unsigned] = ACTIONS(5337), - [anon_sym_long] = ACTIONS(5337), - [anon_sym_short] = ACTIONS(5337), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_RBRACK] = ACTIONS(5339), - [anon_sym_const] = ACTIONS(5337), - [anon_sym_constexpr] = ACTIONS(5337), - [anon_sym_volatile] = ACTIONS(5337), - [anon_sym_restrict] = ACTIONS(5337), - [anon_sym___restrict__] = ACTIONS(5337), - [anon_sym__Atomic] = ACTIONS(5337), - [anon_sym__Noreturn] = ACTIONS(5337), - [anon_sym_noreturn] = ACTIONS(5337), - [anon_sym_mutable] = ACTIONS(5337), - [anon_sym_constinit] = ACTIONS(5337), - [anon_sym_consteval] = ACTIONS(5337), - [sym_primitive_type] = ACTIONS(5337), - [anon_sym_COLON] = ACTIONS(5339), - [anon_sym_QMARK] = ACTIONS(5339), - [anon_sym_LT_EQ_GT] = ACTIONS(5339), - [anon_sym_or] = ACTIONS(5337), - [anon_sym_and] = ACTIONS(5337), - [anon_sym_bitor] = ACTIONS(5337), - [anon_sym_xor] = ACTIONS(5337), - [anon_sym_bitand] = ACTIONS(5337), - [anon_sym_not_eq] = ACTIONS(5337), - [anon_sym_DASH_DASH] = ACTIONS(5339), - [anon_sym_PLUS_PLUS] = ACTIONS(5339), - [anon_sym_DOT] = ACTIONS(5337), - [anon_sym_DOT_STAR] = ACTIONS(5339), - [anon_sym_DASH_GT] = ACTIONS(5339), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5337), - [anon_sym_decltype] = ACTIONS(5337), - [anon_sym_final] = ACTIONS(5337), - [anon_sym_override] = ACTIONS(5337), - [anon_sym_requires] = ACTIONS(5337), - }, - [2559] = { - [sym_identifier] = ACTIONS(5341), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5343), - [anon_sym_COMMA] = ACTIONS(5343), - [anon_sym_RPAREN] = ACTIONS(5343), - [anon_sym_LPAREN2] = ACTIONS(5343), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_STAR] = ACTIONS(5343), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_PERCENT] = ACTIONS(5343), - [anon_sym_PIPE_PIPE] = ACTIONS(5343), - [anon_sym_AMP_AMP] = ACTIONS(5343), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_CARET] = ACTIONS(5343), - [anon_sym_AMP] = ACTIONS(5341), - [anon_sym_EQ_EQ] = ACTIONS(5343), - [anon_sym_BANG_EQ] = ACTIONS(5343), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_GT_EQ] = ACTIONS(5343), - [anon_sym_LT_EQ] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_LT_LT] = ACTIONS(5343), - [anon_sym_GT_GT] = ACTIONS(5343), - [anon_sym_SEMI] = ACTIONS(5343), - [anon_sym___extension__] = ACTIONS(5341), - [anon_sym___attribute__] = ACTIONS(5341), - [anon_sym___based] = ACTIONS(5341), - [anon_sym_LBRACE] = ACTIONS(5343), - [anon_sym_RBRACE] = ACTIONS(5343), - [anon_sym_signed] = ACTIONS(5341), - [anon_sym_unsigned] = ACTIONS(5341), - [anon_sym_long] = ACTIONS(5341), - [anon_sym_short] = ACTIONS(5341), - [anon_sym_LBRACK] = ACTIONS(5343), - [anon_sym_RBRACK] = ACTIONS(5343), - [anon_sym_const] = ACTIONS(5341), - [anon_sym_constexpr] = ACTIONS(5341), - [anon_sym_volatile] = ACTIONS(5341), - [anon_sym_restrict] = ACTIONS(5341), - [anon_sym___restrict__] = ACTIONS(5341), - [anon_sym__Atomic] = ACTIONS(5341), - [anon_sym__Noreturn] = ACTIONS(5341), - [anon_sym_noreturn] = ACTIONS(5341), - [anon_sym_mutable] = ACTIONS(5341), - [anon_sym_constinit] = ACTIONS(5341), - [anon_sym_consteval] = ACTIONS(5341), - [sym_primitive_type] = ACTIONS(5341), - [anon_sym_COLON] = ACTIONS(5343), - [anon_sym_QMARK] = ACTIONS(5343), - [anon_sym_LT_EQ_GT] = ACTIONS(5343), - [anon_sym_or] = ACTIONS(5341), - [anon_sym_and] = ACTIONS(5341), - [anon_sym_bitor] = ACTIONS(5341), - [anon_sym_xor] = ACTIONS(5341), - [anon_sym_bitand] = ACTIONS(5341), - [anon_sym_not_eq] = ACTIONS(5341), - [anon_sym_DASH_DASH] = ACTIONS(5343), - [anon_sym_PLUS_PLUS] = ACTIONS(5343), - [anon_sym_DOT] = ACTIONS(5341), - [anon_sym_DOT_STAR] = ACTIONS(5343), - [anon_sym_DASH_GT] = ACTIONS(5343), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5341), - [anon_sym_decltype] = ACTIONS(5341), - [anon_sym_final] = ACTIONS(5341), - [anon_sym_override] = ACTIONS(5341), - [anon_sym_requires] = ACTIONS(5341), - }, - [2560] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5845), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2561] = { - [sym_identifier] = ACTIONS(5345), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5347), - [anon_sym_COMMA] = ACTIONS(5347), - [anon_sym_RPAREN] = ACTIONS(5347), - [anon_sym_LPAREN2] = ACTIONS(5347), - [anon_sym_DASH] = ACTIONS(5345), - [anon_sym_PLUS] = ACTIONS(5345), - [anon_sym_STAR] = ACTIONS(5347), - [anon_sym_SLASH] = ACTIONS(5345), - [anon_sym_PERCENT] = ACTIONS(5347), - [anon_sym_PIPE_PIPE] = ACTIONS(5347), - [anon_sym_AMP_AMP] = ACTIONS(5347), - [anon_sym_PIPE] = ACTIONS(5345), - [anon_sym_CARET] = ACTIONS(5347), - [anon_sym_AMP] = ACTIONS(5345), - [anon_sym_EQ_EQ] = ACTIONS(5347), - [anon_sym_BANG_EQ] = ACTIONS(5347), - [anon_sym_GT] = ACTIONS(5345), - [anon_sym_GT_EQ] = ACTIONS(5347), - [anon_sym_LT_EQ] = ACTIONS(5345), - [anon_sym_LT] = ACTIONS(5345), - [anon_sym_LT_LT] = ACTIONS(5347), - [anon_sym_GT_GT] = ACTIONS(5347), - [anon_sym_SEMI] = ACTIONS(5347), - [anon_sym___extension__] = ACTIONS(5345), - [anon_sym___attribute__] = ACTIONS(5345), - [anon_sym___based] = ACTIONS(5345), - [anon_sym_LBRACE] = ACTIONS(5347), - [anon_sym_RBRACE] = ACTIONS(5347), - [anon_sym_signed] = ACTIONS(5345), - [anon_sym_unsigned] = ACTIONS(5345), - [anon_sym_long] = ACTIONS(5345), - [anon_sym_short] = ACTIONS(5345), - [anon_sym_LBRACK] = ACTIONS(5347), - [anon_sym_RBRACK] = ACTIONS(5347), - [anon_sym_const] = ACTIONS(5345), - [anon_sym_constexpr] = ACTIONS(5345), - [anon_sym_volatile] = ACTIONS(5345), - [anon_sym_restrict] = ACTIONS(5345), - [anon_sym___restrict__] = ACTIONS(5345), - [anon_sym__Atomic] = ACTIONS(5345), - [anon_sym__Noreturn] = ACTIONS(5345), - [anon_sym_noreturn] = ACTIONS(5345), - [anon_sym_mutable] = ACTIONS(5345), - [anon_sym_constinit] = ACTIONS(5345), - [anon_sym_consteval] = ACTIONS(5345), - [sym_primitive_type] = ACTIONS(5345), - [anon_sym_COLON] = ACTIONS(5347), - [anon_sym_QMARK] = ACTIONS(5347), - [anon_sym_LT_EQ_GT] = ACTIONS(5347), - [anon_sym_or] = ACTIONS(5345), - [anon_sym_and] = ACTIONS(5345), - [anon_sym_bitor] = ACTIONS(5345), - [anon_sym_xor] = ACTIONS(5345), - [anon_sym_bitand] = ACTIONS(5345), - [anon_sym_not_eq] = ACTIONS(5345), - [anon_sym_DASH_DASH] = ACTIONS(5347), - [anon_sym_PLUS_PLUS] = ACTIONS(5347), - [anon_sym_DOT] = ACTIONS(5345), - [anon_sym_DOT_STAR] = ACTIONS(5347), - [anon_sym_DASH_GT] = ACTIONS(5347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5345), - [anon_sym_decltype] = ACTIONS(5345), - [anon_sym_final] = ACTIONS(5345), - [anon_sym_override] = ACTIONS(5345), - [anon_sym_requires] = ACTIONS(5345), - }, - [2562] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(4762), - [sym_raw_string_literal] = STATE(3456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_COLON] = ACTIONS(4342), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4312), - [anon_sym_or_eq] = ACTIONS(4312), - [anon_sym_xor_eq] = ACTIONS(4312), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [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), - }, - [2563] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5827), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2564] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2566), - [sym_identifier] = ACTIONS(5349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5351), - [anon_sym_RPAREN] = ACTIONS(5351), - [anon_sym_LPAREN2] = ACTIONS(5351), - [anon_sym_DASH] = ACTIONS(5353), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5351), - [anon_sym_SLASH] = ACTIONS(5353), - [anon_sym_PERCENT] = ACTIONS(5351), - [anon_sym_PIPE_PIPE] = ACTIONS(5351), - [anon_sym_AMP_AMP] = ACTIONS(5351), - [anon_sym_PIPE] = ACTIONS(5353), - [anon_sym_CARET] = ACTIONS(5351), - [anon_sym_AMP] = ACTIONS(5353), - [anon_sym_EQ_EQ] = ACTIONS(5351), - [anon_sym_BANG_EQ] = ACTIONS(5351), - [anon_sym_GT] = ACTIONS(5353), - [anon_sym_GT_EQ] = ACTIONS(5351), - [anon_sym_LT_EQ] = ACTIONS(5353), - [anon_sym_LT] = ACTIONS(5353), - [anon_sym_LT_LT] = ACTIONS(5351), - [anon_sym_GT_GT] = ACTIONS(5351), - [anon_sym_SEMI] = ACTIONS(5351), - [anon_sym___extension__] = ACTIONS(5353), - [anon_sym___attribute__] = ACTIONS(5353), - [anon_sym_LBRACE] = ACTIONS(5351), - [anon_sym_RBRACE] = ACTIONS(5351), - [anon_sym_signed] = ACTIONS(5355), - [anon_sym_unsigned] = ACTIONS(5355), - [anon_sym_long] = ACTIONS(5355), - [anon_sym_short] = ACTIONS(5355), - [anon_sym_LBRACK] = ACTIONS(5351), - [anon_sym_RBRACK] = ACTIONS(5351), - [anon_sym_const] = ACTIONS(5353), - [anon_sym_constexpr] = ACTIONS(5353), - [anon_sym_volatile] = ACTIONS(5353), - [anon_sym_restrict] = ACTIONS(5353), - [anon_sym___restrict__] = ACTIONS(5353), - [anon_sym__Atomic] = ACTIONS(5353), - [anon_sym__Noreturn] = ACTIONS(5353), - [anon_sym_noreturn] = ACTIONS(5353), - [anon_sym_mutable] = ACTIONS(5353), - [anon_sym_constinit] = ACTIONS(5353), - [anon_sym_consteval] = ACTIONS(5353), - [sym_primitive_type] = ACTIONS(5357), - [anon_sym_COLON] = ACTIONS(5351), - [anon_sym_QMARK] = ACTIONS(5351), - [anon_sym_LT_EQ_GT] = ACTIONS(5351), - [anon_sym_or] = ACTIONS(5353), - [anon_sym_and] = ACTIONS(5353), - [anon_sym_bitor] = ACTIONS(5353), - [anon_sym_xor] = ACTIONS(5353), - [anon_sym_bitand] = ACTIONS(5353), - [anon_sym_not_eq] = ACTIONS(5353), - [anon_sym_DASH_DASH] = ACTIONS(5351), - [anon_sym_PLUS_PLUS] = ACTIONS(5351), - [anon_sym_DOT] = ACTIONS(5353), - [anon_sym_DOT_STAR] = ACTIONS(5351), - [anon_sym_DASH_GT] = ACTIONS(5351), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5353), - [anon_sym_decltype] = ACTIONS(5353), - [anon_sym_final] = ACTIONS(5353), - [anon_sym_override] = ACTIONS(5353), - [anon_sym_requires] = ACTIONS(5353), - }, - [2565] = { - [sym_catch_clause] = STATE(2565), - [aux_sym_constructor_try_statement_repeat1] = STATE(2565), - [sym_identifier] = ACTIONS(2230), - [aux_sym_preproc_def_token1] = ACTIONS(2230), - [aux_sym_preproc_if_token1] = ACTIONS(2230), - [aux_sym_preproc_if_token2] = ACTIONS(2230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2230), - [sym_preproc_directive] = ACTIONS(2230), - [anon_sym_LPAREN2] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_AMP_AMP] = ACTIONS(2232), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym___extension__] = ACTIONS(2230), - [anon_sym_typedef] = ACTIONS(2230), - [anon_sym_extern] = ACTIONS(2230), - [anon_sym___attribute__] = ACTIONS(2230), - [anon_sym_COLON_COLON] = ACTIONS(2232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2232), - [anon_sym___declspec] = ACTIONS(2230), - [anon_sym___based] = ACTIONS(2230), - [anon_sym_signed] = ACTIONS(2230), - [anon_sym_unsigned] = ACTIONS(2230), - [anon_sym_long] = ACTIONS(2230), - [anon_sym_short] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_register] = ACTIONS(2230), - [anon_sym_inline] = ACTIONS(2230), - [anon_sym___inline] = ACTIONS(2230), - [anon_sym___inline__] = ACTIONS(2230), - [anon_sym___forceinline] = ACTIONS(2230), - [anon_sym_thread_local] = ACTIONS(2230), - [anon_sym___thread] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_constexpr] = ACTIONS(2230), - [anon_sym_volatile] = ACTIONS(2230), - [anon_sym_restrict] = ACTIONS(2230), - [anon_sym___restrict__] = ACTIONS(2230), - [anon_sym__Atomic] = ACTIONS(2230), - [anon_sym__Noreturn] = ACTIONS(2230), - [anon_sym_noreturn] = ACTIONS(2230), - [anon_sym_mutable] = ACTIONS(2230), - [anon_sym_constinit] = ACTIONS(2230), - [anon_sym_consteval] = ACTIONS(2230), - [sym_primitive_type] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [anon_sym_class] = ACTIONS(2230), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_union] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2230), - [anon_sym_decltype] = ACTIONS(2230), - [anon_sym_virtual] = ACTIONS(2230), - [anon_sym_alignas] = ACTIONS(2230), - [anon_sym_explicit] = ACTIONS(2230), - [anon_sym_typename] = ACTIONS(2230), - [anon_sym_template] = ACTIONS(2230), - [anon_sym_operator] = ACTIONS(2230), - [anon_sym_friend] = ACTIONS(2230), - [anon_sym_public] = ACTIONS(2230), - [anon_sym_private] = ACTIONS(2230), - [anon_sym_protected] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2230), - [anon_sym_static_assert] = ACTIONS(2230), - [anon_sym_catch] = ACTIONS(5359), - }, - [2566] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2566), - [sym_identifier] = ACTIONS(5362), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5364), - [anon_sym_COMMA] = ACTIONS(5364), - [anon_sym_RPAREN] = ACTIONS(5364), - [anon_sym_LPAREN2] = ACTIONS(5364), - [anon_sym_DASH] = ACTIONS(5362), - [anon_sym_PLUS] = ACTIONS(5362), - [anon_sym_STAR] = ACTIONS(5364), - [anon_sym_SLASH] = ACTIONS(5362), - [anon_sym_PERCENT] = ACTIONS(5364), - [anon_sym_PIPE_PIPE] = ACTIONS(5364), - [anon_sym_AMP_AMP] = ACTIONS(5364), - [anon_sym_PIPE] = ACTIONS(5362), - [anon_sym_CARET] = ACTIONS(5364), - [anon_sym_AMP] = ACTIONS(5362), - [anon_sym_EQ_EQ] = ACTIONS(5364), - [anon_sym_BANG_EQ] = ACTIONS(5364), - [anon_sym_GT] = ACTIONS(5362), - [anon_sym_GT_EQ] = ACTIONS(5364), - [anon_sym_LT_EQ] = ACTIONS(5362), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_LT_LT] = ACTIONS(5364), - [anon_sym_GT_GT] = ACTIONS(5364), - [anon_sym_SEMI] = ACTIONS(5364), - [anon_sym___extension__] = ACTIONS(5362), - [anon_sym___attribute__] = ACTIONS(5362), - [anon_sym_LBRACE] = ACTIONS(5364), - [anon_sym_RBRACE] = ACTIONS(5364), - [anon_sym_signed] = ACTIONS(5366), - [anon_sym_unsigned] = ACTIONS(5366), - [anon_sym_long] = ACTIONS(5366), - [anon_sym_short] = ACTIONS(5366), - [anon_sym_LBRACK] = ACTIONS(5364), - [anon_sym_RBRACK] = ACTIONS(5364), - [anon_sym_const] = ACTIONS(5362), - [anon_sym_constexpr] = ACTIONS(5362), - [anon_sym_volatile] = ACTIONS(5362), - [anon_sym_restrict] = ACTIONS(5362), - [anon_sym___restrict__] = ACTIONS(5362), - [anon_sym__Atomic] = ACTIONS(5362), - [anon_sym__Noreturn] = ACTIONS(5362), - [anon_sym_noreturn] = ACTIONS(5362), - [anon_sym_mutable] = ACTIONS(5362), - [anon_sym_constinit] = ACTIONS(5362), - [anon_sym_consteval] = ACTIONS(5362), - [sym_primitive_type] = ACTIONS(5362), - [anon_sym_COLON] = ACTIONS(5364), - [anon_sym_QMARK] = ACTIONS(5364), - [anon_sym_LT_EQ_GT] = ACTIONS(5364), - [anon_sym_or] = ACTIONS(5362), - [anon_sym_and] = ACTIONS(5362), - [anon_sym_bitor] = ACTIONS(5362), - [anon_sym_xor] = ACTIONS(5362), - [anon_sym_bitand] = ACTIONS(5362), - [anon_sym_not_eq] = ACTIONS(5362), - [anon_sym_DASH_DASH] = ACTIONS(5364), - [anon_sym_PLUS_PLUS] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(5362), - [anon_sym_DOT_STAR] = ACTIONS(5364), - [anon_sym_DASH_GT] = ACTIONS(5364), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5362), - [anon_sym_decltype] = ACTIONS(5362), - [anon_sym_final] = ACTIONS(5362), - [anon_sym_override] = ACTIONS(5362), - [anon_sym_requires] = ACTIONS(5362), - }, - [2567] = { - [sym_identifier] = ACTIONS(5321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5323), - [anon_sym_COMMA] = ACTIONS(5323), - [anon_sym_RPAREN] = ACTIONS(5323), - [anon_sym_LPAREN2] = ACTIONS(5323), - [anon_sym_DASH] = ACTIONS(5321), - [anon_sym_PLUS] = ACTIONS(5321), - [anon_sym_STAR] = ACTIONS(5323), - [anon_sym_SLASH] = ACTIONS(5321), - [anon_sym_PERCENT] = ACTIONS(5323), - [anon_sym_PIPE_PIPE] = ACTIONS(5323), - [anon_sym_AMP_AMP] = ACTIONS(5323), - [anon_sym_PIPE] = ACTIONS(5321), - [anon_sym_CARET] = ACTIONS(5323), - [anon_sym_AMP] = ACTIONS(5321), - [anon_sym_EQ_EQ] = ACTIONS(5323), - [anon_sym_BANG_EQ] = ACTIONS(5323), - [anon_sym_GT] = ACTIONS(5321), - [anon_sym_GT_EQ] = ACTIONS(5323), - [anon_sym_LT_EQ] = ACTIONS(5321), - [anon_sym_LT] = ACTIONS(5321), - [anon_sym_LT_LT] = ACTIONS(5323), - [anon_sym_GT_GT] = ACTIONS(5323), - [anon_sym_SEMI] = ACTIONS(5323), - [anon_sym___extension__] = ACTIONS(5321), - [anon_sym___attribute__] = ACTIONS(5321), - [anon_sym___based] = ACTIONS(5321), - [anon_sym_LBRACE] = ACTIONS(5323), - [anon_sym_RBRACE] = ACTIONS(5323), - [anon_sym_signed] = ACTIONS(5321), - [anon_sym_unsigned] = ACTIONS(5321), - [anon_sym_long] = ACTIONS(5321), - [anon_sym_short] = ACTIONS(5321), - [anon_sym_LBRACK] = ACTIONS(5323), - [anon_sym_RBRACK] = ACTIONS(5323), - [anon_sym_const] = ACTIONS(5321), - [anon_sym_constexpr] = ACTIONS(5321), - [anon_sym_volatile] = ACTIONS(5321), - [anon_sym_restrict] = ACTIONS(5321), - [anon_sym___restrict__] = ACTIONS(5321), - [anon_sym__Atomic] = ACTIONS(5321), - [anon_sym__Noreturn] = ACTIONS(5321), - [anon_sym_noreturn] = ACTIONS(5321), - [anon_sym_mutable] = ACTIONS(5321), - [anon_sym_constinit] = ACTIONS(5321), - [anon_sym_consteval] = ACTIONS(5321), - [sym_primitive_type] = ACTIONS(5321), - [anon_sym_COLON] = ACTIONS(5323), - [anon_sym_QMARK] = ACTIONS(5323), - [anon_sym_LT_EQ_GT] = ACTIONS(5323), - [anon_sym_or] = ACTIONS(5321), - [anon_sym_and] = ACTIONS(5321), - [anon_sym_bitor] = ACTIONS(5321), - [anon_sym_xor] = ACTIONS(5321), - [anon_sym_bitand] = ACTIONS(5321), - [anon_sym_not_eq] = ACTIONS(5321), - [anon_sym_DASH_DASH] = ACTIONS(5323), - [anon_sym_PLUS_PLUS] = ACTIONS(5323), - [anon_sym_DOT] = ACTIONS(5321), - [anon_sym_DOT_STAR] = ACTIONS(5323), - [anon_sym_DASH_GT] = ACTIONS(5323), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5321), - [anon_sym_decltype] = ACTIONS(5321), - [anon_sym_final] = ACTIONS(5321), - [anon_sym_override] = ACTIONS(5321), - [anon_sym_requires] = ACTIONS(5321), - }, - [2568] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5838), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2569] = { - [sym_identifier] = ACTIONS(5369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5371), - [anon_sym_COMMA] = ACTIONS(5371), - [anon_sym_RPAREN] = ACTIONS(5371), - [anon_sym_LPAREN2] = ACTIONS(5371), - [anon_sym_DASH] = ACTIONS(5369), - [anon_sym_PLUS] = ACTIONS(5369), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_SLASH] = ACTIONS(5369), - [anon_sym_PERCENT] = ACTIONS(5371), - [anon_sym_PIPE_PIPE] = ACTIONS(5371), - [anon_sym_AMP_AMP] = ACTIONS(5371), - [anon_sym_PIPE] = ACTIONS(5369), - [anon_sym_CARET] = ACTIONS(5371), - [anon_sym_AMP] = ACTIONS(5369), - [anon_sym_EQ_EQ] = ACTIONS(5371), - [anon_sym_BANG_EQ] = ACTIONS(5371), - [anon_sym_GT] = ACTIONS(5369), - [anon_sym_GT_EQ] = ACTIONS(5371), - [anon_sym_LT_EQ] = ACTIONS(5369), - [anon_sym_LT] = ACTIONS(5369), - [anon_sym_LT_LT] = ACTIONS(5371), - [anon_sym_GT_GT] = ACTIONS(5371), - [anon_sym_SEMI] = ACTIONS(5371), - [anon_sym___extension__] = ACTIONS(5369), - [anon_sym___attribute__] = ACTIONS(5369), - [anon_sym___based] = ACTIONS(5369), - [anon_sym_LBRACE] = ACTIONS(5371), - [anon_sym_RBRACE] = ACTIONS(5371), - [anon_sym_signed] = ACTIONS(5369), - [anon_sym_unsigned] = ACTIONS(5369), - [anon_sym_long] = ACTIONS(5369), - [anon_sym_short] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_RBRACK] = ACTIONS(5371), - [anon_sym_const] = ACTIONS(5369), - [anon_sym_constexpr] = ACTIONS(5369), - [anon_sym_volatile] = ACTIONS(5369), - [anon_sym_restrict] = ACTIONS(5369), - [anon_sym___restrict__] = ACTIONS(5369), - [anon_sym__Atomic] = ACTIONS(5369), - [anon_sym__Noreturn] = ACTIONS(5369), - [anon_sym_noreturn] = ACTIONS(5369), - [anon_sym_mutable] = ACTIONS(5369), - [anon_sym_constinit] = ACTIONS(5369), - [anon_sym_consteval] = ACTIONS(5369), - [sym_primitive_type] = ACTIONS(5369), - [anon_sym_COLON] = ACTIONS(5371), - [anon_sym_QMARK] = ACTIONS(5371), - [anon_sym_LT_EQ_GT] = ACTIONS(5371), - [anon_sym_or] = ACTIONS(5369), - [anon_sym_and] = ACTIONS(5369), - [anon_sym_bitor] = ACTIONS(5369), - [anon_sym_xor] = ACTIONS(5369), - [anon_sym_bitand] = ACTIONS(5369), - [anon_sym_not_eq] = ACTIONS(5369), - [anon_sym_DASH_DASH] = ACTIONS(5371), - [anon_sym_PLUS_PLUS] = ACTIONS(5371), - [anon_sym_DOT] = ACTIONS(5369), - [anon_sym_DOT_STAR] = ACTIONS(5371), - [anon_sym_DASH_GT] = ACTIONS(5371), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5369), - [anon_sym_decltype] = ACTIONS(5369), - [anon_sym_final] = ACTIONS(5369), - [anon_sym_override] = ACTIONS(5369), - [anon_sym_requires] = ACTIONS(5369), - }, - [2570] = { - [sym_string_literal] = STATE(2866), - [sym_template_argument_list] = STATE(4246), - [sym_raw_string_literal] = STATE(2866), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_RPAREN] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_and_eq] = ACTIONS(4922), - [anon_sym_or_eq] = ACTIONS(4922), - [anon_sym_xor_eq] = ACTIONS(4922), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4286), - [anon_sym_L_DQUOTE] = ACTIONS(4363), - [anon_sym_u_DQUOTE] = ACTIONS(4363), - [anon_sym_U_DQUOTE] = ACTIONS(4363), - [anon_sym_u8_DQUOTE] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(4363), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(4365), - [anon_sym_LR_DQUOTE] = ACTIONS(4365), - [anon_sym_uR_DQUOTE] = ACTIONS(4365), - [anon_sym_UR_DQUOTE] = ACTIONS(4365), - [anon_sym_u8R_DQUOTE] = ACTIONS(4365), - [anon_sym_DASH_GT_STAR] = ACTIONS(4278), - }, - [2571] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(4762), - [sym_raw_string_literal] = STATE(3456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_COLON] = ACTIONS(4310), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4312), - [anon_sym_or_eq] = ACTIONS(4312), - [anon_sym_xor_eq] = ACTIONS(4312), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [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), - }, - [2572] = { - [sym_identifier] = ACTIONS(5373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5375), - [anon_sym_COMMA] = ACTIONS(5375), - [anon_sym_RPAREN] = ACTIONS(5375), - [anon_sym_LPAREN2] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5373), - [anon_sym_PLUS] = ACTIONS(5373), - [anon_sym_STAR] = ACTIONS(5375), - [anon_sym_SLASH] = ACTIONS(5373), - [anon_sym_PERCENT] = ACTIONS(5375), - [anon_sym_PIPE_PIPE] = ACTIONS(5375), - [anon_sym_AMP_AMP] = ACTIONS(5375), - [anon_sym_PIPE] = ACTIONS(5373), - [anon_sym_CARET] = ACTIONS(5375), - [anon_sym_AMP] = ACTIONS(5373), - [anon_sym_EQ_EQ] = ACTIONS(5375), - [anon_sym_BANG_EQ] = ACTIONS(5375), - [anon_sym_GT] = ACTIONS(5373), - [anon_sym_GT_EQ] = ACTIONS(5375), - [anon_sym_LT_EQ] = ACTIONS(5373), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(5375), - [anon_sym_GT_GT] = ACTIONS(5375), - [anon_sym_SEMI] = ACTIONS(5375), - [anon_sym___extension__] = ACTIONS(5373), - [anon_sym___attribute__] = ACTIONS(5373), - [anon_sym___based] = ACTIONS(5373), - [anon_sym_LBRACE] = ACTIONS(5375), - [anon_sym_RBRACE] = ACTIONS(5375), - [anon_sym_signed] = ACTIONS(5373), - [anon_sym_unsigned] = ACTIONS(5373), - [anon_sym_long] = ACTIONS(5373), - [anon_sym_short] = ACTIONS(5373), - [anon_sym_LBRACK] = ACTIONS(5375), - [anon_sym_RBRACK] = ACTIONS(5375), - [anon_sym_const] = ACTIONS(5373), - [anon_sym_constexpr] = ACTIONS(5373), - [anon_sym_volatile] = ACTIONS(5373), - [anon_sym_restrict] = ACTIONS(5373), - [anon_sym___restrict__] = ACTIONS(5373), - [anon_sym__Atomic] = ACTIONS(5373), - [anon_sym__Noreturn] = ACTIONS(5373), - [anon_sym_noreturn] = ACTIONS(5373), - [anon_sym_mutable] = ACTIONS(5373), - [anon_sym_constinit] = ACTIONS(5373), - [anon_sym_consteval] = ACTIONS(5373), - [sym_primitive_type] = ACTIONS(5373), - [anon_sym_COLON] = ACTIONS(5375), - [anon_sym_QMARK] = ACTIONS(5375), - [anon_sym_LT_EQ_GT] = ACTIONS(5375), - [anon_sym_or] = ACTIONS(5373), - [anon_sym_and] = ACTIONS(5373), - [anon_sym_bitor] = ACTIONS(5373), - [anon_sym_xor] = ACTIONS(5373), - [anon_sym_bitand] = ACTIONS(5373), - [anon_sym_not_eq] = ACTIONS(5373), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_PLUS_PLUS] = ACTIONS(5375), - [anon_sym_DOT] = ACTIONS(5373), - [anon_sym_DOT_STAR] = ACTIONS(5375), - [anon_sym_DASH_GT] = ACTIONS(5375), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5373), - [anon_sym_decltype] = ACTIONS(5373), - [anon_sym_final] = ACTIONS(5373), - [anon_sym_override] = ACTIONS(5373), - [anon_sym_requires] = ACTIONS(5373), - }, - [2573] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5808), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2574] = { - [sym_identifier] = ACTIONS(5377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5379), - [anon_sym_COMMA] = ACTIONS(5379), - [anon_sym_RPAREN] = ACTIONS(5379), - [anon_sym_LPAREN2] = ACTIONS(5379), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_PLUS] = ACTIONS(5377), - [anon_sym_STAR] = ACTIONS(5379), - [anon_sym_SLASH] = ACTIONS(5377), - [anon_sym_PERCENT] = ACTIONS(5379), - [anon_sym_PIPE_PIPE] = ACTIONS(5379), - [anon_sym_AMP_AMP] = ACTIONS(5379), - [anon_sym_PIPE] = ACTIONS(5377), - [anon_sym_CARET] = ACTIONS(5379), - [anon_sym_AMP] = ACTIONS(5377), - [anon_sym_EQ_EQ] = ACTIONS(5379), - [anon_sym_BANG_EQ] = ACTIONS(5379), - [anon_sym_GT] = ACTIONS(5377), - [anon_sym_GT_EQ] = ACTIONS(5379), - [anon_sym_LT_EQ] = ACTIONS(5377), - [anon_sym_LT] = ACTIONS(5377), - [anon_sym_LT_LT] = ACTIONS(5379), - [anon_sym_GT_GT] = ACTIONS(5379), - [anon_sym_SEMI] = ACTIONS(5379), - [anon_sym___extension__] = ACTIONS(5377), - [anon_sym___attribute__] = ACTIONS(5377), - [anon_sym___based] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5379), - [anon_sym_signed] = ACTIONS(5377), - [anon_sym_unsigned] = ACTIONS(5377), - [anon_sym_long] = ACTIONS(5377), - [anon_sym_short] = ACTIONS(5377), - [anon_sym_LBRACK] = ACTIONS(5379), - [anon_sym_RBRACK] = ACTIONS(5379), - [anon_sym_const] = ACTIONS(5377), - [anon_sym_constexpr] = ACTIONS(5377), - [anon_sym_volatile] = ACTIONS(5377), - [anon_sym_restrict] = ACTIONS(5377), - [anon_sym___restrict__] = ACTIONS(5377), - [anon_sym__Atomic] = ACTIONS(5377), - [anon_sym__Noreturn] = ACTIONS(5377), - [anon_sym_noreturn] = ACTIONS(5377), - [anon_sym_mutable] = ACTIONS(5377), - [anon_sym_constinit] = ACTIONS(5377), - [anon_sym_consteval] = ACTIONS(5377), - [sym_primitive_type] = ACTIONS(5377), - [anon_sym_COLON] = ACTIONS(5379), - [anon_sym_QMARK] = ACTIONS(5379), - [anon_sym_LT_EQ_GT] = ACTIONS(5379), - [anon_sym_or] = ACTIONS(5377), - [anon_sym_and] = ACTIONS(5377), - [anon_sym_bitor] = ACTIONS(5377), - [anon_sym_xor] = ACTIONS(5377), - [anon_sym_bitand] = ACTIONS(5377), - [anon_sym_not_eq] = ACTIONS(5377), - [anon_sym_DASH_DASH] = ACTIONS(5379), - [anon_sym_PLUS_PLUS] = ACTIONS(5379), - [anon_sym_DOT] = ACTIONS(5377), - [anon_sym_DOT_STAR] = ACTIONS(5379), - [anon_sym_DASH_GT] = ACTIONS(5379), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5377), - [anon_sym_decltype] = ACTIONS(5377), - [anon_sym_final] = ACTIONS(5377), - [anon_sym_override] = ACTIONS(5377), - [anon_sym_requires] = ACTIONS(5377), - }, - [2575] = { - [sym_catch_clause] = STATE(2575), - [aux_sym_constructor_try_statement_repeat1] = STATE(2575), - [sym_identifier] = ACTIONS(2230), - [aux_sym_preproc_def_token1] = ACTIONS(2230), - [aux_sym_preproc_if_token1] = ACTIONS(2230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2230), - [sym_preproc_directive] = ACTIONS(2230), - [anon_sym_LPAREN2] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_AMP_AMP] = ACTIONS(2232), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym___extension__] = ACTIONS(2230), - [anon_sym_typedef] = ACTIONS(2230), - [anon_sym_extern] = ACTIONS(2230), - [anon_sym___attribute__] = ACTIONS(2230), - [anon_sym_COLON_COLON] = ACTIONS(2232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2232), - [anon_sym___declspec] = ACTIONS(2230), - [anon_sym___based] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2232), - [anon_sym_signed] = ACTIONS(2230), - [anon_sym_unsigned] = ACTIONS(2230), - [anon_sym_long] = ACTIONS(2230), - [anon_sym_short] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_register] = ACTIONS(2230), - [anon_sym_inline] = ACTIONS(2230), - [anon_sym___inline] = ACTIONS(2230), - [anon_sym___inline__] = ACTIONS(2230), - [anon_sym___forceinline] = ACTIONS(2230), - [anon_sym_thread_local] = ACTIONS(2230), - [anon_sym___thread] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_constexpr] = ACTIONS(2230), - [anon_sym_volatile] = ACTIONS(2230), - [anon_sym_restrict] = ACTIONS(2230), - [anon_sym___restrict__] = ACTIONS(2230), - [anon_sym__Atomic] = ACTIONS(2230), - [anon_sym__Noreturn] = ACTIONS(2230), - [anon_sym_noreturn] = ACTIONS(2230), - [anon_sym_mutable] = ACTIONS(2230), - [anon_sym_constinit] = ACTIONS(2230), - [anon_sym_consteval] = ACTIONS(2230), - [sym_primitive_type] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [anon_sym_class] = ACTIONS(2230), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_union] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2230), - [anon_sym_decltype] = ACTIONS(2230), - [anon_sym_virtual] = ACTIONS(2230), - [anon_sym_alignas] = ACTIONS(2230), - [anon_sym_explicit] = ACTIONS(2230), - [anon_sym_typename] = ACTIONS(2230), - [anon_sym_template] = ACTIONS(2230), - [anon_sym_operator] = ACTIONS(2230), - [anon_sym_friend] = ACTIONS(2230), - [anon_sym_public] = ACTIONS(2230), - [anon_sym_private] = ACTIONS(2230), - [anon_sym_protected] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2230), - [anon_sym_static_assert] = ACTIONS(2230), - [anon_sym_catch] = ACTIONS(5381), - }, - [2576] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5805), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2577] = { - [sym_identifier] = ACTIONS(5384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5386), - [anon_sym_COMMA] = ACTIONS(5386), - [anon_sym_RPAREN] = ACTIONS(5386), - [anon_sym_LPAREN2] = ACTIONS(5386), - [anon_sym_DASH] = ACTIONS(5384), - [anon_sym_PLUS] = ACTIONS(5384), - [anon_sym_STAR] = ACTIONS(5386), - [anon_sym_SLASH] = ACTIONS(5384), - [anon_sym_PERCENT] = ACTIONS(5386), - [anon_sym_PIPE_PIPE] = ACTIONS(5386), - [anon_sym_AMP_AMP] = ACTIONS(5386), - [anon_sym_PIPE] = ACTIONS(5384), - [anon_sym_CARET] = ACTIONS(5386), - [anon_sym_AMP] = ACTIONS(5384), - [anon_sym_EQ_EQ] = ACTIONS(5386), - [anon_sym_BANG_EQ] = ACTIONS(5386), - [anon_sym_GT] = ACTIONS(5384), - [anon_sym_GT_EQ] = ACTIONS(5386), - [anon_sym_LT_EQ] = ACTIONS(5384), - [anon_sym_LT] = ACTIONS(5384), - [anon_sym_LT_LT] = ACTIONS(5386), - [anon_sym_GT_GT] = ACTIONS(5386), - [anon_sym_SEMI] = ACTIONS(5386), - [anon_sym___extension__] = ACTIONS(5384), - [anon_sym___attribute__] = ACTIONS(5384), - [anon_sym___based] = ACTIONS(5384), - [anon_sym_LBRACE] = ACTIONS(5386), - [anon_sym_RBRACE] = ACTIONS(5386), - [anon_sym_signed] = ACTIONS(5384), - [anon_sym_unsigned] = ACTIONS(5384), - [anon_sym_long] = ACTIONS(5384), - [anon_sym_short] = ACTIONS(5384), - [anon_sym_LBRACK] = ACTIONS(5386), - [anon_sym_RBRACK] = ACTIONS(5386), - [anon_sym_const] = ACTIONS(5384), - [anon_sym_constexpr] = ACTIONS(5384), - [anon_sym_volatile] = ACTIONS(5384), - [anon_sym_restrict] = ACTIONS(5384), - [anon_sym___restrict__] = ACTIONS(5384), - [anon_sym__Atomic] = ACTIONS(5384), - [anon_sym__Noreturn] = ACTIONS(5384), - [anon_sym_noreturn] = ACTIONS(5384), - [anon_sym_mutable] = ACTIONS(5384), - [anon_sym_constinit] = ACTIONS(5384), - [anon_sym_consteval] = ACTIONS(5384), - [sym_primitive_type] = ACTIONS(5384), - [anon_sym_COLON] = ACTIONS(5386), - [anon_sym_QMARK] = ACTIONS(5386), - [anon_sym_LT_EQ_GT] = ACTIONS(5386), - [anon_sym_or] = ACTIONS(5384), - [anon_sym_and] = ACTIONS(5384), - [anon_sym_bitor] = ACTIONS(5384), - [anon_sym_xor] = ACTIONS(5384), - [anon_sym_bitand] = ACTIONS(5384), - [anon_sym_not_eq] = ACTIONS(5384), - [anon_sym_DASH_DASH] = ACTIONS(5386), - [anon_sym_PLUS_PLUS] = ACTIONS(5386), - [anon_sym_DOT] = ACTIONS(5384), - [anon_sym_DOT_STAR] = ACTIONS(5386), - [anon_sym_DASH_GT] = ACTIONS(5386), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5384), - [anon_sym_decltype] = ACTIONS(5384), - [anon_sym_final] = ACTIONS(5384), - [anon_sym_override] = ACTIONS(5384), - [anon_sym_requires] = ACTIONS(5384), - }, - [2578] = { - [sym_identifier] = ACTIONS(5388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5390), - [anon_sym_COMMA] = ACTIONS(5390), - [anon_sym_RPAREN] = ACTIONS(5390), - [anon_sym_LPAREN2] = ACTIONS(5390), - [anon_sym_DASH] = ACTIONS(5388), - [anon_sym_PLUS] = ACTIONS(5388), - [anon_sym_STAR] = ACTIONS(5390), - [anon_sym_SLASH] = ACTIONS(5388), - [anon_sym_PERCENT] = ACTIONS(5390), - [anon_sym_PIPE_PIPE] = ACTIONS(5390), - [anon_sym_AMP_AMP] = ACTIONS(5390), - [anon_sym_PIPE] = ACTIONS(5388), - [anon_sym_CARET] = ACTIONS(5390), - [anon_sym_AMP] = ACTIONS(5388), - [anon_sym_EQ_EQ] = ACTIONS(5390), - [anon_sym_BANG_EQ] = ACTIONS(5390), - [anon_sym_GT] = ACTIONS(5388), - [anon_sym_GT_EQ] = ACTIONS(5390), - [anon_sym_LT_EQ] = ACTIONS(5388), - [anon_sym_LT] = ACTIONS(5388), - [anon_sym_LT_LT] = ACTIONS(5390), - [anon_sym_GT_GT] = ACTIONS(5390), - [anon_sym_SEMI] = ACTIONS(5390), - [anon_sym___extension__] = ACTIONS(5388), - [anon_sym___attribute__] = ACTIONS(5388), - [anon_sym___based] = ACTIONS(5388), - [anon_sym_LBRACE] = ACTIONS(5390), - [anon_sym_RBRACE] = ACTIONS(5390), - [anon_sym_signed] = ACTIONS(5388), - [anon_sym_unsigned] = ACTIONS(5388), - [anon_sym_long] = ACTIONS(5388), - [anon_sym_short] = ACTIONS(5388), - [anon_sym_LBRACK] = ACTIONS(5390), - [anon_sym_RBRACK] = ACTIONS(5390), - [anon_sym_const] = ACTIONS(5388), - [anon_sym_constexpr] = ACTIONS(5388), - [anon_sym_volatile] = ACTIONS(5388), - [anon_sym_restrict] = ACTIONS(5388), - [anon_sym___restrict__] = ACTIONS(5388), - [anon_sym__Atomic] = ACTIONS(5388), - [anon_sym__Noreturn] = ACTIONS(5388), - [anon_sym_noreturn] = ACTIONS(5388), - [anon_sym_mutable] = ACTIONS(5388), - [anon_sym_constinit] = ACTIONS(5388), - [anon_sym_consteval] = ACTIONS(5388), - [sym_primitive_type] = ACTIONS(5388), - [anon_sym_COLON] = ACTIONS(5390), - [anon_sym_QMARK] = ACTIONS(5390), - [anon_sym_LT_EQ_GT] = ACTIONS(5390), - [anon_sym_or] = ACTIONS(5388), - [anon_sym_and] = ACTIONS(5388), - [anon_sym_bitor] = ACTIONS(5388), - [anon_sym_xor] = ACTIONS(5388), - [anon_sym_bitand] = ACTIONS(5388), - [anon_sym_not_eq] = ACTIONS(5388), - [anon_sym_DASH_DASH] = ACTIONS(5390), - [anon_sym_PLUS_PLUS] = ACTIONS(5390), - [anon_sym_DOT] = ACTIONS(5388), - [anon_sym_DOT_STAR] = ACTIONS(5390), - [anon_sym_DASH_GT] = ACTIONS(5390), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5388), - [anon_sym_decltype] = ACTIONS(5388), - [anon_sym_final] = ACTIONS(5388), - [anon_sym_override] = ACTIONS(5388), - [anon_sym_requires] = ACTIONS(5388), - }, - [2579] = { - [sym_string_literal] = STATE(2603), - [sym_template_argument_list] = STATE(3732), - [sym_raw_string_literal] = STATE(2603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_RPAREN] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5280), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_and_eq] = ACTIONS(4278), - [anon_sym_or_eq] = ACTIONS(4278), - [anon_sym_xor_eq] = ACTIONS(4278), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4286), - [anon_sym_L_DQUOTE] = ACTIONS(5260), - [anon_sym_u_DQUOTE] = ACTIONS(5260), - [anon_sym_U_DQUOTE] = ACTIONS(5260), - [anon_sym_u8_DQUOTE] = ACTIONS(5260), - [anon_sym_DQUOTE] = ACTIONS(5260), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5262), - [anon_sym_LR_DQUOTE] = ACTIONS(5262), - [anon_sym_uR_DQUOTE] = ACTIONS(5262), - [anon_sym_UR_DQUOTE] = ACTIONS(5262), - [anon_sym_u8R_DQUOTE] = ACTIONS(5262), - [anon_sym_DASH_GT_STAR] = ACTIONS(4278), - }, - [2580] = { - [sym_identifier] = ACTIONS(5392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5394), - [anon_sym_COMMA] = ACTIONS(5394), - [anon_sym_RPAREN] = ACTIONS(5394), - [anon_sym_LPAREN2] = ACTIONS(5394), - [anon_sym_DASH] = ACTIONS(5392), - [anon_sym_PLUS] = ACTIONS(5392), - [anon_sym_STAR] = ACTIONS(5394), - [anon_sym_SLASH] = ACTIONS(5392), - [anon_sym_PERCENT] = ACTIONS(5394), - [anon_sym_PIPE_PIPE] = ACTIONS(5394), - [anon_sym_AMP_AMP] = ACTIONS(5394), - [anon_sym_PIPE] = ACTIONS(5392), - [anon_sym_CARET] = ACTIONS(5394), - [anon_sym_AMP] = ACTIONS(5392), - [anon_sym_EQ_EQ] = ACTIONS(5394), - [anon_sym_BANG_EQ] = ACTIONS(5394), - [anon_sym_GT] = ACTIONS(5392), - [anon_sym_GT_EQ] = ACTIONS(5394), - [anon_sym_LT_EQ] = ACTIONS(5392), - [anon_sym_LT] = ACTIONS(5392), - [anon_sym_LT_LT] = ACTIONS(5394), - [anon_sym_GT_GT] = ACTIONS(5394), - [anon_sym_SEMI] = ACTIONS(5394), - [anon_sym___extension__] = ACTIONS(5392), - [anon_sym___attribute__] = ACTIONS(5392), - [anon_sym___based] = ACTIONS(5392), - [anon_sym_LBRACE] = ACTIONS(5394), - [anon_sym_RBRACE] = ACTIONS(5394), - [anon_sym_signed] = ACTIONS(5392), - [anon_sym_unsigned] = ACTIONS(5392), - [anon_sym_long] = ACTIONS(5392), - [anon_sym_short] = ACTIONS(5392), - [anon_sym_LBRACK] = ACTIONS(5394), - [anon_sym_RBRACK] = ACTIONS(5394), - [anon_sym_const] = ACTIONS(5392), - [anon_sym_constexpr] = ACTIONS(5392), - [anon_sym_volatile] = ACTIONS(5392), - [anon_sym_restrict] = ACTIONS(5392), - [anon_sym___restrict__] = ACTIONS(5392), - [anon_sym__Atomic] = ACTIONS(5392), - [anon_sym__Noreturn] = ACTIONS(5392), - [anon_sym_noreturn] = ACTIONS(5392), - [anon_sym_mutable] = ACTIONS(5392), - [anon_sym_constinit] = ACTIONS(5392), - [anon_sym_consteval] = ACTIONS(5392), - [sym_primitive_type] = ACTIONS(5392), - [anon_sym_COLON] = ACTIONS(5394), - [anon_sym_QMARK] = ACTIONS(5394), - [anon_sym_LT_EQ_GT] = ACTIONS(5394), - [anon_sym_or] = ACTIONS(5392), - [anon_sym_and] = ACTIONS(5392), - [anon_sym_bitor] = ACTIONS(5392), - [anon_sym_xor] = ACTIONS(5392), - [anon_sym_bitand] = ACTIONS(5392), - [anon_sym_not_eq] = ACTIONS(5392), - [anon_sym_DASH_DASH] = ACTIONS(5394), - [anon_sym_PLUS_PLUS] = ACTIONS(5394), - [anon_sym_DOT] = ACTIONS(5392), - [anon_sym_DOT_STAR] = ACTIONS(5394), - [anon_sym_DASH_GT] = ACTIONS(5394), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5392), - [anon_sym_decltype] = ACTIONS(5392), - [anon_sym_final] = ACTIONS(5392), - [anon_sym_override] = ACTIONS(5392), - [anon_sym_requires] = ACTIONS(5392), - }, - [2581] = { - [sym_identifier] = ACTIONS(5396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5398), - [anon_sym_COMMA] = ACTIONS(5398), - [anon_sym_RPAREN] = ACTIONS(5398), - [anon_sym_LPAREN2] = ACTIONS(5398), - [anon_sym_DASH] = ACTIONS(5396), - [anon_sym_PLUS] = ACTIONS(5396), - [anon_sym_STAR] = ACTIONS(5398), - [anon_sym_SLASH] = ACTIONS(5396), - [anon_sym_PERCENT] = ACTIONS(5398), - [anon_sym_PIPE_PIPE] = ACTIONS(5398), - [anon_sym_AMP_AMP] = ACTIONS(5398), - [anon_sym_PIPE] = ACTIONS(5396), - [anon_sym_CARET] = ACTIONS(5398), - [anon_sym_AMP] = ACTIONS(5396), - [anon_sym_EQ_EQ] = ACTIONS(5398), - [anon_sym_BANG_EQ] = ACTIONS(5398), - [anon_sym_GT] = ACTIONS(5396), - [anon_sym_GT_EQ] = ACTIONS(5398), - [anon_sym_LT_EQ] = ACTIONS(5396), - [anon_sym_LT] = ACTIONS(5396), - [anon_sym_LT_LT] = ACTIONS(5398), - [anon_sym_GT_GT] = ACTIONS(5398), - [anon_sym_SEMI] = ACTIONS(5398), - [anon_sym___extension__] = ACTIONS(5396), - [anon_sym___attribute__] = ACTIONS(5396), - [anon_sym___based] = ACTIONS(5396), - [anon_sym_LBRACE] = ACTIONS(5398), - [anon_sym_RBRACE] = ACTIONS(5398), - [anon_sym_signed] = ACTIONS(5396), - [anon_sym_unsigned] = ACTIONS(5396), - [anon_sym_long] = ACTIONS(5396), - [anon_sym_short] = ACTIONS(5396), - [anon_sym_LBRACK] = ACTIONS(5398), - [anon_sym_RBRACK] = ACTIONS(5398), - [anon_sym_const] = ACTIONS(5396), - [anon_sym_constexpr] = ACTIONS(5396), - [anon_sym_volatile] = ACTIONS(5396), - [anon_sym_restrict] = ACTIONS(5396), - [anon_sym___restrict__] = ACTIONS(5396), - [anon_sym__Atomic] = ACTIONS(5396), - [anon_sym__Noreturn] = ACTIONS(5396), - [anon_sym_noreturn] = ACTIONS(5396), - [anon_sym_mutable] = ACTIONS(5396), - [anon_sym_constinit] = ACTIONS(5396), - [anon_sym_consteval] = ACTIONS(5396), - [sym_primitive_type] = ACTIONS(5396), - [anon_sym_COLON] = ACTIONS(5398), - [anon_sym_QMARK] = ACTIONS(5398), - [anon_sym_LT_EQ_GT] = ACTIONS(5398), - [anon_sym_or] = ACTIONS(5396), - [anon_sym_and] = ACTIONS(5396), - [anon_sym_bitor] = ACTIONS(5396), - [anon_sym_xor] = ACTIONS(5396), - [anon_sym_bitand] = ACTIONS(5396), - [anon_sym_not_eq] = ACTIONS(5396), - [anon_sym_DASH_DASH] = ACTIONS(5398), - [anon_sym_PLUS_PLUS] = ACTIONS(5398), - [anon_sym_DOT] = ACTIONS(5396), - [anon_sym_DOT_STAR] = ACTIONS(5398), - [anon_sym_DASH_GT] = ACTIONS(5398), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5396), - [anon_sym_decltype] = ACTIONS(5396), - [anon_sym_final] = ACTIONS(5396), - [anon_sym_override] = ACTIONS(5396), - [anon_sym_requires] = ACTIONS(5396), - }, - [2582] = { - [sym_identifier] = ACTIONS(5400), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5402), - [anon_sym_COMMA] = ACTIONS(5402), - [anon_sym_RPAREN] = ACTIONS(5402), - [anon_sym_LPAREN2] = ACTIONS(5402), - [anon_sym_DASH] = ACTIONS(5400), - [anon_sym_PLUS] = ACTIONS(5400), - [anon_sym_STAR] = ACTIONS(5402), - [anon_sym_SLASH] = ACTIONS(5400), - [anon_sym_PERCENT] = ACTIONS(5402), - [anon_sym_PIPE_PIPE] = ACTIONS(5402), - [anon_sym_AMP_AMP] = ACTIONS(5402), - [anon_sym_PIPE] = ACTIONS(5400), - [anon_sym_CARET] = ACTIONS(5402), - [anon_sym_AMP] = ACTIONS(5400), - [anon_sym_EQ_EQ] = ACTIONS(5402), - [anon_sym_BANG_EQ] = ACTIONS(5402), - [anon_sym_GT] = ACTIONS(5400), - [anon_sym_GT_EQ] = ACTIONS(5402), - [anon_sym_LT_EQ] = ACTIONS(5400), - [anon_sym_LT] = ACTIONS(5400), - [anon_sym_LT_LT] = ACTIONS(5402), - [anon_sym_GT_GT] = ACTIONS(5402), - [anon_sym_SEMI] = ACTIONS(5402), - [anon_sym___extension__] = ACTIONS(5400), - [anon_sym___attribute__] = ACTIONS(5400), - [anon_sym___based] = ACTIONS(5400), - [anon_sym_LBRACE] = ACTIONS(5402), - [anon_sym_RBRACE] = ACTIONS(5402), - [anon_sym_signed] = ACTIONS(5400), - [anon_sym_unsigned] = ACTIONS(5400), - [anon_sym_long] = ACTIONS(5400), - [anon_sym_short] = ACTIONS(5400), - [anon_sym_LBRACK] = ACTIONS(5402), - [anon_sym_RBRACK] = ACTIONS(5402), - [anon_sym_const] = ACTIONS(5400), - [anon_sym_constexpr] = ACTIONS(5400), - [anon_sym_volatile] = ACTIONS(5400), - [anon_sym_restrict] = ACTIONS(5400), - [anon_sym___restrict__] = ACTIONS(5400), - [anon_sym__Atomic] = ACTIONS(5400), - [anon_sym__Noreturn] = ACTIONS(5400), - [anon_sym_noreturn] = ACTIONS(5400), - [anon_sym_mutable] = ACTIONS(5400), - [anon_sym_constinit] = ACTIONS(5400), - [anon_sym_consteval] = ACTIONS(5400), - [sym_primitive_type] = ACTIONS(5400), - [anon_sym_COLON] = ACTIONS(5402), - [anon_sym_QMARK] = ACTIONS(5402), - [anon_sym_LT_EQ_GT] = ACTIONS(5402), - [anon_sym_or] = ACTIONS(5400), - [anon_sym_and] = ACTIONS(5400), - [anon_sym_bitor] = ACTIONS(5400), - [anon_sym_xor] = ACTIONS(5400), - [anon_sym_bitand] = ACTIONS(5400), - [anon_sym_not_eq] = ACTIONS(5400), - [anon_sym_DASH_DASH] = ACTIONS(5402), - [anon_sym_PLUS_PLUS] = ACTIONS(5402), - [anon_sym_DOT] = ACTIONS(5400), - [anon_sym_DOT_STAR] = ACTIONS(5402), - [anon_sym_DASH_GT] = ACTIONS(5402), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5400), - [anon_sym_decltype] = ACTIONS(5400), - [anon_sym_final] = ACTIONS(5400), - [anon_sym_override] = ACTIONS(5400), - [anon_sym_requires] = ACTIONS(5400), - }, - [2583] = { - [sym_string_literal] = STATE(2583), - [sym_raw_string_literal] = STATE(2583), - [aux_sym_concatenated_string_repeat1] = STATE(2583), - [sym_identifier] = ACTIONS(5404), - [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(5120), - [anon_sym_PLUS] = ACTIONS(5120), - [anon_sym_STAR] = ACTIONS(5120), - [anon_sym_SLASH] = ACTIONS(5120), - [anon_sym_PERCENT] = ACTIONS(5120), - [anon_sym_PIPE_PIPE] = ACTIONS(5118), - [anon_sym_AMP_AMP] = ACTIONS(5118), - [anon_sym_PIPE] = ACTIONS(5120), - [anon_sym_CARET] = ACTIONS(5120), - [anon_sym_AMP] = ACTIONS(5120), - [anon_sym_EQ_EQ] = ACTIONS(5118), - [anon_sym_BANG_EQ] = ACTIONS(5118), - [anon_sym_GT] = ACTIONS(5120), - [anon_sym_GT_EQ] = ACTIONS(5118), - [anon_sym_LT_EQ] = ACTIONS(5120), - [anon_sym_LT] = ACTIONS(5120), - [anon_sym_LT_LT] = ACTIONS(5120), - [anon_sym_GT_GT] = ACTIONS(5120), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_EQ] = ACTIONS(5120), - [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(5120), - [anon_sym_or_eq] = ACTIONS(5120), - [anon_sym_xor_eq] = ACTIONS(5120), - [anon_sym_LT_EQ_GT] = ACTIONS(5118), - [anon_sym_or] = ACTIONS(5120), - [anon_sym_and] = ACTIONS(5120), - [anon_sym_bitor] = ACTIONS(5120), - [anon_sym_xor] = ACTIONS(5120), - [anon_sym_bitand] = ACTIONS(5120), - [anon_sym_not_eq] = ACTIONS(5120), - [anon_sym_DASH_DASH] = ACTIONS(5118), - [anon_sym_PLUS_PLUS] = ACTIONS(5118), - [anon_sym_DOT] = ACTIONS(5120), - [anon_sym_DOT_STAR] = ACTIONS(5118), - [anon_sym_DASH_GT] = ACTIONS(5120), - [anon_sym_L_DQUOTE] = ACTIONS(5407), - [anon_sym_u_DQUOTE] = ACTIONS(5407), - [anon_sym_U_DQUOTE] = ACTIONS(5407), - [anon_sym_u8_DQUOTE] = ACTIONS(5407), - [anon_sym_DQUOTE] = ACTIONS(5407), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5410), - [anon_sym_LR_DQUOTE] = ACTIONS(5410), - [anon_sym_uR_DQUOTE] = ACTIONS(5410), - [anon_sym_UR_DQUOTE] = ACTIONS(5410), - [anon_sym_u8R_DQUOTE] = ACTIONS(5410), - [anon_sym_DASH_GT_STAR] = ACTIONS(5118), - [sym_literal_suffix] = ACTIONS(5120), - }, - [2584] = { - [sym_string_literal] = STATE(2654), - [sym_template_argument_list] = STATE(3292), - [sym_raw_string_literal] = STATE(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5140), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym___attribute__] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_and_eq] = ACTIONS(4278), - [anon_sym_or_eq] = ACTIONS(4278), - [anon_sym_xor_eq] = ACTIONS(4278), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(5413), - [anon_sym_u_DQUOTE] = ACTIONS(5413), - [anon_sym_U_DQUOTE] = ACTIONS(5413), - [anon_sym_u8_DQUOTE] = ACTIONS(5413), - [anon_sym_DQUOTE] = ACTIONS(5413), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5415), - [anon_sym_LR_DQUOTE] = ACTIONS(5415), - [anon_sym_uR_DQUOTE] = ACTIONS(5415), - [anon_sym_UR_DQUOTE] = ACTIONS(5415), - [anon_sym_u8R_DQUOTE] = ACTIONS(5415), - }, - [2585] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5812), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2586] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5830), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2587] = { - [sym_identifier] = ACTIONS(5417), - [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(5417), - [anon_sym_PLUS] = ACTIONS(5417), - [anon_sym_STAR] = ACTIONS(5419), - [anon_sym_SLASH] = ACTIONS(5417), - [anon_sym_PERCENT] = ACTIONS(5419), - [anon_sym_PIPE_PIPE] = ACTIONS(5419), - [anon_sym_AMP_AMP] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5417), - [anon_sym_CARET] = ACTIONS(5419), - [anon_sym_AMP] = ACTIONS(5417), - [anon_sym_EQ_EQ] = ACTIONS(5419), - [anon_sym_BANG_EQ] = ACTIONS(5419), - [anon_sym_GT] = ACTIONS(5417), - [anon_sym_GT_EQ] = ACTIONS(5419), - [anon_sym_LT_EQ] = ACTIONS(5417), - [anon_sym_LT] = ACTIONS(5417), - [anon_sym_LT_LT] = ACTIONS(5419), - [anon_sym_GT_GT] = ACTIONS(5419), - [anon_sym_SEMI] = ACTIONS(5419), - [anon_sym___extension__] = ACTIONS(5417), - [anon_sym___attribute__] = ACTIONS(5417), - [anon_sym___based] = ACTIONS(5417), - [anon_sym_LBRACE] = ACTIONS(5419), - [anon_sym_RBRACE] = ACTIONS(5419), - [anon_sym_signed] = ACTIONS(5417), - [anon_sym_unsigned] = ACTIONS(5417), - [anon_sym_long] = ACTIONS(5417), - [anon_sym_short] = ACTIONS(5417), - [anon_sym_LBRACK] = ACTIONS(5419), - [anon_sym_RBRACK] = ACTIONS(5419), - [anon_sym_const] = ACTIONS(5417), - [anon_sym_constexpr] = ACTIONS(5417), - [anon_sym_volatile] = ACTIONS(5417), - [anon_sym_restrict] = ACTIONS(5417), - [anon_sym___restrict__] = ACTIONS(5417), - [anon_sym__Atomic] = ACTIONS(5417), - [anon_sym__Noreturn] = ACTIONS(5417), - [anon_sym_noreturn] = ACTIONS(5417), - [anon_sym_mutable] = ACTIONS(5417), - [anon_sym_constinit] = ACTIONS(5417), - [anon_sym_consteval] = ACTIONS(5417), - [sym_primitive_type] = ACTIONS(5417), - [anon_sym_COLON] = ACTIONS(5419), - [anon_sym_QMARK] = ACTIONS(5419), - [anon_sym_LT_EQ_GT] = ACTIONS(5419), - [anon_sym_or] = ACTIONS(5417), - [anon_sym_and] = ACTIONS(5417), - [anon_sym_bitor] = ACTIONS(5417), - [anon_sym_xor] = ACTIONS(5417), - [anon_sym_bitand] = ACTIONS(5417), - [anon_sym_not_eq] = ACTIONS(5417), - [anon_sym_DASH_DASH] = ACTIONS(5419), - [anon_sym_PLUS_PLUS] = ACTIONS(5419), - [anon_sym_DOT] = ACTIONS(5417), - [anon_sym_DOT_STAR] = ACTIONS(5419), - [anon_sym_DASH_GT] = ACTIONS(5419), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5417), - [anon_sym_decltype] = ACTIONS(5417), - [anon_sym_final] = ACTIONS(5417), - [anon_sym_override] = ACTIONS(5417), - [anon_sym_requires] = ACTIONS(5417), - }, - [2588] = { - [sym_catch_clause] = STATE(2575), - [aux_sym_constructor_try_statement_repeat1] = STATE(2575), - [sym_identifier] = ACTIONS(2224), - [aux_sym_preproc_def_token1] = ACTIONS(2224), - [aux_sym_preproc_if_token1] = ACTIONS(2224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2224), - [sym_preproc_directive] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_AMP_AMP] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym___extension__] = ACTIONS(2224), - [anon_sym_typedef] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym___attribute__] = ACTIONS(2224), - [anon_sym_COLON_COLON] = ACTIONS(2226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2226), - [anon_sym___declspec] = ACTIONS(2224), - [anon_sym___based] = ACTIONS(2224), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_signed] = ACTIONS(2224), - [anon_sym_unsigned] = ACTIONS(2224), - [anon_sym_long] = ACTIONS(2224), - [anon_sym_short] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2224), - [anon_sym_register] = ACTIONS(2224), - [anon_sym_inline] = ACTIONS(2224), - [anon_sym___inline] = ACTIONS(2224), - [anon_sym___inline__] = ACTIONS(2224), - [anon_sym___forceinline] = ACTIONS(2224), - [anon_sym_thread_local] = ACTIONS(2224), - [anon_sym___thread] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [anon_sym_constexpr] = ACTIONS(2224), - [anon_sym_volatile] = ACTIONS(2224), - [anon_sym_restrict] = ACTIONS(2224), - [anon_sym___restrict__] = ACTIONS(2224), - [anon_sym__Atomic] = ACTIONS(2224), - [anon_sym__Noreturn] = ACTIONS(2224), - [anon_sym_noreturn] = ACTIONS(2224), - [anon_sym_mutable] = ACTIONS(2224), - [anon_sym_constinit] = ACTIONS(2224), - [anon_sym_consteval] = ACTIONS(2224), - [sym_primitive_type] = ACTIONS(2224), - [anon_sym_enum] = ACTIONS(2224), - [anon_sym_class] = ACTIONS(2224), - [anon_sym_struct] = ACTIONS(2224), - [anon_sym_union] = ACTIONS(2224), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2224), - [anon_sym_decltype] = ACTIONS(2224), - [anon_sym_virtual] = ACTIONS(2224), - [anon_sym_alignas] = ACTIONS(2224), - [anon_sym_explicit] = ACTIONS(2224), - [anon_sym_typename] = ACTIONS(2224), - [anon_sym_template] = ACTIONS(2224), - [anon_sym_operator] = ACTIONS(2224), - [anon_sym_friend] = ACTIONS(2224), - [anon_sym_public] = ACTIONS(2224), - [anon_sym_private] = ACTIONS(2224), - [anon_sym_protected] = ACTIONS(2224), - [anon_sym_using] = ACTIONS(2224), - [anon_sym_static_assert] = ACTIONS(2224), - [anon_sym_catch] = ACTIONS(5421), - }, - [2589] = { - [sym_catch_clause] = STATE(2575), - [aux_sym_constructor_try_statement_repeat1] = STATE(2575), - [sym_identifier] = ACTIONS(2559), - [aux_sym_preproc_def_token1] = ACTIONS(2559), - [aux_sym_preproc_if_token1] = ACTIONS(2559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), - [sym_preproc_directive] = ACTIONS(2559), - [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(2559), - [anon_sym___extension__] = ACTIONS(2559), - [anon_sym_typedef] = ACTIONS(2559), - [anon_sym_extern] = ACTIONS(2559), - [anon_sym___attribute__] = ACTIONS(2559), - [anon_sym_COLON_COLON] = ACTIONS(2561), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2559), - [anon_sym___based] = ACTIONS(2559), - [anon_sym_RBRACE] = ACTIONS(2561), - [anon_sym_signed] = ACTIONS(2559), - [anon_sym_unsigned] = ACTIONS(2559), - [anon_sym_long] = ACTIONS(2559), - [anon_sym_short] = ACTIONS(2559), - [anon_sym_LBRACK] = ACTIONS(2559), - [anon_sym_static] = ACTIONS(2559), - [anon_sym_register] = ACTIONS(2559), - [anon_sym_inline] = ACTIONS(2559), - [anon_sym___inline] = ACTIONS(2559), - [anon_sym___inline__] = ACTIONS(2559), - [anon_sym___forceinline] = ACTIONS(2559), - [anon_sym_thread_local] = ACTIONS(2559), - [anon_sym___thread] = ACTIONS(2559), - [anon_sym_const] = ACTIONS(2559), - [anon_sym_constexpr] = ACTIONS(2559), - [anon_sym_volatile] = ACTIONS(2559), - [anon_sym_restrict] = ACTIONS(2559), - [anon_sym___restrict__] = ACTIONS(2559), - [anon_sym__Atomic] = ACTIONS(2559), - [anon_sym__Noreturn] = ACTIONS(2559), - [anon_sym_noreturn] = ACTIONS(2559), - [anon_sym_mutable] = ACTIONS(2559), - [anon_sym_constinit] = ACTIONS(2559), - [anon_sym_consteval] = ACTIONS(2559), - [sym_primitive_type] = ACTIONS(2559), - [anon_sym_enum] = ACTIONS(2559), - [anon_sym_class] = ACTIONS(2559), - [anon_sym_struct] = ACTIONS(2559), - [anon_sym_union] = ACTIONS(2559), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2559), - [anon_sym_decltype] = ACTIONS(2559), - [anon_sym_virtual] = ACTIONS(2559), - [anon_sym_alignas] = ACTIONS(2559), - [anon_sym_explicit] = ACTIONS(2559), - [anon_sym_typename] = ACTIONS(2559), - [anon_sym_template] = ACTIONS(2559), - [anon_sym_operator] = ACTIONS(2559), - [anon_sym_friend] = ACTIONS(2559), - [anon_sym_public] = ACTIONS(2559), - [anon_sym_private] = ACTIONS(2559), - [anon_sym_protected] = ACTIONS(2559), - [anon_sym_using] = ACTIONS(2559), - [anon_sym_static_assert] = ACTIONS(2559), - [anon_sym_catch] = ACTIONS(5421), - }, - [2590] = { - [sym_catch_clause] = STATE(2565), - [aux_sym_constructor_try_statement_repeat1] = STATE(2565), - [sym_identifier] = ACTIONS(2224), - [aux_sym_preproc_def_token1] = ACTIONS(2224), - [aux_sym_preproc_if_token1] = ACTIONS(2224), - [aux_sym_preproc_if_token2] = ACTIONS(2224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2224), - [sym_preproc_directive] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_AMP_AMP] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym___extension__] = ACTIONS(2224), - [anon_sym_typedef] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym___attribute__] = ACTIONS(2224), - [anon_sym_COLON_COLON] = ACTIONS(2226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2226), - [anon_sym___declspec] = ACTIONS(2224), - [anon_sym___based] = ACTIONS(2224), - [anon_sym_signed] = ACTIONS(2224), - [anon_sym_unsigned] = ACTIONS(2224), - [anon_sym_long] = ACTIONS(2224), - [anon_sym_short] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2224), - [anon_sym_register] = ACTIONS(2224), - [anon_sym_inline] = ACTIONS(2224), - [anon_sym___inline] = ACTIONS(2224), - [anon_sym___inline__] = ACTIONS(2224), - [anon_sym___forceinline] = ACTIONS(2224), - [anon_sym_thread_local] = ACTIONS(2224), - [anon_sym___thread] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [anon_sym_constexpr] = ACTIONS(2224), - [anon_sym_volatile] = ACTIONS(2224), - [anon_sym_restrict] = ACTIONS(2224), - [anon_sym___restrict__] = ACTIONS(2224), - [anon_sym__Atomic] = ACTIONS(2224), - [anon_sym__Noreturn] = ACTIONS(2224), - [anon_sym_noreturn] = ACTIONS(2224), - [anon_sym_mutable] = ACTIONS(2224), - [anon_sym_constinit] = ACTIONS(2224), - [anon_sym_consteval] = ACTIONS(2224), - [sym_primitive_type] = ACTIONS(2224), - [anon_sym_enum] = ACTIONS(2224), - [anon_sym_class] = ACTIONS(2224), - [anon_sym_struct] = ACTIONS(2224), - [anon_sym_union] = ACTIONS(2224), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2224), - [anon_sym_decltype] = ACTIONS(2224), - [anon_sym_virtual] = ACTIONS(2224), - [anon_sym_alignas] = ACTIONS(2224), - [anon_sym_explicit] = ACTIONS(2224), - [anon_sym_typename] = ACTIONS(2224), - [anon_sym_template] = ACTIONS(2224), - [anon_sym_operator] = ACTIONS(2224), - [anon_sym_friend] = ACTIONS(2224), - [anon_sym_public] = ACTIONS(2224), - [anon_sym_private] = ACTIONS(2224), - [anon_sym_protected] = ACTIONS(2224), - [anon_sym_using] = ACTIONS(2224), - [anon_sym_static_assert] = ACTIONS(2224), - [anon_sym_catch] = ACTIONS(5423), - }, - [2591] = { - [sym_identifier] = ACTIONS(5425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5427), - [anon_sym_COMMA] = ACTIONS(5427), - [anon_sym_RPAREN] = ACTIONS(5427), - [anon_sym_LPAREN2] = ACTIONS(5427), - [anon_sym_DASH] = ACTIONS(5425), - [anon_sym_PLUS] = ACTIONS(5425), - [anon_sym_STAR] = ACTIONS(5427), - [anon_sym_SLASH] = ACTIONS(5425), - [anon_sym_PERCENT] = ACTIONS(5427), - [anon_sym_PIPE_PIPE] = ACTIONS(5427), - [anon_sym_AMP_AMP] = ACTIONS(5427), - [anon_sym_PIPE] = ACTIONS(5425), - [anon_sym_CARET] = ACTIONS(5427), - [anon_sym_AMP] = ACTIONS(5425), - [anon_sym_EQ_EQ] = ACTIONS(5427), - [anon_sym_BANG_EQ] = ACTIONS(5427), - [anon_sym_GT] = ACTIONS(5425), - [anon_sym_GT_EQ] = ACTIONS(5427), - [anon_sym_LT_EQ] = ACTIONS(5425), - [anon_sym_LT] = ACTIONS(5425), - [anon_sym_LT_LT] = ACTIONS(5427), - [anon_sym_GT_GT] = ACTIONS(5427), - [anon_sym_SEMI] = ACTIONS(5427), - [anon_sym___extension__] = ACTIONS(5425), - [anon_sym___attribute__] = ACTIONS(5425), - [anon_sym___based] = ACTIONS(5425), - [anon_sym_LBRACE] = ACTIONS(5427), - [anon_sym_RBRACE] = ACTIONS(5427), - [anon_sym_signed] = ACTIONS(5425), - [anon_sym_unsigned] = ACTIONS(5425), - [anon_sym_long] = ACTIONS(5425), - [anon_sym_short] = ACTIONS(5425), - [anon_sym_LBRACK] = ACTIONS(5427), - [anon_sym_RBRACK] = ACTIONS(5427), - [anon_sym_const] = ACTIONS(5425), - [anon_sym_constexpr] = ACTIONS(5425), - [anon_sym_volatile] = ACTIONS(5425), - [anon_sym_restrict] = ACTIONS(5425), - [anon_sym___restrict__] = ACTIONS(5425), - [anon_sym__Atomic] = ACTIONS(5425), - [anon_sym__Noreturn] = ACTIONS(5425), - [anon_sym_noreturn] = ACTIONS(5425), - [anon_sym_mutable] = ACTIONS(5425), - [anon_sym_constinit] = ACTIONS(5425), - [anon_sym_consteval] = ACTIONS(5425), - [sym_primitive_type] = ACTIONS(5425), - [anon_sym_COLON] = ACTIONS(5427), - [anon_sym_QMARK] = ACTIONS(5427), - [anon_sym_LT_EQ_GT] = ACTIONS(5427), - [anon_sym_or] = ACTIONS(5425), - [anon_sym_and] = ACTIONS(5425), - [anon_sym_bitor] = ACTIONS(5425), - [anon_sym_xor] = ACTIONS(5425), - [anon_sym_bitand] = ACTIONS(5425), - [anon_sym_not_eq] = ACTIONS(5425), - [anon_sym_DASH_DASH] = ACTIONS(5427), - [anon_sym_PLUS_PLUS] = ACTIONS(5427), - [anon_sym_DOT] = ACTIONS(5425), - [anon_sym_DOT_STAR] = ACTIONS(5427), - [anon_sym_DASH_GT] = ACTIONS(5427), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5425), - [anon_sym_decltype] = ACTIONS(5425), - [anon_sym_final] = ACTIONS(5425), - [anon_sym_override] = ACTIONS(5425), - [anon_sym_requires] = ACTIONS(5425), - }, - [2592] = { - [sym_identifier] = ACTIONS(5429), - [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(5429), - [anon_sym_PLUS] = ACTIONS(5429), - [anon_sym_STAR] = ACTIONS(5431), - [anon_sym_SLASH] = ACTIONS(5429), - [anon_sym_PERCENT] = ACTIONS(5431), - [anon_sym_PIPE_PIPE] = ACTIONS(5431), - [anon_sym_AMP_AMP] = ACTIONS(5431), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_CARET] = ACTIONS(5431), - [anon_sym_AMP] = ACTIONS(5429), - [anon_sym_EQ_EQ] = ACTIONS(5431), - [anon_sym_BANG_EQ] = ACTIONS(5431), - [anon_sym_GT] = ACTIONS(5429), - [anon_sym_GT_EQ] = ACTIONS(5431), - [anon_sym_LT_EQ] = ACTIONS(5429), - [anon_sym_LT] = ACTIONS(5429), - [anon_sym_LT_LT] = ACTIONS(5431), - [anon_sym_GT_GT] = ACTIONS(5431), - [anon_sym_SEMI] = ACTIONS(5431), - [anon_sym___extension__] = ACTIONS(5429), - [anon_sym___attribute__] = ACTIONS(5429), - [anon_sym___based] = ACTIONS(5429), - [anon_sym_LBRACE] = ACTIONS(5431), - [anon_sym_RBRACE] = ACTIONS(5431), - [anon_sym_signed] = ACTIONS(5429), - [anon_sym_unsigned] = ACTIONS(5429), - [anon_sym_long] = ACTIONS(5429), - [anon_sym_short] = ACTIONS(5429), - [anon_sym_LBRACK] = ACTIONS(5431), - [anon_sym_RBRACK] = ACTIONS(5431), - [anon_sym_const] = ACTIONS(5429), - [anon_sym_constexpr] = ACTIONS(5429), - [anon_sym_volatile] = ACTIONS(5429), - [anon_sym_restrict] = ACTIONS(5429), - [anon_sym___restrict__] = ACTIONS(5429), - [anon_sym__Atomic] = ACTIONS(5429), - [anon_sym__Noreturn] = ACTIONS(5429), - [anon_sym_noreturn] = ACTIONS(5429), - [anon_sym_mutable] = ACTIONS(5429), - [anon_sym_constinit] = ACTIONS(5429), - [anon_sym_consteval] = ACTIONS(5429), - [sym_primitive_type] = ACTIONS(5429), - [anon_sym_COLON] = ACTIONS(5431), - [anon_sym_QMARK] = ACTIONS(5431), - [anon_sym_LT_EQ_GT] = ACTIONS(5431), - [anon_sym_or] = ACTIONS(5429), - [anon_sym_and] = ACTIONS(5429), - [anon_sym_bitor] = ACTIONS(5429), - [anon_sym_xor] = ACTIONS(5429), - [anon_sym_bitand] = ACTIONS(5429), - [anon_sym_not_eq] = ACTIONS(5429), - [anon_sym_DASH_DASH] = ACTIONS(5431), - [anon_sym_PLUS_PLUS] = ACTIONS(5431), - [anon_sym_DOT] = ACTIONS(5429), - [anon_sym_DOT_STAR] = ACTIONS(5431), - [anon_sym_DASH_GT] = ACTIONS(5431), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5429), - [anon_sym_decltype] = ACTIONS(5429), - [anon_sym_final] = ACTIONS(5429), - [anon_sym_override] = ACTIONS(5429), - [anon_sym_requires] = ACTIONS(5429), - }, - [2593] = { - [sym_identifier] = ACTIONS(5433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5435), - [anon_sym_COMMA] = ACTIONS(5435), - [anon_sym_RPAREN] = ACTIONS(5435), - [anon_sym_LPAREN2] = ACTIONS(5435), - [anon_sym_DASH] = ACTIONS(5433), - [anon_sym_PLUS] = ACTIONS(5433), - [anon_sym_STAR] = ACTIONS(5435), - [anon_sym_SLASH] = ACTIONS(5433), - [anon_sym_PERCENT] = ACTIONS(5435), - [anon_sym_PIPE_PIPE] = ACTIONS(5435), - [anon_sym_AMP_AMP] = ACTIONS(5435), - [anon_sym_PIPE] = ACTIONS(5433), - [anon_sym_CARET] = ACTIONS(5435), - [anon_sym_AMP] = ACTIONS(5433), - [anon_sym_EQ_EQ] = ACTIONS(5435), - [anon_sym_BANG_EQ] = ACTIONS(5435), - [anon_sym_GT] = ACTIONS(5433), - [anon_sym_GT_EQ] = ACTIONS(5435), - [anon_sym_LT_EQ] = ACTIONS(5433), - [anon_sym_LT] = ACTIONS(5433), - [anon_sym_LT_LT] = ACTIONS(5435), - [anon_sym_GT_GT] = ACTIONS(5435), - [anon_sym_SEMI] = ACTIONS(5435), - [anon_sym___extension__] = ACTIONS(5433), - [anon_sym___attribute__] = ACTIONS(5433), - [anon_sym___based] = ACTIONS(5433), - [anon_sym_LBRACE] = ACTIONS(5435), - [anon_sym_RBRACE] = ACTIONS(5435), - [anon_sym_signed] = ACTIONS(5433), - [anon_sym_unsigned] = ACTIONS(5433), - [anon_sym_long] = ACTIONS(5433), - [anon_sym_short] = ACTIONS(5433), - [anon_sym_LBRACK] = ACTIONS(5435), - [anon_sym_RBRACK] = ACTIONS(5435), - [anon_sym_const] = ACTIONS(5433), - [anon_sym_constexpr] = ACTIONS(5433), - [anon_sym_volatile] = ACTIONS(5433), - [anon_sym_restrict] = ACTIONS(5433), - [anon_sym___restrict__] = ACTIONS(5433), - [anon_sym__Atomic] = ACTIONS(5433), - [anon_sym__Noreturn] = ACTIONS(5433), - [anon_sym_noreturn] = ACTIONS(5433), - [anon_sym_mutable] = ACTIONS(5433), - [anon_sym_constinit] = ACTIONS(5433), - [anon_sym_consteval] = ACTIONS(5433), - [sym_primitive_type] = ACTIONS(5433), - [anon_sym_COLON] = ACTIONS(5435), - [anon_sym_QMARK] = ACTIONS(5435), - [anon_sym_LT_EQ_GT] = ACTIONS(5435), - [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(5435), - [anon_sym_PLUS_PLUS] = ACTIONS(5435), - [anon_sym_DOT] = ACTIONS(5433), - [anon_sym_DOT_STAR] = ACTIONS(5435), - [anon_sym_DASH_GT] = ACTIONS(5435), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5433), - [anon_sym_decltype] = ACTIONS(5433), - [anon_sym_final] = ACTIONS(5433), - [anon_sym_override] = ACTIONS(5433), - [anon_sym_requires] = ACTIONS(5433), - }, - [2594] = { - [sym_identifier] = ACTIONS(5437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5439), - [anon_sym_COMMA] = ACTIONS(5439), - [anon_sym_RPAREN] = ACTIONS(5439), - [anon_sym_LPAREN2] = ACTIONS(5439), - [anon_sym_DASH] = ACTIONS(5437), - [anon_sym_PLUS] = ACTIONS(5437), - [anon_sym_STAR] = ACTIONS(5439), - [anon_sym_SLASH] = ACTIONS(5437), - [anon_sym_PERCENT] = ACTIONS(5439), - [anon_sym_PIPE_PIPE] = ACTIONS(5439), - [anon_sym_AMP_AMP] = ACTIONS(5439), - [anon_sym_PIPE] = ACTIONS(5437), - [anon_sym_CARET] = ACTIONS(5439), - [anon_sym_AMP] = ACTIONS(5437), - [anon_sym_EQ_EQ] = ACTIONS(5439), - [anon_sym_BANG_EQ] = ACTIONS(5439), - [anon_sym_GT] = ACTIONS(5437), - [anon_sym_GT_EQ] = ACTIONS(5439), - [anon_sym_LT_EQ] = ACTIONS(5437), - [anon_sym_LT] = ACTIONS(5437), - [anon_sym_LT_LT] = ACTIONS(5439), - [anon_sym_GT_GT] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(5439), - [anon_sym___extension__] = ACTIONS(5437), - [anon_sym___attribute__] = ACTIONS(5437), - [anon_sym___based] = ACTIONS(5437), - [anon_sym_LBRACE] = ACTIONS(5439), - [anon_sym_RBRACE] = ACTIONS(5439), - [anon_sym_signed] = ACTIONS(5437), - [anon_sym_unsigned] = ACTIONS(5437), - [anon_sym_long] = ACTIONS(5437), - [anon_sym_short] = ACTIONS(5437), - [anon_sym_LBRACK] = ACTIONS(5439), - [anon_sym_RBRACK] = ACTIONS(5439), - [anon_sym_const] = ACTIONS(5437), - [anon_sym_constexpr] = ACTIONS(5437), - [anon_sym_volatile] = ACTIONS(5437), - [anon_sym_restrict] = ACTIONS(5437), - [anon_sym___restrict__] = ACTIONS(5437), - [anon_sym__Atomic] = ACTIONS(5437), - [anon_sym__Noreturn] = ACTIONS(5437), - [anon_sym_noreturn] = ACTIONS(5437), - [anon_sym_mutable] = ACTIONS(5437), - [anon_sym_constinit] = ACTIONS(5437), - [anon_sym_consteval] = ACTIONS(5437), - [sym_primitive_type] = ACTIONS(5437), - [anon_sym_COLON] = ACTIONS(5439), - [anon_sym_QMARK] = ACTIONS(5439), - [anon_sym_LT_EQ_GT] = ACTIONS(5439), - [anon_sym_or] = ACTIONS(5437), - [anon_sym_and] = ACTIONS(5437), - [anon_sym_bitor] = ACTIONS(5437), - [anon_sym_xor] = ACTIONS(5437), - [anon_sym_bitand] = ACTIONS(5437), - [anon_sym_not_eq] = ACTIONS(5437), - [anon_sym_DASH_DASH] = ACTIONS(5439), - [anon_sym_PLUS_PLUS] = ACTIONS(5439), - [anon_sym_DOT] = ACTIONS(5437), - [anon_sym_DOT_STAR] = ACTIONS(5439), - [anon_sym_DASH_GT] = ACTIONS(5439), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5437), - [anon_sym_decltype] = ACTIONS(5437), - [anon_sym_final] = ACTIONS(5437), - [anon_sym_override] = ACTIONS(5437), - [anon_sym_requires] = ACTIONS(5437), - }, - [2595] = { - [sym_identifier] = ACTIONS(5240), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5242), - [anon_sym_COMMA] = ACTIONS(5242), - [anon_sym_RPAREN] = ACTIONS(5242), - [anon_sym_LPAREN2] = ACTIONS(5242), - [anon_sym_DASH] = ACTIONS(5240), - [anon_sym_PLUS] = ACTIONS(5240), - [anon_sym_STAR] = ACTIONS(5242), - [anon_sym_SLASH] = ACTIONS(5240), - [anon_sym_PERCENT] = ACTIONS(5242), - [anon_sym_PIPE_PIPE] = ACTIONS(5242), - [anon_sym_AMP_AMP] = ACTIONS(5242), - [anon_sym_PIPE] = ACTIONS(5240), - [anon_sym_CARET] = ACTIONS(5242), - [anon_sym_AMP] = ACTIONS(5240), - [anon_sym_EQ_EQ] = ACTIONS(5242), - [anon_sym_BANG_EQ] = ACTIONS(5242), - [anon_sym_GT] = ACTIONS(5240), - [anon_sym_GT_EQ] = ACTIONS(5242), - [anon_sym_LT_EQ] = ACTIONS(5240), - [anon_sym_LT] = ACTIONS(5240), - [anon_sym_LT_LT] = ACTIONS(5242), - [anon_sym_GT_GT] = ACTIONS(5242), - [anon_sym_SEMI] = ACTIONS(5242), - [anon_sym___extension__] = ACTIONS(5240), - [anon_sym___attribute__] = ACTIONS(5240), - [anon_sym___based] = ACTIONS(5240), - [anon_sym_LBRACE] = ACTIONS(5242), - [anon_sym_RBRACE] = ACTIONS(5242), - [anon_sym_signed] = ACTIONS(5240), - [anon_sym_unsigned] = ACTIONS(5240), - [anon_sym_long] = ACTIONS(5240), - [anon_sym_short] = ACTIONS(5240), - [anon_sym_LBRACK] = ACTIONS(5242), - [anon_sym_RBRACK] = ACTIONS(5242), - [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_mutable] = ACTIONS(5240), - [anon_sym_constinit] = ACTIONS(5240), - [anon_sym_consteval] = ACTIONS(5240), - [sym_primitive_type] = ACTIONS(5240), - [anon_sym_COLON] = ACTIONS(5242), - [anon_sym_QMARK] = ACTIONS(5242), - [anon_sym_LT_EQ_GT] = ACTIONS(5242), - [anon_sym_or] = ACTIONS(5240), - [anon_sym_and] = ACTIONS(5240), - [anon_sym_bitor] = ACTIONS(5240), - [anon_sym_xor] = ACTIONS(5240), - [anon_sym_bitand] = ACTIONS(5240), - [anon_sym_not_eq] = ACTIONS(5240), - [anon_sym_DASH_DASH] = ACTIONS(5242), - [anon_sym_PLUS_PLUS] = ACTIONS(5242), - [anon_sym_DOT] = ACTIONS(5240), - [anon_sym_DOT_STAR] = ACTIONS(5242), - [anon_sym_DASH_GT] = ACTIONS(5242), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5240), - [anon_sym_decltype] = ACTIONS(5240), - [anon_sym_final] = ACTIONS(5240), - [anon_sym_override] = ACTIONS(5240), - [anon_sym_requires] = ACTIONS(5240), - }, - [2596] = { - [sym_identifier] = ACTIONS(5441), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5443), - [anon_sym_COMMA] = ACTIONS(5443), - [anon_sym_RPAREN] = ACTIONS(5443), - [anon_sym_LPAREN2] = ACTIONS(5443), - [anon_sym_DASH] = ACTIONS(5441), - [anon_sym_PLUS] = ACTIONS(5441), - [anon_sym_STAR] = ACTIONS(5443), - [anon_sym_SLASH] = ACTIONS(5441), - [anon_sym_PERCENT] = ACTIONS(5443), - [anon_sym_PIPE_PIPE] = ACTIONS(5443), - [anon_sym_AMP_AMP] = ACTIONS(5443), - [anon_sym_PIPE] = ACTIONS(5441), - [anon_sym_CARET] = ACTIONS(5443), - [anon_sym_AMP] = ACTIONS(5441), - [anon_sym_EQ_EQ] = ACTIONS(5443), - [anon_sym_BANG_EQ] = ACTIONS(5443), - [anon_sym_GT] = ACTIONS(5441), - [anon_sym_GT_EQ] = ACTIONS(5443), - [anon_sym_LT_EQ] = ACTIONS(5441), - [anon_sym_LT] = ACTIONS(5441), - [anon_sym_LT_LT] = ACTIONS(5443), - [anon_sym_GT_GT] = ACTIONS(5443), - [anon_sym_SEMI] = ACTIONS(5443), - [anon_sym___extension__] = ACTIONS(5441), - [anon_sym___attribute__] = ACTIONS(5441), - [anon_sym___based] = ACTIONS(5441), - [anon_sym_LBRACE] = ACTIONS(5443), - [anon_sym_RBRACE] = ACTIONS(5443), - [anon_sym_signed] = ACTIONS(5441), - [anon_sym_unsigned] = ACTIONS(5441), - [anon_sym_long] = ACTIONS(5441), - [anon_sym_short] = ACTIONS(5441), - [anon_sym_LBRACK] = ACTIONS(5443), - [anon_sym_RBRACK] = ACTIONS(5443), - [anon_sym_const] = ACTIONS(5441), - [anon_sym_constexpr] = ACTIONS(5441), - [anon_sym_volatile] = ACTIONS(5441), - [anon_sym_restrict] = ACTIONS(5441), - [anon_sym___restrict__] = ACTIONS(5441), - [anon_sym__Atomic] = ACTIONS(5441), - [anon_sym__Noreturn] = ACTIONS(5441), - [anon_sym_noreturn] = ACTIONS(5441), - [anon_sym_mutable] = ACTIONS(5441), - [anon_sym_constinit] = ACTIONS(5441), - [anon_sym_consteval] = ACTIONS(5441), - [sym_primitive_type] = ACTIONS(5441), - [anon_sym_COLON] = ACTIONS(5443), - [anon_sym_QMARK] = ACTIONS(5443), - [anon_sym_LT_EQ_GT] = ACTIONS(5443), - [anon_sym_or] = ACTIONS(5441), - [anon_sym_and] = ACTIONS(5441), - [anon_sym_bitor] = ACTIONS(5441), - [anon_sym_xor] = ACTIONS(5441), - [anon_sym_bitand] = ACTIONS(5441), - [anon_sym_not_eq] = ACTIONS(5441), - [anon_sym_DASH_DASH] = ACTIONS(5443), - [anon_sym_PLUS_PLUS] = ACTIONS(5443), - [anon_sym_DOT] = ACTIONS(5441), - [anon_sym_DOT_STAR] = ACTIONS(5443), - [anon_sym_DASH_GT] = ACTIONS(5443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5441), - [anon_sym_decltype] = ACTIONS(5441), - [anon_sym_final] = ACTIONS(5441), - [anon_sym_override] = ACTIONS(5441), - [anon_sym_requires] = ACTIONS(5441), - }, - [2597] = { - [sym_identifier] = ACTIONS(5445), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5447), - [anon_sym_COMMA] = ACTIONS(5447), - [anon_sym_RPAREN] = ACTIONS(5447), - [anon_sym_LPAREN2] = ACTIONS(5447), - [anon_sym_DASH] = ACTIONS(5445), - [anon_sym_PLUS] = ACTIONS(5445), - [anon_sym_STAR] = ACTIONS(5447), - [anon_sym_SLASH] = ACTIONS(5445), - [anon_sym_PERCENT] = ACTIONS(5447), - [anon_sym_PIPE_PIPE] = ACTIONS(5447), - [anon_sym_AMP_AMP] = ACTIONS(5447), - [anon_sym_PIPE] = ACTIONS(5445), - [anon_sym_CARET] = ACTIONS(5447), - [anon_sym_AMP] = ACTIONS(5445), - [anon_sym_EQ_EQ] = ACTIONS(5447), - [anon_sym_BANG_EQ] = ACTIONS(5447), - [anon_sym_GT] = ACTIONS(5445), - [anon_sym_GT_EQ] = ACTIONS(5447), - [anon_sym_LT_EQ] = ACTIONS(5445), - [anon_sym_LT] = ACTIONS(5445), - [anon_sym_LT_LT] = ACTIONS(5447), - [anon_sym_GT_GT] = ACTIONS(5447), - [anon_sym_SEMI] = ACTIONS(5447), - [anon_sym___extension__] = ACTIONS(5445), - [anon_sym___attribute__] = ACTIONS(5445), - [anon_sym___based] = ACTIONS(5445), - [anon_sym_LBRACE] = ACTIONS(5447), - [anon_sym_RBRACE] = ACTIONS(5447), - [anon_sym_signed] = ACTIONS(5445), - [anon_sym_unsigned] = ACTIONS(5445), - [anon_sym_long] = ACTIONS(5445), - [anon_sym_short] = ACTIONS(5445), - [anon_sym_LBRACK] = ACTIONS(5447), - [anon_sym_RBRACK] = ACTIONS(5447), - [anon_sym_const] = ACTIONS(5445), - [anon_sym_constexpr] = ACTIONS(5445), - [anon_sym_volatile] = ACTIONS(5445), - [anon_sym_restrict] = ACTIONS(5445), - [anon_sym___restrict__] = ACTIONS(5445), - [anon_sym__Atomic] = ACTIONS(5445), - [anon_sym__Noreturn] = ACTIONS(5445), - [anon_sym_noreturn] = ACTIONS(5445), - [anon_sym_mutable] = ACTIONS(5445), - [anon_sym_constinit] = ACTIONS(5445), - [anon_sym_consteval] = ACTIONS(5445), - [sym_primitive_type] = ACTIONS(5445), - [anon_sym_COLON] = ACTIONS(5447), - [anon_sym_QMARK] = ACTIONS(5447), - [anon_sym_LT_EQ_GT] = ACTIONS(5447), - [anon_sym_or] = ACTIONS(5445), - [anon_sym_and] = ACTIONS(5445), - [anon_sym_bitor] = ACTIONS(5445), - [anon_sym_xor] = ACTIONS(5445), - [anon_sym_bitand] = ACTIONS(5445), - [anon_sym_not_eq] = ACTIONS(5445), - [anon_sym_DASH_DASH] = ACTIONS(5447), - [anon_sym_PLUS_PLUS] = ACTIONS(5447), - [anon_sym_DOT] = ACTIONS(5445), - [anon_sym_DOT_STAR] = ACTIONS(5447), - [anon_sym_DASH_GT] = ACTIONS(5447), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5445), - [anon_sym_decltype] = ACTIONS(5445), - [anon_sym_final] = ACTIONS(5445), - [anon_sym_override] = ACTIONS(5445), - [anon_sym_requires] = ACTIONS(5445), - }, - [2598] = { - [sym_identifier] = ACTIONS(5449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5451), - [anon_sym_COMMA] = ACTIONS(5451), - [anon_sym_RPAREN] = ACTIONS(5451), - [anon_sym_LPAREN2] = ACTIONS(5451), - [anon_sym_DASH] = ACTIONS(5449), - [anon_sym_PLUS] = ACTIONS(5449), - [anon_sym_STAR] = ACTIONS(5451), - [anon_sym_SLASH] = ACTIONS(5449), - [anon_sym_PERCENT] = ACTIONS(5451), - [anon_sym_PIPE_PIPE] = ACTIONS(5451), - [anon_sym_AMP_AMP] = ACTIONS(5451), - [anon_sym_PIPE] = ACTIONS(5449), - [anon_sym_CARET] = ACTIONS(5451), - [anon_sym_AMP] = ACTIONS(5449), - [anon_sym_EQ_EQ] = ACTIONS(5451), - [anon_sym_BANG_EQ] = ACTIONS(5451), - [anon_sym_GT] = ACTIONS(5449), - [anon_sym_GT_EQ] = ACTIONS(5451), - [anon_sym_LT_EQ] = ACTIONS(5449), - [anon_sym_LT] = ACTIONS(5449), - [anon_sym_LT_LT] = ACTIONS(5451), - [anon_sym_GT_GT] = ACTIONS(5451), - [anon_sym_SEMI] = ACTIONS(5451), - [anon_sym___extension__] = ACTIONS(5449), - [anon_sym___attribute__] = ACTIONS(5449), - [anon_sym___based] = ACTIONS(5449), - [anon_sym_LBRACE] = ACTIONS(5451), - [anon_sym_RBRACE] = ACTIONS(5451), - [anon_sym_signed] = ACTIONS(5449), - [anon_sym_unsigned] = ACTIONS(5449), - [anon_sym_long] = ACTIONS(5449), - [anon_sym_short] = ACTIONS(5449), - [anon_sym_LBRACK] = ACTIONS(5451), - [anon_sym_RBRACK] = ACTIONS(5451), - [anon_sym_const] = ACTIONS(5449), - [anon_sym_constexpr] = ACTIONS(5449), - [anon_sym_volatile] = ACTIONS(5449), - [anon_sym_restrict] = ACTIONS(5449), - [anon_sym___restrict__] = ACTIONS(5449), - [anon_sym__Atomic] = ACTIONS(5449), - [anon_sym__Noreturn] = ACTIONS(5449), - [anon_sym_noreturn] = ACTIONS(5449), - [anon_sym_mutable] = ACTIONS(5449), - [anon_sym_constinit] = ACTIONS(5449), - [anon_sym_consteval] = ACTIONS(5449), - [sym_primitive_type] = ACTIONS(5449), - [anon_sym_COLON] = ACTIONS(5451), - [anon_sym_QMARK] = ACTIONS(5451), - [anon_sym_LT_EQ_GT] = ACTIONS(5451), - [anon_sym_or] = ACTIONS(5449), - [anon_sym_and] = ACTIONS(5449), - [anon_sym_bitor] = ACTIONS(5449), - [anon_sym_xor] = ACTIONS(5449), - [anon_sym_bitand] = ACTIONS(5449), - [anon_sym_not_eq] = ACTIONS(5449), - [anon_sym_DASH_DASH] = ACTIONS(5451), - [anon_sym_PLUS_PLUS] = ACTIONS(5451), - [anon_sym_DOT] = ACTIONS(5449), - [anon_sym_DOT_STAR] = ACTIONS(5451), - [anon_sym_DASH_GT] = ACTIONS(5451), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5449), - [anon_sym_decltype] = ACTIONS(5449), - [anon_sym_final] = ACTIONS(5449), - [anon_sym_override] = ACTIONS(5449), - [anon_sym_requires] = ACTIONS(5449), - }, - [2599] = { - [sym_identifier] = ACTIONS(5453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5455), - [anon_sym_COMMA] = ACTIONS(5455), - [anon_sym_RPAREN] = ACTIONS(5455), - [anon_sym_LPAREN2] = ACTIONS(5455), - [anon_sym_DASH] = ACTIONS(5453), - [anon_sym_PLUS] = ACTIONS(5453), - [anon_sym_STAR] = ACTIONS(5455), - [anon_sym_SLASH] = ACTIONS(5453), - [anon_sym_PERCENT] = ACTIONS(5455), - [anon_sym_PIPE_PIPE] = ACTIONS(5455), - [anon_sym_AMP_AMP] = ACTIONS(5455), - [anon_sym_PIPE] = ACTIONS(5453), - [anon_sym_CARET] = ACTIONS(5455), - [anon_sym_AMP] = ACTIONS(5453), - [anon_sym_EQ_EQ] = ACTIONS(5455), - [anon_sym_BANG_EQ] = ACTIONS(5455), - [anon_sym_GT] = ACTIONS(5453), - [anon_sym_GT_EQ] = ACTIONS(5455), - [anon_sym_LT_EQ] = ACTIONS(5453), - [anon_sym_LT] = ACTIONS(5453), - [anon_sym_LT_LT] = ACTIONS(5455), - [anon_sym_GT_GT] = ACTIONS(5455), - [anon_sym_SEMI] = ACTIONS(5455), - [anon_sym___extension__] = ACTIONS(5453), - [anon_sym___attribute__] = ACTIONS(5453), - [anon_sym___based] = ACTIONS(5453), - [anon_sym_LBRACE] = ACTIONS(5455), - [anon_sym_RBRACE] = ACTIONS(5455), - [anon_sym_signed] = ACTIONS(5453), - [anon_sym_unsigned] = ACTIONS(5453), - [anon_sym_long] = ACTIONS(5453), - [anon_sym_short] = ACTIONS(5453), - [anon_sym_LBRACK] = ACTIONS(5455), - [anon_sym_RBRACK] = ACTIONS(5455), - [anon_sym_const] = ACTIONS(5453), - [anon_sym_constexpr] = ACTIONS(5453), - [anon_sym_volatile] = ACTIONS(5453), - [anon_sym_restrict] = ACTIONS(5453), - [anon_sym___restrict__] = ACTIONS(5453), - [anon_sym__Atomic] = ACTIONS(5453), - [anon_sym__Noreturn] = ACTIONS(5453), - [anon_sym_noreturn] = ACTIONS(5453), - [anon_sym_mutable] = ACTIONS(5453), - [anon_sym_constinit] = ACTIONS(5453), - [anon_sym_consteval] = ACTIONS(5453), - [sym_primitive_type] = ACTIONS(5453), - [anon_sym_COLON] = ACTIONS(5455), - [anon_sym_QMARK] = ACTIONS(5455), - [anon_sym_LT_EQ_GT] = ACTIONS(5455), - [anon_sym_or] = ACTIONS(5453), - [anon_sym_and] = ACTIONS(5453), - [anon_sym_bitor] = ACTIONS(5453), - [anon_sym_xor] = ACTIONS(5453), - [anon_sym_bitand] = ACTIONS(5453), - [anon_sym_not_eq] = ACTIONS(5453), - [anon_sym_DASH_DASH] = ACTIONS(5455), - [anon_sym_PLUS_PLUS] = ACTIONS(5455), - [anon_sym_DOT] = ACTIONS(5453), - [anon_sym_DOT_STAR] = ACTIONS(5455), - [anon_sym_DASH_GT] = ACTIONS(5455), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5453), - [anon_sym_decltype] = ACTIONS(5453), - [anon_sym_final] = ACTIONS(5453), - [anon_sym_override] = ACTIONS(5453), - [anon_sym_requires] = ACTIONS(5453), - }, - [2600] = { - [sym_identifier] = ACTIONS(2198), - [aux_sym_preproc_def_token1] = ACTIONS(2198), - [aux_sym_preproc_if_token1] = ACTIONS(2198), - [aux_sym_preproc_if_token2] = ACTIONS(2198), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2198), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2198), - [aux_sym_preproc_else_token1] = ACTIONS(2198), - [aux_sym_preproc_elif_token1] = ACTIONS(2198), - [sym_preproc_directive] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2196), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2198), - [anon_sym___extension__] = ACTIONS(2198), - [anon_sym_typedef] = ACTIONS(2198), - [anon_sym_extern] = ACTIONS(2198), - [anon_sym___attribute__] = ACTIONS(2198), - [anon_sym_COLON_COLON] = ACTIONS(2196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2196), - [anon_sym___declspec] = ACTIONS(2198), - [anon_sym___based] = ACTIONS(2198), - [anon_sym_signed] = ACTIONS(2198), - [anon_sym_unsigned] = ACTIONS(2198), - [anon_sym_long] = ACTIONS(2198), - [anon_sym_short] = ACTIONS(2198), - [anon_sym_LBRACK] = ACTIONS(2198), - [anon_sym_static] = ACTIONS(2198), - [anon_sym_register] = ACTIONS(2198), - [anon_sym_inline] = ACTIONS(2198), - [anon_sym___inline] = ACTIONS(2198), - [anon_sym___inline__] = ACTIONS(2198), - [anon_sym___forceinline] = ACTIONS(2198), - [anon_sym_thread_local] = ACTIONS(2198), - [anon_sym___thread] = ACTIONS(2198), - [anon_sym_const] = ACTIONS(2198), - [anon_sym_constexpr] = ACTIONS(2198), - [anon_sym_volatile] = ACTIONS(2198), - [anon_sym_restrict] = ACTIONS(2198), - [anon_sym___restrict__] = ACTIONS(2198), - [anon_sym__Atomic] = ACTIONS(2198), - [anon_sym__Noreturn] = ACTIONS(2198), - [anon_sym_noreturn] = ACTIONS(2198), - [anon_sym_mutable] = ACTIONS(2198), - [anon_sym_constinit] = ACTIONS(2198), - [anon_sym_consteval] = ACTIONS(2198), - [sym_primitive_type] = ACTIONS(2198), - [anon_sym_enum] = ACTIONS(2198), - [anon_sym_class] = ACTIONS(2198), - [anon_sym_struct] = ACTIONS(2198), - [anon_sym_union] = ACTIONS(2198), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2198), - [anon_sym_decltype] = ACTIONS(2198), - [anon_sym_virtual] = ACTIONS(2198), - [anon_sym_alignas] = ACTIONS(2198), - [anon_sym_explicit] = ACTIONS(2198), - [anon_sym_typename] = ACTIONS(2198), - [anon_sym_template] = ACTIONS(2198), - [anon_sym_operator] = ACTIONS(2198), - [anon_sym_friend] = ACTIONS(2198), - [anon_sym_public] = ACTIONS(2198), - [anon_sym_private] = ACTIONS(2198), - [anon_sym_protected] = ACTIONS(2198), - [anon_sym_using] = ACTIONS(2198), - [anon_sym_static_assert] = ACTIONS(2198), - [anon_sym_catch] = ACTIONS(2198), - }, - [2601] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5826), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2602] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4894), - [anon_sym_COMMA] = ACTIONS(4894), - [anon_sym_LPAREN2] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4899), - [anon_sym_STAR] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4899), - [anon_sym_PERCENT] = ACTIONS(4899), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_CARET] = ACTIONS(4899), - [anon_sym_AMP] = ACTIONS(4901), - [anon_sym_EQ_EQ] = ACTIONS(4904), - [anon_sym_BANG_EQ] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4899), - [anon_sym_GT_EQ] = ACTIONS(4899), - [anon_sym_LT_EQ] = ACTIONS(4899), - [anon_sym_LT] = ACTIONS(4899), - [anon_sym_LT_LT] = ACTIONS(4899), - [anon_sym_GT_GT] = ACTIONS(4899), - [anon_sym___extension__] = ACTIONS(4897), - [anon_sym_COLON_COLON] = ACTIONS(4897), - [anon_sym_LBRACE] = ACTIONS(4897), - [anon_sym_LBRACK] = ACTIONS(4894), - [anon_sym_EQ] = ACTIONS(4899), - [anon_sym_const] = ACTIONS(4892), - [anon_sym_constexpr] = ACTIONS(4897), - [anon_sym_volatile] = ACTIONS(4897), - [anon_sym_restrict] = ACTIONS(4897), - [anon_sym___restrict__] = ACTIONS(4897), - [anon_sym__Atomic] = ACTIONS(4897), - [anon_sym__Noreturn] = ACTIONS(4897), - [anon_sym_noreturn] = ACTIONS(4897), - [anon_sym_mutable] = ACTIONS(4897), - [anon_sym_constinit] = ACTIONS(4897), - [anon_sym_consteval] = ACTIONS(4897), - [anon_sym_QMARK] = ACTIONS(4904), - [anon_sym_STAR_EQ] = ACTIONS(4904), - [anon_sym_SLASH_EQ] = ACTIONS(4904), - [anon_sym_PERCENT_EQ] = ACTIONS(4904), - [anon_sym_PLUS_EQ] = ACTIONS(4904), - [anon_sym_DASH_EQ] = ACTIONS(4904), - [anon_sym_LT_LT_EQ] = ACTIONS(4904), - [anon_sym_GT_GT_EQ] = ACTIONS(4899), - [anon_sym_AMP_EQ] = ACTIONS(4904), - [anon_sym_CARET_EQ] = ACTIONS(4904), - [anon_sym_PIPE_EQ] = ACTIONS(4904), - [anon_sym_and_eq] = ACTIONS(4904), - [anon_sym_or_eq] = ACTIONS(4904), - [anon_sym_xor_eq] = ACTIONS(4904), - [anon_sym_LT_EQ_GT] = ACTIONS(4904), - [anon_sym_or] = ACTIONS(4899), - [anon_sym_and] = ACTIONS(4899), - [anon_sym_bitor] = ACTIONS(4904), - [anon_sym_xor] = ACTIONS(4899), - [anon_sym_bitand] = ACTIONS(4904), - [anon_sym_not_eq] = ACTIONS(4904), - [anon_sym_DASH_DASH] = ACTIONS(4904), - [anon_sym_PLUS_PLUS] = ACTIONS(4904), - [anon_sym_DOT] = ACTIONS(4899), - [anon_sym_DOT_STAR] = ACTIONS(4904), - [anon_sym_DASH_GT] = ACTIONS(4904), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4897), - [anon_sym_decltype] = ACTIONS(4897), - [anon_sym_GT2] = ACTIONS(4894), - }, - [2603] = { - [sym_string_literal] = STATE(2630), - [sym_raw_string_literal] = STATE(2630), - [aux_sym_concatenated_string_repeat1] = STATE(2630), - [sym_identifier] = ACTIONS(5457), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5132), - [anon_sym_COMMA] = ACTIONS(5132), - [anon_sym_RPAREN] = ACTIONS(5132), - [anon_sym_LPAREN2] = ACTIONS(5132), - [anon_sym_DASH] = ACTIONS(5134), - [anon_sym_PLUS] = ACTIONS(5134), - [anon_sym_STAR] = ACTIONS(5134), - [anon_sym_SLASH] = ACTIONS(5134), - [anon_sym_PERCENT] = ACTIONS(5134), - [anon_sym_PIPE_PIPE] = ACTIONS(5132), - [anon_sym_AMP_AMP] = ACTIONS(5132), - [anon_sym_PIPE] = ACTIONS(5134), - [anon_sym_CARET] = ACTIONS(5134), - [anon_sym_AMP] = ACTIONS(5134), - [anon_sym_EQ_EQ] = ACTIONS(5132), - [anon_sym_BANG_EQ] = ACTIONS(5132), - [anon_sym_GT] = ACTIONS(5134), - [anon_sym_GT_EQ] = ACTIONS(5132), - [anon_sym_LT_EQ] = ACTIONS(5134), - [anon_sym_LT] = ACTIONS(5134), - [anon_sym_LT_LT] = ACTIONS(5134), - [anon_sym_GT_GT] = ACTIONS(5134), - [anon_sym_LBRACK] = ACTIONS(5132), - [anon_sym_EQ] = ACTIONS(5134), - [anon_sym_QMARK] = ACTIONS(5132), - [anon_sym_STAR_EQ] = ACTIONS(5132), - [anon_sym_SLASH_EQ] = ACTIONS(5132), - [anon_sym_PERCENT_EQ] = ACTIONS(5132), - [anon_sym_PLUS_EQ] = ACTIONS(5132), - [anon_sym_DASH_EQ] = ACTIONS(5132), - [anon_sym_LT_LT_EQ] = ACTIONS(5132), - [anon_sym_GT_GT_EQ] = ACTIONS(5132), - [anon_sym_AMP_EQ] = ACTIONS(5132), - [anon_sym_CARET_EQ] = ACTIONS(5132), - [anon_sym_PIPE_EQ] = ACTIONS(5132), - [anon_sym_and_eq] = ACTIONS(5134), - [anon_sym_or_eq] = ACTIONS(5134), - [anon_sym_xor_eq] = ACTIONS(5134), - [anon_sym_LT_EQ_GT] = ACTIONS(5132), - [anon_sym_or] = ACTIONS(5134), - [anon_sym_and] = ACTIONS(5134), - [anon_sym_bitor] = ACTIONS(5134), - [anon_sym_xor] = ACTIONS(5134), - [anon_sym_bitand] = ACTIONS(5134), - [anon_sym_not_eq] = ACTIONS(5134), - [anon_sym_DASH_DASH] = ACTIONS(5132), - [anon_sym_PLUS_PLUS] = ACTIONS(5132), - [anon_sym_DOT] = ACTIONS(5134), - [anon_sym_DOT_STAR] = ACTIONS(5132), - [anon_sym_DASH_GT] = ACTIONS(5134), - [anon_sym_L_DQUOTE] = ACTIONS(5260), - [anon_sym_u_DQUOTE] = ACTIONS(5260), - [anon_sym_U_DQUOTE] = ACTIONS(5260), - [anon_sym_u8_DQUOTE] = ACTIONS(5260), - [anon_sym_DQUOTE] = ACTIONS(5260), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5262), - [anon_sym_LR_DQUOTE] = ACTIONS(5262), - [anon_sym_uR_DQUOTE] = ACTIONS(5262), - [anon_sym_UR_DQUOTE] = ACTIONS(5262), - [anon_sym_u8R_DQUOTE] = ACTIONS(5262), - [anon_sym_DASH_GT_STAR] = ACTIONS(5132), - [sym_literal_suffix] = ACTIONS(5134), - }, - [2604] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5819), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2605] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(4762), - [sym_raw_string_literal] = STATE(3456), - [aux_sym_structured_binding_declarator_repeat1] = STATE(8343), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(5459), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_RBRACK] = ACTIONS(5461), - [anon_sym_EQ] = ACTIONS(5464), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(5466), - [anon_sym_SLASH_EQ] = ACTIONS(5466), - [anon_sym_PERCENT_EQ] = ACTIONS(5466), - [anon_sym_PLUS_EQ] = ACTIONS(5466), - [anon_sym_DASH_EQ] = ACTIONS(5466), - [anon_sym_LT_LT_EQ] = ACTIONS(5466), - [anon_sym_GT_GT_EQ] = ACTIONS(5466), - [anon_sym_AMP_EQ] = ACTIONS(5466), - [anon_sym_CARET_EQ] = ACTIONS(5466), - [anon_sym_PIPE_EQ] = ACTIONS(5466), - [anon_sym_and_eq] = ACTIONS(5466), - [anon_sym_or_eq] = ACTIONS(5466), - [anon_sym_xor_eq] = ACTIONS(5466), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [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), - }, - [2606] = { - [sym_identifier] = ACTIONS(5468), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5470), - [anon_sym_COMMA] = ACTIONS(5470), - [anon_sym_RPAREN] = ACTIONS(5470), - [anon_sym_LPAREN2] = ACTIONS(5470), - [anon_sym_DASH] = ACTIONS(5468), - [anon_sym_PLUS] = ACTIONS(5468), - [anon_sym_STAR] = ACTIONS(5470), - [anon_sym_SLASH] = ACTIONS(5468), - [anon_sym_PERCENT] = ACTIONS(5470), - [anon_sym_PIPE_PIPE] = ACTIONS(5470), - [anon_sym_AMP_AMP] = ACTIONS(5470), - [anon_sym_PIPE] = ACTIONS(5468), - [anon_sym_CARET] = ACTIONS(5470), - [anon_sym_AMP] = ACTIONS(5468), - [anon_sym_EQ_EQ] = ACTIONS(5470), - [anon_sym_BANG_EQ] = ACTIONS(5470), - [anon_sym_GT] = ACTIONS(5468), - [anon_sym_GT_EQ] = ACTIONS(5470), - [anon_sym_LT_EQ] = ACTIONS(5468), - [anon_sym_LT] = ACTIONS(5468), - [anon_sym_LT_LT] = ACTIONS(5470), - [anon_sym_GT_GT] = ACTIONS(5470), - [anon_sym_SEMI] = ACTIONS(5470), - [anon_sym___extension__] = ACTIONS(5468), - [anon_sym___attribute__] = ACTIONS(5468), - [anon_sym___based] = ACTIONS(5468), - [anon_sym_LBRACE] = ACTIONS(5470), - [anon_sym_RBRACE] = ACTIONS(5470), - [anon_sym_signed] = ACTIONS(5468), - [anon_sym_unsigned] = ACTIONS(5468), - [anon_sym_long] = ACTIONS(5468), - [anon_sym_short] = ACTIONS(5468), - [anon_sym_LBRACK] = ACTIONS(5470), - [anon_sym_RBRACK] = ACTIONS(5470), - [anon_sym_const] = ACTIONS(5468), - [anon_sym_constexpr] = ACTIONS(5468), - [anon_sym_volatile] = ACTIONS(5468), - [anon_sym_restrict] = ACTIONS(5468), - [anon_sym___restrict__] = ACTIONS(5468), - [anon_sym__Atomic] = ACTIONS(5468), - [anon_sym__Noreturn] = ACTIONS(5468), - [anon_sym_noreturn] = ACTIONS(5468), - [anon_sym_mutable] = ACTIONS(5468), - [anon_sym_constinit] = ACTIONS(5468), - [anon_sym_consteval] = ACTIONS(5468), - [sym_primitive_type] = ACTIONS(5468), - [anon_sym_COLON] = ACTIONS(5470), - [anon_sym_QMARK] = ACTIONS(5470), - [anon_sym_LT_EQ_GT] = ACTIONS(5470), - [anon_sym_or] = ACTIONS(5468), - [anon_sym_and] = ACTIONS(5468), - [anon_sym_bitor] = ACTIONS(5468), - [anon_sym_xor] = ACTIONS(5468), - [anon_sym_bitand] = ACTIONS(5468), - [anon_sym_not_eq] = ACTIONS(5468), - [anon_sym_DASH_DASH] = ACTIONS(5470), - [anon_sym_PLUS_PLUS] = ACTIONS(5470), - [anon_sym_DOT] = ACTIONS(5468), - [anon_sym_DOT_STAR] = ACTIONS(5470), - [anon_sym_DASH_GT] = ACTIONS(5470), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5468), - [anon_sym_decltype] = ACTIONS(5468), - [anon_sym_final] = ACTIONS(5468), - [anon_sym_override] = ACTIONS(5468), - [anon_sym_requires] = ACTIONS(5468), - }, - [2607] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(4762), - [sym_raw_string_literal] = STATE(3456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_COLON] = ACTIONS(4334), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4312), - [anon_sym_or_eq] = ACTIONS(4312), - [anon_sym_xor_eq] = ACTIONS(4312), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [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), - }, - [2608] = { - [sym_identifier] = ACTIONS(5472), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5474), - [anon_sym_COMMA] = ACTIONS(5474), - [anon_sym_RPAREN] = ACTIONS(5474), - [anon_sym_LPAREN2] = ACTIONS(5474), - [anon_sym_DASH] = ACTIONS(5472), - [anon_sym_PLUS] = ACTIONS(5472), - [anon_sym_STAR] = ACTIONS(5474), - [anon_sym_SLASH] = ACTIONS(5472), - [anon_sym_PERCENT] = ACTIONS(5474), - [anon_sym_PIPE_PIPE] = ACTIONS(5474), - [anon_sym_AMP_AMP] = ACTIONS(5474), - [anon_sym_PIPE] = ACTIONS(5472), - [anon_sym_CARET] = ACTIONS(5474), - [anon_sym_AMP] = ACTIONS(5472), - [anon_sym_EQ_EQ] = ACTIONS(5474), - [anon_sym_BANG_EQ] = ACTIONS(5474), - [anon_sym_GT] = ACTIONS(5472), - [anon_sym_GT_EQ] = ACTIONS(5474), - [anon_sym_LT_EQ] = ACTIONS(5472), - [anon_sym_LT] = ACTIONS(5472), - [anon_sym_LT_LT] = ACTIONS(5474), - [anon_sym_GT_GT] = ACTIONS(5474), - [anon_sym_SEMI] = ACTIONS(5474), - [anon_sym___extension__] = ACTIONS(5472), - [anon_sym___attribute__] = ACTIONS(5472), - [anon_sym___based] = ACTIONS(5472), - [anon_sym_LBRACE] = ACTIONS(5474), - [anon_sym_RBRACE] = ACTIONS(5474), - [anon_sym_signed] = ACTIONS(5472), - [anon_sym_unsigned] = ACTIONS(5472), - [anon_sym_long] = ACTIONS(5472), - [anon_sym_short] = ACTIONS(5472), - [anon_sym_LBRACK] = ACTIONS(5474), - [anon_sym_RBRACK] = ACTIONS(5474), - [anon_sym_const] = ACTIONS(5472), - [anon_sym_constexpr] = ACTIONS(5472), - [anon_sym_volatile] = ACTIONS(5472), - [anon_sym_restrict] = ACTIONS(5472), - [anon_sym___restrict__] = ACTIONS(5472), - [anon_sym__Atomic] = ACTIONS(5472), - [anon_sym__Noreturn] = ACTIONS(5472), - [anon_sym_noreturn] = ACTIONS(5472), - [anon_sym_mutable] = ACTIONS(5472), - [anon_sym_constinit] = ACTIONS(5472), - [anon_sym_consteval] = ACTIONS(5472), - [sym_primitive_type] = ACTIONS(5472), - [anon_sym_COLON] = ACTIONS(5474), - [anon_sym_QMARK] = ACTIONS(5474), - [anon_sym_LT_EQ_GT] = ACTIONS(5474), - [anon_sym_or] = ACTIONS(5472), - [anon_sym_and] = ACTIONS(5472), - [anon_sym_bitor] = ACTIONS(5472), - [anon_sym_xor] = ACTIONS(5472), - [anon_sym_bitand] = ACTIONS(5472), - [anon_sym_not_eq] = ACTIONS(5472), - [anon_sym_DASH_DASH] = ACTIONS(5474), - [anon_sym_PLUS_PLUS] = ACTIONS(5474), - [anon_sym_DOT] = ACTIONS(5472), - [anon_sym_DOT_STAR] = ACTIONS(5474), - [anon_sym_DASH_GT] = ACTIONS(5474), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5472), - [anon_sym_decltype] = ACTIONS(5472), - [anon_sym_final] = ACTIONS(5472), - [anon_sym_override] = ACTIONS(5472), - [anon_sym_requires] = ACTIONS(5472), - }, - [2609] = { - [sym_identifier] = ACTIONS(5476), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5478), - [anon_sym_COMMA] = ACTIONS(5478), - [anon_sym_RPAREN] = ACTIONS(5478), - [anon_sym_LPAREN2] = ACTIONS(5478), - [anon_sym_DASH] = ACTIONS(5476), - [anon_sym_PLUS] = ACTIONS(5476), - [anon_sym_STAR] = ACTIONS(5478), - [anon_sym_SLASH] = ACTIONS(5476), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_PIPE_PIPE] = ACTIONS(5478), - [anon_sym_AMP_AMP] = ACTIONS(5478), - [anon_sym_PIPE] = ACTIONS(5476), - [anon_sym_CARET] = ACTIONS(5478), - [anon_sym_AMP] = ACTIONS(5476), - [anon_sym_EQ_EQ] = ACTIONS(5478), - [anon_sym_BANG_EQ] = ACTIONS(5478), - [anon_sym_GT] = ACTIONS(5476), - [anon_sym_GT_EQ] = ACTIONS(5478), - [anon_sym_LT_EQ] = ACTIONS(5476), - [anon_sym_LT] = ACTIONS(5476), - [anon_sym_LT_LT] = ACTIONS(5478), - [anon_sym_GT_GT] = ACTIONS(5478), - [anon_sym_SEMI] = ACTIONS(5478), - [anon_sym___extension__] = ACTIONS(5476), - [anon_sym___attribute__] = ACTIONS(5476), - [anon_sym___based] = ACTIONS(5476), - [anon_sym_LBRACE] = ACTIONS(5478), - [anon_sym_RBRACE] = ACTIONS(5478), - [anon_sym_signed] = ACTIONS(5476), - [anon_sym_unsigned] = ACTIONS(5476), - [anon_sym_long] = ACTIONS(5476), - [anon_sym_short] = ACTIONS(5476), - [anon_sym_LBRACK] = ACTIONS(5478), - [anon_sym_RBRACK] = ACTIONS(5478), - [anon_sym_const] = ACTIONS(5476), - [anon_sym_constexpr] = ACTIONS(5476), - [anon_sym_volatile] = ACTIONS(5476), - [anon_sym_restrict] = ACTIONS(5476), - [anon_sym___restrict__] = ACTIONS(5476), - [anon_sym__Atomic] = ACTIONS(5476), - [anon_sym__Noreturn] = ACTIONS(5476), - [anon_sym_noreturn] = ACTIONS(5476), - [anon_sym_mutable] = ACTIONS(5476), - [anon_sym_constinit] = ACTIONS(5476), - [anon_sym_consteval] = ACTIONS(5476), - [sym_primitive_type] = ACTIONS(5476), - [anon_sym_COLON] = ACTIONS(5478), - [anon_sym_QMARK] = ACTIONS(5478), - [anon_sym_LT_EQ_GT] = ACTIONS(5478), - [anon_sym_or] = ACTIONS(5476), - [anon_sym_and] = ACTIONS(5476), - [anon_sym_bitor] = ACTIONS(5476), - [anon_sym_xor] = ACTIONS(5476), - [anon_sym_bitand] = ACTIONS(5476), - [anon_sym_not_eq] = ACTIONS(5476), - [anon_sym_DASH_DASH] = ACTIONS(5478), - [anon_sym_PLUS_PLUS] = ACTIONS(5478), - [anon_sym_DOT] = ACTIONS(5476), - [anon_sym_DOT_STAR] = ACTIONS(5478), - [anon_sym_DASH_GT] = ACTIONS(5478), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5476), - [anon_sym_decltype] = ACTIONS(5476), - [anon_sym_final] = ACTIONS(5476), - [anon_sym_override] = ACTIONS(5476), - [anon_sym_requires] = ACTIONS(5476), - }, - [2610] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5837), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2611] = { - [sym_identifier] = ACTIONS(5480), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5482), - [anon_sym_COMMA] = ACTIONS(5482), - [anon_sym_RPAREN] = ACTIONS(5482), - [anon_sym_LPAREN2] = ACTIONS(5482), - [anon_sym_DASH] = ACTIONS(5480), - [anon_sym_PLUS] = ACTIONS(5480), - [anon_sym_STAR] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5480), - [anon_sym_PERCENT] = ACTIONS(5482), - [anon_sym_PIPE_PIPE] = ACTIONS(5482), - [anon_sym_AMP_AMP] = ACTIONS(5482), - [anon_sym_PIPE] = ACTIONS(5480), - [anon_sym_CARET] = ACTIONS(5482), - [anon_sym_AMP] = ACTIONS(5480), - [anon_sym_EQ_EQ] = ACTIONS(5482), - [anon_sym_BANG_EQ] = ACTIONS(5482), - [anon_sym_GT] = ACTIONS(5480), - [anon_sym_GT_EQ] = ACTIONS(5482), - [anon_sym_LT_EQ] = ACTIONS(5480), - [anon_sym_LT] = ACTIONS(5480), - [anon_sym_LT_LT] = ACTIONS(5482), - [anon_sym_GT_GT] = ACTIONS(5482), - [anon_sym_SEMI] = ACTIONS(5482), - [anon_sym___extension__] = ACTIONS(5480), - [anon_sym___attribute__] = ACTIONS(5480), - [anon_sym___based] = ACTIONS(5480), - [anon_sym_LBRACE] = ACTIONS(5482), - [anon_sym_RBRACE] = ACTIONS(5482), - [anon_sym_signed] = ACTIONS(5480), - [anon_sym_unsigned] = ACTIONS(5480), - [anon_sym_long] = ACTIONS(5480), - [anon_sym_short] = ACTIONS(5480), - [anon_sym_LBRACK] = ACTIONS(5482), - [anon_sym_RBRACK] = ACTIONS(5482), - [anon_sym_const] = ACTIONS(5480), - [anon_sym_constexpr] = ACTIONS(5480), - [anon_sym_volatile] = ACTIONS(5480), - [anon_sym_restrict] = ACTIONS(5480), - [anon_sym___restrict__] = ACTIONS(5480), - [anon_sym__Atomic] = ACTIONS(5480), - [anon_sym__Noreturn] = ACTIONS(5480), - [anon_sym_noreturn] = ACTIONS(5480), - [anon_sym_mutable] = ACTIONS(5480), - [anon_sym_constinit] = ACTIONS(5480), - [anon_sym_consteval] = ACTIONS(5480), - [sym_primitive_type] = ACTIONS(5480), - [anon_sym_COLON] = ACTIONS(5482), - [anon_sym_QMARK] = ACTIONS(5482), - [anon_sym_LT_EQ_GT] = ACTIONS(5482), - [anon_sym_or] = ACTIONS(5480), - [anon_sym_and] = ACTIONS(5480), - [anon_sym_bitor] = ACTIONS(5480), - [anon_sym_xor] = ACTIONS(5480), - [anon_sym_bitand] = ACTIONS(5480), - [anon_sym_not_eq] = ACTIONS(5480), - [anon_sym_DASH_DASH] = ACTIONS(5482), - [anon_sym_PLUS_PLUS] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(5480), - [anon_sym_DOT_STAR] = ACTIONS(5482), - [anon_sym_DASH_GT] = ACTIONS(5482), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5480), - [anon_sym_decltype] = ACTIONS(5480), - [anon_sym_final] = ACTIONS(5480), - [anon_sym_override] = ACTIONS(5480), - [anon_sym_requires] = ACTIONS(5480), - }, - [2612] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token2] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [aux_sym_preproc_else_token1] = ACTIONS(2194), - [aux_sym_preproc_elif_token1] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_friend] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - [anon_sym_catch] = ACTIONS(2194), - }, - [2613] = { - [sym_identifier] = ACTIONS(5484), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5486), - [anon_sym_COMMA] = ACTIONS(5486), - [anon_sym_RPAREN] = ACTIONS(5486), - [anon_sym_LPAREN2] = ACTIONS(5486), - [anon_sym_DASH] = ACTIONS(5484), - [anon_sym_PLUS] = ACTIONS(5484), - [anon_sym_STAR] = ACTIONS(5486), - [anon_sym_SLASH] = ACTIONS(5484), - [anon_sym_PERCENT] = ACTIONS(5486), - [anon_sym_PIPE_PIPE] = ACTIONS(5486), - [anon_sym_AMP_AMP] = ACTIONS(5486), - [anon_sym_PIPE] = ACTIONS(5484), - [anon_sym_CARET] = ACTIONS(5486), - [anon_sym_AMP] = ACTIONS(5484), - [anon_sym_EQ_EQ] = ACTIONS(5486), - [anon_sym_BANG_EQ] = ACTIONS(5486), - [anon_sym_GT] = ACTIONS(5484), - [anon_sym_GT_EQ] = ACTIONS(5486), - [anon_sym_LT_EQ] = ACTIONS(5484), - [anon_sym_LT] = ACTIONS(5484), - [anon_sym_LT_LT] = ACTIONS(5486), - [anon_sym_GT_GT] = ACTIONS(5486), - [anon_sym_SEMI] = ACTIONS(5486), - [anon_sym___extension__] = ACTIONS(5484), - [anon_sym___attribute__] = ACTIONS(5484), - [anon_sym___based] = ACTIONS(5484), - [anon_sym_LBRACE] = ACTIONS(5486), - [anon_sym_RBRACE] = ACTIONS(5486), - [anon_sym_signed] = ACTIONS(5484), - [anon_sym_unsigned] = ACTIONS(5484), - [anon_sym_long] = ACTIONS(5484), - [anon_sym_short] = ACTIONS(5484), - [anon_sym_LBRACK] = ACTIONS(5486), - [anon_sym_RBRACK] = ACTIONS(5486), - [anon_sym_const] = ACTIONS(5484), - [anon_sym_constexpr] = ACTIONS(5484), - [anon_sym_volatile] = ACTIONS(5484), - [anon_sym_restrict] = ACTIONS(5484), - [anon_sym___restrict__] = ACTIONS(5484), - [anon_sym__Atomic] = ACTIONS(5484), - [anon_sym__Noreturn] = ACTIONS(5484), - [anon_sym_noreturn] = ACTIONS(5484), - [anon_sym_mutable] = ACTIONS(5484), - [anon_sym_constinit] = ACTIONS(5484), - [anon_sym_consteval] = ACTIONS(5484), - [sym_primitive_type] = ACTIONS(5484), - [anon_sym_COLON] = ACTIONS(5486), - [anon_sym_QMARK] = ACTIONS(5486), - [anon_sym_LT_EQ_GT] = ACTIONS(5486), - [anon_sym_or] = ACTIONS(5484), - [anon_sym_and] = ACTIONS(5484), - [anon_sym_bitor] = ACTIONS(5484), - [anon_sym_xor] = ACTIONS(5484), - [anon_sym_bitand] = ACTIONS(5484), - [anon_sym_not_eq] = ACTIONS(5484), - [anon_sym_DASH_DASH] = ACTIONS(5486), - [anon_sym_PLUS_PLUS] = ACTIONS(5486), - [anon_sym_DOT] = ACTIONS(5484), - [anon_sym_DOT_STAR] = ACTIONS(5486), - [anon_sym_DASH_GT] = ACTIONS(5486), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5484), - [anon_sym_decltype] = ACTIONS(5484), - [anon_sym_final] = ACTIONS(5484), - [anon_sym_override] = ACTIONS(5484), - [anon_sym_requires] = ACTIONS(5484), - }, - [2614] = { - [sym_identifier] = ACTIONS(5488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5490), - [anon_sym_COMMA] = ACTIONS(5490), - [anon_sym_RPAREN] = ACTIONS(5490), - [anon_sym_LPAREN2] = ACTIONS(5490), - [anon_sym_DASH] = ACTIONS(5488), - [anon_sym_PLUS] = ACTIONS(5488), - [anon_sym_STAR] = ACTIONS(5490), - [anon_sym_SLASH] = ACTIONS(5488), - [anon_sym_PERCENT] = ACTIONS(5490), - [anon_sym_PIPE_PIPE] = ACTIONS(5490), - [anon_sym_AMP_AMP] = ACTIONS(5490), - [anon_sym_PIPE] = ACTIONS(5488), - [anon_sym_CARET] = ACTIONS(5490), - [anon_sym_AMP] = ACTIONS(5488), - [anon_sym_EQ_EQ] = ACTIONS(5490), - [anon_sym_BANG_EQ] = ACTIONS(5490), - [anon_sym_GT] = ACTIONS(5488), - [anon_sym_GT_EQ] = ACTIONS(5490), - [anon_sym_LT_EQ] = ACTIONS(5488), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_LT_LT] = ACTIONS(5490), - [anon_sym_GT_GT] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(5490), - [anon_sym___extension__] = ACTIONS(5488), - [anon_sym___attribute__] = ACTIONS(5488), - [anon_sym___based] = ACTIONS(5488), - [anon_sym_LBRACE] = ACTIONS(5490), - [anon_sym_RBRACE] = ACTIONS(5490), - [anon_sym_signed] = ACTIONS(5488), - [anon_sym_unsigned] = ACTIONS(5488), - [anon_sym_long] = ACTIONS(5488), - [anon_sym_short] = ACTIONS(5488), - [anon_sym_LBRACK] = ACTIONS(5490), - [anon_sym_RBRACK] = ACTIONS(5490), - [anon_sym_const] = ACTIONS(5488), - [anon_sym_constexpr] = ACTIONS(5488), - [anon_sym_volatile] = ACTIONS(5488), - [anon_sym_restrict] = ACTIONS(5488), - [anon_sym___restrict__] = ACTIONS(5488), - [anon_sym__Atomic] = ACTIONS(5488), - [anon_sym__Noreturn] = ACTIONS(5488), - [anon_sym_noreturn] = ACTIONS(5488), - [anon_sym_mutable] = ACTIONS(5488), - [anon_sym_constinit] = ACTIONS(5488), - [anon_sym_consteval] = ACTIONS(5488), - [sym_primitive_type] = ACTIONS(5488), - [anon_sym_COLON] = ACTIONS(5490), - [anon_sym_QMARK] = ACTIONS(5490), - [anon_sym_LT_EQ_GT] = ACTIONS(5490), - [anon_sym_or] = ACTIONS(5488), - [anon_sym_and] = ACTIONS(5488), - [anon_sym_bitor] = ACTIONS(5488), - [anon_sym_xor] = ACTIONS(5488), - [anon_sym_bitand] = ACTIONS(5488), - [anon_sym_not_eq] = ACTIONS(5488), - [anon_sym_DASH_DASH] = ACTIONS(5490), - [anon_sym_PLUS_PLUS] = ACTIONS(5490), - [anon_sym_DOT] = ACTIONS(5488), - [anon_sym_DOT_STAR] = ACTIONS(5490), - [anon_sym_DASH_GT] = ACTIONS(5490), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5488), - [anon_sym_decltype] = ACTIONS(5488), - [anon_sym_final] = ACTIONS(5488), - [anon_sym_override] = ACTIONS(5488), - [anon_sym_requires] = ACTIONS(5488), - }, - [2615] = { - [sym_identifier] = ACTIONS(5492), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5494), - [anon_sym_COMMA] = ACTIONS(5494), - [anon_sym_RPAREN] = ACTIONS(5494), - [anon_sym_LPAREN2] = ACTIONS(5494), - [anon_sym_DASH] = ACTIONS(5492), - [anon_sym_PLUS] = ACTIONS(5492), - [anon_sym_STAR] = ACTIONS(5494), - [anon_sym_SLASH] = ACTIONS(5492), - [anon_sym_PERCENT] = ACTIONS(5494), - [anon_sym_PIPE_PIPE] = ACTIONS(5494), - [anon_sym_AMP_AMP] = ACTIONS(5494), - [anon_sym_PIPE] = ACTIONS(5492), - [anon_sym_CARET] = ACTIONS(5494), - [anon_sym_AMP] = ACTIONS(5492), - [anon_sym_EQ_EQ] = ACTIONS(5494), - [anon_sym_BANG_EQ] = ACTIONS(5494), - [anon_sym_GT] = ACTIONS(5492), - [anon_sym_GT_EQ] = ACTIONS(5494), - [anon_sym_LT_EQ] = ACTIONS(5492), - [anon_sym_LT] = ACTIONS(5492), - [anon_sym_LT_LT] = ACTIONS(5494), - [anon_sym_GT_GT] = ACTIONS(5494), - [anon_sym_SEMI] = ACTIONS(5494), - [anon_sym___extension__] = ACTIONS(5492), - [anon_sym___attribute__] = ACTIONS(5492), - [anon_sym___based] = ACTIONS(5492), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(5494), - [anon_sym_signed] = ACTIONS(5492), - [anon_sym_unsigned] = ACTIONS(5492), - [anon_sym_long] = ACTIONS(5492), - [anon_sym_short] = ACTIONS(5492), - [anon_sym_LBRACK] = ACTIONS(5494), - [anon_sym_RBRACK] = ACTIONS(5494), - [anon_sym_const] = ACTIONS(5492), - [anon_sym_constexpr] = ACTIONS(5492), - [anon_sym_volatile] = ACTIONS(5492), - [anon_sym_restrict] = ACTIONS(5492), - [anon_sym___restrict__] = ACTIONS(5492), - [anon_sym__Atomic] = ACTIONS(5492), - [anon_sym__Noreturn] = ACTIONS(5492), - [anon_sym_noreturn] = ACTIONS(5492), - [anon_sym_mutable] = ACTIONS(5492), - [anon_sym_constinit] = ACTIONS(5492), - [anon_sym_consteval] = ACTIONS(5492), - [sym_primitive_type] = ACTIONS(5492), - [anon_sym_COLON] = ACTIONS(5494), - [anon_sym_QMARK] = ACTIONS(5494), - [anon_sym_LT_EQ_GT] = ACTIONS(5494), - [anon_sym_or] = ACTIONS(5492), - [anon_sym_and] = ACTIONS(5492), - [anon_sym_bitor] = ACTIONS(5492), - [anon_sym_xor] = ACTIONS(5492), - [anon_sym_bitand] = ACTIONS(5492), - [anon_sym_not_eq] = ACTIONS(5492), - [anon_sym_DASH_DASH] = ACTIONS(5494), - [anon_sym_PLUS_PLUS] = ACTIONS(5494), - [anon_sym_DOT] = ACTIONS(5492), - [anon_sym_DOT_STAR] = ACTIONS(5494), - [anon_sym_DASH_GT] = ACTIONS(5494), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5492), - [anon_sym_decltype] = ACTIONS(5492), - [anon_sym_final] = ACTIONS(5492), - [anon_sym_override] = ACTIONS(5492), - [anon_sym_requires] = ACTIONS(5492), - }, - [2616] = { - [sym_identifier] = ACTIONS(5496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5498), - [anon_sym_COMMA] = ACTIONS(5498), - [anon_sym_RPAREN] = ACTIONS(5498), - [anon_sym_LPAREN2] = ACTIONS(5498), - [anon_sym_DASH] = ACTIONS(5496), - [anon_sym_PLUS] = ACTIONS(5496), - [anon_sym_STAR] = ACTIONS(5498), - [anon_sym_SLASH] = ACTIONS(5496), - [anon_sym_PERCENT] = ACTIONS(5498), - [anon_sym_PIPE_PIPE] = ACTIONS(5498), - [anon_sym_AMP_AMP] = ACTIONS(5498), - [anon_sym_PIPE] = ACTIONS(5496), - [anon_sym_CARET] = ACTIONS(5498), - [anon_sym_AMP] = ACTIONS(5496), - [anon_sym_EQ_EQ] = ACTIONS(5498), - [anon_sym_BANG_EQ] = ACTIONS(5498), - [anon_sym_GT] = ACTIONS(5496), - [anon_sym_GT_EQ] = ACTIONS(5498), - [anon_sym_LT_EQ] = ACTIONS(5496), - [anon_sym_LT] = ACTIONS(5496), - [anon_sym_LT_LT] = ACTIONS(5498), - [anon_sym_GT_GT] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(5498), - [anon_sym___extension__] = ACTIONS(5496), - [anon_sym___attribute__] = ACTIONS(5496), - [anon_sym___based] = ACTIONS(5496), - [anon_sym_LBRACE] = ACTIONS(5498), - [anon_sym_RBRACE] = ACTIONS(5498), - [anon_sym_signed] = ACTIONS(5496), - [anon_sym_unsigned] = ACTIONS(5496), - [anon_sym_long] = ACTIONS(5496), - [anon_sym_short] = ACTIONS(5496), - [anon_sym_LBRACK] = ACTIONS(5498), - [anon_sym_RBRACK] = ACTIONS(5498), - [anon_sym_const] = ACTIONS(5496), - [anon_sym_constexpr] = ACTIONS(5496), - [anon_sym_volatile] = ACTIONS(5496), - [anon_sym_restrict] = ACTIONS(5496), - [anon_sym___restrict__] = ACTIONS(5496), - [anon_sym__Atomic] = ACTIONS(5496), - [anon_sym__Noreturn] = ACTIONS(5496), - [anon_sym_noreturn] = ACTIONS(5496), - [anon_sym_mutable] = ACTIONS(5496), - [anon_sym_constinit] = ACTIONS(5496), - [anon_sym_consteval] = ACTIONS(5496), - [sym_primitive_type] = ACTIONS(5496), - [anon_sym_COLON] = ACTIONS(5498), - [anon_sym_QMARK] = ACTIONS(5498), - [anon_sym_LT_EQ_GT] = ACTIONS(5498), - [anon_sym_or] = ACTIONS(5496), - [anon_sym_and] = ACTIONS(5496), - [anon_sym_bitor] = ACTIONS(5496), - [anon_sym_xor] = ACTIONS(5496), - [anon_sym_bitand] = ACTIONS(5496), - [anon_sym_not_eq] = ACTIONS(5496), - [anon_sym_DASH_DASH] = ACTIONS(5498), - [anon_sym_PLUS_PLUS] = ACTIONS(5498), - [anon_sym_DOT] = ACTIONS(5496), - [anon_sym_DOT_STAR] = ACTIONS(5498), - [anon_sym_DASH_GT] = ACTIONS(5498), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5496), - [anon_sym_decltype] = ACTIONS(5496), - [anon_sym_final] = ACTIONS(5496), - [anon_sym_override] = ACTIONS(5496), - [anon_sym_requires] = ACTIONS(5496), - }, - [2617] = { - [sym_identifier] = ACTIONS(5500), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5502), - [anon_sym_COMMA] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5502), - [anon_sym_LPAREN2] = ACTIONS(5502), - [anon_sym_DASH] = ACTIONS(5500), - [anon_sym_PLUS] = ACTIONS(5500), - [anon_sym_STAR] = ACTIONS(5502), - [anon_sym_SLASH] = ACTIONS(5500), - [anon_sym_PERCENT] = ACTIONS(5502), - [anon_sym_PIPE_PIPE] = ACTIONS(5502), - [anon_sym_AMP_AMP] = ACTIONS(5502), - [anon_sym_PIPE] = ACTIONS(5500), - [anon_sym_CARET] = ACTIONS(5502), - [anon_sym_AMP] = ACTIONS(5500), - [anon_sym_EQ_EQ] = ACTIONS(5502), - [anon_sym_BANG_EQ] = ACTIONS(5502), - [anon_sym_GT] = ACTIONS(5500), - [anon_sym_GT_EQ] = ACTIONS(5502), - [anon_sym_LT_EQ] = ACTIONS(5500), - [anon_sym_LT] = ACTIONS(5500), - [anon_sym_LT_LT] = ACTIONS(5502), - [anon_sym_GT_GT] = ACTIONS(5502), - [anon_sym_SEMI] = ACTIONS(5502), - [anon_sym___extension__] = ACTIONS(5500), - [anon_sym___attribute__] = ACTIONS(5500), - [anon_sym___based] = ACTIONS(5500), - [anon_sym_LBRACE] = ACTIONS(5502), - [anon_sym_RBRACE] = ACTIONS(5502), - [anon_sym_signed] = ACTIONS(5500), - [anon_sym_unsigned] = ACTIONS(5500), - [anon_sym_long] = ACTIONS(5500), - [anon_sym_short] = ACTIONS(5500), - [anon_sym_LBRACK] = ACTIONS(5502), - [anon_sym_RBRACK] = ACTIONS(5502), - [anon_sym_const] = ACTIONS(5500), - [anon_sym_constexpr] = ACTIONS(5500), - [anon_sym_volatile] = ACTIONS(5500), - [anon_sym_restrict] = ACTIONS(5500), - [anon_sym___restrict__] = ACTIONS(5500), - [anon_sym__Atomic] = ACTIONS(5500), - [anon_sym__Noreturn] = ACTIONS(5500), - [anon_sym_noreturn] = ACTIONS(5500), - [anon_sym_mutable] = ACTIONS(5500), - [anon_sym_constinit] = ACTIONS(5500), - [anon_sym_consteval] = ACTIONS(5500), - [sym_primitive_type] = ACTIONS(5500), - [anon_sym_COLON] = ACTIONS(5502), - [anon_sym_QMARK] = ACTIONS(5502), - [anon_sym_LT_EQ_GT] = ACTIONS(5502), - [anon_sym_or] = ACTIONS(5500), - [anon_sym_and] = ACTIONS(5500), - [anon_sym_bitor] = ACTIONS(5500), - [anon_sym_xor] = ACTIONS(5500), - [anon_sym_bitand] = ACTIONS(5500), - [anon_sym_not_eq] = ACTIONS(5500), - [anon_sym_DASH_DASH] = ACTIONS(5502), - [anon_sym_PLUS_PLUS] = ACTIONS(5502), - [anon_sym_DOT] = ACTIONS(5500), - [anon_sym_DOT_STAR] = ACTIONS(5502), - [anon_sym_DASH_GT] = ACTIONS(5502), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5500), - [anon_sym_decltype] = ACTIONS(5500), - [anon_sym_final] = ACTIONS(5500), - [anon_sym_override] = ACTIONS(5500), - [anon_sym_requires] = ACTIONS(5500), - }, - [2618] = { - [sym_identifier] = ACTIONS(5504), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5506), - [anon_sym_COMMA] = ACTIONS(5506), - [anon_sym_RPAREN] = ACTIONS(5506), - [anon_sym_LPAREN2] = ACTIONS(5506), - [anon_sym_DASH] = ACTIONS(5504), - [anon_sym_PLUS] = ACTIONS(5504), - [anon_sym_STAR] = ACTIONS(5506), - [anon_sym_SLASH] = ACTIONS(5504), - [anon_sym_PERCENT] = ACTIONS(5506), - [anon_sym_PIPE_PIPE] = ACTIONS(5506), - [anon_sym_AMP_AMP] = ACTIONS(5506), - [anon_sym_PIPE] = ACTIONS(5504), - [anon_sym_CARET] = ACTIONS(5506), - [anon_sym_AMP] = ACTIONS(5504), - [anon_sym_EQ_EQ] = ACTIONS(5506), - [anon_sym_BANG_EQ] = ACTIONS(5506), - [anon_sym_GT] = ACTIONS(5504), - [anon_sym_GT_EQ] = ACTIONS(5506), - [anon_sym_LT_EQ] = ACTIONS(5504), - [anon_sym_LT] = ACTIONS(5504), - [anon_sym_LT_LT] = ACTIONS(5506), - [anon_sym_GT_GT] = ACTIONS(5506), - [anon_sym_SEMI] = ACTIONS(5506), - [anon_sym___extension__] = ACTIONS(5504), - [anon_sym___attribute__] = ACTIONS(5504), - [anon_sym___based] = ACTIONS(5504), - [anon_sym_LBRACE] = ACTIONS(5506), - [anon_sym_RBRACE] = ACTIONS(5506), - [anon_sym_signed] = ACTIONS(5504), - [anon_sym_unsigned] = ACTIONS(5504), - [anon_sym_long] = ACTIONS(5504), - [anon_sym_short] = ACTIONS(5504), - [anon_sym_LBRACK] = ACTIONS(5506), - [anon_sym_RBRACK] = ACTIONS(5506), - [anon_sym_const] = ACTIONS(5504), - [anon_sym_constexpr] = ACTIONS(5504), - [anon_sym_volatile] = ACTIONS(5504), - [anon_sym_restrict] = ACTIONS(5504), - [anon_sym___restrict__] = ACTIONS(5504), - [anon_sym__Atomic] = ACTIONS(5504), - [anon_sym__Noreturn] = ACTIONS(5504), - [anon_sym_noreturn] = ACTIONS(5504), - [anon_sym_mutable] = ACTIONS(5504), - [anon_sym_constinit] = ACTIONS(5504), - [anon_sym_consteval] = ACTIONS(5504), - [sym_primitive_type] = ACTIONS(5504), - [anon_sym_COLON] = ACTIONS(5506), - [anon_sym_QMARK] = ACTIONS(5506), - [anon_sym_LT_EQ_GT] = ACTIONS(5506), - [anon_sym_or] = ACTIONS(5504), - [anon_sym_and] = ACTIONS(5504), - [anon_sym_bitor] = ACTIONS(5504), - [anon_sym_xor] = ACTIONS(5504), - [anon_sym_bitand] = ACTIONS(5504), - [anon_sym_not_eq] = ACTIONS(5504), - [anon_sym_DASH_DASH] = ACTIONS(5506), - [anon_sym_PLUS_PLUS] = ACTIONS(5506), - [anon_sym_DOT] = ACTIONS(5504), - [anon_sym_DOT_STAR] = ACTIONS(5506), - [anon_sym_DASH_GT] = ACTIONS(5506), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5504), - [anon_sym_decltype] = ACTIONS(5504), - [anon_sym_final] = ACTIONS(5504), - [anon_sym_override] = ACTIONS(5504), - [anon_sym_requires] = ACTIONS(5504), - }, - [2619] = { - [sym_identifier] = ACTIONS(3506), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3508), - [anon_sym_COMMA] = ACTIONS(3508), - [anon_sym_RPAREN] = ACTIONS(3508), - [anon_sym_LPAREN2] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3508), - [anon_sym_STAR] = ACTIONS(3508), - [anon_sym_AMP_AMP] = ACTIONS(3508), - [anon_sym_AMP] = ACTIONS(3506), - [anon_sym_SEMI] = ACTIONS(3508), - [anon_sym___extension__] = ACTIONS(3506), - [anon_sym_extern] = ACTIONS(3506), - [anon_sym___attribute__] = ACTIONS(3506), - [anon_sym_COLON_COLON] = ACTIONS(3508), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3508), - [anon_sym___declspec] = ACTIONS(3506), - [anon_sym___based] = ACTIONS(3506), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_signed] = ACTIONS(3506), - [anon_sym_unsigned] = ACTIONS(3506), - [anon_sym_long] = ACTIONS(3506), - [anon_sym_short] = ACTIONS(3506), - [anon_sym_LBRACK] = ACTIONS(3506), - [anon_sym_EQ] = ACTIONS(3508), - [anon_sym_static] = ACTIONS(3506), - [anon_sym_register] = ACTIONS(3506), - [anon_sym_inline] = ACTIONS(3506), - [anon_sym___inline] = ACTIONS(3506), - [anon_sym___inline__] = ACTIONS(3506), - [anon_sym___forceinline] = ACTIONS(3506), - [anon_sym_thread_local] = ACTIONS(3506), - [anon_sym___thread] = ACTIONS(3506), - [anon_sym_const] = ACTIONS(3506), - [anon_sym_constexpr] = ACTIONS(3506), - [anon_sym_volatile] = ACTIONS(3506), - [anon_sym_restrict] = ACTIONS(3506), - [anon_sym___restrict__] = ACTIONS(3506), - [anon_sym__Atomic] = ACTIONS(3506), - [anon_sym__Noreturn] = ACTIONS(3506), - [anon_sym_noreturn] = ACTIONS(3506), - [anon_sym_mutable] = ACTIONS(3506), - [anon_sym_constinit] = ACTIONS(3506), - [anon_sym_consteval] = ACTIONS(3506), - [sym_primitive_type] = ACTIONS(3506), - [anon_sym_enum] = ACTIONS(3506), - [anon_sym_class] = ACTIONS(3506), - [anon_sym_struct] = ACTIONS(3506), - [anon_sym_union] = ACTIONS(3506), - [anon_sym_asm] = ACTIONS(3506), - [anon_sym___asm__] = ACTIONS(3506), - [anon_sym_DASH_GT] = ACTIONS(3508), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3506), - [anon_sym_decltype] = ACTIONS(3506), - [anon_sym_final] = ACTIONS(3506), - [anon_sym_override] = ACTIONS(3506), - [anon_sym_virtual] = ACTIONS(3506), - [anon_sym_alignas] = ACTIONS(3506), - [anon_sym_explicit] = ACTIONS(3506), - [anon_sym_typename] = ACTIONS(3506), - [anon_sym_template] = ACTIONS(3506), - [anon_sym_GT2] = ACTIONS(3508), - [anon_sym_operator] = ACTIONS(3506), - [anon_sym_try] = ACTIONS(3506), - [anon_sym_noexcept] = ACTIONS(3506), - [anon_sym_throw] = ACTIONS(3506), - [anon_sym_requires] = ACTIONS(3506), - }, - [2620] = { - [sym_identifier] = ACTIONS(5508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5510), - [anon_sym_COMMA] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(5510), - [anon_sym_LPAREN2] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5508), - [anon_sym_PLUS] = ACTIONS(5508), - [anon_sym_STAR] = ACTIONS(5510), - [anon_sym_SLASH] = ACTIONS(5508), - [anon_sym_PERCENT] = ACTIONS(5510), - [anon_sym_PIPE_PIPE] = ACTIONS(5510), - [anon_sym_AMP_AMP] = ACTIONS(5510), - [anon_sym_PIPE] = ACTIONS(5508), - [anon_sym_CARET] = ACTIONS(5510), - [anon_sym_AMP] = ACTIONS(5508), - [anon_sym_EQ_EQ] = ACTIONS(5510), - [anon_sym_BANG_EQ] = ACTIONS(5510), - [anon_sym_GT] = ACTIONS(5508), - [anon_sym_GT_EQ] = ACTIONS(5510), - [anon_sym_LT_EQ] = ACTIONS(5508), - [anon_sym_LT] = ACTIONS(5508), - [anon_sym_LT_LT] = ACTIONS(5510), - [anon_sym_GT_GT] = ACTIONS(5510), - [anon_sym_SEMI] = ACTIONS(5510), - [anon_sym___extension__] = ACTIONS(5508), - [anon_sym___attribute__] = ACTIONS(5508), - [anon_sym___based] = ACTIONS(5508), - [anon_sym_LBRACE] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(5510), - [anon_sym_signed] = ACTIONS(5508), - [anon_sym_unsigned] = ACTIONS(5508), - [anon_sym_long] = ACTIONS(5508), - [anon_sym_short] = ACTIONS(5508), - [anon_sym_LBRACK] = ACTIONS(5510), - [anon_sym_RBRACK] = ACTIONS(5510), - [anon_sym_const] = ACTIONS(5508), - [anon_sym_constexpr] = ACTIONS(5508), - [anon_sym_volatile] = ACTIONS(5508), - [anon_sym_restrict] = ACTIONS(5508), - [anon_sym___restrict__] = ACTIONS(5508), - [anon_sym__Atomic] = ACTIONS(5508), - [anon_sym__Noreturn] = ACTIONS(5508), - [anon_sym_noreturn] = ACTIONS(5508), - [anon_sym_mutable] = ACTIONS(5508), - [anon_sym_constinit] = ACTIONS(5508), - [anon_sym_consteval] = ACTIONS(5508), - [sym_primitive_type] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(5510), - [anon_sym_QMARK] = ACTIONS(5510), - [anon_sym_LT_EQ_GT] = ACTIONS(5510), - [anon_sym_or] = ACTIONS(5508), - [anon_sym_and] = ACTIONS(5508), - [anon_sym_bitor] = ACTIONS(5508), - [anon_sym_xor] = ACTIONS(5508), - [anon_sym_bitand] = ACTIONS(5508), - [anon_sym_not_eq] = ACTIONS(5508), - [anon_sym_DASH_DASH] = ACTIONS(5510), - [anon_sym_PLUS_PLUS] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(5508), - [anon_sym_DOT_STAR] = ACTIONS(5510), - [anon_sym_DASH_GT] = ACTIONS(5510), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5508), - [anon_sym_decltype] = ACTIONS(5508), - [anon_sym_final] = ACTIONS(5508), - [anon_sym_override] = ACTIONS(5508), - [anon_sym_requires] = ACTIONS(5508), - }, - [2621] = { - [sym_identifier] = ACTIONS(5512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5514), - [anon_sym_COMMA] = ACTIONS(5514), - [anon_sym_RPAREN] = ACTIONS(5514), - [anon_sym_LPAREN2] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5512), - [anon_sym_PLUS] = ACTIONS(5512), - [anon_sym_STAR] = ACTIONS(5514), - [anon_sym_SLASH] = ACTIONS(5512), - [anon_sym_PERCENT] = ACTIONS(5514), - [anon_sym_PIPE_PIPE] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(5514), - [anon_sym_PIPE] = ACTIONS(5512), - [anon_sym_CARET] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(5512), - [anon_sym_EQ_EQ] = ACTIONS(5514), - [anon_sym_BANG_EQ] = ACTIONS(5514), - [anon_sym_GT] = ACTIONS(5512), - [anon_sym_GT_EQ] = ACTIONS(5514), - [anon_sym_LT_EQ] = ACTIONS(5512), - [anon_sym_LT] = ACTIONS(5512), - [anon_sym_LT_LT] = ACTIONS(5514), - [anon_sym_GT_GT] = ACTIONS(5514), - [anon_sym_SEMI] = ACTIONS(5514), - [anon_sym___extension__] = ACTIONS(5512), - [anon_sym___attribute__] = ACTIONS(5512), - [anon_sym___based] = ACTIONS(5512), - [anon_sym_LBRACE] = ACTIONS(5514), - [anon_sym_RBRACE] = ACTIONS(5514), - [anon_sym_signed] = ACTIONS(5512), - [anon_sym_unsigned] = ACTIONS(5512), - [anon_sym_long] = ACTIONS(5512), - [anon_sym_short] = ACTIONS(5512), - [anon_sym_LBRACK] = ACTIONS(5514), - [anon_sym_RBRACK] = ACTIONS(5514), - [anon_sym_const] = ACTIONS(5512), - [anon_sym_constexpr] = ACTIONS(5512), - [anon_sym_volatile] = ACTIONS(5512), - [anon_sym_restrict] = ACTIONS(5512), - [anon_sym___restrict__] = ACTIONS(5512), - [anon_sym__Atomic] = ACTIONS(5512), - [anon_sym__Noreturn] = ACTIONS(5512), - [anon_sym_noreturn] = ACTIONS(5512), - [anon_sym_mutable] = ACTIONS(5512), - [anon_sym_constinit] = ACTIONS(5512), - [anon_sym_consteval] = ACTIONS(5512), - [sym_primitive_type] = ACTIONS(5512), - [anon_sym_COLON] = ACTIONS(5514), - [anon_sym_QMARK] = ACTIONS(5514), - [anon_sym_LT_EQ_GT] = ACTIONS(5514), - [anon_sym_or] = ACTIONS(5512), - [anon_sym_and] = ACTIONS(5512), - [anon_sym_bitor] = ACTIONS(5512), - [anon_sym_xor] = ACTIONS(5512), - [anon_sym_bitand] = ACTIONS(5512), - [anon_sym_not_eq] = ACTIONS(5512), - [anon_sym_DASH_DASH] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(5512), - [anon_sym_DOT_STAR] = ACTIONS(5514), - [anon_sym_DASH_GT] = ACTIONS(5514), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5512), - [anon_sym_decltype] = ACTIONS(5512), - [anon_sym_final] = ACTIONS(5512), - [anon_sym_override] = ACTIONS(5512), - [anon_sym_requires] = ACTIONS(5512), - }, - [2622] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5834), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2623] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), - [anon_sym_COMMA] = ACTIONS(4904), - [anon_sym_RPAREN] = ACTIONS(4894), - [anon_sym_LPAREN2] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4899), - [anon_sym_STAR] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4899), - [anon_sym_PERCENT] = ACTIONS(4899), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_CARET] = ACTIONS(4899), - [anon_sym_AMP] = ACTIONS(4901), - [anon_sym_EQ_EQ] = ACTIONS(4904), - [anon_sym_BANG_EQ] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4899), - [anon_sym_GT_EQ] = ACTIONS(4904), - [anon_sym_LT_EQ] = ACTIONS(4899), - [anon_sym_LT] = ACTIONS(4899), - [anon_sym_LT_LT] = ACTIONS(4899), - [anon_sym_GT_GT] = ACTIONS(4899), - [anon_sym_SEMI] = ACTIONS(4904), - [anon_sym___extension__] = ACTIONS(4897), - [anon_sym_COLON_COLON] = ACTIONS(4897), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4904), - [anon_sym_LBRACE] = ACTIONS(4897), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_EQ] = ACTIONS(4899), - [anon_sym_const] = ACTIONS(4892), - [anon_sym_constexpr] = ACTIONS(4897), - [anon_sym_volatile] = ACTIONS(4897), - [anon_sym_restrict] = ACTIONS(4897), - [anon_sym___restrict__] = ACTIONS(4897), - [anon_sym__Atomic] = ACTIONS(4897), - [anon_sym__Noreturn] = ACTIONS(4897), - [anon_sym_noreturn] = ACTIONS(4897), - [anon_sym_mutable] = ACTIONS(4897), - [anon_sym_constinit] = ACTIONS(4897), - [anon_sym_consteval] = ACTIONS(4897), - [anon_sym_QMARK] = ACTIONS(4904), - [anon_sym_STAR_EQ] = ACTIONS(4904), - [anon_sym_SLASH_EQ] = ACTIONS(4904), - [anon_sym_PERCENT_EQ] = ACTIONS(4904), - [anon_sym_PLUS_EQ] = ACTIONS(4904), - [anon_sym_DASH_EQ] = ACTIONS(4904), - [anon_sym_LT_LT_EQ] = ACTIONS(4904), - [anon_sym_GT_GT_EQ] = ACTIONS(4904), - [anon_sym_AMP_EQ] = ACTIONS(4904), - [anon_sym_CARET_EQ] = ACTIONS(4904), - [anon_sym_PIPE_EQ] = ACTIONS(4904), - [anon_sym_LT_EQ_GT] = ACTIONS(4904), - [anon_sym_or] = ACTIONS(4904), - [anon_sym_and] = ACTIONS(4904), - [anon_sym_bitor] = ACTIONS(4904), - [anon_sym_xor] = ACTIONS(4904), - [anon_sym_bitand] = ACTIONS(4904), - [anon_sym_not_eq] = ACTIONS(4904), - [anon_sym_DASH_DASH] = ACTIONS(4904), - [anon_sym_PLUS_PLUS] = ACTIONS(4904), - [anon_sym_DOT] = ACTIONS(4899), - [anon_sym_DOT_STAR] = ACTIONS(4904), - [anon_sym_DASH_GT] = ACTIONS(4899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4897), - [anon_sym_decltype] = ACTIONS(4897), - [anon_sym_DASH_GT_STAR] = ACTIONS(4904), - }, - [2624] = { - [sym_identifier] = ACTIONS(5516), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(5518), - [anon_sym_RPAREN] = ACTIONS(5518), - [anon_sym_LPAREN2] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(5516), - [anon_sym_STAR] = ACTIONS(5518), - [anon_sym_SLASH] = ACTIONS(5516), - [anon_sym_PERCENT] = ACTIONS(5518), - [anon_sym_PIPE_PIPE] = ACTIONS(5518), - [anon_sym_AMP_AMP] = ACTIONS(5518), - [anon_sym_PIPE] = ACTIONS(5516), - [anon_sym_CARET] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(5516), - [anon_sym_EQ_EQ] = ACTIONS(5518), - [anon_sym_BANG_EQ] = ACTIONS(5518), - [anon_sym_GT] = ACTIONS(5516), - [anon_sym_GT_EQ] = ACTIONS(5518), - [anon_sym_LT_EQ] = ACTIONS(5516), - [anon_sym_LT] = ACTIONS(5516), - [anon_sym_LT_LT] = ACTIONS(5518), - [anon_sym_GT_GT] = ACTIONS(5518), - [anon_sym_SEMI] = ACTIONS(5518), - [anon_sym___extension__] = ACTIONS(5516), - [anon_sym___attribute__] = ACTIONS(5516), - [anon_sym___based] = ACTIONS(5516), - [anon_sym_LBRACE] = ACTIONS(5518), - [anon_sym_RBRACE] = ACTIONS(5518), - [anon_sym_signed] = ACTIONS(5516), - [anon_sym_unsigned] = ACTIONS(5516), - [anon_sym_long] = ACTIONS(5516), - [anon_sym_short] = ACTIONS(5516), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_RBRACK] = ACTIONS(5518), - [anon_sym_const] = ACTIONS(5516), - [anon_sym_constexpr] = ACTIONS(5516), - [anon_sym_volatile] = ACTIONS(5516), - [anon_sym_restrict] = ACTIONS(5516), - [anon_sym___restrict__] = ACTIONS(5516), - [anon_sym__Atomic] = ACTIONS(5516), - [anon_sym__Noreturn] = ACTIONS(5516), - [anon_sym_noreturn] = ACTIONS(5516), - [anon_sym_mutable] = ACTIONS(5516), - [anon_sym_constinit] = ACTIONS(5516), - [anon_sym_consteval] = ACTIONS(5516), - [sym_primitive_type] = ACTIONS(5516), - [anon_sym_COLON] = ACTIONS(5518), - [anon_sym_QMARK] = ACTIONS(5518), - [anon_sym_LT_EQ_GT] = ACTIONS(5518), - [anon_sym_or] = ACTIONS(5516), - [anon_sym_and] = ACTIONS(5516), - [anon_sym_bitor] = ACTIONS(5516), - [anon_sym_xor] = ACTIONS(5516), - [anon_sym_bitand] = ACTIONS(5516), - [anon_sym_not_eq] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5518), - [anon_sym_PLUS_PLUS] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(5516), - [anon_sym_DOT_STAR] = ACTIONS(5518), - [anon_sym_DASH_GT] = ACTIONS(5518), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5516), - [anon_sym_decltype] = ACTIONS(5516), - [anon_sym_final] = ACTIONS(5516), - [anon_sym_override] = ACTIONS(5516), - [anon_sym_requires] = ACTIONS(5516), - }, - [2625] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(4762), - [sym_raw_string_literal] = STATE(3456), - [aux_sym_structured_binding_declarator_repeat1] = STATE(8343), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_RBRACK] = ACTIONS(5461), - [anon_sym_EQ] = ACTIONS(5464), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(5466), - [anon_sym_SLASH_EQ] = ACTIONS(5466), - [anon_sym_PERCENT_EQ] = ACTIONS(5466), - [anon_sym_PLUS_EQ] = ACTIONS(5466), - [anon_sym_DASH_EQ] = ACTIONS(5466), - [anon_sym_LT_LT_EQ] = ACTIONS(5466), - [anon_sym_GT_GT_EQ] = ACTIONS(5466), - [anon_sym_AMP_EQ] = ACTIONS(5466), - [anon_sym_CARET_EQ] = ACTIONS(5466), - [anon_sym_PIPE_EQ] = ACTIONS(5466), - [anon_sym_and_eq] = ACTIONS(5466), - [anon_sym_or_eq] = ACTIONS(5466), - [anon_sym_xor_eq] = ACTIONS(5466), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [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), - }, - [2626] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(4762), - [sym_raw_string_literal] = STATE(3456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_COLON] = ACTIONS(4336), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4312), - [anon_sym_or_eq] = ACTIONS(4312), - [anon_sym_xor_eq] = ACTIONS(4312), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [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), - }, - [2627] = { - [sym_string_literal] = STATE(3879), - [sym_template_argument_list] = STATE(4762), - [sym_raw_string_literal] = STATE(3879), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym___attribute__] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(5523), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(5525), - [anon_sym_SLASH_EQ] = ACTIONS(5525), - [anon_sym_PERCENT_EQ] = ACTIONS(5525), - [anon_sym_PLUS_EQ] = ACTIONS(5525), - [anon_sym_DASH_EQ] = ACTIONS(5525), - [anon_sym_LT_LT_EQ] = ACTIONS(5525), - [anon_sym_GT_GT_EQ] = ACTIONS(5525), - [anon_sym_AMP_EQ] = ACTIONS(5525), - [anon_sym_CARET_EQ] = ACTIONS(5525), - [anon_sym_PIPE_EQ] = ACTIONS(5525), - [anon_sym_and_eq] = ACTIONS(5525), - [anon_sym_or_eq] = ACTIONS(5525), - [anon_sym_xor_eq] = ACTIONS(5525), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(5527), - [anon_sym_u_DQUOTE] = ACTIONS(5527), - [anon_sym_U_DQUOTE] = ACTIONS(5527), - [anon_sym_u8_DQUOTE] = ACTIONS(5527), - [anon_sym_DQUOTE] = ACTIONS(5527), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5529), - [anon_sym_LR_DQUOTE] = ACTIONS(5529), - [anon_sym_uR_DQUOTE] = ACTIONS(5529), - [anon_sym_UR_DQUOTE] = ACTIONS(5529), - [anon_sym_u8R_DQUOTE] = ACTIONS(5529), - }, - [2628] = { - [sym_identifier] = ACTIONS(5531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5533), - [anon_sym_COMMA] = ACTIONS(5533), - [anon_sym_RPAREN] = ACTIONS(5533), - [anon_sym_LPAREN2] = ACTIONS(5533), - [anon_sym_DASH] = ACTIONS(5531), - [anon_sym_PLUS] = ACTIONS(5531), - [anon_sym_STAR] = ACTIONS(5533), - [anon_sym_SLASH] = ACTIONS(5531), - [anon_sym_PERCENT] = ACTIONS(5533), - [anon_sym_PIPE_PIPE] = ACTIONS(5533), - [anon_sym_AMP_AMP] = ACTIONS(5533), - [anon_sym_PIPE] = ACTIONS(5531), - [anon_sym_CARET] = ACTIONS(5533), - [anon_sym_AMP] = ACTIONS(5531), - [anon_sym_EQ_EQ] = ACTIONS(5533), - [anon_sym_BANG_EQ] = ACTIONS(5533), - [anon_sym_GT] = ACTIONS(5531), - [anon_sym_GT_EQ] = ACTIONS(5533), - [anon_sym_LT_EQ] = ACTIONS(5531), - [anon_sym_LT] = ACTIONS(5531), - [anon_sym_LT_LT] = ACTIONS(5533), - [anon_sym_GT_GT] = ACTIONS(5533), - [anon_sym_SEMI] = ACTIONS(5533), - [anon_sym___extension__] = ACTIONS(5531), - [anon_sym___attribute__] = ACTIONS(5531), - [anon_sym___based] = ACTIONS(5531), - [anon_sym_LBRACE] = ACTIONS(5533), - [anon_sym_RBRACE] = ACTIONS(5533), - [anon_sym_signed] = ACTIONS(5531), - [anon_sym_unsigned] = ACTIONS(5531), - [anon_sym_long] = ACTIONS(5531), - [anon_sym_short] = ACTIONS(5531), - [anon_sym_LBRACK] = ACTIONS(5533), - [anon_sym_RBRACK] = ACTIONS(5533), - [anon_sym_const] = ACTIONS(5531), - [anon_sym_constexpr] = ACTIONS(5531), - [anon_sym_volatile] = ACTIONS(5531), - [anon_sym_restrict] = ACTIONS(5531), - [anon_sym___restrict__] = ACTIONS(5531), - [anon_sym__Atomic] = ACTIONS(5531), - [anon_sym__Noreturn] = ACTIONS(5531), - [anon_sym_noreturn] = ACTIONS(5531), - [anon_sym_mutable] = ACTIONS(5531), - [anon_sym_constinit] = ACTIONS(5531), - [anon_sym_consteval] = ACTIONS(5531), - [sym_primitive_type] = ACTIONS(5531), - [anon_sym_COLON] = ACTIONS(5533), - [anon_sym_QMARK] = ACTIONS(5533), - [anon_sym_LT_EQ_GT] = ACTIONS(5533), - [anon_sym_or] = ACTIONS(5531), - [anon_sym_and] = ACTIONS(5531), - [anon_sym_bitor] = ACTIONS(5531), - [anon_sym_xor] = ACTIONS(5531), - [anon_sym_bitand] = ACTIONS(5531), - [anon_sym_not_eq] = ACTIONS(5531), - [anon_sym_DASH_DASH] = ACTIONS(5533), - [anon_sym_PLUS_PLUS] = ACTIONS(5533), - [anon_sym_DOT] = ACTIONS(5531), - [anon_sym_DOT_STAR] = ACTIONS(5533), - [anon_sym_DASH_GT] = ACTIONS(5533), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5531), - [anon_sym_decltype] = ACTIONS(5531), - [anon_sym_final] = ACTIONS(5531), - [anon_sym_override] = ACTIONS(5531), - [anon_sym_requires] = ACTIONS(5531), - }, - [2629] = { - [sym_identifier] = ACTIONS(5535), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5537), - [anon_sym_COMMA] = ACTIONS(5537), - [anon_sym_RPAREN] = ACTIONS(5537), - [anon_sym_LPAREN2] = ACTIONS(5537), - [anon_sym_DASH] = ACTIONS(5535), - [anon_sym_PLUS] = ACTIONS(5535), - [anon_sym_STAR] = ACTIONS(5537), - [anon_sym_SLASH] = ACTIONS(5535), - [anon_sym_PERCENT] = ACTIONS(5537), - [anon_sym_PIPE_PIPE] = ACTIONS(5537), - [anon_sym_AMP_AMP] = ACTIONS(5537), - [anon_sym_PIPE] = ACTIONS(5535), - [anon_sym_CARET] = ACTIONS(5537), - [anon_sym_AMP] = ACTIONS(5535), - [anon_sym_EQ_EQ] = ACTIONS(5537), - [anon_sym_BANG_EQ] = ACTIONS(5537), - [anon_sym_GT] = ACTIONS(5535), - [anon_sym_GT_EQ] = ACTIONS(5537), - [anon_sym_LT_EQ] = ACTIONS(5535), - [anon_sym_LT] = ACTIONS(5535), - [anon_sym_LT_LT] = ACTIONS(5537), - [anon_sym_GT_GT] = ACTIONS(5537), - [anon_sym_SEMI] = ACTIONS(5537), - [anon_sym___extension__] = ACTIONS(5535), - [anon_sym___attribute__] = ACTIONS(5535), - [anon_sym___based] = ACTIONS(5535), - [anon_sym_LBRACE] = ACTIONS(5537), - [anon_sym_RBRACE] = ACTIONS(5537), - [anon_sym_signed] = ACTIONS(5535), - [anon_sym_unsigned] = ACTIONS(5535), - [anon_sym_long] = ACTIONS(5535), - [anon_sym_short] = ACTIONS(5535), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_RBRACK] = ACTIONS(5537), - [anon_sym_const] = ACTIONS(5535), - [anon_sym_constexpr] = ACTIONS(5535), - [anon_sym_volatile] = ACTIONS(5535), - [anon_sym_restrict] = ACTIONS(5535), - [anon_sym___restrict__] = ACTIONS(5535), - [anon_sym__Atomic] = ACTIONS(5535), - [anon_sym__Noreturn] = ACTIONS(5535), - [anon_sym_noreturn] = ACTIONS(5535), - [anon_sym_mutable] = ACTIONS(5535), - [anon_sym_constinit] = ACTIONS(5535), - [anon_sym_consteval] = ACTIONS(5535), - [sym_primitive_type] = ACTIONS(5535), - [anon_sym_COLON] = ACTIONS(5537), - [anon_sym_QMARK] = ACTIONS(5537), - [anon_sym_LT_EQ_GT] = ACTIONS(5537), - [anon_sym_or] = ACTIONS(5535), - [anon_sym_and] = ACTIONS(5535), - [anon_sym_bitor] = ACTIONS(5535), - [anon_sym_xor] = ACTIONS(5535), - [anon_sym_bitand] = ACTIONS(5535), - [anon_sym_not_eq] = ACTIONS(5535), - [anon_sym_DASH_DASH] = ACTIONS(5537), - [anon_sym_PLUS_PLUS] = ACTIONS(5537), - [anon_sym_DOT] = ACTIONS(5535), - [anon_sym_DOT_STAR] = ACTIONS(5537), - [anon_sym_DASH_GT] = ACTIONS(5537), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5535), - [anon_sym_decltype] = ACTIONS(5535), - [anon_sym_final] = ACTIONS(5535), - [anon_sym_override] = ACTIONS(5535), - [anon_sym_requires] = ACTIONS(5535), - }, - [2630] = { - [sym_string_literal] = STATE(2583), - [sym_raw_string_literal] = STATE(2583), - [aux_sym_concatenated_string_repeat1] = STATE(2583), - [sym_identifier] = ACTIONS(5539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5145), - [anon_sym_COMMA] = ACTIONS(5145), - [anon_sym_RPAREN] = ACTIONS(5145), - [anon_sym_LPAREN2] = ACTIONS(5145), - [anon_sym_DASH] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_PERCENT] = ACTIONS(5147), - [anon_sym_PIPE_PIPE] = ACTIONS(5145), - [anon_sym_AMP_AMP] = ACTIONS(5145), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_CARET] = ACTIONS(5147), - [anon_sym_AMP] = ACTIONS(5147), - [anon_sym_EQ_EQ] = ACTIONS(5145), - [anon_sym_BANG_EQ] = ACTIONS(5145), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_GT_EQ] = ACTIONS(5145), - [anon_sym_LT_EQ] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5147), - [anon_sym_LT_LT] = ACTIONS(5147), - [anon_sym_GT_GT] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_QMARK] = ACTIONS(5145), - [anon_sym_STAR_EQ] = ACTIONS(5145), - [anon_sym_SLASH_EQ] = ACTIONS(5145), - [anon_sym_PERCENT_EQ] = ACTIONS(5145), - [anon_sym_PLUS_EQ] = ACTIONS(5145), - [anon_sym_DASH_EQ] = ACTIONS(5145), - [anon_sym_LT_LT_EQ] = ACTIONS(5145), - [anon_sym_GT_GT_EQ] = ACTIONS(5145), - [anon_sym_AMP_EQ] = ACTIONS(5145), - [anon_sym_CARET_EQ] = ACTIONS(5145), - [anon_sym_PIPE_EQ] = ACTIONS(5145), - [anon_sym_and_eq] = ACTIONS(5147), - [anon_sym_or_eq] = ACTIONS(5147), - [anon_sym_xor_eq] = ACTIONS(5147), - [anon_sym_LT_EQ_GT] = ACTIONS(5145), - [anon_sym_or] = ACTIONS(5147), - [anon_sym_and] = ACTIONS(5147), - [anon_sym_bitor] = ACTIONS(5147), - [anon_sym_xor] = ACTIONS(5147), - [anon_sym_bitand] = ACTIONS(5147), - [anon_sym_not_eq] = ACTIONS(5147), - [anon_sym_DASH_DASH] = ACTIONS(5145), - [anon_sym_PLUS_PLUS] = ACTIONS(5145), - [anon_sym_DOT] = ACTIONS(5147), - [anon_sym_DOT_STAR] = ACTIONS(5145), - [anon_sym_DASH_GT] = ACTIONS(5147), - [anon_sym_L_DQUOTE] = ACTIONS(5260), - [anon_sym_u_DQUOTE] = ACTIONS(5260), - [anon_sym_U_DQUOTE] = ACTIONS(5260), - [anon_sym_u8_DQUOTE] = ACTIONS(5260), - [anon_sym_DQUOTE] = ACTIONS(5260), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5262), - [anon_sym_LR_DQUOTE] = ACTIONS(5262), - [anon_sym_uR_DQUOTE] = ACTIONS(5262), - [anon_sym_UR_DQUOTE] = ACTIONS(5262), - [anon_sym_u8R_DQUOTE] = ACTIONS(5262), - [anon_sym_DASH_GT_STAR] = ACTIONS(5145), - [sym_literal_suffix] = ACTIONS(5147), - }, - [2631] = { - [sym_catch_clause] = STATE(2565), - [aux_sym_constructor_try_statement_repeat1] = STATE(2565), - [sym_identifier] = ACTIONS(2563), - [aux_sym_preproc_def_token1] = ACTIONS(2563), - [aux_sym_preproc_if_token1] = ACTIONS(2563), - [aux_sym_preproc_if_token2] = ACTIONS(2563), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2563), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2563), - [sym_preproc_directive] = ACTIONS(2563), - [anon_sym_LPAREN2] = ACTIONS(2565), - [anon_sym_TILDE] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2565), - [anon_sym_AMP_AMP] = ACTIONS(2565), - [anon_sym_AMP] = ACTIONS(2563), - [anon_sym___extension__] = ACTIONS(2563), - [anon_sym_typedef] = ACTIONS(2563), - [anon_sym_extern] = ACTIONS(2563), - [anon_sym___attribute__] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2565), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), - [anon_sym___declspec] = ACTIONS(2563), - [anon_sym___based] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2563), - [anon_sym_unsigned] = ACTIONS(2563), - [anon_sym_long] = ACTIONS(2563), - [anon_sym_short] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(2563), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2563), - [anon_sym_inline] = ACTIONS(2563), - [anon_sym___inline] = ACTIONS(2563), - [anon_sym___inline__] = ACTIONS(2563), - [anon_sym___forceinline] = ACTIONS(2563), - [anon_sym_thread_local] = ACTIONS(2563), - [anon_sym___thread] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_constexpr] = ACTIONS(2563), - [anon_sym_volatile] = ACTIONS(2563), - [anon_sym_restrict] = ACTIONS(2563), - [anon_sym___restrict__] = ACTIONS(2563), - [anon_sym__Atomic] = ACTIONS(2563), - [anon_sym__Noreturn] = ACTIONS(2563), - [anon_sym_noreturn] = ACTIONS(2563), - [anon_sym_mutable] = ACTIONS(2563), - [anon_sym_constinit] = ACTIONS(2563), - [anon_sym_consteval] = ACTIONS(2563), - [sym_primitive_type] = ACTIONS(2563), - [anon_sym_enum] = ACTIONS(2563), - [anon_sym_class] = ACTIONS(2563), - [anon_sym_struct] = ACTIONS(2563), - [anon_sym_union] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2563), - [anon_sym_decltype] = ACTIONS(2563), - [anon_sym_virtual] = ACTIONS(2563), - [anon_sym_alignas] = ACTIONS(2563), - [anon_sym_explicit] = ACTIONS(2563), - [anon_sym_typename] = ACTIONS(2563), - [anon_sym_template] = ACTIONS(2563), - [anon_sym_operator] = ACTIONS(2563), - [anon_sym_friend] = ACTIONS(2563), - [anon_sym_public] = ACTIONS(2563), - [anon_sym_private] = ACTIONS(2563), - [anon_sym_protected] = ACTIONS(2563), - [anon_sym_using] = ACTIONS(2563), - [anon_sym_static_assert] = ACTIONS(2563), - [anon_sym_catch] = ACTIONS(5423), - }, - [2632] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5842), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2633] = { - [sym_identifier] = ACTIONS(5541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5543), - [anon_sym_COMMA] = ACTIONS(5543), - [anon_sym_RPAREN] = ACTIONS(5543), - [anon_sym_LPAREN2] = ACTIONS(5543), - [anon_sym_TILDE] = ACTIONS(5543), - [anon_sym_STAR] = ACTIONS(5543), - [anon_sym_AMP_AMP] = ACTIONS(5543), - [anon_sym_AMP] = ACTIONS(5541), - [anon_sym_SEMI] = ACTIONS(5543), - [anon_sym___extension__] = ACTIONS(5541), - [anon_sym_extern] = ACTIONS(5541), - [anon_sym___attribute__] = ACTIONS(5541), - [anon_sym_COLON_COLON] = ACTIONS(5543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5543), - [anon_sym___declspec] = ACTIONS(5541), - [anon_sym___based] = ACTIONS(5541), - [anon_sym_LBRACE] = ACTIONS(5543), - [anon_sym_signed] = ACTIONS(5541), - [anon_sym_unsigned] = ACTIONS(5541), - [anon_sym_long] = ACTIONS(5541), - [anon_sym_short] = ACTIONS(5541), - [anon_sym_LBRACK] = ACTIONS(5541), - [anon_sym_EQ] = ACTIONS(5543), - [anon_sym_static] = ACTIONS(5541), - [anon_sym_register] = ACTIONS(5541), - [anon_sym_inline] = ACTIONS(5541), - [anon_sym___inline] = ACTIONS(5541), - [anon_sym___inline__] = ACTIONS(5541), - [anon_sym___forceinline] = ACTIONS(5541), - [anon_sym_thread_local] = ACTIONS(5541), - [anon_sym___thread] = ACTIONS(5541), - [anon_sym_const] = ACTIONS(5541), - [anon_sym_constexpr] = ACTIONS(5541), - [anon_sym_volatile] = ACTIONS(5541), - [anon_sym_restrict] = ACTIONS(5541), - [anon_sym___restrict__] = ACTIONS(5541), - [anon_sym__Atomic] = ACTIONS(5541), - [anon_sym__Noreturn] = ACTIONS(5541), - [anon_sym_noreturn] = ACTIONS(5541), - [anon_sym_mutable] = ACTIONS(5541), - [anon_sym_constinit] = ACTIONS(5541), - [anon_sym_consteval] = ACTIONS(5541), - [sym_primitive_type] = ACTIONS(5541), - [anon_sym_enum] = ACTIONS(5541), - [anon_sym_class] = ACTIONS(5541), - [anon_sym_struct] = ACTIONS(5541), - [anon_sym_union] = ACTIONS(5541), - [anon_sym_asm] = ACTIONS(5541), - [anon_sym___asm__] = ACTIONS(5541), - [anon_sym_DASH_GT] = ACTIONS(5543), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5541), - [anon_sym_decltype] = ACTIONS(5541), - [anon_sym_final] = ACTIONS(5541), - [anon_sym_override] = ACTIONS(5541), - [anon_sym_virtual] = ACTIONS(5541), - [anon_sym_alignas] = ACTIONS(5541), - [anon_sym_explicit] = ACTIONS(5541), - [anon_sym_typename] = ACTIONS(5541), - [anon_sym_template] = ACTIONS(5541), - [anon_sym_GT2] = ACTIONS(5543), - [anon_sym_operator] = ACTIONS(5541), - [anon_sym_try] = ACTIONS(5541), - [anon_sym_noexcept] = ACTIONS(5541), - [anon_sym_throw] = ACTIONS(5541), - [anon_sym_requires] = ACTIONS(5541), - }, - [2634] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(4762), - [sym_raw_string_literal] = STATE(3456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_COLON] = ACTIONS(4356), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4312), - [anon_sym_or_eq] = ACTIONS(4312), - [anon_sym_xor_eq] = ACTIONS(4312), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [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), - }, - [2635] = { - [sym_identifier] = ACTIONS(2768), - [aux_sym_preproc_def_token1] = ACTIONS(2768), - [aux_sym_preproc_if_token1] = ACTIONS(2768), - [aux_sym_preproc_if_token2] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2768), - [aux_sym_preproc_else_token1] = ACTIONS(2768), - [aux_sym_preproc_elif_token1] = ACTIONS(2768), - [sym_preproc_directive] = ACTIONS(2768), - [anon_sym_LPAREN2] = ACTIONS(2770), - [anon_sym_TILDE] = ACTIONS(2770), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym_typedef] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2770), - [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(2768), - [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_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2768), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym_explicit] = ACTIONS(2768), - [anon_sym_typename] = ACTIONS(2768), - [anon_sym_template] = ACTIONS(2768), - [anon_sym_operator] = ACTIONS(2768), - [anon_sym_friend] = ACTIONS(2768), - [anon_sym_public] = ACTIONS(2768), - [anon_sym_private] = ACTIONS(2768), - [anon_sym_protected] = ACTIONS(2768), - [anon_sym_using] = ACTIONS(2768), - [anon_sym_static_assert] = ACTIONS(2768), - [anon_sym_catch] = ACTIONS(2768), - }, - [2636] = { - [sym_identifier] = ACTIONS(5545), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5547), - [anon_sym_COMMA] = ACTIONS(5547), - [anon_sym_RPAREN] = ACTIONS(5547), - [anon_sym_LPAREN2] = ACTIONS(5547), - [anon_sym_DASH] = ACTIONS(5545), - [anon_sym_PLUS] = ACTIONS(5545), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_SLASH] = ACTIONS(5545), - [anon_sym_PERCENT] = ACTIONS(5547), - [anon_sym_PIPE_PIPE] = ACTIONS(5547), - [anon_sym_AMP_AMP] = ACTIONS(5547), - [anon_sym_PIPE] = ACTIONS(5545), - [anon_sym_CARET] = ACTIONS(5547), - [anon_sym_AMP] = ACTIONS(5545), - [anon_sym_EQ_EQ] = ACTIONS(5547), - [anon_sym_BANG_EQ] = ACTIONS(5547), - [anon_sym_GT] = ACTIONS(5545), - [anon_sym_GT_EQ] = ACTIONS(5547), - [anon_sym_LT_EQ] = ACTIONS(5545), - [anon_sym_LT] = ACTIONS(5545), - [anon_sym_LT_LT] = ACTIONS(5547), - [anon_sym_GT_GT] = ACTIONS(5547), - [anon_sym_SEMI] = ACTIONS(5547), - [anon_sym___extension__] = ACTIONS(5545), - [anon_sym___attribute__] = ACTIONS(5545), - [anon_sym___based] = ACTIONS(5545), - [anon_sym_LBRACE] = ACTIONS(5547), - [anon_sym_RBRACE] = ACTIONS(5547), - [anon_sym_signed] = ACTIONS(5545), - [anon_sym_unsigned] = ACTIONS(5545), - [anon_sym_long] = ACTIONS(5545), - [anon_sym_short] = ACTIONS(5545), - [anon_sym_LBRACK] = ACTIONS(5547), - [anon_sym_RBRACK] = ACTIONS(5547), - [anon_sym_const] = ACTIONS(5545), - [anon_sym_constexpr] = ACTIONS(5545), - [anon_sym_volatile] = ACTIONS(5545), - [anon_sym_restrict] = ACTIONS(5545), - [anon_sym___restrict__] = ACTIONS(5545), - [anon_sym__Atomic] = ACTIONS(5545), - [anon_sym__Noreturn] = ACTIONS(5545), - [anon_sym_noreturn] = ACTIONS(5545), - [anon_sym_mutable] = ACTIONS(5545), - [anon_sym_constinit] = ACTIONS(5545), - [anon_sym_consteval] = ACTIONS(5545), - [sym_primitive_type] = ACTIONS(5545), - [anon_sym_COLON] = ACTIONS(5547), - [anon_sym_QMARK] = ACTIONS(5547), - [anon_sym_LT_EQ_GT] = ACTIONS(5547), - [anon_sym_or] = ACTIONS(5545), - [anon_sym_and] = ACTIONS(5545), - [anon_sym_bitor] = ACTIONS(5545), - [anon_sym_xor] = ACTIONS(5545), - [anon_sym_bitand] = ACTIONS(5545), - [anon_sym_not_eq] = ACTIONS(5545), - [anon_sym_DASH_DASH] = ACTIONS(5547), - [anon_sym_PLUS_PLUS] = ACTIONS(5547), - [anon_sym_DOT] = ACTIONS(5545), - [anon_sym_DOT_STAR] = ACTIONS(5547), - [anon_sym_DASH_GT] = ACTIONS(5547), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5545), - [anon_sym_decltype] = ACTIONS(5545), - [anon_sym_final] = ACTIONS(5545), - [anon_sym_override] = ACTIONS(5545), - [anon_sym_requires] = ACTIONS(5545), - }, - [2637] = { - [sym_catch_clause] = STATE(2575), - [aux_sym_constructor_try_statement_repeat1] = STATE(2575), - [sym_identifier] = ACTIONS(2563), - [aux_sym_preproc_def_token1] = ACTIONS(2563), - [aux_sym_preproc_if_token1] = ACTIONS(2563), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2563), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2563), - [sym_preproc_directive] = ACTIONS(2563), - [anon_sym_LPAREN2] = ACTIONS(2565), - [anon_sym_TILDE] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2565), - [anon_sym_AMP_AMP] = ACTIONS(2565), - [anon_sym_AMP] = ACTIONS(2563), - [anon_sym___extension__] = ACTIONS(2563), - [anon_sym_typedef] = ACTIONS(2563), - [anon_sym_extern] = ACTIONS(2563), - [anon_sym___attribute__] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2565), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), - [anon_sym___declspec] = ACTIONS(2563), - [anon_sym___based] = ACTIONS(2563), - [anon_sym_RBRACE] = ACTIONS(2565), - [anon_sym_signed] = ACTIONS(2563), - [anon_sym_unsigned] = ACTIONS(2563), - [anon_sym_long] = ACTIONS(2563), - [anon_sym_short] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(2563), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2563), - [anon_sym_inline] = ACTIONS(2563), - [anon_sym___inline] = ACTIONS(2563), - [anon_sym___inline__] = ACTIONS(2563), - [anon_sym___forceinline] = ACTIONS(2563), - [anon_sym_thread_local] = ACTIONS(2563), - [anon_sym___thread] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_constexpr] = ACTIONS(2563), - [anon_sym_volatile] = ACTIONS(2563), - [anon_sym_restrict] = ACTIONS(2563), - [anon_sym___restrict__] = ACTIONS(2563), - [anon_sym__Atomic] = ACTIONS(2563), - [anon_sym__Noreturn] = ACTIONS(2563), - [anon_sym_noreturn] = ACTIONS(2563), - [anon_sym_mutable] = ACTIONS(2563), - [anon_sym_constinit] = ACTIONS(2563), - [anon_sym_consteval] = ACTIONS(2563), - [sym_primitive_type] = ACTIONS(2563), - [anon_sym_enum] = ACTIONS(2563), - [anon_sym_class] = ACTIONS(2563), - [anon_sym_struct] = ACTIONS(2563), - [anon_sym_union] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2563), - [anon_sym_decltype] = ACTIONS(2563), - [anon_sym_virtual] = ACTIONS(2563), - [anon_sym_alignas] = ACTIONS(2563), - [anon_sym_explicit] = ACTIONS(2563), - [anon_sym_typename] = ACTIONS(2563), - [anon_sym_template] = ACTIONS(2563), - [anon_sym_operator] = ACTIONS(2563), - [anon_sym_friend] = ACTIONS(2563), - [anon_sym_public] = ACTIONS(2563), - [anon_sym_private] = ACTIONS(2563), - [anon_sym_protected] = ACTIONS(2563), - [anon_sym_using] = ACTIONS(2563), - [anon_sym_static_assert] = ACTIONS(2563), - [anon_sym_catch] = ACTIONS(5421), - }, - [2638] = { - [sym_identifier] = ACTIONS(5549), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5551), - [anon_sym_COMMA] = ACTIONS(5551), - [anon_sym_RPAREN] = ACTIONS(5551), - [anon_sym_LPAREN2] = ACTIONS(5551), - [anon_sym_DASH] = ACTIONS(5549), - [anon_sym_PLUS] = ACTIONS(5549), - [anon_sym_STAR] = ACTIONS(5551), - [anon_sym_SLASH] = ACTIONS(5549), - [anon_sym_PERCENT] = ACTIONS(5551), - [anon_sym_PIPE_PIPE] = ACTIONS(5551), - [anon_sym_AMP_AMP] = ACTIONS(5551), - [anon_sym_PIPE] = ACTIONS(5549), - [anon_sym_CARET] = ACTIONS(5551), - [anon_sym_AMP] = ACTIONS(5549), - [anon_sym_EQ_EQ] = ACTIONS(5551), - [anon_sym_BANG_EQ] = ACTIONS(5551), - [anon_sym_GT] = ACTIONS(5549), - [anon_sym_GT_EQ] = ACTIONS(5551), - [anon_sym_LT_EQ] = ACTIONS(5549), - [anon_sym_LT] = ACTIONS(5549), - [anon_sym_LT_LT] = ACTIONS(5551), - [anon_sym_GT_GT] = ACTIONS(5551), - [anon_sym_SEMI] = ACTIONS(5551), - [anon_sym___extension__] = ACTIONS(5549), - [anon_sym___attribute__] = ACTIONS(5549), - [anon_sym___based] = ACTIONS(5549), - [anon_sym_LBRACE] = ACTIONS(5551), - [anon_sym_RBRACE] = ACTIONS(5551), - [anon_sym_signed] = ACTIONS(5549), - [anon_sym_unsigned] = ACTIONS(5549), - [anon_sym_long] = ACTIONS(5549), - [anon_sym_short] = ACTIONS(5549), - [anon_sym_LBRACK] = ACTIONS(5551), - [anon_sym_RBRACK] = ACTIONS(5551), - [anon_sym_const] = ACTIONS(5549), - [anon_sym_constexpr] = ACTIONS(5549), - [anon_sym_volatile] = ACTIONS(5549), - [anon_sym_restrict] = ACTIONS(5549), - [anon_sym___restrict__] = ACTIONS(5549), - [anon_sym__Atomic] = ACTIONS(5549), - [anon_sym__Noreturn] = ACTIONS(5549), - [anon_sym_noreturn] = ACTIONS(5549), - [anon_sym_mutable] = ACTIONS(5549), - [anon_sym_constinit] = ACTIONS(5549), - [anon_sym_consteval] = ACTIONS(5549), - [sym_primitive_type] = ACTIONS(5549), - [anon_sym_COLON] = ACTIONS(5551), - [anon_sym_QMARK] = ACTIONS(5551), - [anon_sym_LT_EQ_GT] = ACTIONS(5551), - [anon_sym_or] = ACTIONS(5549), - [anon_sym_and] = ACTIONS(5549), - [anon_sym_bitor] = ACTIONS(5549), - [anon_sym_xor] = ACTIONS(5549), - [anon_sym_bitand] = ACTIONS(5549), - [anon_sym_not_eq] = ACTIONS(5549), - [anon_sym_DASH_DASH] = ACTIONS(5551), - [anon_sym_PLUS_PLUS] = ACTIONS(5551), - [anon_sym_DOT] = ACTIONS(5549), - [anon_sym_DOT_STAR] = ACTIONS(5551), - [anon_sym_DASH_GT] = ACTIONS(5551), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5549), - [anon_sym_decltype] = ACTIONS(5549), - [anon_sym_final] = ACTIONS(5549), - [anon_sym_override] = ACTIONS(5549), - [anon_sym_requires] = ACTIONS(5549), - }, - [2639] = { - [sym_identifier] = ACTIONS(5553), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5555), - [anon_sym_COMMA] = ACTIONS(5555), - [anon_sym_RPAREN] = ACTIONS(5555), - [anon_sym_LPAREN2] = ACTIONS(5555), - [anon_sym_DASH] = ACTIONS(5553), - [anon_sym_PLUS] = ACTIONS(5553), - [anon_sym_STAR] = ACTIONS(5553), - [anon_sym_SLASH] = ACTIONS(5553), - [anon_sym_PERCENT] = ACTIONS(5553), - [anon_sym_PIPE_PIPE] = ACTIONS(5555), - [anon_sym_AMP_AMP] = ACTIONS(5555), - [anon_sym_PIPE] = ACTIONS(5553), - [anon_sym_CARET] = ACTIONS(5553), - [anon_sym_AMP] = ACTIONS(5553), - [anon_sym_EQ_EQ] = ACTIONS(5555), - [anon_sym_BANG_EQ] = ACTIONS(5555), - [anon_sym_GT] = ACTIONS(5553), - [anon_sym_GT_EQ] = ACTIONS(5555), - [anon_sym_LT_EQ] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(5553), - [anon_sym_LT_LT] = ACTIONS(5553), - [anon_sym_GT_GT] = ACTIONS(5553), - [anon_sym_SEMI] = ACTIONS(5555), - [anon_sym_RBRACE] = ACTIONS(5555), - [anon_sym_LBRACK] = ACTIONS(5555), - [anon_sym_RBRACK] = ACTIONS(5555), - [anon_sym_EQ] = ACTIONS(5553), - [anon_sym_COLON] = ACTIONS(5555), - [anon_sym_QMARK] = ACTIONS(5555), - [anon_sym_STAR_EQ] = ACTIONS(5555), - [anon_sym_SLASH_EQ] = ACTIONS(5555), - [anon_sym_PERCENT_EQ] = ACTIONS(5555), - [anon_sym_PLUS_EQ] = ACTIONS(5555), - [anon_sym_DASH_EQ] = ACTIONS(5555), - [anon_sym_LT_LT_EQ] = ACTIONS(5555), - [anon_sym_GT_GT_EQ] = ACTIONS(5555), - [anon_sym_AMP_EQ] = ACTIONS(5555), - [anon_sym_CARET_EQ] = ACTIONS(5555), - [anon_sym_PIPE_EQ] = ACTIONS(5555), - [anon_sym_and_eq] = ACTIONS(5553), - [anon_sym_or_eq] = ACTIONS(5553), - [anon_sym_xor_eq] = ACTIONS(5553), - [anon_sym_LT_EQ_GT] = ACTIONS(5555), - [anon_sym_or] = ACTIONS(5553), - [anon_sym_and] = ACTIONS(5553), - [anon_sym_bitor] = ACTIONS(5553), - [anon_sym_xor] = ACTIONS(5553), - [anon_sym_bitand] = ACTIONS(5553), - [anon_sym_not_eq] = ACTIONS(5553), - [anon_sym_DASH_DASH] = ACTIONS(5555), - [anon_sym_PLUS_PLUS] = ACTIONS(5555), - [anon_sym_DOT] = ACTIONS(5553), - [anon_sym_DOT_STAR] = ACTIONS(5555), - [anon_sym_DASH_GT] = ACTIONS(5555), - [anon_sym_L_DQUOTE] = ACTIONS(5555), - [anon_sym_u_DQUOTE] = ACTIONS(5555), - [anon_sym_U_DQUOTE] = ACTIONS(5555), - [anon_sym_u8_DQUOTE] = ACTIONS(5555), - [anon_sym_DQUOTE] = ACTIONS(5555), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5555), - [anon_sym_LR_DQUOTE] = ACTIONS(5555), - [anon_sym_uR_DQUOTE] = ACTIONS(5555), - [anon_sym_UR_DQUOTE] = ACTIONS(5555), - [anon_sym_u8R_DQUOTE] = ACTIONS(5555), - [sym_literal_suffix] = ACTIONS(5553), - }, - [2640] = { - [sym_identifier] = ACTIONS(5557), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5559), - [anon_sym_COMMA] = ACTIONS(5559), - [anon_sym_RPAREN] = ACTIONS(5559), - [anon_sym_LPAREN2] = ACTIONS(5559), - [anon_sym_DASH] = ACTIONS(5557), - [anon_sym_PLUS] = ACTIONS(5557), - [anon_sym_STAR] = ACTIONS(5559), - [anon_sym_SLASH] = ACTIONS(5557), - [anon_sym_PERCENT] = ACTIONS(5559), - [anon_sym_PIPE_PIPE] = ACTIONS(5559), - [anon_sym_AMP_AMP] = ACTIONS(5559), - [anon_sym_PIPE] = ACTIONS(5557), - [anon_sym_CARET] = ACTIONS(5559), - [anon_sym_AMP] = ACTIONS(5557), - [anon_sym_EQ_EQ] = ACTIONS(5559), - [anon_sym_BANG_EQ] = ACTIONS(5559), - [anon_sym_GT] = ACTIONS(5557), - [anon_sym_GT_EQ] = ACTIONS(5559), - [anon_sym_LT_EQ] = ACTIONS(5557), - [anon_sym_LT] = ACTIONS(5557), - [anon_sym_LT_LT] = ACTIONS(5559), - [anon_sym_GT_GT] = ACTIONS(5559), - [anon_sym_SEMI] = ACTIONS(5559), - [anon_sym___extension__] = ACTIONS(5557), - [anon_sym___attribute__] = ACTIONS(5557), - [anon_sym___based] = ACTIONS(5557), - [anon_sym_LBRACE] = ACTIONS(5559), - [anon_sym_RBRACE] = ACTIONS(5559), - [anon_sym_signed] = ACTIONS(5557), - [anon_sym_unsigned] = ACTIONS(5557), - [anon_sym_long] = ACTIONS(5557), - [anon_sym_short] = ACTIONS(5557), - [anon_sym_LBRACK] = ACTIONS(5559), - [anon_sym_RBRACK] = ACTIONS(5559), - [anon_sym_const] = ACTIONS(5557), - [anon_sym_constexpr] = ACTIONS(5557), - [anon_sym_volatile] = ACTIONS(5557), - [anon_sym_restrict] = ACTIONS(5557), - [anon_sym___restrict__] = ACTIONS(5557), - [anon_sym__Atomic] = ACTIONS(5557), - [anon_sym__Noreturn] = ACTIONS(5557), - [anon_sym_noreturn] = ACTIONS(5557), - [anon_sym_mutable] = ACTIONS(5557), - [anon_sym_constinit] = ACTIONS(5557), - [anon_sym_consteval] = ACTIONS(5557), - [sym_primitive_type] = ACTIONS(5557), - [anon_sym_COLON] = ACTIONS(5559), - [anon_sym_QMARK] = ACTIONS(5559), - [anon_sym_LT_EQ_GT] = ACTIONS(5559), - [anon_sym_or] = ACTIONS(5557), - [anon_sym_and] = ACTIONS(5557), - [anon_sym_bitor] = ACTIONS(5557), - [anon_sym_xor] = ACTIONS(5557), - [anon_sym_bitand] = ACTIONS(5557), - [anon_sym_not_eq] = ACTIONS(5557), - [anon_sym_DASH_DASH] = ACTIONS(5559), - [anon_sym_PLUS_PLUS] = ACTIONS(5559), - [anon_sym_DOT] = ACTIONS(5557), - [anon_sym_DOT_STAR] = ACTIONS(5559), - [anon_sym_DASH_GT] = ACTIONS(5559), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5557), - [anon_sym_decltype] = ACTIONS(5557), - [anon_sym_final] = ACTIONS(5557), - [anon_sym_override] = ACTIONS(5557), - [anon_sym_requires] = ACTIONS(5557), - }, - [2641] = { - [sym_identifier] = ACTIONS(5561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5563), - [anon_sym_COMMA] = ACTIONS(5563), - [anon_sym_RPAREN] = ACTIONS(5563), - [anon_sym_LPAREN2] = ACTIONS(5563), - [anon_sym_DASH] = ACTIONS(5561), - [anon_sym_PLUS] = ACTIONS(5561), - [anon_sym_STAR] = ACTIONS(5561), - [anon_sym_SLASH] = ACTIONS(5561), - [anon_sym_PERCENT] = ACTIONS(5561), - [anon_sym_PIPE_PIPE] = ACTIONS(5563), - [anon_sym_AMP_AMP] = ACTIONS(5563), - [anon_sym_PIPE] = ACTIONS(5561), - [anon_sym_CARET] = ACTIONS(5561), - [anon_sym_AMP] = ACTIONS(5561), - [anon_sym_EQ_EQ] = ACTIONS(5563), - [anon_sym_BANG_EQ] = ACTIONS(5563), - [anon_sym_GT] = ACTIONS(5561), - [anon_sym_GT_EQ] = ACTIONS(5563), - [anon_sym_LT_EQ] = ACTIONS(5561), - [anon_sym_LT] = ACTIONS(5561), - [anon_sym_LT_LT] = ACTIONS(5561), - [anon_sym_GT_GT] = ACTIONS(5561), - [anon_sym_SEMI] = ACTIONS(5563), - [anon_sym_RBRACE] = ACTIONS(5563), - [anon_sym_LBRACK] = ACTIONS(5563), - [anon_sym_RBRACK] = ACTIONS(5563), - [anon_sym_EQ] = ACTIONS(5561), - [anon_sym_COLON] = ACTIONS(5563), - [anon_sym_QMARK] = ACTIONS(5563), - [anon_sym_STAR_EQ] = ACTIONS(5563), - [anon_sym_SLASH_EQ] = ACTIONS(5563), - [anon_sym_PERCENT_EQ] = ACTIONS(5563), - [anon_sym_PLUS_EQ] = ACTIONS(5563), - [anon_sym_DASH_EQ] = ACTIONS(5563), - [anon_sym_LT_LT_EQ] = ACTIONS(5563), - [anon_sym_GT_GT_EQ] = ACTIONS(5563), - [anon_sym_AMP_EQ] = ACTIONS(5563), - [anon_sym_CARET_EQ] = ACTIONS(5563), - [anon_sym_PIPE_EQ] = ACTIONS(5563), - [anon_sym_and_eq] = ACTIONS(5561), - [anon_sym_or_eq] = ACTIONS(5561), - [anon_sym_xor_eq] = ACTIONS(5561), - [anon_sym_LT_EQ_GT] = ACTIONS(5563), - [anon_sym_or] = ACTIONS(5561), - [anon_sym_and] = ACTIONS(5561), - [anon_sym_bitor] = ACTIONS(5561), - [anon_sym_xor] = ACTIONS(5561), - [anon_sym_bitand] = ACTIONS(5561), - [anon_sym_not_eq] = ACTIONS(5561), - [anon_sym_DASH_DASH] = ACTIONS(5563), - [anon_sym_PLUS_PLUS] = ACTIONS(5563), - [anon_sym_DOT] = ACTIONS(5561), - [anon_sym_DOT_STAR] = ACTIONS(5563), - [anon_sym_DASH_GT] = ACTIONS(5563), - [anon_sym_L_DQUOTE] = ACTIONS(5563), - [anon_sym_u_DQUOTE] = ACTIONS(5563), - [anon_sym_U_DQUOTE] = ACTIONS(5563), - [anon_sym_u8_DQUOTE] = ACTIONS(5563), - [anon_sym_DQUOTE] = ACTIONS(5563), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5563), - [anon_sym_LR_DQUOTE] = ACTIONS(5563), - [anon_sym_uR_DQUOTE] = ACTIONS(5563), - [anon_sym_UR_DQUOTE] = ACTIONS(5563), - [anon_sym_u8R_DQUOTE] = ACTIONS(5563), - [sym_literal_suffix] = ACTIONS(5561), - }, - [2642] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5841), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2643] = { - [sym_catch_clause] = STATE(2565), - [aux_sym_constructor_try_statement_repeat1] = STATE(2565), - [sym_identifier] = ACTIONS(2559), - [aux_sym_preproc_def_token1] = ACTIONS(2559), - [aux_sym_preproc_if_token1] = ACTIONS(2559), - [aux_sym_preproc_if_token2] = ACTIONS(2559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), - [sym_preproc_directive] = ACTIONS(2559), - [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(2559), - [anon_sym___extension__] = ACTIONS(2559), - [anon_sym_typedef] = ACTIONS(2559), - [anon_sym_extern] = ACTIONS(2559), - [anon_sym___attribute__] = ACTIONS(2559), - [anon_sym_COLON_COLON] = ACTIONS(2561), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2559), - [anon_sym___based] = ACTIONS(2559), - [anon_sym_signed] = ACTIONS(2559), - [anon_sym_unsigned] = ACTIONS(2559), - [anon_sym_long] = ACTIONS(2559), - [anon_sym_short] = ACTIONS(2559), - [anon_sym_LBRACK] = ACTIONS(2559), - [anon_sym_static] = ACTIONS(2559), - [anon_sym_register] = ACTIONS(2559), - [anon_sym_inline] = ACTIONS(2559), - [anon_sym___inline] = ACTIONS(2559), - [anon_sym___inline__] = ACTIONS(2559), - [anon_sym___forceinline] = ACTIONS(2559), - [anon_sym_thread_local] = ACTIONS(2559), - [anon_sym___thread] = ACTIONS(2559), - [anon_sym_const] = ACTIONS(2559), - [anon_sym_constexpr] = ACTIONS(2559), - [anon_sym_volatile] = ACTIONS(2559), - [anon_sym_restrict] = ACTIONS(2559), - [anon_sym___restrict__] = ACTIONS(2559), - [anon_sym__Atomic] = ACTIONS(2559), - [anon_sym__Noreturn] = ACTIONS(2559), - [anon_sym_noreturn] = ACTIONS(2559), - [anon_sym_mutable] = ACTIONS(2559), - [anon_sym_constinit] = ACTIONS(2559), - [anon_sym_consteval] = ACTIONS(2559), - [sym_primitive_type] = ACTIONS(2559), - [anon_sym_enum] = ACTIONS(2559), - [anon_sym_class] = ACTIONS(2559), - [anon_sym_struct] = ACTIONS(2559), - [anon_sym_union] = ACTIONS(2559), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2559), - [anon_sym_decltype] = ACTIONS(2559), - [anon_sym_virtual] = ACTIONS(2559), - [anon_sym_alignas] = ACTIONS(2559), - [anon_sym_explicit] = ACTIONS(2559), - [anon_sym_typename] = ACTIONS(2559), - [anon_sym_template] = ACTIONS(2559), - [anon_sym_operator] = ACTIONS(2559), - [anon_sym_friend] = ACTIONS(2559), - [anon_sym_public] = ACTIONS(2559), - [anon_sym_private] = ACTIONS(2559), - [anon_sym_protected] = ACTIONS(2559), - [anon_sym_using] = ACTIONS(2559), - [anon_sym_static_assert] = ACTIONS(2559), - [anon_sym_catch] = ACTIONS(5423), - }, - [2644] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5825), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2645] = { - [sym_identifier] = ACTIONS(5565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5567), - [anon_sym_COMMA] = ACTIONS(5567), - [anon_sym_RPAREN] = ACTIONS(5567), - [anon_sym_LPAREN2] = ACTIONS(5567), - [anon_sym_DASH] = ACTIONS(5565), - [anon_sym_PLUS] = ACTIONS(5565), - [anon_sym_STAR] = ACTIONS(5567), - [anon_sym_SLASH] = ACTIONS(5565), - [anon_sym_PERCENT] = ACTIONS(5567), - [anon_sym_PIPE_PIPE] = ACTIONS(5567), - [anon_sym_AMP_AMP] = ACTIONS(5567), - [anon_sym_PIPE] = ACTIONS(5565), - [anon_sym_CARET] = ACTIONS(5567), - [anon_sym_AMP] = ACTIONS(5565), - [anon_sym_EQ_EQ] = ACTIONS(5567), - [anon_sym_BANG_EQ] = ACTIONS(5567), - [anon_sym_GT] = ACTIONS(5565), - [anon_sym_GT_EQ] = ACTIONS(5567), - [anon_sym_LT_EQ] = ACTIONS(5565), - [anon_sym_LT] = ACTIONS(5565), - [anon_sym_LT_LT] = ACTIONS(5567), - [anon_sym_GT_GT] = ACTIONS(5567), - [anon_sym_SEMI] = ACTIONS(5567), - [anon_sym___extension__] = ACTIONS(5565), - [anon_sym___attribute__] = ACTIONS(5565), - [anon_sym___based] = ACTIONS(5565), - [anon_sym_LBRACE] = ACTIONS(5567), - [anon_sym_RBRACE] = ACTIONS(5567), - [anon_sym_signed] = ACTIONS(5565), - [anon_sym_unsigned] = ACTIONS(5565), - [anon_sym_long] = ACTIONS(5565), - [anon_sym_short] = ACTIONS(5565), - [anon_sym_LBRACK] = ACTIONS(5567), - [anon_sym_RBRACK] = ACTIONS(5567), - [anon_sym_const] = ACTIONS(5565), - [anon_sym_constexpr] = ACTIONS(5565), - [anon_sym_volatile] = ACTIONS(5565), - [anon_sym_restrict] = ACTIONS(5565), - [anon_sym___restrict__] = ACTIONS(5565), - [anon_sym__Atomic] = ACTIONS(5565), - [anon_sym__Noreturn] = ACTIONS(5565), - [anon_sym_noreturn] = ACTIONS(5565), - [anon_sym_mutable] = ACTIONS(5565), - [anon_sym_constinit] = ACTIONS(5565), - [anon_sym_consteval] = ACTIONS(5565), - [sym_primitive_type] = ACTIONS(5565), - [anon_sym_COLON] = ACTIONS(5567), - [anon_sym_QMARK] = ACTIONS(5567), - [anon_sym_LT_EQ_GT] = ACTIONS(5567), - [anon_sym_or] = ACTIONS(5565), - [anon_sym_and] = ACTIONS(5565), - [anon_sym_bitor] = ACTIONS(5565), - [anon_sym_xor] = ACTIONS(5565), - [anon_sym_bitand] = ACTIONS(5565), - [anon_sym_not_eq] = ACTIONS(5565), - [anon_sym_DASH_DASH] = ACTIONS(5567), - [anon_sym_PLUS_PLUS] = ACTIONS(5567), - [anon_sym_DOT] = ACTIONS(5565), - [anon_sym_DOT_STAR] = ACTIONS(5567), - [anon_sym_DASH_GT] = ACTIONS(5567), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5565), - [anon_sym_decltype] = ACTIONS(5565), - [anon_sym_final] = ACTIONS(5565), - [anon_sym_override] = ACTIONS(5565), - [anon_sym_requires] = ACTIONS(5565), - }, - [2646] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(4762), - [sym_raw_string_literal] = STATE(3456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_COLON] = ACTIONS(4379), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4312), - [anon_sym_or_eq] = ACTIONS(4312), - [anon_sym_xor_eq] = ACTIONS(4312), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [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), - }, - [2647] = { - [sym_string_literal] = STATE(2647), - [sym_raw_string_literal] = STATE(2647), - [aux_sym_concatenated_string_repeat1] = STATE(2647), - [sym_identifier] = ACTIONS(5569), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5118), - [anon_sym_COMMA] = ACTIONS(5118), - [anon_sym_LPAREN2] = ACTIONS(5118), - [anon_sym_DASH] = ACTIONS(5120), - [anon_sym_PLUS] = ACTIONS(5120), - [anon_sym_STAR] = ACTIONS(5120), - [anon_sym_SLASH] = ACTIONS(5120), - [anon_sym_PERCENT] = ACTIONS(5120), - [anon_sym_PIPE_PIPE] = ACTIONS(5118), - [anon_sym_AMP_AMP] = ACTIONS(5118), - [anon_sym_PIPE] = ACTIONS(5120), - [anon_sym_CARET] = ACTIONS(5120), - [anon_sym_AMP] = ACTIONS(5120), - [anon_sym_EQ_EQ] = ACTIONS(5118), - [anon_sym_BANG_EQ] = ACTIONS(5118), - [anon_sym_GT] = ACTIONS(5120), - [anon_sym_GT_EQ] = ACTIONS(5118), - [anon_sym_LT_EQ] = ACTIONS(5120), - [anon_sym_LT] = ACTIONS(5120), - [anon_sym_LT_LT] = ACTIONS(5120), - [anon_sym_GT_GT] = ACTIONS(5120), - [anon_sym_SEMI] = ACTIONS(5118), - [anon_sym___attribute__] = ACTIONS(5120), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_EQ] = ACTIONS(5120), - [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(5120), - [anon_sym_or_eq] = ACTIONS(5120), - [anon_sym_xor_eq] = ACTIONS(5120), - [anon_sym_LT_EQ_GT] = ACTIONS(5118), - [anon_sym_or] = ACTIONS(5120), - [anon_sym_and] = ACTIONS(5120), - [anon_sym_bitor] = ACTIONS(5120), - [anon_sym_xor] = ACTIONS(5120), - [anon_sym_bitand] = ACTIONS(5120), - [anon_sym_not_eq] = ACTIONS(5120), - [anon_sym_DASH_DASH] = ACTIONS(5118), - [anon_sym_PLUS_PLUS] = ACTIONS(5118), - [anon_sym_DOT] = ACTIONS(5120), - [anon_sym_DOT_STAR] = ACTIONS(5118), - [anon_sym_DASH_GT] = ACTIONS(5118), - [anon_sym_L_DQUOTE] = ACTIONS(5572), - [anon_sym_u_DQUOTE] = ACTIONS(5572), - [anon_sym_U_DQUOTE] = ACTIONS(5572), - [anon_sym_u8_DQUOTE] = ACTIONS(5572), - [anon_sym_DQUOTE] = ACTIONS(5572), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5575), - [anon_sym_LR_DQUOTE] = ACTIONS(5575), - [anon_sym_uR_DQUOTE] = ACTIONS(5575), - [anon_sym_UR_DQUOTE] = ACTIONS(5575), - [anon_sym_u8R_DQUOTE] = ACTIONS(5575), - [sym_literal_suffix] = ACTIONS(5120), - }, - [2648] = { - [sym_identifier] = ACTIONS(5578), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5580), - [anon_sym_COMMA] = ACTIONS(5580), - [anon_sym_RPAREN] = ACTIONS(5580), - [anon_sym_LPAREN2] = ACTIONS(5580), - [anon_sym_DASH] = ACTIONS(5578), - [anon_sym_PLUS] = ACTIONS(5578), - [anon_sym_STAR] = ACTIONS(5580), - [anon_sym_SLASH] = ACTIONS(5578), - [anon_sym_PERCENT] = ACTIONS(5580), - [anon_sym_PIPE_PIPE] = ACTIONS(5580), - [anon_sym_AMP_AMP] = ACTIONS(5580), - [anon_sym_PIPE] = ACTIONS(5578), - [anon_sym_CARET] = ACTIONS(5580), - [anon_sym_AMP] = ACTIONS(5578), - [anon_sym_EQ_EQ] = ACTIONS(5580), - [anon_sym_BANG_EQ] = ACTIONS(5580), - [anon_sym_GT] = ACTIONS(5578), - [anon_sym_GT_EQ] = ACTIONS(5580), - [anon_sym_LT_EQ] = ACTIONS(5578), - [anon_sym_LT] = ACTIONS(5578), - [anon_sym_LT_LT] = ACTIONS(5580), - [anon_sym_GT_GT] = ACTIONS(5580), - [anon_sym_SEMI] = ACTIONS(5580), - [anon_sym___extension__] = ACTIONS(5578), - [anon_sym___attribute__] = ACTIONS(5578), - [anon_sym___based] = ACTIONS(5578), - [anon_sym_LBRACE] = ACTIONS(5580), - [anon_sym_RBRACE] = ACTIONS(5580), - [anon_sym_signed] = ACTIONS(5578), - [anon_sym_unsigned] = ACTIONS(5578), - [anon_sym_long] = ACTIONS(5578), - [anon_sym_short] = ACTIONS(5578), - [anon_sym_LBRACK] = ACTIONS(5580), - [anon_sym_RBRACK] = ACTIONS(5580), - [anon_sym_const] = ACTIONS(5578), - [anon_sym_constexpr] = ACTIONS(5578), - [anon_sym_volatile] = ACTIONS(5578), - [anon_sym_restrict] = ACTIONS(5578), - [anon_sym___restrict__] = ACTIONS(5578), - [anon_sym__Atomic] = ACTIONS(5578), - [anon_sym__Noreturn] = ACTIONS(5578), - [anon_sym_noreturn] = ACTIONS(5578), - [anon_sym_mutable] = ACTIONS(5578), - [anon_sym_constinit] = ACTIONS(5578), - [anon_sym_consteval] = ACTIONS(5578), - [sym_primitive_type] = ACTIONS(5578), - [anon_sym_COLON] = ACTIONS(5580), - [anon_sym_QMARK] = ACTIONS(5580), - [anon_sym_LT_EQ_GT] = ACTIONS(5580), - [anon_sym_or] = ACTIONS(5578), - [anon_sym_and] = ACTIONS(5578), - [anon_sym_bitor] = ACTIONS(5578), - [anon_sym_xor] = ACTIONS(5578), - [anon_sym_bitand] = ACTIONS(5578), - [anon_sym_not_eq] = ACTIONS(5578), - [anon_sym_DASH_DASH] = ACTIONS(5580), - [anon_sym_PLUS_PLUS] = ACTIONS(5580), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_DOT_STAR] = ACTIONS(5580), - [anon_sym_DASH_GT] = ACTIONS(5580), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5578), - [anon_sym_decltype] = ACTIONS(5578), - [anon_sym_final] = ACTIONS(5578), - [anon_sym_override] = ACTIONS(5578), - [anon_sym_requires] = ACTIONS(5578), - }, - [2649] = { - [sym_identifier] = ACTIONS(5582), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5584), - [anon_sym_COMMA] = ACTIONS(5584), - [anon_sym_RPAREN] = ACTIONS(5584), - [anon_sym_LPAREN2] = ACTIONS(5584), - [anon_sym_DASH] = ACTIONS(5582), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_STAR] = ACTIONS(5584), - [anon_sym_SLASH] = ACTIONS(5582), - [anon_sym_PERCENT] = ACTIONS(5584), - [anon_sym_PIPE_PIPE] = ACTIONS(5584), - [anon_sym_AMP_AMP] = ACTIONS(5584), - [anon_sym_PIPE] = ACTIONS(5582), - [anon_sym_CARET] = ACTIONS(5584), - [anon_sym_AMP] = ACTIONS(5582), - [anon_sym_EQ_EQ] = ACTIONS(5584), - [anon_sym_BANG_EQ] = ACTIONS(5584), - [anon_sym_GT] = ACTIONS(5582), - [anon_sym_GT_EQ] = ACTIONS(5584), - [anon_sym_LT_EQ] = ACTIONS(5582), - [anon_sym_LT] = ACTIONS(5582), - [anon_sym_LT_LT] = ACTIONS(5584), - [anon_sym_GT_GT] = ACTIONS(5584), - [anon_sym_SEMI] = ACTIONS(5584), - [anon_sym___extension__] = ACTIONS(5582), - [anon_sym___attribute__] = ACTIONS(5582), - [anon_sym___based] = ACTIONS(5582), - [anon_sym_LBRACE] = ACTIONS(5584), - [anon_sym_RBRACE] = ACTIONS(5584), - [anon_sym_signed] = ACTIONS(5582), - [anon_sym_unsigned] = ACTIONS(5582), - [anon_sym_long] = ACTIONS(5582), - [anon_sym_short] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5584), - [anon_sym_RBRACK] = ACTIONS(5584), - [anon_sym_const] = ACTIONS(5582), - [anon_sym_constexpr] = ACTIONS(5582), - [anon_sym_volatile] = ACTIONS(5582), - [anon_sym_restrict] = ACTIONS(5582), - [anon_sym___restrict__] = ACTIONS(5582), - [anon_sym__Atomic] = ACTIONS(5582), - [anon_sym__Noreturn] = ACTIONS(5582), - [anon_sym_noreturn] = ACTIONS(5582), - [anon_sym_mutable] = ACTIONS(5582), - [anon_sym_constinit] = ACTIONS(5582), - [anon_sym_consteval] = ACTIONS(5582), - [sym_primitive_type] = ACTIONS(5582), - [anon_sym_COLON] = ACTIONS(5584), - [anon_sym_QMARK] = ACTIONS(5584), - [anon_sym_LT_EQ_GT] = ACTIONS(5584), - [anon_sym_or] = ACTIONS(5582), - [anon_sym_and] = ACTIONS(5582), - [anon_sym_bitor] = ACTIONS(5582), - [anon_sym_xor] = ACTIONS(5582), - [anon_sym_bitand] = ACTIONS(5582), - [anon_sym_not_eq] = ACTIONS(5582), - [anon_sym_DASH_DASH] = ACTIONS(5584), - [anon_sym_PLUS_PLUS] = ACTIONS(5584), - [anon_sym_DOT] = ACTIONS(5582), - [anon_sym_DOT_STAR] = ACTIONS(5584), - [anon_sym_DASH_GT] = ACTIONS(5584), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5582), - [anon_sym_decltype] = ACTIONS(5582), - [anon_sym_final] = ACTIONS(5582), - [anon_sym_override] = ACTIONS(5582), - [anon_sym_requires] = ACTIONS(5582), - }, - [2650] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5824), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2651] = { - [sym_identifier] = ACTIONS(5586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5588), - [anon_sym_COMMA] = ACTIONS(5588), - [anon_sym_RPAREN] = ACTIONS(5588), - [anon_sym_LPAREN2] = ACTIONS(5588), - [anon_sym_DASH] = ACTIONS(5586), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_STAR] = ACTIONS(5588), - [anon_sym_SLASH] = ACTIONS(5586), - [anon_sym_PERCENT] = ACTIONS(5588), - [anon_sym_PIPE_PIPE] = ACTIONS(5588), - [anon_sym_AMP_AMP] = ACTIONS(5588), - [anon_sym_PIPE] = ACTIONS(5586), - [anon_sym_CARET] = ACTIONS(5588), - [anon_sym_AMP] = ACTIONS(5586), - [anon_sym_EQ_EQ] = ACTIONS(5588), - [anon_sym_BANG_EQ] = ACTIONS(5588), - [anon_sym_GT] = ACTIONS(5586), - [anon_sym_GT_EQ] = ACTIONS(5588), - [anon_sym_LT_EQ] = ACTIONS(5586), - [anon_sym_LT] = ACTIONS(5586), - [anon_sym_LT_LT] = ACTIONS(5588), - [anon_sym_GT_GT] = ACTIONS(5588), - [anon_sym_SEMI] = ACTIONS(5588), - [anon_sym___extension__] = ACTIONS(5586), - [anon_sym___attribute__] = ACTIONS(5586), - [anon_sym___based] = ACTIONS(5586), - [anon_sym_LBRACE] = ACTIONS(5588), - [anon_sym_RBRACE] = ACTIONS(5588), - [anon_sym_signed] = ACTIONS(5586), - [anon_sym_unsigned] = ACTIONS(5586), - [anon_sym_long] = ACTIONS(5586), - [anon_sym_short] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5588), - [anon_sym_RBRACK] = ACTIONS(5588), - [anon_sym_const] = ACTIONS(5586), - [anon_sym_constexpr] = ACTIONS(5586), - [anon_sym_volatile] = ACTIONS(5586), - [anon_sym_restrict] = ACTIONS(5586), - [anon_sym___restrict__] = ACTIONS(5586), - [anon_sym__Atomic] = ACTIONS(5586), - [anon_sym__Noreturn] = ACTIONS(5586), - [anon_sym_noreturn] = ACTIONS(5586), - [anon_sym_mutable] = ACTIONS(5586), - [anon_sym_constinit] = ACTIONS(5586), - [anon_sym_consteval] = ACTIONS(5586), - [sym_primitive_type] = ACTIONS(5586), - [anon_sym_COLON] = ACTIONS(5588), - [anon_sym_QMARK] = ACTIONS(5588), - [anon_sym_LT_EQ_GT] = ACTIONS(5588), - [anon_sym_or] = ACTIONS(5586), - [anon_sym_and] = ACTIONS(5586), - [anon_sym_bitor] = ACTIONS(5586), - [anon_sym_xor] = ACTIONS(5586), - [anon_sym_bitand] = ACTIONS(5586), - [anon_sym_not_eq] = ACTIONS(5586), - [anon_sym_DASH_DASH] = ACTIONS(5588), - [anon_sym_PLUS_PLUS] = ACTIONS(5588), - [anon_sym_DOT] = ACTIONS(5586), - [anon_sym_DOT_STAR] = ACTIONS(5588), - [anon_sym_DASH_GT] = ACTIONS(5588), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5586), - [anon_sym_decltype] = ACTIONS(5586), - [anon_sym_final] = ACTIONS(5586), - [anon_sym_override] = ACTIONS(5586), - [anon_sym_requires] = ACTIONS(5586), - }, - [2652] = { - [sym_string_literal] = STATE(2647), - [sym_raw_string_literal] = STATE(2647), - [aux_sym_concatenated_string_repeat1] = STATE(2647), - [sym_identifier] = ACTIONS(5590), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5145), - [anon_sym_COMMA] = ACTIONS(5145), - [anon_sym_LPAREN2] = ACTIONS(5145), - [anon_sym_DASH] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_PERCENT] = ACTIONS(5147), - [anon_sym_PIPE_PIPE] = ACTIONS(5145), - [anon_sym_AMP_AMP] = ACTIONS(5145), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_CARET] = ACTIONS(5147), - [anon_sym_AMP] = ACTIONS(5147), - [anon_sym_EQ_EQ] = ACTIONS(5145), - [anon_sym_BANG_EQ] = ACTIONS(5145), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_GT_EQ] = ACTIONS(5145), - [anon_sym_LT_EQ] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5147), - [anon_sym_LT_LT] = ACTIONS(5147), - [anon_sym_GT_GT] = ACTIONS(5147), - [anon_sym_SEMI] = ACTIONS(5145), - [anon_sym___attribute__] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_QMARK] = ACTIONS(5145), - [anon_sym_STAR_EQ] = ACTIONS(5145), - [anon_sym_SLASH_EQ] = ACTIONS(5145), - [anon_sym_PERCENT_EQ] = ACTIONS(5145), - [anon_sym_PLUS_EQ] = ACTIONS(5145), - [anon_sym_DASH_EQ] = ACTIONS(5145), - [anon_sym_LT_LT_EQ] = ACTIONS(5145), - [anon_sym_GT_GT_EQ] = ACTIONS(5145), - [anon_sym_AMP_EQ] = ACTIONS(5145), - [anon_sym_CARET_EQ] = ACTIONS(5145), - [anon_sym_PIPE_EQ] = ACTIONS(5145), - [anon_sym_and_eq] = ACTIONS(5147), - [anon_sym_or_eq] = ACTIONS(5147), - [anon_sym_xor_eq] = ACTIONS(5147), - [anon_sym_LT_EQ_GT] = ACTIONS(5145), - [anon_sym_or] = ACTIONS(5147), - [anon_sym_and] = ACTIONS(5147), - [anon_sym_bitor] = ACTIONS(5147), - [anon_sym_xor] = ACTIONS(5147), - [anon_sym_bitand] = ACTIONS(5147), - [anon_sym_not_eq] = ACTIONS(5147), - [anon_sym_DASH_DASH] = ACTIONS(5145), - [anon_sym_PLUS_PLUS] = ACTIONS(5145), - [anon_sym_DOT] = ACTIONS(5147), - [anon_sym_DOT_STAR] = ACTIONS(5145), - [anon_sym_DASH_GT] = ACTIONS(5145), - [anon_sym_L_DQUOTE] = ACTIONS(5413), - [anon_sym_u_DQUOTE] = ACTIONS(5413), - [anon_sym_U_DQUOTE] = ACTIONS(5413), - [anon_sym_u8_DQUOTE] = ACTIONS(5413), - [anon_sym_DQUOTE] = ACTIONS(5413), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5415), - [anon_sym_LR_DQUOTE] = ACTIONS(5415), - [anon_sym_uR_DQUOTE] = ACTIONS(5415), - [anon_sym_UR_DQUOTE] = ACTIONS(5415), - [anon_sym_u8R_DQUOTE] = ACTIONS(5415), - [sym_literal_suffix] = ACTIONS(5147), - }, - [2653] = { - [sym_identifier] = ACTIONS(5592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5594), - [anon_sym_COMMA] = ACTIONS(5594), - [anon_sym_RPAREN] = ACTIONS(5594), - [anon_sym_LPAREN2] = ACTIONS(5594), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_STAR] = ACTIONS(5592), - [anon_sym_SLASH] = ACTIONS(5592), - [anon_sym_PERCENT] = ACTIONS(5592), - [anon_sym_PIPE_PIPE] = ACTIONS(5594), - [anon_sym_AMP_AMP] = ACTIONS(5594), - [anon_sym_PIPE] = ACTIONS(5592), - [anon_sym_CARET] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(5592), - [anon_sym_EQ_EQ] = ACTIONS(5594), - [anon_sym_BANG_EQ] = ACTIONS(5594), - [anon_sym_GT] = ACTIONS(5592), - [anon_sym_GT_EQ] = ACTIONS(5594), - [anon_sym_LT_EQ] = ACTIONS(5592), - [anon_sym_LT] = ACTIONS(5592), - [anon_sym_LT_LT] = ACTIONS(5592), - [anon_sym_GT_GT] = ACTIONS(5592), - [anon_sym_SEMI] = ACTIONS(5594), - [anon_sym_RBRACE] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(5594), - [anon_sym_RBRACK] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(5592), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_QMARK] = ACTIONS(5594), - [anon_sym_STAR_EQ] = ACTIONS(5594), - [anon_sym_SLASH_EQ] = ACTIONS(5594), - [anon_sym_PERCENT_EQ] = ACTIONS(5594), - [anon_sym_PLUS_EQ] = ACTIONS(5594), - [anon_sym_DASH_EQ] = ACTIONS(5594), - [anon_sym_LT_LT_EQ] = ACTIONS(5594), - [anon_sym_GT_GT_EQ] = ACTIONS(5594), - [anon_sym_AMP_EQ] = ACTIONS(5594), - [anon_sym_CARET_EQ] = ACTIONS(5594), - [anon_sym_PIPE_EQ] = ACTIONS(5594), - [anon_sym_and_eq] = ACTIONS(5592), - [anon_sym_or_eq] = ACTIONS(5592), - [anon_sym_xor_eq] = ACTIONS(5592), - [anon_sym_LT_EQ_GT] = ACTIONS(5594), - [anon_sym_or] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5592), - [anon_sym_bitor] = ACTIONS(5592), - [anon_sym_xor] = ACTIONS(5592), - [anon_sym_bitand] = ACTIONS(5592), - [anon_sym_not_eq] = ACTIONS(5592), - [anon_sym_DASH_DASH] = ACTIONS(5594), - [anon_sym_PLUS_PLUS] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(5592), - [anon_sym_DOT_STAR] = ACTIONS(5594), - [anon_sym_DASH_GT] = ACTIONS(5594), - [anon_sym_L_DQUOTE] = ACTIONS(5594), - [anon_sym_u_DQUOTE] = ACTIONS(5594), - [anon_sym_U_DQUOTE] = ACTIONS(5594), - [anon_sym_u8_DQUOTE] = ACTIONS(5594), - [anon_sym_DQUOTE] = ACTIONS(5594), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5594), - [anon_sym_LR_DQUOTE] = ACTIONS(5594), - [anon_sym_uR_DQUOTE] = ACTIONS(5594), - [anon_sym_UR_DQUOTE] = ACTIONS(5594), - [anon_sym_u8R_DQUOTE] = ACTIONS(5594), - [sym_literal_suffix] = ACTIONS(5592), - }, - [2654] = { - [sym_string_literal] = STATE(2652), - [sym_raw_string_literal] = STATE(2652), - [aux_sym_concatenated_string_repeat1] = STATE(2652), - [sym_identifier] = ACTIONS(5596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5132), - [anon_sym_COMMA] = ACTIONS(5132), - [anon_sym_LPAREN2] = ACTIONS(5132), - [anon_sym_DASH] = ACTIONS(5134), - [anon_sym_PLUS] = ACTIONS(5134), - [anon_sym_STAR] = ACTIONS(5134), - [anon_sym_SLASH] = ACTIONS(5134), - [anon_sym_PERCENT] = ACTIONS(5134), - [anon_sym_PIPE_PIPE] = ACTIONS(5132), - [anon_sym_AMP_AMP] = ACTIONS(5132), - [anon_sym_PIPE] = ACTIONS(5134), - [anon_sym_CARET] = ACTIONS(5134), - [anon_sym_AMP] = ACTIONS(5134), - [anon_sym_EQ_EQ] = ACTIONS(5132), - [anon_sym_BANG_EQ] = ACTIONS(5132), - [anon_sym_GT] = ACTIONS(5134), - [anon_sym_GT_EQ] = ACTIONS(5132), - [anon_sym_LT_EQ] = ACTIONS(5134), - [anon_sym_LT] = ACTIONS(5134), - [anon_sym_LT_LT] = ACTIONS(5134), - [anon_sym_GT_GT] = ACTIONS(5134), - [anon_sym_SEMI] = ACTIONS(5132), - [anon_sym___attribute__] = ACTIONS(5134), - [anon_sym_LBRACK] = ACTIONS(5132), - [anon_sym_EQ] = ACTIONS(5134), - [anon_sym_QMARK] = ACTIONS(5132), - [anon_sym_STAR_EQ] = ACTIONS(5132), - [anon_sym_SLASH_EQ] = ACTIONS(5132), - [anon_sym_PERCENT_EQ] = ACTIONS(5132), - [anon_sym_PLUS_EQ] = ACTIONS(5132), - [anon_sym_DASH_EQ] = ACTIONS(5132), - [anon_sym_LT_LT_EQ] = ACTIONS(5132), - [anon_sym_GT_GT_EQ] = ACTIONS(5132), - [anon_sym_AMP_EQ] = ACTIONS(5132), - [anon_sym_CARET_EQ] = ACTIONS(5132), - [anon_sym_PIPE_EQ] = ACTIONS(5132), - [anon_sym_and_eq] = ACTIONS(5134), - [anon_sym_or_eq] = ACTIONS(5134), - [anon_sym_xor_eq] = ACTIONS(5134), - [anon_sym_LT_EQ_GT] = ACTIONS(5132), - [anon_sym_or] = ACTIONS(5134), - [anon_sym_and] = ACTIONS(5134), - [anon_sym_bitor] = ACTIONS(5134), - [anon_sym_xor] = ACTIONS(5134), - [anon_sym_bitand] = ACTIONS(5134), - [anon_sym_not_eq] = ACTIONS(5134), - [anon_sym_DASH_DASH] = ACTIONS(5132), - [anon_sym_PLUS_PLUS] = ACTIONS(5132), - [anon_sym_DOT] = ACTIONS(5134), - [anon_sym_DOT_STAR] = ACTIONS(5132), - [anon_sym_DASH_GT] = ACTIONS(5132), - [anon_sym_L_DQUOTE] = ACTIONS(5413), - [anon_sym_u_DQUOTE] = ACTIONS(5413), - [anon_sym_U_DQUOTE] = ACTIONS(5413), - [anon_sym_u8_DQUOTE] = ACTIONS(5413), - [anon_sym_DQUOTE] = ACTIONS(5413), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5415), - [anon_sym_LR_DQUOTE] = ACTIONS(5415), - [anon_sym_uR_DQUOTE] = ACTIONS(5415), - [anon_sym_UR_DQUOTE] = ACTIONS(5415), - [anon_sym_u8R_DQUOTE] = ACTIONS(5415), - [sym_literal_suffix] = ACTIONS(5134), - }, - [2655] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(4762), - [sym_raw_string_literal] = STATE(3456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_COLON] = ACTIONS(5598), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4312), - [anon_sym_SLASH_EQ] = ACTIONS(4312), - [anon_sym_PERCENT_EQ] = ACTIONS(4312), - [anon_sym_PLUS_EQ] = ACTIONS(4312), - [anon_sym_DASH_EQ] = ACTIONS(4312), - [anon_sym_LT_LT_EQ] = ACTIONS(4312), - [anon_sym_GT_GT_EQ] = ACTIONS(4312), - [anon_sym_AMP_EQ] = ACTIONS(4312), - [anon_sym_CARET_EQ] = ACTIONS(4312), - [anon_sym_PIPE_EQ] = ACTIONS(4312), - [anon_sym_and_eq] = ACTIONS(4312), - [anon_sym_or_eq] = ACTIONS(4312), - [anon_sym_xor_eq] = ACTIONS(4312), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [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), - }, - [2656] = { - [sym_identifier] = ACTIONS(5600), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5602), - [anon_sym_COMMA] = ACTIONS(5602), - [anon_sym_RPAREN] = ACTIONS(5602), - [anon_sym_LPAREN2] = ACTIONS(5602), - [anon_sym_DASH] = ACTIONS(5600), - [anon_sym_PLUS] = ACTIONS(5600), - [anon_sym_STAR] = ACTIONS(5600), - [anon_sym_SLASH] = ACTIONS(5600), - [anon_sym_PERCENT] = ACTIONS(5600), - [anon_sym_PIPE_PIPE] = ACTIONS(5602), - [anon_sym_AMP_AMP] = ACTIONS(5602), - [anon_sym_PIPE] = ACTIONS(5600), - [anon_sym_CARET] = ACTIONS(5600), - [anon_sym_AMP] = ACTIONS(5600), - [anon_sym_EQ_EQ] = ACTIONS(5602), - [anon_sym_BANG_EQ] = ACTIONS(5602), - [anon_sym_GT] = ACTIONS(5600), - [anon_sym_GT_EQ] = ACTIONS(5602), - [anon_sym_LT_EQ] = ACTIONS(5600), - [anon_sym_LT] = ACTIONS(5600), - [anon_sym_LT_LT] = ACTIONS(5600), - [anon_sym_GT_GT] = ACTIONS(5600), - [anon_sym_SEMI] = ACTIONS(5602), - [anon_sym_RBRACE] = ACTIONS(5602), - [anon_sym_LBRACK] = ACTIONS(5602), - [anon_sym_RBRACK] = ACTIONS(5602), - [anon_sym_EQ] = ACTIONS(5600), - [anon_sym_COLON] = ACTIONS(5602), - [anon_sym_QMARK] = ACTIONS(5602), - [anon_sym_STAR_EQ] = ACTIONS(5602), - [anon_sym_SLASH_EQ] = ACTIONS(5602), - [anon_sym_PERCENT_EQ] = ACTIONS(5602), - [anon_sym_PLUS_EQ] = ACTIONS(5602), - [anon_sym_DASH_EQ] = ACTIONS(5602), - [anon_sym_LT_LT_EQ] = ACTIONS(5602), - [anon_sym_GT_GT_EQ] = ACTIONS(5602), - [anon_sym_AMP_EQ] = ACTIONS(5602), - [anon_sym_CARET_EQ] = ACTIONS(5602), - [anon_sym_PIPE_EQ] = ACTIONS(5602), - [anon_sym_and_eq] = ACTIONS(5600), - [anon_sym_or_eq] = ACTIONS(5600), - [anon_sym_xor_eq] = ACTIONS(5600), - [anon_sym_LT_EQ_GT] = ACTIONS(5602), - [anon_sym_or] = ACTIONS(5600), - [anon_sym_and] = ACTIONS(5600), - [anon_sym_bitor] = ACTIONS(5600), - [anon_sym_xor] = ACTIONS(5600), - [anon_sym_bitand] = ACTIONS(5600), - [anon_sym_not_eq] = ACTIONS(5600), - [anon_sym_DASH_DASH] = ACTIONS(5602), - [anon_sym_PLUS_PLUS] = ACTIONS(5602), - [anon_sym_DOT] = ACTIONS(5600), - [anon_sym_DOT_STAR] = ACTIONS(5602), - [anon_sym_DASH_GT] = ACTIONS(5602), - [anon_sym_L_DQUOTE] = ACTIONS(5602), - [anon_sym_u_DQUOTE] = ACTIONS(5602), - [anon_sym_U_DQUOTE] = ACTIONS(5602), - [anon_sym_u8_DQUOTE] = ACTIONS(5602), - [anon_sym_DQUOTE] = ACTIONS(5602), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5602), - [anon_sym_LR_DQUOTE] = ACTIONS(5602), - [anon_sym_uR_DQUOTE] = ACTIONS(5602), - [anon_sym_UR_DQUOTE] = ACTIONS(5602), - [anon_sym_u8R_DQUOTE] = ACTIONS(5602), - [sym_literal_suffix] = ACTIONS(5600), - }, - [2657] = { - [sym_identifier] = ACTIONS(5604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(5606), - [anon_sym_RPAREN] = ACTIONS(5606), - [anon_sym_LPAREN2] = ACTIONS(5606), - [anon_sym_DASH] = ACTIONS(5604), - [anon_sym_PLUS] = ACTIONS(5604), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_SLASH] = ACTIONS(5604), - [anon_sym_PERCENT] = ACTIONS(5606), - [anon_sym_PIPE_PIPE] = ACTIONS(5606), - [anon_sym_AMP_AMP] = ACTIONS(5606), - [anon_sym_PIPE] = ACTIONS(5604), - [anon_sym_CARET] = ACTIONS(5606), - [anon_sym_AMP] = ACTIONS(5604), - [anon_sym_EQ_EQ] = ACTIONS(5606), - [anon_sym_BANG_EQ] = ACTIONS(5606), - [anon_sym_GT] = ACTIONS(5604), - [anon_sym_GT_EQ] = ACTIONS(5606), - [anon_sym_LT_EQ] = ACTIONS(5604), - [anon_sym_LT] = ACTIONS(5604), - [anon_sym_LT_LT] = ACTIONS(5606), - [anon_sym_GT_GT] = ACTIONS(5606), - [anon_sym_SEMI] = ACTIONS(5606), - [anon_sym___extension__] = ACTIONS(5604), - [anon_sym___attribute__] = ACTIONS(5604), - [anon_sym___based] = ACTIONS(5604), - [anon_sym_LBRACE] = ACTIONS(5606), - [anon_sym_RBRACE] = ACTIONS(5606), - [anon_sym_signed] = ACTIONS(5604), - [anon_sym_unsigned] = ACTIONS(5604), - [anon_sym_long] = ACTIONS(5604), - [anon_sym_short] = ACTIONS(5604), - [anon_sym_LBRACK] = ACTIONS(5606), - [anon_sym_RBRACK] = ACTIONS(5606), - [anon_sym_const] = ACTIONS(5604), - [anon_sym_constexpr] = ACTIONS(5604), - [anon_sym_volatile] = ACTIONS(5604), - [anon_sym_restrict] = ACTIONS(5604), - [anon_sym___restrict__] = ACTIONS(5604), - [anon_sym__Atomic] = ACTIONS(5604), - [anon_sym__Noreturn] = ACTIONS(5604), - [anon_sym_noreturn] = ACTIONS(5604), - [anon_sym_mutable] = ACTIONS(5604), - [anon_sym_constinit] = ACTIONS(5604), - [anon_sym_consteval] = ACTIONS(5604), - [sym_primitive_type] = ACTIONS(5604), - [anon_sym_COLON] = ACTIONS(5606), - [anon_sym_QMARK] = ACTIONS(5606), - [anon_sym_LT_EQ_GT] = ACTIONS(5606), - [anon_sym_or] = ACTIONS(5604), - [anon_sym_and] = ACTIONS(5604), - [anon_sym_bitor] = ACTIONS(5604), - [anon_sym_xor] = ACTIONS(5604), - [anon_sym_bitand] = ACTIONS(5604), - [anon_sym_not_eq] = ACTIONS(5604), - [anon_sym_DASH_DASH] = ACTIONS(5606), - [anon_sym_PLUS_PLUS] = ACTIONS(5606), - [anon_sym_DOT] = ACTIONS(5604), - [anon_sym_DOT_STAR] = ACTIONS(5606), - [anon_sym_DASH_GT] = ACTIONS(5606), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5604), - [anon_sym_decltype] = ACTIONS(5604), - [anon_sym_final] = ACTIONS(5604), - [anon_sym_override] = ACTIONS(5604), - [anon_sym_requires] = ACTIONS(5604), - }, - [2658] = { - [sym_identifier] = ACTIONS(5608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5610), - [anon_sym_COMMA] = ACTIONS(5610), - [anon_sym_RPAREN] = ACTIONS(5610), - [anon_sym_LPAREN2] = ACTIONS(5610), - [anon_sym_DASH] = ACTIONS(5608), - [anon_sym_PLUS] = ACTIONS(5608), - [anon_sym_STAR] = ACTIONS(5610), - [anon_sym_SLASH] = ACTIONS(5608), - [anon_sym_PERCENT] = ACTIONS(5610), - [anon_sym_PIPE_PIPE] = ACTIONS(5610), - [anon_sym_AMP_AMP] = ACTIONS(5610), - [anon_sym_PIPE] = ACTIONS(5608), - [anon_sym_CARET] = ACTIONS(5610), - [anon_sym_AMP] = ACTIONS(5608), - [anon_sym_EQ_EQ] = ACTIONS(5610), - [anon_sym_BANG_EQ] = ACTIONS(5610), - [anon_sym_GT] = ACTIONS(5608), - [anon_sym_GT_EQ] = ACTIONS(5610), - [anon_sym_LT_EQ] = ACTIONS(5608), - [anon_sym_LT] = ACTIONS(5608), - [anon_sym_LT_LT] = ACTIONS(5610), - [anon_sym_GT_GT] = ACTIONS(5610), - [anon_sym_SEMI] = ACTIONS(5610), - [anon_sym___extension__] = ACTIONS(5608), - [anon_sym___attribute__] = ACTIONS(5608), - [anon_sym___based] = ACTIONS(5608), - [anon_sym_LBRACE] = ACTIONS(5610), - [anon_sym_RBRACE] = ACTIONS(5610), - [anon_sym_signed] = ACTIONS(5608), - [anon_sym_unsigned] = ACTIONS(5608), - [anon_sym_long] = ACTIONS(5608), - [anon_sym_short] = ACTIONS(5608), - [anon_sym_LBRACK] = ACTIONS(5610), - [anon_sym_RBRACK] = ACTIONS(5610), - [anon_sym_const] = ACTIONS(5608), - [anon_sym_constexpr] = ACTIONS(5608), - [anon_sym_volatile] = ACTIONS(5608), - [anon_sym_restrict] = ACTIONS(5608), - [anon_sym___restrict__] = ACTIONS(5608), - [anon_sym__Atomic] = ACTIONS(5608), - [anon_sym__Noreturn] = ACTIONS(5608), - [anon_sym_noreturn] = ACTIONS(5608), - [anon_sym_mutable] = ACTIONS(5608), - [anon_sym_constinit] = ACTIONS(5608), - [anon_sym_consteval] = ACTIONS(5608), - [sym_primitive_type] = ACTIONS(5608), - [anon_sym_COLON] = ACTIONS(5610), - [anon_sym_QMARK] = ACTIONS(5610), - [anon_sym_LT_EQ_GT] = ACTIONS(5610), - [anon_sym_or] = ACTIONS(5608), - [anon_sym_and] = ACTIONS(5608), - [anon_sym_bitor] = ACTIONS(5608), - [anon_sym_xor] = ACTIONS(5608), - [anon_sym_bitand] = ACTIONS(5608), - [anon_sym_not_eq] = ACTIONS(5608), - [anon_sym_DASH_DASH] = ACTIONS(5610), - [anon_sym_PLUS_PLUS] = ACTIONS(5610), - [anon_sym_DOT] = ACTIONS(5608), - [anon_sym_DOT_STAR] = ACTIONS(5610), - [anon_sym_DASH_GT] = ACTIONS(5610), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5608), - [anon_sym_decltype] = ACTIONS(5608), - [anon_sym_final] = ACTIONS(5608), - [anon_sym_override] = ACTIONS(5608), - [anon_sym_requires] = ACTIONS(5608), - }, - [2659] = { - [sym_identifier] = ACTIONS(5612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5614), - [anon_sym_COMMA] = ACTIONS(5614), - [anon_sym_RPAREN] = ACTIONS(5614), - [anon_sym_LPAREN2] = ACTIONS(5614), - [anon_sym_DASH] = ACTIONS(5612), - [anon_sym_PLUS] = ACTIONS(5612), - [anon_sym_STAR] = ACTIONS(5614), - [anon_sym_SLASH] = ACTIONS(5612), - [anon_sym_PERCENT] = ACTIONS(5614), - [anon_sym_PIPE_PIPE] = ACTIONS(5614), - [anon_sym_AMP_AMP] = ACTIONS(5614), - [anon_sym_PIPE] = ACTIONS(5612), - [anon_sym_CARET] = ACTIONS(5614), - [anon_sym_AMP] = ACTIONS(5612), - [anon_sym_EQ_EQ] = ACTIONS(5614), - [anon_sym_BANG_EQ] = ACTIONS(5614), - [anon_sym_GT] = ACTIONS(5612), - [anon_sym_GT_EQ] = ACTIONS(5614), - [anon_sym_LT_EQ] = ACTIONS(5612), - [anon_sym_LT] = ACTIONS(5612), - [anon_sym_LT_LT] = ACTIONS(5614), - [anon_sym_GT_GT] = ACTIONS(5614), - [anon_sym_SEMI] = ACTIONS(5614), - [anon_sym___extension__] = ACTIONS(5612), - [anon_sym___attribute__] = ACTIONS(5612), - [anon_sym___based] = ACTIONS(5612), - [anon_sym_LBRACE] = ACTIONS(5614), - [anon_sym_RBRACE] = ACTIONS(5614), - [anon_sym_signed] = ACTIONS(5612), - [anon_sym_unsigned] = ACTIONS(5612), - [anon_sym_long] = ACTIONS(5612), - [anon_sym_short] = ACTIONS(5612), - [anon_sym_LBRACK] = ACTIONS(5614), - [anon_sym_RBRACK] = ACTIONS(5614), - [anon_sym_const] = ACTIONS(5612), - [anon_sym_constexpr] = ACTIONS(5612), - [anon_sym_volatile] = ACTIONS(5612), - [anon_sym_restrict] = ACTIONS(5612), - [anon_sym___restrict__] = ACTIONS(5612), - [anon_sym__Atomic] = ACTIONS(5612), - [anon_sym__Noreturn] = ACTIONS(5612), - [anon_sym_noreturn] = ACTIONS(5612), - [anon_sym_mutable] = ACTIONS(5612), - [anon_sym_constinit] = ACTIONS(5612), - [anon_sym_consteval] = ACTIONS(5612), - [sym_primitive_type] = ACTIONS(5612), - [anon_sym_COLON] = ACTIONS(5614), - [anon_sym_QMARK] = ACTIONS(5614), - [anon_sym_LT_EQ_GT] = ACTIONS(5614), - [anon_sym_or] = ACTIONS(5612), - [anon_sym_and] = ACTIONS(5612), - [anon_sym_bitor] = ACTIONS(5612), - [anon_sym_xor] = ACTIONS(5612), - [anon_sym_bitand] = ACTIONS(5612), - [anon_sym_not_eq] = ACTIONS(5612), - [anon_sym_DASH_DASH] = ACTIONS(5614), - [anon_sym_PLUS_PLUS] = ACTIONS(5614), - [anon_sym_DOT] = ACTIONS(5612), - [anon_sym_DOT_STAR] = ACTIONS(5614), - [anon_sym_DASH_GT] = ACTIONS(5614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5612), - [anon_sym_decltype] = ACTIONS(5612), - [anon_sym_final] = ACTIONS(5612), - [anon_sym_override] = ACTIONS(5612), - [anon_sym_requires] = ACTIONS(5612), - }, - [2660] = { - [sym_identifier] = ACTIONS(5616), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5618), - [anon_sym_COMMA] = ACTIONS(5618), - [anon_sym_RPAREN] = ACTIONS(5618), - [anon_sym_LPAREN2] = ACTIONS(5618), - [anon_sym_DASH] = ACTIONS(5616), - [anon_sym_PLUS] = ACTIONS(5616), - [anon_sym_STAR] = ACTIONS(5618), - [anon_sym_SLASH] = ACTIONS(5616), - [anon_sym_PERCENT] = ACTIONS(5618), - [anon_sym_PIPE_PIPE] = ACTIONS(5618), - [anon_sym_AMP_AMP] = ACTIONS(5618), - [anon_sym_PIPE] = ACTIONS(5616), - [anon_sym_CARET] = ACTIONS(5618), - [anon_sym_AMP] = ACTIONS(5616), - [anon_sym_EQ_EQ] = ACTIONS(5618), - [anon_sym_BANG_EQ] = ACTIONS(5618), - [anon_sym_GT] = ACTIONS(5616), - [anon_sym_GT_EQ] = ACTIONS(5618), - [anon_sym_LT_EQ] = ACTIONS(5616), - [anon_sym_LT] = ACTIONS(5616), - [anon_sym_LT_LT] = ACTIONS(5618), - [anon_sym_GT_GT] = ACTIONS(5618), - [anon_sym_SEMI] = ACTIONS(5618), - [anon_sym___extension__] = ACTIONS(5616), - [anon_sym___attribute__] = ACTIONS(5616), - [anon_sym___based] = ACTIONS(5616), - [anon_sym_LBRACE] = ACTIONS(5618), - [anon_sym_RBRACE] = ACTIONS(5618), - [anon_sym_signed] = ACTIONS(5616), - [anon_sym_unsigned] = ACTIONS(5616), - [anon_sym_long] = ACTIONS(5616), - [anon_sym_short] = ACTIONS(5616), - [anon_sym_LBRACK] = ACTIONS(5618), - [anon_sym_RBRACK] = ACTIONS(5618), - [anon_sym_const] = ACTIONS(5616), - [anon_sym_constexpr] = ACTIONS(5616), - [anon_sym_volatile] = ACTIONS(5616), - [anon_sym_restrict] = ACTIONS(5616), - [anon_sym___restrict__] = ACTIONS(5616), - [anon_sym__Atomic] = ACTIONS(5616), - [anon_sym__Noreturn] = ACTIONS(5616), - [anon_sym_noreturn] = ACTIONS(5616), - [anon_sym_mutable] = ACTIONS(5616), - [anon_sym_constinit] = ACTIONS(5616), - [anon_sym_consteval] = ACTIONS(5616), - [sym_primitive_type] = ACTIONS(5616), - [anon_sym_COLON] = ACTIONS(5618), - [anon_sym_QMARK] = ACTIONS(5618), - [anon_sym_LT_EQ_GT] = ACTIONS(5618), - [anon_sym_or] = ACTIONS(5616), - [anon_sym_and] = ACTIONS(5616), - [anon_sym_bitor] = ACTIONS(5616), - [anon_sym_xor] = ACTIONS(5616), - [anon_sym_bitand] = ACTIONS(5616), - [anon_sym_not_eq] = ACTIONS(5616), - [anon_sym_DASH_DASH] = ACTIONS(5618), - [anon_sym_PLUS_PLUS] = ACTIONS(5618), - [anon_sym_DOT] = ACTIONS(5616), - [anon_sym_DOT_STAR] = ACTIONS(5618), - [anon_sym_DASH_GT] = ACTIONS(5618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5616), - [anon_sym_decltype] = ACTIONS(5616), - [anon_sym_final] = ACTIONS(5616), - [anon_sym_override] = ACTIONS(5616), - [anon_sym_requires] = ACTIONS(5616), - }, - [2661] = { - [sym__declaration_modifiers] = STATE(2724), - [sym__declaration_specifiers] = STATE(5809), - [sym_attribute_specifier] = STATE(2724), - [sym_attribute_declaration] = STATE(2724), - [sym_ms_declspec_modifier] = STATE(2724), - [sym_storage_class_specifier] = STATE(2724), - [sym_type_qualifier] = STATE(2724), - [sym__type_specifier] = STATE(3451), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(2724), - [sym_alignas_specifier] = STATE(2724), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(2724), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2662] = { - [sym_identifier] = ACTIONS(5620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5622), - [anon_sym_COMMA] = ACTIONS(5622), - [anon_sym_RPAREN] = ACTIONS(5622), - [anon_sym_LPAREN2] = ACTIONS(5622), - [anon_sym_DASH] = ACTIONS(5620), - [anon_sym_PLUS] = ACTIONS(5620), - [anon_sym_STAR] = ACTIONS(5622), - [anon_sym_SLASH] = ACTIONS(5620), - [anon_sym_PERCENT] = ACTIONS(5622), - [anon_sym_PIPE_PIPE] = ACTIONS(5622), - [anon_sym_AMP_AMP] = ACTIONS(5622), - [anon_sym_PIPE] = ACTIONS(5620), - [anon_sym_CARET] = ACTIONS(5622), - [anon_sym_AMP] = ACTIONS(5620), - [anon_sym_EQ_EQ] = ACTIONS(5622), - [anon_sym_BANG_EQ] = ACTIONS(5622), - [anon_sym_GT] = ACTIONS(5620), - [anon_sym_GT_EQ] = ACTIONS(5622), - [anon_sym_LT_EQ] = ACTIONS(5620), - [anon_sym_LT] = ACTIONS(5620), - [anon_sym_LT_LT] = ACTIONS(5622), - [anon_sym_GT_GT] = ACTIONS(5622), - [anon_sym_SEMI] = ACTIONS(5622), - [anon_sym___extension__] = ACTIONS(5620), - [anon_sym___attribute__] = ACTIONS(5620), - [anon_sym___based] = ACTIONS(5620), - [anon_sym_LBRACE] = ACTIONS(5622), - [anon_sym_RBRACE] = ACTIONS(5622), - [anon_sym_signed] = ACTIONS(5620), - [anon_sym_unsigned] = ACTIONS(5620), - [anon_sym_long] = ACTIONS(5620), - [anon_sym_short] = ACTIONS(5620), - [anon_sym_LBRACK] = ACTIONS(5622), - [anon_sym_RBRACK] = ACTIONS(5622), - [anon_sym_const] = ACTIONS(5620), - [anon_sym_constexpr] = ACTIONS(5620), - [anon_sym_volatile] = ACTIONS(5620), - [anon_sym_restrict] = ACTIONS(5620), - [anon_sym___restrict__] = ACTIONS(5620), - [anon_sym__Atomic] = ACTIONS(5620), - [anon_sym__Noreturn] = ACTIONS(5620), - [anon_sym_noreturn] = ACTIONS(5620), - [anon_sym_mutable] = ACTIONS(5620), - [anon_sym_constinit] = ACTIONS(5620), - [anon_sym_consteval] = ACTIONS(5620), - [sym_primitive_type] = ACTIONS(5620), - [anon_sym_COLON] = ACTIONS(5622), - [anon_sym_QMARK] = ACTIONS(5622), - [anon_sym_LT_EQ_GT] = ACTIONS(5622), - [anon_sym_or] = ACTIONS(5620), - [anon_sym_and] = ACTIONS(5620), - [anon_sym_bitor] = ACTIONS(5620), - [anon_sym_xor] = ACTIONS(5620), - [anon_sym_bitand] = ACTIONS(5620), - [anon_sym_not_eq] = ACTIONS(5620), - [anon_sym_DASH_DASH] = ACTIONS(5622), - [anon_sym_PLUS_PLUS] = ACTIONS(5622), - [anon_sym_DOT] = ACTIONS(5620), - [anon_sym_DOT_STAR] = ACTIONS(5622), - [anon_sym_DASH_GT] = ACTIONS(5622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5620), - [anon_sym_decltype] = ACTIONS(5620), - [anon_sym_final] = ACTIONS(5620), - [anon_sym_override] = ACTIONS(5620), - [anon_sym_requires] = ACTIONS(5620), - }, - [2663] = { - [sym_identifier] = ACTIONS(3436), - [aux_sym_preproc_def_token1] = ACTIONS(3436), - [aux_sym_preproc_if_token1] = ACTIONS(3436), - [aux_sym_preproc_if_token2] = ACTIONS(3436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3436), - [aux_sym_preproc_else_token1] = ACTIONS(3436), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [sym_preproc_directive] = ACTIONS(3436), - [anon_sym_LPAREN2] = ACTIONS(3438), - [anon_sym_TILDE] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_AMP] = ACTIONS(3436), - [anon_sym___extension__] = ACTIONS(3436), - [anon_sym_typedef] = ACTIONS(3436), - [anon_sym_extern] = ACTIONS(3436), - [anon_sym___attribute__] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3438), - [anon_sym___declspec] = ACTIONS(3436), - [anon_sym___based] = ACTIONS(3436), - [anon_sym_signed] = ACTIONS(3436), - [anon_sym_unsigned] = ACTIONS(3436), - [anon_sym_long] = ACTIONS(3436), - [anon_sym_short] = ACTIONS(3436), - [anon_sym_LBRACK] = ACTIONS(3436), - [anon_sym_static] = ACTIONS(3436), - [anon_sym_register] = ACTIONS(3436), - [anon_sym_inline] = ACTIONS(3436), - [anon_sym___inline] = ACTIONS(3436), - [anon_sym___inline__] = ACTIONS(3436), - [anon_sym___forceinline] = ACTIONS(3436), - [anon_sym_thread_local] = ACTIONS(3436), - [anon_sym___thread] = ACTIONS(3436), - [anon_sym_const] = ACTIONS(3436), - [anon_sym_constexpr] = ACTIONS(3436), - [anon_sym_volatile] = ACTIONS(3436), - [anon_sym_restrict] = ACTIONS(3436), - [anon_sym___restrict__] = ACTIONS(3436), - [anon_sym__Atomic] = ACTIONS(3436), - [anon_sym__Noreturn] = ACTIONS(3436), - [anon_sym_noreturn] = ACTIONS(3436), - [anon_sym_mutable] = ACTIONS(3436), - [anon_sym_constinit] = ACTIONS(3436), - [anon_sym_consteval] = ACTIONS(3436), - [sym_primitive_type] = ACTIONS(3436), - [anon_sym_enum] = ACTIONS(3436), - [anon_sym_class] = ACTIONS(3436), - [anon_sym_struct] = ACTIONS(3436), - [anon_sym_union] = ACTIONS(3436), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3436), - [anon_sym_decltype] = ACTIONS(3436), - [anon_sym_virtual] = ACTIONS(3436), - [anon_sym_alignas] = ACTIONS(3436), - [anon_sym_explicit] = ACTIONS(3436), - [anon_sym_typename] = ACTIONS(3436), - [anon_sym_template] = ACTIONS(3436), - [anon_sym_operator] = ACTIONS(3436), - [anon_sym_friend] = ACTIONS(3436), - [anon_sym_public] = ACTIONS(3436), - [anon_sym_private] = ACTIONS(3436), - [anon_sym_protected] = ACTIONS(3436), - [anon_sym_using] = ACTIONS(3436), - [anon_sym_static_assert] = ACTIONS(3436), - }, - [2664] = { - [sym_identifier] = ACTIONS(3195), - [aux_sym_preproc_def_token1] = ACTIONS(3195), - [aux_sym_preproc_if_token1] = ACTIONS(3195), - [aux_sym_preproc_if_token2] = ACTIONS(3195), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3195), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3195), - [aux_sym_preproc_else_token1] = ACTIONS(3195), - [aux_sym_preproc_elif_token1] = ACTIONS(3195), - [sym_preproc_directive] = ACTIONS(3195), - [anon_sym_LPAREN2] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym___extension__] = ACTIONS(3195), - [anon_sym_typedef] = ACTIONS(3195), - [anon_sym_extern] = ACTIONS(3195), - [anon_sym___attribute__] = ACTIONS(3195), - [anon_sym_COLON_COLON] = ACTIONS(3197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3197), - [anon_sym___declspec] = ACTIONS(3195), - [anon_sym___based] = ACTIONS(3195), - [anon_sym_signed] = ACTIONS(3195), - [anon_sym_unsigned] = ACTIONS(3195), - [anon_sym_long] = ACTIONS(3195), - [anon_sym_short] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_static] = ACTIONS(3195), - [anon_sym_register] = ACTIONS(3195), - [anon_sym_inline] = ACTIONS(3195), - [anon_sym___inline] = ACTIONS(3195), - [anon_sym___inline__] = ACTIONS(3195), - [anon_sym___forceinline] = ACTIONS(3195), - [anon_sym_thread_local] = ACTIONS(3195), - [anon_sym___thread] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_constexpr] = ACTIONS(3195), - [anon_sym_volatile] = ACTIONS(3195), - [anon_sym_restrict] = ACTIONS(3195), - [anon_sym___restrict__] = ACTIONS(3195), - [anon_sym__Atomic] = ACTIONS(3195), - [anon_sym__Noreturn] = ACTIONS(3195), - [anon_sym_noreturn] = ACTIONS(3195), - [anon_sym_mutable] = ACTIONS(3195), - [anon_sym_constinit] = ACTIONS(3195), - [anon_sym_consteval] = ACTIONS(3195), - [sym_primitive_type] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3195), - [anon_sym_class] = ACTIONS(3195), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_union] = ACTIONS(3195), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3195), - [anon_sym_decltype] = ACTIONS(3195), - [anon_sym_virtual] = ACTIONS(3195), - [anon_sym_alignas] = ACTIONS(3195), - [anon_sym_explicit] = ACTIONS(3195), - [anon_sym_typename] = ACTIONS(3195), - [anon_sym_template] = ACTIONS(3195), - [anon_sym_operator] = ACTIONS(3195), - [anon_sym_friend] = ACTIONS(3195), - [anon_sym_public] = ACTIONS(3195), - [anon_sym_private] = ACTIONS(3195), - [anon_sym_protected] = ACTIONS(3195), - [anon_sym_using] = ACTIONS(3195), - [anon_sym_static_assert] = ACTIONS(3195), - }, - [2665] = { - [sym_string_literal] = STATE(2682), - [sym_raw_string_literal] = STATE(2682), - [aux_sym_concatenated_string_repeat1] = STATE(2682), - [sym_identifier] = ACTIONS(5624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5145), - [anon_sym_COMMA] = ACTIONS(5145), - [anon_sym_LPAREN2] = ACTIONS(5145), - [anon_sym_DASH] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_PERCENT] = ACTIONS(5147), - [anon_sym_PIPE_PIPE] = ACTIONS(5145), - [anon_sym_AMP_AMP] = ACTIONS(5145), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_CARET] = ACTIONS(5147), - [anon_sym_AMP] = ACTIONS(5147), - [anon_sym_EQ_EQ] = ACTIONS(5145), - [anon_sym_BANG_EQ] = ACTIONS(5145), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_GT_EQ] = ACTIONS(5147), - [anon_sym_LT_EQ] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5147), - [anon_sym_LT_LT] = ACTIONS(5147), - [anon_sym_GT_GT] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_QMARK] = ACTIONS(5145), - [anon_sym_STAR_EQ] = ACTIONS(5145), - [anon_sym_SLASH_EQ] = ACTIONS(5145), - [anon_sym_PERCENT_EQ] = ACTIONS(5145), - [anon_sym_PLUS_EQ] = ACTIONS(5145), - [anon_sym_DASH_EQ] = ACTIONS(5145), - [anon_sym_LT_LT_EQ] = ACTIONS(5145), - [anon_sym_GT_GT_EQ] = ACTIONS(5147), - [anon_sym_AMP_EQ] = ACTIONS(5145), - [anon_sym_CARET_EQ] = ACTIONS(5145), - [anon_sym_PIPE_EQ] = ACTIONS(5145), - [anon_sym_and_eq] = ACTIONS(5147), - [anon_sym_or_eq] = ACTIONS(5147), - [anon_sym_xor_eq] = ACTIONS(5147), - [anon_sym_LT_EQ_GT] = ACTIONS(5145), - [anon_sym_or] = ACTIONS(5147), - [anon_sym_and] = ACTIONS(5147), - [anon_sym_bitor] = ACTIONS(5147), - [anon_sym_xor] = ACTIONS(5147), - [anon_sym_bitand] = ACTIONS(5147), - [anon_sym_not_eq] = ACTIONS(5147), - [anon_sym_DASH_DASH] = ACTIONS(5145), - [anon_sym_PLUS_PLUS] = ACTIONS(5145), - [anon_sym_DOT] = ACTIONS(5147), - [anon_sym_DOT_STAR] = ACTIONS(5145), - [anon_sym_DASH_GT] = ACTIONS(5145), - [anon_sym_L_DQUOTE] = ACTIONS(5626), - [anon_sym_u_DQUOTE] = ACTIONS(5626), - [anon_sym_U_DQUOTE] = ACTIONS(5626), - [anon_sym_u8_DQUOTE] = ACTIONS(5626), - [anon_sym_DQUOTE] = ACTIONS(5626), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5145), - [anon_sym_R_DQUOTE] = ACTIONS(5628), - [anon_sym_LR_DQUOTE] = ACTIONS(5628), - [anon_sym_uR_DQUOTE] = ACTIONS(5628), - [anon_sym_UR_DQUOTE] = ACTIONS(5628), - [anon_sym_u8R_DQUOTE] = ACTIONS(5628), - [sym_literal_suffix] = ACTIONS(5147), - }, - [2666] = { - [sym_identifier] = ACTIONS(5268), - [aux_sym_preproc_def_token1] = ACTIONS(5268), - [aux_sym_preproc_if_token1] = ACTIONS(5268), - [aux_sym_preproc_if_token2] = ACTIONS(5268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5268), - [aux_sym_preproc_else_token1] = ACTIONS(5268), - [aux_sym_preproc_elif_token1] = ACTIONS(5268), - [sym_preproc_directive] = ACTIONS(5268), - [anon_sym_LPAREN2] = ACTIONS(5270), - [anon_sym_TILDE] = ACTIONS(5270), - [anon_sym_STAR] = ACTIONS(5270), - [anon_sym_AMP_AMP] = ACTIONS(5270), - [anon_sym_AMP] = ACTIONS(5268), - [anon_sym___extension__] = ACTIONS(5268), - [anon_sym_typedef] = ACTIONS(5268), - [anon_sym_extern] = ACTIONS(5268), - [anon_sym___attribute__] = ACTIONS(5268), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5270), - [anon_sym___declspec] = ACTIONS(5268), - [anon_sym___based] = ACTIONS(5268), - [anon_sym_signed] = ACTIONS(5268), - [anon_sym_unsigned] = ACTIONS(5268), - [anon_sym_long] = ACTIONS(5268), - [anon_sym_short] = ACTIONS(5268), - [anon_sym_LBRACK] = ACTIONS(5268), - [anon_sym_static] = ACTIONS(5268), - [anon_sym_register] = ACTIONS(5268), - [anon_sym_inline] = ACTIONS(5268), - [anon_sym___inline] = ACTIONS(5268), - [anon_sym___inline__] = ACTIONS(5268), - [anon_sym___forceinline] = ACTIONS(5268), - [anon_sym_thread_local] = ACTIONS(5268), - [anon_sym___thread] = ACTIONS(5268), - [anon_sym_const] = ACTIONS(5268), - [anon_sym_constexpr] = ACTIONS(5268), - [anon_sym_volatile] = ACTIONS(5268), - [anon_sym_restrict] = ACTIONS(5268), - [anon_sym___restrict__] = ACTIONS(5268), - [anon_sym__Atomic] = ACTIONS(5268), - [anon_sym__Noreturn] = ACTIONS(5268), - [anon_sym_noreturn] = ACTIONS(5268), - [anon_sym_mutable] = ACTIONS(5268), - [anon_sym_constinit] = ACTIONS(5268), - [anon_sym_consteval] = ACTIONS(5268), - [sym_primitive_type] = ACTIONS(5268), - [anon_sym_enum] = ACTIONS(5268), - [anon_sym_class] = ACTIONS(5268), - [anon_sym_struct] = ACTIONS(5268), - [anon_sym_union] = ACTIONS(5268), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5268), - [anon_sym_decltype] = ACTIONS(5268), - [anon_sym_virtual] = ACTIONS(5268), - [anon_sym_alignas] = ACTIONS(5268), - [anon_sym_explicit] = ACTIONS(5268), - [anon_sym_typename] = ACTIONS(5268), - [anon_sym_template] = ACTIONS(5268), - [anon_sym_operator] = ACTIONS(5268), - [anon_sym_friend] = ACTIONS(5268), - [anon_sym_public] = ACTIONS(5268), - [anon_sym_private] = ACTIONS(5268), - [anon_sym_protected] = ACTIONS(5268), - [anon_sym_using] = ACTIONS(5268), - [anon_sym_static_assert] = ACTIONS(5268), - }, - [2667] = { - [sym_identifier] = ACTIONS(5264), - [aux_sym_preproc_def_token1] = ACTIONS(5264), - [aux_sym_preproc_if_token1] = ACTIONS(5264), - [aux_sym_preproc_if_token2] = ACTIONS(5264), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5264), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5264), - [aux_sym_preproc_else_token1] = ACTIONS(5264), - [aux_sym_preproc_elif_token1] = ACTIONS(5264), - [sym_preproc_directive] = ACTIONS(5264), - [anon_sym_LPAREN2] = ACTIONS(5266), - [anon_sym_TILDE] = ACTIONS(5266), - [anon_sym_STAR] = ACTIONS(5266), - [anon_sym_AMP_AMP] = ACTIONS(5266), - [anon_sym_AMP] = ACTIONS(5264), - [anon_sym___extension__] = ACTIONS(5264), - [anon_sym_typedef] = ACTIONS(5264), - [anon_sym_extern] = ACTIONS(5264), - [anon_sym___attribute__] = ACTIONS(5264), - [anon_sym_COLON_COLON] = ACTIONS(5266), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5266), - [anon_sym___declspec] = ACTIONS(5264), - [anon_sym___based] = ACTIONS(5264), - [anon_sym_signed] = ACTIONS(5264), - [anon_sym_unsigned] = ACTIONS(5264), - [anon_sym_long] = ACTIONS(5264), - [anon_sym_short] = ACTIONS(5264), - [anon_sym_LBRACK] = ACTIONS(5264), - [anon_sym_static] = ACTIONS(5264), - [anon_sym_register] = ACTIONS(5264), - [anon_sym_inline] = ACTIONS(5264), - [anon_sym___inline] = ACTIONS(5264), - [anon_sym___inline__] = ACTIONS(5264), - [anon_sym___forceinline] = ACTIONS(5264), - [anon_sym_thread_local] = ACTIONS(5264), - [anon_sym___thread] = ACTIONS(5264), - [anon_sym_const] = ACTIONS(5264), - [anon_sym_constexpr] = ACTIONS(5264), - [anon_sym_volatile] = ACTIONS(5264), - [anon_sym_restrict] = ACTIONS(5264), - [anon_sym___restrict__] = ACTIONS(5264), - [anon_sym__Atomic] = ACTIONS(5264), - [anon_sym__Noreturn] = ACTIONS(5264), - [anon_sym_noreturn] = ACTIONS(5264), - [anon_sym_mutable] = ACTIONS(5264), - [anon_sym_constinit] = ACTIONS(5264), - [anon_sym_consteval] = ACTIONS(5264), - [sym_primitive_type] = ACTIONS(5264), - [anon_sym_enum] = ACTIONS(5264), - [anon_sym_class] = ACTIONS(5264), - [anon_sym_struct] = ACTIONS(5264), - [anon_sym_union] = ACTIONS(5264), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5264), - [anon_sym_decltype] = ACTIONS(5264), - [anon_sym_virtual] = ACTIONS(5264), - [anon_sym_alignas] = ACTIONS(5264), - [anon_sym_explicit] = ACTIONS(5264), - [anon_sym_typename] = ACTIONS(5264), - [anon_sym_template] = ACTIONS(5264), - [anon_sym_operator] = ACTIONS(5264), - [anon_sym_friend] = ACTIONS(5264), - [anon_sym_public] = ACTIONS(5264), - [anon_sym_private] = ACTIONS(5264), - [anon_sym_protected] = ACTIONS(5264), - [anon_sym_using] = ACTIONS(5264), - [anon_sym_static_assert] = ACTIONS(5264), - }, - [2668] = { - [sym_identifier] = ACTIONS(5212), - [aux_sym_preproc_def_token1] = ACTIONS(5212), - [aux_sym_preproc_if_token1] = ACTIONS(5212), - [aux_sym_preproc_if_token2] = ACTIONS(5212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5212), - [aux_sym_preproc_else_token1] = ACTIONS(5212), - [aux_sym_preproc_elif_token1] = ACTIONS(5212), - [sym_preproc_directive] = ACTIONS(5212), - [anon_sym_LPAREN2] = ACTIONS(5214), - [anon_sym_TILDE] = ACTIONS(5214), - [anon_sym_STAR] = ACTIONS(5214), - [anon_sym_AMP_AMP] = ACTIONS(5214), - [anon_sym_AMP] = ACTIONS(5212), - [anon_sym___extension__] = ACTIONS(5212), - [anon_sym_typedef] = ACTIONS(5212), - [anon_sym_extern] = ACTIONS(5212), - [anon_sym___attribute__] = ACTIONS(5212), - [anon_sym_COLON_COLON] = ACTIONS(5214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5214), - [anon_sym___declspec] = ACTIONS(5212), - [anon_sym___based] = ACTIONS(5212), - [anon_sym_signed] = ACTIONS(5212), - [anon_sym_unsigned] = ACTIONS(5212), - [anon_sym_long] = ACTIONS(5212), - [anon_sym_short] = ACTIONS(5212), - [anon_sym_LBRACK] = ACTIONS(5212), - [anon_sym_static] = ACTIONS(5212), - [anon_sym_register] = ACTIONS(5212), - [anon_sym_inline] = ACTIONS(5212), - [anon_sym___inline] = ACTIONS(5212), - [anon_sym___inline__] = ACTIONS(5212), - [anon_sym___forceinline] = ACTIONS(5212), - [anon_sym_thread_local] = ACTIONS(5212), - [anon_sym___thread] = ACTIONS(5212), - [anon_sym_const] = ACTIONS(5212), - [anon_sym_constexpr] = ACTIONS(5212), - [anon_sym_volatile] = ACTIONS(5212), - [anon_sym_restrict] = ACTIONS(5212), - [anon_sym___restrict__] = ACTIONS(5212), - [anon_sym__Atomic] = ACTIONS(5212), - [anon_sym__Noreturn] = ACTIONS(5212), - [anon_sym_noreturn] = ACTIONS(5212), - [anon_sym_mutable] = ACTIONS(5212), - [anon_sym_constinit] = ACTIONS(5212), - [anon_sym_consteval] = ACTIONS(5212), - [sym_primitive_type] = ACTIONS(5212), - [anon_sym_enum] = ACTIONS(5212), - [anon_sym_class] = ACTIONS(5212), - [anon_sym_struct] = ACTIONS(5212), - [anon_sym_union] = ACTIONS(5212), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5212), - [anon_sym_decltype] = ACTIONS(5212), - [anon_sym_virtual] = ACTIONS(5212), - [anon_sym_alignas] = ACTIONS(5212), - [anon_sym_explicit] = ACTIONS(5212), - [anon_sym_typename] = ACTIONS(5212), - [anon_sym_template] = ACTIONS(5212), - [anon_sym_operator] = ACTIONS(5212), - [anon_sym_friend] = ACTIONS(5212), - [anon_sym_public] = ACTIONS(5212), - [anon_sym_private] = ACTIONS(5212), - [anon_sym_protected] = ACTIONS(5212), - [anon_sym_using] = ACTIONS(5212), - [anon_sym_static_assert] = ACTIONS(5212), - }, - [2669] = { - [sym_identifier] = ACTIONS(5208), - [aux_sym_preproc_def_token1] = ACTIONS(5208), - [aux_sym_preproc_if_token1] = ACTIONS(5208), - [aux_sym_preproc_if_token2] = ACTIONS(5208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5208), - [aux_sym_preproc_else_token1] = ACTIONS(5208), - [aux_sym_preproc_elif_token1] = ACTIONS(5208), - [sym_preproc_directive] = ACTIONS(5208), - [anon_sym_LPAREN2] = ACTIONS(5210), - [anon_sym_TILDE] = ACTIONS(5210), - [anon_sym_STAR] = ACTIONS(5210), - [anon_sym_AMP_AMP] = ACTIONS(5210), - [anon_sym_AMP] = ACTIONS(5208), - [anon_sym___extension__] = ACTIONS(5208), - [anon_sym_typedef] = ACTIONS(5208), - [anon_sym_extern] = ACTIONS(5208), - [anon_sym___attribute__] = ACTIONS(5208), - [anon_sym_COLON_COLON] = ACTIONS(5210), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5210), - [anon_sym___declspec] = ACTIONS(5208), - [anon_sym___based] = ACTIONS(5208), - [anon_sym_signed] = ACTIONS(5208), - [anon_sym_unsigned] = ACTIONS(5208), - [anon_sym_long] = ACTIONS(5208), - [anon_sym_short] = ACTIONS(5208), - [anon_sym_LBRACK] = ACTIONS(5208), - [anon_sym_static] = ACTIONS(5208), - [anon_sym_register] = ACTIONS(5208), - [anon_sym_inline] = ACTIONS(5208), - [anon_sym___inline] = ACTIONS(5208), - [anon_sym___inline__] = ACTIONS(5208), - [anon_sym___forceinline] = ACTIONS(5208), - [anon_sym_thread_local] = ACTIONS(5208), - [anon_sym___thread] = ACTIONS(5208), - [anon_sym_const] = ACTIONS(5208), - [anon_sym_constexpr] = ACTIONS(5208), - [anon_sym_volatile] = ACTIONS(5208), - [anon_sym_restrict] = ACTIONS(5208), - [anon_sym___restrict__] = ACTIONS(5208), - [anon_sym__Atomic] = ACTIONS(5208), - [anon_sym__Noreturn] = ACTIONS(5208), - [anon_sym_noreturn] = ACTIONS(5208), - [anon_sym_mutable] = ACTIONS(5208), - [anon_sym_constinit] = ACTIONS(5208), - [anon_sym_consteval] = ACTIONS(5208), - [sym_primitive_type] = ACTIONS(5208), - [anon_sym_enum] = ACTIONS(5208), - [anon_sym_class] = ACTIONS(5208), - [anon_sym_struct] = ACTIONS(5208), - [anon_sym_union] = ACTIONS(5208), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5208), - [anon_sym_decltype] = ACTIONS(5208), - [anon_sym_virtual] = ACTIONS(5208), - [anon_sym_alignas] = ACTIONS(5208), - [anon_sym_explicit] = ACTIONS(5208), - [anon_sym_typename] = ACTIONS(5208), - [anon_sym_template] = ACTIONS(5208), - [anon_sym_operator] = ACTIONS(5208), - [anon_sym_friend] = ACTIONS(5208), - [anon_sym_public] = ACTIONS(5208), - [anon_sym_private] = ACTIONS(5208), - [anon_sym_protected] = ACTIONS(5208), - [anon_sym_using] = ACTIONS(5208), - [anon_sym_static_assert] = ACTIONS(5208), - }, - [2670] = { - [sym_identifier] = ACTIONS(5212), - [aux_sym_preproc_def_token1] = ACTIONS(5212), - [aux_sym_preproc_if_token1] = ACTIONS(5212), - [aux_sym_preproc_if_token2] = ACTIONS(5212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5212), - [aux_sym_preproc_else_token1] = ACTIONS(5212), - [aux_sym_preproc_elif_token1] = ACTIONS(5212), - [sym_preproc_directive] = ACTIONS(5212), - [anon_sym_LPAREN2] = ACTIONS(5214), - [anon_sym_TILDE] = ACTIONS(5214), - [anon_sym_STAR] = ACTIONS(5214), - [anon_sym_AMP_AMP] = ACTIONS(5214), - [anon_sym_AMP] = ACTIONS(5212), - [anon_sym___extension__] = ACTIONS(5212), - [anon_sym_typedef] = ACTIONS(5212), - [anon_sym_extern] = ACTIONS(5212), - [anon_sym___attribute__] = ACTIONS(5212), - [anon_sym_COLON_COLON] = ACTIONS(5214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5214), - [anon_sym___declspec] = ACTIONS(5212), - [anon_sym___based] = ACTIONS(5212), - [anon_sym_signed] = ACTIONS(5212), - [anon_sym_unsigned] = ACTIONS(5212), - [anon_sym_long] = ACTIONS(5212), - [anon_sym_short] = ACTIONS(5212), - [anon_sym_LBRACK] = ACTIONS(5212), - [anon_sym_static] = ACTIONS(5212), - [anon_sym_register] = ACTIONS(5212), - [anon_sym_inline] = ACTIONS(5212), - [anon_sym___inline] = ACTIONS(5212), - [anon_sym___inline__] = ACTIONS(5212), - [anon_sym___forceinline] = ACTIONS(5212), - [anon_sym_thread_local] = ACTIONS(5212), - [anon_sym___thread] = ACTIONS(5212), - [anon_sym_const] = ACTIONS(5212), - [anon_sym_constexpr] = ACTIONS(5212), - [anon_sym_volatile] = ACTIONS(5212), - [anon_sym_restrict] = ACTIONS(5212), - [anon_sym___restrict__] = ACTIONS(5212), - [anon_sym__Atomic] = ACTIONS(5212), - [anon_sym__Noreturn] = ACTIONS(5212), - [anon_sym_noreturn] = ACTIONS(5212), - [anon_sym_mutable] = ACTIONS(5212), - [anon_sym_constinit] = ACTIONS(5212), - [anon_sym_consteval] = ACTIONS(5212), - [sym_primitive_type] = ACTIONS(5212), - [anon_sym_enum] = ACTIONS(5212), - [anon_sym_class] = ACTIONS(5212), - [anon_sym_struct] = ACTIONS(5212), - [anon_sym_union] = ACTIONS(5212), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5212), - [anon_sym_decltype] = ACTIONS(5212), - [anon_sym_virtual] = ACTIONS(5212), - [anon_sym_alignas] = ACTIONS(5212), - [anon_sym_explicit] = ACTIONS(5212), - [anon_sym_typename] = ACTIONS(5212), - [anon_sym_template] = ACTIONS(5212), - [anon_sym_operator] = ACTIONS(5212), - [anon_sym_friend] = ACTIONS(5212), - [anon_sym_public] = ACTIONS(5212), - [anon_sym_private] = ACTIONS(5212), - [anon_sym_protected] = ACTIONS(5212), - [anon_sym_using] = ACTIONS(5212), - [anon_sym_static_assert] = ACTIONS(5212), - }, - [2671] = { - [sym_identifier] = ACTIONS(5208), - [aux_sym_preproc_def_token1] = ACTIONS(5208), - [aux_sym_preproc_if_token1] = ACTIONS(5208), - [aux_sym_preproc_if_token2] = ACTIONS(5208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5208), - [aux_sym_preproc_else_token1] = ACTIONS(5208), - [aux_sym_preproc_elif_token1] = ACTIONS(5208), - [sym_preproc_directive] = ACTIONS(5208), - [anon_sym_LPAREN2] = ACTIONS(5210), - [anon_sym_TILDE] = ACTIONS(5210), - [anon_sym_STAR] = ACTIONS(5210), - [anon_sym_AMP_AMP] = ACTIONS(5210), - [anon_sym_AMP] = ACTIONS(5208), - [anon_sym___extension__] = ACTIONS(5208), - [anon_sym_typedef] = ACTIONS(5208), - [anon_sym_extern] = ACTIONS(5208), - [anon_sym___attribute__] = ACTIONS(5208), - [anon_sym_COLON_COLON] = ACTIONS(5210), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5210), - [anon_sym___declspec] = ACTIONS(5208), - [anon_sym___based] = ACTIONS(5208), - [anon_sym_signed] = ACTIONS(5208), - [anon_sym_unsigned] = ACTIONS(5208), - [anon_sym_long] = ACTIONS(5208), - [anon_sym_short] = ACTIONS(5208), - [anon_sym_LBRACK] = ACTIONS(5208), - [anon_sym_static] = ACTIONS(5208), - [anon_sym_register] = ACTIONS(5208), - [anon_sym_inline] = ACTIONS(5208), - [anon_sym___inline] = ACTIONS(5208), - [anon_sym___inline__] = ACTIONS(5208), - [anon_sym___forceinline] = ACTIONS(5208), - [anon_sym_thread_local] = ACTIONS(5208), - [anon_sym___thread] = ACTIONS(5208), - [anon_sym_const] = ACTIONS(5208), - [anon_sym_constexpr] = ACTIONS(5208), - [anon_sym_volatile] = ACTIONS(5208), - [anon_sym_restrict] = ACTIONS(5208), - [anon_sym___restrict__] = ACTIONS(5208), - [anon_sym__Atomic] = ACTIONS(5208), - [anon_sym__Noreturn] = ACTIONS(5208), - [anon_sym_noreturn] = ACTIONS(5208), - [anon_sym_mutable] = ACTIONS(5208), - [anon_sym_constinit] = ACTIONS(5208), - [anon_sym_consteval] = ACTIONS(5208), - [sym_primitive_type] = ACTIONS(5208), - [anon_sym_enum] = ACTIONS(5208), - [anon_sym_class] = ACTIONS(5208), - [anon_sym_struct] = ACTIONS(5208), - [anon_sym_union] = ACTIONS(5208), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5208), - [anon_sym_decltype] = ACTIONS(5208), - [anon_sym_virtual] = ACTIONS(5208), - [anon_sym_alignas] = ACTIONS(5208), - [anon_sym_explicit] = ACTIONS(5208), - [anon_sym_typename] = ACTIONS(5208), - [anon_sym_template] = ACTIONS(5208), - [anon_sym_operator] = ACTIONS(5208), - [anon_sym_friend] = ACTIONS(5208), - [anon_sym_public] = ACTIONS(5208), - [anon_sym_private] = ACTIONS(5208), - [anon_sym_protected] = ACTIONS(5208), - [anon_sym_using] = ACTIONS(5208), - [anon_sym_static_assert] = ACTIONS(5208), - }, - [2672] = { - [sym_string_literal] = STATE(2665), - [sym_raw_string_literal] = STATE(2665), - [aux_sym_concatenated_string_repeat1] = STATE(2665), - [sym_identifier] = ACTIONS(5630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5132), - [anon_sym_COMMA] = ACTIONS(5132), - [anon_sym_LPAREN2] = ACTIONS(5132), - [anon_sym_DASH] = ACTIONS(5134), - [anon_sym_PLUS] = ACTIONS(5134), - [anon_sym_STAR] = ACTIONS(5134), - [anon_sym_SLASH] = ACTIONS(5134), - [anon_sym_PERCENT] = ACTIONS(5134), - [anon_sym_PIPE_PIPE] = ACTIONS(5132), - [anon_sym_AMP_AMP] = ACTIONS(5132), - [anon_sym_PIPE] = ACTIONS(5134), - [anon_sym_CARET] = ACTIONS(5134), - [anon_sym_AMP] = ACTIONS(5134), - [anon_sym_EQ_EQ] = ACTIONS(5132), - [anon_sym_BANG_EQ] = ACTIONS(5132), - [anon_sym_GT] = ACTIONS(5134), - [anon_sym_GT_EQ] = ACTIONS(5134), - [anon_sym_LT_EQ] = ACTIONS(5134), - [anon_sym_LT] = ACTIONS(5134), - [anon_sym_LT_LT] = ACTIONS(5134), - [anon_sym_GT_GT] = ACTIONS(5134), - [anon_sym_LBRACK] = ACTIONS(5132), - [anon_sym_EQ] = ACTIONS(5134), - [anon_sym_QMARK] = ACTIONS(5132), - [anon_sym_STAR_EQ] = ACTIONS(5132), - [anon_sym_SLASH_EQ] = ACTIONS(5132), - [anon_sym_PERCENT_EQ] = ACTIONS(5132), - [anon_sym_PLUS_EQ] = ACTIONS(5132), - [anon_sym_DASH_EQ] = ACTIONS(5132), - [anon_sym_LT_LT_EQ] = ACTIONS(5132), - [anon_sym_GT_GT_EQ] = ACTIONS(5134), - [anon_sym_AMP_EQ] = ACTIONS(5132), - [anon_sym_CARET_EQ] = ACTIONS(5132), - [anon_sym_PIPE_EQ] = ACTIONS(5132), - [anon_sym_and_eq] = ACTIONS(5134), - [anon_sym_or_eq] = ACTIONS(5134), - [anon_sym_xor_eq] = ACTIONS(5134), - [anon_sym_LT_EQ_GT] = ACTIONS(5132), - [anon_sym_or] = ACTIONS(5134), - [anon_sym_and] = ACTIONS(5134), - [anon_sym_bitor] = ACTIONS(5134), - [anon_sym_xor] = ACTIONS(5134), - [anon_sym_bitand] = ACTIONS(5134), - [anon_sym_not_eq] = ACTIONS(5134), - [anon_sym_DASH_DASH] = ACTIONS(5132), - [anon_sym_PLUS_PLUS] = ACTIONS(5132), - [anon_sym_DOT] = ACTIONS(5134), - [anon_sym_DOT_STAR] = ACTIONS(5132), - [anon_sym_DASH_GT] = ACTIONS(5132), - [anon_sym_L_DQUOTE] = ACTIONS(5626), - [anon_sym_u_DQUOTE] = ACTIONS(5626), - [anon_sym_U_DQUOTE] = ACTIONS(5626), - [anon_sym_u8_DQUOTE] = ACTIONS(5626), - [anon_sym_DQUOTE] = ACTIONS(5626), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5132), - [anon_sym_R_DQUOTE] = ACTIONS(5628), - [anon_sym_LR_DQUOTE] = ACTIONS(5628), - [anon_sym_uR_DQUOTE] = ACTIONS(5628), - [anon_sym_UR_DQUOTE] = ACTIONS(5628), - [anon_sym_u8R_DQUOTE] = ACTIONS(5628), - [sym_literal_suffix] = ACTIONS(5134), - }, - [2673] = { - [sym_identifier] = ACTIONS(5236), - [aux_sym_preproc_def_token1] = ACTIONS(5236), - [aux_sym_preproc_if_token1] = ACTIONS(5236), - [aux_sym_preproc_if_token2] = ACTIONS(5236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5236), - [aux_sym_preproc_else_token1] = ACTIONS(5236), - [aux_sym_preproc_elif_token1] = ACTIONS(5236), - [sym_preproc_directive] = ACTIONS(5236), - [anon_sym_LPAREN2] = ACTIONS(5238), - [anon_sym_TILDE] = ACTIONS(5238), - [anon_sym_STAR] = ACTIONS(5238), - [anon_sym_AMP_AMP] = ACTIONS(5238), - [anon_sym_AMP] = ACTIONS(5236), - [anon_sym___extension__] = ACTIONS(5236), - [anon_sym_typedef] = ACTIONS(5236), - [anon_sym_extern] = ACTIONS(5236), - [anon_sym___attribute__] = ACTIONS(5236), - [anon_sym_COLON_COLON] = ACTIONS(5238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5238), - [anon_sym___declspec] = ACTIONS(5236), - [anon_sym___based] = ACTIONS(5236), - [anon_sym_signed] = ACTIONS(5236), - [anon_sym_unsigned] = ACTIONS(5236), - [anon_sym_long] = ACTIONS(5236), - [anon_sym_short] = ACTIONS(5236), - [anon_sym_LBRACK] = ACTIONS(5236), - [anon_sym_static] = ACTIONS(5236), - [anon_sym_register] = ACTIONS(5236), - [anon_sym_inline] = ACTIONS(5236), - [anon_sym___inline] = ACTIONS(5236), - [anon_sym___inline__] = ACTIONS(5236), - [anon_sym___forceinline] = ACTIONS(5236), - [anon_sym_thread_local] = ACTIONS(5236), - [anon_sym___thread] = ACTIONS(5236), - [anon_sym_const] = ACTIONS(5236), - [anon_sym_constexpr] = ACTIONS(5236), - [anon_sym_volatile] = ACTIONS(5236), - [anon_sym_restrict] = ACTIONS(5236), - [anon_sym___restrict__] = ACTIONS(5236), - [anon_sym__Atomic] = ACTIONS(5236), - [anon_sym__Noreturn] = ACTIONS(5236), - [anon_sym_noreturn] = ACTIONS(5236), - [anon_sym_mutable] = ACTIONS(5236), - [anon_sym_constinit] = ACTIONS(5236), - [anon_sym_consteval] = ACTIONS(5236), - [sym_primitive_type] = ACTIONS(5236), - [anon_sym_enum] = ACTIONS(5236), - [anon_sym_class] = ACTIONS(5236), - [anon_sym_struct] = ACTIONS(5236), - [anon_sym_union] = ACTIONS(5236), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5236), - [anon_sym_decltype] = ACTIONS(5236), - [anon_sym_virtual] = ACTIONS(5236), - [anon_sym_alignas] = ACTIONS(5236), - [anon_sym_explicit] = ACTIONS(5236), - [anon_sym_typename] = ACTIONS(5236), - [anon_sym_template] = ACTIONS(5236), - [anon_sym_operator] = ACTIONS(5236), - [anon_sym_friend] = ACTIONS(5236), - [anon_sym_public] = ACTIONS(5236), - [anon_sym_private] = ACTIONS(5236), - [anon_sym_protected] = ACTIONS(5236), - [anon_sym_using] = ACTIONS(5236), - [anon_sym_static_assert] = ACTIONS(5236), - }, - [2674] = { - [sym_identifier] = ACTIONS(5236), - [aux_sym_preproc_def_token1] = ACTIONS(5236), - [aux_sym_preproc_if_token1] = ACTIONS(5236), - [aux_sym_preproc_if_token2] = ACTIONS(5236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5236), - [aux_sym_preproc_else_token1] = ACTIONS(5236), - [aux_sym_preproc_elif_token1] = ACTIONS(5236), - [sym_preproc_directive] = ACTIONS(5236), - [anon_sym_LPAREN2] = ACTIONS(5238), - [anon_sym_TILDE] = ACTIONS(5238), - [anon_sym_STAR] = ACTIONS(5238), - [anon_sym_AMP_AMP] = ACTIONS(5238), - [anon_sym_AMP] = ACTIONS(5236), - [anon_sym___extension__] = ACTIONS(5236), - [anon_sym_typedef] = ACTIONS(5236), - [anon_sym_extern] = ACTIONS(5236), - [anon_sym___attribute__] = ACTIONS(5236), - [anon_sym_COLON_COLON] = ACTIONS(5238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5238), - [anon_sym___declspec] = ACTIONS(5236), - [anon_sym___based] = ACTIONS(5236), - [anon_sym_signed] = ACTIONS(5236), - [anon_sym_unsigned] = ACTIONS(5236), - [anon_sym_long] = ACTIONS(5236), - [anon_sym_short] = ACTIONS(5236), - [anon_sym_LBRACK] = ACTIONS(5236), - [anon_sym_static] = ACTIONS(5236), - [anon_sym_register] = ACTIONS(5236), - [anon_sym_inline] = ACTIONS(5236), - [anon_sym___inline] = ACTIONS(5236), - [anon_sym___inline__] = ACTIONS(5236), - [anon_sym___forceinline] = ACTIONS(5236), - [anon_sym_thread_local] = ACTIONS(5236), - [anon_sym___thread] = ACTIONS(5236), - [anon_sym_const] = ACTIONS(5236), - [anon_sym_constexpr] = ACTIONS(5236), - [anon_sym_volatile] = ACTIONS(5236), - [anon_sym_restrict] = ACTIONS(5236), - [anon_sym___restrict__] = ACTIONS(5236), - [anon_sym__Atomic] = ACTIONS(5236), - [anon_sym__Noreturn] = ACTIONS(5236), - [anon_sym_noreturn] = ACTIONS(5236), - [anon_sym_mutable] = ACTIONS(5236), - [anon_sym_constinit] = ACTIONS(5236), - [anon_sym_consteval] = ACTIONS(5236), - [sym_primitive_type] = ACTIONS(5236), - [anon_sym_enum] = ACTIONS(5236), - [anon_sym_class] = ACTIONS(5236), - [anon_sym_struct] = ACTIONS(5236), - [anon_sym_union] = ACTIONS(5236), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5236), - [anon_sym_decltype] = ACTIONS(5236), - [anon_sym_virtual] = ACTIONS(5236), - [anon_sym_alignas] = ACTIONS(5236), - [anon_sym_explicit] = ACTIONS(5236), - [anon_sym_typename] = ACTIONS(5236), - [anon_sym_template] = ACTIONS(5236), - [anon_sym_operator] = ACTIONS(5236), - [anon_sym_friend] = ACTIONS(5236), - [anon_sym_public] = ACTIONS(5236), - [anon_sym_private] = ACTIONS(5236), - [anon_sym_protected] = ACTIONS(5236), - [anon_sym_using] = ACTIONS(5236), - [anon_sym_static_assert] = ACTIONS(5236), - }, - [2675] = { - [sym_identifier] = ACTIONS(5228), - [aux_sym_preproc_def_token1] = ACTIONS(5228), - [aux_sym_preproc_if_token1] = ACTIONS(5228), - [aux_sym_preproc_if_token2] = ACTIONS(5228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5228), - [aux_sym_preproc_else_token1] = ACTIONS(5228), - [aux_sym_preproc_elif_token1] = ACTIONS(5228), - [sym_preproc_directive] = ACTIONS(5228), - [anon_sym_LPAREN2] = ACTIONS(5230), - [anon_sym_TILDE] = ACTIONS(5230), - [anon_sym_STAR] = ACTIONS(5230), - [anon_sym_AMP_AMP] = ACTIONS(5230), - [anon_sym_AMP] = ACTIONS(5228), - [anon_sym___extension__] = ACTIONS(5228), - [anon_sym_typedef] = ACTIONS(5228), - [anon_sym_extern] = ACTIONS(5228), - [anon_sym___attribute__] = ACTIONS(5228), - [anon_sym_COLON_COLON] = ACTIONS(5230), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5230), - [anon_sym___declspec] = ACTIONS(5228), - [anon_sym___based] = ACTIONS(5228), - [anon_sym_signed] = ACTIONS(5228), - [anon_sym_unsigned] = ACTIONS(5228), - [anon_sym_long] = ACTIONS(5228), - [anon_sym_short] = ACTIONS(5228), - [anon_sym_LBRACK] = ACTIONS(5228), - [anon_sym_static] = ACTIONS(5228), - [anon_sym_register] = ACTIONS(5228), - [anon_sym_inline] = ACTIONS(5228), - [anon_sym___inline] = ACTIONS(5228), - [anon_sym___inline__] = ACTIONS(5228), - [anon_sym___forceinline] = ACTIONS(5228), - [anon_sym_thread_local] = ACTIONS(5228), - [anon_sym___thread] = ACTIONS(5228), - [anon_sym_const] = ACTIONS(5228), - [anon_sym_constexpr] = ACTIONS(5228), - [anon_sym_volatile] = ACTIONS(5228), - [anon_sym_restrict] = ACTIONS(5228), - [anon_sym___restrict__] = ACTIONS(5228), - [anon_sym__Atomic] = ACTIONS(5228), - [anon_sym__Noreturn] = ACTIONS(5228), - [anon_sym_noreturn] = ACTIONS(5228), - [anon_sym_mutable] = ACTIONS(5228), - [anon_sym_constinit] = ACTIONS(5228), - [anon_sym_consteval] = ACTIONS(5228), - [sym_primitive_type] = ACTIONS(5228), - [anon_sym_enum] = ACTIONS(5228), - [anon_sym_class] = ACTIONS(5228), - [anon_sym_struct] = ACTIONS(5228), - [anon_sym_union] = ACTIONS(5228), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5228), - [anon_sym_decltype] = ACTIONS(5228), - [anon_sym_virtual] = ACTIONS(5228), - [anon_sym_alignas] = ACTIONS(5228), - [anon_sym_explicit] = ACTIONS(5228), - [anon_sym_typename] = ACTIONS(5228), - [anon_sym_template] = ACTIONS(5228), - [anon_sym_operator] = ACTIONS(5228), - [anon_sym_friend] = ACTIONS(5228), - [anon_sym_public] = ACTIONS(5228), - [anon_sym_private] = ACTIONS(5228), - [anon_sym_protected] = ACTIONS(5228), - [anon_sym_using] = ACTIONS(5228), - [anon_sym_static_assert] = ACTIONS(5228), - }, - [2676] = { - [sym_identifier] = ACTIONS(5186), - [aux_sym_preproc_def_token1] = ACTIONS(5186), - [aux_sym_preproc_if_token1] = ACTIONS(5186), - [aux_sym_preproc_if_token2] = ACTIONS(5186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5186), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5186), - [aux_sym_preproc_else_token1] = ACTIONS(5186), - [aux_sym_preproc_elif_token1] = ACTIONS(5186), - [sym_preproc_directive] = ACTIONS(5186), - [anon_sym_LPAREN2] = ACTIONS(5188), - [anon_sym_TILDE] = ACTIONS(5188), - [anon_sym_STAR] = ACTIONS(5188), - [anon_sym_AMP_AMP] = ACTIONS(5188), - [anon_sym_AMP] = ACTIONS(5186), - [anon_sym___extension__] = ACTIONS(5186), - [anon_sym_typedef] = ACTIONS(5186), - [anon_sym_extern] = ACTIONS(5186), - [anon_sym___attribute__] = 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_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_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_mutable] = ACTIONS(5186), - [anon_sym_constinit] = ACTIONS(5186), - [anon_sym_consteval] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5186), - [anon_sym_decltype] = ACTIONS(5186), - [anon_sym_virtual] = ACTIONS(5186), - [anon_sym_alignas] = ACTIONS(5186), - [anon_sym_explicit] = ACTIONS(5186), - [anon_sym_typename] = ACTIONS(5186), - [anon_sym_template] = ACTIONS(5186), - [anon_sym_operator] = ACTIONS(5186), - [anon_sym_friend] = ACTIONS(5186), - [anon_sym_public] = ACTIONS(5186), - [anon_sym_private] = ACTIONS(5186), - [anon_sym_protected] = ACTIONS(5186), - [anon_sym_using] = ACTIONS(5186), - [anon_sym_static_assert] = ACTIONS(5186), - }, - [2677] = { - [sym_identifier] = ACTIONS(3414), - [aux_sym_preproc_def_token1] = ACTIONS(3414), - [aux_sym_preproc_if_token1] = ACTIONS(3414), - [aux_sym_preproc_if_token2] = ACTIONS(3414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3414), - [aux_sym_preproc_else_token1] = ACTIONS(3414), - [aux_sym_preproc_elif_token1] = ACTIONS(3414), - [sym_preproc_directive] = ACTIONS(3414), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_TILDE] = ACTIONS(3416), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym___extension__] = ACTIONS(3414), - [anon_sym_typedef] = ACTIONS(3414), - [anon_sym_extern] = ACTIONS(3414), - [anon_sym___attribute__] = ACTIONS(3414), - [anon_sym_COLON_COLON] = ACTIONS(3416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3416), - [anon_sym___declspec] = ACTIONS(3414), - [anon_sym___based] = ACTIONS(3414), - [anon_sym_signed] = ACTIONS(3414), - [anon_sym_unsigned] = ACTIONS(3414), - [anon_sym_long] = ACTIONS(3414), - [anon_sym_short] = ACTIONS(3414), - [anon_sym_LBRACK] = ACTIONS(3414), - [anon_sym_static] = ACTIONS(3414), - [anon_sym_register] = ACTIONS(3414), - [anon_sym_inline] = ACTIONS(3414), - [anon_sym___inline] = ACTIONS(3414), - [anon_sym___inline__] = ACTIONS(3414), - [anon_sym___forceinline] = ACTIONS(3414), - [anon_sym_thread_local] = ACTIONS(3414), - [anon_sym___thread] = ACTIONS(3414), - [anon_sym_const] = ACTIONS(3414), - [anon_sym_constexpr] = ACTIONS(3414), - [anon_sym_volatile] = ACTIONS(3414), - [anon_sym_restrict] = ACTIONS(3414), - [anon_sym___restrict__] = ACTIONS(3414), - [anon_sym__Atomic] = ACTIONS(3414), - [anon_sym__Noreturn] = ACTIONS(3414), - [anon_sym_noreturn] = ACTIONS(3414), - [anon_sym_mutable] = ACTIONS(3414), - [anon_sym_constinit] = ACTIONS(3414), - [anon_sym_consteval] = ACTIONS(3414), - [sym_primitive_type] = ACTIONS(3414), - [anon_sym_enum] = ACTIONS(3414), - [anon_sym_class] = ACTIONS(3414), - [anon_sym_struct] = ACTIONS(3414), - [anon_sym_union] = ACTIONS(3414), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3414), - [anon_sym_decltype] = ACTIONS(3414), - [anon_sym_virtual] = ACTIONS(3414), - [anon_sym_alignas] = ACTIONS(3414), - [anon_sym_explicit] = ACTIONS(3414), - [anon_sym_typename] = ACTIONS(3414), - [anon_sym_template] = ACTIONS(3414), - [anon_sym_operator] = ACTIONS(3414), - [anon_sym_friend] = ACTIONS(3414), - [anon_sym_public] = ACTIONS(3414), - [anon_sym_private] = ACTIONS(3414), - [anon_sym_protected] = ACTIONS(3414), - [anon_sym_using] = ACTIONS(3414), - [anon_sym_static_assert] = ACTIONS(3414), - }, - [2678] = { - [sym_identifier] = ACTIONS(3506), - [anon_sym_LPAREN2] = ACTIONS(3508), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3506), - [anon_sym_PLUS] = ACTIONS(3506), - [anon_sym_STAR] = ACTIONS(3508), - [anon_sym_AMP] = ACTIONS(3508), - [anon_sym___extension__] = ACTIONS(3506), - [anon_sym_COLON_COLON] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_RBRACK] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3506), - [anon_sym_constexpr] = ACTIONS(3506), - [anon_sym_volatile] = ACTIONS(3506), - [anon_sym_restrict] = ACTIONS(3506), - [anon_sym___restrict__] = ACTIONS(3506), - [anon_sym__Atomic] = ACTIONS(3506), - [anon_sym__Noreturn] = ACTIONS(3506), - [anon_sym_noreturn] = ACTIONS(3506), - [anon_sym_mutable] = ACTIONS(3506), - [anon_sym_constinit] = ACTIONS(3506), - [anon_sym_consteval] = ACTIONS(3506), - [sym_primitive_type] = ACTIONS(3506), - [anon_sym_not] = ACTIONS(3506), - [anon_sym_compl] = ACTIONS(3506), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [anon_sym_PLUS_PLUS] = ACTIONS(3508), - [anon_sym_sizeof] = ACTIONS(3506), - [anon_sym___alignof__] = ACTIONS(3506), - [anon_sym___alignof] = ACTIONS(3506), - [anon_sym__alignof] = ACTIONS(3506), - [anon_sym_alignof] = ACTIONS(3506), - [anon_sym__Alignof] = ACTIONS(3506), - [anon_sym_offsetof] = ACTIONS(3506), - [anon_sym__Generic] = ACTIONS(3506), - [anon_sym_asm] = ACTIONS(3506), - [anon_sym___asm__] = ACTIONS(3506), - [sym_number_literal] = ACTIONS(3508), - [anon_sym_L_SQUOTE] = ACTIONS(3508), - [anon_sym_u_SQUOTE] = ACTIONS(3508), - [anon_sym_U_SQUOTE] = ACTIONS(3508), - [anon_sym_u8_SQUOTE] = ACTIONS(3508), - [anon_sym_SQUOTE] = ACTIONS(3508), - [anon_sym_L_DQUOTE] = ACTIONS(3508), - [anon_sym_u_DQUOTE] = ACTIONS(3508), - [anon_sym_U_DQUOTE] = ACTIONS(3508), - [anon_sym_u8_DQUOTE] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [sym_true] = ACTIONS(3506), - [sym_false] = ACTIONS(3506), - [anon_sym_NULL] = ACTIONS(3506), - [anon_sym_nullptr] = ACTIONS(3506), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3506), - [anon_sym_template] = ACTIONS(3506), - [anon_sym_delete] = ACTIONS(3506), - [anon_sym_R_DQUOTE] = ACTIONS(3508), - [anon_sym_LR_DQUOTE] = ACTIONS(3508), - [anon_sym_uR_DQUOTE] = ACTIONS(3508), - [anon_sym_UR_DQUOTE] = ACTIONS(3508), - [anon_sym_u8R_DQUOTE] = ACTIONS(3508), - [anon_sym_co_await] = ACTIONS(3506), - [anon_sym_new] = ACTIONS(3506), - [anon_sym_requires] = ACTIONS(3506), - [sym_this] = ACTIONS(3506), - }, - [2679] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5602), - [anon_sym_COMMA] = ACTIONS(5602), - [anon_sym_RPAREN] = ACTIONS(5602), - [anon_sym_LPAREN2] = ACTIONS(5602), - [anon_sym_DASH] = ACTIONS(5600), - [anon_sym_PLUS] = ACTIONS(5600), - [anon_sym_STAR] = ACTIONS(5600), - [anon_sym_SLASH] = ACTIONS(5600), - [anon_sym_PERCENT] = ACTIONS(5600), - [anon_sym_PIPE_PIPE] = ACTIONS(5602), - [anon_sym_AMP_AMP] = ACTIONS(5602), - [anon_sym_PIPE] = ACTIONS(5600), - [anon_sym_CARET] = ACTIONS(5600), - [anon_sym_AMP] = ACTIONS(5600), - [anon_sym_EQ_EQ] = ACTIONS(5602), - [anon_sym_BANG_EQ] = ACTIONS(5602), - [anon_sym_GT] = ACTIONS(5600), - [anon_sym_GT_EQ] = ACTIONS(5602), - [anon_sym_LT_EQ] = ACTIONS(5600), - [anon_sym_LT] = ACTIONS(5600), - [anon_sym_LT_LT] = ACTIONS(5600), - [anon_sym_GT_GT] = ACTIONS(5600), - [anon_sym_SEMI] = ACTIONS(5602), - [anon_sym_RBRACE] = ACTIONS(5602), - [anon_sym_LBRACK] = ACTIONS(5602), - [anon_sym_RBRACK] = ACTIONS(5602), - [anon_sym_EQ] = ACTIONS(5600), - [anon_sym_COLON] = ACTIONS(5602), - [anon_sym_QMARK] = ACTIONS(5602), - [anon_sym_STAR_EQ] = ACTIONS(5602), - [anon_sym_SLASH_EQ] = ACTIONS(5602), - [anon_sym_PERCENT_EQ] = ACTIONS(5602), - [anon_sym_PLUS_EQ] = ACTIONS(5602), - [anon_sym_DASH_EQ] = ACTIONS(5602), - [anon_sym_LT_LT_EQ] = ACTIONS(5602), - [anon_sym_GT_GT_EQ] = ACTIONS(5602), - [anon_sym_AMP_EQ] = ACTIONS(5602), - [anon_sym_CARET_EQ] = ACTIONS(5602), - [anon_sym_PIPE_EQ] = ACTIONS(5602), - [anon_sym_and_eq] = ACTIONS(5600), - [anon_sym_or_eq] = ACTIONS(5600), - [anon_sym_xor_eq] = ACTIONS(5600), - [anon_sym_LT_EQ_GT] = ACTIONS(5602), - [anon_sym_or] = ACTIONS(5600), - [anon_sym_and] = ACTIONS(5600), - [anon_sym_bitor] = ACTIONS(5600), - [anon_sym_xor] = ACTIONS(5600), - [anon_sym_bitand] = ACTIONS(5600), - [anon_sym_not_eq] = ACTIONS(5600), - [anon_sym_DASH_DASH] = ACTIONS(5602), - [anon_sym_PLUS_PLUS] = ACTIONS(5602), - [anon_sym_DOT] = ACTIONS(5600), - [anon_sym_DOT_STAR] = ACTIONS(5602), - [anon_sym_DASH_GT] = ACTIONS(5602), - [anon_sym_L_DQUOTE] = ACTIONS(5602), - [anon_sym_u_DQUOTE] = ACTIONS(5602), - [anon_sym_U_DQUOTE] = ACTIONS(5602), - [anon_sym_u8_DQUOTE] = ACTIONS(5602), - [anon_sym_DQUOTE] = ACTIONS(5602), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5602), - [anon_sym_LR_DQUOTE] = ACTIONS(5602), - [anon_sym_uR_DQUOTE] = ACTIONS(5602), - [anon_sym_UR_DQUOTE] = ACTIONS(5602), - [anon_sym_u8R_DQUOTE] = ACTIONS(5602), - [sym_literal_suffix] = ACTIONS(5600), - }, - [2680] = { - [sym__declaration_modifiers] = STATE(4310), - [sym_attribute_specifier] = STATE(4310), - [sym_attribute_declaration] = STATE(4310), - [sym_ms_declspec_modifier] = STATE(4310), - [sym_storage_class_specifier] = STATE(4310), - [sym_type_qualifier] = STATE(4310), - [sym__type_specifier] = STATE(3497), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4310), - [sym_alignas_specifier] = STATE(4310), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(4310), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(1378), - }, - [2681] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2681), - [sym_identifier] = ACTIONS(5362), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5364), - [anon_sym_COMMA] = ACTIONS(5364), - [anon_sym_RPAREN] = ACTIONS(5364), - [anon_sym_LPAREN2] = ACTIONS(5364), - [anon_sym_DASH] = ACTIONS(5362), - [anon_sym_PLUS] = ACTIONS(5362), - [anon_sym_STAR] = ACTIONS(5362), - [anon_sym_SLASH] = ACTIONS(5362), - [anon_sym_PERCENT] = ACTIONS(5362), - [anon_sym_PIPE_PIPE] = ACTIONS(5364), - [anon_sym_AMP_AMP] = ACTIONS(5364), - [anon_sym_PIPE] = ACTIONS(5362), - [anon_sym_CARET] = ACTIONS(5362), - [anon_sym_AMP] = ACTIONS(5362), - [anon_sym_EQ_EQ] = ACTIONS(5364), - [anon_sym_BANG_EQ] = ACTIONS(5364), - [anon_sym_GT] = ACTIONS(5362), - [anon_sym_GT_EQ] = ACTIONS(5364), - [anon_sym_LT_EQ] = ACTIONS(5362), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_LT_LT] = ACTIONS(5362), - [anon_sym_GT_GT] = ACTIONS(5362), - [anon_sym_SEMI] = ACTIONS(5364), - [anon_sym___attribute__] = ACTIONS(5362), - [anon_sym_LBRACE] = ACTIONS(5364), - [anon_sym_RBRACE] = ACTIONS(5364), - [anon_sym_signed] = ACTIONS(5632), - [anon_sym_unsigned] = ACTIONS(5632), - [anon_sym_long] = ACTIONS(5632), - [anon_sym_short] = ACTIONS(5632), - [anon_sym_LBRACK] = ACTIONS(5364), - [anon_sym_RBRACK] = ACTIONS(5364), - [anon_sym_EQ] = ACTIONS(5362), - [sym_primitive_type] = ACTIONS(5362), - [anon_sym_COLON] = ACTIONS(5364), - [anon_sym_QMARK] = ACTIONS(5364), - [anon_sym_STAR_EQ] = ACTIONS(5364), - [anon_sym_SLASH_EQ] = ACTIONS(5364), - [anon_sym_PERCENT_EQ] = ACTIONS(5364), - [anon_sym_PLUS_EQ] = ACTIONS(5364), - [anon_sym_DASH_EQ] = ACTIONS(5364), - [anon_sym_LT_LT_EQ] = ACTIONS(5364), - [anon_sym_GT_GT_EQ] = ACTIONS(5364), - [anon_sym_AMP_EQ] = ACTIONS(5364), - [anon_sym_CARET_EQ] = ACTIONS(5364), - [anon_sym_PIPE_EQ] = ACTIONS(5364), - [anon_sym_and_eq] = ACTIONS(5362), - [anon_sym_or_eq] = ACTIONS(5362), - [anon_sym_xor_eq] = ACTIONS(5362), - [anon_sym_LT_EQ_GT] = ACTIONS(5364), - [anon_sym_or] = ACTIONS(5362), - [anon_sym_and] = ACTIONS(5362), - [anon_sym_bitor] = ACTIONS(5362), - [anon_sym_xor] = ACTIONS(5362), - [anon_sym_bitand] = ACTIONS(5362), - [anon_sym_not_eq] = ACTIONS(5362), - [anon_sym_DASH_DASH] = ACTIONS(5364), - [anon_sym_PLUS_PLUS] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(5362), - [anon_sym_DOT_STAR] = ACTIONS(5364), - [anon_sym_DASH_GT] = ACTIONS(5364), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5362), - [anon_sym_decltype] = ACTIONS(5362), - }, - [2682] = { - [sym_string_literal] = STATE(2682), - [sym_raw_string_literal] = STATE(2682), - [aux_sym_concatenated_string_repeat1] = STATE(2682), - [sym_identifier] = ACTIONS(5635), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5118), - [anon_sym_COMMA] = ACTIONS(5118), - [anon_sym_LPAREN2] = ACTIONS(5118), - [anon_sym_DASH] = ACTIONS(5120), - [anon_sym_PLUS] = ACTIONS(5120), - [anon_sym_STAR] = ACTIONS(5120), - [anon_sym_SLASH] = ACTIONS(5120), - [anon_sym_PERCENT] = ACTIONS(5120), - [anon_sym_PIPE_PIPE] = ACTIONS(5118), - [anon_sym_AMP_AMP] = ACTIONS(5118), - [anon_sym_PIPE] = ACTIONS(5120), - [anon_sym_CARET] = ACTIONS(5120), - [anon_sym_AMP] = ACTIONS(5120), - [anon_sym_EQ_EQ] = ACTIONS(5118), - [anon_sym_BANG_EQ] = ACTIONS(5118), - [anon_sym_GT] = ACTIONS(5120), - [anon_sym_GT_EQ] = ACTIONS(5120), - [anon_sym_LT_EQ] = ACTIONS(5120), - [anon_sym_LT] = ACTIONS(5120), - [anon_sym_LT_LT] = ACTIONS(5120), - [anon_sym_GT_GT] = ACTIONS(5120), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_EQ] = ACTIONS(5120), - [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(5120), - [anon_sym_AMP_EQ] = ACTIONS(5118), - [anon_sym_CARET_EQ] = ACTIONS(5118), - [anon_sym_PIPE_EQ] = ACTIONS(5118), - [anon_sym_and_eq] = ACTIONS(5120), - [anon_sym_or_eq] = ACTIONS(5120), - [anon_sym_xor_eq] = ACTIONS(5120), - [anon_sym_LT_EQ_GT] = ACTIONS(5118), - [anon_sym_or] = ACTIONS(5120), - [anon_sym_and] = ACTIONS(5120), - [anon_sym_bitor] = ACTIONS(5120), - [anon_sym_xor] = ACTIONS(5120), - [anon_sym_bitand] = ACTIONS(5120), - [anon_sym_not_eq] = ACTIONS(5120), - [anon_sym_DASH_DASH] = ACTIONS(5118), - [anon_sym_PLUS_PLUS] = ACTIONS(5118), - [anon_sym_DOT] = ACTIONS(5120), - [anon_sym_DOT_STAR] = ACTIONS(5118), - [anon_sym_DASH_GT] = ACTIONS(5118), - [anon_sym_L_DQUOTE] = ACTIONS(5638), - [anon_sym_u_DQUOTE] = ACTIONS(5638), - [anon_sym_U_DQUOTE] = ACTIONS(5638), - [anon_sym_u8_DQUOTE] = ACTIONS(5638), - [anon_sym_DQUOTE] = ACTIONS(5638), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5118), - [anon_sym_R_DQUOTE] = ACTIONS(5641), - [anon_sym_LR_DQUOTE] = ACTIONS(5641), - [anon_sym_uR_DQUOTE] = ACTIONS(5641), - [anon_sym_UR_DQUOTE] = ACTIONS(5641), - [anon_sym_u8R_DQUOTE] = ACTIONS(5641), - [sym_literal_suffix] = ACTIONS(5120), - }, - [2683] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5594), - [anon_sym_COMMA] = ACTIONS(5594), - [anon_sym_RPAREN] = ACTIONS(5594), - [anon_sym_LPAREN2] = ACTIONS(5594), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_STAR] = ACTIONS(5592), - [anon_sym_SLASH] = ACTIONS(5592), - [anon_sym_PERCENT] = ACTIONS(5592), - [anon_sym_PIPE_PIPE] = ACTIONS(5594), - [anon_sym_AMP_AMP] = ACTIONS(5594), - [anon_sym_PIPE] = ACTIONS(5592), - [anon_sym_CARET] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(5592), - [anon_sym_EQ_EQ] = ACTIONS(5594), - [anon_sym_BANG_EQ] = ACTIONS(5594), - [anon_sym_GT] = ACTIONS(5592), - [anon_sym_GT_EQ] = ACTIONS(5594), - [anon_sym_LT_EQ] = ACTIONS(5592), - [anon_sym_LT] = ACTIONS(5592), - [anon_sym_LT_LT] = ACTIONS(5592), - [anon_sym_GT_GT] = ACTIONS(5592), - [anon_sym_SEMI] = ACTIONS(5594), - [anon_sym_RBRACE] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(5594), - [anon_sym_RBRACK] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(5592), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_QMARK] = ACTIONS(5594), - [anon_sym_STAR_EQ] = ACTIONS(5594), - [anon_sym_SLASH_EQ] = ACTIONS(5594), - [anon_sym_PERCENT_EQ] = ACTIONS(5594), - [anon_sym_PLUS_EQ] = ACTIONS(5594), - [anon_sym_DASH_EQ] = ACTIONS(5594), - [anon_sym_LT_LT_EQ] = ACTIONS(5594), - [anon_sym_GT_GT_EQ] = ACTIONS(5594), - [anon_sym_AMP_EQ] = ACTIONS(5594), - [anon_sym_CARET_EQ] = ACTIONS(5594), - [anon_sym_PIPE_EQ] = ACTIONS(5594), - [anon_sym_and_eq] = ACTIONS(5592), - [anon_sym_or_eq] = ACTIONS(5592), - [anon_sym_xor_eq] = ACTIONS(5592), - [anon_sym_LT_EQ_GT] = ACTIONS(5594), - [anon_sym_or] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5592), - [anon_sym_bitor] = ACTIONS(5592), - [anon_sym_xor] = ACTIONS(5592), - [anon_sym_bitand] = ACTIONS(5592), - [anon_sym_not_eq] = ACTIONS(5592), - [anon_sym_DASH_DASH] = ACTIONS(5594), - [anon_sym_PLUS_PLUS] = ACTIONS(5594), - [anon_sym_DOT] = ACTIONS(5592), - [anon_sym_DOT_STAR] = ACTIONS(5594), - [anon_sym_DASH_GT] = ACTIONS(5594), - [anon_sym_L_DQUOTE] = ACTIONS(5594), - [anon_sym_u_DQUOTE] = ACTIONS(5594), - [anon_sym_U_DQUOTE] = ACTIONS(5594), - [anon_sym_u8_DQUOTE] = ACTIONS(5594), - [anon_sym_DQUOTE] = ACTIONS(5594), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5594), - [anon_sym_LR_DQUOTE] = ACTIONS(5594), - [anon_sym_uR_DQUOTE] = ACTIONS(5594), - [anon_sym_UR_DQUOTE] = ACTIONS(5594), - [anon_sym_u8R_DQUOTE] = ACTIONS(5594), - [sym_literal_suffix] = ACTIONS(5592), - }, - [2684] = { - [sym_identifier] = ACTIONS(3366), - [aux_sym_preproc_def_token1] = ACTIONS(3366), - [aux_sym_preproc_if_token1] = ACTIONS(3366), - [aux_sym_preproc_if_token2] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3366), - [aux_sym_preproc_else_token1] = ACTIONS(3366), - [aux_sym_preproc_elif_token1] = ACTIONS(3366), - [sym_preproc_directive] = ACTIONS(3366), - [anon_sym_LPAREN2] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_AMP_AMP] = ACTIONS(3368), - [anon_sym_AMP] = ACTIONS(3366), - [anon_sym___extension__] = ACTIONS(3366), - [anon_sym_typedef] = ACTIONS(3366), - [anon_sym_extern] = ACTIONS(3366), - [anon_sym___attribute__] = ACTIONS(3366), - [anon_sym_COLON_COLON] = ACTIONS(3368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3368), - [anon_sym___declspec] = ACTIONS(3366), - [anon_sym___based] = ACTIONS(3366), - [anon_sym_signed] = ACTIONS(3366), - [anon_sym_unsigned] = ACTIONS(3366), - [anon_sym_long] = ACTIONS(3366), - [anon_sym_short] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_register] = ACTIONS(3366), - [anon_sym_inline] = ACTIONS(3366), - [anon_sym___inline] = ACTIONS(3366), - [anon_sym___inline__] = ACTIONS(3366), - [anon_sym___forceinline] = ACTIONS(3366), - [anon_sym_thread_local] = ACTIONS(3366), - [anon_sym___thread] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_constexpr] = ACTIONS(3366), - [anon_sym_volatile] = ACTIONS(3366), - [anon_sym_restrict] = ACTIONS(3366), - [anon_sym___restrict__] = ACTIONS(3366), - [anon_sym__Atomic] = ACTIONS(3366), - [anon_sym__Noreturn] = ACTIONS(3366), - [anon_sym_noreturn] = ACTIONS(3366), - [anon_sym_mutable] = ACTIONS(3366), - [anon_sym_constinit] = ACTIONS(3366), - [anon_sym_consteval] = ACTIONS(3366), - [sym_primitive_type] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_struct] = ACTIONS(3366), - [anon_sym_union] = ACTIONS(3366), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3366), - [anon_sym_decltype] = ACTIONS(3366), - [anon_sym_virtual] = ACTIONS(3366), - [anon_sym_alignas] = ACTIONS(3366), - [anon_sym_explicit] = ACTIONS(3366), - [anon_sym_typename] = ACTIONS(3366), - [anon_sym_template] = ACTIONS(3366), - [anon_sym_operator] = ACTIONS(3366), - [anon_sym_friend] = ACTIONS(3366), - [anon_sym_public] = ACTIONS(3366), - [anon_sym_private] = ACTIONS(3366), - [anon_sym_protected] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_static_assert] = ACTIONS(3366), - }, - [2685] = { - [sym_identifier] = ACTIONS(5232), - [aux_sym_preproc_def_token1] = ACTIONS(5232), - [aux_sym_preproc_if_token1] = ACTIONS(5232), - [aux_sym_preproc_if_token2] = ACTIONS(5232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5232), - [aux_sym_preproc_else_token1] = ACTIONS(5232), - [aux_sym_preproc_elif_token1] = ACTIONS(5232), - [sym_preproc_directive] = ACTIONS(5232), - [anon_sym_LPAREN2] = ACTIONS(5234), - [anon_sym_TILDE] = ACTIONS(5234), - [anon_sym_STAR] = ACTIONS(5234), - [anon_sym_AMP_AMP] = ACTIONS(5234), - [anon_sym_AMP] = ACTIONS(5232), - [anon_sym___extension__] = ACTIONS(5232), - [anon_sym_typedef] = ACTIONS(5232), - [anon_sym_extern] = ACTIONS(5232), - [anon_sym___attribute__] = ACTIONS(5232), - [anon_sym_COLON_COLON] = ACTIONS(5234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5234), - [anon_sym___declspec] = ACTIONS(5232), - [anon_sym___based] = ACTIONS(5232), - [anon_sym_signed] = ACTIONS(5232), - [anon_sym_unsigned] = ACTIONS(5232), - [anon_sym_long] = ACTIONS(5232), - [anon_sym_short] = ACTIONS(5232), - [anon_sym_LBRACK] = ACTIONS(5232), - [anon_sym_static] = ACTIONS(5232), - [anon_sym_register] = ACTIONS(5232), - [anon_sym_inline] = ACTIONS(5232), - [anon_sym___inline] = ACTIONS(5232), - [anon_sym___inline__] = ACTIONS(5232), - [anon_sym___forceinline] = ACTIONS(5232), - [anon_sym_thread_local] = ACTIONS(5232), - [anon_sym___thread] = ACTIONS(5232), - [anon_sym_const] = ACTIONS(5232), - [anon_sym_constexpr] = ACTIONS(5232), - [anon_sym_volatile] = ACTIONS(5232), - [anon_sym_restrict] = ACTIONS(5232), - [anon_sym___restrict__] = ACTIONS(5232), - [anon_sym__Atomic] = ACTIONS(5232), - [anon_sym__Noreturn] = ACTIONS(5232), - [anon_sym_noreturn] = ACTIONS(5232), - [anon_sym_mutable] = ACTIONS(5232), - [anon_sym_constinit] = ACTIONS(5232), - [anon_sym_consteval] = ACTIONS(5232), - [sym_primitive_type] = ACTIONS(5232), - [anon_sym_enum] = ACTIONS(5232), - [anon_sym_class] = ACTIONS(5232), - [anon_sym_struct] = ACTIONS(5232), - [anon_sym_union] = ACTIONS(5232), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5232), - [anon_sym_decltype] = ACTIONS(5232), - [anon_sym_virtual] = ACTIONS(5232), - [anon_sym_alignas] = ACTIONS(5232), - [anon_sym_explicit] = ACTIONS(5232), - [anon_sym_typename] = ACTIONS(5232), - [anon_sym_template] = ACTIONS(5232), - [anon_sym_operator] = ACTIONS(5232), - [anon_sym_friend] = ACTIONS(5232), - [anon_sym_public] = ACTIONS(5232), - [anon_sym_private] = ACTIONS(5232), - [anon_sym_protected] = ACTIONS(5232), - [anon_sym_using] = ACTIONS(5232), - [anon_sym_static_assert] = ACTIONS(5232), - }, - [2686] = { - [sym_identifier] = ACTIONS(3336), - [aux_sym_preproc_def_token1] = ACTIONS(3336), - [aux_sym_preproc_if_token1] = ACTIONS(3336), - [aux_sym_preproc_if_token2] = ACTIONS(3336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3336), - [aux_sym_preproc_else_token1] = ACTIONS(3336), - [aux_sym_preproc_elif_token1] = ACTIONS(3336), - [sym_preproc_directive] = ACTIONS(3336), - [anon_sym_LPAREN2] = ACTIONS(3338), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_STAR] = ACTIONS(3338), - [anon_sym_AMP_AMP] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym___extension__] = ACTIONS(3336), - [anon_sym_typedef] = ACTIONS(3336), - [anon_sym_extern] = ACTIONS(3336), - [anon_sym___attribute__] = ACTIONS(3336), - [anon_sym_COLON_COLON] = ACTIONS(3338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3338), - [anon_sym___declspec] = ACTIONS(3336), - [anon_sym___based] = ACTIONS(3336), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_register] = ACTIONS(3336), - [anon_sym_inline] = ACTIONS(3336), - [anon_sym___inline] = ACTIONS(3336), - [anon_sym___inline__] = ACTIONS(3336), - [anon_sym___forceinline] = ACTIONS(3336), - [anon_sym_thread_local] = ACTIONS(3336), - [anon_sym___thread] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_constexpr] = ACTIONS(3336), - [anon_sym_volatile] = ACTIONS(3336), - [anon_sym_restrict] = ACTIONS(3336), - [anon_sym___restrict__] = ACTIONS(3336), - [anon_sym__Atomic] = ACTIONS(3336), - [anon_sym__Noreturn] = ACTIONS(3336), - [anon_sym_noreturn] = ACTIONS(3336), - [anon_sym_mutable] = ACTIONS(3336), - [anon_sym_constinit] = ACTIONS(3336), - [anon_sym_consteval] = ACTIONS(3336), - [sym_primitive_type] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_union] = ACTIONS(3336), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3336), - [anon_sym_decltype] = ACTIONS(3336), - [anon_sym_virtual] = ACTIONS(3336), - [anon_sym_alignas] = ACTIONS(3336), - [anon_sym_explicit] = ACTIONS(3336), - [anon_sym_typename] = ACTIONS(3336), - [anon_sym_template] = ACTIONS(3336), - [anon_sym_operator] = ACTIONS(3336), - [anon_sym_friend] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_static_assert] = ACTIONS(3336), - }, - [2687] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5563), - [anon_sym_COMMA] = ACTIONS(5563), - [anon_sym_RPAREN] = ACTIONS(5563), - [anon_sym_LPAREN2] = ACTIONS(5563), - [anon_sym_DASH] = ACTIONS(5561), - [anon_sym_PLUS] = ACTIONS(5561), - [anon_sym_STAR] = ACTIONS(5561), - [anon_sym_SLASH] = ACTIONS(5561), - [anon_sym_PERCENT] = ACTIONS(5561), - [anon_sym_PIPE_PIPE] = ACTIONS(5563), - [anon_sym_AMP_AMP] = ACTIONS(5563), - [anon_sym_PIPE] = ACTIONS(5561), - [anon_sym_CARET] = ACTIONS(5561), - [anon_sym_AMP] = ACTIONS(5561), - [anon_sym_EQ_EQ] = ACTIONS(5563), - [anon_sym_BANG_EQ] = ACTIONS(5563), - [anon_sym_GT] = ACTIONS(5561), - [anon_sym_GT_EQ] = ACTIONS(5563), - [anon_sym_LT_EQ] = ACTIONS(5561), - [anon_sym_LT] = ACTIONS(5561), - [anon_sym_LT_LT] = ACTIONS(5561), - [anon_sym_GT_GT] = ACTIONS(5561), - [anon_sym_SEMI] = ACTIONS(5563), - [anon_sym_RBRACE] = ACTIONS(5563), - [anon_sym_LBRACK] = ACTIONS(5563), - [anon_sym_RBRACK] = ACTIONS(5563), - [anon_sym_EQ] = ACTIONS(5561), - [anon_sym_COLON] = ACTIONS(5563), - [anon_sym_QMARK] = ACTIONS(5563), - [anon_sym_STAR_EQ] = ACTIONS(5563), - [anon_sym_SLASH_EQ] = ACTIONS(5563), - [anon_sym_PERCENT_EQ] = ACTIONS(5563), - [anon_sym_PLUS_EQ] = ACTIONS(5563), - [anon_sym_DASH_EQ] = ACTIONS(5563), - [anon_sym_LT_LT_EQ] = ACTIONS(5563), - [anon_sym_GT_GT_EQ] = ACTIONS(5563), - [anon_sym_AMP_EQ] = ACTIONS(5563), - [anon_sym_CARET_EQ] = ACTIONS(5563), - [anon_sym_PIPE_EQ] = ACTIONS(5563), - [anon_sym_and_eq] = ACTIONS(5561), - [anon_sym_or_eq] = ACTIONS(5561), - [anon_sym_xor_eq] = ACTIONS(5561), - [anon_sym_LT_EQ_GT] = ACTIONS(5563), - [anon_sym_or] = ACTIONS(5561), - [anon_sym_and] = ACTIONS(5561), - [anon_sym_bitor] = ACTIONS(5561), - [anon_sym_xor] = ACTIONS(5561), - [anon_sym_bitand] = ACTIONS(5561), - [anon_sym_not_eq] = ACTIONS(5561), - [anon_sym_DASH_DASH] = ACTIONS(5563), - [anon_sym_PLUS_PLUS] = ACTIONS(5563), - [anon_sym_DOT] = ACTIONS(5561), - [anon_sym_DOT_STAR] = ACTIONS(5563), - [anon_sym_DASH_GT] = ACTIONS(5563), - [anon_sym_L_DQUOTE] = ACTIONS(5563), - [anon_sym_u_DQUOTE] = ACTIONS(5563), - [anon_sym_U_DQUOTE] = ACTIONS(5563), - [anon_sym_u8_DQUOTE] = ACTIONS(5563), - [anon_sym_DQUOTE] = ACTIONS(5563), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5563), - [anon_sym_LR_DQUOTE] = ACTIONS(5563), - [anon_sym_uR_DQUOTE] = ACTIONS(5563), - [anon_sym_UR_DQUOTE] = ACTIONS(5563), - [anon_sym_u8R_DQUOTE] = ACTIONS(5563), - [sym_literal_suffix] = ACTIONS(5561), - }, - [2688] = { - [sym__declaration_modifiers] = STATE(4310), - [sym_attribute_specifier] = STATE(4310), - [sym_attribute_declaration] = STATE(4310), - [sym_ms_declspec_modifier] = STATE(4310), - [sym_storage_class_specifier] = STATE(4310), - [sym_type_qualifier] = STATE(4310), - [sym__type_specifier] = STATE(3497), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4310), - [sym_alignas_specifier] = STATE(4310), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7280), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(4310), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4906), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(1960), - [anon_sym_template] = ACTIONS(1378), - }, - [2689] = { - [sym_identifier] = 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), - [sym_preproc_directive] = ACTIONS(3314), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3316), - [anon_sym_STAR] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_AMP] = ACTIONS(3314), - [anon_sym___extension__] = ACTIONS(3314), - [anon_sym_typedef] = ACTIONS(3314), - [anon_sym_extern] = ACTIONS(3314), - [anon_sym___attribute__] = 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_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_mutable] = ACTIONS(3314), - [anon_sym_constinit] = ACTIONS(3314), - [anon_sym_consteval] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3314), - [anon_sym_decltype] = ACTIONS(3314), - [anon_sym_virtual] = ACTIONS(3314), - [anon_sym_alignas] = ACTIONS(3314), - [anon_sym_explicit] = ACTIONS(3314), - [anon_sym_typename] = ACTIONS(3314), - [anon_sym_template] = ACTIONS(3314), - [anon_sym_operator] = ACTIONS(3314), - [anon_sym_friend] = ACTIONS(3314), - [anon_sym_public] = ACTIONS(3314), - [anon_sym_private] = ACTIONS(3314), - [anon_sym_protected] = ACTIONS(3314), - [anon_sym_using] = ACTIONS(3314), - [anon_sym_static_assert] = ACTIONS(3314), - }, - [2690] = { - [sym_identifier] = ACTIONS(5216), - [aux_sym_preproc_def_token1] = ACTIONS(5216), - [aux_sym_preproc_if_token1] = ACTIONS(5216), - [aux_sym_preproc_if_token2] = ACTIONS(5216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5216), - [aux_sym_preproc_else_token1] = ACTIONS(5216), - [aux_sym_preproc_elif_token1] = ACTIONS(5216), - [sym_preproc_directive] = ACTIONS(5216), - [anon_sym_LPAREN2] = ACTIONS(5218), - [anon_sym_TILDE] = ACTIONS(5218), - [anon_sym_STAR] = ACTIONS(5218), - [anon_sym_AMP_AMP] = ACTIONS(5218), - [anon_sym_AMP] = ACTIONS(5216), - [anon_sym___extension__] = ACTIONS(5216), - [anon_sym_typedef] = ACTIONS(5216), - [anon_sym_extern] = ACTIONS(5216), - [anon_sym___attribute__] = ACTIONS(5216), - [anon_sym_COLON_COLON] = ACTIONS(5218), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5218), - [anon_sym___declspec] = ACTIONS(5216), - [anon_sym___based] = ACTIONS(5216), - [anon_sym_signed] = ACTIONS(5216), - [anon_sym_unsigned] = ACTIONS(5216), - [anon_sym_long] = ACTIONS(5216), - [anon_sym_short] = ACTIONS(5216), - [anon_sym_LBRACK] = ACTIONS(5216), - [anon_sym_static] = ACTIONS(5216), - [anon_sym_register] = ACTIONS(5216), - [anon_sym_inline] = ACTIONS(5216), - [anon_sym___inline] = ACTIONS(5216), - [anon_sym___inline__] = ACTIONS(5216), - [anon_sym___forceinline] = ACTIONS(5216), - [anon_sym_thread_local] = ACTIONS(5216), - [anon_sym___thread] = ACTIONS(5216), - [anon_sym_const] = ACTIONS(5216), - [anon_sym_constexpr] = ACTIONS(5216), - [anon_sym_volatile] = ACTIONS(5216), - [anon_sym_restrict] = ACTIONS(5216), - [anon_sym___restrict__] = ACTIONS(5216), - [anon_sym__Atomic] = ACTIONS(5216), - [anon_sym__Noreturn] = ACTIONS(5216), - [anon_sym_noreturn] = ACTIONS(5216), - [anon_sym_mutable] = ACTIONS(5216), - [anon_sym_constinit] = ACTIONS(5216), - [anon_sym_consteval] = ACTIONS(5216), - [sym_primitive_type] = ACTIONS(5216), - [anon_sym_enum] = ACTIONS(5216), - [anon_sym_class] = ACTIONS(5216), - [anon_sym_struct] = ACTIONS(5216), - [anon_sym_union] = ACTIONS(5216), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5216), - [anon_sym_decltype] = ACTIONS(5216), - [anon_sym_virtual] = ACTIONS(5216), - [anon_sym_alignas] = ACTIONS(5216), - [anon_sym_explicit] = ACTIONS(5216), - [anon_sym_typename] = ACTIONS(5216), - [anon_sym_template] = ACTIONS(5216), - [anon_sym_operator] = ACTIONS(5216), - [anon_sym_friend] = ACTIONS(5216), - [anon_sym_public] = ACTIONS(5216), - [anon_sym_private] = ACTIONS(5216), - [anon_sym_protected] = ACTIONS(5216), - [anon_sym_using] = ACTIONS(5216), - [anon_sym_static_assert] = ACTIONS(5216), - }, - [2691] = { - [sym_identifier] = ACTIONS(5220), - [aux_sym_preproc_def_token1] = ACTIONS(5220), - [aux_sym_preproc_if_token1] = ACTIONS(5220), - [aux_sym_preproc_if_token2] = ACTIONS(5220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5220), - [aux_sym_preproc_else_token1] = ACTIONS(5220), - [aux_sym_preproc_elif_token1] = ACTIONS(5220), - [sym_preproc_directive] = ACTIONS(5220), - [anon_sym_LPAREN2] = ACTIONS(5222), - [anon_sym_TILDE] = ACTIONS(5222), - [anon_sym_STAR] = ACTIONS(5222), - [anon_sym_AMP_AMP] = ACTIONS(5222), - [anon_sym_AMP] = ACTIONS(5220), - [anon_sym___extension__] = ACTIONS(5220), - [anon_sym_typedef] = ACTIONS(5220), - [anon_sym_extern] = ACTIONS(5220), - [anon_sym___attribute__] = ACTIONS(5220), - [anon_sym_COLON_COLON] = ACTIONS(5222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5222), - [anon_sym___declspec] = ACTIONS(5220), - [anon_sym___based] = ACTIONS(5220), - [anon_sym_signed] = ACTIONS(5220), - [anon_sym_unsigned] = ACTIONS(5220), - [anon_sym_long] = ACTIONS(5220), - [anon_sym_short] = ACTIONS(5220), - [anon_sym_LBRACK] = ACTIONS(5220), - [anon_sym_static] = ACTIONS(5220), - [anon_sym_register] = ACTIONS(5220), - [anon_sym_inline] = ACTIONS(5220), - [anon_sym___inline] = ACTIONS(5220), - [anon_sym___inline__] = ACTIONS(5220), - [anon_sym___forceinline] = ACTIONS(5220), - [anon_sym_thread_local] = ACTIONS(5220), - [anon_sym___thread] = ACTIONS(5220), - [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_mutable] = ACTIONS(5220), - [anon_sym_constinit] = ACTIONS(5220), - [anon_sym_consteval] = ACTIONS(5220), - [sym_primitive_type] = ACTIONS(5220), - [anon_sym_enum] = ACTIONS(5220), - [anon_sym_class] = ACTIONS(5220), - [anon_sym_struct] = ACTIONS(5220), - [anon_sym_union] = ACTIONS(5220), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5220), - [anon_sym_decltype] = ACTIONS(5220), - [anon_sym_virtual] = ACTIONS(5220), - [anon_sym_alignas] = ACTIONS(5220), - [anon_sym_explicit] = ACTIONS(5220), - [anon_sym_typename] = ACTIONS(5220), - [anon_sym_template] = ACTIONS(5220), - [anon_sym_operator] = ACTIONS(5220), - [anon_sym_friend] = ACTIONS(5220), - [anon_sym_public] = ACTIONS(5220), - [anon_sym_private] = ACTIONS(5220), - [anon_sym_protected] = ACTIONS(5220), - [anon_sym_using] = ACTIONS(5220), - [anon_sym_static_assert] = ACTIONS(5220), - }, - [2692] = { - [sym_identifier] = ACTIONS(5220), - [aux_sym_preproc_def_token1] = ACTIONS(5220), - [aux_sym_preproc_if_token1] = ACTIONS(5220), - [aux_sym_preproc_if_token2] = ACTIONS(5220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5220), - [aux_sym_preproc_else_token1] = ACTIONS(5220), - [aux_sym_preproc_elif_token1] = ACTIONS(5220), - [sym_preproc_directive] = ACTIONS(5220), - [anon_sym_LPAREN2] = ACTIONS(5222), - [anon_sym_TILDE] = ACTIONS(5222), - [anon_sym_STAR] = ACTIONS(5222), - [anon_sym_AMP_AMP] = ACTIONS(5222), - [anon_sym_AMP] = ACTIONS(5220), - [anon_sym___extension__] = ACTIONS(5220), - [anon_sym_typedef] = ACTIONS(5220), - [anon_sym_extern] = ACTIONS(5220), - [anon_sym___attribute__] = ACTIONS(5220), - [anon_sym_COLON_COLON] = ACTIONS(5222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5222), - [anon_sym___declspec] = ACTIONS(5220), - [anon_sym___based] = ACTIONS(5220), - [anon_sym_signed] = ACTIONS(5220), - [anon_sym_unsigned] = ACTIONS(5220), - [anon_sym_long] = ACTIONS(5220), - [anon_sym_short] = ACTIONS(5220), - [anon_sym_LBRACK] = ACTIONS(5220), - [anon_sym_static] = ACTIONS(5220), - [anon_sym_register] = ACTIONS(5220), - [anon_sym_inline] = ACTIONS(5220), - [anon_sym___inline] = ACTIONS(5220), - [anon_sym___inline__] = ACTIONS(5220), - [anon_sym___forceinline] = ACTIONS(5220), - [anon_sym_thread_local] = ACTIONS(5220), - [anon_sym___thread] = ACTIONS(5220), - [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_mutable] = ACTIONS(5220), - [anon_sym_constinit] = ACTIONS(5220), - [anon_sym_consteval] = ACTIONS(5220), - [sym_primitive_type] = ACTIONS(5220), - [anon_sym_enum] = ACTIONS(5220), - [anon_sym_class] = ACTIONS(5220), - [anon_sym_struct] = ACTIONS(5220), - [anon_sym_union] = ACTIONS(5220), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5220), - [anon_sym_decltype] = ACTIONS(5220), - [anon_sym_virtual] = ACTIONS(5220), - [anon_sym_alignas] = ACTIONS(5220), - [anon_sym_explicit] = ACTIONS(5220), - [anon_sym_typename] = ACTIONS(5220), - [anon_sym_template] = ACTIONS(5220), - [anon_sym_operator] = ACTIONS(5220), - [anon_sym_friend] = ACTIONS(5220), - [anon_sym_public] = ACTIONS(5220), - [anon_sym_private] = ACTIONS(5220), - [anon_sym_protected] = ACTIONS(5220), - [anon_sym_using] = ACTIONS(5220), - [anon_sym_static_assert] = ACTIONS(5220), - }, - [2693] = { - [sym_identifier] = ACTIONS(3454), - [aux_sym_preproc_def_token1] = ACTIONS(3454), - [aux_sym_preproc_if_token1] = ACTIONS(3454), - [aux_sym_preproc_if_token2] = ACTIONS(3454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3454), - [aux_sym_preproc_else_token1] = ACTIONS(3454), - [aux_sym_preproc_elif_token1] = ACTIONS(3454), - [sym_preproc_directive] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3456), - [anon_sym_TILDE] = ACTIONS(3456), - [anon_sym_STAR] = ACTIONS(3456), - [anon_sym_AMP_AMP] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym___extension__] = ACTIONS(3454), - [anon_sym_typedef] = ACTIONS(3454), - [anon_sym_extern] = ACTIONS(3454), - [anon_sym___attribute__] = ACTIONS(3454), - [anon_sym_COLON_COLON] = ACTIONS(3456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3456), - [anon_sym___declspec] = ACTIONS(3454), - [anon_sym___based] = ACTIONS(3454), - [anon_sym_signed] = ACTIONS(3454), - [anon_sym_unsigned] = ACTIONS(3454), - [anon_sym_long] = ACTIONS(3454), - [anon_sym_short] = ACTIONS(3454), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3454), - [anon_sym_register] = ACTIONS(3454), - [anon_sym_inline] = ACTIONS(3454), - [anon_sym___inline] = ACTIONS(3454), - [anon_sym___inline__] = ACTIONS(3454), - [anon_sym___forceinline] = ACTIONS(3454), - [anon_sym_thread_local] = ACTIONS(3454), - [anon_sym___thread] = ACTIONS(3454), - [anon_sym_const] = ACTIONS(3454), - [anon_sym_constexpr] = ACTIONS(3454), - [anon_sym_volatile] = ACTIONS(3454), - [anon_sym_restrict] = ACTIONS(3454), - [anon_sym___restrict__] = ACTIONS(3454), - [anon_sym__Atomic] = ACTIONS(3454), - [anon_sym__Noreturn] = ACTIONS(3454), - [anon_sym_noreturn] = ACTIONS(3454), - [anon_sym_mutable] = ACTIONS(3454), - [anon_sym_constinit] = ACTIONS(3454), - [anon_sym_consteval] = ACTIONS(3454), - [sym_primitive_type] = ACTIONS(3454), - [anon_sym_enum] = ACTIONS(3454), - [anon_sym_class] = ACTIONS(3454), - [anon_sym_struct] = ACTIONS(3454), - [anon_sym_union] = ACTIONS(3454), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3454), - [anon_sym_decltype] = ACTIONS(3454), - [anon_sym_virtual] = ACTIONS(3454), - [anon_sym_alignas] = ACTIONS(3454), - [anon_sym_explicit] = ACTIONS(3454), - [anon_sym_typename] = ACTIONS(3454), - [anon_sym_template] = ACTIONS(3454), - [anon_sym_operator] = ACTIONS(3454), - [anon_sym_friend] = ACTIONS(3454), - [anon_sym_public] = ACTIONS(3454), - [anon_sym_private] = ACTIONS(3454), - [anon_sym_protected] = ACTIONS(3454), - [anon_sym_using] = ACTIONS(3454), - [anon_sym_static_assert] = ACTIONS(3454), - }, - [2694] = { - [sym_identifier] = ACTIONS(5216), - [aux_sym_preproc_def_token1] = ACTIONS(5216), - [aux_sym_preproc_if_token1] = ACTIONS(5216), - [aux_sym_preproc_if_token2] = ACTIONS(5216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5216), - [aux_sym_preproc_else_token1] = ACTIONS(5216), - [aux_sym_preproc_elif_token1] = ACTIONS(5216), - [sym_preproc_directive] = ACTIONS(5216), - [anon_sym_LPAREN2] = ACTIONS(5218), - [anon_sym_TILDE] = ACTIONS(5218), - [anon_sym_STAR] = ACTIONS(5218), - [anon_sym_AMP_AMP] = ACTIONS(5218), - [anon_sym_AMP] = ACTIONS(5216), - [anon_sym___extension__] = ACTIONS(5216), - [anon_sym_typedef] = ACTIONS(5216), - [anon_sym_extern] = ACTIONS(5216), - [anon_sym___attribute__] = ACTIONS(5216), - [anon_sym_COLON_COLON] = ACTIONS(5218), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5218), - [anon_sym___declspec] = ACTIONS(5216), - [anon_sym___based] = ACTIONS(5216), - [anon_sym_signed] = ACTIONS(5216), - [anon_sym_unsigned] = ACTIONS(5216), - [anon_sym_long] = ACTIONS(5216), - [anon_sym_short] = ACTIONS(5216), - [anon_sym_LBRACK] = ACTIONS(5216), - [anon_sym_static] = ACTIONS(5216), - [anon_sym_register] = ACTIONS(5216), - [anon_sym_inline] = ACTIONS(5216), - [anon_sym___inline] = ACTIONS(5216), - [anon_sym___inline__] = ACTIONS(5216), - [anon_sym___forceinline] = ACTIONS(5216), - [anon_sym_thread_local] = ACTIONS(5216), - [anon_sym___thread] = ACTIONS(5216), - [anon_sym_const] = ACTIONS(5216), - [anon_sym_constexpr] = ACTIONS(5216), - [anon_sym_volatile] = ACTIONS(5216), - [anon_sym_restrict] = ACTIONS(5216), - [anon_sym___restrict__] = ACTIONS(5216), - [anon_sym__Atomic] = ACTIONS(5216), - [anon_sym__Noreturn] = ACTIONS(5216), - [anon_sym_noreturn] = ACTIONS(5216), - [anon_sym_mutable] = ACTIONS(5216), - [anon_sym_constinit] = ACTIONS(5216), - [anon_sym_consteval] = ACTIONS(5216), - [sym_primitive_type] = ACTIONS(5216), - [anon_sym_enum] = ACTIONS(5216), - [anon_sym_class] = ACTIONS(5216), - [anon_sym_struct] = ACTIONS(5216), - [anon_sym_union] = ACTIONS(5216), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5216), - [anon_sym_decltype] = ACTIONS(5216), - [anon_sym_virtual] = ACTIONS(5216), - [anon_sym_alignas] = ACTIONS(5216), - [anon_sym_explicit] = ACTIONS(5216), - [anon_sym_typename] = ACTIONS(5216), - [anon_sym_template] = ACTIONS(5216), - [anon_sym_operator] = ACTIONS(5216), - [anon_sym_friend] = ACTIONS(5216), - [anon_sym_public] = ACTIONS(5216), - [anon_sym_private] = ACTIONS(5216), - [anon_sym_protected] = ACTIONS(5216), - [anon_sym_using] = ACTIONS(5216), - [anon_sym_static_assert] = ACTIONS(5216), - }, - [2695] = { - [sym_identifier] = ACTIONS(3410), - [aux_sym_preproc_def_token1] = ACTIONS(3410), - [aux_sym_preproc_if_token1] = ACTIONS(3410), - [aux_sym_preproc_if_token2] = ACTIONS(3410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3410), - [aux_sym_preproc_else_token1] = ACTIONS(3410), - [aux_sym_preproc_elif_token1] = ACTIONS(3410), - [sym_preproc_directive] = ACTIONS(3410), - [anon_sym_LPAREN2] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3410), - [anon_sym___extension__] = ACTIONS(3410), - [anon_sym_typedef] = ACTIONS(3410), - [anon_sym_extern] = ACTIONS(3410), - [anon_sym___attribute__] = ACTIONS(3410), - [anon_sym_COLON_COLON] = ACTIONS(3412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), - [anon_sym___declspec] = ACTIONS(3410), - [anon_sym___based] = ACTIONS(3410), - [anon_sym_signed] = ACTIONS(3410), - [anon_sym_unsigned] = ACTIONS(3410), - [anon_sym_long] = ACTIONS(3410), - [anon_sym_short] = ACTIONS(3410), - [anon_sym_LBRACK] = ACTIONS(3410), - [anon_sym_static] = ACTIONS(3410), - [anon_sym_register] = ACTIONS(3410), - [anon_sym_inline] = ACTIONS(3410), - [anon_sym___inline] = ACTIONS(3410), - [anon_sym___inline__] = ACTIONS(3410), - [anon_sym___forceinline] = ACTIONS(3410), - [anon_sym_thread_local] = ACTIONS(3410), - [anon_sym___thread] = ACTIONS(3410), - [anon_sym_const] = ACTIONS(3410), - [anon_sym_constexpr] = ACTIONS(3410), - [anon_sym_volatile] = ACTIONS(3410), - [anon_sym_restrict] = ACTIONS(3410), - [anon_sym___restrict__] = ACTIONS(3410), - [anon_sym__Atomic] = ACTIONS(3410), - [anon_sym__Noreturn] = ACTIONS(3410), - [anon_sym_noreturn] = ACTIONS(3410), - [anon_sym_mutable] = ACTIONS(3410), - [anon_sym_constinit] = ACTIONS(3410), - [anon_sym_consteval] = ACTIONS(3410), - [sym_primitive_type] = ACTIONS(3410), - [anon_sym_enum] = ACTIONS(3410), - [anon_sym_class] = ACTIONS(3410), - [anon_sym_struct] = ACTIONS(3410), - [anon_sym_union] = ACTIONS(3410), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3410), - [anon_sym_decltype] = ACTIONS(3410), - [anon_sym_virtual] = ACTIONS(3410), - [anon_sym_alignas] = ACTIONS(3410), - [anon_sym_explicit] = ACTIONS(3410), - [anon_sym_typename] = ACTIONS(3410), - [anon_sym_template] = ACTIONS(3410), - [anon_sym_operator] = ACTIONS(3410), - [anon_sym_friend] = ACTIONS(3410), - [anon_sym_public] = ACTIONS(3410), - [anon_sym_private] = ACTIONS(3410), - [anon_sym_protected] = ACTIONS(3410), - [anon_sym_using] = ACTIONS(3410), - [anon_sym_static_assert] = ACTIONS(3410), - }, - [2696] = { - [sym_identifier] = ACTIONS(3406), - [aux_sym_preproc_def_token1] = ACTIONS(3406), - [aux_sym_preproc_if_token1] = ACTIONS(3406), - [aux_sym_preproc_if_token2] = ACTIONS(3406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3406), - [aux_sym_preproc_else_token1] = ACTIONS(3406), - [aux_sym_preproc_elif_token1] = ACTIONS(3406), - [sym_preproc_directive] = ACTIONS(3406), - [anon_sym_LPAREN2] = ACTIONS(3408), - [anon_sym_TILDE] = ACTIONS(3408), - [anon_sym_STAR] = ACTIONS(3408), - [anon_sym_AMP_AMP] = ACTIONS(3408), - [anon_sym_AMP] = ACTIONS(3406), - [anon_sym___extension__] = ACTIONS(3406), - [anon_sym_typedef] = ACTIONS(3406), - [anon_sym_extern] = ACTIONS(3406), - [anon_sym___attribute__] = ACTIONS(3406), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3408), - [anon_sym___declspec] = ACTIONS(3406), - [anon_sym___based] = ACTIONS(3406), - [anon_sym_signed] = ACTIONS(3406), - [anon_sym_unsigned] = ACTIONS(3406), - [anon_sym_long] = ACTIONS(3406), - [anon_sym_short] = ACTIONS(3406), - [anon_sym_LBRACK] = ACTIONS(3406), - [anon_sym_static] = ACTIONS(3406), - [anon_sym_register] = ACTIONS(3406), - [anon_sym_inline] = ACTIONS(3406), - [anon_sym___inline] = ACTIONS(3406), - [anon_sym___inline__] = ACTIONS(3406), - [anon_sym___forceinline] = ACTIONS(3406), - [anon_sym_thread_local] = ACTIONS(3406), - [anon_sym___thread] = ACTIONS(3406), - [anon_sym_const] = ACTIONS(3406), - [anon_sym_constexpr] = ACTIONS(3406), - [anon_sym_volatile] = ACTIONS(3406), - [anon_sym_restrict] = ACTIONS(3406), - [anon_sym___restrict__] = ACTIONS(3406), - [anon_sym__Atomic] = ACTIONS(3406), - [anon_sym__Noreturn] = ACTIONS(3406), - [anon_sym_noreturn] = ACTIONS(3406), - [anon_sym_mutable] = ACTIONS(3406), - [anon_sym_constinit] = ACTIONS(3406), - [anon_sym_consteval] = ACTIONS(3406), - [sym_primitive_type] = ACTIONS(3406), - [anon_sym_enum] = ACTIONS(3406), - [anon_sym_class] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3406), - [anon_sym_union] = ACTIONS(3406), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3406), - [anon_sym_decltype] = ACTIONS(3406), - [anon_sym_virtual] = ACTIONS(3406), - [anon_sym_alignas] = ACTIONS(3406), - [anon_sym_explicit] = ACTIONS(3406), - [anon_sym_typename] = ACTIONS(3406), - [anon_sym_template] = ACTIONS(3406), - [anon_sym_operator] = ACTIONS(3406), - [anon_sym_friend] = ACTIONS(3406), - [anon_sym_public] = ACTIONS(3406), - [anon_sym_private] = ACTIONS(3406), - [anon_sym_protected] = ACTIONS(3406), - [anon_sym_using] = ACTIONS(3406), - [anon_sym_static_assert] = ACTIONS(3406), - }, - [2697] = { - [sym_identifier] = ACTIONS(3400), - [aux_sym_preproc_def_token1] = ACTIONS(3400), - [aux_sym_preproc_if_token1] = ACTIONS(3400), - [aux_sym_preproc_if_token2] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3400), - [aux_sym_preproc_else_token1] = ACTIONS(3400), - [aux_sym_preproc_elif_token1] = ACTIONS(3400), - [sym_preproc_directive] = ACTIONS(3400), - [anon_sym_LPAREN2] = ACTIONS(3402), - [anon_sym_TILDE] = ACTIONS(3402), - [anon_sym_STAR] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3400), - [anon_sym___extension__] = ACTIONS(3400), - [anon_sym_typedef] = ACTIONS(3400), - [anon_sym_extern] = ACTIONS(3400), - [anon_sym___attribute__] = ACTIONS(3400), - [anon_sym_COLON_COLON] = ACTIONS(3402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3402), - [anon_sym___declspec] = ACTIONS(3400), - [anon_sym___based] = ACTIONS(3400), - [anon_sym_signed] = ACTIONS(3400), - [anon_sym_unsigned] = ACTIONS(3400), - [anon_sym_long] = ACTIONS(3400), - [anon_sym_short] = ACTIONS(3400), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_static] = ACTIONS(3400), - [anon_sym_register] = ACTIONS(3400), - [anon_sym_inline] = ACTIONS(3400), - [anon_sym___inline] = ACTIONS(3400), - [anon_sym___inline__] = ACTIONS(3400), - [anon_sym___forceinline] = ACTIONS(3400), - [anon_sym_thread_local] = ACTIONS(3400), - [anon_sym___thread] = ACTIONS(3400), - [anon_sym_const] = ACTIONS(3400), - [anon_sym_constexpr] = ACTIONS(3400), - [anon_sym_volatile] = ACTIONS(3400), - [anon_sym_restrict] = ACTIONS(3400), - [anon_sym___restrict__] = ACTIONS(3400), - [anon_sym__Atomic] = ACTIONS(3400), - [anon_sym__Noreturn] = ACTIONS(3400), - [anon_sym_noreturn] = ACTIONS(3400), - [anon_sym_mutable] = ACTIONS(3400), - [anon_sym_constinit] = ACTIONS(3400), - [anon_sym_consteval] = ACTIONS(3400), - [sym_primitive_type] = ACTIONS(3400), - [anon_sym_enum] = ACTIONS(3400), - [anon_sym_class] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3400), - [anon_sym_union] = ACTIONS(3400), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3400), - [anon_sym_decltype] = ACTIONS(3400), - [anon_sym_virtual] = ACTIONS(3400), - [anon_sym_alignas] = ACTIONS(3400), - [anon_sym_explicit] = ACTIONS(3400), - [anon_sym_typename] = ACTIONS(3400), - [anon_sym_template] = ACTIONS(3400), - [anon_sym_operator] = ACTIONS(3400), - [anon_sym_friend] = ACTIONS(3400), - [anon_sym_public] = ACTIONS(3400), - [anon_sym_private] = ACTIONS(3400), - [anon_sym_protected] = ACTIONS(3400), - [anon_sym_using] = ACTIONS(3400), - [anon_sym_static_assert] = ACTIONS(3400), - }, - [2698] = { - [sym_identifier] = ACTIONS(3396), - [aux_sym_preproc_def_token1] = ACTIONS(3396), - [aux_sym_preproc_if_token1] = ACTIONS(3396), - [aux_sym_preproc_if_token2] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3396), - [aux_sym_preproc_else_token1] = ACTIONS(3396), - [aux_sym_preproc_elif_token1] = ACTIONS(3396), - [sym_preproc_directive] = ACTIONS(3396), - [anon_sym_LPAREN2] = ACTIONS(3398), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3398), - [anon_sym_AMP_AMP] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym___extension__] = ACTIONS(3396), - [anon_sym_typedef] = ACTIONS(3396), - [anon_sym_extern] = ACTIONS(3396), - [anon_sym___attribute__] = ACTIONS(3396), - [anon_sym_COLON_COLON] = ACTIONS(3398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3398), - [anon_sym___declspec] = ACTIONS(3396), - [anon_sym___based] = ACTIONS(3396), - [anon_sym_signed] = ACTIONS(3396), - [anon_sym_unsigned] = ACTIONS(3396), - [anon_sym_long] = ACTIONS(3396), - [anon_sym_short] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_static] = ACTIONS(3396), - [anon_sym_register] = ACTIONS(3396), - [anon_sym_inline] = ACTIONS(3396), - [anon_sym___inline] = ACTIONS(3396), - [anon_sym___inline__] = ACTIONS(3396), - [anon_sym___forceinline] = ACTIONS(3396), - [anon_sym_thread_local] = ACTIONS(3396), - [anon_sym___thread] = ACTIONS(3396), - [anon_sym_const] = ACTIONS(3396), - [anon_sym_constexpr] = ACTIONS(3396), - [anon_sym_volatile] = ACTIONS(3396), - [anon_sym_restrict] = ACTIONS(3396), - [anon_sym___restrict__] = ACTIONS(3396), - [anon_sym__Atomic] = ACTIONS(3396), - [anon_sym__Noreturn] = ACTIONS(3396), - [anon_sym_noreturn] = ACTIONS(3396), - [anon_sym_mutable] = ACTIONS(3396), - [anon_sym_constinit] = ACTIONS(3396), - [anon_sym_consteval] = ACTIONS(3396), - [sym_primitive_type] = ACTIONS(3396), - [anon_sym_enum] = ACTIONS(3396), - [anon_sym_class] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(3396), - [anon_sym_union] = ACTIONS(3396), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3396), - [anon_sym_decltype] = ACTIONS(3396), - [anon_sym_virtual] = ACTIONS(3396), - [anon_sym_alignas] = ACTIONS(3396), - [anon_sym_explicit] = ACTIONS(3396), - [anon_sym_typename] = ACTIONS(3396), - [anon_sym_template] = ACTIONS(3396), - [anon_sym_operator] = ACTIONS(3396), - [anon_sym_friend] = ACTIONS(3396), - [anon_sym_public] = ACTIONS(3396), - [anon_sym_private] = ACTIONS(3396), - [anon_sym_protected] = ACTIONS(3396), - [anon_sym_using] = ACTIONS(3396), - [anon_sym_static_assert] = ACTIONS(3396), - }, - [2699] = { - [sym_identifier] = ACTIONS(5283), - [aux_sym_preproc_def_token1] = ACTIONS(5283), - [aux_sym_preproc_if_token1] = ACTIONS(5283), - [aux_sym_preproc_if_token2] = ACTIONS(5283), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5283), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5283), - [aux_sym_preproc_else_token1] = ACTIONS(5283), - [aux_sym_preproc_elif_token1] = ACTIONS(5283), - [sym_preproc_directive] = ACTIONS(5283), - [anon_sym_LPAREN2] = ACTIONS(5285), - [anon_sym_TILDE] = ACTIONS(5285), - [anon_sym_STAR] = ACTIONS(5285), - [anon_sym_AMP_AMP] = ACTIONS(5285), - [anon_sym_AMP] = ACTIONS(5283), - [anon_sym___extension__] = ACTIONS(5283), - [anon_sym_typedef] = ACTIONS(5283), - [anon_sym_extern] = ACTIONS(5283), - [anon_sym___attribute__] = ACTIONS(5283), - [anon_sym_COLON_COLON] = ACTIONS(5285), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5285), - [anon_sym___declspec] = ACTIONS(5283), - [anon_sym___based] = ACTIONS(5283), - [anon_sym_signed] = ACTIONS(5283), - [anon_sym_unsigned] = ACTIONS(5283), - [anon_sym_long] = ACTIONS(5283), - [anon_sym_short] = ACTIONS(5283), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_static] = ACTIONS(5283), - [anon_sym_register] = ACTIONS(5283), - [anon_sym_inline] = ACTIONS(5283), - [anon_sym___inline] = ACTIONS(5283), - [anon_sym___inline__] = ACTIONS(5283), - [anon_sym___forceinline] = ACTIONS(5283), - [anon_sym_thread_local] = ACTIONS(5283), - [anon_sym___thread] = ACTIONS(5283), - [anon_sym_const] = ACTIONS(5283), - [anon_sym_constexpr] = ACTIONS(5283), - [anon_sym_volatile] = ACTIONS(5283), - [anon_sym_restrict] = ACTIONS(5283), - [anon_sym___restrict__] = ACTIONS(5283), - [anon_sym__Atomic] = ACTIONS(5283), - [anon_sym__Noreturn] = ACTIONS(5283), - [anon_sym_noreturn] = ACTIONS(5283), - [anon_sym_mutable] = ACTIONS(5283), - [anon_sym_constinit] = ACTIONS(5283), - [anon_sym_consteval] = ACTIONS(5283), - [sym_primitive_type] = ACTIONS(5283), - [anon_sym_enum] = ACTIONS(5283), - [anon_sym_class] = ACTIONS(5283), - [anon_sym_struct] = ACTIONS(5283), - [anon_sym_union] = ACTIONS(5283), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5283), - [anon_sym_decltype] = ACTIONS(5283), - [anon_sym_virtual] = ACTIONS(5283), - [anon_sym_alignas] = ACTIONS(5283), - [anon_sym_explicit] = ACTIONS(5283), - [anon_sym_typename] = ACTIONS(5283), - [anon_sym_template] = ACTIONS(5283), - [anon_sym_operator] = ACTIONS(5283), - [anon_sym_friend] = ACTIONS(5283), - [anon_sym_public] = ACTIONS(5283), - [anon_sym_private] = ACTIONS(5283), - [anon_sym_protected] = ACTIONS(5283), - [anon_sym_using] = ACTIONS(5283), - [anon_sym_static_assert] = ACTIONS(5283), - }, - [2700] = { - [sym_identifier] = ACTIONS(5329), - [aux_sym_preproc_def_token1] = ACTIONS(5329), - [aux_sym_preproc_if_token1] = ACTIONS(5329), - [aux_sym_preproc_if_token2] = ACTIONS(5329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5329), - [aux_sym_preproc_else_token1] = ACTIONS(5329), - [aux_sym_preproc_elif_token1] = ACTIONS(5329), - [sym_preproc_directive] = ACTIONS(5329), - [anon_sym_LPAREN2] = ACTIONS(5331), - [anon_sym_TILDE] = ACTIONS(5331), - [anon_sym_STAR] = ACTIONS(5331), - [anon_sym_AMP_AMP] = ACTIONS(5331), - [anon_sym_AMP] = ACTIONS(5329), - [anon_sym___extension__] = ACTIONS(5329), - [anon_sym_typedef] = ACTIONS(5329), - [anon_sym_extern] = ACTIONS(5329), - [anon_sym___attribute__] = ACTIONS(5329), - [anon_sym_COLON_COLON] = ACTIONS(5331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5331), - [anon_sym___declspec] = ACTIONS(5329), - [anon_sym___based] = ACTIONS(5329), - [anon_sym_signed] = ACTIONS(5329), - [anon_sym_unsigned] = ACTIONS(5329), - [anon_sym_long] = ACTIONS(5329), - [anon_sym_short] = ACTIONS(5329), - [anon_sym_LBRACK] = ACTIONS(5329), - [anon_sym_static] = ACTIONS(5329), - [anon_sym_register] = ACTIONS(5329), - [anon_sym_inline] = ACTIONS(5329), - [anon_sym___inline] = ACTIONS(5329), - [anon_sym___inline__] = ACTIONS(5329), - [anon_sym___forceinline] = ACTIONS(5329), - [anon_sym_thread_local] = ACTIONS(5329), - [anon_sym___thread] = ACTIONS(5329), - [anon_sym_const] = ACTIONS(5329), - [anon_sym_constexpr] = ACTIONS(5329), - [anon_sym_volatile] = ACTIONS(5329), - [anon_sym_restrict] = ACTIONS(5329), - [anon_sym___restrict__] = ACTIONS(5329), - [anon_sym__Atomic] = ACTIONS(5329), - [anon_sym__Noreturn] = ACTIONS(5329), - [anon_sym_noreturn] = ACTIONS(5329), - [anon_sym_mutable] = ACTIONS(5329), - [anon_sym_constinit] = ACTIONS(5329), - [anon_sym_consteval] = ACTIONS(5329), - [sym_primitive_type] = ACTIONS(5329), - [anon_sym_enum] = ACTIONS(5329), - [anon_sym_class] = ACTIONS(5329), - [anon_sym_struct] = ACTIONS(5329), - [anon_sym_union] = ACTIONS(5329), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5329), - [anon_sym_decltype] = ACTIONS(5329), - [anon_sym_virtual] = ACTIONS(5329), - [anon_sym_alignas] = ACTIONS(5329), - [anon_sym_explicit] = ACTIONS(5329), - [anon_sym_typename] = ACTIONS(5329), - [anon_sym_template] = ACTIONS(5329), - [anon_sym_operator] = ACTIONS(5329), - [anon_sym_friend] = ACTIONS(5329), - [anon_sym_public] = ACTIONS(5329), - [anon_sym_private] = ACTIONS(5329), - [anon_sym_protected] = ACTIONS(5329), - [anon_sym_using] = ACTIONS(5329), - [anon_sym_static_assert] = ACTIONS(5329), - }, - [2701] = { - [sym_identifier] = ACTIONS(5333), - [aux_sym_preproc_def_token1] = ACTIONS(5333), - [aux_sym_preproc_if_token1] = ACTIONS(5333), - [aux_sym_preproc_if_token2] = ACTIONS(5333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5333), - [aux_sym_preproc_else_token1] = ACTIONS(5333), - [aux_sym_preproc_elif_token1] = ACTIONS(5333), - [sym_preproc_directive] = ACTIONS(5333), - [anon_sym_LPAREN2] = ACTIONS(5335), - [anon_sym_TILDE] = ACTIONS(5335), - [anon_sym_STAR] = ACTIONS(5335), - [anon_sym_AMP_AMP] = ACTIONS(5335), - [anon_sym_AMP] = ACTIONS(5333), - [anon_sym___extension__] = ACTIONS(5333), - [anon_sym_typedef] = ACTIONS(5333), - [anon_sym_extern] = ACTIONS(5333), - [anon_sym___attribute__] = ACTIONS(5333), - [anon_sym_COLON_COLON] = ACTIONS(5335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5335), - [anon_sym___declspec] = ACTIONS(5333), - [anon_sym___based] = ACTIONS(5333), - [anon_sym_signed] = ACTIONS(5333), - [anon_sym_unsigned] = ACTIONS(5333), - [anon_sym_long] = ACTIONS(5333), - [anon_sym_short] = ACTIONS(5333), - [anon_sym_LBRACK] = ACTIONS(5333), - [anon_sym_static] = ACTIONS(5333), - [anon_sym_register] = ACTIONS(5333), - [anon_sym_inline] = ACTIONS(5333), - [anon_sym___inline] = ACTIONS(5333), - [anon_sym___inline__] = ACTIONS(5333), - [anon_sym___forceinline] = ACTIONS(5333), - [anon_sym_thread_local] = ACTIONS(5333), - [anon_sym___thread] = ACTIONS(5333), - [anon_sym_const] = ACTIONS(5333), - [anon_sym_constexpr] = ACTIONS(5333), - [anon_sym_volatile] = ACTIONS(5333), - [anon_sym_restrict] = ACTIONS(5333), - [anon_sym___restrict__] = ACTIONS(5333), - [anon_sym__Atomic] = ACTIONS(5333), - [anon_sym__Noreturn] = ACTIONS(5333), - [anon_sym_noreturn] = ACTIONS(5333), - [anon_sym_mutable] = ACTIONS(5333), - [anon_sym_constinit] = ACTIONS(5333), - [anon_sym_consteval] = ACTIONS(5333), - [sym_primitive_type] = ACTIONS(5333), - [anon_sym_enum] = ACTIONS(5333), - [anon_sym_class] = ACTIONS(5333), - [anon_sym_struct] = ACTIONS(5333), - [anon_sym_union] = ACTIONS(5333), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5333), - [anon_sym_decltype] = ACTIONS(5333), - [anon_sym_virtual] = ACTIONS(5333), - [anon_sym_alignas] = ACTIONS(5333), - [anon_sym_explicit] = ACTIONS(5333), - [anon_sym_typename] = ACTIONS(5333), - [anon_sym_template] = ACTIONS(5333), - [anon_sym_operator] = ACTIONS(5333), - [anon_sym_friend] = ACTIONS(5333), - [anon_sym_public] = ACTIONS(5333), - [anon_sym_private] = ACTIONS(5333), - [anon_sym_protected] = ACTIONS(5333), - [anon_sym_using] = ACTIONS(5333), - [anon_sym_static_assert] = ACTIONS(5333), - }, - [2702] = { - [sym_identifier] = ACTIONS(5310), - [aux_sym_preproc_def_token1] = ACTIONS(5310), - [aux_sym_preproc_if_token1] = ACTIONS(5310), - [aux_sym_preproc_if_token2] = ACTIONS(5310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5310), - [aux_sym_preproc_else_token1] = ACTIONS(5310), - [aux_sym_preproc_elif_token1] = ACTIONS(5310), - [sym_preproc_directive] = ACTIONS(5310), - [anon_sym_LPAREN2] = ACTIONS(5312), - [anon_sym_TILDE] = ACTIONS(5312), - [anon_sym_STAR] = ACTIONS(5312), - [anon_sym_AMP_AMP] = ACTIONS(5312), - [anon_sym_AMP] = ACTIONS(5310), - [anon_sym___extension__] = ACTIONS(5310), - [anon_sym_typedef] = ACTIONS(5310), - [anon_sym_extern] = ACTIONS(5310), - [anon_sym___attribute__] = ACTIONS(5310), - [anon_sym_COLON_COLON] = ACTIONS(5312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5312), - [anon_sym___declspec] = ACTIONS(5310), - [anon_sym___based] = ACTIONS(5310), - [anon_sym_signed] = ACTIONS(5310), - [anon_sym_unsigned] = ACTIONS(5310), - [anon_sym_long] = ACTIONS(5310), - [anon_sym_short] = ACTIONS(5310), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_static] = ACTIONS(5310), - [anon_sym_register] = ACTIONS(5310), - [anon_sym_inline] = ACTIONS(5310), - [anon_sym___inline] = ACTIONS(5310), - [anon_sym___inline__] = ACTIONS(5310), - [anon_sym___forceinline] = ACTIONS(5310), - [anon_sym_thread_local] = ACTIONS(5310), - [anon_sym___thread] = ACTIONS(5310), - [anon_sym_const] = ACTIONS(5310), - [anon_sym_constexpr] = ACTIONS(5310), - [anon_sym_volatile] = ACTIONS(5310), - [anon_sym_restrict] = ACTIONS(5310), - [anon_sym___restrict__] = ACTIONS(5310), - [anon_sym__Atomic] = ACTIONS(5310), - [anon_sym__Noreturn] = ACTIONS(5310), - [anon_sym_noreturn] = ACTIONS(5310), - [anon_sym_mutable] = ACTIONS(5310), - [anon_sym_constinit] = ACTIONS(5310), - [anon_sym_consteval] = ACTIONS(5310), - [sym_primitive_type] = ACTIONS(5310), - [anon_sym_enum] = ACTIONS(5310), - [anon_sym_class] = ACTIONS(5310), - [anon_sym_struct] = ACTIONS(5310), - [anon_sym_union] = ACTIONS(5310), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5310), - [anon_sym_decltype] = ACTIONS(5310), - [anon_sym_virtual] = ACTIONS(5310), - [anon_sym_alignas] = ACTIONS(5310), - [anon_sym_explicit] = ACTIONS(5310), - [anon_sym_typename] = ACTIONS(5310), - [anon_sym_template] = ACTIONS(5310), - [anon_sym_operator] = ACTIONS(5310), - [anon_sym_friend] = ACTIONS(5310), - [anon_sym_public] = ACTIONS(5310), - [anon_sym_private] = ACTIONS(5310), - [anon_sym_protected] = ACTIONS(5310), - [anon_sym_using] = ACTIONS(5310), - [anon_sym_static_assert] = ACTIONS(5310), - }, - [2703] = { - [sym_identifier] = ACTIONS(5306), - [aux_sym_preproc_def_token1] = ACTIONS(5306), - [aux_sym_preproc_if_token1] = ACTIONS(5306), - [aux_sym_preproc_if_token2] = ACTIONS(5306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5306), - [aux_sym_preproc_else_token1] = ACTIONS(5306), - [aux_sym_preproc_elif_token1] = ACTIONS(5306), - [sym_preproc_directive] = ACTIONS(5306), - [anon_sym_LPAREN2] = ACTIONS(5308), - [anon_sym_TILDE] = ACTIONS(5308), - [anon_sym_STAR] = ACTIONS(5308), - [anon_sym_AMP_AMP] = ACTIONS(5308), - [anon_sym_AMP] = ACTIONS(5306), - [anon_sym___extension__] = ACTIONS(5306), - [anon_sym_typedef] = ACTIONS(5306), - [anon_sym_extern] = ACTIONS(5306), - [anon_sym___attribute__] = ACTIONS(5306), - [anon_sym_COLON_COLON] = ACTIONS(5308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5308), - [anon_sym___declspec] = ACTIONS(5306), - [anon_sym___based] = ACTIONS(5306), - [anon_sym_signed] = ACTIONS(5306), - [anon_sym_unsigned] = ACTIONS(5306), - [anon_sym_long] = ACTIONS(5306), - [anon_sym_short] = ACTIONS(5306), - [anon_sym_LBRACK] = ACTIONS(5306), - [anon_sym_static] = ACTIONS(5306), - [anon_sym_register] = ACTIONS(5306), - [anon_sym_inline] = ACTIONS(5306), - [anon_sym___inline] = ACTIONS(5306), - [anon_sym___inline__] = ACTIONS(5306), - [anon_sym___forceinline] = ACTIONS(5306), - [anon_sym_thread_local] = ACTIONS(5306), - [anon_sym___thread] = ACTIONS(5306), - [anon_sym_const] = ACTIONS(5306), - [anon_sym_constexpr] = ACTIONS(5306), - [anon_sym_volatile] = ACTIONS(5306), - [anon_sym_restrict] = ACTIONS(5306), - [anon_sym___restrict__] = ACTIONS(5306), - [anon_sym__Atomic] = ACTIONS(5306), - [anon_sym__Noreturn] = ACTIONS(5306), - [anon_sym_noreturn] = ACTIONS(5306), - [anon_sym_mutable] = ACTIONS(5306), - [anon_sym_constinit] = ACTIONS(5306), - [anon_sym_consteval] = ACTIONS(5306), - [sym_primitive_type] = ACTIONS(5306), - [anon_sym_enum] = ACTIONS(5306), - [anon_sym_class] = ACTIONS(5306), - [anon_sym_struct] = ACTIONS(5306), - [anon_sym_union] = ACTIONS(5306), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5306), - [anon_sym_decltype] = ACTIONS(5306), - [anon_sym_virtual] = ACTIONS(5306), - [anon_sym_alignas] = ACTIONS(5306), - [anon_sym_explicit] = ACTIONS(5306), - [anon_sym_typename] = ACTIONS(5306), - [anon_sym_template] = ACTIONS(5306), - [anon_sym_operator] = ACTIONS(5306), - [anon_sym_friend] = ACTIONS(5306), - [anon_sym_public] = ACTIONS(5306), - [anon_sym_private] = ACTIONS(5306), - [anon_sym_protected] = ACTIONS(5306), - [anon_sym_using] = ACTIONS(5306), - [anon_sym_static_assert] = ACTIONS(5306), - }, - [2704] = { - [sym_identifier] = ACTIONS(5302), - [aux_sym_preproc_def_token1] = ACTIONS(5302), - [aux_sym_preproc_if_token1] = ACTIONS(5302), - [aux_sym_preproc_if_token2] = ACTIONS(5302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5302), - [aux_sym_preproc_else_token1] = ACTIONS(5302), - [aux_sym_preproc_elif_token1] = ACTIONS(5302), - [sym_preproc_directive] = ACTIONS(5302), - [anon_sym_LPAREN2] = ACTIONS(5304), - [anon_sym_TILDE] = ACTIONS(5304), - [anon_sym_STAR] = ACTIONS(5304), - [anon_sym_AMP_AMP] = ACTIONS(5304), - [anon_sym_AMP] = ACTIONS(5302), - [anon_sym___extension__] = ACTIONS(5302), - [anon_sym_typedef] = ACTIONS(5302), - [anon_sym_extern] = ACTIONS(5302), - [anon_sym___attribute__] = ACTIONS(5302), - [anon_sym_COLON_COLON] = ACTIONS(5304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5304), - [anon_sym___declspec] = ACTIONS(5302), - [anon_sym___based] = ACTIONS(5302), - [anon_sym_signed] = ACTIONS(5302), - [anon_sym_unsigned] = ACTIONS(5302), - [anon_sym_long] = ACTIONS(5302), - [anon_sym_short] = ACTIONS(5302), - [anon_sym_LBRACK] = ACTIONS(5302), - [anon_sym_static] = ACTIONS(5302), - [anon_sym_register] = ACTIONS(5302), - [anon_sym_inline] = ACTIONS(5302), - [anon_sym___inline] = ACTIONS(5302), - [anon_sym___inline__] = ACTIONS(5302), - [anon_sym___forceinline] = ACTIONS(5302), - [anon_sym_thread_local] = ACTIONS(5302), - [anon_sym___thread] = ACTIONS(5302), - [anon_sym_const] = ACTIONS(5302), - [anon_sym_constexpr] = ACTIONS(5302), - [anon_sym_volatile] = ACTIONS(5302), - [anon_sym_restrict] = ACTIONS(5302), - [anon_sym___restrict__] = ACTIONS(5302), - [anon_sym__Atomic] = ACTIONS(5302), - [anon_sym__Noreturn] = ACTIONS(5302), - [anon_sym_noreturn] = ACTIONS(5302), - [anon_sym_mutable] = ACTIONS(5302), - [anon_sym_constinit] = ACTIONS(5302), - [anon_sym_consteval] = ACTIONS(5302), - [sym_primitive_type] = ACTIONS(5302), - [anon_sym_enum] = ACTIONS(5302), - [anon_sym_class] = ACTIONS(5302), - [anon_sym_struct] = ACTIONS(5302), - [anon_sym_union] = ACTIONS(5302), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5302), - [anon_sym_decltype] = ACTIONS(5302), - [anon_sym_virtual] = ACTIONS(5302), - [anon_sym_alignas] = ACTIONS(5302), - [anon_sym_explicit] = ACTIONS(5302), - [anon_sym_typename] = ACTIONS(5302), - [anon_sym_template] = ACTIONS(5302), - [anon_sym_operator] = ACTIONS(5302), - [anon_sym_friend] = ACTIONS(5302), - [anon_sym_public] = ACTIONS(5302), - [anon_sym_private] = ACTIONS(5302), - [anon_sym_protected] = ACTIONS(5302), - [anon_sym_using] = ACTIONS(5302), - [anon_sym_static_assert] = ACTIONS(5302), - }, - [2705] = { - [sym_identifier] = ACTIONS(5302), - [aux_sym_preproc_def_token1] = ACTIONS(5302), - [aux_sym_preproc_if_token1] = ACTIONS(5302), - [aux_sym_preproc_if_token2] = ACTIONS(5302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5302), - [aux_sym_preproc_else_token1] = ACTIONS(5302), - [aux_sym_preproc_elif_token1] = ACTIONS(5302), - [sym_preproc_directive] = ACTIONS(5302), - [anon_sym_LPAREN2] = ACTIONS(5304), - [anon_sym_TILDE] = ACTIONS(5304), - [anon_sym_STAR] = ACTIONS(5304), - [anon_sym_AMP_AMP] = ACTIONS(5304), - [anon_sym_AMP] = ACTIONS(5302), - [anon_sym___extension__] = ACTIONS(5302), - [anon_sym_typedef] = ACTIONS(5302), - [anon_sym_extern] = ACTIONS(5302), - [anon_sym___attribute__] = ACTIONS(5302), - [anon_sym_COLON_COLON] = ACTIONS(5304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5304), - [anon_sym___declspec] = ACTIONS(5302), - [anon_sym___based] = ACTIONS(5302), - [anon_sym_signed] = ACTIONS(5302), - [anon_sym_unsigned] = ACTIONS(5302), - [anon_sym_long] = ACTIONS(5302), - [anon_sym_short] = ACTIONS(5302), - [anon_sym_LBRACK] = ACTIONS(5302), - [anon_sym_static] = ACTIONS(5302), - [anon_sym_register] = ACTIONS(5302), - [anon_sym_inline] = ACTIONS(5302), - [anon_sym___inline] = ACTIONS(5302), - [anon_sym___inline__] = ACTIONS(5302), - [anon_sym___forceinline] = ACTIONS(5302), - [anon_sym_thread_local] = ACTIONS(5302), - [anon_sym___thread] = ACTIONS(5302), - [anon_sym_const] = ACTIONS(5302), - [anon_sym_constexpr] = ACTIONS(5302), - [anon_sym_volatile] = ACTIONS(5302), - [anon_sym_restrict] = ACTIONS(5302), - [anon_sym___restrict__] = ACTIONS(5302), - [anon_sym__Atomic] = ACTIONS(5302), - [anon_sym__Noreturn] = ACTIONS(5302), - [anon_sym_noreturn] = ACTIONS(5302), - [anon_sym_mutable] = ACTIONS(5302), - [anon_sym_constinit] = ACTIONS(5302), - [anon_sym_consteval] = ACTIONS(5302), - [sym_primitive_type] = ACTIONS(5302), - [anon_sym_enum] = ACTIONS(5302), - [anon_sym_class] = ACTIONS(5302), - [anon_sym_struct] = ACTIONS(5302), - [anon_sym_union] = ACTIONS(5302), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5302), - [anon_sym_decltype] = ACTIONS(5302), - [anon_sym_virtual] = ACTIONS(5302), - [anon_sym_alignas] = ACTIONS(5302), - [anon_sym_explicit] = ACTIONS(5302), - [anon_sym_typename] = ACTIONS(5302), - [anon_sym_template] = ACTIONS(5302), - [anon_sym_operator] = ACTIONS(5302), - [anon_sym_friend] = ACTIONS(5302), - [anon_sym_public] = ACTIONS(5302), - [anon_sym_private] = ACTIONS(5302), - [anon_sym_protected] = ACTIONS(5302), - [anon_sym_using] = ACTIONS(5302), - [anon_sym_static_assert] = ACTIONS(5302), - }, - [2706] = { - [sym_identifier] = ACTIONS(5298), - [aux_sym_preproc_def_token1] = ACTIONS(5298), - [aux_sym_preproc_if_token1] = ACTIONS(5298), - [aux_sym_preproc_if_token2] = ACTIONS(5298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5298), - [aux_sym_preproc_else_token1] = ACTIONS(5298), - [aux_sym_preproc_elif_token1] = ACTIONS(5298), - [sym_preproc_directive] = ACTIONS(5298), - [anon_sym_LPAREN2] = ACTIONS(5300), - [anon_sym_TILDE] = ACTIONS(5300), - [anon_sym_STAR] = ACTIONS(5300), - [anon_sym_AMP_AMP] = ACTIONS(5300), - [anon_sym_AMP] = ACTIONS(5298), - [anon_sym___extension__] = ACTIONS(5298), - [anon_sym_typedef] = ACTIONS(5298), - [anon_sym_extern] = ACTIONS(5298), - [anon_sym___attribute__] = ACTIONS(5298), - [anon_sym_COLON_COLON] = ACTIONS(5300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5300), - [anon_sym___declspec] = ACTIONS(5298), - [anon_sym___based] = ACTIONS(5298), - [anon_sym_signed] = ACTIONS(5298), - [anon_sym_unsigned] = ACTIONS(5298), - [anon_sym_long] = ACTIONS(5298), - [anon_sym_short] = ACTIONS(5298), - [anon_sym_LBRACK] = ACTIONS(5298), - [anon_sym_static] = ACTIONS(5298), - [anon_sym_register] = ACTIONS(5298), - [anon_sym_inline] = ACTIONS(5298), - [anon_sym___inline] = ACTIONS(5298), - [anon_sym___inline__] = ACTIONS(5298), - [anon_sym___forceinline] = ACTIONS(5298), - [anon_sym_thread_local] = ACTIONS(5298), - [anon_sym___thread] = ACTIONS(5298), - [anon_sym_const] = ACTIONS(5298), - [anon_sym_constexpr] = ACTIONS(5298), - [anon_sym_volatile] = ACTIONS(5298), - [anon_sym_restrict] = ACTIONS(5298), - [anon_sym___restrict__] = ACTIONS(5298), - [anon_sym__Atomic] = ACTIONS(5298), - [anon_sym__Noreturn] = ACTIONS(5298), - [anon_sym_noreturn] = ACTIONS(5298), - [anon_sym_mutable] = ACTIONS(5298), - [anon_sym_constinit] = ACTIONS(5298), - [anon_sym_consteval] = ACTIONS(5298), - [sym_primitive_type] = ACTIONS(5298), - [anon_sym_enum] = ACTIONS(5298), - [anon_sym_class] = ACTIONS(5298), - [anon_sym_struct] = ACTIONS(5298), - [anon_sym_union] = ACTIONS(5298), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5298), - [anon_sym_decltype] = ACTIONS(5298), - [anon_sym_virtual] = ACTIONS(5298), - [anon_sym_alignas] = ACTIONS(5298), - [anon_sym_explicit] = ACTIONS(5298), - [anon_sym_typename] = ACTIONS(5298), - [anon_sym_template] = ACTIONS(5298), - [anon_sym_operator] = ACTIONS(5298), - [anon_sym_friend] = ACTIONS(5298), - [anon_sym_public] = ACTIONS(5298), - [anon_sym_private] = ACTIONS(5298), - [anon_sym_protected] = ACTIONS(5298), - [anon_sym_using] = ACTIONS(5298), - [anon_sym_static_assert] = ACTIONS(5298), - }, - [2707] = { - [sym_identifier] = ACTIONS(5294), - [aux_sym_preproc_def_token1] = ACTIONS(5294), - [aux_sym_preproc_if_token1] = ACTIONS(5294), - [aux_sym_preproc_if_token2] = ACTIONS(5294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5294), - [aux_sym_preproc_else_token1] = ACTIONS(5294), - [aux_sym_preproc_elif_token1] = ACTIONS(5294), - [sym_preproc_directive] = ACTIONS(5294), - [anon_sym_LPAREN2] = ACTIONS(5296), - [anon_sym_TILDE] = ACTIONS(5296), - [anon_sym_STAR] = ACTIONS(5296), - [anon_sym_AMP_AMP] = ACTIONS(5296), - [anon_sym_AMP] = ACTIONS(5294), - [anon_sym___extension__] = ACTIONS(5294), - [anon_sym_typedef] = ACTIONS(5294), - [anon_sym_extern] = ACTIONS(5294), - [anon_sym___attribute__] = ACTIONS(5294), - [anon_sym_COLON_COLON] = ACTIONS(5296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5296), - [anon_sym___declspec] = ACTIONS(5294), - [anon_sym___based] = ACTIONS(5294), - [anon_sym_signed] = ACTIONS(5294), - [anon_sym_unsigned] = ACTIONS(5294), - [anon_sym_long] = ACTIONS(5294), - [anon_sym_short] = ACTIONS(5294), - [anon_sym_LBRACK] = ACTIONS(5294), - [anon_sym_static] = ACTIONS(5294), - [anon_sym_register] = ACTIONS(5294), - [anon_sym_inline] = ACTIONS(5294), - [anon_sym___inline] = ACTIONS(5294), - [anon_sym___inline__] = ACTIONS(5294), - [anon_sym___forceinline] = ACTIONS(5294), - [anon_sym_thread_local] = ACTIONS(5294), - [anon_sym___thread] = ACTIONS(5294), - [anon_sym_const] = ACTIONS(5294), - [anon_sym_constexpr] = ACTIONS(5294), - [anon_sym_volatile] = ACTIONS(5294), - [anon_sym_restrict] = ACTIONS(5294), - [anon_sym___restrict__] = ACTIONS(5294), - [anon_sym__Atomic] = ACTIONS(5294), - [anon_sym__Noreturn] = ACTIONS(5294), - [anon_sym_noreturn] = ACTIONS(5294), - [anon_sym_mutable] = ACTIONS(5294), - [anon_sym_constinit] = ACTIONS(5294), - [anon_sym_consteval] = ACTIONS(5294), - [sym_primitive_type] = ACTIONS(5294), - [anon_sym_enum] = ACTIONS(5294), - [anon_sym_class] = ACTIONS(5294), - [anon_sym_struct] = ACTIONS(5294), - [anon_sym_union] = ACTIONS(5294), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5294), - [anon_sym_decltype] = ACTIONS(5294), - [anon_sym_virtual] = ACTIONS(5294), - [anon_sym_alignas] = ACTIONS(5294), - [anon_sym_explicit] = ACTIONS(5294), - [anon_sym_typename] = ACTIONS(5294), - [anon_sym_template] = ACTIONS(5294), - [anon_sym_operator] = ACTIONS(5294), - [anon_sym_friend] = ACTIONS(5294), - [anon_sym_public] = ACTIONS(5294), - [anon_sym_private] = ACTIONS(5294), - [anon_sym_protected] = ACTIONS(5294), - [anon_sym_using] = ACTIONS(5294), - [anon_sym_static_assert] = ACTIONS(5294), - }, - [2708] = { - [sym_identifier] = ACTIONS(5290), - [aux_sym_preproc_def_token1] = ACTIONS(5290), - [aux_sym_preproc_if_token1] = ACTIONS(5290), - [aux_sym_preproc_if_token2] = ACTIONS(5290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5290), - [aux_sym_preproc_else_token1] = ACTIONS(5290), - [aux_sym_preproc_elif_token1] = ACTIONS(5290), - [sym_preproc_directive] = ACTIONS(5290), - [anon_sym_LPAREN2] = ACTIONS(5292), - [anon_sym_TILDE] = ACTIONS(5292), - [anon_sym_STAR] = ACTIONS(5292), - [anon_sym_AMP_AMP] = ACTIONS(5292), - [anon_sym_AMP] = ACTIONS(5290), - [anon_sym___extension__] = ACTIONS(5290), - [anon_sym_typedef] = ACTIONS(5290), - [anon_sym_extern] = ACTIONS(5290), - [anon_sym___attribute__] = ACTIONS(5290), - [anon_sym_COLON_COLON] = ACTIONS(5292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5292), - [anon_sym___declspec] = ACTIONS(5290), - [anon_sym___based] = ACTIONS(5290), - [anon_sym_signed] = ACTIONS(5290), - [anon_sym_unsigned] = ACTIONS(5290), - [anon_sym_long] = ACTIONS(5290), - [anon_sym_short] = ACTIONS(5290), - [anon_sym_LBRACK] = ACTIONS(5290), - [anon_sym_static] = ACTIONS(5290), - [anon_sym_register] = ACTIONS(5290), - [anon_sym_inline] = ACTIONS(5290), - [anon_sym___inline] = ACTIONS(5290), - [anon_sym___inline__] = ACTIONS(5290), - [anon_sym___forceinline] = ACTIONS(5290), - [anon_sym_thread_local] = ACTIONS(5290), - [anon_sym___thread] = ACTIONS(5290), - [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_mutable] = ACTIONS(5290), - [anon_sym_constinit] = ACTIONS(5290), - [anon_sym_consteval] = ACTIONS(5290), - [sym_primitive_type] = ACTIONS(5290), - [anon_sym_enum] = ACTIONS(5290), - [anon_sym_class] = ACTIONS(5290), - [anon_sym_struct] = ACTIONS(5290), - [anon_sym_union] = ACTIONS(5290), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5290), - [anon_sym_decltype] = ACTIONS(5290), - [anon_sym_virtual] = ACTIONS(5290), - [anon_sym_alignas] = ACTIONS(5290), - [anon_sym_explicit] = ACTIONS(5290), - [anon_sym_typename] = ACTIONS(5290), - [anon_sym_template] = ACTIONS(5290), - [anon_sym_operator] = ACTIONS(5290), - [anon_sym_friend] = ACTIONS(5290), - [anon_sym_public] = ACTIONS(5290), - [anon_sym_private] = ACTIONS(5290), - [anon_sym_protected] = ACTIONS(5290), - [anon_sym_using] = ACTIONS(5290), - [anon_sym_static_assert] = ACTIONS(5290), - }, - [2709] = { - [sym_identifier] = ACTIONS(3388), - [aux_sym_preproc_def_token1] = ACTIONS(3388), - [aux_sym_preproc_if_token1] = ACTIONS(3388), - [aux_sym_preproc_if_token2] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3388), - [aux_sym_preproc_else_token1] = ACTIONS(3388), - [aux_sym_preproc_elif_token1] = ACTIONS(3388), - [sym_preproc_directive] = ACTIONS(3388), - [anon_sym_LPAREN2] = ACTIONS(3390), - [anon_sym_TILDE] = ACTIONS(3390), - [anon_sym_STAR] = ACTIONS(3390), - [anon_sym_AMP_AMP] = ACTIONS(3390), - [anon_sym_AMP] = ACTIONS(3388), - [anon_sym___extension__] = ACTIONS(3388), - [anon_sym_typedef] = ACTIONS(3388), - [anon_sym_extern] = ACTIONS(3388), - [anon_sym___attribute__] = ACTIONS(3388), - [anon_sym_COLON_COLON] = ACTIONS(3390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3390), - [anon_sym___declspec] = ACTIONS(3388), - [anon_sym___based] = ACTIONS(3388), - [anon_sym_signed] = ACTIONS(3388), - [anon_sym_unsigned] = ACTIONS(3388), - [anon_sym_long] = ACTIONS(3388), - [anon_sym_short] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3388), - [anon_sym_static] = ACTIONS(3388), - [anon_sym_register] = ACTIONS(3388), - [anon_sym_inline] = ACTIONS(3388), - [anon_sym___inline] = ACTIONS(3388), - [anon_sym___inline__] = ACTIONS(3388), - [anon_sym___forceinline] = ACTIONS(3388), - [anon_sym_thread_local] = ACTIONS(3388), - [anon_sym___thread] = ACTIONS(3388), - [anon_sym_const] = ACTIONS(3388), - [anon_sym_constexpr] = ACTIONS(3388), - [anon_sym_volatile] = ACTIONS(3388), - [anon_sym_restrict] = ACTIONS(3388), - [anon_sym___restrict__] = ACTIONS(3388), - [anon_sym__Atomic] = ACTIONS(3388), - [anon_sym__Noreturn] = ACTIONS(3388), - [anon_sym_noreturn] = ACTIONS(3388), - [anon_sym_mutable] = ACTIONS(3388), - [anon_sym_constinit] = ACTIONS(3388), - [anon_sym_consteval] = ACTIONS(3388), - [sym_primitive_type] = ACTIONS(3388), - [anon_sym_enum] = ACTIONS(3388), - [anon_sym_class] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(3388), - [anon_sym_union] = ACTIONS(3388), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3388), - [anon_sym_decltype] = ACTIONS(3388), - [anon_sym_virtual] = ACTIONS(3388), - [anon_sym_alignas] = ACTIONS(3388), - [anon_sym_explicit] = ACTIONS(3388), - [anon_sym_typename] = ACTIONS(3388), - [anon_sym_template] = ACTIONS(3388), - [anon_sym_operator] = ACTIONS(3388), - [anon_sym_friend] = ACTIONS(3388), - [anon_sym_public] = ACTIONS(3388), - [anon_sym_private] = ACTIONS(3388), - [anon_sym_protected] = ACTIONS(3388), - [anon_sym_using] = ACTIONS(3388), - [anon_sym_static_assert] = ACTIONS(3388), - }, - [2710] = { - [sym_identifier] = ACTIONS(5272), - [aux_sym_preproc_def_token1] = ACTIONS(5272), - [aux_sym_preproc_if_token1] = ACTIONS(5272), - [aux_sym_preproc_if_token2] = ACTIONS(5272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5272), - [aux_sym_preproc_else_token1] = ACTIONS(5272), - [aux_sym_preproc_elif_token1] = ACTIONS(5272), - [sym_preproc_directive] = ACTIONS(5272), - [anon_sym_LPAREN2] = ACTIONS(5274), - [anon_sym_TILDE] = ACTIONS(5274), - [anon_sym_STAR] = ACTIONS(5274), - [anon_sym_AMP_AMP] = ACTIONS(5274), - [anon_sym_AMP] = ACTIONS(5272), - [anon_sym___extension__] = ACTIONS(5272), - [anon_sym_typedef] = ACTIONS(5272), - [anon_sym_extern] = ACTIONS(5272), - [anon_sym___attribute__] = ACTIONS(5272), - [anon_sym_COLON_COLON] = ACTIONS(5274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5274), - [anon_sym___declspec] = ACTIONS(5272), - [anon_sym___based] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(5272), - [anon_sym_unsigned] = ACTIONS(5272), - [anon_sym_long] = ACTIONS(5272), - [anon_sym_short] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5272), - [anon_sym_static] = ACTIONS(5272), - [anon_sym_register] = ACTIONS(5272), - [anon_sym_inline] = ACTIONS(5272), - [anon_sym___inline] = ACTIONS(5272), - [anon_sym___inline__] = ACTIONS(5272), - [anon_sym___forceinline] = ACTIONS(5272), - [anon_sym_thread_local] = ACTIONS(5272), - [anon_sym___thread] = ACTIONS(5272), - [anon_sym_const] = ACTIONS(5272), - [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_mutable] = ACTIONS(5272), - [anon_sym_constinit] = ACTIONS(5272), - [anon_sym_consteval] = ACTIONS(5272), - [sym_primitive_type] = ACTIONS(5272), - [anon_sym_enum] = ACTIONS(5272), - [anon_sym_class] = ACTIONS(5272), - [anon_sym_struct] = ACTIONS(5272), - [anon_sym_union] = ACTIONS(5272), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5272), - [anon_sym_decltype] = ACTIONS(5272), - [anon_sym_virtual] = ACTIONS(5272), - [anon_sym_alignas] = ACTIONS(5272), - [anon_sym_explicit] = ACTIONS(5272), - [anon_sym_typename] = ACTIONS(5272), - [anon_sym_template] = ACTIONS(5272), - [anon_sym_operator] = ACTIONS(5272), - [anon_sym_friend] = ACTIONS(5272), - [anon_sym_public] = ACTIONS(5272), - [anon_sym_private] = ACTIONS(5272), - [anon_sym_protected] = ACTIONS(5272), - [anon_sym_using] = ACTIONS(5272), - [anon_sym_static_assert] = ACTIONS(5272), - }, - [2711] = { - [sym_identifier] = ACTIONS(3380), - [aux_sym_preproc_def_token1] = ACTIONS(3380), - [aux_sym_preproc_if_token1] = ACTIONS(3380), - [aux_sym_preproc_if_token2] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), - [aux_sym_preproc_else_token1] = ACTIONS(3380), - [aux_sym_preproc_elif_token1] = ACTIONS(3380), - [sym_preproc_directive] = ACTIONS(3380), - [anon_sym_LPAREN2] = ACTIONS(3382), - [anon_sym_TILDE] = ACTIONS(3382), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_AMP_AMP] = ACTIONS(3382), - [anon_sym_AMP] = ACTIONS(3380), - [anon_sym___extension__] = ACTIONS(3380), - [anon_sym_typedef] = ACTIONS(3380), - [anon_sym_extern] = ACTIONS(3380), - [anon_sym___attribute__] = ACTIONS(3380), - [anon_sym_COLON_COLON] = ACTIONS(3382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), - [anon_sym___declspec] = ACTIONS(3380), - [anon_sym___based] = ACTIONS(3380), - [anon_sym_signed] = ACTIONS(3380), - [anon_sym_unsigned] = ACTIONS(3380), - [anon_sym_long] = ACTIONS(3380), - [anon_sym_short] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_register] = ACTIONS(3380), - [anon_sym_inline] = ACTIONS(3380), - [anon_sym___inline] = ACTIONS(3380), - [anon_sym___inline__] = ACTIONS(3380), - [anon_sym___forceinline] = ACTIONS(3380), - [anon_sym_thread_local] = ACTIONS(3380), - [anon_sym___thread] = ACTIONS(3380), - [anon_sym_const] = ACTIONS(3380), - [anon_sym_constexpr] = ACTIONS(3380), - [anon_sym_volatile] = ACTIONS(3380), - [anon_sym_restrict] = ACTIONS(3380), - [anon_sym___restrict__] = ACTIONS(3380), - [anon_sym__Atomic] = ACTIONS(3380), - [anon_sym__Noreturn] = ACTIONS(3380), - [anon_sym_noreturn] = ACTIONS(3380), - [anon_sym_mutable] = ACTIONS(3380), - [anon_sym_constinit] = ACTIONS(3380), - [anon_sym_consteval] = ACTIONS(3380), - [sym_primitive_type] = ACTIONS(3380), - [anon_sym_enum] = ACTIONS(3380), - [anon_sym_class] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(3380), - [anon_sym_union] = ACTIONS(3380), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3380), - [anon_sym_decltype] = ACTIONS(3380), - [anon_sym_virtual] = ACTIONS(3380), - [anon_sym_alignas] = ACTIONS(3380), - [anon_sym_explicit] = ACTIONS(3380), - [anon_sym_typename] = ACTIONS(3380), - [anon_sym_template] = ACTIONS(3380), - [anon_sym_operator] = ACTIONS(3380), - [anon_sym_friend] = ACTIONS(3380), - [anon_sym_public] = ACTIONS(3380), - [anon_sym_private] = ACTIONS(3380), - [anon_sym_protected] = ACTIONS(3380), - [anon_sym_using] = ACTIONS(3380), - [anon_sym_static_assert] = ACTIONS(3380), - }, - [2712] = { - [sym_identifier] = ACTIONS(5276), - [aux_sym_preproc_def_token1] = ACTIONS(5276), - [aux_sym_preproc_if_token1] = ACTIONS(5276), - [aux_sym_preproc_if_token2] = ACTIONS(5276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5276), - [aux_sym_preproc_else_token1] = ACTIONS(5276), - [aux_sym_preproc_elif_token1] = ACTIONS(5276), - [sym_preproc_directive] = ACTIONS(5276), - [anon_sym_LPAREN2] = ACTIONS(5278), - [anon_sym_TILDE] = ACTIONS(5278), - [anon_sym_STAR] = ACTIONS(5278), - [anon_sym_AMP_AMP] = ACTIONS(5278), - [anon_sym_AMP] = ACTIONS(5276), - [anon_sym___extension__] = ACTIONS(5276), - [anon_sym_typedef] = ACTIONS(5276), - [anon_sym_extern] = ACTIONS(5276), - [anon_sym___attribute__] = ACTIONS(5276), - [anon_sym_COLON_COLON] = ACTIONS(5278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5278), - [anon_sym___declspec] = ACTIONS(5276), - [anon_sym___based] = ACTIONS(5276), - [anon_sym_signed] = ACTIONS(5276), - [anon_sym_unsigned] = ACTIONS(5276), - [anon_sym_long] = ACTIONS(5276), - [anon_sym_short] = ACTIONS(5276), - [anon_sym_LBRACK] = ACTIONS(5276), - [anon_sym_static] = ACTIONS(5276), - [anon_sym_register] = ACTIONS(5276), - [anon_sym_inline] = ACTIONS(5276), - [anon_sym___inline] = ACTIONS(5276), - [anon_sym___inline__] = ACTIONS(5276), - [anon_sym___forceinline] = ACTIONS(5276), - [anon_sym_thread_local] = ACTIONS(5276), - [anon_sym___thread] = ACTIONS(5276), - [anon_sym_const] = ACTIONS(5276), - [anon_sym_constexpr] = ACTIONS(5276), - [anon_sym_volatile] = ACTIONS(5276), - [anon_sym_restrict] = ACTIONS(5276), - [anon_sym___restrict__] = ACTIONS(5276), - [anon_sym__Atomic] = ACTIONS(5276), - [anon_sym__Noreturn] = ACTIONS(5276), - [anon_sym_noreturn] = ACTIONS(5276), - [anon_sym_mutable] = ACTIONS(5276), - [anon_sym_constinit] = ACTIONS(5276), - [anon_sym_consteval] = ACTIONS(5276), - [sym_primitive_type] = ACTIONS(5276), - [anon_sym_enum] = ACTIONS(5276), - [anon_sym_class] = ACTIONS(5276), - [anon_sym_struct] = ACTIONS(5276), - [anon_sym_union] = ACTIONS(5276), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5276), - [anon_sym_decltype] = ACTIONS(5276), - [anon_sym_virtual] = ACTIONS(5276), - [anon_sym_alignas] = ACTIONS(5276), - [anon_sym_explicit] = ACTIONS(5276), - [anon_sym_typename] = ACTIONS(5276), - [anon_sym_template] = ACTIONS(5276), - [anon_sym_operator] = ACTIONS(5276), - [anon_sym_friend] = ACTIONS(5276), - [anon_sym_public] = ACTIONS(5276), - [anon_sym_private] = ACTIONS(5276), - [anon_sym_protected] = ACTIONS(5276), - [anon_sym_using] = ACTIONS(5276), - [anon_sym_static_assert] = ACTIONS(5276), - }, - [2713] = { - [sym_identifier] = ACTIONS(3328), - [aux_sym_preproc_def_token1] = ACTIONS(3328), - [aux_sym_preproc_if_token1] = ACTIONS(3328), - [aux_sym_preproc_if_token2] = ACTIONS(3328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3328), - [aux_sym_preproc_else_token1] = ACTIONS(3328), - [aux_sym_preproc_elif_token1] = ACTIONS(3328), - [sym_preproc_directive] = ACTIONS(3328), - [anon_sym_LPAREN2] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym___extension__] = ACTIONS(3328), - [anon_sym_typedef] = ACTIONS(3328), - [anon_sym_extern] = ACTIONS(3328), - [anon_sym___attribute__] = ACTIONS(3328), - [anon_sym_COLON_COLON] = ACTIONS(3330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3330), - [anon_sym___declspec] = ACTIONS(3328), - [anon_sym___based] = ACTIONS(3328), - [anon_sym_signed] = ACTIONS(3328), - [anon_sym_unsigned] = ACTIONS(3328), - [anon_sym_long] = ACTIONS(3328), - [anon_sym_short] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_register] = ACTIONS(3328), - [anon_sym_inline] = ACTIONS(3328), - [anon_sym___inline] = ACTIONS(3328), - [anon_sym___inline__] = ACTIONS(3328), - [anon_sym___forceinline] = ACTIONS(3328), - [anon_sym_thread_local] = ACTIONS(3328), - [anon_sym___thread] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_constexpr] = ACTIONS(3328), - [anon_sym_volatile] = ACTIONS(3328), - [anon_sym_restrict] = ACTIONS(3328), - [anon_sym___restrict__] = ACTIONS(3328), - [anon_sym__Atomic] = ACTIONS(3328), - [anon_sym__Noreturn] = ACTIONS(3328), - [anon_sym_noreturn] = ACTIONS(3328), - [anon_sym_mutable] = ACTIONS(3328), - [anon_sym_constinit] = ACTIONS(3328), - [anon_sym_consteval] = ACTIONS(3328), - [sym_primitive_type] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_struct] = ACTIONS(3328), - [anon_sym_union] = ACTIONS(3328), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3328), - [anon_sym_decltype] = ACTIONS(3328), - [anon_sym_virtual] = ACTIONS(3328), - [anon_sym_alignas] = ACTIONS(3328), - [anon_sym_explicit] = ACTIONS(3328), - [anon_sym_typename] = ACTIONS(3328), - [anon_sym_template] = ACTIONS(3328), - [anon_sym_operator] = ACTIONS(3328), - [anon_sym_friend] = ACTIONS(3328), - [anon_sym_public] = ACTIONS(3328), - [anon_sym_private] = ACTIONS(3328), - [anon_sym_protected] = ACTIONS(3328), - [anon_sym_using] = ACTIONS(3328), - [anon_sym_static_assert] = ACTIONS(3328), - }, - [2714] = { - [sym_identifier] = ACTIONS(3370), - [aux_sym_preproc_def_token1] = ACTIONS(3370), - [aux_sym_preproc_if_token1] = ACTIONS(3370), - [aux_sym_preproc_if_token2] = ACTIONS(3370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3370), - [aux_sym_preproc_else_token1] = ACTIONS(3370), - [aux_sym_preproc_elif_token1] = ACTIONS(3370), - [sym_preproc_directive] = ACTIONS(3370), - [anon_sym_LPAREN2] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(3372), - [anon_sym_STAR] = ACTIONS(3372), - [anon_sym_AMP_AMP] = ACTIONS(3372), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym___extension__] = ACTIONS(3370), - [anon_sym_typedef] = ACTIONS(3370), - [anon_sym_extern] = ACTIONS(3370), - [anon_sym___attribute__] = ACTIONS(3370), - [anon_sym_COLON_COLON] = ACTIONS(3372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3372), - [anon_sym___declspec] = ACTIONS(3370), - [anon_sym___based] = ACTIONS(3370), - [anon_sym_signed] = ACTIONS(3370), - [anon_sym_unsigned] = ACTIONS(3370), - [anon_sym_long] = ACTIONS(3370), - [anon_sym_short] = ACTIONS(3370), - [anon_sym_LBRACK] = ACTIONS(3370), - [anon_sym_static] = ACTIONS(3370), - [anon_sym_register] = ACTIONS(3370), - [anon_sym_inline] = ACTIONS(3370), - [anon_sym___inline] = ACTIONS(3370), - [anon_sym___inline__] = ACTIONS(3370), - [anon_sym___forceinline] = ACTIONS(3370), - [anon_sym_thread_local] = ACTIONS(3370), - [anon_sym___thread] = ACTIONS(3370), - [anon_sym_const] = ACTIONS(3370), - [anon_sym_constexpr] = ACTIONS(3370), - [anon_sym_volatile] = ACTIONS(3370), - [anon_sym_restrict] = ACTIONS(3370), - [anon_sym___restrict__] = ACTIONS(3370), - [anon_sym__Atomic] = ACTIONS(3370), - [anon_sym__Noreturn] = ACTIONS(3370), - [anon_sym_noreturn] = ACTIONS(3370), - [anon_sym_mutable] = ACTIONS(3370), - [anon_sym_constinit] = ACTIONS(3370), - [anon_sym_consteval] = ACTIONS(3370), - [sym_primitive_type] = ACTIONS(3370), - [anon_sym_enum] = ACTIONS(3370), - [anon_sym_class] = ACTIONS(3370), - [anon_sym_struct] = ACTIONS(3370), - [anon_sym_union] = ACTIONS(3370), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3370), - [anon_sym_virtual] = ACTIONS(3370), - [anon_sym_alignas] = ACTIONS(3370), - [anon_sym_explicit] = ACTIONS(3370), - [anon_sym_typename] = ACTIONS(3370), - [anon_sym_template] = ACTIONS(3370), - [anon_sym_operator] = ACTIONS(3370), - [anon_sym_friend] = ACTIONS(3370), - [anon_sym_public] = ACTIONS(3370), - [anon_sym_private] = ACTIONS(3370), - [anon_sym_protected] = ACTIONS(3370), - [anon_sym_using] = ACTIONS(3370), - [anon_sym_static_assert] = ACTIONS(3370), - }, - [2715] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2681), - [sym_identifier] = ACTIONS(5644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5351), - [anon_sym_RPAREN] = ACTIONS(5351), - [anon_sym_LPAREN2] = ACTIONS(5351), - [anon_sym_DASH] = ACTIONS(5353), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5353), - [anon_sym_SLASH] = ACTIONS(5353), - [anon_sym_PERCENT] = ACTIONS(5353), - [anon_sym_PIPE_PIPE] = ACTIONS(5351), - [anon_sym_AMP_AMP] = ACTIONS(5351), - [anon_sym_PIPE] = ACTIONS(5353), - [anon_sym_CARET] = ACTIONS(5353), - [anon_sym_AMP] = ACTIONS(5353), - [anon_sym_EQ_EQ] = ACTIONS(5351), - [anon_sym_BANG_EQ] = ACTIONS(5351), - [anon_sym_GT] = ACTIONS(5353), - [anon_sym_GT_EQ] = ACTIONS(5351), - [anon_sym_LT_EQ] = ACTIONS(5353), - [anon_sym_LT] = ACTIONS(5353), - [anon_sym_LT_LT] = ACTIONS(5353), - [anon_sym_GT_GT] = ACTIONS(5353), - [anon_sym_SEMI] = ACTIONS(5351), - [anon_sym___attribute__] = ACTIONS(5353), - [anon_sym_LBRACE] = ACTIONS(5351), - [anon_sym_RBRACE] = ACTIONS(5351), - [anon_sym_signed] = ACTIONS(5646), - [anon_sym_unsigned] = ACTIONS(5646), - [anon_sym_long] = ACTIONS(5646), - [anon_sym_short] = ACTIONS(5646), - [anon_sym_LBRACK] = ACTIONS(5351), - [anon_sym_RBRACK] = ACTIONS(5351), - [anon_sym_EQ] = ACTIONS(5353), - [sym_primitive_type] = ACTIONS(5648), - [anon_sym_COLON] = ACTIONS(5351), - [anon_sym_QMARK] = ACTIONS(5351), - [anon_sym_STAR_EQ] = ACTIONS(5351), - [anon_sym_SLASH_EQ] = ACTIONS(5351), - [anon_sym_PERCENT_EQ] = ACTIONS(5351), - [anon_sym_PLUS_EQ] = ACTIONS(5351), - [anon_sym_DASH_EQ] = ACTIONS(5351), - [anon_sym_LT_LT_EQ] = ACTIONS(5351), - [anon_sym_GT_GT_EQ] = ACTIONS(5351), - [anon_sym_AMP_EQ] = ACTIONS(5351), - [anon_sym_CARET_EQ] = ACTIONS(5351), - [anon_sym_PIPE_EQ] = ACTIONS(5351), - [anon_sym_and_eq] = ACTIONS(5353), - [anon_sym_or_eq] = ACTIONS(5353), - [anon_sym_xor_eq] = ACTIONS(5353), - [anon_sym_LT_EQ_GT] = ACTIONS(5351), - [anon_sym_or] = ACTIONS(5353), - [anon_sym_and] = ACTIONS(5353), - [anon_sym_bitor] = ACTIONS(5353), - [anon_sym_xor] = ACTIONS(5353), - [anon_sym_bitand] = ACTIONS(5353), - [anon_sym_not_eq] = ACTIONS(5353), - [anon_sym_DASH_DASH] = ACTIONS(5351), - [anon_sym_PLUS_PLUS] = ACTIONS(5351), - [anon_sym_DOT] = ACTIONS(5353), - [anon_sym_DOT_STAR] = ACTIONS(5351), - [anon_sym_DASH_GT] = ACTIONS(5351), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5353), - [anon_sym_decltype] = ACTIONS(5353), - }, - [2716] = { - [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), - [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___extension__] = ACTIONS(3304), - [anon_sym_typedef] = ACTIONS(3304), - [anon_sym_extern] = ACTIONS(3304), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = 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_virtual] = ACTIONS(3304), - [anon_sym_alignas] = ACTIONS(3304), - [anon_sym_explicit] = ACTIONS(3304), - [anon_sym_typename] = ACTIONS(3304), - [anon_sym_template] = ACTIONS(3304), - [anon_sym_operator] = ACTIONS(3304), - [anon_sym_friend] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_protected] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_static_assert] = ACTIONS(3304), - }, - [2717] = { - [sym_identifier] = ACTIONS(5224), - [aux_sym_preproc_def_token1] = ACTIONS(5224), - [aux_sym_preproc_if_token1] = ACTIONS(5224), - [aux_sym_preproc_if_token2] = ACTIONS(5224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5224), - [aux_sym_preproc_else_token1] = ACTIONS(5224), - [aux_sym_preproc_elif_token1] = ACTIONS(5224), - [sym_preproc_directive] = ACTIONS(5224), - [anon_sym_LPAREN2] = ACTIONS(5226), - [anon_sym_TILDE] = ACTIONS(5226), - [anon_sym_STAR] = ACTIONS(5226), - [anon_sym_AMP_AMP] = ACTIONS(5226), - [anon_sym_AMP] = ACTIONS(5224), - [anon_sym___extension__] = ACTIONS(5224), - [anon_sym_typedef] = ACTIONS(5224), - [anon_sym_extern] = ACTIONS(5224), - [anon_sym___attribute__] = ACTIONS(5224), - [anon_sym_COLON_COLON] = ACTIONS(5226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5226), - [anon_sym___declspec] = ACTIONS(5224), - [anon_sym___based] = ACTIONS(5224), - [anon_sym_signed] = ACTIONS(5224), - [anon_sym_unsigned] = ACTIONS(5224), - [anon_sym_long] = ACTIONS(5224), - [anon_sym_short] = ACTIONS(5224), - [anon_sym_LBRACK] = ACTIONS(5224), - [anon_sym_static] = ACTIONS(5224), - [anon_sym_register] = ACTIONS(5224), - [anon_sym_inline] = ACTIONS(5224), - [anon_sym___inline] = ACTIONS(5224), - [anon_sym___inline__] = ACTIONS(5224), - [anon_sym___forceinline] = ACTIONS(5224), - [anon_sym_thread_local] = ACTIONS(5224), - [anon_sym___thread] = ACTIONS(5224), - [anon_sym_const] = ACTIONS(5224), - [anon_sym_constexpr] = ACTIONS(5224), - [anon_sym_volatile] = ACTIONS(5224), - [anon_sym_restrict] = ACTIONS(5224), - [anon_sym___restrict__] = ACTIONS(5224), - [anon_sym__Atomic] = ACTIONS(5224), - [anon_sym__Noreturn] = ACTIONS(5224), - [anon_sym_noreturn] = ACTIONS(5224), - [anon_sym_mutable] = ACTIONS(5224), - [anon_sym_constinit] = ACTIONS(5224), - [anon_sym_consteval] = ACTIONS(5224), - [sym_primitive_type] = ACTIONS(5224), - [anon_sym_enum] = ACTIONS(5224), - [anon_sym_class] = ACTIONS(5224), - [anon_sym_struct] = ACTIONS(5224), - [anon_sym_union] = ACTIONS(5224), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5224), - [anon_sym_decltype] = ACTIONS(5224), - [anon_sym_virtual] = ACTIONS(5224), - [anon_sym_alignas] = ACTIONS(5224), - [anon_sym_explicit] = ACTIONS(5224), - [anon_sym_typename] = ACTIONS(5224), - [anon_sym_template] = ACTIONS(5224), - [anon_sym_operator] = ACTIONS(5224), - [anon_sym_friend] = ACTIONS(5224), - [anon_sym_public] = ACTIONS(5224), - [anon_sym_private] = ACTIONS(5224), - [anon_sym_protected] = ACTIONS(5224), - [anon_sym_using] = ACTIONS(5224), - [anon_sym_static_assert] = ACTIONS(5224), - }, - [2718] = { - [sym_string_literal] = STATE(2672), - [sym_template_argument_list] = STATE(3906), - [sym_raw_string_literal] = STATE(2672), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5650), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4286), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_and_eq] = ACTIONS(4278), - [anon_sym_or_eq] = ACTIONS(4278), - [anon_sym_xor_eq] = ACTIONS(4278), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(5626), - [anon_sym_u_DQUOTE] = ACTIONS(5626), - [anon_sym_U_DQUOTE] = ACTIONS(5626), - [anon_sym_u8_DQUOTE] = ACTIONS(5626), - [anon_sym_DQUOTE] = ACTIONS(5626), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(4278), - [anon_sym_R_DQUOTE] = ACTIONS(5628), - [anon_sym_LR_DQUOTE] = ACTIONS(5628), - [anon_sym_uR_DQUOTE] = ACTIONS(5628), - [anon_sym_UR_DQUOTE] = ACTIONS(5628), - [anon_sym_u8R_DQUOTE] = ACTIONS(5628), - }, - [2719] = { - [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), - [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___extension__] = ACTIONS(3304), - [anon_sym_typedef] = ACTIONS(3304), - [anon_sym_extern] = ACTIONS(3304), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = 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_virtual] = ACTIONS(3304), - [anon_sym_alignas] = ACTIONS(3304), - [anon_sym_explicit] = ACTIONS(3304), - [anon_sym_typename] = ACTIONS(3304), - [anon_sym_template] = ACTIONS(3304), - [anon_sym_operator] = ACTIONS(3304), - [anon_sym_friend] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_protected] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_static_assert] = ACTIONS(3304), - }, - [2720] = { - [sym_identifier] = ACTIONS(3298), - [aux_sym_preproc_def_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token2] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3298), - [aux_sym_preproc_else_token1] = ACTIONS(3298), - [aux_sym_preproc_elif_token1] = ACTIONS(3298), - [sym_preproc_directive] = ACTIONS(3298), - [anon_sym_LPAREN2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_STAR] = ACTIONS(3300), - [anon_sym_AMP_AMP] = ACTIONS(3300), - [anon_sym_AMP] = ACTIONS(3298), - [anon_sym___extension__] = ACTIONS(3298), - [anon_sym_typedef] = ACTIONS(3298), - [anon_sym_extern] = ACTIONS(3298), - [anon_sym___attribute__] = ACTIONS(3298), - [anon_sym_COLON_COLON] = ACTIONS(3300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3300), - [anon_sym___declspec] = ACTIONS(3298), - [anon_sym___based] = ACTIONS(3298), - [anon_sym_signed] = ACTIONS(3298), - [anon_sym_unsigned] = ACTIONS(3298), - [anon_sym_long] = ACTIONS(3298), - [anon_sym_short] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3298), - [anon_sym_register] = ACTIONS(3298), - [anon_sym_inline] = ACTIONS(3298), - [anon_sym___inline] = ACTIONS(3298), - [anon_sym___inline__] = ACTIONS(3298), - [anon_sym___forceinline] = ACTIONS(3298), - [anon_sym_thread_local] = ACTIONS(3298), - [anon_sym___thread] = ACTIONS(3298), - [anon_sym_const] = ACTIONS(3298), - [anon_sym_constexpr] = ACTIONS(3298), - [anon_sym_volatile] = ACTIONS(3298), - [anon_sym_restrict] = ACTIONS(3298), - [anon_sym___restrict__] = ACTIONS(3298), - [anon_sym__Atomic] = ACTIONS(3298), - [anon_sym__Noreturn] = ACTIONS(3298), - [anon_sym_noreturn] = ACTIONS(3298), - [anon_sym_mutable] = ACTIONS(3298), - [anon_sym_constinit] = ACTIONS(3298), - [anon_sym_consteval] = ACTIONS(3298), - [sym_primitive_type] = ACTIONS(3298), - [anon_sym_enum] = ACTIONS(3298), - [anon_sym_class] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3298), - [anon_sym_union] = ACTIONS(3298), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3298), - [anon_sym_decltype] = ACTIONS(3298), - [anon_sym_virtual] = ACTIONS(3298), - [anon_sym_alignas] = ACTIONS(3298), - [anon_sym_explicit] = ACTIONS(3298), - [anon_sym_typename] = ACTIONS(3298), - [anon_sym_template] = ACTIONS(3298), - [anon_sym_operator] = ACTIONS(3298), - [anon_sym_friend] = ACTIONS(3298), - [anon_sym_public] = ACTIONS(3298), - [anon_sym_private] = ACTIONS(3298), - [anon_sym_protected] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3298), - [anon_sym_static_assert] = ACTIONS(3298), - }, - [2721] = { - [sym_identifier] = ACTIONS(3294), - [aux_sym_preproc_def_token1] = ACTIONS(3294), - [aux_sym_preproc_if_token1] = ACTIONS(3294), - [aux_sym_preproc_if_token2] = ACTIONS(3294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), - [aux_sym_preproc_else_token1] = ACTIONS(3294), - [aux_sym_preproc_elif_token1] = ACTIONS(3294), - [sym_preproc_directive] = ACTIONS(3294), - [anon_sym_LPAREN2] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3294), - [anon_sym___extension__] = ACTIONS(3294), - [anon_sym_typedef] = ACTIONS(3294), - [anon_sym_extern] = ACTIONS(3294), - [anon_sym___attribute__] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), - [anon_sym___declspec] = ACTIONS(3294), - [anon_sym___based] = ACTIONS(3294), - [anon_sym_signed] = ACTIONS(3294), - [anon_sym_unsigned] = ACTIONS(3294), - [anon_sym_long] = ACTIONS(3294), - [anon_sym_short] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_register] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym___inline] = ACTIONS(3294), - [anon_sym___inline__] = ACTIONS(3294), - [anon_sym___forceinline] = ACTIONS(3294), - [anon_sym_thread_local] = ACTIONS(3294), - [anon_sym___thread] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_constexpr] = ACTIONS(3294), - [anon_sym_volatile] = ACTIONS(3294), - [anon_sym_restrict] = ACTIONS(3294), - [anon_sym___restrict__] = ACTIONS(3294), - [anon_sym__Atomic] = ACTIONS(3294), - [anon_sym__Noreturn] = ACTIONS(3294), - [anon_sym_noreturn] = ACTIONS(3294), - [anon_sym_mutable] = ACTIONS(3294), - [anon_sym_constinit] = ACTIONS(3294), - [anon_sym_consteval] = ACTIONS(3294), - [sym_primitive_type] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), - [anon_sym_class] = ACTIONS(3294), - [anon_sym_struct] = ACTIONS(3294), - [anon_sym_union] = ACTIONS(3294), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3294), - [anon_sym_decltype] = ACTIONS(3294), - [anon_sym_virtual] = ACTIONS(3294), - [anon_sym_alignas] = ACTIONS(3294), - [anon_sym_explicit] = ACTIONS(3294), - [anon_sym_typename] = ACTIONS(3294), - [anon_sym_template] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_friend] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_using] = ACTIONS(3294), - [anon_sym_static_assert] = ACTIONS(3294), - }, - [2722] = { - [sym_identifier] = ACTIONS(3290), - [aux_sym_preproc_def_token1] = ACTIONS(3290), - [aux_sym_preproc_if_token1] = ACTIONS(3290), - [aux_sym_preproc_if_token2] = ACTIONS(3290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3290), - [aux_sym_preproc_else_token1] = ACTIONS(3290), - [aux_sym_preproc_elif_token1] = ACTIONS(3290), - [sym_preproc_directive] = ACTIONS(3290), - [anon_sym_LPAREN2] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_AMP] = ACTIONS(3290), - [anon_sym___extension__] = ACTIONS(3290), - [anon_sym_typedef] = ACTIONS(3290), - [anon_sym_extern] = ACTIONS(3290), - [anon_sym___attribute__] = ACTIONS(3290), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3292), - [anon_sym___declspec] = ACTIONS(3290), - [anon_sym___based] = ACTIONS(3290), - [anon_sym_signed] = ACTIONS(3290), - [anon_sym_unsigned] = ACTIONS(3290), - [anon_sym_long] = ACTIONS(3290), - [anon_sym_short] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_static] = ACTIONS(3290), - [anon_sym_register] = ACTIONS(3290), - [anon_sym_inline] = ACTIONS(3290), - [anon_sym___inline] = ACTIONS(3290), - [anon_sym___inline__] = ACTIONS(3290), - [anon_sym___forceinline] = ACTIONS(3290), - [anon_sym_thread_local] = ACTIONS(3290), - [anon_sym___thread] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_constexpr] = ACTIONS(3290), - [anon_sym_volatile] = ACTIONS(3290), - [anon_sym_restrict] = ACTIONS(3290), - [anon_sym___restrict__] = ACTIONS(3290), - [anon_sym__Atomic] = ACTIONS(3290), - [anon_sym__Noreturn] = ACTIONS(3290), - [anon_sym_noreturn] = ACTIONS(3290), - [anon_sym_mutable] = ACTIONS(3290), - [anon_sym_constinit] = ACTIONS(3290), - [anon_sym_consteval] = ACTIONS(3290), - [sym_primitive_type] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), - [anon_sym_class] = ACTIONS(3290), - [anon_sym_struct] = ACTIONS(3290), - [anon_sym_union] = ACTIONS(3290), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3290), - [anon_sym_decltype] = ACTIONS(3290), - [anon_sym_virtual] = ACTIONS(3290), - [anon_sym_alignas] = ACTIONS(3290), - [anon_sym_explicit] = ACTIONS(3290), - [anon_sym_typename] = ACTIONS(3290), - [anon_sym_template] = ACTIONS(3290), - [anon_sym_operator] = ACTIONS(3290), - [anon_sym_friend] = ACTIONS(3290), - [anon_sym_public] = ACTIONS(3290), - [anon_sym_private] = ACTIONS(3290), - [anon_sym_protected] = ACTIONS(3290), - [anon_sym_using] = ACTIONS(3290), - [anon_sym_static_assert] = ACTIONS(3290), - }, - [2723] = { - [sym_identifier] = ACTIONS(3308), - [aux_sym_preproc_def_token1] = ACTIONS(3308), - [aux_sym_preproc_if_token1] = ACTIONS(3308), - [aux_sym_preproc_if_token2] = ACTIONS(3308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3308), - [aux_sym_preproc_else_token1] = ACTIONS(3308), - [aux_sym_preproc_elif_token1] = ACTIONS(3308), - [sym_preproc_directive] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3310), - [anon_sym_STAR] = ACTIONS(3310), - [anon_sym_AMP_AMP] = ACTIONS(3310), - [anon_sym_AMP] = ACTIONS(3308), - [anon_sym___extension__] = ACTIONS(3308), - [anon_sym_typedef] = ACTIONS(3308), - [anon_sym_extern] = ACTIONS(3308), - [anon_sym___attribute__] = ACTIONS(3308), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3310), - [anon_sym___declspec] = ACTIONS(3308), - [anon_sym___based] = ACTIONS(3308), - [anon_sym_signed] = ACTIONS(3308), - [anon_sym_unsigned] = ACTIONS(3308), - [anon_sym_long] = ACTIONS(3308), - [anon_sym_short] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3308), - [anon_sym_static] = ACTIONS(3308), - [anon_sym_register] = ACTIONS(3308), - [anon_sym_inline] = ACTIONS(3308), - [anon_sym___inline] = ACTIONS(3308), - [anon_sym___inline__] = ACTIONS(3308), - [anon_sym___forceinline] = ACTIONS(3308), - [anon_sym_thread_local] = ACTIONS(3308), - [anon_sym___thread] = ACTIONS(3308), - [anon_sym_const] = ACTIONS(3308), - [anon_sym_constexpr] = ACTIONS(3308), - [anon_sym_volatile] = ACTIONS(3308), - [anon_sym_restrict] = ACTIONS(3308), - [anon_sym___restrict__] = ACTIONS(3308), - [anon_sym__Atomic] = ACTIONS(3308), - [anon_sym__Noreturn] = ACTIONS(3308), - [anon_sym_noreturn] = ACTIONS(3308), - [anon_sym_mutable] = ACTIONS(3308), - [anon_sym_constinit] = ACTIONS(3308), - [anon_sym_consteval] = ACTIONS(3308), - [sym_primitive_type] = ACTIONS(3308), - [anon_sym_enum] = ACTIONS(3308), - [anon_sym_class] = ACTIONS(3308), - [anon_sym_struct] = ACTIONS(3308), - [anon_sym_union] = ACTIONS(3308), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3308), - [anon_sym_decltype] = ACTIONS(3308), - [anon_sym_virtual] = ACTIONS(3308), - [anon_sym_alignas] = ACTIONS(3308), - [anon_sym_explicit] = ACTIONS(3308), - [anon_sym_typename] = ACTIONS(3308), - [anon_sym_template] = ACTIONS(3308), - [anon_sym_operator] = ACTIONS(3308), - [anon_sym_friend] = ACTIONS(3308), - [anon_sym_public] = ACTIONS(3308), - [anon_sym_private] = ACTIONS(3308), - [anon_sym_protected] = ACTIONS(3308), - [anon_sym_using] = ACTIONS(3308), - [anon_sym_static_assert] = ACTIONS(3308), - }, - [2724] = { - [sym__declaration_modifiers] = STATE(4310), - [sym_attribute_specifier] = STATE(4310), - [sym_attribute_declaration] = STATE(4310), - [sym_ms_declspec_modifier] = STATE(4310), - [sym_storage_class_specifier] = STATE(4310), - [sym_type_qualifier] = STATE(4310), - [sym__type_specifier] = STATE(3497), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4310), - [sym_alignas_specifier] = STATE(4310), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7286), - [sym_qualified_type_identifier] = STATE(4533), - [aux_sym__declaration_specifiers_repeat1] = STATE(4310), - [aux_sym_sized_type_specifier_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(4938), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1378), - }, - [2725] = { - [sym_identifier] = ACTIONS(3278), - [aux_sym_preproc_def_token1] = ACTIONS(3278), - [aux_sym_preproc_if_token1] = ACTIONS(3278), - [aux_sym_preproc_if_token2] = ACTIONS(3278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3278), - [aux_sym_preproc_else_token1] = ACTIONS(3278), - [aux_sym_preproc_elif_token1] = ACTIONS(3278), - [sym_preproc_directive] = ACTIONS(3278), - [anon_sym_LPAREN2] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3280), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_AMP] = ACTIONS(3278), - [anon_sym___extension__] = ACTIONS(3278), - [anon_sym_typedef] = ACTIONS(3278), - [anon_sym_extern] = ACTIONS(3278), - [anon_sym___attribute__] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3280), - [anon_sym___declspec] = ACTIONS(3278), - [anon_sym___based] = ACTIONS(3278), - [anon_sym_signed] = ACTIONS(3278), - [anon_sym_unsigned] = ACTIONS(3278), - [anon_sym_long] = ACTIONS(3278), - [anon_sym_short] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3278), - [anon_sym_static] = ACTIONS(3278), - [anon_sym_register] = ACTIONS(3278), - [anon_sym_inline] = ACTIONS(3278), - [anon_sym___inline] = ACTIONS(3278), - [anon_sym___inline__] = ACTIONS(3278), - [anon_sym___forceinline] = ACTIONS(3278), - [anon_sym_thread_local] = ACTIONS(3278), - [anon_sym___thread] = ACTIONS(3278), - [anon_sym_const] = ACTIONS(3278), - [anon_sym_constexpr] = ACTIONS(3278), - [anon_sym_volatile] = ACTIONS(3278), - [anon_sym_restrict] = ACTIONS(3278), - [anon_sym___restrict__] = ACTIONS(3278), - [anon_sym__Atomic] = ACTIONS(3278), - [anon_sym__Noreturn] = ACTIONS(3278), - [anon_sym_noreturn] = ACTIONS(3278), - [anon_sym_mutable] = ACTIONS(3278), - [anon_sym_constinit] = ACTIONS(3278), - [anon_sym_consteval] = ACTIONS(3278), - [sym_primitive_type] = ACTIONS(3278), - [anon_sym_enum] = ACTIONS(3278), - [anon_sym_class] = ACTIONS(3278), - [anon_sym_struct] = ACTIONS(3278), - [anon_sym_union] = ACTIONS(3278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3278), - [anon_sym_decltype] = ACTIONS(3278), - [anon_sym_virtual] = ACTIONS(3278), - [anon_sym_alignas] = ACTIONS(3278), - [anon_sym_explicit] = ACTIONS(3278), - [anon_sym_typename] = ACTIONS(3278), - [anon_sym_template] = ACTIONS(3278), - [anon_sym_operator] = ACTIONS(3278), - [anon_sym_friend] = ACTIONS(3278), - [anon_sym_public] = ACTIONS(3278), - [anon_sym_private] = ACTIONS(3278), - [anon_sym_protected] = ACTIONS(3278), - [anon_sym_using] = ACTIONS(3278), - [anon_sym_static_assert] = ACTIONS(3278), - }, - [2726] = { - [sym_identifier] = ACTIONS(3274), - [aux_sym_preproc_def_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token2] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), - [aux_sym_preproc_else_token1] = ACTIONS(3274), - [aux_sym_preproc_elif_token1] = ACTIONS(3274), - [sym_preproc_directive] = ACTIONS(3274), - [anon_sym_LPAREN2] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_AMP] = ACTIONS(3274), - [anon_sym___extension__] = ACTIONS(3274), - [anon_sym_typedef] = ACTIONS(3274), - [anon_sym_extern] = ACTIONS(3274), - [anon_sym___attribute__] = ACTIONS(3274), - [anon_sym_COLON_COLON] = ACTIONS(3276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), - [anon_sym___declspec] = ACTIONS(3274), - [anon_sym___based] = ACTIONS(3274), - [anon_sym_signed] = ACTIONS(3274), - [anon_sym_unsigned] = ACTIONS(3274), - [anon_sym_long] = ACTIONS(3274), - [anon_sym_short] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_register] = ACTIONS(3274), - [anon_sym_inline] = ACTIONS(3274), - [anon_sym___inline] = ACTIONS(3274), - [anon_sym___inline__] = ACTIONS(3274), - [anon_sym___forceinline] = ACTIONS(3274), - [anon_sym_thread_local] = ACTIONS(3274), - [anon_sym___thread] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_constexpr] = ACTIONS(3274), - [anon_sym_volatile] = ACTIONS(3274), - [anon_sym_restrict] = ACTIONS(3274), - [anon_sym___restrict__] = ACTIONS(3274), - [anon_sym__Atomic] = ACTIONS(3274), - [anon_sym__Noreturn] = ACTIONS(3274), - [anon_sym_noreturn] = ACTIONS(3274), - [anon_sym_mutable] = ACTIONS(3274), - [anon_sym_constinit] = ACTIONS(3274), - [anon_sym_consteval] = ACTIONS(3274), - [sym_primitive_type] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_union] = ACTIONS(3274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3274), - [anon_sym_decltype] = ACTIONS(3274), - [anon_sym_virtual] = ACTIONS(3274), - [anon_sym_alignas] = ACTIONS(3274), - [anon_sym_explicit] = ACTIONS(3274), - [anon_sym_typename] = ACTIONS(3274), - [anon_sym_template] = ACTIONS(3274), - [anon_sym_operator] = ACTIONS(3274), - [anon_sym_friend] = ACTIONS(3274), - [anon_sym_public] = ACTIONS(3274), - [anon_sym_private] = ACTIONS(3274), - [anon_sym_protected] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_static_assert] = ACTIONS(3274), - }, - [2727] = { - [sym_identifier] = ACTIONS(3270), - [aux_sym_preproc_def_token1] = ACTIONS(3270), - [aux_sym_preproc_if_token1] = ACTIONS(3270), - [aux_sym_preproc_if_token2] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3270), - [aux_sym_preproc_else_token1] = ACTIONS(3270), - [aux_sym_preproc_elif_token1] = ACTIONS(3270), - [sym_preproc_directive] = ACTIONS(3270), - [anon_sym_LPAREN2] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_AMP] = ACTIONS(3270), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym_typedef] = ACTIONS(3270), - [anon_sym_extern] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3272), - [anon_sym___declspec] = ACTIONS(3270), - [anon_sym___based] = ACTIONS(3270), - [anon_sym_signed] = ACTIONS(3270), - [anon_sym_unsigned] = ACTIONS(3270), - [anon_sym_long] = ACTIONS(3270), - [anon_sym_short] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_register] = ACTIONS(3270), - [anon_sym_inline] = ACTIONS(3270), - [anon_sym___inline] = ACTIONS(3270), - [anon_sym___inline__] = ACTIONS(3270), - [anon_sym___forceinline] = ACTIONS(3270), - [anon_sym_thread_local] = ACTIONS(3270), - [anon_sym___thread] = ACTIONS(3270), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [sym_primitive_type] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3270), - [anon_sym_struct] = ACTIONS(3270), - [anon_sym_union] = ACTIONS(3270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3270), - [anon_sym_decltype] = ACTIONS(3270), - [anon_sym_virtual] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3270), - [anon_sym_explicit] = ACTIONS(3270), - [anon_sym_typename] = ACTIONS(3270), - [anon_sym_template] = ACTIONS(3270), - [anon_sym_operator] = ACTIONS(3270), - [anon_sym_friend] = ACTIONS(3270), - [anon_sym_public] = ACTIONS(3270), - [anon_sym_private] = ACTIONS(3270), - [anon_sym_protected] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3270), - [anon_sym_static_assert] = ACTIONS(3270), - }, - [2728] = { - [sym__declaration_modifiers] = STATE(4310), - [sym_attribute_specifier] = STATE(4310), - [sym_attribute_declaration] = STATE(4310), - [sym_ms_declspec_modifier] = STATE(4310), - [sym_storage_class_specifier] = STATE(4310), - [sym_type_qualifier] = STATE(4310), - [sym__type_specifier] = STATE(4756), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_placeholder_type_specifier] = STATE(3958), - [sym_decltype_auto] = STATE(3989), - [sym_decltype] = STATE(3784), - [sym_class_specifier] = STATE(3958), - [sym_virtual] = STATE(4310), - [sym_alignas_specifier] = STATE(4310), - [sym_dependent_type] = STATE(3958), - [sym_template_type] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9648), - [sym__scope_resolution] = STATE(7295), - [sym_qualified_type_identifier] = STATE(3834), - [aux_sym__declaration_specifiers_repeat1] = STATE(4310), - [aux_sym_sized_type_specifier_repeat1] = STATE(3929), - [sym_identifier] = ACTIONS(3900), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1888), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(3908), - [anon_sym_unsigned] = ACTIONS(3908), - [anon_sym_long] = ACTIONS(3908), - [anon_sym_short] = ACTIONS(3908), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(3910), - [anon_sym_class] = ACTIONS(3912), - [anon_sym_struct] = ACTIONS(3914), - [anon_sym_union] = ACTIONS(3916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(3918), - [anon_sym_template] = ACTIONS(1378), - }, - [2729] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2889), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(5128), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_friend] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - }, - [2730] = { - [sym_identifier] = ACTIONS(5244), - [aux_sym_preproc_def_token1] = ACTIONS(5244), - [aux_sym_preproc_if_token1] = ACTIONS(5244), - [aux_sym_preproc_if_token2] = ACTIONS(5244), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5244), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5244), - [aux_sym_preproc_else_token1] = ACTIONS(5244), - [aux_sym_preproc_elif_token1] = ACTIONS(5244), - [sym_preproc_directive] = ACTIONS(5244), - [anon_sym_LPAREN2] = ACTIONS(5246), - [anon_sym_TILDE] = ACTIONS(5246), - [anon_sym_STAR] = ACTIONS(5246), - [anon_sym_AMP_AMP] = ACTIONS(5246), - [anon_sym_AMP] = ACTIONS(5244), - [anon_sym___extension__] = ACTIONS(5244), - [anon_sym_typedef] = ACTIONS(5244), - [anon_sym_extern] = ACTIONS(5244), - [anon_sym___attribute__] = ACTIONS(5244), - [anon_sym_COLON_COLON] = ACTIONS(5246), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5246), - [anon_sym___declspec] = ACTIONS(5244), - [anon_sym___based] = ACTIONS(5244), - [anon_sym_signed] = ACTIONS(5244), - [anon_sym_unsigned] = ACTIONS(5244), - [anon_sym_long] = ACTIONS(5244), - [anon_sym_short] = ACTIONS(5244), - [anon_sym_LBRACK] = ACTIONS(5244), - [anon_sym_static] = ACTIONS(5244), - [anon_sym_register] = ACTIONS(5244), - [anon_sym_inline] = ACTIONS(5244), - [anon_sym___inline] = ACTIONS(5244), - [anon_sym___inline__] = ACTIONS(5244), - [anon_sym___forceinline] = ACTIONS(5244), - [anon_sym_thread_local] = ACTIONS(5244), - [anon_sym___thread] = ACTIONS(5244), - [anon_sym_const] = ACTIONS(5244), - [anon_sym_constexpr] = ACTIONS(5244), - [anon_sym_volatile] = ACTIONS(5244), - [anon_sym_restrict] = ACTIONS(5244), - [anon_sym___restrict__] = ACTIONS(5244), - [anon_sym__Atomic] = ACTIONS(5244), - [anon_sym__Noreturn] = ACTIONS(5244), - [anon_sym_noreturn] = ACTIONS(5244), - [anon_sym_mutable] = ACTIONS(5244), - [anon_sym_constinit] = ACTIONS(5244), - [anon_sym_consteval] = ACTIONS(5244), - [sym_primitive_type] = ACTIONS(5244), - [anon_sym_enum] = ACTIONS(5244), - [anon_sym_class] = ACTIONS(5244), - [anon_sym_struct] = ACTIONS(5244), - [anon_sym_union] = ACTIONS(5244), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5244), - [anon_sym_decltype] = ACTIONS(5244), - [anon_sym_virtual] = ACTIONS(5244), - [anon_sym_alignas] = ACTIONS(5244), - [anon_sym_explicit] = ACTIONS(5244), - [anon_sym_typename] = ACTIONS(5244), - [anon_sym_template] = ACTIONS(5244), - [anon_sym_operator] = ACTIONS(5244), - [anon_sym_friend] = ACTIONS(5244), - [anon_sym_public] = ACTIONS(5244), - [anon_sym_private] = ACTIONS(5244), - [anon_sym_protected] = ACTIONS(5244), - [anon_sym_using] = ACTIONS(5244), - [anon_sym_static_assert] = ACTIONS(5244), - }, - [2731] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2889), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_friend] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - }, - [2732] = { - [sym_identifier] = ACTIONS(3428), - [aux_sym_preproc_def_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3428), - [aux_sym_preproc_else_token1] = ACTIONS(3428), - [aux_sym_preproc_elif_token1] = ACTIONS(3428), - [sym_preproc_directive] = ACTIONS(3428), - [anon_sym_LPAREN2] = ACTIONS(3430), - [anon_sym_TILDE] = ACTIONS(3430), - [anon_sym_STAR] = ACTIONS(3430), - [anon_sym_AMP_AMP] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym___extension__] = ACTIONS(3428), - [anon_sym_typedef] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym___attribute__] = ACTIONS(3428), - [anon_sym_COLON_COLON] = ACTIONS(3430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3430), - [anon_sym___declspec] = ACTIONS(3428), - [anon_sym___based] = ACTIONS(3428), - [anon_sym_signed] = ACTIONS(3428), - [anon_sym_unsigned] = ACTIONS(3428), - [anon_sym_long] = ACTIONS(3428), - [anon_sym_short] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_register] = ACTIONS(3428), - [anon_sym_inline] = ACTIONS(3428), - [anon_sym___inline] = ACTIONS(3428), - [anon_sym___inline__] = ACTIONS(3428), - [anon_sym___forceinline] = ACTIONS(3428), - [anon_sym_thread_local] = ACTIONS(3428), - [anon_sym___thread] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_constexpr] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_restrict] = ACTIONS(3428), - [anon_sym___restrict__] = ACTIONS(3428), - [anon_sym__Atomic] = ACTIONS(3428), - [anon_sym__Noreturn] = ACTIONS(3428), - [anon_sym_noreturn] = ACTIONS(3428), - [anon_sym_mutable] = ACTIONS(3428), - [anon_sym_constinit] = ACTIONS(3428), - [anon_sym_consteval] = ACTIONS(3428), - [sym_primitive_type] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_union] = ACTIONS(3428), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3428), - [anon_sym_decltype] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_alignas] = ACTIONS(3428), - [anon_sym_explicit] = ACTIONS(3428), - [anon_sym_typename] = ACTIONS(3428), - [anon_sym_template] = ACTIONS(3428), - [anon_sym_operator] = ACTIONS(3428), - [anon_sym_friend] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_using] = ACTIONS(3428), - [anon_sym_static_assert] = ACTIONS(3428), - }, - [2733] = { - [sym_identifier] = ACTIONS(3203), - [aux_sym_preproc_def_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token2] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3203), - [aux_sym_preproc_else_token1] = ACTIONS(3203), - [aux_sym_preproc_elif_token1] = ACTIONS(3203), - [sym_preproc_directive] = ACTIONS(3203), - [anon_sym_LPAREN2] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym___extension__] = ACTIONS(3203), - [anon_sym_typedef] = ACTIONS(3203), - [anon_sym_extern] = ACTIONS(3203), - [anon_sym___attribute__] = ACTIONS(3203), - [anon_sym_COLON_COLON] = ACTIONS(3205), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3205), - [anon_sym___declspec] = ACTIONS(3203), - [anon_sym___based] = ACTIONS(3203), - [anon_sym_signed] = ACTIONS(3203), - [anon_sym_unsigned] = ACTIONS(3203), - [anon_sym_long] = ACTIONS(3203), - [anon_sym_short] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_static] = ACTIONS(3203), - [anon_sym_register] = ACTIONS(3203), - [anon_sym_inline] = ACTIONS(3203), - [anon_sym___inline] = ACTIONS(3203), - [anon_sym___inline__] = ACTIONS(3203), - [anon_sym___forceinline] = ACTIONS(3203), - [anon_sym_thread_local] = ACTIONS(3203), - [anon_sym___thread] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_constexpr] = ACTIONS(3203), - [anon_sym_volatile] = ACTIONS(3203), - [anon_sym_restrict] = ACTIONS(3203), - [anon_sym___restrict__] = ACTIONS(3203), - [anon_sym__Atomic] = ACTIONS(3203), - [anon_sym__Noreturn] = ACTIONS(3203), - [anon_sym_noreturn] = ACTIONS(3203), - [anon_sym_mutable] = ACTIONS(3203), - [anon_sym_constinit] = ACTIONS(3203), - [anon_sym_consteval] = ACTIONS(3203), - [sym_primitive_type] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [anon_sym_class] = ACTIONS(3203), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3203), - [anon_sym_decltype] = ACTIONS(3203), - [anon_sym_virtual] = ACTIONS(3203), - [anon_sym_alignas] = ACTIONS(3203), - [anon_sym_explicit] = ACTIONS(3203), - [anon_sym_typename] = ACTIONS(3203), - [anon_sym_template] = ACTIONS(3203), - [anon_sym_operator] = ACTIONS(3203), - [anon_sym_friend] = ACTIONS(3203), - [anon_sym_public] = ACTIONS(3203), - [anon_sym_private] = ACTIONS(3203), - [anon_sym_protected] = ACTIONS(3203), - [anon_sym_using] = ACTIONS(3203), - [anon_sym_static_assert] = ACTIONS(3203), - }, - [2734] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(4762), - [sym_raw_string_literal] = STATE(3456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_RBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(5464), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(5466), - [anon_sym_SLASH_EQ] = ACTIONS(5466), - [anon_sym_PERCENT_EQ] = ACTIONS(5466), - [anon_sym_PLUS_EQ] = ACTIONS(5466), - [anon_sym_DASH_EQ] = ACTIONS(5466), - [anon_sym_LT_LT_EQ] = ACTIONS(5466), - [anon_sym_GT_GT_EQ] = ACTIONS(5466), - [anon_sym_AMP_EQ] = ACTIONS(5466), - [anon_sym_CARET_EQ] = ACTIONS(5466), - [anon_sym_PIPE_EQ] = ACTIONS(5466), - [anon_sym_and_eq] = ACTIONS(5466), - [anon_sym_or_eq] = ACTIONS(5466), - [anon_sym_xor_eq] = ACTIONS(5466), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [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), - }, - [2735] = { - [sym_identifier] = ACTIONS(5157), - [aux_sym_preproc_def_token1] = ACTIONS(5157), - [aux_sym_preproc_if_token1] = ACTIONS(5157), - [aux_sym_preproc_if_token2] = ACTIONS(5157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5157), - [aux_sym_preproc_else_token1] = ACTIONS(5157), - [aux_sym_preproc_elif_token1] = ACTIONS(5157), - [sym_preproc_directive] = ACTIONS(5157), - [anon_sym_LPAREN2] = ACTIONS(5159), - [anon_sym_TILDE] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_AMP_AMP] = ACTIONS(5159), - [anon_sym_AMP] = ACTIONS(5157), - [anon_sym___extension__] = ACTIONS(5157), - [anon_sym_typedef] = ACTIONS(5157), - [anon_sym_extern] = ACTIONS(5157), - [anon_sym___attribute__] = ACTIONS(5157), - [anon_sym_COLON_COLON] = ACTIONS(5159), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5159), - [anon_sym___declspec] = ACTIONS(5157), - [anon_sym___based] = ACTIONS(5157), - [anon_sym_signed] = ACTIONS(5157), - [anon_sym_unsigned] = ACTIONS(5157), - [anon_sym_long] = ACTIONS(5157), - [anon_sym_short] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_static] = ACTIONS(5157), - [anon_sym_register] = ACTIONS(5157), - [anon_sym_inline] = ACTIONS(5157), - [anon_sym___inline] = ACTIONS(5157), - [anon_sym___inline__] = ACTIONS(5157), - [anon_sym___forceinline] = ACTIONS(5157), - [anon_sym_thread_local] = ACTIONS(5157), - [anon_sym___thread] = ACTIONS(5157), - [anon_sym_const] = ACTIONS(5157), - [anon_sym_constexpr] = ACTIONS(5157), - [anon_sym_volatile] = ACTIONS(5157), - [anon_sym_restrict] = ACTIONS(5157), - [anon_sym___restrict__] = ACTIONS(5157), - [anon_sym__Atomic] = ACTIONS(5157), - [anon_sym__Noreturn] = ACTIONS(5157), - [anon_sym_noreturn] = ACTIONS(5157), - [anon_sym_mutable] = ACTIONS(5157), - [anon_sym_constinit] = ACTIONS(5157), - [anon_sym_consteval] = ACTIONS(5157), - [sym_primitive_type] = ACTIONS(5157), - [anon_sym_enum] = ACTIONS(5157), - [anon_sym_class] = ACTIONS(5157), - [anon_sym_struct] = ACTIONS(5157), - [anon_sym_union] = ACTIONS(5157), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5157), - [anon_sym_decltype] = ACTIONS(5157), - [anon_sym_virtual] = ACTIONS(5157), - [anon_sym_alignas] = ACTIONS(5157), - [anon_sym_explicit] = ACTIONS(5157), - [anon_sym_typename] = ACTIONS(5157), - [anon_sym_template] = ACTIONS(5157), - [anon_sym_operator] = ACTIONS(5157), - [anon_sym_friend] = ACTIONS(5157), - [anon_sym_public] = ACTIONS(5157), - [anon_sym_private] = ACTIONS(5157), - [anon_sym_protected] = ACTIONS(5157), - [anon_sym_using] = ACTIONS(5157), - [anon_sym_static_assert] = ACTIONS(5157), - }, - [2736] = { - [sym_identifier] = ACTIONS(5161), - [aux_sym_preproc_def_token1] = ACTIONS(5161), - [aux_sym_preproc_if_token1] = ACTIONS(5161), - [aux_sym_preproc_if_token2] = ACTIONS(5161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5161), - [aux_sym_preproc_else_token1] = ACTIONS(5161), - [aux_sym_preproc_elif_token1] = ACTIONS(5161), - [sym_preproc_directive] = ACTIONS(5161), - [anon_sym_LPAREN2] = ACTIONS(5163), - [anon_sym_TILDE] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_AMP_AMP] = ACTIONS(5163), - [anon_sym_AMP] = ACTIONS(5161), - [anon_sym___extension__] = ACTIONS(5161), - [anon_sym_typedef] = ACTIONS(5161), - [anon_sym_extern] = ACTIONS(5161), - [anon_sym___attribute__] = ACTIONS(5161), - [anon_sym_COLON_COLON] = ACTIONS(5163), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5163), - [anon_sym___declspec] = ACTIONS(5161), - [anon_sym___based] = ACTIONS(5161), - [anon_sym_signed] = ACTIONS(5161), - [anon_sym_unsigned] = ACTIONS(5161), - [anon_sym_long] = ACTIONS(5161), - [anon_sym_short] = ACTIONS(5161), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_static] = ACTIONS(5161), - [anon_sym_register] = ACTIONS(5161), - [anon_sym_inline] = ACTIONS(5161), - [anon_sym___inline] = ACTIONS(5161), - [anon_sym___inline__] = ACTIONS(5161), - [anon_sym___forceinline] = ACTIONS(5161), - [anon_sym_thread_local] = ACTIONS(5161), - [anon_sym___thread] = ACTIONS(5161), - [anon_sym_const] = ACTIONS(5161), - [anon_sym_constexpr] = ACTIONS(5161), - [anon_sym_volatile] = ACTIONS(5161), - [anon_sym_restrict] = ACTIONS(5161), - [anon_sym___restrict__] = ACTIONS(5161), - [anon_sym__Atomic] = ACTIONS(5161), - [anon_sym__Noreturn] = ACTIONS(5161), - [anon_sym_noreturn] = ACTIONS(5161), - [anon_sym_mutable] = ACTIONS(5161), - [anon_sym_constinit] = ACTIONS(5161), - [anon_sym_consteval] = ACTIONS(5161), - [sym_primitive_type] = ACTIONS(5161), - [anon_sym_enum] = ACTIONS(5161), - [anon_sym_class] = ACTIONS(5161), - [anon_sym_struct] = ACTIONS(5161), - [anon_sym_union] = ACTIONS(5161), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5161), - [anon_sym_decltype] = ACTIONS(5161), - [anon_sym_virtual] = ACTIONS(5161), - [anon_sym_alignas] = ACTIONS(5161), - [anon_sym_explicit] = ACTIONS(5161), - [anon_sym_typename] = ACTIONS(5161), - [anon_sym_template] = ACTIONS(5161), - [anon_sym_operator] = ACTIONS(5161), - [anon_sym_friend] = ACTIONS(5161), - [anon_sym_public] = ACTIONS(5161), - [anon_sym_private] = ACTIONS(5161), - [anon_sym_protected] = ACTIONS(5161), - [anon_sym_using] = ACTIONS(5161), - [anon_sym_static_assert] = ACTIONS(5161), - }, - [2737] = { - [sym_identifier] = ACTIONS(3286), - [aux_sym_preproc_def_token1] = ACTIONS(3286), - [aux_sym_preproc_if_token1] = ACTIONS(3286), - [aux_sym_preproc_if_token2] = ACTIONS(3286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), - [aux_sym_preproc_else_token1] = ACTIONS(3286), - [aux_sym_preproc_elif_token1] = ACTIONS(3286), - [sym_preproc_directive] = ACTIONS(3286), - [anon_sym_LPAREN2] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_AMP] = ACTIONS(3286), - [anon_sym___extension__] = ACTIONS(3286), - [anon_sym_typedef] = ACTIONS(3286), - [anon_sym_extern] = ACTIONS(3286), - [anon_sym___attribute__] = ACTIONS(3286), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), - [anon_sym___declspec] = ACTIONS(3286), - [anon_sym___based] = ACTIONS(3286), - [anon_sym_signed] = ACTIONS(3286), - [anon_sym_unsigned] = ACTIONS(3286), - [anon_sym_long] = ACTIONS(3286), - [anon_sym_short] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3286), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_register] = ACTIONS(3286), - [anon_sym_inline] = ACTIONS(3286), - [anon_sym___inline] = ACTIONS(3286), - [anon_sym___inline__] = ACTIONS(3286), - [anon_sym___forceinline] = ACTIONS(3286), - [anon_sym_thread_local] = ACTIONS(3286), - [anon_sym___thread] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_constexpr] = ACTIONS(3286), - [anon_sym_volatile] = ACTIONS(3286), - [anon_sym_restrict] = ACTIONS(3286), - [anon_sym___restrict__] = ACTIONS(3286), - [anon_sym__Atomic] = ACTIONS(3286), - [anon_sym__Noreturn] = ACTIONS(3286), - [anon_sym_noreturn] = ACTIONS(3286), - [anon_sym_mutable] = ACTIONS(3286), - [anon_sym_constinit] = ACTIONS(3286), - [anon_sym_consteval] = ACTIONS(3286), - [sym_primitive_type] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), - [anon_sym_class] = ACTIONS(3286), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_union] = ACTIONS(3286), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3286), - [anon_sym_decltype] = ACTIONS(3286), - [anon_sym_virtual] = ACTIONS(3286), - [anon_sym_alignas] = ACTIONS(3286), - [anon_sym_explicit] = ACTIONS(3286), - [anon_sym_typename] = ACTIONS(3286), - [anon_sym_template] = ACTIONS(3286), - [anon_sym_operator] = ACTIONS(3286), - [anon_sym_friend] = ACTIONS(3286), - [anon_sym_public] = ACTIONS(3286), - [anon_sym_private] = ACTIONS(3286), - [anon_sym_protected] = ACTIONS(3286), - [anon_sym_using] = ACTIONS(3286), - [anon_sym_static_assert] = ACTIONS(3286), - }, - [2738] = { - [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), - [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___extension__] = ACTIONS(3217), - [anon_sym_typedef] = ACTIONS(3217), - [anon_sym_extern] = ACTIONS(3217), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3217), - [anon_sym_constinit] = ACTIONS(3217), - [anon_sym_consteval] = 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_virtual] = ACTIONS(3217), - [anon_sym_alignas] = ACTIONS(3217), - [anon_sym_explicit] = ACTIONS(3217), - [anon_sym_typename] = ACTIONS(3217), - [anon_sym_template] = ACTIONS(3217), - [anon_sym_operator] = ACTIONS(3217), - [anon_sym_friend] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_static_assert] = ACTIONS(3217), - }, - [2739] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2889), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token2] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_friend] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - }, - [2740] = { - [sym_identifier] = ACTIONS(5161), - [aux_sym_preproc_def_token1] = ACTIONS(5161), - [aux_sym_preproc_if_token1] = ACTIONS(5161), - [aux_sym_preproc_if_token2] = ACTIONS(5161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5161), - [aux_sym_preproc_else_token1] = ACTIONS(5161), - [aux_sym_preproc_elif_token1] = ACTIONS(5161), - [sym_preproc_directive] = ACTIONS(5161), - [anon_sym_LPAREN2] = ACTIONS(5163), - [anon_sym_TILDE] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_AMP_AMP] = ACTIONS(5163), - [anon_sym_AMP] = ACTIONS(5161), - [anon_sym___extension__] = ACTIONS(5161), - [anon_sym_typedef] = ACTIONS(5161), - [anon_sym_extern] = ACTIONS(5161), - [anon_sym___attribute__] = ACTIONS(5161), - [anon_sym_COLON_COLON] = ACTIONS(5163), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5163), - [anon_sym___declspec] = ACTIONS(5161), - [anon_sym___based] = ACTIONS(5161), - [anon_sym_signed] = ACTIONS(5161), - [anon_sym_unsigned] = ACTIONS(5161), - [anon_sym_long] = ACTIONS(5161), - [anon_sym_short] = ACTIONS(5161), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_static] = ACTIONS(5161), - [anon_sym_register] = ACTIONS(5161), - [anon_sym_inline] = ACTIONS(5161), - [anon_sym___inline] = ACTIONS(5161), - [anon_sym___inline__] = ACTIONS(5161), - [anon_sym___forceinline] = ACTIONS(5161), - [anon_sym_thread_local] = ACTIONS(5161), - [anon_sym___thread] = ACTIONS(5161), - [anon_sym_const] = ACTIONS(5161), - [anon_sym_constexpr] = ACTIONS(5161), - [anon_sym_volatile] = ACTIONS(5161), - [anon_sym_restrict] = ACTIONS(5161), - [anon_sym___restrict__] = ACTIONS(5161), - [anon_sym__Atomic] = ACTIONS(5161), - [anon_sym__Noreturn] = ACTIONS(5161), - [anon_sym_noreturn] = ACTIONS(5161), - [anon_sym_mutable] = ACTIONS(5161), - [anon_sym_constinit] = ACTIONS(5161), - [anon_sym_consteval] = ACTIONS(5161), - [sym_primitive_type] = ACTIONS(5161), - [anon_sym_enum] = ACTIONS(5161), - [anon_sym_class] = ACTIONS(5161), - [anon_sym_struct] = ACTIONS(5161), - [anon_sym_union] = ACTIONS(5161), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5161), - [anon_sym_decltype] = ACTIONS(5161), - [anon_sym_virtual] = ACTIONS(5161), - [anon_sym_alignas] = ACTIONS(5161), - [anon_sym_explicit] = ACTIONS(5161), - [anon_sym_typename] = ACTIONS(5161), - [anon_sym_template] = ACTIONS(5161), - [anon_sym_operator] = ACTIONS(5161), - [anon_sym_friend] = ACTIONS(5161), - [anon_sym_public] = ACTIONS(5161), - [anon_sym_private] = ACTIONS(5161), - [anon_sym_protected] = ACTIONS(5161), - [anon_sym_using] = ACTIONS(5161), - [anon_sym_static_assert] = ACTIONS(5161), - }, - [2741] = { - [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), - [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___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3123), - [anon_sym_extern] = ACTIONS(3123), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3123), - [anon_sym_constinit] = ACTIONS(3123), - [anon_sym_consteval] = 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_virtual] = ACTIONS(3123), - [anon_sym_alignas] = ACTIONS(3123), - [anon_sym_explicit] = ACTIONS(3123), - [anon_sym_typename] = ACTIONS(3123), - [anon_sym_template] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_friend] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_using] = ACTIONS(3123), - [anon_sym_static_assert] = ACTIONS(3123), - }, - [2742] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2889), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token2] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(5128), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_friend] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - }, - [2743] = { - [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), - [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___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3123), - [anon_sym_extern] = ACTIONS(3123), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3123), - [anon_sym_constinit] = ACTIONS(3123), - [anon_sym_consteval] = 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_virtual] = ACTIONS(3123), - [anon_sym_alignas] = ACTIONS(3123), - [anon_sym_explicit] = ACTIONS(3123), - [anon_sym_typename] = ACTIONS(3123), - [anon_sym_template] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_friend] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_using] = ACTIONS(3123), - [anon_sym_static_assert] = ACTIONS(3123), - }, - [2744] = { - [sym_identifier] = ACTIONS(5165), - [aux_sym_preproc_def_token1] = ACTIONS(5165), - [aux_sym_preproc_if_token1] = ACTIONS(5165), - [aux_sym_preproc_if_token2] = ACTIONS(5165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5165), - [aux_sym_preproc_else_token1] = ACTIONS(5165), - [aux_sym_preproc_elif_token1] = ACTIONS(5165), - [sym_preproc_directive] = ACTIONS(5165), - [anon_sym_LPAREN2] = ACTIONS(5167), - [anon_sym_TILDE] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_AMP_AMP] = ACTIONS(5167), - [anon_sym_AMP] = ACTIONS(5165), - [anon_sym___extension__] = ACTIONS(5165), - [anon_sym_typedef] = ACTIONS(5165), - [anon_sym_extern] = ACTIONS(5165), - [anon_sym___attribute__] = ACTIONS(5165), - [anon_sym_COLON_COLON] = ACTIONS(5167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5167), - [anon_sym___declspec] = ACTIONS(5165), - [anon_sym___based] = ACTIONS(5165), - [anon_sym_signed] = ACTIONS(5165), - [anon_sym_unsigned] = ACTIONS(5165), - [anon_sym_long] = ACTIONS(5165), - [anon_sym_short] = ACTIONS(5165), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_static] = ACTIONS(5165), - [anon_sym_register] = ACTIONS(5165), - [anon_sym_inline] = ACTIONS(5165), - [anon_sym___inline] = ACTIONS(5165), - [anon_sym___inline__] = ACTIONS(5165), - [anon_sym___forceinline] = ACTIONS(5165), - [anon_sym_thread_local] = ACTIONS(5165), - [anon_sym___thread] = ACTIONS(5165), - [anon_sym_const] = ACTIONS(5165), - [anon_sym_constexpr] = ACTIONS(5165), - [anon_sym_volatile] = ACTIONS(5165), - [anon_sym_restrict] = ACTIONS(5165), - [anon_sym___restrict__] = ACTIONS(5165), - [anon_sym__Atomic] = ACTIONS(5165), - [anon_sym__Noreturn] = ACTIONS(5165), - [anon_sym_noreturn] = ACTIONS(5165), - [anon_sym_mutable] = ACTIONS(5165), - [anon_sym_constinit] = ACTIONS(5165), - [anon_sym_consteval] = ACTIONS(5165), - [sym_primitive_type] = ACTIONS(5165), - [anon_sym_enum] = ACTIONS(5165), - [anon_sym_class] = ACTIONS(5165), - [anon_sym_struct] = ACTIONS(5165), - [anon_sym_union] = ACTIONS(5165), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5165), - [anon_sym_decltype] = ACTIONS(5165), - [anon_sym_virtual] = ACTIONS(5165), - [anon_sym_alignas] = ACTIONS(5165), - [anon_sym_explicit] = ACTIONS(5165), - [anon_sym_typename] = ACTIONS(5165), - [anon_sym_template] = ACTIONS(5165), - [anon_sym_operator] = ACTIONS(5165), - [anon_sym_friend] = ACTIONS(5165), - [anon_sym_public] = ACTIONS(5165), - [anon_sym_private] = ACTIONS(5165), - [anon_sym_protected] = ACTIONS(5165), - [anon_sym_using] = ACTIONS(5165), - [anon_sym_static_assert] = ACTIONS(5165), - }, - [2745] = { - [sym_identifier] = ACTIONS(5169), - [aux_sym_preproc_def_token1] = ACTIONS(5169), - [aux_sym_preproc_if_token1] = ACTIONS(5169), - [aux_sym_preproc_if_token2] = ACTIONS(5169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5169), - [aux_sym_preproc_else_token1] = ACTIONS(5169), - [aux_sym_preproc_elif_token1] = ACTIONS(5169), - [sym_preproc_directive] = ACTIONS(5169), - [anon_sym_LPAREN2] = ACTIONS(5171), - [anon_sym_TILDE] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_AMP_AMP] = ACTIONS(5171), - [anon_sym_AMP] = ACTIONS(5169), - [anon_sym___extension__] = ACTIONS(5169), - [anon_sym_typedef] = ACTIONS(5169), - [anon_sym_extern] = ACTIONS(5169), - [anon_sym___attribute__] = ACTIONS(5169), - [anon_sym_COLON_COLON] = ACTIONS(5171), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5171), - [anon_sym___declspec] = ACTIONS(5169), - [anon_sym___based] = ACTIONS(5169), - [anon_sym_signed] = ACTIONS(5169), - [anon_sym_unsigned] = ACTIONS(5169), - [anon_sym_long] = ACTIONS(5169), - [anon_sym_short] = ACTIONS(5169), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_static] = ACTIONS(5169), - [anon_sym_register] = ACTIONS(5169), - [anon_sym_inline] = ACTIONS(5169), - [anon_sym___inline] = ACTIONS(5169), - [anon_sym___inline__] = ACTIONS(5169), - [anon_sym___forceinline] = ACTIONS(5169), - [anon_sym_thread_local] = ACTIONS(5169), - [anon_sym___thread] = ACTIONS(5169), - [anon_sym_const] = ACTIONS(5169), - [anon_sym_constexpr] = ACTIONS(5169), - [anon_sym_volatile] = ACTIONS(5169), - [anon_sym_restrict] = ACTIONS(5169), - [anon_sym___restrict__] = ACTIONS(5169), - [anon_sym__Atomic] = ACTIONS(5169), - [anon_sym__Noreturn] = ACTIONS(5169), - [anon_sym_noreturn] = ACTIONS(5169), - [anon_sym_mutable] = ACTIONS(5169), - [anon_sym_constinit] = ACTIONS(5169), - [anon_sym_consteval] = ACTIONS(5169), - [sym_primitive_type] = ACTIONS(5169), - [anon_sym_enum] = ACTIONS(5169), - [anon_sym_class] = ACTIONS(5169), - [anon_sym_struct] = ACTIONS(5169), - [anon_sym_union] = ACTIONS(5169), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5169), - [anon_sym_decltype] = ACTIONS(5169), - [anon_sym_virtual] = ACTIONS(5169), - [anon_sym_alignas] = ACTIONS(5169), - [anon_sym_explicit] = ACTIONS(5169), - [anon_sym_typename] = ACTIONS(5169), - [anon_sym_template] = ACTIONS(5169), - [anon_sym_operator] = ACTIONS(5169), - [anon_sym_friend] = ACTIONS(5169), - [anon_sym_public] = ACTIONS(5169), - [anon_sym_private] = ACTIONS(5169), - [anon_sym_protected] = ACTIONS(5169), - [anon_sym_using] = ACTIONS(5169), - [anon_sym_static_assert] = ACTIONS(5169), - }, - [2746] = { - [sym_identifier] = ACTIONS(5173), - [aux_sym_preproc_def_token1] = ACTIONS(5173), - [aux_sym_preproc_if_token1] = ACTIONS(5173), - [aux_sym_preproc_if_token2] = ACTIONS(5173), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5173), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5173), - [aux_sym_preproc_else_token1] = ACTIONS(5173), - [aux_sym_preproc_elif_token1] = ACTIONS(5173), - [sym_preproc_directive] = ACTIONS(5173), - [anon_sym_LPAREN2] = ACTIONS(5175), - [anon_sym_TILDE] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_AMP_AMP] = ACTIONS(5175), - [anon_sym_AMP] = ACTIONS(5173), - [anon_sym___extension__] = ACTIONS(5173), - [anon_sym_typedef] = ACTIONS(5173), - [anon_sym_extern] = ACTIONS(5173), - [anon_sym___attribute__] = ACTIONS(5173), - [anon_sym_COLON_COLON] = ACTIONS(5175), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5175), - [anon_sym___declspec] = ACTIONS(5173), - [anon_sym___based] = ACTIONS(5173), - [anon_sym_signed] = ACTIONS(5173), - [anon_sym_unsigned] = ACTIONS(5173), - [anon_sym_long] = ACTIONS(5173), - [anon_sym_short] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_static] = ACTIONS(5173), - [anon_sym_register] = ACTIONS(5173), - [anon_sym_inline] = ACTIONS(5173), - [anon_sym___inline] = ACTIONS(5173), - [anon_sym___inline__] = ACTIONS(5173), - [anon_sym___forceinline] = ACTIONS(5173), - [anon_sym_thread_local] = ACTIONS(5173), - [anon_sym___thread] = ACTIONS(5173), - [anon_sym_const] = ACTIONS(5173), - [anon_sym_constexpr] = ACTIONS(5173), - [anon_sym_volatile] = ACTIONS(5173), - [anon_sym_restrict] = ACTIONS(5173), - [anon_sym___restrict__] = ACTIONS(5173), - [anon_sym__Atomic] = ACTIONS(5173), - [anon_sym__Noreturn] = ACTIONS(5173), - [anon_sym_noreturn] = ACTIONS(5173), - [anon_sym_mutable] = ACTIONS(5173), - [anon_sym_constinit] = ACTIONS(5173), - [anon_sym_consteval] = ACTIONS(5173), - [sym_primitive_type] = ACTIONS(5173), - [anon_sym_enum] = ACTIONS(5173), - [anon_sym_class] = ACTIONS(5173), - [anon_sym_struct] = ACTIONS(5173), - [anon_sym_union] = ACTIONS(5173), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5173), - [anon_sym_decltype] = ACTIONS(5173), - [anon_sym_virtual] = ACTIONS(5173), - [anon_sym_alignas] = ACTIONS(5173), - [anon_sym_explicit] = ACTIONS(5173), - [anon_sym_typename] = ACTIONS(5173), - [anon_sym_template] = ACTIONS(5173), - [anon_sym_operator] = ACTIONS(5173), - [anon_sym_friend] = ACTIONS(5173), - [anon_sym_public] = ACTIONS(5173), - [anon_sym_private] = ACTIONS(5173), - [anon_sym_protected] = ACTIONS(5173), - [anon_sym_using] = ACTIONS(5173), - [anon_sym_static_assert] = ACTIONS(5173), - }, - [2747] = { - [sym_identifier] = ACTIONS(3352), - [aux_sym_preproc_def_token1] = ACTIONS(3352), - [aux_sym_preproc_if_token1] = ACTIONS(3352), - [aux_sym_preproc_if_token2] = ACTIONS(3352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3352), - [aux_sym_preproc_else_token1] = ACTIONS(3352), - [aux_sym_preproc_elif_token1] = ACTIONS(3352), - [sym_preproc_directive] = ACTIONS(3352), - [anon_sym_LPAREN2] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_AMP_AMP] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym___extension__] = ACTIONS(3352), - [anon_sym_typedef] = ACTIONS(3352), - [anon_sym_extern] = ACTIONS(3352), - [anon_sym___attribute__] = ACTIONS(3352), - [anon_sym_COLON_COLON] = ACTIONS(3354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3354), - [anon_sym___declspec] = ACTIONS(3352), - [anon_sym___based] = ACTIONS(3352), - [anon_sym_signed] = ACTIONS(3352), - [anon_sym_unsigned] = ACTIONS(3352), - [anon_sym_long] = ACTIONS(3352), - [anon_sym_short] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_static] = ACTIONS(3352), - [anon_sym_register] = ACTIONS(3352), - [anon_sym_inline] = ACTIONS(3352), - [anon_sym___inline] = ACTIONS(3352), - [anon_sym___inline__] = ACTIONS(3352), - [anon_sym___forceinline] = ACTIONS(3352), - [anon_sym_thread_local] = ACTIONS(3352), - [anon_sym___thread] = ACTIONS(3352), - [anon_sym_const] = ACTIONS(3352), - [anon_sym_constexpr] = ACTIONS(3352), - [anon_sym_volatile] = ACTIONS(3352), - [anon_sym_restrict] = ACTIONS(3352), - [anon_sym___restrict__] = ACTIONS(3352), - [anon_sym__Atomic] = ACTIONS(3352), - [anon_sym__Noreturn] = ACTIONS(3352), - [anon_sym_noreturn] = ACTIONS(3352), - [anon_sym_mutable] = ACTIONS(3352), - [anon_sym_constinit] = ACTIONS(3352), - [anon_sym_consteval] = ACTIONS(3352), - [sym_primitive_type] = ACTIONS(3352), - [anon_sym_enum] = ACTIONS(3352), - [anon_sym_class] = ACTIONS(3352), - [anon_sym_struct] = ACTIONS(3352), - [anon_sym_union] = ACTIONS(3352), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3352), - [anon_sym_decltype] = ACTIONS(3352), - [anon_sym_virtual] = ACTIONS(3352), - [anon_sym_alignas] = ACTIONS(3352), - [anon_sym_explicit] = ACTIONS(3352), - [anon_sym_typename] = ACTIONS(3352), - [anon_sym_template] = ACTIONS(3352), - [anon_sym_operator] = ACTIONS(3352), - [anon_sym_friend] = ACTIONS(3352), - [anon_sym_public] = ACTIONS(3352), - [anon_sym_private] = ACTIONS(3352), - [anon_sym_protected] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3352), - [anon_sym_static_assert] = ACTIONS(3352), - }, - [2748] = { - [sym_identifier] = ACTIONS(2925), - [aux_sym_preproc_def_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token2] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2925), - [aux_sym_preproc_else_token1] = ACTIONS(2925), - [aux_sym_preproc_elif_token1] = ACTIONS(2925), - [sym_preproc_directive] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2925), - [anon_sym_typedef] = ACTIONS(2925), - [anon_sym_extern] = ACTIONS(2925), - [anon_sym___attribute__] = ACTIONS(2925), - [anon_sym_COLON_COLON] = ACTIONS(2927), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), - [anon_sym___declspec] = ACTIONS(2925), - [anon_sym___based] = ACTIONS(2925), - [anon_sym_signed] = ACTIONS(2925), - [anon_sym_unsigned] = ACTIONS(2925), - [anon_sym_long] = ACTIONS(2925), - [anon_sym_short] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_static] = ACTIONS(2925), - [anon_sym_register] = ACTIONS(2925), - [anon_sym_inline] = ACTIONS(2925), - [anon_sym___inline] = ACTIONS(2925), - [anon_sym___inline__] = ACTIONS(2925), - [anon_sym___forceinline] = ACTIONS(2925), - [anon_sym_thread_local] = ACTIONS(2925), - [anon_sym___thread] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(2925), - [anon_sym_constexpr] = ACTIONS(2925), - [anon_sym_volatile] = ACTIONS(2925), - [anon_sym_restrict] = ACTIONS(2925), - [anon_sym___restrict__] = ACTIONS(2925), - [anon_sym__Atomic] = ACTIONS(2925), - [anon_sym__Noreturn] = ACTIONS(2925), - [anon_sym_noreturn] = ACTIONS(2925), - [anon_sym_mutable] = ACTIONS(2925), - [anon_sym_constinit] = ACTIONS(2925), - [anon_sym_consteval] = ACTIONS(2925), - [sym_primitive_type] = ACTIONS(2925), - [anon_sym_enum] = ACTIONS(2925), - [anon_sym_class] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_union] = ACTIONS(2925), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2925), - [anon_sym_decltype] = ACTIONS(2925), - [anon_sym_virtual] = ACTIONS(2925), - [anon_sym_alignas] = ACTIONS(2925), - [anon_sym_explicit] = ACTIONS(2925), - [anon_sym_typename] = ACTIONS(2925), - [anon_sym_template] = ACTIONS(2925), - [anon_sym_operator] = ACTIONS(2925), - [anon_sym_friend] = ACTIONS(2925), - [anon_sym_public] = ACTIONS(2925), - [anon_sym_private] = ACTIONS(2925), - [anon_sym_protected] = ACTIONS(2925), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_static_assert] = ACTIONS(2925), - }, - [2749] = { - [sym_identifier] = ACTIONS(3230), - [aux_sym_preproc_def_token1] = ACTIONS(3230), - [aux_sym_preproc_if_token1] = ACTIONS(3230), - [aux_sym_preproc_if_token2] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3230), - [aux_sym_preproc_else_token1] = ACTIONS(3230), - [aux_sym_preproc_elif_token1] = ACTIONS(3230), - [sym_preproc_directive] = ACTIONS(3230), - [anon_sym_LPAREN2] = ACTIONS(3232), - [anon_sym_TILDE] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(3232), - [anon_sym_AMP_AMP] = ACTIONS(3232), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym___extension__] = ACTIONS(3230), - [anon_sym_typedef] = ACTIONS(3230), - [anon_sym_extern] = ACTIONS(3230), - [anon_sym___attribute__] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3232), - [anon_sym___declspec] = ACTIONS(3230), - [anon_sym___based] = ACTIONS(3230), - [anon_sym_signed] = ACTIONS(3230), - [anon_sym_unsigned] = ACTIONS(3230), - [anon_sym_long] = ACTIONS(3230), - [anon_sym_short] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3230), - [anon_sym_register] = ACTIONS(3230), - [anon_sym_inline] = ACTIONS(3230), - [anon_sym___inline] = ACTIONS(3230), - [anon_sym___inline__] = ACTIONS(3230), - [anon_sym___forceinline] = ACTIONS(3230), - [anon_sym_thread_local] = ACTIONS(3230), - [anon_sym___thread] = ACTIONS(3230), - [anon_sym_const] = ACTIONS(3230), - [anon_sym_constexpr] = ACTIONS(3230), - [anon_sym_volatile] = ACTIONS(3230), - [anon_sym_restrict] = ACTIONS(3230), - [anon_sym___restrict__] = ACTIONS(3230), - [anon_sym__Atomic] = ACTIONS(3230), - [anon_sym__Noreturn] = ACTIONS(3230), - [anon_sym_noreturn] = ACTIONS(3230), - [anon_sym_mutable] = ACTIONS(3230), - [anon_sym_constinit] = ACTIONS(3230), - [anon_sym_consteval] = ACTIONS(3230), - [sym_primitive_type] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3230), - [anon_sym_class] = ACTIONS(3230), - [anon_sym_struct] = ACTIONS(3230), - [anon_sym_union] = ACTIONS(3230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3230), - [anon_sym_decltype] = ACTIONS(3230), - [anon_sym_virtual] = ACTIONS(3230), - [anon_sym_alignas] = ACTIONS(3230), - [anon_sym_explicit] = ACTIONS(3230), - [anon_sym_typename] = ACTIONS(3230), - [anon_sym_template] = ACTIONS(3230), - [anon_sym_operator] = ACTIONS(3230), - [anon_sym_friend] = ACTIONS(3230), - [anon_sym_public] = ACTIONS(3230), - [anon_sym_private] = ACTIONS(3230), - [anon_sym_protected] = ACTIONS(3230), - [anon_sym_using] = ACTIONS(3230), - [anon_sym_static_assert] = ACTIONS(3230), - }, - [2750] = { - [sym_identifier] = ACTIONS(3083), - [aux_sym_preproc_def_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token2] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), - [aux_sym_preproc_else_token1] = ACTIONS(3083), - [aux_sym_preproc_elif_token1] = ACTIONS(3083), - [sym_preproc_directive] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym___extension__] = ACTIONS(3083), - [anon_sym_typedef] = ACTIONS(3083), - [anon_sym_extern] = ACTIONS(3083), - [anon_sym___attribute__] = ACTIONS(3083), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), - [anon_sym___declspec] = ACTIONS(3083), - [anon_sym___based] = ACTIONS(3083), - [anon_sym_signed] = ACTIONS(3083), - [anon_sym_unsigned] = ACTIONS(3083), - [anon_sym_long] = ACTIONS(3083), - [anon_sym_short] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_static] = ACTIONS(3083), - [anon_sym_register] = ACTIONS(3083), - [anon_sym_inline] = ACTIONS(3083), - [anon_sym___inline] = ACTIONS(3083), - [anon_sym___inline__] = ACTIONS(3083), - [anon_sym___forceinline] = ACTIONS(3083), - [anon_sym_thread_local] = ACTIONS(3083), - [anon_sym___thread] = ACTIONS(3083), - [anon_sym_const] = ACTIONS(3083), - [anon_sym_constexpr] = ACTIONS(3083), - [anon_sym_volatile] = ACTIONS(3083), - [anon_sym_restrict] = ACTIONS(3083), - [anon_sym___restrict__] = ACTIONS(3083), - [anon_sym__Atomic] = ACTIONS(3083), - [anon_sym__Noreturn] = ACTIONS(3083), - [anon_sym_noreturn] = ACTIONS(3083), - [anon_sym_mutable] = ACTIONS(3083), - [anon_sym_constinit] = ACTIONS(3083), - [anon_sym_consteval] = ACTIONS(3083), - [sym_primitive_type] = ACTIONS(3083), - [anon_sym_enum] = ACTIONS(3083), - [anon_sym_class] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3083), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3083), - [anon_sym_decltype] = ACTIONS(3083), - [anon_sym_virtual] = ACTIONS(3083), - [anon_sym_alignas] = ACTIONS(3083), - [anon_sym_explicit] = ACTIONS(3083), - [anon_sym_typename] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3083), - [anon_sym_operator] = ACTIONS(3083), - [anon_sym_friend] = ACTIONS(3083), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_using] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3083), - }, - [2751] = { - [sym_identifier] = ACTIONS(3107), - [aux_sym_preproc_def_token1] = ACTIONS(3107), - [aux_sym_preproc_if_token1] = ACTIONS(3107), - [aux_sym_preproc_if_token2] = ACTIONS(3107), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3107), - [aux_sym_preproc_else_token1] = ACTIONS(3107), - [aux_sym_preproc_elif_token1] = ACTIONS(3107), - [sym_preproc_directive] = ACTIONS(3107), - [anon_sym_LPAREN2] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3107), - [anon_sym___extension__] = ACTIONS(3107), - [anon_sym_typedef] = ACTIONS(3107), - [anon_sym_extern] = ACTIONS(3107), - [anon_sym___attribute__] = ACTIONS(3107), - [anon_sym_COLON_COLON] = ACTIONS(3109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), - [anon_sym___declspec] = ACTIONS(3107), - [anon_sym___based] = ACTIONS(3107), - [anon_sym_signed] = ACTIONS(3107), - [anon_sym_unsigned] = ACTIONS(3107), - [anon_sym_long] = ACTIONS(3107), - [anon_sym_short] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_register] = ACTIONS(3107), - [anon_sym_inline] = ACTIONS(3107), - [anon_sym___inline] = ACTIONS(3107), - [anon_sym___inline__] = ACTIONS(3107), - [anon_sym___forceinline] = ACTIONS(3107), - [anon_sym_thread_local] = ACTIONS(3107), - [anon_sym___thread] = ACTIONS(3107), - [anon_sym_const] = ACTIONS(3107), - [anon_sym_constexpr] = ACTIONS(3107), - [anon_sym_volatile] = ACTIONS(3107), - [anon_sym_restrict] = ACTIONS(3107), - [anon_sym___restrict__] = ACTIONS(3107), - [anon_sym__Atomic] = ACTIONS(3107), - [anon_sym__Noreturn] = ACTIONS(3107), - [anon_sym_noreturn] = ACTIONS(3107), - [anon_sym_mutable] = ACTIONS(3107), - [anon_sym_constinit] = ACTIONS(3107), - [anon_sym_consteval] = ACTIONS(3107), - [sym_primitive_type] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3107), - [anon_sym_union] = ACTIONS(3107), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3107), - [anon_sym_decltype] = ACTIONS(3107), - [anon_sym_virtual] = ACTIONS(3107), - [anon_sym_alignas] = ACTIONS(3107), - [anon_sym_explicit] = ACTIONS(3107), - [anon_sym_typename] = ACTIONS(3107), - [anon_sym_template] = ACTIONS(3107), - [anon_sym_operator] = ACTIONS(3107), - [anon_sym_friend] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_protected] = ACTIONS(3107), - [anon_sym_using] = ACTIONS(3107), - [anon_sym_static_assert] = ACTIONS(3107), - }, - [2752] = { - [sym_identifier] = ACTIONS(3282), - [aux_sym_preproc_def_token1] = ACTIONS(3282), - [aux_sym_preproc_if_token1] = ACTIONS(3282), - [aux_sym_preproc_if_token2] = ACTIONS(3282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3282), - [aux_sym_preproc_else_token1] = ACTIONS(3282), - [aux_sym_preproc_elif_token1] = ACTIONS(3282), - [sym_preproc_directive] = ACTIONS(3282), - [anon_sym_LPAREN2] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_AMP_AMP] = ACTIONS(3284), - [anon_sym_AMP] = ACTIONS(3282), - [anon_sym___extension__] = ACTIONS(3282), - [anon_sym_typedef] = ACTIONS(3282), - [anon_sym_extern] = ACTIONS(3282), - [anon_sym___attribute__] = ACTIONS(3282), - [anon_sym_COLON_COLON] = ACTIONS(3284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3284), - [anon_sym___declspec] = ACTIONS(3282), - [anon_sym___based] = ACTIONS(3282), - [anon_sym_signed] = ACTIONS(3282), - [anon_sym_unsigned] = ACTIONS(3282), - [anon_sym_long] = ACTIONS(3282), - [anon_sym_short] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_register] = ACTIONS(3282), - [anon_sym_inline] = ACTIONS(3282), - [anon_sym___inline] = ACTIONS(3282), - [anon_sym___inline__] = ACTIONS(3282), - [anon_sym___forceinline] = ACTIONS(3282), - [anon_sym_thread_local] = ACTIONS(3282), - [anon_sym___thread] = ACTIONS(3282), - [anon_sym_const] = ACTIONS(3282), - [anon_sym_constexpr] = ACTIONS(3282), - [anon_sym_volatile] = ACTIONS(3282), - [anon_sym_restrict] = ACTIONS(3282), - [anon_sym___restrict__] = ACTIONS(3282), - [anon_sym__Atomic] = ACTIONS(3282), - [anon_sym__Noreturn] = ACTIONS(3282), - [anon_sym_noreturn] = ACTIONS(3282), - [anon_sym_mutable] = ACTIONS(3282), - [anon_sym_constinit] = ACTIONS(3282), - [anon_sym_consteval] = ACTIONS(3282), - [sym_primitive_type] = ACTIONS(3282), - [anon_sym_enum] = ACTIONS(3282), - [anon_sym_class] = ACTIONS(3282), - [anon_sym_struct] = ACTIONS(3282), - [anon_sym_union] = ACTIONS(3282), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3282), - [anon_sym_decltype] = ACTIONS(3282), - [anon_sym_virtual] = ACTIONS(3282), - [anon_sym_alignas] = ACTIONS(3282), - [anon_sym_explicit] = ACTIONS(3282), - [anon_sym_typename] = ACTIONS(3282), - [anon_sym_template] = ACTIONS(3282), - [anon_sym_operator] = ACTIONS(3282), - [anon_sym_friend] = ACTIONS(3282), - [anon_sym_public] = ACTIONS(3282), - [anon_sym_private] = ACTIONS(3282), - [anon_sym_protected] = ACTIONS(3282), - [anon_sym_using] = ACTIONS(3282), - [anon_sym_static_assert] = ACTIONS(3282), - }, - [2753] = { - [sym_identifier] = 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), - [sym_preproc_directive] = ACTIONS(3111), - [anon_sym_LPAREN2] = ACTIONS(3113), - [anon_sym_TILDE] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3113), - [anon_sym_AMP_AMP] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym___extension__] = ACTIONS(3111), - [anon_sym_typedef] = ACTIONS(3111), - [anon_sym_extern] = ACTIONS(3111), - [anon_sym___attribute__] = 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_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_mutable] = ACTIONS(3111), - [anon_sym_constinit] = ACTIONS(3111), - [anon_sym_consteval] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3111), - [anon_sym_decltype] = ACTIONS(3111), - [anon_sym_virtual] = ACTIONS(3111), - [anon_sym_alignas] = ACTIONS(3111), - [anon_sym_explicit] = ACTIONS(3111), - [anon_sym_typename] = ACTIONS(3111), - [anon_sym_template] = ACTIONS(3111), - [anon_sym_operator] = ACTIONS(3111), - [anon_sym_friend] = ACTIONS(3111), - [anon_sym_public] = ACTIONS(3111), - [anon_sym_private] = ACTIONS(3111), - [anon_sym_protected] = ACTIONS(3111), - [anon_sym_using] = ACTIONS(3111), - [anon_sym_static_assert] = ACTIONS(3111), - }, - [2754] = { - [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), - [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___extension__] = ACTIONS(3115), - [anon_sym_typedef] = ACTIONS(3115), - [anon_sym_extern] = ACTIONS(3115), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3115), - [anon_sym_constinit] = ACTIONS(3115), - [anon_sym_consteval] = 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_virtual] = ACTIONS(3115), - [anon_sym_alignas] = ACTIONS(3115), - [anon_sym_explicit] = ACTIONS(3115), - [anon_sym_typename] = ACTIONS(3115), - [anon_sym_template] = ACTIONS(3115), - [anon_sym_operator] = ACTIONS(3115), - [anon_sym_friend] = ACTIONS(3115), - [anon_sym_public] = ACTIONS(3115), - [anon_sym_private] = ACTIONS(3115), - [anon_sym_protected] = ACTIONS(3115), - [anon_sym_using] = ACTIONS(3115), - [anon_sym_static_assert] = ACTIONS(3115), - }, - [2755] = { - [sym_identifier] = ACTIONS(3073), - [aux_sym_preproc_def_token1] = ACTIONS(3073), - [aux_sym_preproc_if_token1] = ACTIONS(3073), - [aux_sym_preproc_if_token2] = ACTIONS(3073), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3073), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3073), - [aux_sym_preproc_else_token1] = ACTIONS(3073), - [aux_sym_preproc_elif_token1] = ACTIONS(3073), - [sym_preproc_directive] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_TILDE] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_AMP_AMP] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym___extension__] = ACTIONS(3073), - [anon_sym_typedef] = ACTIONS(3073), - [anon_sym_extern] = ACTIONS(3073), - [anon_sym___attribute__] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3075), - [anon_sym___declspec] = ACTIONS(3073), - [anon_sym___based] = ACTIONS(3073), - [anon_sym_signed] = ACTIONS(3073), - [anon_sym_unsigned] = ACTIONS(3073), - [anon_sym_long] = ACTIONS(3073), - [anon_sym_short] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_register] = ACTIONS(3073), - [anon_sym_inline] = ACTIONS(3073), - [anon_sym___inline] = ACTIONS(3073), - [anon_sym___inline__] = ACTIONS(3073), - [anon_sym___forceinline] = ACTIONS(3073), - [anon_sym_thread_local] = ACTIONS(3073), - [anon_sym___thread] = ACTIONS(3073), - [anon_sym_const] = ACTIONS(3073), - [anon_sym_constexpr] = ACTIONS(3073), - [anon_sym_volatile] = ACTIONS(3073), - [anon_sym_restrict] = ACTIONS(3073), - [anon_sym___restrict__] = ACTIONS(3073), - [anon_sym__Atomic] = ACTIONS(3073), - [anon_sym__Noreturn] = ACTIONS(3073), - [anon_sym_noreturn] = ACTIONS(3073), - [anon_sym_mutable] = ACTIONS(3073), - [anon_sym_constinit] = ACTIONS(3073), - [anon_sym_consteval] = ACTIONS(3073), - [sym_primitive_type] = ACTIONS(3073), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3073), - [anon_sym_struct] = ACTIONS(3073), - [anon_sym_union] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3073), - [anon_sym_decltype] = ACTIONS(3073), - [anon_sym_virtual] = ACTIONS(3073), - [anon_sym_alignas] = ACTIONS(3073), - [anon_sym_explicit] = ACTIONS(3073), - [anon_sym_typename] = ACTIONS(3073), - [anon_sym_template] = ACTIONS(3073), - [anon_sym_operator] = ACTIONS(3073), - [anon_sym_friend] = ACTIONS(3073), - [anon_sym_public] = ACTIONS(3073), - [anon_sym_private] = ACTIONS(3073), - [anon_sym_protected] = ACTIONS(3073), - [anon_sym_using] = ACTIONS(3073), - [anon_sym_static_assert] = ACTIONS(3073), - }, - [2756] = { - [sym_identifier] = ACTIONS(3031), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token2] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3031), - [aux_sym_preproc_else_token1] = ACTIONS(3031), - [aux_sym_preproc_elif_token1] = ACTIONS(3031), - [sym_preproc_directive] = ACTIONS(3031), - [anon_sym_LPAREN2] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym___extension__] = ACTIONS(3031), - [anon_sym_typedef] = ACTIONS(3031), - [anon_sym_extern] = ACTIONS(3031), - [anon_sym___attribute__] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3033), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3033), - [anon_sym___declspec] = ACTIONS(3031), - [anon_sym___based] = ACTIONS(3031), - [anon_sym_signed] = ACTIONS(3031), - [anon_sym_unsigned] = ACTIONS(3031), - [anon_sym_long] = ACTIONS(3031), - [anon_sym_short] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_static] = ACTIONS(3031), - [anon_sym_register] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym___inline] = ACTIONS(3031), - [anon_sym___inline__] = ACTIONS(3031), - [anon_sym___forceinline] = ACTIONS(3031), - [anon_sym_thread_local] = ACTIONS(3031), - [anon_sym___thread] = ACTIONS(3031), - [anon_sym_const] = ACTIONS(3031), - [anon_sym_constexpr] = ACTIONS(3031), - [anon_sym_volatile] = ACTIONS(3031), - [anon_sym_restrict] = ACTIONS(3031), - [anon_sym___restrict__] = ACTIONS(3031), - [anon_sym__Atomic] = ACTIONS(3031), - [anon_sym__Noreturn] = ACTIONS(3031), - [anon_sym_noreturn] = ACTIONS(3031), - [anon_sym_mutable] = ACTIONS(3031), - [anon_sym_constinit] = ACTIONS(3031), - [anon_sym_consteval] = ACTIONS(3031), - [sym_primitive_type] = ACTIONS(3031), - [anon_sym_enum] = ACTIONS(3031), - [anon_sym_class] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_union] = ACTIONS(3031), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3031), - [anon_sym_decltype] = ACTIONS(3031), - [anon_sym_virtual] = ACTIONS(3031), - [anon_sym_alignas] = ACTIONS(3031), - [anon_sym_explicit] = ACTIONS(3031), - [anon_sym_typename] = ACTIONS(3031), - [anon_sym_template] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_friend] = ACTIONS(3031), - [anon_sym_public] = ACTIONS(3031), - [anon_sym_private] = ACTIONS(3031), - [anon_sym_protected] = ACTIONS(3031), - [anon_sym_using] = ACTIONS(3031), - [anon_sym_static_assert] = ACTIONS(3031), - }, - [2757] = { - [sym_identifier] = ACTIONS(3450), - [aux_sym_preproc_def_token1] = ACTIONS(3450), - [aux_sym_preproc_if_token1] = ACTIONS(3450), - [aux_sym_preproc_if_token2] = ACTIONS(3450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3450), - [aux_sym_preproc_else_token1] = ACTIONS(3450), - [aux_sym_preproc_elif_token1] = ACTIONS(3450), - [sym_preproc_directive] = ACTIONS(3450), - [anon_sym_LPAREN2] = ACTIONS(3452), - [anon_sym_TILDE] = ACTIONS(3452), - [anon_sym_STAR] = ACTIONS(3452), - [anon_sym_AMP_AMP] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3450), - [anon_sym___extension__] = ACTIONS(3450), - [anon_sym_typedef] = ACTIONS(3450), - [anon_sym_extern] = ACTIONS(3450), - [anon_sym___attribute__] = ACTIONS(3450), - [anon_sym_COLON_COLON] = ACTIONS(3452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3452), - [anon_sym___declspec] = ACTIONS(3450), - [anon_sym___based] = ACTIONS(3450), - [anon_sym_signed] = ACTIONS(3450), - [anon_sym_unsigned] = ACTIONS(3450), - [anon_sym_long] = ACTIONS(3450), - [anon_sym_short] = ACTIONS(3450), - [anon_sym_LBRACK] = ACTIONS(3450), - [anon_sym_static] = ACTIONS(3450), - [anon_sym_register] = ACTIONS(3450), - [anon_sym_inline] = ACTIONS(3450), - [anon_sym___inline] = ACTIONS(3450), - [anon_sym___inline__] = ACTIONS(3450), - [anon_sym___forceinline] = ACTIONS(3450), - [anon_sym_thread_local] = ACTIONS(3450), - [anon_sym___thread] = ACTIONS(3450), - [anon_sym_const] = ACTIONS(3450), - [anon_sym_constexpr] = ACTIONS(3450), - [anon_sym_volatile] = ACTIONS(3450), - [anon_sym_restrict] = ACTIONS(3450), - [anon_sym___restrict__] = ACTIONS(3450), - [anon_sym__Atomic] = ACTIONS(3450), - [anon_sym__Noreturn] = ACTIONS(3450), - [anon_sym_noreturn] = ACTIONS(3450), - [anon_sym_mutable] = ACTIONS(3450), - [anon_sym_constinit] = ACTIONS(3450), - [anon_sym_consteval] = ACTIONS(3450), - [sym_primitive_type] = ACTIONS(3450), - [anon_sym_enum] = ACTIONS(3450), - [anon_sym_class] = ACTIONS(3450), - [anon_sym_struct] = ACTIONS(3450), - [anon_sym_union] = ACTIONS(3450), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3450), - [anon_sym_decltype] = ACTIONS(3450), - [anon_sym_virtual] = ACTIONS(3450), - [anon_sym_alignas] = ACTIONS(3450), - [anon_sym_explicit] = ACTIONS(3450), - [anon_sym_typename] = ACTIONS(3450), - [anon_sym_template] = ACTIONS(3450), - [anon_sym_operator] = ACTIONS(3450), - [anon_sym_friend] = ACTIONS(3450), - [anon_sym_public] = ACTIONS(3450), - [anon_sym_private] = ACTIONS(3450), - [anon_sym_protected] = ACTIONS(3450), - [anon_sym_using] = ACTIONS(3450), - [anon_sym_static_assert] = ACTIONS(3450), - }, - [2758] = { - [sym_identifier] = 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), - [sym_preproc_directive] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3011), - [anon_sym___extension__] = ACTIONS(3011), - [anon_sym_typedef] = ACTIONS(3011), - [anon_sym_extern] = ACTIONS(3011), - [anon_sym___attribute__] = 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_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_mutable] = ACTIONS(3011), - [anon_sym_constinit] = ACTIONS(3011), - [anon_sym_consteval] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3011), - [anon_sym_decltype] = ACTIONS(3011), - [anon_sym_virtual] = ACTIONS(3011), - [anon_sym_alignas] = ACTIONS(3011), - [anon_sym_explicit] = ACTIONS(3011), - [anon_sym_typename] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3011), - [anon_sym_operator] = ACTIONS(3011), - [anon_sym_friend] = ACTIONS(3011), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_using] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3011), - }, - [2759] = { - [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), - [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___extension__] = ACTIONS(3003), - [anon_sym_typedef] = ACTIONS(3003), - [anon_sym_extern] = ACTIONS(3003), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3003), - [anon_sym_constinit] = ACTIONS(3003), - [anon_sym_consteval] = 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_virtual] = ACTIONS(3003), - [anon_sym_alignas] = ACTIONS(3003), - [anon_sym_explicit] = ACTIONS(3003), - [anon_sym_typename] = ACTIONS(3003), - [anon_sym_template] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_friend] = ACTIONS(3003), - [anon_sym_public] = ACTIONS(3003), - [anon_sym_private] = ACTIONS(3003), - [anon_sym_protected] = ACTIONS(3003), - [anon_sym_using] = ACTIONS(3003), - [anon_sym_static_assert] = ACTIONS(3003), - }, - [2760] = { - [sym_identifier] = ACTIONS(2989), - [aux_sym_preproc_def_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token2] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), - [aux_sym_preproc_else_token1] = ACTIONS(2989), - [aux_sym_preproc_elif_token1] = ACTIONS(2989), - [sym_preproc_directive] = ACTIONS(2989), - [anon_sym_LPAREN2] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym___extension__] = ACTIONS(2989), - [anon_sym_typedef] = ACTIONS(2989), - [anon_sym_extern] = ACTIONS(2989), - [anon_sym___attribute__] = ACTIONS(2989), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), - [anon_sym___declspec] = ACTIONS(2989), - [anon_sym___based] = ACTIONS(2989), - [anon_sym_signed] = ACTIONS(2989), - [anon_sym_unsigned] = ACTIONS(2989), - [anon_sym_long] = ACTIONS(2989), - [anon_sym_short] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_register] = ACTIONS(2989), - [anon_sym_inline] = ACTIONS(2989), - [anon_sym___inline] = ACTIONS(2989), - [anon_sym___inline__] = ACTIONS(2989), - [anon_sym___forceinline] = ACTIONS(2989), - [anon_sym_thread_local] = ACTIONS(2989), - [anon_sym___thread] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_constexpr] = ACTIONS(2989), - [anon_sym_volatile] = ACTIONS(2989), - [anon_sym_restrict] = ACTIONS(2989), - [anon_sym___restrict__] = ACTIONS(2989), - [anon_sym__Atomic] = ACTIONS(2989), - [anon_sym__Noreturn] = ACTIONS(2989), - [anon_sym_noreturn] = ACTIONS(2989), - [anon_sym_mutable] = ACTIONS(2989), - [anon_sym_constinit] = ACTIONS(2989), - [anon_sym_consteval] = ACTIONS(2989), - [sym_primitive_type] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_class] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2989), - [anon_sym_decltype] = ACTIONS(2989), - [anon_sym_virtual] = ACTIONS(2989), - [anon_sym_alignas] = ACTIONS(2989), - [anon_sym_explicit] = ACTIONS(2989), - [anon_sym_typename] = ACTIONS(2989), - [anon_sym_template] = ACTIONS(2989), - [anon_sym_operator] = ACTIONS(2989), - [anon_sym_friend] = ACTIONS(2989), - [anon_sym_public] = ACTIONS(2989), - [anon_sym_private] = ACTIONS(2989), - [anon_sym_protected] = ACTIONS(2989), - [anon_sym_using] = ACTIONS(2989), - [anon_sym_static_assert] = ACTIONS(2989), - }, - [2761] = { - [sym_identifier] = ACTIONS(2844), - [aux_sym_preproc_def_token1] = ACTIONS(2844), - [aux_sym_preproc_if_token1] = ACTIONS(2844), - [aux_sym_preproc_if_token2] = ACTIONS(2844), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2844), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2844), - [aux_sym_preproc_else_token1] = ACTIONS(2844), - [aux_sym_preproc_elif_token1] = ACTIONS(2844), - [sym_preproc_directive] = ACTIONS(2844), - [anon_sym_LPAREN2] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2844), - [anon_sym___extension__] = ACTIONS(2844), - [anon_sym_typedef] = ACTIONS(2844), - [anon_sym_extern] = ACTIONS(2844), - [anon_sym___attribute__] = ACTIONS(2844), - [anon_sym_COLON_COLON] = ACTIONS(2846), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2846), - [anon_sym___declspec] = ACTIONS(2844), - [anon_sym___based] = ACTIONS(2844), - [anon_sym_signed] = ACTIONS(2844), - [anon_sym_unsigned] = ACTIONS(2844), - [anon_sym_long] = ACTIONS(2844), - [anon_sym_short] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_static] = ACTIONS(2844), - [anon_sym_register] = ACTIONS(2844), - [anon_sym_inline] = ACTIONS(2844), - [anon_sym___inline] = ACTIONS(2844), - [anon_sym___inline__] = ACTIONS(2844), - [anon_sym___forceinline] = ACTIONS(2844), - [anon_sym_thread_local] = ACTIONS(2844), - [anon_sym___thread] = ACTIONS(2844), - [anon_sym_const] = ACTIONS(2844), - [anon_sym_constexpr] = ACTIONS(2844), - [anon_sym_volatile] = ACTIONS(2844), - [anon_sym_restrict] = ACTIONS(2844), - [anon_sym___restrict__] = ACTIONS(2844), - [anon_sym__Atomic] = ACTIONS(2844), - [anon_sym__Noreturn] = ACTIONS(2844), - [anon_sym_noreturn] = ACTIONS(2844), - [anon_sym_mutable] = ACTIONS(2844), - [anon_sym_constinit] = ACTIONS(2844), - [anon_sym_consteval] = ACTIONS(2844), - [sym_primitive_type] = ACTIONS(2844), - [anon_sym_enum] = ACTIONS(2844), - [anon_sym_class] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(2844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2844), - [anon_sym_decltype] = ACTIONS(2844), - [anon_sym_virtual] = ACTIONS(2844), - [anon_sym_alignas] = ACTIONS(2844), - [anon_sym_explicit] = ACTIONS(2844), - [anon_sym_typename] = ACTIONS(2844), - [anon_sym_template] = ACTIONS(2844), - [anon_sym_operator] = ACTIONS(2844), - [anon_sym_friend] = ACTIONS(2844), - [anon_sym_public] = ACTIONS(2844), - [anon_sym_private] = ACTIONS(2844), - [anon_sym_protected] = ACTIONS(2844), - [anon_sym_using] = ACTIONS(2844), - [anon_sym_static_assert] = ACTIONS(2844), - }, - [2762] = { - [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), - [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___extension__] = ACTIONS(2977), - [anon_sym_typedef] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym___attribute__] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2979), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), - [anon_sym___declspec] = ACTIONS(2977), - [anon_sym___based] = ACTIONS(2977), - [anon_sym_signed] = ACTIONS(2977), - [anon_sym_unsigned] = ACTIONS(2977), - [anon_sym_long] = ACTIONS(2977), - [anon_sym_short] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_static] = ACTIONS(2977), - [anon_sym_register] = ACTIONS(2977), - [anon_sym_inline] = ACTIONS(2977), - [anon_sym___inline] = ACTIONS(2977), - [anon_sym___inline__] = ACTIONS(2977), - [anon_sym___forceinline] = ACTIONS(2977), - [anon_sym_thread_local] = ACTIONS(2977), - [anon_sym___thread] = ACTIONS(2977), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_constexpr] = ACTIONS(2977), - [anon_sym_volatile] = ACTIONS(2977), - [anon_sym_restrict] = ACTIONS(2977), - [anon_sym___restrict__] = ACTIONS(2977), - [anon_sym__Atomic] = ACTIONS(2977), - [anon_sym__Noreturn] = ACTIONS(2977), - [anon_sym_noreturn] = ACTIONS(2977), - [anon_sym_mutable] = ACTIONS(2977), - [anon_sym_constinit] = ACTIONS(2977), - [anon_sym_consteval] = ACTIONS(2977), - [sym_primitive_type] = ACTIONS(2977), - [anon_sym_enum] = ACTIONS(2977), - [anon_sym_class] = ACTIONS(2977), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_union] = ACTIONS(2977), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2977), - [anon_sym_decltype] = ACTIONS(2977), - [anon_sym_virtual] = ACTIONS(2977), - [anon_sym_alignas] = ACTIONS(2977), - [anon_sym_explicit] = ACTIONS(2977), - [anon_sym_typename] = ACTIONS(2977), - [anon_sym_template] = ACTIONS(2977), - [anon_sym_operator] = ACTIONS(2977), - [anon_sym_friend] = ACTIONS(2977), - [anon_sym_public] = ACTIONS(2977), - [anon_sym_private] = ACTIONS(2977), - [anon_sym_protected] = ACTIONS(2977), - [anon_sym_using] = ACTIONS(2977), - [anon_sym_static_assert] = ACTIONS(2977), - }, - [2763] = { - [sym_identifier] = ACTIONS(2965), - [aux_sym_preproc_def_token1] = ACTIONS(2965), - [aux_sym_preproc_if_token1] = ACTIONS(2965), - [aux_sym_preproc_if_token2] = ACTIONS(2965), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), - [aux_sym_preproc_else_token1] = ACTIONS(2965), - [aux_sym_preproc_elif_token1] = ACTIONS(2965), - [sym_preproc_directive] = ACTIONS(2965), - [anon_sym_LPAREN2] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_AMP_AMP] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym___extension__] = ACTIONS(2965), - [anon_sym_typedef] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2965), - [anon_sym___attribute__] = ACTIONS(2965), - [anon_sym_COLON_COLON] = ACTIONS(2967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), - [anon_sym___declspec] = ACTIONS(2965), - [anon_sym___based] = ACTIONS(2965), - [anon_sym_signed] = ACTIONS(2965), - [anon_sym_unsigned] = ACTIONS(2965), - [anon_sym_long] = ACTIONS(2965), - [anon_sym_short] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2965), - [anon_sym_static] = ACTIONS(2965), - [anon_sym_register] = ACTIONS(2965), - [anon_sym_inline] = ACTIONS(2965), - [anon_sym___inline] = ACTIONS(2965), - [anon_sym___inline__] = ACTIONS(2965), - [anon_sym___forceinline] = ACTIONS(2965), - [anon_sym_thread_local] = ACTIONS(2965), - [anon_sym___thread] = ACTIONS(2965), - [anon_sym_const] = ACTIONS(2965), - [anon_sym_constexpr] = ACTIONS(2965), - [anon_sym_volatile] = ACTIONS(2965), - [anon_sym_restrict] = ACTIONS(2965), - [anon_sym___restrict__] = ACTIONS(2965), - [anon_sym__Atomic] = ACTIONS(2965), - [anon_sym__Noreturn] = ACTIONS(2965), - [anon_sym_noreturn] = ACTIONS(2965), - [anon_sym_mutable] = ACTIONS(2965), - [anon_sym_constinit] = ACTIONS(2965), - [anon_sym_consteval] = ACTIONS(2965), - [sym_primitive_type] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2965), - [anon_sym_class] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_union] = ACTIONS(2965), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2965), - [anon_sym_decltype] = ACTIONS(2965), - [anon_sym_virtual] = ACTIONS(2965), - [anon_sym_alignas] = ACTIONS(2965), - [anon_sym_explicit] = ACTIONS(2965), - [anon_sym_typename] = ACTIONS(2965), - [anon_sym_template] = ACTIONS(2965), - [anon_sym_operator] = ACTIONS(2965), - [anon_sym_friend] = ACTIONS(2965), - [anon_sym_public] = ACTIONS(2965), - [anon_sym_private] = ACTIONS(2965), - [anon_sym_protected] = ACTIONS(2965), - [anon_sym_using] = ACTIONS(2965), - [anon_sym_static_assert] = ACTIONS(2965), - }, - [2764] = { - [sym_identifier] = ACTIONS(3224), - [aux_sym_preproc_def_token1] = ACTIONS(3224), - [aux_sym_preproc_if_token1] = ACTIONS(3224), - [aux_sym_preproc_if_token2] = ACTIONS(3224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3224), - [aux_sym_preproc_else_token1] = ACTIONS(3224), - [aux_sym_preproc_elif_token1] = ACTIONS(3224), - [sym_preproc_directive] = ACTIONS(3224), - [anon_sym_LPAREN2] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3226), - [anon_sym_AMP_AMP] = ACTIONS(3226), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym___extension__] = ACTIONS(3224), - [anon_sym_typedef] = ACTIONS(3224), - [anon_sym_extern] = ACTIONS(3224), - [anon_sym___attribute__] = ACTIONS(3224), - [anon_sym_COLON_COLON] = ACTIONS(3226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3226), - [anon_sym___declspec] = ACTIONS(3224), - [anon_sym___based] = ACTIONS(3224), - [anon_sym_signed] = ACTIONS(3224), - [anon_sym_unsigned] = ACTIONS(3224), - [anon_sym_long] = ACTIONS(3224), - [anon_sym_short] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_register] = ACTIONS(3224), - [anon_sym_inline] = ACTIONS(3224), - [anon_sym___inline] = ACTIONS(3224), - [anon_sym___inline__] = ACTIONS(3224), - [anon_sym___forceinline] = ACTIONS(3224), - [anon_sym_thread_local] = ACTIONS(3224), - [anon_sym___thread] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_constexpr] = ACTIONS(3224), - [anon_sym_volatile] = ACTIONS(3224), - [anon_sym_restrict] = ACTIONS(3224), - [anon_sym___restrict__] = ACTIONS(3224), - [anon_sym__Atomic] = ACTIONS(3224), - [anon_sym__Noreturn] = ACTIONS(3224), - [anon_sym_noreturn] = ACTIONS(3224), - [anon_sym_mutable] = ACTIONS(3224), - [anon_sym_constinit] = ACTIONS(3224), - [anon_sym_consteval] = ACTIONS(3224), - [sym_primitive_type] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_struct] = ACTIONS(3224), - [anon_sym_union] = ACTIONS(3224), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3224), - [anon_sym_decltype] = ACTIONS(3224), - [anon_sym_virtual] = ACTIONS(3224), - [anon_sym_alignas] = ACTIONS(3224), - [anon_sym_explicit] = ACTIONS(3224), - [anon_sym_typename] = ACTIONS(3224), - [anon_sym_template] = ACTIONS(3224), - [anon_sym_operator] = ACTIONS(3224), - [anon_sym_friend] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_using] = ACTIONS(3224), - [anon_sym_static_assert] = ACTIONS(3224), - }, - [2765] = { - [sym_identifier] = ACTIONS(2869), - [aux_sym_preproc_def_token1] = ACTIONS(2869), - [aux_sym_preproc_if_token1] = ACTIONS(2869), - [aux_sym_preproc_if_token2] = ACTIONS(2869), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2869), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2869), - [aux_sym_preproc_else_token1] = ACTIONS(2869), - [aux_sym_preproc_elif_token1] = ACTIONS(2869), - [sym_preproc_directive] = ACTIONS(2869), - [anon_sym_LPAREN2] = ACTIONS(2871), - [anon_sym_TILDE] = ACTIONS(2871), - [anon_sym_STAR] = ACTIONS(2871), - [anon_sym_AMP_AMP] = ACTIONS(2871), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym___extension__] = ACTIONS(2869), - [anon_sym_typedef] = ACTIONS(2869), - [anon_sym_extern] = ACTIONS(2869), - [anon_sym___attribute__] = ACTIONS(2869), - [anon_sym_COLON_COLON] = ACTIONS(2871), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2871), - [anon_sym___declspec] = ACTIONS(2869), - [anon_sym___based] = ACTIONS(2869), - [anon_sym_signed] = ACTIONS(2869), - [anon_sym_unsigned] = ACTIONS(2869), - [anon_sym_long] = ACTIONS(2869), - [anon_sym_short] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_static] = ACTIONS(2869), - [anon_sym_register] = ACTIONS(2869), - [anon_sym_inline] = ACTIONS(2869), - [anon_sym___inline] = ACTIONS(2869), - [anon_sym___inline__] = ACTIONS(2869), - [anon_sym___forceinline] = ACTIONS(2869), - [anon_sym_thread_local] = ACTIONS(2869), - [anon_sym___thread] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2869), - [anon_sym_constexpr] = ACTIONS(2869), - [anon_sym_volatile] = ACTIONS(2869), - [anon_sym_restrict] = ACTIONS(2869), - [anon_sym___restrict__] = ACTIONS(2869), - [anon_sym__Atomic] = ACTIONS(2869), - [anon_sym__Noreturn] = ACTIONS(2869), - [anon_sym_noreturn] = ACTIONS(2869), - [anon_sym_mutable] = ACTIONS(2869), - [anon_sym_constinit] = ACTIONS(2869), - [anon_sym_consteval] = ACTIONS(2869), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2869), - [anon_sym_class] = ACTIONS(2869), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_union] = ACTIONS(2869), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2869), - [anon_sym_decltype] = ACTIONS(2869), - [anon_sym_virtual] = ACTIONS(2869), - [anon_sym_alignas] = ACTIONS(2869), - [anon_sym_explicit] = ACTIONS(2869), - [anon_sym_typename] = ACTIONS(2869), - [anon_sym_template] = ACTIONS(2869), - [anon_sym_operator] = ACTIONS(2869), - [anon_sym_friend] = ACTIONS(2869), - [anon_sym_public] = ACTIONS(2869), - [anon_sym_private] = ACTIONS(2869), - [anon_sym_protected] = ACTIONS(2869), - [anon_sym_using] = ACTIONS(2869), - [anon_sym_static_assert] = ACTIONS(2869), - }, - [2766] = { - [sym_identifier] = ACTIONS(2873), - [aux_sym_preproc_def_token1] = ACTIONS(2873), - [aux_sym_preproc_if_token1] = ACTIONS(2873), - [aux_sym_preproc_if_token2] = ACTIONS(2873), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2873), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2873), - [aux_sym_preproc_else_token1] = ACTIONS(2873), - [aux_sym_preproc_elif_token1] = ACTIONS(2873), - [sym_preproc_directive] = ACTIONS(2873), - [anon_sym_LPAREN2] = ACTIONS(2875), - [anon_sym_TILDE] = ACTIONS(2875), - [anon_sym_STAR] = ACTIONS(2875), - [anon_sym_AMP_AMP] = ACTIONS(2875), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym___extension__] = ACTIONS(2873), - [anon_sym_typedef] = ACTIONS(2873), - [anon_sym_extern] = ACTIONS(2873), - [anon_sym___attribute__] = ACTIONS(2873), - [anon_sym_COLON_COLON] = ACTIONS(2875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2875), - [anon_sym___declspec] = ACTIONS(2873), - [anon_sym___based] = ACTIONS(2873), - [anon_sym_signed] = ACTIONS(2873), - [anon_sym_unsigned] = ACTIONS(2873), - [anon_sym_long] = ACTIONS(2873), - [anon_sym_short] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_register] = ACTIONS(2873), - [anon_sym_inline] = ACTIONS(2873), - [anon_sym___inline] = ACTIONS(2873), - [anon_sym___inline__] = ACTIONS(2873), - [anon_sym___forceinline] = ACTIONS(2873), - [anon_sym_thread_local] = ACTIONS(2873), - [anon_sym___thread] = ACTIONS(2873), - [anon_sym_const] = ACTIONS(2873), - [anon_sym_constexpr] = ACTIONS(2873), - [anon_sym_volatile] = ACTIONS(2873), - [anon_sym_restrict] = ACTIONS(2873), - [anon_sym___restrict__] = ACTIONS(2873), - [anon_sym__Atomic] = ACTIONS(2873), - [anon_sym__Noreturn] = ACTIONS(2873), - [anon_sym_noreturn] = ACTIONS(2873), - [anon_sym_mutable] = ACTIONS(2873), - [anon_sym_constinit] = ACTIONS(2873), - [anon_sym_consteval] = ACTIONS(2873), - [sym_primitive_type] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2873), - [anon_sym_union] = ACTIONS(2873), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2873), - [anon_sym_decltype] = ACTIONS(2873), - [anon_sym_virtual] = ACTIONS(2873), - [anon_sym_alignas] = ACTIONS(2873), - [anon_sym_explicit] = ACTIONS(2873), - [anon_sym_typename] = ACTIONS(2873), - [anon_sym_template] = ACTIONS(2873), - [anon_sym_operator] = ACTIONS(2873), - [anon_sym_friend] = ACTIONS(2873), - [anon_sym_public] = ACTIONS(2873), - [anon_sym_private] = ACTIONS(2873), - [anon_sym_protected] = ACTIONS(2873), - [anon_sym_using] = ACTIONS(2873), - [anon_sym_static_assert] = ACTIONS(2873), - }, - [2767] = { - [sym_identifier] = ACTIONS(2881), - [aux_sym_preproc_def_token1] = ACTIONS(2881), - [aux_sym_preproc_if_token1] = ACTIONS(2881), - [aux_sym_preproc_if_token2] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2881), - [aux_sym_preproc_else_token1] = ACTIONS(2881), - [aux_sym_preproc_elif_token1] = ACTIONS(2881), - [sym_preproc_directive] = ACTIONS(2881), - [anon_sym_LPAREN2] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2881), - [anon_sym___extension__] = ACTIONS(2881), - [anon_sym_typedef] = ACTIONS(2881), - [anon_sym_extern] = ACTIONS(2881), - [anon_sym___attribute__] = ACTIONS(2881), - [anon_sym_COLON_COLON] = ACTIONS(2883), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2883), - [anon_sym___declspec] = ACTIONS(2881), - [anon_sym___based] = ACTIONS(2881), - [anon_sym_signed] = ACTIONS(2881), - [anon_sym_unsigned] = ACTIONS(2881), - [anon_sym_long] = ACTIONS(2881), - [anon_sym_short] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_register] = ACTIONS(2881), - [anon_sym_inline] = ACTIONS(2881), - [anon_sym___inline] = ACTIONS(2881), - [anon_sym___inline__] = ACTIONS(2881), - [anon_sym___forceinline] = ACTIONS(2881), - [anon_sym_thread_local] = ACTIONS(2881), - [anon_sym___thread] = ACTIONS(2881), - [anon_sym_const] = ACTIONS(2881), - [anon_sym_constexpr] = ACTIONS(2881), - [anon_sym_volatile] = ACTIONS(2881), - [anon_sym_restrict] = ACTIONS(2881), - [anon_sym___restrict__] = ACTIONS(2881), - [anon_sym__Atomic] = ACTIONS(2881), - [anon_sym__Noreturn] = ACTIONS(2881), - [anon_sym_noreturn] = ACTIONS(2881), - [anon_sym_mutable] = ACTIONS(2881), - [anon_sym_constinit] = ACTIONS(2881), - [anon_sym_consteval] = ACTIONS(2881), - [sym_primitive_type] = ACTIONS(2881), - [anon_sym_enum] = ACTIONS(2881), - [anon_sym_class] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2881), - [anon_sym_union] = ACTIONS(2881), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2881), - [anon_sym_decltype] = ACTIONS(2881), - [anon_sym_virtual] = ACTIONS(2881), - [anon_sym_alignas] = ACTIONS(2881), - [anon_sym_explicit] = ACTIONS(2881), - [anon_sym_typename] = ACTIONS(2881), - [anon_sym_template] = ACTIONS(2881), - [anon_sym_operator] = ACTIONS(2881), - [anon_sym_friend] = ACTIONS(2881), - [anon_sym_public] = ACTIONS(2881), - [anon_sym_private] = ACTIONS(2881), - [anon_sym_protected] = ACTIONS(2881), - [anon_sym_using] = ACTIONS(2881), - [anon_sym_static_assert] = ACTIONS(2881), - }, - [2768] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5555), - [anon_sym_COMMA] = ACTIONS(5555), - [anon_sym_RPAREN] = ACTIONS(5555), - [anon_sym_LPAREN2] = ACTIONS(5555), - [anon_sym_DASH] = ACTIONS(5553), - [anon_sym_PLUS] = ACTIONS(5553), - [anon_sym_STAR] = ACTIONS(5553), - [anon_sym_SLASH] = ACTIONS(5553), - [anon_sym_PERCENT] = ACTIONS(5553), - [anon_sym_PIPE_PIPE] = ACTIONS(5555), - [anon_sym_AMP_AMP] = ACTIONS(5555), - [anon_sym_PIPE] = ACTIONS(5553), - [anon_sym_CARET] = ACTIONS(5553), - [anon_sym_AMP] = ACTIONS(5553), - [anon_sym_EQ_EQ] = ACTIONS(5555), - [anon_sym_BANG_EQ] = ACTIONS(5555), - [anon_sym_GT] = ACTIONS(5553), - [anon_sym_GT_EQ] = ACTIONS(5555), - [anon_sym_LT_EQ] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(5553), - [anon_sym_LT_LT] = ACTIONS(5553), - [anon_sym_GT_GT] = ACTIONS(5553), - [anon_sym_SEMI] = ACTIONS(5555), - [anon_sym_RBRACE] = ACTIONS(5555), - [anon_sym_LBRACK] = ACTIONS(5555), - [anon_sym_RBRACK] = ACTIONS(5555), - [anon_sym_EQ] = ACTIONS(5553), - [anon_sym_COLON] = ACTIONS(5555), - [anon_sym_QMARK] = ACTIONS(5555), - [anon_sym_STAR_EQ] = ACTIONS(5555), - [anon_sym_SLASH_EQ] = ACTIONS(5555), - [anon_sym_PERCENT_EQ] = ACTIONS(5555), - [anon_sym_PLUS_EQ] = ACTIONS(5555), - [anon_sym_DASH_EQ] = ACTIONS(5555), - [anon_sym_LT_LT_EQ] = ACTIONS(5555), - [anon_sym_GT_GT_EQ] = ACTIONS(5555), - [anon_sym_AMP_EQ] = ACTIONS(5555), - [anon_sym_CARET_EQ] = ACTIONS(5555), - [anon_sym_PIPE_EQ] = ACTIONS(5555), - [anon_sym_and_eq] = ACTIONS(5553), - [anon_sym_or_eq] = ACTIONS(5553), - [anon_sym_xor_eq] = ACTIONS(5553), - [anon_sym_LT_EQ_GT] = ACTIONS(5555), - [anon_sym_or] = ACTIONS(5553), - [anon_sym_and] = ACTIONS(5553), - [anon_sym_bitor] = ACTIONS(5553), - [anon_sym_xor] = ACTIONS(5553), - [anon_sym_bitand] = ACTIONS(5553), - [anon_sym_not_eq] = ACTIONS(5553), - [anon_sym_DASH_DASH] = ACTIONS(5555), - [anon_sym_PLUS_PLUS] = ACTIONS(5555), - [anon_sym_DOT] = ACTIONS(5553), - [anon_sym_DOT_STAR] = ACTIONS(5555), - [anon_sym_DASH_GT] = ACTIONS(5555), - [anon_sym_L_DQUOTE] = ACTIONS(5555), - [anon_sym_u_DQUOTE] = ACTIONS(5555), - [anon_sym_U_DQUOTE] = ACTIONS(5555), - [anon_sym_u8_DQUOTE] = ACTIONS(5555), - [anon_sym_DQUOTE] = ACTIONS(5555), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5555), - [anon_sym_LR_DQUOTE] = ACTIONS(5555), - [anon_sym_uR_DQUOTE] = ACTIONS(5555), - [anon_sym_UR_DQUOTE] = ACTIONS(5555), - [anon_sym_u8R_DQUOTE] = ACTIONS(5555), - [sym_literal_suffix] = ACTIONS(5553), - }, - [2769] = { - [sym_identifier] = ACTIONS(2937), - [aux_sym_preproc_def_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token2] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), - [aux_sym_preproc_else_token1] = ACTIONS(2937), - [aux_sym_preproc_elif_token1] = ACTIONS(2937), - [sym_preproc_directive] = ACTIONS(2937), - [anon_sym_LPAREN2] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2937), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym_typedef] = ACTIONS(2937), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), - [anon_sym___declspec] = ACTIONS(2937), - [anon_sym___based] = ACTIONS(2937), - [anon_sym_signed] = ACTIONS(2937), - [anon_sym_unsigned] = ACTIONS(2937), - [anon_sym_long] = ACTIONS(2937), - [anon_sym_short] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(2937), - [anon_sym_register] = ACTIONS(2937), - [anon_sym_inline] = ACTIONS(2937), - [anon_sym___inline] = ACTIONS(2937), - [anon_sym___inline__] = ACTIONS(2937), - [anon_sym___forceinline] = ACTIONS(2937), - [anon_sym_thread_local] = ACTIONS(2937), - [anon_sym___thread] = ACTIONS(2937), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_class] = ACTIONS(2937), - [anon_sym_struct] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2937), - [anon_sym_decltype] = ACTIONS(2937), - [anon_sym_virtual] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2937), - [anon_sym_explicit] = ACTIONS(2937), - [anon_sym_typename] = ACTIONS(2937), - [anon_sym_template] = ACTIONS(2937), - [anon_sym_operator] = ACTIONS(2937), - [anon_sym_friend] = ACTIONS(2937), - [anon_sym_public] = ACTIONS(2937), - [anon_sym_private] = ACTIONS(2937), - [anon_sym_protected] = ACTIONS(2937), - [anon_sym_using] = ACTIONS(2937), - [anon_sym_static_assert] = ACTIONS(2937), - }, - [2770] = { - [sym_identifier] = ACTIONS(2949), - [aux_sym_preproc_def_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token2] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), - [aux_sym_preproc_else_token1] = ACTIONS(2949), - [aux_sym_preproc_elif_token1] = ACTIONS(2949), - [sym_preproc_directive] = ACTIONS(2949), - [anon_sym_LPAREN2] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2949), - [anon_sym___extension__] = ACTIONS(2949), - [anon_sym_typedef] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2949), - [anon_sym___attribute__] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), - [anon_sym___declspec] = ACTIONS(2949), - [anon_sym___based] = ACTIONS(2949), - [anon_sym_signed] = ACTIONS(2949), - [anon_sym_unsigned] = ACTIONS(2949), - [anon_sym_long] = ACTIONS(2949), - [anon_sym_short] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_register] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2949), - [anon_sym___inline] = ACTIONS(2949), - [anon_sym___inline__] = ACTIONS(2949), - [anon_sym___forceinline] = ACTIONS(2949), - [anon_sym_thread_local] = ACTIONS(2949), - [anon_sym___thread] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_constexpr] = ACTIONS(2949), - [anon_sym_volatile] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2949), - [anon_sym___restrict__] = ACTIONS(2949), - [anon_sym__Atomic] = ACTIONS(2949), - [anon_sym__Noreturn] = ACTIONS(2949), - [anon_sym_noreturn] = ACTIONS(2949), - [anon_sym_mutable] = ACTIONS(2949), - [anon_sym_constinit] = ACTIONS(2949), - [anon_sym_consteval] = ACTIONS(2949), - [sym_primitive_type] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2949), - [anon_sym_decltype] = ACTIONS(2949), - [anon_sym_virtual] = ACTIONS(2949), - [anon_sym_alignas] = ACTIONS(2949), - [anon_sym_explicit] = ACTIONS(2949), - [anon_sym_typename] = ACTIONS(2949), - [anon_sym_template] = ACTIONS(2949), - [anon_sym_operator] = ACTIONS(2949), - [anon_sym_friend] = ACTIONS(2949), - [anon_sym_public] = ACTIONS(2949), - [anon_sym_private] = ACTIONS(2949), - [anon_sym_protected] = ACTIONS(2949), - [anon_sym_using] = ACTIONS(2949), - [anon_sym_static_assert] = ACTIONS(2949), - }, - [2771] = { - [sym_identifier] = ACTIONS(2953), - [aux_sym_preproc_def_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token2] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2953), - [aux_sym_preproc_else_token1] = ACTIONS(2953), - [aux_sym_preproc_elif_token1] = ACTIONS(2953), - [sym_preproc_directive] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym___extension__] = ACTIONS(2953), - [anon_sym_typedef] = ACTIONS(2953), - [anon_sym_extern] = ACTIONS(2953), - [anon_sym___attribute__] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), - [anon_sym___declspec] = ACTIONS(2953), - [anon_sym___based] = ACTIONS(2953), - [anon_sym_signed] = ACTIONS(2953), - [anon_sym_unsigned] = ACTIONS(2953), - [anon_sym_long] = ACTIONS(2953), - [anon_sym_short] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2953), - [anon_sym_register] = ACTIONS(2953), - [anon_sym_inline] = ACTIONS(2953), - [anon_sym___inline] = ACTIONS(2953), - [anon_sym___inline__] = ACTIONS(2953), - [anon_sym___forceinline] = ACTIONS(2953), - [anon_sym_thread_local] = ACTIONS(2953), - [anon_sym___thread] = ACTIONS(2953), - [anon_sym_const] = ACTIONS(2953), - [anon_sym_constexpr] = ACTIONS(2953), - [anon_sym_volatile] = ACTIONS(2953), - [anon_sym_restrict] = ACTIONS(2953), - [anon_sym___restrict__] = ACTIONS(2953), - [anon_sym__Atomic] = ACTIONS(2953), - [anon_sym__Noreturn] = ACTIONS(2953), - [anon_sym_noreturn] = ACTIONS(2953), - [anon_sym_mutable] = ACTIONS(2953), - [anon_sym_constinit] = ACTIONS(2953), - [anon_sym_consteval] = ACTIONS(2953), - [sym_primitive_type] = ACTIONS(2953), - [anon_sym_enum] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2953), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_union] = ACTIONS(2953), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2953), - [anon_sym_decltype] = ACTIONS(2953), - [anon_sym_virtual] = ACTIONS(2953), - [anon_sym_alignas] = ACTIONS(2953), - [anon_sym_explicit] = ACTIONS(2953), - [anon_sym_typename] = ACTIONS(2953), - [anon_sym_template] = ACTIONS(2953), - [anon_sym_operator] = ACTIONS(2953), - [anon_sym_friend] = ACTIONS(2953), - [anon_sym_public] = ACTIONS(2953), - [anon_sym_private] = ACTIONS(2953), - [anon_sym_protected] = ACTIONS(2953), - [anon_sym_using] = ACTIONS(2953), - [anon_sym_static_assert] = ACTIONS(2953), - }, - [2772] = { - [sym_identifier] = ACTIONS(2961), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token2] = ACTIONS(2961), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2961), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2961), - [aux_sym_preproc_else_token1] = ACTIONS(2961), - [aux_sym_preproc_elif_token1] = ACTIONS(2961), - [sym_preproc_directive] = ACTIONS(2961), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym___extension__] = ACTIONS(2961), - [anon_sym_typedef] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym_COLON_COLON] = ACTIONS(2963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), - [anon_sym___declspec] = ACTIONS(2961), - [anon_sym___based] = ACTIONS(2961), - [anon_sym_signed] = ACTIONS(2961), - [anon_sym_unsigned] = ACTIONS(2961), - [anon_sym_long] = ACTIONS(2961), - [anon_sym_short] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_static] = ACTIONS(2961), - [anon_sym_register] = ACTIONS(2961), - [anon_sym_inline] = ACTIONS(2961), - [anon_sym___inline] = ACTIONS(2961), - [anon_sym___inline__] = ACTIONS(2961), - [anon_sym___forceinline] = ACTIONS(2961), - [anon_sym_thread_local] = ACTIONS(2961), - [anon_sym___thread] = ACTIONS(2961), - [anon_sym_const] = ACTIONS(2961), - [anon_sym_constexpr] = ACTIONS(2961), - [anon_sym_volatile] = ACTIONS(2961), - [anon_sym_restrict] = ACTIONS(2961), - [anon_sym___restrict__] = ACTIONS(2961), - [anon_sym__Atomic] = ACTIONS(2961), - [anon_sym__Noreturn] = ACTIONS(2961), - [anon_sym_noreturn] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [sym_primitive_type] = ACTIONS(2961), - [anon_sym_enum] = ACTIONS(2961), - [anon_sym_class] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_union] = ACTIONS(2961), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2961), - [anon_sym_decltype] = ACTIONS(2961), - [anon_sym_virtual] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym_explicit] = ACTIONS(2961), - [anon_sym_typename] = ACTIONS(2961), - [anon_sym_template] = ACTIONS(2961), - [anon_sym_operator] = ACTIONS(2961), - [anon_sym_friend] = ACTIONS(2961), - [anon_sym_public] = ACTIONS(2961), - [anon_sym_private] = ACTIONS(2961), - [anon_sym_protected] = ACTIONS(2961), - [anon_sym_using] = ACTIONS(2961), - [anon_sym_static_assert] = ACTIONS(2961), - }, - [2773] = { - [sym_identifier] = ACTIONS(3346), - [aux_sym_preproc_def_token1] = ACTIONS(3346), - [aux_sym_preproc_if_token1] = ACTIONS(3346), - [aux_sym_preproc_if_token2] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3346), - [aux_sym_preproc_else_token1] = ACTIONS(3346), - [aux_sym_preproc_elif_token1] = ACTIONS(3346), - [sym_preproc_directive] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_AMP_AMP] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym___extension__] = ACTIONS(3346), - [anon_sym_typedef] = ACTIONS(3346), - [anon_sym_extern] = ACTIONS(3346), - [anon_sym___attribute__] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3348), - [anon_sym___declspec] = ACTIONS(3346), - [anon_sym___based] = ACTIONS(3346), - [anon_sym_signed] = ACTIONS(3346), - [anon_sym_unsigned] = ACTIONS(3346), - [anon_sym_long] = ACTIONS(3346), - [anon_sym_short] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_register] = ACTIONS(3346), - [anon_sym_inline] = ACTIONS(3346), - [anon_sym___inline] = ACTIONS(3346), - [anon_sym___inline__] = ACTIONS(3346), - [anon_sym___forceinline] = ACTIONS(3346), - [anon_sym_thread_local] = ACTIONS(3346), - [anon_sym___thread] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_constexpr] = ACTIONS(3346), - [anon_sym_volatile] = ACTIONS(3346), - [anon_sym_restrict] = ACTIONS(3346), - [anon_sym___restrict__] = ACTIONS(3346), - [anon_sym__Atomic] = ACTIONS(3346), - [anon_sym__Noreturn] = ACTIONS(3346), - [anon_sym_noreturn] = ACTIONS(3346), - [anon_sym_mutable] = ACTIONS(3346), - [anon_sym_constinit] = ACTIONS(3346), - [anon_sym_consteval] = ACTIONS(3346), - [sym_primitive_type] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_struct] = ACTIONS(3346), - [anon_sym_union] = ACTIONS(3346), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3346), - [anon_sym_decltype] = ACTIONS(3346), - [anon_sym_virtual] = ACTIONS(3346), - [anon_sym_alignas] = ACTIONS(3346), - [anon_sym_explicit] = ACTIONS(3346), - [anon_sym_typename] = ACTIONS(3346), - [anon_sym_template] = ACTIONS(3346), - [anon_sym_operator] = ACTIONS(3346), - [anon_sym_friend] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3346), - [anon_sym_private] = ACTIONS(3346), - [anon_sym_protected] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_static_assert] = ACTIONS(3346), - }, - [2774] = { - [sym_identifier] = ACTIONS(3251), - [aux_sym_preproc_def_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token2] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3251), - [aux_sym_preproc_else_token1] = ACTIONS(3251), - [aux_sym_preproc_elif_token1] = ACTIONS(3251), - [sym_preproc_directive] = ACTIONS(3251), - [anon_sym_LPAREN2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_STAR] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym___extension__] = ACTIONS(3251), - [anon_sym_typedef] = ACTIONS(3251), - [anon_sym_extern] = ACTIONS(3251), - [anon_sym___attribute__] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(3253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3253), - [anon_sym___declspec] = ACTIONS(3251), - [anon_sym___based] = ACTIONS(3251), - [anon_sym_signed] = ACTIONS(3251), - [anon_sym_unsigned] = ACTIONS(3251), - [anon_sym_long] = ACTIONS(3251), - [anon_sym_short] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_register] = ACTIONS(3251), - [anon_sym_inline] = ACTIONS(3251), - [anon_sym___inline] = ACTIONS(3251), - [anon_sym___inline__] = ACTIONS(3251), - [anon_sym___forceinline] = ACTIONS(3251), - [anon_sym_thread_local] = ACTIONS(3251), - [anon_sym___thread] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_constexpr] = ACTIONS(3251), - [anon_sym_volatile] = ACTIONS(3251), - [anon_sym_restrict] = ACTIONS(3251), - [anon_sym___restrict__] = ACTIONS(3251), - [anon_sym__Atomic] = ACTIONS(3251), - [anon_sym__Noreturn] = ACTIONS(3251), - [anon_sym_noreturn] = ACTIONS(3251), - [anon_sym_mutable] = ACTIONS(3251), - [anon_sym_constinit] = ACTIONS(3251), - [anon_sym_consteval] = ACTIONS(3251), - [sym_primitive_type] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_union] = ACTIONS(3251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3251), - [anon_sym_decltype] = ACTIONS(3251), - [anon_sym_virtual] = ACTIONS(3251), - [anon_sym_alignas] = ACTIONS(3251), - [anon_sym_explicit] = ACTIONS(3251), - [anon_sym_typename] = ACTIONS(3251), - [anon_sym_template] = ACTIONS(3251), - [anon_sym_operator] = ACTIONS(3251), - [anon_sym_friend] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_protected] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_static_assert] = ACTIONS(3251), - }, - [2775] = { - [sym_identifier] = ACTIONS(3087), - [aux_sym_preproc_def_token1] = ACTIONS(3087), - [aux_sym_preproc_if_token1] = ACTIONS(3087), - [aux_sym_preproc_if_token2] = ACTIONS(3087), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), - [aux_sym_preproc_else_token1] = ACTIONS(3087), - [aux_sym_preproc_elif_token1] = ACTIONS(3087), - [sym_preproc_directive] = ACTIONS(3087), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym___extension__] = ACTIONS(3087), - [anon_sym_typedef] = ACTIONS(3087), - [anon_sym_extern] = ACTIONS(3087), - [anon_sym___attribute__] = ACTIONS(3087), - [anon_sym_COLON_COLON] = ACTIONS(3089), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), - [anon_sym___declspec] = ACTIONS(3087), - [anon_sym___based] = ACTIONS(3087), - [anon_sym_signed] = ACTIONS(3087), - [anon_sym_unsigned] = ACTIONS(3087), - [anon_sym_long] = ACTIONS(3087), - [anon_sym_short] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_register] = ACTIONS(3087), - [anon_sym_inline] = ACTIONS(3087), - [anon_sym___inline] = ACTIONS(3087), - [anon_sym___inline__] = ACTIONS(3087), - [anon_sym___forceinline] = ACTIONS(3087), - [anon_sym_thread_local] = ACTIONS(3087), - [anon_sym___thread] = ACTIONS(3087), - [anon_sym_const] = ACTIONS(3087), - [anon_sym_constexpr] = ACTIONS(3087), - [anon_sym_volatile] = ACTIONS(3087), - [anon_sym_restrict] = ACTIONS(3087), - [anon_sym___restrict__] = ACTIONS(3087), - [anon_sym__Atomic] = ACTIONS(3087), - [anon_sym__Noreturn] = ACTIONS(3087), - [anon_sym_noreturn] = ACTIONS(3087), - [anon_sym_mutable] = ACTIONS(3087), - [anon_sym_constinit] = ACTIONS(3087), - [anon_sym_consteval] = ACTIONS(3087), - [sym_primitive_type] = ACTIONS(3087), - [anon_sym_enum] = ACTIONS(3087), - [anon_sym_class] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_union] = ACTIONS(3087), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3087), - [anon_sym_decltype] = ACTIONS(3087), - [anon_sym_virtual] = ACTIONS(3087), - [anon_sym_alignas] = ACTIONS(3087), - [anon_sym_explicit] = ACTIONS(3087), - [anon_sym_typename] = ACTIONS(3087), - [anon_sym_template] = ACTIONS(3087), - [anon_sym_operator] = ACTIONS(3087), - [anon_sym_friend] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3087), - [anon_sym_private] = ACTIONS(3087), - [anon_sym_protected] = ACTIONS(3087), - [anon_sym_using] = ACTIONS(3087), - [anon_sym_static_assert] = ACTIONS(3087), - }, - [2776] = { - [sym_identifier] = ACTIONS(3053), - [aux_sym_preproc_def_token1] = ACTIONS(3053), - [aux_sym_preproc_if_token1] = ACTIONS(3053), - [aux_sym_preproc_if_token2] = ACTIONS(3053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3053), - [aux_sym_preproc_else_token1] = ACTIONS(3053), - [aux_sym_preproc_elif_token1] = ACTIONS(3053), - [sym_preproc_directive] = ACTIONS(3053), - [anon_sym_LPAREN2] = ACTIONS(3055), - [anon_sym_TILDE] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_AMP_AMP] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(3053), - [anon_sym_typedef] = ACTIONS(3053), - [anon_sym_extern] = ACTIONS(3053), - [anon_sym___attribute__] = ACTIONS(3053), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3055), - [anon_sym___declspec] = ACTIONS(3053), - [anon_sym___based] = ACTIONS(3053), - [anon_sym_signed] = ACTIONS(3053), - [anon_sym_unsigned] = ACTIONS(3053), - [anon_sym_long] = ACTIONS(3053), - [anon_sym_short] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_static] = ACTIONS(3053), - [anon_sym_register] = ACTIONS(3053), - [anon_sym_inline] = ACTIONS(3053), - [anon_sym___inline] = ACTIONS(3053), - [anon_sym___inline__] = ACTIONS(3053), - [anon_sym___forceinline] = ACTIONS(3053), - [anon_sym_thread_local] = ACTIONS(3053), - [anon_sym___thread] = ACTIONS(3053), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_constexpr] = ACTIONS(3053), - [anon_sym_volatile] = ACTIONS(3053), - [anon_sym_restrict] = ACTIONS(3053), - [anon_sym___restrict__] = ACTIONS(3053), - [anon_sym__Atomic] = ACTIONS(3053), - [anon_sym__Noreturn] = ACTIONS(3053), - [anon_sym_noreturn] = ACTIONS(3053), - [anon_sym_mutable] = ACTIONS(3053), - [anon_sym_constinit] = ACTIONS(3053), - [anon_sym_consteval] = ACTIONS(3053), - [sym_primitive_type] = ACTIONS(3053), - [anon_sym_enum] = ACTIONS(3053), - [anon_sym_class] = ACTIONS(3053), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_union] = ACTIONS(3053), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3053), - [anon_sym_decltype] = ACTIONS(3053), - [anon_sym_virtual] = ACTIONS(3053), - [anon_sym_alignas] = ACTIONS(3053), - [anon_sym_explicit] = ACTIONS(3053), - [anon_sym_typename] = ACTIONS(3053), - [anon_sym_template] = ACTIONS(3053), - [anon_sym_operator] = ACTIONS(3053), - [anon_sym_friend] = ACTIONS(3053), - [anon_sym_public] = ACTIONS(3053), - [anon_sym_private] = ACTIONS(3053), - [anon_sym_protected] = ACTIONS(3053), - [anon_sym_using] = ACTIONS(3053), - [anon_sym_static_assert] = ACTIONS(3053), - }, - [2777] = { - [sym_identifier] = ACTIONS(3049), - [aux_sym_preproc_def_token1] = ACTIONS(3049), - [aux_sym_preproc_if_token1] = ACTIONS(3049), - [aux_sym_preproc_if_token2] = ACTIONS(3049), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3049), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3049), - [aux_sym_preproc_else_token1] = ACTIONS(3049), - [aux_sym_preproc_elif_token1] = ACTIONS(3049), - [sym_preproc_directive] = ACTIONS(3049), - [anon_sym_LPAREN2] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym___extension__] = ACTIONS(3049), - [anon_sym_typedef] = ACTIONS(3049), - [anon_sym_extern] = ACTIONS(3049), - [anon_sym___attribute__] = ACTIONS(3049), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3051), - [anon_sym___declspec] = ACTIONS(3049), - [anon_sym___based] = ACTIONS(3049), - [anon_sym_signed] = ACTIONS(3049), - [anon_sym_unsigned] = ACTIONS(3049), - [anon_sym_long] = ACTIONS(3049), - [anon_sym_short] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_static] = ACTIONS(3049), - [anon_sym_register] = ACTIONS(3049), - [anon_sym_inline] = ACTIONS(3049), - [anon_sym___inline] = ACTIONS(3049), - [anon_sym___inline__] = ACTIONS(3049), - [anon_sym___forceinline] = ACTIONS(3049), - [anon_sym_thread_local] = ACTIONS(3049), - [anon_sym___thread] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_constexpr] = ACTIONS(3049), - [anon_sym_volatile] = ACTIONS(3049), - [anon_sym_restrict] = ACTIONS(3049), - [anon_sym___restrict__] = ACTIONS(3049), - [anon_sym__Atomic] = ACTIONS(3049), - [anon_sym__Noreturn] = ACTIONS(3049), - [anon_sym_noreturn] = ACTIONS(3049), - [anon_sym_mutable] = ACTIONS(3049), - [anon_sym_constinit] = ACTIONS(3049), - [anon_sym_consteval] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3049), - [anon_sym_enum] = ACTIONS(3049), - [anon_sym_class] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_union] = ACTIONS(3049), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3049), - [anon_sym_decltype] = ACTIONS(3049), - [anon_sym_virtual] = ACTIONS(3049), - [anon_sym_alignas] = ACTIONS(3049), - [anon_sym_explicit] = ACTIONS(3049), - [anon_sym_typename] = ACTIONS(3049), - [anon_sym_template] = ACTIONS(3049), - [anon_sym_operator] = ACTIONS(3049), - [anon_sym_friend] = ACTIONS(3049), - [anon_sym_public] = ACTIONS(3049), - [anon_sym_private] = ACTIONS(3049), - [anon_sym_protected] = ACTIONS(3049), - [anon_sym_using] = ACTIONS(3049), - [anon_sym_static_assert] = ACTIONS(3049), - }, - [2778] = { - [sym_identifier] = 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), - [sym_preproc_directive] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym___extension__] = ACTIONS(3045), - [anon_sym_typedef] = ACTIONS(3045), - [anon_sym_extern] = ACTIONS(3045), - [anon_sym___attribute__] = 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_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_mutable] = ACTIONS(3045), - [anon_sym_constinit] = ACTIONS(3045), - [anon_sym_consteval] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3045), - [anon_sym_decltype] = ACTIONS(3045), - [anon_sym_virtual] = ACTIONS(3045), - [anon_sym_alignas] = ACTIONS(3045), - [anon_sym_explicit] = ACTIONS(3045), - [anon_sym_typename] = ACTIONS(3045), - [anon_sym_template] = ACTIONS(3045), - [anon_sym_operator] = ACTIONS(3045), - [anon_sym_friend] = ACTIONS(3045), - [anon_sym_public] = ACTIONS(3045), - [anon_sym_private] = ACTIONS(3045), - [anon_sym_protected] = ACTIONS(3045), - [anon_sym_using] = ACTIONS(3045), - [anon_sym_static_assert] = ACTIONS(3045), - }, - [2779] = { - [sym_identifier] = ACTIONS(3444), - [aux_sym_preproc_def_token1] = ACTIONS(3444), - [aux_sym_preproc_if_token1] = ACTIONS(3444), - [aux_sym_preproc_if_token2] = ACTIONS(3444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3444), - [aux_sym_preproc_else_token1] = ACTIONS(3444), - [aux_sym_preproc_elif_token1] = ACTIONS(3444), - [sym_preproc_directive] = ACTIONS(3444), - [anon_sym_LPAREN2] = ACTIONS(3446), - [anon_sym_TILDE] = ACTIONS(3446), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(3446), - [anon_sym_AMP] = ACTIONS(3444), - [anon_sym___extension__] = ACTIONS(3444), - [anon_sym_typedef] = ACTIONS(3444), - [anon_sym_extern] = ACTIONS(3444), - [anon_sym___attribute__] = ACTIONS(3444), - [anon_sym_COLON_COLON] = ACTIONS(3446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3446), - [anon_sym___declspec] = ACTIONS(3444), - [anon_sym___based] = ACTIONS(3444), - [anon_sym_signed] = ACTIONS(3444), - [anon_sym_unsigned] = ACTIONS(3444), - [anon_sym_long] = ACTIONS(3444), - [anon_sym_short] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3444), - [anon_sym_static] = ACTIONS(3444), - [anon_sym_register] = ACTIONS(3444), - [anon_sym_inline] = ACTIONS(3444), - [anon_sym___inline] = ACTIONS(3444), - [anon_sym___inline__] = ACTIONS(3444), - [anon_sym___forceinline] = ACTIONS(3444), - [anon_sym_thread_local] = ACTIONS(3444), - [anon_sym___thread] = ACTIONS(3444), - [anon_sym_const] = ACTIONS(3444), - [anon_sym_constexpr] = ACTIONS(3444), - [anon_sym_volatile] = ACTIONS(3444), - [anon_sym_restrict] = ACTIONS(3444), - [anon_sym___restrict__] = ACTIONS(3444), - [anon_sym__Atomic] = ACTIONS(3444), - [anon_sym__Noreturn] = ACTIONS(3444), - [anon_sym_noreturn] = ACTIONS(3444), - [anon_sym_mutable] = ACTIONS(3444), - [anon_sym_constinit] = ACTIONS(3444), - [anon_sym_consteval] = ACTIONS(3444), - [sym_primitive_type] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), - [anon_sym_class] = ACTIONS(3444), - [anon_sym_struct] = ACTIONS(3444), - [anon_sym_union] = ACTIONS(3444), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3444), - [anon_sym_decltype] = ACTIONS(3444), - [anon_sym_virtual] = ACTIONS(3444), - [anon_sym_alignas] = ACTIONS(3444), - [anon_sym_explicit] = ACTIONS(3444), - [anon_sym_typename] = ACTIONS(3444), - [anon_sym_template] = ACTIONS(3444), - [anon_sym_operator] = ACTIONS(3444), - [anon_sym_friend] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3444), - [anon_sym_private] = ACTIONS(3444), - [anon_sym_protected] = ACTIONS(3444), - [anon_sym_using] = ACTIONS(3444), - [anon_sym_static_assert] = ACTIONS(3444), - }, - [2780] = { - [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), - [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___extension__] = ACTIONS(2981), - [anon_sym_typedef] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym___attribute__] = ACTIONS(2981), - [anon_sym_COLON_COLON] = ACTIONS(2983), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), - [anon_sym___declspec] = ACTIONS(2981), - [anon_sym___based] = ACTIONS(2981), - [anon_sym_signed] = ACTIONS(2981), - [anon_sym_unsigned] = ACTIONS(2981), - [anon_sym_long] = ACTIONS(2981), - [anon_sym_short] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_static] = ACTIONS(2981), - [anon_sym_register] = ACTIONS(2981), - [anon_sym_inline] = ACTIONS(2981), - [anon_sym___inline] = ACTIONS(2981), - [anon_sym___inline__] = ACTIONS(2981), - [anon_sym___forceinline] = ACTIONS(2981), - [anon_sym_thread_local] = ACTIONS(2981), - [anon_sym___thread] = ACTIONS(2981), - [anon_sym_const] = ACTIONS(2981), - [anon_sym_constexpr] = ACTIONS(2981), - [anon_sym_volatile] = ACTIONS(2981), - [anon_sym_restrict] = ACTIONS(2981), - [anon_sym___restrict__] = ACTIONS(2981), - [anon_sym__Atomic] = ACTIONS(2981), - [anon_sym__Noreturn] = ACTIONS(2981), - [anon_sym_noreturn] = ACTIONS(2981), - [anon_sym_mutable] = ACTIONS(2981), - [anon_sym_constinit] = ACTIONS(2981), - [anon_sym_consteval] = ACTIONS(2981), - [sym_primitive_type] = ACTIONS(2981), - [anon_sym_enum] = ACTIONS(2981), - [anon_sym_class] = ACTIONS(2981), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_union] = ACTIONS(2981), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2981), - [anon_sym_decltype] = ACTIONS(2981), - [anon_sym_virtual] = ACTIONS(2981), - [anon_sym_alignas] = ACTIONS(2981), - [anon_sym_explicit] = ACTIONS(2981), - [anon_sym_typename] = ACTIONS(2981), - [anon_sym_template] = ACTIONS(2981), - [anon_sym_operator] = ACTIONS(2981), - [anon_sym_friend] = ACTIONS(2981), - [anon_sym_public] = ACTIONS(2981), - [anon_sym_private] = ACTIONS(2981), - [anon_sym_protected] = ACTIONS(2981), - [anon_sym_using] = ACTIONS(2981), - [anon_sym_static_assert] = ACTIONS(2981), - }, - [2781] = { - [sym_identifier] = 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), - [sym_preproc_directive] = ACTIONS(3027), - [anon_sym_LPAREN2] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym___extension__] = ACTIONS(3027), - [anon_sym_typedef] = ACTIONS(3027), - [anon_sym_extern] = ACTIONS(3027), - [anon_sym___attribute__] = 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_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_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3027), - [anon_sym_decltype] = ACTIONS(3027), - [anon_sym_virtual] = ACTIONS(3027), - [anon_sym_alignas] = ACTIONS(3027), - [anon_sym_explicit] = ACTIONS(3027), - [anon_sym_typename] = ACTIONS(3027), - [anon_sym_template] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_friend] = ACTIONS(3027), - [anon_sym_public] = ACTIONS(3027), - [anon_sym_private] = ACTIONS(3027), - [anon_sym_protected] = ACTIONS(3027), - [anon_sym_using] = ACTIONS(3027), - [anon_sym_static_assert] = ACTIONS(3027), - }, - [2782] = { - [sym_identifier] = 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), - [sym_preproc_directive] = ACTIONS(3027), - [anon_sym_LPAREN2] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym___extension__] = ACTIONS(3027), - [anon_sym_typedef] = ACTIONS(3027), - [anon_sym_extern] = ACTIONS(3027), - [anon_sym___attribute__] = 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_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_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3027), - [anon_sym_decltype] = ACTIONS(3027), - [anon_sym_virtual] = ACTIONS(3027), - [anon_sym_alignas] = ACTIONS(3027), - [anon_sym_explicit] = ACTIONS(3027), - [anon_sym_typename] = ACTIONS(3027), - [anon_sym_template] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_friend] = ACTIONS(3027), - [anon_sym_public] = ACTIONS(3027), - [anon_sym_private] = ACTIONS(3027), - [anon_sym_protected] = ACTIONS(3027), - [anon_sym_using] = ACTIONS(3027), - [anon_sym_static_assert] = ACTIONS(3027), - }, - [2783] = { - [sym_string_literal] = STATE(4101), - [sym_template_argument_list] = STATE(5121), - [sym_raw_string_literal] = STATE(4101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4927), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4930), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4932), - [anon_sym_SLASH_EQ] = ACTIONS(4932), - [anon_sym_PERCENT_EQ] = ACTIONS(4932), - [anon_sym_PLUS_EQ] = ACTIONS(4932), - [anon_sym_DASH_EQ] = ACTIONS(4932), - [anon_sym_LT_LT_EQ] = ACTIONS(4932), - [anon_sym_GT_GT_EQ] = ACTIONS(4930), - [anon_sym_AMP_EQ] = ACTIONS(4932), - [anon_sym_CARET_EQ] = ACTIONS(4932), - [anon_sym_PIPE_EQ] = ACTIONS(4932), - [anon_sym_and_eq] = ACTIONS(4932), - [anon_sym_or_eq] = ACTIONS(4932), - [anon_sym_xor_eq] = ACTIONS(4932), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4934), - [anon_sym_u_DQUOTE] = ACTIONS(4934), - [anon_sym_U_DQUOTE] = ACTIONS(4934), - [anon_sym_u8_DQUOTE] = ACTIONS(4934), - [anon_sym_DQUOTE] = ACTIONS(4934), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(4278), - [anon_sym_R_DQUOTE] = ACTIONS(4936), - [anon_sym_LR_DQUOTE] = ACTIONS(4936), - [anon_sym_uR_DQUOTE] = ACTIONS(4936), - [anon_sym_UR_DQUOTE] = ACTIONS(4936), - [anon_sym_u8R_DQUOTE] = ACTIONS(4936), - }, - [2784] = { - [sym_identifier] = ACTIONS(2913), - [aux_sym_preproc_def_token1] = ACTIONS(2913), - [aux_sym_preproc_if_token1] = ACTIONS(2913), - [aux_sym_preproc_if_token2] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2913), - [aux_sym_preproc_else_token1] = ACTIONS(2913), - [aux_sym_preproc_elif_token1] = ACTIONS(2913), - [sym_preproc_directive] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym___extension__] = ACTIONS(2913), - [anon_sym_typedef] = ACTIONS(2913), - [anon_sym_extern] = ACTIONS(2913), - [anon_sym___attribute__] = ACTIONS(2913), - [anon_sym_COLON_COLON] = ACTIONS(2915), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2915), - [anon_sym___declspec] = ACTIONS(2913), - [anon_sym___based] = ACTIONS(2913), - [anon_sym_signed] = ACTIONS(2913), - [anon_sym_unsigned] = ACTIONS(2913), - [anon_sym_long] = ACTIONS(2913), - [anon_sym_short] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_static] = ACTIONS(2913), - [anon_sym_register] = ACTIONS(2913), - [anon_sym_inline] = ACTIONS(2913), - [anon_sym___inline] = ACTIONS(2913), - [anon_sym___inline__] = ACTIONS(2913), - [anon_sym___forceinline] = ACTIONS(2913), - [anon_sym_thread_local] = ACTIONS(2913), - [anon_sym___thread] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_constexpr] = ACTIONS(2913), - [anon_sym_volatile] = ACTIONS(2913), - [anon_sym_restrict] = ACTIONS(2913), - [anon_sym___restrict__] = ACTIONS(2913), - [anon_sym__Atomic] = ACTIONS(2913), - [anon_sym__Noreturn] = ACTIONS(2913), - [anon_sym_noreturn] = ACTIONS(2913), - [anon_sym_mutable] = ACTIONS(2913), - [anon_sym_constinit] = ACTIONS(2913), - [anon_sym_consteval] = ACTIONS(2913), - [sym_primitive_type] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), - [anon_sym_class] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_union] = ACTIONS(2913), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2913), - [anon_sym_decltype] = ACTIONS(2913), - [anon_sym_virtual] = ACTIONS(2913), - [anon_sym_alignas] = ACTIONS(2913), - [anon_sym_explicit] = ACTIONS(2913), - [anon_sym_typename] = ACTIONS(2913), - [anon_sym_template] = ACTIONS(2913), - [anon_sym_operator] = ACTIONS(2913), - [anon_sym_friend] = ACTIONS(2913), - [anon_sym_public] = ACTIONS(2913), - [anon_sym_private] = ACTIONS(2913), - [anon_sym_protected] = ACTIONS(2913), - [anon_sym_using] = ACTIONS(2913), - [anon_sym_static_assert] = ACTIONS(2913), - }, - [2785] = { - [sym_identifier] = ACTIONS(2985), - [aux_sym_preproc_def_token1] = ACTIONS(2985), - [aux_sym_preproc_if_token1] = ACTIONS(2985), - [aux_sym_preproc_if_token2] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2985), - [aux_sym_preproc_else_token1] = ACTIONS(2985), - [aux_sym_preproc_elif_token1] = ACTIONS(2985), - [sym_preproc_directive] = ACTIONS(2985), - [anon_sym_LPAREN2] = ACTIONS(2987), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym___extension__] = ACTIONS(2985), - [anon_sym_typedef] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym___attribute__] = ACTIONS(2985), - [anon_sym_COLON_COLON] = ACTIONS(2987), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), - [anon_sym___declspec] = ACTIONS(2985), - [anon_sym___based] = ACTIONS(2985), - [anon_sym_signed] = ACTIONS(2985), - [anon_sym_unsigned] = ACTIONS(2985), - [anon_sym_long] = ACTIONS(2985), - [anon_sym_short] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_register] = ACTIONS(2985), - [anon_sym_inline] = ACTIONS(2985), - [anon_sym___inline] = ACTIONS(2985), - [anon_sym___inline__] = ACTIONS(2985), - [anon_sym___forceinline] = ACTIONS(2985), - [anon_sym_thread_local] = ACTIONS(2985), - [anon_sym___thread] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_constexpr] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_restrict] = ACTIONS(2985), - [anon_sym___restrict__] = ACTIONS(2985), - [anon_sym__Atomic] = ACTIONS(2985), - [anon_sym__Noreturn] = ACTIONS(2985), - [anon_sym_noreturn] = ACTIONS(2985), - [anon_sym_mutable] = ACTIONS(2985), - [anon_sym_constinit] = ACTIONS(2985), - [anon_sym_consteval] = ACTIONS(2985), - [sym_primitive_type] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_class] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_union] = ACTIONS(2985), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2985), - [anon_sym_decltype] = ACTIONS(2985), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_alignas] = ACTIONS(2985), - [anon_sym_explicit] = ACTIONS(2985), - [anon_sym_typename] = ACTIONS(2985), - [anon_sym_template] = ACTIONS(2985), - [anon_sym_operator] = ACTIONS(2985), - [anon_sym_friend] = ACTIONS(2985), - [anon_sym_public] = ACTIONS(2985), - [anon_sym_private] = ACTIONS(2985), - [anon_sym_protected] = ACTIONS(2985), - [anon_sym_using] = ACTIONS(2985), - [anon_sym_static_assert] = ACTIONS(2985), - }, - [2786] = { - [sym_identifier] = ACTIONS(2917), - [aux_sym_preproc_def_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token2] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), - [aux_sym_preproc_else_token1] = ACTIONS(2917), - [aux_sym_preproc_elif_token1] = ACTIONS(2917), - [sym_preproc_directive] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym___based] = ACTIONS(2917), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_explicit] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_operator] = ACTIONS(2917), - [anon_sym_friend] = ACTIONS(2917), - [anon_sym_public] = ACTIONS(2917), - [anon_sym_private] = ACTIONS(2917), - [anon_sym_protected] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_static_assert] = ACTIONS(2917), - }, - [2787] = { - [sym_identifier] = ACTIONS(2917), - [aux_sym_preproc_def_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token2] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), - [aux_sym_preproc_else_token1] = ACTIONS(2917), - [aux_sym_preproc_elif_token1] = ACTIONS(2917), - [sym_preproc_directive] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym___based] = ACTIONS(2917), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_explicit] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_operator] = ACTIONS(2917), - [anon_sym_friend] = ACTIONS(2917), - [anon_sym_public] = ACTIONS(2917), - [anon_sym_private] = ACTIONS(2917), - [anon_sym_protected] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_static_assert] = ACTIONS(2917), - }, - [2788] = { - [sym_attribute_specifier] = STATE(3228), - [sym_field_declaration_list] = STATE(3178), - [sym_virtual_specifier] = STATE(7954), - [sym_base_class_clause] = STATE(8789), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5653), - [anon_sym_COMMA] = ACTIONS(5653), - [anon_sym_RPAREN] = ACTIONS(5653), - [anon_sym_LPAREN2] = ACTIONS(5653), - [anon_sym_DASH] = ACTIONS(5655), - [anon_sym_PLUS] = ACTIONS(5655), - [anon_sym_STAR] = ACTIONS(5655), - [anon_sym_SLASH] = ACTIONS(5655), - [anon_sym_PERCENT] = ACTIONS(5655), - [anon_sym_PIPE_PIPE] = ACTIONS(5653), - [anon_sym_AMP_AMP] = ACTIONS(5653), - [anon_sym_PIPE] = ACTIONS(5655), - [anon_sym_CARET] = ACTIONS(5655), - [anon_sym_AMP] = ACTIONS(5655), - [anon_sym_EQ_EQ] = ACTIONS(5653), - [anon_sym_BANG_EQ] = ACTIONS(5653), - [anon_sym_GT] = ACTIONS(5655), - [anon_sym_GT_EQ] = ACTIONS(5653), - [anon_sym_LT_EQ] = ACTIONS(5655), - [anon_sym_LT] = ACTIONS(5655), - [anon_sym_LT_LT] = ACTIONS(5655), - [anon_sym_GT_GT] = ACTIONS(5655), - [anon_sym_SEMI] = ACTIONS(5653), - [anon_sym___attribute__] = ACTIONS(5657), - [anon_sym_LBRACE] = ACTIONS(5659), - [anon_sym_RBRACE] = ACTIONS(5653), - [anon_sym_LBRACK] = ACTIONS(5653), - [anon_sym_RBRACK] = ACTIONS(5653), - [anon_sym_EQ] = ACTIONS(5655), - [anon_sym_COLON] = ACTIONS(5661), - [anon_sym_QMARK] = ACTIONS(5653), - [anon_sym_STAR_EQ] = ACTIONS(5653), - [anon_sym_SLASH_EQ] = ACTIONS(5653), - [anon_sym_PERCENT_EQ] = ACTIONS(5653), - [anon_sym_PLUS_EQ] = ACTIONS(5653), - [anon_sym_DASH_EQ] = ACTIONS(5653), - [anon_sym_LT_LT_EQ] = ACTIONS(5653), - [anon_sym_GT_GT_EQ] = ACTIONS(5653), - [anon_sym_AMP_EQ] = ACTIONS(5653), - [anon_sym_CARET_EQ] = ACTIONS(5653), - [anon_sym_PIPE_EQ] = ACTIONS(5653), - [anon_sym_and_eq] = ACTIONS(5653), - [anon_sym_or_eq] = ACTIONS(5653), - [anon_sym_xor_eq] = ACTIONS(5653), - [anon_sym_LT_EQ_GT] = ACTIONS(5653), - [anon_sym_or] = ACTIONS(5655), - [anon_sym_and] = ACTIONS(5655), - [anon_sym_bitor] = ACTIONS(5653), - [anon_sym_xor] = ACTIONS(5655), - [anon_sym_bitand] = ACTIONS(5653), - [anon_sym_not_eq] = ACTIONS(5653), - [anon_sym_DASH_DASH] = ACTIONS(5653), - [anon_sym_PLUS_PLUS] = ACTIONS(5653), - [anon_sym_DOT] = ACTIONS(5655), - [anon_sym_DOT_STAR] = ACTIONS(5653), - [anon_sym_DASH_GT] = ACTIONS(5653), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5653), - [anon_sym_decltype] = ACTIONS(5653), - [anon_sym_final] = ACTIONS(5663), - [anon_sym_override] = ACTIONS(5663), - }, - [2789] = { - [sym_attribute_specifier] = STATE(3262), - [sym_field_declaration_list] = STATE(3154), - [sym_virtual_specifier] = STATE(7718), - [sym_base_class_clause] = STATE(8668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5665), - [anon_sym_COMMA] = ACTIONS(5665), - [anon_sym_RPAREN] = ACTIONS(5665), - [anon_sym_LPAREN2] = ACTIONS(5665), - [anon_sym_DASH] = ACTIONS(5667), - [anon_sym_PLUS] = ACTIONS(5667), - [anon_sym_STAR] = ACTIONS(5667), - [anon_sym_SLASH] = ACTIONS(5667), - [anon_sym_PERCENT] = ACTIONS(5667), - [anon_sym_PIPE_PIPE] = ACTIONS(5665), - [anon_sym_AMP_AMP] = ACTIONS(5665), - [anon_sym_PIPE] = ACTIONS(5667), - [anon_sym_CARET] = ACTIONS(5667), - [anon_sym_AMP] = ACTIONS(5667), - [anon_sym_EQ_EQ] = ACTIONS(5665), - [anon_sym_BANG_EQ] = ACTIONS(5665), - [anon_sym_GT] = ACTIONS(5667), - [anon_sym_GT_EQ] = ACTIONS(5665), - [anon_sym_LT_EQ] = ACTIONS(5667), - [anon_sym_LT] = ACTIONS(5667), - [anon_sym_LT_LT] = ACTIONS(5667), - [anon_sym_GT_GT] = ACTIONS(5667), - [anon_sym_SEMI] = ACTIONS(5665), - [anon_sym___attribute__] = ACTIONS(5657), - [anon_sym_LBRACE] = ACTIONS(5659), - [anon_sym_RBRACE] = ACTIONS(5665), - [anon_sym_LBRACK] = ACTIONS(5665), - [anon_sym_RBRACK] = ACTIONS(5665), - [anon_sym_EQ] = ACTIONS(5667), - [anon_sym_COLON] = ACTIONS(5661), - [anon_sym_QMARK] = ACTIONS(5665), - [anon_sym_STAR_EQ] = ACTIONS(5665), - [anon_sym_SLASH_EQ] = ACTIONS(5665), - [anon_sym_PERCENT_EQ] = ACTIONS(5665), - [anon_sym_PLUS_EQ] = ACTIONS(5665), - [anon_sym_DASH_EQ] = ACTIONS(5665), - [anon_sym_LT_LT_EQ] = ACTIONS(5665), - [anon_sym_GT_GT_EQ] = ACTIONS(5665), - [anon_sym_AMP_EQ] = ACTIONS(5665), - [anon_sym_CARET_EQ] = ACTIONS(5665), - [anon_sym_PIPE_EQ] = ACTIONS(5665), - [anon_sym_and_eq] = ACTIONS(5665), - [anon_sym_or_eq] = ACTIONS(5665), - [anon_sym_xor_eq] = ACTIONS(5665), - [anon_sym_LT_EQ_GT] = ACTIONS(5665), - [anon_sym_or] = ACTIONS(5667), - [anon_sym_and] = ACTIONS(5667), - [anon_sym_bitor] = ACTIONS(5665), - [anon_sym_xor] = ACTIONS(5667), - [anon_sym_bitand] = ACTIONS(5665), - [anon_sym_not_eq] = ACTIONS(5665), - [anon_sym_DASH_DASH] = ACTIONS(5665), - [anon_sym_PLUS_PLUS] = ACTIONS(5665), - [anon_sym_DOT] = ACTIONS(5667), - [anon_sym_DOT_STAR] = ACTIONS(5665), - [anon_sym_DASH_GT] = ACTIONS(5665), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5665), - [anon_sym_decltype] = ACTIONS(5665), - [anon_sym_final] = ACTIONS(5663), - [anon_sym_override] = ACTIONS(5663), - }, - [2790] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_friend] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - [anon_sym_catch] = ACTIONS(2194), - }, - [2791] = { - [sym_identifier] = ACTIONS(2198), - [aux_sym_preproc_def_token1] = ACTIONS(2198), - [aux_sym_preproc_if_token1] = ACTIONS(2198), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2198), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2198), - [sym_preproc_directive] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2196), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2198), - [anon_sym___extension__] = ACTIONS(2198), - [anon_sym_typedef] = ACTIONS(2198), - [anon_sym_extern] = ACTIONS(2198), - [anon_sym___attribute__] = ACTIONS(2198), - [anon_sym_COLON_COLON] = ACTIONS(2196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2196), - [anon_sym___declspec] = ACTIONS(2198), - [anon_sym___based] = ACTIONS(2198), - [anon_sym_RBRACE] = ACTIONS(2196), - [anon_sym_signed] = ACTIONS(2198), - [anon_sym_unsigned] = ACTIONS(2198), - [anon_sym_long] = ACTIONS(2198), - [anon_sym_short] = ACTIONS(2198), - [anon_sym_LBRACK] = ACTIONS(2198), - [anon_sym_static] = ACTIONS(2198), - [anon_sym_register] = ACTIONS(2198), - [anon_sym_inline] = ACTIONS(2198), - [anon_sym___inline] = ACTIONS(2198), - [anon_sym___inline__] = ACTIONS(2198), - [anon_sym___forceinline] = ACTIONS(2198), - [anon_sym_thread_local] = ACTIONS(2198), - [anon_sym___thread] = ACTIONS(2198), - [anon_sym_const] = ACTIONS(2198), - [anon_sym_constexpr] = ACTIONS(2198), - [anon_sym_volatile] = ACTIONS(2198), - [anon_sym_restrict] = ACTIONS(2198), - [anon_sym___restrict__] = ACTIONS(2198), - [anon_sym__Atomic] = ACTIONS(2198), - [anon_sym__Noreturn] = ACTIONS(2198), - [anon_sym_noreturn] = ACTIONS(2198), - [anon_sym_mutable] = ACTIONS(2198), - [anon_sym_constinit] = ACTIONS(2198), - [anon_sym_consteval] = ACTIONS(2198), - [sym_primitive_type] = ACTIONS(2198), - [anon_sym_enum] = ACTIONS(2198), - [anon_sym_class] = ACTIONS(2198), - [anon_sym_struct] = ACTIONS(2198), - [anon_sym_union] = ACTIONS(2198), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2198), - [anon_sym_decltype] = ACTIONS(2198), - [anon_sym_virtual] = ACTIONS(2198), - [anon_sym_alignas] = ACTIONS(2198), - [anon_sym_explicit] = ACTIONS(2198), - [anon_sym_typename] = ACTIONS(2198), - [anon_sym_template] = ACTIONS(2198), - [anon_sym_operator] = ACTIONS(2198), - [anon_sym_friend] = ACTIONS(2198), - [anon_sym_public] = ACTIONS(2198), - [anon_sym_private] = ACTIONS(2198), - [anon_sym_protected] = ACTIONS(2198), - [anon_sym_using] = ACTIONS(2198), - [anon_sym_static_assert] = ACTIONS(2198), - [anon_sym_catch] = ACTIONS(2198), - }, - [2792] = { - [sym_identifier] = ACTIONS(2768), - [aux_sym_preproc_def_token1] = ACTIONS(2768), - [aux_sym_preproc_if_token1] = ACTIONS(2768), - [aux_sym_preproc_if_token2] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2768), - [sym_preproc_directive] = ACTIONS(2768), - [anon_sym_LPAREN2] = ACTIONS(2770), - [anon_sym_TILDE] = ACTIONS(2770), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym_typedef] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2770), - [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(2768), - [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_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2768), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym_explicit] = ACTIONS(2768), - [anon_sym_typename] = ACTIONS(2768), - [anon_sym_template] = ACTIONS(2768), - [anon_sym_operator] = ACTIONS(2768), - [anon_sym_friend] = ACTIONS(2768), - [anon_sym_public] = ACTIONS(2768), - [anon_sym_private] = ACTIONS(2768), - [anon_sym_protected] = ACTIONS(2768), - [anon_sym_using] = ACTIONS(2768), - [anon_sym_static_assert] = ACTIONS(2768), - [anon_sym_catch] = ACTIONS(2768), - }, - [2793] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), - [anon_sym_COMMA] = ACTIONS(4904), - [anon_sym_RPAREN] = ACTIONS(4894), - [anon_sym_LPAREN2] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4899), - [anon_sym_STAR] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4899), - [anon_sym_PERCENT] = ACTIONS(4899), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_CARET] = ACTIONS(4899), - [anon_sym_AMP] = ACTIONS(4901), - [anon_sym_EQ_EQ] = ACTIONS(4904), - [anon_sym_BANG_EQ] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4899), - [anon_sym_GT_EQ] = ACTIONS(4904), - [anon_sym_LT_EQ] = ACTIONS(4899), - [anon_sym_LT] = ACTIONS(4899), - [anon_sym_LT_LT] = ACTIONS(4899), - [anon_sym_GT_GT] = ACTIONS(4899), - [anon_sym___extension__] = ACTIONS(4897), - [anon_sym_COLON_COLON] = ACTIONS(4897), - [anon_sym_LBRACE] = ACTIONS(4897), - [anon_sym_LBRACK] = ACTIONS(4894), - [anon_sym_EQ] = ACTIONS(4899), - [anon_sym_const] = ACTIONS(4892), - [anon_sym_constexpr] = ACTIONS(4897), - [anon_sym_volatile] = ACTIONS(4897), - [anon_sym_restrict] = ACTIONS(4897), - [anon_sym___restrict__] = ACTIONS(4897), - [anon_sym__Atomic] = ACTIONS(4897), - [anon_sym__Noreturn] = ACTIONS(4897), - [anon_sym_noreturn] = ACTIONS(4897), - [anon_sym_mutable] = ACTIONS(4897), - [anon_sym_constinit] = ACTIONS(4897), - [anon_sym_consteval] = ACTIONS(4897), - [anon_sym_QMARK] = ACTIONS(4904), - [anon_sym_STAR_EQ] = ACTIONS(4904), - [anon_sym_SLASH_EQ] = ACTIONS(4904), - [anon_sym_PERCENT_EQ] = ACTIONS(4904), - [anon_sym_PLUS_EQ] = ACTIONS(4904), - [anon_sym_DASH_EQ] = ACTIONS(4904), - [anon_sym_LT_LT_EQ] = ACTIONS(4904), - [anon_sym_GT_GT_EQ] = ACTIONS(4904), - [anon_sym_AMP_EQ] = ACTIONS(4904), - [anon_sym_CARET_EQ] = ACTIONS(4904), - [anon_sym_PIPE_EQ] = ACTIONS(4904), - [anon_sym_LT_EQ_GT] = ACTIONS(4904), - [anon_sym_or] = ACTIONS(4904), - [anon_sym_and] = ACTIONS(4904), - [anon_sym_bitor] = ACTIONS(4904), - [anon_sym_xor] = ACTIONS(4904), - [anon_sym_bitand] = ACTIONS(4904), - [anon_sym_not_eq] = ACTIONS(4904), - [anon_sym_DASH_DASH] = ACTIONS(4904), - [anon_sym_PLUS_PLUS] = ACTIONS(4904), - [anon_sym_DOT] = ACTIONS(4899), - [anon_sym_DOT_STAR] = ACTIONS(4904), - [anon_sym_DASH_GT] = ACTIONS(4899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4897), - [anon_sym_decltype] = ACTIONS(4897), - [anon_sym_DASH_GT_STAR] = ACTIONS(4904), - }, - [2794] = { - [sym_identifier] = ACTIONS(2194), - [aux_sym_preproc_def_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token1] = ACTIONS(2194), - [aux_sym_preproc_if_token2] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), - [sym_preproc_directive] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym___extension__] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym___attribute__] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), - [anon_sym___declspec] = ACTIONS(2194), - [anon_sym___based] = ACTIONS(2194), - [anon_sym_signed] = ACTIONS(2194), - [anon_sym_unsigned] = ACTIONS(2194), - [anon_sym_long] = ACTIONS(2194), - [anon_sym_short] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym___inline] = ACTIONS(2194), - [anon_sym___inline__] = ACTIONS(2194), - [anon_sym___forceinline] = ACTIONS(2194), - [anon_sym_thread_local] = ACTIONS(2194), - [anon_sym___thread] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_constexpr] = ACTIONS(2194), - [anon_sym_volatile] = ACTIONS(2194), - [anon_sym_restrict] = ACTIONS(2194), - [anon_sym___restrict__] = ACTIONS(2194), - [anon_sym__Atomic] = ACTIONS(2194), - [anon_sym__Noreturn] = ACTIONS(2194), - [anon_sym_noreturn] = ACTIONS(2194), - [anon_sym_mutable] = ACTIONS(2194), - [anon_sym_constinit] = ACTIONS(2194), - [anon_sym_consteval] = ACTIONS(2194), - [sym_primitive_type] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2194), - [anon_sym_decltype] = ACTIONS(2194), - [anon_sym_virtual] = ACTIONS(2194), - [anon_sym_alignas] = ACTIONS(2194), - [anon_sym_explicit] = ACTIONS(2194), - [anon_sym_typename] = ACTIONS(2194), - [anon_sym_template] = ACTIONS(2194), - [anon_sym_operator] = ACTIONS(2194), - [anon_sym_friend] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_static_assert] = ACTIONS(2194), - [anon_sym_catch] = ACTIONS(2194), - }, - [2795] = { - [sym_identifier] = ACTIONS(2198), - [aux_sym_preproc_def_token1] = ACTIONS(2198), - [aux_sym_preproc_if_token1] = ACTIONS(2198), - [aux_sym_preproc_if_token2] = ACTIONS(2198), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2198), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2198), - [sym_preproc_directive] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2196), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2198), - [anon_sym___extension__] = ACTIONS(2198), - [anon_sym_typedef] = ACTIONS(2198), - [anon_sym_extern] = ACTIONS(2198), - [anon_sym___attribute__] = ACTIONS(2198), - [anon_sym_COLON_COLON] = ACTIONS(2196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2196), - [anon_sym___declspec] = ACTIONS(2198), - [anon_sym___based] = ACTIONS(2198), - [anon_sym_signed] = ACTIONS(2198), - [anon_sym_unsigned] = ACTIONS(2198), - [anon_sym_long] = ACTIONS(2198), - [anon_sym_short] = ACTIONS(2198), - [anon_sym_LBRACK] = ACTIONS(2198), - [anon_sym_static] = ACTIONS(2198), - [anon_sym_register] = ACTIONS(2198), - [anon_sym_inline] = ACTIONS(2198), - [anon_sym___inline] = ACTIONS(2198), - [anon_sym___inline__] = ACTIONS(2198), - [anon_sym___forceinline] = ACTIONS(2198), - [anon_sym_thread_local] = ACTIONS(2198), - [anon_sym___thread] = ACTIONS(2198), - [anon_sym_const] = ACTIONS(2198), - [anon_sym_constexpr] = ACTIONS(2198), - [anon_sym_volatile] = ACTIONS(2198), - [anon_sym_restrict] = ACTIONS(2198), - [anon_sym___restrict__] = ACTIONS(2198), - [anon_sym__Atomic] = ACTIONS(2198), - [anon_sym__Noreturn] = ACTIONS(2198), - [anon_sym_noreturn] = ACTIONS(2198), - [anon_sym_mutable] = ACTIONS(2198), - [anon_sym_constinit] = ACTIONS(2198), - [anon_sym_consteval] = ACTIONS(2198), - [sym_primitive_type] = ACTIONS(2198), - [anon_sym_enum] = ACTIONS(2198), - [anon_sym_class] = ACTIONS(2198), - [anon_sym_struct] = ACTIONS(2198), - [anon_sym_union] = ACTIONS(2198), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2198), - [anon_sym_decltype] = ACTIONS(2198), - [anon_sym_virtual] = ACTIONS(2198), - [anon_sym_alignas] = ACTIONS(2198), - [anon_sym_explicit] = ACTIONS(2198), - [anon_sym_typename] = ACTIONS(2198), - [anon_sym_template] = ACTIONS(2198), - [anon_sym_operator] = ACTIONS(2198), - [anon_sym_friend] = ACTIONS(2198), - [anon_sym_public] = ACTIONS(2198), - [anon_sym_private] = ACTIONS(2198), - [anon_sym_protected] = ACTIONS(2198), - [anon_sym_using] = ACTIONS(2198), - [anon_sym_static_assert] = ACTIONS(2198), - [anon_sym_catch] = ACTIONS(2198), - }, - [2796] = { - [sym_attribute_specifier] = STATE(3244), - [sym_field_declaration_list] = STATE(3158), - [sym_virtual_specifier] = STATE(7637), - [sym_base_class_clause] = STATE(8633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5669), - [anon_sym_COMMA] = ACTIONS(5669), - [anon_sym_RPAREN] = ACTIONS(5669), - [anon_sym_LPAREN2] = ACTIONS(5669), - [anon_sym_DASH] = ACTIONS(5671), - [anon_sym_PLUS] = ACTIONS(5671), - [anon_sym_STAR] = ACTIONS(5671), - [anon_sym_SLASH] = ACTIONS(5671), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_PIPE_PIPE] = ACTIONS(5669), - [anon_sym_AMP_AMP] = ACTIONS(5669), - [anon_sym_PIPE] = ACTIONS(5671), - [anon_sym_CARET] = ACTIONS(5671), - [anon_sym_AMP] = ACTIONS(5671), - [anon_sym_EQ_EQ] = ACTIONS(5669), - [anon_sym_BANG_EQ] = ACTIONS(5669), - [anon_sym_GT] = ACTIONS(5671), - [anon_sym_GT_EQ] = ACTIONS(5669), - [anon_sym_LT_EQ] = ACTIONS(5671), - [anon_sym_LT] = ACTIONS(5671), - [anon_sym_LT_LT] = ACTIONS(5671), - [anon_sym_GT_GT] = ACTIONS(5671), - [anon_sym_SEMI] = ACTIONS(5669), - [anon_sym___attribute__] = ACTIONS(5657), - [anon_sym_LBRACE] = ACTIONS(5659), - [anon_sym_RBRACE] = ACTIONS(5669), - [anon_sym_LBRACK] = ACTIONS(5669), - [anon_sym_RBRACK] = ACTIONS(5669), - [anon_sym_EQ] = ACTIONS(5671), - [anon_sym_COLON] = ACTIONS(5661), - [anon_sym_QMARK] = ACTIONS(5669), - [anon_sym_STAR_EQ] = ACTIONS(5669), - [anon_sym_SLASH_EQ] = ACTIONS(5669), - [anon_sym_PERCENT_EQ] = ACTIONS(5669), - [anon_sym_PLUS_EQ] = ACTIONS(5669), - [anon_sym_DASH_EQ] = ACTIONS(5669), - [anon_sym_LT_LT_EQ] = ACTIONS(5669), - [anon_sym_GT_GT_EQ] = ACTIONS(5669), - [anon_sym_AMP_EQ] = ACTIONS(5669), - [anon_sym_CARET_EQ] = ACTIONS(5669), - [anon_sym_PIPE_EQ] = ACTIONS(5669), - [anon_sym_and_eq] = ACTIONS(5669), - [anon_sym_or_eq] = ACTIONS(5669), - [anon_sym_xor_eq] = ACTIONS(5669), - [anon_sym_LT_EQ_GT] = ACTIONS(5669), - [anon_sym_or] = ACTIONS(5671), - [anon_sym_and] = ACTIONS(5671), - [anon_sym_bitor] = ACTIONS(5669), - [anon_sym_xor] = ACTIONS(5671), - [anon_sym_bitand] = ACTIONS(5669), - [anon_sym_not_eq] = ACTIONS(5669), - [anon_sym_DASH_DASH] = ACTIONS(5669), - [anon_sym_PLUS_PLUS] = ACTIONS(5669), - [anon_sym_DOT] = ACTIONS(5671), - [anon_sym_DOT_STAR] = ACTIONS(5669), - [anon_sym_DASH_GT] = ACTIONS(5669), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5669), - [anon_sym_decltype] = ACTIONS(5669), - [anon_sym_final] = ACTIONS(5663), - [anon_sym_override] = ACTIONS(5663), - }, - [2797] = { - [sym_template_argument_list] = STATE(2334), - [sym_identifier] = ACTIONS(5673), - [anon_sym_LPAREN2] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_STAR] = ACTIONS(4302), - [anon_sym_PIPE_PIPE] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(5673), - [anon_sym_LT] = ACTIONS(5675), - [anon_sym___extension__] = ACTIONS(5673), - [anon_sym_extern] = ACTIONS(5673), - [anon_sym___attribute__] = ACTIONS(5673), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4302), - [anon_sym___declspec] = ACTIONS(5673), - [anon_sym___based] = ACTIONS(5673), - [anon_sym___cdecl] = ACTIONS(5673), - [anon_sym___clrcall] = ACTIONS(5673), - [anon_sym___stdcall] = ACTIONS(5673), - [anon_sym___fastcall] = ACTIONS(5673), - [anon_sym___thiscall] = ACTIONS(5673), - [anon_sym___vectorcall] = ACTIONS(5673), - [anon_sym_signed] = ACTIONS(5673), - [anon_sym_unsigned] = ACTIONS(5673), - [anon_sym_long] = ACTIONS(5673), - [anon_sym_short] = ACTIONS(5673), - [anon_sym_LBRACK] = ACTIONS(5673), - [anon_sym_static] = ACTIONS(5673), - [anon_sym_register] = ACTIONS(5673), - [anon_sym_inline] = ACTIONS(5673), - [anon_sym___inline] = ACTIONS(5673), - [anon_sym___inline__] = ACTIONS(5673), - [anon_sym___forceinline] = ACTIONS(5673), - [anon_sym_thread_local] = ACTIONS(5673), - [anon_sym___thread] = ACTIONS(5673), - [anon_sym_const] = ACTIONS(5673), - [anon_sym_constexpr] = ACTIONS(5673), - [anon_sym_volatile] = ACTIONS(5673), - [anon_sym_restrict] = ACTIONS(5673), - [anon_sym___restrict__] = ACTIONS(5673), - [anon_sym__Atomic] = ACTIONS(5673), - [anon_sym__Noreturn] = ACTIONS(5673), - [anon_sym_noreturn] = ACTIONS(5673), - [anon_sym_mutable] = ACTIONS(5673), - [anon_sym_constinit] = ACTIONS(5673), - [anon_sym_consteval] = ACTIONS(5673), - [sym_primitive_type] = ACTIONS(5673), - [anon_sym_enum] = ACTIONS(5673), - [anon_sym_class] = ACTIONS(5673), - [anon_sym_struct] = ACTIONS(5673), - [anon_sym_union] = ACTIONS(5673), - [anon_sym_or] = ACTIONS(5673), - [anon_sym_and] = ACTIONS(5673), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5673), - [anon_sym_decltype] = ACTIONS(5673), - [anon_sym_virtual] = ACTIONS(5673), - [anon_sym_alignas] = ACTIONS(5673), - [anon_sym_explicit] = ACTIONS(5673), - [anon_sym_typename] = ACTIONS(5673), - [anon_sym_template] = ACTIONS(5673), - [anon_sym_operator] = ACTIONS(5673), - [anon_sym_friend] = ACTIONS(5673), - [anon_sym_using] = ACTIONS(5673), - [anon_sym_concept] = ACTIONS(5673), - }, - [2798] = { - [sym_identifier] = ACTIONS(2768), - [aux_sym_preproc_def_token1] = ACTIONS(2768), - [aux_sym_preproc_if_token1] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2768), - [sym_preproc_directive] = ACTIONS(2768), - [anon_sym_LPAREN2] = ACTIONS(2770), - [anon_sym_TILDE] = ACTIONS(2770), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym_typedef] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2770), - [anon_sym___declspec] = ACTIONS(2768), - [anon_sym___based] = ACTIONS(2768), - [anon_sym_RBRACE] = 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(2768), - [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_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2768), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym_explicit] = ACTIONS(2768), - [anon_sym_typename] = ACTIONS(2768), - [anon_sym_template] = ACTIONS(2768), - [anon_sym_operator] = ACTIONS(2768), - [anon_sym_friend] = ACTIONS(2768), - [anon_sym_public] = ACTIONS(2768), - [anon_sym_private] = ACTIONS(2768), - [anon_sym_protected] = ACTIONS(2768), - [anon_sym_using] = ACTIONS(2768), - [anon_sym_static_assert] = ACTIONS(2768), - [anon_sym_catch] = ACTIONS(2768), - }, - [2799] = { - [sym_string_literal] = STATE(2654), - [sym_raw_string_literal] = STATE(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4286), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym___attribute__] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_and_eq] = ACTIONS(4286), - [anon_sym_or_eq] = ACTIONS(4286), - [anon_sym_xor_eq] = ACTIONS(4286), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4286), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4286), - [anon_sym_not_eq] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(5413), - [anon_sym_u_DQUOTE] = ACTIONS(5413), - [anon_sym_U_DQUOTE] = ACTIONS(5413), - [anon_sym_u8_DQUOTE] = ACTIONS(5413), - [anon_sym_DQUOTE] = ACTIONS(5413), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5415), - [anon_sym_LR_DQUOTE] = ACTIONS(5415), - [anon_sym_uR_DQUOTE] = ACTIONS(5415), - [anon_sym_UR_DQUOTE] = ACTIONS(5415), - [anon_sym_u8R_DQUOTE] = ACTIONS(5415), - [sym_literal_suffix] = ACTIONS(5184), - }, - [2800] = { - [sym_template_argument_list] = STATE(2334), - [sym_identifier] = ACTIONS(4860), - [anon_sym_LPAREN2] = ACTIONS(4865), - [anon_sym_TILDE] = ACTIONS(4865), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_PIPE_PIPE] = ACTIONS(4865), - [anon_sym_AMP_AMP] = ACTIONS(4865), - [anon_sym_AMP] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(5675), - [anon_sym___extension__] = ACTIONS(4860), - [anon_sym_extern] = ACTIONS(4860), - [anon_sym___attribute__] = ACTIONS(4860), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4865), - [anon_sym___declspec] = ACTIONS(4860), - [anon_sym___based] = ACTIONS(4860), - [anon_sym___cdecl] = ACTIONS(4860), - [anon_sym___clrcall] = ACTIONS(4860), - [anon_sym___stdcall] = ACTIONS(4860), - [anon_sym___fastcall] = ACTIONS(4860), - [anon_sym___thiscall] = ACTIONS(4860), - [anon_sym___vectorcall] = ACTIONS(4860), - [anon_sym_signed] = ACTIONS(4860), - [anon_sym_unsigned] = ACTIONS(4860), - [anon_sym_long] = ACTIONS(4860), - [anon_sym_short] = ACTIONS(4860), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_static] = ACTIONS(4860), - [anon_sym_register] = ACTIONS(4860), - [anon_sym_inline] = ACTIONS(4860), - [anon_sym___inline] = ACTIONS(4860), - [anon_sym___inline__] = ACTIONS(4860), - [anon_sym___forceinline] = ACTIONS(4860), - [anon_sym_thread_local] = ACTIONS(4860), - [anon_sym___thread] = ACTIONS(4860), - [anon_sym_const] = ACTIONS(4860), - [anon_sym_constexpr] = ACTIONS(4860), - [anon_sym_volatile] = ACTIONS(4860), - [anon_sym_restrict] = ACTIONS(4860), - [anon_sym___restrict__] = ACTIONS(4860), - [anon_sym__Atomic] = ACTIONS(4860), - [anon_sym__Noreturn] = ACTIONS(4860), - [anon_sym_noreturn] = ACTIONS(4860), - [anon_sym_mutable] = ACTIONS(4860), - [anon_sym_constinit] = ACTIONS(4860), - [anon_sym_consteval] = ACTIONS(4860), - [sym_primitive_type] = ACTIONS(4860), - [anon_sym_enum] = ACTIONS(4860), - [anon_sym_class] = ACTIONS(4860), - [anon_sym_struct] = ACTIONS(4860), - [anon_sym_union] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4860), - [anon_sym_decltype] = ACTIONS(4860), - [anon_sym_virtual] = ACTIONS(4860), - [anon_sym_alignas] = ACTIONS(4860), - [anon_sym_explicit] = ACTIONS(4860), - [anon_sym_typename] = ACTIONS(4860), - [anon_sym_template] = ACTIONS(4860), - [anon_sym_operator] = ACTIONS(4860), - [anon_sym_friend] = ACTIONS(4860), - [anon_sym_using] = ACTIONS(4860), - [anon_sym_concept] = ACTIONS(4860), - }, - [2801] = { - [sym_attribute_specifier] = STATE(3217), - [sym_field_declaration_list] = STATE(3187), - [sym_virtual_specifier] = STATE(7832), - [sym_base_class_clause] = STATE(8527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(5677), - [anon_sym_RPAREN] = ACTIONS(5677), - [anon_sym_LPAREN2] = ACTIONS(5677), - [anon_sym_DASH] = ACTIONS(5679), - [anon_sym_PLUS] = ACTIONS(5679), - [anon_sym_STAR] = ACTIONS(5679), - [anon_sym_SLASH] = ACTIONS(5679), - [anon_sym_PERCENT] = ACTIONS(5679), - [anon_sym_PIPE_PIPE] = ACTIONS(5677), - [anon_sym_AMP_AMP] = ACTIONS(5677), - [anon_sym_PIPE] = ACTIONS(5679), - [anon_sym_CARET] = ACTIONS(5679), - [anon_sym_AMP] = ACTIONS(5679), - [anon_sym_EQ_EQ] = ACTIONS(5677), - [anon_sym_BANG_EQ] = ACTIONS(5677), - [anon_sym_GT] = ACTIONS(5679), - [anon_sym_GT_EQ] = ACTIONS(5677), - [anon_sym_LT_EQ] = ACTIONS(5679), - [anon_sym_LT] = ACTIONS(5679), - [anon_sym_LT_LT] = ACTIONS(5679), - [anon_sym_GT_GT] = ACTIONS(5679), - [anon_sym_SEMI] = ACTIONS(5677), - [anon_sym___attribute__] = ACTIONS(5657), - [anon_sym_LBRACE] = ACTIONS(5659), - [anon_sym_RBRACE] = ACTIONS(5677), - [anon_sym_LBRACK] = ACTIONS(5677), - [anon_sym_RBRACK] = ACTIONS(5677), - [anon_sym_EQ] = ACTIONS(5679), - [anon_sym_COLON] = ACTIONS(5661), - [anon_sym_QMARK] = ACTIONS(5677), - [anon_sym_STAR_EQ] = ACTIONS(5677), - [anon_sym_SLASH_EQ] = ACTIONS(5677), - [anon_sym_PERCENT_EQ] = ACTIONS(5677), - [anon_sym_PLUS_EQ] = ACTIONS(5677), - [anon_sym_DASH_EQ] = ACTIONS(5677), - [anon_sym_LT_LT_EQ] = ACTIONS(5677), - [anon_sym_GT_GT_EQ] = ACTIONS(5677), - [anon_sym_AMP_EQ] = ACTIONS(5677), - [anon_sym_CARET_EQ] = ACTIONS(5677), - [anon_sym_PIPE_EQ] = ACTIONS(5677), - [anon_sym_and_eq] = ACTIONS(5677), - [anon_sym_or_eq] = ACTIONS(5677), - [anon_sym_xor_eq] = ACTIONS(5677), - [anon_sym_LT_EQ_GT] = ACTIONS(5677), - [anon_sym_or] = ACTIONS(5679), - [anon_sym_and] = ACTIONS(5679), - [anon_sym_bitor] = ACTIONS(5677), - [anon_sym_xor] = ACTIONS(5679), - [anon_sym_bitand] = ACTIONS(5677), - [anon_sym_not_eq] = ACTIONS(5677), - [anon_sym_DASH_DASH] = ACTIONS(5677), - [anon_sym_PLUS_PLUS] = ACTIONS(5677), - [anon_sym_DOT] = ACTIONS(5679), - [anon_sym_DOT_STAR] = ACTIONS(5677), - [anon_sym_DASH_GT] = ACTIONS(5677), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5677), - [anon_sym_decltype] = ACTIONS(5677), - [anon_sym_final] = ACTIONS(5663), - [anon_sym_override] = ACTIONS(5663), - }, - [2802] = { - [sym_string_literal] = STATE(3456), - [sym_template_argument_list] = STATE(4762), - [sym_raw_string_literal] = STATE(3456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(5681), - [anon_sym_COLON] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(5683), - [anon_sym_SLASH_EQ] = ACTIONS(5683), - [anon_sym_PERCENT_EQ] = ACTIONS(5683), - [anon_sym_PLUS_EQ] = ACTIONS(5683), - [anon_sym_DASH_EQ] = ACTIONS(5683), - [anon_sym_LT_LT_EQ] = ACTIONS(5683), - [anon_sym_GT_GT_EQ] = ACTIONS(5683), - [anon_sym_AMP_EQ] = ACTIONS(5683), - [anon_sym_CARET_EQ] = ACTIONS(5683), - [anon_sym_PIPE_EQ] = ACTIONS(5683), - [anon_sym_and_eq] = ACTIONS(5683), - [anon_sym_or_eq] = ACTIONS(5683), - [anon_sym_xor_eq] = ACTIONS(5683), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4278), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4278), - [anon_sym_not_eq] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4278), - [anon_sym_L_DQUOTE] = ACTIONS(4314), - [anon_sym_u_DQUOTE] = ACTIONS(4314), - [anon_sym_U_DQUOTE] = ACTIONS(4314), - [anon_sym_u8_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [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), - }, - [2803] = { - [sym_string_literal] = STATE(2603), - [sym_raw_string_literal] = STATE(2603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_RPAREN] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4286), - [anon_sym_LT_LT] = ACTIONS(4286), - [anon_sym_GT_GT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_and_eq] = ACTIONS(4286), - [anon_sym_or_eq] = ACTIONS(4286), - [anon_sym_xor_eq] = ACTIONS(4286), - [anon_sym_LT_EQ_GT] = ACTIONS(4278), - [anon_sym_or] = ACTIONS(4286), - [anon_sym_and] = ACTIONS(4286), - [anon_sym_bitor] = ACTIONS(4286), - [anon_sym_xor] = ACTIONS(4286), - [anon_sym_bitand] = ACTIONS(4286), - [anon_sym_not_eq] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_DOT_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4286), - [anon_sym_L_DQUOTE] = ACTIONS(5260), - [anon_sym_u_DQUOTE] = ACTIONS(5260), - [anon_sym_U_DQUOTE] = ACTIONS(5260), - [anon_sym_u8_DQUOTE] = ACTIONS(5260), - [anon_sym_DQUOTE] = ACTIONS(5260), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5262), - [anon_sym_LR_DQUOTE] = ACTIONS(5262), - [anon_sym_uR_DQUOTE] = ACTIONS(5262), - [anon_sym_UR_DQUOTE] = ACTIONS(5262), - [anon_sym_u8R_DQUOTE] = ACTIONS(5262), - [anon_sym_DASH_GT_STAR] = ACTIONS(4278), - [sym_literal_suffix] = ACTIONS(5685), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3055), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3053), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [71] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2939), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2937), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [142] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3205), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3203), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [213] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3316), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3314), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [284] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5175), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5173), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [355] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3368), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3366), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [426] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5171), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5169), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [497] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5167), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5165), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [568] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3354), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3352), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [639] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3117), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3115), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5278), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5276), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [781] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5274), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5272), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [852] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3446), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3444), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3452), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3450), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [994] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3330), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3328), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1065] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3284), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3282), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1136] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3232), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3230), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1207] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3125), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3123), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1278] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2983), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2981), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1349] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3125), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3123), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3195), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3205), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3203), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3272), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3270), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1633] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3276), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3274), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1704] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3280), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3278), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1775] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3310), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3308), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1846] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5687), 1, - anon_sym___attribute__, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(2618), 1, - sym_attribute_specifier, - STATE(3128), 1, - sym_field_declaration_list, - STATE(7834), 1, - sym_virtual_specifier, - STATE(8848), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5671), 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(5669), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [1933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5163), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5161), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2004] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3292), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3290), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3296), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3294), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2146] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5163), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5161), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2217] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5553), 27, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5555), 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, - [2288] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5691), 1, - sym_identifier, - STATE(2836), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5694), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5697), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5120), 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(5118), 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, - [2367] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5561), 27, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5563), 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, - [2438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3430), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3428), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2509] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5159), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5157), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2580] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3438), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3436), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2651] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5246), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5244), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2722] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3272), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3270), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2793] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3276), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3274), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3280), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3278), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2935] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3310), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3308), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3292), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3290), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3077] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3296), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3294), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3148] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5274), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5272), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3219] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5600), 27, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5602), 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, - [3290] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5592), 27, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5594), 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, - [3361] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3300), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3298), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3432] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3304), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5238), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5236), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3574] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5238), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5236), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3645] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2927), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2925), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3304), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3787] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3372), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3370), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3338), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3336), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3929] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3029), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3027), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4000] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3029), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3027), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3300), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3298), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4142] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3438), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3436), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4213] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3382), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4284] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3430), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3428), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4355] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5553), 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(5555), 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, - [4426] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5700), 1, - sym_identifier, - STATE(2978), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4363), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4365), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5134), 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(5132), 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, - [4505] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3390), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3388), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3372), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3370), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3195), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4718] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5278), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5276), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4789] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3219), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3217), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4860] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3354), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3352), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4931] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3253), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3251), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5002] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5687), 1, - anon_sym___attribute__, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(2638), 1, - sym_attribute_specifier, - STATE(3142), 1, - sym_field_declaration_list, - STATE(7590), 1, - sym_virtual_specifier, - STATE(8637), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5655), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5653), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [5089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3338), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3336), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5561), 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(5563), 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, - [5231] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3398), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3396), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5302] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3402), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3400), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5373] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3408), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3406), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5444] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3412), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3410), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5515] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2915), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2913), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2917), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2917), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5728] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3416), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3414), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5799] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5870] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3232), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3230), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5941] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3284), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3282), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6012] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5687), 1, - anon_sym___attribute__, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(2572), 1, - sym_attribute_specifier, - STATE(3115), 1, - sym_field_declaration_list, - STATE(7722), 1, - sym_virtual_specifier, - STATE(8749), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5667), 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(5665), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [6099] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5687), 1, - anon_sym___attribute__, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(2614), 1, - sym_attribute_specifier, - STATE(3134), 1, - sym_field_declaration_list, - STATE(7975), 1, - sym_virtual_specifier, - STATE(8828), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5679), 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(5677), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [6186] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3330), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3328), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6257] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3452), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3450), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6328] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3446), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3444), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6399] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3029), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3027), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6470] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3029), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3027), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6541] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3047), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3045), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6612] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3051), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3049), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2987), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2985), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3368), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3366), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5218), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5216), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3089), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3087), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6967] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3288), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3286), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5238), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5236), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7109] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5238), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5236), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7180] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3382), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3380), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7251] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3390), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3388), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7322] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2915), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2913), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7393] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5222), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5220), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7464] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5222), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5220), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5218), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5216), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7606] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5226), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5224), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7677] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5268), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7748] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5234), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5232), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7819] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5266), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5264), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5214), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5212), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7961] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5230), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5228), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5210), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5208), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8103] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5702), 1, - sym_literal_suffix, - STATE(2672), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(5626), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5628), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4278), 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(4286), 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, - [8182] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5292), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5290), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8253] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5296), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5294), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8324] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3125), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3123), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3125), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3123), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3117), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3115), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8537] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5300), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5298), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3398), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3396), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8679] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5214), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5212), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5210), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5208), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8821] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3402), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3400), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5230), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5228), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8963] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5188), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5186), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9034] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3085), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3083), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9105] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3109), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3107), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5302), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9247] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3113), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3111), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9318] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3075), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3073), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5226), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5224), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9460] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3253), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3251), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9531] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5302), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5308), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5306), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9673] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5234), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5232), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5268), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9815] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5218), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5216), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9886] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5312), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5310), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9957] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5335), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5333), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [10028] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5222), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5220), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [10099] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5222), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5220), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [10170] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5218), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5216), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [10241] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5331), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5329), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [10312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3412), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3410), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [10383] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3416), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3414), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [10454] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5266), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5264), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [10525] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5214), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5212), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [10596] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5210), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5208), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [10667] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5214), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5212), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [10738] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5285), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5283), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [10809] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5285), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5283), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [10880] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5331), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5329), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [10951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5335), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5333), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11022] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5312), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11093] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5210), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5208), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11164] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5308), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5306), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5302), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11306] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5302), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5300), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5298), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11448] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5296), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5294), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11519] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5292), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5290), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11590] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3033), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3031), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11661] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3011), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3005), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3003), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11803] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2991), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2989), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11874] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2917), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11945] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2846), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2844), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12016] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2979), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2977), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12087] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2967), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2965), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12158] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2927), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2925), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12229] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3085), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3083), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3109), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3107), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12371] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2917), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12442] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5704), 1, - sym_identifier, - STATE(2836), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4363), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4365), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5147), 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(5145), 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, - [12521] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3113), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3111), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12592] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2987), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2985), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12663] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3075), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3073), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12734] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3226), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3224), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12805] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5600), 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(5602), 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, - [12876] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5592), 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(5594), 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, - [12947] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3408), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3406), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13018] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3348), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3346), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5188), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5186), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3033), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3031), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13231] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3011), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13302] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3454), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13373] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3316), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3314), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13444] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3005), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3003), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13515] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2983), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2981), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2991), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2989), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3047), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3045), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13728] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3051), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3049), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13799] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3304), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13870] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3304), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13941] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3055), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3053), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [14012] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3089), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3087), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [14083] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3348), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3346), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [14154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2963), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2961), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [14225] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2955), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2953), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [14296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2951), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2949), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [14367] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3288), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3286), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [14438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2883), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2881), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [14509] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5246), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5244), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [14580] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3219), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3217), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [14651] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2963), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2961), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [14722] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5159), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5157), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [14793] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5163), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5161), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [14864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2955), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2953), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [14935] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5163), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5161), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [15006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2846), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2844), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [15077] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5167), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5165), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [15148] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5171), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5169), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [15219] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5175), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5173), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [15290] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2951), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2949), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [15361] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2939), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2937), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [15432] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2875), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2873), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [15503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2979), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2977), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [15574] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2967), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2965), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [15645] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3226), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3224), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [15716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2871), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2869), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [15787] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2883), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2881), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [15858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2871), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2869), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [15929] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2875), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2873), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [16000] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5600), 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(5602), 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, - [16070] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4846), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4844), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [16140] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4854), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4852), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [16210] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(5712), 1, - anon_sym_LBRACK, - ACTIONS(5714), 1, - sym_auto, - ACTIONS(5716), 1, - anon_sym_decltype, - STATE(3202), 1, - sym_decltype_auto, - STATE(3275), 1, - sym_new_declarator, - STATE(3501), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5710), 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(5706), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [16296] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5718), 1, - sym_identifier, - ACTIONS(5722), 1, - sym_primitive_type, - STATE(3065), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5720), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5351), 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(5353), 35, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [16374] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5724), 1, - anon_sym___attribute__, - ACTIONS(5726), 1, - anon_sym_LBRACE, - STATE(3346), 1, - sym_field_declaration_list, - STATE(3697), 1, - sym_attribute_specifier, - STATE(7808), 1, - sym_virtual_specifier, - STATE(8710), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5667), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5665), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [16460] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5724), 1, - anon_sym___attribute__, - ACTIONS(5726), 1, - anon_sym_LBRACE, - STATE(3311), 1, - sym_field_declaration_list, - STATE(3687), 1, - sym_attribute_specifier, - STATE(7645), 1, - sym_virtual_specifier, - STATE(8586), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5671), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5669), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [16546] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5204), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(5202), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [16618] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5182), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5180), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [16688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4877), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [16758] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4890), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4888), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [16828] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5724), 1, - anon_sym___attribute__, - ACTIONS(5726), 1, - anon_sym_LBRACE, - STATE(3367), 1, - sym_field_declaration_list, - STATE(3675), 1, - sym_attribute_specifier, - STATE(7835), 1, - sym_virtual_specifier, - STATE(8515), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5679), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5677), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [16914] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4850), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4848), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [16984] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(5712), 1, - anon_sym_LBRACK, - ACTIONS(5714), 1, - sym_auto, - ACTIONS(5716), 1, - anon_sym_decltype, - STATE(3197), 1, - sym_new_declarator, - STATE(3202), 1, - sym_decltype_auto, - STATE(3454), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5730), 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(5728), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [17070] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5553), 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(5555), 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, - [17140] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5600), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5602), 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, - [17210] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5724), 1, - anon_sym___attribute__, - ACTIONS(5726), 1, - anon_sym_LBRACE, - STATE(3397), 1, - sym_field_declaration_list, - STATE(3708), 1, - sym_attribute_specifier, - STATE(7966), 1, - sym_virtual_specifier, - STATE(8770), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5655), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5653), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [17296] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3045), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5732), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5364), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - ACTIONS(5362), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - sym_primitive_type, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_auto, - anon_sym_decltype, - [17370] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5739), 1, - anon_sym_AMP_AMP, - ACTIONS(5741), 1, - anon_sym_and, - ACTIONS(5737), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5735), 54, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [17444] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5592), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5594), 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, - [17514] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4858), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4856), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [17584] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5739), 1, - anon_sym_AMP_AMP, - ACTIONS(5741), 1, - anon_sym_and, - ACTIONS(5747), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5749), 1, - anon_sym_or, - ACTIONS(5745), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5743), 53, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [17662] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4886), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4884), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [17732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5242), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5240), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [17802] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5751), 1, - sym_identifier, - ACTIONS(5755), 1, - sym_primitive_type, - STATE(3045), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5753), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5351), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - ACTIONS(5353), 28, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [17880] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(5757), 1, - anon_sym_LT, - STATE(3094), 1, - sym_template_argument_list, - ACTIONS(5673), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4302), 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_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [17956] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5592), 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(5594), 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, - [18026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5561), 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(5563), 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, - [18096] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(5759), 1, - anon_sym_LT, - STATE(3094), 1, - sym_template_argument_list, - ACTIONS(4860), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4865), 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_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [18172] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5561), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5563), 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, - [18242] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5553), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5555), 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, - [18312] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5242), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(5240), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [18384] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5242), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(5240), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [18456] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5592), 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(5594), 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, - [18526] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(5712), 1, - anon_sym_LBRACK, - ACTIONS(5714), 1, - sym_auto, - ACTIONS(5716), 1, - anon_sym_decltype, - STATE(3202), 1, - sym_decltype_auto, - STATE(3238), 1, - sym_new_declarator, - STATE(3583), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5764), 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(5762), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [18612] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5600), 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(5602), 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, - [18682] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2196), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2198), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [18752] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3065), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5766), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5364), 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(5362), 37, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [18826] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2194), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [18896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5561), 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(5563), 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, - [18966] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5553), 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(5555), 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, - [19036] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(5712), 1, - anon_sym_LBRACK, - ACTIONS(5714), 1, - sym_auto, - ACTIONS(5716), 1, - anon_sym_decltype, - STATE(3202), 1, - sym_decltype_auto, - STATE(3203), 1, - sym_new_declarator, - STATE(3549), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5771), 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(5769), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [19122] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5773), 1, - anon_sym___attribute__, - ACTIONS(5775), 1, - anon_sym_LBRACE, - STATE(3560), 1, - sym_field_declaration_list, - STATE(3741), 1, - sym_attribute_specifier, - STATE(7624), 1, - sym_virtual_specifier, - STATE(8603), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5655), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5653), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [19207] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5592), 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(5594), 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, - [19276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5561), 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(5563), 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, - [19345] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5773), 1, - anon_sym___attribute__, - ACTIONS(5775), 1, - anon_sym_LBRACE, - STATE(3516), 1, - sym_field_declaration_list, - STATE(3786), 1, - sym_attribute_specifier, - STATE(7625), 1, - sym_virtual_specifier, - STATE(8615), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5671), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5669), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [19430] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5777), 1, - sym_identifier, - ACTIONS(5781), 1, - sym_primitive_type, - STATE(3075), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5779), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5351), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(5353), 29, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_auto, - anon_sym_decltype, - [19507] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3075), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5783), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5364), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(5362), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - sym_primitive_type, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - [19580] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - ACTIONS(5790), 1, - anon_sym_LBRACE, - STATE(2591), 1, - sym_attribute_specifier, - STATE(3114), 1, - sym_enumerator_list, - ACTIONS(5788), 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(5786), 47, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [19657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4852), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4854), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [19726] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5685), 1, - sym_literal_suffix, - STATE(2866), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(4363), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4365), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4286), 22, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4278), 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, - [19803] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5600), 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(5602), 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, - [19872] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5202), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5204), 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_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [19943] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4844), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4846), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [20012] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - ACTIONS(5796), 1, - anon_sym_LBRACE, - ACTIONS(5798), 1, - anon_sym_COLON, - STATE(3107), 1, - sym__enum_base_clause, - STATE(3159), 1, - sym_enumerator_list, - STATE(3250), 1, - sym_attribute_specifier, - ACTIONS(5794), 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(5792), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [20093] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4879), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [20162] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - ACTIONS(5796), 1, - anon_sym_LBRACE, - ACTIONS(5798), 1, - anon_sym_COLON, - STATE(3140), 1, - sym__enum_base_clause, - STATE(3172), 1, - sym_enumerator_list, - STATE(3196), 1, - sym_attribute_specifier, - ACTIONS(5802), 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(5800), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [20243] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5773), 1, - anon_sym___attribute__, - ACTIONS(5775), 1, - anon_sym_LBRACE, - STATE(3536), 1, - sym_field_declaration_list, - STATE(3760), 1, - sym_attribute_specifier, - STATE(7598), 1, - sym_virtual_specifier, - STATE(8610), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5667), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5665), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [20328] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(4322), 1, - anon_sym_LPAREN2, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5808), 1, - anon_sym_STAR, - ACTIONS(5810), 1, - anon_sym_AMP_AMP, - ACTIONS(5812), 1, - anon_sym_AMP, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(5816), 1, - anon_sym_LBRACK, - STATE(4739), 1, - sym_parameter_list, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6518), 1, - sym__scope_resolution, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7115), 1, - sym__declarator, - STATE(7371), 1, - sym__abstract_declarator, - STATE(9528), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(5806), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(3749), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4032), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [20449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5553), 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(5555), 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, - [20518] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4856), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4858), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [20587] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4884), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4886), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [20656] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5180), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5182), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [20725] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4888), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4890), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [20794] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5240), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5242), 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_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [20865] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4850), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [20934] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4892), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4897), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [21003] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5773), 1, - anon_sym___attribute__, - ACTIONS(5775), 1, - anon_sym_LBRACE, - STATE(3510), 1, - sym_field_declaration_list, - STATE(3805), 1, - sym_attribute_specifier, - STATE(7638), 1, - sym_virtual_specifier, - STATE(8622), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5679), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5677), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [21088] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - ACTIONS(5790), 1, - anon_sym_LBRACE, - STATE(2609), 1, - sym_attribute_specifier, - STATE(3139), 1, - sym_enumerator_list, - ACTIONS(5820), 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(5818), 47, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [21165] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(4322), 1, - anon_sym_LPAREN2, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(5816), 1, - anon_sym_LBRACK, - ACTIONS(5822), 1, - anon_sym_STAR, - ACTIONS(5824), 1, - anon_sym_AMP_AMP, - ACTIONS(5826), 1, - anon_sym_AMP, - STATE(4706), 1, - sym_parameter_list, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6518), 1, - sym__scope_resolution, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7115), 1, - sym__declarator, - STATE(7406), 1, - sym__abstract_declarator, - STATE(9528), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(5806), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3769), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4032), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [21286] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5240), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5242), 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_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [21357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5830), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5828), 54, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [21425] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5832), 1, - anon_sym___attribute__, - ACTIONS(5834), 1, - anon_sym_LBRACE, - STATE(3349), 1, - sym_field_declaration_list, - STATE(3653), 1, - sym_attribute_specifier, - STATE(7939), 1, - sym_virtual_specifier, - STATE(8468), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5679), 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(5677), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [21509] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2594), 1, - sym_attribute_specifier, - ACTIONS(5838), 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(5836), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [21581] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2587), 1, - sym_attribute_specifier, - ACTIONS(5842), 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(5840), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [21653] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2580), 1, - sym_attribute_specifier, - ACTIONS(5846), 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(5844), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [21725] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2577), 1, - sym_attribute_specifier, - ACTIONS(5850), 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(5848), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [21797] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5832), 1, - anon_sym___attribute__, - ACTIONS(5834), 1, - anon_sym_LBRACE, - STATE(3365), 1, - sym_field_declaration_list, - STATE(3646), 1, - sym_attribute_specifier, - STATE(7887), 1, - sym_virtual_specifier, - STATE(8495), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5671), 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(5669), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [21881] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(4322), 1, - anon_sym_LPAREN2, - ACTIONS(4324), 1, - anon_sym_STAR, - ACTIONS(4326), 1, - anon_sym_AMP_AMP, - ACTIONS(4328), 1, - anon_sym_AMP, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(5806), 1, - anon_sym_RPAREN, - ACTIONS(5816), 1, - anon_sym_LBRACK, - ACTIONS(5852), 1, - anon_sym_COLON_COLON, - STATE(4706), 1, - sym_parameter_list, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6525), 1, - sym__scope_resolution, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7172), 1, - sym__declarator, - STATE(7406), 1, - sym__abstract_declarator, - STATE(9661), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3909), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4183), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [22001] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - ACTIONS(5796), 1, - anon_sym_LBRACE, - STATE(3151), 1, - sym_enumerator_list, - STATE(3265), 1, - sym_attribute_specifier, - ACTIONS(5820), 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(5818), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [22077] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5592), 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(5594), 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, - [22145] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2651), 1, - sym_attribute_specifier, - ACTIONS(5856), 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(5854), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [22217] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5600), 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(5602), 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, - [22285] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5832), 1, - anon_sym___attribute__, - ACTIONS(5834), 1, - anon_sym_LBRACE, - STATE(3429), 1, - sym_field_declaration_list, - STATE(3627), 1, - sym_attribute_specifier, - STATE(7679), 1, - sym_virtual_specifier, - STATE(8684), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5655), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5653), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [22369] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5832), 1, - anon_sym___attribute__, - ACTIONS(5834), 1, - anon_sym_LBRACE, - STATE(3396), 1, - sym_field_declaration_list, - STATE(3637), 1, - sym_attribute_specifier, - STATE(7796), 1, - sym_virtual_specifier, - STATE(8550), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5667), 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(5665), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [22453] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2608), 1, - sym_attribute_specifier, - ACTIONS(5860), 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(5858), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [22525] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2558), 1, - sym_attribute_specifier, - ACTIONS(5864), 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(5862), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [22597] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2613), 1, - sym_attribute_specifier, - ACTIONS(5868), 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(5866), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [22669] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2615), 1, - sym_attribute_specifier, - ACTIONS(5872), 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(5870), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [22741] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2620), 1, - sym_attribute_specifier, - ACTIONS(5876), 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(5874), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [22813] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(5757), 1, - anon_sym_LT, - STATE(3094), 1, - sym_template_argument_list, - ACTIONS(4276), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4284), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [22887] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5561), 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(5563), 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, - [22955] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4892), 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_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4897), 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_COLON_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [23023] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2597), 1, - sym_attribute_specifier, - ACTIONS(5880), 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(5878), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [23095] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2662), 1, - sym_attribute_specifier, - ACTIONS(5884), 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(5882), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [23167] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(5886), 1, - anon_sym_LT, - STATE(3163), 1, - sym_template_argument_list, - ACTIONS(5673), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4302), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [23241] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2640), 1, - sym_attribute_specifier, - ACTIONS(5890), 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(5888), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [23313] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5894), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5892), 54, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [23381] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2649), 1, - sym_attribute_specifier, - ACTIONS(5898), 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(5896), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [23453] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5902), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5900), 54, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [23521] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2624), 1, - sym_attribute_specifier, - ACTIONS(5906), 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(5904), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [23593] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2578), 1, - sym_attribute_specifier, - ACTIONS(5910), 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(5908), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [23665] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2628), 1, - sym_attribute_specifier, - ACTIONS(5914), 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(5912), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [23737] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - STATE(2334), 1, - sym_template_argument_list, - ACTIONS(5918), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5916), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [23809] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2659), 1, - sym_attribute_specifier, - ACTIONS(5922), 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(5920), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [23881] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5553), 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(5555), 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, - [23949] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2559), 1, - sym_attribute_specifier, - ACTIONS(5926), 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(5924), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [24021] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2621), 1, - sym_attribute_specifier, - ACTIONS(5930), 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(5928), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [24093] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2629), 1, - sym_attribute_specifier, - ACTIONS(5934), 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(5932), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [24165] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(5936), 1, - anon_sym_LT, - STATE(3163), 1, - sym_template_argument_list, - ACTIONS(4860), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4865), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [24239] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5240), 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(5242), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [24307] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2660), 1, - sym_attribute_specifier, - ACTIONS(5941), 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(5939), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [24379] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - ACTIONS(5796), 1, - anon_sym_LBRACE, - STATE(3157), 1, - sym_enumerator_list, - STATE(3255), 1, - sym_attribute_specifier, - ACTIONS(5788), 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(5786), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [24455] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2592), 1, - sym_attribute_specifier, - ACTIONS(5945), 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(5943), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [24527] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - STATE(2569), 1, - sym_attribute_specifier, - ACTIONS(5949), 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(5947), 48, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [24599] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5240), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5242), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [24668] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3252), 1, - sym_attribute_specifier, - ACTIONS(5842), 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(5840), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [24739] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3251), 1, - sym_attribute_specifier, - ACTIONS(5846), 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(5844), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [24810] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5325), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5327), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_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, - sym_auto, - anon_sym_decltype, - [24877] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3222), 1, - sym_attribute_specifier, - ACTIONS(5930), 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(5928), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [24948] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5561), 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(5563), 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, - [25015] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5953), 1, - anon_sym_LPAREN2, - ACTIONS(5957), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - STATE(3212), 1, - sym_parameter_list, - STATE(3247), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5955), 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(5951), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [25092] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3270), 1, - sym_attribute_specifier, - ACTIONS(5876), 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(5874), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [25163] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3258), 1, - sym_attribute_specifier, - ACTIONS(5941), 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(5939), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [25234] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5961), 1, - anon_sym___attribute__, - ACTIONS(5963), 1, - anon_sym_LBRACE, - STATE(3719), 1, - sym_field_declaration_list, - STATE(4027), 1, - sym_attribute_specifier, - STATE(7963), 1, - sym_virtual_specifier, - STATE(8733), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5671), 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(5669), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [25317] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3237), 1, - sym_attribute_specifier, - ACTIONS(5872), 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(5870), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [25388] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3207), 1, - sym_attribute_specifier, - ACTIONS(5868), 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(5866), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [25459] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5953), 1, - anon_sym_LPAREN2, - ACTIONS(5957), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - STATE(3212), 1, - sym_parameter_list, - STATE(3247), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5967), 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(5965), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [25536] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3156), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5969), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5362), 27, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - 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, - anon_sym_DASH_GT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5364), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [25607] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3268), 1, - sym_attribute_specifier, - ACTIONS(5864), 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(5862), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [25678] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3234), 1, - sym_attribute_specifier, - ACTIONS(5906), 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(5904), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [25749] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3264), 1, - sym_attribute_specifier, - ACTIONS(5860), 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(5858), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [25820] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3219), 1, - sym_attribute_specifier, - ACTIONS(5856), 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(5854), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [25891] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5321), 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(5323), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [25958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5553), 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(5555), 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, - [26025] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4892), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4897), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [26092] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5714), 1, - sym_auto, - ACTIONS(5716), 1, - anon_sym_decltype, - STATE(3202), 1, - sym_decltype_auto, - ACTIONS(5190), 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(5192), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [26165] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - ACTIONS(5972), 1, - anon_sym_LBRACE, - ACTIONS(5974), 1, - anon_sym_COLON, - STATE(3294), 1, - sym__enum_base_clause, - STATE(3378), 1, - sym_enumerator_list, - STATE(3707), 1, - sym_attribute_specifier, - ACTIONS(5802), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5800), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [26244] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5180), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5182), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [26311] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3235), 1, - sym_attribute_specifier, - ACTIONS(5914), 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(5912), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [26382] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3249), 1, - sym_attribute_specifier, - ACTIONS(5880), 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(5878), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [26453] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5541), 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(5543), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [26520] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3271), 1, - sym_attribute_specifier, - ACTIONS(5850), 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(5848), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [26591] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3239), 1, - sym_attribute_specifier, - ACTIONS(5934), 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(5932), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [26662] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3254), 1, - sym_attribute_specifier, - ACTIONS(5945), 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(5943), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [26733] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3229), 1, - sym_attribute_specifier, - ACTIONS(5884), 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(5882), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [26804] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3261), 1, - sym_attribute_specifier, - ACTIONS(5910), 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(5908), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [26875] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5961), 1, - anon_sym___attribute__, - ACTIONS(5963), 1, - anon_sym_LBRACE, - STATE(3800), 1, - sym_field_declaration_list, - STATE(4132), 1, - sym_attribute_specifier, - STATE(7910), 1, - sym_virtual_specifier, - STATE(8489), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5667), 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(5665), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [26958] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5953), 1, - anon_sym_LPAREN2, - ACTIONS(5957), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - STATE(3212), 1, - sym_parameter_list, - STATE(3247), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5978), 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(5976), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [27035] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3199), 1, - sym_attribute_specifier, - ACTIONS(5922), 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(5920), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [27106] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3266), 1, - sym_attribute_specifier, - ACTIONS(5949), 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(5947), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [27177] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5980), 1, - sym_identifier, - ACTIONS(5984), 1, - sym_primitive_type, - STATE(3156), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5982), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5353), 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___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_auto, - anon_sym_decltype, - ACTIONS(5351), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [27252] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5202), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5204), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [27321] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3256), 1, - sym_attribute_specifier, - ACTIONS(5838), 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(5836), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [27392] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5961), 1, - anon_sym___attribute__, - ACTIONS(5963), 1, - anon_sym_LBRACE, - STATE(3828), 1, - sym_field_declaration_list, - STATE(4195), 1, - sym_attribute_specifier, - STATE(7611), 1, - sym_virtual_specifier, - STATE(8604), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5655), 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(5653), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [27475] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - ACTIONS(5972), 1, - anon_sym_LBRACE, - ACTIONS(5974), 1, - anon_sym_COLON, - STATE(3297), 1, - sym__enum_base_clause, - STATE(3359), 1, - sym_enumerator_list, - STATE(3702), 1, - sym_attribute_specifier, - ACTIONS(5794), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5792), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [27554] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5240), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5242), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [27623] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(5986), 1, - anon_sym_LT, - STATE(3220), 1, - sym_template_argument_list, - ACTIONS(5673), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_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_COLON, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4302), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [27696] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3230), 1, - sym_attribute_specifier, - ACTIONS(5890), 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(5888), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [27767] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3236), 1, - sym_attribute_specifier, - ACTIONS(5926), 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(5924), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [27838] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym___attribute__, - STATE(3241), 1, - sym_attribute_specifier, - ACTIONS(5898), 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(5896), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [27909] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5961), 1, - anon_sym___attribute__, - ACTIONS(5963), 1, - anon_sym_LBRACE, - STATE(3776), 1, - sym_field_declaration_list, - STATE(4105), 1, - sym_attribute_specifier, - STATE(7737), 1, - sym_virtual_specifier, - STATE(8747), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5679), 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(5677), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [27992] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(5988), 1, - anon_sym_LT, - STATE(3220), 1, - sym_template_argument_list, - ACTIONS(4860), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_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_COLON, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4865), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [28065] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5953), 1, - anon_sym_LPAREN2, - ACTIONS(5957), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - STATE(3212), 1, - sym_parameter_list, - STATE(3247), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5993), 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(5991), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [28142] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5592), 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(5594), 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, - [28209] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5600), 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(5602), 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, - [28276] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5321), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5323), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [28345] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5997), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(5995), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [28411] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5578), 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(5580), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [28477] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - STATE(3548), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6001), 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(5999), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [28549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5321), 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(5323), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [28615] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5612), 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(5614), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [28681] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5180), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5182), 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [28747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6005), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6003), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [28813] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5545), 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(5547), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [28879] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - STATE(3575), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6009), 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(6007), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [28951] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(4865), 1, - anon_sym_LBRACE, - ACTIONS(6011), 1, - anon_sym_LT, - STATE(3292), 1, - sym_template_argument_list, - ACTIONS(4867), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4872), 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___attribute__, - 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, - [29025] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6014), 1, - anon_sym_LT, - STATE(3421), 1, - sym_template_argument_list, - ACTIONS(4865), 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(4860), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [29097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6018), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6016), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [29163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5484), 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(5486), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [29229] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2108), 1, - anon_sym_LBRACE, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6022), 1, - anon_sym_LBRACK, - ACTIONS(6024), 1, - sym_auto, - ACTIONS(6026), 1, - anon_sym_decltype, - STATE(3662), 1, - sym_decltype_auto, - STATE(3693), 1, - sym_new_declarator, - STATE(4211), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5771), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5769), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [29311] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6032), 1, - anon_sym_LBRACK_LBRACK, - STATE(3209), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6030), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6028), 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___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [29381] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6037), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6035), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [29447] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5240), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5242), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [29513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6041), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6039), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [29579] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - ACTIONS(6043), 1, - anon_sym_LBRACE, - ACTIONS(6045), 1, - anon_sym_COLON, - STATE(3326), 1, - sym__enum_base_clause, - STATE(3552), 1, - sym_enumerator_list, - STATE(3753), 1, - sym_attribute_specifier, - ACTIONS(5794), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5792), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [29657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4892), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4897), 41, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_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, - [29723] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5321), 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(5323), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [29789] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5541), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5543), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [29855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5488), 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(5490), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [29921] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5240), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5242), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [29989] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5586), 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(5588), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [30055] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4892), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4897), 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [30121] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5453), 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(5455), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [30187] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5512), 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(5514), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [30253] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - ACTIONS(6043), 1, - anon_sym_LBRACE, - ACTIONS(6045), 1, - anon_sym_COLON, - STATE(3322), 1, - sym__enum_base_clause, - STATE(3563), 1, - sym_enumerator_list, - STATE(3739), 1, - sym_attribute_specifier, - ACTIONS(5802), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5800), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [30331] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5377), 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(5379), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [30397] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6049), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6047), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [30463] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6014), 1, - anon_sym_LT, - STATE(3421), 1, - sym_template_argument_list, - ACTIONS(4302), 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(5673), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [30535] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5202), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5204), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [30603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5549), 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(5551), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [30669] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5620), 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(5622), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [30735] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5557), 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(5559), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [30801] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5565), 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(5567), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [30867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6053), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6051), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [30933] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2108), 1, - anon_sym_LBRACE, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6022), 1, - anon_sym_LBRACK, - ACTIONS(6024), 1, - sym_auto, - ACTIONS(6026), 1, - anon_sym_decltype, - STATE(3662), 1, - sym_decltype_auto, - STATE(3666), 1, - sym_new_declarator, - STATE(4010), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5730), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5728), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [31015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5516), 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(5518), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [31081] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5531), 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(5533), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [31147] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5341), 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(5343), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [31213] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5492), 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(5494), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [31279] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - STATE(3556), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6057), 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(6055), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [31351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5535), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5537), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [31417] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5496), 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(5498), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [31483] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5582), 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(5584), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [31549] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2108), 1, - anon_sym_LBRACE, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6022), 1, - anon_sym_LBRACK, - ACTIONS(6024), 1, - sym_auto, - ACTIONS(6026), 1, - anon_sym_decltype, - STATE(3662), 1, - sym_decltype_auto, - STATE(3701), 1, - sym_new_declarator, - STATE(4135), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5764), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5762), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [31631] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5604), 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(5606), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [31697] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5504), 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(5506), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [31763] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2108), 1, - anon_sym_LBRACE, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6022), 1, - anon_sym_LBRACK, - ACTIONS(6024), 1, - sym_auto, - ACTIONS(6026), 1, - anon_sym_decltype, - STATE(3662), 1, - sym_decltype_auto, - STATE(3684), 1, - sym_new_declarator, - STATE(4004), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5710), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5706), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [31845] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5500), 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(5502), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [31911] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5957), 1, - anon_sym_LBRACK_LBRACK, - STATE(3209), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6061), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6059), 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___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [31981] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5449), 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(5451), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5445), 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(5447), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5441), 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(5443), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5392), 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(5394), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32245] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5417), 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(5419), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 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(5435), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5429), 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(5431), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5425), 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(5427), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32509] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5437), 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(5439), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32575] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5345), 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(5347), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32641] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5616), 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(5618), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5400), 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(5402), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5396), 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(5398), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5388), 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(5390), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32905] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5373), 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(5375), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5468), 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(5470), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33037] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 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(5474), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33103] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5476), 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(5478), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5369), 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(5371), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33235] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3267), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6063), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5364), 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(5362), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [33305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5337), 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(5339), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33371] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6068), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6066), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [33437] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5508), 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(5510), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5384), 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(5386), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33569] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5240), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5242), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [33637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6072), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6070), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [33703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5480), 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(5482), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33769] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - STATE(3582), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6076), 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(6074), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [33841] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5608), 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(5610), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33907] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6080), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6078), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [33973] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5240), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5242), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [34038] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5240), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(5242), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [34105] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4892), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4897), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [34170] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3990), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(3988), 43, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_requires, - [34235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4844), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4846), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [34300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4856), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4858), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [34365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4852), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4854), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [34430] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - ACTIONS(6082), 1, - anon_sym_LBRACE, - STATE(3368), 1, - sym_enumerator_list, - STATE(3642), 1, - sym_attribute_specifier, - ACTIONS(5820), 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(5818), 41, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [34503] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2156), 1, - anon_sym_LBRACE, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6086), 1, - anon_sym_LBRACK, - ACTIONS(6088), 1, - sym_auto, - ACTIONS(6090), 1, - anon_sym_decltype, - STATE(3727), 1, - sym_decltype_auto, - STATE(3844), 1, - sym_new_declarator, - STATE(4229), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5710), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5706), 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, - [34584] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - ACTIONS(6082), 1, - anon_sym_LBRACE, - STATE(3406), 1, - sym_enumerator_list, - STATE(3632), 1, - sym_attribute_specifier, - ACTIONS(5788), 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(5786), 41, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [34657] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2156), 1, - anon_sym_LBRACE, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6086), 1, - anon_sym_LBRACK, - ACTIONS(6088), 1, - sym_auto, - ACTIONS(6090), 1, - anon_sym_decltype, - STATE(3727), 1, - sym_decltype_auto, - STATE(3829), 1, - sym_new_declarator, - STATE(4274), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5771), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5769), 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, - [34738] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2156), 1, - anon_sym_LBRACE, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6086), 1, - anon_sym_LBRACK, - ACTIONS(6088), 1, - sym_auto, - ACTIONS(6090), 1, - anon_sym_decltype, - STATE(3727), 1, - sym_decltype_auto, - STATE(3816), 1, - sym_new_declarator, - STATE(4302), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5764), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5762), 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, - [34819] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - STATE(2334), 1, - sym_template_argument_list, - ACTIONS(5918), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5916), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [34888] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6092), 1, - anon_sym_LT, - STATE(3214), 1, - sym_template_argument_list, - ACTIONS(5673), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4302), 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, - [34959] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4897), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(4899), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4904), 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___attribute__, - 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, - [35026] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2156), 1, - anon_sym_LBRACE, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6086), 1, - anon_sym_LBRACK, - ACTIONS(6088), 1, - sym_auto, - ACTIONS(6090), 1, - anon_sym_decltype, - STATE(3727), 1, - sym_decltype_auto, - STATE(3838), 1, - sym_new_declarator, - STATE(4258), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5730), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5728), 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, - [35107] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - ACTIONS(5972), 1, - anon_sym_LBRACE, - STATE(3353), 1, - sym_enumerator_list, - STATE(3699), 1, - sym_attribute_specifier, - ACTIONS(5788), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5786), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [35180] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5712), 1, - anon_sym_LBRACK, - STATE(3357), 1, - sym_new_declarator, - ACTIONS(6096), 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(6094), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [35249] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5202), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(5204), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [35316] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - ACTIONS(5972), 1, - anon_sym_LBRACE, - STATE(3388), 1, - sym_enumerator_list, - STATE(3691), 1, - sym_attribute_specifier, - ACTIONS(5820), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5818), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [35389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5180), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(5182), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [35454] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4879), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [35519] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4888), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4890), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [35584] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3986), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(3984), 43, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_requires, - [35649] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4884), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4886), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [35714] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4850), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [35779] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5240), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(5242), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [35846] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6098), 1, - anon_sym_LT, - STATE(3214), 1, - sym_template_argument_list, - ACTIONS(4860), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4865), 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, - [35917] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4844), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(4846), 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, - [35981] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3649), 1, - sym_attribute_specifier, - ACTIONS(5934), 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(5932), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [36049] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3672), 1, - sym_attribute_specifier, - ACTIONS(5922), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5920), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [36117] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5242), 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(5240), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [36183] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3673), 1, - sym_attribute_specifier, - ACTIONS(5884), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5882), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [36251] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3677), 1, - sym_attribute_specifier, - ACTIONS(5906), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5904), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [36319] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3674), 1, - sym_attribute_specifier, - ACTIONS(5850), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5848), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [36387] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5242), 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(5240), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [36453] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6103), 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(6101), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [36517] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2329), 1, - sym_string_literal, - ACTIONS(6109), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6107), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6105), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [36585] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6111), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(6113), 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, - [36649] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3656), 1, - sym_attribute_specifier, - ACTIONS(5856), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5854), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [36717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6117), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6115), 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_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [36781] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5180), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(5182), 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, - [36845] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2818), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(2823), 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, - [36909] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2327), 1, - sym_string_literal, - ACTIONS(6109), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6107), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6105), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [36977] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - ACTIONS(6043), 1, - anon_sym_LBRACE, - STATE(3537), 1, - sym_enumerator_list, - STATE(3756), 1, - sym_attribute_specifier, - ACTIONS(5788), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5786), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [37049] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3595), 1, - sym_attribute_specifier, - ACTIONS(5898), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5896), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [37117] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3706), 1, - sym_attribute_specifier, - ACTIONS(5890), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5888), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [37185] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6121), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6119), 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_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [37249] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - ACTIONS(6043), 1, - anon_sym_LBRACE, - STATE(3527), 1, - sym_enumerator_list, - STATE(3777), 1, - sym_attribute_specifier, - ACTIONS(5820), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5818), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [37321] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(4850), 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, - [37385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5182), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5180), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [37449] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6125), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6123), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_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, - [37525] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6133), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(6135), 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, - [37589] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2328), 1, - sym_string_literal, - ACTIONS(6109), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6107), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6105), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [37657] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5202), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5204), 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, - [37723] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4888), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(4890), 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, - [37787] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5240), 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(5242), 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [37851] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - ACTIONS(6137), 1, - anon_sym_LBRACE, - ACTIONS(6139), 1, - anon_sym_COLON, - STATE(3611), 1, - sym__enum_base_clause, - STATE(3814), 1, - sym_enumerator_list, - STATE(4148), 1, - sym_attribute_specifier, - ACTIONS(5794), 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(5792), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [37927] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3663), 1, - sym_attribute_specifier, - ACTIONS(5856), 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(5854), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [37995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4886), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4884), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [38059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4858), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4856), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [38123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4846), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4844), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [38187] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(4879), 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, - [38251] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3661), 1, - sym_attribute_specifier, - ACTIONS(5846), 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(5844), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [38319] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3660), 1, - sym_attribute_specifier, - ACTIONS(5842), 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(5840), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [38387] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3659), 1, - sym_attribute_specifier, - ACTIONS(5838), 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(5836), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [38455] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3686), 1, - sym_attribute_specifier, - ACTIONS(5876), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5874), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [38523] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3688), 1, - sym_attribute_specifier, - ACTIONS(5872), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5870), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [38591] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3689), 1, - sym_attribute_specifier, - ACTIONS(5868), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5866), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [38659] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4884), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(4886), 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, - [38723] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6143), 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(6141), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [38787] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3658), 1, - sym_attribute_specifier, - ACTIONS(5926), 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(5924), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [38855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4856), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(4858), 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, - [38919] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3657), 1, - sym_attribute_specifier, - ACTIONS(5922), 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(5920), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [38987] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3655), 1, - sym_attribute_specifier, - ACTIONS(5884), 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(5882), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [39055] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3690), 1, - sym_attribute_specifier, - ACTIONS(5864), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5862), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [39123] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3654), 1, - sym_attribute_specifier, - ACTIONS(5850), 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(5848), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [39191] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4852), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(4854), 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, - [39255] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6145), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(6147), 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, - [39319] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6151), 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(6149), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [39383] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3636), 1, - sym_attribute_specifier, - ACTIONS(5910), 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(5908), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [39451] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3692), 1, - sym_attribute_specifier, - ACTIONS(5860), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5858), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [39519] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6155), 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(6153), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [39583] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 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(6157), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [39647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2853), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(2858), 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, - [39711] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6161), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(6163), 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, - [39775] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3652), 1, - sym_attribute_specifier, - ACTIONS(5930), 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(5928), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [39843] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3651), 1, - sym_attribute_specifier, - ACTIONS(5906), 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(5904), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [39911] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3650), 1, - sym_attribute_specifier, - ACTIONS(5914), 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(5912), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [39979] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3671), 1, - sym_attribute_specifier, - ACTIONS(5926), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5924), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [40047] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3648), 1, - sym_attribute_specifier, - ACTIONS(5941), 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(5939), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [40115] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5204), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5202), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [40181] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5204), 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(5202), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [40247] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3670), 1, - sym_attribute_specifier, - ACTIONS(5838), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5836), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [40315] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(5886), 1, - anon_sym_LT, - STATE(3163), 1, - sym_template_argument_list, - ACTIONS(4276), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4284), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [40385] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6167), 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(6165), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_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, - [40463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6173), 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(6171), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [40527] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2330), 1, - sym_string_literal, - ACTIONS(6109), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6107), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6105), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [40595] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3703), 1, - sym_attribute_specifier, - ACTIONS(5880), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5878), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [40663] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(4872), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [40727] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3700), 1, - sym_attribute_specifier, - ACTIONS(5945), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5943), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [40795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5242), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5240), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [40859] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6177), 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(6175), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_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, - [40935] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3676), 1, - sym_attribute_specifier, - ACTIONS(5930), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5928), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [41003] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3647), 1, - sym_attribute_specifier, - ACTIONS(5876), 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(5874), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [41071] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4897), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(4899), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4904), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [41137] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6181), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - 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(6179), 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_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [41201] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6185), 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(6183), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_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, - [41279] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3698), 1, - sym_attribute_specifier, - ACTIONS(5910), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5908), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [41347] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3669), 1, - sym_attribute_specifier, - ACTIONS(5842), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5840), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [41415] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3680), 1, - sym_attribute_specifier, - ACTIONS(5941), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5939), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [41483] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - ACTIONS(6137), 1, - anon_sym_LBRACE, - ACTIONS(6139), 1, - anon_sym_COLON, - STATE(3628), 1, - sym__enum_base_clause, - STATE(3831), 1, - sym_enumerator_list, - STATE(4172), 1, - sym_attribute_specifier, - ACTIONS(5802), 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(5800), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [41559] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6191), 1, - anon_sym_LT, - STATE(3292), 1, - sym_template_argument_list, - ACTIONS(6189), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6187), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [41627] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3623), 1, - sym_attribute_specifier, - ACTIONS(5898), 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(5896), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [41695] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3626), 1, - sym_attribute_specifier, - ACTIONS(5890), 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(5888), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [41763] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3668), 1, - sym_attribute_specifier, - ACTIONS(5846), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5844), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [41831] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3645), 1, - sym_attribute_specifier, - ACTIONS(5872), 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(5870), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [41899] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2331), 1, - sym_string_literal, - ACTIONS(6109), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6107), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6105), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [41967] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3644), 1, - sym_attribute_specifier, - ACTIONS(5868), 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(5866), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [42035] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3696), 1, - sym_attribute_specifier, - ACTIONS(5949), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5947), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [42103] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(4872), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [42167] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6196), 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(6194), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_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, - [42245] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6200), 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(6198), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - 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, - [42323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5240), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(5242), 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, - [42387] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5240), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5242), 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, - [42453] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3988), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(3990), 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_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [42517] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4877), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [42581] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5242), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5240), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [42647] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3643), 1, - sym_attribute_specifier, - ACTIONS(5864), 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(5862), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [42715] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4854), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4852), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [42779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(4872), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [42843] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6204), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6202), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [42907] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(4872), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [42971] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3629), 1, - sym_attribute_specifier, - ACTIONS(5880), 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(5878), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [43039] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4890), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4888), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [43103] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3631), 1, - sym_attribute_specifier, - ACTIONS(5945), 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(5943), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [43171] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5240), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5242), 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, - [43237] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4850), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4848), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [43301] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(4872), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [43365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5180), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5182), 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, - [43429] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5242), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5240), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [43495] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - STATE(2334), 1, - sym_template_argument_list, - ACTIONS(5918), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5916), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [43563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(4872), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [43627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4892), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(4897), 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, - [43691] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3679), 1, - sym_attribute_specifier, - ACTIONS(5934), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5932), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [43759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3984), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(3986), 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_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [43823] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6210), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6208), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6206), 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___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [43889] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym___attribute__, - STATE(3678), 1, - sym_attribute_specifier, - ACTIONS(5914), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5912), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [43957] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3641), 1, - sym_attribute_specifier, - ACTIONS(5860), 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(5858), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [44025] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6214), 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(6212), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [44089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6216), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(6218), 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, - [44153] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - STATE(3638), 1, - sym_attribute_specifier, - ACTIONS(5949), 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(5947), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [44221] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5128), 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(2889), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [44284] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3812), 1, - sym_attribute_specifier, - ACTIONS(5922), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5920), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [44351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5054), 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(5056), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [44414] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5054), 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(5056), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [44477] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5054), 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(5056), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [44540] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 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(4872), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [44603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2198), 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(2196), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [44666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5449), 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(5451), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [44729] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 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(5435), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [44792] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6222), 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(6220), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [44855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6226), 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(6224), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [44918] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5240), 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(5242), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [44981] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5565), 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(5567), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [45044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 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(4872), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [45107] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 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(4872), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [45170] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 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(4872), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [45233] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6230), 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(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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [45296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5604), 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(5606), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [45359] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6234), 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(6232), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [45422] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6238), 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(6236), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [45485] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6242), 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(6240), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [45548] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5111), 1, - anon_sym_virtual, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6248), 1, - sym_auto, - ACTIONS(6250), 1, - anon_sym_decltype, - STATE(3891), 1, - sym_decltype_auto, - ACTIONS(6244), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5101), 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(3822), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(6246), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5099), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [45633] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6260), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6262), 1, - anon_sym_AMP_AMP, - ACTIONS(6264), 1, - anon_sym_PIPE, - ACTIONS(6268), 1, - anon_sym_AMP, - ACTIONS(6274), 1, - anon_sym_GT_EQ, - ACTIONS(6278), 1, - anon_sym_EQ, - ACTIONS(6280), 1, - anon_sym_QMARK, - ACTIONS(6282), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6284), 1, - anon_sym_or, - ACTIONS(6286), 1, - anon_sym_and, - ACTIONS(6288), 1, - anon_sym_bitor, - ACTIONS(6290), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6266), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6258), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6270), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6272), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6254), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [45746] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6278), 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(6254), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [45809] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6294), 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(6292), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [45872] = 3, - 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_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5014), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [45935] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6296), 1, - sym_identifier, - STATE(3557), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4314), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4316), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5134), 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(5132), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [46006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5058), 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(5060), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [46069] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6300), 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(6298), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [46132] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6304), 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(6302), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [46195] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6208), 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(6206), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [46258] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6308), 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(6306), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [46321] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5345), 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(5347), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [46384] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5396), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5398), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [46447] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 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(4872), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [46510] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6258), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6196), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6194), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [46589] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 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(4872), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [46652] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5400), 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(5402), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [46715] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6262), 1, - anon_sym_AMP_AMP, - ACTIONS(6264), 1, - anon_sym_PIPE, - ACTIONS(6268), 1, - anon_sym_AMP, - ACTIONS(6274), 1, - anon_sym_GT_EQ, - ACTIONS(6282), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6286), 1, - anon_sym_and, - ACTIONS(6288), 1, - anon_sym_bitor, - ACTIONS(6290), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6196), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(6256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6266), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6258), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6270), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6272), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [46820] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6264), 1, - anon_sym_PIPE, - ACTIONS(6268), 1, - anon_sym_AMP, - ACTIONS(6274), 1, - anon_sym_GT_EQ, - ACTIONS(6282), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6288), 1, - anon_sym_bitor, - ACTIONS(6290), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6266), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6196), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(6258), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6270), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6272), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [46921] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6268), 1, - anon_sym_AMP, - ACTIONS(6274), 1, - anon_sym_GT_EQ, - ACTIONS(6282), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6290), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6266), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6258), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6270), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6272), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6196), 4, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(6194), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - [47018] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6268), 1, - anon_sym_AMP, - ACTIONS(6274), 1, - anon_sym_GT_EQ, - ACTIONS(6282), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6290), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6258), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6270), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6272), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6196), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6194), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - [47113] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6274), 1, - anon_sym_GT_EQ, - ACTIONS(6282), 1, - anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6258), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6270), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6272), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6196), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6194), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - [47204] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6274), 1, - anon_sym_GT_EQ, - ACTIONS(6282), 1, - anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6258), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6272), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6196), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6194), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [47293] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6282), 1, - anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6258), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6196), 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(6194), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [47378] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6258), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6196), 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(6194), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [47459] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6258), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6196), 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(6194), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [47542] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6310), 1, - anon_sym_LPAREN2, - ACTIONS(6312), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6314), 1, - anon_sym_LBRACK, - STATE(3903), 1, - sym_parameter_list, - STATE(3602), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5967), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5965), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [47615] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6316), 1, - sym_auto, - ACTIONS(6318), 1, - anon_sym_decltype, - STATE(3621), 1, - sym_decltype_auto, - ACTIONS(5190), 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(5192), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [47684] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5008), 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(5010), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [47747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5046), 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(5048), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [47810] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6324), 1, - anon_sym_LT, - STATE(3531), 1, - sym_template_argument_list, - ACTIONS(6322), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6320), 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___attribute__, - 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, - [47877] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6327), 1, - sym_identifier, - STATE(3482), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6330), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6333), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5120), 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(5118), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [47948] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6226), 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(6224), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [48011] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2220), 1, - anon_sym_LBRACE, - ACTIONS(6336), 1, - anon_sym_LPAREN2, - ACTIONS(6338), 1, - anon_sym_LBRACK, - ACTIONS(6340), 1, - sym_auto, - ACTIONS(6342), 1, - anon_sym_decltype, - STATE(4079), 1, - sym_new_declarator, - STATE(4110), 1, - sym_decltype_auto, - STATE(4425), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5771), 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(5769), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [48090] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6204), 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(6202), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [48153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6346), 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(6344), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [48216] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6171), 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(6173), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [48279] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6350), 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(6348), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [48342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5565), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5567), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [48405] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6354), 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(6352), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [48468] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6356), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6358), 1, - anon_sym_AMP_AMP, - ACTIONS(6360), 1, - anon_sym_or, - ACTIONS(6362), 1, - anon_sym_and, - ACTIONS(5743), 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_xor, - anon_sym_DOT, - ACTIONS(5745), 35, - 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_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [48539] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5034), 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(5036), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [48602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6366), 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(6364), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [48665] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(5986), 1, - anon_sym_LT, - STATE(3220), 1, - sym_template_argument_list, - ACTIONS(4276), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_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(4284), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [48734] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6260), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6262), 1, - anon_sym_AMP_AMP, - ACTIONS(6264), 1, - anon_sym_PIPE, - ACTIONS(6268), 1, - anon_sym_AMP, - ACTIONS(6274), 1, - anon_sym_GT_EQ, - ACTIONS(6282), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6284), 1, - anon_sym_or, - ACTIONS(6286), 1, - anon_sym_and, - ACTIONS(6288), 1, - anon_sym_bitor, - ACTIONS(6290), 1, - anon_sym_bitand, - ACTIONS(6370), 1, - anon_sym_EQ, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6266), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6258), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6270), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6272), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6368), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [48843] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5604), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5606), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [48906] = 14, + [2109] = { + [sym_identifier] = ACTIONS(2848), + [aux_sym_preproc_def_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token1] = ACTIONS(2848), + [aux_sym_preproc_if_token2] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2848), + [aux_sym_preproc_else_token1] = ACTIONS(2848), + [aux_sym_preproc_elif_token1] = ACTIONS(2848), + [sym_preproc_directive] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_AMP_AMP] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym___extension__] = ACTIONS(2848), + [anon_sym_typedef] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym___attribute__] = ACTIONS(2848), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2850), + [anon_sym___declspec] = ACTIONS(2848), + [anon_sym___based] = ACTIONS(2848), + [anon_sym_signed] = ACTIONS(2848), + [anon_sym_unsigned] = ACTIONS(2848), + [anon_sym_long] = ACTIONS(2848), + [anon_sym_short] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_register] = ACTIONS(2848), + [anon_sym_inline] = ACTIONS(2848), + [anon_sym___inline] = ACTIONS(2848), + [anon_sym___inline__] = ACTIONS(2848), + [anon_sym___forceinline] = ACTIONS(2848), + [anon_sym_thread_local] = ACTIONS(2848), + [anon_sym___thread] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_constexpr] = ACTIONS(2848), + [anon_sym_volatile] = ACTIONS(2848), + [anon_sym_restrict] = ACTIONS(2848), + [anon_sym___restrict__] = ACTIONS(2848), + [anon_sym__Atomic] = ACTIONS(2848), + [anon_sym__Noreturn] = ACTIONS(2848), + [anon_sym_noreturn] = ACTIONS(2848), + [anon_sym_mutable] = ACTIONS(2848), + [anon_sym_constinit] = ACTIONS(2848), + [anon_sym_consteval] = ACTIONS(2848), + [sym_primitive_type] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_class] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2848), + [anon_sym_union] = ACTIONS(2848), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2848), + [anon_sym_decltype] = ACTIONS(2848), + [anon_sym_virtual] = ACTIONS(2848), + [anon_sym_alignas] = ACTIONS(2848), + [anon_sym_explicit] = ACTIONS(2848), + [anon_sym_typename] = ACTIONS(2848), + [anon_sym_template] = ACTIONS(2848), + [anon_sym_operator] = ACTIONS(2848), + [anon_sym_friend] = ACTIONS(2848), + [anon_sym_public] = ACTIONS(2848), + [anon_sym_private] = ACTIONS(2848), + [anon_sym_protected] = ACTIONS(2848), + [anon_sym_using] = ACTIONS(2848), + [anon_sym_static_assert] = ACTIONS(2848), + }, + [2110] = { + [sym_identifier] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token2] = ACTIONS(2134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), + [sym_preproc_directive] = ACTIONS(2134), + [anon_sym_LPAREN2] = ACTIONS(2132), + [anon_sym_TILDE] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym___extension__] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym___attribute__] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2134), + [anon_sym___based] = ACTIONS(2134), + [anon_sym_signed] = ACTIONS(2134), + [anon_sym_unsigned] = ACTIONS(2134), + [anon_sym_long] = ACTIONS(2134), + [anon_sym_short] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_register] = ACTIONS(2134), + [anon_sym_inline] = ACTIONS(2134), + [anon_sym___inline] = ACTIONS(2134), + [anon_sym___inline__] = ACTIONS(2134), + [anon_sym___forceinline] = ACTIONS(2134), + [anon_sym_thread_local] = ACTIONS(2134), + [anon_sym___thread] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_constexpr] = ACTIONS(2134), + [anon_sym_volatile] = ACTIONS(2134), + [anon_sym_restrict] = ACTIONS(2134), + [anon_sym___restrict__] = ACTIONS(2134), + [anon_sym__Atomic] = ACTIONS(2134), + [anon_sym__Noreturn] = ACTIONS(2134), + [anon_sym_noreturn] = ACTIONS(2134), + [anon_sym_mutable] = ACTIONS(2134), + [anon_sym_constinit] = ACTIONS(2134), + [anon_sym_consteval] = ACTIONS(2134), + [sym_primitive_type] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_struct] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2134), + [anon_sym_decltype] = ACTIONS(2134), + [anon_sym_virtual] = ACTIONS(2134), + [anon_sym_alignas] = ACTIONS(2134), + [anon_sym_explicit] = ACTIONS(2134), + [anon_sym_typename] = ACTIONS(2134), + [anon_sym_template] = ACTIONS(2134), + [anon_sym_operator] = ACTIONS(2134), + [anon_sym_friend] = ACTIONS(2134), + [anon_sym_public] = ACTIONS(2134), + [anon_sym_private] = ACTIONS(2134), + [anon_sym_protected] = ACTIONS(2134), + [anon_sym_using] = ACTIONS(2134), + [anon_sym_static_assert] = ACTIONS(2134), + [anon_sym_catch] = ACTIONS(2134), + }, + [2111] = { + [sym_string_literal] = STATE(1969), + [sym_raw_string_literal] = STATE(1969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_RPAREN] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4069), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_EQ] = ACTIONS(4069), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4061), + [anon_sym_SLASH_EQ] = ACTIONS(4061), + [anon_sym_PERCENT_EQ] = ACTIONS(4061), + [anon_sym_PLUS_EQ] = ACTIONS(4061), + [anon_sym_DASH_EQ] = ACTIONS(4061), + [anon_sym_LT_LT_EQ] = ACTIONS(4061), + [anon_sym_GT_GT_EQ] = ACTIONS(4061), + [anon_sym_AMP_EQ] = ACTIONS(4061), + [anon_sym_CARET_EQ] = ACTIONS(4061), + [anon_sym_PIPE_EQ] = ACTIONS(4061), + [anon_sym_and_eq] = ACTIONS(4069), + [anon_sym_or_eq] = ACTIONS(4069), + [anon_sym_xor_eq] = ACTIONS(4069), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4069), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4069), + [anon_sym_not_eq] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4069), + [anon_sym_L_DQUOTE] = ACTIONS(4909), + [anon_sym_u_DQUOTE] = ACTIONS(4909), + [anon_sym_U_DQUOTE] = ACTIONS(4909), + [anon_sym_u8_DQUOTE] = ACTIONS(4909), + [anon_sym_DQUOTE] = ACTIONS(4909), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4911), + [anon_sym_LR_DQUOTE] = ACTIONS(4911), + [anon_sym_uR_DQUOTE] = ACTIONS(4911), + [anon_sym_UR_DQUOTE] = ACTIONS(4911), + [anon_sym_u8R_DQUOTE] = ACTIONS(4911), + [anon_sym_DASH_GT_STAR] = ACTIONS(4061), + [sym_literal_suffix] = ACTIONS(5304), + }, + [2112] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4589), + [anon_sym_RPAREN] = ACTIONS(4591), + [anon_sym_LPAREN2] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4596), + [anon_sym_PLUS] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4598), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_PERCENT] = ACTIONS(4596), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4591), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_CARET] = ACTIONS(4596), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_EQ_EQ] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4596), + [anon_sym_GT_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4596), + [anon_sym_LT_LT] = ACTIONS(4596), + [anon_sym_GT_GT] = ACTIONS(4596), + [anon_sym___extension__] = ACTIONS(4594), + [anon_sym_COLON_COLON] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4594), + [anon_sym_LBRACK] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(4596), + [anon_sym_const] = ACTIONS(4587), + [anon_sym_constexpr] = ACTIONS(4594), + [anon_sym_volatile] = ACTIONS(4594), + [anon_sym_restrict] = ACTIONS(4594), + [anon_sym___restrict__] = ACTIONS(4594), + [anon_sym__Atomic] = ACTIONS(4594), + [anon_sym__Noreturn] = ACTIONS(4594), + [anon_sym_noreturn] = ACTIONS(4594), + [anon_sym_mutable] = ACTIONS(4594), + [anon_sym_constinit] = ACTIONS(4594), + [anon_sym_consteval] = ACTIONS(4594), + [anon_sym_QMARK] = ACTIONS(4589), + [anon_sym_STAR_EQ] = ACTIONS(4589), + [anon_sym_SLASH_EQ] = ACTIONS(4589), + [anon_sym_PERCENT_EQ] = ACTIONS(4589), + [anon_sym_PLUS_EQ] = ACTIONS(4589), + [anon_sym_DASH_EQ] = ACTIONS(4589), + [anon_sym_LT_LT_EQ] = ACTIONS(4589), + [anon_sym_GT_GT_EQ] = ACTIONS(4589), + [anon_sym_AMP_EQ] = ACTIONS(4589), + [anon_sym_CARET_EQ] = ACTIONS(4589), + [anon_sym_PIPE_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ_GT] = ACTIONS(4589), + [anon_sym_or] = ACTIONS(4589), + [anon_sym_and] = ACTIONS(4589), + [anon_sym_bitor] = ACTIONS(4589), + [anon_sym_xor] = ACTIONS(4589), + [anon_sym_bitand] = ACTIONS(4589), + [anon_sym_not_eq] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_STAR] = ACTIONS(4589), + [anon_sym_DASH_GT] = ACTIONS(4596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4594), + [anon_sym_decltype] = ACTIONS(4594), + [anon_sym_DASH_GT_STAR] = ACTIONS(4589), + }, + [2113] = { + [sym_template_argument_list] = STATE(1726), + [sym_identifier] = ACTIONS(4559), + [anon_sym_LPAREN2] = ACTIONS(4564), + [anon_sym_TILDE] = ACTIONS(4564), + [anon_sym_STAR] = ACTIONS(4564), + [anon_sym_PIPE_PIPE] = ACTIONS(4564), + [anon_sym_AMP_AMP] = ACTIONS(4564), + [anon_sym_AMP] = ACTIONS(4559), + [anon_sym_LT] = ACTIONS(5306), + [anon_sym___extension__] = ACTIONS(4559), + [anon_sym_extern] = ACTIONS(4559), + [anon_sym___attribute__] = ACTIONS(4559), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4564), + [anon_sym___declspec] = ACTIONS(4559), + [anon_sym___based] = ACTIONS(4559), + [anon_sym___cdecl] = ACTIONS(4559), + [anon_sym___clrcall] = ACTIONS(4559), + [anon_sym___stdcall] = ACTIONS(4559), + [anon_sym___fastcall] = ACTIONS(4559), + [anon_sym___thiscall] = ACTIONS(4559), + [anon_sym___vectorcall] = ACTIONS(4559), + [anon_sym_signed] = ACTIONS(4559), + [anon_sym_unsigned] = ACTIONS(4559), + [anon_sym_long] = ACTIONS(4559), + [anon_sym_short] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_static] = ACTIONS(4559), + [anon_sym_register] = ACTIONS(4559), + [anon_sym_inline] = ACTIONS(4559), + [anon_sym___inline] = ACTIONS(4559), + [anon_sym___inline__] = ACTIONS(4559), + [anon_sym___forceinline] = ACTIONS(4559), + [anon_sym_thread_local] = ACTIONS(4559), + [anon_sym___thread] = ACTIONS(4559), + [anon_sym_const] = ACTIONS(4559), + [anon_sym_constexpr] = ACTIONS(4559), + [anon_sym_volatile] = ACTIONS(4559), + [anon_sym_restrict] = ACTIONS(4559), + [anon_sym___restrict__] = ACTIONS(4559), + [anon_sym__Atomic] = ACTIONS(4559), + [anon_sym__Noreturn] = ACTIONS(4559), + [anon_sym_noreturn] = ACTIONS(4559), + [anon_sym_mutable] = ACTIONS(4559), + [anon_sym_constinit] = ACTIONS(4559), + [anon_sym_consteval] = ACTIONS(4559), + [sym_primitive_type] = ACTIONS(4559), + [anon_sym_enum] = ACTIONS(4559), + [anon_sym_class] = ACTIONS(4559), + [anon_sym_struct] = ACTIONS(4559), + [anon_sym_union] = ACTIONS(4559), + [anon_sym_or] = ACTIONS(4559), + [anon_sym_and] = ACTIONS(4559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4559), + [anon_sym_decltype] = ACTIONS(4559), + [anon_sym_virtual] = ACTIONS(4559), + [anon_sym_alignas] = ACTIONS(4559), + [anon_sym_explicit] = ACTIONS(4559), + [anon_sym_typename] = ACTIONS(4559), + [anon_sym_template] = ACTIONS(4559), + [anon_sym_operator] = ACTIONS(4559), + [anon_sym_friend] = ACTIONS(4559), + [anon_sym_using] = ACTIONS(4559), + [anon_sym_concept] = ACTIONS(4559), + }, + [2114] = { + [sym_identifier] = ACTIONS(2752), + [aux_sym_preproc_def_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token2] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2752), + [sym_preproc_directive] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym___extension__] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym___attribute__] = ACTIONS(2752), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2754), + [anon_sym___declspec] = ACTIONS(2752), + [anon_sym___based] = ACTIONS(2752), + [anon_sym_signed] = ACTIONS(2752), + [anon_sym_unsigned] = ACTIONS(2752), + [anon_sym_long] = ACTIONS(2752), + [anon_sym_short] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_register] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym___inline] = ACTIONS(2752), + [anon_sym___inline__] = ACTIONS(2752), + [anon_sym___forceinline] = ACTIONS(2752), + [anon_sym_thread_local] = ACTIONS(2752), + [anon_sym___thread] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_constexpr] = ACTIONS(2752), + [anon_sym_volatile] = ACTIONS(2752), + [anon_sym_restrict] = ACTIONS(2752), + [anon_sym___restrict__] = ACTIONS(2752), + [anon_sym__Atomic] = ACTIONS(2752), + [anon_sym__Noreturn] = ACTIONS(2752), + [anon_sym_noreturn] = ACTIONS(2752), + [anon_sym_mutable] = ACTIONS(2752), + [anon_sym_constinit] = ACTIONS(2752), + [anon_sym_consteval] = ACTIONS(2752), + [sym_primitive_type] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_class] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2752), + [anon_sym_decltype] = ACTIONS(2752), + [anon_sym_virtual] = ACTIONS(2752), + [anon_sym_alignas] = ACTIONS(2752), + [anon_sym_explicit] = ACTIONS(2752), + [anon_sym_typename] = ACTIONS(2752), + [anon_sym_template] = ACTIONS(2752), + [anon_sym_operator] = ACTIONS(2752), + [anon_sym_friend] = ACTIONS(2752), + [anon_sym_public] = ACTIONS(2752), + [anon_sym_private] = ACTIONS(2752), + [anon_sym_protected] = ACTIONS(2752), + [anon_sym_using] = ACTIONS(2752), + [anon_sym_static_assert] = ACTIONS(2752), + [anon_sym_catch] = ACTIONS(2752), + }, + [2115] = { + [sym_identifier] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), + [sym_preproc_directive] = ACTIONS(2134), + [anon_sym_LPAREN2] = ACTIONS(2132), + [anon_sym_TILDE] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym___extension__] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym___attribute__] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2134), + [anon_sym___based] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2134), + [anon_sym_unsigned] = ACTIONS(2134), + [anon_sym_long] = ACTIONS(2134), + [anon_sym_short] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_register] = ACTIONS(2134), + [anon_sym_inline] = ACTIONS(2134), + [anon_sym___inline] = ACTIONS(2134), + [anon_sym___inline__] = ACTIONS(2134), + [anon_sym___forceinline] = ACTIONS(2134), + [anon_sym_thread_local] = ACTIONS(2134), + [anon_sym___thread] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_constexpr] = ACTIONS(2134), + [anon_sym_volatile] = ACTIONS(2134), + [anon_sym_restrict] = ACTIONS(2134), + [anon_sym___restrict__] = ACTIONS(2134), + [anon_sym__Atomic] = ACTIONS(2134), + [anon_sym__Noreturn] = ACTIONS(2134), + [anon_sym_noreturn] = ACTIONS(2134), + [anon_sym_mutable] = ACTIONS(2134), + [anon_sym_constinit] = ACTIONS(2134), + [anon_sym_consteval] = ACTIONS(2134), + [sym_primitive_type] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_struct] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2134), + [anon_sym_decltype] = ACTIONS(2134), + [anon_sym_virtual] = ACTIONS(2134), + [anon_sym_alignas] = ACTIONS(2134), + [anon_sym_explicit] = ACTIONS(2134), + [anon_sym_typename] = ACTIONS(2134), + [anon_sym_template] = ACTIONS(2134), + [anon_sym_operator] = ACTIONS(2134), + [anon_sym_friend] = ACTIONS(2134), + [anon_sym_public] = ACTIONS(2134), + [anon_sym_private] = ACTIONS(2134), + [anon_sym_protected] = ACTIONS(2134), + [anon_sym_using] = ACTIONS(2134), + [anon_sym_static_assert] = ACTIONS(2134), + [anon_sym_catch] = ACTIONS(2134), + }, + [2116] = { + [sym_identifier] = ACTIONS(2752), + [aux_sym_preproc_def_token1] = ACTIONS(2752), + [aux_sym_preproc_if_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2752), + [sym_preproc_directive] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym___extension__] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym___attribute__] = ACTIONS(2752), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2754), + [anon_sym___declspec] = ACTIONS(2752), + [anon_sym___based] = ACTIONS(2752), + [anon_sym_RBRACE] = ACTIONS(2754), + [anon_sym_signed] = ACTIONS(2752), + [anon_sym_unsigned] = ACTIONS(2752), + [anon_sym_long] = ACTIONS(2752), + [anon_sym_short] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_register] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym___inline] = ACTIONS(2752), + [anon_sym___inline__] = ACTIONS(2752), + [anon_sym___forceinline] = ACTIONS(2752), + [anon_sym_thread_local] = ACTIONS(2752), + [anon_sym___thread] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_constexpr] = ACTIONS(2752), + [anon_sym_volatile] = ACTIONS(2752), + [anon_sym_restrict] = ACTIONS(2752), + [anon_sym___restrict__] = ACTIONS(2752), + [anon_sym__Atomic] = ACTIONS(2752), + [anon_sym__Noreturn] = ACTIONS(2752), + [anon_sym_noreturn] = ACTIONS(2752), + [anon_sym_mutable] = ACTIONS(2752), + [anon_sym_constinit] = ACTIONS(2752), + [anon_sym_consteval] = ACTIONS(2752), + [sym_primitive_type] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_class] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2752), + [anon_sym_decltype] = ACTIONS(2752), + [anon_sym_virtual] = ACTIONS(2752), + [anon_sym_alignas] = ACTIONS(2752), + [anon_sym_explicit] = ACTIONS(2752), + [anon_sym_typename] = ACTIONS(2752), + [anon_sym_template] = ACTIONS(2752), + [anon_sym_operator] = ACTIONS(2752), + [anon_sym_friend] = ACTIONS(2752), + [anon_sym_public] = ACTIONS(2752), + [anon_sym_private] = ACTIONS(2752), + [anon_sym_protected] = ACTIONS(2752), + [anon_sym_using] = ACTIONS(2752), + [anon_sym_static_assert] = ACTIONS(2752), + [anon_sym_catch] = ACTIONS(2752), + }, + [2117] = { + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_friend] = ACTIONS(2138), + [anon_sym_public] = ACTIONS(2138), + [anon_sym_private] = ACTIONS(2138), + [anon_sym_protected] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + }, + [2118] = { + [sym_string_literal] = STATE(2643), + [sym_template_argument_list] = STATE(3791), + [sym_raw_string_literal] = STATE(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_EQ] = ACTIONS(5308), + [anon_sym_COLON] = ACTIONS(4069), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(5310), + [anon_sym_SLASH_EQ] = ACTIONS(5310), + [anon_sym_PERCENT_EQ] = ACTIONS(5310), + [anon_sym_PLUS_EQ] = ACTIONS(5310), + [anon_sym_DASH_EQ] = ACTIONS(5310), + [anon_sym_LT_LT_EQ] = ACTIONS(5310), + [anon_sym_GT_GT_EQ] = ACTIONS(5310), + [anon_sym_AMP_EQ] = ACTIONS(5310), + [anon_sym_CARET_EQ] = ACTIONS(5310), + [anon_sym_PIPE_EQ] = ACTIONS(5310), + [anon_sym_and_eq] = ACTIONS(5310), + [anon_sym_or_eq] = ACTIONS(5310), + [anon_sym_xor_eq] = ACTIONS(5310), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4061), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4061), + [anon_sym_not_eq] = ACTIONS(4061), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(4097), + [anon_sym_u_DQUOTE] = ACTIONS(4097), + [anon_sym_U_DQUOTE] = ACTIONS(4097), + [anon_sym_u8_DQUOTE] = ACTIONS(4097), + [anon_sym_DQUOTE] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4099), + [anon_sym_LR_DQUOTE] = ACTIONS(4099), + [anon_sym_uR_DQUOTE] = ACTIONS(4099), + [anon_sym_UR_DQUOTE] = ACTIONS(4099), + [anon_sym_u8R_DQUOTE] = ACTIONS(4099), + }, + [2119] = { + [sym_attribute_specifier] = STATE(2440), + [sym_field_declaration_list] = STATE(2408), + [sym_virtual_specifier] = STATE(6217), + [sym_base_class_clause] = STATE(7017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5312), + [anon_sym_COMMA] = ACTIONS(5312), + [anon_sym_RPAREN] = ACTIONS(5312), + [anon_sym_LPAREN2] = ACTIONS(5312), + [anon_sym_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5314), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_SLASH] = ACTIONS(5314), + [anon_sym_PERCENT] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5312), + [anon_sym_AMP_AMP] = ACTIONS(5312), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_CARET] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5312), + [anon_sym_BANG_EQ] = ACTIONS(5312), + [anon_sym_GT] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5312), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_LT] = ACTIONS(5314), + [anon_sym_LT_LT] = ACTIONS(5314), + [anon_sym_GT_GT] = ACTIONS(5314), + [anon_sym_SEMI] = ACTIONS(5312), + [anon_sym___attribute__] = ACTIONS(5316), + [anon_sym_LBRACE] = ACTIONS(5318), + [anon_sym_RBRACE] = ACTIONS(5312), + [anon_sym_LBRACK] = ACTIONS(5312), + [anon_sym_RBRACK] = ACTIONS(5312), + [anon_sym_EQ] = ACTIONS(5314), + [anon_sym_COLON] = ACTIONS(5320), + [anon_sym_QMARK] = ACTIONS(5312), + [anon_sym_STAR_EQ] = ACTIONS(5312), + [anon_sym_SLASH_EQ] = ACTIONS(5312), + [anon_sym_PERCENT_EQ] = ACTIONS(5312), + [anon_sym_PLUS_EQ] = ACTIONS(5312), + [anon_sym_DASH_EQ] = ACTIONS(5312), + [anon_sym_LT_LT_EQ] = ACTIONS(5312), + [anon_sym_GT_GT_EQ] = ACTIONS(5312), + [anon_sym_AMP_EQ] = ACTIONS(5312), + [anon_sym_CARET_EQ] = ACTIONS(5312), + [anon_sym_PIPE_EQ] = ACTIONS(5312), + [anon_sym_and_eq] = ACTIONS(5312), + [anon_sym_or_eq] = ACTIONS(5312), + [anon_sym_xor_eq] = ACTIONS(5312), + [anon_sym_LT_EQ_GT] = ACTIONS(5312), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_bitor] = ACTIONS(5312), + [anon_sym_xor] = ACTIONS(5314), + [anon_sym_bitand] = ACTIONS(5312), + [anon_sym_not_eq] = ACTIONS(5312), + [anon_sym_DASH_DASH] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5312), + [anon_sym_DOT] = ACTIONS(5314), + [anon_sym_DOT_STAR] = ACTIONS(5312), + [anon_sym_DASH_GT] = ACTIONS(5312), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5312), + [anon_sym_decltype] = ACTIONS(5312), + [anon_sym_final] = ACTIONS(5322), + [anon_sym_override] = ACTIONS(5322), + }, + [2120] = { + [sym_template_argument_list] = STATE(1726), + [sym_identifier] = ACTIONS(5324), + [anon_sym_LPAREN2] = ACTIONS(4085), + [anon_sym_TILDE] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(4085), + [anon_sym_PIPE_PIPE] = ACTIONS(4085), + [anon_sym_AMP_AMP] = ACTIONS(4085), + [anon_sym_AMP] = ACTIONS(5324), + [anon_sym_LT] = ACTIONS(5306), + [anon_sym___extension__] = ACTIONS(5324), + [anon_sym_extern] = ACTIONS(5324), + [anon_sym___attribute__] = ACTIONS(5324), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4085), + [anon_sym___declspec] = ACTIONS(5324), + [anon_sym___based] = ACTIONS(5324), + [anon_sym___cdecl] = ACTIONS(5324), + [anon_sym___clrcall] = ACTIONS(5324), + [anon_sym___stdcall] = ACTIONS(5324), + [anon_sym___fastcall] = ACTIONS(5324), + [anon_sym___thiscall] = ACTIONS(5324), + [anon_sym___vectorcall] = ACTIONS(5324), + [anon_sym_signed] = ACTIONS(5324), + [anon_sym_unsigned] = ACTIONS(5324), + [anon_sym_long] = ACTIONS(5324), + [anon_sym_short] = ACTIONS(5324), + [anon_sym_LBRACK] = ACTIONS(5324), + [anon_sym_static] = ACTIONS(5324), + [anon_sym_register] = ACTIONS(5324), + [anon_sym_inline] = ACTIONS(5324), + [anon_sym___inline] = ACTIONS(5324), + [anon_sym___inline__] = ACTIONS(5324), + [anon_sym___forceinline] = ACTIONS(5324), + [anon_sym_thread_local] = ACTIONS(5324), + [anon_sym___thread] = ACTIONS(5324), + [anon_sym_const] = ACTIONS(5324), + [anon_sym_constexpr] = ACTIONS(5324), + [anon_sym_volatile] = ACTIONS(5324), + [anon_sym_restrict] = ACTIONS(5324), + [anon_sym___restrict__] = ACTIONS(5324), + [anon_sym__Atomic] = ACTIONS(5324), + [anon_sym__Noreturn] = ACTIONS(5324), + [anon_sym_noreturn] = ACTIONS(5324), + [anon_sym_mutable] = ACTIONS(5324), + [anon_sym_constinit] = ACTIONS(5324), + [anon_sym_consteval] = ACTIONS(5324), + [sym_primitive_type] = ACTIONS(5324), + [anon_sym_enum] = ACTIONS(5324), + [anon_sym_class] = ACTIONS(5324), + [anon_sym_struct] = ACTIONS(5324), + [anon_sym_union] = ACTIONS(5324), + [anon_sym_or] = ACTIONS(5324), + [anon_sym_and] = ACTIONS(5324), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5324), + [anon_sym_decltype] = ACTIONS(5324), + [anon_sym_virtual] = ACTIONS(5324), + [anon_sym_alignas] = ACTIONS(5324), + [anon_sym_explicit] = ACTIONS(5324), + [anon_sym_typename] = ACTIONS(5324), + [anon_sym_template] = ACTIONS(5324), + [anon_sym_operator] = ACTIONS(5324), + [anon_sym_friend] = ACTIONS(5324), + [anon_sym_using] = ACTIONS(5324), + [anon_sym_concept] = ACTIONS(5324), + }, + [2121] = { + [sym_string_literal] = STATE(1977), + [sym_raw_string_literal] = STATE(1977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4061), + [anon_sym_COMMA] = ACTIONS(4061), + [anon_sym_LPAREN2] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_PLUS] = ACTIONS(4069), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_PERCENT] = ACTIONS(4069), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_AMP_AMP] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(4069), + [anon_sym_CARET] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_EQ] = ACTIONS(4061), + [anon_sym_LT_EQ] = ACTIONS(4069), + [anon_sym_LT] = ACTIONS(4069), + [anon_sym_LT_LT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4069), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym___attribute__] = ACTIONS(4069), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_EQ] = ACTIONS(4069), + [anon_sym_QMARK] = ACTIONS(4061), + [anon_sym_STAR_EQ] = ACTIONS(4061), + [anon_sym_SLASH_EQ] = ACTIONS(4061), + [anon_sym_PERCENT_EQ] = ACTIONS(4061), + [anon_sym_PLUS_EQ] = ACTIONS(4061), + [anon_sym_DASH_EQ] = ACTIONS(4061), + [anon_sym_LT_LT_EQ] = ACTIONS(4061), + [anon_sym_GT_GT_EQ] = ACTIONS(4061), + [anon_sym_AMP_EQ] = ACTIONS(4061), + [anon_sym_CARET_EQ] = ACTIONS(4061), + [anon_sym_PIPE_EQ] = ACTIONS(4061), + [anon_sym_and_eq] = ACTIONS(4069), + [anon_sym_or_eq] = ACTIONS(4069), + [anon_sym_xor_eq] = ACTIONS(4069), + [anon_sym_LT_EQ_GT] = ACTIONS(4061), + [anon_sym_or] = ACTIONS(4069), + [anon_sym_and] = ACTIONS(4069), + [anon_sym_bitor] = ACTIONS(4069), + [anon_sym_xor] = ACTIONS(4069), + [anon_sym_bitand] = ACTIONS(4069), + [anon_sym_not_eq] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(4061), + [anon_sym_PLUS_PLUS] = ACTIONS(4061), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_STAR] = ACTIONS(4061), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_L_DQUOTE] = ACTIONS(5051), + [anon_sym_u_DQUOTE] = ACTIONS(5051), + [anon_sym_U_DQUOTE] = ACTIONS(5051), + [anon_sym_u8_DQUOTE] = ACTIONS(5051), + [anon_sym_DQUOTE] = ACTIONS(5051), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5053), + [anon_sym_LR_DQUOTE] = ACTIONS(5053), + [anon_sym_uR_DQUOTE] = ACTIONS(5053), + [anon_sym_UR_DQUOTE] = ACTIONS(5053), + [anon_sym_u8R_DQUOTE] = ACTIONS(5053), + [sym_literal_suffix] = ACTIONS(5026), + }, + [2122] = { + [sym_identifier] = ACTIONS(2138), + [aux_sym_preproc_def_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token1] = ACTIONS(2138), + [aux_sym_preproc_if_token2] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym___extension__] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2136), + [anon_sym___declspec] = ACTIONS(2138), + [anon_sym___based] = ACTIONS(2138), + [anon_sym_signed] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym___inline] = ACTIONS(2138), + [anon_sym___inline__] = ACTIONS(2138), + [anon_sym___forceinline] = ACTIONS(2138), + [anon_sym_thread_local] = ACTIONS(2138), + [anon_sym___thread] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_constexpr] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym___restrict__] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym__Noreturn] = ACTIONS(2138), + [anon_sym_noreturn] = ACTIONS(2138), + [anon_sym_mutable] = ACTIONS(2138), + [anon_sym_constinit] = ACTIONS(2138), + [anon_sym_consteval] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2138), + [anon_sym_decltype] = ACTIONS(2138), + [anon_sym_virtual] = ACTIONS(2138), + [anon_sym_alignas] = ACTIONS(2138), + [anon_sym_explicit] = ACTIONS(2138), + [anon_sym_typename] = ACTIONS(2138), + [anon_sym_template] = ACTIONS(2138), + [anon_sym_operator] = ACTIONS(2138), + [anon_sym_friend] = ACTIONS(2138), + [anon_sym_public] = ACTIONS(2138), + [anon_sym_private] = ACTIONS(2138), + [anon_sym_protected] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_static_assert] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5111), 1, - anon_sym_virtual, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6248), 1, - sym_auto, - ACTIONS(6250), 1, - anon_sym_decltype, - STATE(3891), 1, - sym_decltype_auto, - ACTIONS(6372), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5101), 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(3759), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(6374), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5016), 7, 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(5099), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [48991] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2194), 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(2192), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [49054] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6282), 1, - anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6258), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6378), 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(6376), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [49139] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, anon_sym_COLON_COLON, - ACTIONS(4865), 1, - anon_sym_LBRACE, - ACTIONS(4881), 1, - anon_sym_LT, - STATE(3383), 1, - sym_template_argument_list, - ACTIONS(4867), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4872), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [49210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6382), 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(6380), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [49273] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6386), 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(6384), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [49336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6390), 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(6388), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [49399] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 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(6392), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [49462] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6398), 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(6396), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [49525] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3820), 1, - sym_attribute_specifier, - ACTIONS(5856), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5854), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [49592] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3819), 1, - sym_attribute_specifier, - ACTIONS(5846), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_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), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [49659] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3818), 1, - sym_attribute_specifier, - ACTIONS(5842), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5840), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [49726] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3815), 1, - sym_attribute_specifier, - ACTIONS(5838), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_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), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [49793] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3813), 1, - sym_attribute_specifier, - ACTIONS(5926), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5924), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [49860] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6260), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6262), 1, - anon_sym_AMP_AMP, - ACTIONS(6264), 1, - anon_sym_PIPE, - ACTIONS(6268), 1, - anon_sym_AMP, - ACTIONS(6274), 1, - anon_sym_GT_EQ, - ACTIONS(6282), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6284), 1, - anon_sym_or, - ACTIONS(6286), 1, - anon_sym_and, - ACTIONS(6288), 1, - anon_sym_bitor, - ACTIONS(6290), 1, - anon_sym_bitand, - ACTIONS(6402), 1, - anon_sym_EQ, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6266), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6258), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6270), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6272), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6400), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [49969] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3811), 1, - sym_attribute_specifier, - ACTIONS(5884), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5014), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5882), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [50036] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5773), 1, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - STATE(3810), 1, - sym_attribute_specifier, - ACTIONS(5850), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_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), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [50103] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [71] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5468), 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(5470), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3041), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3039), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___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, @@ -422377,641 +289367,506 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [50166] = 5, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3804), 1, - sym_attribute_specifier, - ACTIONS(5930), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5928), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3093), 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_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3091), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [50233] = 5, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3802), 1, - sym_attribute_specifier, - ACTIONS(5906), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5904), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3045), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3043), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [50300] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6406), 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(6404), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3049), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [50363] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3801), 1, - sym_attribute_specifier, - ACTIONS(5914), 20, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5912), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3047), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [50430] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5449), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5451), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3053), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3051), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [50493] = 5, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3799), 1, - sym_attribute_specifier, - ACTIONS(5934), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5932), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3057), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3055), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [50560] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 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(6408), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3061), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3059), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, + 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_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [50623] = 8, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6310), 1, + ACTIONS(2971), 7, anon_sym_LPAREN2, - ACTIONS(6312), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6314), 1, - anon_sym_LBRACK, - STATE(3903), 1, - sym_parameter_list, - STATE(3602), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5978), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5976), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [50696] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6414), 18, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(6412), 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [50759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6418), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2969), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6416), 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___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, + 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_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [50822] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6422), 18, + ACTIONS(5152), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -423025,15 +289880,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_and_eq, + anon_sym_or_eq, + anon_sym_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(6420), 37, + sym_identifier, + sym_literal_suffix, + ACTIONS(5154), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -423041,11 +289904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -423057,143 +289916,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [50885] = 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, + [710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6426), 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(6424), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3200), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3198), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, + 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_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [50948] = 5, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3796), 1, - sym_attribute_specifier, - ACTIONS(5941), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5939), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3204), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3202), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [51015] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6212), 18, + ACTIONS(5188), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -423207,15 +290084,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_and_eq, + anon_sym_or_eq, + anon_sym_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(6214), 37, + sym_identifier, + sym_literal_suffix, + ACTIONS(5190), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -423223,11 +290108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -423239,229 +290120,331 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [51078] = 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, + [923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5345), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5347), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3093), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3091), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [51141] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5396), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5398), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2846), 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2844), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [51204] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [1065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6430), 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(6428), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3182), 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + ACTIONS(3180), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [51267] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [1136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5325), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(3101), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3099), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, - anon_sym_DOT, - ACTIONS(5327), 43, - 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [1207] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3105), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + ACTIONS(3103), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -423472,115 +290455,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [51330] = 5, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [1278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3788), 1, - sym_attribute_specifier, - ACTIONS(5876), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4854), 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_RBRACE, + ACTIONS(4852), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5874), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [1349] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3105), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3103), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [51397] = 6, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [1420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, + ACTIONS(2967), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(2334), 1, - sym_template_argument_list, - ACTIONS(5916), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2965), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [1491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3041), 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(5918), 40, + anon_sym_RBRACE, + ACTIONS(3039), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, anon_sym___extension__, + anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -423601,321 +290727,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [51466] = 5, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [1562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3783), 1, - sym_attribute_specifier, - ACTIONS(5872), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5870), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4925), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [51533] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3782), 1, - sym_attribute_specifier, - ACTIONS(5868), 20, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5866), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [51600] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3781), 1, - sym_attribute_specifier, - ACTIONS(5864), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4923), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5862), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [51667] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6260), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6262), 1, - anon_sym_AMP_AMP, - ACTIONS(6264), 1, - anon_sym_PIPE, - ACTIONS(6268), 1, - anon_sym_AMP, - ACTIONS(6274), 1, - anon_sym_GT_EQ, - ACTIONS(6282), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6284), 1, - anon_sym_or, - ACTIONS(6286), 1, - anon_sym_and, - ACTIONS(6288), 1, - anon_sym_bitor, - ACTIONS(6290), 1, - anon_sym_bitand, - ACTIONS(6436), 1, - anon_sym_EQ, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6266), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6258), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6270), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6272), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6434), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [51776] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [1633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5608), 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(5610), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3109), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3107), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___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, @@ -423926,550 +290863,259 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [51839] = 8, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [1704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6310), 1, + ACTIONS(3174), 7, anon_sym_LPAREN2, - ACTIONS(6312), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6314), 1, - anon_sym_LBRACK, - STATE(3903), 1, - sym_parameter_list, - STATE(3602), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5993), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5991), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [51912] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6440), 18, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(6438), 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [51975] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3172), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5435), 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___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [52038] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [1775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5400), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5402), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3113), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3111), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [52101] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6444), 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(6442), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [52164] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [1846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 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(5040), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3117), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [52227] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5325), 19, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5327), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + ACTIONS(3115), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [52290] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6024), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, - ACTIONS(6026), 1, anon_sym_decltype, - STATE(3662), 1, - sym_decltype_auto, - ACTIONS(5190), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5192), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [52359] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6448), 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(6446), 37, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [1917] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5326), 1, + sym_literal_suffix, + STATE(2021), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(5277), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5279), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4061), 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_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -424477,25 +291123,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [52422] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6452), 18, + anon_sym_GT2, + ACTIONS(4069), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424505,57 +291142,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_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(6450), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + [1996] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2983), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2981), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, + 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_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [52485] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [2067] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5028), 18, + ACTIONS(5328), 1, + sym_identifier, + STATE(2152), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5331), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5334), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4825), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424572,9 +291265,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5030), 37, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(4823), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -424584,12 +291282,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_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -424601,21 +291294,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [52548] = 3, + anon_sym_DASH_GT_STAR, + [2146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2979), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2977), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [2217] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6456), 25, + ACTIONS(5337), 1, + sym_identifier, + STATE(2166), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4106), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4108), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4814), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424630,9 +291403,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -424640,8 +291410,9 @@ 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(6454), 30, + ACTIONS(4812), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -424651,11 +291422,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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -424671,73 +291438,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [52611] = 5, + anon_sym_DASH_GT_STAR, + [2296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3773), 1, - sym_attribute_specifier, - ACTIONS(5860), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3170), 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_RBRACE, + ACTIONS(3168), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5858), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [2367] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3218), 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_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3216), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [52678] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [2438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6460), 18, + ACTIONS(5174), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424751,15 +291592,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_and_eq, + anon_sym_or_eq, + anon_sym_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(6458), 37, + sym_identifier, + sym_literal_suffix, + ACTIONS(5176), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -424767,11 +291616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -424783,21 +291628,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [52741] = 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, + [2509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6464), 18, + ACTIONS(5182), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424811,15 +291660,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_and_eq, + anon_sym_or_eq, + anon_sym_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(6462), 37, + sym_identifier, + sym_literal_suffix, + ACTIONS(5184), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -424827,11 +291684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -424843,209 +291696,519 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [52804] = 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, + [2580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2886), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2884), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6466), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [2651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2975), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2973), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, + 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_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [52867] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [2722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3121), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3119), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6470), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [2793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4973), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4971), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [2864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2975), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + ACTIONS(2973), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [52930] = 7, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [2935] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3210), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3208), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [3006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2971), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2969), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [3077] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6474), 1, + ACTIONS(5339), 1, sym_identifier, - STATE(3482), 3, + STATE(2152), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(4314), 5, + ACTIONS(4106), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(4316), 5, + ACTIONS(4108), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5147), 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(5145), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [53001] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6358), 1, - anon_sym_AMP_AMP, - ACTIONS(6362), 1, - anon_sym_and, - ACTIONS(5735), 17, + ACTIONS(4842), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -425061,23 +292224,25 @@ static const uint16_t ts_small_parse_table[] = { 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(5737), 36, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(4840), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -425089,2210 +292254,2709 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [53068] = 3, + anon_sym_DASH_GT_STAR, + [3156] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5024), 18, + ACTIONS(5320), 1, + anon_sym_COLON, + ACTIONS(5341), 1, + anon_sym___attribute__, + ACTIONS(5343), 1, + anon_sym_LBRACE, + STATE(1960), 1, + sym_attribute_specifier, + STATE(2378), 1, + sym_field_declaration_list, + STATE(6220), 1, + sym_virtual_specifier, + STATE(7000), 1, + sym_base_class_clause, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5314), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(5026), 37, + ACTIONS(5312), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym___extension__, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [53131] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [3243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3764), 1, - sym_attribute_specifier, - ACTIONS(5949), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3214), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3212), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5947), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [3314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2967), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2965), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [53198] = 5, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [3385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3758), 1, - sym_attribute_specifier, - ACTIONS(5910), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4961), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4959), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5908), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [3456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4953), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4951), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [53265] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [3527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6101), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2959), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2957), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6103), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [3598] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4953), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4951), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, + 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_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [53328] = 5, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [3669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3755), 1, - sym_attribute_specifier, - ACTIONS(5945), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4965), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4963), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5943), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [3740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4854), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4852), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [53395] = 5, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [3811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, + ACTIONS(4925), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4923), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - STATE(3751), 1, - sym_attribute_specifier, - ACTIONS(5880), 20, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [3882] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4876), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5878), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [3953] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3065), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3063), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [53462] = 11, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, - anon_sym_LBRACE, - ACTIONS(6336), 1, + ACTIONS(2959), 7, anon_sym_LPAREN2, - ACTIONS(6338), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2957), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - ACTIONS(6340), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, - ACTIONS(6342), 1, anon_sym_decltype, - STATE(4045), 1, - sym_new_declarator, - STATE(4110), 1, - sym_decltype_auto, - STATE(4420), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5710), 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(5706), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [53541] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 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(5052), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4977), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4975), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, + 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_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [53604] = 4, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5321), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5323), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3204), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3202), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [53669] = 28, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(4992), 7, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6260), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6262), 1, - anon_sym_AMP_AMP, - ACTIONS(6264), 1, - anon_sym_PIPE, - ACTIONS(6268), 1, - anon_sym_AMP, - ACTIONS(6274), 1, - anon_sym_GT_EQ, - ACTIONS(6280), 1, - anon_sym_QMARK, - ACTIONS(6282), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6284), 1, - anon_sym_or, - ACTIONS(6286), 1, - anon_sym_and, - ACTIONS(6288), 1, - anon_sym_bitor, - ACTIONS(6290), 1, - anon_sym_bitand, - ACTIONS(6478), 1, - anon_sym_EQ, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6266), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6258), 3, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6270), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6272), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6476), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [53782] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6482), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4990), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6480), 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___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, + 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_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [53845] = 4, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 1, - sym_literal_suffix, - ACTIONS(4286), 24, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(4278), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3194), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + ACTIONS(3192), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [53910] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 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(5198), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4929), 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + ACTIONS(4927), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [53973] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5608), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5610), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4929), 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4927), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [54036] = 7, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(4865), 1, - anon_sym_LBRACE, - ACTIONS(4874), 1, - anon_sym_LT, - STATE(3665), 1, - sym_template_argument_list, - ACTIONS(4867), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4872), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4882), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [54107] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6486), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4880), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6484), 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___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, + 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_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [54170] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6490), 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(6488), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2850), 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + ACTIONS(2848), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [54233] = 8, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6310), 1, + ACTIONS(4996), 6, anon_sym_LPAREN2, - ACTIONS(6312), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6314), 1, - anon_sym_LBRACK, - STATE(3903), 1, - sym_parameter_list, - STATE(3602), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5955), 19, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5951), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [54306] = 28, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4994), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(3045), 7, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6260), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6262), 1, - anon_sym_AMP_AMP, - ACTIONS(6264), 1, - anon_sym_PIPE, - ACTIONS(6268), 1, - anon_sym_AMP, - ACTIONS(6274), 1, - anon_sym_GT_EQ, - ACTIONS(6280), 1, - anon_sym_QMARK, - ACTIONS(6282), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6284), 1, - anon_sym_or, - ACTIONS(6286), 1, - anon_sym_and, - ACTIONS(6288), 1, - anon_sym_bitor, - ACTIONS(6290), 1, - anon_sym_bitand, - ACTIONS(6494), 1, - anon_sym_EQ, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6266), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6258), 3, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6270), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6272), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6492), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [54419] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5062), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3043), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5064), 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___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, + 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_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [54482] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 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(5068), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3049), 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + ACTIONS(3047), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [54545] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5468), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5470), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3053), 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3051), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [54608] = 26, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(2979), 7, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6260), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6262), 1, - anon_sym_AMP_AMP, - ACTIONS(6264), 1, - anon_sym_PIPE, - ACTIONS(6268), 1, - anon_sym_AMP, - ACTIONS(6274), 1, - anon_sym_GT_EQ, - ACTIONS(6282), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6284), 1, - anon_sym_or, - ACTIONS(6286), 1, - anon_sym_and, - ACTIONS(6288), 1, - anon_sym_bitor, - ACTIONS(6290), 1, - anon_sym_bitand, - ACTIONS(6498), 1, - anon_sym_EQ, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6266), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6258), 3, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6270), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6272), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6496), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, 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, - [54717] = 3, + ACTIONS(2977), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 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(6500), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2983), 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + ACTIONS(2981), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [54780] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6506), 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(6504), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3037), 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + ACTIONS(3035), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [54843] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6510), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3037), 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_RBRACE, + ACTIONS(3035), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6508), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3057), 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + ACTIONS(3055), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [54906] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6514), 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(6512), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3061), 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + ACTIONS(3059), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [54969] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6153), 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(6155), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3065), 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + ACTIONS(3063), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [55032] = 11, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, - anon_sym_LBRACE, - ACTIONS(6336), 1, + ACTIONS(4949), 6, anon_sym_LPAREN2, - ACTIONS(6338), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4947), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - ACTIONS(6340), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, - ACTIONS(6342), 1, anon_sym_decltype, - STATE(4110), 1, - sym_decltype_auto, - STATE(4112), 1, - sym_new_declarator, - STATE(4457), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5730), 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(5728), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [55111] = 11, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, - anon_sym_LBRACE, - ACTIONS(6336), 1, + ACTIONS(5000), 6, anon_sym_LPAREN2, - ACTIONS(6338), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4998), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - ACTIONS(6340), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, - ACTIONS(6342), 1, anon_sym_decltype, - STATE(4110), 1, - sym_decltype_auto, - STATE(4144), 1, - sym_new_declarator, - STATE(4424), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5764), 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(5762), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [55190] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6518), 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(6516), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3174), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3172), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, + 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_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [55253] = 5, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3740), 1, - sym_attribute_specifier, - ACTIONS(5890), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5888), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3015), 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_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3013), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [55320] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 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(5044), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5004), 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + ACTIONS(5002), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [55383] = 5, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, - anon_sym___attribute__, - STATE(3738), 1, - sym_attribute_specifier, - ACTIONS(5898), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3178), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3176), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_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), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4937), 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_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4935), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [55450] = 4, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5321), 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(5323), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4929), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4927), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -427303,684 +294967,710 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [55515] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5502), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4945), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4943), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [55577] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5582), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5584), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4985), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4983), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [55639] = 6, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6088), 1, - sym_auto, - ACTIONS(6090), 1, - anon_sym_decltype, - STATE(3727), 1, - sym_decltype_auto, - ACTIONS(5190), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_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), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4882), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4880), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [55707] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5396), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5398), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3105), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3103), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [55769] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5345), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5347), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4878), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4876), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [55831] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5604), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5606), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5004), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5002), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [55893] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5567), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4886), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4884), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [55955] = 5, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6526), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(6524), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(6522), 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(6520), 31, - anon_sym_COMMA, + ACTIONS(2991), 7, + anon_sym_LPAREN2, anon_sym_TILDE, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_compl, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [56021] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6312), 1, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - STATE(3664), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6061), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_RBRACE, + ACTIONS(2989), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6059), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [56087] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5543), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4890), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4888), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [56149] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5449), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5451), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4894), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4892), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [56211] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 20, + ACTIONS(5182), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -427990,27 +295680,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5435), 34, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5184), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -428019,414 +295716,403 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [56273] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [6793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5400), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5402), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(2854), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2852), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [56335] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5468), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5470), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5016), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(5014), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [56397] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5608), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5610), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(2999), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2997), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [56459] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5377), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5379), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2882), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2880), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [56521] = 5, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3922), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(6528), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(3904), 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(3902), 31, - anon_sym_COMMA, + ACTIONS(3105), 7, + 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_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, - [56587] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - ACTIONS(6137), 1, - anon_sym_LBRACE, - STATE(3713), 1, - sym_enumerator_list, - STATE(4012), 1, - sym_attribute_specifier, - ACTIONS(5820), 16, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5818), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3103), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [56657] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5377), 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(5379), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3214), 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_RBRACE, + ACTIONS(3212), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -428437,114 +296123,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [56719] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5321), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5323), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5012), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(5010), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [56781] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5321), 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(5323), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(2999), 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_RBRACE, + ACTIONS(2997), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -428555,114 +296259,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [56843] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5325), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5327), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5008), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(5006), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [56905] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5321), 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(5323), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5000), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4998), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -428673,116 +296395,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [56967] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3930), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(6530), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(3926), 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(3924), 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, - [57033] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5453), 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(5455), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4933), 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_RBRACE, + ACTIONS(4931), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -428793,55 +296463,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [57095] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 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(5498), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(2991), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2989), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -428852,55 +296531,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [57157] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 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(5502), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5000), 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_RBRACE, + ACTIONS(4998), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -428911,55 +296599,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [57219] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 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(5547), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5004), 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_RBRACE, + ACTIONS(5002), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -428970,116 +296667,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [57281] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6538), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(6536), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(6534), 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(6532), 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, - [57347] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5582), 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(5584), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5000), 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_RBRACE, + ACTIONS(4998), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -429090,114 +296735,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [57409] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5321), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5323), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3182), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3180), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [57471] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5578), 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(5580), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3218), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3216), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -429208,55 +296871,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [57533] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [8000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 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(5559), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3194), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3192), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -429267,55 +296939,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [57595] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [8071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5549), 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(5551), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5004), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5002), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -429326,36 +297007,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [57657] = 7, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [8142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - ACTIONS(6137), 1, - anon_sym_LBRACE, - STATE(3808), 1, - sym_enumerator_list, - STATE(4142), 1, - sym_attribute_specifier, - ACTIONS(5788), 16, + ACTIONS(5174), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429370,9 +297045,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(5786), 34, + sym_identifier, + sym_literal_suffix, + ACTIONS(5176), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -429395,49 +297081,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_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, - [57727] = 3, + [8213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 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(5447), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(2806), 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_RBRACE, + ACTIONS(2804), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -429448,55 +297143,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [57789] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [8284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5441), 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(5443), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4996), 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_RBRACE, + ACTIONS(4994), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -429507,55 +297211,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [57851] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [8355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 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(5431), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4929), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4927), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -429566,55 +297279,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [57913] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [8426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5425), 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(5427), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3037), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3035), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -429625,236 +297347,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [57975] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [8497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5453), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5455), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4921), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4919), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [58037] = 7, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [8568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(4865), 1, - anon_sym_LBRACE, - ACTIONS(5149), 1, - anon_sym_LT, - STATE(3732), 1, - sym_template_argument_list, - ACTIONS(4867), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4872), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3121), 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3119), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [58107] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [8639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5498), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3037), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3035), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [58169] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [8710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5388), 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(5390), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4921), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4919), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -429865,55 +297619,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [58231] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [8781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5373), 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(5375), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(2850), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2848), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -429924,55 +297687,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [58293] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [8852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5369), 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(5371), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4933), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4931), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -429983,55 +297755,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [58355] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [8923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5480), 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(5482), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4894), 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_RBRACE, + ACTIONS(4892), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -430042,115 +297823,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [58417] = 4, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [8994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5321), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5323), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3178), 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_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3176), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [58481] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [9065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 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(5474), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4977), 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_RBRACE, + ACTIONS(4975), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -430161,55 +297959,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [58543] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [9136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5476), 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(5478), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4973), 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_RBRACE, + ACTIONS(4971), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -430220,55 +298027,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [58605] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [9207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5337), 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(5339), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4969), 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_RBRACE, + ACTIONS(4967), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -430279,55 +298095,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [58667] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [9278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5484), 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(5486), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4965), 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_RBRACE, + ACTIONS(4963), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -430338,55 +298163,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [58729] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [9349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 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(5494), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4961), 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_RBRACE, + ACTIONS(4959), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -430397,55 +298231,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [58791] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [9420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 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(5506), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4937), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4935), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -430456,55 +298299,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [58853] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [9491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 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(5510), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4953), 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_RBRACE, + ACTIONS(4951), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -430515,55 +298367,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [58915] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [9562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5616), 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(5618), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3210), 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_RBRACE, + ACTIONS(3208), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -430574,55 +298435,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [58977] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [9633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5537), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4953), 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_RBRACE, + ACTIONS(4951), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -430633,55 +298503,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [59039] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [9704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5531), 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(5533), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4890), 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_RBRACE, + ACTIONS(4888), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -430692,55 +298571,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [59101] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [9775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5516), 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(5518), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4985), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4983), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -430751,55 +298639,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [59163] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [9846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 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(5514), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3033), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3031), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -430810,55 +298707,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [59225] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [9917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5488), 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(5490), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4886), 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_RBRACE, + ACTIONS(4884), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -430869,55 +298775,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [59287] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [9988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 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(5386), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(2886), 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_RBRACE, + ACTIONS(2884), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -430928,55 +298843,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [59349] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [10059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5620), 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(5622), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4969), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4967), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -430987,114 +298911,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [59411] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5586), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5588), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [59473] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [10130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5612), 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(5614), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3190), 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_RBRACE, + ACTIONS(3188), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -431105,55 +298979,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [59535] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [10201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5341), 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(5343), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4949), 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_RBRACE, + ACTIONS(4947), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -431164,55 +299047,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [59597] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [10272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5437), 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(5439), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4878), 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_RBRACE, + ACTIONS(4876), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -431223,55 +299115,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [59659] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [10343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5417), 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(5419), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5008), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5006), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -431282,55 +299183,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [59721] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [10414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5392), 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(5394), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4992), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -431341,114 +299251,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [59783] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5545), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5547), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [59845] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [10485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 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(5588), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4882), 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_RBRACE, + ACTIONS(4880), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -431459,33 +299319,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [59907] = 5, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [10556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 1, - anon_sym_LBRACK_LBRACK, - STATE(3664), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6030), 20, + ACTIONS(5188), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -431499,73 +299356,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6028), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59973] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4897), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(4899), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(4904), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(5190), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -431575,7 +299380,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, @@ -431587,89 +299392,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_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_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, - [60037] = 6, + [10627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2108), 1, - anon_sym_LBRACE, - ACTIONS(6020), 1, + ACTIONS(3015), 6, anon_sym_LPAREN2, - STATE(4084), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6001), 19, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5999), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3013), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [60105] = 5, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [10698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6549), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(6547), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(6545), 20, - anon_sym_BANG, + ACTIONS(5152), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -431684,126 +299493,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(6543), 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, - [60171] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5392), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5394), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [60233] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5417), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5419), 35, + sym_identifier, + sym_literal_suffix, + ACTIONS(5154), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -431813,7 +299516,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, @@ -431826,763 +299528,807 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [60295] = 3, + [10769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5437), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5439), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4945), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4943), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [60357] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [10840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5341), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5343), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4941), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4939), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [60419] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [10911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5612), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5614), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3117), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3115), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [60481] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [10982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5620), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5622), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2854), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2852), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [60543] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [11053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5386), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4882), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4880), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [60605] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [11124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5488), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5490), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5012), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5010), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [60667] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [11195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5514), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4878), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4876), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [60729] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [11266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5516), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5518), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3200), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3198), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [60791] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [11337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5531), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5533), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2806), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2804), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [60853] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [11408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5537), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2882), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2880), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [60915] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [11479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5616), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5618), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3109), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3107), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [60977] = 8, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [11550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6551), 1, + ACTIONS(5016), 6, anon_sym_LPAREN2, - ACTIONS(6553), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6555), 1, - anon_sym_LBRACK, - STATE(4161), 1, - sym_parameter_list, - STATE(3807), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5978), 20, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5976), 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, - [61049] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5541), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5014), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5543), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -432593,527 +300339,585 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [61111] = 5, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [11621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(6561), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(6559), 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(6557), 31, - anon_sym_COMMA, + ACTIONS(3113), 7, + anon_sym_LPAREN2, anon_sym_TILDE, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_compl, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [61177] = 6, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3111), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [11692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2108), 1, - anon_sym_LBRACE, - ACTIONS(6020), 1, + ACTIONS(3170), 6, anon_sym_LPAREN2, - STATE(4138), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6076), 19, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6074), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61245] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, anon_sym_COLON_COLON, - STATE(2334), 1, - sym_template_argument_list, - ACTIONS(5918), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_LBRACK_LBRACK, + ACTIONS(3168), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5916), 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___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [61311] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [11763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3190), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3188), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5510), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [11834] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5016), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5014), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [61373] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [11905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5506), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4941), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4939), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [61435] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [11976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5494), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2846), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2844), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [61497] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [12047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5484), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5486), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3033), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3031), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [61559] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [12118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5337), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5339), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3101), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3099), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [61621] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [12189] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5476), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5478), 35, + ACTIONS(5345), 1, + sym_identifier, + ACTIONS(5349), 1, + sym_primitive_type, + STATE(2317), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5347), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5074), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -433136,23 +300940,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [61683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 19, + ACTIONS(5076), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -433166,414 +300959,237 @@ 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(5474), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_DOT, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [61745] = 6, + [12267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2108), 1, - anon_sym_LBRACE, - ACTIONS(6020), 1, + ACTIONS(4585), 7, anon_sym_LPAREN2, - STATE(4087), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6009), 19, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(6007), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61813] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5480), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4583), 55, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5482), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [61875] = 8, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [12337] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6551), 1, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4981), 6, anon_sym_LPAREN2, - ACTIONS(6553), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6555), 1, - anon_sym_LBRACK, - STATE(4161), 1, - sym_parameter_list, - STATE(3807), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5993), 20, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5991), 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, - [61947] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5369), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_LBRACK_LBRACK, + ACTIONS(4979), 55, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5371), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [62009] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [12409] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5373), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5375), 35, + ACTIONS(5351), 1, + sym_identifier, + ACTIONS(5355), 1, + sym_primitive_type, + STATE(2313), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5353), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5074), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_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_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [62071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5388), 19, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(5076), 35, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5390), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_DOT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [62133] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [12487] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5425), 19, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5357), 1, + anon_sym_LT, + STATE(2335), 1, + sym_template_argument_list, + ACTIONS(4559), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -433584,16 +301200,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_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5427), 35, + ACTIONS(4564), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -433603,8 +301218,12 @@ 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_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -433626,13 +301245,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [62195] = 3, + anon_sym_final, + anon_sym_override, + [12563] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 19, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5360), 1, + anon_sym_LT, + STATE(2335), 1, + sym_template_argument_list, + ACTIONS(5324), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -433643,16 +301270,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_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5431), 35, + ACTIONS(4085), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -433662,8 +301288,12 @@ 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_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -433685,20 +301315,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [62257] = 6, + anon_sym_final, + anon_sym_override, + [12639] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2108), 1, + ACTIONS(2016), 1, anon_sym_LBRACE, - ACTIONS(6020), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - STATE(4070), 2, + ACTIONS(5368), 1, + anon_sym_LBRACK, + ACTIONS(5370), 1, + sym_auto, + ACTIONS(5372), 1, + anon_sym_decltype, + STATE(2451), 1, + sym_decltype_auto, + STATE(2454), 1, + sym_new_declarator, + STATE(2756), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6057), 19, + ACTIONS(5366), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -433717,8 +301359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6055), 31, + ACTIONS(5362), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -433727,7 +301368,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -433749,11 +301394,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, - [62325] = 3, + anon_sym_DASH_GT, + [12725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5441), 19, + ACTIONS(5182), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -433763,27 +301408,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_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(5443), 35, + sym_identifier, + sym_literal_suffix, + ACTIONS(5184), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -433792,27 +301443,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [62387] = 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, + [12795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 19, + ACTIONS(5174), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -433822,27 +301475,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_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(5447), 35, + sym_identifier, + sym_literal_suffix, + ACTIONS(5176), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -433851,38 +301510,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_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, + [12865] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2136), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2138), 55, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [62449] = 8, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [12935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6551), 1, + ACTIONS(2132), 7, anon_sym_LPAREN2, - ACTIONS(6553), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(6555), 1, + ACTIONS(2134), 55, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - STATE(4161), 1, - sym_parameter_list, - STATE(3807), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5967), 20, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [13005] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4549), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4547), 55, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [13075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4545), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4543), 55, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [13145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5188), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -433892,24 +301810,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_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(5965), 28, + sym_literal_suffix, + ACTIONS(5190), 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, @@ -433917,36 +301845,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [62521] = 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, + [13215] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6551), 1, + ACTIONS(5378), 1, + anon_sym_AMP_AMP, + ACTIONS(5380), 1, + anon_sym_and, + ACTIONS(5376), 6, anon_sym_LPAREN2, - ACTIONS(6553), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(6555), 1, + ACTIONS(5374), 54, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - STATE(4161), 1, - sym_parameter_list, - STATE(3807), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5955), 20, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [13289] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2016), 1, + anon_sym_LBRACE, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5368), 1, + anon_sym_LBRACK, + ACTIONS(5370), 1, + sym_auto, + ACTIONS(5372), 1, + anon_sym_decltype, + STATE(2451), 1, + sym_decltype_auto, + STATE(2470), 1, + sym_new_declarator, + STATE(2728), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5384), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -433956,24 +301963,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5951), 28, + ACTIONS(5382), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -433981,6 +301993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -433995,11 +302008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [62593] = 3, + [13375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 19, + ACTIONS(5152), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434013,23 +302025,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_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(5559), 35, + sym_literal_suffix, + ACTIONS(5154), 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_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -434042,23 +302060,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [62655] = 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, + [13445] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5578), 19, + ACTIONS(2016), 1, + anon_sym_LBRACE, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5368), 1, + anon_sym_LBRACK, + ACTIONS(5370), 1, + sym_auto, + ACTIONS(5372), 1, + anon_sym_decltype, + STATE(2451), 1, + sym_decltype_auto, + STATE(2475), 1, + sym_new_declarator, + STATE(2641), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5388), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434077,19 +302114,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5580), 35, + ACTIONS(5386), 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_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -434111,13 +302149,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [62717] = 3, + anon_sym_DASH_GT, + [13531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5549), 19, + ACTIONS(5188), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434132,12 +302168,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5551), 35, + sym_literal_suffix, + ACTIONS(5190), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -434147,7 +302190,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, @@ -434160,85 +302202,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [62779] = 26, + [13601] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, + STATE(2313), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5390), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5046), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6402), 1, - anon_sym_EQ, - ACTIONS(6569), 1, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(6571), 1, anon_sym_AMP_AMP, - ACTIONS(6573), 1, - anon_sym_PIPE, - ACTIONS(6577), 1, - anon_sym_AMP, - ACTIONS(6583), 1, - anon_sym_GT_EQ, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6589), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6591), 1, - anon_sym_or, - ACTIONS(6593), 1, - anon_sym_and, - ACTIONS(6595), 1, - anon_sym_bitor, - ACTIONS(6597), 1, - anon_sym_bitand, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6565), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6575), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(6585), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6599), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6567), 3, - anon_sym_STAR, + anon_sym_GT2, + ACTIONS(5044), 37, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6579), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6581), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6400), 18, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [13675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4557), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4555), 55, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [13745] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4915), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(4913), 55, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [13817] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4915), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(4913), 55, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [13889] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2317), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5393), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5046), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -434250,182 +302522,180 @@ 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(5044), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + sym_primitive_type, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [62886] = 26, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + sym_auto, + anon_sym_decltype, + [13963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, + ACTIONS(4858), 7, anon_sym_LPAREN2, - ACTIONS(6436), 1, - anon_sym_EQ, - ACTIONS(6569), 1, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_PIPE_PIPE, - ACTIONS(6571), 1, anon_sym_AMP_AMP, - ACTIONS(6573), 1, - anon_sym_PIPE, - ACTIONS(6577), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4856), 55, anon_sym_AMP, - ACTIONS(6583), 1, - anon_sym_GT_EQ, - ACTIONS(6587), 1, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - ACTIONS(6589), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6591), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, anon_sym_or, - ACTIONS(6593), 1, anon_sym_and, - ACTIONS(6595), 1, - anon_sym_bitor, - ACTIONS(6597), 1, - anon_sym_bitand, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6565), 2, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [14033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5188), 28, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6575), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6599), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6567), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6579), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6581), 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(6434), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [62993] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6478), 1, - anon_sym_EQ, - ACTIONS(6609), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6611), 1, - anon_sym_AMP_AMP, - ACTIONS(6613), 1, - anon_sym_PIPE, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6623), 1, - anon_sym_GT_EQ, - ACTIONS(6627), 1, - anon_sym_QMARK, - ACTIONS(6629), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6631), 1, anon_sym_or, - ACTIONS(6633), 1, anon_sym_and, - ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(6637), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6605), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6615), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(6625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6607), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6619), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(6621), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6476), 16, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5190), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [63104] = 5, + 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, + [14103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - STATE(4167), 1, - sym_attribute_specifier, - ACTIONS(5898), 16, + ACTIONS(5152), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434435,24 +302705,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_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(5896), 35, + sym_identifier, + sym_literal_suffix, + ACTIONS(5154), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -434461,31 +302740,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [63169] = 5, + anon_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, + [14173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - STATE(4075), 1, - sym_attribute_specifier, - ACTIONS(5941), 16, + ACTIONS(5152), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434500,9 +302777,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5939), 35, + sym_literal_suffix, + ACTIONS(5154), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -434512,7 +302799,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, @@ -434526,38 +302812,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [63234] = 10, + [14243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6599), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6200), 17, + ACTIONS(5182), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434571,19 +302843,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(6198), 27, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5184), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -434595,18 +302878,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [63309] = 3, + 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, + [14313] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5378), 1, + anon_sym_AMP_AMP, + ACTIONS(5380), 1, + anon_sym_and, + ACTIONS(5400), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5402), 1, + anon_sym_or, + ACTIONS(5398), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5396), 53, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [14391] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5377), 20, + ACTIONS(2016), 1, + anon_sym_LBRACE, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5368), 1, + anon_sym_LBRACK, + ACTIONS(5370), 1, + sym_auto, + ACTIONS(5372), 1, + anon_sym_decltype, + STATE(2435), 1, + sym_new_declarator, + STATE(2451), 1, + sym_decltype_auto, + STATE(2713), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5406), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434616,27 +302994,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5379), 33, + ACTIONS(5404), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -434644,6 +303024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -434658,17 +303039,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_GT2, - [63370] = 5, + [14477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - STATE(4086), 1, - sym_attribute_specifier, - ACTIONS(5934), 16, + ACTIONS(5174), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434682,20 +303056,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_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(5932), 35, + sym_literal_suffix, + ACTIONS(5176), 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_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -434709,26 +303092,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [14547] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4553), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4551), 55, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [63435] = 5, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [14617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4915), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4913), 55, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [14687] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, + ACTIONS(5320), 1, + anon_sym_COLON, + ACTIONS(5408), 1, anon_sym___attribute__, - STATE(4088), 1, + ACTIONS(5410), 1, + anon_sym_LBRACE, + STATE(2626), 1, + sym_field_declaration_list, + STATE(2859), 1, sym_attribute_specifier, - ACTIONS(5914), 16, + STATE(6283), 1, + sym_virtual_specifier, + STATE(6960), 1, + sym_base_class_clause, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5314), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434743,9 +303275,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(5912), 35, + ACTIONS(5312), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -434755,7 +303290,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, @@ -434768,11 +303302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -434781,10 +303315,77 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [63500] = 3, + [14773] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4541), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4539), 55, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [14843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5321), 20, + ACTIONS(5174), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434794,26 +303395,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_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(5323), 33, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5176), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -434822,31 +303430,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [63561] = 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [14913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - STATE(4089), 1, - sym_attribute_specifier, - ACTIONS(5906), 16, + ACTIONS(5182), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434861,9 +303467,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5904), 35, + sym_literal_suffix, + ACTIONS(5184), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -434873,7 +303489,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, @@ -434887,27 +303502,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_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, - [63626] = 5, + [14983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6639), 1, + ACTIONS(4578), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - STATE(3720), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6030), 21, + ACTIONS(4576), 55, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [15053] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4551), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434917,26 +303596,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6028), 29, + ACTIONS(4553), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_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_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -434944,6 +303630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -434958,15 +303645,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [63691] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [15122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - STATE(4104), 1, - sym_attribute_specifier, - ACTIONS(5930), 16, + ACTIONS(4583), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434981,9 +303667,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5928), 35, + ACTIONS(4585), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -434993,8 +303682,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -435006,23 +303700,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [63756] = 3, + anon_sym_final, + anon_sym_override, + [15191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5453), 20, + ACTIONS(4587), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435032,27 +303728,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5455), 33, + ACTIONS(4594), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -435060,6 +303762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -435076,94 +303779,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [63817] = 28, + anon_sym_final, + anon_sym_override, + [15260] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, + ACTIONS(5412), 1, + sym_identifier, + ACTIONS(5416), 1, + sym_primitive_type, + STATE(2345), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5414), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5074), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6278), 1, - anon_sym_EQ, - ACTIONS(6569), 1, anon_sym_PIPE_PIPE, - ACTIONS(6571), 1, anon_sym_AMP_AMP, - ACTIONS(6573), 1, - anon_sym_PIPE, - ACTIONS(6577), 1, - anon_sym_AMP, - ACTIONS(6583), 1, - anon_sym_GT_EQ, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6589), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6591), 1, - anon_sym_or, - ACTIONS(6593), 1, - anon_sym_and, - ACTIONS(6595), 1, - anon_sym_bitor, - ACTIONS(6597), 1, - anon_sym_bitand, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - ACTIONS(6642), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6644), 1, - anon_sym_QMARK, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6565), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6575), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6599), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6581), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6254), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_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, - [63928] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5496), 20, + 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(5076), 29, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435178,50 +303836,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5498), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [63989] = 3, + [15337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 20, + ACTIONS(5182), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435238,11 +303871,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5502), 33, + sym_literal_suffix, + ACTIONS(5184), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -435250,7 +303890,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, @@ -435262,107 +303901,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, - sym_auto, - anon_sym_decltype, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, anon_sym_GT2, - [64050] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6494), 1, - anon_sym_EQ, - ACTIONS(6609), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6611), 1, - anon_sym_AMP_AMP, - ACTIONS(6613), 1, - anon_sym_PIPE, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6623), 1, - anon_sym_GT_EQ, - ACTIONS(6627), 1, - anon_sym_QMARK, - ACTIONS(6629), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6631), 1, - anon_sym_or, - ACTIONS(6633), 1, - anon_sym_and, - ACTIONS(6635), 1, - anon_sym_bitor, - ACTIONS(6637), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6605), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6615), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6607), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6619), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6621), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6492), 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, - [64161] = 3, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [15406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 20, + ACTIONS(4856), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435372,27 +303930,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5547), 33, + ACTIONS(4858), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -435400,6 +303964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -435416,119 +303981,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [64222] = 26, + anon_sym_final, + anon_sym_override, + [15475] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6498), 1, - anon_sym_EQ, - ACTIONS(6609), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6611), 1, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5422), 1, + anon_sym_STAR, + ACTIONS(5424), 1, anon_sym_AMP_AMP, - ACTIONS(6613), 1, - anon_sym_PIPE, - ACTIONS(6617), 1, + ACTIONS(5426), 1, anon_sym_AMP, - ACTIONS(6623), 1, - anon_sym_GT_EQ, - ACTIONS(6629), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6631), 1, - anon_sym_or, - ACTIONS(6633), 1, - anon_sym_and, - ACTIONS(6635), 1, - anon_sym_bitor, - ACTIONS(6637), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6605), 2, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(5430), 1, + anon_sym_LBRACK, + STATE(3605), 1, + sym_parameter_list, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5245), 1, + sym__scope_resolution, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5830), 1, + sym__declarator, + STATE(6075), 1, + sym__abstract_declarator, + STATE(7308), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(5420), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(2892), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3319), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [15596] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5341), 1, + anon_sym___attribute__, + ACTIONS(5436), 1, + anon_sym_LBRACE, + STATE(1989), 1, + sym_attribute_specifier, + STATE(2367), 1, + sym_enumerator_list, + ACTIONS(5434), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6615), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6607), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6619), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6621), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6496), 18, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5432), 47, 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, - [64329] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6648), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6646), 47, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -435539,29 +304127,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [64390] = 4, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [15673] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6650), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6208), 19, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4913), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435575,15 +304164,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6206), 33, + ACTIONS(4915), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -435591,8 +304181,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -435615,18 +304208,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [64453] = 7, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [15744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(4865), 1, - anon_sym_LBRACE, - ACTIONS(5287), 1, - anon_sym_LT, - STATE(3906), 1, - sym_template_argument_list, - ACTIONS(4867), 19, + ACTIONS(5174), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435638,15 +304227,23 @@ 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, 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(4872), 30, + sym_literal_suffix, + ACTIONS(5176), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -435665,25 +304262,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, anon_sym_GT2, - [64522] = 4, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [15813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(4899), 19, + ACTIONS(5188), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435693,26 +304291,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, - anon_sym_DASH_GT, - ACTIONS(4904), 32, + sym_literal_suffix, + ACTIONS(5190), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -435721,25 +304325,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [64585] = 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, + [15882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5321), 20, + ACTIONS(4547), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435749,27 +304357,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5323), 33, + ACTIONS(4549), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -435777,6 +304391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -435793,15 +304408,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [64646] = 5, + anon_sym_final, + anon_sym_override, + [15951] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, + STATE(2345), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5438), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5046), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(5044), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - STATE(4192), 1, - sym_attribute_specifier, - ACTIONS(5890), 16, + anon_sym_EQ, + sym_primitive_type, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + [16024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5152), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435811,24 +304491,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, - anon_sym_DASH_GT, - ACTIONS(5888), 35, + sym_literal_suffix, + ACTIONS(5154), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -435837,90 +304525,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [64711] = 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_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [16093] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5341), 1, + anon_sym___attribute__, + ACTIONS(5436), 1, + anon_sym_LBRACE, + STATE(1948), 1, + sym_attribute_specifier, + STATE(2373), 1, + sym_enumerator_list, + ACTIONS(5443), 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(6436), 1, - anon_sym_EQ, - ACTIONS(6609), 1, + ACTIONS(5441), 47, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(6611), 1, anon_sym_AMP_AMP, - ACTIONS(6613), 1, - anon_sym_PIPE, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6623), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(6629), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(6631), 1, anon_sym_or, - ACTIONS(6633), 1, anon_sym_and, - ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(6637), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6605), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [16170] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4913), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6615), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6619), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6621), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6434), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4915), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -435935,23 +304669,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [64818] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6125), 17, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [16241] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5320), 1, + anon_sym_COLON, + ACTIONS(5445), 1, + anon_sym___attribute__, + ACTIONS(5447), 1, + anon_sym_LBRACE, + STATE(2633), 1, + sym_field_declaration_list, + STATE(2956), 1, + sym_attribute_specifier, + STATE(6261), 1, + sym_virtual_specifier, + STATE(7176), 1, + sym_base_class_clause, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5314), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435961,23 +304711,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6123), 29, + anon_sym_DOT, + ACTIONS(5312), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -435985,7 +304738,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -435998,24 +304750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT_STAR, - [64891] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6177), 17, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [16326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436030,18 +304773,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6175), 29, + anon_sym_DOT, + ACTIONS(4541), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_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_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -436062,11 +304815,16 @@ 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, - [64964] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [16395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5582), 20, + ACTIONS(4576), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436076,27 +304834,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5584), 33, + ACTIONS(4578), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -436104,6 +304868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -436120,11 +304885,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [65025] = 3, + anon_sym_final, + anon_sym_override, + [16464] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5578), 20, + ACTIONS(5316), 1, + anon_sym___attribute__, + ACTIONS(5453), 1, + anon_sym_LBRACE, + ACTIONS(5455), 1, + anon_sym_COLON, + STATE(2360), 1, + sym__enum_base_clause, + STATE(2398), 1, + sym_enumerator_list, + STATE(2485), 1, + sym_attribute_specifier, + ACTIONS(5451), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436134,27 +304912,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5580), 33, + ACTIONS(5449), 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_LBRACE, + 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, @@ -436162,6 +304942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -436178,11 +304959,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [65086] = 3, + [16545] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4047), 1, + anon_sym_LPAREN2, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5457), 1, + anon_sym_STAR, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + STATE(3550), 1, + sym_parameter_list, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5245), 1, + sym__scope_resolution, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5830), 1, + sym__declarator, + STATE(6056), 1, + sym__abstract_declarator, + STATE(7308), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(5420), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(2912), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3319), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [16666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 20, + ACTIONS(4543), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436192,27 +305064,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5559), 33, + ACTIONS(4545), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -436220,6 +305098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -436236,11 +305115,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [65147] = 3, + anon_sym_final, + anon_sym_override, + [16735] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5549), 20, + ACTIONS(5316), 1, + anon_sym___attribute__, + ACTIONS(5453), 1, + anon_sym_LBRACE, + ACTIONS(5455), 1, + anon_sym_COLON, + STATE(2363), 1, + sym__enum_base_clause, + STATE(2417), 1, + sym_enumerator_list, + STATE(2428), 1, + sym_attribute_specifier, + ACTIONS(5465), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436250,27 +305142,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5551), 33, + ACTIONS(5463), 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_LBRACE, + 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, @@ -436278,6 +305172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -436294,73 +305189,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [65208] = 26, + [16816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6370), 1, - anon_sym_EQ, - ACTIONS(6569), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6571), 1, - anon_sym_AMP_AMP, - ACTIONS(6573), 1, - anon_sym_PIPE, - ACTIONS(6577), 1, - anon_sym_AMP, - ACTIONS(6583), 1, - anon_sym_GT_EQ, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6589), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6591), 1, - anon_sym_or, - ACTIONS(6593), 1, - anon_sym_and, - ACTIONS(6595), 1, - anon_sym_bitor, - ACTIONS(6597), 1, - anon_sym_bitand, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6565), 2, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4979), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6575), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6599), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6567), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6579), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6581), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6368), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4981), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -436375,145 +305244,22 @@ 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, - [65315] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - STATE(3898), 1, - sym_attribute_specifier, - STATE(4479), 1, - sym_field_declaration_list, - STATE(7785), 1, - sym_virtual_specifier, - STATE(8689), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5665), 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(5667), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [65392] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - STATE(3971), 1, - sym_attribute_specifier, - STATE(4527), 1, - sym_field_declaration_list, - STATE(7700), 1, - sym_virtual_specifier, - STATE(8800), 1, - sym_base_class_clause, - ACTIONS(6656), 2, anon_sym_final, anon_sym_override, - ACTIONS(5677), 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(5679), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [65469] = 4, + [16887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6208), 20, + ACTIONS(4555), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436527,14 +305273,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_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6206), 32, + ACTIONS(4557), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -436544,7 +305289,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -436566,58 +305317,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [65532] = 14, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [16956] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6589), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6565), 2, + ACTIONS(5304), 1, + sym_literal_suffix, + STATE(2154), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(4106), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4108), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4069), 22, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6599), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6567), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6378), 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_bitor, anon_sym_xor, - ACTIONS(6376), 26, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4061), 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, @@ -436629,21 +305387,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [65615] = 5, + [17033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6660), 1, - anon_sym_LT, - STATE(3383), 1, - sym_template_argument_list, - ACTIONS(6189), 18, + ACTIONS(5188), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436654,26 +305406,31 @@ 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_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6187), 33, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5190), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -436685,86 +305442,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [65680] = 28, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_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, + [17101] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6494), 1, - anon_sym_EQ, - ACTIONS(6569), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6571), 1, - anon_sym_AMP_AMP, - ACTIONS(6573), 1, - anon_sym_PIPE, - ACTIONS(6577), 1, - anon_sym_AMP, - ACTIONS(6583), 1, - anon_sym_GT_EQ, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6589), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6591), 1, - anon_sym_or, - ACTIONS(6593), 1, - anon_sym_and, - ACTIONS(6595), 1, - anon_sym_bitor, - ACTIONS(6597), 1, - anon_sym_bitand, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - ACTIONS(6642), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6644), 1, - anon_sym_QMARK, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6565), 2, + ACTIONS(5316), 1, + anon_sym___attribute__, + ACTIONS(5453), 1, + anon_sym_LBRACE, + STATE(2416), 1, + sym_enumerator_list, + STATE(2477), 1, + sym_attribute_specifier, + ACTIONS(5434), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6575), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6599), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6567), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6579), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6581), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6492), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5432), 38, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -436778,77 +305516,63 @@ 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, - [65791] = 25, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [17177] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(4322), 1, + ACTIONS(5320), 1, + anon_sym_COLON, + ACTIONS(5467), 1, + anon_sym___attribute__, + ACTIONS(5469), 1, + anon_sym_LBRACE, + STATE(2604), 1, + sym_field_declaration_list, + STATE(2878), 1, + sym_attribute_specifier, + STATE(6464), 1, + sym_virtual_specifier, + STATE(6875), 1, + sym_base_class_clause, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5314), 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(5312), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5808), 1, anon_sym_STAR, - ACTIONS(5810), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(5812), 1, - anon_sym_AMP, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(5816), 1, - anon_sym_LBRACK, - STATE(4739), 1, - sym_parameter_list, - STATE(6518), 1, - sym__scope_resolution, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7121), 1, - sym__declarator, - STATE(7370), 1, - sym__abstract_declarator, - STATE(9528), 1, - sym_ms_based_modifier, - ACTIONS(6663), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -436859,53 +305583,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [65896] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6599), 2, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6567), 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [17261] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5360), 1, + anon_sym_LT, + STATE(2335), 1, + sym_template_argument_list, + ACTIONS(4059), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6196), 14, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6194), 27, + anon_sym_DOT, + ACTIONS(4067), 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_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -436924,11 +305661,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [65973] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [17335] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 20, + ACTIONS(5316), 1, + anon_sym___attribute__, + ACTIONS(5453), 1, + anon_sym_LBRACE, + STATE(2394), 1, + sym_enumerator_list, + STATE(2490), 1, + sym_attribute_specifier, + ACTIONS(5443), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436938,27 +305688,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5447), 33, + ACTIONS(5441), 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_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -436966,6 +305719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -436982,27 +305736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [66034] = 10, + [17411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6599), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6196), 17, + ACTIONS(5152), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -437019,16 +305756,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(6194), 27, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5154), 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, @@ -437040,63 +305786,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_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, - [66109] = 3, + [17479] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5441), 20, + ACTIONS(5341), 1, + anon_sym___attribute__, + STATE(1967), 1, + sym_attribute_specifier, + ACTIONS(5473), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(5443), 33, + ACTIONS(5471), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -437105,135 +305865,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [66170] = 24, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [17551] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(6571), 1, + ACTIONS(4049), 1, + anon_sym_STAR, + ACTIONS(4051), 1, anon_sym_AMP_AMP, - ACTIONS(6573), 1, - anon_sym_PIPE, - ACTIONS(6577), 1, + ACTIONS(4053), 1, anon_sym_AMP, - ACTIONS(6583), 1, - anon_sym_GT_EQ, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6589), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6593), 1, - anon_sym_and, - ACTIONS(6595), 1, - anon_sym_bitor, - ACTIONS(6597), 1, - anon_sym_bitand, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6196), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(6565), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6575), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6599), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6579), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6581), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4792), 1, + sym_identifier, + ACTIONS(5420), 1, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [66273] = 3, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5475), 1, + anon_sym_COLON_COLON, + STATE(3550), 1, + sym_parameter_list, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5318), 1, + sym__scope_resolution, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5852), 1, + sym__declarator, + STATE(6056), 1, + sym__abstract_declarator, + STATE(7657), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3072), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3249), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [17671] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 20, + ACTIONS(5341), 1, + anon_sym___attribute__, + STATE(1979), 1, + sym_attribute_specifier, + ACTIONS(5479), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(5431), 33, + ACTIONS(5477), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -437242,56 +306023,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [66334] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [17743] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5425), 20, + ACTIONS(5341), 1, + anon_sym___attribute__, + STATE(2005), 1, + sym_attribute_specifier, + ACTIONS(5483), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(5427), 33, + ACTIONS(5481), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -437300,94 +306090,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [66395] = 28, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [17815] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, + ACTIONS(5341), 1, + anon_sym___attribute__, + STATE(1961), 1, + sym_attribute_specifier, + ACTIONS(5487), 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(5485), 48, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6478), 1, - anon_sym_EQ, - ACTIONS(6569), 1, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(6571), 1, anon_sym_AMP_AMP, - ACTIONS(6573), 1, - anon_sym_PIPE, - ACTIONS(6577), 1, - anon_sym_AMP, - ACTIONS(6583), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(6587), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(6589), 1, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(6591), 1, anon_sym_or, - ACTIONS(6593), 1, anon_sym_and, - ACTIONS(6595), 1, anon_sym_bitor, - ACTIONS(6597), 1, - anon_sym_bitand, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - ACTIONS(6642), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6644), 1, - anon_sym_QMARK, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6565), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6575), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6599), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6579), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6581), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6476), 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, - [66506] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [17887] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5388), 20, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5489), 1, + anon_sym_LT, + STATE(2397), 1, + sym_template_argument_list, + ACTIONS(4559), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -437397,25 +306179,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_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5390), 33, + anon_sym_DASH_GT, + ACTIONS(4564), 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, @@ -437425,6 +306209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -437438,66 +306223,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [66567] = 11, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [17961] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, + ACTIONS(5341), 1, anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5111), 1, - anon_sym_virtual, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6665), 7, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(5101), 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(3791), 9, - sym__declaration_modifiers, + STATE(1988), 1, sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(6667), 11, + ACTIONS(5494), 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(5492), 48, 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_EQ, - anon_sym_GT2, - ACTIONS(5099), 12, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -437508,10 +306277,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [66644] = 3, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [18033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5373), 20, + ACTIONS(5182), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -437521,26 +306308,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5375), 33, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5184), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -437549,72 +306341,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, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [66705] = 11, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [18101] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, + ACTIONS(5341), 1, anon_sym___attribute__, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - STATE(3930), 1, + STATE(1991), 1, sym_attribute_specifier, - STATE(4485), 1, - sym_field_declaration_list, - STATE(7948), 1, - sym_virtual_specifier, - STATE(8807), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5669), 12, + ACTIONS(5498), 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(5496), 48, 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(5671), 32, - anon_sym_AMP, anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + 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_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -437625,21 +306409,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [66782] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [18173] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6660), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, anon_sym_LT, - STATE(2305), 1, + STATE(2397), 1, sym_template_argument_list, - ACTIONS(6189), 18, + ACTIONS(5324), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -437652,24 +306449,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6187), 33, + anon_sym_DASH_GT, + ACTIONS(4085), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -437691,15 +306490,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, - [66847] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [18247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - STATE(4152), 1, - sym_attribute_specifier, - ACTIONS(5850), 16, + ACTIONS(5174), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -437714,9 +306513,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_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5848), 35, + sym_identifier, + sym_literal_suffix, + ACTIONS(5176), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -437726,7 +306533,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, @@ -437740,22 +306546,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [66912] = 3, + [18315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5369), 20, + ACTIONS(4913), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -437765,27 +306573,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5371), 33, + ACTIONS(4915), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -437793,6 +306606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -437809,268 +306623,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [66973] = 5, + anon_sym_final, + anon_sym_override, + [18383] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6022), 1, - anon_sym_LBRACK, - STATE(3957), 1, - sym_new_declarator, - ACTIONS(6096), 19, + ACTIONS(5341), 1, + anon_sym___attribute__, + STATE(2001), 1, + sym_attribute_specifier, + ACTIONS(5504), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6094), 32, + ACTIONS(5502), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67038] = 22, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [18455] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6573), 1, - anon_sym_PIPE, - ACTIONS(6577), 1, - anon_sym_AMP, - ACTIONS(6583), 1, - anon_sym_GT_EQ, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6589), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6595), 1, - anon_sym_bitor, - ACTIONS(6597), 1, - anon_sym_bitand, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6565), 2, + ACTIONS(5341), 1, + anon_sym___attribute__, + STATE(1945), 1, + sym_attribute_specifier, + ACTIONS(5508), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6575), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6599), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6196), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(6567), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6579), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6581), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 20, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5506), 48, anon_sym_DOT_DOT_DOT, anon_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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [67137] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6577), 1, - anon_sym_AMP, - ACTIONS(6583), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(6587), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(6589), 1, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(6597), 1, - anon_sym_bitand, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6565), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6575), 2, - anon_sym_CARET, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6599), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6579), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6581), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6196), 4, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(6194), 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, - [67232] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [18527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5480), 20, + ACTIONS(4587), 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_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(5482), 33, + ACTIONS(4594), 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_COLON_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_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -438079,76 +306821,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [67293] = 25, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [18595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5512), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5510), 54, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [18663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(5516), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5514), 54, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, - ACTIONS(1378), 1, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, - ACTIONS(2012), 1, anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(4322), 1, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [18731] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5520), 6, anon_sym_LPAREN2, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(5816), 1, - anon_sym_LBRACK, - ACTIONS(5822), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(5824), 1, anon_sym_AMP_AMP, - ACTIONS(5826), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5518), 54, anon_sym_AMP, - STATE(4706), 1, - sym_parameter_list, - STATE(6518), 1, - sym__scope_resolution, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7121), 1, - sym__declarator, - STATE(7381), 1, - sym__abstract_declarator, - STATE(9528), 1, - sym_ms_based_modifier, - ACTIONS(6663), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -438160,53 +307001,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [67398] = 5, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [18799] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, + ACTIONS(5341), 1, anon_sym___attribute__, - STATE(4162), 1, + STATE(1943), 1, sym_attribute_specifier, - ACTIONS(5884), 16, + ACTIONS(5524), 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_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5882), 35, + ACTIONS(5522), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -438217,56 +307080,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [67463] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [18871] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, + ACTIONS(5341), 1, anon_sym___attribute__, - STATE(4163), 1, + STATE(1949), 1, sym_attribute_specifier, - ACTIONS(5922), 16, + ACTIONS(5528), 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_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5920), 35, + ACTIONS(5526), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -438277,87 +307147,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [67528] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6577), 1, - anon_sym_AMP, - ACTIONS(6583), 1, - anon_sym_GT_EQ, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6589), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6597), 1, - anon_sym_bitand, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6565), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6599), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6579), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6581), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6196), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6194), 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, - [67621] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [18943] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 20, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + STATE(1726), 1, + sym_template_argument_list, + ACTIONS(5532), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438367,27 +307170,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_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5474), 33, + ACTIONS(5530), 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_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -438395,6 +307203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -438411,152 +307220,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [67682] = 17, + [19015] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6583), 1, - anon_sym_GT_EQ, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6589), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6565), 2, + ACTIONS(5341), 1, + anon_sym___attribute__, + STATE(1955), 1, + sym_attribute_specifier, + ACTIONS(5536), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6599), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6567), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6579), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6581), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6196), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6194), 22, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5534), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, - anon_sym_DASH_GT_STAR, - [67771] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6599), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6167), 17, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [19087] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5341), 1, + anon_sym___attribute__, + STATE(2003), 1, + sym_attribute_specifier, + ACTIONS(5540), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6165), 27, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5538), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_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, - [67846] = 5, + 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, + [19159] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, + ACTIONS(5408), 1, anon_sym___attribute__, - STATE(4164), 1, + ACTIONS(5542), 1, + anon_sym_LBRACE, + ACTIONS(5544), 1, + anon_sym_COLON, + STATE(2523), 1, + sym__enum_base_clause, + STATE(2615), 1, + sym_enumerator_list, + STATE(2849), 1, sym_attribute_specifier, - ACTIONS(5926), 16, + ACTIONS(5465), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438571,9 +307384,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(5924), 35, + ACTIONS(5463), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -438583,7 +307399,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, @@ -438596,11 +307411,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -438609,10 +307424,14 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [67911] = 3, + [19238] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5476), 20, + ACTIONS(5316), 1, + anon_sym___attribute__, + STATE(2496), 1, + sym_attribute_specifier, + ACTIONS(5524), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438622,27 +307441,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5478), 33, + ACTIONS(5522), 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_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -438650,6 +307473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -438666,60 +307490,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [67972] = 16, + [19309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6583), 1, - anon_sym_GT_EQ, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6589), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6565), 2, + ACTIONS(4856), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6599), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6567), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6581), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6196), 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_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6194), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4858), 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, @@ -438734,61 +307542,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_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, - [68059] = 14, + [19376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6589), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6565), 2, + ACTIONS(5182), 23, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6599), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6567), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6196), 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_bitor, anon_sym_xor, - ACTIONS(6194), 26, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5184), 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, @@ -438800,79 +307603,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [68142] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5184), 1, - sym_literal_suffix, - STATE(3456), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(4314), 5, + 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, - ACTIONS(4316), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(4286), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(4278), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [68211] = 3, + anon_sym_DASH_GT_STAR, + [19443] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5337), 20, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4913), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438882,25 +307633,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5339), 33, + anon_sym_DASH_GT, + ACTIONS(4915), 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, @@ -438910,6 +307664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -438923,14 +307678,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [68272] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [19512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5484), 20, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4955), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438940,27 +307698,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_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5486), 33, + ACTIONS(4957), 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_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -438968,6 +307731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -438984,11 +307748,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [68333] = 3, + [19581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 20, + ACTIONS(5316), 1, + anon_sym___attribute__, + STATE(2474), 1, + sym_attribute_specifier, + ACTIONS(5498), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438998,27 +307765,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5494), 33, + ACTIONS(5496), 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_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -439026,6 +307797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -439042,128 +307814,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [68394] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5323), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5321), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [68457] = 3, + [19652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5327), 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(4917), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5325), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [68518] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5504), 20, + ACTIONS(4913), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439173,25 +307829,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5506), 33, + anon_sym_DASH_GT, + ACTIONS(4915), 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, @@ -439201,6 +307860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -439214,81 +307874,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, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [68579] = 12, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [19721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6565), 2, + ACTIONS(4955), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6599), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6567), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6196), 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(6194), 27, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4957), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [68658] = 3, + 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, + [19788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 20, + ACTIONS(4587), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439298,25 +307956,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5510), 33, + anon_sym_DASH_GT, + ACTIONS(4594), 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, @@ -439326,6 +307988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -439339,20 +308002,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [68719] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [19855] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6092), 1, - anon_sym_LT, - STATE(3214), 1, - sym_template_argument_list, - ACTIONS(4276), 15, + ACTIONS(5316), 1, + anon_sym___attribute__, + STATE(2479), 1, + sym_attribute_specifier, + ACTIONS(5494), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439363,12 +308025,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(4284), 35, + ACTIONS(5492), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -439378,8 +308043,12 @@ 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_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -439391,68 +308060,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [68786] = 13, + [19926] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6565), 2, + ACTIONS(5370), 1, + sym_auto, + ACTIONS(5372), 1, + anon_sym_decltype, + STATE(2451), 1, + sym_decltype_auto, + ACTIONS(5018), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6599), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6567), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6196), 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(6194), 27, + anon_sym_DOT, + ACTIONS(5020), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -439471,81 +308136,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [68867] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6679), 1, - anon_sym___attribute__, - ACTIONS(6682), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6685), 1, - anon_sym___declspec, - ACTIONS(6688), 1, - anon_sym_virtual, - ACTIONS(6691), 1, - anon_sym_alignas, - ACTIONS(6669), 7, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(6676), 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(3791), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(6671), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6673), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [68944] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [19999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 1, - anon_sym_LT, - STATE(2418), 1, - sym_template_argument_list, - ACTIONS(6189), 19, + ACTIONS(5028), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439556,16 +308154,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6187), 32, + ACTIONS(5030), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -439575,7 +308173,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -439597,27 +308201,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69009] = 10, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [20066] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6599), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6185), 17, + ACTIONS(5408), 1, + anon_sym___attribute__, + ACTIONS(5542), 1, + anon_sym_LBRACE, + ACTIONS(5544), 1, + anon_sym_COLON, + STATE(2526), 1, + sym__enum_base_clause, + STATE(2622), 1, + sym_enumerator_list, + STATE(2872), 1, + sym_attribute_specifier, + ACTIONS(5451), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439635,15 +308237,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6183), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5449), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -439662,15 +308268,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [69084] = 5, + [20145] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, + ACTIONS(5320), 1, + anon_sym_COLON, + ACTIONS(5546), 1, anon_sym___attribute__, - STATE(4149), 1, + ACTIONS(5548), 1, + anon_sym_LBRACE, + STATE(2984), 1, + sym_field_declaration_list, + STATE(3255), 1, sym_attribute_specifier, - ACTIONS(5880), 16, + STATE(6399), 1, + sym_virtual_specifier, + STATE(7154), 1, + sym_base_class_clause, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5314), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439687,7 +308311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5878), 35, + ACTIONS(5312), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -439697,7 +308321,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, @@ -439723,10 +308346,14 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [69149] = 3, + [20228] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 20, + ACTIONS(5316), 1, + anon_sym___attribute__, + STATE(2472), 1, + sym_attribute_specifier, + ACTIONS(5504), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439736,27 +308363,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5543), 33, + ACTIONS(5502), 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_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -439764,6 +308395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -439780,11 +308412,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [69210] = 3, + [20299] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5616), 20, + ACTIONS(5552), 1, + anon_sym_LPAREN2, + ACTIONS(5556), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5558), 1, + anon_sym_LBRACK, + STATE(2466), 1, + sym_parameter_list, + STATE(2461), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5554), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439794,27 +308436,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5618), 33, + ACTIONS(5550), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -439822,6 +308466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -439836,61 +308481,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [69271] = 14, + [20376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6629), 1, - anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6605), 2, + ACTIONS(5152), 23, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6196), 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_bitor, anon_sym_xor, - ACTIONS(6194), 26, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5154), 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___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -439902,20 +308530,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [69354] = 5, + 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, + [20443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - STATE(4020), 1, - sym_attribute_specifier, - ACTIONS(5872), 16, + ACTIONS(5188), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439930,9 +308563,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5870), 35, + sym_literal_suffix, + ACTIONS(5190), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -439942,7 +308582,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, @@ -439956,22 +308595,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_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, - [69419] = 3, + [20510] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 20, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5560), 1, + anon_sym_LT, + STATE(2493), 1, + sym_template_argument_list, + ACTIONS(4559), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439983,16 +308630,16 @@ 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, + anon_sym_COLON, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5537), 33, + ACTIONS(4564), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -440000,6 +308647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -440025,15 +308673,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [69480] = 5, + [20583] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, + ACTIONS(5316), 1, anon_sym___attribute__, - STATE(4019), 1, + STATE(2495), 1, sym_attribute_specifier, - ACTIONS(5868), 16, + ACTIONS(5508), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440048,9 +308698,11 @@ static const uint16_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(5866), 35, + ACTIONS(5506), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -440060,8 +308712,12 @@ 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_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -440073,23 +308729,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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [69545] = 3, + [20654] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5531), 20, + ACTIONS(5552), 1, + anon_sym_LPAREN2, + ACTIONS(5556), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5558), 1, + anon_sym_LBRACK, + STATE(2466), 1, + sym_parameter_list, + STATE(2461), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5565), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440099,27 +308766,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5533), 33, + ACTIONS(5563), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -440127,6 +308796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -440141,13 +308811,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_GT2, - [69606] = 3, + [20731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5516), 20, + ACTIONS(5174), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440157,26 +308824,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5518), 33, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5176), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -440185,77 +308856,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [69667] = 16, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_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, + [20798] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6623), 1, - anon_sym_GT_EQ, - ACTIONS(6629), 1, - anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6605), 2, + ACTIONS(5316), 1, + anon_sym___attribute__, + STATE(2437), 1, + sym_attribute_specifier, + ACTIONS(5487), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6621), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6196), 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(6194), 25, + anon_sym_DOT, + ACTIONS(5485), 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_SEMI, - anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -440270,13 +308931,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, - [69754] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [20869] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 20, + ACTIONS(5316), 1, + anon_sym___attribute__, + STATE(2426), 1, + sym_attribute_specifier, + ACTIONS(5483), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440286,27 +308958,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5514), 33, + ACTIONS(5481), 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_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -440314,6 +308990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -440330,11 +309007,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [69815] = 3, + [20940] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5488), 20, + ACTIONS(5316), 1, + anon_sym___attribute__, + STATE(2471), 1, + sym_attribute_specifier, + ACTIONS(5540), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440344,27 +309024,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5490), 33, + ACTIONS(5538), 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_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -440372,6 +309056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -440388,97 +309073,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [69876] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6498), 1, - anon_sym_EQ, - ACTIONS(6569), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6571), 1, - anon_sym_AMP_AMP, - ACTIONS(6573), 1, - anon_sym_PIPE, - ACTIONS(6577), 1, - anon_sym_AMP, - ACTIONS(6583), 1, - anon_sym_GT_EQ, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6589), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6591), 1, - anon_sym_or, - ACTIONS(6593), 1, - anon_sym_and, - ACTIONS(6595), 1, - anon_sym_bitor, - ACTIONS(6597), 1, - anon_sym_bitand, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6565), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6575), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6599), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6579), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6581), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6496), 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, - [69983] = 5, + [21011] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6553), 1, - anon_sym_LBRACK_LBRACK, - STATE(3720), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6061), 21, + ACTIONS(5316), 1, + anon_sym___attribute__, + STATE(2447), 1, + sym_attribute_specifier, + ACTIONS(5473), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440488,26 +309090,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6059), 29, + ACTIONS(5471), 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_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -440515,6 +309122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -440529,15 +309137,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [70048] = 5, + sym_auto, + anon_sym_decltype, + [21082] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - STATE(4014), 1, - sym_attribute_specifier, - ACTIONS(5864), 16, + STATE(2415), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5567), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5044), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440551,10 +309163,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, + 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, anon_sym_DASH_GT, - ACTIONS(5862), 35, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5046), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -440578,74 +309201,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [70113] = 17, + [21153] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6623), 1, - anon_sym_GT_EQ, - ACTIONS(6629), 1, - anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6605), 2, + ACTIONS(5316), 1, + anon_sym___attribute__, + STATE(2464), 1, + sym_attribute_specifier, + ACTIONS(5479), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6619), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6621), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6196), 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(6194), 22, + anon_sym_DOT, + ACTIONS(5477), 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_SEMI, - anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -440660,12 +309261,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, - [70202] = 3, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [21224] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 20, + ACTIONS(5316), 1, + anon_sym___attribute__, + STATE(2488), 1, + sym_attribute_specifier, + ACTIONS(5528), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440675,27 +309288,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5386), 33, + ACTIONS(5526), 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_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -440703,6 +309320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -440719,11 +309337,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [70263] = 3, + [21295] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5620), 20, + ACTIONS(5316), 1, + anon_sym___attribute__, + STATE(2484), 1, + sym_attribute_specifier, + ACTIONS(5536), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440733,27 +309354,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5622), 33, + ACTIONS(5534), 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_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -440761,6 +309386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -440777,11 +309403,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [70324] = 3, + [21366] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5612), 20, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5570), 1, + anon_sym_LT, + STATE(2493), 1, + sym_template_argument_list, + ACTIONS(5324), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440793,16 +309424,16 @@ 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, + anon_sym_COLON, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5614), 33, + ACTIONS(4085), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -440810,6 +309441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -440835,11 +309467,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [70385] = 3, + [21439] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5341), 20, + ACTIONS(5552), 1, + anon_sym_LPAREN2, + ACTIONS(5556), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5558), 1, + anon_sym_LBRACK, + STATE(2466), 1, + sym_parameter_list, + STATE(2461), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5574), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440849,27 +309494,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5343), 33, + ACTIONS(5572), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -440877,6 +309524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -440891,17 +309539,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [70446] = 5, + [21516] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - STATE(4006), 1, - sym_attribute_specifier, - ACTIONS(5860), 16, + ACTIONS(5576), 1, + sym_identifier, + ACTIONS(5580), 1, + sym_primitive_type, + STATE(2415), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5578), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5076), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440915,10 +309567,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_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5858), 35, + sym_auto, + anon_sym_decltype, + ACTIONS(5074), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -440942,22 +309603,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [70511] = 3, + [21591] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5437), 20, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4979), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440967,25 +309622,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5439), 33, + anon_sym_DASH_GT, + ACTIONS(4981), 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, @@ -440995,6 +309653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -441008,130 +309667,122 @@ 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, - [70572] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [21660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2156), 1, - anon_sym_LBRACE, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - STATE(4222), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6057), 20, + ACTIONS(5040), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6055), 29, + ACTIONS(5042), 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_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [70639] = 19, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [21727] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5552), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5556), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5558), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6623), 1, - anon_sym_GT_EQ, - ACTIONS(6629), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6637), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6605), 2, + STATE(2466), 1, + sym_parameter_list, + STATE(2461), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5584), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6619), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6621), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6196), 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(6194), 21, + anon_sym_DOT, + ACTIONS(5582), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -441146,11 +309797,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - [70732] = 3, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [21804] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2425), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5586), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5046), 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(5044), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [21874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5417), 20, + ACTIONS(5267), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441160,27 +309883,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5419), 33, + ACTIONS(5269), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -441188,6 +309916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -441204,11 +309933,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [70793] = 3, + [21940] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5392), 20, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(4564), 1, + anon_sym_LBRACE, + ACTIONS(5589), 1, + anon_sym_LT, + STATE(2503), 1, + sym_template_argument_list, + ACTIONS(4566), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441218,27 +309954,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5394), 33, + ACTIONS(4571), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -441246,6 +309985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -441260,13 +310000,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_GT2, - [70854] = 3, + [22014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 20, + ACTIONS(5200), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441276,27 +310013,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5588), 33, + ACTIONS(5202), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -441304,6 +310046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -441320,67 +310063,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [70915] = 20, + [22080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6623), 1, - anon_sym_GT_EQ, - ACTIONS(6629), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6637), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6605), 2, + ACTIONS(5271), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6615), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6619), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6621), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6196), 4, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(6194), 21, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5273), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -441395,81 +310116,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, - [71010] = 11, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [22146] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5111), 1, - anon_sym_virtual, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6697), 7, - anon_sym_AMP, - anon_sym___based, + ACTIONS(2068), 1, + anon_sym_LBRACE, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(5594), 1, anon_sym_LBRACK, - sym_identifier, + ACTIONS(5596), 1, + sym_auto, + ACTIONS(5598), 1, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(5101), 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(3791), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(6699), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5099), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [71087] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - STATE(4190), 1, - sym_attribute_specifier, - ACTIONS(5838), 16, + STATE(2835), 1, + sym_new_declarator, + STATE(2874), 1, + sym_decltype_auto, + STATE(3200), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5366), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441484,20 +310161,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5836), 35, + ACTIONS(5362), 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, @@ -441509,27 +310186,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [71152] = 5, + [22228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - STATE(4191), 1, - sym_attribute_specifier, - ACTIONS(5842), 16, + ACTIONS(5602), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441543,10 +310214,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(5840), 35, + ACTIONS(5600), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -441556,8 +310230,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -441569,104 +310248,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [71217] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6613), 1, - anon_sym_PIPE, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6623), 1, - anon_sym_GT_EQ, - ACTIONS(6629), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6635), 1, - anon_sym_bitor, - ACTIONS(6637), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6605), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6615), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6196), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(6607), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6619), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6621), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [71316] = 5, + anon_sym_try, + [22294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - STATE(4193), 1, - sym_attribute_specifier, - ACTIONS(5846), 16, + ACTIONS(5032), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441681,9 +310278,11 @@ static const uint16_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(5844), 35, + ACTIONS(5034), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -441693,8 +310292,13 @@ 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_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -441706,84 +310310,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [71381] = 24, + [22360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6611), 1, - anon_sym_AMP_AMP, - ACTIONS(6613), 1, - anon_sym_PIPE, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6623), 1, - anon_sym_GT_EQ, - ACTIONS(6629), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6633), 1, - anon_sym_and, - ACTIONS(6635), 1, - anon_sym_bitor, - ACTIONS(6637), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6196), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(6605), 2, + ACTIONS(5606), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6615), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6619), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6621), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5604), 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_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -441798,14 +310377,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [71484] = 5, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_try, + [22426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - STATE(4127), 1, - sym_attribute_specifier, - ACTIONS(5949), 16, + ACTIONS(5138), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441820,9 +310404,11 @@ static const uint16_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(5947), 35, + ACTIONS(5140), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -441832,8 +310418,13 @@ 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_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -441845,30 +310436,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [71549] = 6, + [22492] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2156), 1, + ACTIONS(2016), 1, anon_sym_LBRACE, - ACTIONS(6084), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - STATE(4337), 2, + STATE(2716), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6009), 20, + ACTIONS(5610), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441878,25 +310469,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6007), 29, + ACTIONS(5608), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -441904,6 +310500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -441918,77 +310515,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [71616] = 28, + [22564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6278), 1, - anon_sym_EQ, - ACTIONS(6609), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6611), 1, - anon_sym_AMP_AMP, - ACTIONS(6613), 1, - anon_sym_PIPE, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6623), 1, - anon_sym_GT_EQ, - ACTIONS(6627), 1, - anon_sym_QMARK, - ACTIONS(6629), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6631), 1, - anon_sym_or, - ACTIONS(6633), 1, - anon_sym_and, - ACTIONS(6635), 1, - anon_sym_bitor, - ACTIONS(6637), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6605), 2, + ACTIONS(5094), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6615), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6619), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6621), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6254), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5096), 40, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -442002,14 +310568,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [71727] = 5, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [22630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - STATE(4143), 1, - sym_attribute_specifier, - ACTIONS(5945), 16, + ACTIONS(5160), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442024,9 +310596,11 @@ static const uint16_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(5943), 35, + ACTIONS(5162), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -442036,8 +310610,13 @@ 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_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -442049,27 +310628,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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [71792] = 5, + [22696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - STATE(4034), 1, - sym_attribute_specifier, - ACTIONS(5876), 16, + ACTIONS(5223), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442084,9 +310659,11 @@ static const uint16_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(5874), 35, + ACTIONS(5225), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -442096,8 +310673,13 @@ 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_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -442109,62 +310691,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [71857] = 13, + [22762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6605), 2, + ACTIONS(5178), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6196), 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(6194), 27, + anon_sym_DOT, + ACTIONS(5180), 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, @@ -442172,6 +310738,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -442190,91 +310761,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [71938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5323), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - ACTIONS(5321), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_try, - anon_sym_requires, - [71999] = 12, + [22828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6605), 2, + ACTIONS(5156), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6196), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -442287,9 +310788,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6194), 27, + anon_sym_DOT, + ACTIONS(5158), 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, @@ -442297,6 +310801,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -442315,14 +310824,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [72078] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [22894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - STATE(4140), 1, - sym_attribute_specifier, - ACTIONS(5910), 16, + ACTIONS(5094), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442337,9 +310848,11 @@ static const uint16_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(5908), 35, + ACTIONS(5096), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -442349,8 +310862,13 @@ 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_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -442362,27 +310880,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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [72143] = 5, + [22960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym___attribute__, - STATE(4188), 1, - sym_attribute_specifier, - ACTIONS(5856), 16, + ACTIONS(4587), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442397,9 +310911,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5854), 35, + ACTIONS(4594), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -442409,6 +310924,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___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -442434,18 +310952,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [72208] = 6, + [23026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2156), 1, - anon_sym_LBRACE, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - STATE(4273), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6001), 20, + ACTIONS(5094), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442455,25 +310969,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5999), 29, + ACTIONS(5096), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -442481,6 +311002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -442495,74 +311017,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [72275] = 26, + sym_auto, + anon_sym_decltype, + [23092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6402), 1, - anon_sym_EQ, - ACTIONS(6609), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6611), 1, - anon_sym_AMP_AMP, - ACTIONS(6613), 1, - anon_sym_PIPE, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6623), 1, - anon_sym_GT_EQ, - ACTIONS(6629), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6631), 1, - anon_sym_or, - ACTIONS(6633), 1, - anon_sym_and, - ACTIONS(6635), 1, - anon_sym_bitor, - ACTIONS(6637), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6605), 2, + ACTIONS(5614), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6615), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6619), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6621), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6400), 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(5612), 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_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -442577,32 +311073,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [72382] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 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(6607), 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_try, + [23158] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5618), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6196), 14, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -442611,13 +311099,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6194), 27, + anon_sym_DOT, + ACTIONS(5616), 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, @@ -442625,6 +311117,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -442643,73 +311140,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [72459] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_try, + [23224] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(2068), 1, + anon_sym_LBRACE, + ACTIONS(5592), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5594), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6370), 1, - anon_sym_EQ, - ACTIONS(6609), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6611), 1, - anon_sym_AMP_AMP, - ACTIONS(6613), 1, - anon_sym_PIPE, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6623), 1, - anon_sym_GT_EQ, - ACTIONS(6629), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6631), 1, - anon_sym_or, - ACTIONS(6633), 1, - anon_sym_and, - ACTIONS(6635), 1, - anon_sym_bitor, - ACTIONS(6637), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(5596), 1, + sym_auto, + ACTIONS(5598), 1, + anon_sym_decltype, + STATE(2869), 1, + sym_new_declarator, + STATE(2874), 1, + sym_decltype_auto, + STATE(3159), 2, sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6605), 2, + sym_initializer_list, + ACTIONS(5406), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6615), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6619), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6621), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6368), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5404), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -442724,51 +311208,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [72566] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6629), 1, anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6169), 2, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6605), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [23306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5168), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6378), 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(6376), 26, + anon_sym_DOT, + ACTIONS(5170), 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, @@ -442776,6 +311250,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -442790,86 +311269,32 @@ 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, - [72649] = 11, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [23372] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, + ACTIONS(5445), 1, anon_sym___attribute__, - ACTIONS(6652), 1, + ACTIONS(5620), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + ACTIONS(5622), 1, anon_sym_COLON, - STATE(3910), 1, + STATE(2574), 1, + sym__enum_base_clause, + STATE(2766), 1, + sym_enumerator_list, + STATE(2972), 1, sym_attribute_specifier, - STATE(4520), 1, - sym_field_declaration_list, - STATE(7702), 1, - sym_virtual_specifier, - STATE(8577), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5653), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5655), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [72726] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2156), 1, - anon_sym_LBRACE, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - STATE(4301), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6076), 20, + ACTIONS(5451), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442890,9 +311315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6074), 29, + ACTIONS(5449), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -442919,15 +311345,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [72793] = 5, + [23450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 1, - anon_sym_LT, - STATE(3665), 1, - sym_template_argument_list, - ACTIONS(6189), 19, + ACTIONS(5626), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442938,6 +311362,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, @@ -442946,8 +311371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6187), 32, + ACTIONS(5624), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -442957,7 +311381,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -442979,136 +311409,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72858] = 6, + anon_sym_DASH_GT, + anon_sym_try, + [23516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6248), 1, - sym_auto, - ACTIONS(6250), 1, - anon_sym_decltype, - STATE(3891), 1, - sym_decltype_auto, - ACTIONS(5192), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5630), 19, + 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(5190), 37, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [72925] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5343), 13, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5628), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5341), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_try, - anon_sym_requires, - [72985] = 6, + [23582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5254), 1, - anon_sym_LBRACK, - ACTIONS(5248), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(4286), 19, + ACTIONS(5055), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443127,15 +311496,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4278), 29, + ACTIONS(5057), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -443157,72 +311534,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, - [73051] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [23648] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 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(2068), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5500), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(5594), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + ACTIONS(5596), 1, sym_auto, + ACTIONS(5598), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [73111] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6694), 1, - anon_sym_LT, - STATE(2300), 1, - sym_template_argument_list, - ACTIONS(6189), 18, + STATE(2828), 1, + sym_new_declarator, + STATE(2874), 1, + sym_decltype_auto, + STATE(3311), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5384), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443233,6 +311568,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, @@ -443241,17 +311577,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6187), 32, + ACTIONS(5382), 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, @@ -443274,10 +311608,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [73175] = 3, + [23730] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6121), 20, + ACTIONS(5636), 1, + anon_sym_LBRACK_LBRACK, + STATE(2453), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5634), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443297,8 +311636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6119), 32, + ACTIONS(5632), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -443308,7 +311646,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -443330,27 +311672,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, - [73235] = 10, + anon_sym_DASH_GT, + [23800] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(2016), 1, + anon_sym_LBRACE, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - STATE(4336), 1, + STATE(2644), 2, sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6703), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6185), 19, + sym_initializer_list, + ACTIONS(5641), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443360,23 +311693,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6183), 24, + anon_sym_DOT, + ACTIONS(5639), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -443384,6 +311724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -443394,182 +311735,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [73309] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [23872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5645), 19, + 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(5384), 39, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [73369] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5622), 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(5620), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [73429] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5614), 13, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5643), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5612), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_try, - anon_sym_requires, - [73489] = 3, + [23938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5997), 20, + ACTIONS(5040), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443583,14 +311819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5995), 32, + ACTIONS(5042), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -443600,7 +311834,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -443622,68 +311862,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, - [73549] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [24004] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5447), 13, + ACTIONS(5445), 1, + anon_sym___attribute__, + ACTIONS(5620), 1, + anon_sym_LBRACE, + ACTIONS(5622), 1, + anon_sym_COLON, + STATE(2537), 1, + sym__enum_base_clause, + STATE(2650), 1, + sym_enumerator_list, + STATE(2953), 1, + sym_attribute_specifier, + ACTIONS(5465), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5463), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [24082] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5647), 1, + anon_sym_LT, + STATE(2618), 1, + sym_template_argument_list, + ACTIONS(4085), 27, + anon_sym_LPAREN2, + anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP_AMP, + anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5445), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + 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(5324), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, anon_sym_asm, anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [73609] = 3, + sym_this, + [24154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6037), 20, + ACTIONS(5059), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443697,14 +312017,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6035), 32, + ACTIONS(5061), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -443714,7 +312032,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -443736,11 +312060,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] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [24220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6018), 20, + ACTIONS(5207), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443754,14 +312080,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6016), 32, + ACTIONS(5209), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -443771,7 +312095,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -443793,56 +312123,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73729] = 13, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [24286] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6703), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6709), 2, + ACTIONS(5556), 1, + anon_sym_LBRACK_LBRACK, + STATE(2453), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5651), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6713), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6711), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6196), 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(6194), 24, + anon_sym_DOT, + ACTIONS(5649), 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___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -443850,6 +312176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -443860,11 +312187,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [73809] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [24356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 19, + ACTIONS(5082), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443878,15 +312208,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5198), 33, + ACTIONS(5084), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -443894,8 +312224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -443918,10 +312252,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [73869] = 3, + sym_auto, + anon_sym_decltype, + [24422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6005), 20, + ACTIONS(5086), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443935,14 +312271,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6003), 32, + ACTIONS(5088), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -443952,7 +312286,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -443974,55 +312314,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73929] = 12, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [24488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6703), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6709), 2, + ACTIONS(5192), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6711), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6196), 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(6194), 24, + anon_sym_DOT, + ACTIONS(5194), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -444030,6 +312363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -444040,58 +312374,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [74007] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(6715), 1, - anon_sym_LT_EQ_GT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6703), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6709), 2, + sym_auto, + anon_sym_decltype, + [24554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5196), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6713), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6711), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6196), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6194), 23, + anon_sym_DOT, + ACTIONS(5198), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -444099,68 +312426,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [74089] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(6715), 1, - anon_sym_LT_EQ_GT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6703), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6709), 2, + sym_auto, + anon_sym_decltype, + [24620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6713), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6711), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6717), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6196), 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(6194), 23, + anon_sym_DOT, + ACTIONS(5653), 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_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -444168,70 +312490,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [74173] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(6715), 1, - anon_sym_LT_EQ_GT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6703), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6709), 2, + anon_sym_try, + [24686] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4979), 21, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6713), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6711), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6719), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6717), 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(6196), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6194), 20, + anon_sym_DOT, + ACTIONS(4981), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -444245,66 +312557,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_GT2, - [74259] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(6715), 1, anon_sym_LT_EQ_GT, - ACTIONS(6721), 1, - anon_sym_AMP, - ACTIONS(6723), 1, + anon_sym_bitor, anon_sym_bitand, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6703), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6709), 2, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [24754] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4955), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6713), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6711), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6719), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6717), 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(6196), 7, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6194), 19, + anon_sym_DOT, + ACTIONS(4957), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -444312,72 +312616,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_bitor, - anon_sym_GT2, - [74349] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(6715), 1, anon_sym_LT_EQ_GT, - ACTIONS(6721), 1, - anon_sym_AMP, - ACTIONS(6723), 1, + anon_sym_bitor, anon_sym_bitand, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6703), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6709), 2, + sym_auto, + anon_sym_decltype, + [24820] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5263), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6713), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6725), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6711), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6719), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6717), 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(6196), 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(6194), 19, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5265), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -444385,75 +312679,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_GT2, - [74441] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(6715), 1, anon_sym_LT_EQ_GT, - ACTIONS(6721), 1, - anon_sym_AMP, - ACTIONS(6723), 1, - anon_sym_bitand, - ACTIONS(6727), 1, - anon_sym_PIPE, - ACTIONS(6729), 1, anon_sym_bitor, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6703), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6709), 2, + sym_auto, + anon_sym_decltype, + [24886] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2016), 1, + anon_sym_LBRACE, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + STATE(2714), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5659), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6713), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6725), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6711), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6719), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6196), 4, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(6717), 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(6194), 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(5657), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -444461,131 +312747,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, - [74537] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5478), 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(5476), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [74597] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5455), 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(5453), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [74657] = 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, + [24958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6072), 20, + ACTIONS(5259), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -444599,14 +312779,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6070), 32, + ACTIONS(5261), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -444616,7 +312794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -444638,70 +312822,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [74717] = 23, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [25024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(6715), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6721), 1, - anon_sym_AMP, - ACTIONS(6723), 1, - anon_sym_bitand, - ACTIONS(6727), 1, - anon_sym_PIPE, - ACTIONS(6729), 1, - anon_sym_bitor, - ACTIONS(6731), 1, - anon_sym_AMP_AMP, - ACTIONS(6733), 1, - anon_sym_and, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6703), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6709), 2, + ACTIONS(5255), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6713), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6725), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6196), 3, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - ACTIONS(6711), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6719), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6717), 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(6194), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5257), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -444709,33 +312871,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [74817] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6703), 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(6707), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6196), 19, + sym_auto, + anon_sym_decltype, + [25090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5663), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -444745,23 +312901,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6194), 24, + anon_sym_DOT, + ACTIONS(5661), 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_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -444769,6 +312935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -444779,54 +312946,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [74891] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6703), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6711), 3, + anon_sym_try, + [25156] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5227), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6196), 16, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6194), 24, + anon_sym_DOT, + ACTIONS(5229), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -444834,6 +312997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -444844,243 +313008,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [74967] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5470), 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(5468), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [75027] = 3, + [25222] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5474), 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(2016), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5472), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [75087] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5610), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5364), 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(5608), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [75147] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6735), 1, - sym_identifier, - STATE(3893), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5527), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5529), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5134), 17, + STATE(2739), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5667), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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(5132), 21, + ACTIONS(5665), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [75215] = 3, + [25294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 16, + ACTIONS(4955), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445095,9 +313098,11 @@ static const uint16_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(5567), 36, + ACTIONS(4957), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -445107,9 +313112,13 @@ 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_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -445121,23 +313130,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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [75275] = 3, + [25360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6346), 20, + ACTIONS(5219), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445151,14 +313160,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6344), 32, + ACTIONS(5221), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -445168,7 +313175,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -445190,315 +313203,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [75335] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5339), 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(5337), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [75395] = 27, + [25426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(6715), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6721), 1, - anon_sym_AMP, - ACTIONS(6723), 1, - anon_sym_bitand, - ACTIONS(6727), 1, - anon_sym_PIPE, - ACTIONS(6729), 1, - anon_sym_bitor, - ACTIONS(6731), 1, - anon_sym_AMP_AMP, - ACTIONS(6733), 1, - anon_sym_and, - ACTIONS(6737), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6739), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6741), 1, - anon_sym_QMARK, - ACTIONS(6743), 1, - anon_sym_or, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6278), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(6703), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6709), 2, + ACTIONS(5164), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6713), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6725), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6711), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6719), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6717), 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(6254), 14, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5166), 40, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [75503] = 51, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [25492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6747), 1, - anon_sym_COMMA, - ACTIONS(6749), 1, - anon_sym_RPAREN, - ACTIONS(6751), 1, + ACTIONS(5215), 18, anon_sym_DASH, - ACTIONS(6753), 1, anon_sym_PLUS, - ACTIONS(6755), 1, anon_sym_STAR, - ACTIONS(6757), 1, anon_sym_SLASH, - ACTIONS(6759), 1, anon_sym_PERCENT, - ACTIONS(6761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6763), 1, - anon_sym_AMP_AMP, - ACTIONS(6765), 1, anon_sym_PIPE, - ACTIONS(6767), 1, anon_sym_CARET, - ACTIONS(6769), 1, anon_sym_AMP, - ACTIONS(6771), 1, - anon_sym_EQ_EQ, - ACTIONS(6773), 1, - anon_sym_BANG_EQ, - ACTIONS(6775), 1, anon_sym_GT, - ACTIONS(6777), 1, - anon_sym_GT_EQ, - ACTIONS(6779), 1, anon_sym_LT_EQ, - ACTIONS(6781), 1, anon_sym_LT, - ACTIONS(6783), 1, anon_sym_LT_LT, - ACTIONS(6785), 1, anon_sym_GT_GT, - ACTIONS(6787), 1, anon_sym_EQ, - ACTIONS(6789), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5217), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(6791), 1, anon_sym_STAR_EQ, - ACTIONS(6793), 1, anon_sym_SLASH_EQ, - ACTIONS(6795), 1, anon_sym_PERCENT_EQ, - ACTIONS(6797), 1, anon_sym_PLUS_EQ, - ACTIONS(6799), 1, anon_sym_DASH_EQ, - ACTIONS(6801), 1, anon_sym_LT_LT_EQ, - ACTIONS(6803), 1, anon_sym_GT_GT_EQ, - ACTIONS(6805), 1, anon_sym_AMP_EQ, - ACTIONS(6807), 1, anon_sym_CARET_EQ, - ACTIONS(6809), 1, anon_sym_PIPE_EQ, - ACTIONS(6811), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(6813), 1, - anon_sym_or, - ACTIONS(6815), 1, - anon_sym_and, - ACTIONS(6817), 1, anon_sym_bitor, - ACTIONS(6819), 1, - anon_sym_xor, - ACTIONS(6821), 1, anon_sym_bitand, - ACTIONS(6823), 1, anon_sym_not_eq, - ACTIONS(6827), 1, - anon_sym_DOT_STAR, - ACTIONS(6829), 1, - anon_sym_DASH_GT_STAR, - STATE(2189), 1, - sym__binary_fold_operator, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - STATE(9521), 1, - sym__fold_operator, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [75659] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [25558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 17, + ACTIONS(4913), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_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(5594), 35, + anon_sym_DASH_GT, + ACTIONS(4915), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_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, - [75719] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [25624] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6660), 1, - anon_sym_LT, - STATE(2303), 1, - sym_template_argument_list, - ACTIONS(6189), 17, + ACTIONS(2068), 1, + anon_sym_LBRACE, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(5594), 1, + anon_sym_LBRACK, + ACTIONS(5596), 1, + sym_auto, + ACTIONS(5598), 1, + anon_sym_decltype, + STATE(2838), 1, + sym_new_declarator, + STATE(2874), 1, + sym_decltype_auto, + STATE(3193), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5388), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445509,6 +313426,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, @@ -445516,18 +313434,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6187), 33, + anon_sym_DASH_GT, + ACTIONS(5386), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -445549,11 +313465,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, - [75783] = 3, + anon_sym_DASH_GT_STAR, + [25706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6454), 26, + ACTIONS(5211), 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(5213), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -445563,7 +313498,13 @@ 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_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -445575,12 +313516,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - ACTIONS(6456), 26, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [25772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5146), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445595,26 +313547,55 @@ static const uint16_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(5148), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_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, - sym_literal_suffix, - [75843] = 5, + sym_auto, + anon_sym_decltype, + [25838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6831), 1, - anon_sym_LT, - STATE(2518), 1, - sym_template_argument_list, - ACTIONS(6189), 18, + ACTIONS(5142), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445625,6 +313606,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, @@ -445632,8 +313614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6187), 32, + ACTIONS(5144), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -445643,7 +313624,13 @@ 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_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -445665,339 +313652,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [75907] = 51, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [25904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6751), 1, + ACTIONS(5134), 18, anon_sym_DASH, - ACTIONS(6753), 1, anon_sym_PLUS, - ACTIONS(6755), 1, anon_sym_STAR, - ACTIONS(6757), 1, anon_sym_SLASH, - ACTIONS(6759), 1, anon_sym_PERCENT, - ACTIONS(6761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6763), 1, - anon_sym_AMP_AMP, - ACTIONS(6765), 1, anon_sym_PIPE, - ACTIONS(6767), 1, anon_sym_CARET, - ACTIONS(6769), 1, anon_sym_AMP, - ACTIONS(6771), 1, - anon_sym_EQ_EQ, - ACTIONS(6773), 1, - anon_sym_BANG_EQ, - ACTIONS(6775), 1, anon_sym_GT, - ACTIONS(6777), 1, - anon_sym_GT_EQ, - ACTIONS(6779), 1, anon_sym_LT_EQ, - ACTIONS(6781), 1, anon_sym_LT, - ACTIONS(6783), 1, anon_sym_LT_LT, - ACTIONS(6785), 1, anon_sym_GT_GT, - ACTIONS(6787), 1, anon_sym_EQ, - ACTIONS(6789), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5136), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(6791), 1, anon_sym_STAR_EQ, - ACTIONS(6793), 1, anon_sym_SLASH_EQ, - ACTIONS(6795), 1, anon_sym_PERCENT_EQ, - ACTIONS(6797), 1, anon_sym_PLUS_EQ, - ACTIONS(6799), 1, anon_sym_DASH_EQ, - ACTIONS(6801), 1, anon_sym_LT_LT_EQ, - ACTIONS(6803), 1, anon_sym_GT_GT_EQ, - ACTIONS(6805), 1, anon_sym_AMP_EQ, - ACTIONS(6807), 1, anon_sym_CARET_EQ, - ACTIONS(6809), 1, anon_sym_PIPE_EQ, - ACTIONS(6811), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(6813), 1, - anon_sym_or, - ACTIONS(6815), 1, - anon_sym_and, - ACTIONS(6817), 1, anon_sym_bitor, - ACTIONS(6819), 1, - anon_sym_xor, - ACTIONS(6821), 1, anon_sym_bitand, - ACTIONS(6823), 1, anon_sym_not_eq, - ACTIONS(6827), 1, - anon_sym_DOT_STAR, - ACTIONS(6829), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(6834), 1, - anon_sym_COMMA, - ACTIONS(6836), 1, - anon_sym_RPAREN, - STATE(2189), 1, - sym__binary_fold_operator, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - STATE(9521), 1, - sym__fold_operator, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [76063] = 51, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [25970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6747), 1, - anon_sym_COMMA, - ACTIONS(6751), 1, + ACTIONS(5127), 18, anon_sym_DASH, - ACTIONS(6753), 1, anon_sym_PLUS, - ACTIONS(6755), 1, anon_sym_STAR, - ACTIONS(6757), 1, anon_sym_SLASH, - ACTIONS(6759), 1, anon_sym_PERCENT, - ACTIONS(6761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6763), 1, - anon_sym_AMP_AMP, - ACTIONS(6765), 1, anon_sym_PIPE, - ACTIONS(6767), 1, anon_sym_CARET, - ACTIONS(6769), 1, anon_sym_AMP, - ACTIONS(6771), 1, - anon_sym_EQ_EQ, - ACTIONS(6773), 1, - anon_sym_BANG_EQ, - ACTIONS(6775), 1, anon_sym_GT, - ACTIONS(6777), 1, - anon_sym_GT_EQ, - ACTIONS(6779), 1, anon_sym_LT_EQ, - ACTIONS(6781), 1, anon_sym_LT, - ACTIONS(6783), 1, anon_sym_LT_LT, - ACTIONS(6785), 1, anon_sym_GT_GT, - ACTIONS(6787), 1, anon_sym_EQ, - ACTIONS(6789), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5129), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(6791), 1, anon_sym_STAR_EQ, - ACTIONS(6793), 1, anon_sym_SLASH_EQ, - ACTIONS(6795), 1, anon_sym_PERCENT_EQ, - ACTIONS(6797), 1, anon_sym_PLUS_EQ, - ACTIONS(6799), 1, anon_sym_DASH_EQ, - ACTIONS(6801), 1, anon_sym_LT_LT_EQ, - ACTIONS(6803), 1, anon_sym_GT_GT_EQ, - ACTIONS(6805), 1, anon_sym_AMP_EQ, - ACTIONS(6807), 1, anon_sym_CARET_EQ, - ACTIONS(6809), 1, anon_sym_PIPE_EQ, - ACTIONS(6811), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(6813), 1, - anon_sym_or, - ACTIONS(6815), 1, - anon_sym_and, - ACTIONS(6817), 1, anon_sym_bitor, - ACTIONS(6819), 1, - anon_sym_xor, - ACTIONS(6821), 1, anon_sym_bitand, - ACTIONS(6823), 1, anon_sym_not_eq, - ACTIONS(6827), 1, - anon_sym_DOT_STAR, - ACTIONS(6829), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(6838), 1, - anon_sym_RPAREN, - STATE(2189), 1, - sym__binary_fold_operator, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - STATE(9521), 1, - sym__fold_operator, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [76219] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5547), 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(5545), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [76279] = 25, + [26036] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(6715), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6721), 1, - anon_sym_AMP, - ACTIONS(6723), 1, - anon_sym_bitand, - ACTIONS(6727), 1, - anon_sym_PIPE, - ACTIONS(6729), 1, - anon_sym_bitor, - ACTIONS(6731), 1, - anon_sym_AMP_AMP, - ACTIONS(6733), 1, - anon_sym_and, - ACTIONS(6739), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6743), 1, - anon_sym_or, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6436), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(6703), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6709), 2, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4913), 21, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6713), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6725), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6711), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6719), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6717), 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(6434), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4915), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -446011,177 +313832,150 @@ 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [76383] = 7, + [26104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6840), 1, - sym_identifier, - STATE(3961), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5527), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5529), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5147), 17, + ACTIONS(5123), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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(5145), 21, + ACTIONS(5125), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [76451] = 51, + sym_auto, + anon_sym_decltype, + [26170] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6751), 1, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4913), 21, anon_sym_DASH, - ACTIONS(6753), 1, anon_sym_PLUS, - ACTIONS(6755), 1, anon_sym_STAR, - ACTIONS(6757), 1, anon_sym_SLASH, - ACTIONS(6759), 1, anon_sym_PERCENT, - ACTIONS(6761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6763), 1, - anon_sym_AMP_AMP, - ACTIONS(6765), 1, anon_sym_PIPE, - ACTIONS(6767), 1, anon_sym_CARET, - ACTIONS(6769), 1, anon_sym_AMP, - ACTIONS(6771), 1, - anon_sym_EQ_EQ, - ACTIONS(6773), 1, - anon_sym_BANG_EQ, - ACTIONS(6775), 1, anon_sym_GT, - ACTIONS(6777), 1, anon_sym_GT_EQ, - ACTIONS(6779), 1, anon_sym_LT_EQ, - ACTIONS(6781), 1, anon_sym_LT, - ACTIONS(6783), 1, anon_sym_LT_LT, - ACTIONS(6785), 1, anon_sym_GT_GT, - ACTIONS(6787), 1, anon_sym_EQ, - ACTIONS(6789), 1, + anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4915), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(6791), 1, anon_sym_STAR_EQ, - ACTIONS(6793), 1, anon_sym_SLASH_EQ, - ACTIONS(6795), 1, anon_sym_PERCENT_EQ, - ACTIONS(6797), 1, anon_sym_PLUS_EQ, - ACTIONS(6799), 1, anon_sym_DASH_EQ, - ACTIONS(6801), 1, anon_sym_LT_LT_EQ, - ACTIONS(6803), 1, - anon_sym_GT_GT_EQ, - ACTIONS(6805), 1, anon_sym_AMP_EQ, - ACTIONS(6807), 1, anon_sym_CARET_EQ, - ACTIONS(6809), 1, anon_sym_PIPE_EQ, - ACTIONS(6811), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(6813), 1, - anon_sym_or, - ACTIONS(6815), 1, - anon_sym_and, - ACTIONS(6817), 1, anon_sym_bitor, - ACTIONS(6819), 1, - anon_sym_xor, - ACTIONS(6821), 1, anon_sym_bitand, - ACTIONS(6823), 1, anon_sym_not_eq, - ACTIONS(6827), 1, - anon_sym_DOT_STAR, - ACTIONS(6829), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(6834), 1, - anon_sym_COMMA, - ACTIONS(6842), 1, - anon_sym_RPAREN, - STATE(2189), 1, - sym__binary_fold_operator, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - STATE(9521), 1, - sym__fold_operator, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [76607] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [26238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5449), 16, + ACTIONS(5119), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446196,9 +313990,11 @@ static const uint16_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(5451), 36, + ACTIONS(5121), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -446208,9 +314004,13 @@ 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_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -446222,25 +314022,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [76667] = 3, + [26304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6454), 26, + ACTIONS(5115), 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(5117), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -446248,7 +314068,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -446260,12 +314085,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6456), 26, + sym_auto, + anon_sym_decltype, + [26370] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5647), 1, + anon_sym_LT, + STATE(2618), 1, + sym_template_argument_list, + ACTIONS(4564), 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(4559), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [26442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4587), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446275,91 +314177,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_COLON, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - [76727] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, anon_sym_DOT, - ACTIONS(6715), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6721), 1, - anon_sym_AMP, - ACTIONS(6723), 1, - anon_sym_bitand, - ACTIONS(6727), 1, - anon_sym_PIPE, - ACTIONS(6729), 1, - anon_sym_bitor, - ACTIONS(6731), 1, - anon_sym_AMP_AMP, - ACTIONS(6733), 1, - anon_sym_and, - ACTIONS(6737), 1, + ACTIONS(4594), 37, anon_sym_DOT_DOT_DOT, - ACTIONS(6739), 1, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(6741), 1, - anon_sym_QMARK, - ACTIONS(6743), 1, - anon_sym_or, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6494), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(6703), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6709), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6713), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6725), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6711), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6719), 3, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6717), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6492), 14, - anon_sym_COMMA, + 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, @@ -446372,70 +314214,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [76835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5375), 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(5373), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_LT_EQ_GT, + anon_sym_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_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [76895] = 4, + anon_sym_GT2, + [26508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 1, - sym_literal_suffix, - ACTIONS(4286), 25, + ACTIONS(5090), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446449,21 +314244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4278), 26, + ACTIONS(5092), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -446471,7 +314260,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -446483,76 +314277,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [76957] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(6715), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6721), 1, - anon_sym_AMP, - ACTIONS(6723), 1, - anon_sym_bitand, - ACTIONS(6727), 1, - anon_sym_PIPE, - ACTIONS(6729), 1, anon_sym_bitor, - ACTIONS(6731), 1, - anon_sym_AMP_AMP, - ACTIONS(6733), 1, - anon_sym_and, - ACTIONS(6739), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6743), 1, - anon_sym_or, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6498), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(6703), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6709), 2, + sym_auto, + anon_sym_decltype, + [26574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5111), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6713), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6725), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6711), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6719), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6717), 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(6496), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5113), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -446560,17 +314336,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [77061] = 3, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [26640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 16, + ACTIONS(5098), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446585,9 +314371,11 @@ static const uint16_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(5435), 36, + ACTIONS(5100), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -446597,9 +314385,13 @@ 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_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -446611,23 +314403,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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [77121] = 3, + [26706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5400), 16, + ACTIONS(5090), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446642,9 +314434,11 @@ static const uint16_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(5402), 36, + ACTIONS(5092), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -446654,9 +314448,13 @@ 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_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -446668,23 +314466,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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [77181] = 3, + [26772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6041), 20, + ACTIONS(5671), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446704,8 +314502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6039), 32, + ACTIONS(5669), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -446715,7 +314512,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -446737,15 +314540,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, - [77241] = 5, + anon_sym_DASH_GT, + anon_sym_try, + [26838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6086), 1, - anon_sym_LBRACK, - STATE(4106), 1, - sym_new_declarator, - ACTIONS(6096), 20, + ACTIONS(4856), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446761,12 +314561,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6094), 30, + ACTIONS(4858), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -446774,7 +314575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -446796,75 +314600,60 @@ 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, - [77305] = 27, + [26904] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(2152), 1, + anon_sym_LBRACE, + ACTIONS(5673), 1, anon_sym_LPAREN2, - ACTIONS(6701), 1, + ACTIONS(5675), 1, anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(6715), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6721), 1, - anon_sym_AMP, - ACTIONS(6723), 1, - anon_sym_bitand, - ACTIONS(6727), 1, - anon_sym_PIPE, - ACTIONS(6729), 1, - anon_sym_bitor, - ACTIONS(6731), 1, - anon_sym_AMP_AMP, - ACTIONS(6733), 1, - anon_sym_and, - ACTIONS(6737), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6739), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6741), 1, - anon_sym_QMARK, - ACTIONS(6743), 1, - anon_sym_or, - STATE(4336), 1, + ACTIONS(5677), 1, + sym_auto, + ACTIONS(5679), 1, + anon_sym_decltype, + STATE(2897), 1, + sym_new_declarator, + STATE(2945), 1, + sym_decltype_auto, + STATE(3376), 2, sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6478), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(6703), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6709), 2, + sym_initializer_list, + ACTIONS(5366), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6713), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6725), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6711), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6719), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6717), 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(6476), 14, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5362), 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, @@ -446877,14 +314666,150 @@ 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, + [26985] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5467), 1, + anon_sym___attribute__, + ACTIONS(5681), 1, + anon_sym_LBRACE, + STATE(2610), 1, + sym_enumerator_list, + STATE(2836), 1, + sym_attribute_specifier, + ACTIONS(5434), 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(5432), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [27058] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3757), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - [77413] = 4, + ACTIONS(3755), 43, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_requires, + [27123] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 2, + ACTIONS(4594), 2, anon_sym_COLON_COLON, anon_sym_LBRACE, - ACTIONS(4899), 20, + ACTIONS(4596), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446894,26 +314819,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4904), 30, + ACTIONS(4589), 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___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -446921,6 +314851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -446935,11 +314866,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [77475] = 3, + [27190] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5468), 16, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5683), 1, + anon_sym_LT, + STATE(2442), 1, + sym_template_argument_list, + ACTIONS(4559), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446950,13 +314886,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5470), 36, + ACTIONS(4564), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -446992,11 +314928,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_DASH_GT_STAR, - [77535] = 3, + [27261] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5604), 16, + ACTIONS(2152), 1, + anon_sym_LBRACE, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(5675), 1, + anon_sym_LBRACK, + ACTIONS(5677), 1, + sym_auto, + ACTIONS(5679), 1, + anon_sym_decltype, + STATE(2923), 1, + sym_new_declarator, + STATE(2945), 1, + sym_decltype_auto, + STATE(3409), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5384), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447006,26 +314961,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(5606), 36, + ACTIONS(5382), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -447033,106 +314986,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [77595] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(4322), 1, - anon_sym_LPAREN2, - ACTIONS(4324), 1, - anon_sym_STAR, - ACTIONS(4326), 1, - anon_sym_AMP_AMP, - ACTIONS(4328), 1, - anon_sym_AMP, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(5816), 1, - anon_sym_LBRACK, - ACTIONS(5852), 1, - anon_sym_COLON_COLON, - ACTIONS(6663), 1, - anon_sym_RPAREN, - STATE(4706), 1, - sym_parameter_list, - STATE(6525), 1, - sym__scope_resolution, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7212), 1, - sym__declarator, - STATE(7381), 1, - sym__abstract_declarator, - STATE(9661), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [77699] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [27342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 13, + ACTIONS(3753), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -447145,8 +315017,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(5549), 39, + ACTIONS(3751), 43, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -447173,342 +315046,492 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, sym_identifier, - sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, + anon_sym_explicit, anon_sym_template, anon_sym_operator, anon_sym_try, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_requires, - [77759] = 25, + [27407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(4583), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4585), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6701), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(6715), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(6721), 1, - anon_sym_AMP, - ACTIONS(6723), 1, - anon_sym_bitand, - ACTIONS(6727), 1, - anon_sym_PIPE, - ACTIONS(6729), 1, - anon_sym_bitor, - ACTIONS(6731), 1, - anon_sym_AMP_AMP, - ACTIONS(6733), 1, - anon_sym_and, - ACTIONS(6739), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6743), 1, anon_sym_or, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6402), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(6703), 2, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6709), 2, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [27472] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4547), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6713), 2, - anon_sym_LT_LT, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_GT_GT, - ACTIONS(6725), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6711), 3, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4549), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6719), 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___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(6717), 4, + 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, + [27537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4555), 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, - ACTIONS(6400), 16, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4557), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + 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, - [77863] = 51, + anon_sym_requires, + [27602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6751), 1, + ACTIONS(4543), 13, anon_sym_DASH, - ACTIONS(6753), 1, anon_sym_PLUS, - ACTIONS(6755), 1, - anon_sym_STAR, - ACTIONS(6757), 1, anon_sym_SLASH, - ACTIONS(6759), 1, - anon_sym_PERCENT, - ACTIONS(6761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6763), 1, - anon_sym_AMP_AMP, - ACTIONS(6765), 1, anon_sym_PIPE, - ACTIONS(6767), 1, - anon_sym_CARET, - ACTIONS(6769), 1, anon_sym_AMP, - ACTIONS(6771), 1, - anon_sym_EQ_EQ, - ACTIONS(6773), 1, - anon_sym_BANG_EQ, - ACTIONS(6775), 1, anon_sym_GT, - ACTIONS(6777), 1, anon_sym_GT_EQ, - ACTIONS(6779), 1, anon_sym_LT_EQ, - ACTIONS(6781), 1, anon_sym_LT, - ACTIONS(6783), 1, - anon_sym_LT_LT, - ACTIONS(6785), 1, anon_sym_GT_GT, - ACTIONS(6787), 1, - anon_sym_EQ, - ACTIONS(6789), 1, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4545), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - ACTIONS(6791), 1, - anon_sym_STAR_EQ, - ACTIONS(6793), 1, - anon_sym_SLASH_EQ, - ACTIONS(6795), 1, - anon_sym_PERCENT_EQ, - ACTIONS(6797), 1, - anon_sym_PLUS_EQ, - ACTIONS(6799), 1, - anon_sym_DASH_EQ, - ACTIONS(6801), 1, - anon_sym_LT_LT_EQ, - ACTIONS(6803), 1, - anon_sym_GT_GT_EQ, - ACTIONS(6805), 1, - anon_sym_AMP_EQ, - ACTIONS(6807), 1, - anon_sym_CARET_EQ, - ACTIONS(6809), 1, - anon_sym_PIPE_EQ, - ACTIONS(6811), 1, anon_sym_LT_EQ_GT, - ACTIONS(6813), 1, anon_sym_or, - ACTIONS(6815), 1, anon_sym_and, - ACTIONS(6817), 1, anon_sym_bitor, - ACTIONS(6819), 1, anon_sym_xor, - ACTIONS(6821), 1, anon_sym_bitand, - ACTIONS(6823), 1, anon_sym_not_eq, - ACTIONS(6827), 1, - anon_sym_DOT_STAR, - ACTIONS(6829), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(6834), 1, - anon_sym_COMMA, - ACTIONS(6844), 1, - anon_sym_RPAREN, - STATE(2189), 1, - sym__binary_fold_operator, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - STATE(9521), 1, - sym__fold_operator, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [78019] = 51, + 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, + [27667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6747), 1, - anon_sym_COMMA, - ACTIONS(6751), 1, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4979), 13, anon_sym_DASH, - ACTIONS(6753), 1, anon_sym_PLUS, - ACTIONS(6755), 1, - anon_sym_STAR, - ACTIONS(6757), 1, anon_sym_SLASH, - ACTIONS(6759), 1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4981), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6761), 1, anon_sym_PIPE_PIPE, - ACTIONS(6763), 1, anon_sym_AMP_AMP, - ACTIONS(6765), 1, - anon_sym_PIPE, - ACTIONS(6767), 1, anon_sym_CARET, - ACTIONS(6769), 1, - anon_sym_AMP, - ACTIONS(6771), 1, anon_sym_EQ_EQ, - ACTIONS(6773), 1, anon_sym_BANG_EQ, - ACTIONS(6775), 1, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [27734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4576), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, - ACTIONS(6777), 1, anon_sym_GT_EQ, - ACTIONS(6779), 1, anon_sym_LT_EQ, - ACTIONS(6781), 1, anon_sym_LT, - ACTIONS(6783), 1, - anon_sym_LT_LT, - ACTIONS(6785), 1, anon_sym_GT_GT, - ACTIONS(6787), 1, - anon_sym_EQ, - ACTIONS(6789), 1, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4578), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - ACTIONS(6791), 1, - anon_sym_STAR_EQ, - ACTIONS(6793), 1, - anon_sym_SLASH_EQ, - ACTIONS(6795), 1, - anon_sym_PERCENT_EQ, - ACTIONS(6797), 1, - anon_sym_PLUS_EQ, - ACTIONS(6799), 1, - anon_sym_DASH_EQ, - ACTIONS(6801), 1, - anon_sym_LT_LT_EQ, - ACTIONS(6803), 1, - anon_sym_GT_GT_EQ, - ACTIONS(6805), 1, - anon_sym_AMP_EQ, - ACTIONS(6807), 1, - anon_sym_CARET_EQ, - ACTIONS(6809), 1, - anon_sym_PIPE_EQ, - ACTIONS(6811), 1, anon_sym_LT_EQ_GT, - ACTIONS(6813), 1, anon_sym_or, - ACTIONS(6815), 1, anon_sym_and, - ACTIONS(6817), 1, anon_sym_bitor, - ACTIONS(6819), 1, anon_sym_xor, - ACTIONS(6821), 1, anon_sym_bitand, - ACTIONS(6823), 1, anon_sym_not_eq, - ACTIONS(6827), 1, - anon_sym_DOT_STAR, - ACTIONS(6829), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(6846), 1, - anon_sym_RPAREN, - STATE(2189), 1, - sym__binary_fold_operator, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - STATE(9521), 1, - sym__fold_operator, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [78175] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [27799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 13, + ACTIONS(4539), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4541), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_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_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, - ACTIONS(5484), 39, + anon_sym_requires, + [27864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4551), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4553), 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_extern, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -447519,53 +315542,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [78235] = 3, + [27929] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 13, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + STATE(1726), 1, + sym_template_argument_list, + ACTIONS(5532), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(5530), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [27998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4587), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4594), 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_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5557), 39, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -447576,53 +315668,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [78295] = 3, + [28063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 13, + ACTIONS(4856), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4858), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5492), 39, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -447633,23 +315730,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [78355] = 3, + [28128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 20, + ACTIONS(4913), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447659,28 +315761,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5198), 32, + ACTIONS(4915), 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_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -447688,7 +315791,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -447702,68 +315804,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, - [78415] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [28193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 20, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4913), 13, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4872), 32, + ACTIONS(4915), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [78475] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [28260] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 20, + ACTIONS(2152), 1, + anon_sym_LBRACE, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(5675), 1, + anon_sym_LBRACK, + ACTIONS(5677), 1, + sym_auto, + ACTIONS(5679), 1, + anon_sym_decltype, + STATE(2888), 1, + sym_new_declarator, + STATE(2945), 1, + sym_decltype_auto, + STATE(3369), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5388), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447773,28 +315903,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(4872), 32, + ACTIONS(5386), 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, @@ -447802,7 +315928,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -447816,68 +315941,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, - [78535] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [28341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 20, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4913), 13, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4915), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym_DOT, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(4872), 32, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [28408] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5467), 1, + anon_sym___attribute__, + ACTIONS(5681), 1, + anon_sym_LBRACE, + STATE(2581), 1, + sym_enumerator_list, + STATE(2787), 1, + sym_attribute_specifier, + ACTIONS(5443), 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(5441), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [78595] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [28481] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 20, + ACTIONS(5408), 1, + anon_sym___attribute__, + ACTIONS(5542), 1, + anon_sym_LBRACE, + STATE(2589), 1, + sym_enumerator_list, + STATE(2851), 1, + sym_attribute_specifier, + ACTIONS(5443), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447891,14 +316097,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(4872), 32, + ACTIONS(5441), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -447908,7 +316113,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, @@ -447930,11 +316135,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [78655] = 3, + [28554] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 20, + ACTIONS(2152), 1, + anon_sym_LBRACE, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(5675), 1, + anon_sym_LBRACK, + ACTIONS(5677), 1, + sym_auto, + ACTIONS(5679), 1, + anon_sym_decltype, + STATE(2882), 1, + sym_new_declarator, + STATE(2945), 1, + sym_decltype_auto, + STATE(3357), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5406), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447944,28 +316168,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(4872), 32, + ACTIONS(5404), 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, @@ -447973,7 +316193,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -447987,11 +316206,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, - [78715] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [28635] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5345), 16, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5686), 1, + anon_sym_LT, + STATE(2442), 1, + sym_template_argument_list, + ACTIONS(5324), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448002,13 +316228,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5347), 36, + ACTIONS(4085), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -448044,11 +316270,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_DASH_GT_STAR, - [78775] = 3, + [28706] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5396), 16, + ACTIONS(5408), 1, + anon_sym___attribute__, + ACTIONS(5542), 1, + anon_sym_LBRACE, + STATE(2547), 1, + sym_enumerator_list, + STATE(2832), 1, + sym_attribute_specifier, + ACTIONS(5434), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448063,9 +316299,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(5398), 36, + ACTIONS(5432), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -448075,8 +316314,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, @@ -448089,11 +316326,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -448102,12 +316339,14 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [78835] = 4, + [28779] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5685), 1, - sym_literal_suffix, - ACTIONS(4286), 25, + ACTIONS(5368), 1, + anon_sym_LBRACK, + STATE(2587), 1, + sym_new_declarator, + ACTIONS(5690), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448122,18 +316361,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4278), 26, + ACTIONS(5688), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -448143,7 +316375,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -448155,45 +316392,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [78897] = 3, + anon_sym_DASH_GT, + [28848] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5498), 13, + ACTIONS(5467), 1, + anon_sym___attribute__, + STATE(2815), 1, + sym_attribute_specifier, + ACTIONS(5540), 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(5538), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5496), 39, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -448204,30 +316448,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [78957] = 6, + [28916] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5254), 1, - anon_sym_LBRACK, - ACTIONS(5248), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(4286), 19, + ACTIONS(5546), 1, + anon_sym___attribute__, + ACTIONS(5692), 1, + anon_sym_LBRACE, + ACTIONS(5694), 1, + anon_sym_COLON, + STATE(2788), 1, + sym__enum_base_clause, + STATE(2969), 1, + sym_enumerator_list, + STATE(3268), 1, + sym_attribute_specifier, + ACTIONS(5465), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448242,19 +316496,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4278), 29, + ACTIONS(5463), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -448266,21 +316520,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [79023] = 3, + [28992] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 20, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5698), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448294,24 +316566,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(4872), 32, + ACTIONS(5696), 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_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -448330,41 +316601,92 @@ 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, - [79083] = 7, + [29070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6848), 1, + ACTIONS(4585), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4583), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - ACTIONS(6852), 1, - sym_primitive_type, - STATE(3267), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6850), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5351), 10, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [29134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4549), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5353), 35, + ACTIONS(4547), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -448385,26 +316707,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, + anon_sym_template, + anon_sym_operator, anon_sym_try, anon_sym_requires, - [79151] = 3, + [29198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 13, + ACTIONS(4557), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, @@ -448412,7 +316741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5504), 39, + ACTIONS(4555), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -448439,6 +316768,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, sym_identifier, @@ -448452,10 +316784,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [79211] = 3, + [29262] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1714), 1, + sym_string_literal, + ACTIONS(5712), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5710), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5708), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [29330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5714), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5716), 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, + [29394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5720), 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(5718), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [29458] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6204), 20, + ACTIONS(5445), 1, + anon_sym___attribute__, + ACTIONS(5620), 1, + anon_sym_LBRACE, + STATE(2775), 1, + sym_enumerator_list, + STATE(2980), 1, + sym_attribute_specifier, + ACTIONS(5443), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448465,18 +316990,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5441), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [29530] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5408), 1, + anon_sym___attribute__, + STATE(2846), 1, + sym_attribute_specifier, + ACTIONS(5473), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(6202), 32, + ACTIONS(5471), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -448486,7 +317071,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -448508,42 +317094,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [79271] = 7, + [29598] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6852), 1, - sym_primitive_type, - ACTIONS(6854), 1, - sym_identifier, - STATE(3267), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6850), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5351), 13, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5724), 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(5722), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_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, + [29676] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5467), 1, + anon_sym___attribute__, + STATE(2803), 1, + sym_attribute_specifier, + ACTIONS(5524), 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(5522), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [29744] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1715), 1, + sym_string_literal, + ACTIONS(5712), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5710), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5353), 32, + ACTIONS(5708), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -448564,30 +317277,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, - [79339] = 3, + [29812] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5427), 13, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4981), 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(5425), 39, + ACTIONS(4979), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -448614,6 +317337,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, sym_identifier, @@ -448627,91 +317353,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [79399] = 8, + [29878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4308), 1, - anon_sym_EQ, - ACTIONS(4920), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5248), 1, - anon_sym_LPAREN2, - ACTIONS(5254), 1, - anon_sym_LBRACK, - ACTIONS(4312), 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(4286), 17, + ACTIONS(5726), 28, anon_sym_DASH, anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5728), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4278), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LBRACK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [79469] = 3, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [29942] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5242), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(1717), 1, + sym_string_literal, + ACTIONS(5712), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5710), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - ACTIONS(5240), 40, + ACTIONS(5708), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -448732,37 +317463,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [79529] = 9, + [30010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(4856), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4858), 28, anon_sym_LPAREN2, - ACTIONS(6701), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6177), 19, + 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, + [30074] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5734), 1, + anon_sym_LT, + STATE(2503), 1, + sym_template_argument_list, + ACTIONS(5732), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448772,23 +317555,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6175), 26, + anon_sym_DOT, + ACTIONS(5730), 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_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -448796,6 +317586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -448808,173 +317599,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_GT2, - [79601] = 51, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6747), 1, - anon_sym_COMMA, - ACTIONS(6751), 1, - anon_sym_DASH, - ACTIONS(6753), 1, - anon_sym_PLUS, - ACTIONS(6755), 1, - anon_sym_STAR, - ACTIONS(6757), 1, - anon_sym_SLASH, - ACTIONS(6759), 1, - anon_sym_PERCENT, - ACTIONS(6761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6763), 1, - anon_sym_AMP_AMP, - ACTIONS(6765), 1, - anon_sym_PIPE, - ACTIONS(6767), 1, - anon_sym_CARET, - ACTIONS(6769), 1, - anon_sym_AMP, - ACTIONS(6771), 1, - anon_sym_EQ_EQ, - ACTIONS(6773), 1, - anon_sym_BANG_EQ, - ACTIONS(6775), 1, - anon_sym_GT, - ACTIONS(6777), 1, - anon_sym_GT_EQ, - ACTIONS(6779), 1, - anon_sym_LT_EQ, - ACTIONS(6781), 1, - anon_sym_LT, - ACTIONS(6783), 1, - anon_sym_LT_LT, - ACTIONS(6785), 1, - anon_sym_GT_GT, - ACTIONS(6787), 1, - anon_sym_EQ, - ACTIONS(6789), 1, - anon_sym_QMARK, - ACTIONS(6791), 1, - anon_sym_STAR_EQ, - ACTIONS(6793), 1, - anon_sym_SLASH_EQ, - ACTIONS(6795), 1, - anon_sym_PERCENT_EQ, - ACTIONS(6797), 1, - anon_sym_PLUS_EQ, - ACTIONS(6799), 1, - anon_sym_DASH_EQ, - ACTIONS(6801), 1, - anon_sym_LT_LT_EQ, - ACTIONS(6803), 1, - anon_sym_GT_GT_EQ, - ACTIONS(6805), 1, - anon_sym_AMP_EQ, - ACTIONS(6807), 1, - anon_sym_CARET_EQ, - ACTIONS(6809), 1, - anon_sym_PIPE_EQ, - ACTIONS(6811), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6813), 1, - anon_sym_or, - ACTIONS(6815), 1, - anon_sym_and, - ACTIONS(6817), 1, - anon_sym_bitor, - ACTIONS(6819), 1, - anon_sym_xor, - ACTIONS(6821), 1, - anon_sym_bitand, - ACTIONS(6823), 1, - anon_sym_not_eq, - ACTIONS(6827), 1, anon_sym_DOT_STAR, - ACTIONS(6829), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(6857), 1, - anon_sym_RPAREN, - STATE(2189), 1, - sym__binary_fold_operator, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - STATE(9521), 1, - sym__fold_operator, - ACTIONS(6601), 2, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6825), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [79757] = 3, + [30142] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 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(5480), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(5408), 1, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [79817] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6068), 20, + STATE(2850), 1, + sym_attribute_specifier, + ACTIONS(5479), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448988,14 +317622,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(6066), 32, + ACTIONS(5477), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -449005,7 +317638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -449027,15 +317661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [79877] = 5, + [30210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6831), 1, - anon_sym_LT, - STATE(3732), 1, - sym_template_argument_list, - ACTIONS(6189), 18, + ACTIONS(5739), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449046,6 +317678,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, @@ -449053,8 +317686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6187), 32, + ACTIONS(5737), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -449064,7 +317696,13 @@ 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_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -449086,11 +317724,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, - [79941] = 3, + anon_sym_DASH_GT, + [30274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6080), 20, + ACTIONS(4566), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449110,8 +317748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6078), 32, + ACTIONS(4571), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -449121,7 +317758,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -449143,25 +317784,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [80001] = 3, + anon_sym_DASH_GT, + anon_sym_try, + [30338] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 13, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4915), 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(5508), 39, + ACTIONS(4913), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -449188,6 +317832,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, sym_identifier, @@ -449201,53 +317848,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [80061] = 3, + [30404] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 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(5555), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4915), 27, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_AMP, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + 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, @@ -449258,67 +317881,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [80121] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5371), 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(5369), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(4913), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, anon_sym_asm, anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [80181] = 3, + sym_this, + [30470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5325), 16, + ACTIONS(4566), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449332,10 +317927,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(5327), 36, + ACTIONS(4571), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -449345,9 +317943,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON_COLON, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -449359,23 +317959,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, - sym_auto, + anon_sym_DASH_GT, + anon_sym_try, + [30534] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4915), 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(4913), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [80241] = 3, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [30600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5608), 16, + ACTIONS(4566), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449389,10 +318050,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(5610), 36, + ACTIONS(4571), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -449402,9 +318066,11 @@ 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_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -449416,23 +318082,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [80301] = 3, + anon_sym_DASH_GT, + anon_sym_try, + [30664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 20, + ACTIONS(4566), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449452,8 +318117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3990), 32, + ACTIONS(4571), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -449463,7 +318127,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -449485,90 +318153,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, - [80361] = 25, + anon_sym_DASH_GT, + anon_sym_try, + [30728] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4915), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(6715), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6721), 1, - anon_sym_AMP, - ACTIONS(6723), 1, - anon_sym_bitand, - ACTIONS(6727), 1, - anon_sym_PIPE, - ACTIONS(6729), 1, - anon_sym_bitor, - ACTIONS(6731), 1, - anon_sym_AMP_AMP, - ACTIONS(6733), 1, - anon_sym_and, - ACTIONS(6739), 1, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_PIPE_PIPE, - ACTIONS(6743), 1, - anon_sym_or, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6370), 2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(6703), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6709), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6713), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6725), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6711), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6719), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6717), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6368), 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, - [80465] = 3, + ACTIONS(4913), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [30794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6117), 20, + ACTIONS(5743), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449588,8 +318240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6115), 32, + ACTIONS(5741), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -449599,7 +318250,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -449621,11 +318276,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, - [80525] = 3, + anon_sym_DASH_GT, + anon_sym_try, + [30858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6208), 20, + ACTIONS(5747), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449639,14 +318295,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6206), 32, + ACTIONS(5745), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -449656,7 +318310,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -449678,27 +318338,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, - [80585] = 5, + anon_sym_DASH_GT, + [30922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4308), 1, - anon_sym_EQ, - ACTIONS(4312), 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(4286), 17, + ACTIONS(4566), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449712,11 +318356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4278), 21, + ACTIONS(4571), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -449727,9 +318373,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -449738,16 +318399,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [80649] = 3, + anon_sym_try, + [30986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5431), 13, + ACTIONS(4915), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, @@ -449755,7 +318418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5429), 39, + ACTIONS(4913), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -449782,6 +318445,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, sym_identifier, @@ -449795,28 +318461,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [80709] = 3, + [31050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5600), 17, + ACTIONS(5749), 28, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5751), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + 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, + [31114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4545), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4543), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - sym_literal_suffix, - ACTIONS(5602), 35, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [31178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4578), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4576), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [31242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5755), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -449832,36 +318663,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [80769] = 3, + ACTIONS(5753), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [31306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5567), 13, + ACTIONS(4541), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, @@ -449869,7 +318723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5565), 39, + ACTIONS(4539), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -449896,6 +318750,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, sym_identifier, @@ -449909,57 +318766,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [80829] = 14, + [31370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(6715), 1, - anon_sym_LT_EQ_GT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6703), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6709), 2, + ACTIONS(4566), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6713), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6711), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6378), 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(6376), 23, + anon_sym_DOT, + ACTIONS(4571), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -449967,36 +318811,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_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, - [80911] = 10, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_try, + [31434] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6701), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6705), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(4336), 1, + STATE(2697), 1, sym_argument_list, - STATE(4342), 1, + STATE(2703), 1, sym_subscript_argument_list, - ACTIONS(6703), 2, + ACTIONS(5702), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6167), 19, + ACTIONS(5759), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450006,23 +318856,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(6165), 24, + ACTIONS(5757), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -450030,6 +318884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -450040,11 +318895,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [80985] = 3, + [31512] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6151), 19, + ACTIONS(5408), 1, + anon_sym___attribute__, + STATE(2865), 1, + sym_attribute_specifier, + ACTIONS(5540), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450064,7 +318922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6149), 33, + ACTIONS(5538), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -450097,31 +318955,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [81045] = 3, + [31580] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5323), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(1713), 1, + sym_string_literal, + ACTIONS(5712), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5710), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5321), 39, + ACTIONS(5708), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -450142,25 +319007,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [81105] = 4, + [31648] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6859), 1, + ACTIONS(5765), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6208), 20, + ACTIONS(5763), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450180,8 +319046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6206), 31, + ACTIONS(5761), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -450191,6 +319056,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -450212,17 +319082,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, - [81167] = 6, + anon_sym_DASH_GT, + [31714] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6340), 1, - sym_auto, - ACTIONS(6342), 1, - anon_sym_decltype, - STATE(4110), 1, - sym_decltype_auto, - ACTIONS(5190), 16, + ACTIONS(5408), 1, + anon_sym___attribute__, + STATE(2863), 1, + sym_attribute_specifier, + ACTIONS(5504), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450237,9 +319105,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(5192), 33, + ACTIONS(5502), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -450262,102 +319133,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [81233] = 7, + [31782] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6861), 1, - sym_identifier, - STATE(3961), 3, + STATE(1716), 1, sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6864), 5, + ACTIONS(5712), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(6867), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5120), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5118), 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, - [81301] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5580), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5710), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5578), 39, + ACTIONS(5708), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -450378,29 +319195,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [81361] = 3, + [31850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5435), 13, + ACTIONS(4858), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, @@ -450408,7 +319227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5433), 39, + ACTIONS(4856), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -450435,6 +319254,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, sym_identifier, @@ -450448,145 +319270,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [81421] = 51, + [31914] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6747), 1, - anon_sym_COMMA, - ACTIONS(6751), 1, + ACTIONS(5445), 1, + anon_sym___attribute__, + ACTIONS(5620), 1, + anon_sym_LBRACE, + STATE(2751), 1, + sym_enumerator_list, + STATE(2958), 1, + sym_attribute_specifier, + ACTIONS(5434), 20, anon_sym_DASH, - ACTIONS(6753), 1, anon_sym_PLUS, - ACTIONS(6755), 1, anon_sym_STAR, - ACTIONS(6757), 1, anon_sym_SLASH, - ACTIONS(6759), 1, anon_sym_PERCENT, - ACTIONS(6761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6763), 1, - anon_sym_AMP_AMP, - ACTIONS(6765), 1, anon_sym_PIPE, - ACTIONS(6767), 1, anon_sym_CARET, - ACTIONS(6769), 1, anon_sym_AMP, - ACTIONS(6771), 1, - anon_sym_EQ_EQ, - ACTIONS(6773), 1, - anon_sym_BANG_EQ, - ACTIONS(6775), 1, anon_sym_GT, - ACTIONS(6777), 1, anon_sym_GT_EQ, - ACTIONS(6779), 1, anon_sym_LT_EQ, - ACTIONS(6781), 1, anon_sym_LT, - ACTIONS(6783), 1, anon_sym_LT_LT, - ACTIONS(6785), 1, anon_sym_GT_GT, - ACTIONS(6787), 1, anon_sym_EQ, - ACTIONS(6789), 1, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5432), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(6791), 1, anon_sym_STAR_EQ, - ACTIONS(6793), 1, anon_sym_SLASH_EQ, - ACTIONS(6795), 1, anon_sym_PERCENT_EQ, - ACTIONS(6797), 1, anon_sym_PLUS_EQ, - ACTIONS(6799), 1, anon_sym_DASH_EQ, - ACTIONS(6801), 1, anon_sym_LT_LT_EQ, - ACTIONS(6803), 1, - anon_sym_GT_GT_EQ, - ACTIONS(6805), 1, anon_sym_AMP_EQ, - ACTIONS(6807), 1, anon_sym_CARET_EQ, - ACTIONS(6809), 1, anon_sym_PIPE_EQ, - ACTIONS(6811), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(6813), 1, - anon_sym_or, - ACTIONS(6815), 1, - anon_sym_and, - ACTIONS(6817), 1, anon_sym_bitor, - ACTIONS(6819), 1, - anon_sym_xor, - ACTIONS(6821), 1, anon_sym_bitand, - ACTIONS(6823), 1, anon_sym_not_eq, - ACTIONS(6827), 1, - anon_sym_DOT_STAR, - ACTIONS(6829), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(6870), 1, - anon_sym_RPAREN, - STATE(2189), 1, - sym__binary_fold_operator, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - STATE(9521), 1, - sym__fold_operator, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [81577] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [31986] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5584), 13, + ACTIONS(5467), 1, + anon_sym___attribute__, + STATE(2831), 1, + sym_attribute_specifier, + ACTIONS(5494), 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(5492), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5582), 39, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -450597,23 +319380,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [81637] = 3, + [32054] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6346), 19, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + STATE(1726), 1, + sym_template_argument_list, + ACTIONS(5532), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450623,17 +319415,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6344), 33, + ACTIONS(5530), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -450641,10 +319434,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -450652,7 +319444,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -450667,10 +319458,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [81697] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [32122] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4583), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4585), 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, + [32186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4547), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4549), 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, + [32250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4555), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4557), 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, + [32314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3984), 20, + ACTIONS(5769), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450690,8 +319667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3986), 32, + ACTIONS(5767), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -450701,7 +319677,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -450723,41 +319704,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [81757] = 3, + anon_sym_DASH_GT, + [32378] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5606), 13, + ACTIONS(5467), 1, + anon_sym___attribute__, + STATE(2843), 1, + sym_attribute_specifier, + ACTIONS(5498), 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(5496), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5604), 39, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -450768,86 +319750,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [81817] = 3, + [32446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5443), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4543), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4545), 28, anon_sym_LPAREN2, + anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP_AMP, + anon_sym_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5441), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + 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, + [32510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4576), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, anon_sym_asm, anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [81877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6874), 25, + sym_this, + ACTIONS(4578), 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, @@ -450867,7 +319890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(6872), 27, + [32574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 28, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, @@ -450889,73 +319915,169 @@ static const uint16_t ts_small_parse_table[] = { 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, - [81937] = 3, + ACTIONS(4541), 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, + [32638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4551), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4553), 28, anon_sym_LPAREN2, + anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP_AMP, + anon_sym_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5488), 39, + 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, + [32702] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4979), 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_extern, + 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(4981), 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___declspec, - anon_sym___based, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_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_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [81997] = 3, + anon_sym_DASH_GT_STAR, + [32768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6049), 20, + ACTIONS(5773), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450969,14 +320091,145 @@ 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(5771), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [32832] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5777), 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(5775), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_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, + [32908] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5408), 1, + anon_sym___attribute__, + STATE(2854), 1, + sym_attribute_specifier, + ACTIONS(5498), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(6047), 32, + ACTIONS(5496), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -450986,7 +320239,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -451008,81 +320262,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [82057] = 3, + [32976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5439), 13, + ACTIONS(4856), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4858), 39, 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___attribute__, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5437), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_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_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [82117] = 9, + anon_sym_DASH_GT_STAR, + [33040] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6125), 19, + ACTIONS(5546), 1, + anon_sym___attribute__, + ACTIONS(5692), 1, + anon_sym_LBRACE, + ACTIONS(5694), 1, + anon_sym_COLON, + STATE(2784), 1, + sym__enum_base_clause, + STATE(2935), 1, + sym_enumerator_list, + STATE(3208), 1, + sym_attribute_specifier, + ACTIONS(5451), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -451092,23 +320351,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(6123), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5449), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -451116,23 +320376,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_GT2, - [82189] = 3, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [33116] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6053), 20, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4913), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -451146,14 +320412,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_COLON, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6051), 32, + ACTIONS(4915), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -451163,7 +320426,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -451175,51 +320440,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_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, - [82249] = 3, + [33182] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 13, + ACTIONS(5467), 1, + anon_sym___attribute__, + STATE(2844), 1, + sym_attribute_specifier, + ACTIONS(5504), 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(5502), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5388), 39, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -451230,53 +320500,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [82309] = 3, + [33250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 13, + ACTIONS(4913), 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(4915), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5512), 39, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -451287,23 +320560,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [82369] = 3, + [33314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6208), 19, + ACTIONS(5781), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -451323,9 +320602,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6206), 33, + ACTIONS(5779), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -451333,8 +320613,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -451357,450 +320640,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [82429] = 3, + [33378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5398), 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(5396), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(4913), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, anon_sym_asm, anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [82489] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + sym_this, + ACTIONS(4915), 28, anon_sym_LPAREN2, + anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP_AMP, + anon_sym_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5516), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [82549] = 51, + 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, + [33442] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6747), 1, - anon_sym_COMMA, - ACTIONS(6751), 1, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4913), 17, anon_sym_DASH, - ACTIONS(6753), 1, anon_sym_PLUS, - ACTIONS(6755), 1, anon_sym_STAR, - ACTIONS(6757), 1, anon_sym_SLASH, - ACTIONS(6759), 1, anon_sym_PERCENT, - ACTIONS(6761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6763), 1, - anon_sym_AMP_AMP, - ACTIONS(6765), 1, anon_sym_PIPE, - ACTIONS(6767), 1, anon_sym_CARET, - ACTIONS(6769), 1, anon_sym_AMP, - ACTIONS(6771), 1, - anon_sym_EQ_EQ, - ACTIONS(6773), 1, - anon_sym_BANG_EQ, - ACTIONS(6775), 1, anon_sym_GT, - ACTIONS(6777), 1, - anon_sym_GT_EQ, - ACTIONS(6779), 1, anon_sym_LT_EQ, - ACTIONS(6781), 1, anon_sym_LT, - ACTIONS(6783), 1, anon_sym_LT_LT, - ACTIONS(6785), 1, anon_sym_GT_GT, - ACTIONS(6787), 1, anon_sym_EQ, - ACTIONS(6789), 1, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4915), 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, - ACTIONS(6791), 1, anon_sym_STAR_EQ, - ACTIONS(6793), 1, anon_sym_SLASH_EQ, - ACTIONS(6795), 1, anon_sym_PERCENT_EQ, - ACTIONS(6797), 1, anon_sym_PLUS_EQ, - ACTIONS(6799), 1, anon_sym_DASH_EQ, - ACTIONS(6801), 1, anon_sym_LT_LT_EQ, - ACTIONS(6803), 1, anon_sym_GT_GT_EQ, - ACTIONS(6805), 1, anon_sym_AMP_EQ, - ACTIONS(6807), 1, anon_sym_CARET_EQ, - ACTIONS(6809), 1, anon_sym_PIPE_EQ, - ACTIONS(6811), 1, anon_sym_LT_EQ_GT, - ACTIONS(6813), 1, anon_sym_or, - ACTIONS(6815), 1, anon_sym_and, - ACTIONS(6817), 1, anon_sym_bitor, - ACTIONS(6819), 1, anon_sym_xor, - ACTIONS(6821), 1, anon_sym_bitand, - ACTIONS(6823), 1, anon_sym_not_eq, - ACTIONS(6827), 1, - anon_sym_DOT_STAR, - ACTIONS(6829), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(6876), 1, - anon_sym_RPAREN, - STATE(2189), 1, - sym__binary_fold_operator, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - STATE(9521), 1, - sym__fold_operator, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [82705] = 3, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [33508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5533), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5783), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5785), 28, anon_sym_LPAREN2, + anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP_AMP, + anon_sym_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5531), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + 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, + [33572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2786), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, anon_sym_asm, anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [82765] = 51, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6020), 1, + sym_this, + ACTIONS(2788), 28, anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6747), 1, - anon_sym_COMMA, - ACTIONS(6751), 1, - anon_sym_DASH, - ACTIONS(6753), 1, - anon_sym_PLUS, - ACTIONS(6755), 1, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(6757), 1, - anon_sym_SLASH, - ACTIONS(6759), 1, - anon_sym_PERCENT, - ACTIONS(6761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6763), 1, - anon_sym_AMP_AMP, - ACTIONS(6765), 1, - anon_sym_PIPE, - ACTIONS(6767), 1, - anon_sym_CARET, - ACTIONS(6769), 1, anon_sym_AMP, - ACTIONS(6771), 1, - anon_sym_EQ_EQ, - ACTIONS(6773), 1, - anon_sym_BANG_EQ, - ACTIONS(6775), 1, - anon_sym_GT, - ACTIONS(6777), 1, - anon_sym_GT_EQ, - ACTIONS(6779), 1, - anon_sym_LT_EQ, - ACTIONS(6781), 1, - anon_sym_LT, - ACTIONS(6783), 1, - anon_sym_LT_LT, - ACTIONS(6785), 1, - anon_sym_GT_GT, - ACTIONS(6787), 1, - anon_sym_EQ, - ACTIONS(6789), 1, - anon_sym_QMARK, - ACTIONS(6791), 1, - anon_sym_STAR_EQ, - ACTIONS(6793), 1, - anon_sym_SLASH_EQ, - ACTIONS(6795), 1, - anon_sym_PERCENT_EQ, - ACTIONS(6797), 1, - anon_sym_PLUS_EQ, - ACTIONS(6799), 1, - anon_sym_DASH_EQ, - ACTIONS(6801), 1, - anon_sym_LT_LT_EQ, - ACTIONS(6803), 1, - anon_sym_GT_GT_EQ, - ACTIONS(6805), 1, - anon_sym_AMP_EQ, - ACTIONS(6807), 1, - anon_sym_CARET_EQ, - ACTIONS(6809), 1, - anon_sym_PIPE_EQ, - ACTIONS(6811), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6813), 1, - anon_sym_or, - ACTIONS(6815), 1, - anon_sym_and, - ACTIONS(6817), 1, - anon_sym_bitor, - ACTIONS(6819), 1, - anon_sym_xor, - ACTIONS(6821), 1, - anon_sym_bitand, - ACTIONS(6823), 1, - anon_sym_not_eq, - ACTIONS(6827), 1, - anon_sym_DOT_STAR, - ACTIONS(6829), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(6878), 1, - anon_sym_RPAREN, - STATE(2189), 1, - sym__binary_fold_operator, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - STATE(9521), 1, - sym__fold_operator, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [82921] = 3, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [33636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5537), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5787), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5789), 28, anon_sym_LPAREN2, + anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP_AMP, + anon_sym_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5535), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [82981] = 4, + 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, + [33700] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5321), 16, + ACTIONS(5408), 1, + anon_sym___attribute__, + STATE(2847), 1, + sym_attribute_specifier, + ACTIONS(5483), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -451815,9 +320968,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(5323), 35, + ACTIONS(5481), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -451840,11 +320996,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -451853,121 +321009,86 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [83043] = 51, + [33768] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6747), 1, - anon_sym_COMMA, - ACTIONS(6751), 1, + ACTIONS(5408), 1, + anon_sym___attribute__, + STATE(2855), 1, + sym_attribute_specifier, + ACTIONS(5487), 19, anon_sym_DASH, - ACTIONS(6753), 1, anon_sym_PLUS, - ACTIONS(6755), 1, anon_sym_STAR, - ACTIONS(6757), 1, anon_sym_SLASH, - ACTIONS(6759), 1, anon_sym_PERCENT, - ACTIONS(6761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6763), 1, - anon_sym_AMP_AMP, - ACTIONS(6765), 1, anon_sym_PIPE, - ACTIONS(6767), 1, anon_sym_CARET, - ACTIONS(6769), 1, anon_sym_AMP, - ACTIONS(6771), 1, - anon_sym_EQ_EQ, - ACTIONS(6773), 1, - anon_sym_BANG_EQ, - ACTIONS(6775), 1, anon_sym_GT, - ACTIONS(6777), 1, - anon_sym_GT_EQ, - ACTIONS(6779), 1, anon_sym_LT_EQ, - ACTIONS(6781), 1, anon_sym_LT, - ACTIONS(6783), 1, anon_sym_LT_LT, - ACTIONS(6785), 1, anon_sym_GT_GT, - ACTIONS(6787), 1, anon_sym_EQ, - ACTIONS(6789), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5485), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(6791), 1, anon_sym_STAR_EQ, - ACTIONS(6793), 1, anon_sym_SLASH_EQ, - ACTIONS(6795), 1, anon_sym_PERCENT_EQ, - ACTIONS(6797), 1, anon_sym_PLUS_EQ, - ACTIONS(6799), 1, anon_sym_DASH_EQ, - ACTIONS(6801), 1, anon_sym_LT_LT_EQ, - ACTIONS(6803), 1, anon_sym_GT_GT_EQ, - ACTIONS(6805), 1, anon_sym_AMP_EQ, - ACTIONS(6807), 1, anon_sym_CARET_EQ, - ACTIONS(6809), 1, anon_sym_PIPE_EQ, - ACTIONS(6811), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(6813), 1, - anon_sym_or, - ACTIONS(6815), 1, - anon_sym_and, - ACTIONS(6817), 1, anon_sym_bitor, - ACTIONS(6819), 1, - anon_sym_xor, - ACTIONS(6821), 1, anon_sym_bitand, - ACTIONS(6823), 1, anon_sym_not_eq, - ACTIONS(6827), 1, - anon_sym_DOT_STAR, - ACTIONS(6829), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(6880), 1, - anon_sym_RPAREN, - STATE(2189), 1, - sym__binary_fold_operator, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - STATE(9521), 1, - sym__fold_operator, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [83199] = 6, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [33836] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5248), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(5254), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(4286), 18, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5793), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -451985,17 +321106,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(4278), 31, + ACTIONS(5791), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -452016,42 +321139,41 @@ 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, - [83265] = 3, + [33912] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 13, + ACTIONS(5467), 1, + anon_sym___attribute__, + STATE(2802), 1, + sym_attribute_specifier, + ACTIONS(5508), 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(5506), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5586), 39, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -452062,163 +321184,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [83325] = 3, + [33980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5379), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4981), 27, anon_sym_LPAREN2, + anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP_AMP, + anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5377), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + 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(4979), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, anon_sym_asm, anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [83385] = 3, + sym_this, + [34046] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5419), 13, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, + anon_sym_LT, + STATE(2397), 1, + sym_template_argument_list, + ACTIONS(4059), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4067), 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_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5417), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [83445] = 7, + anon_sym_DASH_GT_STAR, + [34116] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4892), 1, - anon_sym_const, - ACTIONS(4901), 1, - anon_sym_AMP, - ACTIONS(4894), 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(4899), 10, + ACTIONS(5467), 1, + anon_sym___attribute__, + STATE(2808), 1, + sym_attribute_specifier, + ACTIONS(5536), 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(4897), 15, + ACTIONS(5534), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -452229,15 +321373,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - ACTIONS(4904), 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, @@ -452250,10 +321385,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [83513] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [34184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6181), 20, + ACTIONS(5797), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452273,8 +321414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6179), 32, + ACTIONS(5795), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -452284,7 +321424,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -452306,160 +321451,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [83573] = 6, + anon_sym_DASH_GT, + [34248] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5248), 1, - anon_sym_LPAREN2, - ACTIONS(5254), 1, - anon_sym_LBRACK, - ACTIONS(4286), 18, + ACTIONS(5467), 1, + anon_sym___attribute__, + STATE(2786), 1, + sym_attribute_specifier, + ACTIONS(5528), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(4278), 31, + ACTIONS(5526), 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_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [83639] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [34316] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6882), 1, - anon_sym_LT, - STATE(4131), 1, - sym_template_argument_list, - ACTIONS(6322), 18, + ACTIONS(5467), 1, + anon_sym___attribute__, + STATE(2868), 1, + sym_attribute_specifier, + ACTIONS(5479), 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_LT, + anon_sym_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6320), 32, + ACTIONS(5477), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [83703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5402), 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(5400), 39, - anon_sym_AMP, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -452470,66 +321560,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [83763] = 3, + [34384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5561), 17, + ACTIONS(3751), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5563), 35, + ACTIONS(3753), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + [34448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2808), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(2810), 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, @@ -452540,97 +321700,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [83823] = 3, + [34512] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5618), 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(5616), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(5467), 1, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(2867), 1, + sym_attribute_specifier, + ACTIONS(5473), 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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [83883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5451), 13, + anon_sym_DOT, + ACTIONS(5471), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5449), 39, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -452641,39 +321745,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [83943] = 10, + [34580] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6703), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6200), 19, + ACTIONS(5408), 1, + anon_sym___attribute__, + STATE(2871), 1, + sym_attribute_specifier, + ACTIONS(5536), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452683,23 +321780,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6198), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5534), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -452707,6 +321809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -452717,184 +321820,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [84017] = 51, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [34648] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6747), 1, - anon_sym_COMMA, - ACTIONS(6751), 1, + ACTIONS(5408), 1, + anon_sym___attribute__, + STATE(2800), 1, + sym_attribute_specifier, + ACTIONS(5528), 19, anon_sym_DASH, - ACTIONS(6753), 1, anon_sym_PLUS, - ACTIONS(6755), 1, anon_sym_STAR, - ACTIONS(6757), 1, anon_sym_SLASH, - ACTIONS(6759), 1, anon_sym_PERCENT, - ACTIONS(6761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6763), 1, - anon_sym_AMP_AMP, - ACTIONS(6765), 1, anon_sym_PIPE, - ACTIONS(6767), 1, anon_sym_CARET, - ACTIONS(6769), 1, anon_sym_AMP, - ACTIONS(6771), 1, - anon_sym_EQ_EQ, - ACTIONS(6773), 1, - anon_sym_BANG_EQ, - ACTIONS(6775), 1, anon_sym_GT, - ACTIONS(6777), 1, - anon_sym_GT_EQ, - ACTIONS(6779), 1, anon_sym_LT_EQ, - ACTIONS(6781), 1, anon_sym_LT, - ACTIONS(6783), 1, anon_sym_LT_LT, - ACTIONS(6785), 1, anon_sym_GT_GT, - ACTIONS(6787), 1, anon_sym_EQ, - ACTIONS(6789), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5526), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(6791), 1, anon_sym_STAR_EQ, - ACTIONS(6793), 1, anon_sym_SLASH_EQ, - ACTIONS(6795), 1, anon_sym_PERCENT_EQ, - ACTIONS(6797), 1, anon_sym_PLUS_EQ, - ACTIONS(6799), 1, anon_sym_DASH_EQ, - ACTIONS(6801), 1, anon_sym_LT_LT_EQ, - ACTIONS(6803), 1, anon_sym_GT_GT_EQ, - ACTIONS(6805), 1, anon_sym_AMP_EQ, - ACTIONS(6807), 1, anon_sym_CARET_EQ, - ACTIONS(6809), 1, anon_sym_PIPE_EQ, - ACTIONS(6811), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(6813), 1, - anon_sym_or, - ACTIONS(6815), 1, - anon_sym_and, - ACTIONS(6817), 1, anon_sym_bitor, - ACTIONS(6819), 1, - anon_sym_xor, - ACTIONS(6821), 1, anon_sym_bitand, - ACTIONS(6823), 1, anon_sym_not_eq, - ACTIONS(6827), 1, - anon_sym_DOT_STAR, - ACTIONS(6829), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(6885), 1, - anon_sym_RPAREN, - STATE(2189), 1, - sym__binary_fold_operator, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - STATE(9521), 1, - sym__fold_operator, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [84173] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5394), 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(5392), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [84233] = 7, + anon_sym_DASH_GT_STAR, + [34716] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5254), 1, - anon_sym_LBRACK, - ACTIONS(5248), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(4922), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(4286), 19, + ACTIONS(4594), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(4596), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452908,20 +321909,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_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4278), 26, + ACTIONS(4589), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -452933,6 +321940,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -452940,17 +321950,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, - [84301] = 3, + anon_sym_DASH_GT, + [34782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5347), 13, + ACTIONS(4553), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, @@ -452958,7 +321969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5345), 39, + ACTIONS(4551), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -452985,6 +321996,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, sym_identifier, @@ -452998,10 +322012,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [84361] = 3, + [34846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4587), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4594), 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, + [34910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6382), 19, + ACTIONS(3755), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453015,13 +322090,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(6380), 32, + ACTIONS(3757), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453031,7 +322106,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -453053,107 +322133,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_STAR, - [84420] = 4, + anon_sym_DASH_GT, + [34974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6887), 1, - anon_sym_typedef, - ACTIONS(3508), 6, + ACTIONS(5801), 26, + 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, - ACTIONS(3506), 44, + 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(5799), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, sym_primitive_type, anon_sym_enum, anon_sym_class, anon_sym_struct, anon_sym_union, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, anon_sym_typename, anon_sym_template, - anon_sym_operator, - [84481] = 3, + [35038] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 16, + ACTIONS(5467), 1, + anon_sym___attribute__, + STATE(2791), 1, + sym_attribute_specifier, + ACTIONS(5487), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5474), 35, + ACTIONS(5485), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -453164,13 +322251,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [84540] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [35106] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5058), 19, + ACTIONS(5408), 1, + anon_sym___attribute__, + STATE(2827), 1, + sym_attribute_specifier, + ACTIONS(5494), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453190,7 +322285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5060), 32, + ACTIONS(5492), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453200,6 +322295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -453222,11 +322318,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [84599] = 3, + [35174] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5467), 1, + anon_sym___attribute__, + STATE(2840), 1, + sym_attribute_specifier, + ACTIONS(5483), 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(5481), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [35242] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 19, + ACTIONS(5408), 1, + anon_sym___attribute__, + STATE(2805), 1, + sym_attribute_specifier, + ACTIONS(5524), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453246,7 +322411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4872), 32, + ACTIONS(5522), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453256,6 +322421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -453278,11 +322444,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [84658] = 3, + [35310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5805), 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(5803), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [35374] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 19, + ACTIONS(5408), 1, + anon_sym___attribute__, + STATE(2795), 1, + sym_attribute_specifier, + ACTIONS(5508), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453302,7 +322535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5014), 32, + ACTIONS(5506), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453312,6 +322545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -453334,11 +322568,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [84717] = 3, + [35442] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6294), 19, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5809), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453356,19 +322608,19 @@ 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(6292), 32, + ACTIONS(5807), 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_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -453387,14 +322639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [84776] = 3, + [35520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6304), 19, + ACTIONS(5813), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453413,8 +322661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6302), 32, + ACTIONS(5811), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453424,7 +322671,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -453446,39 +322698,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, - [84835] = 3, + anon_sym_DASH_GT, + [35583] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5476), 16, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5821), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5823), 1, + anon_sym_AMP_AMP, + ACTIONS(5825), 1, + anon_sym_PIPE, + ACTIONS(5829), 1, + anon_sym_AMP, + ACTIONS(5835), 1, + anon_sym_GT_EQ, + ACTIONS(5839), 1, + anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5843), 1, + anon_sym_or, + ACTIONS(5845), 1, + anon_sym_and, + ACTIONS(5847), 1, + anon_sym_bitor, + ACTIONS(5849), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5817), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5827), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5819), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5831), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5833), 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(5478), 35, + ACTIONS(5815), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -453490,23 +322779,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [84894] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [35692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6386), 19, + ACTIONS(5445), 1, + anon_sym___attribute__, + STATE(2986), 1, + sym_attribute_specifier, + ACTIONS(5524), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453516,26 +322799,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(6384), 32, + ACTIONS(5522), 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, @@ -453544,7 +322827,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -453558,11 +322840,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, - [84953] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [35759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5337), 16, + ACTIONS(5853), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453577,9 +322862,11 @@ static const uint16_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(5339), 35, + ACTIONS(5851), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453589,8 +322876,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -453602,23 +322893,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [85012] = 3, + anon_sym_DASH_GT, + [35822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5377), 16, + ACTIONS(5857), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453633,9 +322922,11 @@ static const uint16_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(5379), 35, + ACTIONS(5855), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453645,8 +322936,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -453658,23 +322953,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [85071] = 3, + anon_sym_DASH_GT, + [35885] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5321), 16, + ACTIONS(5445), 1, + anon_sym___attribute__, + STATE(2985), 1, + sym_attribute_specifier, + ACTIONS(5508), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453684,23 +322981,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(5323), 35, + ACTIONS(5506), 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, @@ -453710,27 +323009,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [85130] = 3, + anon_sym_GT2, + [35952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6390), 19, + ACTIONS(5861), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453749,8 +323048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6388), 32, + ACTIONS(5859), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453760,7 +323058,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -453782,11 +323085,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, - [85189] = 3, + anon_sym_DASH_GT, + [36015] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 16, + ACTIONS(5867), 1, + anon_sym_LT, + STATE(2649), 1, + sym_template_argument_list, + ACTIONS(5865), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453797,13 +323104,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5502), 35, + ACTIONS(5863), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453813,8 +323121,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -453826,23 +323137,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [85248] = 3, + anon_sym_DASH_GT, + [36082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5484), 16, + ACTIONS(5753), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453857,9 +323166,11 @@ static const uint16_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(5486), 35, + ACTIONS(5755), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453869,8 +323180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -453882,23 +323197,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [85307] = 3, + anon_sym_DASH_GT, + [36145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 16, + ACTIONS(5872), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453913,9 +323226,11 @@ static const uint16_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(5494), 35, + ACTIONS(5870), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453925,8 +323240,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -453938,23 +323257,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [85366] = 3, + anon_sym_DASH_GT, + [36208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 19, + ACTIONS(5876), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453973,8 +323290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6224), 32, + ACTIONS(5874), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453984,7 +323300,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -454006,228 +323327,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [85425] = 24, + anon_sym_DASH_GT, + [36271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6889), 1, - anon_sym_STAR, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(5196), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6895), 1, - anon_sym_LBRACK, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6518), 1, - sym__scope_resolution, - STATE(7121), 1, - sym__declarator, - STATE(9528), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4023), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4748), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [85526] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + anon_sym_DOT, + ACTIONS(5198), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6889), 1, anon_sym_STAR, - ACTIONS(6891), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6893), 1, - anon_sym_AMP, - ACTIONS(6895), 1, - anon_sym_LBRACK, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6518), 1, - sym__scope_resolution, - STATE(7138), 1, - sym__declarator, - STATE(9528), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4743), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5614), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - [85627] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(6897), 1, - anon_sym_STAR, - ACTIONS(6899), 1, - anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_AMP, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6518), 1, - sym__scope_resolution, - STATE(6884), 1, - sym__declarator, - STATE(8941), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4046), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4738), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -454238,87 +323370,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [85728] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 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, + sym_auto, anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, - anon_sym_STAR, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_COLON_COLON, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6547), 1, - sym__scope_resolution, - STATE(7212), 1, - sym__declarator, - STATE(9588), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4758), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5614), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [85829] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [36334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2194), 19, + ACTIONS(5146), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454338,7 +323411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2192), 32, + ACTIONS(5148), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -454348,6 +323421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454370,11 +323445,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [85888] = 3, + [36397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 16, + ACTIONS(5880), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454389,9 +323466,11 @@ static const uint16_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(5506), 35, + ACTIONS(5878), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -454401,8 +323480,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -454414,23 +323497,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [85947] = 3, + anon_sym_DASH_GT, + [36460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5321), 16, + ACTIONS(5884), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454445,9 +323526,11 @@ static const uint16_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(5323), 35, + ACTIONS(5882), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -454457,8 +323540,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -454470,100 +323557,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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [86006] = 24, + anon_sym_DASH_GT, + [36523] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(6905), 1, + STATE(2699), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4097), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4099), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4814), 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(4812), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6907), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_COLON_COLON, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6547), 1, - sym__scope_resolution, - STATE(7172), 1, - sym__declarator, - STATE(9588), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4025), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4757), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [86107] = 3, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [36594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6072), 21, + ACTIONS(5890), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454573,27 +323645,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6070), 30, + ACTIONS(5888), 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_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -454601,6 +323677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -454615,15 +323692,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [86166] = 4, + [36657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(4286), 19, + ACTIONS(4735), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454642,8 +323714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4278), 29, + ACTIONS(4737), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -454653,7 +323724,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -454665,6 +323741,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -454672,90 +323751,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, - [86227] = 24, + anon_sym_DASH_GT, + [36720] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6889), 1, - anon_sym_STAR, - ACTIONS(6891), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5821), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5823), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(5825), 1, + anon_sym_PIPE, + ACTIONS(5829), 1, anon_sym_AMP, - ACTIONS(6895), 1, - anon_sym_LBRACK, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6518), 1, - sym__scope_resolution, - STATE(7121), 1, - sym__declarator, - STATE(9528), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4748), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5614), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [86328] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5523), 1, + ACTIONS(5835), 1, + anon_sym_GT_EQ, + ACTIONS(5841), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5843), 1, + anon_sym_or, + ACTIONS(5845), 1, + anon_sym_and, + ACTIONS(5847), 1, + anon_sym_bitor, + ACTIONS(5849), 1, + anon_sym_bitand, + ACTIONS(5894), 1, anon_sym_EQ, - ACTIONS(5525), 13, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5817), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5827), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5819), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5831), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5833), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5892), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -454769,7 +323835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(4286), 17, + [36829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5803), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454783,13 +323852,15 @@ 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(4278), 20, + ACTIONS(5805), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -454798,8 +323869,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -454808,10 +323895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [86391] = 3, + [36892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 16, + ACTIONS(2134), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454826,9 +323913,11 @@ static const uint16_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(5510), 35, + ACTIONS(2132), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -454838,8 +323927,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -454851,23 +323944,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [86450] = 3, + anon_sym_DASH_GT, + [36955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6308), 19, + ACTIONS(5898), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454886,8 +323977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6306), 32, + ACTIONS(5896), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -454897,7 +323987,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -454919,11 +324014,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, - [86509] = 3, + anon_sym_DASH_GT, + [37018] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6212), 19, + ACTIONS(5445), 1, + anon_sym___attribute__, + STATE(2979), 1, + sym_attribute_specifier, + ACTIONS(5528), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454933,26 +324032,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(6214), 32, + ACTIONS(5526), 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, @@ -454961,7 +324060,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -454975,11 +324073,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, - [86568] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [37085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 19, + ACTIONS(5196), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454999,7 +324100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2889), 32, + ACTIONS(5198), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -455009,6 +324110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -455031,155 +324134,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [86627] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6913), 1, - anon_sym_namespace, - ACTIONS(6107), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6105), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [86688] = 4, + anon_sym_DASH_GT_STAR, + [37148] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6915), 1, - anon_sym_typedef, - ACTIONS(3508), 6, + ACTIONS(5364), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3506), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [86749] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6444), 19, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5841), 1, + anon_sym_LT_EQ_GT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5817), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5819), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(5902), 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(6442), 32, + ACTIONS(5900), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -455194,273 +324205,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, - [86808] = 4, + [37233] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6917), 1, - anon_sym_namespace, - ACTIONS(6107), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6105), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(5445), 1, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [86869] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6889), 1, - anon_sym_STAR, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, - anon_sym_AMP, - ACTIONS(6895), 1, - anon_sym_LBRACK, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6518), 1, - sym__scope_resolution, - STATE(7115), 1, - sym__declarator, - STATE(9528), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4032), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4742), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [86970] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6919), 1, - anon_sym_namespace, - ACTIONS(6107), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + STATE(2970), 1, + sym_attribute_specifier, + ACTIONS(5536), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6105), 44, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [87031] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6921), 1, - anon_sym_typedef, - ACTIONS(3508), 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(5534), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3506), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [87092] = 6, + anon_sym_GT2, + [37300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, - anon_sym_LBRACE, - ACTIONS(6336), 1, - anon_sym_LPAREN2, - STATE(4430), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6076), 16, + ACTIONS(4719), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455475,18 +324288,26 @@ static const uint16_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(6074), 31, + ACTIONS(4721), 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -455498,127 +324319,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [87157] = 24, + anon_sym_DASH_GT, + [37363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, - anon_sym_STAR, - ACTIONS(6899), 1, - anon_sym_AMP_AMP, - ACTIONS(6901), 1, + ACTIONS(5138), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6518), 1, - sym__scope_resolution, - STATE(6876), 1, - sym__declarator, - STATE(8941), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4764), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5614), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [87258] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6923), 1, - anon_sym_typedef, - ACTIONS(3508), 6, + anon_sym_DOT, + ACTIONS(5140), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3506), 44, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -455629,178 +324372,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [87319] = 4, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [37426] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6925), 1, - anon_sym_typedef, - ACTIONS(3508), 6, + ACTIONS(5364), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5821), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5823), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3506), 44, + ACTIONS(5825), 1, + anon_sym_PIPE, + ACTIONS(5829), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [87380] = 24, + ACTIONS(5835), 1, + anon_sym_GT_EQ, + ACTIONS(5841), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5843), 1, + anon_sym_or, + ACTIONS(5845), 1, + anon_sym_and, + ACTIONS(5847), 1, + anon_sym_bitor, + ACTIONS(5849), 1, + anon_sym_bitand, + ACTIONS(5906), 1, + anon_sym_EQ, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5817), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5827), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5819), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5831), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5833), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5904), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [37535] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(6895), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5819), 3, anon_sym_STAR, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5724), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_COLON_COLON, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6547), 1, - sym__scope_resolution, - STATE(7209), 1, - sym__declarator, - STATE(9588), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4731), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5614), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [87481] = 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, + ACTIONS(5722), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [37614] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym_typedef, - ACTIONS(3508), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3506), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(4798), 1, anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, anon_sym___declspec, + ACTIONS(4806), 1, + anon_sym_virtual, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5912), 1, + sym_auto, + ACTIONS(5914), 1, + anon_sym_decltype, + STATE(3021), 1, + sym_decltype_auto, + ACTIONS(5908), 6, + anon_sym_AMP, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4796), 9, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -455809,6 +324577,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + STATE(2993), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(5910), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4794), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -455820,24 +324612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [87542] = 3, + [37699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6159), 19, + ACTIONS(5918), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455856,8 +324634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6157), 32, + ACTIONS(5916), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -455867,7 +324644,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -455889,11 +324671,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, - [87601] = 3, + anon_sym_DASH_GT, + [37762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5997), 21, + ACTIONS(4727), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455903,27 +324685,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5995), 30, + ACTIONS(4729), 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_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -455931,6 +324717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -455945,145 +324732,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [87660] = 24, + [37825] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(6895), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6929), 1, - anon_sym_STAR, - ACTIONS(6931), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5823), 1, anon_sym_AMP_AMP, - ACTIONS(6933), 1, + ACTIONS(5825), 1, + anon_sym_PIPE, + ACTIONS(5829), 1, anon_sym_AMP, - ACTIONS(6935), 1, - anon_sym_COLON_COLON, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6477), 1, - sym__scope_resolution, - STATE(7359), 1, - sym__declarator, - STATE(9340), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4750), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5614), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [87761] = 4, + ACTIONS(5835), 1, + anon_sym_GT_EQ, + ACTIONS(5841), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5845), 1, + anon_sym_and, + ACTIONS(5847), 1, + anon_sym_bitor, + ACTIONS(5849), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5724), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(5817), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5827), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5819), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5831), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5833), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [37930] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6937), 1, - anon_sym_typedef, - ACTIONS(3508), 6, + ACTIONS(5364), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5825), 1, + anon_sym_PIPE, + ACTIONS(5829), 1, + anon_sym_AMP, + ACTIONS(5835), 1, + anon_sym_GT_EQ, + ACTIONS(5841), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5847), 1, + anon_sym_bitor, + ACTIONS(5849), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5817), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5827), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5724), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(5819), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5831), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5833), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3506), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [87822] = 3, + 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, + [38031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6037), 21, + ACTIONS(4747), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456093,27 +324905,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6035), 30, + ACTIONS(4749), 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_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -456121,6 +324937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -456135,11 +324952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [87881] = 3, + [38094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6018), 21, + ACTIONS(5138), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456149,27 +324965,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6016), 30, + anon_sym_DASH_GT, + ACTIONS(5140), 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_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -456177,6 +324995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -456190,12 +325009,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [38157] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5178), 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(5180), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [87940] = 3, + anon_sym_requires, + [38220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6005), 21, + ACTIONS(5922), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456205,27 +325085,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6003), 30, + ACTIONS(5920), 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_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -456233,6 +325117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -456247,41 +325132,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [87999] = 3, + [38283] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6230), 19, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5829), 1, + anon_sym_AMP, + ACTIONS(5835), 1, + anon_sym_GT_EQ, + ACTIONS(5841), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5849), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5817), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5827), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5819), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5831), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5833), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5724), 4, + anon_sym_PIPE, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6228), 32, + ACTIONS(5722), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -456296,48 +325208,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, + [38380] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5829), 1, + anon_sym_AMP, + ACTIONS(5835), 1, + anon_sym_GT_EQ, + ACTIONS(5841), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5849), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88058] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6410), 19, + anon_sym_DASH_GT, + ACTIONS(5817), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5819), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5831), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5833), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5724), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6408), 32, + ACTIONS(5722), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -456352,48 +325284,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + [38475] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5835), 1, + anon_sym_GT_EQ, + ACTIONS(5841), 1, + anon_sym_LT_EQ_GT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88117] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5054), 19, + anon_sym_DASH_GT, + ACTIONS(5817), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5819), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5831), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5833), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5724), 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(5056), 32, + ACTIONS(5722), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -456408,48 +325357,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, + [38566] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5835), 1, + anon_sym_GT_EQ, + ACTIONS(5841), 1, + anon_sym_LT_EQ_GT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6414), 19, + anon_sym_DASH_GT, + ACTIONS(5817), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5819), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5833), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5724), 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(6412), 32, + ACTIONS(5722), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -456464,48 +325429,63 @@ 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, + [38655] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5841), 1, + anon_sym_LT_EQ_GT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5054), 19, + anon_sym_DASH_GT, + ACTIONS(5817), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5819), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(5724), 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(5056), 32, + ACTIONS(5722), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -456520,18 +325500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88294] = 3, + [38740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 19, + ACTIONS(5926), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456550,8 +325525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5056), 32, + ACTIONS(5924), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -456561,7 +325535,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -456583,11 +325562,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, - [88353] = 3, + anon_sym_DASH_GT, + [38803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5453), 16, + ACTIONS(5271), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456602,9 +325581,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(5455), 35, + ACTIONS(5273), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -456614,6 +325596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -456627,11 +325610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -456640,10 +325623,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [88412] = 3, + [38866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6418), 19, + ACTIONS(5930), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456662,8 +325645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6416), 32, + ACTIONS(5928), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -456673,7 +325655,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -456695,19 +325682,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, - [88471] = 3, + anon_sym_DASH_GT, + [38929] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 16, + ACTIONS(5026), 1, + sym_literal_suffix, + ACTIONS(4069), 24, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -456715,47 +325713,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5555), 35, + ACTIONS(4061), 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_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [88530] = 3, + [38994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6171), 19, + ACTIONS(5934), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456774,8 +325766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6173), 32, + ACTIONS(5932), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -456785,7 +325776,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -456807,11 +325803,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88589] = 3, + anon_sym_DASH_GT, + [39057] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6460), 19, + ACTIONS(5936), 1, + anon_sym_LPAREN2, + ACTIONS(5938), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5940), 1, + anon_sym_LBRACK, + STATE(3115), 1, + sym_parameter_list, + STATE(2814), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5554), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456831,17 +325838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6458), 32, + ACTIONS(5550), 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, @@ -456864,97 +325869,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [88648] = 3, + [39130] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6300), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(6298), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5821), 1, anon_sym_PIPE_PIPE, + ACTIONS(5823), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(5825), 1, + anon_sym_PIPE, + ACTIONS(5829), 1, + anon_sym_AMP, + ACTIONS(5835), 1, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(5841), 1, anon_sym_LT_EQ_GT, + ACTIONS(5843), 1, + anon_sym_or, + ACTIONS(5845), 1, + anon_sym_and, + ACTIONS(5847), 1, anon_sym_bitor, + ACTIONS(5849), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(5942), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5946), 1, + anon_sym_EQ, + ACTIONS(5948), 1, + anon_sym_QMARK, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6472), 19, + anon_sym_DASH_GT, + ACTIONS(5817), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5827), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5819), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5831), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5833), 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(6470), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(5944), 18, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -456968,48 +325954,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, - anon_sym_bitand, - anon_sym_not_eq, + [39243] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88766] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6068), 21, + anon_sym_DASH_GT, + ACTIONS(5817), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5819), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(5724), 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, - anon_sym_DOT, - ACTIONS(6066), 30, + ACTIONS(5722), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457017,6 +326012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -457027,45 +326023,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [39324] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [88825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6440), 19, + ACTIONS(5817), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5819), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(5724), 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(6438), 32, + ACTIONS(5722), 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_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457084,71 +326093,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88884] = 4, + [39407] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5702), 1, - sym_literal_suffix, - ACTIONS(4278), 24, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + STATE(1726), 1, + sym_template_argument_list, + ACTIONS(5530), 12, 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_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_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - ACTIONS(4286), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5532), 40, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_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, - [88945] = 3, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [39476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6080), 21, + ACTIONS(5954), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457158,27 +326169,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6078), 30, + ACTIONS(5952), 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_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457186,6 +326201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -457200,11 +326216,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [89004] = 3, + [39539] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5616), 16, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5570), 1, + anon_sym_LT, + STATE(2493), 1, + sym_template_argument_list, + ACTIONS(4059), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457214,23 +326235,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(5618), 35, + ACTIONS(4067), 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, @@ -457240,27 +326262,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [89063] = 3, + anon_sym_GT2, + [39608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 19, + ACTIONS(5958), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457279,8 +326301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5052), 32, + ACTIONS(5956), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -457290,7 +326311,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457312,11 +326338,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, - [89122] = 3, + anon_sym_DASH_GT, + [39671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6143), 19, + ACTIONS(5962), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457335,8 +326361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6141), 32, + ACTIONS(5960), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -457346,7 +326371,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457368,11 +326398,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, - [89181] = 3, + anon_sym_DASH_GT, + [39734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5480), 16, + ACTIONS(4751), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457387,9 +326417,11 @@ static const uint16_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(5482), 35, + ACTIONS(4753), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -457399,8 +326431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457412,30 +326448,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [89240] = 6, + anon_sym_DASH_GT, + [39797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, - anon_sym_LBRACE, - ACTIONS(6336), 1, - anon_sym_LPAREN2, - STATE(4408), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6009), 16, + ACTIONS(4731), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457450,18 +326477,26 @@ static const uint16_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(6007), 31, + ACTIONS(4733), 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457473,21 +326508,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, - [89305] = 3, + anon_sym_DASH_GT, + [39860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 19, + ACTIONS(5743), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457506,8 +326541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5040), 32, + ACTIONS(5741), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -457517,7 +326551,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457539,123 +326578,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [89364] = 3, + anon_sym_DASH_GT, + [39923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6350), 19, + ACTIONS(5271), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6348), 32, + ACTIONS(5273), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [89423] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [39986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6121), 21, + ACTIONS(5211), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6119), 30, + ACTIONS(5213), 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_LBRACK_LBRACK, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, 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, - [89482] = 3, + anon_sym_requires, + [40049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 16, + ACTIONS(5966), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457670,9 +326717,11 @@ static const uint16_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(5498), 35, + ACTIONS(5964), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -457682,8 +326731,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457695,23 +326748,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [89541] = 3, + anon_sym_DASH_GT, + [40112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 19, + ACTIONS(2138), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457730,8 +326781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6446), 32, + ACTIONS(2136), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -457741,7 +326791,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457763,11 +326818,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, - [89600] = 3, + anon_sym_DASH_GT, + [40175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6181), 21, + ACTIONS(5970), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457777,27 +326832,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6179), 30, + ACTIONS(5968), 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_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457805,6 +326864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -457819,11 +326879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [89659] = 3, + [40238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 16, + ACTIONS(5127), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457838,9 +326897,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(5537), 35, + ACTIONS(5129), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -457850,6 +326912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -457863,11 +326926,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -457876,10 +326939,18 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [89718] = 3, + [40301] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6490), 19, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(4564), 1, + anon_sym_LBRACE, + ACTIONS(4580), 1, + anon_sym_LT, + STATE(2616), 1, + sym_template_argument_list, + ACTIONS(4566), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457890,26 +326961,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(6488), 32, + ACTIONS(4571), 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, @@ -457931,11 +327002,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, - [89777] = 3, + anon_sym_DASH_GT, + [40372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5531), 16, + ACTIONS(5223), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457950,9 +327021,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(5533), 35, + ACTIONS(5225), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -457962,6 +327036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -457975,11 +327050,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -457988,10 +327063,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [89836] = 3, + [40435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5516), 16, + ACTIONS(5861), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458006,9 +327081,11 @@ static const uint16_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(5518), 35, + ACTIONS(5859), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -458018,8 +327095,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -458031,23 +327112,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [89895] = 3, + anon_sym_DASH_GT, + [40498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6208), 19, + ACTIONS(5178), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458067,7 +327146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6206), 32, + ACTIONS(5180), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -458077,6 +327156,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -458099,92 +327180,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [89954] = 28, + [40561] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6478), 1, - anon_sym_EQ, - ACTIONS(6943), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6945), 1, - anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(5972), 1, + sym_identifier, + STATE(2704), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4097), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4099), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4842), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(6951), 1, anon_sym_AMP, - ACTIONS(6957), 1, - anon_sym_GT_EQ, - ACTIONS(6961), 1, - anon_sym_QMARK, - ACTIONS(6963), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6965), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_or, - ACTIONS(6967), 1, anon_sym_and, - ACTIONS(6969), 1, anon_sym_bitor, - ACTIONS(6971), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(6973), 1, + anon_sym_not_eq, anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6939), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6949), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6959), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6941), 3, + sym_literal_suffix, + ACTIONS(4840), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6953), 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(6955), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6476), 14, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [90063] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [40632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6354), 19, + ACTIONS(4739), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458203,8 +327269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6352), 32, + ACTIONS(4741), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -458214,7 +327279,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -458236,19 +327306,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [90122] = 7, + anon_sym_DASH_GT, + [40695] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6977), 1, + ACTIONS(5974), 1, anon_sym_PIPE_PIPE, - ACTIONS(6979), 1, + ACTIONS(5976), 1, anon_sym_AMP_AMP, - ACTIONS(6981), 1, + ACTIONS(5978), 1, anon_sym_or, - ACTIONS(6983), 1, + ACTIONS(5980), 1, anon_sym_and, - ACTIONS(5743), 17, + ACTIONS(5396), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458265,8 +327335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5745), 30, + ACTIONS(5398), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -458274,7 +327343,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -458296,11 +327370,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, - [90189] = 3, + anon_sym_DASH_GT, + [40766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 19, + ACTIONS(4719), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458319,8 +327393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5036), 32, + ACTIONS(4721), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -458330,7 +327403,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -458352,11 +327430,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, - [90248] = 3, + anon_sym_DASH_GT, + [40829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 19, + ACTIONS(5984), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458375,8 +327453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2196), 32, + ACTIONS(5982), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -458386,7 +327463,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -458408,92 +327490,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, - [90307] = 26, + anon_sym_DASH_GT, + [40892] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6498), 1, - anon_sym_EQ, - ACTIONS(6943), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6945), 1, - anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(5986), 1, + sym_identifier, + STATE(2704), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5989), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5992), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4825), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(6951), 1, anon_sym_AMP, - ACTIONS(6957), 1, - anon_sym_GT_EQ, - ACTIONS(6963), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6965), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_or, - ACTIONS(6967), 1, anon_sym_and, - ACTIONS(6969), 1, anon_sym_bitor, - ACTIONS(6971), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(6973), 1, + anon_sym_not_eq, anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6939), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6949), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6959), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6941), 3, + sym_literal_suffix, + ACTIONS(4823), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6953), 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(6955), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6496), 16, - anon_sym_DOT_DOT_DOT, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [90412] = 4, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [40963] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6985), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6208), 21, + ACTIONS(5596), 1, + sym_auto, + ACTIONS(5598), 1, + anon_sym_decltype, + STATE(2874), 1, + sym_decltype_auto, + ACTIONS(5018), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458503,26 +327574,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(6206), 29, + anon_sym_DASH_GT, + ACTIONS(5020), 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, @@ -458530,6 +327603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -458543,12 +327617,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, - [90473] = 3, + anon_sym_DASH_GT_STAR, + [41032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6278), 19, + ACTIONS(5997), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458567,8 +327640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6254), 32, + ACTIONS(5995), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -458578,7 +327650,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -458600,11 +327677,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, - [90532] = 3, + anon_sym_DASH_GT, + [41095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 19, + ACTIONS(4723), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458623,8 +327700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4872), 32, + ACTIONS(4725), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -458634,7 +327710,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -458656,11 +327737,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, - [90591] = 3, + anon_sym_DASH_GT, + [41158] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 19, + ACTIONS(5976), 1, + anon_sym_AMP_AMP, + ACTIONS(5980), 1, + anon_sym_and, + ACTIONS(5374), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458676,21 +327761,23 @@ 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(4872), 32, + ACTIONS(5376), 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___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -458712,71 +327799,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [90650] = 7, + anon_sym_DASH_GT, + [41225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6987), 1, - sym_identifier, - STATE(4181), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4934), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4936), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5134), 18, + ACTIONS(5211), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - 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(5132), 19, + anon_sym_DASH_GT, + ACTIONS(5213), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_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, - anon_sym_GT2, - [90717] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [41288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 19, + ACTIONS(4755), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458795,8 +327882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4872), 32, + ACTIONS(4757), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -458806,7 +327892,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -458828,75 +327919,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [90776] = 28, + anon_sym_DASH_GT, + [41351] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5936), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5938), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5940), 1, anon_sym_LBRACK, - ACTIONS(6252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6494), 1, - anon_sym_EQ, - ACTIONS(6943), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6945), 1, - anon_sym_AMP_AMP, - ACTIONS(6947), 1, - anon_sym_PIPE, - ACTIONS(6951), 1, - anon_sym_AMP, - ACTIONS(6957), 1, - anon_sym_GT_EQ, - ACTIONS(6961), 1, - anon_sym_QMARK, - ACTIONS(6963), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6965), 1, - anon_sym_or, - ACTIONS(6967), 1, - anon_sym_and, - ACTIONS(6969), 1, - anon_sym_bitor, - ACTIONS(6971), 1, - anon_sym_bitand, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6939), 2, + STATE(3115), 1, + sym_parameter_list, + STATE(2814), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5574), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6949), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6959), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6941), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6953), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6955), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6492), 14, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5572), 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, @@ -458910,10 +327977,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [90885] = 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, + [41424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 16, + ACTIONS(4715), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458928,9 +328003,11 @@ static const uint16_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(5514), 35, + ACTIONS(4717), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -458940,8 +328017,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -458953,23 +328034,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [90944] = 3, + anon_sym_DASH_GT, + [41487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5488), 16, + ACTIONS(6001), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458984,9 +328063,11 @@ static const uint16_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(5490), 35, + ACTIONS(5999), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -458996,8 +328077,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -459009,23 +328094,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [91003] = 3, + anon_sym_DASH_GT, + [41550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6151), 20, + ACTIONS(6005), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459035,27 +328118,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6149), 31, + ACTIONS(6003), 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_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -459063,6 +328150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -459077,11 +328165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [91062] = 3, + [41613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 19, + ACTIONS(5718), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459100,8 +328187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6224), 32, + ACTIONS(5720), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -459111,7 +328197,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -459133,11 +328224,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, - [91121] = 3, + anon_sym_DASH_GT, + [41676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 19, + ACTIONS(6009), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459156,8 +328247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6220), 32, + ACTIONS(6007), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -459167,7 +328257,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -459189,71 +328284,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [91180] = 26, + anon_sym_DASH_GT, + [41739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6436), 1, - anon_sym_EQ, - ACTIONS(6943), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6945), 1, - anon_sym_AMP_AMP, - ACTIONS(6947), 1, - anon_sym_PIPE, - ACTIONS(6951), 1, - anon_sym_AMP, - ACTIONS(6957), 1, - anon_sym_GT_EQ, - ACTIONS(6963), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6965), 1, - anon_sym_or, - ACTIONS(6967), 1, - anon_sym_and, - ACTIONS(6969), 1, - anon_sym_bitor, - ACTIONS(6971), 1, - anon_sym_bitand, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6939), 2, + ACTIONS(6013), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6949), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6959), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6941), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6953), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6955), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6434), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6011), 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_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -459269,10 +328337,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [91285] = 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, + [41802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 16, + ACTIONS(6017), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459287,9 +328363,11 @@ static const uint16_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(5547), 35, + ACTIONS(6015), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -459299,8 +328377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -459312,23 +328394,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [91344] = 3, + anon_sym_DASH_GT, + [41865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6204), 19, + ACTIONS(6021), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459347,8 +328427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6202), 32, + ACTIONS(6019), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -459358,7 +328437,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -459380,55 +328464,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [91403] = 6, + anon_sym_DASH_GT, + [41928] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, - anon_sym_LBRACE, - ACTIONS(6336), 1, - anon_sym_LPAREN2, - STATE(4412), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6001), 16, + ACTIONS(6023), 1, + sym_auto, + ACTIONS(6025), 1, + anon_sym_decltype, + STATE(2818), 1, + sym_decltype_auto, + ACTIONS(5018), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5999), 31, + ACTIONS(5020), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -459439,41 +328523,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [91468] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [41997] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6464), 19, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5821), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5823), 1, + anon_sym_AMP_AMP, + ACTIONS(5825), 1, + anon_sym_PIPE, + ACTIONS(5829), 1, + anon_sym_AMP, + ACTIONS(5835), 1, + anon_sym_GT_EQ, + ACTIONS(5841), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5843), 1, + anon_sym_or, + ACTIONS(5845), 1, + anon_sym_and, + ACTIONS(5847), 1, + anon_sym_bitor, + ACTIONS(5849), 1, + anon_sym_bitand, + ACTIONS(6029), 1, + anon_sym_EQ, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5817), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5827), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5819), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5831), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5833), 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(6462), 32, + ACTIONS(6027), 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_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -459488,81 +328611,38 @@ 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, - [91527] = 24, + [42106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5146), 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(5148), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6989), 1, anon_sym_STAR, - ACTIONS(6991), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6993), 1, - anon_sym_AMP, - ACTIONS(6995), 1, - anon_sym_COLON_COLON, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6488), 1, - sym__scope_resolution, - STATE(6839), 1, - sym__declarator, - STATE(9548), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4761), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5614), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -459573,10 +328653,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [91628] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [42169] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6510), 19, + ACTIONS(2208), 1, + anon_sym_LBRACE, + ACTIONS(6031), 1, + anon_sym_LPAREN2, + ACTIONS(6033), 1, + anon_sym_LBRACK, + ACTIONS(6035), 1, + sym_auto, + ACTIONS(6037), 1, + anon_sym_decltype, + STATE(3305), 1, + sym_new_declarator, + STATE(3315), 1, + sym_decltype_auto, + STATE(3555), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5388), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459591,22 +328706,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(6508), 32, + ACTIONS(5386), 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, @@ -459618,21 +328728,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, - [91687] = 3, + [42248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 19, + ACTIONS(5028), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459652,7 +328762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4872), 32, + ACTIONS(5030), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -459662,6 +328772,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -459684,27 +328796,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [91746] = 10, + [42311] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6185), 17, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(4564), 1, + anon_sym_LBRACE, + ACTIONS(4573), 1, + anon_sym_LT, + STATE(2852), 1, + sym_template_argument_list, + ACTIONS(4566), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459715,21 +328821,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6183), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4571), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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, @@ -459748,10 +328859,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [91819] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6242), 19, + ACTIONS(6041), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459770,8 +328885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6240), 32, + ACTIONS(6039), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -459781,7 +328895,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -459803,11 +328922,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, - [91878] = 3, + anon_sym_DASH_GT, + [42445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 16, + ACTIONS(4711), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459822,9 +328941,11 @@ static const uint16_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(5543), 35, + ACTIONS(4713), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -459834,8 +328955,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -459847,23 +328972,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [91937] = 3, + anon_sym_DASH_GT, + [42508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6514), 19, + ACTIONS(6045), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459882,8 +329005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6512), 32, + ACTIONS(6043), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -459893,7 +329015,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -459915,11 +329042,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, - [91996] = 3, + anon_sym_DASH_GT, + [42571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6518), 19, + ACTIONS(4566), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459938,8 +329065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6516), 32, + ACTIONS(4571), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -459949,7 +329075,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -459971,131 +329102,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [92055] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, - anon_sym_STAR, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_COLON_COLON, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6547), 1, - sym__scope_resolution, - STATE(7212), 1, - sym__declarator, - STATE(9588), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4049), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4758), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [92156] = 13, + anon_sym_DASH_GT, + [42634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6939), 2, + ACTIONS(6049), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6959), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6941), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6196), 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(6194), 25, + anon_sym_DOT, + ACTIONS(6047), 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_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -460115,87 +329159,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [92235] = 24, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [42697] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6929), 1, - anon_sym_STAR, - ACTIONS(6931), 1, - anon_sym_AMP_AMP, - ACTIONS(6933), 1, - anon_sym_AMP, - ACTIONS(6935), 1, + ACTIONS(4917), 1, anon_sym_COLON_COLON, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6477), 1, - sym__scope_resolution, - STATE(7359), 1, - sym__declarator, - STATE(9340), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4180), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4750), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [92336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 19, + ACTIONS(4955), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460215,7 +329188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4872), 32, + ACTIONS(4957), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -460225,6 +329198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -460247,117 +329221,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [92395] = 24, + [42762] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(6895), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6989), 1, - anon_sym_STAR, - ACTIONS(6991), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5821), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5823), 1, anon_sym_AMP_AMP, - ACTIONS(6993), 1, + ACTIONS(5825), 1, + anon_sym_PIPE, + ACTIONS(5829), 1, anon_sym_AMP, - ACTIONS(6995), 1, - anon_sym_COLON_COLON, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6488), 1, - sym__scope_resolution, - STATE(6822), 1, - sym__declarator, - STATE(9548), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4194), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4753), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [92496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5369), 16, + ACTIONS(5835), 1, + anon_sym_GT_EQ, + ACTIONS(5841), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5843), 1, + anon_sym_or, + ACTIONS(5845), 1, + anon_sym_and, + ACTIONS(5847), 1, + anon_sym_bitor, + ACTIONS(5849), 1, + anon_sym_bitand, + ACTIONS(5942), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5948), 1, + anon_sym_QMARK, + ACTIONS(6053), 1, + anon_sym_EQ, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5817), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5827), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5819), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5831), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5833), 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(5371), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(6051), 18, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -460368,23 +329306,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [92555] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [42875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 19, + ACTIONS(4566), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460403,8 +329331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6392), 32, + ACTIONS(4571), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -460414,7 +329341,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -460436,34 +329368,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, - [92614] = 12, + anon_sym_DASH_GT, + [42938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6939), 2, + ACTIONS(4566), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6941), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6196), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -460476,13 +329390,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6194), 25, + anon_sym_DOT, + ACTIONS(4571), 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_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -460502,10 +329425,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [92691] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [43001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 19, + ACTIONS(4759), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460524,8 +329451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6484), 32, + ACTIONS(4761), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -460535,7 +329461,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -460557,11 +329488,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [92750] = 3, + anon_sym_DASH_GT, + [43064] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6430), 19, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4806), 1, + anon_sym_virtual, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5912), 1, + sym_auto, + ACTIONS(5914), 1, + anon_sym_decltype, + STATE(3021), 1, + sym_decltype_auto, + ACTIONS(6055), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4796), 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(2898), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6057), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4794), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [43149] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4566), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460580,8 +329582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6428), 32, + ACTIONS(4571), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -460591,7 +329592,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -460613,11 +329619,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, - [92809] = 3, + anon_sym_DASH_GT, + [43212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5373), 16, + ACTIONS(6061), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460632,9 +329638,11 @@ static const uint16_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(5375), 35, + ACTIONS(6059), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -460644,8 +329652,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -460657,23 +329669,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [92868] = 3, + anon_sym_DASH_GT, + [43275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 19, + ACTIONS(6065), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460692,8 +329702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6466), 32, + ACTIONS(6063), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -460703,7 +329712,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -460725,11 +329739,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, - [92927] = 3, + anon_sym_DASH_GT, + [43338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 19, + ACTIONS(6069), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460748,8 +329762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6480), 32, + ACTIONS(6067), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -460759,7 +329772,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -460781,11 +329799,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [92986] = 3, + anon_sym_DASH_GT, + [43401] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6506), 19, + ACTIONS(5936), 1, + anon_sym_LPAREN2, + ACTIONS(5938), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5940), 1, + anon_sym_LBRACK, + STATE(3115), 1, + sym_parameter_list, + STATE(2814), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5584), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460805,17 +329834,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6504), 32, + ACTIONS(5582), 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, @@ -460838,10 +329865,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [93045] = 3, + [43474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 19, + ACTIONS(6073), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460860,8 +329887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5010), 32, + ACTIONS(6071), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -460871,7 +329897,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -460893,11 +329924,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, - [93104] = 3, + anon_sym_DASH_GT, + [43537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6238), 19, + ACTIONS(4566), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460916,8 +329947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6236), 32, + ACTIONS(4571), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -460927,7 +329957,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -460949,11 +329984,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, - [93163] = 3, + anon_sym_DASH_GT, + [43600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 19, + ACTIONS(4913), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460968,12 +330003,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(6500), 32, + ACTIONS(4915), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -460983,7 +330015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -460995,21 +330030,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_DASH_GT_STAR, - [93222] = 3, + [43663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 19, + ACTIONS(4566), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461028,8 +330067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5048), 32, + ACTIONS(4571), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -461039,7 +330077,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -461061,11 +330104,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, - [93281] = 3, + anon_sym_DASH_GT, + [43726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5388), 16, + ACTIONS(5763), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461080,9 +330123,11 @@ static const uint16_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(5390), 35, + ACTIONS(5761), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -461092,8 +330137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -461105,23 +330154,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [93340] = 3, + anon_sym_DASH_GT, + [43789] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6049), 21, + ACTIONS(5445), 1, + anon_sym___attribute__, + STATE(2937), 1, + sym_attribute_specifier, + ACTIONS(5473), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461136,14 +330187,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(6047), 30, + ACTIONS(5471), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -461151,7 +330201,8 @@ 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -461173,11 +330224,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [93399] = 3, + [43856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5425), 16, + ACTIONS(4719), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461192,9 +330245,11 @@ static const uint16_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(5427), 35, + ACTIONS(4721), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -461204,8 +330259,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -461217,23 +330276,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [93458] = 3, + anon_sym_DASH_GT, + [43919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 16, + ACTIONS(6077), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461248,9 +330305,11 @@ static const uint16_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(5431), 35, + ACTIONS(6075), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -461260,8 +330319,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -461273,30 +330336,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [93517] = 6, + anon_sym_DASH_GT, + [43982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, - anon_sym_LBRACE, - ACTIONS(6336), 1, - anon_sym_LPAREN2, - STATE(4452), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6057), 16, + ACTIONS(4743), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461311,18 +330365,26 @@ static const uint16_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(6055), 31, + ACTIONS(4745), 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -461334,21 +330396,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [93582] = 3, + anon_sym_DASH_GT, + [44045] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6053), 21, + ACTIONS(5445), 1, + anon_sym___attribute__, + STATE(2939), 1, + sym_attribute_specifier, + ACTIONS(5479), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461363,14 +330429,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(6051), 30, + ACTIONS(5477), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -461378,7 +330443,8 @@ 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -461400,145 +330466,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [93641] = 24, + [44112] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(6895), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6929), 1, - anon_sym_STAR, - ACTIONS(6931), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5821), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5823), 1, anon_sym_AMP_AMP, - ACTIONS(6933), 1, + ACTIONS(5825), 1, + anon_sym_PIPE, + ACTIONS(5829), 1, anon_sym_AMP, - ACTIONS(6935), 1, - anon_sym_COLON_COLON, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6477), 1, - sym__scope_resolution, - STATE(7334), 1, - sym__declarator, - STATE(9340), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4053), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4755), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [93742] = 4, + ACTIONS(5835), 1, + anon_sym_GT_EQ, + ACTIONS(5841), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5843), 1, + anon_sym_or, + ACTIONS(5845), 1, + anon_sym_and, + ACTIONS(5847), 1, + anon_sym_bitor, + ACTIONS(5849), 1, + anon_sym_bitand, + ACTIONS(5942), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5948), 1, + anon_sym_QMARK, + ACTIONS(6049), 1, + anon_sym_EQ, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5817), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5827), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5837), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5819), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5831), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5833), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6047), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [44225] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6997), 1, - anon_sym_typedef, - ACTIONS(3508), 6, + ACTIONS(2208), 1, + anon_sym_LBRACE, + ACTIONS(6031), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3506), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(6033), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + ACTIONS(6035), 1, sym_auto, + ACTIONS(6037), 1, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [93803] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5441), 16, + STATE(3184), 1, + sym_new_declarator, + STATE(3315), 1, + sym_decltype_auto, + STATE(3600), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5384), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461555,18 +330591,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5443), 35, + ACTIONS(5382), 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, @@ -461588,13 +330621,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [93862] = 3, + [44304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 16, + ACTIONS(6081), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461609,9 +330640,11 @@ static const uint16_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(5447), 35, + ACTIONS(6079), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -461621,8 +330654,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -461634,23 +330671,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [93921] = 3, + anon_sym_DASH_GT, + [44367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6101), 19, + ACTIONS(4836), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461669,8 +330704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6103), 32, + ACTIONS(2828), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -461680,7 +330714,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -461702,56 +330741,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [93980] = 14, + anon_sym_DASH_GT, + [44430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6963), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6939), 2, + ACTIONS(6085), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6959), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6941), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6196), 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(6194), 24, + anon_sym_DOT, + ACTIONS(6083), 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_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -461767,52 +330794,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, anon_sym_bitand, anon_sym_not_eq, - [94061] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [44493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 16, + ACTIONS(5028), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5386), 35, + ACTIONS(5030), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -461823,60 +330855,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [94120] = 16, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [44556] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4955), 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(4957), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6127), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(6957), 1, - anon_sym_GT_EQ, - ACTIONS(6963), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 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(6939), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6959), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6975), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6941), 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [44621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4865), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6955), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6196), 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(6194), 23, + anon_sym_DOT, + ACTIONS(4860), 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_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -461892,13 +330975,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [94205] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [44684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6234), 19, + ACTIONS(5115), 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(5117), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [44747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6089), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461913,12 +331061,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6232), 32, + sym_literal_suffix, + ACTIONS(6087), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -461928,7 +331082,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -461940,21 +331098,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, - [94264] = 3, + anon_sym_DASH_GT, + [44810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 19, + ACTIONS(6093), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461973,8 +331125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5068), 32, + ACTIONS(6091), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -461984,7 +331135,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -462006,11 +331162,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, - [94323] = 3, + anon_sym_DASH_GT, + [44873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6366), 19, + ACTIONS(6097), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462029,8 +331185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6364), 32, + ACTIONS(6095), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -462040,7 +331195,12 @@ 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -462062,11 +331222,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, - [94382] = 3, + anon_sym_DASH_GT, + [44936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 21, + ACTIONS(6101), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462076,27 +331236,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3990), 30, + ACTIONS(6099), 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_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -462104,6 +331268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -462118,11 +331283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [94441] = 3, + [44999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 19, + ACTIONS(5115), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462142,7 +331306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5064), 32, + ACTIONS(5117), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -462152,6 +331316,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -462174,24 +331340,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [94500] = 9, + [45062] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6125), 17, + ACTIONS(5445), 1, + anon_sym___attribute__, + STATE(2959), 1, + sym_attribute_specifier, + ACTIONS(5494), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462201,22 +331360,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(6123), 27, + anon_sym_DOT, + ACTIONS(5492), 33, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -462224,7 +331388,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -462237,26 +331400,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [94571] = 10, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [45129] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5936), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5938), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5940), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6167), 17, + STATE(3115), 1, + sym_parameter_list, + STATE(2814), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5565), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462274,14 +331437,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6165), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5563), 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -462300,66 +331466,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [94644] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [45202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6041), 21, + ACTIONS(5127), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6039), 30, + ACTIONS(5129), 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_LBRACK_LBRACK, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, 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, - [94703] = 3, + anon_sym_requires, + [45265] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5620), 16, + ACTIONS(2208), 1, + anon_sym_LBRACE, + ACTIONS(6031), 1, + anon_sym_LPAREN2, + ACTIONS(6033), 1, + anon_sym_LBRACK, + ACTIONS(6035), 1, + sym_auto, + ACTIONS(6037), 1, + anon_sym_decltype, + STATE(3258), 1, + sym_new_declarator, + STATE(3315), 1, + sym_decltype_auto, + STATE(3591), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5406), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462376,18 +331567,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5622), 35, + ACTIONS(5404), 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, @@ -462409,13 +331597,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [94762] = 3, + [45344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5612), 16, + ACTIONS(6105), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462430,9 +331616,11 @@ static const uint16_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(5614), 35, + ACTIONS(6103), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -462442,8 +331630,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -462455,23 +331647,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [94821] = 3, + anon_sym_DASH_GT, + [45407] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5341), 16, + ACTIONS(5445), 1, + anon_sym___attribute__, + STATE(2948), 1, + sym_attribute_specifier, + ACTIONS(5540), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462481,23 +331675,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(5343), 35, + ACTIONS(5538), 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, @@ -462507,77 +331703,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [94880] = 17, + anon_sym_GT2, + [45474] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6957), 1, - anon_sym_GT_EQ, - ACTIONS(6963), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6939), 2, + ACTIONS(5445), 1, + anon_sym___attribute__, + STATE(2949), 1, + sym_attribute_specifier, + ACTIONS(5504), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6959), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6941), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6953), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6955), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6196), 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(6194), 20, + anon_sym_DOT, + ACTIONS(5502), 33, 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, @@ -462585,96 +331765,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, - [94967] = 24, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [45541] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(2208), 1, + anon_sym_LBRACE, + ACTIONS(6031), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, + ACTIONS(6033), 1, anon_sym_LBRACK, - ACTIONS(6897), 1, - anon_sym_STAR, - ACTIONS(6899), 1, - anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_AMP, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6518), 1, - sym__scope_resolution, - STATE(6889), 1, - sym__declarator, - STATE(8941), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4177), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4740), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [95068] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5582), 16, + ACTIONS(6035), 1, + sym_auto, + ACTIONS(6037), 1, + anon_sym_decltype, + STATE(3246), 1, + sym_new_declarator, + STATE(3315), 1, + sym_decltype_auto, + STATE(3540), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5366), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462691,18 +331819,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5584), 35, + ACTIONS(5362), 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, @@ -462724,17 +331849,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [95127] = 5, + [45620] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6999), 1, - anon_sym_LT, - STATE(3906), 1, - sym_template_argument_list, - ACTIONS(6189), 19, + ACTIONS(5445), 1, + anon_sym___attribute__, + STATE(2955), 1, + sym_attribute_specifier, + ACTIONS(5487), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462746,6 +331869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -462754,7 +331878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6187), 30, + ACTIONS(5485), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -462762,6 +331886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -462784,11 +331909,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [95190] = 3, + [45687] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6398), 19, + ACTIONS(5445), 1, + anon_sym___attribute__, + STATE(2950), 1, + sym_attribute_specifier, + ACTIONS(5498), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462798,26 +331929,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(6396), 32, + ACTIONS(5496), 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, @@ -462826,7 +331957,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -462840,57 +331970,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [95249] = 14, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [45754] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6963), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6939), 2, + ACTIONS(5445), 1, + anon_sym___attribute__, + STATE(2952), 1, + sym_attribute_specifier, + ACTIONS(5483), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6959), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6941), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6378), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6376), 24, + anon_sym_DOT, + ACTIONS(5481), 33, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -462898,76 +332019,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, - [95330] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [45821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5561), 16, + ACTIONS(6109), 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(5563), 35, + ACTIONS(6107), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [95389] = 3, + [45884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5578), 16, + ACTIONS(5799), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462982,9 +332114,11 @@ static const uint16_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(5580), 35, + ACTIONS(5801), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -462994,8 +332128,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -463007,6 +332145,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, + [45947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5223), 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(5225), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -463017,74 +332209,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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [95448] = 26, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [46010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6370), 1, - anon_sym_EQ, - ACTIONS(6943), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6945), 1, - anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(5032), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(6951), 1, anon_sym_AMP, - ACTIONS(6957), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(6963), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5034), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(6965), 1, anon_sym_or, - ACTIONS(6967), 1, anon_sym_and, - ACTIONS(6969), 1, anon_sym_bitor, - ACTIONS(6971), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6939), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6949), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6959), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6975), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6941), 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [46072] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5138), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6953), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6955), 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(6368), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5140), 34, anon_sym_DOT_DOT_DOT, - anon_sym_COLON, + 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, @@ -463092,42 +332317,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [95553] = 3, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [46134] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6454), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(6117), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(6115), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(6113), 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(6111), 31, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_GT_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_compl, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(6456), 27, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [46200] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5115), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463144,25 +332415,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5117), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_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, - [95612] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [46262] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, - anon_sym_AMP_AMP, - ACTIONS(6983), 1, - anon_sym_and, - ACTIONS(5735), 18, + ACTIONS(5546), 1, + anon_sym___attribute__, + ACTIONS(5692), 1, + anon_sym_LBRACE, + STATE(2964), 1, + sym_enumerator_list, + STATE(3235), 1, + sym_attribute_specifier, + ACTIONS(5434), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463177,16 +332480,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_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5737), 31, + ACTIONS(5432), 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, @@ -463202,21 +332504,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [95675] = 3, + [46332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6153), 19, + ACTIONS(5127), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463226,26 +332530,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6155), 32, + ACTIONS(5129), 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, @@ -463254,7 +332559,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -463268,194 +332572,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [95734] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, + anon_sym_DASH_GT, + sym_auto, anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, - anon_sym_STAR, - ACTIONS(6899), 1, - anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_AMP, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6518), 1, - sym__scope_resolution, - STATE(6884), 1, - sym__declarator, - STATE(8941), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4738), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5614), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [95835] = 24, + anon_sym_GT2, + [46394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(2707), 1, - anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(5123), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(5852), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, - anon_sym_LBRACK, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6525), 1, - sym__scope_resolution, - STATE(7209), 1, - sym__declarator, - STATE(9661), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4752), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5614), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [95936] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7002), 1, - anon_sym_namespace, - ACTIONS(6107), 6, + anon_sym_DOT, + ACTIONS(5125), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6105), 44, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -463466,119 +332617,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [95997] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6929), 1, - anon_sym_STAR, - ACTIONS(6931), 1, - anon_sym_AMP_AMP, - ACTIONS(6933), 1, - anon_sym_AMP, - ACTIONS(6935), 1, - anon_sym_COLON_COLON, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6477), 1, - sym__scope_resolution, - STATE(7364), 1, - sym__declarator, - STATE(9340), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4759), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5614), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [96098] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [46456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7004), 1, - sym_identifier, - STATE(4182), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4934), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4936), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5147), 18, + ACTIONS(5119), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -463589,15 +332649,9 @@ 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_const, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5145), 19, + ACTIONS(5121), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -463609,155 +332663,104 @@ 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_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [96165] = 7, + anon_sym_requires, + [46518] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7006), 1, - sym_identifier, - STATE(4182), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(7009), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(7012), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5120), 18, + ACTIONS(5546), 1, + anon_sym___attribute__, + ACTIONS(5692), 1, + anon_sym_LBRACE, + STATE(2928), 1, + sym_enumerator_list, + STATE(3204), 1, + sym_attribute_specifier, + ACTIONS(5443), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_EQ, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5118), 19, + anon_sym_DASH_GT, + ACTIONS(5441), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [96232] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, + sym_auto, anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(2707), 1, - anon_sym_STAR, - ACTIONS(2709), 1, - anon_sym_AMP, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(5852), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, - anon_sym_LBRACK, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6525), 1, - sym__scope_resolution, - STATE(7212), 1, - sym__declarator, - STATE(9661), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4747), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5614), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [96333] = 3, + anon_sym_DASH_GT_STAR, + [46588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6406), 19, + ACTIONS(5090), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463777,7 +332780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6404), 32, + ACTIONS(5092), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -463787,6 +332790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -463809,74 +332813,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [96392] = 24, + [46650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5090), 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(5092), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(2707), 1, anon_sym_STAR, - ACTIONS(2709), 1, - anon_sym_AMP, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(5852), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, - anon_sym_LBRACK, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6525), 1, - sym__scope_resolution, - STATE(7172), 1, - sym__declarator, - STATE(9661), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4183), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4744), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -463887,145 +332857,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [96493] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6951), 1, - anon_sym_AMP, - ACTIONS(6957), 1, - anon_sym_GT_EQ, - ACTIONS(6963), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(6971), 1, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6939), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6959), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6975), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6941), 3, - anon_sym_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [46712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5160), 12, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6953), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6955), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6196), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6194), 19, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5162), 42, anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - [96584] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(2707), 1, anon_sym_STAR, - ACTIONS(2709), 1, - anon_sym_AMP, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(5852), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, - anon_sym_LBRACK, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6525), 1, - sym__scope_resolution, - STATE(7212), 1, - sym__declarator, - STATE(9661), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4178), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4747), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -464036,10 +332916,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [96685] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [46774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 16, + ACTIONS(5146), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464049,23 +332947,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(5588), 35, + ACTIONS(5148), 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, @@ -464075,84 +332976,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [96744] = 4, + anon_sym_GT2, + [46836] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7015), 1, - anon_sym_namespace, - ACTIONS(6107), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6105), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + ACTIONS(5677), 1, sym_auto, + ACTIONS(5679), 1, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [96805] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5437), 16, + STATE(2945), 1, + sym_decltype_auto, + ACTIONS(5018), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464162,23 +333012,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(5439), 35, + ACTIONS(5020), 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, @@ -464188,27 +333040,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [96864] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [46904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5417), 16, + ACTIONS(5040), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464223,9 +333073,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(5419), 35, + ACTIONS(5042), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -464248,11 +333101,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -464261,10 +333114,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [96923] = 3, + [46966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 16, + ACTIONS(5111), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464279,9 +333132,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(5559), 35, + ACTIONS(5113), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -464304,11 +333160,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -464317,10 +333173,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [96982] = 3, + [47028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5392), 16, + ACTIONS(5211), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464330,23 +333186,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(5394), 35, + ACTIONS(5213), 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, @@ -464356,104 +333215,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [97041] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6989), 1, - anon_sym_STAR, - ACTIONS(6991), 1, - anon_sym_AMP_AMP, - ACTIONS(6993), 1, - anon_sym_AMP, - ACTIONS(6995), 1, - anon_sym_COLON_COLON, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6488), 1, - sym__scope_resolution, - STATE(6818), 1, - sym__declarator, - STATE(9548), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4749), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5614), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [97142] = 3, + anon_sym_GT2, + [47090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5549), 16, + ACTIONS(5178), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464463,23 +333245,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(5551), 35, + ACTIONS(5180), 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, @@ -464489,31 +333274,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [97201] = 5, + anon_sym_GT2, + [47152] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7017), 1, - anon_sym_LT, - STATE(4287), 1, - sym_template_argument_list, - ACTIONS(6322), 19, + ACTIONS(6119), 1, + anon_sym_LPAREN2, + ACTIONS(6121), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6123), 1, + anon_sym_LBRACK, + STATE(3203), 1, + sym_parameter_list, + STATE(2930), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5565), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464525,6 +333317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -464533,15 +333326,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6320), 30, + ACTIONS(5563), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -464564,10 +333355,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [97264] = 3, + [47224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 19, + ACTIONS(4955), 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(4957), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [47286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5123), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464587,7 +333437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5198), 32, + ACTIONS(5125), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -464597,6 +333447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -464619,11 +333470,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [97323] = 3, + [47348] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6117), 21, + ACTIONS(6131), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(6129), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(6127), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464633,110 +333492,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, 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_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6115), 30, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + ACTIONS(6125), 31, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, - anon_sym_QMARK, + anon_sym_GT_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [97382] = 22, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [47414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6947), 1, + ACTIONS(5111), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(6951), 1, anon_sym_AMP, - ACTIONS(6957), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(6963), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5113), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(6969), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(6971), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6939), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [47476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5098), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6949), 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_const, + anon_sym_DOT, + ACTIONS(5100), 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_xor, - ACTIONS(6959), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6196), 3, - anon_sym_EQ, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - ACTIONS(6941), 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [47538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5164), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6953), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6955), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5166), 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -464751,10 +333701,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [97479] = 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, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [47600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3984), 21, + ACTIONS(5098), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464764,27 +333724,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(3986), 30, + anon_sym_DASH_GT, + ACTIONS(5100), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -464792,6 +333753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -464805,71 +333767,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [97538] = 24, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [47662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6945), 1, - anon_sym_AMP_AMP, - ACTIONS(6947), 1, - anon_sym_PIPE, - ACTIONS(6951), 1, - anon_sym_AMP, - ACTIONS(6957), 1, - anon_sym_GT_EQ, - ACTIONS(6963), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6967), 1, - anon_sym_and, - ACTIONS(6969), 1, - anon_sym_bitor, - ACTIONS(6971), 1, - anon_sym_bitand, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6196), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(6939), 2, + ACTIONS(5090), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6949), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6959), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6941), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6953), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6955), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 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(5092), 35, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -464884,26 +333819,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [97639] = 10, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [47724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5134), 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(5136), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6127), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(6973), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [47786] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5142), 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, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, + ACTIONS(5144), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [47848] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5090), 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(5092), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6975), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6196), 17, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [47910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4955), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464921,14 +334027,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6194), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4957), 35, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -464947,10 +334059,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [97712] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [47972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5207), 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(5209), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [48034] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6422), 19, + ACTIONS(6119), 1, + anon_sym_LPAREN2, + ACTIONS(6121), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6123), 1, + anon_sym_LBRACK, + STATE(3203), 1, + sym_parameter_list, + STATE(2930), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5584), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464960,27 +334148,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(6420), 32, + ACTIONS(5582), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -464988,7 +334173,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -465002,33 +334186,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [97771] = 11, + anon_sym_DASH_GT, + anon_sym_GT2, + [48106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6941), 3, + ACTIONS(5032), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6196), 14, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -465041,14 +334209,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6194), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5034), 35, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -465067,10 +334241,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [97846] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [48168] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6426), 19, + ACTIONS(5938), 1, + anon_sym_LBRACK_LBRACK, + STATE(2830), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5651), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465084,13 +334269,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(6424), 32, + ACTIONS(5649), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -465100,7 +334286,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, @@ -465123,39 +334308,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [97905] = 4, + [48234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7020), 1, - anon_sym_typedef, - ACTIONS(3508), 6, + ACTIONS(5259), 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(5261), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3506), 44, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -465166,40 +334349,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [97966] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6975), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6200), 17, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [48296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5196), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465209,22 +334380,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6198), 25, + anon_sym_DOT, + ACTIONS(5198), 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_COLON, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -465232,7 +334409,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -465243,14 +334419,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [98039] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [48358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6660), 1, - anon_sym_LT, - STATE(2306), 1, - sym_template_argument_list, - ACTIONS(6189), 17, + ACTIONS(4955), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465261,6 +334440,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, @@ -465268,7 +334448,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6187), 32, + anon_sym_DASH_GT, + ACTIONS(4957), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -465278,6 +334459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -465300,31 +334482,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [98102] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [48420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 16, + ACTIONS(5055), 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_const, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5594), 35, + ACTIONS(5057), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -465333,107 +334512,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_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, - [98161] = 20, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [48482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6951), 1, - anon_sym_AMP, - ACTIONS(6957), 1, - anon_sym_GT_EQ, - ACTIONS(6963), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6971), 1, - anon_sym_bitand, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6939), 2, + ACTIONS(5164), 12, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6949), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6959), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6941), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6953), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6955), 3, + anon_sym_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(6196), 4, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(6194), 19, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5166), 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_COLON, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - [98254] = 3, + anon_sym_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, + [48544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6452), 19, + ACTIONS(5086), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465453,7 +334626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6450), 32, + ACTIONS(5088), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -465463,6 +334636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -465485,92 +334659,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, - [98313] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, + sym_auto, anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6989), 1, - anon_sym_STAR, - ACTIONS(6991), 1, - anon_sym_AMP_AMP, - ACTIONS(6993), 1, - anon_sym_AMP, - ACTIONS(6995), 1, - anon_sym_COLON_COLON, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6488), 1, - sym__scope_resolution, - STATE(6818), 1, - sym__declarator, - STATE(9548), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4114), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4749), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [98414] = 5, + anon_sym_DASH_GT_STAR, + [48606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6999), 1, - anon_sym_LT, - STATE(2602), 1, - sym_template_argument_list, - ACTIONS(6189), 19, + ACTIONS(5082), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465580,24 +334675,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(6187), 30, + anon_sym_DASH_GT, + ACTIONS(5084), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -465606,6 +334704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -465619,25 +334718,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, - [98477] = 9, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [48668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6177), 17, + ACTIONS(5207), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465655,14 +334742,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6175), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5209), 35, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -465683,10 +334776,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [98548] = 3, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [48730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5028), 19, + ACTIONS(5059), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465706,7 +334803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5030), 32, + ACTIONS(5061), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -465716,6 +334813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -465738,171 +334836,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [98607] = 26, + [48792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6402), 1, - anon_sym_EQ, - ACTIONS(6943), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6945), 1, - anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(5086), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(6951), 1, anon_sym_AMP, - ACTIONS(6957), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(6963), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5088), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(6965), 1, anon_sym_or, - ACTIONS(6967), 1, anon_sym_and, - ACTIONS(6969), 1, anon_sym_bitor, - ACTIONS(6971), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6939), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6949), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6959), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6975), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6941), 3, - anon_sym_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [48854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5094), 12, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6953), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6955), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6400), 16, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5096), 42, anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [98712] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6278), 1, - anon_sym_EQ, - ACTIONS(6943), 1, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(6945), 1, anon_sym_AMP_AMP, - ACTIONS(6947), 1, - anon_sym_PIPE, - ACTIONS(6951), 1, - anon_sym_AMP, - ACTIONS(6957), 1, - anon_sym_GT_EQ, - ACTIONS(6961), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - ACTIONS(6963), 1, anon_sym_LT_EQ_GT, - ACTIONS(6965), 1, anon_sym_or, - ACTIONS(6967), 1, anon_sym_and, - ACTIONS(6969), 1, anon_sym_bitor, - ACTIONS(6971), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6169), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6939), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6949), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6959), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6975), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6941), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6953), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6955), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6254), 14, - anon_sym_COLON, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [98821] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [48916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 19, + ACTIONS(5028), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465912,26 +334970,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5044), 32, + ACTIONS(5030), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -465940,7 +334999,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -465954,11 +335012,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, - [98880] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [48978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6346), 19, + ACTIONS(5215), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465978,7 +335039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6344), 32, + ACTIONS(5217), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -465988,6 +335049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -466010,67 +335072,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [98939] = 3, + [49040] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5600), 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(5602), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2068), 1, + anon_sym_LBRACE, + ACTIONS(5592), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [98998] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5024), 19, + STATE(3158), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5659), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466090,11 +335105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5026), 32, + ACTIONS(5657), 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, @@ -466123,10 +335137,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [99057] = 3, + [49108] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 20, + ACTIONS(6119), 1, + anon_sym_LPAREN2, + ACTIONS(6121), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6123), 1, + anon_sym_LBRACK, + STATE(3203), 1, + sym_parameter_list, + STATE(2930), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5574), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466147,15 +335172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6470), 30, + ACTIONS(5572), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -466178,10 +335201,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [99115] = 3, + [49180] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 20, + ACTIONS(6133), 1, + anon_sym_LBRACK_LBRACK, + STATE(2830), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5634), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466191,26 +335219,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(4872), 30, + anon_sym_DASH_GT, + ACTIONS(5632), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -466218,6 +335247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -466231,78 +335261,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [99173] = 14, + anon_sym_DASH_GT_STAR, + [49246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - ACTIONS(6811), 1, - anon_sym_LT_EQ_GT, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7022), 2, + ACTIONS(5215), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7026), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7024), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6378), 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_EQ, - ACTIONS(6376), 26, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5217), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_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, - [99253] = 3, + 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, + [49308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6366), 20, + ACTIONS(5219), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466312,25 +335334,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(6364), 30, + anon_sym_DASH_GT, + ACTIONS(5221), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -466339,6 +335363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -466352,12 +335377,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, - [99311] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [49370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 20, + ACTIONS(5223), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466378,7 +335404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5010), 30, + ACTIONS(5225), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -466386,6 +335412,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -466408,11 +335436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [99369] = 3, + [49432] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 20, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4955), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466433,7 +335465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5048), 30, + ACTIONS(4957), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -466441,6 +335473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -466463,27 +335496,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [99427] = 10, + [49496] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, + ACTIONS(2068), 1, + anon_sym_LBRACE, + ACTIONS(5592), 1, anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, + STATE(3192), 2, sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6167), 14, + sym_initializer_list, + ACTIONS(5641), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466498,7 +335524,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6165), 27, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5639), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -466507,6 +335538,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, @@ -466518,100 +335550,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, - [99499] = 3, + [49564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6382), 20, + ACTIONS(5219), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6380), 30, + ACTIONS(5221), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [99557] = 3, + anon_sym_requires, + [49626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7030), 6, + ACTIONS(5094), 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(5096), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(7028), 44, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -466622,101 +335661,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [99615] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6402), 1, - anon_sym_EQ, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - ACTIONS(6811), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(7036), 1, - anon_sym_PIPE, - ACTIONS(7038), 1, - anon_sym_CARET, - ACTIONS(7040), 1, - anon_sym_AMP, - ACTIONS(7046), 1, - anon_sym_GT_EQ, - ACTIONS(7048), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7050), 1, anon_sym_xor, - ACTIONS(7052), 1, anon_sym_bitand, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7022), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7026), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7032), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7034), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7024), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7042), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7044), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6400), 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, - [99717] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [49688] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6346), 20, + ACTIONS(2068), 1, + anon_sym_LBRACE, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + STATE(3292), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5667), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466726,25 +335699,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(6344), 30, + anon_sym_DASH_GT, + ACTIONS(5665), 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, @@ -466753,6 +335726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -466766,59 +335740,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [99775] = 9, + anon_sym_DASH_GT_STAR, + [49756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6125), 14, + ACTIONS(5040), 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, - ACTIONS(6123), 29, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5042), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -466828,45 +335792,31 @@ 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, - [99845] = 7, + 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, + [49818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 1, - sym_literal_suffix, - STATE(3879), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(5527), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5529), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4286), 16, + ACTIONS(5267), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, + anon_sym_const, anon_sym_DOT, - ACTIONS(4278), 21, + ACTIONS(5269), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -466877,21 +335827,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [99911] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [49880] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6398), 20, + ACTIONS(3689), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(6136), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(3671), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466901,92 +335878,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6396), 30, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + ACTIONS(3669), 31, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_GT_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [99969] = 11, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [49946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3971), 1, - sym_attribute_specifier, - STATE(4517), 1, - sym_field_declaration_list, - STATE(7711), 1, - sym_virtual_specifier, - STATE(8566), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5679), 4, + ACTIONS(5200), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym_const, - ACTIONS(5677), 37, + anon_sym_DOT, + ACTIONS(5202), 42, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -466997,194 +335961,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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_virtual, - anon_sym_alignas, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [100043] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5111), 1, - anon_sym_virtual, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6248), 1, - sym_auto, - ACTIONS(6250), 1, - anon_sym_decltype, - ACTIONS(7056), 1, - anon_sym_SEMI, - STATE(3891), 1, - sym_decltype_auto, - ACTIONS(6246), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(6244), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5101), 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(3822), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5099), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [100125] = 3, + [50008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6212), 20, + ACTIONS(5227), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6214), 30, + ACTIONS(5229), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [100183] = 13, + anon_sym_requires, + [50070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7022), 2, + ACTIONS(5255), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7026), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7024), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6196), 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_EQ, - ACTIONS(6194), 27, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5257), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -467192,38 +336087,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [100261] = 3, + 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, + [50132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6107), 6, + ACTIONS(4955), 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(4957), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6105), 44, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -467234,24 +336138,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [100319] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [50194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 20, + ACTIONS(5168), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467261,25 +336169,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(6442), 30, + anon_sym_DASH_GT, + ACTIONS(5170), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -467288,6 +336198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -467301,12 +336212,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, - [100377] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [50256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6242), 20, + ACTIONS(5267), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467316,25 +336228,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(6240), 30, + anon_sym_DASH_GT, + ACTIONS(5269), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -467343,6 +336257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -467356,87 +336271,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [100435] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5111), 1, - anon_sym_virtual, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6248), 1, sym_auto, - ACTIONS(6250), 1, anon_sym_decltype, - ACTIONS(7058), 1, - anon_sym_SEMI, - STATE(3891), 1, - sym_decltype_auto, - ACTIONS(6246), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(6244), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5101), 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(3822), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5099), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [100517] = 7, + anon_sym_DASH_GT_STAR, + [50318] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7060), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7062), 1, - anon_sym_AMP_AMP, - ACTIONS(7064), 1, - anon_sym_or, - ACTIONS(7066), 1, - anon_sym_and, - ACTIONS(5743), 18, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + STATE(1726), 1, + sym_template_argument_list, + ACTIONS(5532), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467446,21 +336291,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_xor, anon_sym_DOT, - ACTIONS(5745), 28, + anon_sym_DASH_GT, + ACTIONS(5530), 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, @@ -467469,25 +336318,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [100583] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [50384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 20, + ACTIONS(5200), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467497,25 +336348,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(6224), 30, + anon_sym_DASH_GT, + ACTIONS(5202), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -467524,6 +336377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -467537,15 +336391,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, - [100641] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [50446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(4899), 16, + ACTIONS(5192), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467560,9 +336412,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(4904), 32, + ACTIONS(5194), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -467572,6 +336427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -467584,21 +336440,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [100701] = 3, + [50508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6308), 20, + ACTIONS(5119), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467608,25 +336466,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(6306), 30, + anon_sym_DASH_GT, + ACTIONS(5121), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -467635,6 +336495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -467648,158 +336509,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [100759] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6278), 1, - anon_sym_EQ, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - ACTIONS(6745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6789), 1, - anon_sym_QMARK, - ACTIONS(6811), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7036), 1, - anon_sym_PIPE, - ACTIONS(7038), 1, - anon_sym_CARET, - ACTIONS(7040), 1, - anon_sym_AMP, - ACTIONS(7046), 1, - anon_sym_GT_EQ, - ACTIONS(7048), 1, - anon_sym_bitor, - ACTIONS(7050), 1, - anon_sym_xor, - ACTIONS(7052), 1, - anon_sym_bitand, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7022), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7026), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7032), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7034), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7024), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7042), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7044), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6254), 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, - [100865] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5111), 1, - anon_sym_virtual, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6248), 1, sym_auto, - ACTIONS(6250), 1, anon_sym_decltype, - ACTIONS(7068), 1, - anon_sym_SEMI, - STATE(3891), 1, - sym_decltype_auto, - ACTIONS(6246), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(6244), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5101), 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(3822), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5099), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [100947] = 3, + anon_sym_DASH_GT_STAR, + [50570] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6159), 20, + ACTIONS(4594), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(4596), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467809,26 +336528,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(6157), 30, + anon_sym_DASH_GT, + ACTIONS(4589), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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, @@ -467836,6 +336557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -467849,12 +336571,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, - [101005] = 3, + anon_sym_DASH_GT_STAR, + [50634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6440), 20, + ACTIONS(5094), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467864,25 +336585,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(6438), 30, + anon_sym_DASH_GT, + ACTIONS(5096), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -467891,6 +336614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -467904,12 +336628,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, - [101063] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [50696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5058), 20, + ACTIONS(5227), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467919,25 +336644,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(5060), 30, + anon_sym_DASH_GT, + ACTIONS(5229), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -467946,6 +336673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -467959,28 +336687,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, - [101121] = 10, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [50758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6185), 14, + ACTIONS(5160), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467995,15 +336708,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6183), 27, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5162), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -468015,41 +336736,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [101193] = 12, + [50820] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7022), 2, + ACTIONS(6144), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(6142), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(6140), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7024), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6196), 9, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -468059,16 +336773,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6194), 27, - anon_sym_DOT_DOT_DOT, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(6138), 31, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -468079,52 +336796,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_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_DASH_GT_STAR, - [101269] = 6, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [50886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(7070), 1, + ACTIONS(5094), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - STATE(4357), 1, - sym_template_argument_list, - ACTIONS(4865), 11, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5096), 42, 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4860), 36, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -468135,20 +336851,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [101333] = 3, + anon_sym_GT2, + anon_sym_requires, + [50948] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 20, + ACTIONS(6119), 1, + anon_sym_LPAREN2, + ACTIONS(6121), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6123), 1, + anon_sym_LBRACK, + STATE(3203), 1, + sym_parameter_list, + STATE(2930), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5554), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468169,15 +336904,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5014), 30, + ACTIONS(5550), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -468200,54 +336933,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [101391] = 14, + [51020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - ACTIONS(6811), 1, - anon_sym_LT_EQ_GT, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7022), 2, + ACTIONS(5156), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7026), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7024), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6196), 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(6194), 26, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -468259,17 +336979,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [101471] = 3, + [51082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6294), 20, + ACTIONS(5271), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468290,7 +337016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6292), 30, + ACTIONS(5273), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -468298,6 +337024,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -468320,106 +337048,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [101529] = 16, + [51144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - ACTIONS(6811), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7046), 1, - anon_sym_GT_EQ, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7022), 2, + ACTIONS(5082), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7026), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7024), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7044), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6196), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(6194), 25, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5084), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [101613] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3986), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3984), 44, - anon_sym_AMP, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -468430,24 +337092,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [101671] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [51206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6422), 20, + ACTIONS(5094), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468457,25 +337123,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(6420), 30, + anon_sym_DASH_GT, + ACTIONS(5096), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -468484,6 +337152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -468497,12 +337166,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, - [101729] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [51268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 20, + ACTIONS(5255), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468512,25 +337182,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(6484), 30, + anon_sym_DASH_GT, + ACTIONS(5257), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -468539,6 +337211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -468552,136 +337225,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [101787] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3898), 1, - sym_attribute_specifier, - STATE(4512), 1, - sym_field_declaration_list, - STATE(7686), 1, - sym_virtual_specifier, - STATE(8584), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5667), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5665), 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_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [101861] = 25, + anon_sym_DASH_GT_STAR, + [51330] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6436), 1, - anon_sym_EQ, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - ACTIONS(6811), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7036), 1, - anon_sym_PIPE, - ACTIONS(7038), 1, - anon_sym_CARET, - ACTIONS(7040), 1, - anon_sym_AMP, - ACTIONS(7046), 1, - anon_sym_GT_EQ, - ACTIONS(7048), 1, - anon_sym_bitor, - ACTIONS(7050), 1, - anon_sym_xor, - ACTIONS(7052), 1, - anon_sym_bitand, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7022), 2, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(4564), 1, + anon_sym_LBRACE, + ACTIONS(4847), 1, + anon_sym_LT, + STATE(2944), 1, + sym_template_argument_list, + ACTIONS(4566), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7026), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7032), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7034), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7024), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7042), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7044), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6434), 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(4571), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -468693,59 +337280,52 @@ 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, - [101963] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - ACTIONS(6811), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7046), 1, - anon_sym_GT_EQ, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7022), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [51400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5259), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7026), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7024), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7042), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7044), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6196), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6194), 22, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5261), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -468757,16 +337337,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [102049] = 3, + [51462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2194), 20, + ACTIONS(5094), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468776,25 +337363,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(2192), 30, + anon_sym_DASH_GT, + ACTIONS(5096), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -468803,6 +337392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -468816,63 +337406,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, - [102107] = 19, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [51524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, + ACTIONS(5168), 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(5170), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6587), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - ACTIONS(6811), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(7040), 1, - anon_sym_AMP, - ACTIONS(7046), 1, - anon_sym_GT_EQ, - ACTIONS(7052), 1, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7022), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [51586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7026), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6196), 3, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(7024), 3, + 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(5194), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7042), 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___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7044), 3, + 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, + [51648] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2068), 1, + anon_sym_LBRACE, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + STATE(3264), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5610), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5608), 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, @@ -468884,69 +337578,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_DASH_GT_STAR, - [102197] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - ACTIONS(6811), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7038), 1, - anon_sym_CARET, - ACTIONS(7040), 1, - anon_sym_AMP, - ACTIONS(7046), 1, - anon_sym_GT_EQ, - ACTIONS(7050), 1, - anon_sym_xor, - ACTIONS(7052), 1, + anon_sym_bitor, anon_sym_bitand, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6196), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7022), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [51716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5263), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7026), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7024), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7042), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7044), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 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(5265), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -468958,71 +337635,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_DASH_GT_STAR, - [102291] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6196), 1, - anon_sym_EQ, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - ACTIONS(6811), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7036), 1, - anon_sym_PIPE, - ACTIONS(7038), 1, - anon_sym_CARET, - ACTIONS(7040), 1, - anon_sym_AMP, - ACTIONS(7046), 1, - anon_sym_GT_EQ, - ACTIONS(7048), 1, anon_sym_bitor, - ACTIONS(7050), 1, - anon_sym_xor, - ACTIONS(7052), 1, anon_sym_bitand, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7022), 2, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [51778] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5142), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7026), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7024), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7042), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7044), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5144), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -469034,13 +337694,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [102389] = 3, + [51840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6278), 20, + ACTIONS(5134), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469050,25 +337720,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(6254), 30, + anon_sym_DASH_GT, + ACTIONS(5136), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -469077,6 +337749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -469090,72 +337763,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [102447] = 24, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [51902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6196), 1, - anon_sym_EQ, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - ACTIONS(6811), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7036), 1, - anon_sym_PIPE, - ACTIONS(7038), 1, - anon_sym_CARET, - ACTIONS(7040), 1, - anon_sym_AMP, - ACTIONS(7046), 1, - anon_sym_GT_EQ, - ACTIONS(7048), 1, - anon_sym_bitor, - ACTIONS(7050), 1, - anon_sym_xor, - ACTIONS(7052), 1, - anon_sym_bitand, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7022), 2, + ACTIONS(6152), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(6150), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(6148), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7026), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7034), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7024), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7042), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7044), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 17, - anon_sym_DOT_DOT_DOT, + 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(6146), 31, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_TILDE, anon_sym_PIPE_PIPE, - anon_sym_QMARK, + 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, @@ -469166,12 +337813,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_or, + anon_sym_and_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, - [102547] = 3, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [51968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 20, + ACTIONS(5055), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469181,25 +337840,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(5198), 30, + anon_sym_DASH_GT, + ACTIONS(5057), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -469208,6 +337869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -469221,12 +337883,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [102605] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [52030] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 20, + ACTIONS(3697), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(6154), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(3693), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469236,201 +337905,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6446), 30, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + ACTIONS(3691), 31, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_GT_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [102663] = 3, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [52096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6452), 20, + ACTIONS(5059), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6450), 30, + ACTIONS(5061), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [102721] = 3, + anon_sym_requires, + [52158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6143), 20, + ACTIONS(5263), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6141), 30, + ACTIONS(5265), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [102779] = 6, + anon_sym_requires, + [52220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 4, + ACTIONS(5156), 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(5158), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7077), 5, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_explicit, - anon_sym_operator, - ACTIONS(7082), 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(7072), 28, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -469441,15 +338106,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - [102843] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [52282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 20, + ACTIONS(5090), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469470,7 +338148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5044), 30, + ACTIONS(5092), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -469478,6 +338156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -469500,11 +338179,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [102901] = 3, + [52343] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6162), 1, + anon_sym_AMP, + ACTIONS(6168), 1, + anon_sym_GT_EQ, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6176), 1, + anon_sym_bitand, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6156), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6170), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6178), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6158), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6164), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6166), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5724), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(5722), 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, + [52438] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 13, + ACTIONS(5912), 1, + sym_auto, + ACTIONS(5914), 1, + anon_sym_decltype, + STATE(3021), 1, + sym_decltype_auto, + ACTIONS(5020), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -469518,7 +338280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5541), 37, + ACTIONS(5018), 37, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -469545,171 +338307,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [102959] = 15, + anon_sym_try, + anon_sym_requires, + [52505] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5111), 1, - anon_sym_virtual, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6248), 1, - sym_auto, - ACTIONS(6250), 1, - anon_sym_decltype, - ACTIONS(7084), 1, - anon_sym_SEMI, - STATE(3891), 1, - sym_decltype_auto, - ACTIONS(6246), 5, + ACTIONS(2152), 1, + anon_sym_LBRACE, + ACTIONS(5673), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + STATE(3383), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5610), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(6244), 6, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5101), 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(3822), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5099), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [103041] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5111), 1, - anon_sym_virtual, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6248), 1, - sym_auto, - ACTIONS(6250), 1, - anon_sym_decltype, - ACTIONS(7086), 1, - anon_sym_SEMI, - STATE(3891), 1, - sym_decltype_auto, - ACTIONS(6246), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5608), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(6244), 6, - anon_sym_AMP, - anon_sym___based, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5101), 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(3822), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5099), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [103123] = 10, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [52572] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, + ACTIONS(5592), 1, anon_sym_LPAREN2, - ACTIONS(6587), 1, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6603), 1, + ACTIONS(6182), 1, anon_sym_DOT_STAR, - STATE(4107), 1, + STATE(3265), 1, sym_argument_list, - STATE(4108), 1, + STATE(3345), 1, sym_subscript_argument_list, - ACTIONS(6601), 2, + ACTIONS(6180), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6825), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6196), 14, + ACTIONS(5793), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469724,7 +338410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6194), 27, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5791), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -469744,50 +338433,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_DASH_GT_STAR, - [103195] = 11, + [52645] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, + ACTIONS(5592), 1, anon_sym_LPAREN2, - ACTIONS(6587), 1, + ACTIONS(5906), 1, + anon_sym_EQ, + ACTIONS(6162), 1, + anon_sym_AMP, + ACTIONS(6168), 1, + anon_sym_GT_EQ, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6603), 1, + ACTIONS(6174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6176), 1, + anon_sym_bitand, + ACTIONS(6182), 1, anon_sym_DOT_STAR, - STATE(4107), 1, + ACTIONS(6184), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6186), 1, + anon_sym_AMP_AMP, + ACTIONS(6188), 1, + anon_sym_PIPE, + ACTIONS(6190), 1, + anon_sym_or, + ACTIONS(6192), 1, + anon_sym_and, + ACTIONS(6194), 1, + anon_sym_bitor, + STATE(3265), 1, sym_argument_list, - STATE(4108), 1, + STATE(3345), 1, sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, + ACTIONS(6156), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6170), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6178), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7024), 3, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6196), 11, + ACTIONS(6164), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6166), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5904), 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, + [52752] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6156), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6170), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6178), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6158), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5902), 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, - ACTIONS(6194), 27, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5900), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -469807,187 +338586,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [103269] = 15, + [52835] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5111), 1, - anon_sym_virtual, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6248), 1, - sym_auto, - ACTIONS(6250), 1, - anon_sym_decltype, - ACTIONS(7088), 1, - anon_sym_SEMI, - STATE(3891), 1, - sym_decltype_auto, - ACTIONS(6246), 5, + ACTIONS(5592), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(6244), 6, + ACTIONS(6029), 1, + anon_sym_EQ, + ACTIONS(6162), 1, anon_sym_AMP, - anon_sym___based, + ACTIONS(6168), 1, + anon_sym_GT_EQ, + ACTIONS(6172), 1, anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5101), 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(3822), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5099), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [103351] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5111), 1, - anon_sym_virtual, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6248), 1, - sym_auto, - ACTIONS(6250), 1, - anon_sym_decltype, - ACTIONS(7090), 1, - anon_sym_SEMI, - STATE(3891), 1, - sym_decltype_auto, - ACTIONS(6246), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(6174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6176), 1, + anon_sym_bitand, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6184), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6186), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(6244), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5101), 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(3822), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5099), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [103433] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4930), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4932), 12, + ACTIONS(6188), 1, + anon_sym_PIPE, + ACTIONS(6190), 1, + anon_sym_or, + ACTIONS(6192), 1, + anon_sym_and, + ACTIONS(6194), 1, + anon_sym_bitor, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6156), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6170), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6178), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6158), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6164), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6166), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6027), 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, - ACTIONS(4278), 18, + anon_sym_DASH_GT_STAR, + [52942] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6178), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5809), 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(5807), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_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(4286), 18, + anon_sym_DASH_GT_STAR, + [53017] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2152), 1, + anon_sym_LBRACE, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + STATE(3393), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5667), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -470002,69 +338764,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - [103495] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3990), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(5665), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3988), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [103553] = 3, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [53084] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6430), 20, + ACTIONS(6196), 1, + anon_sym_LBRACK_LBRACK, + STATE(2889), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5634), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -470079,13 +338823,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(6428), 30, + ACTIONS(5632), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -470093,7 +338838,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -470116,14 +338860,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [103611] = 5, + [53149] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6338), 1, - anon_sym_LBRACK, - STATE(4367), 1, - sym_new_declarator, - ACTIONS(6096), 16, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(4564), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_LT, + STATE(3141), 1, + sym_template_argument_list, + ACTIONS(4566), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -470133,24 +338881,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(6094), 32, + ACTIONS(4571), 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, @@ -470158,167 +338907,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [103673] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3910), 1, - sym_attribute_specifier, - STATE(4488), 1, - sym_field_declaration_list, - STATE(7667), 1, - sym_virtual_specifier, - STATE(8590), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5655), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5653), 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_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [103747] = 27, + [53218] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6478), 1, - anon_sym_EQ, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - ACTIONS(6745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6789), 1, - anon_sym_QMARK, - ACTIONS(6811), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7036), 1, - anon_sym_PIPE, - ACTIONS(7038), 1, - anon_sym_CARET, - ACTIONS(7040), 1, - anon_sym_AMP, - ACTIONS(7046), 1, - anon_sym_GT_EQ, - ACTIONS(7048), 1, - anon_sym_bitor, - ACTIONS(7050), 1, - anon_sym_xor, - ACTIONS(7052), 1, - anon_sym_bitand, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7022), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7026), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7032), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7034), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7024), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7042), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7044), 3, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(6199), 1, anon_sym_LT, - ACTIONS(6476), 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, - [103853] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6300), 20, + STATE(1804), 1, + sym_template_argument_list, + ACTIONS(5732), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -470328,26 +338939,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(6298), 30, + anon_sym_DASH_GT, + ACTIONS(5730), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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, @@ -470355,6 +338967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -470368,12 +338981,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, + anon_sym_DASH_GT_STAR, + [53283] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4047), 1, + anon_sym_LPAREN2, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5422), 1, + anon_sym_STAR, + ACTIONS(5424), 1, + anon_sym_AMP_AMP, + ACTIONS(5426), 1, + anon_sym_AMP, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(5430), 1, + anon_sym_LBRACK, + STATE(3605), 1, + sym_parameter_list, + STATE(5245), 1, + sym__scope_resolution, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5849), 1, + sym__declarator, + STATE(6085), 1, + sym__abstract_declarator, + STATE(7308), 1, + sym_ms_based_modifier, + ACTIONS(6202), 2, + anon_sym_COMMA, anon_sym_GT2, - [103911] = 3, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [53388] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 20, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5686), 1, + anon_sym_LT, + STATE(2442), 1, + sym_template_argument_list, + ACTIONS(4059), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -470383,25 +339081,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(5064), 30, + anon_sym_DASH_GT, + ACTIONS(4067), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -470410,25 +339106,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [103969] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [53455] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 20, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5777), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -470438,26 +339149,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(5068), 30, + ACTIONS(5775), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -470465,6 +339173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -470477,17 +339186,13 @@ 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, - [104027] = 5, + anon_sym_DASH_GT_STAR, + [53528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7062), 1, - anon_sym_AMP_AMP, - ACTIONS(7066), 1, - anon_sym_and, - ACTIONS(5735), 19, + ACTIONS(6204), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(5763), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -470497,24 +339202,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(5737), 29, + ACTIONS(5761), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -470522,6 +339231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -470536,11 +339246,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [104089] = 3, + [53591] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6234), 20, + ACTIONS(6206), 1, + anon_sym_LT, + STATE(2616), 1, + sym_template_argument_list, + ACTIONS(5732), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -470550,18 +339263,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(6232), 30, + ACTIONS(5730), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -470569,7 +339280,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -470577,6 +339291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -470591,11 +339306,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [104147] = 3, + [53656] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6238), 20, + ACTIONS(2152), 1, + anon_sym_LBRACE, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + STATE(3368), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5641), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -470616,10 +339337,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6236), 30, + ACTIONS(5639), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -470647,26 +339367,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [104205] = 5, + [53723] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5464), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4806), 1, + anon_sym_virtual, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6209), 7, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(4796), 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(2901), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6211), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_EQ, - ACTIONS(5466), 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(4286), 17, + anon_sym_GT2, + ACTIONS(4794), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [53800] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6206), 1, + anon_sym_LT, + STATE(1685), 1, + sym_template_argument_list, + ACTIONS(5732), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -470677,14 +339451,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4278), 19, + ACTIONS(5730), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -470693,9 +339468,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -470704,83 +339493,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [104267] = 3, + [53865] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 20, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5942), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6053), 1, + anon_sym_EQ, + ACTIONS(6217), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6219), 1, + anon_sym_AMP_AMP, + ACTIONS(6221), 1, + anon_sym_PIPE, + ACTIONS(6225), 1, + anon_sym_AMP, + ACTIONS(6231), 1, + anon_sym_GT_EQ, + ACTIONS(6235), 1, + anon_sym_QMARK, + ACTIONS(6237), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6239), 1, + anon_sym_or, + ACTIONS(6241), 1, + anon_sym_and, + ACTIONS(6243), 1, + anon_sym_bitor, + ACTIONS(6245), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6213), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6223), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6215), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6227), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6229), 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(2889), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(6051), 16, 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_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, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [104325] = 12, + [53976] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7102), 1, + ACTIONS(6257), 1, anon_sym___attribute__, - ACTIONS(7105), 1, + ACTIONS(6260), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7108), 1, + ACTIONS(6263), 1, anon_sym___declspec, - ACTIONS(7111), 1, + ACTIONS(6266), 1, anon_sym_virtual, - ACTIONS(7114), 1, + ACTIONS(6269), 1, anon_sym_alignas, - ACTIONS(7117), 1, - anon_sym_explicit, - ACTIONS(7094), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(7092), 7, + ACTIONS(6247), 7, anon_sym_AMP, anon_sym___based, anon_sym_LBRACK, @@ -470788,7 +339597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - ACTIONS(7099), 9, + ACTIONS(6254), 9, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -470798,7 +339607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - STATE(4299), 11, + STATE(2901), 9, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -470807,10 +339616,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual, sym_alignas_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - ACTIONS(7096), 12, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6249), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6251), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -470823,72 +339642,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [104401] = 27, + [54053] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, + ACTIONS(5592), 1, anon_sym_LPAREN2, - ACTIONS(6494), 1, + ACTIONS(5946), 1, anon_sym_EQ, - ACTIONS(6587), 1, + ACTIONS(6162), 1, + anon_sym_AMP, + ACTIONS(6168), 1, + anon_sym_GT_EQ, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - ACTIONS(6745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6789), 1, - anon_sym_QMARK, - ACTIONS(6811), 1, + ACTIONS(6174), 1, anon_sym_LT_EQ_GT, - ACTIONS(7036), 1, + ACTIONS(6176), 1, + anon_sym_bitand, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6184), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6186), 1, + anon_sym_AMP_AMP, + ACTIONS(6188), 1, anon_sym_PIPE, - ACTIONS(7038), 1, - anon_sym_CARET, - ACTIONS(7040), 1, - anon_sym_AMP, - ACTIONS(7046), 1, - anon_sym_GT_EQ, - ACTIONS(7048), 1, + ACTIONS(6190), 1, + anon_sym_or, + ACTIONS(6192), 1, + anon_sym_and, + ACTIONS(6194), 1, anon_sym_bitor, - ACTIONS(7050), 1, - anon_sym_xor, - ACTIONS(7052), 1, - anon_sym_bitand, - STATE(4107), 1, + ACTIONS(6272), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6274), 1, + anon_sym_QMARK, + STATE(3265), 1, sym_argument_list, - STATE(4108), 1, + STATE(3345), 1, sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7022), 2, + ACTIONS(6156), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7026), 2, + ACTIONS(6160), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6170), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7032), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7034), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7024), 3, + ACTIONS(6178), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7042), 3, + ACTIONS(6164), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7044), 3, + ACTIONS(6166), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6492), 13, + ACTIONS(5944), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_STAR_EQ, @@ -470901,11 +339721,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_DASH_GT_STAR, - [104507] = 3, + [54164] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 20, + ACTIONS(5546), 1, + anon_sym___attribute__, + STATE(3242), 1, + sym_attribute_specifier, + ACTIONS(5540), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -470915,25 +339742,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(6500), 30, + anon_sym_DASH_GT, + ACTIONS(5538), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -470942,54 +339768,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [104565] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [54229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6278), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6276), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [54290] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6506), 20, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5894), 1, + anon_sym_EQ, + ACTIONS(6217), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6219), 1, + anon_sym_AMP_AMP, + ACTIONS(6221), 1, + anon_sym_PIPE, + ACTIONS(6225), 1, + anon_sym_AMP, + ACTIONS(6231), 1, + anon_sym_GT_EQ, + ACTIONS(6237), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6239), 1, + anon_sym_or, + ACTIONS(6241), 1, + anon_sym_and, + ACTIONS(6243), 1, + anon_sym_bitor, + ACTIONS(6245), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6213), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6223), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6215), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6227), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6229), 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(6504), 30, + ACTIONS(5892), 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, + [54397] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, anon_sym_LPAREN2, + ACTIONS(5839), 1, + anon_sym_EQ, + ACTIONS(6162), 1, + anon_sym_AMP, + ACTIONS(6168), 1, + anon_sym_GT_EQ, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6176), 1, + anon_sym_bitand, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6184), 1, anon_sym_PIPE_PIPE, + ACTIONS(6186), 1, anon_sym_AMP_AMP, + ACTIONS(6188), 1, + anon_sym_PIPE, + ACTIONS(6190), 1, + anon_sym_or, + ACTIONS(6192), 1, + anon_sym_and, + ACTIONS(6194), 1, + anon_sym_bitor, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6156), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6170), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6178), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6158), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6164), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_not_eq, + ACTIONS(6166), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5815), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -470997,54 +339997,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_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, + [54504] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5942), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5946), 1, + anon_sym_EQ, + ACTIONS(6217), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6219), 1, + anon_sym_AMP_AMP, + ACTIONS(6221), 1, + anon_sym_PIPE, + ACTIONS(6225), 1, + anon_sym_AMP, + ACTIONS(6231), 1, + anon_sym_GT_EQ, + ACTIONS(6235), 1, + anon_sym_QMARK, + ACTIONS(6237), 1, anon_sym_LT_EQ_GT, + ACTIONS(6239), 1, + anon_sym_or, + ACTIONS(6241), 1, + anon_sym_and, + ACTIONS(6243), 1, anon_sym_bitor, + ACTIONS(6245), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [104623] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6482), 20, + ACTIONS(6213), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6223), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6215), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6227), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6229), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5944), 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, + [54615] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5026), 1, + sym_literal_suffix, + STATE(2643), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(4097), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4099), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4069), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6480), 30, + ACTIONS(4061), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [54684] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(6029), 1, + anon_sym_EQ, + ACTIONS(6217), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6219), 1, + anon_sym_AMP_AMP, + ACTIONS(6221), 1, + anon_sym_PIPE, + ACTIONS(6225), 1, + anon_sym_AMP, + ACTIONS(6231), 1, + anon_sym_GT_EQ, + ACTIONS(6237), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6239), 1, + anon_sym_or, + ACTIONS(6241), 1, + anon_sym_and, + ACTIONS(6243), 1, + anon_sym_bitor, + ACTIONS(6245), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6213), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6223), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6215), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6227), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6229), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6027), 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, @@ -471052,31 +340224,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + [54791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4957), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_GT2, - [104681] = 6, + ACTIONS(4955), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_try, + anon_sym_requires, + [54852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, + ACTIONS(4917), 1, anon_sym_COLON_COLON, - ACTIONS(7070), 1, - anon_sym_LT, - STATE(4357), 1, - sym_template_argument_list, - ACTIONS(4302), 11, + ACTIONS(4957), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -471084,11 +340302,12 @@ static const uint16_t ts_small_parse_table[] = { 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(5673), 36, + ACTIONS(4955), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -471116,6 +340335,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, @@ -471125,65 +340346,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [104745] = 3, + anon_sym_try, + anon_sym_requires, + [54915] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4047), 1, + anon_sym_LPAREN2, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5457), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6392), 30, + STATE(3550), 1, + sym_parameter_list, + STATE(5245), 1, + sym__scope_resolution, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5849), 1, + sym__declarator, + STATE(6089), 1, + sym__abstract_declarator, + STATE(7308), 1, + sym_ms_based_modifier, + ACTIONS(6202), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [55020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5030), 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(5028), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [55081] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(6172), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6178), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(6180), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_GT2, - [104803] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2198), 20, + ACTIONS(5698), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -471193,26 +340515,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(2196), 30, + ACTIONS(5696), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -471220,6 +340539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -471230,15 +340550,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [104861] = 3, + anon_sym_DASH_GT_STAR, + [55156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6386), 20, + ACTIONS(5040), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -471259,7 +340575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6384), 30, + ACTIONS(5042), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -471267,6 +340583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -471289,95 +340606,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [104919] = 3, + [55217] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6390), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6388), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(6237), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [104977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6468), 20, + ACTIONS(6213), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6215), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(5724), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6466), 30, + ACTIONS(5722), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -471385,174 +340668,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_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [105035] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6671), 1, - anon_sym_COLON_COLON, - ACTIONS(7126), 1, - anon_sym___attribute__, - ACTIONS(7129), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7132), 1, - anon_sym___declspec, - ACTIONS(7135), 1, - anon_sym_virtual, - ACTIONS(7138), 1, - anon_sym_alignas, - ACTIONS(7123), 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(4310), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(7120), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6669), 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, - [105109] = 3, + [55300] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5024), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_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, + ACTIONS(5364), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(6231), 1, + anon_sym_GT_EQ, + ACTIONS(6237), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [105167] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7141), 1, - anon_sym_LT, - STATE(3531), 1, - sym_template_argument_list, - ACTIONS(6322), 17, + ACTIONS(6213), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6215), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6229), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5724), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6320), 31, + ACTIONS(5722), 25, anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, + 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_COLON, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -471567,47 +340746,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [55387] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(6231), 1, + anon_sym_GT_EQ, + ACTIONS(6237), 1, + anon_sym_LT_EQ_GT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [105229] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5028), 20, + ACTIONS(6213), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6215), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6227), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6229), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5724), 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(5030), 30, + ACTIONS(5722), 22, anon_sym_DOT_DOT_DOT, 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_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -471615,109 +340812,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [105287] = 3, + [55476] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6464), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6462), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(6225), 1, + anon_sym_AMP, + ACTIONS(6231), 1, + anon_sym_GT_EQ, + ACTIONS(6237), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, + ACTIONS(6245), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [105345] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6304), 20, + ACTIONS(6213), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6215), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6227), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6229), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5724), 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(6302), 30, + ACTIONS(5722), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -471725,83 +340887,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [105403] = 25, + [55569] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, + ACTIONS(5592), 1, anon_sym_LPAREN2, - ACTIONS(6370), 1, + ACTIONS(5894), 1, anon_sym_EQ, - ACTIONS(6587), 1, + ACTIONS(6162), 1, + anon_sym_AMP, + ACTIONS(6168), 1, + anon_sym_GT_EQ, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - ACTIONS(6811), 1, + ACTIONS(6174), 1, anon_sym_LT_EQ_GT, - ACTIONS(7036), 1, + ACTIONS(6176), 1, + anon_sym_bitand, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6184), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6186), 1, + anon_sym_AMP_AMP, + ACTIONS(6188), 1, anon_sym_PIPE, - ACTIONS(7038), 1, - anon_sym_CARET, - ACTIONS(7040), 1, - anon_sym_AMP, - ACTIONS(7046), 1, - anon_sym_GT_EQ, - ACTIONS(7048), 1, + ACTIONS(6190), 1, + anon_sym_or, + ACTIONS(6192), 1, + anon_sym_and, + ACTIONS(6194), 1, anon_sym_bitor, - ACTIONS(7050), 1, - anon_sym_xor, - ACTIONS(7052), 1, - anon_sym_bitand, - STATE(4107), 1, + STATE(3265), 1, sym_argument_list, - STATE(4108), 1, + STATE(3345), 1, sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7022), 2, + ACTIONS(6156), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7026), 2, + ACTIONS(6160), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6170), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7032), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7034), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7024), 3, + ACTIONS(6178), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7042), 3, + ACTIONS(6164), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7044), 3, + ACTIONS(6166), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6368), 15, + ACTIONS(5892), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -471816,24 +340972,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_DASH_GT_STAR, - [105505] = 9, + [55676] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - ACTIONS(6587), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - STATE(4107), 1, - sym_argument_list, - STATE(4108), 1, - sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6177), 14, + ACTIONS(5546), 1, + anon_sym___attribute__, + STATE(3239), 1, + sym_attribute_specifier, + ACTIONS(5504), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -471848,15 +340998,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6175), 29, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5502), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -471877,66 +341032,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [105575] = 3, + [55741] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6406), 20, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6049), 1, + anon_sym_EQ, + ACTIONS(6162), 1, + anon_sym_AMP, + ACTIONS(6168), 1, + anon_sym_GT_EQ, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6176), 1, + anon_sym_bitand, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6184), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6186), 1, + anon_sym_AMP_AMP, + ACTIONS(6188), 1, + anon_sym_PIPE, + ACTIONS(6190), 1, + anon_sym_or, + ACTIONS(6192), 1, + anon_sym_and, + ACTIONS(6194), 1, + anon_sym_bitor, + ACTIONS(6272), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6274), 1, + anon_sym_QMARK, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6156), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6170), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6178), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6164), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6166), 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(6404), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(6047), 16, 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_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, - [105633] = 3, + anon_sym_DASH_GT_STAR, + [55852] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 20, + ACTIONS(2152), 1, + anon_sym_LBRACE, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + STATE(3356), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5659), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -471957,10 +341150,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5056), 30, + ACTIONS(5657), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -471988,10 +341180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [105691] = 3, + [55919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 20, + ACTIONS(5164), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -472012,7 +341204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5056), 30, + ACTIONS(5166), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -472020,6 +341212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -472042,40 +341235,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [105749] = 3, + [55980] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6426), 20, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(6225), 1, + anon_sym_AMP, + ACTIONS(6231), 1, + anon_sym_GT_EQ, + ACTIONS(6237), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6245), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6213), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6223), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6215), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6227), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6229), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5724), 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(6424), 30, + ACTIONS(5722), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -472083,25 +341305,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [105807] = 3, + [56075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 20, + ACTIONS(4955), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -472122,7 +341337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6408), 30, + ACTIONS(4957), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -472130,6 +341345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -472152,95 +341368,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [105865] = 3, + [56136] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6414), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(6221), 1, anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(6225), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(6231), 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, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6412), 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, + ACTIONS(6237), 1, anon_sym_LT_EQ_GT, + ACTIONS(6243), 1, anon_sym_bitor, + ACTIONS(6245), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [105923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5054), 20, + ACTIONS(6213), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(6223), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(6233), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5724), 3, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5056), 30, + ACTIONS(6215), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6227), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6229), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -472248,25 +341441,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, - [105981] = 3, + [56235] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6518), 20, + ACTIONS(5546), 1, + anon_sym___attribute__, + STATE(3236), 1, + sym_attribute_specifier, + ACTIONS(5498), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -472276,25 +341465,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(6516), 30, + anon_sym_DASH_GT, + ACTIONS(5496), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -472303,109 +341491,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [106039] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [56300] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6101), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(6219), 1, + anon_sym_AMP_AMP, + ACTIONS(6221), 1, anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(6225), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(6231), 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, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6103), 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, + ACTIONS(6237), 1, anon_sym_LT_EQ_GT, + ACTIONS(6241), 1, + anon_sym_and, + ACTIONS(6243), 1, anon_sym_bitor, + ACTIONS(6245), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [106097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6171), 20, + ACTIONS(5724), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(6213), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6223), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6215), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6227), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6229), 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(6173), 30, + ACTIONS(5722), 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_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -472413,25 +341580,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [106155] = 3, + [56403] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6208), 20, + ACTIONS(6121), 1, + anon_sym_LBRACK_LBRACK, + STATE(2889), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5651), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -472446,13 +341610,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(6206), 30, + ACTIONS(5649), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -472460,7 +341625,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -472483,181 +341647,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [106213] = 3, + [56468] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_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(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(4872), 30, + ACTIONS(5942), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(6049), 1, + anon_sym_EQ, + ACTIONS(6217), 1, anon_sym_PIPE_PIPE, + ACTIONS(6219), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, + ACTIONS(6221), 1, + anon_sym_PIPE, + ACTIONS(6225), 1, + anon_sym_AMP, + ACTIONS(6231), 1, + anon_sym_GT_EQ, + ACTIONS(6235), 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, + ACTIONS(6237), 1, anon_sym_LT_EQ_GT, + ACTIONS(6239), 1, + anon_sym_or, + ACTIONS(6241), 1, + anon_sym_and, + ACTIONS(6243), 1, anon_sym_bitor, + ACTIONS(6245), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [106271] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 20, + ACTIONS(6213), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6223), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6215), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6227), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6229), 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(4872), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(6047), 16, 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_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, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [106329] = 25, + [56579] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6498), 1, - anon_sym_EQ, - ACTIONS(6587), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_DOT_STAR, - ACTIONS(6811), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7036), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5839), 1, + anon_sym_EQ, + ACTIONS(6217), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6219), 1, + anon_sym_AMP_AMP, + ACTIONS(6221), 1, anon_sym_PIPE, - ACTIONS(7038), 1, - anon_sym_CARET, - ACTIONS(7040), 1, + ACTIONS(6225), 1, anon_sym_AMP, - ACTIONS(7046), 1, + ACTIONS(6231), 1, anon_sym_GT_EQ, - ACTIONS(7048), 1, + ACTIONS(6237), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6239), 1, + anon_sym_or, + ACTIONS(6241), 1, + anon_sym_and, + ACTIONS(6243), 1, anon_sym_bitor, - ACTIONS(7050), 1, - anon_sym_xor, - ACTIONS(7052), 1, + ACTIONS(6245), 1, anon_sym_bitand, - STATE(4107), 1, + STATE(2697), 1, sym_argument_list, - STATE(4108), 1, + STATE(2703), 1, sym_subscript_argument_list, - ACTIONS(6601), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6825), 2, + ACTIONS(5702), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7022), 2, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6213), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7026), 2, + ACTIONS(6223), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7032), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7034), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7024), 3, + ACTIONS(6215), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7042), 3, + ACTIONS(6227), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7044), 3, + ACTIONS(6229), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6496), 15, + ACTIONS(5815), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -472669,11 +341808,17 @@ 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, - [106431] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [56686] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 20, + ACTIONS(5546), 1, + anon_sym___attribute__, + STATE(3271), 1, + sym_attribute_specifier, + ACTIONS(5483), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -472683,25 +341828,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(5036), 30, + anon_sym_DASH_GT, + ACTIONS(5481), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -472710,25 +341854,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [106489] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [56751] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6418), 20, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6178), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5759), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -472738,26 +341900,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(6416), 30, + ACTIONS(5757), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -472765,6 +341924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -472775,15 +341935,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, - [106547] = 3, + anon_sym_DASH_GT_STAR, + [56826] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 20, + ACTIONS(5546), 1, + anon_sym___attribute__, + STATE(3233), 1, + sym_attribute_specifier, + ACTIONS(5494), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -472793,25 +341953,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(4872), 30, + anon_sym_DASH_GT, + ACTIONS(5492), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -472820,88 +341979,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [106605] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3930), 1, - sym_attribute_specifier, - STATE(4503), 1, - sym_field_declaration_list, - STATE(7697), 1, - sym_virtual_specifier, - STATE(8573), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5671), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5669), 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_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [106679] = 3, + anon_sym_DASH_GT_STAR, + [56891] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 20, + ACTIONS(5546), 1, + anon_sym___attribute__, + STATE(3182), 1, + sym_attribute_specifier, + ACTIONS(5524), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -472911,25 +342013,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_EQ, anon_sym_DOT, - ACTIONS(6224), 30, + anon_sym_DASH_GT, + ACTIONS(5522), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -472938,25 +342039,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [106737] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [56956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6490), 20, + ACTIONS(5168), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -472977,7 +342080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6488), 30, + ACTIONS(5170), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -472985,6 +342088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -473007,11 +342111,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [106795] = 3, + [57017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 20, + ACTIONS(5086), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -473032,7 +342138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4872), 30, + ACTIONS(5088), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -473040,6 +342146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -473062,11 +342169,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [106853] = 3, + [57078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 20, + ACTIONS(5192), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -473087,7 +342196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4872), 30, + ACTIONS(5194), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -473095,6 +342204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -473117,11 +342227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [106911] = 3, + [57139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6153), 20, + ACTIONS(5082), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -473142,7 +342254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6155), 30, + ACTIONS(5084), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -473150,6 +342262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -473172,11 +342285,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [106969] = 3, + [57200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 20, + ACTIONS(5207), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -473197,7 +342312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5052), 30, + ACTIONS(5209), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -473205,6 +342320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -473227,11 +342343,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [107027] = 3, + [57261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 20, + ACTIONS(5059), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -473252,7 +342370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6220), 30, + ACTIONS(5061), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -473260,6 +342378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -473282,43 +342401,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [107085] = 15, + [57322] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5111), 1, - anon_sym_virtual, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6248), 1, - sym_auto, - ACTIONS(6250), 1, - anon_sym_decltype, - ACTIONS(7144), 1, - anon_sym_SEMI, - STATE(3891), 1, - sym_decltype_auto, - ACTIONS(6246), 5, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + STATE(3122), 1, + sym_attribute_specifier, + STATE(3619), 1, + sym_field_declaration_list, + STATE(6404), 1, + sym_virtual_specifier, + STATE(6880), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5312), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(6244), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5314), 32, anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5101), 9, - anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -473327,18 +342452,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - STATE(3822), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5099), 12, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -473350,10 +342463,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [107167] = 3, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [57399] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6354), 20, + ACTIONS(4594), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(4596), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -473363,25 +342486,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(6352), 30, + anon_sym_DASH_GT, + ACTIONS(4589), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -473390,6 +342514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -473403,79 +342528,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, - [107225] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5111), 1, - anon_sym_virtual, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6248), 1, - sym_auto, - ACTIONS(6250), 1, - anon_sym_decltype, - ACTIONS(7146), 1, - anon_sym_SEMI, - STATE(3891), 1, - sym_decltype_auto, - ACTIONS(6246), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(6244), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5101), 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(3822), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5099), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [107307] = 3, + anon_sym_DASH_GT_STAR, + [57462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6204), 20, + ACTIONS(5055), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -473496,7 +342553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6202), 30, + ACTIONS(5057), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -473504,6 +342561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -473526,66 +342584,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [107365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7150), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(7148), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [107423] = 3, + anon_sym_GT2, + [57523] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6350), 20, + ACTIONS(6199), 1, + anon_sym_LT, + STATE(2852), 1, + sym_template_argument_list, + ACTIONS(5732), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -473595,26 +342604,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(6348), 30, + anon_sym_DASH_GT, + ACTIONS(5730), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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, @@ -473622,6 +342632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -473635,12 +342646,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, - [107481] = 3, + anon_sym_DASH_GT_STAR, + [57588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6510), 20, + ACTIONS(5263), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -473661,7 +342671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6508), 30, + ACTIONS(5265), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -473669,6 +342679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -473691,11 +342702,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [107539] = 3, + [57649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6230), 20, + ACTIONS(5259), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -473716,7 +342729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6228), 30, + ACTIONS(5261), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -473724,6 +342737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -473746,11 +342760,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [107597] = 3, + [57710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6514), 20, + ACTIONS(5255), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -473771,7 +342787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6512), 30, + ACTIONS(5257), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -473779,6 +342795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -473801,11 +342818,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [107655] = 3, + [57771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6460), 20, + ACTIONS(5227), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -473826,7 +342845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6458), 30, + ACTIONS(5229), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -473834,6 +342853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -473856,40 +342876,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [107713] = 3, + [57832] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 20, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(6237), 1, + anon_sym_LT_EQ_GT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6213), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6215), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(5902), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(5040), 30, + ACTIONS(5900), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -473897,25 +342938,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [107771] = 3, + [57915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4888), 18, + ACTIONS(5267), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -473925,25 +342961,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(4890), 31, + ACTIONS(5269), 33, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -473951,7 +342989,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -473966,10 +343003,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [107828] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6456), 23, + ACTIONS(5200), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -473979,30 +343019,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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(6454), 26, + ACTIONS(5202), 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, @@ -474011,132 +343047,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [107885] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(7070), 1, - anon_sym_LT, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(4357), 1, - sym_template_argument_list, - ACTIONS(7152), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(4302), 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(5673), 36, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [107952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4897), 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(4892), 36, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [108009] = 3, + [58037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 18, + ACTIONS(5094), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -474146,25 +343077,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(4854), 31, + ACTIONS(5096), 33, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -474172,7 +343105,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -474187,74 +343119,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [108066] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(2334), 1, - sym_template_argument_list, - ACTIONS(5673), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4302), 41, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_try, - anon_sym_requires, - [108129] = 6, + anon_sym_GT2, + [58098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5254), 1, - anon_sym_LBRACK, - ACTIONS(5248), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(4286), 16, + ACTIONS(5160), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -474264,21 +343135,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4278), 29, + ACTIONS(5162), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -474286,84 +343163,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [108192] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(2334), 1, - sym_template_argument_list, - ACTIONS(4860), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4865), 41, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_try, - anon_sym_requires, - [108255] = 4, + anon_sym_GT2, + [58159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5685), 1, - sym_literal_suffix, - ACTIONS(4286), 22, + ACTIONS(5156), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -474373,29 +343193,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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4278), 26, + ACTIONS(5158), 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, @@ -474404,73 +343221,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [108314] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [58220] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5600), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5906), 1, + anon_sym_EQ, + ACTIONS(6217), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6219), 1, + anon_sym_AMP_AMP, + ACTIONS(6221), 1, anon_sym_PIPE, + ACTIONS(6225), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, + ACTIONS(6231), 1, + anon_sym_GT_EQ, + ACTIONS(6237), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6239), 1, anon_sym_or, + ACTIONS(6241), 1, anon_sym_and, + ACTIONS(6243), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6245), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5602), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6213), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6223), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6215), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(6227), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_not_eq, + ACTIONS(6229), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5904), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, + 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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [108371] = 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, + [58327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4856), 18, + ACTIONS(5219), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -474480,25 +343332,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(4858), 31, + ACTIONS(5221), 33, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -474506,7 +343360,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -474521,122 +343374,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [108428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7150), 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(7148), 36, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, + sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [108485] = 7, + anon_sym_GT2, + [58388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5702), 1, - sym_literal_suffix, - STATE(4101), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(4934), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4936), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4286), 17, + ACTIONS(5215), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + 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(4278), 19, + ACTIONS(5217), 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [108550] = 3, + [58449] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6151), 16, + ACTIONS(5546), 1, + anon_sym___attribute__, + STATE(3257), 1, + sym_attribute_specifier, + ACTIONS(5487), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -474653,7 +343459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6149), 33, + ACTIONS(5485), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -474686,173 +343492,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [108607] = 3, + [58514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 18, + ACTIONS(5094), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_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_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(5594), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [108664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7030), 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(7028), 36, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [108721] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5553), 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_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5555), 31, + ACTIONS(5096), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_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, - [108778] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [58575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4844), 18, + ACTIONS(5094), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -474862,25 +343566,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(4846), 31, + ACTIONS(5096), 33, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -474888,7 +343594,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -474903,126 +343608,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [108835] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(7156), 1, - anon_sym_LBRACE, - ACTIONS(7158), 1, - anon_sym_COLON, - STATE(3969), 1, - sym_attribute_specifier, - STATE(4419), 1, - sym__enum_base_clause, - STATE(4487), 1, - sym_enumerator_list, - ACTIONS(5792), 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(5794), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [108904] = 3, + anon_sym_GT2, + [58636] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5561), 18, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6156), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6170), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6178), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6158), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5724), 10, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5563), 31, + ACTIONS(5722), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [108961] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5681), 1, - anon_sym_EQ, - ACTIONS(5683), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -475036,107 +343674,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(4286), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4278), 18, - 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_COLON, - anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [109022] = 9, + anon_sym_DASH_GT_STAR, + [58717] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, + ACTIONS(5546), 1, anon_sym___attribute__, - ACTIONS(7156), 1, - anon_sym_LBRACE, - ACTIONS(7158), 1, - anon_sym_COLON, - STATE(3962), 1, + STATE(3279), 1, sym_attribute_specifier, - STATE(4387), 1, - sym__enum_base_clause, - STATE(4499), 1, - sym_enumerator_list, - ACTIONS(5800), 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(5802), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [109091] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 18, + ACTIONS(5479), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475151,20 +343701,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(4850), 31, + anon_sym_DASH_GT, + ACTIONS(5477), 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -475176,26 +343726,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [109148] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [58782] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6215), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(5724), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -475208,17 +343777,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(4879), 31, + ACTIONS(5722), 27, anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, + 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_COLON, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -475237,19 +343805,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [58859] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6178), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(6180), 2, + anon_sym_DOT, anon_sym_DASH_GT, - [109205] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4884), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(5724), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -475262,17 +343843,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(4886), 31, + ACTIONS(5722), 27, anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -475291,14 +343870,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, - [109262] = 3, + anon_sym_DASH_GT_STAR, + [58936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 16, + ACTIONS(5546), 1, + anon_sym___attribute__, + STATE(3278), 1, + sym_attribute_specifier, + ACTIONS(5473), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475315,7 +343895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5048), 32, + ACTIONS(5471), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -475325,6 +343905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -475347,64 +343928,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [109318] = 3, + [59001] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5561), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6162), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(6168), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6176), 1, + anon_sym_bitand, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6188), 1, + anon_sym_PIPE, + ACTIONS(6194), 1, + anon_sym_bitor, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6156), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6170), 2, + anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6178), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5724), 3, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(6158), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6164), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5563), 29, + ACTIONS(6166), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, anon_sym_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, - [109374] = 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, + anon_sym_DASH_GT_STAR, + [59100] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6460), 16, + ACTIONS(5546), 1, + anon_sym___attribute__, + STATE(3206), 1, + sym_attribute_specifier, + ACTIONS(5528), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475421,7 +344032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6458), 32, + ACTIONS(5526), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -475431,6 +344042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -475453,11 +344065,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [109430] = 3, + [59165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 16, + ACTIONS(5142), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475467,23 +344081,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(5040), 32, + ACTIONS(5144), 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, @@ -475492,25 +344109,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [109486] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [59226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6350), 16, + ACTIONS(4955), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475520,23 +344139,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6348), 32, + ACTIONS(4957), 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, @@ -475545,25 +344167,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [109542] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [59287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6354), 16, + ACTIONS(5134), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475573,23 +344197,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(6352), 32, + ACTIONS(5136), 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, @@ -475598,30 +344225,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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [109598] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [59348] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 16, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6156), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6178), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(5724), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -475631,19 +344278,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(2196), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5722), 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, @@ -475655,146 +344301,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [109654] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7160), 1, - anon_sym_SEMI, - STATE(3910), 1, - sym_attribute_specifier, - STATE(4520), 1, - sym_field_declaration_list, - STATE(7702), 1, - sym_virtual_specifier, - STATE(8577), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5653), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5655), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [109728] = 7, + [59427] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(7156), 1, - anon_sym_LBRACE, - STATE(3933), 1, - sym_attribute_specifier, - STATE(4483), 1, - sym_enumerator_list, - ACTIONS(5786), 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(5788), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + ACTIONS(5594), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [109792] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7162), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7164), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5743), 16, + STATE(3032), 1, + sym_new_declarator, + ACTIONS(5690), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475809,17 +344331,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(5745), 28, + ACTIONS(5688), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_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, @@ -475831,19 +344358,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [109852] = 3, + [59492] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 16, + ACTIONS(6286), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(5763), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475857,10 +344388,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(5052), 32, + ACTIONS(5761), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -475870,7 +344405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -475882,21 +344417,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, - [109908] = 3, + [59555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 16, + ACTIONS(5032), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475906,23 +344441,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(5036), 32, + ACTIONS(5034), 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, @@ -475931,52 +344469,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [109964] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [59616] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6238), 16, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6156), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6170), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6178), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(5724), 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_DOT, - anon_sym_DASH_GT, - ACTIONS(6236), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5722), 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, @@ -475988,21 +344548,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [110020] = 3, + [59699] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6418), 16, + ACTIONS(5546), 1, + anon_sym___attribute__, + STATE(3210), 1, + sym_attribute_specifier, + ACTIONS(5536), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -476019,7 +344579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6416), 32, + ACTIONS(5534), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -476029,6 +344589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -476051,11 +344612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [110076] = 3, + [59764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6414), 16, + ACTIONS(5123), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -476065,23 +344628,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(6412), 32, + ACTIONS(5125), 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, @@ -476090,149 +344656,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [110132] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7166), 1, - anon_sym_SEMI, - STATE(3910), 1, - sym_attribute_specifier, - STATE(4520), 1, - sym_field_declaration_list, - STATE(7702), 1, - sym_virtual_specifier, - STATE(8577), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5653), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5655), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [110206] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7168), 1, - anon_sym_SEMI, - STATE(3910), 1, - sym_attribute_specifier, - STATE(4520), 1, - sym_field_declaration_list, - STATE(7702), 1, - sym_virtual_specifier, - STATE(8577), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5653), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5655), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [110280] = 3, + anon_sym_GT2, + [59825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 16, + ACTIONS(5119), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -476242,23 +344686,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(6408), 32, + ACTIONS(5121), 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, @@ -476267,86 +344714,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [110336] = 6, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [59886] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(7170), 1, - anon_sym_LT, - STATE(3120), 1, - sym_template_argument_list, - ACTIONS(4860), 9, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6178), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5724), 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_COLON, - anon_sym_DOT, - ACTIONS(4865), 36, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5722), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [59961] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [110398] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6234), 16, + ACTIONS(6213), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6215), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(5724), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -476356,19 +344832,19 @@ 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(6232), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5722), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -476380,101 +344856,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + [60040] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(5706), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [110454] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5602), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(5600), 45, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [110510] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6171), 16, + anon_sym_DASH_GT, + ACTIONS(6213), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6215), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(5724), 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_DOT, - anon_sym_DASH_GT, - ACTIONS(6173), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5722), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -476486,21 +344924,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, - [110566] = 3, + [60121] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6510), 16, + ACTIONS(5546), 1, + anon_sym___attribute__, + STATE(3196), 1, + sym_attribute_specifier, + ACTIONS(5508), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -476517,7 +344955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6508), 32, + ACTIONS(5506), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -476527,6 +344965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -476549,64 +344988,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [110622] = 3, + [60186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5561), 17, + ACTIONS(5111), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5563), 31, + ACTIONS(5113), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_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, - [110678] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [60247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6390), 16, + ACTIONS(5098), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -476616,23 +345062,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(6388), 32, + ACTIONS(5100), 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, @@ -476641,25 +345090,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [110734] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [60308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6230), 16, + ACTIONS(5090), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -476669,23 +345120,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(6228), 32, + ACTIONS(5092), 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, @@ -476694,176 +345148,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [110790] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7173), 1, - anon_sym_SEMI, - STATE(3910), 1, - sym_attribute_specifier, - STATE(4520), 1, - sym_field_declaration_list, - STATE(7702), 1, - sym_virtual_specifier, - STATE(8577), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5653), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5655), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [110864] = 12, + anon_sym_GT2, + [60369] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7175), 1, - anon_sym_SEMI, - STATE(3910), 1, - sym_attribute_specifier, - STATE(4520), 1, - sym_field_declaration_list, - STATE(7702), 1, - sym_virtual_specifier, - STATE(8577), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5653), 6, + ACTIONS(5592), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5655), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + ACTIONS(6168), 1, + anon_sym_GT_EQ, + ACTIONS(6172), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [110938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6242), 16, + ACTIONS(6174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6156), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6170), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6178), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6158), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6166), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5724), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6240), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5722), 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, @@ -476875,48 +345229,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [110994] = 3, + [60456] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6490), 16, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6168), 1, + anon_sym_GT_EQ, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6156), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6170), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6178), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6164), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6166), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5724), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6488), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5722), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -476928,48 +345302,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [111050] = 3, + [60545] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6153), 16, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6162), 1, + anon_sym_AMP, + ACTIONS(6168), 1, + anon_sym_GT_EQ, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6176), 1, + anon_sym_bitand, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6156), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6170), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6178), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6164), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6166), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5724), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6155), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5722), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -476981,48 +345377,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [111106] = 3, + [60638] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 16, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6162), 1, + anon_sym_AMP, + ACTIONS(6168), 1, + anon_sym_GT_EQ, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6176), 1, + anon_sym_bitand, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6186), 1, + anon_sym_AMP_AMP, + ACTIONS(6188), 1, + anon_sym_PIPE, + ACTIONS(6192), 1, + anon_sym_and, + ACTIONS(6194), 1, + anon_sym_bitor, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(5724), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(6156), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6170), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6178), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6164), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6166), 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(6392), 32, + ACTIONS(5722), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -477034,50 +345457,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, + [60741] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6053), 1, + anon_sym_EQ, + ACTIONS(6162), 1, + anon_sym_AMP, + ACTIONS(6168), 1, + anon_sym_GT_EQ, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6174), 1, anon_sym_LT_EQ_GT, + ACTIONS(6176), 1, + anon_sym_bitand, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6184), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6186), 1, + anon_sym_AMP_AMP, + ACTIONS(6188), 1, + anon_sym_PIPE, + ACTIONS(6190), 1, anon_sym_or, + ACTIONS(6192), 1, anon_sym_and, + ACTIONS(6194), 1, anon_sym_bitor, + ACTIONS(6272), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6274), 1, + anon_sym_QMARK, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6156), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6170), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6178), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6158), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6164), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6166), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6051), 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, - [111162] = 12, + [60852] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7177), 1, - anon_sym_SEMI, - STATE(3910), 1, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4806), 1, + anon_sym_virtual, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6288), 7, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(4796), 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(2901), 9, + sym__declaration_modifiers, sym_attribute_specifier, - STATE(4520), 1, - sym_field_declaration_list, - STATE(7702), 1, - sym_virtual_specifier, - STATE(8577), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5653), 6, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6290), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4794), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [60929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5144), 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(5655), 32, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5142), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -477100,44 +345654,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [111236] = 3, + anon_sym_try, + anon_sym_requires, + [60989] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 16, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6296), 1, + anon_sym_AMP, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6308), 1, + anon_sym_bitand, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6292), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6302), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6310), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6294), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6298), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6300), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5724), 7, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6446), 32, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5722), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -477145,78 +345731,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_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, - [111292] = 3, + anon_sym_GT2, + [61079] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(6300), 16, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6316), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6318), 1, + anon_sym_COMMA, + ACTIONS(6320), 1, + anon_sym_RPAREN, + ACTIONS(6322), 1, anon_sym_DASH, + ACTIONS(6324), 1, anon_sym_PLUS, + ACTIONS(6326), 1, anon_sym_STAR, + ACTIONS(6328), 1, anon_sym_SLASH, + ACTIONS(6330), 1, anon_sym_PERCENT, + ACTIONS(6332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, + anon_sym_AMP_AMP, + ACTIONS(6336), 1, anon_sym_PIPE, + ACTIONS(6338), 1, anon_sym_CARET, + ACTIONS(6340), 1, anon_sym_AMP, + ACTIONS(6342), 1, + anon_sym_EQ_EQ, + ACTIONS(6344), 1, + anon_sym_BANG_EQ, + ACTIONS(6346), 1, anon_sym_GT, + ACTIONS(6348), 1, + anon_sym_GT_EQ, + ACTIONS(6350), 1, anon_sym_LT_EQ, + ACTIONS(6352), 1, anon_sym_LT, + ACTIONS(6354), 1, anon_sym_LT_LT, + ACTIONS(6356), 1, anon_sym_GT_GT, + ACTIONS(6358), 1, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6298), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_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(6360), 1, anon_sym_QMARK, + ACTIONS(6362), 1, anon_sym_STAR_EQ, + ACTIONS(6364), 1, anon_sym_SLASH_EQ, + ACTIONS(6366), 1, anon_sym_PERCENT_EQ, + ACTIONS(6368), 1, anon_sym_PLUS_EQ, + ACTIONS(6370), 1, anon_sym_DASH_EQ, + ACTIONS(6372), 1, anon_sym_LT_LT_EQ, + ACTIONS(6374), 1, anon_sym_GT_GT_EQ, + ACTIONS(6376), 1, anon_sym_AMP_EQ, + ACTIONS(6378), 1, anon_sym_CARET_EQ, + ACTIONS(6380), 1, anon_sym_PIPE_EQ, + ACTIONS(6382), 1, anon_sym_LT_EQ_GT, + ACTIONS(6384), 1, anon_sym_or, + ACTIONS(6386), 1, anon_sym_and, + ACTIONS(6388), 1, anon_sym_bitor, + ACTIONS(6390), 1, anon_sym_xor, + ACTIONS(6392), 1, anon_sym_bitand, + ACTIONS(6394), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(6398), 1, anon_sym_DOT_STAR, + ACTIONS(6400), 1, anon_sym_DASH_GT_STAR, - [111348] = 3, + STATE(1505), 1, + sym__binary_fold_operator, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + STATE(7414), 1, + sym__fold_operator, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [61235] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6426), 16, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5793), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -477226,24 +345870,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(6424), 32, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5791), 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, @@ -477251,25 +345894,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, + [61307] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6296), 1, + anon_sym_AMP, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6308), 1, + anon_sym_bitand, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(6402), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6404), 1, + anon_sym_AMP_AMP, + ACTIONS(6406), 1, + anon_sym_PIPE, + ACTIONS(6410), 1, + anon_sym_or, + ACTIONS(6412), 1, + anon_sym_and, + ACTIONS(6414), 1, + anon_sym_bitor, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(5906), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(6292), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6302), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6310), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [111404] = 3, + anon_sym_DASH_GT, + ACTIONS(6408), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6294), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6298), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6300), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5904), 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, + [61411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6514), 16, + ACTIONS(5763), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -477283,10 +346003,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(6512), 32, + ACTIONS(5761), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -477296,7 +346020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -477308,21 +346032,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [111460] = 3, + [61471] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6518), 16, + ACTIONS(6199), 1, + anon_sym_LT, + STATE(1691), 1, + sym_template_argument_list, + ACTIONS(5732), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -477333,13 +346061,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(6516), 32, + ACTIONS(5730), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -477361,21 +346091,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, - [111516] = 3, + [61535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 17, + ACTIONS(5188), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -477384,7 +346114,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -477392,10 +346121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + sym_identifier, sym_literal_suffix, - ACTIONS(5594), 31, + ACTIONS(5190), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -477408,7 +346139,10 @@ 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_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, @@ -477425,120 +346159,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [111572] = 3, + [61595] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 17, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6292), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6302), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6310), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6294), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5902), 12, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + anon_sym_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(5555), 31, + ACTIONS(5900), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [111628] = 7, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_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, + [61677] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(7156), 1, - anon_sym_LBRACE, - STATE(3870), 1, - sym_attribute_specifier, - STATE(4473), 1, - sym_enumerator_list, - ACTIONS(5818), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5673), 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(5820), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + ACTIONS(6304), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [111692] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6382), 16, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6310), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5809), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -477548,24 +346256,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(6380), 32, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5807), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -477573,25 +346280,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, - [111748] = 3, + anon_sym_GT2, + [61751] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6212), 16, + ACTIONS(6416), 1, + anon_sym_LT, + STATE(1908), 1, + sym_template_argument_list, + ACTIONS(5732), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -477602,13 +346309,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(6214), 32, + ACTIONS(5730), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -477630,21 +346339,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, - [111804] = 3, + [61815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2194), 16, + ACTIONS(5138), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -477661,7 +346370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2192), 32, + ACTIONS(5140), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -477671,6 +346380,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -477693,64 +346404,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [111860] = 3, + [61875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6398), 16, + ACTIONS(5182), 17, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6396), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(5184), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [111916] = 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, + [61935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6506), 16, + ACTIONS(5271), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -477767,7 +346484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6504), 32, + ACTIONS(5273), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -477777,6 +346494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -477799,11 +346518,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [111972] = 3, + [61995] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6452), 16, + ACTIONS(6206), 1, + anon_sym_LT, + STATE(1690), 1, + sym_template_argument_list, + ACTIONS(5732), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -477814,13 +346539,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6450), 32, + ACTIONS(5730), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -477830,6 +346556,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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -477842,251 +346569,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [112028] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7179), 1, - anon_sym_SEMI, - STATE(3910), 1, - sym_attribute_specifier, - STATE(4520), 1, - sym_field_declaration_list, - STATE(7702), 1, - sym_virtual_specifier, - STATE(8577), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5653), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5655), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [112102] = 12, + anon_sym_DASH_GT, + [62059] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7181), 1, - anon_sym_SEMI, - STATE(3910), 1, - sym_attribute_specifier, - STATE(4520), 1, - sym_field_declaration_list, - STATE(7702), 1, - sym_virtual_specifier, - STATE(8577), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5653), 6, + ACTIONS(5592), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5655), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + ACTIONS(6172), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [112176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6101), 16, + ACTIONS(6316), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6322), 1, anon_sym_DASH, + ACTIONS(6324), 1, anon_sym_PLUS, + ACTIONS(6326), 1, anon_sym_STAR, + ACTIONS(6328), 1, anon_sym_SLASH, + ACTIONS(6330), 1, anon_sym_PERCENT, + ACTIONS(6332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, + anon_sym_AMP_AMP, + ACTIONS(6336), 1, anon_sym_PIPE, + ACTIONS(6338), 1, anon_sym_CARET, + ACTIONS(6340), 1, anon_sym_AMP, + ACTIONS(6342), 1, + anon_sym_EQ_EQ, + ACTIONS(6344), 1, + anon_sym_BANG_EQ, + ACTIONS(6346), 1, anon_sym_GT, + ACTIONS(6348), 1, + anon_sym_GT_EQ, + ACTIONS(6350), 1, anon_sym_LT_EQ, + ACTIONS(6352), 1, anon_sym_LT, + ACTIONS(6354), 1, anon_sym_LT_LT, + ACTIONS(6356), 1, anon_sym_GT_GT, + ACTIONS(6358), 1, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6103), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_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(6360), 1, anon_sym_QMARK, + ACTIONS(6362), 1, anon_sym_STAR_EQ, + ACTIONS(6364), 1, anon_sym_SLASH_EQ, + ACTIONS(6366), 1, anon_sym_PERCENT_EQ, + ACTIONS(6368), 1, anon_sym_PLUS_EQ, + ACTIONS(6370), 1, anon_sym_DASH_EQ, + ACTIONS(6372), 1, anon_sym_LT_LT_EQ, + ACTIONS(6374), 1, anon_sym_GT_GT_EQ, + ACTIONS(6376), 1, anon_sym_AMP_EQ, + ACTIONS(6378), 1, anon_sym_CARET_EQ, + ACTIONS(6380), 1, anon_sym_PIPE_EQ, + ACTIONS(6382), 1, anon_sym_LT_EQ_GT, + ACTIONS(6384), 1, anon_sym_or, + ACTIONS(6386), 1, anon_sym_and, + ACTIONS(6388), 1, anon_sym_bitor, + ACTIONS(6390), 1, anon_sym_xor, + ACTIONS(6392), 1, anon_sym_bitand, + ACTIONS(6394), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(6398), 1, anon_sym_DOT_STAR, + ACTIONS(6400), 1, anon_sym_DASH_GT_STAR, - [112232] = 3, + ACTIONS(6419), 1, + anon_sym_COMMA, + ACTIONS(6421), 1, + anon_sym_RPAREN, + STATE(1505), 1, + sym__binary_fold_operator, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + STATE(7414), 1, + sym__fold_operator, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [62215] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5600), 17, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5777), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5602), 31, + ACTIONS(5775), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_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, - [112288] = 3, + anon_sym_GT2, + [62287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 16, + ACTIONS(3751), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -478100,10 +346765,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(6500), 32, + ACTIONS(3753), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -478113,7 +346782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -478125,148 +346794,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [112344] = 6, + [62347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(7183), 1, - anon_sym_LT, - STATE(3120), 1, - sym_template_argument_list, - ACTIONS(5673), 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_COLON, - anon_sym_DOT, - ACTIONS(4302), 36, + ACTIONS(5088), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5086), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - [112406] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [62407] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 16, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6316), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6318), 1, + anon_sym_COMMA, + ACTIONS(6322), 1, anon_sym_DASH, + ACTIONS(6324), 1, anon_sym_PLUS, + ACTIONS(6326), 1, anon_sym_STAR, + ACTIONS(6328), 1, anon_sym_SLASH, + ACTIONS(6330), 1, anon_sym_PERCENT, + ACTIONS(6332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, + anon_sym_AMP_AMP, + ACTIONS(6336), 1, anon_sym_PIPE, + ACTIONS(6338), 1, anon_sym_CARET, + ACTIONS(6340), 1, anon_sym_AMP, + ACTIONS(6342), 1, + anon_sym_EQ_EQ, + ACTIONS(6344), 1, + anon_sym_BANG_EQ, + ACTIONS(6346), 1, anon_sym_GT, + ACTIONS(6348), 1, + anon_sym_GT_EQ, + ACTIONS(6350), 1, anon_sym_LT_EQ, + ACTIONS(6352), 1, anon_sym_LT, + ACTIONS(6354), 1, anon_sym_LT_LT, + ACTIONS(6356), 1, anon_sym_GT_GT, + ACTIONS(6358), 1, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5064), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_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(6360), 1, anon_sym_QMARK, + ACTIONS(6362), 1, anon_sym_STAR_EQ, + ACTIONS(6364), 1, anon_sym_SLASH_EQ, + ACTIONS(6366), 1, anon_sym_PERCENT_EQ, + ACTIONS(6368), 1, anon_sym_PLUS_EQ, + ACTIONS(6370), 1, anon_sym_DASH_EQ, + ACTIONS(6372), 1, anon_sym_LT_LT_EQ, + ACTIONS(6374), 1, anon_sym_GT_GT_EQ, + ACTIONS(6376), 1, anon_sym_AMP_EQ, + ACTIONS(6378), 1, anon_sym_CARET_EQ, + ACTIONS(6380), 1, anon_sym_PIPE_EQ, + ACTIONS(6382), 1, anon_sym_LT_EQ_GT, + ACTIONS(6384), 1, anon_sym_or, + ACTIONS(6386), 1, anon_sym_and, + ACTIONS(6388), 1, anon_sym_bitor, + ACTIONS(6390), 1, anon_sym_xor, + ACTIONS(6392), 1, anon_sym_bitand, + ACTIONS(6394), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(6398), 1, anon_sym_DOT_STAR, + ACTIONS(6400), 1, anon_sym_DASH_GT_STAR, - [112462] = 3, + ACTIONS(6423), 1, + anon_sym_RPAREN, + STATE(1505), 1, + sym__binary_fold_operator, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + STATE(7414), 1, + sym__fold_operator, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [62563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5594), 3, + ACTIONS(5273), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(5592), 45, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5271), 39, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -478286,51 +347011,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_typename, anon_sym_template, - [112518] = 12, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [62623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7185), 1, - anon_sym_SEMI, - STATE(3910), 1, - sym_attribute_specifier, - STATE(4520), 1, - sym_field_declaration_list, - STATE(7702), 1, - sym_virtual_specifier, - STATE(8577), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5653), 6, + ACTIONS(5084), 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(5655), 32, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5082), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -478353,17 +347068,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [112592] = 3, + anon_sym_try, + anon_sym_requires, + [62683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5058), 16, + ACTIONS(4865), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -478377,10 +347098,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(5060), 32, + ACTIONS(4860), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -478390,7 +347115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -478402,21 +347127,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, - [112648] = 3, + [62743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6464), 16, + ACTIONS(5211), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -478433,7 +347158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6462), 32, + ACTIONS(5213), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -478443,6 +347168,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -478465,38 +347192,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [112704] = 3, + [62803] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 16, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6296), 1, + anon_sym_AMP, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6308), 1, + anon_sym_bitand, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(6402), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6404), 1, + anon_sym_AMP_AMP, + ACTIONS(6406), 1, + anon_sym_PIPE, + ACTIONS(6410), 1, + anon_sym_or, + ACTIONS(6412), 1, + anon_sym_and, + ACTIONS(6414), 1, + anon_sym_bitor, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(5839), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(6292), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6302), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6310), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6408), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6294), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6298), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6300), 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(5068), 32, + ACTIONS(5815), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -478504,25 +347267,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [112760] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [62907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5028), 16, + ACTIONS(5769), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -478536,10 +347291,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(5030), 32, + ACTIONS(5767), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -478549,7 +347308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -478561,74 +347320,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, - [112816] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5592), 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(5594), 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, - [112872] = 3, + [62967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6386), 16, + ACTIONS(3755), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -478642,10 +347348,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(6384), 32, + ACTIONS(3757), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -478655,7 +347365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -478667,49 +347377,314 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [112928] = 3, + [63027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5057), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5055), 39, 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [63087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5140), 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_DOT, - anon_sym_DASH_GT, - ACTIONS(5044), 32, + anon_sym_GT2, + ACTIONS(5138), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [63147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5225), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5223), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [63207] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5117), 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(5115), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [63267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5148), 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(5146), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [63327] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4091), 1, + anon_sym_EQ, + ACTIONS(4615), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4867), 1, + anon_sym_LPAREN2, + ACTIONS(4873), 1, + anon_sym_LBRACK, + ACTIONS(4095), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -478720,21 +347695,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [112984] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6366), 16, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4069), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -478748,49 +347712,147 @@ 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(6364), 32, + ACTIONS(4061), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [113040] = 4, + anon_sym_DASH_GT, + [63397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7164), 2, + ACTIONS(5180), 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_and, - ACTIONS(5735), 16, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5178), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [63457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6427), 25, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(6425), 27, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [63517] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5223), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -478807,15 +347869,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5737), 30, + ACTIONS(5225), 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, @@ -478830,6 +347895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, + anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -478837,11 +347903,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [113098] = 3, + [63577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 16, + ACTIONS(5178), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -478858,7 +347926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5014), 32, + ACTIONS(5180), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -478868,6 +347936,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -478890,64 +347960,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [113154] = 3, + [63637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 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(5555), 29, + ACTIONS(5170), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [113210] = 3, + ACTIONS(5168), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [63697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5024), 16, + ACTIONS(5773), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -478962,9 +348038,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(5026), 32, + ACTIONS(5771), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -478974,6 +348053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -478986,74 +348066,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [113266] = 3, + [63757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 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(5010), 32, + ACTIONS(5136), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5134), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [113322] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [63817] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6278), 16, + ACTIONS(5026), 1, + sym_literal_suffix, + ACTIONS(4069), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -479067,19 +348153,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6254), 32, + ACTIONS(4061), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -479093,20 +348188,16 @@ 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, - [113378] = 3, + anon_sym_DASH_GT, + [63879] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 16, + ACTIONS(6429), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(5763), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -479120,10 +348211,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(5056), 32, + ACTIONS(5761), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -479133,7 +348228,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, @@ -479145,21 +348239,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [113434] = 3, + [63941] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 16, + ACTIONS(6035), 1, + sym_auto, + ACTIONS(6037), 1, + anon_sym_decltype, + STATE(3315), 1, + sym_decltype_auto, + ACTIONS(5018), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -479176,7 +348276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5056), 32, + ACTIONS(5020), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -479186,6 +348286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -479209,20 +348310,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [113490] = 3, + [64007] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5600), 19, + ACTIONS(6431), 1, + sym_identifier, + STATE(3045), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5251), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5253), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4814), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -479230,9 +348348,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(5602), 29, + ACTIONS(4812), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -479243,82 +348360,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_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, - [113546] = 3, + 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, + [64075] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 16, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6316), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6318), 1, + anon_sym_COMMA, + ACTIONS(6322), 1, anon_sym_DASH, + ACTIONS(6324), 1, anon_sym_PLUS, + ACTIONS(6326), 1, anon_sym_STAR, + ACTIONS(6328), 1, anon_sym_SLASH, + ACTIONS(6330), 1, anon_sym_PERCENT, + ACTIONS(6332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, + anon_sym_AMP_AMP, + ACTIONS(6336), 1, anon_sym_PIPE, + ACTIONS(6338), 1, anon_sym_CARET, + ACTIONS(6340), 1, anon_sym_AMP, + ACTIONS(6342), 1, + anon_sym_EQ_EQ, + ACTIONS(6344), 1, + anon_sym_BANG_EQ, + ACTIONS(6346), 1, anon_sym_GT, + ACTIONS(6348), 1, + anon_sym_GT_EQ, + ACTIONS(6350), 1, anon_sym_LT_EQ, + ACTIONS(6352), 1, anon_sym_LT, + ACTIONS(6354), 1, anon_sym_LT_LT, + ACTIONS(6356), 1, anon_sym_GT_GT, + ACTIONS(6358), 1, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6470), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_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(6360), 1, anon_sym_QMARK, + ACTIONS(6362), 1, anon_sym_STAR_EQ, + ACTIONS(6364), 1, anon_sym_SLASH_EQ, + ACTIONS(6366), 1, anon_sym_PERCENT_EQ, + ACTIONS(6368), 1, anon_sym_PLUS_EQ, + ACTIONS(6370), 1, anon_sym_DASH_EQ, + ACTIONS(6372), 1, anon_sym_LT_LT_EQ, + ACTIONS(6374), 1, anon_sym_GT_GT_EQ, + ACTIONS(6376), 1, anon_sym_AMP_EQ, + ACTIONS(6378), 1, anon_sym_CARET_EQ, + ACTIONS(6380), 1, anon_sym_PIPE_EQ, + ACTIONS(6382), 1, anon_sym_LT_EQ_GT, + ACTIONS(6384), 1, anon_sym_or, + ACTIONS(6386), 1, anon_sym_and, + ACTIONS(6388), 1, anon_sym_bitor, + ACTIONS(6390), 1, anon_sym_xor, + ACTIONS(6392), 1, anon_sym_bitand, + ACTIONS(6394), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(6398), 1, anon_sym_DOT_STAR, + ACTIONS(6400), 1, anon_sym_DASH_GT_STAR, - [113602] = 3, + ACTIONS(6433), 1, + anon_sym_RPAREN, + STATE(1505), 1, + sym__binary_fold_operator, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + STATE(7414), 1, + sym__fold_operator, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [64231] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 16, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6310), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5698), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -479328,24 +348505,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(6480), 32, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5696), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -479353,25 +348529,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [113658] = 3, + anon_sym_GT2, + [64305] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 16, + ACTIONS(4615), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4867), 1, + anon_sym_LPAREN2, + ACTIONS(4873), 1, + anon_sym_LBRACK, + ACTIONS(4069), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -479386,19 +348564,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6466), 32, + ACTIONS(4061), 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_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -479410,21 +348589,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, - [113714] = 3, + anon_sym_DASH_GT, + [64371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 16, + ACTIONS(5127), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -479441,7 +348620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2889), 32, + ACTIONS(5129), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -479451,6 +348630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -479473,11 +348654,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [113770] = 3, + [64431] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6422), 16, + ACTIONS(4615), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4867), 1, + anon_sym_LPAREN2, + ACTIONS(4873), 1, + anon_sym_LBRACK, + ACTIONS(4069), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -479492,19 +348681,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6420), 32, + ACTIONS(4061), 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_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -479516,21 +348706,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, - [113826] = 3, + anon_sym_DASH_GT, + [64497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6294), 16, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4955), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -479547,7 +348739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6292), 32, + ACTIONS(4957), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -479557,6 +348749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -479579,28 +348772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [113882] = 3, + [64559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 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(5056), 32, + ACTIONS(6087), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -479623,30 +348801,68 @@ 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_STAR, + ACTIONS(6089), 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [113938] = 3, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + [64619] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5561), 18, + ACTIONS(6435), 1, + sym_identifier, + STATE(3074), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5251), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5253), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4842), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -479655,7 +348871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5563), 29, + ACTIONS(4840), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -479666,7 +348882,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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -479674,40 +348893,24 @@ 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, - [113993] = 7, + [64687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7187), 1, - anon_sym_LPAREN2, - STATE(3483), 1, - sym_argument_list, - STATE(4809), 1, - sym_initializer_list, - ACTIONS(5323), 10, + ACTIONS(5092), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(5321), 33, + anon_sym_GT2, + ACTIONS(5090), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -479734,143 +348937,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [114056] = 9, + anon_sym_try, + anon_sym_requires, + [64747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - ACTIONS(5790), 1, - anon_sym_LBRACE, - ACTIONS(7190), 1, - anon_sym_COLON, - STATE(2596), 1, - sym_attribute_specifier, - STATE(3096), 1, - sym__enum_base_clause, - STATE(3113), 1, - sym_enumerator_list, - ACTIONS(5794), 9, + ACTIONS(5671), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(5792), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [114123] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - ACTIONS(5790), 1, - anon_sym_LBRACE, - ACTIONS(7190), 1, - anon_sym_COLON, - STATE(2648), 1, - sym_attribute_specifier, - STATE(3076), 1, - sym__enum_base_clause, - STATE(3141), 1, - sym_enumerator_list, - ACTIONS(5802), 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(5800), 32, + anon_sym_DASH_GT, + ACTIONS(5669), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [114190] = 3, + anon_sym_DASH_GT_STAR, + [64807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5600), 18, + ACTIONS(5152), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -479878,10 +349026,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + sym_identifier, sym_literal_suffix, - ACTIONS(5602), 29, + ACTIONS(5154), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -479890,8 +349040,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, @@ -479903,47 +349059,45 @@ 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, - [114245] = 7, + [64867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7156), 1, - anon_sym_LBRACE, - STATE(3870), 1, - sym_attribute_specifier, - STATE(4495), 1, - sym_enumerator_list, - ACTIONS(5820), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5818), 39, + ACTIONS(5113), 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(5111), 39, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym___declspec, - anon_sym_EQ, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -479956,29 +349110,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_asm, anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, + anon_sym_template, + anon_sym_operator, anon_sym_try, anon_sym_requires, - [114308] = 3, + [64927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 18, + ACTIONS(5174), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -479986,10 +349140,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + sym_identifier, sym_literal_suffix, - ACTIONS(5555), 29, + ACTIONS(5176), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -479998,8 +349154,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, @@ -480011,737 +349173,221 @@ 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, - [114363] = 3, + [64987] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6296), 1, 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, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6308), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6312), 1, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5594), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(6402), 1, anon_sym_PIPE_PIPE, + ACTIONS(6404), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + ACTIONS(6406), 1, + anon_sym_PIPE, + ACTIONS(6410), 1, + anon_sym_or, + ACTIONS(6412), 1, + anon_sym_and, + ACTIONS(6414), 1, + anon_sym_bitor, + ACTIONS(6437), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6439), 1, anon_sym_QMARK, - anon_sym_LT_EQ_GT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6049), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(6292), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6302), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6310), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6314), 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_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [114418] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7156), 1, - anon_sym_LBRACE, - STATE(3933), 1, - sym_attribute_specifier, - STATE(4477), 1, - sym_enumerator_list, - ACTIONS(5788), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5786), 39, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6408), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6294), 3, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [114481] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3984), 1, - sym_attribute_specifier, - ACTIONS(5934), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5932), 40, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6298), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6300), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6047), 14, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [114539] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - STATE(5832), 1, - sym_ref_qualifier, - STATE(6211), 1, - sym_gnu_asm_expression, - STATE(6605), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4502), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4911), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6066), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6361), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [114635] = 11, + [65095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7218), 1, - anon_sym_LPAREN2, - ACTIONS(7220), 1, - anon_sym_LBRACK, - ACTIONS(7222), 1, - sym_auto, - ACTIONS(7224), 1, - anon_sym_decltype, - STATE(2636), 1, - sym_decltype_auto, - STATE(4775), 1, - sym_new_declarator, - STATE(4862), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5730), 9, + ACTIONS(5813), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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(5728), 28, + anon_sym_DASH_GT, + ACTIONS(5811), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - 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___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [114705] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3977), 1, - sym_attribute_specifier, - ACTIONS(5928), 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(5930), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [114763] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3942), 1, - sym_attribute_specifier, - ACTIONS(5874), 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(5876), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [114821] = 5, + anon_sym_DASH_GT_STAR, + [65155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3997), 1, - sym_attribute_specifier, - ACTIONS(5939), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5146), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5941), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [114879] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3976), 1, - sym_attribute_specifier, - ACTIONS(5910), 4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5908), 40, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [114937] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - STATE(4357), 1, - sym_template_argument_list, - ACTIONS(4865), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(4860), 36, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [114997] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3916), 1, - sym_attribute_specifier, - ACTIONS(5870), 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(5872), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [115055] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3882), 1, - sym_attribute_specifier, - ACTIONS(5864), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5862), 40, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [115113] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3952), 1, - sym_attribute_specifier, - ACTIONS(5945), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5943), 40, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5148), 36, + 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_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + anon_sym_RPAREN, + anon_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_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_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_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [115171] = 5, + anon_sym_DASH_GT_STAR, + [65215] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3914), 1, - sym_attribute_specifier, - ACTIONS(5866), 12, + ACTIONS(6441), 1, + sym_identifier, + ACTIONS(6446), 1, + sym_primitive_type, + STATE(2425), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6444), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5074), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -480752,12 +349398,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(5868), 32, + ACTIONS(5076), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -480780,45 +349428,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [115229] = 5, + [65283] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3877), 1, - sym_attribute_specifier, - ACTIONS(5860), 4, - anon_sym_AMP, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5858), 40, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6310), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6294), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5724), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5722), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [65359] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5100), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym___declspec, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5098), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -480831,76 +349545,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_asm, anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, + anon_sym_template, + anon_sym_operator, anon_sym_try, anon_sym_requires, - [115287] = 5, + [65419] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3857), 1, - sym_attribute_specifier, - ACTIONS(5880), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5878), 40, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5673), 1, anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6310), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5724), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5722), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [115345] = 5, + [65493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3984), 1, - sym_attribute_specifier, - ACTIONS(5932), 12, + ACTIONS(5092), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -480911,12 +349634,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(5934), 32, + ACTIONS(5090), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -480939,88 +349664,481 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [115403] = 5, + anon_sym_try, + anon_sym_requires, + [65553] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3882), 1, - sym_attribute_specifier, - ACTIONS(5862), 12, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6296), 1, + anon_sym_AMP, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6308), 1, + anon_sym_bitand, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(6404), 1, + anon_sym_AMP_AMP, + ACTIONS(6406), 1, + anon_sym_PIPE, + ACTIONS(6412), 1, + anon_sym_and, + ACTIONS(6414), 1, + anon_sym_bitor, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6292), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6302), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6310), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6408), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5724), 3, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + ACTIONS(6294), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6298), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6300), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [65653] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6296), 1, + anon_sym_AMP, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6308), 1, + anon_sym_bitand, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(6406), 1, + anon_sym_PIPE, + ACTIONS(6414), 1, + anon_sym_bitor, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6292), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6302), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6310), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6408), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6294), 3, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6298), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5724), 4, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(6300), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_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(5864), 32, + [65749] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6316), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6322), 1, + anon_sym_DASH, + ACTIONS(6324), 1, + anon_sym_PLUS, + ACTIONS(6326), 1, + anon_sym_STAR, + ACTIONS(6328), 1, + anon_sym_SLASH, + ACTIONS(6330), 1, + anon_sym_PERCENT, + ACTIONS(6332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, + anon_sym_AMP_AMP, + ACTIONS(6336), 1, + anon_sym_PIPE, + ACTIONS(6338), 1, + anon_sym_CARET, + ACTIONS(6340), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + ACTIONS(6342), 1, + anon_sym_EQ_EQ, + ACTIONS(6344), 1, + anon_sym_BANG_EQ, + ACTIONS(6346), 1, + anon_sym_GT, + ACTIONS(6348), 1, + anon_sym_GT_EQ, + ACTIONS(6350), 1, + anon_sym_LT_EQ, + ACTIONS(6352), 1, + anon_sym_LT, + ACTIONS(6354), 1, + anon_sym_LT_LT, + ACTIONS(6356), 1, + anon_sym_GT_GT, + ACTIONS(6358), 1, + anon_sym_EQ, + ACTIONS(6360), 1, + anon_sym_QMARK, + ACTIONS(6362), 1, + anon_sym_STAR_EQ, + ACTIONS(6364), 1, + anon_sym_SLASH_EQ, + ACTIONS(6366), 1, + anon_sym_PERCENT_EQ, + ACTIONS(6368), 1, + anon_sym_PLUS_EQ, + ACTIONS(6370), 1, + anon_sym_DASH_EQ, + ACTIONS(6372), 1, + anon_sym_LT_LT_EQ, + ACTIONS(6374), 1, + anon_sym_GT_GT_EQ, + ACTIONS(6376), 1, + anon_sym_AMP_EQ, + ACTIONS(6378), 1, + anon_sym_CARET_EQ, + ACTIONS(6380), 1, + anon_sym_PIPE_EQ, + ACTIONS(6382), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6384), 1, + anon_sym_or, + ACTIONS(6386), 1, + anon_sym_and, + ACTIONS(6388), 1, + anon_sym_bitor, + ACTIONS(6390), 1, + anon_sym_xor, + ACTIONS(6392), 1, + anon_sym_bitand, + ACTIONS(6394), 1, + anon_sym_not_eq, + ACTIONS(6398), 1, + anon_sym_DOT_STAR, + ACTIONS(6400), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(6419), 1, + anon_sym_COMMA, + ACTIONS(6448), 1, + anon_sym_RPAREN, + STATE(1505), 1, + sym__binary_fold_operator, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + STATE(7414), 1, + sym__fold_operator, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [65905] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5663), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [115461] = 7, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5661), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, - anon_sym_LBRACE, - ACTIONS(7226), 1, + ACTIONS(5614), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(5612), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [66025] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, anon_sym_LPAREN2, - STATE(4021), 1, + ACTIONS(6296), 1, + anon_sym_AMP, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6308), 1, + anon_sym_bitand, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3410), 1, sym_argument_list, - STATE(4436), 1, - sym_initializer_list, - ACTIONS(5323), 9, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6292), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6302), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6310), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6408), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6294), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6298), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6300), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5724), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(5722), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_GT2, + [66117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(5321), 33, + anon_sym_GT2, + ACTIONS(5032), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -481047,21 +350165,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [115523] = 5, + anon_sym_try, + anon_sym_requires, + [66177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3980), 1, - sym_attribute_specifier, - ACTIONS(5904), 12, + ACTIONS(5129), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -481072,12 +350192,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(5906), 32, + ACTIONS(5127), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -481100,74 +350222,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [115581] = 5, + anon_sym_try, + anon_sym_requires, + [66237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3915), 1, - sym_attribute_specifier, - ACTIONS(5890), 4, + ACTIONS(4566), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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___inline, - anon_sym_const, - ACTIONS(5888), 40, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4571), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [66297] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5781), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [115639] = 5, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5779), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [66357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3877), 1, - sym_attribute_specifier, - ACTIONS(5858), 12, + ACTIONS(5269), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -481178,12 +350363,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(5860), 32, + ACTIONS(5267), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -481206,154 +350393,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [115697] = 5, + anon_sym_try, + anon_sym_requires, + [66417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3944), 1, - sym_attribute_specifier, - ACTIONS(5949), 4, + ACTIONS(4566), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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___inline, - anon_sym_const, - ACTIONS(5947), 40, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4571), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [115755] = 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_DASH_GT_STAR, + [66477] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3916), 1, - sym_attribute_specifier, - ACTIONS(5872), 4, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6296), 1, anon_sym_AMP, + ACTIONS(6304), 1, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5870), 40, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(6306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6308), 1, + anon_sym_bitand, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(6402), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6404), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, + ACTIONS(6406), 1, + anon_sym_PIPE, + ACTIONS(6410), 1, + anon_sym_or, + ACTIONS(6412), 1, + anon_sym_and, + ACTIONS(6414), 1, + anon_sym_bitor, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6029), 2, anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, + anon_sym_GT_GT_EQ, + ACTIONS(6292), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6302), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6310), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6408), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6294), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6298), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6300), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6027), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [115813] = 5, + [66581] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3982), 1, - sym_attribute_specifier, - ACTIONS(5912), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2693), 1, anon_sym_TILDE, + ACTIONS(4047), 1, + anon_sym_LPAREN2, + ACTIONS(4049), 1, anon_sym_STAR, + ACTIONS(4051), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5914), 32, + ACTIONS(4053), 1, anon_sym_AMP, + ACTIONS(4792), 1, + sym_identifier, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5475), 1, + anon_sym_COLON_COLON, + ACTIONS(6202), 1, + anon_sym_RPAREN, + STATE(3550), 1, + sym_parameter_list, + STATE(5318), 1, + sym__scope_resolution, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5901), 1, + sym__declarator, + STATE(6089), 1, + sym__abstract_declarator, + STATE(7657), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -481365,76 +350621,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [115871] = 5, + [66685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3942), 1, - sym_attribute_specifier, - ACTIONS(5876), 4, + ACTIONS(4566), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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___inline, - anon_sym_const, - ACTIONS(5874), 40, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4571), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [115929] = 6, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [66745] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(7183), 1, - anon_sym_LT, - STATE(3120), 1, - sym_template_argument_list, - ACTIONS(4276), 9, + ACTIONS(6450), 1, + sym_identifier, + STATE(3074), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6453), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6456), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4825), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -481442,12 +350707,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_COLON, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4284), 34, + sym_literal_suffix, + ACTIONS(4823), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -481460,116 +350732,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [115989] = 11, + [66813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7218), 1, - anon_sym_LPAREN2, - ACTIONS(7220), 1, - anon_sym_LBRACK, - ACTIONS(7222), 1, - sym_auto, - ACTIONS(7224), 1, - anon_sym_decltype, - STATE(2636), 1, - sym_decltype_auto, - STATE(4774), 1, - sym_new_declarator, - STATE(4849), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5764), 9, + ACTIONS(4566), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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(5762), 28, + anon_sym_DASH_GT, + ACTIONS(4571), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - 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___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [116059] = 5, + anon_sym_DASH_GT_STAR, + [66873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3965), 1, - sym_attribute_specifier, - ACTIONS(5898), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5896), 40, + ACTIONS(5213), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym___declspec, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5211), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -481582,208 +350842,447 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_asm, anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, + anon_sym_template, + anon_sym_operator, anon_sym_try, anon_sym_requires, - [116117] = 5, + [66933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3997), 1, - sym_attribute_specifier, - ACTIONS(5941), 4, + ACTIONS(4566), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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___inline, - anon_sym_const, - ACTIONS(5939), 40, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4571), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [116175] = 11, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [66993] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7218), 1, + ACTIONS(5673), 1, anon_sym_LPAREN2, - ACTIONS(7220), 1, + ACTIONS(6304), 1, anon_sym_LBRACK, - ACTIONS(7222), 1, - sym_auto, - ACTIONS(7224), 1, - anon_sym_decltype, - STATE(2636), 1, - sym_decltype_auto, - STATE(4769), 1, - sym_new_declarator, - STATE(4827), 2, + ACTIONS(6306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3410), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(5710), 9, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6292), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6302), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6310), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6294), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(6298), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6300), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(5706), 28, + ACTIONS(5724), 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(5722), 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_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, + [67079] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6316), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6318), 1, + anon_sym_COMMA, + ACTIONS(6322), 1, + anon_sym_DASH, + ACTIONS(6324), 1, + anon_sym_PLUS, + ACTIONS(6326), 1, anon_sym_STAR, + ACTIONS(6328), 1, + anon_sym_SLASH, + ACTIONS(6330), 1, anon_sym_PERCENT, + ACTIONS(6332), 1, anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, anon_sym_AMP_AMP, + ACTIONS(6336), 1, + anon_sym_PIPE, + ACTIONS(6338), 1, anon_sym_CARET, + ACTIONS(6340), 1, + anon_sym_AMP, + ACTIONS(6342), 1, anon_sym_EQ_EQ, + ACTIONS(6344), 1, anon_sym_BANG_EQ, + ACTIONS(6346), 1, + anon_sym_GT, + ACTIONS(6348), 1, anon_sym_GT_EQ, + ACTIONS(6350), 1, + anon_sym_LT_EQ, + ACTIONS(6352), 1, + anon_sym_LT, + ACTIONS(6354), 1, anon_sym_LT_LT, + ACTIONS(6356), 1, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + ACTIONS(6358), 1, + anon_sym_EQ, + ACTIONS(6360), 1, anon_sym_QMARK, + ACTIONS(6362), 1, + anon_sym_STAR_EQ, + ACTIONS(6364), 1, + anon_sym_SLASH_EQ, + ACTIONS(6366), 1, + anon_sym_PERCENT_EQ, + ACTIONS(6368), 1, + anon_sym_PLUS_EQ, + ACTIONS(6370), 1, + anon_sym_DASH_EQ, + ACTIONS(6372), 1, + anon_sym_LT_LT_EQ, + ACTIONS(6374), 1, + anon_sym_GT_GT_EQ, + ACTIONS(6376), 1, + anon_sym_AMP_EQ, + ACTIONS(6378), 1, + anon_sym_CARET_EQ, + ACTIONS(6380), 1, + anon_sym_PIPE_EQ, + ACTIONS(6382), 1, anon_sym_LT_EQ_GT, + ACTIONS(6384), 1, anon_sym_or, + ACTIONS(6386), 1, anon_sym_and, + ACTIONS(6388), 1, anon_sym_bitor, + ACTIONS(6390), 1, anon_sym_xor, + ACTIONS(6392), 1, anon_sym_bitand, + ACTIONS(6394), 1, anon_sym_not_eq, + ACTIONS(6398), 1, + anon_sym_DOT_STAR, + ACTIONS(6400), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(6459), 1, + anon_sym_RPAREN, + STATE(1505), 1, + sym__binary_fold_operator, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + STATE(7414), 1, + sym__fold_operator, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [67235] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6292), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6302), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6310), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [116245] = 25, + ACTIONS(6294), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6300), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5724), 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(5722), 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, + [67319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7231), 1, + ACTIONS(4566), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(4571), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(8100), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [116343] = 5, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [67379] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3857), 1, - sym_attribute_specifier, - ACTIONS(5878), 12, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6292), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6302), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6310), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6294), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5724), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5722), 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, + [67461] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5217), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -481794,12 +351293,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(5880), 32, + ACTIONS(5215), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -481822,21 +351323,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [116401] = 5, + anon_sym_try, + anon_sym_requires, + [67521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3952), 1, - sym_attribute_specifier, - ACTIONS(5943), 12, + ACTIONS(5221), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -481847,12 +351350,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(5945), 32, + ACTIONS(5219), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -481875,21 +351380,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [116459] = 5, + anon_sym_try, + anon_sym_requires, + [67581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3976), 1, - sym_attribute_specifier, - ACTIONS(5908), 12, + ACTIONS(5229), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -481900,12 +351407,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(5910), 32, + ACTIONS(5227), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -481928,324 +351437,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [116517] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3982), 1, - sym_attribute_specifier, - ACTIONS(5914), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5912), 40, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_asm, anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, + anon_sym_template, + anon_sym_operator, anon_sym_try, anon_sym_requires, - [116575] = 24, + [67641] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(5813), 1, - sym_ref_qualifier, - STATE(6195), 1, - sym_gnu_asm_expression, - STATE(6574), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5466), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6055), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6200), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6281), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 7, - anon_sym_COMMA, + ACTIONS(5673), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [116671] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3980), 1, - sym_attribute_specifier, - ACTIONS(5906), 4, - anon_sym_AMP, + ACTIONS(6304), 1, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5904), 40, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6292), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6310), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6294), 3, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5724), 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_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5722), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [116729] = 5, + [67719] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3977), 1, - sym_attribute_specifier, - ACTIONS(5930), 4, + ACTIONS(4091), 1, + anon_sym_EQ, + ACTIONS(4095), 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(4069), 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_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5928), 40, + 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(4061), 21, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [116787] = 24, + 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, + [67783] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, anon_sym_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7210), 1, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6292), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6302), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6310), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - STATE(5832), 1, - sym_ref_qualifier, - STATE(6211), 1, - sym_gnu_asm_expression, - STATE(6605), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5466), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6066), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6210), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6361), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 7, + ACTIONS(6294), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5724), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5722), 24, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [116883] = 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [67863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3915), 1, - sym_attribute_specifier, - ACTIONS(5888), 12, + ACTIONS(5209), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -482256,12 +351656,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(5890), 32, + ACTIONS(5207), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -482284,21 +351686,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [116941] = 5, + anon_sym_try, + anon_sym_requires, + [67923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3973), 1, - sym_attribute_specifier, - ACTIONS(5836), 12, + ACTIONS(5061), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -482309,12 +351713,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(5838), 32, + ACTIONS(5059), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -482337,21 +351743,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [116999] = 5, + anon_sym_try, + anon_sym_requires, + [67983] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3965), 1, - sym_attribute_specifier, - ACTIONS(5896), 12, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6296), 1, + anon_sym_AMP, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6308), 1, + anon_sym_bitand, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(6402), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6404), 1, + anon_sym_AMP_AMP, + ACTIONS(6406), 1, + anon_sym_PIPE, + ACTIONS(6410), 1, + anon_sym_or, + ACTIONS(6412), 1, + anon_sym_and, + ACTIONS(6414), 1, + anon_sym_bitor, + ACTIONS(6437), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6439), 1, + anon_sym_QMARK, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6053), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(6292), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6302), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6310), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6408), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6294), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6298), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6300), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6051), 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, + [68091] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5675), 1, + anon_sym_LBRACK, + STATE(3195), 1, + sym_new_declarator, + ACTIONS(5690), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5688), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [68155] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5257), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -482362,12 +351910,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(5898), 32, + ACTIONS(5255), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -482390,31 +351940,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [117057] = 6, + anon_sym_try, + anon_sym_requires, + [68215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, + ACTIONS(5602), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_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(4357), 1, - sym_template_argument_list, - ACTIONS(4302), 7, + anon_sym_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(5600), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [68275] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4615), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4873), 1, + anon_sym_LBRACK, + ACTIONS(4867), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(4617), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4069), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(4061), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [68343] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6316), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6318), 1, + anon_sym_COMMA, + ACTIONS(6322), 1, + anon_sym_DASH, + ACTIONS(6324), 1, + anon_sym_PLUS, + ACTIONS(6326), 1, + anon_sym_STAR, + ACTIONS(6328), 1, + anon_sym_SLASH, + ACTIONS(6330), 1, + anon_sym_PERCENT, + ACTIONS(6332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, + anon_sym_AMP_AMP, + ACTIONS(6336), 1, + anon_sym_PIPE, + ACTIONS(6338), 1, + anon_sym_CARET, + ACTIONS(6340), 1, + anon_sym_AMP, + ACTIONS(6342), 1, + anon_sym_EQ_EQ, + ACTIONS(6344), 1, + anon_sym_BANG_EQ, + ACTIONS(6346), 1, + anon_sym_GT, + ACTIONS(6348), 1, + anon_sym_GT_EQ, + ACTIONS(6350), 1, + anon_sym_LT_EQ, + ACTIONS(6352), 1, + anon_sym_LT, + ACTIONS(6354), 1, + anon_sym_LT_LT, + ACTIONS(6356), 1, + anon_sym_GT_GT, + ACTIONS(6358), 1, + anon_sym_EQ, + ACTIONS(6360), 1, + anon_sym_QMARK, + ACTIONS(6362), 1, + anon_sym_STAR_EQ, + ACTIONS(6364), 1, + anon_sym_SLASH_EQ, + ACTIONS(6366), 1, + anon_sym_PERCENT_EQ, + ACTIONS(6368), 1, + anon_sym_PLUS_EQ, + ACTIONS(6370), 1, + anon_sym_DASH_EQ, + ACTIONS(6372), 1, + anon_sym_LT_LT_EQ, + ACTIONS(6374), 1, + anon_sym_GT_GT_EQ, + ACTIONS(6376), 1, + anon_sym_AMP_EQ, + ACTIONS(6378), 1, + anon_sym_CARET_EQ, + ACTIONS(6380), 1, + anon_sym_PIPE_EQ, + ACTIONS(6382), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6384), 1, + anon_sym_or, + ACTIONS(6386), 1, + anon_sym_and, + ACTIONS(6388), 1, + anon_sym_bitor, + ACTIONS(6390), 1, + anon_sym_xor, + ACTIONS(6392), 1, + anon_sym_bitand, + ACTIONS(6394), 1, + anon_sym_not_eq, + ACTIONS(6398), 1, + anon_sym_DOT_STAR, + ACTIONS(6400), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(6461), 1, + anon_sym_RPAREN, + STATE(1505), 1, + sym__binary_fold_operator, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + STATE(7414), 1, + sym__fold_operator, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [68499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5261), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(5673), 36, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5259), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -482441,7 +352220,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, @@ -482451,14 +352231,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [117117] = 5, + anon_sym_try, + anon_sym_requires, + [68559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3990), 1, - sym_attribute_specifier, - ACTIONS(5840), 12, + ACTIONS(5606), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(5604), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [68619] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5265), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -482469,12 +352304,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(5842), 32, + ACTIONS(5263), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -482497,117 +352334,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [117175] = 24, + anon_sym_try, + anon_sym_requires, + [68679] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, anon_sym_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7210), 1, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6310), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - STATE(5832), 1, - sym_ref_qualifier, - STATE(6211), 1, - sym_gnu_asm_expression, - STATE(6605), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4502), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4890), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6066), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6361), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(5759), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [117271] = 5, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5757), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [68753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3914), 1, - sym_attribute_specifier, - ACTIONS(5868), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5866), 40, + ACTIONS(5202), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym___declspec, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5200), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -482620,23 +352457,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_asm, anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, + anon_sym_template, + anon_sym_operator, anon_sym_try, anon_sym_requires, - [117329] = 5, + [68813] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(4001), 1, - sym_attribute_specifier, - ACTIONS(5844), 12, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6316), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6318), 1, + anon_sym_COMMA, + ACTIONS(6322), 1, + anon_sym_DASH, + ACTIONS(6324), 1, + anon_sym_PLUS, + ACTIONS(6326), 1, + anon_sym_STAR, + ACTIONS(6328), 1, + anon_sym_SLASH, + ACTIONS(6330), 1, + anon_sym_PERCENT, + ACTIONS(6332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, + anon_sym_AMP_AMP, + ACTIONS(6336), 1, + anon_sym_PIPE, + ACTIONS(6338), 1, + anon_sym_CARET, + ACTIONS(6340), 1, + anon_sym_AMP, + ACTIONS(6342), 1, + anon_sym_EQ_EQ, + ACTIONS(6344), 1, + anon_sym_BANG_EQ, + ACTIONS(6346), 1, + anon_sym_GT, + ACTIONS(6348), 1, + anon_sym_GT_EQ, + ACTIONS(6350), 1, + anon_sym_LT_EQ, + ACTIONS(6352), 1, + anon_sym_LT, + ACTIONS(6354), 1, + anon_sym_LT_LT, + ACTIONS(6356), 1, + anon_sym_GT_GT, + ACTIONS(6358), 1, + anon_sym_EQ, + ACTIONS(6360), 1, + anon_sym_QMARK, + ACTIONS(6362), 1, + anon_sym_STAR_EQ, + ACTIONS(6364), 1, + anon_sym_SLASH_EQ, + ACTIONS(6366), 1, + anon_sym_PERCENT_EQ, + ACTIONS(6368), 1, + anon_sym_PLUS_EQ, + ACTIONS(6370), 1, + anon_sym_DASH_EQ, + ACTIONS(6372), 1, + anon_sym_LT_LT_EQ, + ACTIONS(6374), 1, + anon_sym_GT_GT_EQ, + ACTIONS(6376), 1, + anon_sym_AMP_EQ, + ACTIONS(6378), 1, + anon_sym_CARET_EQ, + ACTIONS(6380), 1, + anon_sym_PIPE_EQ, + ACTIONS(6382), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6384), 1, + anon_sym_or, + ACTIONS(6386), 1, + anon_sym_and, + ACTIONS(6388), 1, + anon_sym_bitor, + ACTIONS(6390), 1, + anon_sym_xor, + ACTIONS(6392), 1, + anon_sym_bitand, + ACTIONS(6394), 1, + anon_sym_not_eq, + ACTIONS(6398), 1, + anon_sym_DOT_STAR, + ACTIONS(6400), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(6463), 1, + anon_sym_RPAREN, + STATE(1505), 1, + sym__binary_fold_operator, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + STATE(7414), 1, + sym__fold_operator, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [68969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5166), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -482647,12 +352587,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(5846), 32, + ACTIONS(5164), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -482675,45 +352617,495 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [117387] = 5, + anon_sym_try, + anon_sym_requires, + [69029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(5196), 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(5198), 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__, - STATE(3853), 1, - sym_attribute_specifier, - ACTIONS(5850), 4, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [69089] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6316), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6318), 1, + anon_sym_COMMA, + ACTIONS(6322), 1, + anon_sym_DASH, + ACTIONS(6324), 1, + anon_sym_PLUS, + ACTIONS(6326), 1, + anon_sym_STAR, + ACTIONS(6328), 1, + anon_sym_SLASH, + ACTIONS(6330), 1, + anon_sym_PERCENT, + ACTIONS(6332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, + anon_sym_AMP_AMP, + ACTIONS(6336), 1, + anon_sym_PIPE, + ACTIONS(6338), 1, + anon_sym_CARET, + ACTIONS(6340), 1, + anon_sym_AMP, + ACTIONS(6342), 1, + anon_sym_EQ_EQ, + ACTIONS(6344), 1, + anon_sym_BANG_EQ, + ACTIONS(6346), 1, + anon_sym_GT, + ACTIONS(6348), 1, + anon_sym_GT_EQ, + ACTIONS(6350), 1, + anon_sym_LT_EQ, + ACTIONS(6352), 1, + anon_sym_LT, + ACTIONS(6354), 1, + anon_sym_LT_LT, + ACTIONS(6356), 1, + anon_sym_GT_GT, + ACTIONS(6358), 1, + anon_sym_EQ, + ACTIONS(6360), 1, + anon_sym_QMARK, + ACTIONS(6362), 1, + anon_sym_STAR_EQ, + ACTIONS(6364), 1, + anon_sym_SLASH_EQ, + ACTIONS(6366), 1, + anon_sym_PERCENT_EQ, + ACTIONS(6368), 1, + anon_sym_PLUS_EQ, + ACTIONS(6370), 1, + anon_sym_DASH_EQ, + ACTIONS(6372), 1, + anon_sym_LT_LT_EQ, + ACTIONS(6374), 1, + anon_sym_GT_GT_EQ, + ACTIONS(6376), 1, + anon_sym_AMP_EQ, + ACTIONS(6378), 1, + anon_sym_CARET_EQ, + ACTIONS(6380), 1, + anon_sym_PIPE_EQ, + ACTIONS(6382), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6384), 1, + anon_sym_or, + ACTIONS(6386), 1, + anon_sym_and, + ACTIONS(6388), 1, + anon_sym_bitor, + ACTIONS(6390), 1, + anon_sym_xor, + ACTIONS(6392), 1, + anon_sym_bitand, + ACTIONS(6394), 1, + anon_sym_not_eq, + ACTIONS(6398), 1, + anon_sym_DOT_STAR, + ACTIONS(6400), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(6465), 1, + anon_sym_RPAREN, + STATE(1505), 1, + sym__binary_fold_operator, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + STATE(7414), 1, + sym__fold_operator, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [69245] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5304), 1, + sym_literal_suffix, + ACTIONS(4069), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4061), 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___inline, - anon_sym_const, - ACTIONS(5848), 40, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_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, + [69307] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6316), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6318), 1, + anon_sym_COMMA, + ACTIONS(6322), 1, + anon_sym_DASH, + ACTIONS(6324), 1, + anon_sym_PLUS, + ACTIONS(6326), 1, + anon_sym_STAR, + ACTIONS(6328), 1, + anon_sym_SLASH, + ACTIONS(6330), 1, + anon_sym_PERCENT, + ACTIONS(6332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, + anon_sym_AMP_AMP, + ACTIONS(6336), 1, + anon_sym_PIPE, + ACTIONS(6338), 1, + anon_sym_CARET, + ACTIONS(6340), 1, + anon_sym_AMP, + ACTIONS(6342), 1, + anon_sym_EQ_EQ, + ACTIONS(6344), 1, + anon_sym_BANG_EQ, + ACTIONS(6346), 1, + anon_sym_GT, + ACTIONS(6348), 1, + anon_sym_GT_EQ, + ACTIONS(6350), 1, + anon_sym_LT_EQ, + ACTIONS(6352), 1, + anon_sym_LT, + ACTIONS(6354), 1, + anon_sym_LT_LT, + ACTIONS(6356), 1, + anon_sym_GT_GT, + ACTIONS(6358), 1, + anon_sym_EQ, + ACTIONS(6360), 1, + anon_sym_QMARK, + ACTIONS(6362), 1, + anon_sym_STAR_EQ, + ACTIONS(6364), 1, + anon_sym_SLASH_EQ, + ACTIONS(6366), 1, + anon_sym_PERCENT_EQ, + ACTIONS(6368), 1, + anon_sym_PLUS_EQ, + ACTIONS(6370), 1, + anon_sym_DASH_EQ, + ACTIONS(6372), 1, + anon_sym_LT_LT_EQ, + ACTIONS(6374), 1, + anon_sym_GT_GT_EQ, + ACTIONS(6376), 1, + anon_sym_AMP_EQ, + ACTIONS(6378), 1, + anon_sym_CARET_EQ, + ACTIONS(6380), 1, + anon_sym_PIPE_EQ, + ACTIONS(6382), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6384), 1, + anon_sym_or, + ACTIONS(6386), 1, + anon_sym_and, + ACTIONS(6388), 1, + anon_sym_bitor, + ACTIONS(6390), 1, + anon_sym_xor, + ACTIONS(6392), 1, + anon_sym_bitand, + ACTIONS(6394), 1, + anon_sym_not_eq, + ACTIONS(6398), 1, + anon_sym_DOT_STAR, + ACTIONS(6400), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(6467), 1, + anon_sym_RPAREN, + STATE(1505), 1, + sym__binary_fold_operator, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + STATE(7414), 1, + sym__fold_operator, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [69463] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4615), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4873), 1, + anon_sym_LBRACK, + ACTIONS(4867), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(4069), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(4061), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5763), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(5761), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [69589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5096), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym___declspec, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5094), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -482726,100 +353118,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_asm, anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, + anon_sym_template, + anon_sym_operator, anon_sym_try, anon_sym_requires, - [117445] = 5, + [69649] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3854), 1, - sym_attribute_specifier, - ACTIONS(5884), 4, - anon_sym_AMP, + ACTIONS(4615), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4873), 1, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5882), 40, - anon_sym_COMMA, + ACTIONS(4867), 2, anon_sym_RPAREN, anon_sym_LPAREN2, + ACTIONS(4069), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [117503] = 5, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4061), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69715] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3855), 1, - sym_attribute_specifier, - ACTIONS(5922), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5920), 40, + ACTIONS(6446), 1, + sym_primitive_type, + ACTIONS(6469), 1, + sym_identifier, + STATE(2425), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6444), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5074), 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_extern, anon_sym_LBRACK_LBRACK, - anon_sym___declspec, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5076), 35, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -482838,94 +353248,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [117561] = 5, + [69783] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3847), 1, - sym_attribute_specifier, - ACTIONS(5926), 4, - anon_sym_AMP, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5924), 40, + ACTIONS(6316), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6318), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6322), 1, + anon_sym_DASH, + ACTIONS(6324), 1, + anon_sym_PLUS, + ACTIONS(6326), 1, anon_sym_STAR, + ACTIONS(6328), 1, + anon_sym_SLASH, + ACTIONS(6330), 1, + anon_sym_PERCENT, + ACTIONS(6332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, + ACTIONS(6336), 1, + anon_sym_PIPE, + ACTIONS(6338), 1, + anon_sym_CARET, + ACTIONS(6340), 1, + anon_sym_AMP, + ACTIONS(6342), 1, + anon_sym_EQ_EQ, + ACTIONS(6344), 1, + anon_sym_BANG_EQ, + ACTIONS(6346), 1, + anon_sym_GT, + ACTIONS(6348), 1, + anon_sym_GT_EQ, + ACTIONS(6350), 1, + anon_sym_LT_EQ, + ACTIONS(6352), 1, + anon_sym_LT, + ACTIONS(6354), 1, + anon_sym_LT_LT, + ACTIONS(6356), 1, + anon_sym_GT_GT, + ACTIONS(6358), 1, anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [117619] = 5, + ACTIONS(6360), 1, + anon_sym_QMARK, + ACTIONS(6362), 1, + anon_sym_STAR_EQ, + ACTIONS(6364), 1, + anon_sym_SLASH_EQ, + ACTIONS(6366), 1, + anon_sym_PERCENT_EQ, + ACTIONS(6368), 1, + anon_sym_PLUS_EQ, + ACTIONS(6370), 1, + anon_sym_DASH_EQ, + ACTIONS(6372), 1, + anon_sym_LT_LT_EQ, + ACTIONS(6374), 1, + anon_sym_GT_GT_EQ, + ACTIONS(6376), 1, + anon_sym_AMP_EQ, + ACTIONS(6378), 1, + anon_sym_CARET_EQ, + ACTIONS(6380), 1, + anon_sym_PIPE_EQ, + ACTIONS(6382), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6384), 1, + anon_sym_or, + ACTIONS(6386), 1, + anon_sym_and, + ACTIONS(6388), 1, + anon_sym_bitor, + ACTIONS(6390), 1, + anon_sym_xor, + ACTIONS(6392), 1, + anon_sym_bitand, + ACTIONS(6394), 1, + anon_sym_not_eq, + ACTIONS(6398), 1, + anon_sym_DOT_STAR, + ACTIONS(6400), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(6471), 1, + anon_sym_RPAREN, + STATE(1505), 1, + sym__binary_fold_operator, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + STATE(7414), 1, + sym__fold_operator, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [69939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3973), 1, - sym_attribute_specifier, - ACTIONS(5838), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5836), 40, + ACTIONS(4957), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym___declspec, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4955), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -482938,76 +353401,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_asm, anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, + anon_sym_template, + anon_sym_operator, anon_sym_try, anon_sym_requires, - [117677] = 5, + [69999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3990), 1, - sym_attribute_specifier, - ACTIONS(5842), 4, + ACTIONS(5655), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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___inline, - anon_sym_const, - ACTIONS(5840), 40, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5653), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [117735] = 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_DASH_GT_STAR, + [70059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3944), 1, - sym_attribute_specifier, - ACTIONS(5947), 12, + ACTIONS(5125), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -483018,12 +353483,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(5949), 32, + ACTIONS(5123), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -483046,45 +353513,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [117793] = 5, + anon_sym_try, + anon_sym_requires, + [70119] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(4001), 1, - sym_attribute_specifier, - ACTIONS(5846), 4, + ACTIONS(6416), 1, + anon_sym_LT, + STATE(2944), 1, + sym_template_argument_list, + ACTIONS(5732), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5730), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5844), 40, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5121), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym___declspec, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5119), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -483097,23 +353631,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_asm, anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, + anon_sym_template, + anon_sym_operator, anon_sym_try, anon_sym_requires, - [117851] = 5, + [70243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, + ACTIONS(6087), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6089), 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__, - STATE(3988), 1, - sym_attribute_specifier, - ACTIONS(5854), 12, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_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, + [70303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -483124,12 +353713,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(5856), 32, + ACTIONS(5160), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -483152,218 +353743,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [117909] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7243), 1, - anon_sym_LBRACK, - STATE(5844), 1, - sym_ref_qualifier, - STATE(6189), 1, - sym_gnu_asm_expression, - STATE(6607), 1, - sym_trailing_return_type, - STATE(6636), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4505), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4511), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6081), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6334), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6493), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7241), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, anon_sym_try, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [118005] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, anon_sym_requires, - ACTIONS(7243), 1, - anon_sym_LBRACK, - STATE(5844), 1, - sym_ref_qualifier, - STATE(6189), 1, - sym_gnu_asm_expression, - STATE(6607), 1, - sym_trailing_return_type, - STATE(6636), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4469), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(4505), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6081), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6334), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6493), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7241), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [118101] = 5, + [70363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - STATE(2334), 1, - sym_template_argument_list, - ACTIONS(5918), 10, + ACTIONS(5743), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5916), 34, + anon_sym_DASH_GT, + ACTIONS(5741), 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_LBRACK_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [118159] = 5, + anon_sym_DASH_GT_STAR, + [70423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3854), 1, - sym_attribute_specifier, - ACTIONS(5882), 12, + ACTIONS(5158), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -483374,12 +353827,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(5884), 32, + ACTIONS(5156), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -483402,21 +353857,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [118217] = 5, + anon_sym_try, + anon_sym_requires, + [70483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3847), 1, - sym_attribute_specifier, - ACTIONS(5924), 12, + ACTIONS(5198), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -483427,12 +353884,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(5926), 32, + ACTIONS(5196), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -483455,127 +353914,310 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [118275] = 5, + anon_sym_try, + anon_sym_requires, + [70543] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - STATE(3988), 1, - sym_attribute_specifier, - ACTIONS(5856), 4, + ACTIONS(6473), 1, + anon_sym_LT, + STATE(3282), 1, + sym_template_argument_list, + ACTIONS(5865), 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_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5854), 40, + 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(5863), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5813), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(5811), 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___extension__, - anon_sym_extern, anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [118333] = 5, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [70667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3853), 1, - sym_attribute_specifier, - ACTIONS(5848), 12, + ACTIONS(5630), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(5628), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5626), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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_GT2, - ACTIONS(5850), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5624), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70787] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5618), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [118391] = 5, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5616), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - STATE(3855), 1, - sym_attribute_specifier, - ACTIONS(5920), 12, + ACTIONS(5096), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -483586,12 +354228,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(5922), 32, + ACTIONS(5094), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -483614,60 +354258,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [118449] = 11, + anon_sym_try, + anon_sym_requires, + [70907] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7218), 1, + ACTIONS(4587), 1, + anon_sym_const, + ACTIONS(4598), 1, + anon_sym_AMP, + ACTIONS(4591), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7220), 1, - anon_sym_LBRACK, - ACTIONS(7222), 1, - sym_auto, - ACTIONS(7224), 1, - anon_sym_decltype, - STATE(2636), 1, - sym_decltype_auto, - STATE(4784), 1, - sym_new_declarator, - STATE(4815), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5771), 9, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(4596), 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(5769), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, + ACTIONS(4594), 15, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(4589), 18, anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -483680,16 +354332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [118519] = 6, + [70975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(7070), 1, - anon_sym_LT, - STATE(4357), 1, - sym_template_argument_list, - ACTIONS(4284), 10, + ACTIONS(5096), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -483697,10 +354343,13 @@ 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(4276), 33, + ACTIONS(5094), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -483727,17 +354376,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [118579] = 3, + anon_sym_try, + anon_sym_requires, + [71035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5323), 12, + ACTIONS(5194), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -483748,9 +354403,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(5321), 33, + ACTIONS(5192), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -483777,191 +354433,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [118632] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, + anon_sym_try, anon_sym_requires, - STATE(5940), 1, - sym_ref_qualifier, - STATE(6221), 1, - sym_gnu_asm_expression, - STATE(6608), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4613), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5026), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6090), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6596), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [118727] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9002), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [118822] = 3, + [71095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 9, + ACTIONS(5028), 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(5048), 36, + anon_sym_DASH_GT, + ACTIONS(5030), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -483971,121 +354499,259 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [71155] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6296), 1, + anon_sym_AMP, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6308), 1, + anon_sym_bitand, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(6402), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6404), 1, + anon_sym_AMP_AMP, + ACTIONS(6406), 1, + anon_sym_PIPE, + ACTIONS(6410), 1, + anon_sym_or, + ACTIONS(6412), 1, + anon_sym_and, + ACTIONS(6414), 1, + anon_sym_bitor, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(5894), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(6292), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6302), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6310), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [118875] = 3, + ACTIONS(6408), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6294), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6298), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6300), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5892), 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, + [71259] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6296), 1, + anon_sym_AMP, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6308), 1, + anon_sym_bitand, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(6402), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6404), 1, + anon_sym_AMP_AMP, + ACTIONS(6406), 1, + anon_sym_PIPE, + ACTIONS(6410), 1, + anon_sym_or, + ACTIONS(6412), 1, + anon_sym_and, + ACTIONS(6414), 1, + anon_sym_bitor, + ACTIONS(6437), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6439), 1, + anon_sym_QMARK, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(5946), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(6292), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6302), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6310), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6408), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6294), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6298), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6300), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5944), 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, + [71367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 9, + ACTIONS(5797), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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(5010), 36, + anon_sym_DASH_GT, + ACTIONS(5795), 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_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [118928] = 24, + anon_sym_DASH_GT_STAR, + [71427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9066), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + ACTIONS(4915), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + ACTIONS(4913), 40, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -484097,284 +354763,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [119023] = 3, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [71487] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 9, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6316), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6322), 1, anon_sym_DASH, + ACTIONS(6324), 1, 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(5064), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6326), 1, anon_sym_STAR, + ACTIONS(6328), 1, + anon_sym_SLASH, + ACTIONS(6330), 1, anon_sym_PERCENT, + ACTIONS(6332), 1, anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, anon_sym_AMP_AMP, + ACTIONS(6336), 1, + anon_sym_PIPE, + ACTIONS(6338), 1, anon_sym_CARET, + ACTIONS(6340), 1, + anon_sym_AMP, + ACTIONS(6342), 1, anon_sym_EQ_EQ, + ACTIONS(6344), 1, anon_sym_BANG_EQ, + ACTIONS(6346), 1, + anon_sym_GT, + ACTIONS(6348), 1, anon_sym_GT_EQ, + ACTIONS(6350), 1, + anon_sym_LT_EQ, + ACTIONS(6352), 1, + anon_sym_LT, + ACTIONS(6354), 1, anon_sym_LT_LT, + ACTIONS(6356), 1, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(6358), 1, + anon_sym_EQ, + ACTIONS(6360), 1, anon_sym_QMARK, + ACTIONS(6362), 1, + anon_sym_STAR_EQ, + ACTIONS(6364), 1, + anon_sym_SLASH_EQ, + ACTIONS(6366), 1, + anon_sym_PERCENT_EQ, + ACTIONS(6368), 1, + anon_sym_PLUS_EQ, + ACTIONS(6370), 1, + anon_sym_DASH_EQ, + ACTIONS(6372), 1, + anon_sym_LT_LT_EQ, + ACTIONS(6374), 1, + anon_sym_GT_GT_EQ, + ACTIONS(6376), 1, + anon_sym_AMP_EQ, + ACTIONS(6378), 1, + anon_sym_CARET_EQ, + ACTIONS(6380), 1, + anon_sym_PIPE_EQ, + ACTIONS(6382), 1, anon_sym_LT_EQ_GT, + ACTIONS(6384), 1, anon_sym_or, + ACTIONS(6386), 1, anon_sym_and, + ACTIONS(6388), 1, anon_sym_bitor, + ACTIONS(6390), 1, anon_sym_xor, + ACTIONS(6392), 1, anon_sym_bitand, + ACTIONS(6394), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(6398), 1, anon_sym_DOT_STAR, + ACTIONS(6400), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(6419), 1, + anon_sym_COMMA, + ACTIONS(6476), 1, + anon_sym_RPAREN, + STATE(1505), 1, + sym__binary_fold_operator, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + STATE(7414), 1, + sym__fold_operator, + ACTIONS(6180), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [119076] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9547), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [119171] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5672), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9355), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4655), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [119266] = 3, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [71643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 9, + ACTIONS(5645), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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(5068), 36, + anon_sym_DASH_GT, + ACTIONS(5643), 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_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [119319] = 3, + anon_sym_DASH_GT_STAR, + [71703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5058), 9, + ACTIONS(5115), 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(5060), 36, + anon_sym_DASH_GT, + ACTIONS(5117), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -484385,709 +354993,259 @@ 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, - [119372] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, sym_auto, - ACTIONS(2008), 1, anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9316), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [119467] = 24, + anon_sym_DASH_GT_STAR, + [71763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - STATE(5867), 1, - sym_ref_qualifier, - STATE(6223), 1, - sym_gnu_asm_expression, - STATE(6605), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4569), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4989), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6108), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6573), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(4594), 2, + anon_sym_COLON_COLON, anon_sym_LBRACE, + ACTIONS(4596), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [119562] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7194), 1, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4589), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7251), 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, - STATE(5867), 1, - sym_ref_qualifier, - STATE(6223), 1, - sym_gnu_asm_expression, - STATE(6605), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5466), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6108), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6233), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6573), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [119657] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(7259), 1, - sym_primitive_type, - ACTIONS(7261), 1, - anon_sym_enum, - ACTIONS(7263), 1, - anon_sym_class, - ACTIONS(7265), 1, - anon_sym_struct, - ACTIONS(7267), 1, - anon_sym_union, - ACTIONS(7269), 1, - sym_auto, - ACTIONS(7271), 1, - anon_sym_decltype, - ACTIONS(7273), 1, - anon_sym_typename, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(4993), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5009), 1, - sym__type_specifier, - STATE(5584), 1, - sym_decltype_auto, - STATE(6615), 1, - sym_type_descriptor, - STATE(7279), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - STATE(4708), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7257), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5598), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [119752] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9611), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [119847] = 6, + anon_sym_GT2, + [71825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(7275), 1, - anon_sym_LT, - STATE(3280), 1, - sym_template_argument_list, - ACTIONS(4860), 11, + ACTIONS(4865), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4865), 31, + ACTIONS(4860), 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_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [119906] = 3, + [71885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 9, + ACTIONS(4836), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_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), 36, + anon_sym_DASH_GT, + ACTIONS(2828), 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_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [119959] = 24, + anon_sym_DASH_GT_STAR, + [71944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, + ACTIONS(6087), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7243), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - STATE(5921), 1, - sym_ref_qualifier, - STATE(6133), 1, - sym_gnu_asm_expression, - STATE(6588), 1, - sym_trailing_return_type, - STATE(6636), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4579), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4618), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6115), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6399), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6493), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7241), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(6089), 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_try, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [120054] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9080), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [120149] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(6615), 1, - sym_type_descriptor, - STATE(7300), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [120244] = 8, + 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, + [72003] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(7070), 1, - anon_sym_LT, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(4357), 1, - sym_template_argument_list, - ACTIONS(7152), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(4284), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(6478), 1, + anon_sym_typedef, + ACTIONS(3275), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4276), 33, + ACTIONS(3273), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -485108,918 +355266,385 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [120307] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9268), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [120402] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(3900), 1, - sym_identifier, - ACTIONS(7259), 1, - sym_primitive_type, - ACTIONS(7269), 1, - sym_auto, - ACTIONS(7271), 1, - anon_sym_decltype, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(7282), 1, - anon_sym_enum, - ACTIONS(7284), 1, - anon_sym_class, - ACTIONS(7286), 1, - anon_sym_struct, - ACTIONS(7288), 1, - anon_sym_union, - ACTIONS(7290), 1, - anon_sym_typename, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(4993), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5478), 1, - sym__type_specifier, - STATE(5584), 1, - sym_decltype_auto, - STATE(6615), 1, - sym_type_descriptor, - STATE(7261), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - STATE(4711), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7257), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5598), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [120497] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9506), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [120592] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, anon_sym_enum, - ACTIONS(2000), 1, anon_sym_class, - ACTIONS(2002), 1, anon_sym_struct, - ACTIONS(2004), 1, anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5672), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9281), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4655), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [120687] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, sym_auto, - ACTIONS(2008), 1, anon_sym_decltype, - ACTIONS(2010), 1, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(8963), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [120782] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9094), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [120877] = 24, + anon_sym_operator, + [72064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(4566), 19, + 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(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7292), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - STATE(5914), 1, - sym_ref_qualifier, - STATE(6141), 1, - sym_gnu_asm_expression, - STATE(6574), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5466), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6097), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6116), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6377), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 6, + ACTIONS(4571), 32, + 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_COLON, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [120972] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9309), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [121067] = 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72123] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 1, - anon_sym_LBRACE, - ACTIONS(5323), 11, + ACTIONS(5247), 1, + anon_sym_EQ, + ACTIONS(5249), 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(4069), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4061), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(5321), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [121122] = 24, + 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, + [72186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(4711), 19, + 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(7204), 1, - anon_sym_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - STATE(5902), 1, - sym_ref_qualifier, - STATE(6145), 1, - sym_gnu_asm_expression, - STATE(6608), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4588), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4938), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6096), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6402), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 6, + ACTIONS(4713), 32, + 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_try, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [121217] = 24, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72245] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(3143), 1, - anon_sym_enum, - ACTIONS(3145), 1, - anon_sym_class, - ACTIONS(3147), 1, - anon_sym_struct, - ACTIONS(3149), 1, - anon_sym_union, - ACTIONS(3173), 1, - sym_auto, - ACTIONS(3175), 1, - anon_sym_decltype, - ACTIONS(3177), 1, - anon_sym_typename, - ACTIONS(7294), 1, + ACTIONS(6480), 1, sym_identifier, - ACTIONS(7296), 1, - anon_sym_COLON_COLON, - ACTIONS(7298), 1, - sym_primitive_type, - STATE(3032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3612), 1, - sym_decltype_auto, - STATE(3616), 1, - sym_qualified_type_identifier, - STATE(5446), 1, - sym__type_specifier, - STATE(6898), 1, - sym_type_descriptor, - STATE(7297), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3593), 2, - sym_decltype, - sym_template_type, - STATE(4724), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3139), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3614), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [121312] = 3, + STATE(3149), 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(4825), 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(4823), 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, + [72312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6107), 12, + ACTIONS(6073), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(6071), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6105), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [121365] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5672), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9211), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4655), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [121460] = 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, + [72371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6648), 12, + ACTIONS(6069), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(6067), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72430] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6489), 1, + anon_sym_namespace, + ACTIONS(5710), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6646), 33, + ACTIONS(5708), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -486040,74 +355665,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, + sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, - [121513] = 24, + [72491] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6493), 1, anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(6495), 1, anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7239), 1, + ACTIONS(6497), 1, anon_sym_LBRACK, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - STATE(5900), 1, - sym_ref_qualifier, - STATE(6219), 1, - sym_gnu_asm_expression, - STATE(6574), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5466), 2, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5245), 1, + sym__scope_resolution, + STATE(5594), 1, + sym__declarator, + STATE(7589), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3288), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3793), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6092), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6222), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6610), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(7198), 11, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -486118,207 +355756,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [121608] = 24, + [72592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(4566), 19, + 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(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7243), 1, - anon_sym_LBRACK, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - STATE(5921), 1, - sym_ref_qualifier, - STATE(6133), 1, - sym_gnu_asm_expression, - STATE(6588), 1, - sym_trailing_return_type, - STATE(6636), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4564), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(4579), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6115), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6399), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6493), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7241), 6, + ACTIONS(4571), 32, + 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_try, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [121703] = 24, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72651] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4792), 1, sym_identifier, - ACTIONS(7233), 1, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6499), 1, + anon_sym_STAR, + ACTIONS(6501), 1, + anon_sym_AMP_AMP, + ACTIONS(6503), 1, + anon_sym_AMP, + ACTIONS(6505), 1, anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5279), 1, sym__scope_resolution, - STATE(9061), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, + STATE(5999), 1, + sym__declarator, + STATE(7365), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3808), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [121798] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - sym_auto, - ACTIONS(119), 1, - anon_sym_decltype, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2719), 1, - sym_primitive_type, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7300), 1, - anon_sym_COLON_COLON, - ACTIONS(7302), 1, - anon_sym_enum, - ACTIONS(7304), 1, - anon_sym_class, - ACTIONS(7306), 1, - anon_sym_struct, - ACTIONS(7308), 1, - anon_sym_union, - ACTIONS(7310), 1, - anon_sym_typename, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(3929), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3989), 1, - sym_decltype_auto, - STATE(4795), 1, - sym__type_specifier, - STATE(6615), 1, - sym_type_descriptor, - STATE(7288), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, + aux_sym__type_definition_type_repeat1, + STATE(4469), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - STATE(4700), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3958), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -486331,138 +355889,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [121893] = 9, + [72752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(7156), 1, - anon_sym_LBRACE, - ACTIONS(7312), 1, - anon_sym_COLON, - STATE(3962), 1, - sym_attribute_specifier, - STATE(4387), 1, - sym__enum_base_clause, - STATE(4499), 1, - sym_enumerator_list, - ACTIONS(5800), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5997), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5802), 32, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5995), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [121958] = 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_DASH_GT_STAR, + [72811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 1, - anon_sym_LBRACE, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5323), 10, + ACTIONS(6105), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(6103), 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_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(5321), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [122015] = 6, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(7314), 1, - anon_sym_LT, - STATE(3280), 1, - sym_template_argument_list, - ACTIONS(5673), 11, + ACTIONS(6005), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(6003), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6001), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5999), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5152), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4302), 31, + sym_literal_suffix, + ACTIONS(5154), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -486471,127 +356145,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_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, + [73047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4715), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(4717), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73106] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4755), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(4757), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73165] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6507), 1, + anon_sym_AMP_AMP, + ACTIONS(6509), 1, + anon_sym_and, + ACTIONS(5374), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [122074] = 24, + ACTIONS(5376), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(7259), 1, - sym_primitive_type, - ACTIONS(7261), 1, - anon_sym_enum, - ACTIONS(7263), 1, - anon_sym_class, - ACTIONS(7265), 1, - anon_sym_struct, - ACTIONS(7267), 1, - anon_sym_union, - ACTIONS(7269), 1, + ACTIONS(5032), 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(5034), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, - ACTIONS(7271), 1, anon_sym_decltype, - ACTIONS(7273), 1, - anon_sym_typename, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(4853), 1, - sym__type_specifier, - STATE(4993), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5584), 1, - sym_decltype_auto, - STATE(6615), 1, - sym_type_descriptor, - STATE(7279), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - STATE(4674), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7257), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5598), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [122169] = 8, + anon_sym_DASH_GT_STAR, + [73287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(4869), 1, - anon_sym_LBRACK, - ACTIONS(7070), 1, - anon_sym_LT, - STATE(4718), 1, - sym_template_argument_list, - ACTIONS(4862), 3, - anon_sym_RPAREN, + ACTIONS(6511), 1, + anon_sym_typedef, + ACTIONS(3275), 6, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4865), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ, - ACTIONS(4860), 32, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3273), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -486611,784 +356438,563 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [122232] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, + sym_primitive_type, anon_sym_enum, - ACTIONS(2000), 1, anon_sym_class, - ACTIONS(2002), 1, anon_sym_struct, - ACTIONS(2004), 1, anon_sym_union, - ACTIONS(2006), 1, + sym_identifier, sym_auto, - ACTIONS(2008), 1, anon_sym_decltype, - ACTIONS(2010), 1, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9068), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [122327] = 24, + anon_sym_template, + anon_sym_operator, + [73348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(4723), 19, + 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(7204), 1, - anon_sym_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - STATE(5902), 1, - sym_ref_qualifier, - STATE(6145), 1, - sym_gnu_asm_expression, - STATE(6608), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5353), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6096), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6149), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6402), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 6, + ACTIONS(4725), 32, + 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_try, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [122422] = 24, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5672), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9005), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4655), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [122517] = 24, + ACTIONS(5797), 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(5795), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [73466] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, + ACTIONS(6507), 1, anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(6509), 1, + anon_sym_and, + ACTIONS(6513), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6515), 1, + anon_sym_or, + ACTIONS(5396), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - STATE(5887), 1, - sym_ref_qualifier, - STATE(6122), 1, - sym_gnu_asm_expression, - STATE(6605), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5466), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6107), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6121), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6404), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 6, + ACTIONS(5398), 30, + 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_COLON, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [122612] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9536), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [122707] = 24, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9097), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [122802] = 24, + ACTIONS(4739), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(4741), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73592] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5906), 1, + anon_sym_EQ, + ACTIONS(6521), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6523), 1, anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(6525), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7251), 1, + ACTIONS(6535), 1, + anon_sym_GT_EQ, + ACTIONS(6539), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6541), 1, + anon_sym_or, + ACTIONS(6543), 1, + anon_sym_and, + ACTIONS(6545), 1, + anon_sym_bitor, + ACTIONS(6547), 1, + anon_sym_bitand, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6517), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6527), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6537), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - STATE(5867), 1, - sym_ref_qualifier, - STATE(6223), 1, - sym_gnu_asm_expression, - STATE(6605), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4569), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6108), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6573), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6519), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6531), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6533), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5904), 16, + anon_sym_DOT_DOT_DOT, anon_sym_COLON, - anon_sym_try, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [122897] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9347), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [122992] = 24, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [73697] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9318), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [123087] = 24, + ACTIONS(4617), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4069), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(4061), 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(5182), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7243), 1, - anon_sym_LBRACK, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - STATE(5864), 1, - sym_ref_qualifier, - STATE(6127), 1, - sym_gnu_asm_expression, - STATE(6607), 1, - sym_trailing_return_type, - STATE(6636), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4581), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4637), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6110), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6430), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6493), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7241), 6, + anon_sym_GT, + anon_sym_LT_EQ, + anon_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(5184), 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_LBRACE, - anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [123182] = 24, + anon_sym_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, + [73817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(5090), 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(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 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, - STATE(5889), 1, - sym_ref_qualifier, - STATE(6139), 1, - sym_gnu_asm_expression, - STATE(6587), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5353), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6101), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6140), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6413), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 6, + ACTIONS(5092), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(7245), 11, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [73876] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6555), 1, + anon_sym_STAR, + ACTIONS(6557), 1, + anon_sym_AMP_AMP, + ACTIONS(6559), 1, + anon_sym_AMP, + ACTIONS(6561), 1, + anon_sym_COLON_COLON, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5323), 1, + sym__scope_resolution, + STATE(5901), 1, + sym__declarator, + STATE(7249), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3790), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4469), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -487399,171 +357005,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [123277] = 3, + [73977] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 9, + ACTIONS(6563), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(5763), 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(5052), 36, + ACTIONS(5761), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [123330] = 9, + anon_sym_GT2, + [74038] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(7156), 1, - anon_sym_LBRACE, - ACTIONS(7312), 1, - anon_sym_COLON, - STATE(3969), 1, - sym_attribute_specifier, - STATE(4419), 1, - sym__enum_base_clause, - STATE(4487), 1, - sym_enumerator_list, - ACTIONS(5792), 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(5794), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, + ACTIONS(47), 1, anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [123395] = 24, - ACTIONS(3), 1, - sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, sym_identifier, - ACTIONS(7233), 1, + ACTIONS(5428), 1, anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6565), 1, + anon_sym_STAR, + ACTIONS(6567), 1, + anon_sym_AMP_AMP, + ACTIONS(6569), 1, + anon_sym_AMP, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5245), 1, sym__scope_resolution, - STATE(8996), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, + STATE(5830), 1, + sym__declarator, + STATE(7308), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3319), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3797), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -487576,491 +357139,580 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [123490] = 24, + [74139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(7316), 1, - sym_identifier, - ACTIONS(7318), 1, - anon_sym_COLON_COLON, - ACTIONS(7322), 1, - sym_primitive_type, - ACTIONS(7324), 1, - anon_sym_enum, - ACTIONS(7326), 1, - anon_sym_class, - ACTIONS(7328), 1, - anon_sym_struct, - ACTIONS(7330), 1, - anon_sym_union, - ACTIONS(7332), 1, - sym_auto, - ACTIONS(7334), 1, - anon_sym_decltype, - ACTIONS(7336), 1, - anon_sym_typename, - STATE(5362), 1, - sym__type_specifier, - STATE(5494), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6027), 1, - sym_decltype_auto, - STATE(6032), 1, - sym_qualified_type_identifier, - STATE(6898), 1, - sym_type_descriptor, - STATE(7289), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(4697), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6005), 2, - sym_decltype, - sym_template_type, - ACTIONS(7320), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6031), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [123585] = 24, + ACTIONS(4566), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(4571), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9253), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [123680] = 24, + ACTIONS(4566), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(4571), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74257] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(7259), 1, - sym_primitive_type, - ACTIONS(7261), 1, - anon_sym_enum, - ACTIONS(7263), 1, - anon_sym_class, - ACTIONS(7265), 1, - anon_sym_struct, - ACTIONS(7267), 1, - anon_sym_union, - ACTIONS(7269), 1, - sym_auto, - ACTIONS(7271), 1, - anon_sym_decltype, - ACTIONS(7273), 1, - anon_sym_typename, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(4793), 1, - sym__type_specifier, - STATE(4993), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5584), 1, - sym_decltype_auto, - STATE(6615), 1, - sym_type_descriptor, - STATE(7279), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - STATE(4698), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7257), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5598), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [123775] = 24, + ACTIONS(6571), 1, + anon_sym_LT, + STATE(1940), 1, + sym_template_argument_list, + ACTIONS(5732), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_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(5730), 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, + [74320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9114), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [123870] = 24, + ACTIONS(4747), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(4749), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9315), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [123965] = 24, + ACTIONS(4566), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(4571), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, + ACTIONS(5098), 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(5100), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, - ACTIONS(2008), 1, anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9504), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [124060] = 24, + anon_sym_DASH_GT_STAR, + [74497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6041), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(6039), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74556] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2208), 1, + anon_sym_LBRACE, + ACTIONS(6031), 1, + anon_sym_LPAREN2, + STATE(3594), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5659), 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(5657), 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, + [74621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4727), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(4729), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74680] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6553), 1, sym_identifier, - ACTIONS(7233), 1, + ACTIONS(6555), 1, + anon_sym_STAR, + ACTIONS(6557), 1, + anon_sym_AMP_AMP, + ACTIONS(6559), 1, + anon_sym_AMP, + ACTIONS(6561), 1, anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5672), 1, - sym__type_specifier, - STATE(7300), 1, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5323), 1, sym__scope_resolution, - STATE(9328), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, + STATE(5879), 1, + sym__declarator, + STATE(7249), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3802), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4469), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - STATE(4655), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -488073,110 +357725,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124155] = 3, + [74781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 12, + ACTIONS(6109), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(6107), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3506), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [124208] = 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, + [74840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 9, + ACTIONS(4566), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_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(5056), 36, + anon_sym_DASH_GT, + ACTIONS(4571), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74899] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5606), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5604), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [74958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5602), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + anon_sym_DOT, + ACTIONS(5600), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [124261] = 3, + anon_sym_GT2, + [75017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 9, + ACTIONS(5188), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -488185,8 +357961,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5056), 36, + sym_literal_suffix, + ACTIONS(5190), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -488202,157 +357985,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_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, + [75076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5890), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5888), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [124314] = 24, + anon_sym_DASH_GT_STAR, + [75135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9364), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [124409] = 24, + ACTIONS(5880), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(5878), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75194] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4792), 1, sym_identifier, - ACTIONS(7233), 1, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6499), 1, + anon_sym_STAR, + ACTIONS(6501), 1, + anon_sym_AMP_AMP, + ACTIONS(6503), 1, + anon_sym_AMP, + ACTIONS(6505), 1, anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5499), 1, - sym__type_specifier, - STATE(6898), 1, - sym_type_descriptor, - STATE(7300), 1, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5279), 1, sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, + STATE(6029), 1, + sym__declarator, + STATE(7365), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3155), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3810), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - STATE(4714), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -488365,218 +358194,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124504] = 3, + [75295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 9, + ACTIONS(5773), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5056), 36, + ACTIONS(5771), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [124557] = 8, + anon_sym_GT2, + [75354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(7070), 1, + ACTIONS(5111), 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, - ACTIONS(7338), 1, - anon_sym_LBRACK, - STATE(4718), 1, - sym_template_argument_list, - ACTIONS(4299), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4284), 6, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5113), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ, - ACTIONS(4276), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [124620] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, - ACTIONS(2008), 1, anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9195), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [124715] = 3, + anon_sym_DASH_GT_STAR, + [75413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2194), 9, + ACTIONS(5090), 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(2192), 36, + anon_sym_DASH_GT, + ACTIONS(5092), 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___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -488587,524 +358359,243 @@ 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, - [124768] = 24, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [75472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(5872), 19, + 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(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - STATE(5887), 1, - sym_ref_qualifier, - STATE(6122), 1, - sym_gnu_asm_expression, - STATE(6605), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4561), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4930), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6107), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6404), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 6, + ACTIONS(5870), 32, + 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_COLON, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [124863] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(9676), 1, - sym_type_descriptor, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [124958] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9345), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [125053] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9454), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [125148] = 24, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75531] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9453), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [125243] = 24, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6029), 1, + anon_sym_EQ, + ACTIONS(6521), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6523), 1, + anon_sym_AMP_AMP, + ACTIONS(6525), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, + anon_sym_AMP, + ACTIONS(6535), 1, + anon_sym_GT_EQ, + ACTIONS(6539), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6541), 1, + anon_sym_or, + ACTIONS(6543), 1, + anon_sym_and, + ACTIONS(6545), 1, + anon_sym_bitor, + ACTIONS(6547), 1, + anon_sym_bitand, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6517), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6527), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6537), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6519), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6531), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6533), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6027), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [75636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(6085), 19, + 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(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7247), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - STATE(5847), 1, - sym_ref_qualifier, - STATE(6225), 1, - sym_gnu_asm_expression, - STATE(6587), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5353), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6113), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6224), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6572), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 6, + ACTIONS(6083), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [125338] = 24, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75695] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - sym_auto, - ACTIONS(119), 1, - anon_sym_decltype, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2719), 1, - sym_primitive_type, - ACTIONS(3900), 1, + ACTIONS(6574), 1, sym_identifier, - ACTIONS(3906), 1, - anon_sym_COLON_COLON, - ACTIONS(3910), 1, - anon_sym_enum, - ACTIONS(3912), 1, - anon_sym_class, - ACTIONS(3914), 1, - anon_sym_struct, - ACTIONS(3916), 1, - anon_sym_union, - ACTIONS(3918), 1, - anon_sym_typename, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(3929), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3989), 1, - sym_decltype_auto, - STATE(5120), 1, - sym__type_specifier, - STATE(6615), 1, - sym_type_descriptor, - STATE(7295), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - STATE(4692), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3958), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [125433] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2198), 9, + STATE(3149), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4629), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4631), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4842), 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, - ACTIONS(2196), 36, + sym_literal_suffix, + ACTIONS(4840), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -489113,493 +358604,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_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_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [75762] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5942), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5946), 1, + anon_sym_EQ, + ACTIONS(6521), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6523), 1, + anon_sym_AMP_AMP, + ACTIONS(6525), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, + anon_sym_AMP, + ACTIONS(6535), 1, + anon_sym_GT_EQ, + ACTIONS(6539), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6541), 1, anon_sym_or, + ACTIONS(6543), 1, anon_sym_and, + ACTIONS(6545), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6547), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(6576), 1, + anon_sym_QMARK, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6517), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6527), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6537), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6551), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [125486] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5672), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9350), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4655), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [125581] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9423), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [125676] = 24, + ACTIONS(6519), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6531), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6533), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5944), 14, + anon_sym_COLON, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [75871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(5655), 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, - ACTIONS(7204), 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_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - STATE(5902), 1, - sym_ref_qualifier, - STATE(6145), 1, - sym_gnu_asm_expression, - STATE(6608), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4588), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4954), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6096), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6402), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 6, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5653), 30, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [125771] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7194), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7243), 1, - anon_sym_LBRACK, - ACTIONS(7292), 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, - STATE(5864), 1, - sym_ref_qualifier, - STATE(6127), 1, - sym_gnu_asm_expression, - STATE(6607), 1, - sym_trailing_return_type, - STATE(6636), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4581), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4608), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6110), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6430), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6493), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7241), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [125866] = 24, + anon_sym_GT2, + [75930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(5119), 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(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7243), 1, - anon_sym_LBRACK, - ACTIONS(7247), 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(7249), 1, - anon_sym_requires, - STATE(5879), 1, - sym_ref_qualifier, - STATE(6226), 1, - sym_gnu_asm_expression, - STATE(6588), 1, - sym_trailing_return_type, - STATE(6636), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4534), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(4629), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6493), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6595), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7241), 6, + ACTIONS(5121), 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_EQ, - anon_sym_GT2, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [125961] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, - ACTIONS(2008), 1, anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9153), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [126056] = 3, + anon_sym_DASH_GT_STAR, + [75989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5024), 9, + ACTIONS(6061), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_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(5026), 36, + anon_sym_DASH_GT, + ACTIONS(6059), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [76048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5123), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5125), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -489610,572 +358915,220 @@ 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, - [126109] = 24, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [76107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(5861), 19, + 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(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7243), 1, - anon_sym_LBRACK, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - STATE(5862), 1, - sym_ref_qualifier, - STATE(6234), 1, - sym_gnu_asm_expression, - STATE(6607), 1, - sym_trailing_return_type, - STATE(6636), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4546), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4584), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6091), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6493), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7241), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + 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_try, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [126204] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7247), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - STATE(5940), 1, - sym_ref_qualifier, - STATE(6221), 1, - sym_gnu_asm_expression, - STATE(6608), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4613), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5011), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6090), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6596), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 6, + ACTIONS(5859), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [126299] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [76166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 9, + ACTIONS(5134), 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(5044), 36, + anon_sym_DASH_GT, + ACTIONS(5136), 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___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [126352] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(8681), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [126447] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - sym_auto, - ACTIONS(119), 1, - anon_sym_decltype, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2719), 1, - sym_primitive_type, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7300), 1, - anon_sym_COLON_COLON, - ACTIONS(7302), 1, - anon_sym_enum, - ACTIONS(7304), 1, - anon_sym_class, - ACTIONS(7306), 1, - anon_sym_struct, - ACTIONS(7308), 1, - anon_sym_union, - ACTIONS(7310), 1, - anon_sym_typename, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(3929), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3989), 1, - sym_decltype_auto, - STATE(5019), 1, - sym__type_specifier, - STATE(6615), 1, - sym_type_descriptor, - STATE(7288), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - STATE(4703), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3958), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [126542] = 3, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [76225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5028), 9, + ACTIONS(5884), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_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(5030), 36, + anon_sym_DASH_GT, + ACTIONS(5882), 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_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [126595] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - STATE(5940), 1, - sym_ref_qualifier, - STATE(6221), 1, - sym_gnu_asm_expression, - STATE(6608), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5353), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6090), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6215), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6596), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [126690] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(9659), 1, - sym_type_descriptor, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [126785] = 3, + anon_sym_DASH_GT_STAR, + [76284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 9, + ACTIONS(5142), 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(5040), 36, + anon_sym_DASH_GT, + ACTIONS(5144), 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___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -490186,211 +359139,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [126838] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, sym_auto, - ACTIONS(2008), 1, anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(8977), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [126933] = 24, + anon_sym_DASH_GT_STAR, + [76343] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6553), 1, sym_identifier, - ACTIONS(7233), 1, + ACTIONS(6555), 1, + anon_sym_STAR, + ACTIONS(6557), 1, + anon_sym_AMP_AMP, + ACTIONS(6559), 1, + anon_sym_AMP, + ACTIONS(6561), 1, anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5323), 1, sym__scope_resolution, - STATE(9168), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4643), 2, + STATE(5901), 1, + sym__declarator, + STATE(7249), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3186), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3790), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [127028] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5540), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(8919), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - STATE(4643), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -490403,66 +359219,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [127123] = 24, + [76444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, + ACTIONS(6578), 1, + anon_sym_namespace, + ACTIONS(5710), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5358), 1, - sym__type_specifier, - STATE(6898), 1, - sym_type_descriptor, - STATE(7300), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4688), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, + anon_sym_LBRACK_LBRACK, + ACTIONS(5708), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -490474,536 +359262,472 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [127218] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, + sym_primitive_type, anon_sym_enum, - ACTIONS(2000), 1, anon_sym_class, - ACTIONS(2002), 1, anon_sym_struct, - ACTIONS(2004), 1, anon_sym_union, - ACTIONS(2006), 1, + sym_identifier, sym_auto, - ACTIONS(2008), 1, anon_sym_decltype, - ACTIONS(2010), 1, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5672), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(8948), 1, - sym_type_descriptor, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4655), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [127313] = 24, + anon_sym_template, + anon_sym_operator, + [76505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(5753), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - STATE(5887), 1, - sym_ref_qualifier, - STATE(6122), 1, - sym_gnu_asm_expression, - STATE(6605), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4561), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4975), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6107), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6404), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 6, + ACTIONS(5755), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [76564] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5759), 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(5757), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_COLON, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [127408] = 24, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [76637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(4731), 19, + 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(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7243), 1, - anon_sym_LBRACK, - ACTIONS(7247), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - STATE(5879), 1, - sym_ref_qualifier, - STATE(6226), 1, - sym_gnu_asm_expression, - STATE(6588), 1, - sym_trailing_return_type, - STATE(6636), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4624), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(4629), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6493), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6595), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7241), 6, + ACTIONS(4733), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [127503] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [76696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 9, + ACTIONS(4751), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_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(5036), 36, + anon_sym_DASH_GT, + ACTIONS(4753), 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_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [127556] = 24, + anon_sym_DASH_GT_STAR, + [76755] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7243), 1, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(7251), 1, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6517), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6537), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - STATE(5862), 1, - sym_ref_qualifier, - STATE(6234), 1, - sym_gnu_asm_expression, - STATE(6607), 1, - sym_trailing_return_type, - STATE(6636), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(4546), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6091), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6493), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7241), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(6519), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5724), 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(5722), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_COLON, - anon_sym_try, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [127651] = 23, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [76834] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5512), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [127743] = 23, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(3384), 1, + sym_template_argument_list, + ACTIONS(5865), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_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(5863), 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, + [76897] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5563), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [127835] = 23, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6517), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6519), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5724), 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(5722), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [76974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, + ACTIONS(6583), 1, + anon_sym_namespace, + ACTIONS(5710), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5547), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, + anon_sym_LBRACK_LBRACK, + ACTIONS(5708), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -491015,270 +359739,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [127927] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, anon_sym_enum, - ACTIONS(7349), 1, anon_sym_class, - ACTIONS(7351), 1, anon_sym_struct, - ACTIONS(7353), 1, anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5518), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4646), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [128019] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, + sym_identifier, sym_auto, - ACTIONS(2008), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5532), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4647), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [128111] = 23, + anon_sym_template, + anon_sym_operator, + [77035] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5532), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [128203] = 23, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6539), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6517), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6537), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6519), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5724), 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(5722), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [77116] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, sym_identifier, - ACTIONS(7343), 1, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6585), 1, + anon_sym_STAR, + ACTIONS(6587), 1, + anon_sym_AMP_AMP, + ACTIONS(6589), 1, + anon_sym_AMP, + ACTIONS(6591), 1, anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5548), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5266), 1, sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, + STATE(5585), 1, + sym__declarator, + STATE(7229), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3247), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3806), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -491291,38 +359897,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [128295] = 11, + [77217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(3930), 1, - sym_attribute_specifier, - STATE(4485), 1, - sym_field_declaration_list, - STATE(7948), 1, - sym_virtual_specifier, - STATE(8807), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5669), 5, + ACTIONS(6593), 1, + anon_sym_typedef, + ACTIONS(3275), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5671), 30, + ACTIONS(3273), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -491342,72 +359940,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, anon_sym_operator, - [128363] = 24, + [77278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(5876), 19, + 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(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7243), 1, - anon_sym_LBRACK, - ACTIONS(7357), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - STATE(5987), 1, - sym_ref_qualifier, - STATE(6458), 1, - sym_gnu_asm_expression, - STATE(6900), 1, - sym_requires_clause, - STATE(7063), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(4713), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4715), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6125), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6616), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6712), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7241), 5, + ACTIONS(5874), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [77337] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6017), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_try, - ACTIONS(7245), 11, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6015), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [77396] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6493), 1, + anon_sym_AMP_AMP, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5245), 1, + sym__scope_resolution, + STATE(5599), 1, + sym__declarator, + STATE(7589), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3272), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3798), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -491418,63 +360143,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [128457] = 23, + [77497] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6535), 1, + anon_sym_GT_EQ, + ACTIONS(6539), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6517), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6537), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6519), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6533), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5724), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5722), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [77582] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5803), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(5805), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [77641] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, sym_identifier, - ACTIONS(7343), 1, + ACTIONS(5428), 1, anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5508), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6565), 1, + anon_sym_STAR, + ACTIONS(6567), 1, + anon_sym_AMP_AMP, + ACTIONS(6569), 1, + anon_sym_AMP, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5245), 1, sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, + STATE(5849), 1, + sym__declarator, + STATE(7308), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3286), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3795), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - STATE(4652), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -491487,656 +360345,1114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [128549] = 23, + [77742] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, + ACTIONS(6206), 1, + anon_sym_LT, + STATE(1692), 1, + sym_template_argument_list, + ACTIONS(5732), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5730), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [77805] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6529), 1, + anon_sym_AMP, + ACTIONS(6535), 1, + anon_sym_GT_EQ, + ACTIONS(6539), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6547), 1, + anon_sym_bitand, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6517), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6537), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6519), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6531), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6533), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5724), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5722), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + [77896] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5777), 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(5775), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [77967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5215), 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(5217), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [78026] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5698), 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(5696), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [78099] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5219), 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(5221), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, - ACTIONS(2008), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5567), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4656), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [128641] = 23, + anon_sym_DASH_GT_STAR, + [78158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, + ACTIONS(5227), 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(5229), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, - ACTIONS(2008), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5567), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [128733] = 6, + anon_sym_DASH_GT_STAR, + [78217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(2334), 1, - sym_template_argument_list, - ACTIONS(4276), 5, + ACTIONS(5813), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(5811), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [78276] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6529), 1, + anon_sym_AMP, + ACTIONS(6535), 1, + anon_sym_GT_EQ, + ACTIONS(6539), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6547), 1, + anon_sym_bitand, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6517), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6527), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6537), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6519), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6531), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6533), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5724), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(5722), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_COLON, - ACTIONS(4284), 36, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [78369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5255), 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(5257), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_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_virtual, - anon_sym_alignas, - anon_sym_try, - anon_sym_requires, - [128791] = 11, + anon_sym_DASH_GT_STAR, + [78428] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(3971), 1, - sym_attribute_specifier, - STATE(4527), 1, - sym_field_declaration_list, - STATE(7700), 1, - sym_virtual_specifier, - STATE(8800), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5677), 5, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6525), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, + anon_sym_AMP, + ACTIONS(6535), 1, + anon_sym_GT_EQ, + ACTIONS(6539), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6545), 1, + anon_sym_bitor, + ACTIONS(6547), 1, + anon_sym_bitand, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6517), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6527), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6537), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5724), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(6519), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6531), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6533), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(5679), 30, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [128859] = 23, + 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, + [78525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5677), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [128951] = 23, + ACTIONS(5743), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(5741), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [78584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, + ACTIONS(5259), 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(5261), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, - ACTIONS(2008), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5543), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [129043] = 23, + anon_sym_DASH_GT_STAR, + [78643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, + ACTIONS(5094), 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(5096), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, - ACTIONS(2008), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5542), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4661), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [129135] = 23, + anon_sym_DASH_GT_STAR, + [78702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, + ACTIONS(5263), 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(5265), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, - ACTIONS(2008), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5550), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [129227] = 24, + anon_sym_DASH_GT_STAR, + [78761] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6523), 1, anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(6525), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, anon_sym_AMP, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7357), 1, + ACTIONS(6535), 1, + anon_sym_GT_EQ, + ACTIONS(6539), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6543), 1, + anon_sym_and, + ACTIONS(6545), 1, + anon_sym_bitor, + ACTIONS(6547), 1, + anon_sym_bitand, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5724), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(6517), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6527), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6537), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - STATE(5975), 1, - sym_ref_qualifier, - STATE(6343), 1, - sym_gnu_asm_expression, - STATE(6891), 1, - sym_requires_clause, - STATE(7045), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5353), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6142), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6358), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6646), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(6519), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6531), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6533), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [78862] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2208), 1, anon_sym_LBRACE, + ACTIONS(6031), 1, + anon_sym_LPAREN2, + STATE(3554), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5641), 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_try, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [129321] = 23, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5639), 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, + [78927] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, sym_identifier, - ACTIONS(7343), 1, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6585), 1, + anon_sym_STAR, + ACTIONS(6587), 1, + anon_sym_AMP_AMP, + ACTIONS(6589), 1, + anon_sym_AMP, + ACTIONS(6591), 1, anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5551), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5266), 1, sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, + STATE(5552), 1, + sym__declarator, + STATE(7229), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3787), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4469), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - STATE(4662), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -492149,63 +361465,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [129413] = 23, + [79028] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5094), 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(5096), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [79087] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(2695), 1, + anon_sym_STAR, + ACTIONS(2697), 1, + anon_sym_AMP, + ACTIONS(4792), 1, sym_identifier, - ACTIONS(7343), 1, + ACTIONS(5475), 1, anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5551), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5318), 1, sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, + STATE(5901), 1, + sym__declarator, + STATE(7657), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3796), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4469), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -492218,64 +361598,968 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [129505] = 23, + [79188] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, + ACTIONS(6595), 1, + sym_identifier, + STATE(3201), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4629), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4631), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4814), 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(4812), 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, + [79255] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6571), 1, + anon_sym_LT, + STATE(3141), 1, + sym_template_argument_list, + ACTIONS(5732), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_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(5730), 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, + [79318] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6081), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(6079), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [79377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5918), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(5916), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [79436] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5040), 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(5042), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, - ACTIONS(2008), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5530), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, + anon_sym_DASH_GT_STAR, + [79495] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5156), 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(5158), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [79554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5954), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(5952), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [79613] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5160), 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(5162), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [79672] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2208), 1, + anon_sym_LBRACE, + ACTIONS(6031), 1, + anon_sym_LPAREN2, + STATE(3523), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5610), 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(5608), 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, + [79737] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5809), 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(5807), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [79810] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6539), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6517), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6537), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6519), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5902), 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(5900), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [79891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5962), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(5960), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [79950] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5094), 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(5096), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [80009] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5724), 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(5722), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [80082] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6009), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(6007), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [80141] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5861), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5859), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [80200] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6597), 1, + anon_sym_typedef, + ACTIONS(3275), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3273), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -492287,116 +362571,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [129597] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, anon_sym_enum, - ACTIONS(7349), 1, anon_sym_class, - ACTIONS(7351), 1, anon_sym_struct, - ACTIONS(7353), 1, anon_sym_union, - ACTIONS(7355), 1, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5558), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4670), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [129689] = 9, + anon_sym_template, + anon_sym_operator, + [80261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - ACTIONS(6082), 1, - anon_sym_LBRACE, - ACTIONS(7363), 1, - anon_sym_COLON, - STATE(3287), 1, - sym__enum_base_clause, - STATE(3413), 1, - sym_enumerator_list, - STATE(3625), 1, - sym_attribute_specifier, - ACTIONS(5802), 11, + ACTIONS(5958), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5800), 27, + anon_sym_DASH_GT, + ACTIONS(5956), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [80320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5200), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5202), 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_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + 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, @@ -492407,120 +362694,164 @@ 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, - [129753] = 23, + anon_sym_DASH_GT_STAR, + [80379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5562), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [129845] = 9, + ACTIONS(5934), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(5932), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [80438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - ACTIONS(6082), 1, - anon_sym_LBRACE, - ACTIONS(7363), 1, - anon_sym_COLON, - STATE(3285), 1, - sym__enum_base_clause, - STATE(3426), 1, - sym_enumerator_list, - STATE(3630), 1, - sym_attribute_specifier, - ACTIONS(5794), 11, + ACTIONS(5781), 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(5792), 27, + ACTIONS(5779), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [80497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5267), 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(5269), 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_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + 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, @@ -492531,67 +362862,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, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [129909] = 23, + anon_sym_DASH_GT_STAR, + [80556] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, sym_identifier, - ACTIONS(7343), 1, + ACTIONS(5428), 1, anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5504), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6493), 1, + anon_sym_AMP_AMP, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5245), 1, sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, + STATE(5657), 1, + sym__declarator, + STATE(7589), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3800), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4469), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - STATE(4721), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -492604,63 +362942,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [130001] = 23, + [80657] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4792), 1, sym_identifier, - ACTIONS(7343), 1, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6499), 1, + anon_sym_STAR, + ACTIONS(6501), 1, + anon_sym_AMP_AMP, + ACTIONS(6503), 1, + anon_sym_AMP, + ACTIONS(6505), 1, anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5514), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5279), 1, sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, + STATE(6047), 1, + sym__declarator, + STATE(7365), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3287), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3788), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - STATE(4671), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -492673,132 +363019,651 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [130093] = 23, + [80758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, + ACTIONS(4759), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(4761), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [80817] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5739), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(5737), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [80876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5966), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(5964), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [80935] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6535), 1, + anon_sym_GT_EQ, + ACTIONS(6539), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6517), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6537), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6519), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6531), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6533), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5724), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5722), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + [81022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5168), 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(5170), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, - ACTIONS(2008), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5557), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4725), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [130185] = 23, + anon_sym_DASH_GT_STAR, + [81081] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 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(5194), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [81140] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5793), 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(5791), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [81211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5718), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(5720), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [81270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5898), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(5896), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [81329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5747), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(5745), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [81388] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6553), 1, sym_identifier, - ACTIONS(7343), 1, + ACTIONS(6555), 1, + anon_sym_STAR, + ACTIONS(6557), 1, + anon_sym_AMP_AMP, + ACTIONS(6559), 1, + anon_sym_AMP, + ACTIONS(6561), 1, anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5514), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5323), 1, sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, + STATE(5852), 1, + sym__declarator, + STATE(7249), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3174), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3805), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -492811,63 +363676,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [130277] = 23, + [81489] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5799), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5801), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [81548] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, sym_identifier, - ACTIONS(7343), 1, + ACTIONS(5428), 1, anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5537), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6565), 1, + anon_sym_STAR, + ACTIONS(6567), 1, + anon_sym_AMP_AMP, + ACTIONS(6569), 1, + anon_sym_AMP, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5245), 1, sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, + STATE(5815), 1, + sym__declarator, + STATE(7308), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3789), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4469), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -492880,63 +363809,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [130369] = 23, + [81649] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4792), 1, sym_identifier, - ACTIONS(7343), 1, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6499), 1, + anon_sym_STAR, + ACTIONS(6501), 1, + anon_sym_AMP_AMP, + ACTIONS(6503), 1, + anon_sym_AMP, + ACTIONS(6505), 1, anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5523), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5279), 1, sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, + STATE(6029), 1, + sym__declarator, + STATE(7365), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3810), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4469), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -492949,63 +363886,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [130461] = 23, + [81750] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, sym_identifier, - ACTIONS(7343), 1, + ACTIONS(5428), 1, anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5516), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6493), 1, + anon_sym_AMP_AMP, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5245), 1, sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, + STATE(5599), 1, + sym__declarator, + STATE(7589), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3798), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4469), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - STATE(4641), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -493018,409 +363963,601 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [130553] = 23, + [81851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(7259), 1, - sym_primitive_type, - ACTIONS(7261), 1, - anon_sym_enum, - ACTIONS(7263), 1, - anon_sym_class, - ACTIONS(7265), 1, - anon_sym_struct, - ACTIONS(7267), 1, - anon_sym_union, - ACTIONS(7269), 1, - sym_auto, - ACTIONS(7271), 1, - anon_sym_decltype, - ACTIONS(7273), 1, - anon_sym_typename, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(4831), 1, - sym__type_specifier, - STATE(4993), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5584), 1, - sym_decltype_auto, - STATE(7279), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7257), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5598), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [130645] = 23, + ACTIONS(2134), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(2132), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [81910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5512), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4678), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [130737] = 24, + ACTIONS(5614), 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(5612), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [81969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, + ACTIONS(5663), 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(5661), 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, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [82028] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6065), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(6063), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7196), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5174), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7243), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5176), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(7365), 1, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7367), 1, - anon_sym_requires, - STATE(5993), 1, - sym_ref_qualifier, - STATE(6446), 1, - sym_gnu_asm_expression, - STATE(6636), 1, - sym_requires_clause, - STATE(6927), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4705), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4717), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6123), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6493), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6626), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7241), 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, + [82146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6077), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(6075), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [130831] = 23, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5562), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4658), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [130923] = 23, + ACTIONS(4865), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(4860), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82264] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5522), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [131015] = 23, + ACTIONS(5326), 1, + sym_literal_suffix, + ACTIONS(4061), 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(4069), 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, + [82325] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5942), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6049), 1, + anon_sym_EQ, + ACTIONS(6521), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6523), 1, + anon_sym_AMP_AMP, + ACTIONS(6525), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, + anon_sym_AMP, + ACTIONS(6535), 1, + anon_sym_GT_EQ, + ACTIONS(6539), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6541), 1, + anon_sym_or, + ACTIONS(6543), 1, + anon_sym_and, + ACTIONS(6545), 1, + anon_sym_bitor, + ACTIONS(6547), 1, + anon_sym_bitand, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(6576), 1, + anon_sym_QMARK, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6517), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6527), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6537), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6519), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6531), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6533), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6047), 14, + anon_sym_COLON, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [82434] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, sym_identifier, - ACTIONS(7343), 1, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6585), 1, + anon_sym_STAR, + ACTIONS(6587), 1, + anon_sym_AMP_AMP, + ACTIONS(6589), 1, + anon_sym_AMP, + ACTIONS(6591), 1, anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5545), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5266), 1, sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, + STATE(5623), 1, + sym__declarator, + STATE(7229), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3812), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4469), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - STATE(4665), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -493433,317 +364570,649 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131107] = 24, + [82535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, + ACTIONS(4719), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(4721), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7196), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5769), 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, - ACTIONS(7204), 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_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7369), 1, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5767), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - STATE(5984), 1, - sym_ref_qualifier, - STATE(6422), 1, - sym_gnu_asm_expression, - STATE(6894), 1, - sym_requires_clause, - STATE(6956), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5353), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6118), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6429), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6613), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 5, + anon_sym_GT2, + [82653] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2138), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(2136), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [131201] = 24, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, + ACTIONS(4735), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(4737), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7196), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82771] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6101), 19, + 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(7204), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6099), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7369), 1, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82830] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6097), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(7371), 1, - anon_sym_requires, - STATE(5984), 1, - sym_ref_qualifier, - STATE(6422), 1, - sym_gnu_asm_expression, - STATE(6894), 1, - sym_requires_clause, - STATE(6956), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(4727), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5113), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6118), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6613), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 5, + ACTIONS(6095), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82889] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2208), 1, anon_sym_LBRACE, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [131295] = 23, + ACTIONS(6031), 1, + anon_sym_LPAREN2, + STATE(3547), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5667), 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(5665), 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, + [82954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5559), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4686), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [131387] = 24, + ACTIONS(6093), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(6091), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + 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] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, + ACTIONS(4743), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(4745), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7196), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83072] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4719), 19, + 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(7204), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4721), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7369), 1, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83131] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4719), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(7371), 1, - anon_sym_requires, - STATE(5984), 1, - sym_ref_qualifier, - STATE(6422), 1, - sym_gnu_asm_expression, - STATE(6894), 1, - sym_requires_clause, - STATE(6956), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(4727), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5126), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6118), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6613), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 5, + ACTIONS(4721), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [131481] = 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(3898), 1, - sym_attribute_specifier, - STATE(4479), 1, - sym_field_declaration_list, - STATE(7785), 1, - sym_virtual_specifier, - STATE(8689), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5665), 5, + ACTIONS(6599), 1, + anon_sym_typedef, + ACTIONS(3275), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5667), 30, + ACTIONS(3273), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -493763,138 +365232,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, anon_sym_operator, - [131549] = 23, + [83251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5503), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4687), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [131641] = 23, + ACTIONS(6045), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(6043), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83310] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(2695), 1, + anon_sym_STAR, + ACTIONS(2697), 1, + anon_sym_AMP, + ACTIONS(4792), 1, sym_identifier, - ACTIONS(7343), 1, + ACTIONS(5475), 1, anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5503), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5318), 1, sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, + STATE(5879), 1, + sym__declarator, + STATE(7657), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3807), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4469), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -493907,64 +365379,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131733] = 23, + [83411] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, + ACTIONS(6601), 1, + anon_sym_namespace, + ACTIONS(5710), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5515), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, + anon_sym_LBRACK_LBRACK, + ACTIONS(5708), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -493976,63 +365422,365 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131825] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, + sym_primitive_type, anon_sym_enum, - ACTIONS(2000), 1, anon_sym_class, - ACTIONS(2002), 1, anon_sym_struct, - ACTIONS(2004), 1, anon_sym_union, - ACTIONS(2006), 1, + sym_identifier, sym_auto, - ACTIONS(2008), 1, anon_sym_decltype, - ACTIONS(2010), 1, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, anon_sym_typename, - ACTIONS(7229), 1, + anon_sym_template, + anon_sym_operator, + [83472] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5645), 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(5643), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [83531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5055), 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(5057), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [83590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5630), 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(5628), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [83649] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5626), 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(5624), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [83708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5618), 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(5616), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [83767] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, sym_identifier, - ACTIONS(7233), 1, + ACTIONS(5428), 1, anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5339), 1, - sym__type_specifier, - STATE(7300), 1, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6565), 1, + anon_sym_STAR, + ACTIONS(6567), 1, + anon_sym_AMP_AMP, + ACTIONS(6569), 1, + anon_sym_AMP, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5245), 1, sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, + STATE(5849), 1, + sym__declarator, + STATE(7308), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3795), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4469), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -494045,52 +365793,487 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131917] = 11, + [83868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5671), 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(5669), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [83927] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5763), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(5761), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, + ACTIONS(5059), 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(5061), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, - ACTIONS(7220), 1, anon_sym_LBRACK, - ACTIONS(7222), 1, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, - ACTIONS(7224), 1, anon_sym_decltype, - ACTIONS(7373), 1, + anon_sym_DASH_GT_STAR, + [84045] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, anon_sym_LPAREN2, - STATE(2636), 1, - sym_decltype_auto, - STATE(4881), 1, - sym_new_declarator, - STATE(4849), 2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5894), 1, + anon_sym_EQ, + ACTIONS(6521), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6523), 1, + anon_sym_AMP_AMP, + ACTIONS(6525), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, + anon_sym_AMP, + ACTIONS(6535), 1, + anon_sym_GT_EQ, + ACTIONS(6539), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6541), 1, + anon_sym_or, + ACTIONS(6543), 1, + anon_sym_and, + ACTIONS(6545), 1, + anon_sym_bitor, + ACTIONS(6547), 1, + anon_sym_bitand, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(5764), 9, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6517), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6527), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6537), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6519), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6531), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6533), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5892), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [84150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5207), 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(5762), 26, + anon_sym_DASH_GT, + ACTIONS(5209), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [84209] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5082), 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(5084), 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_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [84268] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5839), 1, + anon_sym_EQ, + ACTIONS(6521), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6523), 1, + anon_sym_AMP_AMP, + ACTIONS(6525), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, + anon_sym_AMP, + ACTIONS(6535), 1, + anon_sym_GT_EQ, + ACTIONS(6539), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6541), 1, + anon_sym_or, + ACTIONS(6543), 1, + anon_sym_and, + ACTIONS(6545), 1, + anon_sym_bitor, + ACTIONS(6547), 1, + anon_sym_bitand, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6517), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6527), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6537), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6519), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6531), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6533), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5815), 16, + anon_sym_DOT_DOT_DOT, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [84373] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5086), 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(5088), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -494100,341 +366283,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [84432] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6551), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [131985] = 23, + ACTIONS(6519), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5724), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5722), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [84507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5526), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [132077] = 23, + ACTIONS(5926), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(5924), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [84566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5561), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [132169] = 23, + ACTIONS(5930), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(5928), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [84625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(4955), 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(4957), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, - ACTIONS(119), 1, anon_sym_decltype, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2719), 1, - sym_primitive_type, - ACTIONS(3900), 1, - sym_identifier, - ACTIONS(3906), 1, - anon_sym_COLON_COLON, - ACTIONS(3910), 1, - anon_sym_enum, - ACTIONS(3912), 1, - anon_sym_class, - ACTIONS(3914), 1, - anon_sym_struct, - ACTIONS(3916), 1, - anon_sym_union, - ACTIONS(3918), 1, - anon_sym_typename, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(3929), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3989), 1, - sym_decltype_auto, - STATE(5162), 1, - sym__type_specifier, - STATE(7295), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3958), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [132261] = 23, + anon_sym_DASH_GT_STAR, + [84684] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(2695), 1, + anon_sym_STAR, + ACTIONS(2697), 1, + anon_sym_AMP, + ACTIONS(4792), 1, sym_identifier, - ACTIONS(7343), 1, + ACTIONS(5475), 1, anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5561), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5318), 1, sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4690), 2, + STATE(5901), 1, + sym__declarator, + STATE(7657), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3312), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3796), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [132353] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5505), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - STATE(4691), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -494447,43 +366596,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [132445] = 9, + [84785] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7156), 1, - anon_sym_LBRACE, - ACTIONS(7375), 1, - anon_sym_COLON, - STATE(3962), 1, - sym_attribute_specifier, - STATE(4467), 1, - sym__enum_base_clause, - STATE(4478), 1, - sym_enumerator_list, - ACTIONS(5802), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5800), 34, - anon_sym_RPAREN, + ACTIONS(6603), 1, + anon_sym_namespace, + ACTIONS(5710), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5708), 44, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym_LBRACK_LBRACK, + 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, @@ -494494,195 +366639,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_try, - anon_sym_requires, - [132509] = 9, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [84846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7156), 1, - anon_sym_LBRACE, - ACTIONS(7375), 1, - anon_sym_COLON, - STATE(3969), 1, - sym_attribute_specifier, - STATE(4464), 1, - sym__enum_base_clause, - STATE(4480), 1, - sym_enumerator_list, - ACTIONS(5794), 4, + ACTIONS(5970), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5792), 34, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(5968), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_try, - anon_sym_requires, - [132573] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [84905] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(7316), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(2695), 1, + anon_sym_STAR, + ACTIONS(2697), 1, + anon_sym_AMP, + ACTIONS(4792), 1, sym_identifier, - ACTIONS(7318), 1, + ACTIONS(5475), 1, anon_sym_COLON_COLON, - ACTIONS(7322), 1, - sym_primitive_type, - ACTIONS(7324), 1, - anon_sym_enum, - ACTIONS(7326), 1, - anon_sym_class, - ACTIONS(7328), 1, - anon_sym_struct, - ACTIONS(7330), 1, - anon_sym_union, - ACTIONS(7332), 1, - sym_auto, - ACTIONS(7334), 1, - anon_sym_decltype, - ACTIONS(7336), 1, - anon_sym_typename, - STATE(5375), 1, - sym__type_specifier, - STATE(5494), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6027), 1, - sym_decltype_auto, - STATE(6032), 1, - sym_qualified_type_identifier, - STATE(7289), 1, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5318), 1, sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(5602), 2, + STATE(5852), 1, + sym__declarator, + STATE(7657), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3249), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3801), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6005), 2, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - ACTIONS(7320), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6031), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [132665] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(7259), 1, - sym_primitive_type, - ACTIONS(7261), 1, - anon_sym_enum, - ACTIONS(7263), 1, - anon_sym_class, - ACTIONS(7265), 1, - anon_sym_struct, - ACTIONS(7267), 1, - anon_sym_union, - ACTIONS(7269), 1, - sym_auto, - ACTIONS(7271), 1, - anon_sym_decltype, - ACTIONS(7273), 1, - anon_sym_typename, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(4863), 1, - sym__type_specifier, - STATE(4993), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5584), 1, - sym_decltype_auto, - STATE(7279), 1, - sym__scope_resolution, - STATE(9648), 1, sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7257), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5598), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -494695,260 +366786,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [132757] = 11, + [85006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7220), 1, - anon_sym_LBRACK, - ACTIONS(7222), 1, - sym_auto, - ACTIONS(7224), 1, - anon_sym_decltype, - ACTIONS(7373), 1, - anon_sym_LPAREN2, - STATE(2636), 1, - sym_decltype_auto, - STATE(4892), 1, - sym_new_declarator, - STATE(4815), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5771), 9, + ACTIONS(6049), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_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(5769), 26, + anon_sym_DASH_GT, + ACTIONS(6047), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [85065] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3755), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + anon_sym_DOT, + ACTIONS(3757), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [132825] = 23, + anon_sym_GT2, + [85124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - sym_auto, - ACTIONS(119), 1, - anon_sym_decltype, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2719), 1, - sym_primitive_type, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7300), 1, + ACTIONS(6605), 1, + anon_sym_typedef, + ACTIONS(3275), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(7302), 1, - anon_sym_enum, - ACTIONS(7304), 1, - anon_sym_class, - ACTIONS(7306), 1, - anon_sym_struct, - ACTIONS(7308), 1, - anon_sym_union, - ACTIONS(7310), 1, - anon_sym_typename, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(3929), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3989), 1, - sym_decltype_auto, - STATE(4839), 1, - sym__type_specifier, - STATE(7288), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3958), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [132917] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(3273), 44, anon_sym_AMP, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7365), 1, - anon_sym_DASH_GT, - ACTIONS(7367), 1, - anon_sym_requires, - STATE(5988), 1, - sym_ref_qualifier, - STATE(6403), 1, - sym_gnu_asm_expression, - STATE(6701), 1, - sym_requires_clause, - STATE(6929), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4722), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5119), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6143), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6639), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - ACTIONS(7245), 11, anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [133011] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5502), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4642), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -494960,275 +366941,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [133103] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - sym_auto, - ACTIONS(119), 1, - anon_sym_decltype, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2719), 1, sym_primitive_type, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7300), 1, - anon_sym_COLON_COLON, - ACTIONS(7302), 1, anon_sym_enum, - ACTIONS(7304), 1, anon_sym_class, - ACTIONS(7306), 1, anon_sym_struct, - ACTIONS(7308), 1, anon_sym_union, - ACTIONS(7310), 1, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, anon_sym_typename, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(3929), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3989), 1, - sym_decltype_auto, - STATE(5027), 1, - sym__type_specifier, - STATE(7288), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3958), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [133195] = 24, + anon_sym_template, + anon_sym_operator, + [85185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(6013), 19, + 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(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7243), 1, - anon_sym_LBRACK, - ACTIONS(7369), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - STATE(5985), 1, - sym_ref_qualifier, - STATE(6325), 1, - sym_gnu_asm_expression, - STATE(6900), 1, - sym_requires_clause, - STATE(6946), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(4680), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4681), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6144), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6670), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6712), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7241), 5, + ACTIONS(6011), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [133289] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7204), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7365), 1, - anon_sym_DASH_GT, - ACTIONS(7367), 1, - anon_sym_requires, - STATE(5988), 1, - sym_ref_qualifier, - STATE(6403), 1, - sym_gnu_asm_expression, - STATE(6701), 1, - sym_requires_clause, - STATE(6929), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5353), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6143), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6420), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6639), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [133383] = 24, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [85244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(5857), 19, + 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(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7243), 1, - anon_sym_LBRACK, - ACTIONS(7369), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - STATE(5985), 1, - sym_ref_qualifier, - STATE(6325), 1, - sym_gnu_asm_expression, - STATE(6900), 1, - sym_requires_clause, - STATE(6946), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(4680), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4683), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6144), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6670), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6712), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7241), 5, + ACTIONS(5855), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(7245), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [85303] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6607), 1, + anon_sym_typedef, + ACTIONS(3275), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3273), 44, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -495239,121 +367110,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [133477] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7220), 1, - anon_sym_LBRACK, - ACTIONS(7222), 1, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, - ACTIONS(7224), 1, anon_sym_decltype, - ACTIONS(7373), 1, - anon_sym_LPAREN2, - STATE(2636), 1, - sym_decltype_auto, - STATE(4899), 1, - sym_new_declarator, - STATE(4827), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5710), 9, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [85364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5853), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_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(5706), 26, + anon_sym_DASH_GT, + ACTIONS(5851), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [133545] = 23, + anon_sym_DASH_GT_STAR, + [85423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7255), 1, + ACTIONS(6609), 1, + anon_sym_typedef, + ACTIONS(3275), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(7259), 1, - sym_primitive_type, - ACTIONS(7261), 1, - anon_sym_enum, - ACTIONS(7263), 1, - anon_sym_class, - ACTIONS(7265), 1, - anon_sym_struct, - ACTIONS(7267), 1, - anon_sym_union, - ACTIONS(7269), 1, - sym_auto, - ACTIONS(7271), 1, - anon_sym_decltype, - ACTIONS(7273), 1, - anon_sym_typename, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(4966), 1, - sym__type_specifier, - STATE(4993), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5584), 1, - sym_decltype_auto, - STATE(7279), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7257), 4, + anon_sym_LBRACK_LBRACK, + ACTIONS(3273), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5598), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -495365,190 +367223,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [133637] = 24, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [85484] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5942), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6053), 1, + anon_sym_EQ, + ACTIONS(6521), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6523), 1, anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(6525), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, anon_sym_AMP, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7243), 1, - anon_sym_LBRACK, - ACTIONS(7357), 1, + ACTIONS(6535), 1, + anon_sym_GT_EQ, + ACTIONS(6539), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6541), 1, + anon_sym_or, + ACTIONS(6543), 1, + anon_sym_and, + ACTIONS(6545), 1, + anon_sym_bitor, + ACTIONS(6547), 1, + anon_sym_bitand, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(6576), 1, + anon_sym_QMARK, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5702), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6517), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6527), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6537), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - STATE(5987), 1, - sym_ref_qualifier, - STATE(6458), 1, - sym_gnu_asm_expression, - STATE(6900), 1, - sym_requires_clause, - STATE(7063), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(4712), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(4713), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6125), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6616), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6712), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7241), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [133731] = 11, + ACTIONS(6519), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6531), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6533), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6051), 14, + anon_sym_COLON, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [85593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7220), 1, - anon_sym_LBRACK, - ACTIONS(7222), 1, - sym_auto, - ACTIONS(7224), 1, - anon_sym_decltype, - ACTIONS(7373), 1, - anon_sym_LPAREN2, - STATE(2636), 1, - sym_decltype_auto, - STATE(4904), 1, - sym_new_declarator, - STATE(4862), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5730), 9, + ACTIONS(5984), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_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(5728), 26, + anon_sym_DASH_GT, + ACTIONS(5982), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [85652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3751), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + anon_sym_DOT, + ACTIONS(3753), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [133799] = 23, + anon_sym_GT2, + [85711] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(3900), 1, - sym_identifier, - ACTIONS(7259), 1, - sym_primitive_type, - ACTIONS(7269), 1, - sym_auto, - ACTIONS(7271), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7280), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6585), 1, + anon_sym_STAR, + ACTIONS(6587), 1, + anon_sym_AMP_AMP, + ACTIONS(6589), 1, + anon_sym_AMP, + ACTIONS(6591), 1, anon_sym_COLON_COLON, - ACTIONS(7282), 1, - anon_sym_enum, - ACTIONS(7284), 1, - anon_sym_class, - ACTIONS(7286), 1, - anon_sym_struct, - ACTIONS(7288), 1, - anon_sym_union, - ACTIONS(7290), 1, - anon_sym_typename, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(4993), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5479), 1, - sym__type_specifier, - STATE(5584), 1, - sym_decltype_auto, - STATE(7261), 1, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5266), 1, sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, + STATE(5552), 1, + sym__declarator, + STATE(7229), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3298), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3787), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7257), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5598), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -495561,136 +367507,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [133891] = 24, + [85812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(5922), 19, + 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(7204), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5920), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7357), 1, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [85871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5164), 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(7361), 1, - anon_sym_requires, - STATE(5994), 1, - sym_ref_qualifier, - STATE(6464), 1, - sym_gnu_asm_expression, - STATE(6894), 1, - sym_requires_clause, - STATE(7057), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(4659), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5169), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6124), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6660), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 5, + ACTIONS(5166), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [133985] = 24, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [85930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(6021), 19, + 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(7204), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6019), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7357), 1, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [85989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4955), 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(7361), 1, - anon_sym_requires, - STATE(5994), 1, - sym_ref_qualifier, - STATE(6464), 1, - sym_gnu_asm_expression, - STATE(6894), 1, - sym_requires_clause, - STATE(7057), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5353), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6124), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6306), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6660), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 5, + ACTIONS(4957), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(7245), 11, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [86048] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6611), 1, + anon_sym_typedef, + ACTIONS(3275), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3273), 44, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -495701,64 +367774,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134079] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, + sym_primitive_type, anon_sym_enum, - ACTIONS(2000), 1, anon_sym_class, - ACTIONS(2002), 1, anon_sym_struct, - ACTIONS(2004), 1, anon_sym_union, - ACTIONS(2006), 1, + sym_identifier, sym_auto, - ACTIONS(2008), 1, anon_sym_decltype, - ACTIONS(2010), 1, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, + anon_sym_template, + anon_sym_operator, + [86109] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6620), 2, anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(5498), 1, - sym__type_specifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1992), 4, + anon_sym_LBRACK_LBRACK, + ACTIONS(6616), 4, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6618), 5, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_explicit, + anon_sym_operator, + ACTIONS(6623), 11, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_auto, + anon_sym_typename, + ACTIONS(6613), 28, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -495770,242 +367841,403 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134171] = 24, + sym_identifier, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + [86173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(4735), 20, + 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(7204), 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(4737), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7357), 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, - ACTIONS(7361), 1, - anon_sym_requires, - STATE(5994), 1, - sym_ref_qualifier, - STATE(6464), 1, - sym_gnu_asm_expression, - STATE(6894), 1, - sym_requires_clause, - STATE(7057), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(4659), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5205), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6124), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6660), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 5, + anon_sym_GT2, + [86231] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4625), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(4627), 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(4061), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + 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(4069), 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, + [86293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6005), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_try, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [134265] = 24, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6003), 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, + [86351] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6001), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5999), 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, + [86409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(5803), 20, + 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(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7243), 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(5805), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(7365), 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, - ACTIONS(7367), 1, - anon_sym_requires, - STATE(5993), 1, - sym_ref_qualifier, - STATE(6446), 1, - sym_gnu_asm_expression, - STATE(6636), 1, - sym_requires_clause, - STATE(6927), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4701), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(4705), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6123), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6493), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6626), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7241), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [134359] = 24, + anon_sym_GT2, + [86467] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7204), 1, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6053), 1, + anon_sym_EQ, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7365), 1, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6316), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6360), 1, + anon_sym_QMARK, + ACTIONS(6382), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6633), 1, + anon_sym_PIPE, + ACTIONS(6635), 1, + anon_sym_CARET, + ACTIONS(6637), 1, + anon_sym_AMP, + ACTIONS(6643), 1, + anon_sym_GT_EQ, + ACTIONS(6647), 1, + anon_sym_bitor, + ACTIONS(6649), 1, + anon_sym_xor, + ACTIONS(6651), 1, + anon_sym_bitand, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7367), 1, - anon_sym_requires, - STATE(5988), 1, - sym_ref_qualifier, - STATE(6403), 1, - sym_gnu_asm_expression, - STATE(6701), 1, - sym_requires_clause, - STATE(6929), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4722), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5235), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6143), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6639), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 5, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6625), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6629), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6631), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6645), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6627), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6639), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6641), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6051), 13, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [134453] = 6, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_GT_STAR, + [86573] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4901), 1, - anon_sym_LBRACK, - ACTIONS(4904), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4806), 1, + anon_sym_virtual, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5912), 1, + sym_auto, + ACTIONS(5914), 1, + anon_sym_decltype, + ACTIONS(6653), 1, anon_sym_SEMI, - ACTIONS(4894), 3, - anon_sym_RPAREN, + STATE(3021), 1, + sym_decltype_auto, + ACTIONS(5910), 5, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4897), 7, - 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(4892), 32, + ACTIONS(5908), 6, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4796), 9, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -496014,81 +368246,17 @@ 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [134511] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5563), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4672), 2, + STATE(2993), 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_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(4794), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -496101,132 +368269,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134603] = 23, + [86655] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4806), 1, + anon_sym_virtual, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5912), 1, sym_auto, - ACTIONS(2008), 1, + ACTIONS(5914), 1, anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, + ACTIONS(6655), 1, + anon_sym_SEMI, + STATE(3021), 1, sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5538), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [134695] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, + ACTIONS(5910), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5557), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, + ACTIONS(5908), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4796), 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(2993), 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_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(4794), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -496239,108 +368336,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134787] = 24, + [86737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(6073), 20, + 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(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7239), 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(6071), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(7365), 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, - ACTIONS(7367), 1, - anon_sym_requires, - STATE(5967), 1, - sym_ref_qualifier, - STATE(6279), 1, - sym_gnu_asm_expression, - STATE(6678), 1, - sym_requires_clause, - STATE(6934), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5353), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6136), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6278), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6703), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [134881] = 11, + anon_sym_GT2, + [86795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(3910), 1, - sym_attribute_specifier, - STATE(4520), 1, - sym_field_declaration_list, - STATE(7702), 1, - sym_virtual_specifier, - STATE(8577), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5653), 5, + ACTIONS(6659), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5655), 30, + ACTIONS(6657), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -496360,820 +368432,1216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, anon_sym_operator, - [134949] = 23, + [86853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(3143), 1, - anon_sym_enum, - ACTIONS(3145), 1, - anon_sym_class, - ACTIONS(3147), 1, - anon_sym_struct, - ACTIONS(3149), 1, - anon_sym_union, - ACTIONS(3173), 1, - sym_auto, - ACTIONS(3175), 1, - anon_sym_decltype, - ACTIONS(3177), 1, - anon_sym_typename, - ACTIONS(7294), 1, - sym_identifier, - ACTIONS(7296), 1, - anon_sym_COLON_COLON, - ACTIONS(7298), 1, - sym_primitive_type, - STATE(3032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3612), 1, - sym_decltype_auto, - STATE(3616), 1, - sym_qualified_type_identifier, - STATE(5455), 1, - sym__type_specifier, - STATE(7297), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3593), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3139), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3614), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [135041] = 23, + ACTIONS(4755), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4757), 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, + [86911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5527), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [135133] = 23, + ACTIONS(4747), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4749), 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, + [86969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5554), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4720), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [135225] = 24, + ACTIONS(4727), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4729), 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, + [87027] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6049), 1, + anon_sym_EQ, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6316), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6360), 1, + anon_sym_QMARK, + ACTIONS(6382), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6633), 1, + anon_sym_PIPE, + ACTIONS(6635), 1, + anon_sym_CARET, + ACTIONS(6637), 1, + anon_sym_AMP, + ACTIONS(6643), 1, + anon_sym_GT_EQ, + ACTIONS(6647), 1, + anon_sym_bitor, + ACTIONS(6649), 1, + anon_sym_xor, + ACTIONS(6651), 1, + anon_sym_bitand, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6625), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6629), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6631), 2, anon_sym_AMP_AMP, - ACTIONS(7196), 1, + anon_sym_and, + ACTIONS(6645), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6627), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6639), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6641), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6047), 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, + [87133] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5890), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5888), 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, + [87191] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5880), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5878), 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, + [87249] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5872), 20, + 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(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7239), 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(5870), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(7369), 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, - ACTIONS(7371), 1, - anon_sym_requires, - STATE(5973), 1, - sym_ref_qualifier, - STATE(6267), 1, - sym_gnu_asm_expression, - STATE(6891), 1, - sym_requires_clause, - STATE(6965), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5353), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6137), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6468), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6649), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 5, + anon_sym_GT2, + [87307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5799), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5801), 30, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [135319] = 23, + 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, + [87365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(3143), 1, - anon_sym_enum, - ACTIONS(3145), 1, - anon_sym_class, - ACTIONS(3147), 1, - anon_sym_struct, - ACTIONS(3149), 1, - anon_sym_union, - ACTIONS(3173), 1, - sym_auto, - ACTIONS(3175), 1, - anon_sym_decltype, - ACTIONS(3177), 1, - anon_sym_typename, - ACTIONS(7294), 1, - sym_identifier, - ACTIONS(7296), 1, - anon_sym_COLON_COLON, - ACTIONS(7298), 1, - sym_primitive_type, - STATE(3032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3612), 1, - sym_decltype_auto, - STATE(3616), 1, - sym_qualified_type_identifier, - STATE(5565), 1, - sym__type_specifier, - STATE(7297), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3593), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3139), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3614), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [135411] = 23, + ACTIONS(5966), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5964), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [87423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5524), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [135503] = 23, + ACTIONS(6109), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6107), 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, + [87481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(5538), 1, - sym__type_specifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - STATE(4729), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [135595] = 20, + ACTIONS(5918), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5916), 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, + [87539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5747), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5745), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(6895), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [87597] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6085), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_COLON_COLON, - STATE(6547), 1, - sym__scope_resolution, - STATE(7180), 1, - sym__declarator, - STATE(9588), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [135680] = 24, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6083), 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, + [87655] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + anon_sym_EQ, + ACTIONS(5109), 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(4069), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, - anon_sym_requires, - STATE(6009), 1, - sym_ref_qualifier, - STATE(6532), 1, - sym_gnu_asm_expression, - STATE(6891), 1, - sym_requires_clause, - STATE(7187), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5353), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6177), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6560), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6736), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 4, + 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(4061), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_GT2, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [135773] = 27, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [87717] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(4322), 1, + ACTIONS(5592), 1, anon_sym_LPAREN2, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(5816), 1, + ACTIONS(5839), 1, + anon_sym_EQ, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(5822), 1, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6382), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6633), 1, + anon_sym_PIPE, + ACTIONS(6635), 1, + anon_sym_CARET, + ACTIONS(6637), 1, + anon_sym_AMP, + ACTIONS(6643), 1, + anon_sym_GT_EQ, + ACTIONS(6647), 1, + anon_sym_bitor, + ACTIONS(6649), 1, + anon_sym_xor, + ACTIONS(6651), 1, + anon_sym_bitand, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6625), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6629), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6631), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6645), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6627), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6639), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6641), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5815), 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, + [87819] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6061), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(7381), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6059), 30, anon_sym_DOT_DOT_DOT, - ACTIONS(7385), 1, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7387), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [87877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5813), 20, + 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(7389), 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, - STATE(4706), 1, - sym_parameter_list, - STATE(6518), 1, - sym__scope_resolution, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7228), 1, - sym__declarator, - STATE(7484), 1, - sym__abstract_declarator, - STATE(8117), 1, - sym_variadic_reference_declarator, - STATE(8118), 1, - sym_variadic_declarator, - STATE(9528), 1, - sym_ms_based_modifier, - ACTIONS(7383), 2, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5811), 30, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [135872] = 24, + 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, + [87935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, + ACTIONS(5739), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7196), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [87993] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5763), 20, + 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(7204), 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(5761), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7377), 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, - ACTIONS(7379), 1, - anon_sym_requires, - STATE(6022), 1, - sym_ref_qualifier, - STATE(6523), 1, - sym_gnu_asm_expression, - STATE(6894), 1, - sym_requires_clause, - STATE(7184), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(4732), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5240), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6176), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6738), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 4, + anon_sym_GT2, + [88051] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6009), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6007), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_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(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [135965] = 11, + [88109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(6316), 1, - sym_auto, - ACTIONS(6318), 1, - anon_sym_decltype, - ACTIONS(7391), 1, - anon_sym_LPAREN2, - ACTIONS(7393), 1, - anon_sym_LBRACK, - STATE(3621), 1, - sym_decltype_auto, - STATE(4941), 1, - sym_new_declarator, - STATE(5430), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5730), 11, + ACTIONS(5898), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5728), 23, + ACTIONS(5896), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -497181,55 +369649,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [136032] = 11, + [88167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(6316), 1, - sym_auto, - ACTIONS(6318), 1, - anon_sym_decltype, - ACTIONS(7391), 1, - anon_sym_LPAREN2, - ACTIONS(7393), 1, - anon_sym_LBRACK, - STATE(3621), 1, - sym_decltype_auto, - STATE(4969), 1, - sym_new_declarator, - STATE(5450), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5764), 11, + ACTIONS(4759), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5762), 23, + ACTIONS(4761), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -497237,128 +369704,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [136099] = 24, + [88225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(5743), 20, + 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(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7243), 1, - anon_sym_LBRACK, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, - anon_sym_requires, - STATE(6030), 1, - sym_ref_qualifier, - STATE(6491), 1, - sym_gnu_asm_expression, - STATE(6900), 1, - sym_requires_clause, - STATE(7179), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(4746), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4751), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6190), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6712), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6739), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7241), 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(5741), 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, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [136192] = 20, + [88283] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4806), 1, + anon_sym_virtual, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5912), 1, + sym_auto, + ACTIONS(5914), 1, anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(6661), 1, + anon_sym_SEMI, + STATE(3021), 1, + sym_decltype_auto, + ACTIONS(5910), 5, anon_sym_LPAREN2, - ACTIONS(2705), 1, anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, anon_sym_STAR, - ACTIONS(6899), 1, anon_sym_AMP_AMP, - ACTIONS(6901), 1, + anon_sym_COLON_COLON, + ACTIONS(5908), 6, anon_sym_AMP, - STATE(6518), 1, - sym__scope_resolution, - STATE(6876), 1, - sym__declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(5822), 2, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4796), 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(2993), 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_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(4794), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -497371,179 +369826,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [136277] = 24, + [88365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(4731), 20, + 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(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7243), 1, - anon_sym_LBRACK, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, - anon_sym_requires, - STATE(6030), 1, - sym_ref_qualifier, - STATE(6491), 1, - sym_gnu_asm_expression, - STATE(6900), 1, - sym_requires_clause, - STATE(7179), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(4734), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(4746), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6190), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6712), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6739), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7241), 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(4733), 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, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [136370] = 20, + [88423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, + ACTIONS(4751), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(6899), 1, - anon_sym_AMP_AMP, - ACTIONS(6901), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - STATE(6518), 1, - sym__scope_resolution, - STATE(6884), 1, - sym__declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [136455] = 5, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4753), 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, + [88481] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7220), 1, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, anon_sym_LBRACK, - STATE(4765), 1, - sym_new_declarator, - ACTIONS(6096), 9, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5777), 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_DOT, - ACTIONS(6094), 32, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(5775), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -497553,583 +369996,350 @@ 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, - [136510] = 20, + anon_sym_DASH_GT_STAR, + [88551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6889), 1, + ACTIONS(5861), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(6895), 1, - anon_sym_LBRACK, - STATE(6518), 1, - sym__scope_resolution, - STATE(7121), 1, - sym__declarator, - STATE(9528), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [136595] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 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(5859), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6889), 1, - anon_sym_STAR, - ACTIONS(6891), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6893), 1, - anon_sym_AMP, - ACTIONS(6895), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - STATE(6518), 1, - sym__scope_resolution, - STATE(7146), 1, - sym__declarator, - STATE(9528), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [136680] = 20, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [88609] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5592), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(2707), 1, - anon_sym_STAR, - ACTIONS(2709), 1, - anon_sym_AMP, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(5852), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, + ACTIONS(5946), 1, + anon_sym_EQ, + ACTIONS(6172), 1, anon_sym_LBRACK, - STATE(6525), 1, - sym__scope_resolution, - STATE(7212), 1, - sym__declarator, - STATE(9661), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [136765] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, - anon_sym___inline, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7397), 1, - anon_sym___declspec, - ACTIONS(7399), 1, - sym_auto, - ACTIONS(7401), 1, - anon_sym_decltype, - ACTIONS(7403), 1, - anon_sym_virtual, - ACTIONS(7405), 1, - anon_sym_alignas, - STATE(3891), 1, - sym_decltype_auto, - ACTIONS(6244), 2, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6316), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6360), 1, + anon_sym_QMARK, + ACTIONS(6382), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6633), 1, + anon_sym_PIPE, + ACTIONS(6635), 1, + anon_sym_CARET, + ACTIONS(6637), 1, anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(6246), 3, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(6643), 1, + anon_sym_GT_EQ, + ACTIONS(6647), 1, + anon_sym_bitor, + ACTIONS(6649), 1, + anon_sym_xor, + ACTIONS(6651), 1, + anon_sym_bitand, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6625), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6629), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6631), 2, anon_sym_AMP_AMP, - ACTIONS(7395), 8, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - STATE(4906), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [136842] = 24, + anon_sym_and, + ACTIONS(6645), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6627), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6639), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6641), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5944), 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, + [88715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(6065), 20, + 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(7204), 1, - anon_sym_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, - anon_sym_requires, - STATE(6022), 1, - sym_ref_qualifier, - STATE(6523), 1, - sym_gnu_asm_expression, - STATE(6894), 1, - sym_requires_clause, - STATE(7184), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5353), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6176), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6472), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6738), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 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(6063), 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, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [136935] = 20, + [88773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(2707), 1, + ACTIONS(6077), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(2709), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(5852), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 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(6075), 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, - STATE(6525), 1, - sym__scope_resolution, - STATE(7209), 1, - sym__declarator, - STATE(9661), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [137020] = 20, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [88831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6889), 1, + ACTIONS(6101), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(6895), 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(6099), 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, - STATE(6518), 1, - sym__scope_resolution, - STATE(7138), 1, - sym__declarator, - STATE(9528), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [137105] = 20, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [88889] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6989), 1, - anon_sym_STAR, - ACTIONS(6991), 1, - anon_sym_AMP_AMP, - ACTIONS(6993), 1, + ACTIONS(5320), 1, + anon_sym_COLON, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6663), 1, + anon_sym___attribute__, + STATE(3122), 1, + sym_attribute_specifier, + STATE(3620), 1, + sym_field_declaration_list, + STATE(6316), 1, + sym_virtual_specifier, + STATE(7070), 1, + sym_base_class_clause, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5314), 4, anon_sym_AMP, - ACTIONS(6995), 1, - anon_sym_COLON_COLON, - STATE(6488), 1, - sym__scope_resolution, - STATE(6839), 1, - sym__declarator, - STATE(9548), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, + 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - [137190] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5312), 37, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6929), 1, anon_sym_STAR, - ACTIONS(6931), 1, anon_sym_AMP_AMP, - ACTIONS(6933), 1, - anon_sym_AMP, - ACTIONS(6935), 1, - anon_sym_COLON_COLON, - STATE(6477), 1, - sym__scope_resolution, - STATE(7364), 1, - sym__declarator, - STATE(9340), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -498140,130 +370350,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [137275] = 24, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [88963] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7194), 1, + ACTIONS(6667), 1, anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(6669), 1, anon_sym_AMP, - ACTIONS(7204), 1, + ACTIONS(6673), 1, + anon_sym___attribute__, + ACTIONS(6676), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6679), 1, anon_sym_LBRACK, - ACTIONS(7212), 1, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(6685), 1, + anon_sym_DASH_GT, + ACTIONS(6690), 1, anon_sym_noexcept, - ACTIONS(7214), 1, + ACTIONS(6692), 1, anon_sym_throw, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, + ACTIONS(6694), 1, anon_sym_requires, - STATE(6022), 1, + STATE(4393), 1, + sym__function_attributes_start, + STATE(4496), 1, sym_ref_qualifier, - STATE(6523), 1, - sym_gnu_asm_expression, - STATE(6894), 1, - sym_requires_clause, - STATE(7184), 1, + STATE(5257), 1, + sym__function_attributes_end, + STATE(5280), 1, sym_trailing_return_type, - ACTIONS(7208), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(6687), 2, anon_sym_final, anon_sym_override, - STATE(4732), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5244), 2, + STATE(4070), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6176), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6713), 2, + aux_sym_type_definition_repeat1, + STATE(4415), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6738), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 4, - anon_sym_DOT_DOT_DOT, + STATE(5353), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4842), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6665), 7, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_GT2, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [137368] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(2707), 1, - anon_sym_STAR, - ACTIONS(2709), 1, - anon_sym_AMP, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(5852), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, - anon_sym_LBRACK, - STATE(6525), 1, - sym__scope_resolution, - STATE(7180), 1, - sym__declarator, - STATE(9661), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + ACTIONS(6671), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -498274,259 +370437,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [137453] = 20, + [89067] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6989), 1, - anon_sym_STAR, - ACTIONS(6991), 1, + ACTIONS(6697), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6699), 1, anon_sym_AMP_AMP, - ACTIONS(6993), 1, - anon_sym_AMP, - ACTIONS(6995), 1, - anon_sym_COLON_COLON, - STATE(6488), 1, - sym__scope_resolution, - STATE(6818), 1, - sym__declarator, - STATE(9548), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [137538] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(4322), 1, - anon_sym_LPAREN2, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5808), 1, + ACTIONS(6701), 1, + anon_sym_or, + ACTIONS(6703), 1, + anon_sym_and, + ACTIONS(5396), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(5816), 1, - anon_sym_LBRACK, - ACTIONS(7381), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7407), 1, - anon_sym_AMP_AMP, - ACTIONS(7409), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7411), 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, - STATE(4739), 1, - sym_parameter_list, - STATE(6518), 1, - sym__scope_resolution, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7232), 1, - sym__declarator, - STATE(7435), 1, - sym__abstract_declarator, - STATE(8117), 1, - sym_variadic_reference_declarator, - STATE(8118), 1, - sym_variadic_declarator, - STATE(9528), 1, - sym_ms_based_modifier, - ACTIONS(7383), 2, + anon_sym_GT_GT_EQ, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5398), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [137637] = 20, + [89133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(3757), 6, anon_sym_LPAREN2, - ACTIONS(2705), 1, anon_sym_TILDE, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6929), 1, anon_sym_STAR, - ACTIONS(6931), 1, anon_sym_AMP_AMP, - ACTIONS(6933), 1, - anon_sym_AMP, - ACTIONS(6935), 1, anon_sym_COLON_COLON, - STATE(6477), 1, - sym__scope_resolution, - STATE(7359), 1, - sym__declarator, - STATE(9340), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [137722] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, - anon_sym___inline, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7054), 1, + ACTIONS(3755), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(7397), 1, anon_sym___declspec, - ACTIONS(7399), 1, - sym_auto, - ACTIONS(7401), 1, - anon_sym_decltype, - ACTIONS(7403), 1, - anon_sym_virtual, - ACTIONS(7405), 1, - anon_sym_alignas, - STATE(3891), 1, - sym_decltype_auto, - ACTIONS(6372), 2, - anon_sym_AMP, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - ACTIONS(6374), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7395), 8, - 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(4902), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(7245), 11, - anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -498537,250 +370537,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [137799] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, - ACTIONS(2012), 1, anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, - anon_sym_STAR, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_COLON_COLON, - STATE(6547), 1, - sym__scope_resolution, - STATE(7212), 1, - sym__declarator, - STATE(9588), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [137884] = 20, + [89191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, + ACTIONS(4594), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(4596), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_COLON_COLON, - STATE(6547), 1, - sym__scope_resolution, - STATE(7209), 1, - sym__declarator, - STATE(9588), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [137969] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 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(4589), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6929), 1, - anon_sym_STAR, - ACTIONS(6931), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6933), 1, - anon_sym_AMP, - ACTIONS(6935), 1, - anon_sym_COLON_COLON, - STATE(6477), 1, - sym__scope_resolution, - STATE(7365), 1, - sym__declarator, - STATE(9340), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [138054] = 11, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(6316), 1, - sym_auto, - ACTIONS(6318), 1, - anon_sym_decltype, - ACTIONS(7391), 1, - anon_sym_LPAREN2, - ACTIONS(7393), 1, - anon_sym_LBRACK, - STATE(3621), 1, - sym_decltype_auto, - STATE(4928), 1, - sym_new_declarator, - STATE(5460), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5771), 11, + ACTIONS(4715), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5769), 23, + ACTIONS(4717), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -498788,109 +370662,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [138121] = 20, + [89309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(4723), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4725), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(6895), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(6989), 1, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [89367] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5876), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(6991), 1, - anon_sym_AMP_AMP, - ACTIONS(6993), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(6995), 1, - anon_sym_COLON_COLON, - STATE(6488), 1, - sym__scope_resolution, - STATE(6840), 1, - sym__declarator, - STATE(9548), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [138206] = 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(5874), 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, + [89425] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(4899), 10, + ACTIONS(6033), 1, + anon_sym_LBRACK, + STATE(3490), 1, + sym_new_declarator, + ACTIONS(5690), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4904), 31, + anon_sym_DASH_GT, + ACTIONS(5688), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -498901,56 +370828,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89487] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, anon_sym_DASH_GT, - [138259] = 11, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6627), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5724), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(5722), 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, + [89561] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(6316), 1, - sym_auto, - ACTIONS(6318), 1, - anon_sym_decltype, - ACTIONS(7391), 1, + ACTIONS(5592), 1, anon_sym_LPAREN2, - ACTIONS(7393), 1, + ACTIONS(6172), 1, anon_sym_LBRACK, - STATE(3621), 1, - sym_decltype_auto, - STATE(4917), 1, - sym_new_declarator, - STATE(5419), 2, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + STATE(3265), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(5710), 11, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5724), 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(5722), 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, + [89633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4743), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5706), 23, + ACTIONS(4745), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -498958,1195 +371009,874 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [138326] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, - anon_sym_STAR, - ACTIONS(6899), 1, - anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_AMP, - STATE(6518), 1, - sym__scope_resolution, - STATE(6865), 1, - sym__declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [138411] = 3, + [89691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6151), 9, + ACTIONS(5930), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6149), 33, + ACTIONS(5928), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [138461] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7413), 1, - anon_sym_typedef, - ACTIONS(3508), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3506), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [138513] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(2334), 1, - sym_template_argument_list, - ACTIONS(5916), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_GT2, - ACTIONS(5918), 28, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [138569] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(4869), 1, - anon_sym_LBRACK, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(4905), 1, - sym_template_argument_list, - ACTIONS(4862), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4865), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(4860), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [138629] = 6, + [89749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7218), 1, - anon_sym_LPAREN2, - STATE(4790), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6076), 9, + ACTIONS(6045), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6074), 29, + ACTIONS(6043), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - 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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [138685] = 3, + anon_sym_GT2, + [89807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 9, + ACTIONS(5861), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6392), 33, + ACTIONS(5859), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [138735] = 3, + anon_sym_GT2, + [89865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 9, + ACTIONS(5853), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(2889), 33, + ACTIONS(5851), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [138785] = 6, + anon_sym_GT2, + [89923] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(4357), 1, - sym_template_argument_list, - ACTIONS(4284), 6, + ACTIONS(5592), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(4276), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(5724), 1, + anon_sym_EQ, + ACTIONS(6172), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [138841] = 3, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6382), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6633), 1, + anon_sym_PIPE, + ACTIONS(6635), 1, + anon_sym_CARET, + ACTIONS(6637), 1, + anon_sym_AMP, + ACTIONS(6643), 1, + anon_sym_GT_EQ, + ACTIONS(6647), 1, + anon_sym_bitor, + ACTIONS(6649), 1, + anon_sym_xor, + ACTIONS(6651), 1, + anon_sym_bitand, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6625), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6631), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6645), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6627), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6639), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6641), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_DASH_GT_STAR, + [90023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6398), 9, + ACTIONS(5984), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6396), 33, + ACTIONS(5982), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [138891] = 6, + anon_sym_GT2, + [90081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7218), 1, - anon_sym_LPAREN2, - STATE(4840), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6057), 9, + ACTIONS(5718), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6055), 29, + ACTIONS(5720), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - 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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [138947] = 6, + anon_sym_GT2, + [90139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7218), 1, - anon_sym_LPAREN2, - STATE(4820), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6001), 9, + ACTIONS(4865), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5999), 29, + ACTIONS(4860), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - 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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [139003] = 3, + anon_sym_GT2, + [90197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6460), 9, + ACTIONS(5857), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6458), 33, + ACTIONS(5855), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [139053] = 10, + anon_sym_GT2, + [90255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6185), 8, + ACTIONS(5922), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6183), 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5920), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - 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___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [139117] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6167), 8, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [90313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5926), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6165), 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5924), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - 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___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [139181] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(7338), 1, - anon_sym_LBRACK, - STATE(4905), 1, - sym_template_argument_list, - ACTIONS(4299), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4284), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(4276), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [139241] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(4869), 1, - anon_sym_LBRACK, - ACTIONS(4872), 1, - anon_sym_SEMI, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(4718), 1, - sym_template_argument_list, - ACTIONS(4862), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4865), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(4860), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [139303] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6177), 8, + anon_sym_GT2, + [90371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6013), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6175), 27, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6011), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - 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___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [139365] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(4302), 1, - anon_sym_SEMI, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(4357), 1, - sym_template_argument_list, - ACTIONS(4284), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4276), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [139423] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6125), 8, + anon_sym_GT2, + [90429] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6021), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6123), 27, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6019), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - 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___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [139485] = 6, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [90487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7218), 1, - anon_sym_LPAREN2, - STATE(4803), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6009), 9, + ACTIONS(6093), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6007), 29, + ACTIONS(6091), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - 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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [139541] = 5, + anon_sym_GT2, + [90545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - STATE(2334), 1, - sym_template_argument_list, - ACTIONS(5918), 11, + ACTIONS(6097), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5916), 29, + ACTIONS(6095), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [139595] = 9, + [90603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(4920), 1, - anon_sym_SEMI, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(7338), 1, - anon_sym_LBRACK, - STATE(4718), 1, - sym_template_argument_list, - ACTIONS(4299), 2, + ACTIONS(3753), 6, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4284), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(4276), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [139657] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7417), 1, - anon_sym_typedef, - ACTIONS(3508), 2, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3506), 39, + ACTIONS(3751), 44, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -500176,66 +371906,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, + anon_sym_explicit, anon_sym_typename, anon_sym_template, - [139709] = 10, + anon_sym_operator, + [90661] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5592), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5724), 1, + anon_sym_EQ, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, + ACTIONS(6182), 1, anon_sym_DOT_STAR, + ACTIONS(6382), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6633), 1, + anon_sym_PIPE, + ACTIONS(6635), 1, + anon_sym_CARET, + ACTIONS(6637), 1, + anon_sym_AMP, + ACTIONS(6643), 1, + anon_sym_GT_EQ, + ACTIONS(6647), 1, + anon_sym_bitor, + ACTIONS(6649), 1, + anon_sym_xor, + ACTIONS(6651), 1, + anon_sym_bitand, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(6396), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6196), 8, + ACTIONS(6625), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6645), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6627), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(6639), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6641), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 25, + ACTIONS(5722), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [139773] = 3, + anon_sym_DASH_GT_STAR, + [90759] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6366), 9, + ACTIONS(5026), 1, + sym_literal_suffix, + STATE(3037), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(5251), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5253), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4069), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -500244,11 +372014,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6364), 32, + ACTIONS(4061), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -500261,458 +372037,543 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [139822] = 3, + [90825] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 9, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6382), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_CARET, + ACTIONS(6637), 1, + anon_sym_AMP, + ACTIONS(6643), 1, + anon_sym_GT_EQ, + ACTIONS(6649), 1, + anon_sym_xor, + ACTIONS(6651), 1, + anon_sym_bitand, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(5724), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6625), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6645), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6627), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(6639), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6641), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(6500), 32, + ACTIONS(5722), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_DASH_GT_STAR, + [90919] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6382), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6637), 1, + anon_sym_AMP, + ACTIONS(6643), 1, anon_sym_GT_EQ, + ACTIONS(6651), 1, + anon_sym_bitand, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6625), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6645), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5724), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(6627), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6639), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6641), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 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_LT_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [139871] = 3, + anon_sym_DASH_GT_STAR, + [91009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 9, + ACTIONS(6049), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6408), 32, + ACTIONS(6047), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [139920] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3348), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3346), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [139969] = 17, + anon_sym_GT2, + [91067] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7421), 1, + ACTIONS(5592), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6382), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6643), 1, + anon_sym_GT_EQ, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6625), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6645), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6627), 3, anon_sym_STAR, - ACTIONS(7425), 1, - anon_sym_AMP_AMP, - ACTIONS(7427), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6639), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6641), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5724), 4, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7431), 1, - sym_auto, - ACTIONS(7433), 1, - anon_sym_decltype, - STATE(4587), 1, - sym_parameter_list, - STATE(5645), 1, - sym_decltype_auto, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6795), 1, - sym__abstract_declarator, - STATE(5061), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(7419), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [140046] = 24, + ACTIONS(5722), 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, + [91153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(6081), 20, + 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(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7243), 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(6079), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 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, - STATE(6099), 1, - sym_ref_qualifier, - STATE(6663), 1, - sym_gnu_asm_expression, - STATE(6900), 1, - sym_requires_clause, - STATE(6946), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7241), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(4802), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(4852), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6323), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6712), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6849), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [140137] = 17, + anon_sym_GT2, + [91211] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7399), 1, - sym_auto, - ACTIONS(7401), 1, - anon_sym_decltype, - ACTIONS(7421), 1, + ACTIONS(5592), 1, anon_sym_LPAREN2, - ACTIONS(7429), 1, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(7437), 1, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6382), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6643), 1, + anon_sym_GT_EQ, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6625), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6645), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6627), 3, anon_sym_STAR, - ACTIONS(7439), 1, - anon_sym_AMP_AMP, - ACTIONS(7441), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6641), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5724), 4, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - STATE(3891), 1, - sym_decltype_auto, - STATE(4551), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6804), 1, - sym__abstract_declarator, - STATE(5174), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(7419), 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, - [140214] = 6, + ACTIONS(5722), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [91295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(7314), 1, - anon_sym_LT, - STATE(3280), 1, - sym_template_argument_list, - ACTIONS(4276), 10, + ACTIONS(5962), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4284), 28, + ACTIONS(5960), 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [140269] = 3, + [91353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 9, + ACTIONS(5954), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6466), 32, + ACTIONS(5952), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [140318] = 3, + anon_sym_GT2, + [91411] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2963), 2, + ACTIONS(4080), 1, anon_sym_COLON_COLON, + ACTIONS(6705), 1, + anon_sym_LT, + STATE(3513), 1, + sym_template_argument_list, + ACTIONS(4564), 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, - ACTIONS(2961), 39, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4559), 36, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -500732,404 +372593,489 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_COLON, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_typename, anon_sym_template, - [140367] = 30, + anon_sym_operator, + [91475] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5592), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6382), 1, + anon_sym_LT_EQ_GT, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, anon_sym_DOT, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(7451), 1, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6625), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6645), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6627), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7457), 1, + anon_sym_PERCENT, + ACTIONS(5724), 7, anon_sym_PIPE, - ACTIONS(7461), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7467), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(5722), 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, - ACTIONS(7471), 1, - anon_sym_SEMI, - ACTIONS(7473), 1, anon_sym_QMARK, - ACTIONS(7475), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7477), 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_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7479), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(7527), 1, - aux_sym_field_declaration_repeat1, - STATE(9091), 1, - sym_attribute_specifier, - ACTIONS(6131), 2, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [91555] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(6396), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, + ACTIONS(6625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7449), 2, + ACTIONS(6627), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7453), 2, + ACTIONS(5724), 9, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(5722), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7455), 2, 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, - ACTIONS(7459), 2, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [91631] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(5894), 1, + anon_sym_EQ, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6382), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6633), 1, + anon_sym_PIPE, + ACTIONS(6635), 1, anon_sym_CARET, + ACTIONS(6637), 1, + anon_sym_AMP, + ACTIONS(6643), 1, + anon_sym_GT_EQ, + ACTIONS(6647), 1, + anon_sym_bitor, + ACTIONS(6649), 1, anon_sym_xor, - ACTIONS(7469), 2, + ACTIONS(6651), 1, + anon_sym_bitand, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6625), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6629), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6631), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6645), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7463), 3, + ACTIONS(6627), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6639), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7465), 3, + ACTIONS(6641), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [140470] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2927), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2925), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [140519] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3075), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3073), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [140568] = 24, + ACTIONS(5892), 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, + [91733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(2134), 20, + 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(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 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(2132), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 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, - STATE(6112), 1, - sym_ref_qualifier, - STATE(6706), 1, - sym_gnu_asm_expression, - STATE(6894), 1, - sym_requires_clause, - STATE(6956), 1, - sym_trailing_return_type, - ACTIONS(7192), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(4854), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5470), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6251), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6851), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [140659] = 3, + anon_sym_GT2, + [91791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6490), 9, + ACTIONS(5934), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6488), 32, + ACTIONS(5932), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [140708] = 4, + anon_sym_GT2, + [91849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 1, - sym_literal_suffix, - ACTIONS(4286), 15, + ACTIONS(5970), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + 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(4278), 25, + ACTIONS(5968), 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_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [140759] = 3, + anon_sym_GT2, + [91907] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2981), 39, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6625), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6645), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6627), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5724), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(5722), 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, + [91985] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4798), 1, anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, + ACTIONS(4806), 1, anon_sym_virtual, + ACTIONS(4808), 1, anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [140808] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2955), 2, + ACTIONS(5912), 1, + sym_auto, + ACTIONS(5914), 1, + anon_sym_decltype, + ACTIONS(6707), 1, + anon_sym_SEMI, + STATE(3021), 1, + sym_decltype_auto, + ACTIONS(5910), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2953), 39, - anon_sym___extension__, + ACTIONS(5908), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4796), 9, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -501138,6 +373084,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + STATE(2993), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(4794), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -501149,33 +373107,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [140857] = 3, + [92067] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2138), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(2136), 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, + [92125] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 2, + ACTIONS(6249), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2949), 39, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(6715), 1, anon_sym___attribute__, + ACTIONS(6718), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6721), 1, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(6724), 1, + anon_sym_virtual, + ACTIONS(6727), 1, + anon_sym_alignas, + ACTIONS(6712), 9, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -501184,6 +373187,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + STATE(3444), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6709), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -501195,6 +373210,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + ACTIONS(6247), 14, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_class, @@ -501203,324 +373223,392 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, anon_sym_typename, anon_sym_template, - [140906] = 24, + [92199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(5958), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7243), 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(5956), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 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, - STATE(6099), 1, - sym_ref_qualifier, - STATE(6663), 1, - sym_gnu_asm_expression, - STATE(6900), 1, - sym_requires_clause, - STATE(6946), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7241), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(4852), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4856), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6323), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6712), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6849), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [140997] = 3, + anon_sym_GT2, + [92257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6464), 9, + ACTIONS(6017), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6462), 32, + ACTIONS(6015), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141046] = 30, + anon_sym_GT2, + [92315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(7451), 1, + ACTIONS(5884), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7457), 1, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7461), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7467), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(7473), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5882), 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(7475), 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_AMP_EQ, + anon_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(7477), 1, anon_sym_bitor, - ACTIONS(7479), 1, anon_sym_bitand, - ACTIONS(7481), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(7567), 1, - aux_sym_field_declaration_repeat1, - STATE(8940), 1, - sym_attribute_specifier, - ACTIONS(6131), 2, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [92373] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(6396), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, + ACTIONS(5809), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7449), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7453), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7455), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7459), 2, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7469), 2, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7463), 3, + anon_sym_EQ, + ACTIONS(5807), 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, - ACTIONS(7465), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [141149] = 3, + anon_sym_DASH_GT_STAR, + [92445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6418), 9, + ACTIONS(4836), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6416), 32, + ACTIONS(2828), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141198] = 24, + anon_sym_GT2, + [92503] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7243), 1, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(7483), 1, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6382), 1, + anon_sym_LT_EQ_GT, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - STATE(6094), 1, - sym_ref_qualifier, - STATE(6636), 1, - sym_requires_clause, - STATE(6679), 1, - sym_gnu_asm_expression, - STATE(7253), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7241), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(4842), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4845), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6321), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6493), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6838), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [141289] = 3, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6625), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6645), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6627), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5902), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(5900), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [92583] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2937), 39, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(4798), 1, anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(4806), 1, + anon_sym_virtual, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5912), 1, + sym_auto, + ACTIONS(5914), 1, + anon_sym_decltype, + ACTIONS(6730), 1, + anon_sym_SEMI, + STATE(3021), 1, + sym_decltype_auto, + ACTIONS(5910), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(5908), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4796), 9, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -501529,6 +373617,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + STATE(2993), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(4794), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -501540,33 +373640,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [141338] = 3, + [92665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2883), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2881), 39, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(4719), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4721), 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, + [92723] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4798), 1, anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(4806), 1, + anon_sym_virtual, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5912), 1, + sym_auto, + ACTIONS(5914), 1, + anon_sym_decltype, + ACTIONS(6732), 1, + anon_sym_SEMI, + STATE(3021), 1, + sym_decltype_auto, + ACTIONS(5910), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(5908), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4796), 9, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -501575,6 +373739,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + STATE(2993), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(4794), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -501586,171 +373762,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [141387] = 3, + [92805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6452), 9, + ACTIONS(4719), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6450), 32, + ACTIONS(4721), 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [92863] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4719), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4721), 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, + [92921] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5759), 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(5757), 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, + [92993] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4566), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4571), 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_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141436] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2875), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2873), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [141485] = 3, + anon_sym_GT2, + [93051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6456), 16, + ACTIONS(6041), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(6454), 25, + ACTIONS(6039), 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_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141534] = 3, + anon_sym_GT2, + [93109] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2871), 2, + ACTIONS(4080), 1, anon_sym_COLON_COLON, + ACTIONS(6705), 1, + anon_sym_LT, + STATE(3513), 1, + sym_template_argument_list, + ACTIONS(4085), 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, - ACTIONS(2869), 39, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5324), 36, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -501770,33 +374092,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_COLON, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_typename, anon_sym_template, - [141583] = 3, + anon_sym_operator, + [93173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3113), 2, + ACTIONS(6736), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3111), 39, + ACTIONS(6734), 44, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -501826,533 +374153,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, + anon_sym_explicit, anon_sym_typename, anon_sym_template, - [141632] = 3, + anon_sym_operator, + [93231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 9, + ACTIONS(4566), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(6446), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [141681] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6390), 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(6388), 32, + ACTIONS(4571), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141730] = 3, + anon_sym_GT2, + [93289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 9, + ACTIONS(4566), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(6480), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [141779] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7487), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5735), 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(5737), 30, + ACTIONS(4571), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, - [141830] = 3, + anon_sym_GT2, + [93347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6386), 9, + ACTIONS(4566), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6384), 32, + ACTIONS(4571), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141879] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(7451), 1, - anon_sym_SLASH, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7461), 1, - anon_sym_AMP, - ACTIONS(7467), 1, - anon_sym_GT_EQ, - ACTIONS(7473), 1, - anon_sym_QMARK, - ACTIONS(7475), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7477), 1, - anon_sym_bitor, - ACTIONS(7479), 1, - anon_sym_bitand, - ACTIONS(7489), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(7525), 1, - aux_sym_field_declaration_repeat1, - STATE(9450), 1, - sym_attribute_specifier, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7449), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7453), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7455), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7459), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7463), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7465), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [141982] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(4322), 1, - anon_sym_LPAREN2, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5808), 1, - anon_sym_STAR, - ACTIONS(5810), 1, - anon_sym_AMP_AMP, - ACTIONS(5812), 1, - anon_sym_AMP, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(5816), 1, - anon_sym_LBRACK, - ACTIONS(7381), 1, - anon_sym_DOT_DOT_DOT, - STATE(4739), 1, - sym_parameter_list, - STATE(6518), 1, - sym__scope_resolution, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7117), 1, - sym__declarator, - STATE(7372), 1, - sym__abstract_declarator, - STATE(8086), 1, - sym_variadic_declarator, - STATE(9528), 1, - sym_ms_based_modifier, - ACTIONS(7491), 2, - anon_sym_COMMA, anon_sym_GT2, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [142075] = 3, + [93405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6382), 9, + ACTIONS(6069), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6380), 32, + ACTIONS(6067), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142124] = 3, + anon_sym_GT2, + [93463] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2800), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2795), 39, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(4798), 1, anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, + ACTIONS(4806), 1, anon_sym_virtual, + ACTIONS(4808), 1, anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [142173] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7495), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(7493), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + ACTIONS(5912), 1, sym_auto, + ACTIONS(5914), 1, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [142222] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3226), 2, + ACTIONS(6738), 1, + anon_sym_SEMI, + STATE(3021), 1, + sym_decltype_auto, + ACTIONS(5910), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3224), 39, - anon_sym___extension__, + ACTIONS(5908), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4796), 9, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -502361,67 +374421,19 @@ 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [142271] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7431), 1, - sym_auto, - ACTIONS(7433), 1, - anon_sym_decltype, - ACTIONS(7499), 1, - anon_sym_STAR, - ACTIONS(7501), 1, - anon_sym_AMP_AMP, - ACTIONS(7503), 1, - anon_sym_AMP, - STATE(4524), 1, - sym_parameter_list, - STATE(5645), 1, - sym_decltype_auto, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6778), 1, - sym__abstract_declarator, - STATE(5237), 2, + STATE(2993), 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_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7198), 11, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(4794), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -502432,870 +374444,563 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7497), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [142348] = 3, + [93545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6278), 9, + ACTIONS(4566), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6254), 32, + ACTIONS(4571), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142397] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - STATE(6106), 1, - sym_ref_qualifier, - STATE(6665), 1, - sym_gnu_asm_expression, - STATE(6678), 1, - sym_requires_clause, - STATE(7255), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7237), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5466), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6342), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6674), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6832), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [142488] = 3, + anon_sym_GT2, + [93603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6242), 9, + ACTIONS(5753), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6240), 32, + ACTIONS(5755), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142537] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(4322), 1, - anon_sym_LPAREN2, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(5816), 1, - anon_sym_LBRACK, - ACTIONS(5822), 1, - anon_sym_STAR, - ACTIONS(5824), 1, - anon_sym_AMP_AMP, - ACTIONS(5826), 1, - anon_sym_AMP, - ACTIONS(7381), 1, - anon_sym_DOT_DOT_DOT, - STATE(4706), 1, - sym_parameter_list, - STATE(6518), 1, - sym__scope_resolution, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7117), 1, - sym__declarator, - STATE(7404), 1, - sym__abstract_declarator, - STATE(8086), 1, - sym_variadic_declarator, - STATE(9528), 1, - sym_ms_based_modifier, - ACTIONS(7491), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [142630] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3109), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3107), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [142679] = 3, + anon_sym_GT2, + [93661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6414), 9, + ACTIONS(4566), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6412), 32, + ACTIONS(4571), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142728] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - STATE(6100), 1, - sym_ref_qualifier, - STATE(6686), 1, - sym_gnu_asm_expression, - STATE(6701), 1, - sym_requires_clause, - STATE(7256), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7192), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4833), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5476), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6317), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6833), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [142819] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7399), 1, - sym_auto, - ACTIONS(7401), 1, - anon_sym_decltype, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7437), 1, - anon_sym_STAR, - ACTIONS(7439), 1, - anon_sym_AMP_AMP, - ACTIONS(7441), 1, - anon_sym_AMP, - STATE(3891), 1, - sym_decltype_auto, - STATE(4551), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6807), 1, - sym__abstract_declarator, - STATE(5232), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(7497), 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, - [142896] = 3, + anon_sym_GT2, + [93719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 9, + ACTIONS(4711), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_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), 32, + ACTIONS(4713), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142945] = 3, + anon_sym_GT2, + [93777] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6350), 9, + ACTIONS(6740), 1, + anon_sym_LT, + STATE(2649), 1, + sym_template_argument_list, + ACTIONS(5865), 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, anon_sym_DOT, - ACTIONS(6348), 32, + ACTIONS(5863), 31, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142994] = 24, + [93839] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, + ACTIONS(6699), 1, anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - STATE(6100), 1, - sym_ref_qualifier, - STATE(6686), 1, - sym_gnu_asm_expression, - STATE(6701), 1, - sym_requires_clause, - STATE(7256), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7192), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5466), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6317), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6688), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6833), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [143085] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6354), 9, + ACTIONS(6703), 1, + anon_sym_and, + ACTIONS(5374), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, 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(6352), 32, + ACTIONS(5376), 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_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [143134] = 30, + anon_sym_GT2, + [93901] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5592), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(6029), 1, + anon_sym_EQ, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(7451), 1, - anon_sym_SLASH, - ACTIONS(7457), 1, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6382), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6633), 1, anon_sym_PIPE, - ACTIONS(7461), 1, + ACTIONS(6635), 1, + anon_sym_CARET, + ACTIONS(6637), 1, anon_sym_AMP, - ACTIONS(7467), 1, + ACTIONS(6643), 1, anon_sym_GT_EQ, - ACTIONS(7473), 1, - anon_sym_QMARK, - ACTIONS(7475), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7477), 1, + ACTIONS(6647), 1, anon_sym_bitor, - ACTIONS(7479), 1, + ACTIONS(6649), 1, + anon_sym_xor, + ACTIONS(6651), 1, anon_sym_bitand, - ACTIONS(7505), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(3265), 1, sym_argument_list, - STATE(7533), 1, - aux_sym_field_declaration_repeat1, - STATE(9398), 1, - sym_attribute_specifier, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(6396), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, + ACTIONS(6625), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7449), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7453), 2, + ACTIONS(6629), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7455), 2, + ACTIONS(6631), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7459), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7469), 2, + ACTIONS(6645), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7463), 3, + ACTIONS(6627), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6639), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7465), 3, + ACTIONS(6641), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [143237] = 24, + ACTIONS(6027), 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, + [94003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(5997), 20, + 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(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 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(5995), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7483), 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, - ACTIONS(7485), 1, - anon_sym_requires, - STATE(6100), 1, - sym_ref_qualifier, - STATE(6686), 1, - sym_gnu_asm_expression, - STATE(6701), 1, - sym_requires_clause, - STATE(7256), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7192), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4833), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5477), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6317), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6833), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [143328] = 3, + anon_sym_GT2, + [94061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6238), 9, + ACTIONS(6105), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6236), 32, + ACTIONS(6103), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [143377] = 3, + anon_sym_GT2, + [94119] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2965), 39, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(4798), 1, anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(4806), 1, + anon_sym_virtual, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5912), 1, + sym_auto, + ACTIONS(5914), 1, + anon_sym_decltype, + ACTIONS(6743), 1, + anon_sym_SEMI, + STATE(3021), 1, + sym_decltype_auto, + ACTIONS(5910), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(5908), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4796), 9, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -503304,6 +375009,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + STATE(2993), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(4794), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -503315,145 +375032,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [143426] = 3, + [94201] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6234), 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(6232), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5592), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + ACTIONS(5906), 1, + anon_sym_EQ, + ACTIONS(6172), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(6182), 1, + anon_sym_DOT_STAR, + ACTIONS(6382), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6633), 1, + anon_sym_PIPE, + ACTIONS(6635), 1, + anon_sym_CARET, + ACTIONS(6637), 1, + anon_sym_AMP, + ACTIONS(6643), 1, + anon_sym_GT_EQ, + ACTIONS(6647), 1, anon_sym_bitor, + ACTIONS(6649), 1, anon_sym_xor, + ACTIONS(6651), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6396), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [143475] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6506), 9, + ACTIONS(6625), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6629), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6631), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6645), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6627), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(6639), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6641), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(6504), 32, + ACTIONS(5904), 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, + [94303] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + ACTIONS(6172), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(6182), 1, anon_sym_DOT_STAR, + STATE(3265), 1, + sym_argument_list, + STATE(3345), 1, + sym_subscript_argument_list, + ACTIONS(6180), 2, + anon_sym_DOT, anon_sym_DASH_GT, - [143524] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6426), 9, + ACTIONS(5793), 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_DOT, - ACTIONS(6424), 32, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(5791), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -503463,35 +375169,29 @@ 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, - [143573] = 9, + anon_sym_DASH_GT_STAR, + [94373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(7156), 1, - anon_sym_LBRACE, - ACTIONS(7507), 1, - anon_sym_COLON, - STATE(3962), 1, - sym_attribute_specifier, - STATE(4387), 1, - sym__enum_base_clause, - STATE(4499), 1, - sym_enumerator_list, - ACTIONS(5800), 5, + ACTIONS(5710), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5802), 30, + ACTIONS(5708), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -503511,69 +375211,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, anon_sym_operator, - [143634] = 24, + [94431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, + ACTIONS(5042), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7196), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5040), 37, anon_sym_AMP, - ACTIONS(7200), 1, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(7206), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, - anon_sym_DASH_GT, - STATE(6112), 1, - sym_ref_qualifier, - STATE(6706), 1, - sym_gnu_asm_expression, - STATE(6894), 1, - sym_requires_clause, - STATE(6956), 1, - sym_trailing_return_type, - ACTIONS(7192), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5466), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6251), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6683), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6851), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7198), 11, - anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -503584,148 +375269,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [143725] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7431), 1, + anon_sym_COLON, + sym_identifier, sym_auto, - ACTIONS(7433), 1, anon_sym_decltype, - ACTIONS(7499), 1, - anon_sym_STAR, - ACTIONS(7501), 1, - anon_sym_AMP_AMP, - ACTIONS(7503), 1, - anon_sym_AMP, - STATE(4524), 1, - sym_parameter_list, - STATE(5645), 1, - sym_decltype_auto, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6772), 1, - sym__abstract_declarator, - STATE(5228), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(7419), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [143802] = 24, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [94489] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, - anon_sym_AMP_AMP, - ACTIONS(7196), 1, - anon_sym_AMP, - ACTIONS(7200), 1, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, - anon_sym_DASH_GT, - STATE(6114), 1, - sym_ref_qualifier, - STATE(6681), 1, - sym_gnu_asm_expression, - STATE(6891), 1, - sym_requires_clause, - STATE(6965), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7237), 2, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4806), 1, + anon_sym_virtual, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5912), 1, + sym_auto, + ACTIONS(5914), 1, + anon_sym_decltype, + ACTIONS(6745), 1, + anon_sym_SEMI, + STATE(3021), 1, + sym_decltype_auto, + ACTIONS(5910), 5, anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5466), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6283), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6628), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6852), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [143893] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2979), 2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2977), 39, - anon_sym___extension__, + ACTIONS(5908), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4796), 9, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -503734,6 +375324,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + STATE(2993), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(4794), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -503745,109 +375347,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [143942] = 24, + [94571] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, + ACTIONS(6667), 1, anon_sym_AMP_AMP, - ACTIONS(7196), 1, + ACTIONS(6669), 1, anon_sym_AMP, - ACTIONS(7200), 1, + ACTIONS(6673), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(6676), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, + ACTIONS(6679), 1, anon_sym_LBRACK, - ACTIONS(7206), 1, + ACTIONS(6681), 1, anon_sym_const, - ACTIONS(7212), 1, + ACTIONS(6685), 1, + anon_sym_DASH_GT, + ACTIONS(6690), 1, anon_sym_noexcept, - ACTIONS(7214), 1, + ACTIONS(6692), 1, anon_sym_throw, - ACTIONS(7371), 1, + ACTIONS(6747), 1, anon_sym_requires, - ACTIONS(7435), 1, - anon_sym_DASH_GT, - STATE(6112), 1, + STATE(4390), 1, + sym__function_attributes_start, + STATE(4506), 1, sym_ref_qualifier, - STATE(6706), 1, - sym_gnu_asm_expression, - STATE(6894), 1, - sym_requires_clause, - STATE(6956), 1, + STATE(5254), 1, sym_trailing_return_type, - ACTIONS(7192), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + STATE(5275), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(4854), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5461), 2, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4070), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6251), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6713), 2, + aux_sym_type_definition_repeat1, + STATE(4415), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6851), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [144033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3085), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3083), 39, + STATE(5353), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4853), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6665), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + ACTIONS(6671), 11, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -503858,183 +375425,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [144082] = 3, + [94675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6518), 9, + ACTIONS(4739), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(6516), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [144131] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6510), 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(6508), 32, + ACTIONS(4741), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144180] = 3, + anon_sym_GT2, + [94733] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2846), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2844), 39, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(6759), 1, anon_sym___attribute__, + ACTIONS(6762), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6765), 1, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, + ACTIONS(6768), 1, anon_sym_virtual, + ACTIONS(6771), 1, anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [144229] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(7156), 1, - anon_sym_LBRACE, - ACTIONS(7507), 1, - anon_sym_COLON, - STATE(3969), 1, - sym_attribute_specifier, - STATE(4419), 1, - sym__enum_base_clause, - STATE(4487), 1, - sym_enumerator_list, - ACTIONS(5792), 5, + ACTIONS(6774), 1, + anon_sym_explicit, + ACTIONS(6751), 5, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(5794), 30, + anon_sym_COLON_COLON, + ACTIONS(6749), 7, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(6756), 9, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -504043,6 +375519,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + STATE(3483), 11, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + ACTIONS(6753), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -504054,122 +375544,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [144290] = 3, + [94809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6294), 9, + ACTIONS(4539), 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(6292), 32, + ACTIONS(4541), 31, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144339] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7423), 1, - anon_sym_STAR, - ACTIONS(7425), 1, - anon_sym_AMP_AMP, - ACTIONS(7427), 1, - anon_sym_AMP, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7431), 1, - sym_auto, - ACTIONS(7433), 1, - anon_sym_decltype, - STATE(4587), 1, - sym_parameter_list, - STATE(5645), 1, - sym_decltype_auto, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6790), 1, - sym__abstract_declarator, - STATE(5054), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(7497), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [144416] = 3, + [94866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6300), 9, + ACTIONS(5152), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504178,11 +375610,19 @@ 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(6298), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(5154), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -504195,130 +375635,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144465] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2991), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2989), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [144514] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3005), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3003), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [144563] = 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, + [94923] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 2, + ACTIONS(4080), 1, anon_sym_COLON_COLON, + ACTIONS(6705), 1, + anon_sym_LT, + ACTIONS(6779), 1, + anon_sym_EQ, + STATE(3513), 1, + sym_template_argument_list, + ACTIONS(6777), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(4085), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_LBRACK_LBRACK, - ACTIONS(3087), 39, + anon_sym_LBRACE, + ACTIONS(5324), 36, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -504338,28 +375701,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_COLON, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_typename, anon_sym_template, - [144612] = 5, + anon_sym_operator, + [94990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7487), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7509), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5743), 9, + ACTIONS(5188), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504368,14 +375723,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5745), 28, + sym_identifier, + sym_literal_suffix, + ACTIONS(5190), 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, @@ -504383,36 +375748,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144665] = 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, + [95047] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3047), 2, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(6783), 1, + anon_sym_COLON, + STATE(3101), 1, + sym_attribute_specifier, + STATE(3524), 1, + sym__enum_base_clause, + STATE(3648), 1, + sym_enumerator_list, + ACTIONS(5463), 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, - ACTIONS(3045), 39, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5465), 32, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -504432,33 +375818,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, - anon_sym_typename, anon_sym_template, - [144714] = 3, + anon_sym_operator, + [95116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3051), 2, + ACTIONS(6659), 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(3049), 39, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6657), 36, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -504478,53 +375869,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_COLON, sym_identifier, - sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_typename, + anon_sym_explicit, anon_sym_template, - [144763] = 3, + anon_sym_operator, + [95173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6422), 9, + ACTIONS(5773), 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(6420), 32, + anon_sym_DASH_GT, + ACTIONS(5771), 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_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -504535,57 +375932,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, - [144812] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3011), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [144861] = 3, + anon_sym_DASH_GT_STAR, + [95230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6230), 9, + ACTIONS(5174), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504594,11 +375945,19 @@ 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(6228), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(5176), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -504611,47 +375970,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_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, + [95287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5182), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5184), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144910] = 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, + [95344] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3033), 2, + ACTIONS(4080), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3031), 39, + ACTIONS(5950), 1, + anon_sym_LT, + STATE(1726), 1, + sym_template_argument_list, + ACTIONS(4559), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4564), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_LBRACE, anon_sym_static, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -504662,53 +376088,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [144959] = 3, + anon_sym_try, + anon_sym_requires, + [95407] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6514), 9, + ACTIONS(4615), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4873), 1, + anon_sym_LBRACK, + ACTIONS(4867), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(4069), 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(6512), 32, + anon_sym_DASH_GT, + ACTIONS(4061), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -504719,22 +376154,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [145008] = 3, + anon_sym_DASH_GT_STAR, + [95470] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3055), 2, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(6783), 1, + anon_sym_COLON, + STATE(3033), 1, + sym_attribute_specifier, + STATE(3588), 1, + sym__enum_base_clause, + STATE(3632), 1, + sym_enumerator_list, + ACTIONS(5449), 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, - ACTIONS(3053), 39, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5451), 32, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -504754,74 +376208,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, - anon_sym_typename, anon_sym_template, - [145057] = 24, + anon_sym_operator, + [95539] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7194), 1, + ACTIONS(5308), 1, + anon_sym_EQ, + ACTIONS(5310), 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(4069), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4061), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7196), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [95600] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, anon_sym_AMP, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(6676), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7206), 1, + ACTIONS(6679), 1, + anon_sym_LBRACK, + ACTIONS(6681), 1, anon_sym_const, - ACTIONS(7212), 1, + ACTIONS(6690), 1, anon_sym_noexcept, - ACTIONS(7214), 1, + ACTIONS(6692), 1, anon_sym_throw, - ACTIONS(7243), 1, - anon_sym_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, + ACTIONS(6694), 1, anon_sym_requires, - STATE(6094), 1, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6790), 1, + anon_sym_DASH_GT, + STATE(4426), 1, + sym__function_attributes_start, + STATE(4563), 1, sym_ref_qualifier, - STATE(6636), 1, - sym_requires_clause, - STATE(6679), 1, - sym_gnu_asm_expression, - STATE(7253), 1, + STATE(5274), 1, + sym__function_attributes_end, + STATE(5280), 1, sym_trailing_return_type, - ACTIONS(5663), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6687), 2, anon_sym_final, anon_sym_override, - ACTIONS(7208), 2, + ACTIONS(6787), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7241), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(4838), 2, + STATE(4070), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(4842), 2, - sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(6321), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6493), 2, + STATE(4415), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6838), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7198), 11, + STATE(5353), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4899), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6665), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(6671), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -504833,160 +376348,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [145148] = 15, + [95703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(6089), 23, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6196), 5, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, + anon_sym_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, - [145220] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, + sym_literal_suffix, + ACTIONS(6087), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6476), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - [145314] = 4, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_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, + [95760] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 1, - anon_sym_SEMI, - ACTIONS(5323), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6667), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5321), 33, + ACTIONS(6669), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(6679), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6794), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6797), 1, + anon_sym_DASH_GT, + ACTIONS(6799), 1, + anon_sym_requires, + STATE(4422), 1, + sym__function_attributes_start, + STATE(4580), 1, + sym_ref_qualifier, + STATE(5316), 1, + sym_trailing_return_type, + STATE(5381), 1, + sym__function_attributes_end, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6687), 2, + anon_sym_final, + anon_sym_override, + STATE(3894), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4341), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5353), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4869), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6665), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6792), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -504997,36 +376479,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [145364] = 6, + [95863] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7373), 1, - anon_sym_LPAREN2, - STATE(4840), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6057), 9, + ACTIONS(5326), 1, + sym_literal_suffix, + STATE(3250), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(4629), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4631), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4069), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6055), 27, + ACTIONS(4061), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -505034,38 +376528,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_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [145418] = 5, + anon_sym_GT2, + [95928] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 1, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6676), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6679), 1, + anon_sym_LBRACK, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6694), 1, + anon_sym_requires, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6802), 1, + anon_sym_DASH_GT, + STATE(4433), 1, + sym__function_attributes_start, + STATE(4569), 1, + sym_ref_qualifier, + STATE(5280), 1, + sym_trailing_return_type, + STATE(5349), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6687), 2, + anon_sym_final, + anon_sym_override, + STATE(4070), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4415), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5353), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4912), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6665), 6, + anon_sym_LPAREN2, anon_sym_SEMI, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5323), 5, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + ACTIONS(6671), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6736), 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(5321), 33, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6734), 36, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -505092,40 +376658,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, sym_identifier, - sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [145470] = 6, + [96088] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(7070), 1, - anon_sym_LT, - STATE(2334), 1, - sym_template_argument_list, - ACTIONS(4860), 4, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, anon_sym_AMP, + ACTIONS(6676), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6679), 1, anon_sym_LBRACK, + ACTIONS(6681), 1, anon_sym_const, - anon_sym_COLON, - ACTIONS(4865), 33, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6802), 1, + anon_sym_DASH_GT, + STATE(4420), 1, + sym__function_attributes_start, + STATE(4551), 1, + sym_ref_qualifier, + STATE(5254), 1, + sym_trailing_return_type, + STATE(5428), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4070), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4415), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5353), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4902), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6665), 6, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + ACTIONS(6671), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -505136,250 +376745,474 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [96191] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5304), 1, + sym_literal_suffix, + ACTIONS(4069), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4061), 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, + [96250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4576), 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(4578), 31, + 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_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [96307] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6679), 1, + anon_sym_LBRACK, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6794), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6799), 1, + anon_sym_requires, + ACTIONS(6804), 1, + anon_sym_DASH_GT, + STATE(4427), 1, + sym__function_attributes_start, + STATE(4589), 1, + sym_ref_qualifier, + STATE(5253), 1, + sym__function_attributes_end, + STATE(5316), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6687), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, + ACTIONS(6787), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(3894), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4341), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5353), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4889), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6665), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - anon_sym_requires, - [145524] = 24, + ACTIONS(6792), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7515), 1, + ACTIONS(4543), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7529), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7535), 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(4545), 31, + 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, - ACTIONS(7539), 1, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - ACTIONS(7541), 1, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [96467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4555), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7517), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, + anon_sym_EQ, anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6400), 6, + anon_sym_DOT, + ACTIONS(4557), 31, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [145614] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, anon_sym_LPAREN2, - ACTIONS(6127), 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(6129), 1, - anon_sym_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7539), 1, anon_sym_bitor, - ACTIONS(7541), 1, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [96524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4547), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7517), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, + anon_sym_EQ, anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6496), 6, + anon_sym_DOT, + ACTIONS(4549), 31, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [145704] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, anon_sym_LPAREN2, - ACTIONS(6127), 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(6129), 1, - anon_sym_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [96581] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4551), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6378), 5, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6376), 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(4553), 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_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, - 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_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [145776] = 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [96638] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7120), 1, + ACTIONS(61), 1, anon_sym_const, - ACTIONS(7123), 1, - anon_sym___inline, - ACTIONS(7549), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7552), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7555), 1, - anon_sym___declspec, - ACTIONS(7558), 1, - anon_sym_virtual, - ACTIONS(7561), 1, - anon_sym_alignas, - ACTIONS(6669), 2, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, anon_sym_AMP, + ACTIONS(6679), 1, anon_sym_LBRACK, - ACTIONS(6671), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7546), 8, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - STATE(4887), 9, - sym__declaration_modifiers, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6794), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6804), 1, + anon_sym_DASH_GT, + ACTIONS(6806), 1, + anon_sym_requires, + STATE(4424), 1, + sym__function_attributes_start, + STATE(4587), 1, + sym_ref_qualifier, + STATE(5271), 1, + sym_trailing_return_type, + STATE(5315), 1, + sym__function_attributes_end, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6787), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(3894), 2, sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + aux_sym_type_definition_repeat1, + STATE(4341), 2, sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(7543), 11, + aux_sym__type_definition_type_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5353), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4888), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6665), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6792), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -505391,89 +377224,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [145844] = 14, + [96741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(4583), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6196), 5, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4585), 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_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [145914] = 6, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [96798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(7070), 1, - anon_sym_LT, - STATE(2334), 1, - sym_template_argument_list, - ACTIONS(5673), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4302), 33, + ACTIONS(4594), 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___extension__, - anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4587), 36, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -505484,59 +377322,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + anon_sym_COLON, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [145968] = 15, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [96855] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7571), 1, - anon_sym___attribute__, - ACTIONS(7575), 1, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6676), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7579), 1, + ACTIONS(6679), 1, anon_sym_LBRACK, - ACTIONS(7582), 1, - anon_sym_DASH_GT, - ACTIONS(7588), 1, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6747), 1, anon_sym_requires, - STATE(6574), 1, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6790), 1, + anon_sym_DASH_GT, + STATE(4428), 1, + sym__function_attributes_start, + STATE(4547), 1, + sym_ref_qualifier, + STATE(5254), 1, sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(7569), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7585), 2, + STATE(5272), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(5488), 2, + ACTIONS(6787), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4070), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6281), 2, + aux_sym_type_definition_repeat1, + STATE(4415), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7564), 7, + STATE(5353), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4879), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6665), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_try, - ACTIONS(7567), 16, - anon_sym_AMP_AMP, + ACTIONS(6671), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -505548,118 +377409,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, + [96958] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6679), 1, + anon_sym_LBRACK, + ACTIONS(6690), 1, anon_sym_noexcept, + ACTIONS(6692), 1, anon_sym_throw, - [146040] = 29, + ACTIONS(6794), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6797), 1, + anon_sym_DASH_GT, + ACTIONS(6806), 1, + anon_sym_requires, + STATE(4417), 1, + sym__function_attributes_start, + STATE(4565), 1, + sym_ref_qualifier, + STATE(5271), 1, + sym_trailing_return_type, + STATE(5375), 1, + sym__function_attributes_end, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(3894), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4341), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5353), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4882), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6665), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6792), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97061] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + STATE(1726), 1, + sym_template_argument_list, + ACTIONS(5324), 5, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, + anon_sym___inline, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4085), 41, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(7593), 1, - anon_sym_SEMI, - ACTIONS(7595), 1, - anon_sym_RBRACE, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8166), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [146140] = 6, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_try, + anon_sym_requires, + [97124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7373), 1, - anon_sym_LPAREN2, - STATE(4803), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6009), 9, + ACTIONS(5918), 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(6007), 27, + anon_sym_DASH_GT, + ACTIONS(5916), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -505670,430 +377595,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [146194] = 13, + anon_sym_DASH_GT_STAR, + [97180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(5152), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6196), 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(6194), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_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, - [146262] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6434), 6, + sym_identifier, + sym_literal_suffix, + ACTIONS(5154), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [146352] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6492), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - [146446] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6254), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - [146540] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6196), 1, - anon_sym_PIPE, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7541), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 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, - [146624] = 24, + 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, + [97236] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, + ACTIONS(6679), 1, + anon_sym_LBRACK, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6794), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6808), 1, anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6368), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6810), 1, + anon_sym_requires, + STATE(4465), 1, + sym__function_attributes_start, + STATE(4648), 1, + sym_ref_qualifier, + STATE(5437), 1, + sym__function_attributes_end, + STATE(5659), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6687), 2, + anon_sym_final, + anon_sym_override, + STATE(3894), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4341), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5353), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4959), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6665), 5, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [146714] = 6, + anon_sym_LBRACE, + anon_sym_try, + ACTIONS(6792), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7373), 1, - anon_sym_LPAREN2, - STATE(4790), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6076), 9, + ACTIONS(4723), 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(6074), 27, + anon_sym_DASH_GT, + ACTIONS(4725), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -506104,171 +377777,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [146768] = 17, + anon_sym_DASH_GT_STAR, + [97394] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6813), 1, + anon_sym_SEMI, + STATE(3122), 1, + sym_attribute_specifier, + STATE(3619), 1, + sym_field_declaration_list, + STATE(6404), 1, + sym_virtual_specifier, + STATE(6880), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5312), 6, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6196), 2, - anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5314), 32, anon_sym_AMP, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [97468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6109), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7533), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6107), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [146844] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6196), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(7415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [97524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6009), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 14, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6007), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - [146922] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, - anon_sym___inline, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7397), 1, - anon_sym___declspec, - ACTIONS(7403), 1, - anon_sym_virtual, - ACTIONS(7405), 1, - anon_sym_alignas, - ACTIONS(6665), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(6667), 3, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [97580] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(6781), 1, + anon_sym_LBRACE, + STATE(3118), 1, + sym_attribute_specifier, + STATE(3637), 1, + sym_enumerator_list, + ACTIONS(5441), 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, - ACTIONS(7395), 8, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5443), 32, + anon_sym_AMP, + anon_sym___extension__, anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - STATE(4887), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(7245), 11, - anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -506279,31 +377996,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [146990] = 8, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [97644] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(4867), 1, - anon_sym_LBRACK, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(5152), 1, - sym_template_argument_list, - ACTIONS(4862), 2, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6815), 1, + anon_sym_SEMI, + STATE(3122), 1, + sym_attribute_specifier, + STATE(3619), 1, + sym_field_declaration_list, + STATE(6404), 1, + sym_virtual_specifier, + STATE(6880), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5312), 6, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4865), 3, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(4860), 31, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5314), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -506328,76 +378063,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, + anon_sym_template, anon_sym_operator, - [147048] = 6, + [97718] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(6280), 1, anon_sym_LBRACE, - ACTIONS(7373), 1, - anon_sym_LPAREN2, - STATE(4820), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6001), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(5999), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [147102] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4901), 1, - anon_sym_LBRACK, - ACTIONS(4894), 2, + ACTIONS(6817), 1, + anon_sym_SEMI, + STATE(3122), 1, + sym_attribute_specifier, + STATE(3619), 1, + sym_field_declaration_list, + STATE(6404), 1, + sym_virtual_specifier, + STATE(6880), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5312), 6, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4897), 5, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(4892), 32, + anon_sym_LBRACK_LBRACK, + ACTIONS(5314), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -506424,51 +378127,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [147154] = 13, + [97792] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, - anon_sym___inline, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7054), 1, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7397), 1, - anon_sym___declspec, - ACTIONS(7403), 1, - anon_sym_virtual, - ACTIONS(7405), 1, - anon_sym_alignas, - ACTIONS(6697), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(6699), 3, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6819), 1, + anon_sym_SEMI, + STATE(3122), 1, + sym_attribute_specifier, + STATE(3619), 1, + sym_field_declaration_list, + STATE(6404), 1, + sym_virtual_specifier, + STATE(6880), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5312), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7395), 8, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5314), 32, + anon_sym_AMP, + anon_sym___extension__, anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - STATE(4887), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(7245), 11, - anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -506479,53 +378182,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [147222] = 12, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [97866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7515), 1, + ACTIONS(4719), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(7415), 2, + ACTIONS(4721), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + 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(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6196), 7, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [97922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4759), 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, - ACTIONS(6194), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4761), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [97978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4719), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4721), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -506533,31 +378344,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [147288] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [98034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, + ACTIONS(5190), 3, anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(7597), 1, - anon_sym_LBRACK, - STATE(5152), 1, - sym_template_argument_list, - ACTIONS(4299), 2, - anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(4284), 3, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(4276), 31, - anon_sym_AMP, + anon_sym_LBRACE, + ACTIONS(5188), 45, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -506577,402 +378389,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, - anon_sym_operator, - [147346] = 23, + anon_sym_typename, + anon_sym_template, + [98090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(4747), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 8, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4749), 32, 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, - [147434] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, anon_sym_LPAREN2, - ACTIONS(6127), 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(6129), 1, - anon_sym_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7539), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [98146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4727), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7527), 2, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4729), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - [147520] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7571), 1, - anon_sym___attribute__, - ACTIONS(7575), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7579), 1, - anon_sym_LBRACK, - ACTIONS(7582), 1, - anon_sym_DASH_GT, - ACTIONS(7603), 1, - anon_sym_requires, - STATE(6574), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(7569), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7599), 2, - anon_sym_final, - anon_sym_override, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6281), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7564), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(7567), 16, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - anon_sym_noexcept, - anon_sym_throw, - [147592] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6196), 1, - anon_sym_PIPE, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7541), 1, + anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [98202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4719), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 13, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4721), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - [147674] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7451), 1, - anon_sym_SLASH, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7461), 1, - anon_sym_AMP, - ACTIONS(7467), 1, - anon_sym_GT_EQ, - ACTIONS(7473), 1, - anon_sym_QMARK, - ACTIONS(7475), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7477), 1, - anon_sym_bitor, - ACTIONS(7479), 1, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [98258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4731), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7449), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7453), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7455), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7459), 2, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7463), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7465), 3, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7607), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [147767] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7443), 1, + anon_sym_DASH_GT, + ACTIONS(4733), 32, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, anon_sym_COMMA, - ACTIONS(7611), 1, anon_sym_RPAREN, - ACTIONS(7613), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [147864] = 4, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [98314] = 3, ACTIONS(3), 1, sym_comment, - STATE(2103), 1, - sym__fold_operator, - ACTIONS(7617), 13, + ACTIONS(4751), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -506982,18 +378626,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(7615), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4753), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, 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_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -507004,41 +378655,83 @@ 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, - [147913] = 3, + [98370] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7621), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7619), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(6663), 1, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6679), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6821), 1, + anon_sym_DASH_GT, + ACTIONS(6826), 1, + anon_sym_requires, + STATE(4442), 1, + sym__function_attributes_start, + STATE(4625), 1, + sym_ref_qualifier, + STATE(5474), 1, + sym__function_attributes_end, + STATE(5703), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6823), 2, + anon_sym_final, + anon_sym_override, + STATE(3894), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4341), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5622), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4941), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6665), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6792), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -507049,38 +378742,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [147960] = 6, + [98472] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(7391), 1, - anon_sym_LPAREN2, - STATE(5449), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6076), 11, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(6829), 1, + anon_sym_LT, + STATE(2379), 1, + sym_template_argument_list, + ACTIONS(4559), 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_COLON, anon_sym_DOT, - ACTIONS(6074), 24, + ACTIONS(4564), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -507088,8 +378773,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -507102,128 +378794,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [148013] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(7623), 1, - sym_identifier, - ACTIONS(7625), 1, - anon_sym_LPAREN2, - ACTIONS(7627), 1, - anon_sym_STAR, - ACTIONS(7629), 1, - anon_sym_AMP_AMP, - ACTIONS(7631), 1, - anon_sym_AMP, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7350), 1, - sym__field_declarator, - STATE(7499), 1, - sym_operator_name, - STATE(9023), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5614), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5670), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(7189), 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(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [148090] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4919), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7633), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5364), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5362), 25, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [148141] = 4, + [98534] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5323), 5, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6832), 1, + anon_sym_SEMI, + STATE(3122), 1, + sym_attribute_specifier, + STATE(3619), 1, + sym_field_declaration_list, + STATE(6404), 1, + sym_virtual_specifier, + STATE(6880), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5312), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5321), 33, + ACTIONS(5314), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -507244,306 +378851,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [148190] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7638), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7636), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [148285] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7640), 1, - anon_sym_COMMA, - ACTIONS(7642), 1, - anon_sym_RBRACE, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8351), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [148382] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7575), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7579), 1, - anon_sym_LBRACK, - ACTIONS(7603), 1, - anon_sym_requires, - ACTIONS(7644), 1, - anon_sym___attribute__, - ACTIONS(7647), 1, - anon_sym_DASH_GT, - STATE(6574), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(7569), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7599), 2, - anon_sym_final, - anon_sym_override, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6610), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7564), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(7567), 16, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - anon_sym_noexcept, - anon_sym_throw, - [148453] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7650), 1, - anon_sym_COMMA, - ACTIONS(7652), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8415), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [148550] = 3, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [98608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 11, + ACTIONS(6085), 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(5048), 28, + anon_sym_DASH_GT, + ACTIONS(6083), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -507554,40 +378912,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [148597] = 3, + anon_sym_DASH_GT_STAR, + [98664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 11, + ACTIONS(5934), 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(5010), 28, + anon_sym_DASH_GT, + ACTIONS(5932), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -507598,87 +378965,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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [148644] = 24, + anon_sym_DASH_GT_STAR, + [98720] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7451), 1, - anon_sym_SLASH, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7461), 1, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, anon_sym_AMP, - ACTIONS(7467), 1, - anon_sym_GT_EQ, - ACTIONS(7475), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7477), 1, - anon_sym_bitor, - ACTIONS(7479), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, + ACTIONS(6679), 1, + anon_sym_LBRACK, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6834), 1, anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7449), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7453), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7455), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7459), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7463), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7465), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6434), 5, - anon_sym_DOT_DOT_DOT, + ACTIONS(6836), 1, + anon_sym_requires, + STATE(4441), 1, + sym__function_attributes_start, + STATE(4626), 1, + sym_ref_qualifier, + STATE(5529), 1, + sym__function_attributes_end, + STATE(5566), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6823), 2, + anon_sym_final, + anon_sym_override, + STATE(3894), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4341), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5622), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4935), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6665), 5, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [148733] = 6, + anon_sym_LBRACE, + ACTIONS(6792), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98822] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(6280), 1, anon_sym_LBRACE, - ACTIONS(7391), 1, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6839), 1, + anon_sym_SEMI, + STATE(3122), 1, + sym_attribute_specifier, + STATE(3619), 1, + sym_field_declaration_list, + STATE(6404), 1, + sym_virtual_specifier, + STATE(6880), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5312), 6, anon_sym_LPAREN2, - STATE(5427), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6009), 11, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5314), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [98896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5182), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -507689,10 +379118,19 @@ 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(6007), 24, + sym_identifier, + sym_literal_suffix, + ACTIONS(5184), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -507704,171 +379142,116 @@ 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_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, anon_sym_GT2, - [148786] = 28, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [98952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7654), 1, - anon_sym_COMMA, - ACTIONS(7660), 1, + ACTIONS(5174), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7666), 1, anon_sym_PIPE, - ACTIONS(7670), 1, anon_sym_AMP, - ACTIONS(7676), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(7680), 1, - anon_sym_RBRACK, - ACTIONS(7682), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7688), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8077), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5176), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7662), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [148883] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7575), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7579), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_requires, - ACTIONS(7644), 1, - anon_sym___attribute__, - ACTIONS(7690), 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(6574), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(7569), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7585), 2, - anon_sym_final, - anon_sym_override, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6377), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7564), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7567), 14, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_noexcept, - anon_sym_throw, - [148954] = 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, + [99008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5028), 11, + ACTIONS(5718), 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(5030), 28, + anon_sym_DASH_GT, + ACTIONS(5720), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -507879,109 +379262,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [149001] = 28, + anon_sym_DASH_GT_STAR, + [99064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7721), 1, - anon_sym_QMARK, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - ACTIONS(7731), 1, - anon_sym_GT2, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - STATE(8372), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, + ACTIONS(6065), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7699), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [149098] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5042), 11, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(5044), 28, + anon_sym_DASH_GT, + ACTIONS(6063), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -507992,240 +379315,105 @@ 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, - [149145] = 23, + anon_sym_DASH_GT_STAR, + [99120] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(4322), 1, - anon_sym_LPAREN2, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5808), 1, - anon_sym_STAR, - ACTIONS(5810), 1, - anon_sym_AMP_AMP, - ACTIONS(5812), 1, - anon_sym_AMP, - ACTIONS(5814), 1, + ACTIONS(4080), 1, anon_sym_COLON_COLON, - ACTIONS(5816), 1, - anon_sym_LBRACK, - STATE(4739), 1, - sym_parameter_list, - STATE(6518), 1, - sym__scope_resolution, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7117), 1, - sym__declarator, - STATE(7372), 1, - sym__abstract_declarator, - STATE(9528), 1, - sym_ms_based_modifier, - ACTIONS(7491), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [149232] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7451), 1, + ACTIONS(6841), 1, + anon_sym_LT, + STATE(2379), 1, + sym_template_argument_list, + ACTIONS(5324), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7457), 1, anon_sym_PIPE, - ACTIONS(7461), 1, anon_sym_AMP, - ACTIONS(7467), 1, - anon_sym_GT_EQ, - ACTIONS(7473), 1, - anon_sym_QMARK, - ACTIONS(7475), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7477), 1, - anon_sym_bitor, - ACTIONS(7479), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7449), 2, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4085), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7453), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7455), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7459), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7469), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6492), 3, - anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - ACTIONS(7463), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7465), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [149325] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7733), 1, - anon_sym_COMMA, - ACTIONS(7735), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8349), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [149422] = 3, + 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, + [99182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5024), 11, + ACTIONS(6069), 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), 28, + anon_sym_DASH_GT, + ACTIONS(6067), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -508236,54 +379424,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [149469] = 15, + anon_sym_DASH_GT_STAR, + [99238] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7579), 1, - anon_sym_LBRACK, - ACTIONS(7737), 1, - anon_sym___attribute__, - ACTIONS(7740), 1, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7744), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6679), 1, + anon_sym_LBRACK, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6834), 1, anon_sym_DASH_GT, - ACTIONS(7747), 1, + ACTIONS(6845), 1, anon_sym_requires, - STATE(6587), 1, + STATE(4451), 1, + sym__function_attributes_start, + STATE(4654), 1, + sym_ref_qualifier, + STATE(5539), 1, + sym__function_attributes_end, + STATE(5620), 1, sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(7569), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7585), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, + STATE(3894), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6413), 2, + aux_sym_type_definition_repeat1, + STATE(4341), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7564), 8, + aux_sym__function_postfix_repeat1, + STATE(5622), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4957), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6665), 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_try, - ACTIONS(7567), 14, - anon_sym_AMP_AMP, + ACTIONS(6792), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -508295,37 +379501,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_noexcept, - anon_sym_throw, - [149540] = 3, + [99340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5058), 11, + ACTIONS(6041), 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(5060), 28, + anon_sym_DASH_GT, + ACTIONS(6039), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -508336,40 +379553,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [149587] = 3, + anon_sym_DASH_GT_STAR, + [99396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 11, + ACTIONS(6077), 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(5014), 28, + anon_sym_DASH_GT, + ACTIONS(6075), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -508380,46 +379606,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [149634] = 6, + anon_sym_DASH_GT_STAR, + [99452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(7391), 1, - anon_sym_LPAREN2, - STATE(5453), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6001), 11, + ACTIONS(6101), 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(5999), 24, + anon_sym_DASH_GT, + ACTIONS(6099), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -508430,304 +379659,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, - anon_sym_GT2, - [149687] = 24, + anon_sym_DASH_GT_STAR, + [99508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7451), 1, - anon_sym_SLASH, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7461), 1, - anon_sym_AMP, - ACTIONS(7467), 1, - anon_sym_GT_EQ, - ACTIONS(7475), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7477), 1, - anon_sym_bitor, - ACTIONS(7479), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, + ACTIONS(5890), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7449), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7453), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7455), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7459), 2, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7463), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7465), 3, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6496), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [149776] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7443), 1, + anon_sym_DASH_GT, + ACTIONS(5888), 32, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7750), 1, anon_sym_COMMA, - ACTIONS(7753), 1, - anon_sym_SEMI, - ACTIONS(7755), 1, - anon_sym_RBRACE, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [149873] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(4322), 1, - anon_sym_LPAREN2, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(5816), 1, - anon_sym_LBRACK, - ACTIONS(5822), 1, - anon_sym_STAR, - ACTIONS(5824), 1, - anon_sym_AMP_AMP, - ACTIONS(5826), 1, - anon_sym_AMP, - STATE(4706), 1, - sym_parameter_list, - STATE(6518), 1, - sym__scope_resolution, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7117), 1, - sym__declarator, - STATE(7404), 1, - sym__abstract_declarator, - STATE(9528), 1, - sym_ms_based_modifier, - ACTIONS(7491), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [149960] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7733), 1, - anon_sym_COMMA, - ACTIONS(7757), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8207), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [150057] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [99564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2194), 11, + ACTIONS(5880), 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(2192), 28, + anon_sym_DASH_GT, + ACTIONS(5878), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -508738,237 +379765,208 @@ 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, - [150104] = 18, + anon_sym_DASH_GT_STAR, + [99620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(7623), 1, - sym_identifier, - ACTIONS(7625), 1, - anon_sym_LPAREN2, - ACTIONS(7627), 1, + ACTIONS(6097), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(7629), 1, - anon_sym_AMP_AMP, - ACTIONS(7631), 1, - anon_sym_AMP, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7340), 1, - sym__field_declarator, - STATE(7499), 1, - sym_operator_name, - STATE(9023), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4918), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5678), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(7189), 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(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [150181] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7529), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7535), 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(6095), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_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(7537), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7759), 1, - anon_sym_COMMA, - ACTIONS(7761), 1, - anon_sym_RBRACE, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8133), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [99676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [150278] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7443), 1, + anon_sym_DASH_GT, + ACTIONS(2828), 32, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, + anon_sym_COMMA, + anon_sym_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(7537), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7733), 1, - anon_sym_COMMA, - ACTIONS(7763), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8153), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [99732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7517), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6091), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [150375] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [99788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 11, + ACTIONS(5872), 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(2196), 28, + anon_sym_DASH_GT, + ACTIONS(5870), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -508979,59 +379977,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [150422] = 18, + anon_sym_DASH_GT_STAR, + [99844] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(7623), 1, - sym_identifier, - ACTIONS(7625), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6847), 1, + anon_sym_SEMI, + STATE(3122), 1, + sym_attribute_specifier, + STATE(3619), 1, + sym_field_declaration_list, + STATE(6404), 1, + sym_virtual_specifier, + STATE(6880), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5312), 6, anon_sym_LPAREN2, - ACTIONS(7627), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(7629), 1, anon_sym_AMP_AMP, - ACTIONS(7631), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5314), 32, anon_sym_AMP, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7340), 1, - sym__field_declarator, - STATE(7499), 1, - sym_operator_name, - STATE(9023), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5614), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5678), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(7189), 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(3490), 12, anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -509043,188 +380033,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [150499] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7721), 1, - anon_sym_QMARK, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - ACTIONS(7765), 1, - anon_sym_GT2, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - STATE(8198), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [150596] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7650), 1, - anon_sym_COMMA, - ACTIONS(7767), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8047), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [150693] = 15, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [99918] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7579), 1, - anon_sym_LBRACK, - ACTIONS(7737), 1, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7740), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7744), 1, - anon_sym_DASH_GT, - ACTIONS(7769), 1, - anon_sym_requires, - STATE(6587), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(7569), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7599), 2, - anon_sym_final, - anon_sym_override, - STATE(5422), 2, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6849), 1, + anon_sym_SEMI, + STATE(3122), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6413), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, + STATE(3619), 1, + sym_field_declaration_list, + STATE(6404), 1, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7564), 8, - anon_sym_COMMA, + STATE(6880), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5312), 6, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - ACTIONS(7567), 14, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5314), 32, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -509235,37 +380095,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_noexcept, - anon_sym_throw, - [150764] = 3, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [99992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 11, + ACTIONS(6105), 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(5064), 28, + anon_sym_DASH_GT, + ACTIONS(6103), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -509276,107 +380154,155 @@ 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, - [150811] = 26, + anon_sym_DASH_GT_STAR, + [100048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7451), 1, + ACTIONS(6049), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7457), 1, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7461), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7467), 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(6047), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(7473), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7475), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7477), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7479), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [100104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2134), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7449), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7453), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7455), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7459), 2, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7469), 2, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6476), 3, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2132), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(7463), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + 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(7465), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [150904] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [100160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 11, + ACTIONS(4739), 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(5056), 28, + anon_sym_DASH_GT, + ACTIONS(4741), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -509387,174 +380313,155 @@ 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, - [150951] = 24, + anon_sym_DASH_GT_STAR, + [100216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7451), 1, - anon_sym_SLASH, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7461), 1, - anon_sym_AMP, - ACTIONS(7467), 1, - anon_sym_GT_EQ, - ACTIONS(7475), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7477), 1, - anon_sym_bitor, - ACTIONS(7479), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, + ACTIONS(2138), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7449), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7453), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7455), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7459), 2, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7463), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7465), 3, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6400), 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2136), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [151040] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(7537), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7733), 1, - anon_sym_COMMA, - ACTIONS(7773), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8389), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [100272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6073), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7517), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6071), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [151137] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [100328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 11, + ACTIONS(5803), 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(5068), 28, + anon_sym_DASH_GT, + ACTIONS(5805), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -509565,178 +380472,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [100384] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6679), 1, + anon_sym_LBRACK, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6794), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6808), 1, anon_sym_DASH_GT, + ACTIONS(6851), 1, + anon_sym_requires, + STATE(4444), 1, + sym__function_attributes_start, + STATE(4622), 1, + sym_ref_qualifier, + STATE(5460), 1, + sym__function_attributes_end, + STATE(5575), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [151184] = 28, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(3894), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4341), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5353), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4949), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6665), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + ACTIONS(6792), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [100486] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7775), 1, - anon_sym_COMMA, - ACTIONS(7777), 1, - anon_sym_RBRACE, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8156), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, + ACTIONS(6679), 1, + anon_sym_LBRACK, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6821), 1, anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(6853), 1, + anon_sym_requires, + STATE(4447), 1, + sym__function_attributes_start, + STATE(4623), 1, + sym_ref_qualifier, + STATE(5545), 1, + sym__function_attributes_end, + STATE(5702), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(3894), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4341), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5622), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4926), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6665), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6792), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [100588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5954), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [151281] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7443), 1, + anon_sym_DASH_GT, + ACTIONS(5952), 32, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(7779), 1, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8285), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [151378] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [100644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 11, + ACTIONS(5962), 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(5056), 28, + anon_sym_DASH_GT, + ACTIONS(5960), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -509747,40 +380730,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [151425] = 3, + anon_sym_DASH_GT_STAR, + [100700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 11, + ACTIONS(5997), 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(5056), 28, + anon_sym_DASH_GT, + ACTIONS(5995), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -509791,211 +380783,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [151472] = 28, + anon_sym_DASH_GT_STAR, + [100756] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7721), 1, - anon_sym_QMARK, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - ACTIONS(7781), 1, - anon_sym_GT2, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - STATE(8036), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, + ACTIONS(6855), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7705), 2, + ACTIONS(6857), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7709), 2, + ACTIONS(5396), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [151569] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7431), 1, - sym_auto, - ACTIONS(7433), 1, - anon_sym_decltype, - ACTIONS(7783), 1, - anon_sym_STAR, - ACTIONS(7785), 1, - anon_sym_AMP_AMP, - ACTIONS(7787), 1, - anon_sym_AMP, - STATE(4623), 1, - sym_parameter_list, - STATE(5645), 1, - sym_decltype_auto, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6952), 1, - sym__abstract_declarator, - STATE(5421), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7497), 9, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [151644] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + anon_sym_DASH_GT, + ACTIONS(5398), 28, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(7537), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7650), 1, - anon_sym_COMMA, - ACTIONS(7789), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8429), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [100816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5753), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7517), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5755), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [151741] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [100872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 11, + ACTIONS(5188), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -510006,8 +380906,16 @@ 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(5040), 28, + sym_identifier, + sym_literal_suffix, + ACTIONS(5190), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -510022,55 +380930,63 @@ 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_final, - anon_sym_override, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, anon_sym_GT2, - anon_sym_requires, - [151788] = 6, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [100928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(7391), 1, - anon_sym_LPAREN2, - STATE(5443), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6057), 11, + ACTIONS(4755), 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(6055), 24, + anon_sym_DASH_GT, + ACTIONS(4757), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -510081,244 +380997,155 @@ 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, - [151841] = 28, + anon_sym_DASH_GT_STAR, + [100984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(5152), 17, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7733), 1, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5154), 31, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(7791), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8369), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [151938] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7733), 1, - anon_sym_COMMA, - ACTIONS(7793), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8110), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 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, + [101040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5799), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [152035] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7693), 1, + anon_sym_DASH_GT, + ACTIONS(5801), 32, anon_sym_DOT_DOT_DOT, - ACTIONS(7695), 1, anon_sym_COMMA, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7721), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7723), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - ACTIONS(7795), 1, - anon_sym_GT2, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - STATE(8362), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7729), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [152132] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [101096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 11, + ACTIONS(4715), 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(5036), 28, + anon_sym_DASH_GT, + ACTIONS(4717), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -510329,411 +381156,189 @@ 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, - [152179] = 28, + anon_sym_DASH_GT_STAR, + [101152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(5926), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7529), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7535), 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(5924), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_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(7537), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7733), 1, - anon_sym_COMMA, - ACTIONS(7797), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8354), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [101208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4711), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [152276] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7575), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7579), 1, - anon_sym_LBRACK, - ACTIONS(7603), 1, - anon_sym_requires, - ACTIONS(7644), 1, - anon_sym___attribute__, - ACTIONS(7690), 1, - anon_sym_DASH_GT, - STATE(6574), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(7569), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7599), 2, - anon_sym_final, - anon_sym_override, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6377), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7564), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7567), 14, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_noexcept, - anon_sym_throw, - [152347] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + anon_sym_DASH_GT, + ACTIONS(4713), 32, anon_sym_DOT_DOT_DOT, - ACTIONS(7654), 1, anon_sym_COMMA, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, + anon_sym_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(7682), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7684), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7688), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7799), 1, - anon_sym_RBRACK, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8426), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [101264] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6857), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5374), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7658), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [152444] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(7625), 1, - anon_sym_LPAREN2, - ACTIONS(7801), 1, - sym_identifier, - ACTIONS(7803), 1, - anon_sym_STAR, - ACTIONS(7805), 1, - anon_sym_AMP_AMP, - ACTIONS(7807), 1, - anon_sym_AMP, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6866), 1, - sym__field_declarator, - STATE(7100), 1, - sym_operator_name, - STATE(9157), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4983), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5675), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(7189), 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(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [152521] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7693), 1, + anon_sym_DASH_GT, + ACTIONS(5376), 30, anon_sym_DOT_DOT_DOT, - ACTIONS(7695), 1, anon_sym_COMMA, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7721), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7723), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - ACTIONS(7809), 1, - anon_sym_GT2, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - STATE(8412), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7729), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [152618] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(7625), 1, - anon_sym_LPAREN2, - ACTIONS(7801), 1, - sym_identifier, - ACTIONS(7803), 1, - anon_sym_STAR, - ACTIONS(7805), 1, - anon_sym_AMP_AMP, - ACTIONS(7807), 1, - anon_sym_AMP, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6903), 1, - sym__field_declarator, - STATE(7100), 1, - sym_operator_name, - STATE(9157), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5013), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5660), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(7189), 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(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [152695] = 4, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [101322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7813), 1, - anon_sym_LPAREN2, - ACTIONS(7815), 5, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(5154), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(7811), 33, - anon_sym_AMP, + anon_sym_LBRACE, + ACTIONS(5152), 45, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -510753,587 +381358,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, + sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, - anon_sym_explicit, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - [152744] = 28, + [101378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7721), 1, - anon_sym_QMARK, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - ACTIONS(7817), 1, - anon_sym_GT2, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - STATE(8272), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, + ACTIONS(6061), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7699), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [152841] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(7623), 1, - sym_identifier, - ACTIONS(7625), 1, - anon_sym_LPAREN2, - ACTIONS(7627), 1, - anon_sym_STAR, - ACTIONS(7629), 1, - anon_sym_AMP_AMP, - ACTIONS(7631), 1, - anon_sym_AMP, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7345), 1, - sym__field_declarator, - STATE(7499), 1, - sym_operator_name, - STATE(9023), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4951), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5673), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(7189), 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(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [152918] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(7625), 1, - anon_sym_LPAREN2, - ACTIONS(7801), 1, - sym_identifier, - ACTIONS(7803), 1, - anon_sym_STAR, - ACTIONS(7805), 1, - anon_sym_AMP_AMP, - ACTIONS(7807), 1, - anon_sym_AMP, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6903), 1, - sym__field_declarator, - STATE(7100), 1, - sym_operator_name, - STATE(9157), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5614), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5660), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(7189), 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(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [152995] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7443), 1, + anon_sym_DASH_GT, + ACTIONS(6059), 32, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7819), 1, anon_sym_COMMA, - ACTIONS(7821), 1, - anon_sym_RBRACE, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8392), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [153092] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7650), 1, - anon_sym_COMMA, - ACTIONS(7823), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8235), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [101434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5182), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 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_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [153189] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + sym_literal_suffix, + ACTIONS(5184), 31, anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7682), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - ACTIONS(7825), 1, anon_sym_COMMA, - ACTIONS(7827), 1, - anon_sym_RBRACK, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8342), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7662), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [153286] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, anon_sym_GT_EQ, - ACTIONS(7682), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - ACTIONS(7825), 1, - anon_sym_COMMA, - ACTIONS(7829), 1, - anon_sym_RBRACK, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8018), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7656), 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, + [101490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5174), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 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_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [153383] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + sym_literal_suffix, + ACTIONS(5176), 31, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(7831), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8181), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [153480] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7575), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7579), 1, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_requires, - ACTIONS(7644), 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_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [101546] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7647), 1, - anon_sym_DASH_GT, - STATE(6574), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(7569), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7585), 2, - anon_sym_final, - anon_sym_override, - STATE(5488), 2, + ACTIONS(6781), 1, + anon_sym_LBRACE, + STATE(3084), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6610), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7564), 6, + STATE(3624), 1, + sym_enumerator_list, + ACTIONS(5432), 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_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(7567), 16, - anon_sym_AMP_AMP, + anon_sym_GT2, + ACTIONS(5434), 32, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -511344,246 +381579,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - anon_sym_noexcept, - anon_sym_throw, - [153551] = 28, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [101610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7595), 1, - anon_sym_RBRACE, - ACTIONS(7833), 1, - anon_sym_COMMA, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8166), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(5958), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [153648] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, anon_sym_LT_LT, - ACTIONS(7719), 1, anon_sym_GT_GT, - ACTIONS(7721), 1, - anon_sym_QMARK, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - ACTIONS(7835), 1, - anon_sym_GT2, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - STATE(8024), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, + anon_sym_EQ, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, + ACTIONS(5956), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [153745] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7733), 1, - anon_sym_COMMA, - ACTIONS(7837), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8151), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [153842] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [101666] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7839), 1, - sym_identifier, - ACTIONS(7843), 1, - sym_primitive_type, - STATE(4919), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7841), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5351), 9, - anon_sym_COMMA, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6859), 1, + anon_sym_SEMI, + STATE(3122), 1, + sym_attribute_specifier, + STATE(3619), 1, + sym_field_declaration_list, + STATE(6404), 1, + sym_virtual_specifier, + STATE(6880), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5312), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5353), 23, + ACTIONS(5314), 32, anon_sym_AMP, anon_sym___extension__, - anon_sym___attribute__, + 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, @@ -511595,131 +381694,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [153897] = 28, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [101740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(7701), 1, + ACTIONS(6001), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7707), 1, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7711), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7717), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, - ACTIONS(7719), 1, anon_sym_GT_GT, - ACTIONS(7721), 1, - anon_sym_QMARK, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - ACTIONS(7845), 1, - anon_sym_GT2, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - STATE(8219), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, + anon_sym_EQ, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, + ACTIONS(5999), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [153994] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7451), 1, - anon_sym_SLASH, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + 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(7447), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [101796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4735), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7449), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6196), 5, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4737), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_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, @@ -511727,35 +381803,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [154063] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [101852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 11, + ACTIONS(4743), 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(5052), 28, + anon_sym_DASH_GT, + ACTIONS(4745), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -511766,127 +381859,155 @@ 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, - [154110] = 28, + anon_sym_DASH_GT_STAR, + [101908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(6005), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7529), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7535), 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(6003), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_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(7537), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7733), 1, - anon_sym_COMMA, - ACTIONS(7847), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8014), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [101964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6021), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7517), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6019), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [154207] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + anon_sym_GT_EQ, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7451), 1, - anon_sym_SLASH, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + 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(7447), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [102020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6013), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7449), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6196), 5, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6011), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_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, @@ -511894,690 +382015,1109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [154274] = 28, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [102076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(5188), 17, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7733), 1, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5190), 31, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(7849), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8409), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [154371] = 27, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [102132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(5857), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7529), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7535), 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(5855), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_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(7537), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [102188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5853), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7517), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5851), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7753), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [154466] = 28, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [102244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(7701), 1, + ACTIONS(6045), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7707), 1, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7711), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7717), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, - ACTIONS(7719), 1, anon_sym_GT_GT, - ACTIONS(7721), 1, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6043), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7723), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7727), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7851), 1, - anon_sym_GT2, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - STATE(8175), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(6707), 2, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, + anon_sym_DASH_GT_STAR, + [102300] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5930), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7699), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [154563] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5928), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6127), 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(6129), 1, - anon_sym_DOT, - ACTIONS(7451), 1, - anon_sym_SLASH, - ACTIONS(7475), 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, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 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(7447), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [102356] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5922), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7449), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6196), 5, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5920), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_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, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [154634] = 28, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [102412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(5188), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7733), 1, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5190), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(7853), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8386), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, + 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, + [102467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5152), 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, - [154731] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, + 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(5154), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6127), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7451), 1, - anon_sym_SLASH, - ACTIONS(7475), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7447), 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_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [102522] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6679), 1, + anon_sym_LBRACK, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6861), 1, + anon_sym_DASH_GT, + ACTIONS(6863), 1, + anon_sym_requires, + STATE(4531), 1, + sym__function_attributes_start, + STATE(4687), 1, + sym_ref_qualifier, + STATE(5609), 1, + sym__function_attributes_end, + STATE(5840), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(3894), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4341), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5622), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4972), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6665), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(6792), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [102623] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(6865), 1, + anon_sym_LPAREN2, + STATE(2634), 1, + sym_argument_list, + STATE(3882), 1, + sym_initializer_list, + ACTIONS(4957), 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4955), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [102686] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5341), 1, + anon_sym___attribute__, + ACTIONS(5436), 1, + anon_sym_LBRACE, + ACTIONS(6868), 1, + anon_sym_COLON, + STATE(1981), 1, + sym_attribute_specifier, + STATE(2347), 1, + sym__enum_base_clause, + STATE(2384), 1, + sym_enumerator_list, + ACTIONS(5465), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7449), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6378), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6376), 17, + anon_sym_DOT, + ACTIONS(5463), 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_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, - [154802] = 17, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [102753] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7451), 1, + ACTIONS(5341), 1, + anon_sym___attribute__, + ACTIONS(5436), 1, + anon_sym_LBRACE, + ACTIONS(6868), 1, + anon_sym_COLON, + STATE(1953), 1, + sym_attribute_specifier, + STATE(2340), 1, + sym__enum_base_clause, + STATE(2371), 1, + sym_enumerator_list, + ACTIONS(5451), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7467), 1, - anon_sym_GT_EQ, - ACTIONS(7475), 1, - anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6196), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7449), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7465), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 16, + anon_sym_DOT, + ACTIONS(5449), 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_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, - [154877] = 18, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [102820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7451), 1, + ACTIONS(5174), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7467), 1, - anon_sym_GT_EQ, - ACTIONS(7475), 1, - anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6196), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7449), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7463), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7465), 3, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - [154954] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7443), 1, + sym_literal_suffix, + ACTIONS(5176), 29, anon_sym_DOT_DOT_DOT, - ACTIONS(7451), 1, - anon_sym_SLASH, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7461), 1, - anon_sym_AMP, - ACTIONS(7467), 1, - anon_sym_GT_EQ, - ACTIONS(7473), 1, - anon_sym_QMARK, - ACTIONS(7475), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7477), 1, - anon_sym_bitor, - ACTIONS(7479), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7449), 2, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7453), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7455), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7459), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7463), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7465), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7855), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [155047] = 24, + 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, + [102875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7451), 1, + ACTIONS(5182), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7457), 1, anon_sym_PIPE, - ACTIONS(7461), 1, anon_sym_AMP, - ACTIONS(7467), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(7475), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7477), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7479), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7449), 2, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5184), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7453), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7455), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7459), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7463), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7465), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6368), 5, + 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, + [102930] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6679), 1, + anon_sym_LBRACK, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6861), 1, + anon_sym_DASH_GT, + ACTIONS(6870), 1, + anon_sym_requires, + STATE(4530), 1, + sym__function_attributes_start, + STATE(4732), 1, + sym_ref_qualifier, + STATE(5621), 1, + sym__function_attributes_end, + STATE(5799), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6823), 2, + anon_sym_final, + anon_sym_override, + STATE(3894), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4341), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5622), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4968), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6665), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [155136] = 17, + anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(6792), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [103031] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7206), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6781), 1, + anon_sym_LBRACE, + STATE(3118), 1, + sym_attribute_specifier, + STATE(3618), 1, + sym_enumerator_list, + ACTIONS(5443), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, - ACTIONS(7421), 1, + ACTIONS(5441), 39, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7429), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [103094] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6781), 1, + anon_sym_LBRACE, + STATE(3084), 1, + sym_attribute_specifier, + STATE(3639), 1, + sym_enumerator_list, + ACTIONS(5434), 4, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(7431), 1, + anon_sym___inline, + anon_sym_const, + ACTIONS(5432), 39, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_auto, - ACTIONS(7433), 1, anon_sym_decltype, - ACTIONS(7783), 1, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [103157] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + STATE(3513), 1, + sym_template_argument_list, + ACTIONS(4564), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(7785), 1, anon_sym_AMP_AMP, - ACTIONS(7787), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(4559), 36, anon_sym_AMP, - STATE(4623), 1, - sym_parameter_list, - STATE(5645), 1, - sym_decltype_auto, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6940), 1, - sym__abstract_declarator, - STATE(5418), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7419), 9, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [103217] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, + anon_sym___attribute__, + STATE(3093), 1, + sym_attribute_specifier, + ACTIONS(5504), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5502), 40, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - ACTIONS(7198), 11, + [103275] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, + anon_sym___attribute__, + STATE(3116), 1, + sym_attribute_specifier, + ACTIONS(5528), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5526), 40, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -512588,117 +383128,579 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [155211] = 28, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [103333] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + STATE(3093), 1, + sym_attribute_specifier, + ACTIONS(5502), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6127), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5504), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [103391] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, + anon_sym___attribute__, + STATE(3085), 1, + sym_attribute_specifier, + ACTIONS(5498), 4, anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7682), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - ACTIONS(7825), 1, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5496), 40, anon_sym_COMMA, - ACTIONS(7857), 1, - anon_sym_RBRACK, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8342), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [155308] = 15, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [103449] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7579), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + STATE(3049), 1, + sym_attribute_specifier, + ACTIONS(5506), 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(5508), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(7737), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [103507] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7740), 1, + STATE(3049), 1, + sym_attribute_specifier, + ACTIONS(5508), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5506), 40, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, anon_sym_LBRACK_LBRACK, - ACTIONS(7769), 1, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(7859), 1, - anon_sym_DASH_GT, - STATE(6587), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(7569), 2, + [103565] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4798), 1, + anon_sym___attribute__, + STATE(3056), 1, + sym_attribute_specifier, + ACTIONS(5522), 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(5524), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [103623] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, + anon_sym___attribute__, + STATE(3056), 1, + sym_attribute_specifier, + ACTIONS(5524), 4, anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, - ACTIONS(7599), 2, + ACTIONS(5522), 40, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(5422), 2, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [103681] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4798), 1, + anon_sym___attribute__, + STATE(3097), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6572), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7564), 6, + ACTIONS(5538), 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(5540), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [103739] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4798), 1, + anon_sym___attribute__, + STATE(3132), 1, + sym_attribute_specifier, + ACTIONS(5477), 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(5479), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [103797] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, + anon_sym___attribute__, + STATE(3069), 1, + sym_attribute_specifier, + ACTIONS(5483), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5481), 40, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [103855] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4798), 1, + anon_sym___attribute__, + STATE(3031), 1, + sym_attribute_specifier, + ACTIONS(5471), 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(7567), 16, + ACTIONS(5473), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [103913] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, + anon_sym___attribute__, + STATE(3120), 1, + sym_attribute_specifier, + ACTIONS(5487), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5485), 40, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -512711,124 +383713,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_asm, anon_sym___asm__, - anon_sym_noexcept, - anon_sym_throw, - [155379] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7721), 1, - anon_sym_QMARK, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - ACTIONS(7862), 1, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, anon_sym_GT2, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - STATE(8130), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [155476] = 18, + anon_sym_try, + anon_sym_requires, + [103971] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(7625), 1, - anon_sym_LPAREN2, - ACTIONS(7801), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, sym_identifier, - ACTIONS(7803), 1, - anon_sym_STAR, - ACTIONS(7805), 1, - anon_sym_AMP_AMP, - ACTIONS(7807), 1, - anon_sym_AMP, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6862), 1, - sym__field_declarator, - STATE(7100), 1, - sym_operator_name, - STATE(9157), 1, - sym_ms_based_modifier, - ACTIONS(3494), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5614), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5674), 2, + ACTIONS(6875), 1, + anon_sym_RPAREN, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(6643), 1, + sym_type_descriptor, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3492), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(7189), 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(3490), 12, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -512841,373 +383795,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [155553] = 20, + [104069] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(6881), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(6883), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6196), 1, - anon_sym_PIPE, - ACTIONS(7451), 1, - anon_sym_SLASH, - ACTIONS(7461), 1, - anon_sym_AMP, - ACTIONS(7467), 1, - anon_sym_GT_EQ, - ACTIONS(7475), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7479), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(6885), 1, + sym_auto, + ACTIONS(6887), 1, + anon_sym_decltype, + STATE(1931), 1, + sym_decltype_auto, + STATE(3813), 1, + sym_new_declarator, + STATE(3886), 2, sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, + sym_initializer_list, + ACTIONS(5388), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7449), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7463), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7465), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 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, - [155634] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6196), 1, - anon_sym_PIPE, - ACTIONS(7451), 1, anon_sym_SLASH, - ACTIONS(7461), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7467), 1, - anon_sym_GT_EQ, - ACTIONS(7475), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7479), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7449), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7459), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7463), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7465), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - [155717] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(5386), 28, anon_sym_DOT_DOT_DOT, - ACTIONS(7654), 1, anon_sym_COMMA, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7682), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - ACTIONS(7864), 1, - anon_sym_RBRACK, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8169), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7662), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [155814] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7451), 1, - anon_sym_SLASH, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7461), 1, - anon_sym_AMP, - ACTIONS(7467), 1, anon_sym_GT_EQ, - ACTIONS(7475), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7477), 1, - anon_sym_bitor, - ACTIONS(7479), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7449), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7459), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7463), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7465), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 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_RBRACE, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - [155899] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7451), 1, - anon_sym_SLASH, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7461), 1, - anon_sym_AMP, - ACTIONS(7467), 1, - anon_sym_GT_EQ, - ACTIONS(7475), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7477), 1, anon_sym_bitor, - ACTIONS(7479), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7449), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7455), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7459), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7463), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7465), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 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, - [155986] = 17, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [104139] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + STATE(3083), 1, + sym_attribute_specifier, + ACTIONS(5494), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, - ACTIONS(7399), 1, - sym_auto, - ACTIONS(7401), 1, - anon_sym_decltype, - ACTIONS(7421), 1, + ACTIONS(5492), 40, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7866), 1, anon_sym_STAR, - ACTIONS(7868), 1, anon_sym_AMP_AMP, - ACTIONS(7870), 1, - anon_sym_AMP, - STATE(3891), 1, - sym_decltype_auto, - STATE(4638), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6922), 1, - sym__abstract_declarator, - STATE(5459), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7419), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(7245), 11, - anon_sym___extension__, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -513218,462 +383896,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [156061] = 28, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [104197] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7721), 1, - anon_sym_QMARK, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - ACTIONS(7872), 1, - anon_sym_GT2, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - STATE(8126), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(6841), 1, + anon_sym_LT, + STATE(2379), 1, + sym_template_argument_list, + ACTIONS(4059), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [156158] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(7701), 1, anon_sym_SLASH, - ACTIONS(7707), 1, anon_sym_PIPE, - ACTIONS(7711), 1, anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7721), 1, - anon_sym_QMARK, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - ACTIONS(7874), 1, - anon_sym_GT2, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - STATE(8102), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [156255] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(4067), 34, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(7876), 1, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8213), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [156352] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7878), 1, - anon_sym_COMMA, - ACTIONS(7880), 1, - anon_sym_RBRACE, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8212), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [156449] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7650), 1, - anon_sym_COMMA, - ACTIONS(7882), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8257), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [156546] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7721), 1, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(7723), 1, anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - ACTIONS(7884), 1, - anon_sym_GT2, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - STATE(8011), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7729), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [156643] = 15, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [104257] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7579), 1, - anon_sym_LBRACK, - ACTIONS(7737), 1, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7740), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7747), 1, - anon_sym_requires, - ACTIONS(7859), 1, - anon_sym_DASH_GT, - STATE(6587), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(7569), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7585), 2, - anon_sym_final, - anon_sym_override, - STATE(5422), 2, + STATE(3083), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6572), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7564), 6, + ACTIONS(5492), 12, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACE, + 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(7567), 16, - anon_sym_AMP_AMP, + ACTIONS(5494), 32, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -513684,58 +384007,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - anon_sym_noexcept, - anon_sym_throw, - [156714] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7399), 1, + sym_identifier, sym_auto, - ACTIONS(7401), 1, anon_sym_decltype, - ACTIONS(7421), 1, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [104315] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(6705), 1, + anon_sym_LT, + STATE(3513), 1, + sym_template_argument_list, + ACTIONS(4067), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7866), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(7868), 1, anon_sym_AMP_AMP, - ACTIONS(7870), 1, - anon_sym_AMP, - STATE(3891), 1, - sym_decltype_auto, - STATE(4638), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6926), 1, - sym__abstract_declarator, - STATE(5456), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7497), 9, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - ACTIONS(7245), 11, + ACTIONS(4059), 33, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -513746,384 +384061,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [156789] = 28, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [104375] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7721), 1, - anon_sym_QMARK, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - ACTIONS(7886), 1, - anon_sym_GT2, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - STATE(8185), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + STATE(1726), 1, + sym_template_argument_list, + ACTIONS(5532), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [156886] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7451), 1, anon_sym_SLASH, - ACTIONS(7457), 1, anon_sym_PIPE, - ACTIONS(7461), 1, anon_sym_AMP, - ACTIONS(7467), 1, - anon_sym_GT_EQ, - ACTIONS(7473), 1, - anon_sym_QMARK, - ACTIONS(7475), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7477), 1, - anon_sym_bitor, - ACTIONS(7479), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7449), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7453), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7455), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7459), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7469), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6254), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(7463), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7465), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [156979] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(5530), 34, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7650), 1, anon_sym_COMMA, - ACTIONS(7888), 1, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - STATE(8417), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [157076] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7721), 1, - anon_sym_QMARK, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - ACTIONS(7890), 1, - anon_sym_GT2, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - STATE(8070), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [157173] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7721), 1, - anon_sym_QMARK, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - ACTIONS(7892), 1, - anon_sym_GT2, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - STATE(8058), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [157270] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7451), 1, - anon_sym_SLASH, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6196), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -514134,6 +384103,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -514142,235 +384115,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [157335] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [104433] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + STATE(2994), 1, + sym_attribute_specifier, + ACTIONS(5534), 12, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, anon_sym_COMMA, - ACTIONS(7894), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [157429] = 9, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5536), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [104491] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6177), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6663), 1, + anon_sym___attribute__, + STATE(3031), 1, + sym_attribute_specifier, + ACTIONS(5473), 4, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6175), 21, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5471), 40, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, anon_sym_GT2, - [157487] = 27, + anon_sym_try, + anon_sym_requires, + [104549] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + STATE(3085), 1, + sym_attribute_specifier, + ACTIONS(5496), 12, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, anon_sym_COMMA, - ACTIONS(7896), 1, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [157581] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5498), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, anon_sym___based, - ACTIONS(7898), 1, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, - ACTIONS(7900), 1, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [104607] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4798), 1, + anon_sym___attribute__, + STATE(3120), 1, + sym_attribute_specifier, + ACTIONS(5485), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7902), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(7910), 1, - sym_primitive_type, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7405), 1, - sym__type_declarator, - STATE(9186), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5718), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5836), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5487), 32, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -514382,150 +384326,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [157655] = 27, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [104665] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + STATE(3132), 1, + sym_attribute_specifier, + ACTIONS(5479), 4, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5477), 40, anon_sym_COMMA, - ACTIONS(7912), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [157749] = 27, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [104723] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + STATE(2994), 1, + sym_attribute_specifier, + ACTIONS(5536), 4, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5534), 40, anon_sym_COMMA, - ACTIONS(7914), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [157843] = 6, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [104781] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5248), 1, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(6881), 1, anon_sym_LPAREN2, - ACTIONS(5254), 1, + ACTIONS(6883), 1, anon_sym_LBRACK, - ACTIONS(4286), 9, + ACTIONS(6885), 1, + sym_auto, + ACTIONS(6887), 1, + anon_sym_decltype, + STATE(1931), 1, + sym_decltype_auto, + STATE(3833), 1, + sym_new_declarator, + STATE(3858), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5384), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -514535,9 +384469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(4278), 26, + ACTIONS(5382), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -514549,6 +384484,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -514562,118 +384498,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [157895] = 26, + [104851] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7916), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, anon_sym_LT, - [157987] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7918), 1, - sym_identifier, - ACTIONS(7920), 1, + STATE(3513), 1, + sym_template_argument_list, + ACTIONS(4085), 7, anon_sym_LPAREN2, - ACTIONS(7922), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(7926), 1, - sym_primitive_type, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6959), 1, - sym__type_declarator, - STATE(6990), 1, - sym_pointer_type_declarator, - STATE(9493), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5785), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5836), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7924), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6987), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(5324), 36, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -514685,53 +384542,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [158061] = 17, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [104911] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7918), 1, - sym_identifier, - ACTIONS(7920), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + STATE(3097), 1, + sym_attribute_specifier, + ACTIONS(5540), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5538), 40, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7922), 1, anon_sym_STAR, - ACTIONS(7926), 1, - sym_primitive_type, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6959), 1, - sym__type_declarator, - STATE(6990), 1, - sym_pointer_type_declarator, - STATE(9493), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5046), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5785), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7924), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6987), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -514742,185 +384594,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [158135] = 27, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [104969] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(2208), 1, + anon_sym_LBRACE, + ACTIONS(6889), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, + STATE(3207), 1, + sym_argument_list, + STATE(3551), 1, + sym_initializer_list, + ACTIONS(4957), 9, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, anon_sym_COMMA, - ACTIONS(7928), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_RPAREN, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [158229] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4955), 33, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7755), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [158321] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7918), 1, - sym_identifier, - ACTIONS(7920), 1, - anon_sym_LPAREN2, - ACTIONS(7922), 1, - anon_sym_STAR, - ACTIONS(7926), 1, - sym_primitive_type, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6962), 1, - sym__type_declarator, - STATE(6990), 1, - sym_pointer_type_declarator, - STATE(9493), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5792), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5836), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7924), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6987), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -514932,211 +384653,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [158395] = 27, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [105031] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(6881), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(6883), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(7930), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(6885), 1, + sym_auto, + ACTIONS(6887), 1, + anon_sym_decltype, + STATE(1931), 1, + sym_decltype_auto, + STATE(3831), 1, + sym_new_declarator, + STATE(3873), 2, sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + sym_initializer_list, + ACTIONS(5366), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [158489] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(5362), 28, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, anon_sym_COMMA, - ACTIONS(7932), 1, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [158583] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(7934), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [158677] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [105101] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6456), 17, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + ACTIONS(6883), 1, + anon_sym_LBRACK, + ACTIONS(6885), 1, + sym_auto, + ACTIONS(6887), 1, + anon_sym_decltype, + STATE(1931), 1, + sym_decltype_auto, + STATE(3832), 1, + sym_new_declarator, + STATE(3846), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5406), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -515145,19 +384748,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(6454), 21, + ACTIONS(5404), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -515169,245 +384764,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACK, + 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, - [158723] = 27, + [105171] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + STATE(3069), 1, + sym_attribute_specifier, + ACTIONS(5481), 12, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, anon_sym_COMMA, - ACTIONS(7936), 1, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [158817] = 26, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5483), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [105229] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7693), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + STATE(3116), 1, + sym_attribute_specifier, + ACTIONS(5526), 12, anon_sym_DOT_DOT_DOT, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7721), 1, - anon_sym_QMARK, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6492), 2, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_GT2, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, + ACTIONS(5528), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [105287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4755), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [158909] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(4757), 36, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, anon_sym_COMMA, - ACTIONS(7938), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [159003] = 14, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [105340] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7421), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(6705), 1, + anon_sym_LT, + ACTIONS(6892), 1, + anon_sym_LBRACK, + STATE(3784), 1, + sym_template_argument_list, + ACTIONS(4082), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7423), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4067), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7427), 1, + anon_sym_EQ, + ACTIONS(4059), 32, anon_sym_AMP, - ACTIONS(7429), 1, - anon_sym_LBRACK, - STATE(4587), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6788), 1, - sym__abstract_declarator, - STATE(5466), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7198), 11, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -515418,62 +384982,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7940), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [159071] = 14, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [105403] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7423), 1, - anon_sym_STAR, - ACTIONS(7425), 1, - anon_sym_AMP_AMP, - ACTIONS(7427), 1, - anon_sym_AMP, - ACTIONS(7429), 1, - anon_sym_LBRACK, - STATE(4587), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6789), 1, - sym__abstract_declarator, - STATE(5466), 2, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7782), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6663), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7198), 11, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -515484,251 +385060,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [159139] = 27, + [105498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(2134), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(7942), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [159233] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(2132), 36, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, anon_sym_COMMA, - ACTIONS(7944), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [159327] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(7946), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [159421] = 17, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [105551] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7948), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, sym_identifier, - ACTIONS(7950), 1, - anon_sym_LPAREN2, - ACTIONS(7952), 1, - anon_sym_STAR, - ACTIONS(7956), 1, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, sym_primitive_type, - STATE(3522), 1, - sym__type_declarator, - STATE(3856), 1, - sym_pointer_type_declarator, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(9431), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5150), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5744), 2, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7721), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7954), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3859), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -515742,105 +385181,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [159495] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(7958), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [159589] = 14, + [105646] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7423), 1, - anon_sym_STAR, - ACTIONS(7425), 1, - anon_sym_AMP_AMP, - ACTIONS(7427), 1, - anon_sym_AMP, - ACTIONS(7429), 1, - anon_sym_LBRACK, - STATE(4587), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6791), 1, - sym__abstract_declarator, - STATE(5466), 2, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7564), 1, + sym_type_descriptor, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7198), 11, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -515851,62 +385252,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7960), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [159657] = 14, + [105741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7421), 1, + ACTIONS(6278), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7423), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7427), 1, - anon_sym_AMP, - ACTIONS(7429), 1, - anon_sym_LBRACK, - STATE(4587), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6794), 1, - sym__abstract_declarator, - STATE(5055), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5806), 11, - anon_sym_COMMA, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7198), 11, + anon_sym_GT2, + ACTIONS(6276), 33, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -515917,50 +385295,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [159725] = 17, + sym_identifier, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [105794] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7962), 1, - sym_identifier, - ACTIONS(7964), 1, - anon_sym_LPAREN2, - ACTIONS(7966), 1, - anon_sym_STAR, - ACTIONS(7970), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, sym_primitive_type, - STATE(3695), 1, - sym__type_declarator, - STATE(4052), 1, - sym_pointer_type_declarator, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(9176), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5086), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5750), 2, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5400), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7968), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4056), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -515974,385 +385373,506 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [159799] = 27, + [105889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(4739), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4741), 36, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(7972), 1, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [159893] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(7974), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [105942] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5358), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106037] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7442), 1, + sym_type_descriptor, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4735), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [159987] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(4737), 36, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, anon_sym_COMMA, - ACTIONS(7976), 1, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [160081] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(7978), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [160175] = 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, + [106185] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(7980), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, + ACTIONS(6679), 1, + anon_sym_LBRACK, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6845), 1, + anon_sym_requires, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6913), 1, anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + STATE(4603), 1, + sym__function_attributes_start, + STATE(4840), 1, + sym_ref_qualifier, + STATE(5620), 1, + sym_trailing_return_type, + STATE(5778), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6665), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(4070), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4415), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5346), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5622), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5015), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6671), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106284] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(6915), 1, + anon_sym_COLON, + STATE(3033), 1, + sym_attribute_specifier, + STATE(3588), 1, + sym__enum_base_clause, + STATE(3632), 1, + sym_enumerator_list, + ACTIONS(5449), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [160269] = 17, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5451), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [106349] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7962), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, sym_identifier, - ACTIONS(7964), 1, - anon_sym_LPAREN2, - ACTIONS(7966), 1, - anon_sym_STAR, - ACTIONS(7970), 1, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, sym_primitive_type, - STATE(3695), 1, - sym__type_declarator, - STATE(4052), 1, - sym_pointer_type_declarator, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(9176), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5750), 2, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7858), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106444] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(3667), 1, + sym_identifier, + ACTIONS(6917), 1, + anon_sym_COLON_COLON, + ACTIONS(6921), 1, + sym_primitive_type, + ACTIONS(6923), 1, + anon_sym_enum, + ACTIONS(6925), 1, + anon_sym_class, + ACTIONS(6927), 1, + anon_sym_struct, + ACTIONS(6929), 1, + anon_sym_union, + ACTIONS(6931), 1, + sym_auto, + ACTIONS(6933), 1, + anon_sym_decltype, + ACTIONS(6935), 1, + anon_sym_typename, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(3990), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4391), 1, + sym__type_specifier, + STATE(4471), 1, + sym_decltype_auto, + STATE(5387), 1, + sym_type_descriptor, + STATE(5982), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + STATE(3776), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5836), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7968), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(6919), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4056), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(4475), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -516366,1118 +385886,711 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [160343] = 27, + [106539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(4715), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(7982), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [160437] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(4717), 36, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, anon_sym_COMMA, - ACTIONS(7984), 1, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [160531] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(7986), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [160625] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7682), 1, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6476), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [160717] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(7988), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [160811] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(7990), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [160905] = 27, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [106592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(7992), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(4743), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [160999] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(7994), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [161093] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(4745), 36, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, anon_sym_COMMA, - ACTIONS(7996), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [161187] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(7998), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [161281] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8000), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [161375] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8002), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [161469] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8004), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [161563] = 27, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [106645] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7567), 1, + sym_type_descriptor, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106740] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7426), 1, + sym_type_descriptor, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106835] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7200), 1, + sym_type_descriptor, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106930] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7837), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107025] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7571), 1, + sym_type_descriptor, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107120] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5430), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107215] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + sym_auto, + ACTIONS(119), 1, + anon_sym_decltype, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2707), 1, + sym_primitive_type, + ACTIONS(6937), 1, + sym_identifier, + ACTIONS(6939), 1, + anon_sym_COLON_COLON, + ACTIONS(6941), 1, + anon_sym_enum, + ACTIONS(6943), 1, + anon_sym_class, + ACTIONS(6945), 1, + anon_sym_struct, + ACTIONS(6947), 1, + anon_sym_union, + ACTIONS(6949), 1, + anon_sym_typename, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(3103), 1, + sym_decltype_auto, + STATE(3112), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4008), 1, + sym__type_specifier, + STATE(5387), 1, + sym_type_descriptor, + STATE(5978), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + STATE(3767), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3114), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4727), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8006), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [161657] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(4729), 36, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, anon_sym_COMMA, - ACTIONS(8008), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [161751] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, anon_sym_GT_EQ, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6496), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - [161839] = 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_final, + anon_sym_override, + anon_sym_requires, + [107363] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7962), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, sym_identifier, - ACTIONS(7964), 1, - anon_sym_LPAREN2, - ACTIONS(7966), 1, - anon_sym_STAR, - ACTIONS(7970), 1, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, sym_primitive_type, - STATE(3704), 1, - sym__type_declarator, - STATE(4052), 1, - sym_pointer_type_declarator, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(9176), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5735), 2, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4430), 1, + sym__type_specifier, + STATE(5564), 1, + sym_type_descriptor, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3763), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5836), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7968), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4056), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -517491,50 +386604,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [161913] = 17, + [107458] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, sym_primitive_type, - ACTIONS(8010), 1, - anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7152), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5704), 2, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7607), 1, + sym_type_descriptor, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5836), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -517548,450 +386675,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [161987] = 26, + [107553] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5377), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107648] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4747), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8012), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [162079] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(4749), 36, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8014), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [162171] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7593), 1, - anon_sym_SEMI, - ACTIONS(7609), 1, - anon_sym_COMMA, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [162265] = 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, + [107701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(4759), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8016), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [162359] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(4761), 36, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8018), 1, anon_sym_COMMA, - ACTIONS(8020), 1, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [162453] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8022), 1, - anon_sym_COMMA, - ACTIONS(8024), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [162547] = 17, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [107754] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7962), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, sym_identifier, - ACTIONS(7964), 1, - anon_sym_LPAREN2, - ACTIONS(7966), 1, - anon_sym_STAR, - ACTIONS(7970), 1, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, sym_primitive_type, - STATE(3681), 1, - sym__type_declarator, - STATE(4052), 1, - sym_pointer_type_declarator, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(9176), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5069), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5762), 2, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4553), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7750), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3764), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7968), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4056), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -518005,314 +386917,540 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [162621] = 26, + [107849] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(6921), 1, + sym_primitive_type, + ACTIONS(6931), 1, + sym_auto, + ACTIONS(6933), 1, + anon_sym_decltype, + ACTIONS(6937), 1, + sym_identifier, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(6953), 1, + anon_sym_enum, + ACTIONS(6955), 1, + anon_sym_class, + ACTIONS(6957), 1, + anon_sym_struct, + ACTIONS(6959), 1, + anon_sym_union, + ACTIONS(6961), 1, + anon_sym_typename, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(3949), 1, + sym__type_specifier, + STATE(3990), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4471), 1, + sym_decltype_auto, + STATE(5387), 1, + sym_type_descriptor, + STATE(5987), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + STATE(3759), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6919), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4475), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107944] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7656), 1, + sym_type_descriptor, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108039] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7745), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108134] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5387), 1, + sym_type_descriptor, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2138), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7666), 1, anon_sym_PIPE, - ACTIONS(7670), 1, anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7682), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8026), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [162713] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, anon_sym_DOT, - ACTIONS(7693), 1, + ACTIONS(2136), 36, anon_sym_DOT_DOT_DOT, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7721), 1, - anon_sym_QMARK, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6476), 2, anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7703), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [162805] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7682), 1, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6492), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [162897] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8028), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [162989] = 17, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [108282] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7918), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, sym_identifier, - ACTIONS(7920), 1, - anon_sym_LPAREN2, - ACTIONS(7926), 1, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, sym_primitive_type, - ACTIONS(8030), 1, - anon_sym_STAR, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6743), 1, - sym__type_declarator, - STATE(6990), 1, - sym_pointer_type_declarator, - STATE(9270), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5136), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5694), 2, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7725), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7924), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6987), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108377] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7387), 1, + sym_type_descriptor, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108472] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5420), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -518326,295 +387464,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [163063] = 27, + [108567] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5710), 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(5708), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [108620] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(6915), 1, + anon_sym_COLON, + STATE(3101), 1, + sym_attribute_specifier, + STATE(3524), 1, + sym__enum_base_clause, + STATE(3648), 1, + sym_enumerator_list, + ACTIONS(5463), 7, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8032), 1, - anon_sym_COMMA, - ACTIONS(8034), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [163157] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5465), 32, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8036), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [163251] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7721), 1, - anon_sym_QMARK, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [163343] = 5, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [108685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7393), 1, - anon_sym_LBRACK, - STATE(5357), 1, - sym_new_declarator, - ACTIONS(6096), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6094), 25, + ACTIONS(3275), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_GT2, - [163393] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, + ACTIONS(3273), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, - ACTIONS(7948), 1, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, - ACTIONS(7950), 1, - anon_sym_LPAREN2, - ACTIONS(7952), 1, - anon_sym_STAR, - ACTIONS(7956), 1, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [108738] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, sym_primitive_type, - STATE(3477), 1, - sym__type_declarator, - STATE(3856), 1, - sym_pointer_type_declarator, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(9431), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5802), 2, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5406), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5836), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7954), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3859), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -518628,79 +387691,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [163467] = 27, + [108833] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8038), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [163561] = 4, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(6963), 1, + sym_identifier, + ACTIONS(6965), 1, + anon_sym_COLON_COLON, + ACTIONS(6969), 1, + sym_primitive_type, + ACTIONS(6971), 1, + anon_sym_enum, + ACTIONS(6973), 1, + anon_sym_class, + ACTIONS(6975), 1, + anon_sym_struct, + ACTIONS(6977), 1, + anon_sym_union, + ACTIONS(6979), 1, + sym_auto, + ACTIONS(6981), 1, + anon_sym_decltype, + ACTIONS(6983), 1, + anon_sym_typename, + STATE(4258), 1, + sym__type_specifier, + STATE(4405), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4866), 1, + sym_qualified_type_identifier, + STATE(4874), 1, + sym_decltype_auto, + STATE(5564), 1, + sym_type_descriptor, + STATE(5975), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(3760), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4835), 2, + sym_decltype, + sym_template_type, + ACTIONS(6967), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4872), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 1, - sym_literal_suffix, - ACTIONS(4286), 16, + ACTIONS(4723), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -518709,17 +387774,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4278), 21, + ACTIONS(4725), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -518732,239 +387791,159 @@ 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [163609] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6378), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6376), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_RBRACK, + anon_sym_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, - [163679] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6434), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [163767] = 23, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [108981] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(4322), 1, - anon_sym_LPAREN2, - ACTIONS(4324), 1, - anon_sym_STAR, - ACTIONS(4326), 1, - anon_sym_AMP_AMP, - ACTIONS(4328), 1, - anon_sym_AMP, - ACTIONS(5097), 1, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, sym_identifier, - ACTIONS(5816), 1, - anon_sym_LBRACK, - ACTIONS(5852), 1, + ACTIONS(6877), 1, anon_sym_COLON_COLON, - ACTIONS(7491), 1, - anon_sym_RPAREN, - STATE(4706), 1, - sym_parameter_list, - STATE(6525), 1, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, sym__scope_resolution, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7174), 1, - sym__declarator, - STATE(7404), 1, - sym__abstract_declarator, - STATE(9661), 1, - sym_ms_based_modifier, - STATE(9648), 3, + STATE(7284), 1, + sym_type_descriptor, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, sym_decltype, sym_template_type, - sym_dependent_type_identifier, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [163853] = 14, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109076] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7499), 1, - anon_sym_STAR, - ACTIONS(7501), 1, - anon_sym_AMP_AMP, - ACTIONS(7503), 1, - anon_sym_AMP, - STATE(4524), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6780), 1, - sym__abstract_declarator, - STATE(5466), 2, + ACTIONS(117), 1, + sym_auto, + ACTIONS(119), 1, + anon_sym_decltype, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2707), 1, + sym_primitive_type, + ACTIONS(3667), 1, + sym_identifier, + ACTIONS(3673), 1, + anon_sym_COLON_COLON, + ACTIONS(3677), 1, + anon_sym_enum, + ACTIONS(3679), 1, + anon_sym_class, + ACTIONS(3681), 1, + anon_sym_struct, + ACTIONS(3683), 1, + anon_sym_union, + ACTIONS(3685), 1, + anon_sym_typename, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(3103), 1, + sym_decltype_auto, + STATE(3112), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4051), 1, + sym__type_specifier, + STATE(5387), 1, + sym_type_descriptor, + STATE(5983), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + STATE(3783), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6663), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7198), 11, + aux_sym__type_definition_type_repeat1, + ACTIONS(3675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3114), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -518975,180 +387954,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [163921] = 27, + [109171] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8040), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [164015] = 27, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4553), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7728), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3764), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109266] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8042), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(6667), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [164109] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7579), 1, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6676), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6679), 1, anon_sym_LBRACK, - ACTIONS(7737), 1, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(8044), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8047), 1, + ACTIONS(6985), 1, anon_sym_DASH_GT, - ACTIONS(8054), 1, + ACTIONS(6987), 1, anon_sym_requires, - STATE(6891), 1, - sym_requires_clause, - STATE(6965), 1, + STATE(4677), 1, + sym__function_attributes_start, + STATE(4838), 1, + sym_ref_qualifier, + STATE(5680), 1, + sym__function_attributes_end, + STATE(5875), 1, sym_trailing_return_type, - ACTIONS(7569), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(8050), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, + ACTIONS(6665), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4070), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6649), 2, + aux_sym_type_definition_repeat1, + STATE(4415), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7564), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(7567), 16, - anon_sym_AMP_AMP, + STATE(5353), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5012), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6671), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -519160,54 +388098,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - anon_sym_noexcept, - anon_sym_throw, - [164179] = 17, + [109365] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6895), 1, sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7902), 1, - anon_sym_STAR, - ACTIONS(7910), 1, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5407), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109460] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, sym_primitive_type, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7389), 1, - sym__type_declarator, - STATE(9186), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5206), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5793), 2, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7723), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109555] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4273), 1, + sym__type_specifier, + STATE(5564), 1, + sym_type_descriptor, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109650] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7101), 1, + sym_type_descriptor, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -519221,183 +388382,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [164253] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8058), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [164347] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7636), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [164439] = 17, + [109745] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, sym_primitive_type, - ACTIONS(8010), 1, - anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7141), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5087), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5690), 2, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5429), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -519411,50 +388453,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [164513] = 17, + [109840] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, + ACTIONS(117), 1, + sym_auto, + ACTIONS(119), 1, + anon_sym_decltype, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2707), 1, sym_primitive_type, - ACTIONS(8010), 1, - anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7141), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5690), 2, + ACTIONS(6937), 1, + sym_identifier, + ACTIONS(6939), 1, + anon_sym_COLON_COLON, + ACTIONS(6941), 1, + anon_sym_enum, + ACTIONS(6943), 1, + anon_sym_class, + ACTIONS(6945), 1, + anon_sym_struct, + ACTIONS(6947), 1, + anon_sym_union, + ACTIONS(6949), 1, + anon_sym_typename, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(3103), 1, + sym_decltype_auto, + STATE(3112), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3861), 1, + sym__type_specifier, + STATE(5387), 1, + sym_type_descriptor, + STATE(5978), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + STATE(3782), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5836), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(3675), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(3114), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -519468,46 +388524,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [164587] = 15, + [109935] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7579), 1, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6679), 1, anon_sym_LBRACK, - ACTIONS(7737), 1, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(7740), 1, + ACTIONS(6836), 1, + anon_sym_requires, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8060), 1, + ACTIONS(6913), 1, anon_sym_DASH_GT, - ACTIONS(8063), 1, - anon_sym_requires, - STATE(6678), 1, - sym_requires_clause, - STATE(6934), 1, + STATE(4639), 1, + sym__function_attributes_start, + STATE(4846), 1, + sym_ref_qualifier, + STATE(5566), 1, sym_trailing_return_type, - ACTIONS(7569), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7585), 2, + STATE(5803), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6665), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6823), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, + STATE(4070), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6703), 2, + aux_sym_type_definition_repeat1, + STATE(4415), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7564), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - ACTIONS(7567), 16, - anon_sym_AMP_AMP, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5622), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4990), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6671), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -519519,57 +388597,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - anon_sym_noexcept, - anon_sym_throw, - [164657] = 17, + [110034] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7399), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, sym_auto, - ACTIONS(7401), 1, + ACTIONS(1996), 1, anon_sym_decltype, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(8066), 1, - anon_sym_STAR, - ACTIONS(8068), 1, - anon_sym_AMP_AMP, - ACTIONS(8070), 1, - anon_sym_AMP, - STATE(3891), 1, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, sym_decltype_auto, - STATE(4676), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(7030), 1, - sym__abstract_declarator, - STATE(5475), 2, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4553), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7796), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3764), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7419), 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(7245), 11, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -519580,359 +388668,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [164731] = 4, + [110129] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 2, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(4899), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4904), 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, - [164779] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8072), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [164873] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8074), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [164967] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8076), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [165061] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8078), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [165155] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7579), 1, - anon_sym_LBRACK, - ACTIONS(7737), 1, - anon_sym___attribute__, - ACTIONS(8044), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8047), 1, - anon_sym_DASH_GT, - ACTIONS(8083), 1, - anon_sym_requires, - STATE(6891), 1, - sym_requires_clause, - STATE(6965), 1, - sym_trailing_return_type, - ACTIONS(7569), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(8080), 2, - anon_sym_final, - anon_sym_override, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6649), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7564), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(7567), 16, - anon_sym_AMP_AMP, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7762), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -519943,595 +388739,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - anon_sym_noexcept, - anon_sym_throw, - [165225] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8086), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [165319] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6125), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6123), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_GT2, - [165377] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8088), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [165471] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6167), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6165), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [165531] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6378), 6, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6376), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [165603] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8090), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [165697] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6196), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [165765] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6368), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [165853] = 27, + [110224] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8092), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [165947] = 17, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7757), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110319] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7918), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, sym_identifier, - ACTIONS(7920), 1, - anon_sym_LPAREN2, - ACTIONS(7926), 1, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, sym_primitive_type, - ACTIONS(8030), 1, - anon_sym_STAR, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6767), 1, - sym__type_declarator, - STATE(6990), 1, - sym_pointer_type_declarator, - STATE(9270), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5719), 2, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4553), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7790), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3764), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5836), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7924), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6987), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -520545,281 +388881,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [166021] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8094), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [166113] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6196), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [166179] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6196), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [166249] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6196), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [166323] = 17, + [110414] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7948), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, sym_identifier, - ACTIONS(7950), 1, - anon_sym_LPAREN2, - ACTIONS(7952), 1, - anon_sym_STAR, - ACTIONS(7956), 1, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, sym_primitive_type, - STATE(3540), 1, - sym__type_declarator, - STATE(3856), 1, - sym_pointer_type_declarator, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(9431), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5104), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5752), 2, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7255), 1, + sym_type_descriptor, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7954), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3859), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -520833,552 +388952,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [166397] = 18, + [110509] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6196), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 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, - [166473] = 20, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5374), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110604] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6196), 1, - anon_sym_PIPE, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(6989), 1, anon_sym_LT, - ACTIONS(6194), 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, - [166553] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6196), 1, - anon_sym_PIPE, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, + STATE(2516), 1, + sym_template_argument_list, + ACTIONS(4559), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 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, - [166635] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8096), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [166729] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(4564), 31, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, anon_sym_COMMA, - ACTIONS(7613), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [166823] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - [166907] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7723), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7729), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6496), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [166995] = 23, + [110663] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_or, - [167081] = 17, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5379), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110758] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7948), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(6921), 1, + sym_primitive_type, + ACTIONS(6931), 1, + sym_auto, + ACTIONS(6933), 1, + anon_sym_decltype, + ACTIONS(6937), 1, sym_identifier, - ACTIONS(7950), 1, - anon_sym_LPAREN2, - ACTIONS(7952), 1, - anon_sym_STAR, - ACTIONS(7956), 1, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(6953), 1, + anon_sym_enum, + ACTIONS(6955), 1, + anon_sym_class, + ACTIONS(6957), 1, + anon_sym_struct, + ACTIONS(6959), 1, + anon_sym_union, + ACTIONS(6961), 1, + anon_sym_typename, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(3869), 1, + sym__type_specifier, + STATE(3990), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4471), 1, + sym_decltype_auto, + STATE(5387), 1, + sym_type_descriptor, + STATE(5987), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + STATE(3774), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6919), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4475), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110853] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2904), 1, + anon_sym_enum, + ACTIONS(2906), 1, + anon_sym_class, + ACTIONS(2908), 1, + anon_sym_struct, + ACTIONS(2910), 1, + anon_sym_union, + ACTIONS(2934), 1, + sym_auto, + ACTIONS(2936), 1, + anon_sym_decltype, + ACTIONS(2938), 1, + anon_sym_typename, + ACTIONS(6992), 1, + sym_identifier, + ACTIONS(6994), 1, + anon_sym_COLON_COLON, + ACTIONS(6996), 1, sym_primitive_type, - STATE(3540), 1, - sym__type_declarator, - STATE(3856), 1, - sym_pointer_type_declarator, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(9431), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5752), 2, + STATE(2297), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2819), 1, + sym_decltype_auto, + STATE(2845), 1, + sym_qualified_type_identifier, + STATE(4338), 1, + sym__type_specifier, + STATE(5564), 1, + sym_type_descriptor, + STATE(5956), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2758), 2, + sym_decltype, + sym_template_type, + STATE(3769), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5836), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7954), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(2900), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3859), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(2799), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -521392,72 +389289,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [167155] = 12, + [110948] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6676), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6679), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6985), 1, anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6196), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [167219] = 5, + ACTIONS(6998), 1, + anon_sym_requires, + STATE(4638), 1, + sym__function_attributes_start, + STATE(4843), 1, + sym_ref_qualifier, + STATE(5726), 1, + sym__function_attributes_end, + STATE(5885), 1, + sym_trailing_return_type, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6665), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6687), 2, + anon_sym_final, + anon_sym_override, + STATE(4070), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4415), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5353), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5006), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6671), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [111047] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4899), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(4568), 1, anon_sym_LBRACK, - ACTIONS(4894), 2, + ACTIONS(6705), 1, + anon_sym_LT, + STATE(3784), 1, + sym_template_argument_list, + ACTIONS(4561), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(4897), 4, + ACTIONS(4564), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - ACTIONS(4892), 31, + anon_sym_EQ, + ACTIONS(4559), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -521483,123 +389410,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [167269] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8098), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [167363] = 17, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [111110] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5415), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [111205] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7786), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [111300] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7918), 1, - sym_identifier, - ACTIONS(7920), 1, - anon_sym_LPAREN2, - ACTIONS(7926), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, sym_primitive_type, - ACTIONS(8030), 1, - anon_sym_STAR, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6767), 1, - sym__type_declarator, - STATE(6990), 1, - sym_pointer_type_declarator, - STATE(9270), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5230), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5719), 2, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5378), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7924), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6987), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -521613,117 +389630,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [167437] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8100), 1, - anon_sym_COMMA, - ACTIONS(8102), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [167531] = 14, + [111395] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7437), 1, - anon_sym_STAR, - ACTIONS(7439), 1, - anon_sym_AMP_AMP, - ACTIONS(7441), 1, - anon_sym_AMP, - STATE(4551), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6805), 1, - sym__abstract_declarator, - STATE(5229), 2, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7766), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5806), 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(7245), 11, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -521734,184 +389701,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [167599] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8104), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [167693] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8106), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [167787] = 17, + [111490] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, sym_primitive_type, - ACTIONS(8108), 1, - anon_sym_STAR, - STATE(3176), 1, - sym__type_declarator, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(9550), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5175), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5778), 2, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5348), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -521925,184 +389772,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [167861] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8110), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [167955] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6400), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [168043] = 17, + [111585] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7399), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, sym_auto, - ACTIONS(7401), 1, + ACTIONS(1996), 1, anon_sym_decltype, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(8066), 1, - anon_sym_STAR, - ACTIONS(8068), 1, - anon_sym_AMP_AMP, - ACTIONS(8070), 1, - anon_sym_AMP, - STATE(3891), 1, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, sym_decltype_auto, - STATE(4676), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(7148), 1, - sym__abstract_declarator, - STATE(5471), 2, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4553), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7888), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3764), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7497), 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(7245), 11, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -522113,250 +389843,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [168117] = 27, + [111680] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(4981), 1, + anon_sym_LBRACE, + ACTIONS(4957), 11, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8112), 1, anon_sym_COMMA, - ACTIONS(8114), 1, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [168211] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7682), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8116), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [168303] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4955), 33, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8118), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [168397] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, - ACTIONS(7898), 1, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [111735] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, sym_primitive_type, - ACTIONS(8108), 1, - anon_sym_STAR, - STATE(3191), 1, - sym__type_declarator, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(9550), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5234), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5770), 2, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5423), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -522370,117 +389965,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [168471] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8120), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [168565] = 17, + [111830] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7918), 1, - sym_identifier, - ACTIONS(7920), 1, - anon_sym_LPAREN2, - ACTIONS(7922), 1, - anon_sym_STAR, - ACTIONS(7926), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, sym_primitive_type, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6955), 1, - sym__type_declarator, - STATE(6990), 1, - sym_pointer_type_declarator, - STATE(9493), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5042), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5772), 2, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5422), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7924), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6987), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -522494,47 +390036,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [168639] = 15, + [111925] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7579), 1, - anon_sym_LBRACK, - ACTIONS(7737), 1, - anon_sym___attribute__, - ACTIONS(8044), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8122), 1, - anon_sym_DASH_GT, - ACTIONS(8125), 1, - anon_sym_requires, - STATE(6891), 1, - sym_requires_clause, - STATE(7045), 1, - sym_trailing_return_type, - ACTIONS(7569), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(8080), 2, - anon_sym_final, - anon_sym_override, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6646), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7564), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(7567), 16, - anon_sym_AMP_AMP, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7383), 1, + sym_type_descriptor, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -522543,310 +390105,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - anon_sym_noexcept, - anon_sym_throw, - [168709] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8128), 1, - anon_sym_COMMA, - ACTIONS(8130), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [168803] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7682), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6254), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [168895] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7721), 1, - anon_sym_QMARK, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6254), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [168987] = 27, + anon_sym_constinit, + anon_sym_consteval, + [112020] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8132), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(6705), 1, anon_sym_LT, - [169081] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7421), 1, + ACTIONS(6779), 1, + anon_sym_EQ, + STATE(3513), 1, + sym_template_argument_list, + ACTIONS(6777), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(4067), 6, + anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7437), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(7439), 1, anon_sym_AMP_AMP, - ACTIONS(7441), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4059), 33, anon_sym_AMP, - STATE(4551), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6808), 1, - sym__abstract_declarator, - STATE(5353), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7245), 11, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -522857,62 +390155,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7960), 11, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [112083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4957), 12, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [169149] = 17, + anon_sym_GT2, + ACTIONS(4955), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [112136] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, sym_primitive_type, - ACTIONS(8108), 1, - anon_sym_STAR, - STATE(3191), 1, - sym__type_declarator, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(9550), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5770), 2, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7295), 1, + sym_type_descriptor, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5836), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -522926,1105 +390283,432 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [169223] = 27, + [112231] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8134), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(7001), 1, + anon_sym_LT, + STATE(2516), 1, + sym_template_argument_list, + ACTIONS(5324), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [169317] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8136), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [169411] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(4085), 31, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, anon_sym_COMMA, - ACTIONS(8138), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [169505] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7684), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6400), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [169593] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8140), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [169687] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8142), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [169781] = 27, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [112290] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7748), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [112385] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4981), 1, + anon_sym_LBRACE, + ACTIONS(4957), 10, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, anon_sym_COMMA, - ACTIONS(8144), 1, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [169875] = 26, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4955), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [112442] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8146), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [169967] = 27, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7697), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [112537] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6842), 1, - anon_sym_RPAREN, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [170061] = 27, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7860), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [112632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8148), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(4711), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [170155] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8150), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [170249] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(4713), 36, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, anon_sym_COMMA, - ACTIONS(8152), 1, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [170343] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8154), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [170437] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8156), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [170531] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8158), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [170625] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7499), 1, - anon_sym_STAR, - ACTIONS(7501), 1, - anon_sym_AMP_AMP, - ACTIONS(7503), 1, - anon_sym_AMP, - STATE(4524), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6775), 1, - sym__abstract_declarator, - STATE(5110), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5806), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [170693] = 17, + [112685] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, - anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7127), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5118), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5732), 2, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7956), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -524038,182 +390722,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [170767] = 27, + [112780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(4719), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8160), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [170861] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(4721), 36, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8162), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [170953] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7701), 1, - anon_sym_SLASH, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7699), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6196), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6194), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -524222,241 +390765,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [171017] = 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, + [112833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(4719), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8164), 1, - anon_sym_COMMA, - ACTIONS(8166), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [171111] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(4721), 36, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, anon_sym_COMMA, - ACTIONS(8168), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [171205] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8170), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [171299] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7729), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6196), 10, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [112886] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7976), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [112981] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4751), 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(6194), 19, + anon_sym_DOT, + ACTIONS(4753), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -524464,7 +390918,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -524473,361 +390936,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [171359] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8172), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [171453] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_or, - anon_sym_GT2, - [171539] = 22, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [113034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7701), 1, + ACTIONS(4719), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7707), 1, anon_sym_PIPE, - ACTIONS(7711), 1, anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7709), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 8, + anon_sym_DOT, + ACTIONS(4721), 36, 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, - [171623] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6196), 1, - anon_sym_PIPE, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7727), 1, - anon_sym_bitand, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7709), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 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, - [171705] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6196), 1, - anon_sym_PIPE, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, anon_sym_LT_LT, - ACTIONS(7719), 1, anon_sym_GT_GT, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7727), 1, - anon_sym_bitand, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 11, - 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - anon_sym_GT2, - [171785] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7579), 1, - anon_sym_LBRACK, - ACTIONS(7737), 1, - anon_sym___attribute__, - ACTIONS(8044), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8122), 1, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8174), 1, - anon_sym_requires, - STATE(6891), 1, - sym_requires_clause, - STATE(7045), 1, - sym_trailing_return_type, - ACTIONS(7569), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(8050), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6646), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7564), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(7567), 16, - anon_sym_AMP_AMP, + anon_sym_requires, + [113087] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4553), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7602), 1, + sym_type_descriptor, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3764), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -524838,54 +391064,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - anon_sym_noexcept, - anon_sym_throw, - [171855] = 17, + [113182] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6895), 1, sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7902), 1, - anon_sym_STAR, - ACTIONS(7910), 1, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5434), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [113277] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, sym_primitive_type, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7401), 1, - sym__type_declarator, - STATE(9186), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5761), 2, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4553), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7771), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3764), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5836), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -524899,114 +391206,419 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [171929] = 24, + [113372] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6434), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [172017] = 17, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5380), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [113467] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(6921), 1, + sym_primitive_type, + ACTIONS(6931), 1, + sym_auto, + ACTIONS(6933), 1, + anon_sym_decltype, + ACTIONS(6937), 1, + sym_identifier, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(6953), 1, + anon_sym_enum, + ACTIONS(6955), 1, + anon_sym_class, + ACTIONS(6957), 1, + anon_sym_struct, + ACTIONS(6959), 1, + anon_sym_union, + ACTIONS(6961), 1, + anon_sym_typename, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(3891), 1, + sym__type_specifier, + STATE(3990), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4471), 1, + sym_decltype_auto, + STATE(5387), 1, + sym_type_descriptor, + STATE(5987), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + STATE(3770), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6919), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4475), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [113562] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5382), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [113657] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5351), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [113752] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7582), 1, + sym_type_descriptor, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [113847] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7902), 1, - anon_sym_STAR, - ACTIONS(7910), 1, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, sym_primitive_type, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7401), 1, - sym__type_declarator, - STATE(9186), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5037), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5761), 2, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7785), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -525020,355 +391632,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [172091] = 18, + [113942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6196), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, + ACTIONS(4731), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 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, - [172167] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7701), 1, anon_sym_SLASH, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6196), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7715), 4, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [172241] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(4733), 36, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, anon_sym_COMMA, - ACTIONS(8178), 1, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [172335] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6196), 6, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [172407] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8180), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [172501] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7701), 1, - anon_sym_SLASH, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6196), 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(6194), 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_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -525377,894 +391675,636 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [172567] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8182), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [172661] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8184), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [172755] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8186), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [172849] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8188), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [172943] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8190), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [173037] = 27, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [113995] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8192), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [173131] = 26, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5402), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114090] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7721), 1, - anon_sym_QMARK, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8194), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [173223] = 24, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5401), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114185] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6368), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [173311] = 27, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4901), 1, + sym__type_specifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5409), 1, + sym__type_definition_type, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3762), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114280] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8196), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [173405] = 15, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7908), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114375] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6196), 6, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [173475] = 27, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7313), 1, + sym_type_descriptor, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114470] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8198), 1, - anon_sym_COMMA, - ACTIONS(8200), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [173569] = 27, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4449), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(7922), 1, + sym_type_descriptor, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(3761), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114565] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, - anon_sym_COMMA, - ACTIONS(8202), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [173663] = 27, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(6921), 1, + sym_primitive_type, + ACTIONS(6931), 1, + sym_auto, + ACTIONS(6933), 1, + anon_sym_decltype, + ACTIONS(6937), 1, + sym_identifier, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(6953), 1, + anon_sym_enum, + ACTIONS(6955), 1, + anon_sym_class, + ACTIONS(6957), 1, + anon_sym_struct, + ACTIONS(6959), 1, + anon_sym_union, + ACTIONS(6961), 1, + anon_sym_typename, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(3990), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3997), 1, + sym__type_specifier, + STATE(4471), 1, + sym_decltype_auto, + STATE(5987), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6919), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4475), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114657] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8204), 1, - anon_sym_COMMA, - ACTIONS(8206), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [173757] = 14, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(6963), 1, + sym_identifier, + ACTIONS(6965), 1, + anon_sym_COLON_COLON, + ACTIONS(6969), 1, + sym_primitive_type, + ACTIONS(6971), 1, + anon_sym_enum, + ACTIONS(6973), 1, + anon_sym_class, + ACTIONS(6975), 1, + anon_sym_struct, + ACTIONS(6977), 1, + anon_sym_union, + ACTIONS(6979), 1, + sym_auto, + ACTIONS(6981), 1, + anon_sym_decltype, + ACTIONS(6983), 1, + anon_sym_typename, + STATE(4239), 1, + sym__type_specifier, + STATE(4405), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4866), 1, + sym_qualified_type_identifier, + STATE(4874), 1, + sym_decltype_auto, + STATE(5975), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4835), 2, + sym_decltype, + sym_template_type, + ACTIONS(6967), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4872), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114749] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7499), 1, - anon_sym_STAR, - ACTIONS(7501), 1, - anon_sym_AMP_AMP, - ACTIONS(7503), 1, - anon_sym_AMP, - STATE(4524), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6777), 1, - sym__abstract_declarator, - STATE(5466), 2, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4463), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(4474), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7198), 11, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -526275,62 +392315,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7960), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [173825] = 14, + [114841] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4924), 1, + sym__type_specifier, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, anon_sym_const, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7437), 1, - anon_sym_STAR, - ACTIONS(7439), 1, - anon_sym_AMP_AMP, - ACTIONS(7441), 1, - anon_sym_AMP, - STATE(4551), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6744), 1, - sym__abstract_declarator, - STATE(5353), 2, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114933] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4431), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(4474), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6663), 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(7245), 11, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -526341,50 +392453,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [173893] = 17, + [115025] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7918), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, sym_identifier, - ACTIONS(7920), 1, - anon_sym_LPAREN2, - ACTIONS(7926), 1, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, sym_primitive_type, - ACTIONS(8030), 1, - anon_sym_STAR, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6768), 1, - sym__type_declarator, - STATE(6990), 1, - sym_pointer_type_declarator, - STATE(9270), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5714), 2, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4548), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(4474), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5836), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7924), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6987), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -526398,105 +392522,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [173967] = 27, + [115117] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(5467), 1, + anon_sym___attribute__, + ACTIONS(5681), 1, + anon_sym_LBRACE, + ACTIONS(7003), 1, + anon_sym_COLON, + STATE(2522), 1, + sym__enum_base_clause, + STATE(2609), 1, + sym_enumerator_list, + STATE(2842), 1, + sym_attribute_specifier, + ACTIONS(5465), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7609), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5463), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(8208), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 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(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [174061] = 14, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [115181] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + STATE(1726), 1, + sym_template_argument_list, + ACTIONS(4059), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, - ACTIONS(7421), 1, + anon_sym_COLON, + ACTIONS(4067), 36, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7437), 1, anon_sym_STAR, - ACTIONS(7439), 1, anon_sym_AMP_AMP, - ACTIONS(7441), 1, - anon_sym_AMP, - STATE(4551), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6811), 1, - sym__abstract_declarator, - STATE(5353), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7245), 11, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -526507,128 +392621,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7940), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, anon_sym_try, anon_sym_requires, - [174129] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7701), 1, - anon_sym_SLASH, - ACTIONS(7707), 1, - anon_sym_PIPE, - ACTIONS(7711), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_LT_LT, - ACTIONS(7719), 1, - anon_sym_GT_GT, - ACTIONS(7721), 1, - anon_sym_QMARK, - ACTIONS(7723), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7725), 1, - anon_sym_bitor, - ACTIONS(7727), 1, - anon_sym_bitand, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7703), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7705), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7709), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8146), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(7713), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7715), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [174221] = 17, + [115239] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, + ACTIONS(117), 1, + sym_auto, + ACTIONS(119), 1, + anon_sym_decltype, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2707), 1, sym_primitive_type, - ACTIONS(8108), 1, - anon_sym_STAR, - STATE(3155), 1, - sym__type_declarator, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - STATE(9550), 1, - sym_ms_based_modifier, - ACTIONS(7906), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5799), 2, + ACTIONS(6937), 1, + sym_identifier, + ACTIONS(6939), 1, + anon_sym_COLON_COLON, + ACTIONS(6941), 1, + anon_sym_enum, + ACTIONS(6943), 1, + anon_sym_class, + ACTIONS(6945), 1, + anon_sym_struct, + ACTIONS(6947), 1, + anon_sym_union, + ACTIONS(6949), 1, + anon_sym_typename, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(3103), 1, + sym_decltype_auto, + STATE(3112), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4019), 1, + sym__type_specifier, + STATE(5978), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + STATE(4474), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5836), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(7904), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(3675), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(3114), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, @@ -526642,81 +392698,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [174295] = 15, + [115331] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7579), 1, - anon_sym_LBRACK, - ACTIONS(7737), 1, + ACTIONS(5467), 1, anon_sym___attribute__, - ACTIONS(7740), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8060), 1, - anon_sym_DASH_GT, - ACTIONS(8210), 1, - anon_sym_requires, - STATE(6678), 1, - sym_requires_clause, - STATE(6934), 1, - sym_trailing_return_type, - ACTIONS(7569), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7599), 2, - anon_sym_final, - anon_sym_override, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6703), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7564), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(5681), 1, anon_sym_LBRACE, - anon_sym_try, - ACTIONS(7567), 16, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - anon_sym_noexcept, - anon_sym_throw, - [174365] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_LPAREN2, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_DOT, - STATE(4336), 1, - sym_argument_list, - STATE(4342), 1, - sym_subscript_argument_list, - ACTIONS(6707), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7729), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6185), 10, + ACTIONS(7003), 1, + anon_sym_COLON, + STATE(2501), 1, + sym__enum_base_clause, + STATE(2575), 1, + sym_enumerator_list, + STATE(2807), 1, + sym_attribute_specifier, + ACTIONS(5451), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -526727,9 +392724,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(6183), 19, + anon_sym_DOT, + ACTIONS(5449), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -526738,6 +392737,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, @@ -526746,39 +392746,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [174425] = 14, + [115395] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7206), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2904), 1, + anon_sym_enum, + ACTIONS(2906), 1, + anon_sym_class, + ACTIONS(2908), 1, + anon_sym_struct, + ACTIONS(2910), 1, + anon_sym_union, + ACTIONS(2934), 1, + sym_auto, + ACTIONS(2936), 1, + anon_sym_decltype, + ACTIONS(2938), 1, + anon_sym_typename, + ACTIONS(6992), 1, + sym_identifier, + ACTIONS(6994), 1, + anon_sym_COLON_COLON, + ACTIONS(6996), 1, + sym_primitive_type, + STATE(2297), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2819), 1, + sym_decltype_auto, + STATE(2845), 1, + sym_qualified_type_identifier, + STATE(4355), 1, + sym__type_specifier, + STATE(5956), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2758), 2, + sym_decltype, + sym_template_type, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2900), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2799), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, anon_sym_const, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7499), 1, - anon_sym_STAR, - ACTIONS(7501), 1, - anon_sym_AMP_AMP, - ACTIONS(7503), 1, - anon_sym_AMP, - STATE(4524), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6781), 1, - sym__abstract_declarator, - STATE(5466), 2, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [115487] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(6921), 1, + sym_primitive_type, + ACTIONS(6931), 1, + sym_auto, + ACTIONS(6933), 1, + anon_sym_decltype, + ACTIONS(6937), 1, + sym_identifier, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(6953), 1, + anon_sym_enum, + ACTIONS(6955), 1, + anon_sym_class, + ACTIONS(6957), 1, + anon_sym_struct, + ACTIONS(6959), 1, + anon_sym_union, + ACTIONS(6961), 1, + anon_sym_typename, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(3875), 1, + sym__type_specifier, + STATE(3990), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4471), 1, + sym_decltype_auto, + STATE(5987), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + STATE(4474), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7198), 11, + aux_sym__type_definition_type_repeat1, + ACTIONS(6919), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4475), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -526789,118 +392891,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7940), 11, - anon_sym_COMMA, - anon_sym_SEMI, + [115579] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + ACTIONS(6781), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7005), 1, anon_sym_COLON, + STATE(3033), 1, + sym_attribute_specifier, + STATE(3613), 1, + sym__enum_base_clause, + STATE(3630), 1, + sym_enumerator_list, + ACTIONS(5451), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5449), 34, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, anon_sym_try, anon_sym_requires, - [174493] = 26, + [115643] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(7005), 1, + anon_sym_COLON, + STATE(3101), 1, + sym_attribute_specifier, + STATE(3612), 1, + sym__enum_base_clause, + STATE(3616), 1, + sym_enumerator_list, + ACTIONS(5465), 4, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8214), 1, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5463), 34, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [174584] = 13, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_try, + anon_sym_requires, + [115707] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(6883), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(8220), 1, - anon_sym_SLASH, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(6885), 1, + sym_auto, + ACTIONS(6887), 1, + anon_sym_decltype, + ACTIONS(7007), 1, + anon_sym_LPAREN2, + STATE(1931), 1, + sym_decltype_auto, + STATE(3916), 1, + sym_new_declarator, + STATE(3858), 2, sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, + sym_initializer_list, + ACTIONS(5384), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8218), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6196), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 18, + anon_sym_DOT, + ACTIONS(5382), 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, @@ -526909,6 +393044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -526918,46 +393054,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [174649] = 15, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [115775] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7579), 1, - anon_sym_LBRACK, - ACTIONS(7737), 1, - anon_sym___attribute__, - ACTIONS(8044), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8222), 1, - anon_sym_DASH_GT, - ACTIONS(8225), 1, - anon_sym_requires, - STATE(6891), 1, - sym_requires_clause, - STATE(7187), 1, - sym_trailing_return_type, - ACTIONS(7569), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(8080), 2, - anon_sym_final, - anon_sym_override, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6736), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7564), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - ACTIONS(7567), 16, - anon_sym_AMP_AMP, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(6921), 1, + sym_primitive_type, + ACTIONS(6931), 1, + sym_auto, + ACTIONS(6933), 1, + anon_sym_decltype, + ACTIONS(6937), 1, + sym_identifier, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(6953), 1, + anon_sym_enum, + ACTIONS(6955), 1, + anon_sym_class, + ACTIONS(6957), 1, + anon_sym_struct, + ACTIONS(6959), 1, + anon_sym_union, + ACTIONS(6961), 1, + anon_sym_typename, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(3887), 1, + sym__type_specifier, + STATE(3990), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4471), 1, + sym_decltype_auto, + STATE(5987), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6919), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4475), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -526968,245 +393127,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - anon_sym_noexcept, - anon_sym_throw, - [174718] = 26, + [115867] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(6883), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8228), 1, - anon_sym_COMMA, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(6885), 1, + sym_auto, + ACTIONS(6887), 1, + anon_sym_decltype, + ACTIONS(7007), 1, + anon_sym_LPAREN2, + STATE(1931), 1, + sym_decltype_auto, + STATE(3911), 1, + sym_new_declarator, + STATE(3873), 2, sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + sym_initializer_list, + ACTIONS(5366), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [174809] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(5362), 26, anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7682), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - ACTIONS(8230), 1, - anon_sym_RBRACK, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7662), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [174900] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(7638), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [174991] = 15, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [115935] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7579), 1, - anon_sym_LBRACK, - ACTIONS(7737), 1, - anon_sym___attribute__, - ACTIONS(8044), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8222), 1, - anon_sym_DASH_GT, - ACTIONS(8232), 1, - anon_sym_requires, - STATE(6891), 1, - sym_requires_clause, - STATE(7187), 1, - sym_trailing_return_type, - ACTIONS(7569), 2, - anon_sym_AMP, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(3667), 1, + sym_identifier, + ACTIONS(6917), 1, + anon_sym_COLON_COLON, + ACTIONS(6921), 1, + sym_primitive_type, + ACTIONS(6923), 1, + anon_sym_enum, + ACTIONS(6925), 1, + anon_sym_class, + ACTIONS(6927), 1, + anon_sym_struct, + ACTIONS(6929), 1, + anon_sym_union, + ACTIONS(6931), 1, + sym_auto, + ACTIONS(6933), 1, + anon_sym_decltype, + ACTIONS(6935), 1, + anon_sym_typename, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(3990), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4388), 1, + sym__type_specifier, + STATE(4471), 1, + sym_decltype_auto, + STATE(5982), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6919), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4475), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, anon_sym_const, - ACTIONS(8050), 2, - anon_sym_final, - anon_sym_override, - STATE(5422), 2, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116027] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(5320), 1, + anon_sym_COLON, + ACTIONS(6280), 1, + anon_sym_LBRACE, + STATE(3122), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6715), 2, + STATE(3619), 1, + sym_field_declaration_list, + STATE(6404), 1, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6736), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7564), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(6880), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5312), 5, anon_sym_LPAREN2, - anon_sym_GT2, - ACTIONS(7567), 16, + anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(5314), 30, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -527217,274 +393304,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - anon_sym_noexcept, - anon_sym_throw, - [175060] = 26, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_operator, + [116095] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(6883), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8236), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(6885), 1, + sym_auto, + ACTIONS(6887), 1, + anon_sym_decltype, + ACTIONS(7007), 1, + anon_sym_LPAREN2, + STATE(1931), 1, + sym_decltype_auto, + STATE(3924), 1, + sym_new_declarator, + STATE(3886), 2, sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + sym_initializer_list, + ACTIONS(5388), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [175151] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8238), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [175242] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(5386), 26, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8240), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [175333] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4726), 1, - anon_sym_RBRACK, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, anon_sym_GT_EQ, - ACTIONS(7682), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [175424] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [116163] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6153), 9, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(6883), 1, + anon_sym_LBRACK, + ACTIONS(6885), 1, + sym_auto, + ACTIONS(6887), 1, + anon_sym_decltype, + ACTIONS(7007), 1, + anon_sym_LPAREN2, + STATE(1931), 1, + sym_decltype_auto, + STATE(3904), 1, + sym_new_declarator, + STATE(3846), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5406), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -527494,10 +393397,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6155), 28, + ACTIONS(5404), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -527508,7 +393410,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -527523,33 +393424,369 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [175469] = 9, + [116231] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2904), 1, + anon_sym_enum, + ACTIONS(2906), 1, + anon_sym_class, + ACTIONS(2908), 1, + anon_sym_struct, + ACTIONS(2910), 1, + anon_sym_union, + ACTIONS(2934), 1, + sym_auto, + ACTIONS(2936), 1, + anon_sym_decltype, + ACTIONS(2938), 1, + anon_sym_typename, + ACTIONS(6992), 1, + sym_identifier, + ACTIONS(6994), 1, + anon_sym_COLON_COLON, + ACTIONS(6996), 1, + sym_primitive_type, + STATE(2297), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2819), 1, + sym_decltype_auto, + STATE(2845), 1, + sym_qualified_type_identifier, + STATE(4457), 1, + sym__type_specifier, + STATE(5956), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2758), 2, + sym_decltype, + sym_template_type, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2900), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2799), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116323] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(4189), 1, + sym__type_specifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116415] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + sym_auto, + ACTIONS(119), 1, + anon_sym_decltype, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2707), 1, + sym_primitive_type, + ACTIONS(6937), 1, + sym_identifier, + ACTIONS(6939), 1, + anon_sym_COLON_COLON, + ACTIONS(6941), 1, + anon_sym_enum, + ACTIONS(6943), 1, + anon_sym_class, + ACTIONS(6945), 1, + anon_sym_struct, + ACTIONS(6947), 1, + anon_sym_union, + ACTIONS(6949), 1, + anon_sym_typename, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(3103), 1, + sym_decltype_auto, + STATE(3112), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3851), 1, + sym__type_specifier, + STATE(5978), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3114), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116507] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + sym_auto, + ACTIONS(119), 1, + anon_sym_decltype, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2707), 1, + sym_primitive_type, + ACTIONS(3667), 1, + sym_identifier, + ACTIONS(3673), 1, + anon_sym_COLON_COLON, + ACTIONS(3677), 1, + anon_sym_enum, + ACTIONS(3679), 1, + anon_sym_class, + ACTIONS(3681), 1, + anon_sym_struct, + ACTIONS(3683), 1, + anon_sym_union, + ACTIONS(3685), 1, + anon_sym_typename, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(3103), 1, + sym_decltype_auto, + STATE(3112), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4042), 1, + sym__type_specifier, + STATE(5983), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3114), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116599] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4589), 1, + anon_sym_SEMI, + ACTIONS(4598), 1, + anon_sym_LBRACK, + ACTIONS(4591), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4594), 7, + 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(4587), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [116657] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(6023), 1, + sym_auto, + ACTIONS(6025), 1, + anon_sym_decltype, + ACTIONS(7009), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(7011), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2818), 1, + sym_decltype_auto, + STATE(3992), 1, + sym_new_declarator, + STATE(4370), 2, sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6177), 8, + sym_initializer_list, + ACTIONS(5406), 11, anon_sym_DASH, anon_sym_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(6175), 22, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5404), 23, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -527557,10 +393794,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, @@ -527571,26 +393805,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [175526] = 10, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [116724] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(6883), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6167), 8, + STATE(3814), 1, + sym_new_declarator, + ACTIONS(5690), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -527599,8 +393824,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6165), 20, + anon_sym_DOT, + ACTIONS(5688), 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, @@ -527611,6 +393840,11 @@ 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_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -527620,283 +393854,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [175585] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [116779] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(6497), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8242), 1, - anon_sym_COMMA, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(6585), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(6587), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [175676] = 26, + ACTIONS(6589), 1, + anon_sym_AMP, + ACTIONS(6591), 1, + anon_sym_COLON_COLON, + STATE(5266), 1, + sym__scope_resolution, + STATE(5623), 1, + sym__declarator, + STATE(7229), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116864] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4792), 1, + sym_identifier, + ACTIONS(6497), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8244), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(6499), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(6501), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [175767] = 26, + ACTIONS(6503), 1, + anon_sym_AMP, + ACTIONS(6505), 1, + anon_sym_COLON_COLON, + STATE(5279), 1, + sym__scope_resolution, + STATE(6029), 1, + sym__declarator, + STATE(7365), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116949] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6497), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8246), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(6565), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(6567), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [175858] = 26, + ACTIONS(6569), 1, + anon_sym_AMP, + STATE(5245), 1, + sym__scope_resolution, + STATE(5848), 1, + sym__declarator, + STATE(7308), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [117034] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(6497), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8248), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6555), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(6557), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [175949] = 9, + ACTIONS(6559), 1, + anon_sym_AMP, + ACTIONS(6561), 1, + anon_sym_COLON_COLON, + STATE(5323), 1, + sym__scope_resolution, + STATE(5879), 1, + sym__declarator, + STATE(7249), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [117119] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6125), 8, + ACTIONS(4594), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(4596), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -527905,8 +394133,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6123), 22, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4589), 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, @@ -527917,7 +394150,11 @@ 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___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -527928,153 +394165,496 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [176006] = 26, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [117172] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(6023), 1, + sym_auto, + ACTIONS(6025), 1, + anon_sym_decltype, + ACTIONS(7009), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(7011), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8220), 1, + STATE(2818), 1, + sym_decltype_auto, + STATE(4010), 1, + sym_new_declarator, + STATE(4357), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5388), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8254), 1, anon_sym_PIPE, - ACTIONS(8258), 1, anon_sym_AMP, - ACTIONS(8264), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8268), 1, - anon_sym_COLON, - ACTIONS(8270), 1, - anon_sym_QMARK, - ACTIONS(8272), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, - anon_sym_bitor, - ACTIONS(8276), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8218), 2, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5386), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8250), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8252), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8256), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8260), 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(8262), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [176097] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [117239] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 1, - anon_sym_RBRACK, - ACTIONS(5708), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6493), 1, + anon_sym_AMP_AMP, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6497), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, + STATE(5245), 1, + sym__scope_resolution, + STATE(5599), 1, + sym__declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [117324] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4047), 1, + anon_sym_LPAREN2, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5457), 1, + anon_sym_STAR, + ACTIONS(7013), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, + ACTIONS(7017), 1, + anon_sym_AMP_AMP, + ACTIONS(7019), 1, anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7682), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, + ACTIONS(7021), 1, + anon_sym_EQ, + STATE(3550), 1, + sym_parameter_list, + STATE(5245), 1, + sym__scope_resolution, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5916), 1, + sym__declarator, + STATE(6106), 1, + sym__abstract_declarator, + STATE(6767), 1, + sym_variadic_reference_declarator, + STATE(6768), 1, + sym_variadic_declarator, + STATE(7308), 1, + sym_ms_based_modifier, + ACTIONS(7015), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [117423] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6565), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, + ACTIONS(6567), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [176188] = 3, + ACTIONS(6569), 1, + anon_sym_AMP, + STATE(5245), 1, + sym__scope_resolution, + STATE(5815), 1, + sym__declarator, + STATE(7308), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [117508] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6101), 9, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(2695), 1, + anon_sym_STAR, + ACTIONS(2697), 1, + anon_sym_AMP, + ACTIONS(4792), 1, + sym_identifier, + ACTIONS(5475), 1, + anon_sym_COLON_COLON, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5318), 1, + sym__scope_resolution, + STATE(5879), 1, + sym__declarator, + STATE(7657), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [117593] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6565), 1, + anon_sym_STAR, + ACTIONS(6567), 1, + anon_sym_AMP_AMP, + ACTIONS(6569), 1, + anon_sym_AMP, + STATE(5245), 1, + sym__scope_resolution, + STATE(5849), 1, + sym__declarator, + STATE(7308), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [117678] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6493), 1, + anon_sym_AMP_AMP, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5245), 1, + sym__scope_resolution, + STATE(5657), 1, + sym__declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [117763] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(6023), 1, + sym_auto, + ACTIONS(6025), 1, + anon_sym_decltype, + ACTIONS(7009), 1, + anon_sym_LPAREN2, + ACTIONS(7011), 1, + anon_sym_LBRACK, + STATE(2818), 1, + sym_decltype_auto, + STATE(3956), 1, + sym_new_declarator, + STATE(4359), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5366), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6103), 28, + ACTIONS(5362), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -528082,12 +394662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -528100,1570 +394675,1292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [176233] = 26, + anon_sym_GT2, + [117830] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8278), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(6493), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [176324] = 26, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5245), 1, + sym__scope_resolution, + STATE(5597), 1, + sym__declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [117915] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(2695), 1, + anon_sym_STAR, + ACTIONS(2697), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8280), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(4792), 1, + sym_identifier, + ACTIONS(5475), 1, + anon_sym_COLON_COLON, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5318), 1, + sym__scope_resolution, + STATE(5901), 1, + sym__declarator, + STATE(7657), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118000] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6555), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(6557), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [176415] = 26, + ACTIONS(6559), 1, + anon_sym_AMP, + ACTIONS(6561), 1, + anon_sym_COLON_COLON, + STATE(5323), 1, + sym__scope_resolution, + STATE(5850), 1, + sym__declarator, + STATE(7249), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118085] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym___inline, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(7025), 1, + anon_sym___declspec, + ACTIONS(7027), 1, + sym_auto, + ACTIONS(7029), 1, + anon_sym_decltype, + ACTIONS(7031), 1, + anon_sym_virtual, + ACTIONS(7033), 1, + anon_sym_alignas, + STATE(3021), 1, + sym_decltype_auto, + ACTIONS(5908), 2, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(5910), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7023), 8, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + STATE(3897), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6792), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118162] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym___inline, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(7025), 1, + anon_sym___declspec, + ACTIONS(7027), 1, + sym_auto, + ACTIONS(7029), 1, + anon_sym_decltype, + ACTIONS(7031), 1, + anon_sym_virtual, + ACTIONS(7033), 1, + anon_sym_alignas, + STATE(3021), 1, + sym_decltype_auto, + ACTIONS(6055), 2, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8282), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LBRACK, + ACTIONS(6057), 3, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [176506] = 26, + ACTIONS(7023), 8, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + STATE(3901), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6792), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118239] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(6497), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8284), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6555), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(6557), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [176597] = 26, + ACTIONS(6559), 1, + anon_sym_AMP, + ACTIONS(6561), 1, + anon_sym_COLON_COLON, + STATE(5323), 1, + sym__scope_resolution, + STATE(5901), 1, + sym__declarator, + STATE(7249), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118324] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4780), 1, - anon_sym_RBRACK, - ACTIONS(5708), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(6497), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7682), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, + ACTIONS(6585), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, + ACTIONS(6587), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [176688] = 26, + ACTIONS(6589), 1, + anon_sym_AMP, + ACTIONS(6591), 1, + anon_sym_COLON_COLON, + STATE(5266), 1, + sym__scope_resolution, + STATE(5552), 1, + sym__declarator, + STATE(7229), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118409] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(2695), 1, + anon_sym_STAR, + ACTIONS(2697), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8286), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(4792), 1, + sym_identifier, + ACTIONS(5475), 1, + anon_sym_COLON_COLON, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5318), 1, + sym__scope_resolution, + STATE(5850), 1, + sym__declarator, + STATE(7657), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118494] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4792), 1, + sym_identifier, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6499), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(6501), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [176779] = 26, + ACTIONS(6503), 1, + anon_sym_AMP, + ACTIONS(6505), 1, + anon_sym_COLON_COLON, + STATE(5279), 1, + sym__scope_resolution, + STATE(6040), 1, + sym__declarator, + STATE(7365), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118579] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(6023), 1, + sym_auto, + ACTIONS(6025), 1, + anon_sym_decltype, + ACTIONS(7009), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(7011), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + STATE(2818), 1, + sym_decltype_auto, + STATE(3955), 1, + sym_new_declarator, + STATE(4336), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5384), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8288), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5382), 23, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [176870] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8290), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [176961] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [118646] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4792), 1, + sym_identifier, + ACTIONS(6497), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8292), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(6499), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(6501), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [177052] = 26, + ACTIONS(6503), 1, + anon_sym_AMP, + ACTIONS(6505), 1, + anon_sym_COLON_COLON, + STATE(5279), 1, + sym__scope_resolution, + STATE(5999), 1, + sym__declarator, + STATE(7365), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118731] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4564), 1, - anon_sym_RBRACK, - ACTIONS(5708), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5422), 1, + anon_sym_STAR, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(7013), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7682), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, + ACTIONS(7035), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [177143] = 26, + ACTIONS(7037), 1, + anon_sym_AMP, + ACTIONS(7039), 1, + anon_sym_EQ, + STATE(3605), 1, + sym_parameter_list, + STATE(5245), 1, + sym__scope_resolution, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5926), 1, + sym__declarator, + STATE(6110), 1, + sym__abstract_declarator, + STATE(6767), 1, + sym_variadic_reference_declarator, + STATE(6768), 1, + sym_variadic_declarator, + STATE(7308), 1, + sym_ms_based_modifier, + ACTIONS(7015), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [118830] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 1, - anon_sym_RBRACK, - ACTIONS(5708), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(6497), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7682), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, + ACTIONS(6585), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, + ACTIONS(6587), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [177234] = 26, + ACTIONS(6589), 1, + anon_sym_AMP, + ACTIONS(6591), 1, + anon_sym_COLON_COLON, + STATE(5266), 1, + sym__scope_resolution, + STATE(5550), 1, + sym__declarator, + STATE(7229), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118915] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(6881), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8294), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(3878), 2, sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + sym_initializer_list, + ACTIONS(5667), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177325] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(5665), 29, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8296), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [177416] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4588), 1, - anon_sym_RBRACK, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, anon_sym_GT_EQ, - ACTIONS(7682), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7688), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [118971] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5773), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177507] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(5771), 33, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8298), 1, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [177598] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8220), 1, - anon_sym_SLASH, - ACTIONS(8254), 1, - anon_sym_PIPE, - ACTIONS(8258), 1, - anon_sym_AMP, - ACTIONS(8264), 1, anon_sym_GT_EQ, - ACTIONS(8270), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(8272), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8276), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8300), 1, - anon_sym_COLON, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [119021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5872), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8218), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8250), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8252), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8256), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8260), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8262), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177689] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(5870), 33, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8302), 1, anon_sym_COMMA, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [177780] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4566), 1, - anon_sym_RBRACK, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, anon_sym_GT_EQ, - ACTIONS(7682), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [177871] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [119071] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(4568), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8304), 1, + ACTIONS(4571), 1, anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(5950), 1, + anon_sym_LT, + STATE(3784), 1, + sym_template_argument_list, + ACTIONS(4561), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4564), 3, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [177962] = 26, + ACTIONS(4559), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [119133] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(4085), 1, + anon_sym_SEMI, + ACTIONS(5950), 1, + anon_sym_LT, + STATE(3513), 1, + sym_template_argument_list, + ACTIONS(4067), 5, anon_sym_LPAREN2, - ACTIONS(6127), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(4059), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [119191] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + STATE(1726), 1, + sym_template_argument_list, + ACTIONS(5532), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8306), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [178053] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(5530), 29, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8308), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [178144] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8220), 1, - anon_sym_SLASH, - ACTIONS(8254), 1, - anon_sym_PIPE, - ACTIONS(8258), 1, - anon_sym_AMP, - ACTIONS(8264), 1, - anon_sym_GT_EQ, - ACTIONS(8270), 1, anon_sym_QMARK, - ACTIONS(8272), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, - anon_sym_bitor, - ACTIONS(8276), 1, - anon_sym_bitand, - ACTIONS(8310), 1, - anon_sym_COLON, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8218), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8250), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8252), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8256), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8260), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8262), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [178235] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [119245] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4760), 1, - anon_sym_RBRACK, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7682), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, + ACTIONS(5793), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7658), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5791), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7662), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [178326] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8312), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [178417] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [119307] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7041), 1, + anon_sym_typedef, + ACTIONS(3275), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3273), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_typename, + anon_sym_template, + [119359] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7043), 1, + anon_sym_typedef, + ACTIONS(3275), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3273), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_typename, + anon_sym_template, + [119411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6212), 9, + ACTIONS(4836), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -529673,9 +395970,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6214), 28, + ACTIONS(2828), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -529687,6 +395985,10 @@ 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_RBRACK, anon_sym_COLON, @@ -529702,465 +396004,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [178462] = 26, + [119461] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4768), 1, - anon_sym_RBRACK, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7682), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, anon_sym_LT, - [178553] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, + STATE(1726), 1, + sym_template_argument_list, + ACTIONS(5530), 11, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8314), 1, anon_sym_COMMA, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [178644] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4778), 1, - anon_sym_RBRACK, - ACTIONS(5708), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7682), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [178735] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4586), 1, - anon_sym_RBRACK, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5532), 28, anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7682), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [178826] = 26, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [119517] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8316), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, anon_sym_LT, - [178917] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, + STATE(3513), 1, + sym_template_argument_list, + ACTIONS(4067), 6, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8318), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [179008] = 26, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(4059), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [119573] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + ACTIONS(6892), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8220), 1, - anon_sym_SLASH, - ACTIONS(8254), 1, - anon_sym_PIPE, - ACTIONS(8258), 1, - anon_sym_AMP, - ACTIONS(8264), 1, - anon_sym_GT_EQ, - ACTIONS(8270), 1, - anon_sym_QMARK, - ACTIONS(8272), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, - anon_sym_bitor, - ACTIONS(8276), 1, - anon_sym_bitand, - ACTIONS(8320), 1, - anon_sym_COLON, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8218), 2, + STATE(3920), 1, + sym_template_argument_list, + ACTIONS(4082), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4067), 4, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8250), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8252), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8256), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8260), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8262), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [179099] = 3, + anon_sym_SEMI, + ACTIONS(4059), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [119633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6171), 9, + ACTIONS(6109), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -530170,9 +396169,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6173), 28, + ACTIONS(6107), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -530184,6 +396184,10 @@ 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_RBRACK, anon_sym_COLON, @@ -530199,1911 +396203,1722 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [179144] = 26, + [119683] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 1, - anon_sym_RBRACK, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7682), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, + ACTIONS(5759), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [179235] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(5757), 25, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8322), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [179326] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8220), 1, - anon_sym_SLASH, - ACTIONS(8254), 1, - anon_sym_PIPE, - ACTIONS(8258), 1, - anon_sym_AMP, - ACTIONS(8264), 1, anon_sym_GT_EQ, - ACTIONS(8270), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(8272), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, - anon_sym_bitor, - ACTIONS(8276), 1, - anon_sym_bitand, - ACTIONS(8324), 1, - anon_sym_COLON, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8218), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8250), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8252), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8256), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8260), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8262), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [179417] = 26, + [119747] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8326), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(5809), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [179508] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(5807), 25, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8328), 1, anon_sym_COMMA, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [179599] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4572), 1, - anon_sym_RBRACK, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, anon_sym_GT_EQ, - ACTIONS(7682), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [179690] = 26, + [119811] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(4568), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(5950), 1, + anon_sym_LT, + STATE(3920), 1, + sym_template_argument_list, + ACTIONS(4561), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4564), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + ACTIONS(4559), 32, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8330), 1, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [119871] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(4615), 1, anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(5950), 1, + anon_sym_LT, + ACTIONS(6892), 1, + anon_sym_LBRACK, + STATE(3784), 1, + sym_template_argument_list, + ACTIONS(4082), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4067), 3, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [179781] = 26, + ACTIONS(4059), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [119933] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4574), 1, - anon_sym_RBRACK, - ACTIONS(5708), 1, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(6881), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7682), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(3855), 2, sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, + sym_initializer_list, + ACTIONS(5641), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [179872] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(5639), 29, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8332), 1, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [179963] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, anon_sym_GT_EQ, - ACTIONS(7682), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7688), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8334), 1, - anon_sym_RBRACK, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [119989] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + STATE(3860), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5610), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [180054] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(5608), 29, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8336), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [180145] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8338), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [180236] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [120045] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(6881), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8340), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(3840), 2, sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + sym_initializer_list, + ACTIONS(5659), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5657), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [180327] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, anon_sym_GT_EQ, - ACTIONS(7682), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - ACTIONS(8342), 1, - anon_sym_RBRACK, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [120101] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, + ACTIONS(5777), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7658), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5775), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7662), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [180418] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [120163] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8344), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(5724), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [180509] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8346), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_not_eq, + [120227] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6077), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6075), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [180600] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [120277] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8220), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(7055), 1, anon_sym_SLASH, - ACTIONS(8254), 1, + ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(8258), 1, + ACTIONS(7065), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7071), 1, anon_sym_GT_EQ, - ACTIONS(8270), 1, + ACTIONS(7075), 1, + anon_sym_SEMI, + ACTIONS(7077), 1, anon_sym_QMARK, - ACTIONS(8272), 1, + ACTIONS(7079), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, + ACTIONS(7081), 1, anon_sym_bitor, - ACTIONS(8276), 1, + ACTIONS(7083), 1, anon_sym_bitand, - ACTIONS(8348), 1, - anon_sym_COLON, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6975), 2, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6139), 1, + aux_sym_field_declaration_repeat1, + STATE(7464), 1, + sym_attribute_specifier, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, + ACTIONS(7051), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8218), 2, + ACTIONS(7053), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8250), 2, + ACTIONS(7057), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8252), 2, + ACTIONS(7059), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8256), 2, + ACTIONS(7063), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8266), 2, + ACTIONS(7073), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8260), 3, + ACTIONS(7067), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8262), 3, + ACTIONS(7069), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [180691] = 26, + [120380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(6013), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6011), 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, - ACTIONS(7537), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8350), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [120429] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6049), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6047), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [180782] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8352), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [120478] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6005), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6003), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [180873] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8354), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [120527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6105), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6103), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [180964] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [120576] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(7055), 1, anon_sym_SLASH, - ACTIONS(7666), 1, + ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(7670), 1, + ACTIONS(7065), 1, anon_sym_AMP, - ACTIONS(7676), 1, + ACTIONS(7071), 1, anon_sym_GT_EQ, - ACTIONS(7682), 1, + ACTIONS(7077), 1, anon_sym_QMARK, - ACTIONS(7684), 1, + ACTIONS(7079), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, + ACTIONS(7081), 1, anon_sym_bitor, - ACTIONS(7688), 1, + ACTIONS(7083), 1, anon_sym_bitand, - ACTIONS(8356), 1, - anon_sym_RBRACK, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(7085), 1, + anon_sym_SEMI, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6152), 1, + aux_sym_field_declaration_repeat1, + STATE(7307), 1, + sym_attribute_specifier, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, + ACTIONS(7051), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7658), 2, + ACTIONS(7053), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7662), 2, + ACTIONS(7057), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7664), 2, + ACTIONS(7059), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7668), 2, + ACTIONS(7063), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7678), 2, + ACTIONS(7073), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7672), 3, + ACTIONS(7067), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7674), 3, + ACTIONS(7069), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181055] = 26, + [120679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(5934), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5932), 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, - ACTIONS(7537), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8358), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [120728] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6097), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6095), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [181146] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [120777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(6101), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6099), 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, - ACTIONS(7537), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8360), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [120826] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6001), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5999), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [181237] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [120875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(5857), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5855), 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, - ACTIONS(7537), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8362), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [120924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2854), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2852), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_typename, + anon_sym_template, + [120973] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6073), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6071), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [181328] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [121022] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(7055), 1, anon_sym_SLASH, - ACTIONS(7666), 1, + ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(7670), 1, + ACTIONS(7065), 1, anon_sym_AMP, - ACTIONS(7676), 1, + ACTIONS(7071), 1, anon_sym_GT_EQ, - ACTIONS(7682), 1, + ACTIONS(7077), 1, anon_sym_QMARK, - ACTIONS(7684), 1, + ACTIONS(7079), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, + ACTIONS(7081), 1, anon_sym_bitor, - ACTIONS(7688), 1, + ACTIONS(7083), 1, anon_sym_bitand, - ACTIONS(8364), 1, - anon_sym_RBRACK, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(7087), 1, + anon_sym_SEMI, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6161), 1, + aux_sym_field_declaration_repeat1, + STATE(7927), 1, + sym_attribute_specifier, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, + ACTIONS(7051), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7658), 2, + ACTIONS(7053), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7662), 2, + ACTIONS(7057), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7664), 2, + ACTIONS(7059), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7668), 2, + ACTIONS(7063), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7678), 2, + ACTIONS(7073), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7672), 3, + ACTIONS(7067), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7674), 3, + ACTIONS(7069), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181419] = 26, + [121125] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(7027), 1, + sym_auto, + ACTIONS(7029), 1, + anon_sym_decltype, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(7093), 1, + anon_sym_STAR, + ACTIONS(7095), 1, + anon_sym_AMP_AMP, + ACTIONS(7097), 1, + anon_sym_AMP, + ACTIONS(7099), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + STATE(3021), 1, + sym_decltype_auto, + STATE(3506), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5468), 1, + sym__abstract_declarator, + STATE(4092), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6792), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7089), 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, + [121202] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(7101), 1, + anon_sym_COLON, + STATE(3033), 1, + sym_attribute_specifier, + STATE(3588), 1, + sym__enum_base_clause, + STATE(3632), 1, + sym_enumerator_list, + ACTIONS(5449), 5, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(5451), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_operator, + [121263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5853), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5851), 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, - ACTIONS(7537), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8366), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [121312] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(7101), 1, + anon_sym_COLON, + STATE(3101), 1, + sym_attribute_specifier, + STATE(3524), 1, + sym__enum_base_clause, + STATE(3648), 1, + sym_enumerator_list, + ACTIONS(5463), 5, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(5465), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_operator, + [121373] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5890), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5888), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [181510] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [121422] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4692), 1, - anon_sym_RBRACK, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, + ACTIONS(7103), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7105), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5396), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7666), 1, anon_sym_PIPE, - ACTIONS(7670), 1, anon_sym_AMP, - ACTIONS(7676), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5398), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(7682), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, anon_sym_bitor, - ACTIONS(7688), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [121475] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5026), 1, + sym_literal_suffix, + ACTIONS(4069), 15, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7658), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(4061), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7662), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [181601] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8368), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [121526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6045), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6043), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [181692] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [121575] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8220), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(7055), 1, anon_sym_SLASH, - ACTIONS(8254), 1, + ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(8258), 1, + ACTIONS(7065), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7071), 1, anon_sym_GT_EQ, - ACTIONS(8270), 1, + ACTIONS(7077), 1, anon_sym_QMARK, - ACTIONS(8272), 1, + ACTIONS(7079), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, + ACTIONS(7081), 1, anon_sym_bitor, - ACTIONS(8276), 1, + ACTIONS(7083), 1, anon_sym_bitand, - ACTIONS(8370), 1, - anon_sym_COLON, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(7107), 1, + anon_sym_SEMI, + STATE(2697), 1, sym_argument_list, - ACTIONS(6975), 2, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6190), 1, + aux_sym_field_declaration_repeat1, + STATE(7268), 1, + sym_attribute_specifier, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, + ACTIONS(7051), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8218), 2, + ACTIONS(7053), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8250), 2, + ACTIONS(7057), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8252), 2, + ACTIONS(7059), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8256), 2, + ACTIONS(7063), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8266), 2, + ACTIONS(7073), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8260), 3, + ACTIONS(7067), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8262), 3, + ACTIONS(7069), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181783] = 10, + [121678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6185), 8, + ACTIONS(6009), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -532112,8 +397927,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6183), 20, + anon_sym_DOT, + ACTIONS(6007), 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, @@ -532124,6 +397943,11 @@ 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_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -532133,219 +397957,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [181842] = 24, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [121727] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(7027), 1, + sym_auto, + ACTIONS(7029), 1, + anon_sym_decltype, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(7093), 1, + anon_sym_STAR, + ACTIONS(7095), 1, + anon_sym_AMP_AMP, + ACTIONS(7097), 1, + anon_sym_AMP, + ACTIONS(7099), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(8220), 1, + STATE(3021), 1, + sym_decltype_auto, + STATE(3506), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5519), 1, + sym__abstract_declarator, + STATE(4088), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6792), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7109), 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, + [121804] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5918), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8254), 1, anon_sym_PIPE, - ACTIONS(8258), 1, anon_sym_AMP, - ACTIONS(8264), 1, - anon_sym_GT_EQ, - ACTIONS(8272), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, - anon_sym_bitor, - ACTIONS(8276), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8218), 2, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5916), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8250), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8252), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8256), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8266), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6400), 3, - anon_sym_DOT_DOT_DOT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(8260), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8262), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [181929] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [121853] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(7001), 1, + anon_sym_LT, + STATE(2516), 1, + sym_template_argument_list, + ACTIONS(4059), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(7537), 1, + anon_sym_LT_EQ, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4067), 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8372), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [121908] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5922), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5920), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [182020] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8220), 1, - anon_sym_SLASH, - ACTIONS(8254), 1, - anon_sym_PIPE, - ACTIONS(8258), 1, - anon_sym_AMP, - ACTIONS(8264), 1, anon_sym_GT_EQ, - ACTIONS(8270), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(8272), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8276), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8374), 1, - anon_sym_COLON, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [121957] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6069), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8218), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6067), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8250), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8252), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8256), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8260), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8262), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [182111] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6196), 8, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [122006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6061), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -532354,8 +398220,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 20, + anon_sym_DOT, + ACTIONS(6059), 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, @@ -532366,6 +398236,11 @@ 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_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -532375,831 +398250,1017 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [182170] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [122055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(6089), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8376), 1, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(6087), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [182261] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4623), 1, - anon_sym_RBRACK, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, anon_sym_GT_EQ, - ACTIONS(7682), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [122104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6021), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7658), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6019), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7662), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [182352] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [122153] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(7099), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(7111), 1, + anon_sym_STAR, + ACTIONS(7113), 1, + anon_sym_AMP_AMP, + ACTIONS(7115), 1, + anon_sym_AMP, + ACTIONS(7117), 1, + sym_auto, + ACTIONS(7119), 1, + anon_sym_decltype, + STATE(3497), 1, + sym_parameter_list, + STATE(4493), 1, + sym_decltype_auto, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5493), 1, + sym__abstract_declarator, + STATE(4177), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6671), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7109), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [122230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5926), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5924), 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, - ACTIONS(7537), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8378), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [122279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2798), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2796), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_typename, + anon_sym_template, + [122328] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5997), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5995), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [182443] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [122377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(6085), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6083), 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, - ACTIONS(7537), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8380), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [122426] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5954), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5952), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [182534] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [122475] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(7099), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(7117), 1, + sym_auto, + ACTIONS(7119), 1, + anon_sym_decltype, + ACTIONS(7121), 1, + anon_sym_STAR, + ACTIONS(7123), 1, + anon_sym_AMP_AMP, + ACTIONS(7125), 1, + anon_sym_AMP, + STATE(3397), 1, + sym_parameter_list, + STATE(4493), 1, + sym_decltype_auto, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5482), 1, + sym__abstract_declarator, + STATE(4068), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6671), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7089), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [122552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5958), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8382), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5956), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [182625] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [122601] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5422), 1, + anon_sym_STAR, + ACTIONS(5424), 1, + anon_sym_AMP_AMP, + ACTIONS(5426), 1, + anon_sym_AMP, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(7013), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8220), 1, + STATE(3605), 1, + sym_parameter_list, + STATE(5245), 1, + sym__scope_resolution, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5831), 1, + sym__declarator, + STATE(6084), 1, + sym__abstract_declarator, + STATE(6639), 1, + sym_variadic_declarator, + STATE(7308), 1, + sym_ms_based_modifier, + ACTIONS(7127), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [122694] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6065), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8254), 1, anon_sym_PIPE, - ACTIONS(8258), 1, anon_sym_AMP, - ACTIONS(8264), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6063), 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, - ACTIONS(8270), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(8272), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8276), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8384), 1, - anon_sym_COLON, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [122743] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5962), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8218), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5960), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8250), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8252), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8256), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8260), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8262), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [182716] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8386), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [122792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5930), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5928), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [182807] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7539), 1, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7541), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8388), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [122841] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2846), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2844), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_typename, + anon_sym_template, + [122890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6041), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [182898] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(6039), 32, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8390), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [182989] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4700), 1, - anon_sym_RBRACK, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, anon_sym_GT_EQ, - ACTIONS(7682), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7688), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [122939] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2882), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2880), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_typename, + anon_sym_template, + [122988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2806), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2804), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_typename, + anon_sym_template, + [123037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3170), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3168), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_typename, + anon_sym_template, + [123086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5880), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7674), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [183080] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(5878), 32, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8392), 1, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [183171] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8220), 1, - anon_sym_SLASH, - ACTIONS(8254), 1, - anon_sym_PIPE, - ACTIONS(8258), 1, - anon_sym_AMP, - ACTIONS(8264), 1, anon_sym_GT_EQ, - ACTIONS(8270), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(8272), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, - anon_sym_bitor, - ACTIONS(8276), 1, - anon_sym_bitand, - ACTIONS(8394), 1, - anon_sym_COLON, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8218), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8250), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8252), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8256), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8260), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8262), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [183262] = 17, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [123135] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, + ACTIONS(6681), 1, anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(7222), 1, - sym_auto, - ACTIONS(7224), 1, - anon_sym_decltype, - ACTIONS(8396), 1, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7111), 1, anon_sym_STAR, - ACTIONS(8398), 1, + ACTIONS(7113), 1, anon_sym_AMP_AMP, - ACTIONS(8400), 1, + ACTIONS(7115), 1, anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - STATE(2636), 1, - sym_decltype_auto, - STATE(4704), 1, + ACTIONS(7117), 1, + sym_auto, + ACTIONS(7119), 1, + anon_sym_decltype, + STATE(3497), 1, sym_parameter_list, - STATE(6905), 1, + STATE(4493), 1, + sym_decltype_auto, + STATE(5399), 1, sym__function_declarator_seq, - STATE(7186), 1, + STATE(5532), 1, sym__abstract_declarator, - STATE(5489), 2, + STATE(4157), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7497), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8402), 11, + ACTIONS(6671), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -533211,300 +399272,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [183335] = 26, + ACTIONS(7089), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [123212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(7105), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5374), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, anon_sym_PIPE, - ACTIONS(7529), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8406), 1, - anon_sym_RBRACE, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [183426] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(5376), 30, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8408), 1, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [183517] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8410), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [183608] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(6254), 1, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8220), 1, - anon_sym_SLASH, - ACTIONS(8254), 1, - anon_sym_PIPE, - ACTIONS(8258), 1, - anon_sym_AMP, - ACTIONS(8264), 1, - anon_sym_GT_EQ, - ACTIONS(8270), 1, anon_sym_QMARK, - ACTIONS(8272), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, + anon_sym_or, anon_sym_bitor, - ACTIONS(8276), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8218), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8250), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8252), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8256), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8260), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8262), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [183699] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(8220), 1, - anon_sym_SLASH, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8218), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6196), 7, + [123263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 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(6194), 18, + anon_sym_DOT, + ACTIONS(6091), 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, @@ -533513,6 +399359,11 @@ 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_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -533522,527 +399373,562 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [183762] = 23, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [123312] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(8220), 1, - anon_sym_SLASH, - ACTIONS(8254), 1, - anon_sym_PIPE, - ACTIONS(8258), 1, - anon_sym_AMP, - ACTIONS(8264), 1, - anon_sym_GT_EQ, - ACTIONS(8272), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, - anon_sym_bitor, - ACTIONS(8276), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8218), 2, + ACTIONS(5457), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8252), 2, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8256), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8260), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8262), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 5, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(7013), 1, anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_or, - [183847] = 26, + STATE(3550), 1, + sym_parameter_list, + STATE(5245), 1, + sym__scope_resolution, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5831), 1, + sym__declarator, + STATE(6054), 1, + sym__abstract_declarator, + STATE(6639), 1, + sym_variadic_declarator, + STATE(7308), 1, + sym_ms_based_modifier, + ACTIONS(7127), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [123405] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(7099), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8412), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7117), 1, + sym_auto, + ACTIONS(7119), 1, + anon_sym_decltype, + ACTIONS(7121), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(7123), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [183938] = 22, + ACTIONS(7125), 1, + anon_sym_AMP, + STATE(3397), 1, + sym_parameter_list, + STATE(4493), 1, + sym_decltype_auto, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5476), 1, + sym__abstract_declarator, + STATE(4081), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6671), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7109), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [123482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(8220), 1, - anon_sym_SLASH, - ACTIONS(8254), 1, - anon_sym_PIPE, - ACTIONS(8258), 1, + ACTIONS(7131), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(7129), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_typename, + anon_sym_template, + [123531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3190), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3188), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_typename, + anon_sym_template, + [123580] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(7135), 2, anon_sym_AMP, - ACTIONS(8264), 1, - anon_sym_GT_EQ, - ACTIONS(8272), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, - anon_sym_bitor, - ACTIONS(8276), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8218), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8256), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8260), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8262), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 7, + anon_sym_LBRACK, + STATE(4344), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4350), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5311), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6792), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7133), 20, anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - [184021] = 26, + 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, + [123638] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, + ACTIONS(7147), 1, anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7535), 1, + ACTIONS(7157), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, + ACTIONS(7161), 1, anon_sym_QMARK, - ACTIONS(7539), 1, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, anon_sym_bitor, - ACTIONS(7541), 1, + ACTIONS(7167), 1, anon_sym_bitand, - ACTIONS(8414), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(7145), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [184112] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6196), 1, - anon_sym_PIPE, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(8220), 1, - anon_sym_SLASH, - ACTIONS(8258), 1, - anon_sym_AMP, - ACTIONS(8264), 1, - anon_sym_GT_EQ, - ACTIONS(8272), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8276), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8218), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(7149), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8266), 2, + ACTIONS(7159), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8260), 3, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8262), 3, + ACTIONS(7155), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - [184193] = 26, + ACTIONS(5944), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [123732] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, + ACTIONS(7147), 1, anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7535), 1, + ACTIONS(7157), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, anon_sym_bitor, - ACTIONS(7541), 1, + ACTIONS(7167), 1, anon_sym_bitand, - ACTIONS(8416), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(7145), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, + ACTIONS(7149), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7531), 3, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7533), 3, + ACTIONS(7155), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [184284] = 26, + ACTIONS(5892), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [123822] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym___inline, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(7025), 1, + anon_sym___declspec, + ACTIONS(7031), 1, + anon_sym_virtual, + ACTIONS(7033), 1, + anon_sym_alignas, + ACTIONS(6288), 2, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8418), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_LBRACK, + ACTIONS(6290), 3, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [184375] = 26, + ACTIONS(7023), 8, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + STATE(3906), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6792), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [123890] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, + ACTIONS(7147), 1, anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7535), 1, + ACTIONS(7157), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, anon_sym_bitor, - ACTIONS(7541), 1, + ACTIONS(7167), 1, anon_sym_bitand, - ACTIONS(8420), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(7145), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, + ACTIONS(7149), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7531), 3, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7533), 3, + ACTIONS(7155), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [184466] = 6, + ACTIONS(5904), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [123980] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8425), 1, - anon_sym_const, - ACTIONS(5314), 2, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(6705), 1, + anon_sym_LT, + STATE(1726), 1, + sym_template_argument_list, + ACTIONS(5324), 4, anon_sym_AMP, anon_sym_LBRACK, - STATE(5353), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(8422), 11, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4085), 33, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -534053,236 +399939,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5316), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [184517] = 20, + [124034] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6196), 1, - anon_sym_PIPE, - ACTIONS(6973), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(8220), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(8258), 1, - anon_sym_AMP, - ACTIONS(8264), 1, - anon_sym_GT_EQ, - ACTIONS(8272), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8276), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6975), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8218), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8260), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8262), 3, + ACTIONS(5724), 5, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 10, + ACTIONS(5722), 21, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_COLON, + anon_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, - [184596] = 26, + anon_sym_bitand, + anon_sym_not_eq, + [124102] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym___inline, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(7025), 1, + anon_sym___declspec, + ACTIONS(7031), 1, + anon_sym_virtual, + ACTIONS(7033), 1, + anon_sym_alignas, + ACTIONS(6209), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(6211), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7023), 8, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + STATE(3906), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6792), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [124170] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8220), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(8254), 1, - anon_sym_PIPE, - ACTIONS(8258), 1, - anon_sym_AMP, - ACTIONS(8264), 1, - anon_sym_GT_EQ, - ACTIONS(8270), 1, - anon_sym_QMARK, - ACTIONS(8272), 1, + ACTIONS(7163), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, - anon_sym_bitor, - ACTIONS(8276), 1, - anon_sym_bitand, - ACTIONS(8428), 1, - anon_sym_COLON, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6975), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8218), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8250), 2, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5724), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8252), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8256), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8260), 3, 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, - ACTIONS(8262), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [184687] = 26, + [124242] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8220), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(8254), 1, + ACTIONS(7147), 1, anon_sym_PIPE, - ACTIONS(8258), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7157), 1, anon_sym_GT_EQ, - ACTIONS(8270), 1, + ACTIONS(7161), 1, anon_sym_QMARK, - ACTIONS(8272), 1, + ACTIONS(7163), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, + ACTIONS(7165), 1, anon_sym_bitor, - ACTIONS(8276), 1, + ACTIONS(7167), 1, anon_sym_bitand, - ACTIONS(8430), 1, - anon_sym_COLON, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6975), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8218), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8250), 2, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8252), 2, + ACTIONS(7145), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8256), 2, + ACTIONS(7149), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8266), 2, + ACTIONS(7159), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8260), 3, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8262), 3, + ACTIONS(7155), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [184778] = 3, + ACTIONS(6051), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [124336] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6151), 11, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(7007), 1, + anon_sym_LPAREN2, + STATE(3860), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5610), 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(6149), 26, + ACTIONS(5608), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -534290,9 +400215,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_LBRACE, + anon_sym_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -534305,52 +400233,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [184823] = 17, + [124390] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7222), 1, - sym_auto, - ACTIONS(7224), 1, - anon_sym_decltype, - ACTIONS(8396), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7167), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(8398), 1, + anon_sym_PERCENT, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8400), 1, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [124472] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6709), 1, + anon_sym_const, + ACTIONS(6712), 1, + anon_sym___inline, + ACTIONS(7175), 1, + anon_sym___attribute__, + ACTIONS(7178), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7181), 1, + anon_sym___declspec, + ACTIONS(7184), 1, + anon_sym_virtual, + ACTIONS(7187), 1, + anon_sym_alignas, + ACTIONS(6247), 2, anon_sym_AMP, - ACTIONS(8404), 1, anon_sym_LBRACK, - STATE(2636), 1, - sym_decltype_auto, - STATE(4704), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7181), 1, - sym__abstract_declarator, - STATE(5480), 2, + ACTIONS(6249), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7172), 8, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + STATE(3906), 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_repeat1, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7419), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8402), 11, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7169), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -534362,247 +400350,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [184896] = 26, + [124540] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, + ACTIONS(7157), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8432), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(5724), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, + ACTIONS(7159), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [184987] = 26, + [124616] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, + ACTIONS(7147), 1, anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7535), 1, + ACTIONS(7157), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, anon_sym_bitor, - ACTIONS(7541), 1, + ACTIONS(7167), 1, anon_sym_bitand, - ACTIONS(8434), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(7145), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, + ACTIONS(7149), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7531), 3, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7533), 3, + ACTIONS(7155), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [185078] = 26, + ACTIONS(6027), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [124706] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, + ACTIONS(7147), 1, anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7535), 1, + ACTIONS(7157), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, + ACTIONS(7161), 1, anon_sym_QMARK, - ACTIONS(7539), 1, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, anon_sym_bitor, - ACTIONS(7541), 1, + ACTIONS(7167), 1, anon_sym_bitand, - ACTIONS(8436), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(7145), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, + ACTIONS(7149), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7531), 3, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7533), 3, + ACTIONS(7155), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [185169] = 17, + ACTIONS(6047), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [124800] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(8404), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(4566), 1, anon_sym_LBRACK, - ACTIONS(8438), 1, + ACTIONS(5950), 1, + anon_sym_LT, + STATE(4091), 1, + sym_template_argument_list, + ACTIONS(4561), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4564), 3, anon_sym_STAR, - ACTIONS(8440), 1, anon_sym_AMP_AMP, - ACTIONS(8442), 1, - anon_sym_AMP, - ACTIONS(8444), 1, - sym_auto, - ACTIONS(8446), 1, - anon_sym_decltype, - STATE(4649), 1, - sym_parameter_list, - STATE(6028), 1, - sym_decltype_auto, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7213), 1, - sym__abstract_declarator, - STATE(5501), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7419), 7, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(8402), 11, + ACTIONS(4559), 31, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -534613,164 +400587,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [185242] = 26, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_operator, + [124858] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(7007), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8448), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(3855), 2, sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + sym_initializer_list, + ACTIONS(5641), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5639), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [185333] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4744), 1, - anon_sym_RBRACK, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP, - ACTIONS(7676), 1, anon_sym_GT_EQ, - ACTIONS(7682), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7658), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7662), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7664), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7668), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [185424] = 9, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [124912] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7156), 1, - anon_sym_LBRACE, - ACTIONS(8450), 1, - anon_sym_COLON, - STATE(3962), 1, - sym_attribute_specifier, - STATE(4467), 1, - sym__enum_base_clause, - STATE(4478), 1, - sym_enumerator_list, - ACTIONS(5802), 3, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(6705), 1, + anon_sym_LT, + STATE(1726), 1, + sym_template_argument_list, + ACTIONS(4559), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5800), 28, + anon_sym_COLON, + ACTIONS(4564), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -534782,6 +400678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, sym_auto, @@ -534791,35 +400689,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [185481] = 9, + [124966] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7156), 1, - anon_sym_LBRACE, - ACTIONS(8450), 1, - anon_sym_COLON, - STATE(3969), 1, - sym_attribute_specifier, - STATE(4464), 1, - sym__enum_base_clause, - STATE(4480), 1, - sym_enumerator_list, - ACTIONS(5794), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5792), 28, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4981), 1, + anon_sym_SEMI, + ACTIONS(4957), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, + ACTIONS(4955), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -534830,236 +400728,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [185538] = 26, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [125016] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4981), 1, + anon_sym_SEMI, + ACTIONS(4957), 5, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8452), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [185629] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4955), 33, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8454), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [185720] = 26, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [125068] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8220), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(8254), 1, + ACTIONS(7147), 1, anon_sym_PIPE, - ACTIONS(8258), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7157), 1, anon_sym_GT_EQ, - ACTIONS(8270), 1, + ACTIONS(7161), 1, anon_sym_QMARK, - ACTIONS(8272), 1, + ACTIONS(7163), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, + ACTIONS(7165), 1, anon_sym_bitor, - ACTIONS(8276), 1, + ACTIONS(7167), 1, anon_sym_bitand, - ACTIONS(8456), 1, - anon_sym_COLON, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(7190), 1, + anon_sym_COMMA, + ACTIONS(7192), 1, + anon_sym_SEMI, + ACTIONS(7194), 1, + anon_sym_RBRACE, + STATE(2697), 1, sym_argument_list, - ACTIONS(6975), 2, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6801), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8218), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8250), 2, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8252), 2, + ACTIONS(7145), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8256), 2, + ACTIONS(7149), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8266), 2, + ACTIONS(7159), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8260), 3, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8262), 3, + ACTIONS(7155), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [185811] = 3, + [125168] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6456), 18, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(7007), 1, + anon_sym_LPAREN2, + STATE(3840), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5659), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(6454), 19, + ACTIONS(5657), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -535067,321 +400883,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [185856] = 26, + [125222] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8220), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(8254), 1, - anon_sym_PIPE, - ACTIONS(8258), 1, - anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7157), 1, anon_sym_GT_EQ, - ACTIONS(8270), 1, - anon_sym_QMARK, - ACTIONS(8272), 1, + ACTIONS(7163), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, - anon_sym_bitor, - ACTIONS(8276), 1, - anon_sym_bitand, - ACTIONS(8458), 1, - anon_sym_COLON, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6975), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(5724), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8218), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8250), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8252), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8256), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8266), 2, + ACTIONS(7159), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8260), 3, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8262), 3, + ACTIONS(7155), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [185947] = 26, + ACTIONS(5722), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [125300] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, + ACTIONS(7147), 1, anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7535), 1, + ACTIONS(7157), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, anon_sym_bitor, - ACTIONS(7541), 1, + ACTIONS(7167), 1, anon_sym_bitand, - ACTIONS(8460), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(7145), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, + ACTIONS(7149), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7531), 3, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7533), 3, + ACTIONS(7155), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [186038] = 26, + ACTIONS(5815), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [125390] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8462), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, + ACTIONS(7159), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, + ACTIONS(5724), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [186129] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6492), 1, - anon_sym_COLON, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8220), 1, - anon_sym_SLASH, - ACTIONS(8254), 1, - anon_sym_PIPE, - ACTIONS(8258), 1, - anon_sym_AMP, - ACTIONS(8264), 1, anon_sym_GT_EQ, - ACTIONS(8270), 1, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - ACTIONS(8272), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, - anon_sym_bitor, - ACTIONS(8276), 1, - anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8218), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8250), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8252), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8256), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8260), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8262), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [186220] = 17, + [125460] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(8404), 1, + ACTIONS(4598), 1, anon_sym_LBRACK, - ACTIONS(8438), 1, + ACTIONS(4591), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4594), 5, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(8440), 1, anon_sym_AMP_AMP, - ACTIONS(8442), 1, - anon_sym_AMP, - ACTIONS(8444), 1, - sym_auto, - ACTIONS(8446), 1, - anon_sym_decltype, - STATE(4649), 1, - sym_parameter_list, - STATE(6028), 1, - sym_decltype_auto, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7208), 1, - sym__abstract_declarator, - STATE(5493), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7497), 7, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(8402), 11, + anon_sym_COLON_COLON, + ACTIONS(4587), 32, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -535392,51 +401123,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [186293] = 14, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [125512] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(8220), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6975), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8218), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6196), 5, + ACTIONS(5724), 7, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6194), 16, + ACTIONS(5722), 21, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + 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, @@ -535445,921 +401184,1192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [186360] = 24, + [125578] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(8220), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(8254), 1, + ACTIONS(7147), 1, anon_sym_PIPE, - ACTIONS(8258), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7157), 1, anon_sym_GT_EQ, - ACTIONS(8272), 1, + ACTIONS(7163), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, + ACTIONS(7165), 1, anon_sym_bitor, - ACTIONS(8276), 1, + ACTIONS(7167), 1, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6975), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8218), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8250), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8252), 2, + ACTIONS(7145), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8256), 2, + ACTIONS(7149), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8266), 2, + ACTIONS(7159), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6496), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(8260), 3, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8262), 3, + ACTIONS(7155), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [186447] = 26, + ACTIONS(5722), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + [125666] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + ACTIONS(7196), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, + STATE(4091), 1, + sym_template_argument_list, + ACTIONS(4082), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4067), 3, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + ACTIONS(4059), 31, anon_sym_AMP, - ACTIONS(7676), 1, - anon_sym_GT_EQ, - ACTIONS(7682), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, - anon_sym_bitor, - ACTIONS(7688), 1, - anon_sym_bitand, - ACTIONS(8464), 1, - anon_sym_RBRACK, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_operator, + [125724] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(7007), 1, + anon_sym_LPAREN2, + STATE(3878), 2, sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, + sym_initializer_list, + ACTIONS(5667), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7658), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5665), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7662), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 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_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(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [186538] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [125778] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(7519), 1, + ACTIONS(7163), 1, anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8466), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, + ACTIONS(7159), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, + ACTIONS(5902), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5900), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, 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, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [186629] = 26, + [125850] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, + ACTIONS(7147), 1, anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7535), 1, + ACTIONS(7157), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, anon_sym_bitor, - ACTIONS(7541), 1, + ACTIONS(7167), 1, anon_sym_bitand, - ACTIONS(8468), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, + ACTIONS(7149), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7531), 3, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7533), 3, + ACTIONS(7155), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [186720] = 26, + ACTIONS(5722), 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, + [125936] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, + ACTIONS(5724), 1, anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7535), 1, + ACTIONS(7157), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7167), 1, anon_sym_bitand, - ACTIONS(8470), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, + ACTIONS(7149), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7531), 3, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7533), 3, + ACTIONS(7155), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [186811] = 26, + ACTIONS(5722), 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, + [126020] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(7055), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, + ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(7065), 1, anon_sym_AMP, - ACTIONS(7535), 1, + ACTIONS(7071), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, + ACTIONS(7079), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7081), 1, anon_sym_bitor, - ACTIONS(7541), 1, + ACTIONS(7083), 1, anon_sym_bitand, - ACTIONS(8472), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(7051), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7053), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, + ACTIONS(7057), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(7059), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, + ACTIONS(7063), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7531), 3, + ACTIONS(7073), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7067), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7533), 3, + ACTIONS(7069), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [186902] = 26, + ACTIONS(5904), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [126109] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4702), 1, - anon_sym_RBRACK, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(7666), 1, + ACTIONS(7147), 1, anon_sym_PIPE, - ACTIONS(7670), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7676), 1, + ACTIONS(7157), 1, anon_sym_GT_EQ, - ACTIONS(7682), 1, + ACTIONS(7161), 1, anon_sym_QMARK, - ACTIONS(7684), 1, + ACTIONS(7163), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, + ACTIONS(7165), 1, anon_sym_bitor, - ACTIONS(7688), 1, + ACTIONS(7167), 1, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(7198), 1, + anon_sym_COMMA, + ACTIONS(7200), 1, + anon_sym_RPAREN, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6788), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7658), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7662), 2, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7664), 2, + ACTIONS(7145), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7668), 2, + ACTIONS(7149), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7678), 2, + ACTIONS(7159), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7672), 3, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7674), 3, + ACTIONS(7155), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [186993] = 26, + [126206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, + ACTIONS(4751), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7666), 1, anon_sym_PIPE, - ACTIONS(7670), 1, anon_sym_AMP, - ACTIONS(7676), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(7682), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4753), 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(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7688), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8474), 1, - anon_sym_RBRACK, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [126253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4731), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7658), 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(4733), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7662), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7664), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7668), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7678), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7672), 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(7674), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [187084] = 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, + [126300] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4730), 1, - anon_sym_RBRACK, - ACTIONS(5708), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4047), 1, + anon_sym_LPAREN2, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5422), 1, + anon_sym_STAR, + ACTIONS(5424), 1, + anon_sym_AMP_AMP, + ACTIONS(5426), 1, + anon_sym_AMP, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(5430), 1, + anon_sym_LBRACK, + STATE(3605), 1, + sym_parameter_list, + STATE(5245), 1, + sym__scope_resolution, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5831), 1, + sym__declarator, + STATE(6084), 1, + sym__abstract_declarator, + STATE(7308), 1, + sym_ms_based_modifier, + ACTIONS(7127), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [126387] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7204), 1, + anon_sym_LPAREN2, + ACTIONS(7206), 5, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(7202), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [126436] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7660), 1, + ACTIONS(7055), 1, anon_sym_SLASH, - ACTIONS(7666), 1, + ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(7670), 1, + ACTIONS(7065), 1, anon_sym_AMP, - ACTIONS(7676), 1, + ACTIONS(7071), 1, anon_sym_GT_EQ, - ACTIONS(7682), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, + ACTIONS(7079), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, + ACTIONS(7081), 1, anon_sym_bitor, - ACTIONS(7688), 1, + ACTIONS(7083), 1, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7656), 2, + ACTIONS(7051), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7658), 2, + ACTIONS(7053), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7662), 2, + ACTIONS(7057), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7664), 2, + ACTIONS(7059), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7668), 2, + ACTIONS(7063), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7678), 2, + ACTIONS(7073), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7672), 3, + ACTIONS(7067), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7674), 3, + ACTIONS(7069), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187175] = 26, + ACTIONS(6027), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [126525] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5673), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(6304), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, + ACTIONS(6312), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(7208), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8220), 1, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(7216), 1, anon_sym_SLASH, - ACTIONS(8254), 1, + ACTIONS(7222), 1, anon_sym_PIPE, - ACTIONS(8258), 1, + ACTIONS(7226), 1, anon_sym_AMP, - ACTIONS(8264), 1, - anon_sym_GT_EQ, - ACTIONS(8270), 1, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7236), 1, anon_sym_QMARK, - ACTIONS(8272), 1, + ACTIONS(7238), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, + ACTIONS(7240), 1, anon_sym_bitor, - ACTIONS(8276), 1, + ACTIONS(7242), 1, anon_sym_bitand, - ACTIONS(8476), 1, - anon_sym_COLON, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(7246), 1, + anon_sym_GT2, + STATE(3410), 1, sym_argument_list, - ACTIONS(6975), 2, + STATE(3413), 1, + sym_subscript_argument_list, + STATE(6503), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6314), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, + ACTIONS(7212), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8218), 2, + ACTIONS(7214), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8250), 2, + ACTIONS(7218), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8252), 2, + ACTIONS(7220), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8256), 2, + ACTIONS(7224), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8260), 3, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8262), 3, + ACTIONS(7230), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [187266] = 18, + [126622] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7248), 1, + sym_identifier, + ACTIONS(7250), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(8220), 1, - anon_sym_SLASH, - ACTIONS(8264), 1, - anon_sym_GT_EQ, - ACTIONS(8272), 1, - anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6196), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8218), 2, + ACTIONS(7252), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8260), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8262), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + ACTIONS(7254), 1, 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, - [187341] = 26, + ACTIONS(7256), 1, + anon_sym_AMP, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6033), 1, + sym__field_declarator, + STATE(6092), 1, + sym_operator_name, + STATE(7431), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4469), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4582), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5865), 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(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [126699] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5673), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(6304), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6312), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(7208), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(7216), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, + ACTIONS(7222), 1, anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(7226), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7236), 1, anon_sym_QMARK, - ACTIONS(7539), 1, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, anon_sym_bitor, - ACTIONS(7541), 1, + ACTIONS(7242), 1, anon_sym_bitand, - ACTIONS(8478), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(7258), 1, + anon_sym_GT2, + STATE(3410), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(3413), 1, + sym_subscript_argument_list, + STATE(6688), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6314), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(7212), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7214), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, + ACTIONS(7218), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(7220), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, + ACTIONS(7224), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7531), 3, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7533), 3, + ACTIONS(7230), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [187432] = 26, + [126796] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7248), 1, + sym_identifier, + ACTIONS(7250), 1, + anon_sym_LPAREN2, + ACTIONS(7252), 1, + anon_sym_STAR, + ACTIONS(7254), 1, + anon_sym_AMP_AMP, + ACTIONS(7256), 1, + anon_sym_AMP, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6032), 1, + sym__field_declarator, + STATE(6092), 1, + sym_operator_name, + STATE(7431), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3936), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4586), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5865), 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(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [126873] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, + ACTIONS(7147), 1, anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7535), 1, + ACTIONS(7157), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, + ACTIONS(7161), 1, anon_sym_QMARK, - ACTIONS(7539), 1, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, anon_sym_bitor, - ACTIONS(7541), 1, + ACTIONS(7167), 1, anon_sym_bitand, - ACTIONS(8480), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(7198), 1, + anon_sym_COMMA, + ACTIONS(7260), 1, + anon_sym_RPAREN, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6675), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(7145), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, + ACTIONS(7149), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7531), 3, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7533), 3, + ACTIONS(7155), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187523] = 15, + [126970] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(8220), 1, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(8272), 1, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7198), 1, + anon_sym_COMMA, + ACTIONS(7262), 1, + anon_sym_RPAREN, + STATE(2697), 1, sym_argument_list, - ACTIONS(6975), 2, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6548), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8218), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6378), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6376), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - [187592] = 6, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127067] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(7070), 1, - anon_sym_LT, - STATE(2334), 1, - sym_template_argument_list, - ACTIONS(4276), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4284), 30, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7248), 1, + sym_identifier, + ACTIONS(7250), 1, anon_sym_LPAREN2, + ACTIONS(7252), 1, anon_sym_STAR, + ACTIONS(7254), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7256), 1, + anon_sym_AMP, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6032), 1, + sym__field_declarator, + STATE(6092), 1, + sym_operator_name, + STATE(7431), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4469), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4586), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5865), 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(3263), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -536370,279 +402380,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [187643] = 24, + [127144] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(8220), 1, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(8254), 1, + ACTIONS(7147), 1, anon_sym_PIPE, - ACTIONS(8258), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7157), 1, anon_sym_GT_EQ, - ACTIONS(8272), 1, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, + ACTIONS(7165), 1, anon_sym_bitor, - ACTIONS(8276), 1, + ACTIONS(7167), 1, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(7264), 1, + anon_sym_COMMA, + ACTIONS(7266), 1, + anon_sym_RBRACE, + STATE(2697), 1, sym_argument_list, - ACTIONS(6975), 2, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6678), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8218), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8250), 2, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8252), 2, + ACTIONS(7145), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8256), 2, + ACTIONS(7149), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8266), 2, + ACTIONS(7159), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6368), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(8260), 3, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8262), 3, + ACTIONS(7155), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187730] = 26, + [127241] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5673), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(6304), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6312), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(7208), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(7216), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, + ACTIONS(7222), 1, anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(7226), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7236), 1, anon_sym_QMARK, - ACTIONS(7539), 1, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, anon_sym_bitor, - ACTIONS(7541), 1, + ACTIONS(7242), 1, anon_sym_bitand, - ACTIONS(8482), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(7268), 1, + anon_sym_GT2, + STATE(3410), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(3413), 1, + sym_subscript_argument_list, + STATE(6776), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6314), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(7212), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7214), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, + ACTIONS(7218), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(7220), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, + ACTIONS(7224), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7531), 3, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7533), 3, + ACTIONS(7230), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [187821] = 26, + [127338] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5673), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(6304), 1, anon_sym_LBRACK, - ACTIONS(6476), 1, - anon_sym_COLON, - ACTIONS(6973), 1, + ACTIONS(6312), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(7208), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8220), 1, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(7216), 1, anon_sym_SLASH, - ACTIONS(8254), 1, + ACTIONS(7222), 1, anon_sym_PIPE, - ACTIONS(8258), 1, + ACTIONS(7226), 1, anon_sym_AMP, - ACTIONS(8264), 1, - anon_sym_GT_EQ, - ACTIONS(8270), 1, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7236), 1, anon_sym_QMARK, - ACTIONS(8272), 1, + ACTIONS(7238), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, + ACTIONS(7240), 1, anon_sym_bitor, - ACTIONS(8276), 1, + ACTIONS(7242), 1, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(7270), 1, + anon_sym_GT2, + STATE(3410), 1, sym_argument_list, - ACTIONS(6975), 2, + STATE(3413), 1, + sym_subscript_argument_list, + STATE(6783), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6314), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, + ACTIONS(7212), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8218), 2, + ACTIONS(7214), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8250), 2, + ACTIONS(7218), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8252), 2, + ACTIONS(7220), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8256), 2, + ACTIONS(7224), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8260), 3, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8262), 3, + ACTIONS(7230), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [187912] = 26, + [127435] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8220), 1, + ACTIONS(7272), 1, + anon_sym_COMMA, + ACTIONS(7278), 1, anon_sym_SLASH, - ACTIONS(8254), 1, + ACTIONS(7284), 1, anon_sym_PIPE, - ACTIONS(8258), 1, + ACTIONS(7288), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7294), 1, anon_sym_GT_EQ, - ACTIONS(8270), 1, + ACTIONS(7298), 1, + anon_sym_RBRACK, + ACTIONS(7300), 1, anon_sym_QMARK, - ACTIONS(8272), 1, + ACTIONS(7302), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, + ACTIONS(7304), 1, anon_sym_bitor, - ACTIONS(8276), 1, + ACTIONS(7306), 1, anon_sym_bitand, - ACTIONS(8484), 1, - anon_sym_COLON, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6975), 2, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6531), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, + ACTIONS(7274), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8218), 2, + ACTIONS(7276), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8250), 2, + ACTIONS(7280), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8252), 2, + ACTIONS(7282), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8256), 2, + ACTIONS(7286), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8266), 2, + ACTIONS(7296), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8260), 3, + ACTIONS(7290), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8262), 3, + ACTIONS(7292), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [188003] = 4, + [127532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5702), 1, - sym_literal_suffix, - ACTIONS(4286), 17, + ACTIONS(2138), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -536653,14 +402670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4278), 19, + ACTIONS(2136), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -536675,554 +402686,400 @@ 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_final, + anon_sym_override, anon_sym_GT2, - [188050] = 26, + anon_sym_requires, + [127579] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, + ACTIONS(7147), 1, anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7535), 1, + ACTIONS(7157), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, + ACTIONS(7161), 1, anon_sym_QMARK, - ACTIONS(7539), 1, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, anon_sym_bitor, - ACTIONS(7541), 1, + ACTIONS(7167), 1, anon_sym_bitand, - ACTIONS(8486), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(7198), 1, + anon_sym_COMMA, + ACTIONS(7308), 1, + anon_sym_RPAREN, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6851), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(7145), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [188141] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(8220), 1, - anon_sym_SLASH, - ACTIONS(8264), 1, - anon_sym_GT_EQ, - ACTIONS(8272), 1, - anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6196), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8218), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8262), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6194), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(7149), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [188214] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8488), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, + ACTIONS(7159), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7533), 3, + ACTIONS(7155), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [188305] = 26, + [127676] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8220), 1, + ACTIONS(7055), 1, anon_sym_SLASH, - ACTIONS(8254), 1, + ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(8258), 1, + ACTIONS(7065), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7071), 1, anon_sym_GT_EQ, - ACTIONS(8270), 1, + ACTIONS(7077), 1, anon_sym_QMARK, - ACTIONS(8272), 1, + ACTIONS(7079), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, + ACTIONS(7081), 1, anon_sym_bitor, - ACTIONS(8276), 1, + ACTIONS(7083), 1, anon_sym_bitand, - ACTIONS(8490), 1, - anon_sym_COLON, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + STATE(2697), 1, sym_argument_list, - ACTIONS(6975), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, + ACTIONS(7051), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8218), 2, + ACTIONS(7053), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8250), 2, + ACTIONS(7057), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8252), 2, + ACTIONS(7059), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8256), 2, + ACTIONS(7063), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8266), 2, + ACTIONS(7073), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8260), 3, + ACTIONS(5944), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(7067), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8262), 3, + ACTIONS(7069), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [188396] = 15, + [127769] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(7099), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(8220), 1, - anon_sym_SLASH, - ACTIONS(8272), 1, - anon_sym_LT_EQ_GT, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6975), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, + ACTIONS(7117), 1, + sym_auto, + ACTIONS(7119), 1, + anon_sym_decltype, + ACTIONS(7310), 1, + anon_sym_STAR, + ACTIONS(7312), 1, + anon_sym_AMP_AMP, + ACTIONS(7314), 1, + anon_sym_AMP, + STATE(3501), 1, + sym_parameter_list, + STATE(4493), 1, + sym_decltype_auto, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5707), 1, + sym__abstract_declarator, + STATE(4343), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7109), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(6671), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [127844] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2134), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8218), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6196), 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(6194), 15, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(2132), 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_COLON, + 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, - [188465] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(6127), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, - anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, - anon_sym_PIPE, - ACTIONS(7529), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, - anon_sym_QMARK, - ACTIONS(7539), 1, - anon_sym_bitor, - ACTIONS(7541), 1, - anon_sym_bitand, - ACTIONS(8492), 1, - anon_sym_RPAREN, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, - sym_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7523), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7527), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7531), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7533), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [188556] = 26, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [127891] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5673), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(6304), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6312), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(7208), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(7216), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, + ACTIONS(7222), 1, anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(7226), 1, anon_sym_AMP, - ACTIONS(7535), 1, - anon_sym_GT_EQ, - ACTIONS(7537), 1, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7236), 1, anon_sym_QMARK, - ACTIONS(7539), 1, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, anon_sym_bitor, - ACTIONS(7541), 1, + ACTIONS(7242), 1, anon_sym_bitand, - ACTIONS(8494), 1, - anon_sym_SEMI, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(7316), 1, + anon_sym_GT2, + STATE(3410), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(3413), 1, + sym_subscript_argument_list, + STATE(6608), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6314), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(7212), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7214), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, + ACTIONS(7218), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(7220), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, + ACTIONS(7224), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7531), 3, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7533), 3, + ACTIONS(7230), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [188647] = 24, + [127988] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(8220), 1, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(8254), 1, + ACTIONS(7147), 1, anon_sym_PIPE, - ACTIONS(8258), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7157), 1, anon_sym_GT_EQ, - ACTIONS(8272), 1, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, + ACTIONS(7165), 1, anon_sym_bitor, - ACTIONS(8276), 1, + ACTIONS(7167), 1, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(7318), 1, + anon_sym_COMMA, + ACTIONS(7320), 1, + anon_sym_RBRACE, + STATE(2697), 1, sym_argument_list, - ACTIONS(6975), 2, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6770), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8216), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8218), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8250), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8252), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8256), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6434), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(8260), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8262), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [188734] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6230), 11, + ACTIONS(7137), 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(6228), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 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, - [188778] = 3, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6518), 11, + ACTIONS(4735), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -537234,7 +403091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6516), 25, + ACTIONS(4737), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -537259,11 +403116,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, - [188822] = 3, + anon_sym_requires, + [128132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6422), 11, + ACTIONS(4743), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -537275,7 +403135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6420), 25, + ACTIONS(4745), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -537300,11 +403160,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, - [188866] = 3, + anon_sym_requires, + [128179] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 11, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(7009), 1, + anon_sym_LPAREN2, + STATE(4369), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5659), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -537316,10 +403186,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2889), 25, + ACTIONS(5657), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -537342,10 +403211,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [188910] = 3, + [128232] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6426), 11, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(7009), 1, + anon_sym_LPAREN2, + STATE(4377), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5641), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -537357,10 +403233,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6424), 25, + ACTIONS(5639), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -537383,411 +403258,597 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [188954] = 3, + [128285] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6414), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7055), 1, anon_sym_SLASH, + ACTIONS(7061), 1, anon_sym_PIPE, + ACTIONS(7065), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(7071), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6412), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(7079), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(7081), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7083), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [188998] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8496), 2, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7051), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7053), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7057), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8498), 2, + ACTIONS(7059), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5743), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7063), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7073), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7067), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7069), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5745), 21, + ACTIONS(5892), 5, 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_SEMI, + anon_sym___attribute__, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [189046] = 14, + [128374] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7421), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(7429), 1, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(7783), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(7785), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(7787), 1, + ACTIONS(5461), 1, anon_sym_AMP, - STATE(4623), 1, + STATE(3550), 1, sym_parameter_list, - STATE(6614), 1, + STATE(5245), 1, + sym__scope_resolution, + STATE(5604), 1, sym__function_declarator_seq, - STATE(6960), 1, + STATE(5831), 1, + sym__declarator, + STATE(6054), 1, sym__abstract_declarator, - STATE(5466), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, + STATE(7308), 1, + sym_ms_based_modifier, + ACTIONS(7127), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5647), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6663), 9, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [189112] = 25, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [128461] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6127), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7443), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7515), 1, + ACTIONS(7141), 1, anon_sym_SLASH, - ACTIONS(7519), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7525), 1, + ACTIONS(7147), 1, anon_sym_PIPE, - ACTIONS(7529), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7535), 1, + ACTIONS(7157), 1, anon_sym_GT_EQ, - ACTIONS(7537), 1, + ACTIONS(7161), 1, anon_sym_QMARK, - ACTIONS(7539), 1, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, anon_sym_bitor, - ACTIONS(7541), 1, + ACTIONS(7167), 1, anon_sym_bitand, - STATE(3439), 1, - sym_subscript_argument_list, - STATE(3440), 1, + ACTIONS(7322), 1, + anon_sym_COMMA, + STATE(2697), 1, sym_argument_list, - ACTIONS(6131), 2, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7415), 2, + ACTIONS(7045), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7511), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7517), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7521), 2, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7523), 2, + ACTIONS(7145), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7527), 2, + ACTIONS(7149), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7531), 3, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7324), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7533), 3, + ACTIONS(7155), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [189200] = 3, + [128556] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(7216), 1, anon_sym_SLASH, + ACTIONS(7222), 1, anon_sym_PIPE, + ACTIONS(7226), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6408), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7236), 1, + anon_sym_QMARK, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, + anon_sym_bitor, + ACTIONS(7242), 1, + anon_sym_bitand, + ACTIONS(7326), 1, + anon_sym_GT2, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + STATE(6662), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(7218), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7220), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7224), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [128653] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7226), 1, + anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7236), 1, anon_sym_QMARK, + ACTIONS(7238), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(7240), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7242), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7328), 1, + anon_sym_GT2, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + STATE(6719), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6314), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [189244] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6366), 11, + ACTIONS(7212), 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(6364), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7214), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(7218), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7220), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7224), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [128750] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(7165), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7167), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7330), 1, + anon_sym_COMMA, + ACTIONS(7332), 1, + anon_sym_RBRACE, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6705), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [189288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6460), 11, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 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(6458), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128847] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(7165), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7167), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7198), 1, + anon_sym_COMMA, + ACTIONS(7334), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6707), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [189332] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6464), 11, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 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(6462), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128944] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7226), 1, + anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7236), 1, anon_sym_QMARK, + ACTIONS(7238), 1, anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, + anon_sym_bitor, + ACTIONS(7242), 1, + anon_sym_bitand, + ACTIONS(7336), 1, + anon_sym_GT2, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + STATE(6742), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7218), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(7220), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(7224), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(7244), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [189376] = 14, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [129041] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7421), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7250), 1, anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7783), 1, + ACTIONS(7338), 1, + sym_identifier, + ACTIONS(7340), 1, anon_sym_STAR, - ACTIONS(7785), 1, + ACTIONS(7342), 1, anon_sym_AMP_AMP, - ACTIONS(7787), 1, + ACTIONS(7344), 1, anon_sym_AMP, - STATE(4623), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6951), 1, - sym__abstract_declarator, - STATE(5466), 2, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5630), 1, + sym__field_declarator, + STATE(5844), 1, + sym_operator_name, + STATE(7666), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4001), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4575), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7960), 9, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7198), 11, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5865), 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(3263), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -537798,351 +403859,745 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [189442] = 3, + [129118] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6382), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_PIPE, + ACTIONS(7151), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(7157), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6380), 25, - anon_sym_DOT_DOT_DOT, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7198), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7346), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6543), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 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, - [189486] = 3, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129215] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 11, + STATE(1607), 1, + sym__fold_operator, + ACTIONS(7350), 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_DOT, - ACTIONS(6466), 25, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ, + ACTIONS(7348), 25, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [189530] = 14, + anon_sym_DASH_GT_STAR, + [129264] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7421), 1, + ACTIONS(5673), 1, anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7783), 1, - anon_sym_STAR, - ACTIONS(7785), 1, - anon_sym_AMP_AMP, - ACTIONS(7787), 1, - anon_sym_AMP, - STATE(4623), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6961), 1, - sym__abstract_declarator, - STATE(5466), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7940), 9, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [189596] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7737), 1, - anon_sym___attribute__, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - ACTIONS(7569), 3, - anon_sym_AMP, + ACTIONS(6304), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(7567), 30, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7208), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7210), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_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, - [189644] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6482), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7216), 1, anon_sym_SLASH, + ACTIONS(7222), 1, anon_sym_PIPE, + ACTIONS(7226), 1, anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7236), 1, + anon_sym_QMARK, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, + anon_sym_bitor, + ACTIONS(7242), 1, + anon_sym_bitand, + ACTIONS(7352), 1, + anon_sym_GT2, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + STATE(6510), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7218), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7220), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7224), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7230), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + [129361] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, anon_sym_DOT, - ACTIONS(6480), 25, + ACTIONS(7208), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7210), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7226), 1, + anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7236), 1, + anon_sym_QMARK, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, + anon_sym_bitor, + ACTIONS(7242), 1, + anon_sym_bitand, + ACTIONS(7354), 1, + anon_sym_GT2, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + STATE(6554), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(7218), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7220), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7224), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [129458] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(7165), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7167), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7322), 1, + anon_sym_COMMA, + ACTIONS(7356), 1, + anon_sym_RPAREN, + ACTIONS(7358), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [189688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6171), 11, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + [129555] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(6173), 25, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7198), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7360), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6565), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129652] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7226), 1, + anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7236), 1, anon_sym_QMARK, + ACTIONS(7238), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(7240), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7242), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7362), 1, + anon_sym_GT2, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + STATE(6836), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6314), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [189732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6278), 11, + ACTIONS(7212), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7214), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7218), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7220), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7224), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7230), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + [129749] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(6254), 25, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7364), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7366), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6652), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129846] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(7165), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7167), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7368), 1, + anon_sym_COMMA, + ACTIONS(7370), 1, + anon_sym_RBRACE, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6592), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [189776] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6101), 11, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + [129943] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(6103), 25, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7194), 1, + anon_sym_RBRACE, + ACTIONS(7372), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6801), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130040] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(7165), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7167), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7198), 1, + anon_sym_COMMA, + ACTIONS(7374), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6497), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [189820] = 3, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6490), 11, + ACTIONS(4719), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -538154,7 +404609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6488), 25, + ACTIONS(4721), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -538179,52 +404634,83 @@ 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, - [189864] = 3, + anon_sym_requires, + [130184] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6300), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_PIPE, + ACTIONS(7151), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(7157), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6298), 25, - anon_sym_DOT_DOT_DOT, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7364), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7376), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6589), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 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, - [189908] = 3, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6153), 11, + ACTIONS(4719), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -538236,7 +404722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6155), 25, + ACTIONS(4721), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -538261,11 +404747,83 @@ 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, - [189952] = 3, + anon_sym_requires, + [130328] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6294), 11, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7364), 1, + anon_sym_COMMA, + ACTIONS(7378), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6522), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4719), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -538277,7 +404835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6292), 25, + ACTIONS(4721), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -538302,40 +404860,38 @@ 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, - [189996] = 11, + anon_sym_requires, + [130472] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(8500), 1, - anon_sym_LBRACE, - STATE(5528), 1, - sym_field_declaration_list, - STATE(5646), 1, - sym_attribute_specifier, - STATE(7622), 1, - sym_virtual_specifier, - STATE(8548), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5679), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5677), 24, - anon_sym_COMMA, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4957), 5, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, + ACTIONS(4955), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -538346,106 +404902,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [190056] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [130521] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6242), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7055), 1, anon_sym_SLASH, + ACTIONS(7061), 1, anon_sym_PIPE, + ACTIONS(7065), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(7071), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6240), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7077), 1, + anon_sym_QMARK, + ACTIONS(7079), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7081), 1, + anon_sym_bitor, + ACTIONS(7083), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7051), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7053), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(7057), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7059), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7063), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7073), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6051), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(7067), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(7069), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130614] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(7165), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7167), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7382), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [190100] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(8500), 1, - anon_sym_LBRACE, - STATE(5549), 1, - sym_field_declaration_list, - STATE(5624), 1, - sym_attribute_specifier, - STATE(7761), 1, - sym_virtual_specifier, - STATE(8541), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5671), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5669), 24, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7380), 2, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [190160] = 3, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6238), 11, + ACTIONS(4711), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -538457,7 +405059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6236), 25, + ACTIONS(4713), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -538482,171 +405084,303 @@ 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, - [190204] = 3, + anon_sym_requires, + [130756] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6234), 11, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7364), 1, + anon_sym_COMMA, + ACTIONS(7384), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6567), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130853] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7055), 1, anon_sym_SLASH, + ACTIONS(7079), 1, + anon_sym_LT_EQ_GT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7051), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7053), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7073), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5902), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6232), 25, + ACTIONS(5900), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [190248] = 11, + [130924] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(8500), 1, - anon_sym_LBRACE, - STATE(5509), 1, - sym_field_declaration_list, - STATE(5636), 1, - sym_attribute_specifier, - STATE(7813), 1, - sym_virtual_specifier, - STATE(8526), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5667), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5665), 24, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [190308] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6354), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_PIPE, + ACTIONS(7151), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(7157), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6352), 25, - anon_sym_DOT_DOT_DOT, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7364), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7386), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6755), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131021] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(7165), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7167), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7198), 1, + anon_sym_COMMA, + ACTIONS(7388), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6630), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [190352] = 11, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131118] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(8500), 1, - anon_sym_LBRACE, - STATE(5535), 1, - sym_field_declaration_list, - STATE(5610), 1, - sym_attribute_specifier, - STATE(7805), 1, - sym_virtual_specifier, - STATE(8507), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5655), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5653), 24, + ACTIONS(7390), 1, + sym_identifier, + ACTIONS(7394), 1, + sym_primitive_type, + STATE(4033), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7392), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5074), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5076), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -538661,53 +405395,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_try, anon_sym_requires, - [190412] = 3, + [131173] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6510), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, anon_sym_SLASH, + ACTIONS(7284), 1, anon_sym_PIPE, + ACTIONS(7288), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(7294), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6508), 25, - anon_sym_DOT_DOT_DOT, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + ACTIONS(7396), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7398), 1, + anon_sym_RBRACK, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6775), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(7280), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 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, - [190456] = 3, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131270] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6398), 11, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(7009), 1, + anon_sym_LPAREN2, + STATE(4354), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5610), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -538719,10 +405490,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6396), 25, + ACTIONS(5608), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -538745,13 +405515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [190500] = 4, + [131323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8498), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5735), 11, + ACTIONS(4715), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -538763,13 +405530,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5737), 23, + ACTIONS(4717), 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, @@ -538778,6 +405546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, + anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -538786,63 +405555,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [190546] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7783), 1, - anon_sym_STAR, - ACTIONS(7785), 1, - anon_sym_AMP_AMP, - ACTIONS(7787), 1, - anon_sym_AMP, - STATE(4623), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6949), 1, - sym__abstract_declarator, - STATE(5412), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5806), 9, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [190612] = 3, + [131370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 11, + ACTIONS(4755), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -538854,7 +405574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6470), 25, + ACTIONS(4757), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -538879,11 +405599,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, - [190656] = 3, + anon_sym_requires, + [131417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6212), 11, + ACTIONS(4723), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -538895,7 +405618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6214), 25, + ACTIONS(4725), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -538920,48 +405643,126 @@ 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, - [190700] = 14, + anon_sym_requires, + [131464] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7198), 1, + anon_sym_COMMA, + ACTIONS(7400), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6820), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131561] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6681), 1, anon_sym_const, - ACTIONS(7421), 1, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(7429), 1, + ACTIONS(7099), 1, anon_sym_LBRACK, - ACTIONS(7866), 1, + ACTIONS(7117), 1, + sym_auto, + ACTIONS(7119), 1, + anon_sym_decltype, + ACTIONS(7310), 1, anon_sym_STAR, - ACTIONS(7868), 1, + ACTIONS(7312), 1, anon_sym_AMP_AMP, - ACTIONS(7870), 1, + ACTIONS(7314), 1, anon_sym_AMP, - STATE(4638), 1, + STATE(3501), 1, sym_parameter_list, - STATE(6614), 1, + STATE(4493), 1, + sym_decltype_auto, + STATE(5399), 1, sym__function_declarator_seq, - STATE(6919), 1, + STATE(5661), 1, sym__abstract_declarator, - STATE(5457), 2, + STATE(4374), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5806), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7089), 9, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(7245), 11, + ACTIONS(6671), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -538973,51 +405774,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [190766] = 17, + [131636] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7250), 1, anon_sym_LPAREN2, - ACTIONS(6316), 1, - sym_auto, - ACTIONS(6318), 1, - anon_sym_decltype, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(8502), 1, + ACTIONS(7338), 1, + sym_identifier, + ACTIONS(7340), 1, anon_sym_STAR, - ACTIONS(8504), 1, + ACTIONS(7342), 1, anon_sym_AMP_AMP, - ACTIONS(8506), 1, + ACTIONS(7344), 1, anon_sym_AMP, - STATE(3621), 1, - sym_decltype_auto, - STATE(4737), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7230), 1, - sym__abstract_declarator, - STATE(5536), 2, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5559), 1, + sym__field_declarator, + STATE(5844), 1, + sym_operator_name, + STATE(7666), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4007), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4555), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7419), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8402), 11, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5865), 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(3263), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -539028,215 +405833,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [190838] = 3, + [131713] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6514), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - 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(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, anon_sym_DOT, - ACTIONS(6512), 25, + ACTIONS(7208), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7210), 1, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7226), 1, + anon_sym_AMP, + ACTIONS(7232), 1, anon_sym_LT_LT, - anon_sym_LBRACK, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7236), 1, anon_sym_QMARK, + ACTIONS(7238), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(7240), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7242), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7402), 1, + anon_sym_GT2, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + STATE(6708), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6314), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [190882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6386), 11, + ACTIONS(7212), 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(6384), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7214), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(7218), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7220), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7224), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [131810] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, anon_sym_QMARK, + ACTIONS(7302), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(7304), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7306), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7396), 1, + anon_sym_COMMA, + ACTIONS(7404), 1, + anon_sym_RBRACK, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6775), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [190926] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6502), 11, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 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(6500), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7276), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(7280), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131907] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7250), 1, + anon_sym_LPAREN2, + ACTIONS(7338), 1, + sym_identifier, + ACTIONS(7340), 1, + anon_sym_STAR, + ACTIONS(7342), 1, + anon_sym_AMP_AMP, + ACTIONS(7344), 1, + anon_sym_AMP, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5559), 1, + sym__field_declarator, + STATE(5844), 1, + sym_operator_name, + STATE(7666), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4469), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4555), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5865), 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(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [131984] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, anon_sym_QMARK, + ACTIONS(7302), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(7304), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7306), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7396), 1, + anon_sym_COMMA, + ACTIONS(7406), 1, + anon_sym_RBRACK, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6680), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [190970] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6506), 11, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 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(6504), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7276), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(7280), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132081] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(7165), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7167), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7198), 1, + anon_sym_COMMA, + ACTIONS(7408), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6812), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5706), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [191014] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6418), 11, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 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(6416), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7139), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(7143), 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(7145), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(7149), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [191058] = 3, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6390), 11, + ACTIONS(4747), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -539248,7 +406183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6388), 25, + ACTIONS(4749), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -539273,52 +406208,83 @@ 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, - [191102] = 3, + anon_sym_requires, + [132225] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(7216), 1, anon_sym_SLASH, + ACTIONS(7222), 1, anon_sym_PIPE, + ACTIONS(7226), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6446), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7236), 1, + anon_sym_QMARK, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, + anon_sym_bitor, + ACTIONS(7242), 1, + anon_sym_bitand, + ACTIONS(7410), 1, + anon_sym_GT2, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + STATE(6693), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(7218), 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(7220), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(7224), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(7244), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [191146] = 3, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [132322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6350), 11, + ACTIONS(4727), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -539330,7 +406296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6348), 25, + ACTIONS(4729), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -539355,52 +406321,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [191190] = 17, + anon_sym_requires, + [132369] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7250), 1, anon_sym_LPAREN2, - ACTIONS(6316), 1, - sym_auto, - ACTIONS(6318), 1, - anon_sym_decltype, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(8502), 1, + ACTIONS(7338), 1, + sym_identifier, + ACTIONS(7340), 1, anon_sym_STAR, - ACTIONS(8504), 1, + ACTIONS(7342), 1, anon_sym_AMP_AMP, - ACTIONS(8506), 1, + ACTIONS(7344), 1, anon_sym_AMP, - STATE(3621), 1, - sym_decltype_auto, - STATE(4737), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7235), 1, - sym__abstract_declarator, - STATE(5534), 2, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5648), 1, + sym__field_declarator, + STATE(5844), 1, + sym_operator_name, + STATE(7666), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4469), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4583), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7497), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8402), 11, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5865), 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(3263), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -539411,37 +406384,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [191262] = 14, + [132446] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(61), 1, anon_sym_const, - ACTIONS(7421), 1, + ACTIONS(7027), 1, + sym_auto, + ACTIONS(7029), 1, + anon_sym_decltype, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(7429), 1, + ACTIONS(7099), 1, anon_sym_LBRACK, - ACTIONS(7866), 1, + ACTIONS(7412), 1, anon_sym_STAR, - ACTIONS(7868), 1, + ACTIONS(7414), 1, anon_sym_AMP_AMP, - ACTIONS(7870), 1, + ACTIONS(7416), 1, anon_sym_AMP, - STATE(4638), 1, + STATE(3021), 1, + sym_decltype_auto, + STATE(3499), 1, sym_parameter_list, - STATE(6614), 1, + STATE(5399), 1, sym__function_declarator_seq, - STATE(6935), 1, + STATE(5753), 1, sym__abstract_declarator, - STATE(5353), 2, + STATE(4371), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7940), 9, + ACTIONS(7109), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, @@ -539451,7 +406430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(7245), 11, + ACTIONS(6792), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -539463,62 +406442,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [191328] = 14, + [132521] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7421), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7429), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(7866), 1, - anon_sym_STAR, - ACTIONS(7868), 1, - anon_sym_AMP_AMP, - ACTIONS(7870), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, anon_sym_AMP, - STATE(4638), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6931), 1, - sym__abstract_declarator, - STATE(5353), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6663), 9, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7198), 1, anon_sym_COMMA, + ACTIONS(7418), 1, anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [191394] = 3, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6696), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132618] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 11, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(7009), 1, + anon_sym_LPAREN2, + STATE(4364), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5667), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -539530,10 +406533,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6392), 25, + ACTIONS(5665), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -539556,86 +406558,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [191438] = 14, + [132671] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7421), 1, + ACTIONS(5673), 1, anon_sym_LPAREN2, - ACTIONS(7429), 1, + ACTIONS(6304), 1, anon_sym_LBRACK, - ACTIONS(7866), 1, - anon_sym_STAR, - ACTIONS(7868), 1, - anon_sym_AMP_AMP, - ACTIONS(7870), 1, - anon_sym_AMP, - STATE(4638), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6928), 1, - sym__abstract_declarator, - STATE(5353), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7960), 9, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7210), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7226), 1, + anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7236), 1, + anon_sym_QMARK, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, + anon_sym_bitor, + ACTIONS(7242), 1, + anon_sym_bitand, + ACTIONS(7420), 1, anon_sym_GT2, - anon_sym_requires, - ACTIONS(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [191504] = 3, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + STATE(6803), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7218), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7220), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7224), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [132768] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6452), 11, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7055), 1, + anon_sym_SLASH, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7051), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(7053), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7073), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5724), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6450), 25, + ACTIONS(5722), 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_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -539644,217 +406682,24 @@ 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, - [191548] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7579), 1, - anon_sym_LBRACK, - ACTIONS(7644), 1, - anon_sym___attribute__, - ACTIONS(8083), 1, - anon_sym_requires, - ACTIONS(8508), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8511), 1, - anon_sym_DASH_GT, - STATE(6891), 1, - sym_requires_clause, - STATE(6965), 1, - sym_trailing_return_type, - ACTIONS(7564), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7569), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(8080), 2, - anon_sym_final, - anon_sym_override, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6852), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7567), 16, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - anon_sym_noexcept, - anon_sym_throw, - [191615] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(8514), 1, - anon_sym_LBRACE, - ACTIONS(8516), 1, - anon_sym_COLON, - STATE(5484), 1, - sym__enum_base_clause, - STATE(5564), 1, - sym_enumerator_list, - STATE(5623), 1, - sym_attribute_specifier, - ACTIONS(5802), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5800), 26, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [191670] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5541), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5543), 32, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [191713] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(8066), 1, - anon_sym_STAR, - ACTIONS(8068), 1, - anon_sym_AMP_AMP, - ACTIONS(8070), 1, - anon_sym_AMP, - STATE(4676), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(7123), 1, - sym__abstract_declarator, - STATE(5353), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6663), 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(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [191778] = 4, + [132837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8518), 1, - anon_sym_SEMI, - ACTIONS(6468), 9, + ACTIONS(4759), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6466), 25, + ACTIONS(4761), 28, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -539863,9 +406708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -539879,662 +406722,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [191823] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8523), 1, - anon_sym_const, - ACTIONS(5314), 2, - anon_sym_AMP, - anon_sym_LBRACK, - STATE(5466), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(8520), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5316), 19, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [191872] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6121), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6119), 32, - 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [191915] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6117), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6115), 32, - 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [191958] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(8066), 1, - anon_sym_STAR, - ACTIONS(8068), 1, - anon_sym_AMP_AMP, - ACTIONS(8070), 1, - anon_sym_AMP, - STATE(4676), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(7147), 1, - sym__abstract_declarator, - STATE(5464), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5806), 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(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [192023] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7579), 1, - anon_sym_LBRACK, - ACTIONS(7644), 1, - anon_sym___attribute__, - ACTIONS(8054), 1, anon_sym_requires, - ACTIONS(8508), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8511), 1, - anon_sym_DASH_GT, - STATE(6891), 1, - sym_requires_clause, - STATE(6965), 1, - sym_trailing_return_type, - ACTIONS(7564), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7569), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(8050), 2, - anon_sym_final, - anon_sym_override, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6852), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7567), 16, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - anon_sym_noexcept, - anon_sym_throw, - [192090] = 14, + [132884] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7421), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(8066), 1, - anon_sym_STAR, - ACTIONS(8068), 1, - anon_sym_AMP_AMP, - ACTIONS(8070), 1, - anon_sym_AMP, - STATE(4676), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(7114), 1, - sym__abstract_declarator, - STATE(5353), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7940), 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(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [192155] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(8514), 1, - anon_sym_LBRACE, - ACTIONS(8516), 1, - anon_sym_COLON, - STATE(5487), 1, - sym__enum_base_clause, - STATE(5529), 1, - sym_enumerator_list, - STATE(5633), 1, - sym_attribute_specifier, - ACTIONS(5794), 3, - anon_sym_AMP, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5792), 26, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [192210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3508), 13, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_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(3506), 22, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [192253] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6181), 3, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6179), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7364), 1, anon_sym_COMMA, + ACTIONS(7422), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6797), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [192296] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(8066), 1, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(8068), 1, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - ACTIONS(8070), 1, - anon_sym_AMP, - STATE(4676), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(7155), 1, - sym__abstract_declarator, - STATE(5353), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7960), 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(7245), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [192361] = 15, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132981] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7575), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7579), 1, - anon_sym_LBRACK, - ACTIONS(7644), 1, - anon_sym___attribute__, - ACTIONS(8526), 1, - anon_sym_DASH_GT, - ACTIONS(8529), 1, - anon_sym_requires, - STATE(6678), 1, - sym_requires_clause, - STATE(7255), 1, - sym_trailing_return_type, - ACTIONS(7564), 2, + ACTIONS(5364), 1, anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7569), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7585), 2, - anon_sym_final, - anon_sym_override, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6832), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7567), 16, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - anon_sym_noexcept, - anon_sym_throw, - [192428] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7575), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7579), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(7644), 1, - anon_sym___attribute__, - ACTIONS(8526), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7055), 1, + anon_sym_SLASH, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8532), 1, - anon_sym_requires, - STATE(6678), 1, - sym_requires_clause, - STATE(7255), 1, - sym_trailing_return_type, - ACTIONS(7564), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7569), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7599), 2, - anon_sym_final, - anon_sym_override, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6832), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7567), 16, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - anon_sym_noexcept, - anon_sym_throw, - [192495] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7431), 1, - sym_auto, - ACTIONS(7433), 1, - anon_sym_decltype, - ACTIONS(8536), 1, - anon_sym_STAR, - ACTIONS(8538), 1, - anon_sym_AMP_AMP, - ACTIONS(8540), 1, - anon_sym_AMP, - STATE(4812), 1, - sym_parameter_list, - STATE(5645), 1, - sym_decltype_auto, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(7303), 1, - sym__abstract_declarator, - STATE(5601), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7419), 5, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [192566] = 17, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7051), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7053), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5724), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 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, + [133048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7421), 1, + ACTIONS(7426), 6, anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(7431), 1, - sym_auto, - ACTIONS(7433), 1, - anon_sym_decltype, - ACTIONS(8536), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(8538), 1, anon_sym_AMP_AMP, - ACTIONS(8540), 1, - anon_sym_AMP, - STATE(4812), 1, - sym_parameter_list, - STATE(5645), 1, - sym_decltype_auto, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(7265), 1, - sym__abstract_declarator, - STATE(5638), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7497), 5, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7198), 11, + ACTIONS(7424), 33, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -540545,145 +406886,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [192637] = 14, + sym_identifier, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [133095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(4739), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4741), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - 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, - ACTIONS(8404), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - STATE(4704), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7185), 1, - sym__abstract_declarator, - STATE(5776), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7960), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - ACTIONS(8402), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [192701] = 14, + [133142] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(8396), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7055), 1, + anon_sym_SLASH, + ACTIONS(7061), 1, + anon_sym_PIPE, + ACTIONS(7065), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_GT_EQ, + ACTIONS(7077), 1, + anon_sym_QMARK, + ACTIONS(7079), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7081), 1, + anon_sym_bitor, + ACTIONS(7083), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7051), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7053), 2, anon_sym_STAR, - ACTIONS(8398), 1, + anon_sym_PERCENT, + ACTIONS(7057), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7059), 2, anon_sym_AMP_AMP, - ACTIONS(8400), 1, - anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - STATE(4704), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7196), 1, - sym__abstract_declarator, - STATE(5776), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6663), 7, + anon_sym_and, + ACTIONS(7063), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7073), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7067), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7069), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7428), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8402), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [192765] = 14, + anon_sym___attribute__, + [133235] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, + ACTIONS(61), 1, anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(7027), 1, + sym_auto, + ACTIONS(7029), 1, + anon_sym_decltype, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(8396), 1, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7412), 1, anon_sym_STAR, - ACTIONS(8398), 1, + ACTIONS(7414), 1, anon_sym_AMP_AMP, - ACTIONS(8400), 1, + ACTIONS(7416), 1, anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - STATE(4704), 1, + STATE(3021), 1, + sym_decltype_auto, + STATE(3499), 1, sym_parameter_list, - STATE(6905), 1, + STATE(5399), 1, sym__function_declarator_seq, - STATE(7182), 1, + STATE(5691), 1, sym__abstract_declarator, - STATE(5481), 2, + STATE(4367), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5806), 7, + ACTIONS(7089), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - ACTIONS(8402), 11, + ACTIONS(6792), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -540695,537 +407062,852 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [192829] = 6, + [133310] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(8542), 1, - anon_sym_LT, - STATE(5570), 1, - sym_template_argument_list, - ACTIONS(5673), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4302), 28, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7055), 1, + anon_sym_SLASH, + ACTIONS(7079), 1, + anon_sym_LT_EQ_GT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7051), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7053), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7073), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5724), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 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___extension__, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_QMARK, anon_sym_or, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [192877] = 7, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [133381] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(8514), 1, - anon_sym_LBRACE, - STATE(5552), 1, - sym_enumerator_list, - STATE(5603), 1, - sym_attribute_specifier, - ACTIONS(5788), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5786), 27, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7055), 1, + anon_sym_SLASH, + ACTIONS(7071), 1, + anon_sym_GT_EQ, + ACTIONS(7079), 1, + anon_sym_LT_EQ_GT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5724), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7051), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7053), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7073), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7069), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [192927] = 6, + 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, + [133456] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(8544), 1, - anon_sym_LT, - STATE(3120), 1, - sym_template_argument_list, - ACTIONS(4860), 3, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4865), 28, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7198), 1, anon_sym_COMMA, + ACTIONS(7430), 1, anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6619), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133553] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7055), 1, + anon_sym_SLASH, + ACTIONS(7071), 1, + anon_sym_GT_EQ, + ACTIONS(7079), 1, + anon_sym_LT_EQ_GT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5724), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7051), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7053), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7073), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7067), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7069), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_SEMI, - anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_QMARK, anon_sym_or, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [192975] = 6, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [133630] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(8546), 1, - anon_sym_LT, - STATE(3280), 1, - sym_template_argument_list, - ACTIONS(5673), 3, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(7055), 1, + anon_sym_SLASH, + ACTIONS(7065), 1, anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4302), 28, + ACTIONS(7071), 1, + anon_sym_GT_EQ, + ACTIONS(7079), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7083), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7051), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7053), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7073), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7067), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7069), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 12, 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_CARET, + 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_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_QMARK, anon_sym_or, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [193023] = 7, + anon_sym_bitor, + anon_sym_xor, + [133711] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(8514), 1, - anon_sym_LBRACE, - STATE(5546), 1, - sym_enumerator_list, - STATE(5600), 1, - sym_attribute_specifier, - ACTIONS(5820), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5818), 27, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(7055), 1, + anon_sym_SLASH, + ACTIONS(7065), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_GT_EQ, + ACTIONS(7079), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7083), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7051), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7053), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7063), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7073), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7067), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7069), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [193073] = 5, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [133794] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7644), 1, - anon_sym___attribute__, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - ACTIONS(7569), 3, - anon_sym_AMP, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(7567), 28, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7432), 1, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(7434), 1, + anon_sym_RBRACE, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6618), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5706), 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, - [193119] = 14, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133891] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(5673), 1, anon_sym_LPAREN2, - ACTIONS(8396), 1, - anon_sym_STAR, - ACTIONS(8398), 1, - anon_sym_AMP_AMP, - ACTIONS(8400), 1, - anon_sym_AMP, - ACTIONS(8404), 1, + ACTIONS(6304), 1, anon_sym_LBRACK, - STATE(4704), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7197), 1, - sym__abstract_declarator, - STATE(5776), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7940), 7, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7210), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8402), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [193183] = 14, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7226), 1, + anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7236), 1, + anon_sym_QMARK, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, + anon_sym_bitor, + ACTIONS(7242), 1, + anon_sym_bitand, + ACTIONS(7436), 1, + anon_sym_GT2, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + STATE(6763), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7218), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7220), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7224), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [133988] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(8404), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(8438), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7272), 1, + anon_sym_COMMA, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + ACTIONS(7438), 1, + anon_sym_RBRACK, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6710), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, - ACTIONS(8440), 1, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, anon_sym_AMP_AMP, - ACTIONS(8442), 1, - anon_sym_AMP, - STATE(4649), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7205), 1, - sym__abstract_declarator, - STATE(5497), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5806), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(8402), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [193247] = 24, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134085] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - sym_auto, - ACTIONS(119), 1, - anon_sym_decltype, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1930), 1, - anon_sym_enum, - ACTIONS(1932), 1, - anon_sym_class, - ACTIONS(1934), 1, - anon_sym_struct, - ACTIONS(1936), 1, - anon_sym_union, - ACTIONS(1960), 1, - anon_sym_typename, - ACTIONS(2719), 1, - sym_primitive_type, - ACTIONS(4916), 1, - anon_sym_COLON_COLON, - ACTIONS(8548), 1, - sym_identifier, - ACTIONS(8550), 1, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7055), 1, + anon_sym_SLASH, + ACTIONS(7061), 1, + anon_sym_PIPE, + ACTIONS(7065), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_GT_EQ, + ACTIONS(7079), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7081), 1, + anon_sym_bitor, + ACTIONS(7083), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7051), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7053), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7063), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7073), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7067), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7069), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 9, anon_sym_DOT_DOT_DOT, - ACTIONS(8554), 1, - anon_sym_EQ, - STATE(3846), 1, - sym__type_specifier, - STATE(3932), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3989), 1, - sym_decltype_auto, - STATE(4533), 1, - sym_qualified_type_identifier, - STATE(7280), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - ACTIONS(8552), 2, anon_sym_COMMA, - anon_sym_GT2, - STATE(3784), 2, - sym_decltype, - sym_template_type, - ACTIONS(53), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3958), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [193331] = 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [134170] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(8544), 1, - anon_sym_LT, - STATE(3120), 1, - sym_template_argument_list, - ACTIONS(5673), 3, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4302), 28, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7198), 1, anon_sym_COMMA, + ACTIONS(7440), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6563), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134267] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7055), 1, + anon_sym_SLASH, + ACTIONS(7061), 1, + anon_sym_PIPE, + ACTIONS(7065), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_GT_EQ, + ACTIONS(7079), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7081), 1, + anon_sym_bitor, + ACTIONS(7083), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7051), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7053), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7059), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7063), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7073), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7067), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7069), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, 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_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_QMARK, anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [193379] = 14, + [134354] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(8404), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(8438), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7055), 1, + anon_sym_SLASH, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7053), 2, anon_sym_STAR, - ACTIONS(8440), 1, - anon_sym_AMP_AMP, - ACTIONS(8442), 1, + anon_sym_PERCENT, + ACTIONS(5724), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, anon_sym_AMP, - STATE(4649), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7207), 1, - sym__abstract_declarator, - STATE(5776), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7940), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(8402), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [193443] = 7, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 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, + [134419] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8556), 1, - sym_identifier, - ACTIONS(8560), 1, - sym_primitive_type, - STATE(5495), 1, + STATE(4033), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8558), 4, + ACTIONS(7442), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5351), 7, + ACTIONS(5046), 9, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(5353), 20, + anon_sym_COLON, + ACTIONS(5044), 25, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -541237,34 +407919,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [193493] = 5, + [134470] = 26, ACTIONS(3), 1, sym_comment, - STATE(5495), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8562), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5364), 7, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7055), 1, + anon_sym_SLASH, + ACTIONS(7061), 1, + anon_sym_PIPE, + ACTIONS(7065), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_GT_EQ, + ACTIONS(7077), 1, + anon_sym_QMARK, + ACTIONS(7079), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7081), 1, + anon_sym_bitor, + ACTIONS(7083), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7051), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7053), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7057), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7059), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7063), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7073), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7067), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7069), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7445), 3, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - ACTIONS(5362), 22, + anon_sym___attribute__, + [134563] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7248), 1, + sym_identifier, + ACTIONS(7250), 1, + anon_sym_LPAREN2, + ACTIONS(7252), 1, + anon_sym_STAR, + ACTIONS(7254), 1, + anon_sym_AMP_AMP, + ACTIONS(7256), 1, anon_sym_AMP, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6022), 1, + sym__field_declarator, + STATE(6092), 1, + sym_operator_name, + STATE(7431), 1, + sym_ms_based_modifier, + ACTIONS(3267), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3941), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4593), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5865), 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(3263), 12, anon_sym___extension__, - anon_sym___attribute__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -541276,293 +408055,457 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [193539] = 6, + [134640] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(8546), 1, - anon_sym_LT, - STATE(3280), 1, - sym_template_argument_list, - ACTIONS(4860), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4865), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7055), 1, + anon_sym_SLASH, + ACTIONS(7061), 1, + anon_sym_PIPE, + ACTIONS(7065), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_GT_EQ, + ACTIONS(7079), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7081), 1, + anon_sym_bitor, + ACTIONS(7083), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7051), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7053), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7057), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7059), 2, anon_sym_AMP_AMP, - anon_sym___extension__, + anon_sym_and, + ACTIONS(7063), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7073), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7067), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7069), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5815), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_QMARK, + [134729] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7226), 1, + anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7236), 1, + anon_sym_QMARK, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, + anon_sym_bitor, + ACTIONS(7242), 1, + anon_sym_bitand, + ACTIONS(7447), 1, + anon_sym_GT2, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + STATE(6601), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7218), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(7220), 2, + anon_sym_AMP_AMP, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [193587] = 14, + ACTIONS(7224), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [134826] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(8404), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(8438), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7055), 1, + anon_sym_SLASH, + ACTIONS(7061), 1, + anon_sym_PIPE, + ACTIONS(7065), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_GT_EQ, + ACTIONS(7077), 1, + anon_sym_QMARK, + ACTIONS(7079), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7081), 1, + anon_sym_bitor, + ACTIONS(7083), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7051), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7053), 2, anon_sym_STAR, - ACTIONS(8440), 1, + anon_sym_PERCENT, + ACTIONS(7057), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7059), 2, anon_sym_AMP_AMP, - ACTIONS(8442), 1, - anon_sym_AMP, - STATE(4649), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7158), 1, - sym__abstract_declarator, - STATE(5776), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6663), 7, + anon_sym_and, + ACTIONS(7063), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7073), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6047), 3, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(8402), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [193651] = 17, + anon_sym___attribute__, + ACTIONS(7067), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7069), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134919] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7222), 1, - sym_auto, - ACTIONS(7224), 1, - anon_sym_decltype, - ACTIONS(8404), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(8565), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7324), 1, + anon_sym_SEMI, + ACTIONS(7449), 1, + anon_sym_COMMA, + ACTIONS(7452), 1, + anon_sym_RBRACE, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(8567), 1, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - ACTIONS(8569), 1, - anon_sym_AMP, - ACTIONS(8573), 1, - anon_sym_const, - STATE(2636), 1, - sym_decltype_auto, - STATE(4794), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7333), 1, - sym__abstract_declarator, - STATE(5664), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7497), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8571), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [193721] = 17, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135016] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7222), 1, - sym_auto, - ACTIONS(7224), 1, - anon_sym_decltype, - ACTIONS(8404), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(8565), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7272), 1, + anon_sym_COMMA, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + ACTIONS(7454), 1, + anon_sym_RBRACK, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + STATE(6581), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, - ACTIONS(8567), 1, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, anon_sym_AMP_AMP, - ACTIONS(8569), 1, - anon_sym_AMP, - ACTIONS(8573), 1, - anon_sym_const, - STATE(2636), 1, - sym_decltype_auto, - STATE(4794), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7356), 1, - sym__abstract_declarator, - STATE(5661), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7419), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8571), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [193791] = 6, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135113] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(8542), 1, - anon_sym_LT, - STATE(5570), 1, - sym_template_argument_list, - ACTIONS(4860), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4865), 28, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [193839] = 14, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7456), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135205] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, + ACTIONS(61), 1, anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(7027), 1, + sym_auto, + ACTIONS(7029), 1, + anon_sym_decltype, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(8404), 1, + ACTIONS(7099), 1, anon_sym_LBRACK, - ACTIONS(8438), 1, + ACTIONS(7458), 1, anon_sym_STAR, - ACTIONS(8440), 1, + ACTIONS(7460), 1, anon_sym_AMP_AMP, - ACTIONS(8442), 1, + ACTIONS(7462), 1, anon_sym_AMP, - STATE(4649), 1, + STATE(3021), 1, + sym_decltype_auto, + STATE(3519), 1, sym_parameter_list, - STATE(6905), 1, + STATE(5399), 1, sym__function_declarator_seq, - STATE(7214), 1, + STATE(5781), 1, sym__abstract_declarator, - STATE(5776), 2, + STATE(4397), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7960), 7, + ACTIONS(7089), 8, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(8402), 11, + ACTIONS(6792), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -541574,331 +408517,544 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [193903] = 16, + [135279] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7192), 1, + anon_sym_SEMI, + ACTIONS(7322), 1, + anon_sym_COMMA, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7108), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5786), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [193970] = 16, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135373] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5673), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5809), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(5807), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7066), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5740), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [194037] = 16, + anon_sym_PERCENT, + anon_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, + [135433] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7082), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5757), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [194104] = 16, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7464), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135525] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7226), 1, + anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7236), 1, + anon_sym_QMARK, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, + anon_sym_bitor, + ACTIONS(7242), 1, + anon_sym_bitand, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7218), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7220), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7224), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7466), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [135617] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7468), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135709] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(5724), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [135783] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(4049), 1, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7039), 1, - sym__type_declarator, - STATE(8943), 1, + ACTIONS(4051), 1, + anon_sym_AMP_AMP, + ACTIONS(4053), 1, + anon_sym_AMP, + ACTIONS(4792), 1, + sym_identifier, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5475), 1, + anon_sym_COLON_COLON, + ACTIONS(7127), 1, + anon_sym_RPAREN, + STATE(3550), 1, + sym_parameter_list, + STATE(5318), 1, + sym__scope_resolution, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5895), 1, + sym__declarator, + STATE(6054), 1, + sym__abstract_declarator, + STATE(7657), 1, sym_ms_based_modifier, - STATE(5763), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [194171] = 5, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [135869] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5632), 1, - sym_attribute_specifier, - ACTIONS(5880), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5878), 28, - anon_sym_COMMA, + ACTIONS(5673), 1, anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5724), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [194216] = 5, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [135941] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5654), 1, - sym_attribute_specifier, - ACTIONS(5856), 3, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(61), 1, anon_sym_const, - ACTIONS(5854), 28, - anon_sym_COMMA, + ACTIONS(7027), 1, + sym_auto, + ACTIONS(7029), 1, + anon_sym_decltype, + ACTIONS(7091), 1, anon_sym_LPAREN2, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7458), 1, anon_sym_STAR, + ACTIONS(7460), 1, anon_sym_AMP_AMP, + ACTIONS(7462), 1, + anon_sym_AMP, + STATE(3021), 1, + sym_decltype_auto, + STATE(3519), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5802), 1, + sym__abstract_declarator, + STATE(4398), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7109), 8, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___extension__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [194261] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, - anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7154), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5797), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + ACTIONS(6792), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -541909,260 +409065,418 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [194328] = 5, + [136015] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5615), 1, - sym_attribute_specifier, - ACTIONS(5868), 3, - anon_sym_AMP, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5866), 28, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6051), 2, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RBRACK, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [194373] = 5, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136107] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5599), 1, - sym_attribute_specifier, - ACTIONS(5850), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5848), 28, - anon_sym_COMMA, + ACTIONS(5673), 1, anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5724), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [194418] = 5, + 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, + [136177] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5619), 1, - sym_attribute_specifier, - ACTIONS(5872), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5870), 28, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [194463] = 16, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5892), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [136265] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5673), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7031), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5775), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [194530] = 14, + anon_sym_PERCENT, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5724), 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(5722), 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, + [136331] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(8404), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(8502), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, + anon_sym_COMMA, + ACTIONS(7470), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(8504), 1, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - ACTIONS(8506), 1, - anon_sym_AMP, - STATE(4737), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7241), 1, - sym__abstract_declarator, - STATE(5776), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6663), 6, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136425] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7472), 1, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8402), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [194593] = 16, + ACTIONS(7474), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136519] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, + ACTIONS(7476), 1, sym_identifier, - ACTIONS(7900), 1, + ACTIONS(7478), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7480), 1, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7062), 1, + ACTIONS(7488), 1, + sym_primitive_type, + STATE(2677), 1, sym__type_declarator, - STATE(8943), 1, + STATE(3128), 1, + sym_pointer_type_declarator, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7424), 1, sym_ms_based_modifier, - STATE(5720), 2, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4143), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4624), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7486), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, + STATE(3126), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -542180,40 +409494,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [194660] = 16, + [136593] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, + ACTIONS(7490), 1, sym_identifier, - ACTIONS(7900), 1, + ACTIONS(7492), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7494), 1, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7070), 1, + ACTIONS(7498), 1, + sym_primitive_type, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5679), 1, sym__type_declarator, - STATE(8943), 1, + STATE(5731), 1, + sym_pointer_type_declarator, + STATE(7274), 1, sym_ms_based_modifier, - STATE(5737), 2, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4613), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + STATE(4700), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7496), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, + STATE(5724), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -542231,40 +409551,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [194727] = 16, + [136667] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5902), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5900), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [136739] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, + ACTIONS(7500), 1, sym_identifier, - ACTIONS(7900), 1, + ACTIONS(7502), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7504), 1, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, sym_pointer_type_declarator, - STATE(7049), 1, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5818), 1, sym__type_declarator, - STATE(8943), 1, + STATE(7570), 1, sym_ms_based_modifier, - STATE(5691), 2, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4636), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + STATE(4700), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, + STATE(2450), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -542282,87 +409664,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [194794] = 5, + [136813] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5597), 1, - sym_attribute_specifier, - ACTIONS(5884), 3, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(6681), 1, anon_sym_const, - ACTIONS(5882), 28, - anon_sym_COMMA, + ACTIONS(7091), 1, anon_sym_LPAREN2, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7121), 1, anon_sym_STAR, + ACTIONS(7123), 1, anon_sym_AMP_AMP, + ACTIONS(7125), 1, + anon_sym_AMP, + STATE(3397), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5484), 1, + sym__abstract_declarator, + STATE(4402), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6202), 11, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [194839] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, - anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7113), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5730), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + ACTIONS(6671), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -542373,105 +409718,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [194906] = 3, + [136881] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3506), 3, - anon_sym_AMP, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(3508), 30, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(7510), 1, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 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, - [194947] = 5, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136975] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5628), 1, - sym_attribute_specifier, - ACTIONS(5876), 3, - anon_sym_AMP, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5874), 28, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(5724), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 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, + [137051] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, + anon_sym_COMMA, + ACTIONS(7512), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [194992] = 5, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137145] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5590), 1, - sym_attribute_specifier, - ACTIONS(5922), 3, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7226), 1, anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7242), 1, + anon_sym_bitand, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 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, + [137225] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5920), 28, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5944), 2, anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137317] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(7091), 1, anon_sym_LPAREN2, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7121), 1, anon_sym_STAR, + ACTIONS(7123), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7125), 1, + anon_sym_AMP, + STATE(3397), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5494), 1, + sym__abstract_declarator, + STATE(4402), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6671), 11, anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -542482,56 +410078,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + ACTIONS(7514), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [195037] = 16, + [137385] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, + anon_sym_COMMA, + ACTIONS(7516), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7040), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5710), 2, - sym_type_qualifier, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137479] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(7135), 2, + anon_sym_AMP, + anon_sym_LBRACK, + STATE(4412), 2, + sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + STATE(4425), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5347), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6671), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -542542,40 +410186,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [195104] = 16, + ACTIONS(7133), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [137535] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, + ACTIONS(7476), 1, sym_identifier, - ACTIONS(7900), 1, + ACTIONS(7478), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7480), 1, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7144), 1, + ACTIONS(7488), 1, + sym_primitive_type, + STATE(2677), 1, sym__type_declarator, - STATE(8943), 1, + STATE(3128), 1, + sym_pointer_type_declarator, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7424), 1, sym_ms_based_modifier, - STATE(5684), 2, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4624), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + STATE(4700), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7486), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, + STATE(3126), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -542593,40 +410262,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [195171] = 16, + [137609] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, + ACTIONS(7518), 1, sym_identifier, - ACTIONS(7900), 1, + ACTIONS(7520), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7522), 1, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7060), 1, + ACTIONS(7526), 1, + sym_primitive_type, + STATE(2812), 1, sym__type_declarator, - STATE(8943), 1, + STATE(3318), 1, + sym_pointer_type_declarator, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7366), 1, sym_ms_based_modifier, - STATE(5751), 2, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4152), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4658), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7524), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, + STATE(3316), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -542644,30 +410319,538 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [195238] = 6, + [137683] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7431), 1, - sym_auto, - ACTIONS(7433), 1, - anon_sym_decltype, - STATE(5645), 1, - sym_decltype_auto, - ACTIONS(5190), 3, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7226), 1, anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7242), 1, + anon_sym_bitand, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7224), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 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, + [137765] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5192), 27, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6027), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [137853] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7226), 1, + anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, + anon_sym_bitor, + ACTIONS(7242), 1, + anon_sym_bitand, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7224), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_GT2, + [137937] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7226), 1, + anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7236), 1, + anon_sym_QMARK, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, + anon_sym_bitor, + ACTIONS(7242), 1, + anon_sym_bitand, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7218), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7220), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7224), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7528), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [138029] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7226), 1, + anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7236), 1, + anon_sym_QMARK, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, + anon_sym_bitor, + ACTIONS(7242), 1, + anon_sym_bitand, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7218), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7220), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7224), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7530), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [138121] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7226), 1, + anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, + anon_sym_bitor, + ACTIONS(7242), 1, + anon_sym_bitand, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7218), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7220), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7224), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5904), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [138209] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, + anon_sym_COMMA, + ACTIONS(7532), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138303] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5724), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(5722), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [138363] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(7091), 1, + anon_sym_LPAREN2, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7121), 1, + anon_sym_STAR, + ACTIONS(7123), 1, + anon_sym_AMP_AMP, + ACTIONS(7125), 1, + anon_sym_AMP, + STATE(3397), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5481), 1, + sym__abstract_declarator, + STATE(4402), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6671), 11, 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, @@ -542678,47 +410861,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + ACTIONS(7534), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [195285] = 16, + [138431] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, + ACTIONS(7500), 1, sym_identifier, - ACTIONS(7900), 1, + ACTIONS(7502), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, + ACTIONS(7508), 1, sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7536), 1, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, + STATE(2445), 1, sym_pointer_type_declarator, - STATE(7084), 1, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6090), 1, sym__type_declarator, - STATE(8943), 1, + STATE(7720), 1, sym_ms_based_modifier, - STATE(5766), 2, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4117), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4673), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, + STATE(2450), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -542736,40 +410930,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [195352] = 16, + [138505] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7214), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5724), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(5722), 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, + [138569] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, + ACTIONS(7490), 1, sym_identifier, - ACTIONS(7900), 1, + ACTIONS(7492), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7494), 1, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7033), 1, + ACTIONS(7498), 1, + sym_primitive_type, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5687), 1, sym__type_declarator, - STATE(8943), 1, + STATE(5731), 1, + sym_pointer_type_declarator, + STATE(7274), 1, sym_ms_based_modifier, - STATE(5738), 2, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4059), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4606), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7496), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, + STATE(5724), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -542787,127 +411039,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [195419] = 5, + [138643] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5586), 1, - sym_attribute_specifier, - ACTIONS(5926), 3, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(61), 1, anon_sym_const, - ACTIONS(5924), 28, - anon_sym_COMMA, + ACTIONS(7091), 1, anon_sym_LPAREN2, + ACTIONS(7093), 1, anon_sym_STAR, + ACTIONS(7095), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [195464] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5596), 1, - sym_attribute_specifier, - ACTIONS(5860), 3, + ACTIONS(7097), 1, anon_sym_AMP, + ACTIONS(7099), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5858), 28, + STATE(3506), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5464), 1, + sym__abstract_declarator, + STATE(4090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5420), 11, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [195509] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, - anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7097), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5774), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + ACTIONS(6792), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -542918,80 +411093,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [195576] = 5, + [138711] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5588), 1, - sym_attribute_specifier, - ACTIONS(5890), 3, - anon_sym_AMP, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5888), 28, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5759), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(5757), 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_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [195621] = 16, + 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, + [138771] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, + ACTIONS(7518), 1, sym_identifier, - ACTIONS(7900), 1, + ACTIONS(7520), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7522), 1, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7043), 1, + ACTIONS(7526), 1, + sym_primitive_type, + STATE(2798), 1, sym__type_declarator, - STATE(8943), 1, + STATE(3318), 1, + sym_pointer_type_declarator, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7366), 1, sym_ms_based_modifier, - STATE(5739), 2, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4627), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + STATE(4700), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7524), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, + STATE(3316), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -543009,27 +411200,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [195688] = 5, + [138845] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5652), 1, - sym_attribute_specifier, - ACTIONS(5930), 3, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(61), 1, anon_sym_const, - ACTIONS(5928), 28, - anon_sym_COMMA, + ACTIONS(7091), 1, anon_sym_LPAREN2, + ACTIONS(7093), 1, anon_sym_STAR, + ACTIONS(7095), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7097), 1, + anon_sym_AMP, + ACTIONS(7099), 1, + anon_sym_LBRACK, + STATE(3506), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5467), 1, + sym__abstract_declarator, + STATE(4237), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6792), 11, anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -543040,53 +411242,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, + ACTIONS(7534), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [195733] = 14, + [138913] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(8404), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(8502), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7538), 1, + anon_sym_COMMA, + ACTIONS(7540), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139007] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(7091), 1, + anon_sym_LPAREN2, + ACTIONS(7093), 1, anon_sym_STAR, - ACTIONS(8504), 1, + ACTIONS(7095), 1, anon_sym_AMP_AMP, - ACTIONS(8506), 1, + ACTIONS(7097), 1, anon_sym_AMP, - STATE(4737), 1, + ACTIONS(7099), 1, + anon_sym_LBRACK, + STATE(3506), 1, sym_parameter_list, - STATE(6905), 1, + STATE(5399), 1, sym__function_declarator_seq, - STATE(7236), 1, + STATE(5470), 1, sym__abstract_declarator, - STATE(5776), 2, + STATE(4237), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7940), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(6202), 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_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(8402), 11, + ACTIONS(6792), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -543098,27 +411375,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [195796] = 5, + [139075] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5656), 1, - sym_attribute_specifier, - ACTIONS(5949), 3, - anon_sym_AMP, + ACTIONS(4596), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5947), 28, - anon_sym_COMMA, + ACTIONS(4591), 2, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4594), 4, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + ACTIONS(4587), 31, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -543129,105 +411414,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [195841] = 14, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_operator, + [139125] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, + ACTIONS(61), 1, anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(8502), 1, + ACTIONS(7093), 1, anon_sym_STAR, - ACTIONS(8504), 1, + ACTIONS(7095), 1, anon_sym_AMP_AMP, - ACTIONS(8506), 1, + ACTIONS(7097), 1, anon_sym_AMP, - STATE(4737), 1, + ACTIONS(7099), 1, + anon_sym_LBRACK, + STATE(3506), 1, sym_parameter_list, - STATE(6905), 1, + STATE(5399), 1, sym__function_declarator_seq, - STATE(7231), 1, + STATE(5471), 1, sym__abstract_declarator, - STATE(5776), 2, + STATE(4237), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7960), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8402), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [195904] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, - anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7058), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5682), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + ACTIONS(6792), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -543238,138 +411462,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [195971] = 16, + ACTIONS(7514), 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, + [139193] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7139), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5782), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [196038] = 5, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7542), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139285] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5630), 1, - sym_attribute_specifier, - ACTIONS(5914), 3, - anon_sym_AMP, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5912), 28, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5793), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(5791), 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_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [196083] = 17, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_GT2, + [139343] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, + ACTIONS(6681), 1, anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(4910), 1, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7121), 1, anon_sym_STAR, - ACTIONS(4912), 1, + ACTIONS(7123), 1, anon_sym_AMP_AMP, - ACTIONS(4914), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(7222), 1, - sym_auto, - ACTIONS(7224), 1, - anon_sym_decltype, - ACTIONS(8404), 1, - anon_sym_LBRACK, - STATE(2636), 1, - sym_decltype_auto, - STATE(4706), 1, + STATE(3397), 1, sym_parameter_list, - STATE(6905), 1, + STATE(5399), 1, sym__function_declarator_seq, - STATE(7384), 1, + STATE(5477), 1, sym__abstract_declarator, - STATE(5754), 2, + STATE(4062), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7419), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(6825), 5, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8402), 11, + ACTIONS(5420), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(6671), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -543381,80 +411643,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [196152] = 5, + [139411] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5582), 1, - sym_attribute_specifier, - ACTIONS(5898), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5896), 28, - anon_sym_COMMA, + ACTIONS(5673), 1, anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7226), 1, + anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, + anon_sym_bitor, + ACTIONS(7242), 1, + anon_sym_bitand, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7220), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [196197] = 16, + anon_sym_and, + ACTIONS(7224), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_GT2, + [139497] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, + ACTIONS(7490), 1, sym_identifier, - ACTIONS(7900), 1, + ACTIONS(7492), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7494), 1, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7120), 1, + ACTIONS(7498), 1, + sym_primitive_type, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5687), 1, sym__type_declarator, - STATE(8943), 1, + STATE(5731), 1, + sym_pointer_type_declarator, + STATE(7274), 1, sym_ms_based_modifier, - STATE(5748), 2, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4606), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + STATE(4700), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7496), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, + STATE(5724), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -543472,40 +411763,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [196264] = 16, + [139571] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, + anon_sym_COMMA, + ACTIONS(7544), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139665] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, + anon_sym_COMMA, + ACTIONS(7546), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139759] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, + ACTIONS(7490), 1, sym_identifier, - ACTIONS(7900), 1, + ACTIONS(7492), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, + ACTIONS(7498), 1, sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7548), 1, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7126), 1, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5523), 1, sym__type_declarator, - STATE(8943), 1, + STATE(5731), 1, + sym_pointer_type_declarator, + STATE(7194), 1, sym_ms_based_modifier, - STATE(5742), 2, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4659), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + STATE(4700), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7496), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, + STATE(5724), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -543523,80 +411954,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [196331] = 5, + [139833] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5626), 1, - sym_attribute_specifier, - ACTIONS(5934), 3, - anon_sym_AMP, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5932), 28, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7226), 1, + anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7236), 1, + anon_sym_QMARK, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, + anon_sym_bitor, + ACTIONS(7242), 1, + anon_sym_bitand, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6047), 2, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7218), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7220), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [196376] = 16, + anon_sym_and, + ACTIONS(7224), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [139925] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, + ACTIONS(7490), 1, sym_identifier, - ACTIONS(7900), 1, + ACTIONS(7492), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, + ACTIONS(7498), 1, sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7548), 1, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7136), 1, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5523), 1, sym__type_declarator, - STATE(8943), 1, + STATE(5731), 1, + sym_pointer_type_declarator, + STATE(7194), 1, sym_ms_based_modifier, - STATE(5781), 2, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4170), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4659), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7496), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, + STATE(5724), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -543614,132 +412077,927 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [196443] = 5, + [139999] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5613), 1, - sym_attribute_specifier, - ACTIONS(5941), 3, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5904), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [140087] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5777), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(5775), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_GT2, + [140145] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5939), 28, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5902), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5900), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [140215] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, anon_sym_COMMA, + ACTIONS(7550), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140309] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7552), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140401] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, + anon_sym_COMMA, + ACTIONS(7554), 1, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140495] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7530), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140587] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, + anon_sym_COMMA, + ACTIONS(7358), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140681] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7011), 1, + anon_sym_LBRACK, + STATE(4207), 1, + sym_new_declarator, + ACTIONS(5690), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5688), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [196488] = 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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [140731] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(4910), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, + anon_sym_COMMA, + ACTIONS(7556), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(4912), 1, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - ACTIONS(4914), 1, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140825] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7222), 1, - sym_auto, - ACTIONS(7224), 1, - anon_sym_decltype, - ACTIONS(8404), 1, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, + anon_sym_COMMA, + ACTIONS(7558), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140919] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - STATE(2636), 1, - sym_decltype_auto, - STATE(4706), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7393), 1, - sym__abstract_declarator, - STATE(5696), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7497), 3, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7560), 1, anon_sym_COMMA, + ACTIONS(7562), 1, anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141013] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, + anon_sym_COMMA, + ACTIONS(7564), 1, anon_sym_SEMI, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8402), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [196557] = 16, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141107] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, + anon_sym_COMMA, + ACTIONS(7566), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141201] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, + ACTIONS(7500), 1, sym_identifier, - ACTIONS(7900), 1, + ACTIONS(7502), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, + ACTIONS(7508), 1, sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7536), 1, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, + STATE(2445), 1, sym_pointer_type_declarator, - STATE(7105), 1, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6061), 1, sym__type_declarator, - STATE(8943), 1, + STATE(7720), 1, sym_ms_based_modifier, - STATE(5683), 2, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4670), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + STATE(4700), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, + STATE(2450), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -543757,80 +413015,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [196624] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5641), 1, - sym_attribute_specifier, - ACTIONS(5906), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5904), 28, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [196669] = 16, + [141275] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, + ACTIONS(7500), 1, sym_identifier, - ACTIONS(7900), 1, + ACTIONS(7502), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, + ACTIONS(7508), 1, sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7536), 1, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, + STATE(2445), 1, sym_pointer_type_declarator, - STATE(7050), 1, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6061), 1, sym__type_declarator, - STATE(8943), 1, + STATE(7720), 1, sym_ms_based_modifier, - STATE(5796), 2, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4137), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4670), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, + STATE(2450), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -543848,40 +413072,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [196736] = 16, + [141349] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7568), 1, + anon_sym_COMMA, + ACTIONS(7570), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141443] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, + ACTIONS(7500), 1, sym_identifier, - ACTIONS(7900), 1, + ACTIONS(7502), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, + ACTIONS(7508), 1, sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7572), 1, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7109), 1, + STATE(2409), 1, sym__type_declarator, - STATE(8943), 1, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7189), 1, sym_ms_based_modifier, - STATE(5745), 2, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4650), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + STATE(4700), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, + STATE(2450), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -543899,120 +413196,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [196803] = 5, + [141517] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5604), 1, - sym_attribute_specifier, - ACTIONS(5864), 3, - anon_sym_AMP, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5862), 28, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7226), 1, + anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, + anon_sym_bitor, + ACTIONS(7242), 1, + anon_sym_bitand, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7218), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7220), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7224), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5815), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [141605] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [196848] = 5, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7452), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5572), 1, - sym_attribute_specifier, - ACTIONS(5838), 3, + ACTIONS(6089), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5836), 28, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(6087), 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___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [196893] = 16, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [141743] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, + ACTIONS(7500), 1, sym_identifier, - ACTIONS(7900), 1, + ACTIONS(7502), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7504), 1, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, sym_pointer_type_declarator, - STATE(7085), 1, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5821), 1, sym__type_declarator, - STATE(8943), 1, + STATE(7570), 1, sym_ms_based_modifier, - STATE(5725), 2, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4138), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4664), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, + STATE(2450), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -544030,313 +413426,403 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [196960] = 5, + [141817] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5575), 1, - sym_attribute_specifier, - ACTIONS(5842), 3, - anon_sym_AMP, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5840), 28, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7226), 1, + anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7236), 1, + anon_sym_QMARK, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, + anon_sym_bitor, + ACTIONS(7242), 1, + anon_sym_bitand, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6051), 2, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7218), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7220), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [197005] = 5, + anon_sym_and, + ACTIONS(7224), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [141909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5606), 1, - sym_attribute_specifier, - ACTIONS(5910), 3, + ACTIONS(4594), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(4596), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5908), 28, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4589), 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [197050] = 16, + 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, + [141957] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(4615), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4867), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(4873), 1, + anon_sym_LBRACK, + ACTIONS(4069), 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(4061), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7140), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5800), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [197117] = 16, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [142009] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7574), 1, + anon_sym_COMMA, + ACTIONS(7576), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7064), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5715), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [197184] = 16, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142103] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, + anon_sym_COMMA, + ACTIONS(7578), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7065), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5722), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [197251] = 5, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142197] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5581), 1, - sym_attribute_specifier, - ACTIONS(5846), 3, - anon_sym_AMP, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5844), 28, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7580), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [197296] = 16, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142291] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, + ACTIONS(7500), 1, sym_identifier, - ACTIONS(7900), 1, + ACTIONS(7502), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, + ACTIONS(7508), 1, sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7572), 1, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7087), 1, + STATE(2424), 1, sym__type_declarator, - STATE(8943), 1, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7189), 1, sym_ms_based_modifier, - STATE(5697), 2, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4155), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4678), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, + STATE(2450), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -544354,91 +413840,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [197363] = 16, + [142365] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5026), 1, + sym_literal_suffix, + ACTIONS(4069), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(4061), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7102), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5779), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [197430] = 16, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [142413] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, + ACTIONS(7500), 1, sym_identifier, - ACTIONS(7900), 1, + ACTIONS(7502), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7504), 1, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, sym_pointer_type_declarator, - STATE(7132), 1, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5837), 1, sym__type_declarator, - STATE(8943), 1, + STATE(7570), 1, sym_ms_based_modifier, - STATE(5727), 2, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4061), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4646), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, + STATE(2450), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -544456,88 +413941,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [197497] = 5, + [142487] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - STATE(5609), 1, - sym_attribute_specifier, - ACTIONS(5945), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5943), 28, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [197542] = 17, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5815), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [142575] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(6316), 1, - sym_auto, - ACTIONS(6318), 1, - anon_sym_decltype, - ACTIONS(8404), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(8575), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7582), 1, + anon_sym_COMMA, + ACTIONS(7584), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(8577), 1, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - ACTIONS(8579), 1, - anon_sym_AMP, - STATE(3621), 1, - sym_decltype_auto, - STATE(4739), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7399), 1, - sym__abstract_declarator, - STATE(5692), 2, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142669] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, + anon_sym_LPAREN2, + ACTIONS(7508), 1, + sym_primitive_type, + ACTIONS(7572), 1, + anon_sym_STAR, + STATE(2404), 1, + sym__type_declarator, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7189), 1, + sym_ms_based_modifier, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4120), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4611), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7497), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8402), 11, + aux_sym__type_definition_type_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -544548,45 +414129,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [197611] = 14, + [142743] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, anon_sym_LPAREN2, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(8502), 1, + ACTIONS(7508), 1, + sym_primitive_type, + ACTIONS(7536), 1, anon_sym_STAR, - ACTIONS(8504), 1, - anon_sym_AMP_AMP, - ACTIONS(8506), 1, - anon_sym_AMP, - STATE(4737), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7244), 1, - sym__abstract_declarator, - STATE(5513), 2, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6082), 1, + sym__type_declarator, + STATE(7720), 1, + sym_ms_based_modifier, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4667), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5806), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8402), 11, + aux_sym__type_definition_type_repeat1, + STATE(4700), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -544597,40 +414186,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [197674] = 16, + [142817] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(5194), 1, - sym_auto, - ACTIONS(5196), 1, - anon_sym_decltype, - ACTIONS(7898), 1, + ACTIONS(7500), 1, sym_identifier, - ACTIONS(7900), 1, + ACTIONS(7502), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7504), 1, anon_sym_STAR, - STATE(2636), 1, - sym_decltype_auto, - STATE(3195), 1, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, sym_pointer_type_declarator, - STATE(7134), 1, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5837), 1, sym__type_declarator, - STATE(8943), 1, + STATE(7570), 1, sym_ms_based_modifier, - STATE(5747), 2, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4646), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, + aux_sym__type_definition_type_repeat1, + STATE(4700), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3206), 4, + STATE(2450), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -544648,48 +414243,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [197741] = 17, + [142891] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(5673), 1, anon_sym_LPAREN2, - ACTIONS(6316), 1, - sym_auto, - ACTIONS(6318), 1, - anon_sym_decltype, - ACTIONS(8404), 1, + ACTIONS(6304), 1, anon_sym_LBRACK, - ACTIONS(8575), 1, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7226), 1, + anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, + anon_sym_bitor, + ACTIONS(7242), 1, + anon_sym_bitand, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, anon_sym_STAR, - ACTIONS(8577), 1, + anon_sym_PERCENT, + ACTIONS(7218), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7220), 2, anon_sym_AMP_AMP, - ACTIONS(8579), 1, - anon_sym_AMP, - STATE(3621), 1, - sym_decltype_auto, - STATE(4739), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7386), 1, - sym__abstract_declarator, - STATE(5798), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7419), 3, + anon_sym_and, + ACTIONS(7224), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5892), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_GT2, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8402), 11, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [142979] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7490), 1, + sym_identifier, + ACTIONS(7492), 1, + anon_sym_LPAREN2, + ACTIONS(7498), 1, + sym_primitive_type, + ACTIONS(7548), 1, + anon_sym_STAR, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5490), 1, + sym__type_declarator, + STATE(5731), 1, + sym_pointer_type_declarator, + STATE(7194), 1, + sym_ms_based_modifier, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4100), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4635), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7496), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5724), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -544700,178 +414364,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [197810] = 26, + [143053] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4916), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8550), 1, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8554), 1, - anon_sym_EQ, - ACTIONS(8581), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3871), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6415), 1, - sym_ms_declspec_modifier, - STATE(7280), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8552), 2, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7586), 2, anon_sym_COMMA, - anon_sym_GT2, - STATE(3843), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6411), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6004), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [197896] = 3, + anon_sym_RBRACE, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143145] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4892), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4897), 29, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7588), 1, + anon_sym_COMMA, + ACTIONS(7590), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [197936] = 23, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143239] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(7218), 1, - anon_sym_LPAREN2, - ACTIONS(8583), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7476), 1, sym_identifier, - ACTIONS(8585), 1, - anon_sym_COLON_COLON, - ACTIONS(8589), 1, + ACTIONS(7478), 1, + anon_sym_LPAREN2, + ACTIONS(7480), 1, + anon_sym_STAR, + ACTIONS(7488), 1, sym_primitive_type, - ACTIONS(8591), 1, - anon_sym_enum, - ACTIONS(8593), 1, - anon_sym_class, - ACTIONS(8595), 1, - anon_sym_struct, - ACTIONS(8597), 1, - anon_sym_union, - ACTIONS(8599), 1, - sym_auto, - ACTIONS(8601), 1, - anon_sym_decltype, - ACTIONS(8603), 1, - anon_sym_typename, - STATE(2715), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3031), 1, - sym__type_specifier, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(3224), 1, - sym_decltype_auto, - STATE(5764), 1, - sym_argument_list, - STATE(7278), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3194), 2, - sym_decltype, - sym_template_type, - ACTIONS(8587), 4, + STATE(2767), 1, + sym__type_declarator, + STATE(3128), 1, + sym_pointer_type_declarator, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7424), 1, + sym_ms_based_modifier, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4662), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4700), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7486), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3215), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [198016] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5437), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5439), 29, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(3126), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -544882,108 +414554,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [198056] = 4, + [143313] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5240), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5242), 28, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7380), 2, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143405] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [198098] = 3, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7592), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143497] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5400), 3, - anon_sym_AMP, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5402), 29, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7594), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [198138] = 3, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143591] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5417), 3, - anon_sym_AMP, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5419), 29, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5724), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 17, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [143659] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7520), 1, anon_sym_LPAREN2, + ACTIONS(7522), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7526), 1, + sym_primitive_type, + STATE(2858), 1, + sym__type_declarator, + STATE(3318), 1, + sym_pointer_type_declarator, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7366), 1, + sym_ms_based_modifier, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4087), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4621), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7524), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3316), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -544994,145 +414864,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [198178] = 4, + [143733] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5240), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5242), 28, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(6448), 1, + anon_sym_RPAREN, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, + anon_sym_COMMA, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [198220] = 3, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143827] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 3, - anon_sym_AMP, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5567), 29, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6047), 2, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RBRACK, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [198260] = 3, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143919] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4844), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4846), 29, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, + anon_sym_COMMA, + ACTIONS(7596), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [198300] = 3, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144013] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5468), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5470), 29, - anon_sym_COMMA, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7520), 1, anon_sym_LPAREN2, + ACTIONS(7522), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7526), 1, + sym_primitive_type, + STATE(2858), 1, + sym__type_declarator, + STATE(3318), 1, + sym_pointer_type_declarator, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7366), 1, + sym_ms_based_modifier, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4621), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4700), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7524), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3316), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -545143,107 +415121,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [198340] = 3, + [144087] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4856), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4858), 29, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [198380] = 3, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7466), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144179] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5392), 3, - anon_sym_AMP, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5394), 29, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [198420] = 3, + ACTIONS(7598), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144273] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5582), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5584), 29, - anon_sym_COMMA, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, anon_sym_LPAREN2, + ACTIONS(7508), 1, + sym_primitive_type, + ACTIONS(7572), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(2404), 1, + sym__type_declarator, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7189), 1, + sym_ms_based_modifier, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4611), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4700), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -545254,70 +415311,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [198460] = 3, + [144347] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4854), 29, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, + anon_sym_COMMA, + ACTIONS(7600), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [198500] = 3, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144441] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5377), 3, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(6681), 1, anon_sym_const, - ACTIONS(5379), 29, - anon_sym_COMMA, + ACTIONS(7091), 1, anon_sym_LPAREN2, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7111), 1, anon_sym_STAR, + ACTIONS(7113), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7115), 1, + anon_sym_AMP, + STATE(3497), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5520), 1, + sym__abstract_declarator, + STATE(4402), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6671), 11, 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, @@ -545328,126 +415420,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [198540] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5604), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5606), 29, + ACTIONS(7514), 11, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [198580] = 3, + [144509] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5341), 3, - anon_sym_AMP, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5343), 29, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7226), 1, + anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, + anon_sym_bitor, + ACTIONS(7242), 1, + anon_sym_bitand, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7218), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7220), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7224), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6027), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [144597] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7602), 1, + anon_sym_COMMA, + ACTIONS(7604), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [198620] = 14, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144691] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7206), 1, + ACTIONS(6681), 1, anon_sym_const, - ACTIONS(7421), 1, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(7429), 1, + ACTIONS(7099), 1, anon_sym_LBRACK, - ACTIONS(8536), 1, + ACTIONS(7111), 1, anon_sym_STAR, - ACTIONS(8538), 1, + ACTIONS(7113), 1, anon_sym_AMP_AMP, - ACTIONS(8540), 1, + ACTIONS(7115), 1, anon_sym_AMP, - STATE(4812), 1, + STATE(3497), 1, sym_parameter_list, - STATE(6614), 1, + STATE(5399), 1, sym__function_declarator_seq, - STATE(7273), 1, + STATE(5524), 1, sym__abstract_declarator, - STATE(5657), 2, + STATE(4402), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5806), 5, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6623), 5, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7198), 11, + ACTIONS(6202), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6671), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -545459,204 +415617,417 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [198682] = 3, + [144759] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 3, - anon_sym_AMP, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5559), 29, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7606), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [198722] = 23, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144853] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7218), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(8605), 1, - sym_identifier, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8609), 1, - anon_sym_enum, - ACTIONS(8611), 1, - anon_sym_class, - ACTIONS(8613), 1, - anon_sym_struct, - ACTIONS(8615), 1, - anon_sym_union, - ACTIONS(8617), 1, - anon_sym_typename, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(4470), 1, - sym__type_specifier, - STATE(5768), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, + anon_sym_COMMA, + ACTIONS(7608), 1, + anon_sym_SEMI, + STATE(2697), 1, sym_argument_list, - STATE(7275), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [198802] = 3, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144947] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5612), 3, - anon_sym_AMP, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5614), 29, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(7208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7226), 1, + anon_sym_AMP, + ACTIONS(7232), 1, + anon_sym_LT_LT, + ACTIONS(7234), 1, + anon_sym_GT_GT, + ACTIONS(7236), 1, + anon_sym_QMARK, + ACTIONS(7238), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7240), 1, + anon_sym_bitor, + ACTIONS(7242), 1, + anon_sym_bitand, + STATE(3410), 1, + sym_argument_list, + STATE(3413), 1, + sym_subscript_argument_list, + ACTIONS(5944), 2, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(6314), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7212), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7214), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7218), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7220), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [198842] = 3, + anon_sym_and, + ACTIONS(7224), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7244), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7228), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7230), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [145039] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4884), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4886), 29, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5724), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___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_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [145105] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5724), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_or, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [198882] = 11, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [145175] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(2572), 1, - sym_attribute_specifier, - STATE(6080), 1, - sym_field_declaration_list, - STATE(7807), 1, - sym_virtual_specifier, - STATE(8718), 1, - sym_base_class_clause, - ACTIONS(5665), 2, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5724), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5667), 21, - anon_sym___extension__, + anon_sym_PERCENT, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [145249] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, anon_sym___based, + ACTIONS(7490), 1, + sym_identifier, + ACTIONS(7492), 1, + anon_sym_LPAREN2, + ACTIONS(7494), 1, + anon_sym_STAR, + ACTIONS(7498), 1, + sym_primitive_type, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5700), 1, + sym__type_declarator, + STATE(5731), 1, + sym_pointer_type_declarator, + STATE(7274), 1, + sym_ms_based_modifier, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4097), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4619), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7496), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(5724), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -545668,41 +416039,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [198938] = 11, + [145323] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(8619), 1, - anon_sym___attribute__, - ACTIONS(8621), 1, - anon_sym_LBRACE, - STATE(5908), 1, - sym_field_declaration_list, - STATE(6020), 1, - sym_attribute_specifier, - STATE(7742), 1, - sym_virtual_specifier, - STATE(8674), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5667), 2, - anon_sym_AMP, + ACTIONS(6681), 1, anon_sym_const, - ACTIONS(5665), 21, + ACTIONS(7091), 1, anon_sym_LPAREN2, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7111), 1, anon_sym_STAR, + ACTIONS(7113), 1, anon_sym_AMP_AMP, + ACTIONS(7115), 1, + anon_sym_AMP, + STATE(3497), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5543), 1, + sym__abstract_declarator, + STATE(4160), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5420), 11, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6671), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -545713,40 +416093,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [198994] = 11, + [145391] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(2618), 1, - sym_attribute_specifier, - STATE(6088), 1, - sym_field_declaration_list, - STATE(7800), 1, - sym_virtual_specifier, - STATE(8709), 1, - sym_base_class_clause, - ACTIONS(5669), 2, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5671), 21, - anon_sym___extension__, + anon_sym_PERCENT, + ACTIONS(5724), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [145455] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, anon_sym___based, + ACTIONS(7490), 1, + sym_identifier, + ACTIONS(7492), 1, + anon_sym_LPAREN2, + ACTIONS(7498), 1, + sym_primitive_type, + ACTIONS(7548), 1, + anon_sym_STAR, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5491), 1, + sym__type_declarator, + STATE(5731), 1, + sym_pointer_type_declarator, + STATE(7194), 1, + sym_ms_based_modifier, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4656), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4700), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7496), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(5724), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -545758,147 +416202,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [199050] = 11, + [145529] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(8619), 1, - anon_sym___attribute__, - ACTIONS(8621), 1, - anon_sym_LBRACE, - STATE(5892), 1, - sym_field_declaration_list, - STATE(6010), 1, - sym_attribute_specifier, - STATE(7710), 1, - sym_virtual_specifier, - STATE(8665), 1, - sym_base_class_clause, - ACTIONS(5655), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5653), 21, + ACTIONS(5364), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [199106] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 3, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5474), 29, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7610), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7612), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [199146] = 3, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145623] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5620), 3, - anon_sym_AMP, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5622), 29, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7322), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7614), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [199186] = 3, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145717] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + [145803] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5321), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5323), 29, - anon_sym_COMMA, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7476), 1, + sym_identifier, + ACTIONS(7478), 1, anon_sym_LPAREN2, + ACTIONS(7480), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7488), 1, + sym_primitive_type, + STATE(2741), 1, + sym__type_declarator, + STATE(3128), 1, + sym_pointer_type_declarator, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7424), 1, + sym_ms_based_modifier, + ACTIONS(7484), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4071), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4653), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7482), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7486), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3126), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -545909,150 +416456,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [199226] = 3, + [145877] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5386), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5724), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [199266] = 3, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [145953] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5476), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5478), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [199306] = 14, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [146033] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7206), 1, + ACTIONS(6681), 1, anon_sym_const, - ACTIONS(7421), 1, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(7429), 1, + ACTIONS(7099), 1, anon_sym_LBRACK, - ACTIONS(8536), 1, + ACTIONS(7111), 1, anon_sym_STAR, - ACTIONS(8538), 1, + ACTIONS(7113), 1, anon_sym_AMP_AMP, - ACTIONS(8540), 1, + ACTIONS(7115), 1, anon_sym_AMP, - STATE(4812), 1, + STATE(3497), 1, sym_parameter_list, - STATE(6614), 1, + STATE(5399), 1, sym__function_declarator_seq, - STATE(7266), 1, + STATE(5537), 1, sym__abstract_declarator, - STATE(5466), 2, + STATE(4402), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7960), 5, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6623), 5, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [199368] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5316), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(8425), 12, + ACTIONS(6671), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -546063,524 +416616,763 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5314), 15, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [199412] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5425), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5427), 29, + ACTIONS(7534), 11, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [199452] = 3, + [146101] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5337), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5339), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [199492] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [146185] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5608), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5610), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [199532] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [146267] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5388), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5390), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7616), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [199572] = 11, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146358] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6051), 1, anon_sym_COLON, - ACTIONS(8619), 1, - anon_sym___attribute__, - ACTIONS(8621), 1, - anon_sym_LBRACE, - STATE(5885), 1, - sym_field_declaration_list, - STATE(6038), 1, - sym_attribute_specifier, - STATE(7782), 1, - sym_virtual_specifier, - STATE(8687), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5679), 2, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(5677), 21, - anon_sym_LPAREN2, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [199628] = 23, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146449] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(7218), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(8623), 1, - sym_identifier, - ACTIONS(8625), 1, - anon_sym_COLON_COLON, - ACTIONS(8629), 1, - sym_primitive_type, - ACTIONS(8631), 1, - anon_sym_enum, - ACTIONS(8633), 1, - anon_sym_class, - ACTIONS(8635), 1, - anon_sym_struct, - ACTIONS(8637), 1, - anon_sym_union, - ACTIONS(8639), 1, - sym_auto, - ACTIONS(8641), 1, - anon_sym_decltype, - ACTIONS(8643), 1, - anon_sym_typename, - STATE(3179), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3587), 1, - sym__type_specifier, - STATE(4015), 1, - sym_decltype_auto, - STATE(4028), 1, - sym_qualified_type_identifier, - STATE(5736), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7650), 1, + anon_sym_SEMI, + STATE(2697), 1, sym_argument_list, - STATE(7276), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3985), 2, - sym_decltype, - sym_template_type, - ACTIONS(8627), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4016), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [199708] = 3, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146540] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5431), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7652), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [199748] = 3, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146631] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5549), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5551), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7654), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [199788] = 23, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146722] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7218), 1, + ACTIONS(4453), 1, + anon_sym_RBRACK, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(8605), 1, - sym_identifier, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8609), 1, - anon_sym_enum, - ACTIONS(8611), 1, - anon_sym_class, - ACTIONS(8613), 1, - anon_sym_struct, - ACTIONS(8615), 1, - anon_sym_union, - ACTIONS(8617), 1, - anon_sym_typename, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(4707), 1, - sym__type_specifier, - STATE(5783), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, sym_argument_list, - STATE(7275), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [199868] = 23, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146813] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(7218), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(8645), 1, - sym_identifier, - ACTIONS(8647), 1, - anon_sym_COLON_COLON, - ACTIONS(8651), 1, - sym_primitive_type, - ACTIONS(8653), 1, - anon_sym_enum, - ACTIONS(8655), 1, - anon_sym_class, - ACTIONS(8657), 1, - anon_sym_struct, - ACTIONS(8659), 1, - anon_sym_union, - ACTIONS(8661), 1, - sym_auto, - ACTIONS(8663), 1, - anon_sym_decltype, - ACTIONS(8665), 1, - anon_sym_typename, - STATE(3074), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3293), 1, - sym__type_specifier, - STATE(3715), 1, - sym_decltype_auto, - STATE(3733), 1, - sym_qualified_type_identifier, - STATE(5717), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + STATE(2697), 1, sym_argument_list, - STATE(7282), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3640), 2, - sym_decltype, - sym_template_type, - ACTIONS(8649), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3718), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [199948] = 3, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5724), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [146886] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5616), 3, - anon_sym_AMP, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5618), 29, - anon_sym_COMMA, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7656), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146977] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4343), 1, + anon_sym_RBRACK, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [199988] = 7, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147068] = 17, ACTIONS(3), 1, sym_comment, - STATE(5820), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(8674), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5614), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(8671), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8669), 6, + ACTIONS(3263), 1, + anon_sym_const, + ACTIONS(4603), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6885), 1, + sym_auto, + ACTIONS(6887), 1, + anon_sym_decltype, + ACTIONS(7658), 1, anon_sym_STAR, + ACTIONS(7660), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - ACTIONS(8667), 18, + ACTIONS(7662), 1, anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_LBRACK, + STATE(1931), 1, + sym_decltype_auto, + STATE(3542), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5874), 1, + sym__abstract_declarator, + STATE(4409), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7089), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7664), 11, anon_sym___extension__, - anon_sym___based, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -546591,1315 +417383,2169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [200036] = 3, + [147141] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5484), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5486), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7668), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [200076] = 3, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147232] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5435), 29, - anon_sym_COMMA, + ACTIONS(4439), 1, + anon_sym_RBRACK, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [200116] = 23, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147323] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(7218), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(8677), 1, - sym_identifier, - ACTIONS(8679), 1, - anon_sym_COLON_COLON, - ACTIONS(8683), 1, - sym_primitive_type, - ACTIONS(8685), 1, - anon_sym_enum, - ACTIONS(8687), 1, - anon_sym_class, - ACTIONS(8689), 1, - anon_sym_struct, - ACTIONS(8691), 1, - anon_sym_union, - ACTIONS(8693), 1, - sym_auto, - ACTIONS(8695), 1, - anon_sym_decltype, - ACTIONS(8697), 1, - anon_sym_typename, - STATE(3052), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3233), 1, - sym__type_specifier, - STATE(3609), 1, - sym_decltype_auto, - STATE(3624), 1, - sym_qualified_type_identifier, - STATE(5765), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7670), 1, + anon_sym_SEMI, + STATE(2697), 1, sym_argument_list, - STATE(7293), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3567), 2, - sym_decltype, - sym_template_type, - ACTIONS(8681), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3613), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [200196] = 23, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147414] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(7218), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(8645), 1, - sym_identifier, - ACTIONS(8647), 1, - anon_sym_COLON_COLON, - ACTIONS(8651), 1, - sym_primitive_type, - ACTIONS(8653), 1, - anon_sym_enum, - ACTIONS(8655), 1, - anon_sym_class, - ACTIONS(8657), 1, - anon_sym_struct, - ACTIONS(8659), 1, - anon_sym_union, - ACTIONS(8661), 1, - sym_auto, - ACTIONS(8663), 1, - anon_sym_decltype, - ACTIONS(8665), 1, - anon_sym_typename, - STATE(3074), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3286), 1, - sym__type_specifier, - STATE(3715), 1, - sym_decltype_auto, - STATE(3733), 1, - sym_qualified_type_identifier, - STATE(5700), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7672), 1, + anon_sym_SEMI, + STATE(2697), 1, sym_argument_list, - STATE(7282), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3640), 2, - sym_decltype, - sym_template_type, - ACTIONS(8649), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3718), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [200276] = 3, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 3, + ACTIONS(5326), 1, + sym_literal_suffix, + ACTIONS(4069), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5494), 29, + 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(4061), 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_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [200316] = 4, + 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, + [147552] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5202), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5204), 28, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7674), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147643] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5793), 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(5791), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [200358] = 11, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [147700] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(8619), 1, - anon_sym___attribute__, - ACTIONS(8621), 1, - anon_sym_LBRACE, - STATE(5861), 1, - sym_field_declaration_list, - STATE(6041), 1, - sym_attribute_specifier, - STATE(7769), 1, - sym_virtual_specifier, - STATE(8683), 1, - sym_base_class_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5671), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5669), 21, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7676), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [200414] = 23, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147791] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(7218), 1, + ACTIONS(4451), 1, + anon_sym_RBRACK, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(8623), 1, - sym_identifier, - ACTIONS(8625), 1, - anon_sym_COLON_COLON, - ACTIONS(8629), 1, - sym_primitive_type, - ACTIONS(8631), 1, - anon_sym_enum, - ACTIONS(8633), 1, - anon_sym_class, - ACTIONS(8635), 1, - anon_sym_struct, - ACTIONS(8637), 1, - anon_sym_union, - ACTIONS(8639), 1, - sym_auto, - ACTIONS(8641), 1, - anon_sym_decltype, - ACTIONS(8643), 1, - anon_sym_typename, - STATE(3179), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3565), 1, - sym__type_specifier, - STATE(4015), 1, - sym_decltype_auto, - STATE(4028), 1, - sym_qualified_type_identifier, - STATE(5787), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, sym_argument_list, - STATE(7276), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3985), 2, - sym_decltype, - sym_template_type, - ACTIONS(8627), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4016), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [200494] = 3, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147882] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5578), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5580), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + ACTIONS(7678), 1, + anon_sym_COLON, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [200534] = 3, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147973] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5506), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5904), 3, + anon_sym_DOT_DOT_DOT, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [200574] = 3, + anon_sym_QMARK, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148060] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5182), 29, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7680), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148151] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7682), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [200614] = 3, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148242] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 3, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7684), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148333] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5537), 29, - anon_sym_COMMA, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7686), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148424] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5724), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [200654] = 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, + [148491] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5480), 3, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5482), 29, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + ACTIONS(7688), 1, + anon_sym_RBRACK, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [200694] = 3, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 3, + ACTIONS(5773), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5510), 29, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5771), 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_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [200734] = 11, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [148627] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(2614), 1, - sym_attribute_specifier, - STATE(6083), 1, - sym_field_declaration_list, - STATE(7798), 1, - sym_virtual_specifier, - STATE(8699), 1, - sym_base_class_clause, - ACTIONS(5677), 2, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7690), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5679), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [200790] = 3, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148718] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5531), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5533), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + ACTIONS(7692), 1, + anon_sym_COLON, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [200830] = 23, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148809] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7218), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(8605), 1, - sym_identifier, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8609), 1, - anon_sym_enum, - ACTIONS(8611), 1, - anon_sym_class, - ACTIONS(8613), 1, - anon_sym_struct, - ACTIONS(8615), 1, - anon_sym_union, - ACTIONS(8617), 1, - anon_sym_typename, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(4710), 1, - sym__type_specifier, - STATE(5759), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, sym_argument_list, - STATE(7275), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [200910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5445), 3, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5759), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5447), 29, - anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5757), 20, + anon_sym_DOT_DOT_DOT, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [200950] = 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, + [148868] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5441), 3, - anon_sym_AMP, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5443), 29, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7694), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [200990] = 23, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148959] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(3173), 1, - sym_auto, - ACTIONS(3175), 1, - anon_sym_decltype, - ACTIONS(7218), 1, + ACTIONS(4427), 1, + anon_sym_RBRACK, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7298), 1, - sym_primitive_type, - ACTIONS(8699), 1, - sym_identifier, - ACTIONS(8701), 1, - anon_sym_COLON_COLON, - ACTIONS(8703), 1, - anon_sym_enum, - ACTIONS(8705), 1, - anon_sym_class, - ACTIONS(8707), 1, - anon_sym_struct, - ACTIONS(8709), 1, - anon_sym_union, - ACTIONS(8711), 1, - anon_sym_typename, - STATE(3032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3612), 1, - sym_decltype_auto, - STATE(3616), 1, - sym_qualified_type_identifier, - STATE(4735), 1, - sym__type_specifier, - STATE(5712), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, sym_argument_list, - STATE(7302), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3593), 2, - sym_decltype, - sym_template_type, - ACTIONS(3139), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3614), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [201070] = 3, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5449), 3, + ACTIONS(5718), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5451), 29, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5720), 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [201110] = 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, + [149095] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5373), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5375), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7696), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [201150] = 3, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149186] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5453), 3, - anon_sym_AMP, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5455), 29, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7698), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [201190] = 14, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149277] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7421), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7429), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(8536), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7700), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(8538), 1, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - ACTIONS(8540), 1, - anon_sym_AMP, - STATE(4812), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(7262), 1, - sym__abstract_declarator, - STATE(5466), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7940), 5, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [201252] = 3, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149368] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 3, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, anon_sym_AMP, - anon_sym_const, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + ACTIONS(7702), 1, anon_sym_COLON, - ACTIONS(4879), 29, - anon_sym_LPAREN2, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7624), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_or, + ACTIONS(7626), 2, + anon_sym_AMP_AMP, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [201292] = 3, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149459] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5498), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7704), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [201332] = 3, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149550] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5516), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5518), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + ACTIONS(7706), 1, + anon_sym_COLON, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [201372] = 23, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149641] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(7218), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(8583), 1, - sym_identifier, - ACTIONS(8585), 1, - anon_sym_COLON_COLON, - ACTIONS(8589), 1, - sym_primitive_type, - ACTIONS(8591), 1, - anon_sym_enum, - ACTIONS(8593), 1, - anon_sym_class, - ACTIONS(8595), 1, - anon_sym_struct, - ACTIONS(8597), 1, - anon_sym_union, - ACTIONS(8599), 1, - sym_auto, - ACTIONS(8601), 1, - anon_sym_decltype, - ACTIONS(8603), 1, - anon_sym_typename, - STATE(2715), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3041), 1, - sym__type_specifier, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(3224), 1, - sym_decltype_auto, - STATE(5703), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7708), 1, + anon_sym_RPAREN, + STATE(2697), 1, sym_argument_list, - STATE(7278), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3194), 2, - sym_decltype, - sym_template_type, - ACTIONS(8587), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3215), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [201452] = 3, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149732] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5502), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + ACTIONS(7710), 1, + anon_sym_COLON, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [201492] = 4, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149823] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8713), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(6121), 3, - anon_sym_AMP, + ACTIONS(4299), 1, + anon_sym_RBRACK, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6119), 27, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149914] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7620), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5724), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [201534] = 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, + [149977] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5547), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7712), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [201574] = 3, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150068] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5488), 3, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(6705), 1, + anon_sym_LT, + STATE(1726), 1, + sym_template_argument_list, + ACTIONS(4059), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5490), 29, + anon_sym_COLON, + ACTIONS(4067), 30, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -547919,564 +419565,711 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [201614] = 23, + [150119] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(7218), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(8677), 1, - sym_identifier, - ACTIONS(8679), 1, - anon_sym_COLON_COLON, - ACTIONS(8683), 1, - sym_primitive_type, - ACTIONS(8685), 1, - anon_sym_enum, - ACTIONS(8687), 1, - anon_sym_class, - ACTIONS(8689), 1, - anon_sym_struct, - ACTIONS(8691), 1, - anon_sym_union, - ACTIONS(8693), 1, - sym_auto, - ACTIONS(8695), 1, - anon_sym_decltype, - ACTIONS(8697), 1, - anon_sym_typename, - STATE(3052), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3245), 1, - sym__type_specifier, - STATE(3609), 1, - sym_decltype_auto, - STATE(3624), 1, - sym_qualified_type_identifier, - STATE(5734), 1, - sym_argument_list, - STATE(7293), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3567), 2, - sym_decltype, - sym_template_type, - ACTIONS(8681), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3613), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [201694] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4888), 3, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4890), 29, - anon_sym_LPAREN2, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7382), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [201734] = 3, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150210] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4850), 29, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7714), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [201774] = 11, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150301] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(2638), 1, - sym_attribute_specifier, - STATE(6056), 1, - sym_field_declaration_list, - STATE(7811), 1, - sym_virtual_specifier, - STATE(8720), 1, - sym_base_class_clause, - ACTIONS(5653), 2, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7716), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5655), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [201830] = 3, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150392] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5345), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5347), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7718), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [201870] = 3, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150483] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5514), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7648), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [201910] = 23, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [150564] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(3173), 1, - sym_auto, - ACTIONS(3175), 1, - anon_sym_decltype, - ACTIONS(7218), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7298), 1, - sym_primitive_type, - ACTIONS(8699), 1, - sym_identifier, - ACTIONS(8701), 1, - anon_sym_COLON_COLON, - ACTIONS(8703), 1, - anon_sym_enum, - ACTIONS(8705), 1, - anon_sym_class, - ACTIONS(8707), 1, - anon_sym_struct, - ACTIONS(8709), 1, - anon_sym_union, - ACTIONS(8711), 1, - anon_sym_typename, - STATE(3032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3612), 1, - sym_decltype_auto, - STATE(3616), 1, - sym_qualified_type_identifier, - STATE(4763), 1, - sym__type_specifier, - STATE(5741), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7720), 1, + anon_sym_SEMI, + STATE(2697), 1, sym_argument_list, - STATE(7302), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3593), 2, - sym_decltype, - sym_template_type, - ACTIONS(3139), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3614), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [201990] = 3, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150655] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5588), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7722), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [202030] = 3, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150746] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5396), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5398), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7724), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [202070] = 3, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150837] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5369), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5371), 29, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5809), 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(5807), 20, + anon_sym_DOT_DOT_DOT, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [202110] = 14, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [150896] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7206), 1, - anon_sym_const, - ACTIONS(7421), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7429), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(8536), 1, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, - ACTIONS(8538), 1, - anon_sym_AMP_AMP, - ACTIONS(8540), 1, + anon_sym_PERCENT, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5902), 5, + anon_sym_PIPE, anon_sym_AMP, - STATE(4812), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(7264), 1, - sym__abstract_declarator, - STATE(5466), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6663), 5, - anon_sym_LBRACK_LBRACK, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5900), 15, + anon_sym_DOT_DOT_DOT, + anon_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_final, - anon_sym_override, - anon_sym_requires, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7198), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [202172] = 23, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [150965] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7218), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(8605), 1, - sym_identifier, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8609), 1, - anon_sym_enum, - ACTIONS(8611), 1, - anon_sym_class, - ACTIONS(8613), 1, - anon_sym_struct, - ACTIONS(8615), 1, - anon_sym_union, - ACTIONS(8617), 1, - anon_sym_typename, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(4496), 1, - sym__type_specifier, - STATE(5743), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + ACTIONS(7726), 1, + anon_sym_COLON, + STATE(2697), 1, sym_argument_list, - STATE(7275), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [202252] = 9, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151056] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, - anon_sym___attribute__, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8718), 1, - anon_sym_COLON, - STATE(5807), 1, - sym__enum_base_clause, - STATE(5888), 1, - sym_enumerator_list, - STATE(6014), 1, - sym_attribute_specifier, - ACTIONS(5794), 2, - anon_sym_AMP, + ACTIONS(7731), 1, anon_sym_const, - ACTIONS(5792), 23, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(4899), 2, + anon_sym_AMP, anon_sym_LBRACK, - anon_sym_EQ, + STATE(4237), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7728), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -548487,95 +420280,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, + ACTIONS(4901), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [202303] = 14, + [151107] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(7625), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7801), 1, - sym_identifier, - ACTIONS(7803), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5777), 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(5775), 22, + anon_sym_DOT_DOT_DOT, anon_sym_STAR, - ACTIONS(7805), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7807), 1, - anon_sym_AMP, - STATE(6862), 1, - sym__field_declarator, - STATE(7100), 1, - sym_operator_name, - STATE(9157), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(7189), 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(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [202364] = 14, + anon_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, + [151164] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(3263), 1, + anon_sym_const, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(8404), 1, + ACTIONS(7666), 1, anon_sym_LBRACK, - ACTIONS(8565), 1, + ACTIONS(7734), 1, anon_sym_STAR, - ACTIONS(8567), 1, + ACTIONS(7736), 1, anon_sym_AMP_AMP, - ACTIONS(8569), 1, + ACTIONS(7738), 1, anon_sym_AMP, - ACTIONS(8573), 1, - anon_sym_const, - STATE(4794), 1, + ACTIONS(7740), 1, + sym_auto, + ACTIONS(7742), 1, + anon_sym_decltype, + STATE(3537), 1, sym_parameter_list, - STATE(6905), 1, + STATE(4873), 1, + sym_decltype_auto, + STATE(5604), 1, sym__function_declarator_seq, - STATE(7335), 1, + STATE(5869), 1, sym__abstract_declarator, - STATE(6147), 2, + STATE(4421), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7960), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6825), 5, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8571), 11, + ACTIONS(7089), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7664), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -548587,301 +420406,1198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [202425] = 9, + [151237] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - ACTIONS(5790), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_COLON, - STATE(2648), 1, - sym_attribute_specifier, - STATE(3076), 1, - sym__enum_base_clause, - STATE(3141), 1, - sym_enumerator_list, - ACTIONS(5802), 2, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(5800), 23, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7744), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151328] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7746), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151419] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [202476] = 9, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7748), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151510] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, - anon_sym___attribute__, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8718), 1, - anon_sym_COLON, - STATE(5811), 1, - sym__enum_base_clause, - STATE(5917), 1, - sym_enumerator_list, - STATE(6006), 1, - sym_attribute_specifier, - ACTIONS(5802), 2, + ACTIONS(4455), 1, + anon_sym_RBRACK, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(5800), 23, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151601] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + ACTIONS(7750), 1, + anon_sym_RBRACK, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151692] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [202527] = 14, + ACTIONS(6047), 1, + anon_sym_COLON, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151783] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(8404), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(8565), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7752), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(8567), 1, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - ACTIONS(8569), 1, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151874] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, anon_sym_AMP, - ACTIONS(8573), 1, - anon_sym_const, - STATE(4794), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7318), 1, - sym__abstract_declarator, - STATE(6147), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7940), 4, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + ACTIONS(7754), 1, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8571), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [202588] = 14, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151965] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(8404), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(8565), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7756), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(8567), 1, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - ACTIONS(8569), 1, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [152056] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, anon_sym_AMP, - ACTIONS(8573), 1, - anon_sym_const, - STATE(4794), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7325), 1, - sym__abstract_declarator, - STATE(6147), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6663), 4, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + ACTIONS(7758), 1, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8571), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [202649] = 9, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [152147] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - ACTIONS(6082), 1, - anon_sym_LBRACE, - ACTIONS(8722), 1, - anon_sym_COLON, - STATE(3285), 1, - sym__enum_base_clause, - STATE(3426), 1, - sym_enumerator_list, - STATE(3630), 1, - sym_attribute_specifier, - ACTIONS(5794), 2, + ACTIONS(4441), 1, + anon_sym_RBRACK, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(5792), 23, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [152238] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6089), 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(6087), 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___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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_requires, - [202700] = 6, + [152283] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(8544), 1, + ACTIONS(4317), 1, + anon_sym_RBRACK, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [152374] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7760), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [152465] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7762), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [152556] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7764), 1, + anon_sym_RBRACE, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [152647] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4330), 1, + anon_sym_RBRACK, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [152738] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4471), 1, + anon_sym_RBRACK, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - STATE(2334), 1, - sym_template_argument_list, - ACTIONS(4865), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(4860), 25, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [202745] = 14, + [152829] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, + ACTIONS(3263), 1, anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(8404), 1, + ACTIONS(7666), 1, anon_sym_LBRACK, - ACTIONS(8724), 1, + ACTIONS(7734), 1, anon_sym_STAR, - ACTIONS(8726), 1, + ACTIONS(7736), 1, anon_sym_AMP_AMP, - ACTIONS(8728), 1, + ACTIONS(7738), 1, anon_sym_AMP, - STATE(4709), 1, + ACTIONS(7740), 1, + sym_auto, + ACTIONS(7742), 1, + anon_sym_decltype, + STATE(3537), 1, sym_parameter_list, - STATE(6905), 1, + STATE(4873), 1, + sym_decltype_auto, + STATE(5604), 1, sym__function_declarator_seq, - STATE(7363), 1, + STATE(5881), 1, sym__abstract_declarator, - STATE(5776), 2, + STATE(4429), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6663), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(6825), 5, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8402), 11, + ACTIONS(7109), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7664), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -548893,1005 +421609,893 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [202806] = 14, + [152902] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(4398), 1, + anon_sym_RBRACK, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(8404), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(8565), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, - ACTIONS(8567), 1, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, anon_sym_AMP_AMP, - ACTIONS(8569), 1, - anon_sym_AMP, - ACTIONS(8573), 1, - anon_sym_const, - STATE(4794), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7351), 1, - sym__abstract_declarator, - STATE(5665), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5806), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8571), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [202867] = 14, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [152993] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(7623), 1, - sym_identifier, - ACTIONS(7625), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7627), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + ACTIONS(7766), 1, + anon_sym_RBRACK, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, - ACTIONS(7629), 1, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, anon_sym_AMP_AMP, - ACTIONS(7631), 1, - anon_sym_AMP, - STATE(7327), 1, - sym__field_declarator, - STATE(7499), 1, - sym_operator_name, - STATE(9023), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(7189), 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(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [202928] = 6, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [153084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(8544), 1, + ACTIONS(5753), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - STATE(2334), 1, - sym_template_argument_list, - ACTIONS(4302), 3, + anon_sym_DOT, + ACTIONS(5755), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(5673), 25, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [202973] = 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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [153129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(7222), 1, - sym_auto, - ACTIONS(7224), 1, - anon_sym_decltype, - ACTIONS(7419), 1, - anon_sym_COLON, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(8573), 1, - anon_sym_const, - ACTIONS(8730), 1, - anon_sym_STAR, - ACTIONS(8732), 1, - anon_sym_AMP_AMP, - ACTIONS(8734), 1, + ACTIONS(5799), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(2636), 1, - sym_decltype_auto, - STATE(4808), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7534), 1, - sym__abstract_declarator, - STATE(5850), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8571), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [203040] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(7623), 1, - sym_identifier, - ACTIONS(7625), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5801), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7627), 1, anon_sym_STAR, - ACTIONS(7629), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7631), 1, - anon_sym_AMP, - STATE(7340), 1, - sym__field_declarator, - STATE(7499), 1, - sym_operator_name, - STATE(9023), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(7189), 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(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [203101] = 14, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [153174] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(7625), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7801), 1, - sym_identifier, - ACTIONS(7803), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, - ACTIONS(7805), 1, + anon_sym_PERCENT, + ACTIONS(7626), 2, anon_sym_AMP_AMP, - ACTIONS(7807), 1, - anon_sym_AMP, - STATE(6908), 1, - sym__field_declarator, - STATE(7100), 1, - sym_operator_name, - STATE(9157), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(7189), 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(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [203162] = 14, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + [153259] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(7625), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7801), 1, - sym_identifier, - ACTIONS(7803), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7768), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(7805), 1, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - ACTIONS(7807), 1, - anon_sym_AMP, - STATE(6903), 1, - sym__field_declarator, - STATE(7100), 1, - sym_operator_name, - STATE(9157), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(7189), 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(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [203223] = 14, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [153350] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(8404), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(8724), 1, - anon_sym_STAR, - ACTIONS(8726), 1, - anon_sym_AMP_AMP, - ACTIONS(8728), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, anon_sym_AMP, - STATE(4709), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7315), 1, - sym__abstract_declarator, - STATE(5668), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5806), 4, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7770), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8402), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [203284] = 17, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [153441] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7222), 1, - sym_auto, - ACTIONS(7224), 1, - anon_sym_decltype, - ACTIONS(7497), 1, - anon_sym_COLON, - ACTIONS(8404), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(8573), 1, - anon_sym_const, - ACTIONS(8730), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + ACTIONS(7772), 1, + anon_sym_RBRACK, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, - ACTIONS(8732), 1, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, anon_sym_AMP_AMP, - ACTIONS(8734), 1, - anon_sym_AMP, - STATE(2636), 1, - sym_decltype_auto, - STATE(4808), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7541), 1, - sym__abstract_declarator, - STATE(5958), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8571), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [203351] = 14, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [153532] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(7623), 1, - sym_identifier, - ACTIONS(7625), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7627), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7774), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(7629), 1, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - ACTIONS(7631), 1, - anon_sym_AMP, - STATE(7350), 1, - sym__field_declarator, - STATE(7499), 1, - sym_operator_name, - STATE(9023), 1, - sym_ms_based_modifier, - STATE(5822), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(7189), 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(3490), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [203412] = 3, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [153623] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5240), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5242), 29, + ACTIONS(5364), 1, anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5724), 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(5722), 20, + anon_sym_DOT_DOT_DOT, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [203451] = 9, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [153682] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5832), 1, - anon_sym___attribute__, - ACTIONS(6082), 1, - anon_sym_LBRACE, - ACTIONS(8722), 1, - anon_sym_COLON, - STATE(3287), 1, - sym__enum_base_clause, - STATE(3413), 1, - sym_enumerator_list, - STATE(3625), 1, - sym_attribute_specifier, - ACTIONS(5802), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5800), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5364), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, + ACTIONS(5700), 1, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [203502] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym___attribute__, - ACTIONS(5790), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_COLON, - STATE(2596), 1, - sym_attribute_specifier, - STATE(3096), 1, - sym__enum_base_clause, - STATE(3113), 1, - sym_enumerator_list, - ACTIONS(5794), 2, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(5792), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + ACTIONS(7776), 1, + anon_sym_COLON, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [203553] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, - anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7056), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [203611] = 13, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [153773] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7778), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7131), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [203669] = 13, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [153864] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7153), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [203727] = 19, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5815), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [153951] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6897), 1, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, - ACTIONS(6899), 1, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_AMP, - STATE(6518), 1, - sym__scope_resolution, - STATE(6632), 1, - sym__declarator, - STATE(8040), 1, - sym_init_declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [203797] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - sym_auto, - ACTIONS(119), 1, - anon_sym_decltype, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2719), 1, - sym_primitive_type, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7300), 1, - anon_sym_COLON_COLON, - ACTIONS(7302), 1, - anon_sym_enum, - ACTIONS(7304), 1, - anon_sym_class, - ACTIONS(7306), 1, - anon_sym_struct, - ACTIONS(7308), 1, - anon_sym_union, - ACTIONS(7310), 1, - anon_sym_typename, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(3929), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3989), 1, - sym_decltype_auto, - STATE(7288), 1, - sym__scope_resolution, - STATE(7564), 1, - sym__type_specifier, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - ACTIONS(3908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3958), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [203871] = 14, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6027), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [154038] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, + ACTIONS(3263), 1, anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(8575), 1, + ACTIONS(6885), 1, + sym_auto, + ACTIONS(6887), 1, + anon_sym_decltype, + ACTIONS(7658), 1, anon_sym_STAR, - ACTIONS(8577), 1, + ACTIONS(7660), 1, anon_sym_AMP_AMP, - ACTIONS(8579), 1, + ACTIONS(7662), 1, anon_sym_AMP, - STATE(4739), 1, + ACTIONS(7666), 1, + anon_sym_LBRACK, + STATE(1931), 1, + sym_decltype_auto, + STATE(3542), 1, sym_parameter_list, - STATE(6905), 1, + STATE(5604), 1, sym__function_declarator_seq, - STATE(7370), 1, + STATE(5859), 1, sym__abstract_declarator, - STATE(5776), 2, + STATE(4406), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6663), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6825), 5, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8402), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [203931] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(8544), 1, - anon_sym_LT, - STATE(3120), 1, - sym_template_argument_list, - ACTIONS(4276), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4284), 24, + ACTIONS(7109), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_requires, - [203975] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1998), 1, - anon_sym_enum, - ACTIONS(2000), 1, - anon_sym_class, - ACTIONS(2002), 1, - anon_sym_struct, - ACTIONS(2004), 1, - anon_sym_union, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(2010), 1, - anon_sym_typename, - ACTIONS(7229), 1, - sym_identifier, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(7235), 1, - sym_primitive_type, - STATE(2466), 1, - sym__type_specifier, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [204049] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, - anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7152), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + ACTIONS(7664), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -549902,2775 +422506,3231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [204107] = 13, + [154111] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7032), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [204165] = 14, + anon_sym_PERCENT, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [154194] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(8404), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(8575), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7780), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(8577), 1, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - ACTIONS(8579), 1, - anon_sym_AMP, - STATE(4739), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7368), 1, - sym__abstract_declarator, - STATE(5776), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7940), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8402), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [204225] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(7316), 1, - sym_identifier, - ACTIONS(7318), 1, - anon_sym_COLON_COLON, - ACTIONS(7322), 1, - sym_primitive_type, - ACTIONS(7324), 1, - anon_sym_enum, - ACTIONS(7326), 1, - anon_sym_class, - ACTIONS(7328), 1, - anon_sym_struct, - ACTIONS(7330), 1, - anon_sym_union, - ACTIONS(7332), 1, - sym_auto, - ACTIONS(7334), 1, - anon_sym_decltype, - ACTIONS(7336), 1, - anon_sym_typename, - STATE(5494), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5997), 1, - sym__type_specifier, - STATE(6027), 1, - sym_decltype_auto, - STATE(6032), 1, - sym_qualified_type_identifier, - STATE(7289), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(6005), 2, - sym_decltype, - sym_template_type, - ACTIONS(7320), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6031), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [204299] = 13, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [154285] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7918), 1, - sym_identifier, - ACTIONS(7920), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7926), 1, - sym_primitive_type, - ACTIONS(8030), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7782), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - STATE(6767), 1, - sym__type_declarator, - STATE(6990), 1, - sym_pointer_type_declarator, - STATE(9270), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7924), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6987), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [204357] = 14, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [154376] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, - anon_sym_AMP_AMP, - ACTIONS(4914), 1, - anon_sym_AMP, - ACTIONS(8404), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - STATE(4706), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7406), 1, - sym__abstract_declarator, - STATE(5794), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5806), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7784), 1, anon_sym_SEMI, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8402), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [204417] = 14, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [154467] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(4910), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7786), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(4912), 1, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - ACTIONS(4914), 1, - anon_sym_AMP, - ACTIONS(8404), 1, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [154558] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, anon_sym_LBRACK, - STATE(4706), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7388), 1, - sym__abstract_declarator, - STATE(5776), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7940), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7788), 1, anon_sym_SEMI, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8402), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [204477] = 13, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [154649] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7790), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7079), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [204535] = 21, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [154740] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(65), 1, - anon_sym_enum, - ACTIONS(67), 1, - anon_sym_class, - ACTIONS(69), 1, - anon_sym_struct, - ACTIONS(71), 1, - anon_sym_union, - ACTIONS(117), 1, - sym_auto, - ACTIONS(119), 1, - anon_sym_decltype, - ACTIONS(127), 1, - anon_sym_typename, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2719), 1, - sym_primitive_type, - ACTIONS(4938), 1, - sym_identifier, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - STATE(3846), 1, - sym__type_specifier, - STATE(3932), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3989), 1, - sym_decltype_auto, - STATE(4533), 1, - sym_qualified_type_identifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - ACTIONS(53), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3958), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [204609] = 21, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + ACTIONS(7792), 1, + anon_sym_COLON, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [154831] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(3173), 1, - sym_auto, - ACTIONS(3175), 1, - anon_sym_decltype, - ACTIONS(7298), 1, - sym_primitive_type, - ACTIONS(8699), 1, - sym_identifier, - ACTIONS(8701), 1, - anon_sym_COLON_COLON, - ACTIONS(8703), 1, - anon_sym_enum, - ACTIONS(8705), 1, - anon_sym_class, - ACTIONS(8707), 1, - anon_sym_struct, - ACTIONS(8709), 1, - anon_sym_union, - ACTIONS(8711), 1, - anon_sym_typename, - STATE(3032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3478), 1, - sym__type_specifier, - STATE(3612), 1, - sym_decltype_auto, - STATE(3616), 1, - sym_qualified_type_identifier, - STATE(7302), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3593), 2, - sym_decltype, - sym_template_type, - ACTIONS(3139), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3614), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [204683] = 21, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + ACTIONS(7794), 1, + anon_sym_COLON, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [154922] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(8645), 1, - sym_identifier, - ACTIONS(8647), 1, - anon_sym_COLON_COLON, - ACTIONS(8651), 1, - sym_primitive_type, - ACTIONS(8653), 1, - anon_sym_enum, - ACTIONS(8655), 1, - anon_sym_class, - ACTIONS(8657), 1, - anon_sym_struct, - ACTIONS(8659), 1, - anon_sym_union, - ACTIONS(8661), 1, - sym_auto, - ACTIONS(8663), 1, - anon_sym_decltype, - ACTIONS(8665), 1, - anon_sym_typename, - STATE(3074), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3289), 1, - sym__type_specifier, - STATE(3715), 1, - sym_decltype_auto, - STATE(3733), 1, - sym_qualified_type_identifier, - STATE(7282), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3640), 2, - sym_decltype, - sym_template_type, - ACTIONS(8649), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3718), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [204757] = 21, + ACTIONS(4390), 1, + anon_sym_RBRACK, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155013] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(8583), 1, - sym_identifier, - ACTIONS(8585), 1, - anon_sym_COLON_COLON, - ACTIONS(8589), 1, - sym_primitive_type, - ACTIONS(8591), 1, - anon_sym_enum, - ACTIONS(8593), 1, - anon_sym_class, - ACTIONS(8595), 1, - anon_sym_struct, - ACTIONS(8597), 1, - anon_sym_union, - ACTIONS(8599), 1, - sym_auto, - ACTIONS(8601), 1, - anon_sym_decltype, - ACTIONS(8603), 1, - anon_sym_typename, - STATE(2715), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3164), 1, - sym__type_specifier, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(3224), 1, - sym_decltype_auto, - STATE(7278), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3194), 2, - sym_decltype, - sym_template_type, - ACTIONS(8587), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3215), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [204831] = 19, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + ACTIONS(7796), 1, + anon_sym_COLON, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155104] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6897), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7798), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(6899), 1, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_AMP, - STATE(6518), 1, - sym__scope_resolution, - STATE(6671), 1, - sym__declarator, - STATE(8215), 1, - sym_init_declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [204901] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(8583), 1, - sym_identifier, - ACTIONS(8585), 1, - anon_sym_COLON_COLON, - ACTIONS(8589), 1, - sym_primitive_type, - ACTIONS(8591), 1, - anon_sym_enum, - ACTIONS(8593), 1, - anon_sym_class, - ACTIONS(8595), 1, - anon_sym_struct, - ACTIONS(8597), 1, - anon_sym_union, - ACTIONS(8599), 1, - sym_auto, - ACTIONS(8601), 1, - anon_sym_decltype, - ACTIONS(8603), 1, - anon_sym_typename, - STATE(2715), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3069), 1, - sym__type_specifier, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(3224), 1, - sym_decltype_auto, - STATE(7278), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3194), 2, - sym_decltype, - sym_template_type, - ACTIONS(8587), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3215), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [204975] = 13, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155195] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7800), 1, + anon_sym_COMMA, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7035), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [205033] = 19, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155286] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(4264), 1, + anon_sym_RBRACK, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6897), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, - ACTIONS(6899), 1, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_AMP, - STATE(6349), 1, - sym__declarator, - STATE(6518), 1, - sym__scope_resolution, - STATE(8405), 1, - sym_init_declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [205103] = 14, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(5803), 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(5805), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(8575), 1, anon_sym_STAR, - ACTIONS(8577), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8579), 1, - anon_sym_AMP, - STATE(4739), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7371), 1, - sym__abstract_declarator, - STATE(5687), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5806), 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_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [155422] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7802), 1, anon_sym_COMMA, - anon_sym_GT2, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8402), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [205163] = 21, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155513] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - sym_auto, - ACTIONS(119), 1, - anon_sym_decltype, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(1930), 1, - anon_sym_enum, - ACTIONS(1932), 1, - anon_sym_class, - ACTIONS(1934), 1, - anon_sym_struct, - ACTIONS(1936), 1, - anon_sym_union, - ACTIONS(1960), 1, - anon_sym_typename, - ACTIONS(2719), 1, - sym_primitive_type, - ACTIONS(4906), 1, - sym_identifier, - ACTIONS(4916), 1, - anon_sym_COLON_COLON, - STATE(3846), 1, - sym__type_specifier, - STATE(3932), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3989), 1, - sym_decltype_auto, - STATE(4533), 1, - sym_qualified_type_identifier, - STATE(7280), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - ACTIONS(53), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3958), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [205237] = 19, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7804), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155604] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(6895), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6989), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7806), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(6991), 1, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - ACTIONS(6993), 1, - anon_sym_AMP, - ACTIONS(6995), 1, - anon_sym_COLON_COLON, - STATE(6488), 1, - sym__scope_resolution, - STATE(6591), 1, - sym__declarator, - STATE(8310), 1, - sym_init_declarator, - STATE(9548), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [205307] = 19, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155695] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6897), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7808), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(6899), 1, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_AMP, - STATE(6268), 1, - sym__declarator, - STATE(6518), 1, - sym__scope_resolution, - STATE(8314), 1, - sym_init_declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [205377] = 13, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155786] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(4293), 1, + anon_sym_RBRACK, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7044), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [205435] = 21, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155877] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(8623), 1, - sym_identifier, - ACTIONS(8625), 1, - anon_sym_COLON_COLON, - ACTIONS(8629), 1, - sym_primitive_type, - ACTIONS(8631), 1, - anon_sym_enum, - ACTIONS(8633), 1, - anon_sym_class, - ACTIONS(8635), 1, - anon_sym_struct, - ACTIONS(8637), 1, - anon_sym_union, - ACTIONS(8639), 1, - sym_auto, - ACTIONS(8641), 1, - anon_sym_decltype, - ACTIONS(8643), 1, - anon_sym_typename, - STATE(3179), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3960), 1, - sym__type_specifier, - STATE(4015), 1, - sym_decltype_auto, - STATE(4028), 1, - sym_qualified_type_identifier, - STATE(7276), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3985), 2, - sym_decltype, - sym_template_type, - ACTIONS(8627), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4016), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [205509] = 21, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + ACTIONS(7810), 1, + anon_sym_COLON, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155968] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(3173), 1, - sym_auto, - ACTIONS(3175), 1, - anon_sym_decltype, - ACTIONS(7298), 1, - sym_primitive_type, - ACTIONS(8699), 1, - sym_identifier, - ACTIONS(8701), 1, - anon_sym_COLON_COLON, - ACTIONS(8703), 1, - anon_sym_enum, - ACTIONS(8705), 1, - anon_sym_class, - ACTIONS(8707), 1, - anon_sym_struct, - ACTIONS(8709), 1, - anon_sym_union, - ACTIONS(8711), 1, - anon_sym_typename, - STATE(3032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3612), 1, - sym_decltype_auto, - STATE(3616), 1, - sym_qualified_type_identifier, - STATE(4760), 1, - sym__type_specifier, - STATE(7302), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3593), 2, - sym_decltype, - sym_template_type, - ACTIONS(3139), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3614), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [205583] = 21, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7812), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156059] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - sym_auto, - ACTIONS(119), 1, - anon_sym_decltype, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2719), 1, - sym_primitive_type, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7300), 1, - anon_sym_COLON_COLON, - ACTIONS(7302), 1, - anon_sym_enum, - ACTIONS(7304), 1, - anon_sym_class, - ACTIONS(7306), 1, - anon_sym_struct, - ACTIONS(7308), 1, - anon_sym_union, - ACTIONS(7310), 1, - anon_sym_typename, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(3846), 1, - sym__type_specifier, - STATE(3929), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3989), 1, - sym_decltype_auto, - STATE(7288), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - ACTIONS(3908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3958), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [205657] = 13, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7814), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156150] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7918), 1, - sym_identifier, - ACTIONS(7920), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7926), 1, - sym_primitive_type, - ACTIONS(8030), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7816), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - STATE(6770), 1, - sym__type_declarator, - STATE(6990), 1, - sym_pointer_type_declarator, - STATE(9270), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7924), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6987), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [205715] = 13, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156241] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(4419), 1, + anon_sym_RBRACK, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, - anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7061), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [205773] = 19, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156332] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6897), 1, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + ACTIONS(7818), 1, + anon_sym_COLON, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, - ACTIONS(6899), 1, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_AMP, - STATE(6433), 1, - sym__declarator, - STATE(6518), 1, - sym__scope_resolution, - STATE(8325), 1, - sym_init_declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [205843] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(8645), 1, - sym_identifier, - ACTIONS(8647), 1, - anon_sym_COLON_COLON, - ACTIONS(8651), 1, - sym_primitive_type, - ACTIONS(8653), 1, - anon_sym_enum, - ACTIONS(8655), 1, - anon_sym_class, - ACTIONS(8657), 1, - anon_sym_struct, - ACTIONS(8659), 1, - anon_sym_union, - ACTIONS(8661), 1, - sym_auto, - ACTIONS(8663), 1, - anon_sym_decltype, - ACTIONS(8665), 1, - anon_sym_typename, - STATE(3074), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3288), 1, - sym__type_specifier, - STATE(3715), 1, - sym_decltype_auto, - STATE(3733), 1, - sym_qualified_type_identifier, - STATE(7282), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3640), 2, - sym_decltype, - sym_template_type, - ACTIONS(8649), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3718), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [205917] = 13, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156423] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(4297), 1, + anon_sym_RBRACK, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7902), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, - ACTIONS(7910), 1, - sym_primitive_type, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7382), 1, - sym__type_declarator, - STATE(9186), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [205975] = 13, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156514] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7918), 1, - sym_identifier, - ACTIONS(7920), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7926), 1, - sym_primitive_type, - ACTIONS(8030), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7820), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - STATE(6768), 1, - sym__type_declarator, - STATE(6990), 1, - sym_pointer_type_declarator, - STATE(9270), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7924), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6987), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [206033] = 13, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156605] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7648), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7059), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [206091] = 19, + anon_sym_PERCENT, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [156684] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(6895), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6989), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7822), 1, + anon_sym_COMMA, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(6991), 1, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - ACTIONS(6993), 1, - anon_sym_AMP, - ACTIONS(6995), 1, - anon_sym_COLON_COLON, - STATE(6488), 1, - sym__scope_resolution, - STATE(6584), 1, - sym__declarator, - STATE(8310), 1, - sym_init_declarator, - STATE(9548), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [206161] = 13, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156775] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + ACTIONS(7824), 1, + anon_sym_COLON, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7067), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [206219] = 19, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156866] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(4274), 1, + anon_sym_RBRACK, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6897), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, - ACTIONS(6899), 1, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_AMP, - STATE(6295), 1, - sym__declarator, - STATE(6518), 1, - sym__scope_resolution, - STATE(8088), 1, - sym_init_declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [206289] = 19, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156957] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6897), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7826), 1, + anon_sym_COMMA, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(6899), 1, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_AMP, - STATE(6518), 1, - sym__scope_resolution, - STATE(6694), 1, - sym__declarator, - STATE(8391), 1, - sym_init_declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [206359] = 13, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157048] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + ACTIONS(7828), 1, + anon_sym_COLON, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7150), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [206417] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - sym_auto, - ACTIONS(119), 1, - anon_sym_decltype, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2719), 1, - sym_primitive_type, - ACTIONS(2721), 1, - anon_sym_enum, - ACTIONS(2723), 1, - anon_sym_class, - ACTIONS(2725), 1, - anon_sym_struct, - ACTIONS(2727), 1, - anon_sym_union, - ACTIONS(2729), 1, - anon_sym_typename, - ACTIONS(4938), 1, - sym_identifier, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - STATE(3846), 1, - sym__type_specifier, - STATE(3932), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3989), 1, - sym_decltype_auto, - STATE(4533), 1, - sym_qualified_type_identifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - ACTIONS(53), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3958), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [206491] = 13, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157139] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7830), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7143), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [206549] = 19, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157230] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6897), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7832), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(6899), 1, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_AMP, - STATE(6518), 1, - sym__scope_resolution, - STATE(6693), 1, - sym__declarator, - STATE(8310), 1, - sym_init_declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [206619] = 21, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157321] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(8677), 1, - sym_identifier, - ACTIONS(8679), 1, - anon_sym_COLON_COLON, - ACTIONS(8683), 1, - sym_primitive_type, - ACTIONS(8685), 1, - anon_sym_enum, - ACTIONS(8687), 1, - anon_sym_class, - ACTIONS(8689), 1, - anon_sym_struct, - ACTIONS(8691), 1, - anon_sym_union, - ACTIONS(8693), 1, - sym_auto, - ACTIONS(8695), 1, - anon_sym_decltype, - ACTIONS(8697), 1, - anon_sym_typename, - STATE(3052), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3547), 1, - sym__type_specifier, - STATE(3609), 1, - sym_decltype_auto, - STATE(3624), 1, - sym_qualified_type_identifier, - STATE(7293), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3567), 2, - sym_decltype, - sym_template_type, - ACTIONS(8681), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3613), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [206693] = 13, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7834), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157412] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + ACTIONS(7836), 1, + anon_sym_RBRACK, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7034), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [206751] = 19, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157503] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6897), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7838), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(6899), 1, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_AMP, - STATE(6436), 1, - sym__declarator, - STATE(6518), 1, - sym__scope_resolution, - STATE(8143), 1, - sym_init_declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [206821] = 13, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157594] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7840), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7141), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [206879] = 19, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157685] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(6895), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6989), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7842), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(6991), 1, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, anon_sym_AMP_AMP, - ACTIONS(6993), 1, - anon_sym_AMP, - ACTIONS(6995), 1, - anon_sym_COLON_COLON, - STATE(6488), 1, - sym__scope_resolution, - STATE(6594), 1, - sym__declarator, - STATE(8310), 1, - sym_init_declarator, - STATE(9548), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [206949] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(8677), 1, - sym_identifier, - ACTIONS(8679), 1, - anon_sym_COLON_COLON, - ACTIONS(8683), 1, - sym_primitive_type, - ACTIONS(8685), 1, - anon_sym_enum, - ACTIONS(8687), 1, - anon_sym_class, - ACTIONS(8689), 1, - anon_sym_struct, - ACTIONS(8691), 1, - anon_sym_union, - ACTIONS(8693), 1, - sym_auto, - ACTIONS(8695), 1, - anon_sym_decltype, - ACTIONS(8697), 1, - anon_sym_typename, - STATE(3052), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3242), 1, - sym__type_specifier, - STATE(3609), 1, - sym_decltype_auto, - STATE(3624), 1, - sym_qualified_type_identifier, - STATE(7293), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3567), 2, - sym_decltype, - sym_template_type, - ACTIONS(8681), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3613), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [207023] = 13, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157776] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7962), 1, - sym_identifier, - ACTIONS(7964), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7966), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5724), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, - ACTIONS(7970), 1, - sym_primitive_type, - STATE(3705), 1, - sym__type_declarator, - STATE(4052), 1, - sym_pointer_type_declarator, - STATE(9176), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7968), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4056), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [207081] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(8623), 1, - sym_identifier, - ACTIONS(8625), 1, - anon_sym_COLON_COLON, - ACTIONS(8629), 1, - sym_primitive_type, - ACTIONS(8631), 1, - anon_sym_enum, - ACTIONS(8633), 1, - anon_sym_class, - ACTIONS(8635), 1, - anon_sym_struct, - ACTIONS(8637), 1, - anon_sym_union, - ACTIONS(8639), 1, - sym_auto, - ACTIONS(8641), 1, - anon_sym_decltype, - ACTIONS(8643), 1, - anon_sym_typename, - STATE(3179), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3484), 1, - sym__type_specifier, - STATE(4015), 1, - sym_decltype_auto, - STATE(4028), 1, - sym_qualified_type_identifier, - STATE(7276), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3985), 2, - sym_decltype, - sym_template_type, - ACTIONS(8627), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4016), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [207155] = 13, + anon_sym_PERCENT, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [157851] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7844), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7071), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [207213] = 13, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157942] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7116), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [207271] = 13, + anon_sym_PERCENT, + ACTIONS(5724), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [158007] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + ACTIONS(7846), 1, + anon_sym_RBRACK, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7104), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [207329] = 13, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [158098] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + ACTIONS(7848), 1, + anon_sym_COLON, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7068), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [207387] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(3173), 1, - sym_auto, - ACTIONS(3175), 1, - anon_sym_decltype, - ACTIONS(7298), 1, - sym_primitive_type, - ACTIONS(8699), 1, - sym_identifier, - ACTIONS(8701), 1, - anon_sym_COLON_COLON, - ACTIONS(8703), 1, - anon_sym_enum, - ACTIONS(8705), 1, - anon_sym_class, - ACTIONS(8707), 1, - anon_sym_struct, - ACTIONS(8709), 1, - anon_sym_union, - ACTIONS(8711), 1, - anon_sym_typename, - STATE(3032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3612), 1, - sym_decltype_auto, - STATE(3616), 1, - sym_qualified_type_identifier, - STATE(4736), 1, - sym__type_specifier, - STATE(7302), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3593), 2, - sym_decltype, - sym_template_type, - ACTIONS(3139), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3614), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [207461] = 13, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [158189] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(4423), 1, + anon_sym_RBRACK, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7125), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [207519] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(8605), 1, - sym_identifier, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8609), 1, - anon_sym_enum, - ACTIONS(8611), 1, - anon_sym_class, - ACTIONS(8613), 1, - anon_sym_struct, - ACTIONS(8615), 1, - anon_sym_union, - ACTIONS(8617), 1, - anon_sym_typename, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(4493), 1, - sym__type_specifier, - STATE(7275), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [207593] = 13, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [158280] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7948), 1, - sym_identifier, - ACTIONS(7950), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7952), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7850), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(7956), 1, - sym_primitive_type, - STATE(3540), 1, - sym__type_declarator, - STATE(3856), 1, - sym_pointer_type_declarator, - STATE(9431), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7954), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3859), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [207651] = 13, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [158371] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7852), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7101), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [207709] = 21, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [158462] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - sym_auto, - ACTIONS(119), 1, - anon_sym_decltype, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2719), 1, - sym_primitive_type, - ACTIONS(3900), 1, - sym_identifier, - ACTIONS(3906), 1, - anon_sym_COLON_COLON, - ACTIONS(3910), 1, - anon_sym_enum, - ACTIONS(3912), 1, - anon_sym_class, - ACTIONS(3914), 1, - anon_sym_struct, - ACTIONS(3916), 1, - anon_sym_union, - ACTIONS(3918), 1, - anon_sym_typename, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(3846), 1, - sym__type_specifier, - STATE(3929), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3989), 1, - sym_decltype_auto, - STATE(7295), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - ACTIONS(3908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3958), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [207783] = 13, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7854), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [158553] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(7856), 1, + anon_sym_COLON, + STATE(3033), 1, + sym_attribute_specifier, + STATE(3613), 1, + sym__enum_base_clause, + STATE(3630), 1, + sym_enumerator_list, + ACTIONS(5451), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5449), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7128), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -552681,229 +425741,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [207841] = 13, + 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, + [158610] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7106), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [207899] = 21, + anon_sym_PERCENT, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5724), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5722), 15, + anon_sym_DOT_DOT_DOT, + anon_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, + [158679] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(3900), 1, - sym_identifier, - ACTIONS(7259), 1, - sym_primitive_type, - ACTIONS(7269), 1, - sym_auto, - ACTIONS(7271), 1, - anon_sym_decltype, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(7282), 1, - anon_sym_enum, + ACTIONS(4323), 1, + anon_sym_RBRACK, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, ACTIONS(7284), 1, - anon_sym_class, - ACTIONS(7286), 1, - anon_sym_struct, + anon_sym_PIPE, ACTIONS(7288), 1, - anon_sym_union, - ACTIONS(7290), 1, - anon_sym_typename, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(4993), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5525), 1, - sym__type_specifier, - STATE(5584), 1, - sym_decltype_auto, - STATE(7261), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - ACTIONS(7257), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5598), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [207973] = 13, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [158770] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7962), 1, - sym_identifier, - ACTIONS(7964), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7966), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7858), 1, + anon_sym_RPAREN, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, anon_sym_STAR, - ACTIONS(7970), 1, - sym_primitive_type, - STATE(3704), 1, - sym__type_declarator, - STATE(4052), 1, - sym_pointer_type_declarator, - STATE(9176), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7968), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4056), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [208031] = 13, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [158861] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7142), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [208089] = 13, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5892), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [158948] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7948), 1, - sym_identifier, - ACTIONS(7950), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(7856), 1, + anon_sym_COLON, + STATE(3101), 1, + sym_attribute_specifier, + STATE(3612), 1, + sym__enum_base_clause, + STATE(3616), 1, + sym_enumerator_list, + ACTIONS(5465), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5463), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7952), 1, anon_sym_STAR, - ACTIONS(7956), 1, - sym_primitive_type, - STATE(3477), 1, - sym__type_declarator, - STATE(3856), 1, - sym_pointer_type_declarator, - STATE(9431), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7954), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3859), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -552914,242 +426036,460 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [208147] = 19, + 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, + [159005] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, + ACTIONS(5700), 1, anon_sym_LBRACK, - ACTIONS(6897), 1, + ACTIONS(5944), 1, + anon_sym_COLON, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7622), 1, + anon_sym_SLASH, + ACTIONS(7628), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + anon_sym_AMP, + ACTIONS(7638), 1, + anon_sym_GT_EQ, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(7644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7646), 1, + anon_sym_bitor, + ACTIONS(7648), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(6551), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7618), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7620), 2, anon_sym_STAR, - ACTIONS(6899), 1, + anon_sym_PERCENT, + ACTIONS(7624), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7626), 2, anon_sym_AMP_AMP, - ACTIONS(6901), 1, + anon_sym_and, + ACTIONS(7630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7634), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [159096] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, anon_sym_AMP, - STATE(6518), 1, - sym__scope_resolution, - STATE(6675), 1, - sym__declarator, - STATE(8088), 1, - sym_init_declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [208217] = 14, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + ACTIONS(7860), 1, + anon_sym_SEMI, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [159187] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(5364), 1, anon_sym_LPAREN2, - ACTIONS(4910), 1, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7278), 1, + anon_sym_SLASH, + ACTIONS(7284), 1, + anon_sym_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP, + ACTIONS(7294), 1, + anon_sym_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7302), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7304), 1, + anon_sym_bitor, + ACTIONS(7306), 1, + anon_sym_bitand, + ACTIONS(7862), 1, + anon_sym_RBRACK, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7276), 2, anon_sym_STAR, - ACTIONS(4912), 1, + anon_sym_PERCENT, + ACTIONS(7280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7282), 2, anon_sym_AMP_AMP, - ACTIONS(4914), 1, + anon_sym_and, + ACTIONS(7286), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7296), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7290), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7292), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [159278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - STATE(4706), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7375), 1, - sym__abstract_declarator, - STATE(5776), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7960), 3, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(2828), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8402), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [208277] = 19, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_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, + [159322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5997), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5995), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 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(6897), 1, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [159366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6061), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6059), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6899), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6901), 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, + [159410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6045), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(6292), 1, - sym__declarator, - STATE(6518), 1, - sym__scope_resolution, - STATE(8040), 1, - sym_init_declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [208347] = 21, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6043), 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, + [159454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(7259), 1, - sym_primitive_type, - ACTIONS(7261), 1, - anon_sym_enum, - ACTIONS(7263), 1, - anon_sym_class, - ACTIONS(7265), 1, - anon_sym_struct, - ACTIONS(7267), 1, - anon_sym_union, - ACTIONS(7269), 1, - sym_auto, - ACTIONS(7271), 1, - anon_sym_decltype, - ACTIONS(7273), 1, - anon_sym_typename, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(4993), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5525), 1, - sym__type_specifier, - STATE(5584), 1, - sym_decltype_auto, - STATE(7279), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - ACTIONS(7257), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5598), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [208421] = 13, + ACTIONS(5803), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5805), 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, + [159498] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(3263), 1, + anon_sym_const, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(6023), 1, + sym_auto, + ACTIONS(6025), 1, + anon_sym_decltype, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7864), 1, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7124), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, + ACTIONS(7866), 1, + anon_sym_AMP_AMP, + ACTIONS(7868), 1, + anon_sym_AMP, + STATE(2818), 1, + sym_decltype_auto, + STATE(3611), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5915), 1, + sym__abstract_declarator, + STATE(4455), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7109), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(7664), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -553160,196 +426500,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [208479] = 19, + [159570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(6109), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6107), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, anon_sym_STAR, - ACTIONS(6899), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_AMP, - STATE(6378), 1, - sym__declarator, - STATE(6518), 1, - sym__scope_resolution, - STATE(8391), 1, - sym_init_declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [208549] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(8605), 1, - sym_identifier, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8609), 1, - anon_sym_enum, - ACTIONS(8611), 1, - anon_sym_class, - ACTIONS(8613), 1, - anon_sym_struct, - ACTIONS(8615), 1, - anon_sym_union, - ACTIONS(8617), 1, - anon_sym_typename, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(4699), 1, - sym__type_specifier, - STATE(7275), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [208623] = 19, + 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, + [159614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(6013), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6011), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6989), 1, anon_sym_STAR, - ACTIONS(6991), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6993), 1, - anon_sym_AMP, - ACTIONS(6995), 1, - anon_sym_COLON_COLON, - STATE(6488), 1, - sym__scope_resolution, - STATE(6604), 1, - sym__declarator, - STATE(8310), 1, - sym_init_declarator, - STATE(9548), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [208693] = 13, + 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, + [159658] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7902), 1, - anon_sym_STAR, - ACTIONS(7910), 1, - sym_primitive_type, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7405), 1, - sym__type_declarator, - STATE(9186), 1, - sym_ms_based_modifier, - STATE(5602), 2, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(7135), 2, + anon_sym_AMP, + anon_sym_LBRACK, + STATE(4237), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + aux_sym__type_definition_type_repeat1, + ACTIONS(6792), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -553360,41 +426605,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [208751] = 13, + ACTIONS(7133), 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, + [159708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7962), 1, - sym_identifier, - ACTIONS(7964), 1, + ACTIONS(6049), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6047), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7966), 1, anon_sym_STAR, - ACTIONS(7970), 1, - sym_primitive_type, - STATE(3695), 1, - sym__type_declarator, - STATE(4052), 1, - sym_pointer_type_declarator, - STATE(9176), 1, - sym_ms_based_modifier, - STATE(5602), 2, + anon_sym_PERCENT, + anon_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, + [159752] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(7091), 1, + anon_sym_LPAREN2, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7310), 1, + anon_sym_STAR, + ACTIONS(7312), 1, + anon_sym_AMP_AMP, + ACTIONS(7314), 1, + anon_sym_AMP, + STATE(3501), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5738), 1, + sym__abstract_declarator, + STATE(4402), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7968), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4056), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7534), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(6671), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -553405,41 +426719,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [208809] = 13, + [159818] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, - anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7090), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, + ACTIONS(7874), 1, + anon_sym___attribute__, + STATE(4344), 2, + sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, + ACTIONS(7872), 3, + anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, + ACTIONS(7870), 30, + 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -553450,147 +426752,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [208867] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(8583), 1, - sym_identifier, - ACTIONS(8585), 1, - anon_sym_COLON_COLON, - ACTIONS(8589), 1, - sym_primitive_type, - ACTIONS(8591), 1, - anon_sym_enum, - ACTIONS(8593), 1, - anon_sym_class, - ACTIONS(8595), 1, - anon_sym_struct, - ACTIONS(8597), 1, - anon_sym_union, - ACTIONS(8599), 1, - sym_auto, - ACTIONS(8601), 1, - anon_sym_decltype, - ACTIONS(8603), 1, - anon_sym_typename, - STATE(2715), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3062), 1, - sym__type_specifier, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(3224), 1, - sym_decltype_auto, - STATE(7278), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3194), 2, - sym_decltype, - sym_template_type, - ACTIONS(8587), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3215), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [208941] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(8677), 1, - sym_identifier, - ACTIONS(8679), 1, - anon_sym_COLON_COLON, - ACTIONS(8683), 1, - sym_primitive_type, - ACTIONS(8685), 1, - anon_sym_enum, - ACTIONS(8687), 1, - anon_sym_class, - ACTIONS(8689), 1, - anon_sym_struct, - ACTIONS(8691), 1, - anon_sym_union, - ACTIONS(8693), 1, - sym_auto, - ACTIONS(8695), 1, - anon_sym_decltype, - ACTIONS(8697), 1, - anon_sym_typename, - STATE(3052), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3208), 1, - sym__type_specifier, - STATE(3609), 1, - sym_decltype_auto, - STATE(3624), 1, - sym_qualified_type_identifier, - STATE(7293), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3567), 2, - sym_decltype, - sym_template_type, - ACTIONS(8681), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3613), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [209015] = 13, + 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, + [159866] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7310), 1, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7119), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, + ACTIONS(7312), 1, + anon_sym_AMP_AMP, + ACTIONS(7314), 1, + anon_sym_AMP, + STATE(3501), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5704), 1, + sym__abstract_declarator, + STATE(4402), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6202), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(6671), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -553601,196 +426814,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [209073] = 19, + [159932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5857), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5855), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, anon_sym_STAR, - ACTIONS(6899), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_AMP, - STATE(6448), 1, - sym__declarator, - STATE(6518), 1, - sym__scope_resolution, - STATE(8215), 1, - sym_init_declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [209143] = 21, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [159976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(8605), 1, - sym_identifier, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8609), 1, - anon_sym_enum, - ACTIONS(8611), 1, - anon_sym_class, - ACTIONS(8613), 1, - anon_sym_struct, - ACTIONS(8615), 1, - anon_sym_union, - ACTIONS(8617), 1, - anon_sym_typename, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(4531), 1, - sym__type_specifier, - STATE(7275), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [209217] = 19, + ACTIONS(5853), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5851), 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, + [160020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5922), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5920), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6989), 1, anon_sym_STAR, - ACTIONS(6991), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6993), 1, - anon_sym_AMP, - ACTIONS(6995), 1, - anon_sym_COLON_COLON, - STATE(6488), 1, - sym__scope_resolution, - STATE(6606), 1, - sym__declarator, - STATE(8310), 1, - sym_init_declarator, - STATE(9548), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [209287] = 13, + 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, + [160064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5926), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5924), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8108), 1, anon_sym_STAR, - STATE(3155), 1, - sym__type_declarator, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(9550), 1, - sym_ms_based_modifier, - STATE(5602), 2, + anon_sym_PERCENT, + anon_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, + [160108] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(7879), 2, + anon_sym_AMP, + anon_sym_LBRACK, + STATE(4237), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + aux_sym__type_definition_type_repeat1, + ACTIONS(6792), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -553801,92 +427001,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [209345] = 19, + ACTIONS(7877), 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, + [160158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5930), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5928), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 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(6897), 1, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [160202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5958), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5956), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6899), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6901), 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, + [160246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5753), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(6518), 1, - sym__scope_resolution, - STATE(6617), 1, - sym__declarator, - STATE(8325), 1, - sym_init_declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [209415] = 13, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5755), 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, + [160290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7918), 1, - sym_identifier, - ACTIONS(7920), 1, + ACTIONS(6009), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6007), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7922), 1, anon_sym_STAR, - ACTIONS(7926), 1, - sym_primitive_type, - STATE(6959), 1, - sym__type_declarator, - STATE(6990), 1, - sym_pointer_type_declarator, - STATE(9493), 1, - sym_ms_based_modifier, - STATE(5602), 2, + anon_sym_PERCENT, + anon_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, + [160334] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3263), 1, + anon_sym_const, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(6023), 1, + sym_auto, + ACTIONS(6025), 1, + anon_sym_decltype, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7864), 1, + anon_sym_STAR, + ACTIONS(7866), 1, + anon_sym_AMP_AMP, + ACTIONS(7868), 1, + anon_sym_AMP, + STATE(2818), 1, + sym_decltype_auto, + STATE(3611), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5920), 1, + sym__abstract_declarator, + STATE(4459), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7924), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6987), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7089), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(7664), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -553897,94 +427241,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [209473] = 21, + [160406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(8645), 1, - sym_identifier, - ACTIONS(8647), 1, - anon_sym_COLON_COLON, - ACTIONS(8651), 1, - sym_primitive_type, - ACTIONS(8653), 1, - anon_sym_enum, - ACTIONS(8655), 1, - anon_sym_class, - ACTIONS(8657), 1, - anon_sym_struct, - ACTIONS(8659), 1, - anon_sym_union, - ACTIONS(8661), 1, - sym_auto, - ACTIONS(8663), 1, - anon_sym_decltype, - ACTIONS(8665), 1, - anon_sym_typename, - STATE(3074), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3596), 1, - sym__type_specifier, - STATE(3715), 1, - sym_decltype_auto, - STATE(3733), 1, - sym_qualified_type_identifier, - STATE(7282), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3640), 2, - sym_decltype, - sym_template_type, - ACTIONS(8649), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3718), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [209547] = 13, + ACTIONS(5872), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5870), 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, + [160450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5880), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5878), 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, + [160494] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5799), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5801), 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, + [160538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6085), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6083), 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, + [160582] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6073), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6071), 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, + [160626] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(5320), 1, + anon_sym_COLON, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(7881), 1, + anon_sym_LBRACE, + STATE(4464), 1, + sym_field_declaration_list, + STATE(4525), 1, + sym_attribute_specifier, + STATE(6330), 1, + sym_virtual_specifier, + STATE(7060), 1, + sym_base_class_clause, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5314), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5312), 24, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7093), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -553995,220 +427489,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [209605] = 13, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [160686] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(7883), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7885), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5396), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5398), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7037), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [209663] = 6, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [160734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5314), 1, + ACTIONS(6021), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8739), 1, - anon_sym_const, - STATE(5776), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(8736), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5316), 15, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6019), 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_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - 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, - [209707] = 19, + [160778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(6065), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6063), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, anon_sym_STAR, - ACTIONS(6899), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6901), 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, + [160822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5718), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(6518), 1, - sym__scope_resolution, - STATE(6631), 1, - sym__declarator, - STATE(8310), 1, - sym_init_declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [209777] = 13, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5720), 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, + [160866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(6077), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6075), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8108), 1, anon_sym_STAR, - STATE(3191), 1, - sym__type_declarator, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(9550), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [209835] = 13, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [160910] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7412), 1, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7052), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, + ACTIONS(7414), 1, + anon_sym_AMP_AMP, + ACTIONS(7416), 1, + anon_sym_AMP, + STATE(3499), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5688), 1, + sym__abstract_declarator, + STATE(4237), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7514), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6792), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -554219,137 +427754,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [209893] = 19, + [160976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(6041), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6039), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, anon_sym_STAR, - ACTIONS(6899), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6901), 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, + [161020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6005), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(6346), 1, - sym__declarator, - STATE(6518), 1, - sym__scope_resolution, - STATE(8230), 1, - sym_init_declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [209963] = 13, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6003), 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, + [161064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(6001), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5999), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7098), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [210021] = 13, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [161108] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7412), 1, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7077), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, + ACTIONS(7414), 1, + anon_sym_AMP_AMP, + ACTIONS(7416), 1, + anon_sym_AMP, + STATE(3499), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5693), 1, + sym__abstract_declarator, + STATE(4237), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7534), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6792), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -554360,192 +427929,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [210079] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(8605), 1, - sym_identifier, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8609), 1, - anon_sym_enum, - ACTIONS(8611), 1, - anon_sym_class, - ACTIONS(8613), 1, - anon_sym_struct, - ACTIONS(8615), 1, - anon_sym_union, - ACTIONS(8617), 1, - anon_sym_typename, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(4689), 1, - sym__type_specifier, - STATE(7275), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [210153] = 21, + [161174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(3143), 1, - anon_sym_enum, - ACTIONS(3145), 1, - anon_sym_class, - ACTIONS(3147), 1, - anon_sym_struct, - ACTIONS(3149), 1, - anon_sym_union, - ACTIONS(3173), 1, - sym_auto, - ACTIONS(3175), 1, - anon_sym_decltype, - ACTIONS(3177), 1, - anon_sym_typename, - ACTIONS(7294), 1, - sym_identifier, - ACTIONS(7296), 1, - anon_sym_COLON_COLON, - ACTIONS(7298), 1, - sym_primitive_type, - STATE(3032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3478), 1, - sym__type_specifier, - STATE(3612), 1, - sym_decltype_auto, - STATE(3616), 1, - sym_qualified_type_identifier, - STATE(7297), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3593), 2, - sym_decltype, - sym_template_type, - ACTIONS(3139), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3614), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [210227] = 13, + ACTIONS(6093), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6091), 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, + [161218] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7918), 1, - sym_identifier, - ACTIONS(7920), 1, + ACTIONS(7885), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5374), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5376), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7922), 1, anon_sym_STAR, - ACTIONS(7926), 1, - sym_primitive_type, - STATE(6962), 1, - sym__type_declarator, - STATE(6990), 1, - sym_pointer_type_declarator, - STATE(9493), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7924), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6987), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [210285] = 13, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [161264] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7310), 1, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7133), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, + ACTIONS(7312), 1, + anon_sym_AMP_AMP, + ACTIONS(7314), 1, + anon_sym_AMP, + STATE(3501), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5719), 1, + sym__abstract_declarator, + STATE(4402), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7514), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(6671), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -554556,302 +428064,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [210343] = 21, + [161330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(8623), 1, - sym_identifier, - ACTIONS(8625), 1, - anon_sym_COLON_COLON, - ACTIONS(8629), 1, - sym_primitive_type, - ACTIONS(8631), 1, - anon_sym_enum, - ACTIONS(8633), 1, - anon_sym_class, - ACTIONS(8635), 1, - anon_sym_struct, - ACTIONS(8637), 1, - anon_sym_union, - ACTIONS(8639), 1, - sym_auto, - ACTIONS(8641), 1, - anon_sym_decltype, - ACTIONS(8643), 1, - anon_sym_typename, - STATE(3179), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3588), 1, - sym__type_specifier, - STATE(4015), 1, - sym_decltype_auto, - STATE(4028), 1, - sym_qualified_type_identifier, - STATE(7276), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3985), 2, - sym_decltype, - sym_template_type, - ACTIONS(8627), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4016), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [210417] = 21, + ACTIONS(6097), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6095), 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, + [161374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(7347), 1, - anon_sym_enum, - ACTIONS(7349), 1, - anon_sym_class, - ACTIONS(7351), 1, - anon_sym_struct, - ACTIONS(7353), 1, - anon_sym_union, - ACTIONS(7355), 1, - anon_sym_typename, - STATE(2466), 1, - sym__type_specifier, - STATE(2574), 1, - sym_decltype_auto, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [210491] = 21, + ACTIONS(6101), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6099), 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, + [161418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2006), 1, - sym_auto, - ACTIONS(2008), 1, - anon_sym_decltype, - ACTIONS(7235), 1, - sym_primitive_type, - ACTIONS(8605), 1, - sym_identifier, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8609), 1, - anon_sym_enum, - ACTIONS(8611), 1, - anon_sym_class, - ACTIONS(8613), 1, - anon_sym_struct, - ACTIONS(8615), 1, - anon_sym_union, - ACTIONS(8617), 1, - anon_sym_typename, - STATE(2466), 1, - sym__type_specifier, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2574), 1, - sym_decltype_auto, - STATE(3161), 1, - sym_qualified_type_identifier, - STATE(7275), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(2553), 2, - sym_decltype, - sym_template_type, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2567), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [210565] = 19, + ACTIONS(5890), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5888), 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, + [161462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(5934), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5932), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, anon_sym_STAR, - ACTIONS(6899), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_AMP, - STATE(6518), 1, - sym__scope_resolution, - STATE(6729), 1, - sym__declarator, - STATE(8742), 1, - sym_init_declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [210635] = 19, + 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, + [161506] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(6895), 1, + ACTIONS(7099), 1, anon_sym_LBRACK, - ACTIONS(6989), 1, + ACTIONS(7412), 1, anon_sym_STAR, - ACTIONS(6991), 1, + ACTIONS(7414), 1, anon_sym_AMP_AMP, - ACTIONS(6993), 1, + ACTIONS(7416), 1, anon_sym_AMP, - ACTIONS(6995), 1, - anon_sym_COLON_COLON, - STATE(6488), 1, - sym__scope_resolution, - STATE(6576), 1, - sym__declarator, - STATE(8310), 1, - sym_init_declarator, - STATE(9548), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [210705] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7918), 1, - sym_identifier, - ACTIONS(7920), 1, - anon_sym_LPAREN2, - ACTIONS(7922), 1, - anon_sym_STAR, - ACTIONS(7926), 1, - sym_primitive_type, - STATE(6966), 1, - sym__type_declarator, - STATE(6990), 1, - sym_pointer_type_declarator, - STATE(9493), 1, - sym_ms_based_modifier, - STATE(5602), 2, + STATE(3499), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5690), 1, + sym__abstract_declarator, + STATE(4237), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7924), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6987), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6202), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6792), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -554862,41 +428280,316 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [210763] = 13, + [161572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(6069), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6067), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7902), 1, anon_sym_STAR, - ACTIONS(7910), 1, - sym_primitive_type, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7401), 1, - sym__type_declarator, - STATE(9186), 1, - sym_ms_based_modifier, - STATE(5602), 2, + anon_sym_PERCENT, + anon_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, + [161616] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5918), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5916), 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, + [161660] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(5700), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7157), 1, + anon_sym_GT_EQ, + ACTIONS(7161), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7165), 1, + anon_sym_bitor, + ACTIONS(7167), 1, + anon_sym_bitand, + STATE(2697), 1, + sym_argument_list, + STATE(2703), 1, + sym_subscript_argument_list, + ACTIONS(5706), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7045), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7139), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7143), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7145), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7149), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7159), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7153), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7155), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [161748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5954), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5952), 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, + [161792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5962), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5960), 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, + [161836] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6105), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6103), 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, + [161880] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(7091), 1, + anon_sym_LPAREN2, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7412), 1, + anon_sym_STAR, + ACTIONS(7414), 1, + anon_sym_AMP_AMP, + ACTIONS(7416), 1, + anon_sym_AMP, + STATE(3499), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5751), 1, + sym__abstract_declarator, + STATE(4379), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5420), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6792), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -554907,41 +428600,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [210821] = 14, + [161946] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, + ACTIONS(6681), 1, anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(4910), 1, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7310), 1, anon_sym_STAR, - ACTIONS(4912), 1, + ACTIONS(7312), 1, anon_sym_AMP_AMP, - ACTIONS(4914), 1, + ACTIONS(7314), 1, anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - STATE(4706), 1, + STATE(3501), 1, sym_parameter_list, - STATE(6905), 1, + STATE(5399), 1, sym__function_declarator_seq, - STATE(7381), 1, + STATE(5713), 1, sym__abstract_declarator, - STATE(5776), 2, + STATE(4345), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6663), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(6825), 5, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8402), 11, + ACTIONS(5420), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(6671), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -554953,94 +428652,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [210881] = 21, + [162012] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(7091), 1, + anon_sym_LPAREN2, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7117), 1, sym_auto, - ACTIONS(119), 1, + ACTIONS(7119), 1, anon_sym_decltype, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2719), 1, - sym_primitive_type, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7300), 1, - anon_sym_COLON_COLON, - ACTIONS(7302), 1, - anon_sym_enum, - ACTIONS(7304), 1, - anon_sym_class, - ACTIONS(7306), 1, - anon_sym_struct, - ACTIONS(7308), 1, - anon_sym_union, - ACTIONS(7310), 1, - anon_sym_typename, - STATE(3834), 1, - sym_qualified_type_identifier, - STATE(3929), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3989), 1, - sym_decltype_auto, - STATE(7288), 1, - sym__scope_resolution, - STATE(7530), 1, - sym__type_specifier, - STATE(9648), 1, - sym_dependent_type_identifier, - STATE(3784), 2, - sym_decltype, - sym_template_type, - ACTIONS(3908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3958), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [210955] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7887), 1, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7038), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, + ACTIONS(7889), 1, + anon_sym_AMP_AMP, + ACTIONS(7891), 1, + anon_sym_AMP, + STATE(3716), 1, + sym_parameter_list, + STATE(4493), 1, + sym_decltype_auto, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5981), 1, + sym__abstract_declarator, + STATE(4504), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + aux_sym__type_definition_type_repeat1, + ACTIONS(7089), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6671), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -555051,40 +428706,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [211013] = 13, + [162083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(3275), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + anon_sym_TILDE, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7130), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3273), 22, + anon_sym_AMP, anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -555096,41 +428738,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [211071] = 14, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [162126] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6685), 1, + anon_sym_DASH_GT, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(7895), 1, + anon_sym___attribute__, + ACTIONS(7898), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7901), 1, + anon_sym_LBRACK, + STATE(4546), 1, + sym_ref_qualifier, + STATE(5262), 1, + sym__function_attributes_end, + STATE(5285), 1, + sym_trailing_return_type, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4845), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [162207] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, + ACTIONS(6681), 1, anon_sym_const, - ACTIONS(4908), 1, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(8404), 1, + ACTIONS(7099), 1, anon_sym_LBRACK, - ACTIONS(8575), 1, + ACTIONS(7117), 1, + sym_auto, + ACTIONS(7119), 1, + anon_sym_decltype, + ACTIONS(7887), 1, anon_sym_STAR, - ACTIONS(8577), 1, + ACTIONS(7889), 1, anon_sym_AMP_AMP, - ACTIONS(8579), 1, + ACTIONS(7891), 1, anon_sym_AMP, - STATE(4739), 1, + STATE(3716), 1, sym_parameter_list, - STATE(6905), 1, + STATE(4493), 1, + sym_decltype_auto, + STATE(5399), 1, sym__function_declarator_seq, - STATE(7400), 1, + STATE(5989), 1, sym__abstract_declarator, - STATE(5776), 2, + STATE(4503), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7960), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6825), 5, + aux_sym__type_definition_type_repeat1, + ACTIONS(7109), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5366), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8402), 11, + ACTIONS(6671), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -555142,41 +428859,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [211131] = 13, + [162278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(7903), 1, + anon_sym_SEMI, + ACTIONS(5958), 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(5956), 25, + anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8108), 1, anon_sym_STAR, - STATE(3149), 1, - sym__type_declarator, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(9550), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [162323] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6685), 1, + anon_sym_DASH_GT, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(7895), 1, + anon_sym___attribute__, + ACTIONS(7898), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7908), 1, + anon_sym_requires, + STATE(4502), 1, + sym_ref_qualifier, + STATE(5238), 1, + sym__function_attributes_end, + STATE(5335), 1, + sym_trailing_return_type, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7905), 2, + anon_sym_final, + anon_sym_override, + STATE(5174), 2, + sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4849), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [162404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5040), 3, + anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, + ACTIONS(5042), 32, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -555187,41 +428987,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [211189] = 13, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [162447] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7458), 1, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7029), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(5602), 2, + ACTIONS(7460), 1, + anon_sym_AMP_AMP, + ACTIONS(7462), 1, + anon_sym_AMP, + STATE(3519), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5838), 1, + sym__abstract_declarator, + STATE(4237), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6202), 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(6792), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -555232,92 +429050,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [211247] = 19, + [162512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6989), 1, - anon_sym_STAR, - ACTIONS(6991), 1, - anon_sym_AMP_AMP, - ACTIONS(6993), 1, + ACTIONS(5781), 3, anon_sym_AMP, - ACTIONS(6995), 1, - anon_sym_COLON_COLON, - STATE(6488), 1, - sym__scope_resolution, - STATE(6577), 1, - sym__declarator, - STATE(8310), 1, - sym_init_declarator, - STATE(9548), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [211317] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7948), 1, - sym_identifier, - ACTIONS(7950), 1, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5779), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7952), 1, - anon_sym_STAR, - ACTIONS(7956), 1, - sym_primitive_type, - STATE(3576), 1, - sym__type_declarator, - STATE(3856), 1, - sym_pointer_type_declarator, - STATE(9431), 1, - sym_ms_based_modifier, - STATE(5602), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7954), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3859), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -555328,32 +429079,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [211375] = 9, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [162555] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(5790), 1, - anon_sym_LBRACE, - ACTIONS(8742), 1, - anon_sym_COLON, - STATE(2648), 1, - sym_attribute_specifier, - STATE(6001), 1, - sym__enum_base_clause, - STATE(6058), 1, - sym_enumerator_list, - ACTIONS(5800), 2, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(7091), 1, anon_sym_LPAREN2, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7458), 1, anon_sym_STAR, - ACTIONS(5802), 21, + ACTIONS(7460), 1, + anon_sym_AMP_AMP, + ACTIONS(7462), 1, + anon_sym_AMP, + STATE(3519), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5839), 1, + sym__abstract_declarator, + STATE(4237), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7514), 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(6792), 11, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -555364,178 +429141,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [211424] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6889), 1, - anon_sym_STAR, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, - anon_sym_AMP, - ACTIONS(6895), 1, - anon_sym_LBRACK, - STATE(6518), 1, - sym__scope_resolution, - STATE(7252), 1, - sym__declarator, - STATE(9528), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [211491] = 18, + [162620] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(6895), 1, + ACTIONS(7099), 1, anon_sym_LBRACK, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, + ACTIONS(7458), 1, anon_sym_STAR, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_COLON_COLON, - STATE(6547), 1, - sym__scope_resolution, - STATE(7168), 1, - sym__declarator, - STATE(9588), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [211558] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, + ACTIONS(7460), 1, anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(2707), 1, - anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(7462), 1, anon_sym_AMP, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(5852), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, - anon_sym_LBRACK, - STATE(6525), 1, - sym__scope_resolution, - STATE(7326), 1, - sym__declarator, - STATE(9661), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [211625] = 7, + STATE(3519), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5788), 1, + sym__abstract_declarator, + STATE(4237), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7534), 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(6792), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [162685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, - anon_sym___attribute__, - ACTIONS(8716), 1, - anon_sym_LBRACE, - STATE(5854), 1, - sym_enumerator_list, - STATE(6049), 1, - sym_attribute_specifier, - ACTIONS(5820), 2, + ACTIONS(5797), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5818), 23, + ACTIONS(5795), 32, + 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_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -555547,180 +429221,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [211670] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6929), 1, - anon_sym_STAR, - ACTIONS(6931), 1, - anon_sym_AMP_AMP, - ACTIONS(6933), 1, - anon_sym_AMP, - ACTIONS(6935), 1, - anon_sym_COLON_COLON, - STATE(6477), 1, - sym__scope_resolution, - STATE(7329), 1, - sym__declarator, - STATE(9340), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [211737] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6929), 1, - anon_sym_STAR, - ACTIONS(6931), 1, - anon_sym_AMP_AMP, - ACTIONS(6933), 1, - anon_sym_AMP, - ACTIONS(6935), 1, - anon_sym_COLON_COLON, - STATE(6477), 1, - sym__scope_resolution, - STATE(7336), 1, - sym__declarator, - STATE(9340), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [211804] = 18, + [162728] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(6895), 1, + ACTIONS(7099), 1, anon_sym_LBRACK, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, + ACTIONS(7458), 1, anon_sym_STAR, - ACTIONS(6907), 1, + ACTIONS(7460), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7462), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_COLON_COLON, - STATE(6547), 1, - sym__scope_resolution, - STATE(7174), 1, - sym__declarator, - STATE(9588), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [211871] = 7, + STATE(3519), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5791), 1, + sym__abstract_declarator, + STATE(4395), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5420), 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(6792), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [162793] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(8716), 1, + ACTIONS(7911), 1, anon_sym_LBRACE, - STATE(5901), 1, + ACTIONS(7913), 1, + anon_sym_COLON, + STATE(4414), 1, + sym__enum_base_clause, + STATE(4462), 1, sym_enumerator_list, - STATE(6016), 1, + STATE(4480), 1, sym_attribute_specifier, - ACTIONS(5788), 2, + ACTIONS(5451), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5786), 23, + ACTIONS(5449), 26, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -555732,130 +429321,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [211916] = 18, + [162848] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6929), 1, - anon_sym_STAR, - ACTIONS(6931), 1, - anon_sym_AMP_AMP, - ACTIONS(6933), 1, + ACTIONS(7918), 1, + anon_sym_const, + ACTIONS(4899), 2, anon_sym_AMP, - ACTIONS(6935), 1, - anon_sym_COLON_COLON, - STATE(6477), 1, - sym__scope_resolution, - STATE(7344), 1, - sym__declarator, - STATE(9340), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [211983] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(8746), 1, anon_sym_LBRACK, - STATE(6191), 1, - sym_gnu_asm_expression, - STATE(6582), 1, - sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6071), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6192), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6335), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 7, + STATE(4402), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7915), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(4901), 19, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_try, - [212050] = 6, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [162897] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(8542), 1, - anon_sym_LT, - STATE(5570), 1, - sym_template_argument_list, - ACTIONS(4276), 2, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(7911), 1, + anon_sym_LBRACE, + ACTIONS(7913), 1, + anon_sym_COLON, + STATE(4436), 1, + sym__enum_base_clause, + STATE(4439), 1, + sym_enumerator_list, + STATE(4527), 1, + sym_attribute_specifier, + ACTIONS(5465), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(4284), 24, + ACTIONS(5463), 26, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -555867,130 +429410,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [212093] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(2707), 1, - anon_sym_STAR, - ACTIONS(2709), 1, - anon_sym_AMP, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(5852), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, - anon_sym_LBRACK, - STATE(6525), 1, - sym__scope_resolution, - STATE(7341), 1, - sym__declarator, - STATE(9661), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [212160] = 18, + [162952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(2707), 1, - anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(5769), 3, anon_sym_AMP, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(5852), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, anon_sym_LBRACK, - STATE(6525), 1, - sym__scope_resolution, - STATE(7316), 1, - sym__declarator, - STATE(9661), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [212227] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8750), 6, + anon_sym_const, + ACTIONS(5767), 32, + anon_sym_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, - ACTIONS(8748), 23, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -556001,127 +429447,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [212264] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6889), 1, - anon_sym_STAR, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, - anon_sym_AMP, - ACTIONS(6895), 1, - anon_sym_LBRACK, - STATE(6518), 1, - sym__scope_resolution, - STATE(7117), 1, - sym__declarator, - STATE(9528), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [212331] = 18, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [162995] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, + ACTIONS(7921), 1, sym_identifier, - ACTIONS(6905), 1, - anon_sym_STAR, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_COLON_COLON, - STATE(6547), 1, - sym__scope_resolution, - STATE(7161), 1, - sym__declarator, - STATE(9588), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [212398] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8754), 6, + ACTIONS(7925), 1, + sym_primitive_type, + STATE(4410), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7923), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5074), 7, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(8752), 23, + anon_sym_EQ, + ACTIONS(5076), 20, anon_sym_AMP, anon_sym___extension__, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, + anon_sym___attribute__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -556133,85 +429495,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, + sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [212435] = 18, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [163045] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(3263), 1, + anon_sym_const, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(2707), 1, + ACTIONS(7658), 1, anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(7660), 1, + anon_sym_AMP_AMP, + ACTIONS(7662), 1, anon_sym_AMP, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(5852), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, + ACTIONS(7666), 1, anon_sym_LBRACK, - STATE(6525), 1, - sym__scope_resolution, - STATE(7324), 1, - sym__declarator, - STATE(9661), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [212502] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5822), 2, + STATE(3542), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5896), 1, + sym__abstract_declarator, + STATE(4608), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5314), 6, - anon_sym_AMP, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(5316), 9, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7534), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(8739), 12, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7664), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -556222,276 +429551,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [212543] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(5814), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, - anon_sym_STAR, - ACTIONS(6899), 1, - anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_AMP, - STATE(6518), 1, - sym__scope_resolution, - STATE(6888), 1, - sym__declarator, - STATE(8941), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [212610] = 18, + [163109] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(3263), 1, + anon_sym_const, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(6895), 1, + ACTIONS(7666), 1, anon_sym_LBRACK, - ACTIONS(6929), 1, + ACTIONS(7734), 1, anon_sym_STAR, - ACTIONS(6931), 1, + ACTIONS(7736), 1, anon_sym_AMP_AMP, - ACTIONS(6933), 1, + ACTIONS(7738), 1, anon_sym_AMP, - ACTIONS(6935), 1, - anon_sym_COLON_COLON, - STATE(6477), 1, - sym__scope_resolution, - STATE(7355), 1, - sym__declarator, - STATE(9340), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [212677] = 18, + STATE(3537), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5888), 1, + sym__abstract_declarator, + STATE(4608), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6202), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7664), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [163173] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6929), 1, - anon_sym_STAR, - ACTIONS(6931), 1, - anon_sym_AMP_AMP, - ACTIONS(6933), 1, - anon_sym_AMP, - ACTIONS(6935), 1, + ACTIONS(4080), 1, anon_sym_COLON_COLON, - STATE(6477), 1, - sym__scope_resolution, - STATE(7323), 1, - sym__declarator, - STATE(9340), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [212744] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, - anon_sym_STAR, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7927), 1, + anon_sym_LT, + STATE(4491), 1, + sym_template_argument_list, + ACTIONS(4559), 3, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_COLON_COLON, - STATE(6547), 1, - sym__scope_resolution, - STATE(7200), 1, - sym__declarator, - STATE(9588), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [212811] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4564), 28, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, anon_sym_STAR, - ACTIONS(6907), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_COLON_COLON, - STATE(6547), 1, - sym__scope_resolution, - STATE(7178), 1, - sym__declarator, - STATE(9588), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [212878] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(8514), 1, anon_sym_LBRACE, - ACTIONS(8756), 1, - anon_sym_COLON, - STATE(5487), 1, - sym__enum_base_clause, - STATE(5529), 1, - sym_enumerator_list, - STATE(5633), 1, - sym_attribute_specifier, - ACTIONS(5794), 3, - anon_sym_AMP, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5792), 20, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -556502,232 +429635,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [212927] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(2707), 1, - anon_sym_STAR, - ACTIONS(2709), 1, - anon_sym_AMP, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(5852), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, - anon_sym_LBRACK, - STATE(6525), 1, - sym__scope_resolution, - STATE(7322), 1, - sym__declarator, - STATE(9661), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [212994] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, - anon_sym_STAR, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_COLON_COLON, - STATE(6547), 1, - sym__scope_resolution, - STATE(7177), 1, - sym__declarator, - STATE(9588), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [213061] = 18, + [163221] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(3263), 1, + anon_sym_const, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5804), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6989), 1, + ACTIONS(7658), 1, anon_sym_STAR, - ACTIONS(6991), 1, + ACTIONS(7660), 1, anon_sym_AMP_AMP, - ACTIONS(6993), 1, + ACTIONS(7662), 1, anon_sym_AMP, - ACTIONS(6995), 1, - anon_sym_COLON_COLON, - STATE(6488), 1, - sym__scope_resolution, - STATE(6820), 1, - sym__declarator, - STATE(9548), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [213128] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7239), 1, + ACTIONS(7666), 1, anon_sym_LBRACK, - STATE(6195), 1, - sym_gnu_asm_expression, - STATE(6574), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6055), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6200), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6281), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 7, + STATE(3542), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5864), 1, + sym__abstract_declarator, + STATE(4608), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7514), 7, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [213195] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7664), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [163285] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(5790), 1, - anon_sym_LBRACE, - ACTIONS(8742), 1, - anon_sym_COLON, - STATE(2596), 1, - sym_attribute_specifier, - STATE(5989), 1, - sym__enum_base_clause, - STATE(6072), 1, - sym_enumerator_list, - ACTIONS(5792), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5794), 21, - anon_sym___extension__, - anon_sym___based, + STATE(4410), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7929), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(5046), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + ACTIONS(5044), 22, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -556743,80 +429730,81 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [213244] = 18, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [163331] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(3263), 1, + anon_sym_const, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, + ACTIONS(7658), 1, anon_sym_STAR, - ACTIONS(6907), 1, + ACTIONS(7660), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7662), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_COLON_COLON, - STATE(6547), 1, - sym__scope_resolution, - STATE(7175), 1, - sym__declarator, - STATE(9588), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [213311] = 9, + ACTIONS(7666), 1, + anon_sym_LBRACK, + STATE(3542), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5855), 1, + sym__abstract_declarator, + STATE(4608), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6202), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7664), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [163395] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(7932), 1, anon_sym___attribute__, - ACTIONS(8514), 1, - anon_sym_LBRACE, - ACTIONS(8756), 1, - anon_sym_COLON, - STATE(5484), 1, - sym__enum_base_clause, - STATE(5564), 1, - sym_enumerator_list, - STATE(5623), 1, + STATE(4412), 2, sym_attribute_specifier, - ACTIONS(5802), 3, + aux_sym_type_definition_repeat1, + ACTIONS(7872), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5800), 20, + ACTIONS(7870), 28, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -556827,37 +429815,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [213360] = 7, + [163441] = 6, ACTIONS(3), 1, sym_comment, - STATE(6047), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(8669), 2, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(7935), 1, + anon_sym_LT, + STATE(2379), 1, + sym_template_argument_list, + ACTIONS(4559), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4564), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(8761), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5836), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(8758), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8667), 19, + anon_sym_PIPE_PIPE, + 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_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -556868,468 +429860,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - [213405] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, + anon_sym_or, + anon_sym_and, + sym_auto, anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, - anon_sym_STAR, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_COLON_COLON, - STATE(6547), 1, - sym__scope_resolution, - STATE(7198), 1, - sym__declarator, - STATE(9588), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [213472] = 18, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [163489] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6929), 1, - anon_sym_STAR, - ACTIONS(6931), 1, - anon_sym_AMP_AMP, - ACTIONS(6933), 1, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(4456), 1, + sym_enumerator_list, + STATE(4470), 1, + sym_attribute_specifier, + ACTIONS(5434), 3, anon_sym_AMP, - ACTIONS(6935), 1, - anon_sym_COLON_COLON, - STATE(6477), 1, - sym__scope_resolution, - STATE(7309), 1, - sym__declarator, - STATE(9340), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [213539] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(6895), 1, anon_sym_LBRACK, - ACTIONS(6929), 1, + anon_sym_const, + ACTIONS(5432), 27, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6931), 1, anon_sym_AMP_AMP, - ACTIONS(6933), 1, - anon_sym_AMP, - ACTIONS(6935), 1, - anon_sym_COLON_COLON, - STATE(6477), 1, - sym__scope_resolution, - STATE(7339), 1, - sym__declarator, - STATE(9340), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [213606] = 18, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [163539] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(2707), 1, - anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(7135), 2, anon_sym_AMP, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(5852), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, anon_sym_LBRACK, - STATE(6525), 1, - sym__scope_resolution, - STATE(7313), 1, - sym__declarator, - STATE(9661), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [213673] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + STATE(4402), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6671), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7133), 18, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, - anon_sym_STAR, - ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_COLON_COLON, - STATE(6547), 1, - sym__scope_resolution, - STATE(7206), 1, - sym__declarator, - STATE(9588), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [213740] = 18, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [163587] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(3263), 1, + anon_sym_const, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, + ACTIONS(7658), 1, anon_sym_STAR, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_COLON_COLON, - STATE(6547), 1, - sym__scope_resolution, - STATE(7211), 1, - sym__declarator, - STATE(9588), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [213807] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, + ACTIONS(7660), 1, anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, - anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(2707), 1, - anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(7662), 1, anon_sym_AMP, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(5852), 1, - anon_sym_COLON_COLON, - ACTIONS(6895), 1, + ACTIONS(7666), 1, anon_sym_LBRACK, - STATE(6525), 1, - sym__scope_resolution, - STATE(7174), 1, - sym__declarator, - STATE(9661), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [213874] = 18, + STATE(3542), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5870), 1, + sym__abstract_declarator, + STATE(4411), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5420), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7664), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [163651] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7212), 1, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6690), 1, anon_sym_noexcept, - ACTIONS(7214), 1, + ACTIONS(6692), 1, anon_sym_throw, - ACTIONS(7216), 1, + ACTIONS(6797), 1, + anon_sym_DASH_GT, + ACTIONS(6806), 1, anon_sym_requires, - STATE(6211), 1, - sym_gnu_asm_expression, - STATE(6605), 1, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7937), 1, + anon_sym_LBRACK_LBRACK, + STATE(4596), 1, + sym_ref_qualifier, + STATE(5240), 1, sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(5373), 1, + sym__function_attributes_end, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - ACTIONS(7208), 2, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - STATE(6066), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6210), 2, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6361), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 7, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4915), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [213941] = 18, + anon_sym_GT2, + [163731] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2703), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(7927), 1, + anon_sym_LT, + STATE(4491), 1, + sym_template_argument_list, + ACTIONS(5324), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4085), 28, anon_sym_LPAREN2, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5097), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6929), 1, anon_sym_STAR, - ACTIONS(6931), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6933), 1, - anon_sym_AMP, - ACTIONS(6935), 1, - anon_sym_COLON_COLON, - STATE(6477), 1, - sym__scope_resolution, - STATE(7332), 1, - sym__declarator, - STATE(9340), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6917), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [214008] = 5, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [163779] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, - anon_sym___attribute__, - STATE(6019), 1, - sym_attribute_specifier, - ACTIONS(5856), 2, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(7935), 1, + anon_sym_LT, + STATE(2379), 1, + sym_template_argument_list, + ACTIONS(5324), 3, anon_sym_AMP, anon_sym_const, - ACTIONS(5854), 24, + anon_sym_COLON, + ACTIONS(4085), 28, + 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, @@ -557340,199 +430137,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [214048] = 18, + [163827] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7212), 1, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6690), 1, anon_sym_noexcept, - ACTIONS(7214), 1, + ACTIONS(6692), 1, anon_sym_throw, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, + ACTIONS(6747), 1, anon_sym_requires, - ACTIONS(8746), 1, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6802), 1, + anon_sym_DASH_GT, + ACTIONS(7898), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7901), 1, anon_sym_LBRACK, - STATE(6229), 1, - sym_gnu_asm_expression, - STATE(6579), 1, + STATE(4566), 1, + sym_ref_qualifier, + STATE(5285), 1, sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(5388), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - ACTIONS(7208), 2, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - STATE(6111), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6227), 2, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6556), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6575), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8744), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4910), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 6, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [214114] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(8764), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3849), 1, - sym__class_declaration, - STATE(4486), 1, - sym_field_declaration_list, - STATE(6367), 1, - sym_ms_declspec_modifier, - STATE(7261), 1, - sym__scope_resolution, - STATE(7649), 1, - sym_virtual_specifier, - STATE(8596), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4289), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6374), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5982), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [214190] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, anon_sym_COLON, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(8766), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3926), 1, - sym__class_declaration, - STATE(4486), 1, - sym_field_declaration_list, - STATE(6456), 1, - sym_ms_declspec_modifier, - STATE(7279), 1, - sym__scope_resolution, - STATE(7649), 1, - sym_virtual_specifier, - STATE(8596), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4289), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6459), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5996), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [214266] = 14, + anon_sym_try, + [163907] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(3263), 1, + anon_sym_const, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(7960), 1, - anon_sym_COLON, - ACTIONS(8404), 1, + ACTIONS(7666), 1, anon_sym_LBRACK, - ACTIONS(8573), 1, - anon_sym_const, - ACTIONS(8730), 1, + ACTIONS(7734), 1, anon_sym_STAR, - ACTIONS(8732), 1, + ACTIONS(7736), 1, anon_sym_AMP_AMP, - ACTIONS(8734), 1, + ACTIONS(7738), 1, anon_sym_AMP, - STATE(4808), 1, + STATE(3537), 1, sym_parameter_list, - STATE(6905), 1, + STATE(5604), 1, sym__function_declarator_seq, - STATE(7532), 1, + STATE(5897), 1, sym__abstract_declarator, - STATE(6147), 2, + STATE(4608), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8571), 11, + ACTIONS(7514), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7664), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -557544,131 +430252,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [214324] = 23, + [163971] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(5107), 1, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6797), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7937), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3926), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(7940), 1, + anon_sym_requires, + STATE(4585), 1, + sym_ref_qualifier, + STATE(5333), 1, + sym_trailing_return_type, + STATE(5383), 1, + sym__function_attributes_end, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7905), 2, anon_sym_final, anon_sym_override, - STATE(4434), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, + STATE(4994), 2, sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [214400] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5834), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7296), 1, - anon_sym_COLON_COLON, - ACTIONS(8770), 1, - sym_identifier, - STATE(3296), 1, - sym_template_type, - STATE(3392), 1, - sym_field_declaration_list, - STATE(3618), 1, - sym__class_declaration, - STATE(6471), 1, - sym_ms_declspec_modifier, - STATE(7297), 1, - sym__scope_resolution, - STATE(7957), 1, - sym_virtual_specifier, - STATE(8768), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3111), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6469), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5999), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [214476] = 5, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4881), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [164051] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, - anon_sym___attribute__, - STATE(6008), 1, - sym_attribute_specifier, - ACTIONS(5890), 2, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(7943), 1, + anon_sym_LT, + STATE(2516), 1, + sym_template_argument_list, + ACTIONS(5324), 3, anon_sym_AMP, anon_sym_const, - ACTIONS(5888), 24, + anon_sym_COLON, + ACTIONS(4085), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_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, @@ -557679,31 +430344,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [214516] = 5, + [164099] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - STATE(6045), 1, - sym_attribute_specifier, - ACTIONS(5941), 2, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(5939), 24, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6804), 1, + anon_sym_DASH_GT, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7937), 1, + anon_sym_LBRACK_LBRACK, + STATE(4588), 1, + sym_ref_qualifier, + STATE(5240), 1, + sym_trailing_return_type, + STATE(5312), 1, + sym__function_attributes_end, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7945), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4876), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 6, + anon_sym_COMMA, 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_try, + [164179] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(7879), 2, + anon_sym_AMP, + anon_sym_LBRACK, + STATE(4402), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6671), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -557714,31 +430433,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, + ACTIONS(7877), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [164227] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6790), 1, + anon_sym_DASH_GT, + ACTIONS(7898), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7908), 1, anon_sym_requires, - [214556] = 5, + STATE(4560), 1, + sym_ref_qualifier, + STATE(5276), 1, + sym__function_attributes_end, + STATE(5335), 1, + sym_trailing_return_type, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(7905), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7945), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4905), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [164307] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - STATE(6036), 1, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6804), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7937), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7940), 1, + anon_sym_requires, + STATE(4584), 1, + sym_ref_qualifier, + STATE(5287), 1, + sym__function_attributes_end, + STATE(5333), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(7905), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7945), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, sym_attribute_specifier, - ACTIONS(5884), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4886), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [164387] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6790), 1, + anon_sym_DASH_GT, + ACTIONS(7898), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7901), 1, + anon_sym_LBRACK, + STATE(4597), 1, + sym_ref_qualifier, + STATE(5241), 1, + sym__function_attributes_end, + STATE(5285), 1, + sym_trailing_return_type, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7945), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4922), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [164467] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3263), 1, anon_sym_const, - ACTIONS(5882), 24, + ACTIONS(4603), 1, anon_sym_LPAREN2, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7734), 1, anon_sym_STAR, + ACTIONS(7736), 1, anon_sym_AMP_AMP, + ACTIONS(7738), 1, + anon_sym_AMP, + STATE(3537), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5868), 1, + sym__abstract_declarator, + STATE(4608), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7534), 7, anon_sym_SEMI, - anon_sym___extension__, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7664), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -557749,45 +430676,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [214596] = 14, + [164531] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(5806), 1, - anon_sym_COLON, - ACTIONS(8404), 1, + ACTIONS(6885), 1, + sym_auto, + ACTIONS(6887), 1, + anon_sym_decltype, + ACTIONS(7666), 1, anon_sym_LBRACK, - ACTIONS(8573), 1, - anon_sym_const, - ACTIONS(8730), 1, + ACTIONS(7948), 1, anon_sym_STAR, - ACTIONS(8732), 1, + ACTIONS(7950), 1, anon_sym_AMP_AMP, - ACTIONS(8734), 1, + ACTIONS(7952), 1, anon_sym_AMP, - STATE(4808), 1, + ACTIONS(7956), 1, + anon_sym_const, + STATE(1931), 1, + sym_decltype_auto, + STATE(3705), 1, sym_parameter_list, - STATE(6905), 1, + STATE(5604), 1, sym__function_declarator_seq, - STATE(7531), 1, + STATE(6035), 1, sym__abstract_declarator, - STATE(5941), 2, + STATE(4572), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, + aux_sym__type_definition_type_repeat1, + ACTIONS(7109), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5647), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8571), 11, + ACTIONS(7954), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -557799,78 +430729,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [214654] = 23, + [164601] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(6885), 1, + sym_auto, + ACTIONS(6887), 1, anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5834), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7948), 1, + anon_sym_STAR, + ACTIONS(7950), 1, + anon_sym_AMP_AMP, + ACTIONS(7952), 1, + anon_sym_AMP, + ACTIONS(7956), 1, + anon_sym_const, + STATE(1931), 1, + sym_decltype_auto, + STATE(3705), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6011), 1, + sym__abstract_declarator, + STATE(4562), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7089), 4, anon_sym_COLON, - ACTIONS(7296), 1, - anon_sym_COLON_COLON, - ACTIONS(8770), 1, - sym_identifier, - STATE(3296), 1, - sym_template_type, - STATE(3392), 1, - sym_field_declaration_list, - STATE(3619), 1, - sym__class_declaration, - STATE(6471), 1, - sym_ms_declspec_modifier, - STATE(7297), 1, - sym__scope_resolution, - STATE(7957), 1, - sym_virtual_specifier, - STATE(8768), 1, - sym_base_class_clause, - ACTIONS(6656), 2, anon_sym_final, anon_sym_override, - STATE(3111), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6469), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5999), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [214730] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8619), 1, - anon_sym___attribute__, - STATE(6035), 1, - sym_attribute_specifier, - ACTIONS(5922), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5920), 24, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_requires, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7954), 11, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -557881,137 +430782,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [214770] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(8764), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3871), 1, - sym__class_declaration, - STATE(4486), 1, - sym_field_declaration_list, - STATE(6367), 1, - sym_ms_declspec_modifier, - STATE(7261), 1, - sym__scope_resolution, - STATE(7649), 1, - sym_virtual_specifier, - STATE(8596), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4289), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6374), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5982), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [214846] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5834), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7296), 1, - anon_sym_COLON_COLON, - ACTIONS(8770), 1, - sym_identifier, - STATE(3296), 1, - sym_template_type, - STATE(3392), 1, - sym_field_declaration_list, - STATE(3620), 1, - sym__class_declaration, - STATE(6471), 1, - sym_ms_declspec_modifier, - STATE(7297), 1, - sym__scope_resolution, - STATE(7957), 1, - sym_virtual_specifier, - STATE(8768), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3111), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6469), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5999), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [214922] = 5, + [164671] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, - anon_sym___attribute__, - STATE(6042), 1, - sym_attribute_specifier, - ACTIONS(5906), 2, - anon_sym_AMP, + ACTIONS(3263), 1, anon_sym_const, - ACTIONS(5904), 24, + ACTIONS(4603), 1, anon_sym_LPAREN2, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7734), 1, anon_sym_STAR, + ACTIONS(7736), 1, anon_sym_AMP_AMP, + ACTIONS(7738), 1, + anon_sym_AMP, + STATE(3537), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5858), 1, + sym__abstract_declarator, + STATE(4407), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5420), 7, anon_sym_SEMI, - anon_sym___extension__, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7664), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -558022,180 +430832,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [214962] = 18, + [164735] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(6802), 1, + anon_sym_DASH_GT, + ACTIONS(7898), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, + ACTIONS(7901), 1, anon_sym_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, + ACTIONS(7908), 1, anon_sym_requires, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - STATE(6223), 1, - sym_gnu_asm_expression, - STATE(6605), 1, + STATE(4581), 1, + sym_ref_qualifier, + STATE(5335), 1, sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, + STATE(5394), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - STATE(6108), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6233), 2, + ACTIONS(7905), 2, + anon_sym_final, + anon_sym_override, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6498), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6573), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 6, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4897), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [215028] = 23, + [164815] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(117), 1, + sym_auto, + ACTIONS(119), 1, + anon_sym_decltype, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7255), 1, + ACTIONS(1918), 1, + anon_sym_enum, + ACTIONS(1920), 1, + anon_sym_class, + ACTIONS(1922), 1, + anon_sym_struct, + ACTIONS(1924), 1, + anon_sym_union, + ACTIONS(1948), 1, + anon_sym_typename, + ACTIONS(2707), 1, + sym_primitive_type, + ACTIONS(4611), 1, anon_sym_COLON_COLON, - ACTIONS(8766), 1, + ACTIONS(7958), 1, sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3849), 1, - sym__class_declaration, - STATE(4486), 1, - sym_field_declaration_list, - STATE(6456), 1, - sym_ms_declspec_modifier, - STATE(7279), 1, - sym__scope_resolution, - STATE(7649), 1, - sym_virtual_specifier, - STATE(8596), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4289), 2, - sym__class_name, + ACTIONS(7960), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7964), 1, + anon_sym_EQ, + STATE(2881), 1, + sym__type_specifier, + STATE(3054), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3103), 1, + sym_decltype_auto, + STATE(3729), 1, sym_qualified_type_identifier, - STATE(6459), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, + STATE(5953), 1, + sym__scope_resolution, + STATE(7683), 1, sym_dependent_type_identifier, - STATE(5996), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [215104] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - STATE(6122), 1, - sym_gnu_asm_expression, - STATE(6605), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6107), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6121), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6404), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 6, + ACTIONS(7962), 2, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [215170] = 5, + anon_sym_GT2, + STATE(2911), 2, + sym_decltype, + sym_template_type, + ACTIONS(53), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3114), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [164899] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, - anon_sym___attribute__, - STATE(6043), 1, - sym_attribute_specifier, - ACTIONS(5914), 2, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(7943), 1, + anon_sym_LT, + STATE(2516), 1, + sym_template_argument_list, + ACTIONS(4559), 3, anon_sym_AMP, anon_sym_const, - ACTIONS(5912), 24, + anon_sym_COLON, + ACTIONS(4564), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_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, @@ -558206,237 +430984,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [215210] = 23, + [164947] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, + ACTIONS(7911), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3871), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4386), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, + STATE(4448), 1, + sym_enumerator_list, + STATE(4473), 1, sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [215286] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7239), 1, + ACTIONS(5443), 3, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - STATE(6219), 1, - sym_gnu_asm_expression, - STATE(6574), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6092), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6222), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6610), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 6, + anon_sym_const, + ACTIONS(5441), 27, + anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [215352] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, + anon_sym___extension__, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3926), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4386), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [215428] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, + anon_sym_asm, + anon_sym___asm__, + sym_auto, anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3871), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, anon_sym_final, anon_sym_override, - STATE(4426), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [215504] = 5, + anon_sym_try, + anon_sym_requires, + [164997] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - STATE(6039), 1, + STATE(4513), 1, sym_attribute_specifier, - ACTIONS(5930), 2, + ACTIONS(5540), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5928), 24, + ACTIONS(5538), 28, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -558448,30 +431066,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [215544] = 5, + [165042] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - STATE(6037), 1, + STATE(4481), 1, sym_attribute_specifier, - ACTIONS(5850), 2, + ACTIONS(5536), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5848), 24, + ACTIONS(5534), 28, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -558483,697 +431106,360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [215584] = 23, + [165087] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3926), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4426), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, + STATE(4478), 1, sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [215660] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, + ACTIONS(5528), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5526), 28, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3849), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4426), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [215736] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, + anon_sym_asm, + anon_sym___asm__, + sym_auto, anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3849), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, anon_sym_final, anon_sym_override, - STATE(4386), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [215812] = 23, + anon_sym_try, + anon_sym_requires, + [165132] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(3263), 1, + anon_sym_const, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(6023), 1, + sym_auto, + ACTIONS(6025), 1, anon_sym_decltype, - ACTIONS(4916), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8772), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3849), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6415), 1, - sym_ms_declspec_modifier, - STATE(7280), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3843), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6411), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6004), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [215888] = 23, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7966), 1, + anon_sym_STAR, + ACTIONS(7968), 1, + anon_sym_AMP_AMP, + ACTIONS(7970), 1, + anon_sym_AMP, + STATE(2818), 1, + sym_decltype_auto, + STATE(3605), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6048), 1, + sym__abstract_declarator, + STATE(4668), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7109), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7664), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [165201] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(8766), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3871), 1, - sym__class_declaration, - STATE(4486), 1, - sym_field_declaration_list, - STATE(6456), 1, - sym_ms_declspec_modifier, - STATE(7279), 1, - sym__scope_resolution, - STATE(7649), 1, - sym_virtual_specifier, - STATE(8596), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4289), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6459), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5996), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [215964] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4916), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8772), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3926), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6415), 1, - sym_ms_declspec_modifier, - STATE(7280), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6834), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7975), 1, + anon_sym_requires, + STATE(4669), 1, + sym_ref_qualifier, + STATE(5518), 1, + sym__function_attributes_end, + STATE(5652), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7972), 2, anon_sym_final, anon_sym_override, - STATE(3843), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6411), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6004), 3, + STATE(4994), 2, sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [216040] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4916), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8772), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3871), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6415), 1, - sym_ms_declspec_modifier, - STATE(7280), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3843), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6411), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6004), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [216116] = 18, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4927), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [165280] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7212), 1, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6690), 1, anon_sym_noexcept, - ACTIONS(7214), 1, + ACTIONS(6692), 1, anon_sym_throw, - ACTIONS(7247), 1, + ACTIONS(6821), 1, anon_sym_DASH_GT, - ACTIONS(7249), 1, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7978), 1, anon_sym_requires, - STATE(6221), 1, - sym_gnu_asm_expression, - STATE(6608), 1, + STATE(4642), 1, + sym_ref_qualifier, + STATE(5502), 1, + sym__function_attributes_end, + STATE(5670), 1, sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - STATE(6090), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6215), 2, + ACTIONS(7972), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6596), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4936), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 5, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [216182] = 23, + anon_sym_try, + [165359] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(4940), 1, + ACTIONS(4611), 1, anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, + ACTIONS(4804), 1, anon_sym___declspec, - ACTIONS(5113), 1, + ACTIONS(4808), 1, anon_sym_alignas, - ACTIONS(6652), 1, + ACTIONS(6280), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + ACTIONS(6282), 1, anon_sym_COLON, - ACTIONS(8768), 1, + ACTIONS(7960), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7964), 1, + anon_sym_EQ, + ACTIONS(7981), 1, sym_identifier, - STATE(3369), 1, + STATE(2542), 1, sym_template_type, - STATE(3849), 1, + STATE(3012), 1, sym__class_declaration, - STATE(4506), 1, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3638), 1, sym_field_declaration_list, - STATE(6449), 1, + STATE(5132), 1, sym_ms_declspec_modifier, - STATE(7286), 1, + STATE(5953), 1, sym__scope_resolution, - STATE(7914), 1, + STATE(6465), 1, sym_virtual_specifier, - STATE(8490), 1, + STATE(6885), 1, sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(4427), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [216258] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(8546), 1, - anon_sym_LT, - STATE(3280), 1, - sym_template_argument_list, - ACTIONS(4276), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4284), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(7962), 2, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [216300] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5689), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8774), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(2617), 1, - sym__class_declaration, - STATE(3124), 1, - sym_field_declaration_list, - STATE(6322), 1, - sym_ms_declspec_modifier, - STATE(7275), 1, - sym__scope_resolution, - STATE(7583), 1, - sym_virtual_specifier, - STATE(8560), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(2874), 2, + STATE(2943), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6254), 2, + STATE(5098), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5966), 3, + STATE(4822), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [216376] = 23, + [165448] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(5107), 1, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6808), 1, + anon_sym_DASH_GT, + ACTIONS(6851), 1, + anon_sym_requires, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7937), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3926), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + STATE(4666), 1, + sym_ref_qualifier, + STATE(5440), 1, + sym__function_attributes_end, + STATE(5634), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(4427), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [216452] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3871), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4427), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [216528] = 5, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4947), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [165527] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - STATE(6034), 1, + STATE(4501), 1, sym_attribute_specifier, - ACTIONS(5926), 2, + ACTIONS(5473), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5924), 24, + ACTIONS(5471), 28, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -559185,131 +431471,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [216568] = 23, + [165572] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(5107), 1, + STATE(4529), 1, + sym_attribute_specifier, + ACTIONS(5524), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5522), 28, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3871), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4406), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [216644] = 18, + anon_sym_try, + anon_sym_requires, + [165617] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7212), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6690), 1, anon_sym_noexcept, - ACTIONS(7214), 1, + ACTIONS(6692), 1, anon_sym_throw, - ACTIONS(7216), 1, + ACTIONS(6821), 1, + anon_sym_DASH_GT, + ACTIONS(6853), 1, anon_sym_requires, - ACTIONS(7239), 1, + ACTIONS(7901), 1, anon_sym_LBRACK, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - STATE(6141), 1, - sym_gnu_asm_expression, - STATE(6574), 1, + STATE(4640), 1, + sym_ref_qualifier, + STATE(5508), 1, + sym__function_attributes_end, + STATE(5678), 1, sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - STATE(6097), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6116), 2, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6377), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 6, - anon_sym_COMMA, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4961), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [216710] = 5, + anon_sym_try, + [165696] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - STATE(6051), 1, + STATE(4490), 1, sym_attribute_specifier, - ACTIONS(5860), 2, + ACTIONS(5498), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5858), 24, + ACTIONS(5496), 28, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -559321,184 +431608,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [216750] = 18, + [165741] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(3263), 1, + anon_sym_const, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(6885), 1, + sym_auto, + ACTIONS(6887), 1, + anon_sym_decltype, + ACTIONS(7666), 1, + anon_sym_LBRACK, + STATE(1931), 1, + sym_decltype_auto, + STATE(3550), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6072), 1, + sym__abstract_declarator, + STATE(4631), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7109), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7664), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [165810] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7117), 1, + sym_auto, + ACTIONS(7119), 1, + anon_sym_decltype, + STATE(4493), 1, + sym_decltype_auto, + ACTIONS(5018), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5020), 27, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [165857] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7212), 1, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6690), 1, anon_sym_noexcept, - ACTIONS(7214), 1, + ACTIONS(6692), 1, anon_sym_throw, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, + ACTIONS(6834), 1, anon_sym_DASH_GT, - ACTIONS(8746), 1, + ACTIONS(6845), 1, + anon_sym_requires, + ACTIONS(7901), 1, anon_sym_LBRACK, - STATE(6126), 1, - sym_gnu_asm_expression, - STATE(6579), 1, + STATE(4620), 1, + sym_ref_qualifier, + STATE(5544), 1, + sym__function_attributes_end, + STATE(5562), 1, sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - STATE(6104), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6135), 2, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6428), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6556), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 6, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4943), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [216816] = 23, + [165936] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3926), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(3263), 1, + anon_sym_const, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7864), 1, + anon_sym_STAR, + ACTIONS(7866), 1, + anon_sym_AMP_AMP, + ACTIONS(7868), 1, + anon_sym_AMP, + STATE(3611), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5909), 1, + sym__abstract_declarator, + STATE(4453), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5420), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, - STATE(4406), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [216892] = 23, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(7664), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [165999] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5689), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8774), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(2599), 1, - sym__class_declaration, - STATE(3124), 1, - sym_field_declaration_list, - STATE(6322), 1, - sym_ms_declspec_modifier, - STATE(7275), 1, - sym__scope_resolution, - STATE(7583), 1, - sym_virtual_specifier, - STATE(8560), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(3263), 1, + anon_sym_const, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7864), 1, + anon_sym_STAR, + ACTIONS(7866), 1, + anon_sym_AMP_AMP, + ACTIONS(7868), 1, + anon_sym_AMP, + STATE(3611), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5922), 1, + sym__abstract_declarator, + STATE(4608), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6202), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, - STATE(2874), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6254), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5966), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [216968] = 5, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(7664), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [166062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, - anon_sym___attribute__, - STATE(6023), 1, - sym_attribute_specifier, - ACTIONS(5949), 2, + ACTIONS(3273), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5947), 24, + ACTIONS(3275), 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_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -559510,242 +431893,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [217008] = 23, + [166103] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7318), 1, - anon_sym_COLON_COLON, - ACTIONS(8621), 1, - anon_sym_LBRACE, - ACTIONS(8776), 1, - sym_identifier, - STATE(5620), 1, - sym_template_type, - STATE(5853), 1, - sym_field_declaration_list, - STATE(6046), 1, - sym__class_declaration, - STATE(6455), 1, - sym_ms_declspec_modifier, - STATE(7289), 1, - sym__scope_resolution, - STATE(7678), 1, - sym_virtual_specifier, - STATE(8649), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(3263), 1, + anon_sym_const, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7864), 1, + anon_sym_STAR, + ACTIONS(7866), 1, + anon_sym_AMP_AMP, + ACTIONS(7868), 1, + anon_sym_AMP, + STATE(3611), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5919), 1, + sym__abstract_declarator, + STATE(4608), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7534), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, - STATE(5595), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6431), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5977), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [217084] = 23, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(7664), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [166166] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(5107), 1, + STATE(4500), 1, + sym_attribute_specifier, + ACTIONS(5479), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5477), 28, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5659), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8585), 1, - anon_sym_COLON_COLON, - ACTIONS(8778), 1, - sym_identifier, - STATE(3080), 1, - sym_template_type, - STATE(3186), 1, - sym_field_declaration_list, - STATE(3221), 1, - sym__class_declaration, - STATE(6327), 1, - sym_ms_declspec_modifier, - STATE(7278), 1, - sym__scope_resolution, - STATE(7858), 1, - sym_virtual_specifier, - STATE(8517), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(2788), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6328), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5971), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [217160] = 23, + anon_sym_try, + anon_sym_requires, + [166211] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(3263), 1, + anon_sym_const, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(6023), 1, + sym_auto, + ACTIONS(6025), 1, anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7966), 1, + anon_sym_STAR, + ACTIONS(7968), 1, + anon_sym_AMP_AMP, + ACTIONS(7970), 1, + anon_sym_AMP, + STATE(2818), 1, + sym_decltype_auto, + STATE(3605), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6062), 1, + sym__abstract_declarator, + STATE(4634), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7089), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7664), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [166280] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(5107), 1, + STATE(4528), 1, + sym_attribute_specifier, + ACTIONS(5487), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5485), 28, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3849), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4406), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [217236] = 23, + anon_sym_try, + anon_sym_requires, + [166325] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7318), 1, - anon_sym_COLON_COLON, - ACTIONS(8621), 1, - anon_sym_LBRACE, - ACTIONS(8776), 1, - sym_identifier, - STATE(5620), 1, - sym_template_type, - STATE(5853), 1, - sym_field_declaration_list, - STATE(6048), 1, - sym__class_declaration, - STATE(6455), 1, - sym_ms_declspec_modifier, - STATE(7289), 1, - sym__scope_resolution, - STATE(7678), 1, - sym_virtual_specifier, - STATE(8649), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(3263), 1, + anon_sym_const, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7864), 1, + anon_sym_STAR, + ACTIONS(7866), 1, + anon_sym_AMP_AMP, + ACTIONS(7868), 1, + anon_sym_AMP, + STATE(3611), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5923), 1, + sym__abstract_declarator, + STATE(4608), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7514), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, - STATE(5595), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6431), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5977), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [217312] = 5, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(7664), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [166388] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - STATE(6017), 1, + STATE(4521), 1, sym_attribute_specifier, - ACTIONS(5910), 2, + ACTIONS(5483), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5908), 24, + ACTIONS(5481), 28, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -559757,30 +432164,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [217352] = 5, + [166433] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - STATE(6044), 1, + STATE(4510), 1, sym_attribute_specifier, - ACTIONS(5934), 2, + ACTIONS(5504), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5932), 24, + ACTIONS(5502), 28, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -559792,131 +432204,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [217392] = 23, + [166478] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(5107), 1, + STATE(4507), 1, + sym_attribute_specifier, + ACTIONS(5494), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5492), 28, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5775), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8647), 1, - anon_sym_COLON_COLON, - ACTIONS(8780), 1, - sym_identifier, - STATE(3227), 1, - sym_template_type, - STATE(3590), 1, - sym_field_declaration_list, - STATE(3725), 1, - sym__class_declaration, - STATE(6394), 1, - sym_ms_declspec_modifier, - STATE(7282), 1, - sym__scope_resolution, - STATE(7676), 1, - sym_virtual_specifier, - STATE(8588), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(3070), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6396), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5995), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [217468] = 18, + anon_sym_try, + anon_sym_requires, + [166523] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6243), 1, - sym_gnu_asm_expression, - STATE(6582), 1, - sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6105), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6241), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6578), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8744), 6, + ACTIONS(3263), 1, + anon_sym_const, + ACTIONS(4603), 1, anon_sym_LPAREN2, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(6885), 1, + sym_auto, + ACTIONS(6887), 1, + anon_sym_decltype, + ACTIONS(7666), 1, + anon_sym_LBRACK, + STATE(1931), 1, + sym_decltype_auto, + STATE(3550), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6074), 1, + sym__abstract_declarator, + STATE(4645), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7089), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [217534] = 5, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7664), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [166592] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - STATE(6040), 1, + STATE(4514), 1, sym_attribute_specifier, - ACTIONS(5864), 2, + ACTIONS(5508), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5862), 24, + ACTIONS(5506), 28, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -559928,341 +432336,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [217574] = 18, + [166637] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7212), 1, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6690), 1, anon_sym_noexcept, - ACTIONS(7214), 1, + ACTIONS(6692), 1, anon_sym_throw, - ACTIONS(7239), 1, + ACTIONS(6808), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, anon_sym_LBRACK, - ACTIONS(7249), 1, + ACTIONS(7937), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7983), 1, anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - STATE(6139), 1, - sym_gnu_asm_expression, - STATE(6587), 1, + STATE(4628), 1, + sym_ref_qualifier, + STATE(5453), 1, + sym__function_attributes_end, + STATE(5646), 1, sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - STATE(6101), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6140), 2, + ACTIONS(7905), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6413), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 6, - anon_sym_COMMA, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4958), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 5, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_try, - [217640] = 23, + [166716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5775), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, + ACTIONS(4576), 3, + anon_sym_AMP, + anon_sym_const, anon_sym_COLON, - ACTIONS(8647), 1, - anon_sym_COLON_COLON, - ACTIONS(8780), 1, - sym_identifier, - STATE(3227), 1, - sym_template_type, - STATE(3590), 1, - sym_field_declaration_list, - STATE(3724), 1, - sym__class_declaration, - STATE(6394), 1, - sym_ms_declspec_modifier, - STATE(7282), 1, - sym__scope_resolution, - STATE(7676), 1, - sym_virtual_specifier, - STATE(8588), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3070), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6396), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5995), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [217716] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(4578), 29, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5659), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8585), 1, - anon_sym_COLON_COLON, - ACTIONS(8778), 1, - sym_identifier, - STATE(3080), 1, - sym_template_type, - STATE(3186), 1, - sym_field_declaration_list, - STATE(3240), 1, - sym__class_declaration, - STATE(6327), 1, - sym_ms_declspec_modifier, - STATE(7278), 1, - sym__scope_resolution, - STATE(7858), 1, - sym_virtual_specifier, - STATE(8517), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(2788), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6328), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5971), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [217792] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, anon_sym_COLON_COLON, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3849), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3843), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [217868] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5659), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8585), 1, - anon_sym_COLON_COLON, - ACTIONS(8778), 1, - sym_identifier, - STATE(3080), 1, - sym_template_type, - STATE(3186), 1, - sym_field_declaration_list, - STATE(3246), 1, - sym__class_declaration, - STATE(6327), 1, - sym_ms_declspec_modifier, - STATE(7278), 1, - sym__scope_resolution, - STATE(7858), 1, - sym_virtual_specifier, - STATE(8517), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(2788), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6328), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5971), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [217944] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + sym_auto, anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5963), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8625), 1, - anon_sym_COLON_COLON, - ACTIONS(8782), 1, - sym_identifier, - STATE(3332), 1, - sym_template_type, - STATE(3734), 1, - sym_field_declaration_list, - STATE(4064), 1, - sym__class_declaration, - STATE(6426), 1, - sym_ms_declspec_modifier, - STATE(7276), 1, - sym__scope_resolution, - STATE(7801), 1, - sym_virtual_specifier, - STATE(8700), 1, - sym_base_class_clause, - ACTIONS(6656), 2, anon_sym_final, anon_sym_override, - STATE(3182), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6427), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5991), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [218020] = 5, + anon_sym_try, + anon_sym_requires, + [166756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, - anon_sym___attribute__, - STATE(6053), 1, - sym_attribute_specifier, - ACTIONS(5868), 2, + ACTIONS(4543), 3, anon_sym_AMP, anon_sym_const, - ACTIONS(5866), 24, + anon_sym_COLON, + ACTIONS(4545), 29, 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, @@ -560276,81 +432468,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [218060] = 23, + [166796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5963), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8625), 1, + ACTIONS(4917), 1, anon_sym_COLON_COLON, - ACTIONS(8782), 1, - sym_identifier, - STATE(3332), 1, - sym_template_type, - STATE(3734), 1, - sym_field_declaration_list, - STATE(4083), 1, - sym__class_declaration, - STATE(6426), 1, - sym_ms_declspec_modifier, - STATE(7276), 1, - sym__scope_resolution, - STATE(7801), 1, - sym_virtual_specifier, - STATE(8700), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3182), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6427), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5991), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [218136] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8619), 1, - anon_sym___attribute__, - STATE(6050), 1, - sym_attribute_specifier, - ACTIONS(5872), 2, + ACTIONS(4913), 3, anon_sym_AMP, anon_sym_const, - ACTIONS(5870), 24, + anon_sym_COLON, + ACTIONS(4915), 28, 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, @@ -560364,136 +432506,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [218176] = 23, + [166838] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5963), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8625), 1, + STATE(4768), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(7993), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4469), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7990), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7988), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(8782), 1, + anon_sym_LBRACK, + ACTIONS(7986), 18, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, - STATE(3332), 1, - sym_template_type, - STATE(3734), 1, - sym_field_declaration_list, - STATE(4018), 1, - sym__class_declaration, - STATE(6426), 1, - sym_ms_declspec_modifier, - STATE(7276), 1, - sym__scope_resolution, - STATE(7801), 1, - sym_virtual_specifier, - STATE(8700), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3182), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6427), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5991), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [218252] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5775), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8647), 1, - anon_sym_COLON_COLON, - ACTIONS(8780), 1, - sym_identifier, - STATE(3227), 1, - sym_template_type, - STATE(3590), 1, - sym_field_declaration_list, - STATE(3722), 1, - sym__class_declaration, - STATE(6394), 1, - sym_ms_declspec_modifier, - STATE(7282), 1, - sym__scope_resolution, - STATE(7676), 1, - sym_virtual_specifier, - STATE(8588), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3070), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6396), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5995), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [218328] = 5, + anon_sym_template, + anon_sym_operator, + [166886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, - anon_sym___attribute__, - STATE(6007), 1, - sym_attribute_specifier, - ACTIONS(5876), 2, + ACTIONS(5219), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5874), 24, + ACTIONS(5221), 29, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -560505,184 +432583,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [218368] = 18, + [166926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - ACTIONS(8746), 1, + ACTIONS(5164), 3, + anon_sym_AMP, anon_sym_LBRACK, - STATE(6148), 1, - sym_gnu_asm_expression, - STATE(6582), 1, - sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6103), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6146), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6314), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 6, + anon_sym_const, + ACTIONS(5166), 29, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [218434] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5726), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8679), 1, - anon_sym_COLON_COLON, - ACTIONS(8784), 1, - sym_identifier, - STATE(3180), 1, - sym_template_type, - STATE(3324), 1, - sym_field_declaration_list, - STATE(3633), 1, - sym__class_declaration, - STATE(6302), 1, - sym_ms_declspec_modifier, - STATE(7293), 1, - sym__scope_resolution, - STATE(7738), 1, - sym_virtual_specifier, - STATE(8798), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(3044), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6301), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5986), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [218510] = 23, + anon_sym_try, + anon_sym_requires, + [166966] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2934), 1, + sym_auto, + ACTIONS(2936), 1, anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5726), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8679), 1, - anon_sym_COLON_COLON, - ACTIONS(8784), 1, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + ACTIONS(6996), 1, + sym_primitive_type, + ACTIONS(7996), 1, sym_identifier, - STATE(3180), 1, - sym_template_type, - STATE(3324), 1, - sym_field_declaration_list, - STATE(3635), 1, - sym__class_declaration, - STATE(6302), 1, - sym_ms_declspec_modifier, - STATE(7293), 1, - sym__scope_resolution, - STATE(7738), 1, - sym_virtual_specifier, - STATE(8798), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3044), 2, - sym__class_name, + ACTIONS(7998), 1, + anon_sym_COLON_COLON, + ACTIONS(8000), 1, + anon_sym_enum, + ACTIONS(8002), 1, + anon_sym_class, + ACTIONS(8004), 1, + anon_sym_struct, + ACTIONS(8006), 1, + anon_sym_union, + ACTIONS(8008), 1, + anon_sym_typename, + STATE(2297), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2819), 1, + sym_decltype_auto, + STATE(2845), 1, sym_qualified_type_identifier, - STATE(6301), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, + STATE(3809), 1, + sym__type_specifier, + STATE(4683), 1, + sym_argument_list, + STATE(5951), 1, + sym__scope_resolution, + STATE(7683), 1, sym_dependent_type_identifier, - STATE(5986), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [218586] = 5, + STATE(2758), 2, + sym_decltype, + sym_template_type, + ACTIONS(2900), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2799), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [167046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, - anon_sym___attribute__, - STATE(6015), 1, - sym_attribute_specifier, - ACTIONS(5945), 2, + ACTIONS(5119), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5943), 24, + ACTIONS(5121), 29, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -560694,83 +432714,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [218626] = 23, + [167086] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5726), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8679), 1, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4901), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(8784), 1, + ACTIONS(7731), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(4899), 15, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, - STATE(3180), 1, - sym_template_type, - STATE(3324), 1, - sym_field_declaration_list, - STATE(3594), 1, - sym__class_declaration, - STATE(6302), 1, - sym_ms_declspec_modifier, - STATE(7293), 1, - sym__scope_resolution, - STATE(7738), 1, - sym_virtual_specifier, - STATE(8798), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3044), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6301), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5986), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [218702] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [167130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, - anon_sym___attribute__, - STATE(6021), 1, - sym_attribute_specifier, - ACTIONS(5846), 2, + ACTIONS(4955), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5844), 24, + ACTIONS(4957), 29, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -560782,131 +432790,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [218742] = 23, + [167170] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + ACTIONS(8010), 1, sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3849), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4394), 2, - sym__class_name, + ACTIONS(8012), 1, + anon_sym_COLON_COLON, + ACTIONS(8016), 1, + sym_primitive_type, + ACTIONS(8018), 1, + anon_sym_enum, + ACTIONS(8020), 1, + anon_sym_class, + ACTIONS(8022), 1, + anon_sym_struct, + ACTIONS(8024), 1, + anon_sym_union, + ACTIONS(8026), 1, + sym_auto, + ACTIONS(8028), 1, + anon_sym_decltype, + ACTIONS(8030), 1, + anon_sym_typename, + STATE(2336), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2505), 1, + sym__type_specifier, + STATE(2924), 1, + sym_decltype_auto, + STATE(2971), 1, sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + STATE(4657), 1, + sym_argument_list, + STATE(5980), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2834), 2, sym_decltype, + sym_template_type, + ACTIONS(8014), 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, + [167250] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + ACTIONS(8032), 1, + sym_identifier, + ACTIONS(8034), 1, + anon_sym_COLON_COLON, + ACTIONS(8038), 1, + sym_primitive_type, + ACTIONS(8040), 1, + anon_sym_enum, + ACTIONS(8042), 1, + anon_sym_class, + ACTIONS(8044), 1, + anon_sym_struct, + ACTIONS(8046), 1, + anon_sym_union, + ACTIONS(8048), 1, + sym_auto, + ACTIONS(8050), 1, + anon_sym_decltype, + ACTIONS(8052), 1, + anon_sym_typename, + STATE(2421), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2753), 1, + sym__type_specifier, + STATE(3331), 1, + sym_qualified_type_identifier, + STATE(3349), 1, + sym_decltype_auto, + STATE(4679), 1, + sym_argument_list, + STATE(5960), 1, + sym__scope_resolution, + STATE(7683), 1, sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [218818] = 18, + STATE(3043), 2, + sym_decltype, + sym_template_type, + ACTIONS(8036), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3351), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [167330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7204), 1, + ACTIONS(5123), 3, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - STATE(6145), 1, - sym_gnu_asm_expression, - STATE(6608), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6096), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6149), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6402), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 6, + anon_sym_const, + ACTIONS(5125), 29, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_try, - [218884] = 5, + anon_sym_requires, + [167370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, - anon_sym___attribute__, - STATE(6013), 1, - sym_attribute_specifier, - ACTIONS(5880), 2, + ACTIONS(5127), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5878), 24, + ACTIONS(5129), 29, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -560918,83 +432978,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [218924] = 23, + [167410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(5134), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5136), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3849), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4411), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [219000] = 5, + anon_sym_try, + anon_sym_requires, + [167450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, - anon_sym___attribute__, - STATE(6011), 1, - sym_attribute_specifier, - ACTIONS(5898), 2, + ACTIONS(5142), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5896), 24, + ACTIONS(5144), 29, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -561006,888 +433052,729 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [219040] = 23, + [167490] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4979), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4981), 28, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5689), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(8786), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(2599), 1, - sym__class_declaration, - STATE(6073), 1, - sym_field_declaration_list, - STATE(6457), 1, - sym_ms_declspec_modifier, - STATE(7274), 1, - sym__scope_resolution, - STATE(7821), 1, - sym_virtual_specifier, - STATE(8725), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(5650), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6463), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5983), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [219116] = 23, + anon_sym_try, + anon_sym_requires, + [167532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, + ACTIONS(4856), 3, + anon_sym_AMP, + anon_sym_const, anon_sym_COLON, - ACTIONS(7280), 1, + ACTIONS(4858), 29, + 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, - ACTIONS(8764), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3926), 1, - sym__class_declaration, - STATE(4486), 1, - sym_field_declaration_list, - STATE(6367), 1, - sym_ms_declspec_modifier, - STATE(7261), 1, - sym__scope_resolution, - STATE(7649), 1, - sym_virtual_specifier, - STATE(8596), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4289), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6374), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5982), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [219192] = 23, + anon_sym_try, + anon_sym_requires, + [167572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(5086), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5088), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - ACTIONS(8788), 1, - anon_sym_COLON_COLON, - STATE(3369), 1, - sym_template_type, - STATE(3849), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6356), 1, - sym_ms_declspec_modifier, - STATE(7267), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4723), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6368), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5976), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [219268] = 23, + anon_sym_try, + anon_sym_requires, + [167612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(5082), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5084), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3849), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4434), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [219344] = 23, + anon_sym_try, + anon_sym_requires, + [167652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(5146), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5148), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - ACTIONS(8788), 1, - anon_sym_COLON_COLON, - STATE(3369), 1, - sym_template_type, - STATE(3926), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6356), 1, - sym_ms_declspec_modifier, - STATE(7267), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4723), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6368), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5976), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [219420] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, + anon_sym_asm, + anon_sym___asm__, + sym_auto, anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(8500), 1, - anon_sym_LBRACE, - ACTIONS(8764), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(5531), 1, - sym_field_declaration_list, - STATE(5643), 1, - sym__class_declaration, - STATE(6370), 1, - sym_ms_declspec_modifier, - STATE(7261), 1, - sym__scope_resolution, - STATE(7927), 1, - sym_virtual_specifier, - STATE(8480), 1, - sym_base_class_clause, - ACTIONS(6656), 2, anon_sym_final, anon_sym_override, - STATE(5438), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6369), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5972), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [219496] = 23, + anon_sym_try, + anon_sym_requires, + [167692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(5207), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5209), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - ACTIONS(8788), 1, - anon_sym_COLON_COLON, - STATE(3369), 1, - sym_template_type, - STATE(3871), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6356), 1, - sym_ms_declspec_modifier, - STATE(7267), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4723), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6368), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5976), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [219572] = 23, + anon_sym_try, + anon_sym_requires, + [167732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(5059), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5061), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5834), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8701), 1, - anon_sym_COLON_COLON, - ACTIONS(8790), 1, - sym_identifier, - STATE(3296), 1, - sym_template_type, - STATE(3392), 1, - sym_field_declaration_list, - STATE(3618), 1, - sym__class_declaration, - STATE(6246), 1, - sym_ms_declspec_modifier, - STATE(7302), 1, - sym__scope_resolution, - STATE(7957), 1, - sym_virtual_specifier, - STATE(8768), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3111), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6362), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5970), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [219648] = 23, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [167772] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2934), 1, + sym_auto, + ACTIONS(2936), 1, anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5834), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8701), 1, - anon_sym_COLON_COLON, - ACTIONS(8790), 1, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + ACTIONS(6996), 1, + sym_primitive_type, + ACTIONS(7996), 1, sym_identifier, - STATE(3296), 1, - sym_template_type, - STATE(3392), 1, - sym_field_declaration_list, - STATE(3619), 1, - sym__class_declaration, - STATE(6246), 1, - sym_ms_declspec_modifier, - STATE(7302), 1, - sym__scope_resolution, - STATE(7957), 1, - sym_virtual_specifier, - STATE(8768), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3111), 2, - sym__class_name, + ACTIONS(7998), 1, + anon_sym_COLON_COLON, + ACTIONS(8000), 1, + anon_sym_enum, + ACTIONS(8002), 1, + anon_sym_class, + ACTIONS(8004), 1, + anon_sym_struct, + ACTIONS(8006), 1, + anon_sym_union, + ACTIONS(8008), 1, + anon_sym_typename, + STATE(2297), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2819), 1, + sym_decltype_auto, + STATE(2845), 1, sym_qualified_type_identifier, - STATE(6362), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, + STATE(3799), 1, + sym__type_specifier, + STATE(4680), 1, + sym_argument_list, + STATE(5951), 1, + sym__scope_resolution, + STATE(7683), 1, sym_dependent_type_identifier, - STATE(5970), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [219724] = 23, + STATE(2758), 2, + sym_decltype, + sym_template_type, + ACTIONS(2900), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2799), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [167852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(5227), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5229), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5689), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(8786), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(2616), 1, - sym__class_declaration, - STATE(6073), 1, - sym_field_declaration_list, - STATE(6457), 1, - sym_ms_declspec_modifier, - STATE(7274), 1, - sym__scope_resolution, - STATE(7821), 1, - sym_virtual_specifier, - STATE(8725), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(5650), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6463), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5983), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [219800] = 23, + anon_sym_try, + anon_sym_requires, + [167892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6654), 1, + ACTIONS(4587), 3, + anon_sym_AMP, + anon_sym_const, anon_sym_COLON, - ACTIONS(7280), 1, + ACTIONS(4594), 29, + 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, - ACTIONS(8500), 1, anon_sym_LBRACE, - ACTIONS(8764), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(5531), 1, - sym_field_declaration_list, - STATE(5640), 1, - sym__class_declaration, - STATE(6370), 1, - sym_ms_declspec_modifier, - STATE(7261), 1, - sym__scope_resolution, - STATE(7927), 1, - sym_virtual_specifier, - STATE(8480), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(5438), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6369), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5972), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [219876] = 23, + anon_sym_try, + anon_sym_requires, + [167932] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6654), 1, + ACTIONS(5320), 1, anon_sym_COLON, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(8500), 1, + ACTIONS(8054), 1, + anon_sym___attribute__, + ACTIONS(8056), 1, anon_sym_LBRACE, - ACTIONS(8764), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(5531), 1, + STATE(4823), 1, sym_field_declaration_list, - STATE(5637), 1, - sym__class_declaration, - STATE(6370), 1, - sym_ms_declspec_modifier, - STATE(7261), 1, - sym__scope_resolution, - STATE(7927), 1, + STATE(4894), 1, + sym_attribute_specifier, + STATE(6347), 1, sym_virtual_specifier, - STATE(8480), 1, + STATE(7082), 1, sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(5314), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(5438), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6369), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5972), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [219952] = 23, + ACTIONS(5312), 21, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [167988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(5055), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5057), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3871), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4405), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [220028] = 23, + anon_sym_try, + anon_sym_requires, + [168028] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5834), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8701), 1, - anon_sym_COLON_COLON, - ACTIONS(8790), 1, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + ACTIONS(8010), 1, sym_identifier, - STATE(3296), 1, - sym_template_type, - STATE(3392), 1, - sym_field_declaration_list, - STATE(3620), 1, - sym__class_declaration, - STATE(6246), 1, - sym_ms_declspec_modifier, - STATE(7302), 1, - sym__scope_resolution, - STATE(7957), 1, - sym_virtual_specifier, - STATE(8768), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3111), 2, - sym__class_name, + ACTIONS(8012), 1, + anon_sym_COLON_COLON, + ACTIONS(8016), 1, + sym_primitive_type, + ACTIONS(8018), 1, + anon_sym_enum, + ACTIONS(8020), 1, + anon_sym_class, + ACTIONS(8022), 1, + anon_sym_struct, + ACTIONS(8024), 1, + anon_sym_union, + ACTIONS(8026), 1, + sym_auto, + ACTIONS(8028), 1, + anon_sym_decltype, + ACTIONS(8030), 1, + anon_sym_typename, + STATE(2336), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2500), 1, + sym__type_specifier, + STATE(2924), 1, + sym_decltype_auto, + STATE(2971), 1, sym_qualified_type_identifier, - STATE(6362), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, + STATE(4629), 1, + sym_argument_list, + STATE(5980), 1, + sym__scope_resolution, + STATE(7683), 1, sym_dependent_type_identifier, - STATE(5970), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [220104] = 23, + STATE(2834), 2, + sym_decltype, + sym_template_type, + ACTIONS(8014), 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, + [168108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(5090), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5092), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3926), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4411), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [220180] = 18, + anon_sym_try, + anon_sym_requires, + [168148] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7212), 1, + ACTIONS(6685), 1, + anon_sym_DASH_GT, + ACTIONS(6690), 1, anon_sym_noexcept, - ACTIONS(7214), 1, + ACTIONS(6692), 1, anon_sym_throw, - ACTIONS(7239), 1, + ACTIONS(7895), 1, + anon_sym___attribute__, + ACTIONS(7898), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7901), 1, anon_sym_LBRACK, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, + ACTIONS(7908), 1, anon_sym_requires, - STATE(6225), 1, - sym_gnu_asm_expression, - STATE(6587), 1, + STATE(5238), 1, + sym__function_attributes_end, + STATE(5335), 1, sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - STATE(6113), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6224), 2, + ACTIONS(7905), 2, + anon_sym_final, + anon_sym_override, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6572), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 6, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4849), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [220246] = 14, + anon_sym_COLON, + anon_sym_try, + [168220] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6881), 1, anon_sym_LPAREN2, - ACTIONS(6663), 1, - anon_sym_COLON, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(8573), 1, + ACTIONS(8058), 1, + sym_identifier, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8062), 1, + anon_sym_enum, + ACTIONS(8064), 1, + anon_sym_class, + ACTIONS(8066), 1, + anon_sym_struct, + ACTIONS(8068), 1, + anon_sym_union, + ACTIONS(8070), 1, + anon_sym_typename, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(3773), 1, + sym__type_specifier, + STATE(4674), 1, + sym_argument_list, + STATE(5972), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [168300] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6681), 1, anon_sym_const, - ACTIONS(8730), 1, + ACTIONS(7091), 1, + anon_sym_LPAREN2, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7887), 1, anon_sym_STAR, - ACTIONS(8732), 1, + ACTIONS(7889), 1, anon_sym_AMP_AMP, - ACTIONS(8734), 1, + ACTIONS(7891), 1, anon_sym_AMP, - STATE(4808), 1, + STATE(3716), 1, sym_parameter_list, - STATE(6905), 1, + STATE(5399), 1, sym__function_declarator_seq, - STATE(7579), 1, + STATE(5976), 1, sym__abstract_declarator, - STATE(6147), 2, + STATE(4541), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, + aux_sym__type_definition_type_repeat1, + ACTIONS(5420), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5366), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8571), 11, + ACTIONS(6671), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -561899,642 +433786,616 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [220304] = 23, + [168362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(5196), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5198), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3926), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4394), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [220380] = 23, + anon_sym_try, + anon_sym_requires, + [168402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(5192), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5194), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3871), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4395), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [220456] = 23, + anon_sym_try, + anon_sym_requires, + [168442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(5168), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5170), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3926), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4405), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [220532] = 5, + anon_sym_try, + anon_sym_requires, + [168482] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8792), 1, + ACTIONS(6685), 1, + anon_sym_DASH_GT, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(8074), 1, + anon_sym___attribute__, + ACTIONS(8077), 1, anon_sym_LBRACK_LBRACK, - STATE(5945), 2, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(8085), 1, + anon_sym_requires, + STATE(5235), 1, + sym__function_attributes_end, + STATE(5313), 1, + sym_trailing_return_type, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8082), 2, + anon_sym_final, + anon_sym_override, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6028), 10, - anon_sym_DOT_DOT_DOT, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4859), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(8072), 7, 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(6030), 15, + anon_sym_COLON, + anon_sym_try, + [168554] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(7091), 1, + anon_sym_LPAREN2, + ACTIONS(7099), 1, anon_sym_LBRACK, + ACTIONS(7887), 1, + anon_sym_STAR, + ACTIONS(7889), 1, + anon_sym_AMP_AMP, + ACTIONS(7891), 1, + anon_sym_AMP, + STATE(3716), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5986), 1, + sym__abstract_declarator, + STATE(4402), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7534), 5, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_try, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_requires, - [220572] = 23, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6671), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [168616] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, + ACTIONS(6681), 1, + anon_sym_const, + ACTIONS(7091), 1, + anon_sym_LPAREN2, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7887), 1, + anon_sym_STAR, + ACTIONS(7889), 1, + anon_sym_AMP_AMP, + ACTIONS(7891), 1, + anon_sym_AMP, + STATE(3716), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5970), 1, + sym__abstract_declarator, + STATE(4402), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7514), 5, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3871), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, anon_sym_final, anon_sym_override, - STATE(4434), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [220648] = 23, + anon_sym_requires, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6671), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [168678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(5178), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5180), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3871), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4411), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [220724] = 23, + anon_sym_try, + anon_sym_requires, + [168718] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(6685), 1, + anon_sym_DASH_GT, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(7895), 1, anon_sym___attribute__, - ACTIONS(5107), 1, + ACTIONS(7898), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5689), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(8795), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(2617), 1, - sym__class_declaration, - STATE(3124), 1, - sym_field_declaration_list, - STATE(6353), 1, - sym_ms_declspec_modifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(7583), 1, - sym_virtual_specifier, - STATE(8560), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(7901), 1, + anon_sym_LBRACK, + STATE(5262), 1, + sym__function_attributes_end, + STATE(5285), 1, + sym_trailing_return_type, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(2874), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6357), 2, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5998), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [220800] = 23, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4845), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [168790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(5215), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5217), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(8500), 1, anon_sym_LBRACE, - ACTIONS(8766), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(5531), 1, - sym_field_declaration_list, - STATE(5637), 1, - sym__class_declaration, - STATE(6365), 1, - sym_ms_declspec_modifier, - STATE(7279), 1, - sym__scope_resolution, - STATE(7927), 1, - sym_virtual_specifier, - STATE(8480), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(5438), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6347), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5979), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [220876] = 23, + anon_sym_try, + anon_sym_requires, + [168830] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + ACTIONS(8088), 1, + sym_identifier, + ACTIONS(8090), 1, + anon_sym_COLON_COLON, + ACTIONS(8094), 1, + sym_primitive_type, + ACTIONS(8096), 1, + anon_sym_enum, + ACTIONS(8098), 1, + anon_sym_class, + ACTIONS(8100), 1, + anon_sym_struct, + ACTIONS(8102), 1, + anon_sym_union, + ACTIONS(8104), 1, + sym_auto, + ACTIONS(8106), 1, anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(8108), 1, + anon_sym_typename, + STATE(2096), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2300), 1, + sym__type_specifier, + STATE(2468), 1, + sym_qualified_type_identifier, + STATE(2478), 1, + sym_decltype_auto, + STATE(4671), 1, + sym_argument_list, + STATE(5965), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2393), 2, + sym_decltype, + sym_template_type, + ACTIONS(8092), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2476), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [168910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5223), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5225), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(8500), 1, anon_sym_LBRACE, - ACTIONS(8766), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(5531), 1, - sym_field_declaration_list, - STATE(5640), 1, - sym__class_declaration, - STATE(6365), 1, - sym_ms_declspec_modifier, - STATE(7279), 1, - sym__scope_resolution, - STATE(7927), 1, - sym_virtual_specifier, - STATE(8480), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(5438), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6347), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5979), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [220952] = 23, + anon_sym_try, + anon_sym_requires, + [168950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(5255), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5257), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5689), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(8795), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(2616), 1, - sym__class_declaration, - STATE(3124), 1, - sym_field_declaration_list, - STATE(6353), 1, - sym_ms_declspec_modifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(7583), 1, - sym_virtual_specifier, - STATE(8560), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(2874), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6357), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5998), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [221028] = 23, + anon_sym_try, + anon_sym_requires, + [168990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(5211), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5213), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(8500), 1, anon_sym_LBRACE, - ACTIONS(8766), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(5531), 1, - sym_field_declaration_list, - STATE(5643), 1, - sym__class_declaration, - STATE(6365), 1, - sym_ms_declspec_modifier, - STATE(7279), 1, - sym__scope_resolution, - STATE(7927), 1, - sym_virtual_specifier, - STATE(8480), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(5438), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6347), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5979), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [221104] = 23, + anon_sym_try, + anon_sym_requires, + [169030] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(8110), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(5769), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5767), 27, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5689), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(8795), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(2599), 1, - sym__class_declaration, - STATE(3124), 1, - sym_field_declaration_list, - STATE(6353), 1, - sym_ms_declspec_modifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(7583), 1, - sym_virtual_specifier, - STATE(8560), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - STATE(2874), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6357), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5998), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [221180] = 5, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [169072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, - anon_sym___attribute__, - STATE(6024), 1, - sym_attribute_specifier, - ACTIONS(5842), 2, + ACTIONS(5259), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5840), 24, + ACTIONS(5261), 29, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -562546,205 +434407,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [221220] = 23, + [169112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(5111), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5113), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3926), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(3843), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [221296] = 23, + anon_sym_try, + anon_sym_requires, + [169152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(5094), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5096), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3871), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(3843), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [221372] = 23, + anon_sym_try, + anon_sym_requires, + [169192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(5263), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5265), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3849), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4405), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [221448] = 14, + anon_sym_try, + anon_sym_requires, + [169232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(7940), 1, - anon_sym_COLON, - ACTIONS(8404), 1, + ACTIONS(5271), 3, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(8573), 1, anon_sym_const, - ACTIONS(8730), 1, + ACTIONS(5273), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(8732), 1, anon_sym_AMP_AMP, - ACTIONS(8734), 1, - anon_sym_AMP, - STATE(4808), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7581), 1, - sym__abstract_declarator, - STATE(6147), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8571), 11, + 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, @@ -562755,75 +434555,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [221506] = 23, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(5094), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5096), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3926), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4395), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [221582] = 5, + anon_sym_try, + anon_sym_requires, + [169312] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, - anon_sym___attribute__, - STATE(6025), 1, - sym_attribute_specifier, - ACTIONS(5838), 2, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4913), 3, anon_sym_AMP, anon_sym_const, - ACTIONS(5836), 24, + anon_sym_COLON, + ACTIONS(4915), 28, 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, @@ -562837,388 +434631,686 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [221622] = 23, + [169354] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + ACTIONS(8113), 1, + sym_identifier, + ACTIONS(8115), 1, + anon_sym_COLON_COLON, + ACTIONS(8119), 1, + sym_primitive_type, + ACTIONS(8121), 1, + anon_sym_enum, + ACTIONS(8123), 1, + anon_sym_class, + ACTIONS(8125), 1, + anon_sym_struct, + ACTIONS(8127), 1, + anon_sym_union, + ACTIONS(8129), 1, + sym_auto, + ACTIONS(8131), 1, anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(8133), 1, + anon_sym_typename, + STATE(2294), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2430), 1, + sym__type_specifier, + STATE(2804), 1, + sym_decltype_auto, + STATE(2817), 1, + sym_qualified_type_identifier, + STATE(4604), 1, + sym_argument_list, + STATE(5964), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2731), 2, + sym_decltype, + sym_template_type, + ACTIONS(8117), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2810), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [169434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5267), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5269), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7318), 1, - anon_sym_COLON_COLON, - ACTIONS(8621), 1, anon_sym_LBRACE, - ACTIONS(8776), 1, - sym_identifier, - STATE(5620), 1, - sym_template_type, - STATE(5853), 1, - sym_field_declaration_list, - STATE(6052), 1, - sym__class_declaration, - STATE(6455), 1, - sym_ms_declspec_modifier, - STATE(7289), 1, - sym__scope_resolution, - STATE(7678), 1, - sym_virtual_specifier, - STATE(8649), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(5595), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6431), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5977), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [221698] = 23, + anon_sym_try, + anon_sym_requires, + [169474] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + ACTIONS(8088), 1, + sym_identifier, + ACTIONS(8090), 1, anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(8094), 1, + sym_primitive_type, + ACTIONS(8096), 1, + anon_sym_enum, + ACTIONS(8098), 1, + anon_sym_class, + ACTIONS(8100), 1, + anon_sym_struct, + ACTIONS(8102), 1, + anon_sym_union, + ACTIONS(8104), 1, + sym_auto, + ACTIONS(8106), 1, + anon_sym_decltype, + ACTIONS(8108), 1, + anon_sym_typename, + STATE(2096), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2309), 1, + sym__type_specifier, + STATE(2468), 1, + sym_qualified_type_identifier, + STATE(2478), 1, + sym_decltype_auto, + STATE(4661), 1, + sym_argument_list, + STATE(5965), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2393), 2, + sym_decltype, + sym_template_type, + ACTIONS(8092), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2476), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [169554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5032), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5034), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3871), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4394), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [221774] = 23, + anon_sym_try, + anon_sym_requires, + [169594] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, anon_sym_decltype, - ACTIONS(4940), 1, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + ACTIONS(8058), 1, + sym_identifier, + ACTIONS(8060), 1, anon_sym_COLON_COLON, - ACTIONS(5103), 1, + ACTIONS(8062), 1, + anon_sym_enum, + ACTIONS(8064), 1, + anon_sym_class, + ACTIONS(8066), 1, + anon_sym_struct, + ACTIONS(8068), 1, + anon_sym_union, + ACTIONS(8070), 1, + anon_sym_typename, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(3645), 1, + sym__type_specifier, + STATE(4610), 1, + sym_argument_list, + STATE(5972), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [169674] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5156), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5158), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(3849), 1, - sym__class_declaration, - STATE(4506), 1, - sym_field_declaration_list, - STATE(6449), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, - sym__scope_resolution, - STATE(7914), 1, - sym_virtual_specifier, - STATE(8490), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4395), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6465), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6000), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [221850] = 23, + anon_sym_try, + anon_sym_requires, + [169714] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + ACTIONS(8032), 1, + sym_identifier, + ACTIONS(8034), 1, + anon_sym_COLON_COLON, + ACTIONS(8038), 1, + sym_primitive_type, + ACTIONS(8040), 1, + anon_sym_enum, + ACTIONS(8042), 1, + anon_sym_class, + ACTIONS(8044), 1, + anon_sym_struct, + ACTIONS(8046), 1, + anon_sym_union, + ACTIONS(8048), 1, + sym_auto, + ACTIONS(8050), 1, anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(8052), 1, + anon_sym_typename, + STATE(2421), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2773), 1, + sym__type_specifier, + STATE(3331), 1, + sym_qualified_type_identifier, + STATE(3349), 1, + sym_decltype_auto, + STATE(4663), 1, + sym_argument_list, + STATE(5960), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(3043), 2, + sym_decltype, + sym_template_type, + ACTIONS(8036), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3351), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [169794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5200), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5202), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5689), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8774), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(2616), 1, - sym__class_declaration, - STATE(3124), 1, - sym_field_declaration_list, - STATE(6322), 1, - sym_ms_declspec_modifier, - STATE(7275), 1, - sym__scope_resolution, - STATE(7583), 1, - sym_virtual_specifier, - STATE(8560), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(2874), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6254), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5966), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [221926] = 23, + anon_sym_try, + anon_sym_requires, + [169834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(5160), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5162), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5689), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(8786), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(2617), 1, - sym__class_declaration, - STATE(6073), 1, - sym_field_declaration_list, - STATE(6457), 1, - sym_ms_declspec_modifier, - STATE(7274), 1, - sym__scope_resolution, - STATE(7821), 1, - sym_virtual_specifier, - STATE(8725), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(5650), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6463), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5983), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [222002] = 22, + anon_sym_try, + anon_sym_requires, + [169874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(5098), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5100), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5689), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8774), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(3129), 1, - sym_field_declaration_list, - STATE(6424), 1, - sym_ms_declspec_modifier, - STATE(7275), 1, - sym__scope_resolution, - STATE(7585), 1, - sym_virtual_specifier, - STATE(8634), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(2888), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6389), 2, + anon_sym_try, + anon_sym_requires, + [169914] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6861), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(8135), 1, + anon_sym_requires, + STATE(4736), 1, + sym_ref_qualifier, + STATE(5549), 1, + sym__function_attributes_end, + STATE(5795), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7972), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6757), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [222075] = 18, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4967), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [169992] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7212), 1, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6690), 1, anon_sym_noexcept, - ACTIONS(7214), 1, + ACTIONS(6692), 1, anon_sym_throw, - ACTIONS(7365), 1, + ACTIONS(6861), 1, anon_sym_DASH_GT, - ACTIONS(7367), 1, + ACTIONS(6863), 1, anon_sym_requires, - ACTIONS(8746), 1, + ACTIONS(7901), 1, anon_sym_LBRACK, - STATE(6462), 1, - sym_gnu_asm_expression, - STATE(6700), 1, - sym_requires_clause, - STATE(6939), 1, + STATE(4686), 1, + sym_ref_qualifier, + STATE(5649), 1, + sym__function_attributes_end, + STATE(5832), 1, sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - STATE(6132), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6461), 2, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6627), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8744), 5, - anon_sym_RPAREN, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4971), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [170070] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + ACTIONS(8058), 1, + sym_identifier, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8062), 1, + anon_sym_enum, + ACTIONS(8064), 1, + anon_sym_class, + ACTIONS(8066), 1, + anon_sym_struct, + ACTIONS(8068), 1, + anon_sym_union, + ACTIONS(8070), 1, + anon_sym_typename, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(3775), 1, + sym__type_specifier, + STATE(4616), 1, + sym_argument_list, + STATE(5972), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [170150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4551), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4553), 29, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_try, - [222140] = 3, + anon_sym_requires, + [170190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5608), 2, + ACTIONS(4539), 3, anon_sym_AMP, anon_sym_const, - ACTIONS(5610), 25, + anon_sym_COLON, + ACTIONS(4541), 29, 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, @@ -563232,27 +435324,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [222175] = 3, + [170230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5396), 2, + ACTIONS(5090), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5398), 25, + ACTIONS(5092), 29, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -563264,225 +435360,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [222210] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5834), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8701), 1, - anon_sym_COLON_COLON, - ACTIONS(8790), 1, - sym_identifier, - STATE(3296), 1, - sym_template_type, - STATE(3358), 1, - sym_field_declaration_list, - STATE(6288), 1, - sym_ms_declspec_modifier, - STATE(7302), 1, - sym__scope_resolution, - STATE(7691), 1, - sym_virtual_specifier, - STATE(8716), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3112), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6274), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6757), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [222283] = 22, + [170270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(5115), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5117), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5659), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8585), 1, - anon_sym_COLON_COLON, - ACTIONS(8778), 1, - sym_identifier, - STATE(3080), 1, - sym_template_type, - STATE(3174), 1, - sym_field_declaration_list, - STATE(6340), 1, - sym_ms_declspec_modifier, - STATE(7278), 1, - sym__scope_resolution, - STATE(7938), 1, - sym_virtual_specifier, - STATE(8812), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(2789), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6339), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6757), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [222356] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(8500), 1, - anon_sym_LBRACE, - ACTIONS(8764), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(5556), 1, - sym_field_declaration_list, - STATE(6329), 1, - sym_ms_declspec_modifier, - STATE(7261), 1, - sym__scope_resolution, - STATE(7884), 1, - sym_virtual_specifier, - STATE(8505), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(5436), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6330), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6757), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [222429] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7369), 1, - anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6336), 1, - sym_gnu_asm_expression, - STATE(6885), 1, - sym_requires_clause, - STATE(6968), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(6117), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6345), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6644), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6716), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [222494] = 3, + anon_sym_try, + anon_sym_requires, + [170310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5604), 2, + ACTIONS(4555), 3, anon_sym_AMP, anon_sym_const, - ACTIONS(5606), 25, + anon_sym_COLON, + ACTIONS(4557), 29, 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, @@ -563496,174 +435435,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [222529] = 18, + [170350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7357), 1, - anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6373), 1, - sym_gnu_asm_expression, - STATE(6885), 1, - sym_requires_clause, - STATE(7055), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6138), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6360), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6664), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6716), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 5, + ACTIONS(4547), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4549), 29, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [222594] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - ACTIONS(8788), 1, - anon_sym_COLON_COLON, - STATE(3369), 1, - sym_template_type, - STATE(4500), 1, - sym_field_declaration_list, - STATE(6352), 1, - sym_ms_declspec_modifier, - STATE(7267), 1, - sym__scope_resolution, - STATE(7705), 1, - sym_virtual_specifier, - STATE(8570), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4684), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6364), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6757), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [222667] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7318), 1, anon_sym_COLON_COLON, - ACTIONS(8621), 1, anon_sym_LBRACE, - ACTIONS(8776), 1, - sym_identifier, - STATE(5620), 1, - sym_template_type, - STATE(5897), 1, - sym_field_declaration_list, - STATE(6385), 1, - sym_ms_declspec_modifier, - STATE(7289), 1, - sym__scope_resolution, - STATE(7708), 1, - sym_virtual_specifier, - STATE(8664), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(5593), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6393), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6757), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [222740] = 3, + anon_sym_try, + anon_sym_requires, + [170390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5400), 2, + ACTIONS(4583), 3, anon_sym_AMP, anon_sym_const, - ACTIONS(5402), 25, + anon_sym_COLON, + ACTIONS(4585), 29, 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, @@ -563677,79 +435509,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [222775] = 22, + [170430] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(39), 1, anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6654), 1, + ACTIONS(5320), 1, anon_sym_COLON, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(8500), 1, + ACTIONS(5343), 1, anon_sym_LBRACE, - ACTIONS(8766), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(5556), 1, + STATE(1960), 1, + sym_attribute_specifier, + STATE(4953), 1, sym_field_declaration_list, - STATE(6410), 1, - sym_ms_declspec_modifier, - STATE(7279), 1, - sym__scope_resolution, - STATE(7884), 1, + STATE(6386), 1, sym_virtual_specifier, - STATE(8505), 1, + STATE(6907), 1, sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(5312), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5436), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6372), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6757), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [222848] = 3, + ACTIONS(5314), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [170486] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 2, - anon_sym_AMP, + ACTIONS(6681), 1, anon_sym_const, - ACTIONS(5567), 25, + ACTIONS(7091), 1, anon_sym_LPAREN2, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7887), 1, anon_sym_STAR, + ACTIONS(7889), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7891), 1, + anon_sym_AMP, + STATE(3716), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5971), 1, + sym__abstract_declarator, + STATE(4402), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6202), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6671), 11, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -563760,27 +435610,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [170548] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + ACTIONS(8113), 1, + sym_identifier, + ACTIONS(8115), 1, + anon_sym_COLON_COLON, + ACTIONS(8119), 1, + sym_primitive_type, + ACTIONS(8121), 1, + anon_sym_enum, + ACTIONS(8123), 1, + anon_sym_class, + ACTIONS(8125), 1, + anon_sym_struct, + ACTIONS(8127), 1, + anon_sym_union, + ACTIONS(8129), 1, sym_auto, + ACTIONS(8131), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [222883] = 3, + ACTIONS(8133), 1, + anon_sym_typename, + STATE(2294), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2452), 1, + sym__type_specifier, + STATE(2804), 1, + sym_decltype_auto, + STATE(2817), 1, + sym_qualified_type_identifier, + STATE(4615), 1, + sym_argument_list, + STATE(5964), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2731), 2, + sym_decltype, + sym_template_type, + ACTIONS(8117), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2810), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [170628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 2, + ACTIONS(5094), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5435), 25, + ACTIONS(5096), 29, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -563792,375 +435695,504 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [222918] = 22, + [170668] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(8764), 1, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + ACTIONS(8058), 1, sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4474), 1, - sym_field_declaration_list, - STATE(6398), 1, - sym_ms_declspec_modifier, - STATE(7261), 1, - sym__scope_resolution, - STATE(7660), 1, - sym_virtual_specifier, - STATE(8591), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4263), 2, - sym__class_name, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8062), 1, + anon_sym_enum, + ACTIONS(8064), 1, + anon_sym_class, + ACTIONS(8066), 1, + anon_sym_struct, + ACTIONS(8068), 1, + anon_sym_union, + ACTIONS(8070), 1, + anon_sym_typename, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, sym_qualified_type_identifier, - STATE(6400), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, + STATE(3641), 1, + sym__type_specifier, + STATE(4617), 1, + sym_argument_list, + STATE(5972), 1, + sym__scope_resolution, + STATE(7683), 1, sym_dependent_type_identifier, - STATE(6757), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [222991] = 22, + STATE(1886), 2, + sym_decltype, + sym_template_type, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [170748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(5138), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5140), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5689), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(8786), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(6057), 1, - sym_field_declaration_list, - STATE(6384), 1, - sym_ms_declspec_modifier, - STATE(7274), 1, - sym__scope_resolution, - STATE(7819), 1, - sym_virtual_specifier, - STATE(8723), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(5592), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6409), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6757), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [223064] = 18, + anon_sym_try, + anon_sym_requires, + [170788] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7212), 1, + ACTIONS(6685), 1, + anon_sym_DASH_GT, + ACTIONS(6690), 1, anon_sym_noexcept, - ACTIONS(7214), 1, + ACTIONS(6692), 1, anon_sym_throw, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7369), 1, - anon_sym_DASH_GT, - ACTIONS(7371), 1, + ACTIONS(6747), 1, anon_sym_requires, - STATE(6267), 1, - sym_gnu_asm_expression, - STATE(6891), 1, - sym_requires_clause, - STATE(6965), 1, + ACTIONS(8074), 1, + anon_sym___attribute__, + ACTIONS(8077), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8080), 1, + anon_sym_LBRACK, + STATE(5234), 1, + sym__function_attributes_end, + STATE(5286), 1, sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(6137), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6468), 2, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6649), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 5, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4839), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(8072), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [223129] = 18, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [170860] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7212), 1, + ACTIONS(6690), 1, anon_sym_noexcept, - ACTIONS(7214), 1, + ACTIONS(6692), 1, anon_sym_throw, - ACTIONS(7369), 1, - anon_sym_DASH_GT, - ACTIONS(7371), 1, + ACTIONS(6747), 1, anon_sym_requires, - STATE(6422), 1, - sym_gnu_asm_expression, - STATE(6894), 1, - sym_requires_clause, - STATE(6956), 1, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6790), 1, + anon_sym_DASH_GT, + ACTIONS(7898), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7901), 1, + anon_sym_LBRACK, + STATE(5241), 1, + sym__function_attributes_end, + STATE(5285), 1, sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(6118), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6429), 2, + ACTIONS(7945), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6613), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 5, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4922), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [223194] = 22, + anon_sym_EQ, + anon_sym_COLON, + [170931] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(6885), 1, + sym_auto, + ACTIONS(6887), 1, anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5726), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, + ACTIONS(7089), 1, anon_sym_COLON, - ACTIONS(8679), 1, - anon_sym_COLON_COLON, - ACTIONS(8784), 1, - sym_identifier, - STATE(3180), 1, - sym_template_type, - STATE(3386), 1, - sym_field_declaration_list, - STATE(6298), 1, - sym_ms_declspec_modifier, - STATE(7293), 1, - sym__scope_resolution, - STATE(7971), 1, - sym_virtual_specifier, - STATE(8771), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3033), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6299), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6757), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [223267] = 18, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_const, + ACTIONS(8138), 1, + anon_sym_STAR, + ACTIONS(8140), 1, + anon_sym_AMP_AMP, + ACTIONS(8142), 1, + anon_sym_AMP, + STATE(1931), 1, + sym_decltype_auto, + STATE(3661), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6157), 1, + sym__abstract_declarator, + STATE(4820), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7954), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [170998] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(8054), 1, anon_sym___attribute__, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7357), 1, - anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - STATE(6464), 1, - sym_gnu_asm_expression, - STATE(6894), 1, - sym_requires_clause, - STATE(7057), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6124), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6306), 2, + ACTIONS(8144), 1, + anon_sym_LBRACE, + ACTIONS(8146), 1, + anon_sym_COLON, + STATE(4757), 1, + sym__enum_base_clause, + STATE(4808), 1, + sym_enumerator_list, + STATE(4920), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6660), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 5, + ACTIONS(5465), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5463), 23, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym___extension__, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_try, - [223332] = 18, + anon_sym_requires, + [171049] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7212), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6493), 1, + anon_sym_AMP_AMP, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5187), 1, + sym__declarator, + STATE(5245), 1, + sym__scope_resolution, + STATE(6622), 1, + sym_init_declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(7705), 1, + sym__declaration_declarator, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [171122] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6690), 1, anon_sym_noexcept, - ACTIONS(7214), 1, + ACTIONS(6692), 1, anon_sym_throw, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7365), 1, - anon_sym_DASH_GT, - ACTIONS(7367), 1, + ACTIONS(6747), 1, anon_sym_requires, - STATE(6279), 1, - sym_gnu_asm_expression, - STATE(6678), 1, - sym_requires_clause, - STATE(6934), 1, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6802), 1, + anon_sym_DASH_GT, + ACTIONS(7898), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7901), 1, + anon_sym_LBRACK, + STATE(5285), 1, sym_trailing_return_type, - ACTIONS(5663), 2, + STATE(5388), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - ACTIONS(7208), 2, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - STATE(6136), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6278), 2, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6703), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 5, - anon_sym_RPAREN, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4910), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - [223397] = 7, + [171193] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(5790), 1, - anon_sym_LBRACE, - STATE(2609), 1, - sym_attribute_specifier, - STATE(6074), 1, - sym_enumerator_list, - ACTIONS(5818), 2, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, anon_sym_STAR, - ACTIONS(5820), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(6493), 1, + anon_sym_AMP_AMP, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5218), 1, + sym__declarator, + STATE(5245), 1, + sym__scope_resolution, + STATE(6622), 1, + sym_init_declarator, + STATE(7197), 1, + sym__declaration_declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [171266] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(6885), 1, + sym_auto, + ACTIONS(6887), 1, + anon_sym_decltype, + ACTIONS(7109), 1, + anon_sym_COLON, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, anon_sym_const, + ACTIONS(8138), 1, + anon_sym_STAR, + ACTIONS(8140), 1, + anon_sym_AMP_AMP, + ACTIONS(8142), 1, + anon_sym_AMP, + STATE(1931), 1, + sym_decltype_auto, + STATE(3661), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6187), 1, + sym__abstract_declarator, + STATE(4807), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7954), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -564171,24 +436203,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [223440] = 3, + [171333] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5449), 2, + ACTIONS(8054), 1, + anon_sym___attribute__, + ACTIONS(8144), 1, + anon_sym_LBRACE, + ACTIONS(8146), 1, + anon_sym_COLON, + STATE(4725), 1, + sym__enum_base_clause, + STATE(4814), 1, + sym_enumerator_list, + STATE(4893), 1, + sym_attribute_specifier, + ACTIONS(5451), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5451), 25, + ACTIONS(5449), 23, 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, @@ -564207,73 +436245,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [223475] = 22, + [171384] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7250), 1, + anon_sym_LPAREN2, + ACTIONS(7338), 1, + sym_identifier, + ACTIONS(7340), 1, + anon_sym_STAR, + ACTIONS(7342), 1, + anon_sym_AMP_AMP, + ACTIONS(7344), 1, + anon_sym_AMP, + STATE(5648), 1, + sym__field_declarator, + STATE(5844), 1, + sym_operator_name, + STATE(7666), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5865), 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(3263), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [171445] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7948), 1, + anon_sym_STAR, + ACTIONS(7950), 1, + anon_sym_AMP_AMP, + ACTIONS(7952), 1, + anon_sym_AMP, + ACTIONS(7956), 1, + anon_sym_const, + STATE(3705), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6016), 1, + sym__abstract_declarator, + STATE(4570), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5420), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7954), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [171506] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5963), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8625), 1, - anon_sym_COLON_COLON, - ACTIONS(8782), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, sym_identifier, - STATE(3332), 1, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6585), 1, + anon_sym_STAR, + ACTIONS(6587), 1, + anon_sym_AMP_AMP, + ACTIONS(6589), 1, + anon_sym_AMP, + ACTIONS(6591), 1, + anon_sym_COLON_COLON, + STATE(5266), 1, + sym__scope_resolution, + STATE(5342), 1, + sym__declarator, + STATE(6622), 1, + sym_init_declarator, + STATE(7229), 1, + sym_ms_based_modifier, + STATE(7361), 1, + sym__declaration_declarator, + STATE(7683), 3, + sym_decltype, sym_template_type, - STATE(3836), 1, - sym_field_declaration_list, - STATE(6440), 1, - sym_ms_declspec_modifier, - STATE(7276), 1, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [171579] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6493), 1, + anon_sym_AMP_AMP, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5245), 1, sym__scope_resolution, - STATE(7603), 1, - sym_virtual_specifier, - STATE(8605), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3175), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6439), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + STATE(5435), 1, + sym__declarator, + STATE(6622), 1, + sym_init_declarator, + STATE(7540), 1, + sym__declaration_declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(7683), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(6757), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [223548] = 3, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [171652] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5468), 2, + ACTIONS(5341), 1, + anon_sym___attribute__, + ACTIONS(5436), 1, + anon_sym_LBRACE, + ACTIONS(8148), 1, + anon_sym_COLON, + STATE(1953), 1, + sym_attribute_specifier, + STATE(2340), 1, + sym__enum_base_clause, + STATE(2371), 1, + sym_enumerator_list, + ACTIONS(5451), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5470), 25, + ACTIONS(5449), 23, + 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, @@ -564288,225 +436486,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [223583] = 18, + [171703] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7212), 1, + ACTIONS(6690), 1, anon_sym_noexcept, - ACTIONS(7214), 1, + ACTIONS(6692), 1, anon_sym_throw, - ACTIONS(7365), 1, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6790), 1, anon_sym_DASH_GT, - ACTIONS(7367), 1, + ACTIONS(8077), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(8085), 1, anon_sym_requires, - STATE(6403), 1, - sym_gnu_asm_expression, - STATE(6701), 1, - sym_requires_clause, - STATE(6929), 1, + STATE(5283), 1, + sym__function_attributes_end, + STATE(5313), 1, sym_trailing_return_type, - ACTIONS(5663), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(8082), 2, anon_sym_final, anon_sym_override, - ACTIONS(7208), 2, + ACTIONS(8150), 2, anon_sym_asm, anon_sym___asm__, - STATE(6143), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6420), 2, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6498), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6639), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [223648] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7357), 1, - anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - STATE(6343), 1, - sym_gnu_asm_expression, - STATE(6891), 1, + STATE(5396), 2, + sym__function_postfix, sym_requires_clause, - STATE(7045), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6142), 2, + STATE(4918), 3, + sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - STATE(6358), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6646), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 5, + ACTIONS(8072), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [223713] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5775), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, anon_sym_COLON, - ACTIONS(8647), 1, - anon_sym_COLON_COLON, - ACTIONS(8780), 1, - sym_identifier, - STATE(3227), 1, - sym_template_type, - STATE(3561), 1, - sym_field_declaration_list, - STATE(6405), 1, - sym_ms_declspec_modifier, - STATE(7282), 1, - sym__scope_resolution, - STATE(7631), 1, - sym_virtual_specifier, - STATE(8602), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3085), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6401), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6757), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [223786] = 22, + [171774] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(8766), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4474), 1, - sym_field_declaration_list, - STATE(6276), 1, - sym_ms_declspec_modifier, - STATE(7279), 1, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6493), 1, + anon_sym_AMP_AMP, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5203), 1, + sym__declarator, + STATE(5245), 1, sym__scope_resolution, - STATE(7660), 1, - sym_virtual_specifier, - STATE(8591), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4263), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6271), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + STATE(6622), 1, + sym_init_declarator, + STATE(7360), 1, + sym__declaration_declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(7683), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(6757), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [223859] = 6, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [171847] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(8444), 1, - sym_auto, - ACTIONS(8446), 1, - anon_sym_decltype, - STATE(6028), 1, - sym_decltype_auto, - ACTIONS(5190), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5192), 22, + ACTIONS(4603), 1, anon_sym_LPAREN2, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7948), 1, anon_sym_STAR, + ACTIONS(7950), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7952), 1, + anon_sym_AMP, + ACTIONS(7956), 1, + anon_sym_const, + STATE(3705), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6042), 1, + sym__abstract_declarator, + STATE(4975), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7514), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7954), 11, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -564517,179 +436639,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [171908] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6790), 1, + anon_sym_DASH_GT, + ACTIONS(7898), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7908), 1, + anon_sym_requires, + STATE(5276), 1, + sym__function_attributes_end, + STATE(5335), 1, + sym_trailing_return_type, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(7905), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [223900] = 22, + ACTIONS(7945), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4905), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [171979] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5689), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(8795), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(3129), 1, - sym_field_declaration_list, - STATE(6280), 1, - sym_ms_declspec_modifier, - STATE(7300), 1, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6493), 1, + anon_sym_AMP_AMP, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5199), 1, + sym__declarator, + STATE(5245), 1, sym__scope_resolution, - STATE(7585), 1, - sym_virtual_specifier, - STATE(8634), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + STATE(6622), 1, + sym_init_declarator, + STATE(7540), 1, + sym__declaration_declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [172052] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6797), 1, + anon_sym_DASH_GT, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7937), 1, + anon_sym_LBRACK_LBRACK, + STATE(5240), 1, + sym_trailing_return_type, + STATE(5373), 1, + sym__function_attributes_end, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(2888), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6287), 2, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6757), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [223973] = 22, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4915), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [172123] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5103), 1, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(5107), 1, + ACTIONS(6802), 1, + anon_sym_DASH_GT, + ACTIONS(8077), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(5834), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7296), 1, - anon_sym_COLON_COLON, - ACTIONS(8770), 1, - sym_identifier, - STATE(3296), 1, - sym_template_type, - STATE(3358), 1, - sym_field_declaration_list, - STATE(6417), 1, - sym_ms_declspec_modifier, - STATE(7297), 1, - sym__scope_resolution, - STATE(7691), 1, - sym_virtual_specifier, - STATE(8716), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(8080), 1, + anon_sym_LBRACK, + STATE(5286), 1, + sym_trailing_return_type, + STATE(5376), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(3112), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6418), 2, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6757), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [224046] = 22, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4877), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(8072), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [172194] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4500), 1, - sym_field_declaration_list, - STATE(6453), 1, - sym_ms_declspec_modifier, - STATE(7286), 1, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6493), 1, + anon_sym_AMP_AMP, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5245), 1, sym__scope_resolution, - STATE(7705), 1, - sym_virtual_specifier, - STATE(8570), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3743), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6277), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + STATE(5435), 1, + sym__declarator, + STATE(6622), 1, + sym_init_declarator, + STATE(7197), 1, + sym__declaration_declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(7683), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(6757), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [224119] = 7, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [172267] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(5790), 1, - anon_sym_LBRACE, - STATE(2591), 1, - sym_attribute_specifier, - STATE(6077), 1, - sym_enumerator_list, - ACTIONS(5786), 2, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(7935), 1, + anon_sym_LT, + STATE(1726), 1, + sym_template_argument_list, + ACTIONS(4085), 3, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5788), 21, + anon_sym_LBRACE, + ACTIONS(5324), 25, anon_sym___extension__, + anon_sym___attribute__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -564707,25 +436934,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constinit, anon_sym_consteval, sym_primitive_type, + anon_sym_COLON, sym_identifier, sym_auto, anon_sym_decltype, - [224162] = 3, + anon_sym_final, + anon_sym_override, + [172312] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5325), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5327), 25, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6802), 1, + anon_sym_DASH_GT, + ACTIONS(7898), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7908), 1, + anon_sym_requires, + STATE(5335), 1, + sym_trailing_return_type, + STATE(5394), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7905), 2, + anon_sym_final, + anon_sym_override, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4897), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 6, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [172383] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7948), 1, + anon_sym_STAR, + ACTIONS(7950), 1, + anon_sym_AMP_AMP, + ACTIONS(7952), 1, + anon_sym_AMP, + ACTIONS(7956), 1, + anon_sym_const, + STATE(3705), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5998), 1, + sym__abstract_declarator, + STATE(4975), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6202), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7954), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -564736,28 +437039,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [224197] = 3, + [172444] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5345), 2, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6493), 1, + anon_sym_AMP_AMP, + ACTIONS(6495), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(5347), 25, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5245), 1, + sym__scope_resolution, + STATE(5435), 1, + sym__declarator, + STATE(6622), 1, + sym_init_declarator, + STATE(7428), 1, + sym__declaration_declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [172517] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, anon_sym_LPAREN2, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7948), 1, anon_sym_STAR, + ACTIONS(7950), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7952), 1, + anon_sym_AMP, + ACTIONS(7956), 1, + anon_sym_const, + STATE(3705), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6012), 1, + sym__abstract_declarator, + STATE(4975), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7534), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7954), 11, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -564768,80 +437139,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [224232] = 22, + [172578] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(4916), 1, - anon_sym_COLON_COLON, - ACTIONS(5103), 1, - anon_sym___attribute__, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5109), 1, - anon_sym___declspec, - ACTIONS(5113), 1, - anon_sym_alignas, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8772), 1, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4500), 1, - sym_field_declaration_list, - STATE(6451), 1, - sym_ms_declspec_modifier, - STATE(7280), 1, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6493), 1, + anon_sym_AMP_AMP, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5181), 1, + sym__declarator, + STATE(5245), 1, sym__scope_resolution, - STATE(7705), 1, - sym_virtual_specifier, - STATE(8570), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3743), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6350), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + STATE(6622), 1, + sym_init_declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(7827), 1, + sym__declaration_declarator, + STATE(7683), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(6757), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [224305] = 4, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [172651] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, anon_sym_COLON_COLON, - ACTIONS(5321), 2, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6493), 1, + anon_sym_AMP_AMP, + ACTIONS(6495), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(5323), 24, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5144), 1, + sym__declarator, + STATE(5245), 1, + sym__scope_resolution, + STATE(6622), 1, + sym_init_declarator, + STATE(7428), 1, + sym__declaration_declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [172724] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7250), 1, anon_sym_LPAREN2, + ACTIONS(7338), 1, + sym_identifier, + ACTIONS(7340), 1, anon_sym_STAR, + ACTIONS(7342), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7344), 1, + anon_sym_AMP, + STATE(5559), 1, + sym__field_declarator, + STATE(5844), 1, + sym_operator_name, + STATE(7666), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5865), 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(3263), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -564852,27 +437292,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [224342] = 3, + [172785] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5578), 2, + ACTIONS(5467), 1, + anon_sym___attribute__, + ACTIONS(5681), 1, + anon_sym_LBRACE, + ACTIONS(8153), 1, + anon_sym_COLON, + STATE(2501), 1, + sym__enum_base_clause, + STATE(2575), 1, + sym_enumerator_list, + STATE(2807), 1, + sym_attribute_specifier, + ACTIONS(5451), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5580), 24, + ACTIONS(5449), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -564887,23 +437332,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [224376] = 3, + [172836] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 2, + ACTIONS(5341), 1, + anon_sym___attribute__, + ACTIONS(5436), 1, + anon_sym_LBRACE, + ACTIONS(8148), 1, + anon_sym_COLON, + STATE(1981), 1, + sym_attribute_specifier, + STATE(2347), 1, + sym__enum_base_clause, + STATE(2384), 1, + sym_enumerator_list, + ACTIONS(5465), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5510), 24, + ACTIONS(5463), 23, + 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, @@ -564918,20 +437375,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [224410] = 3, + [172887] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6493), 1, + anon_sym_AMP_AMP, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5149), 1, + sym__declarator, + STATE(5245), 1, + sym__scope_resolution, + STATE(6622), 1, + sym_init_declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(7993), 1, + sym__declaration_declarator, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [172960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 2, + ACTIONS(4913), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5559), 24, + ACTIONS(4915), 29, 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, @@ -564945,73 +437456,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [224444] = 18, + [172999] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7212), 1, + ACTIONS(6690), 1, anon_sym_noexcept, - ACTIONS(7214), 1, + ACTIONS(6692), 1, anon_sym_throw, - ACTIONS(7377), 1, + ACTIONS(6797), 1, anon_sym_DASH_GT, - ACTIONS(7379), 1, - anon_sym_requires, - ACTIONS(8746), 1, + ACTIONS(7901), 1, anon_sym_LBRACK, - STATE(6566), 1, - sym_gnu_asm_expression, - STATE(6885), 1, - sym_requires_clause, - STATE(7188), 1, + ACTIONS(7937), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7940), 1, + anon_sym_requires, + STATE(5333), 1, sym_trailing_return_type, - ACTIONS(7208), 2, + STATE(5383), 1, + sym__function_attributes_end, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(7905), 2, anon_sym_final, anon_sym_override, - STATE(6163), 2, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4881), 3, + sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - STATE(6570), 2, + ACTIONS(7893), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [173070] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6802), 1, + anon_sym_DASH_GT, + ACTIONS(8077), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(8085), 1, + anon_sym_requires, + STATE(5313), 1, + sym_trailing_return_type, + STATE(5359), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8082), 2, + anon_sym_final, + anon_sym_override, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6716), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6742), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8744), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4878), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(8072), 6, anon_sym_LPAREN2, - anon_sym_GT2, - [224508] = 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [173141] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5549), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5551), 24, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7248), 1, + sym_identifier, + ACTIONS(7250), 1, anon_sym_LPAREN2, + ACTIONS(7252), 1, anon_sym_STAR, + ACTIONS(7254), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7256), 1, + anon_sym_AMP, + STATE(6039), 1, + sym__field_declarator, + STATE(6092), 1, + sym_operator_name, + STATE(7431), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5865), 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(3263), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565022,27 +437616,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [224542] = 3, + [173202] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5582), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5584), 24, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7250), 1, anon_sym_LPAREN2, + ACTIONS(7338), 1, + sym_identifier, + ACTIONS(7340), 1, anon_sym_STAR, + ACTIONS(7342), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7344), 1, + anon_sym_AMP, + STATE(5631), 1, + sym__field_declarator, + STATE(5844), 1, + sym_operator_name, + STATE(7666), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5865), 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(3263), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565053,27 +437663,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, + [173263] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6804), 1, + anon_sym_DASH_GT, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(8155), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8158), 1, + anon_sym_requires, + STATE(5249), 1, + sym__function_attributes_end, + STATE(5334), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(8082), 2, anon_sym_final, anon_sym_override, + ACTIONS(8150), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4871), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(8072), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, + [173334] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6797), 1, + anon_sym_DASH_GT, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(8155), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8158), 1, anon_sym_requires, - [224576] = 3, + STATE(5334), 1, + sym_trailing_return_type, + STATE(5384), 1, + sym__function_attributes_end, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8082), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4883), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(8072), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [173405] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5543), 24, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7248), 1, + sym_identifier, + ACTIONS(7250), 1, anon_sym_LPAREN2, + ACTIONS(7252), 1, anon_sym_STAR, + ACTIONS(7254), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7256), 1, + anon_sym_AMP, + STATE(6033), 1, + sym__field_declarator, + STATE(6092), 1, + sym_operator_name, + STATE(7431), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5865), 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(3263), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565084,89 +437814,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, + [173466] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6804), 1, + anon_sym_DASH_GT, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7937), 1, + anon_sym_LBRACK_LBRACK, + STATE(5240), 1, + sym_trailing_return_type, + STATE(5312), 1, + sym__function_attributes_end, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, + ACTIONS(7945), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4876), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - anon_sym_requires, - [224610] = 3, + [173537] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5447), 24, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6804), 1, + anon_sym_DASH_GT, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(8155), 1, + anon_sym_LBRACK_LBRACK, + STATE(5230), 1, + sym_trailing_return_type, + STATE(5307), 1, + sym__function_attributes_end, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8150), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4867), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(8072), 6, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + anon_sym_try, + [173608] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6804), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7937), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7940), 1, + anon_sym_requires, + STATE(5287), 1, + sym__function_attributes_end, + STATE(5333), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(7905), 2, anon_sym_final, anon_sym_override, + ACTIONS(7945), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4886), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - anon_sym_requires, - [224644] = 3, + [173679] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5441), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5443), 24, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, anon_sym_STAR, + ACTIONS(6493), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6497), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [224678] = 3, + STATE(5206), 1, + sym__declarator, + STATE(5245), 1, + sym__scope_resolution, + STATE(6622), 1, + sym_init_declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(7808), 1, + sym__declaration_declarator, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [173752] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 2, + ACTIONS(5467), 1, + anon_sym___attribute__, + ACTIONS(5681), 1, + anon_sym_LBRACE, + ACTIONS(8153), 1, + anon_sym_COLON, + STATE(2522), 1, + sym__enum_base_clause, + STATE(2609), 1, + sym_enumerator_list, + STATE(2842), 1, + sym_attribute_specifier, + ACTIONS(5465), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5431), 24, + ACTIONS(5463), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565181,54 +438063,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [224712] = 3, + [173803] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5425), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5427), 24, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, anon_sym_STAR, + ACTIONS(6493), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6497), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [224746] = 3, + STATE(5245), 1, + sym__scope_resolution, + STATE(5435), 1, + sym__declarator, + STATE(6622), 1, + sym_init_declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(7705), 1, + sym__declaration_declarator, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [173876] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5388), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5390), 24, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7248), 1, + sym_identifier, + ACTIONS(7250), 1, anon_sym_LPAREN2, + ACTIONS(7252), 1, anon_sym_STAR, + ACTIONS(7254), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7256), 1, + anon_sym_AMP, + STATE(6032), 1, + sym__field_declarator, + STATE(6092), 1, + sym_operator_name, + STATE(7431), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5865), 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(3263), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565239,26 +438165,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [224780] = 6, + [173937] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, + ACTIONS(4080), 1, anon_sym_COLON_COLON, - ACTIONS(8544), 1, + ACTIONS(7935), 1, anon_sym_LT, - STATE(2334), 1, + STATE(1726), 1, sym_template_argument_list, - ACTIONS(4284), 2, + ACTIONS(4564), 3, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(4276), 21, + anon_sym_LBRACE, + ACTIONS(4559), 25, anon_sym___extension__, + anon_sym___attribute__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -565276,24 +438198,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constinit, anon_sym_consteval, sym_primitive_type, + anon_sym_COLON, sym_identifier, sym_auto, anon_sym_decltype, - [224820] = 3, + anon_sym_final, + anon_sym_override, + [173982] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 2, - anon_sym_AMP, + ACTIONS(3263), 1, anon_sym_const, - ACTIONS(5588), 24, + ACTIONS(4603), 1, anon_sym_LPAREN2, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, anon_sym_STAR, + ACTIONS(8163), 1, anon_sym_AMP_AMP, + ACTIONS(8165), 1, + anon_sym_AMP, + STATE(3570), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6021), 1, + sym__abstract_declarator, + STATE(4608), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6202), 4, anon_sym_SEMI, - anon_sym___extension__, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_try, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7664), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565304,27 +438251,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, + [174043] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6797), 1, + anon_sym_DASH_GT, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(8155), 1, + anon_sym_LBRACK_LBRACK, + STATE(5230), 1, + sym_trailing_return_type, + STATE(5356), 1, + sym__function_attributes_end, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - anon_sym_try, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4913), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(8072), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [174114] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6747), 1, anon_sym_requires, - [224854] = 3, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6790), 1, + anon_sym_DASH_GT, + ACTIONS(8077), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8080), 1, + anon_sym_LBRACK, + STATE(5231), 1, + sym__function_attributes_end, + STATE(5286), 1, + sym_trailing_return_type, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8150), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4891), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(8072), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [174185] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5373), 2, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6493), 1, + anon_sym_AMP_AMP, + ACTIONS(6495), 1, anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5169), 1, + sym__declarator, + STATE(5245), 1, + sym__scope_resolution, + STATE(6622), 1, + sym_init_declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(7900), 1, + sym__declaration_declarator, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [174258] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3263), 1, anon_sym_const, - ACTIONS(5375), 24, + ACTIONS(4603), 1, anon_sym_LPAREN2, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, anon_sym_STAR, + ACTIONS(8163), 1, anon_sym_AMP_AMP, + ACTIONS(8165), 1, + anon_sym_AMP, + STATE(3570), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5996), 1, + sym__abstract_declarator, + STATE(4595), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5420), 4, anon_sym_SEMI, - anon_sym___extension__, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_try, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7664), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565335,104 +438455,360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [224888] = 3, + [174319] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5392), 2, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6493), 1, + anon_sym_AMP_AMP, + ACTIONS(6495), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(5394), 24, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5245), 1, + sym__scope_resolution, + STATE(5435), 1, + sym__declarator, + STATE(6622), 1, + sym_init_declarator, + STATE(7361), 1, + sym__declaration_declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [174392] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, anon_sym_STAR, + ACTIONS(6493), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6497), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, + STATE(5245), 1, + sym__scope_resolution, + STATE(5408), 1, + sym__declarator, + STATE(6622), 1, + sym_init_declarator, + STATE(7361), 1, + sym__declaration_declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [174465] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [224922] = 18, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6493), 1, + anon_sym_AMP_AMP, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5245), 1, + sym__scope_resolution, + STATE(5435), 1, + sym__declarator, + STATE(6622), 1, + sym_init_declarator, + STATE(7360), 1, + sym__declaration_declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [174538] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7212), 1, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6690), 1, anon_sym_noexcept, - ACTIONS(7214), 1, + ACTIONS(6692), 1, anon_sym_throw, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6845), 1, anon_sym_requires, - STATE(6532), 1, - sym_gnu_asm_expression, - STATE(6891), 1, - sym_requires_clause, - STATE(7187), 1, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6913), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, + anon_sym_LBRACK, + STATE(4837), 1, + sym_ref_qualifier, + STATE(5562), 1, sym_trailing_return_type, - ACTIONS(7208), 2, + STATE(5843), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - STATE(6177), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6560), 2, + ACTIONS(7893), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6736), 2, + aux_sym_type_definition_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [224986] = 3, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5027), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [174614] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5369), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5371), 24, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(8113), 1, + sym_identifier, + ACTIONS(8115), 1, + anon_sym_COLON_COLON, + ACTIONS(8119), 1, + sym_primitive_type, + ACTIONS(8121), 1, + anon_sym_enum, + ACTIONS(8123), 1, + anon_sym_class, + ACTIONS(8125), 1, + anon_sym_struct, + ACTIONS(8127), 1, + anon_sym_union, + ACTIONS(8129), 1, + sym_auto, + ACTIONS(8131), 1, + anon_sym_decltype, + ACTIONS(8133), 1, + anon_sym_typename, + STATE(2294), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2481), 1, + sym__type_specifier, + STATE(2804), 1, + sym_decltype_auto, + STATE(2817), 1, + sym_qualified_type_identifier, + STATE(5964), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2731), 2, + sym_decltype, + sym_template_type, + ACTIONS(8117), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2810), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [174688] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + sym_auto, + ACTIONS(119), 1, + anon_sym_decltype, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2707), 1, + sym_primitive_type, + ACTIONS(6937), 1, + sym_identifier, + ACTIONS(6939), 1, + anon_sym_COLON_COLON, + ACTIONS(6941), 1, + anon_sym_enum, + ACTIONS(6943), 1, + anon_sym_class, + ACTIONS(6945), 1, + anon_sym_struct, + ACTIONS(6947), 1, + anon_sym_union, + ACTIONS(6949), 1, + anon_sym_typename, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(3103), 1, + sym_decltype_auto, + STATE(3112), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5978), 1, + sym__scope_resolution, + STATE(6143), 1, + sym__type_specifier, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + ACTIONS(3675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3114), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [174762] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7490), 1, + sym_identifier, + ACTIONS(7492), 1, anon_sym_LPAREN2, + ACTIONS(7494), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7498), 1, + sym_primitive_type, + STATE(5679), 1, + sym__type_declarator, + STATE(5731), 1, + sym_pointer_type_declarator, + STATE(7274), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7496), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5724), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565443,27 +438819,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [225020] = 3, + [174820] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5417), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5419), 24, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, anon_sym_STAR, + ACTIONS(6493), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6497), 1, anon_sym_LBRACK, - anon_sym_EQ, + STATE(5245), 1, + sym__scope_resolution, + STATE(5444), 1, + sym__declarator, + STATE(6949), 1, + sym_init_declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [174890] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(8170), 1, + anon_sym_const, + STATE(4608), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8167), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565474,27 +438892,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, + ACTIONS(4901), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [225054] = 3, + [174934] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5437), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5439), 24, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(8088), 1, + sym_identifier, + ACTIONS(8090), 1, + anon_sym_COLON_COLON, + ACTIONS(8094), 1, + sym_primitive_type, + ACTIONS(8096), 1, + anon_sym_enum, + ACTIONS(8098), 1, + anon_sym_class, + ACTIONS(8100), 1, + anon_sym_struct, + ACTIONS(8102), 1, + anon_sym_union, + ACTIONS(8104), 1, + sym_auto, + ACTIONS(8106), 1, + anon_sym_decltype, + ACTIONS(8108), 1, + anon_sym_typename, + STATE(2096), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2399), 1, + sym__type_specifier, + STATE(2468), 1, + sym_qualified_type_identifier, + STATE(2478), 1, + sym_decltype_auto, + STATE(5965), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2393), 2, + sym_decltype, + sym_template_type, + ACTIONS(8092), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2476), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [175008] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(8058), 1, + sym_identifier, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8062), 1, + anon_sym_enum, + ACTIONS(8064), 1, + anon_sym_class, + ACTIONS(8066), 1, + anon_sym_struct, + ACTIONS(8068), 1, + anon_sym_union, + ACTIONS(8070), 1, + anon_sym_typename, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(3629), 1, + sym__type_specifier, + STATE(5972), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [175082] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, anon_sym_LPAREN2, + ACTIONS(7508), 1, + sym_primitive_type, + ACTIONS(7572), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(2409), 1, + sym__type_declarator, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(7189), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565505,27 +439059,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [175140] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, sym_auto, + ACTIONS(1996), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [225088] = 3, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(8058), 1, + sym_identifier, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8062), 1, + anon_sym_enum, + ACTIONS(8064), 1, + anon_sym_class, + ACTIONS(8066), 1, + anon_sym_struct, + ACTIONS(8068), 1, + anon_sym_union, + ACTIONS(8070), 1, + anon_sym_typename, + STATE(1916), 1, + sym__type_specifier, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(5972), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [175214] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5480), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5482), 24, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7490), 1, + sym_identifier, + ACTIONS(7492), 1, anon_sym_LPAREN2, + ACTIONS(7494), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7498), 1, + sym_primitive_type, + STATE(5667), 1, + sym__type_declarator, + STATE(5731), 1, + sym_pointer_type_declarator, + STATE(7274), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7496), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5724), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565536,27 +439157,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [175272] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2904), 1, + anon_sym_enum, + ACTIONS(2906), 1, + anon_sym_class, + ACTIONS(2908), 1, + anon_sym_struct, + ACTIONS(2910), 1, + anon_sym_union, + ACTIONS(2934), 1, sym_auto, + ACTIONS(2936), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [225122] = 3, + ACTIONS(2938), 1, + anon_sym_typename, + ACTIONS(6992), 1, + sym_identifier, + ACTIONS(6994), 1, + anon_sym_COLON_COLON, + ACTIONS(6996), 1, + sym_primitive_type, + STATE(2297), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2720), 1, + sym__type_specifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(2845), 1, + sym_qualified_type_identifier, + STATE(5956), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2758), 2, + sym_decltype, + sym_template_type, + ACTIONS(2900), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2799), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [175346] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5377), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5379), 24, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(8113), 1, + sym_identifier, + ACTIONS(8115), 1, + anon_sym_COLON_COLON, + ACTIONS(8119), 1, + sym_primitive_type, + ACTIONS(8121), 1, + anon_sym_enum, + ACTIONS(8123), 1, + anon_sym_class, + ACTIONS(8125), 1, + anon_sym_struct, + ACTIONS(8127), 1, + anon_sym_union, + ACTIONS(8129), 1, + sym_auto, + ACTIONS(8131), 1, + anon_sym_decltype, + ACTIONS(8133), 1, + anon_sym_typename, + STATE(2294), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2446), 1, + sym__type_specifier, + STATE(2804), 1, + sym_decltype_auto, + STATE(2817), 1, + sym_qualified_type_identifier, + STATE(5964), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2731), 2, + sym_decltype, + sym_template_type, + ACTIONS(8117), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2810), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [175420] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(8058), 1, + sym_identifier, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8062), 1, + anon_sym_enum, + ACTIONS(8064), 1, + anon_sym_class, + ACTIONS(8066), 1, + anon_sym_struct, + ACTIONS(8068), 1, + anon_sym_union, + ACTIONS(8070), 1, + anon_sym_typename, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(3778), 1, + sym__type_specifier, + STATE(5972), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [175494] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(8058), 1, + sym_identifier, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8062), 1, + anon_sym_enum, + ACTIONS(8064), 1, + anon_sym_class, + ACTIONS(8066), 1, + anon_sym_struct, + ACTIONS(8068), 1, + anon_sym_union, + ACTIONS(8070), 1, + anon_sym_typename, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(3646), 1, + sym__type_specifier, + STATE(5972), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [175568] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + sym_auto, + ACTIONS(119), 1, + anon_sym_decltype, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2707), 1, + sym_primitive_type, + ACTIONS(3667), 1, + sym_identifier, + ACTIONS(3673), 1, + anon_sym_COLON_COLON, + ACTIONS(3677), 1, + anon_sym_enum, + ACTIONS(3679), 1, + anon_sym_class, + ACTIONS(3681), 1, + anon_sym_struct, + ACTIONS(3683), 1, + anon_sym_union, + ACTIONS(3685), 1, + anon_sym_typename, + STATE(2881), 1, + sym__type_specifier, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(3103), 1, + sym_decltype_auto, + STATE(3112), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5983), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + ACTIONS(3675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3114), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [175642] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7490), 1, + sym_identifier, + ACTIONS(7492), 1, anon_sym_LPAREN2, + ACTIONS(7494), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7498), 1, + sym_primitive_type, + STATE(5687), 1, + sym__type_declarator, + STATE(5731), 1, + sym_pointer_type_declarator, + STATE(7274), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7496), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5724), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565567,27 +439467,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, + [175700] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6834), 1, + anon_sym_DASH_GT, + ACTIONS(6845), 1, + anon_sym_requires, + ACTIONS(8080), 1, + anon_sym_LBRACK, + STATE(5499), 1, + sym__function_attributes_end, + STATE(5578), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [225156] = 3, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4955), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(8072), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [175770] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5547), 24, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7520), 1, anon_sym_LPAREN2, + ACTIONS(7522), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7526), 1, + sym_primitive_type, + STATE(2798), 1, + sym__type_declarator, + STATE(3318), 1, + sym_pointer_type_declarator, + STATE(7366), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7524), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3316), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565598,30 +439563,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, + [175828] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6808), 1, + anon_sym_DASH_GT, + ACTIONS(6851), 1, + anon_sym_requires, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7937), 1, + anon_sym_LBRACK_LBRACK, + STATE(5440), 1, + sym__function_attributes_end, + STATE(5634), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4947), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_try, + [175898] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6821), 1, + anon_sym_DASH_GT, + ACTIONS(6853), 1, anon_sym_requires, - [225190] = 3, + ACTIONS(7901), 1, + anon_sym_LBRACK, + STATE(5508), 1, + sym__function_attributes_end, + STATE(5678), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4961), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [175968] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 2, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7476), 1, + sym_identifier, + ACTIONS(7478), 1, anon_sym_LPAREN2, + ACTIONS(7480), 1, anon_sym_STAR, - ACTIONS(8748), 24, - anon_sym___extension__, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, + ACTIONS(7488), 1, + sym_primitive_type, + STATE(2767), 1, + sym__type_declarator, + STATE(3128), 1, + sym_pointer_type_declarator, + STATE(7424), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7486), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(3126), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -565633,69 +439710,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - [225224] = 18, + [176026] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7212), 1, + ACTIONS(6690), 1, anon_sym_noexcept, - ACTIONS(7214), 1, + ACTIONS(6692), 1, anon_sym_throw, - ACTIONS(7377), 1, + ACTIONS(6821), 1, anon_sym_DASH_GT, - ACTIONS(7379), 1, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7978), 1, anon_sym_requires, - STATE(6523), 1, - sym_gnu_asm_expression, - STATE(6894), 1, - sym_requires_clause, - STATE(7184), 1, + STATE(5502), 1, + sym__function_attributes_end, + STATE(5670), 1, sym_trailing_return_type, - ACTIONS(7208), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(7972), 2, anon_sym_final, anon_sym_override, - STATE(6176), 2, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4936), 3, + sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - STATE(6472), 2, + ACTIONS(7893), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [176096] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6834), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7975), 1, + anon_sym_requires, + STATE(5518), 1, + sym__function_attributes_end, + STATE(5652), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7972), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6738), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 4, - anon_sym_DOT_DOT_DOT, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4927), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - [225288] = 3, + anon_sym_SEMI, + anon_sym_LBRACE, + [176166] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5321), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5323), 24, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7520), 1, anon_sym_LPAREN2, + ACTIONS(7522), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7526), 1, + sym_primitive_type, + STATE(2829), 1, + sym__type_declarator, + STATE(3318), 1, + sym_pointer_type_declarator, + STATE(7366), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7524), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3316), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565706,93 +439857,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [225322] = 3, + [176224] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5321), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5323), 24, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6808), 1, + anon_sym_DASH_GT, + ACTIONS(8080), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + ACTIONS(8155), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8173), 1, + anon_sym_requires, + STATE(5454), 1, + sym__function_attributes_end, + STATE(5640), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8082), 2, anon_sym_final, anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4956), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(8072), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_try, - anon_sym_requires, - [225356] = 7, + [176294] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8797), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(8010), 1, sym_identifier, - ACTIONS(8803), 1, + ACTIONS(8012), 1, + anon_sym_COLON_COLON, + ACTIONS(8016), 1, sym_primitive_type, - STATE(3267), 1, + ACTIONS(8018), 1, + anon_sym_enum, + ACTIONS(8020), 1, + anon_sym_class, + ACTIONS(8022), 1, + anon_sym_struct, + ACTIONS(8024), 1, + anon_sym_union, + ACTIONS(8026), 1, + sym_auto, + ACTIONS(8028), 1, + anon_sym_decltype, + ACTIONS(8030), 1, + anon_sym_typename, + STATE(2336), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5351), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(8800), 4, + STATE(2520), 1, + sym__type_specifier, + STATE(2924), 1, + sym_decltype_auto, + STATE(2971), 1, + sym_qualified_type_identifier, + STATE(5980), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2834), 2, + sym_decltype, + sym_template_type, + ACTIONS(8014), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5353), 16, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + 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, + [176368] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(6921), 1, + sym_primitive_type, + ACTIONS(6931), 1, sym_auto, + ACTIONS(6933), 1, anon_sym_decltype, - [225398] = 3, + ACTIONS(6937), 1, + sym_identifier, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(6953), 1, + anon_sym_enum, + ACTIONS(6955), 1, + anon_sym_class, + ACTIONS(6957), 1, + anon_sym_struct, + ACTIONS(6959), 1, + anon_sym_union, + ACTIONS(6961), 1, + anon_sym_typename, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(3990), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4450), 1, + sym__type_specifier, + STATE(4471), 1, + sym_decltype_auto, + STATE(5987), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + ACTIONS(6919), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4475), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [176442] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5341), 2, - anon_sym_AMP, + ACTIONS(3263), 1, anon_sym_const, - ACTIONS(5343), 24, + ACTIONS(4603), 1, anon_sym_LPAREN2, + ACTIONS(4605), 1, anon_sym_STAR, + ACTIONS(4607), 1, anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_LBRACK, + STATE(3550), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6069), 1, + sym__abstract_declarator, + STATE(4608), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7534), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7664), 11, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565803,27 +440060,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [176502] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(3667), 1, + sym_identifier, + ACTIONS(6917), 1, + anon_sym_COLON_COLON, + ACTIONS(6921), 1, + sym_primitive_type, + ACTIONS(6923), 1, + anon_sym_enum, + ACTIONS(6925), 1, + anon_sym_class, + ACTIONS(6927), 1, + anon_sym_struct, + ACTIONS(6929), 1, + anon_sym_union, + ACTIONS(6931), 1, sym_auto, + ACTIONS(6933), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [225432] = 3, + ACTIONS(6935), 1, + anon_sym_typename, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(3990), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4450), 1, + sym__type_specifier, + STATE(4471), 1, + sym_decltype_auto, + STATE(5982), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + ACTIONS(6919), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4475), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [176576] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5612), 2, - anon_sym_AMP, + ACTIONS(3263), 1, anon_sym_const, - ACTIONS(5614), 24, + ACTIONS(4603), 1, anon_sym_LPAREN2, + ACTIONS(4605), 1, anon_sym_STAR, + ACTIONS(4607), 1, anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_LBRACK, + STATE(3550), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6056), 1, + sym__abstract_declarator, + STATE(4665), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5420), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7664), 11, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565834,27 +440159,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [225466] = 3, + [176636] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5620), 2, - anon_sym_AMP, + ACTIONS(3263), 1, anon_sym_const, - ACTIONS(5622), 24, + ACTIONS(4603), 1, anon_sym_LPAREN2, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7966), 1, anon_sym_STAR, + ACTIONS(7968), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7970), 1, + anon_sym_AMP, + STATE(3605), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6083), 1, + sym__abstract_declarator, + STATE(4608), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7514), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7664), 11, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565865,27 +440205,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [225500] = 3, + [176696] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5386), 24, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7490), 1, + sym_identifier, + ACTIONS(7492), 1, anon_sym_LPAREN2, + ACTIONS(7498), 1, + sym_primitive_type, + ACTIONS(7548), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(5523), 1, + sym__type_declarator, + STATE(5731), 1, + sym_pointer_type_declarator, + STATE(7194), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7496), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5724), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565896,27 +440250,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [225534] = 3, + [176754] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5488), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5490), 24, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, anon_sym_LPAREN2, + ACTIONS(7504), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5805), 1, + sym__type_declarator, + STATE(7570), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565927,89 +440295,464 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [176812] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2934), 1, sym_auto, + ACTIONS(2936), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [225568] = 3, + ACTIONS(6996), 1, + sym_primitive_type, + ACTIONS(7996), 1, + sym_identifier, + ACTIONS(7998), 1, + anon_sym_COLON_COLON, + ACTIONS(8000), 1, + anon_sym_enum, + ACTIONS(8002), 1, + anon_sym_class, + ACTIONS(8004), 1, + anon_sym_struct, + ACTIONS(8006), 1, + anon_sym_union, + ACTIONS(8008), 1, + anon_sym_typename, + STATE(2297), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2720), 1, + sym__type_specifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(2845), 1, + sym_qualified_type_identifier, + STATE(5951), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2758), 2, + sym_decltype, + sym_template_type, + ACTIONS(2900), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2799), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [176886] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 2, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(5514), 24, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6985), 1, + anon_sym_DASH_GT, + ACTIONS(7898), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(8176), 1, + anon_sym_requires, + STATE(4861), 1, + sym_ref_qualifier, + STATE(5660), 1, + sym__function_attributes_end, + STATE(5887), 1, + sym_trailing_return_type, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7893), 2, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_COLON, + ACTIONS(7905), 2, + anon_sym_final, + anon_sym_override, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5023), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [176962] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6667), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6913), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + ACTIONS(7975), 1, + anon_sym_requires, + STATE(4847), 1, + sym_ref_qualifier, + STATE(5652), 1, + sym_trailing_return_type, + STATE(5797), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7893), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(7972), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [225602] = 3, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5346), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4992), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [177038] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5337), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5339), 24, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6821), 1, + anon_sym_DASH_GT, + ACTIONS(6853), 1, + anon_sym_requires, + ACTIONS(8080), 1, + anon_sym_LBRACK, + STATE(5511), 1, + sym__function_attributes_end, + STATE(5676), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4938), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(8072), 5, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_try, + [177108] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, sym_auto, + ACTIONS(119), 1, anon_sym_decltype, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1918), 1, + anon_sym_enum, + ACTIONS(1920), 1, + anon_sym_class, + ACTIONS(1922), 1, + anon_sym_struct, + ACTIONS(1924), 1, + anon_sym_union, + ACTIONS(1948), 1, + anon_sym_typename, + ACTIONS(2707), 1, + sym_primitive_type, + ACTIONS(4601), 1, + sym_identifier, + ACTIONS(4611), 1, + anon_sym_COLON_COLON, + STATE(2881), 1, + sym__type_specifier, + STATE(3054), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3103), 1, + sym_decltype_auto, + STATE(3729), 1, + sym_qualified_type_identifier, + STATE(5953), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + ACTIONS(53), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3114), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [177182] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6821), 1, + anon_sym_DASH_GT, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(8182), 1, + anon_sym_requires, + STATE(5513), 1, + sym__function_attributes_end, + STATE(5684), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8179), 2, anon_sym_final, anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4928), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(8072), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - anon_sym_requires, - [225636] = 3, + [177252] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 2, - anon_sym_AMP, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1986), 1, + anon_sym_enum, + ACTIONS(1988), 1, + anon_sym_class, + ACTIONS(1990), 1, + anon_sym_struct, + ACTIONS(1992), 1, + anon_sym_union, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(1998), 1, + anon_sym_typename, + ACTIONS(6873), 1, + sym_identifier, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_primitive_type, + STATE(1916), 1, + sym__type_specifier, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [177326] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(6963), 1, + sym_identifier, + ACTIONS(6965), 1, + anon_sym_COLON_COLON, + ACTIONS(6969), 1, + sym_primitive_type, + ACTIONS(6971), 1, + anon_sym_enum, + ACTIONS(6973), 1, + anon_sym_class, + ACTIONS(6975), 1, + anon_sym_struct, + ACTIONS(6977), 1, + anon_sym_union, + ACTIONS(6979), 1, + sym_auto, + ACTIONS(6981), 1, + anon_sym_decltype, + ACTIONS(6983), 1, + anon_sym_typename, + STATE(4405), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4854), 1, + sym__type_specifier, + STATE(4866), 1, + sym_qualified_type_identifier, + STATE(4874), 1, + sym_decltype_auto, + STATE(5975), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(4835), 2, + sym_decltype, + sym_template_type, + ACTIONS(6967), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4872), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [177400] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3263), 1, anon_sym_const, - ACTIONS(5506), 24, + ACTIONS(4603), 1, anon_sym_LPAREN2, + ACTIONS(4605), 1, anon_sym_STAR, + ACTIONS(4607), 1, anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_LBRACK, + STATE(3550), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6059), 1, + sym__abstract_declarator, + STATE(4608), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7514), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7664), 11, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -566020,27 +440763,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [225670] = 3, + [177460] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5516), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5518), 24, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, anon_sym_LPAREN2, + ACTIONS(7504), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5818), 1, + sym__type_declarator, + STATE(7570), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -566051,27 +440808,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [177518] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, sym_auto, + ACTIONS(1996), 1, anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_enum, + ACTIONS(6903), 1, + anon_sym_class, + ACTIONS(6905), 1, + anon_sym_struct, + ACTIONS(6907), 1, + anon_sym_union, + ACTIONS(6909), 1, + anon_sym_typename, + STATE(1916), 1, + sym__type_specifier, + STATE(1963), 1, + sym_decltype_auto, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + ACTIONS(6899), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [177592] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6808), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7937), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7983), 1, + anon_sym_requires, + STATE(5453), 1, + sym__function_attributes_end, + STATE(5646), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7905), 2, anon_sym_final, anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4958), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_try, - anon_sym_requires, - [225704] = 3, + [177662] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_enum, + ACTIONS(67), 1, + anon_sym_class, + ACTIONS(69), 1, + anon_sym_struct, + ACTIONS(71), 1, + anon_sym_union, + ACTIONS(117), 1, + sym_auto, + ACTIONS(119), 1, + anon_sym_decltype, + ACTIONS(127), 1, + anon_sym_typename, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2707), 1, + sym_primitive_type, + ACTIONS(4633), 1, + sym_identifier, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + STATE(2881), 1, + sym__type_specifier, + STATE(3054), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3103), 1, + sym_decltype_auto, + STATE(3729), 1, + sym_qualified_type_identifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + ACTIONS(53), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3114), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [177736] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5531), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5533), 24, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, anon_sym_LPAREN2, + ACTIONS(7508), 1, + sym_primitive_type, + ACTIONS(7572), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(2420), 1, + sym__type_declarator, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(7189), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -566082,27 +441010,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [177794] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(8010), 1, + sym_identifier, + ACTIONS(8012), 1, + anon_sym_COLON_COLON, + ACTIONS(8016), 1, + sym_primitive_type, + ACTIONS(8018), 1, + anon_sym_enum, + ACTIONS(8020), 1, + anon_sym_class, + ACTIONS(8022), 1, + anon_sym_struct, + ACTIONS(8024), 1, + anon_sym_union, + ACTIONS(8026), 1, sym_auto, + ACTIONS(8028), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [225738] = 3, + ACTIONS(8030), 1, + anon_sym_typename, + STATE(2336), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2793), 1, + sym__type_specifier, + STATE(2924), 1, + sym_decltype_auto, + STATE(2971), 1, + sym_qualified_type_identifier, + STATE(5980), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2834), 2, + sym_decltype, + sym_template_type, + ACTIONS(8014), 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, + [177868] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5537), 24, + ACTIONS(117), 1, + sym_auto, + ACTIONS(119), 1, + anon_sym_decltype, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2707), 1, + sym_primitive_type, + ACTIONS(2709), 1, + anon_sym_enum, + ACTIONS(2711), 1, + anon_sym_class, + ACTIONS(2713), 1, + anon_sym_struct, + ACTIONS(2715), 1, + anon_sym_union, + ACTIONS(2717), 1, + anon_sym_typename, + ACTIONS(4633), 1, + sym_identifier, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + STATE(2881), 1, + sym__type_specifier, + STATE(3054), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3103), 1, + sym_decltype_auto, + STATE(3729), 1, + sym_qualified_type_identifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + ACTIONS(53), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3114), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [177942] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7476), 1, + sym_identifier, + ACTIONS(7478), 1, anon_sym_LPAREN2, + ACTIONS(7480), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7488), 1, + sym_primitive_type, + STATE(2677), 1, + sym__type_declarator, + STATE(3128), 1, + sym_pointer_type_declarator, + STATE(7424), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7486), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3126), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -566113,58 +441161,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [225772] = 3, + [178000] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5616), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5618), 24, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6834), 1, + anon_sym_DASH_GT, + ACTIONS(6845), 1, + anon_sym_requires, + ACTIONS(7901), 1, + anon_sym_LBRACK, + STATE(5544), 1, + sym__function_attributes_end, + STATE(5562), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4943), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + [178070] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(8113), 1, + sym_identifier, + ACTIONS(8115), 1, + anon_sym_COLON_COLON, + ACTIONS(8119), 1, + sym_primitive_type, + ACTIONS(8121), 1, + anon_sym_enum, + ACTIONS(8123), 1, + anon_sym_class, + ACTIONS(8125), 1, + anon_sym_struct, + ACTIONS(8127), 1, + anon_sym_union, + ACTIONS(8129), 1, sym_auto, + ACTIONS(8131), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [225806] = 3, + ACTIONS(8133), 1, + anon_sym_typename, + STATE(2294), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2705), 1, + sym__type_specifier, + STATE(2804), 1, + sym_decltype_auto, + STATE(2817), 1, + sym_qualified_type_identifier, + STATE(5964), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2731), 2, + sym_decltype, + sym_template_type, + ACTIONS(8117), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2810), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [178144] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5453), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5455), 24, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7490), 1, + sym_identifier, + ACTIONS(7492), 1, anon_sym_LPAREN2, + ACTIONS(7498), 1, + sym_primitive_type, + ACTIONS(7548), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(5498), 1, + sym__type_declarator, + STATE(5731), 1, + sym_pointer_type_declarator, + STATE(7194), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7496), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5724), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -566175,30 +441310,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [178202] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(8010), 1, + sym_identifier, + ACTIONS(8012), 1, + anon_sym_COLON_COLON, + ACTIONS(8016), 1, + sym_primitive_type, + ACTIONS(8018), 1, + anon_sym_enum, + ACTIONS(8020), 1, + anon_sym_class, + ACTIONS(8022), 1, + anon_sym_struct, + ACTIONS(8024), 1, + anon_sym_union, + ACTIONS(8026), 1, sym_auto, + ACTIONS(8028), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [225840] = 3, + ACTIONS(8030), 1, + anon_sym_typename, + STATE(2336), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2524), 1, + sym__type_specifier, + STATE(2924), 1, + sym_decltype_auto, + STATE(2971), 1, + sym_qualified_type_identifier, + STATE(5980), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2834), 2, + sym_decltype, + sym_template_type, + ACTIONS(8014), 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, + [178276] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8754), 2, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7520), 1, anon_sym_LPAREN2, + ACTIONS(7522), 1, anon_sym_STAR, - ACTIONS(8752), 24, - anon_sym___extension__, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, + ACTIONS(7526), 1, + sym_primitive_type, + STATE(2858), 1, + sym__type_declarator, + STATE(3318), 1, + sym_pointer_type_declarator, + STATE(7366), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7524), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(3316), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -566210,23 +441408,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - [225874] = 3, + [178334] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5498), 24, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7490), 1, + sym_identifier, + ACTIONS(7492), 1, anon_sym_LPAREN2, + ACTIONS(7498), 1, + sym_primitive_type, + ACTIONS(7548), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(5491), 1, + sym__type_declarator, + STATE(5731), 1, + sym_pointer_type_declarator, + STATE(7194), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7496), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5724), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -566237,27 +441453,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [178392] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, sym_auto, + ACTIONS(119), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [225908] = 3, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2707), 1, + sym_primitive_type, + ACTIONS(6937), 1, + sym_identifier, + ACTIONS(6939), 1, + anon_sym_COLON_COLON, + ACTIONS(6941), 1, + anon_sym_enum, + ACTIONS(6943), 1, + anon_sym_class, + ACTIONS(6945), 1, + anon_sym_struct, + ACTIONS(6947), 1, + anon_sym_union, + ACTIONS(6949), 1, + anon_sym_typename, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(3103), 1, + sym_decltype_auto, + STATE(3112), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5978), 1, + sym__scope_resolution, + STATE(6142), 1, + sym__type_specifier, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + ACTIONS(3675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3114), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [178466] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5476), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5478), 24, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(8088), 1, + sym_identifier, + ACTIONS(8090), 1, + anon_sym_COLON_COLON, + ACTIONS(8094), 1, + sym_primitive_type, + ACTIONS(8096), 1, + anon_sym_enum, + ACTIONS(8098), 1, + anon_sym_class, + ACTIONS(8100), 1, + anon_sym_struct, + ACTIONS(8102), 1, + anon_sym_union, + ACTIONS(8104), 1, + sym_auto, + ACTIONS(8106), 1, + anon_sym_decltype, + ACTIONS(8108), 1, + anon_sym_typename, + STATE(2096), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2324), 1, + sym__type_specifier, + STATE(2468), 1, + sym_qualified_type_identifier, + STATE(2478), 1, + sym_decltype_auto, + STATE(5965), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2393), 2, + sym_decltype, + sym_template_type, + ACTIONS(8092), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2476), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [178540] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7476), 1, + sym_identifier, + ACTIONS(7478), 1, anon_sym_LPAREN2, + ACTIONS(7480), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7488), 1, + sym_primitive_type, + STATE(2711), 1, + sym__type_declarator, + STATE(3128), 1, + sym_pointer_type_declarator, + STATE(7424), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7486), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3126), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -566268,27 +441604,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [178598] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(8032), 1, + sym_identifier, + ACTIONS(8034), 1, + anon_sym_COLON_COLON, + ACTIONS(8038), 1, + sym_primitive_type, + ACTIONS(8040), 1, + anon_sym_enum, + ACTIONS(8042), 1, + anon_sym_class, + ACTIONS(8044), 1, + anon_sym_struct, + ACTIONS(8046), 1, + anon_sym_union, + ACTIONS(8048), 1, sym_auto, + ACTIONS(8050), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [225942] = 3, + ACTIONS(8052), 1, + anon_sym_typename, + STATE(2421), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2723), 1, + sym__type_specifier, + STATE(3331), 1, + sym_qualified_type_identifier, + STATE(3349), 1, + sym_decltype_auto, + STATE(5960), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(3043), 2, + sym_decltype, + sym_template_type, + ACTIONS(8036), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3351), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [178672] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5494), 24, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, anon_sym_LPAREN2, + ACTIONS(7504), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5837), 1, + sym__type_declarator, + STATE(7570), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -566299,27 +441702,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [225976] = 3, + [178730] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 2, - anon_sym_AMP, + ACTIONS(3263), 1, anon_sym_const, - ACTIONS(5474), 24, + ACTIONS(4603), 1, anon_sym_LPAREN2, + ACTIONS(4605), 1, anon_sym_STAR, + ACTIONS(4607), 1, anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_LBRACK, + STATE(3550), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6089), 1, + sym__abstract_declarator, + STATE(4608), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6202), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7664), 11, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -566330,27 +441748,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, + [178790] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6808), 1, + anon_sym_DASH_GT, + ACTIONS(6851), 1, + anon_sym_requires, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(8155), 1, + anon_sym_LBRACK_LBRACK, + STATE(5445), 1, + sym__function_attributes_end, + STATE(5641), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4946), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(8072), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_try, - anon_sym_requires, - [226010] = 3, + [178860] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5502), 24, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, anon_sym_LPAREN2, + ACTIONS(7508), 1, + sym_primitive_type, + ACTIONS(7536), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(6060), 1, + sym__type_declarator, + STATE(7720), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -566361,27 +441844,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [226044] = 3, + [178918] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5484), 2, - anon_sym_AMP, + ACTIONS(3263), 1, anon_sym_const, - ACTIONS(5486), 24, + ACTIONS(4603), 1, anon_sym_LPAREN2, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7966), 1, anon_sym_STAR, + ACTIONS(7968), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7970), 1, + anon_sym_AMP, + STATE(3605), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6052), 1, + sym__abstract_declarator, + STATE(4608), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7534), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7664), 11, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -566392,115 +441890,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [226078] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8625), 1, - anon_sym_COLON_COLON, - ACTIONS(8782), 1, - sym_identifier, - ACTIONS(8806), 1, - anon_sym_LPAREN2, - ACTIONS(8808), 1, - anon_sym_LBRACE, - ACTIONS(8812), 1, - anon_sym_requires, - STATE(3332), 1, - sym_template_type, - STATE(4390), 1, - sym_requirement_seq, - STATE(6647), 1, - sym_lambda_capture_specifier, - STATE(7276), 1, - sym__scope_resolution, - STATE(8589), 1, - sym_requires_parameter_list, - ACTIONS(8810), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4388), 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, - [226139] = 15, + [178978] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7210), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6834), 1, anon_sym_DASH_GT, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(8746), 1, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6191), 1, - sym_gnu_asm_expression, - STATE(6582), 1, + ACTIONS(8185), 1, + anon_sym_requires, + STATE(5503), 1, + sym__function_attributes_end, + STATE(5577), 1, sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - STATE(6192), 2, + ACTIONS(8179), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6335), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6556), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 7, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4932), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(8072), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [226196] = 5, + [179048] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - STATE(2569), 1, - sym_attribute_specifier, - ACTIONS(5947), 2, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, anon_sym_LPAREN2, + ACTIONS(7508), 1, + sym_primitive_type, + ACTIONS(7536), 1, anon_sym_STAR, - ACTIONS(5949), 21, - anon_sym___extension__, - anon_sym___based, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(6082), 1, + sym__type_declarator, + STATE(7720), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -566512,27 +441986,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, + [179106] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(8088), 1, sym_identifier, + ACTIONS(8090), 1, + anon_sym_COLON_COLON, + ACTIONS(8094), 1, + sym_primitive_type, + ACTIONS(8096), 1, + anon_sym_enum, + ACTIONS(8098), 1, + anon_sym_class, + ACTIONS(8100), 1, + anon_sym_struct, + ACTIONS(8102), 1, + anon_sym_union, + ACTIONS(8104), 1, + sym_auto, + ACTIONS(8106), 1, + anon_sym_decltype, + ACTIONS(8108), 1, + anon_sym_typename, + STATE(2096), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2311), 1, + sym__type_specifier, + STATE(2468), 1, + sym_qualified_type_identifier, + STATE(2478), 1, + sym_decltype_auto, + STATE(5965), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2393), 2, + sym_decltype, + sym_template_type, + ACTIONS(8092), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2476), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [179180] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, sym_auto, + ACTIONS(119), 1, anon_sym_decltype, - [226233] = 5, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2707), 1, + sym_primitive_type, + ACTIONS(6937), 1, + sym_identifier, + ACTIONS(6939), 1, + anon_sym_COLON_COLON, + ACTIONS(6941), 1, + anon_sym_enum, + ACTIONS(6943), 1, + anon_sym_class, + ACTIONS(6945), 1, + anon_sym_struct, + ACTIONS(6947), 1, + anon_sym_union, + ACTIONS(6949), 1, + anon_sym_typename, + STATE(2881), 1, + sym__type_specifier, + STATE(2910), 1, + sym_qualified_type_identifier, + STATE(3103), 1, + sym_decltype_auto, + STATE(3112), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5978), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2911), 2, + sym_decltype, + sym_template_type, + ACTIONS(3675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3114), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [179254] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - STATE(2578), 1, - sym_attribute_specifier, - ACTIONS(5908), 2, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, anon_sym_LPAREN2, + ACTIONS(7508), 1, + sym_primitive_type, + ACTIONS(7536), 1, anon_sym_STAR, - ACTIONS(5910), 21, - anon_sym___extension__, - anon_sym___based, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(6061), 1, + sym__type_declarator, + STATE(7720), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -566544,28 +442137,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [226270] = 5, + [179312] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - STATE(2592), 1, - sym_attribute_specifier, - ACTIONS(5943), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5945), 21, - anon_sym___extension__, - anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(1994), 1, + sym_auto, + ACTIONS(1996), 1, + anon_sym_decltype, + ACTIONS(6879), 1, + sym_primitive_type, + ACTIONS(8058), 1, + sym_identifier, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8062), 1, + anon_sym_enum, + ACTIONS(8064), 1, + anon_sym_class, + ACTIONS(8066), 1, + anon_sym_struct, + ACTIONS(8068), 1, + anon_sym_union, + ACTIONS(8070), 1, + anon_sym_typename, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1963), 1, + sym_decltype_auto, + STATE(2396), 1, + sym_qualified_type_identifier, + STATE(3779), 1, + sym__type_specifier, + STATE(5972), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(1886), 2, + sym_decltype, + sym_template_type, + ACTIONS(1980), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(1958), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [179386] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3263), 1, anon_sym_const, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7966), 1, + anon_sym_STAR, + ACTIONS(7968), 1, + anon_sym_AMP_AMP, + ACTIONS(7970), 1, + anon_sym_AMP, + STATE(3605), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6075), 1, + sym__abstract_declarator, + STATE(4676), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5420), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7664), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -566576,28 +442236,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [226307] = 5, + [179446] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - STATE(2587), 1, - sym_attribute_specifier, - ACTIONS(5840), 2, + ACTIONS(3263), 1, + anon_sym_const, + ACTIONS(4603), 1, anon_sym_LPAREN2, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7966), 1, anon_sym_STAR, - ACTIONS(5842), 21, + ACTIONS(7968), 1, + anon_sym_AMP_AMP, + ACTIONS(7970), 1, + anon_sym_AMP, + STATE(3605), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6085), 1, + sym__abstract_declarator, + STATE(4608), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6202), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7664), 11, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -566608,71 +442282,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [226344] = 17, + [179506] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2030), 1, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6985), 1, + anon_sym_DASH_GT, + ACTIONS(6987), 1, + anon_sym_requires, + ACTIONS(7898), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7901), 1, anon_sym_LBRACK, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8774), 1, - sym_identifier, - ACTIONS(8814), 1, + STATE(4858), 1, + sym_ref_qualifier, + STATE(5740), 1, + sym__function_attributes_end, + STATE(5908), 1, + sym_trailing_return_type, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7893), 2, anon_sym_LPAREN2, - ACTIONS(8816), 1, - anon_sym_LBRACE, - ACTIONS(8820), 1, - anon_sym_requires, - STATE(2479), 1, - sym_template_type, - STATE(4639), 1, - sym_requirement_seq, - STATE(6621), 1, - sym_lambda_capture_specifier, - STATE(7275), 1, - sym__scope_resolution, - STATE(8508), 1, - sym_requires_parameter_list, - ACTIONS(8818), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4868), 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, - [226405] = 5, + anon_sym_COLON, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5000), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [179582] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - STATE(2597), 1, - sym_attribute_specifier, - ACTIONS(5878), 2, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, anon_sym_LPAREN2, + ACTIONS(7508), 1, + sym_primitive_type, + ACTIONS(7572), 1, anon_sym_STAR, - ACTIONS(5880), 21, - anon_sym___extension__, - anon_sym___based, + STATE(2404), 1, + sym__type_declarator, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(7189), 1, + sym_ms_based_modifier, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -566684,30 +442381,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [179640] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(8032), 1, + sym_identifier, + ACTIONS(8034), 1, + anon_sym_COLON_COLON, + ACTIONS(8038), 1, + sym_primitive_type, + ACTIONS(8040), 1, + anon_sym_enum, + ACTIONS(8042), 1, + anon_sym_class, + ACTIONS(8044), 1, + anon_sym_struct, + ACTIONS(8046), 1, + anon_sym_union, + ACTIONS(8048), 1, + sym_auto, + ACTIONS(8050), 1, + anon_sym_decltype, + ACTIONS(8052), 1, + anon_sym_typename, + STATE(2421), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2769), 1, + sym__type_specifier, + STATE(3331), 1, + sym_qualified_type_identifier, + STATE(3349), 1, + sym_decltype_auto, + STATE(5960), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(3043), 2, + sym_decltype, + sym_template_type, + ACTIONS(8036), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3351), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [179714] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2934), 1, + sym_auto, + ACTIONS(2936), 1, + anon_sym_decltype, + ACTIONS(6996), 1, sym_primitive_type, + ACTIONS(7996), 1, + sym_identifier, + ACTIONS(7998), 1, + anon_sym_COLON_COLON, + ACTIONS(8000), 1, + anon_sym_enum, + ACTIONS(8002), 1, + anon_sym_class, + ACTIONS(8004), 1, + anon_sym_struct, + ACTIONS(8006), 1, + anon_sym_union, + ACTIONS(8008), 1, + anon_sym_typename, + STATE(2297), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2819), 1, + sym_decltype_auto, + STATE(2845), 1, + sym_qualified_type_identifier, + STATE(3792), 1, + sym__type_specifier, + STATE(5951), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(2758), 2, + sym_decltype, + sym_template_type, + ACTIONS(2900), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2799), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [179788] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(8032), 1, sym_identifier, + ACTIONS(8034), 1, + anon_sym_COLON_COLON, + ACTIONS(8038), 1, + sym_primitive_type, + ACTIONS(8040), 1, + anon_sym_enum, + ACTIONS(8042), 1, + anon_sym_class, + ACTIONS(8044), 1, + anon_sym_struct, + ACTIONS(8046), 1, + anon_sym_union, + ACTIONS(8048), 1, sym_auto, + ACTIONS(8050), 1, anon_sym_decltype, - [226442] = 7, + ACTIONS(8052), 1, + anon_sym_typename, + STATE(2421), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3036), 1, + sym__type_specifier, + STATE(3331), 1, + sym_qualified_type_identifier, + STATE(3349), 1, + sym_decltype_auto, + STATE(5960), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_dependent_type_identifier, + STATE(3043), 2, + sym_decltype, + sym_template_type, + ACTIONS(8036), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3351), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [179862] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(8822), 1, - anon_sym_LPAREN2, - STATE(4245), 1, - sym_argument_list, - STATE(5417), 1, - sym_initializer_list, - ACTIONS(5321), 2, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(7935), 1, + anon_sym_LT, + STATE(2379), 1, + sym_template_argument_list, + ACTIONS(4059), 3, anon_sym_AMP, anon_sym_const, - ACTIONS(5323), 19, - anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + ACTIONS(4067), 24, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -566721,114 +442575,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [226483] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8585), 1, - anon_sym_COLON_COLON, - ACTIONS(8778), 1, - sym_identifier, - ACTIONS(8825), 1, - anon_sym_LPAREN2, - ACTIONS(8827), 1, - anon_sym_LBRACE, - ACTIONS(8831), 1, + anon_sym_final, + anon_sym_override, anon_sym_requires, - STATE(3080), 1, - sym_template_type, - STATE(3492), 1, - sym_requirement_seq, - STATE(6635), 1, - sym_lambda_capture_specifier, - STATE(7278), 1, - sym__scope_resolution, - STATE(8662), 1, - sym_requires_parameter_list, - ACTIONS(8829), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3491), 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, - [226544] = 17, + [179906] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2934), 1, + sym_auto, + ACTIONS(2936), 1, anon_sym_decltype, - ACTIONS(8701), 1, - anon_sym_COLON_COLON, - ACTIONS(8790), 1, + ACTIONS(6996), 1, + sym_primitive_type, + ACTIONS(7996), 1, sym_identifier, - ACTIONS(8833), 1, - anon_sym_LPAREN2, - ACTIONS(8835), 1, - anon_sym_LBRACE, - ACTIONS(8839), 1, - anon_sym_requires, - STATE(3296), 1, - sym_template_type, - STATE(4973), 1, - sym_requirement_seq, - STATE(6641), 1, - sym_lambda_capture_specifier, - STATE(7302), 1, + ACTIONS(7998), 1, + anon_sym_COLON_COLON, + ACTIONS(8000), 1, + anon_sym_enum, + ACTIONS(8002), 1, + anon_sym_class, + ACTIONS(8004), 1, + anon_sym_struct, + ACTIONS(8006), 1, + anon_sym_union, + ACTIONS(8008), 1, + anon_sym_typename, + STATE(2297), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2819), 1, + sym_decltype_auto, + STATE(2845), 1, + sym_qualified_type_identifier, + STATE(3785), 1, + sym__type_specifier, + STATE(5951), 1, sym__scope_resolution, - STATE(8823), 1, - sym_requires_parameter_list, - ACTIONS(8837), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, + STATE(7683), 1, sym_dependent_type_identifier, - STATE(5411), 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, - [226605] = 5, + STATE(2758), 2, + sym_decltype, + sym_template_type, + ACTIONS(2900), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2799), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [179980] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 1, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(7911), 1, anon_sym_LBRACE, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5321), 2, + ACTIONS(8188), 1, + anon_sym_COLON, + STATE(4414), 1, + sym__enum_base_clause, + STATE(4462), 1, + sym_enumerator_list, + STATE(4480), 1, + sym_attribute_specifier, + ACTIONS(5451), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5323), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5449), 20, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -566841,510 +442668,837 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [226642] = 15, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [180029] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7210), 1, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6917), 1, + anon_sym_COLON_COLON, + ACTIONS(8190), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3012), 1, + sym__class_declaration, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3627), 1, + sym_field_declaration_list, + STATE(5065), 1, + sym_ms_declspec_modifier, + STATE(5982), 1, + sym__scope_resolution, + STATE(6333), 1, + sym_virtual_specifier, + STATE(7065), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5064), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4811), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [180108] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6861), 1, anon_sym_DASH_GT, - ACTIONS(7216), 1, + ACTIONS(6863), 1, anon_sym_requires, - ACTIONS(7239), 1, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6195), 1, - sym_gnu_asm_expression, - STATE(6574), 1, + STATE(5644), 1, + sym__function_attributes_end, + STATE(5820), 1, sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - STATE(6200), 2, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6281), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 7, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4969), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(8072), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [226699] = 5, + anon_sym_GT2, + [180177] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6663), 1, anon_sym___attribute__, - STATE(2662), 1, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6861), 1, + anon_sym_DASH_GT, + ACTIONS(6863), 1, + anon_sym_requires, + ACTIONS(7901), 1, + anon_sym_LBRACK, + STATE(5649), 1, + sym__function_attributes_end, + STATE(5832), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, sym_attribute_specifier, - ACTIONS(5882), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4971), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5884), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [226736] = 5, + anon_sym_GT2, + [180246] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - STATE(2659), 1, - sym_attribute_specifier, - ACTIONS(5920), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5922), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6965), 1, + anon_sym_COLON_COLON, + ACTIONS(8056), 1, + anon_sym_LBRACE, + ACTIONS(8192), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [226773] = 17, + STATE(4482), 1, + sym_template_type, + STATE(4819), 1, + sym_field_declaration_list, + STATE(4863), 1, + sym__class_declaration, + STATE(4898), 1, + sym__class_declaration_item, + STATE(5075), 1, + sym_ms_declspec_modifier, + STATE(5975), 1, + sym__scope_resolution, + STATE(6376), 1, + sym_virtual_specifier, + STATE(7099), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(4492), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5046), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4815), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [180325] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8647), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6965), 1, anon_sym_COLON_COLON, - ACTIONS(8780), 1, - sym_identifier, - ACTIONS(8841), 1, - anon_sym_LPAREN2, - ACTIONS(8843), 1, + ACTIONS(8056), 1, anon_sym_LBRACE, - ACTIONS(8847), 1, - anon_sym_requires, - STATE(3227), 1, + ACTIONS(8192), 1, + sym_identifier, + STATE(4482), 1, sym_template_type, - STATE(4332), 1, - sym_requirement_seq, - STATE(6642), 1, - sym_lambda_capture_specifier, - STATE(7282), 1, + STATE(4819), 1, + sym_field_declaration_list, + STATE(4898), 1, + sym__class_declaration_item, + STATE(4904), 1, + sym__class_declaration, + STATE(5075), 1, + sym_ms_declspec_modifier, + STATE(5975), 1, sym__scope_resolution, - STATE(8787), 1, - sym_requires_parameter_list, - ACTIONS(8845), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4244), 8, + STATE(6376), 1, + sym_virtual_specifier, + STATE(7099), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(4492), 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, - [226834] = 17, + STATE(5046), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4815), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [180404] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8679), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6951), 1, anon_sym_COLON_COLON, - ACTIONS(8784), 1, - sym_identifier, - ACTIONS(8849), 1, - anon_sym_LPAREN2, - ACTIONS(8851), 1, + ACTIONS(7881), 1, anon_sym_LBRACE, - ACTIONS(8855), 1, - anon_sym_requires, - STATE(3180), 1, + ACTIONS(8194), 1, + sym_identifier, + STATE(2542), 1, sym_template_type, - STATE(4094), 1, - sym_requirement_seq, - STATE(6619), 1, - sym_lambda_capture_specifier, - STATE(7293), 1, + STATE(4458), 1, + sym_field_declaration_list, + STATE(4485), 1, + sym__class_declaration_item, + STATE(4488), 1, + sym__class_declaration, + STATE(5050), 1, + sym_ms_declspec_modifier, + STATE(5987), 1, sym__scope_resolution, - STATE(8607), 1, - sym_requires_parameter_list, - ACTIONS(8853), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4093), 8, + STATE(6289), 1, + sym_virtual_specifier, + STATE(7025), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(4361), 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, - [226895] = 15, + STATE(5048), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4830), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [180483] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6154), 1, - sym_gnu_asm_expression, - STATE(6601), 1, - sym_trailing_return_type, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3090), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6164), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6460), 2, + STATE(3521), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5063), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [226952] = 5, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [180562] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - STATE(2608), 1, - sym_attribute_specifier, - ACTIONS(5858), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5860), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [226989] = 5, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3089), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3521), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [180641] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - STATE(2640), 1, - sym_attribute_specifier, - ACTIONS(5888), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5890), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5343), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8198), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [227026] = 5, + STATE(1892), 1, + sym_template_type, + STATE(1932), 1, + sym__class_declaration, + STATE(1935), 1, + sym__class_declaration_item, + STATE(2369), 1, + sym_field_declaration_list, + STATE(5095), 1, + sym_ms_declspec_modifier, + STATE(5972), 1, + sym__scope_resolution, + STATE(6317), 1, + sym_virtual_specifier, + STATE(6950), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2167), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5113), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4827), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [180720] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - STATE(2660), 1, - sym_attribute_specifier, - ACTIONS(5939), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5941), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5469), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(7998), 1, + anon_sym_COLON_COLON, + ACTIONS(8200), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [227063] = 5, + STATE(2511), 1, + sym_template_type, + STATE(2621), 1, + sym_field_declaration_list, + STATE(2861), 1, + sym__class_declaration_item, + STATE(2876), 1, + sym__class_declaration, + STATE(5082), 1, + sym_ms_declspec_modifier, + STATE(5951), 1, + sym__scope_resolution, + STATE(6411), 1, + sym_virtual_specifier, + STATE(6886), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5084), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4804), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [180799] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - STATE(2649), 1, - sym_attribute_specifier, - ACTIONS(5896), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5898), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [227100] = 5, + STATE(2542), 1, + sym_template_type, + STATE(3012), 1, + sym__class_declaration, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3521), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [180878] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - STATE(2620), 1, - sym_attribute_specifier, - ACTIONS(5874), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5876), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [227137] = 5, + STATE(2542), 1, + sym_template_type, + STATE(3012), 1, + sym__class_declaration, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3525), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [180957] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - STATE(2558), 1, - sym_attribute_specifier, - ACTIONS(5862), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5864), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5469), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6994), 1, + anon_sym_COLON_COLON, + ACTIONS(8202), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [227174] = 5, + STATE(2511), 1, + sym_template_type, + STATE(2621), 1, + sym_field_declaration_list, + STATE(2811), 1, + sym__class_declaration, + STATE(2861), 1, + sym__class_declaration_item, + STATE(5066), 1, + sym_ms_declspec_modifier, + STATE(5956), 1, + sym__scope_resolution, + STATE(6411), 1, + sym_virtual_specifier, + STATE(6886), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5067), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4809), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [181036] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - STATE(2580), 1, - sym_attribute_specifier, - ACTIONS(5844), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5846), 21, - anon_sym___extension__, + ACTIONS(47), 1, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - [227211] = 5, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6555), 1, + anon_sym_STAR, + ACTIONS(6557), 1, + anon_sym_AMP_AMP, + ACTIONS(6559), 1, + anon_sym_AMP, + ACTIONS(6561), 1, + anon_sym_COLON_COLON, + STATE(5323), 1, + sym__scope_resolution, + STATE(5895), 1, + sym__declarator, + STATE(7249), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [181103] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - STATE(2577), 1, - sym_attribute_specifier, - ACTIONS(5848), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5850), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [227248] = 5, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3089), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3525), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [181182] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - STATE(2613), 1, - sym_attribute_specifier, - ACTIONS(5866), 2, + STATE(4925), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(7988), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5868), 21, + ACTIONS(8207), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4700), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(8204), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7986), 19, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -567364,227 +443518,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_primitive_type, sym_identifier, - sym_auto, - anon_sym_decltype, - [227285] = 15, + [181227] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7216), 1, - anon_sym_requires, - STATE(6211), 1, - sym_gnu_asm_expression, - STATE(6605), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6965), 1, + anon_sym_COLON_COLON, + ACTIONS(8056), 1, + anon_sym_LBRACE, + ACTIONS(8192), 1, + sym_identifier, + STATE(4482), 1, + sym_template_type, + STATE(4819), 1, + sym_field_declaration_list, + STATE(4898), 1, + sym__class_declaration_item, + STATE(4907), 1, + sym__class_declaration, + STATE(5075), 1, + sym_ms_declspec_modifier, + STATE(5975), 1, + sym__scope_resolution, + STATE(6376), 1, + sym_virtual_specifier, + STATE(7099), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6210), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6361), 2, + STATE(4492), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5046), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [227342] = 5, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4815), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [181306] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4611), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - STATE(2615), 1, - sym_attribute_specifier, - ACTIONS(5870), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5872), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8210), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [227379] = 5, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3090), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5132), 1, + sym_ms_declspec_modifier, + STATE(5953), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2943), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5098), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4822), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [181385] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - STATE(2559), 1, - sym_attribute_specifier, - ACTIONS(5924), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5926), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [227416] = 5, + STATE(2542), 1, + sym_template_type, + STATE(3012), 1, + sym__class_declaration, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3526), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [181464] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - STATE(2628), 1, - sym_attribute_specifier, - ACTIONS(5912), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5914), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [227453] = 5, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3089), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3526), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [181543] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - STATE(2594), 1, - sym_attribute_specifier, - ACTIONS(5836), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5838), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [227490] = 5, + ACTIONS(8212), 1, + anon_sym_COLON_COLON, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3090), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5120), 1, + sym_ms_declspec_modifier, + STATE(5959), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3777), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5118), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4834), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [181622] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - STATE(2629), 1, - sym_attribute_specifier, - ACTIONS(5932), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5934), 21, - anon_sym___extension__, + STATE(4706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4899), 6, + anon_sym_AMP, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, sym_identifier, - sym_auto, anon_sym_decltype, - [227527] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - STATE(2621), 1, - sym_attribute_specifier, - ACTIONS(5928), 2, + anon_sym_template, + anon_sym_operator, + ACTIONS(4901), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(5930), 21, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(8170), 12, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -567596,418 +443829,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [227564] = 5, + [181663] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - STATE(2624), 1, - sym_attribute_specifier, - ACTIONS(5904), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5906), 21, - anon_sym___extension__, + ACTIONS(47), 1, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - [227601] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - STATE(2651), 1, - sym_attribute_specifier, - ACTIONS(5854), 2, + ACTIONS(2691), 1, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5856), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4792), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [227638] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7239), 1, + ACTIONS(6497), 1, anon_sym_LBRACK, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - STATE(6225), 1, - sym_gnu_asm_expression, - STATE(6587), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6224), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6572), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [227694] = 15, + ACTIONS(6499), 1, + anon_sym_STAR, + ACTIONS(6501), 1, + anon_sym_AMP_AMP, + ACTIONS(6503), 1, + anon_sym_AMP, + ACTIONS(6505), 1, + anon_sym_COLON_COLON, + STATE(5279), 1, + sym__scope_resolution, + STATE(6006), 1, + sym__declarator, + STATE(7365), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [181730] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4611), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - STATE(6223), 1, - sym_gnu_asm_expression, - STATE(6605), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6233), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6573), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_try, - [227750] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6243), 1, - sym_gnu_asm_expression, - STATE(6582), 1, - sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6241), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6556), 2, + ACTIONS(8210), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3089), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5132), 1, + sym_ms_declspec_modifier, + STATE(5953), 1, + sym__scope_resolution, + STATE(6465), 1, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6578), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8744), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [227806] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - STATE(6221), 1, - sym_gnu_asm_expression, - STATE(6608), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6215), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6596), 2, + STATE(2943), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5098), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [227862] = 18, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4822), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [181809] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - STATE(6686), 1, - sym_gnu_asm_expression, - STATE(6701), 1, - sym_requires_clause, - STATE(7256), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7192), 2, - anon_sym_LPAREN2, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, anon_sym_COLON, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6317), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6498), 2, + ACTIONS(8196), 1, + sym_identifier, + ACTIONS(8212), 1, + anon_sym_COLON_COLON, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3089), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5120), 1, + sym_ms_declspec_modifier, + STATE(5959), 1, + sym__scope_resolution, + STATE(6465), 1, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6688), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6833), 2, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3777), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5118), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [227924] = 11, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4834), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [181888] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7421), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - ACTIONS(7429), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(6497), 1, anon_sym_LBRACK, - ACTIONS(7437), 1, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6555), 1, anon_sym_STAR, - ACTIONS(7439), 1, + ACTIONS(6557), 1, anon_sym_AMP_AMP, - ACTIONS(7441), 1, + ACTIONS(6559), 1, anon_sym_AMP, - STATE(4551), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6806), 1, - sym__abstract_declarator, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7491), 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, - [227972] = 15, + ACTIONS(6561), 1, + anon_sym_COLON_COLON, + STATE(5323), 1, + sym__scope_resolution, + STATE(5856), 1, + sym__declarator, + STATE(7249), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [181955] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - STATE(6139), 1, - sym_gnu_asm_expression, - STATE(6587), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3090), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6140), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6413), 2, + STATE(3525), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5063), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [228028] = 15, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [182034] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(39), 1, anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6148), 1, - sym_gnu_asm_expression, - STATE(6582), 1, - sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6146), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6314), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(5436), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(8214), 1, anon_sym_COLON, - [228084] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5204), 1, - anon_sym_LBRACE, - ACTIONS(5321), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5323), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(1981), 1, + sym_attribute_specifier, + STATE(4844), 1, + sym__enum_base_clause, + STATE(4942), 1, + sym_enumerator_list, + ACTIONS(5463), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(5465), 21, 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, @@ -568018,1429 +444128,1556 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [228118] = 18, + [182083] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4611), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, - anon_sym_DASH_GT, - STATE(6706), 1, - sym_gnu_asm_expression, - STATE(6894), 1, - sym_requires_clause, - STATE(6956), 1, - sym_trailing_return_type, - ACTIONS(7192), 2, - anon_sym_LPAREN2, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, anon_sym_COLON, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(8210), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3012), 1, + sym__class_declaration, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5132), 1, + sym_ms_declspec_modifier, + STATE(5953), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6251), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6683), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6851), 2, + STATE(2943), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5098), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [228180] = 18, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4822), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [182162] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - STATE(6665), 1, - sym_gnu_asm_expression, - STATE(6678), 1, - sym_requires_clause, - STATE(7255), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7237), 2, - anon_sym_LPAREN2, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, anon_sym_COLON, - STATE(6342), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6527), 2, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3090), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6674), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6832), 2, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3526), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5063), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [228242] = 15, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [182241] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6126), 1, - sym_gnu_asm_expression, - STATE(6579), 1, - sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, + sym_identifier, + ACTIONS(8212), 1, + anon_sym_COLON_COLON, + STATE(2542), 1, + sym_template_type, + STATE(3012), 1, + sym__class_declaration, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5120), 1, + sym_ms_declspec_modifier, + STATE(5959), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6135), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6428), 2, + STATE(3777), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5118), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [228298] = 11, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4834), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [182320] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7421), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - ACTIONS(7429), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(6497), 1, anon_sym_LBRACK, - ACTIONS(7499), 1, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6555), 1, anon_sym_STAR, - ACTIONS(7501), 1, + ACTIONS(6557), 1, anon_sym_AMP_AMP, - ACTIONS(7503), 1, + ACTIONS(6559), 1, anon_sym_AMP, - STATE(4524), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6776), 1, - sym__abstract_declarator, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7491), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [228346] = 15, + ACTIONS(6561), 1, + anon_sym_COLON_COLON, + STATE(5323), 1, + sym__scope_resolution, + STATE(5876), 1, + sym__declarator, + STATE(7249), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [182387] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6120), 1, - sym_gnu_asm_expression, - STATE(6601), 1, - sym_trailing_return_type, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6128), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6454), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 6, - anon_sym_COMMA, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [228402] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - ACTIONS(8859), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6493), 1, + anon_sym_AMP_AMP, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6497), 1, anon_sym_LBRACK, - STATE(6130), 1, - sym_gnu_asm_expression, - STATE(6580), 1, - sym_trailing_return_type, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6131), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6437), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [228458] = 15, + STATE(5245), 1, + sym__scope_resolution, + STATE(5570), 1, + sym__declarator, + STATE(7589), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [182454] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6217), 1, - sym_gnu_asm_expression, - STATE(6601), 1, - sym_trailing_return_type, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6239), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6602), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8857), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_try, - [228514] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6656), 1, - sym_gnu_asm_expression, - STATE(6700), 1, - sym_requires_clause, - STATE(7251), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(8194), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3090), 1, + sym__class_declaration, + STATE(3627), 1, + sym_field_declaration_list, + STATE(5057), 1, + sym_ms_declspec_modifier, + STATE(5987), 1, + sym__scope_resolution, + STATE(6333), 1, + sym_virtual_specifier, + STATE(7065), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8744), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6359), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6657), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6826), 2, + STATE(3396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5061), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [228576] = 15, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4829), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [182533] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - STATE(6141), 1, - sym_gnu_asm_expression, - STATE(6574), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6116), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6377), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - [228632] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - STATE(6219), 1, - sym_gnu_asm_expression, - STATE(6574), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(8194), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3089), 1, + sym__class_declaration, + STATE(3627), 1, + sym_field_declaration_list, + STATE(5057), 1, + sym_ms_declspec_modifier, + STATE(5987), 1, + sym__scope_resolution, + STATE(6333), 1, + sym_virtual_specifier, + STATE(7065), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6222), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6610), 2, + STATE(3396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5061), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [228688] = 11, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4829), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [182612] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7421), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4792), 1, + sym_identifier, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6499), 1, anon_sym_STAR, - ACTIONS(7425), 1, + ACTIONS(6501), 1, anon_sym_AMP_AMP, - ACTIONS(7427), 1, + ACTIONS(6503), 1, anon_sym_AMP, - ACTIONS(7429), 1, - anon_sym_LBRACK, - STATE(4587), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6793), 1, - sym__abstract_declarator, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7491), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [228736] = 15, + ACTIONS(6505), 1, + anon_sym_COLON_COLON, + STATE(5279), 1, + sym__scope_resolution, + STATE(5994), 1, + sym__declarator, + STATE(7365), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [182679] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - STATE(6122), 1, - sym_gnu_asm_expression, - STATE(6605), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6121), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6404), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - [228792] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6231), 1, - sym_gnu_asm_expression, - STATE(6580), 1, - sym_trailing_return_type, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3090), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6230), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6603), 2, + STATE(2943), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5063), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8857), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [228848] = 18, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [182758] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, - anon_sym_DASH_GT, - STATE(6681), 1, - sym_gnu_asm_expression, - STATE(6891), 1, - sym_requires_clause, - STATE(6965), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7237), 2, - anon_sym_LPAREN2, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5318), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, anon_sym_COLON, - ACTIONS(7359), 2, + ACTIONS(8090), 1, + anon_sym_COLON_COLON, + ACTIONS(8216), 1, + sym_identifier, + STATE(2356), 1, + sym_template_type, + STATE(2411), 1, + sym_field_declaration_list, + STATE(2460), 1, + sym__class_declaration, + STATE(2462), 1, + sym__class_declaration_item, + STATE(5047), 1, + sym_ms_declspec_modifier, + STATE(5965), 1, + sym__scope_resolution, + STATE(6284), 1, + sym_virtual_specifier, + STATE(7049), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6283), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6628), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6852), 2, + STATE(2119), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5055), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [228910] = 15, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4812), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [182837] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6229), 1, - sym_gnu_asm_expression, - STATE(6579), 1, - sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5447), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8012), 1, + anon_sym_COLON_COLON, + ACTIONS(8218), 1, + sym_identifier, + STATE(2467), 1, + sym_template_type, + STATE(2774), 1, + sym_field_declaration_list, + STATE(2938), 1, + sym__class_declaration, + STATE(2940), 1, + sym__class_declaration_item, + STATE(5114), 1, + sym_ms_declspec_modifier, + STATE(5980), 1, + sym__scope_resolution, + STATE(6437), 1, + sym_virtual_specifier, + STATE(7126), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6227), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6575), 2, + STATE(2349), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5060), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8744), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [228966] = 18, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4826), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [182916] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7212), 1, - anon_sym_noexcept, - ACTIONS(7214), 1, - anon_sym_throw, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, - anon_sym_DASH_GT, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6611), 1, - sym_gnu_asm_expression, - STATE(6885), 1, - sym_requires_clause, - STATE(6968), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8744), 2, - anon_sym_LPAREN2, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5447), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, anon_sym_COLON, - STATE(6386), 2, - sym_noexcept, - sym_throw_specifier, - STATE(6638), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6716), 2, + ACTIONS(8012), 1, + anon_sym_COLON_COLON, + ACTIONS(8218), 1, + sym_identifier, + STATE(2467), 1, + sym_template_type, + STATE(2774), 1, + sym_field_declaration_list, + STATE(2940), 1, + sym__class_declaration_item, + STATE(2941), 1, + sym__class_declaration, + STATE(5114), 1, + sym_ms_declspec_modifier, + STATE(5980), 1, + sym__scope_resolution, + STATE(6437), 1, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6855), 2, + STATE(7126), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2349), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5060), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [229028] = 15, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4826), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [182995] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(8054), 1, anon_sym___attribute__, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - STATE(6145), 1, - sym_gnu_asm_expression, - STATE(6608), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6149), 2, + ACTIONS(8144), 1, + anon_sym_LBRACE, + STATE(4801), 1, + sym_enumerator_list, + STATE(4903), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6402), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 6, - anon_sym_COMMA, + ACTIONS(5434), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5432), 23, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym___extension__, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_try, - [229084] = 13, + anon_sym_requires, + [183040] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6582), 1, - sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6314), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5469), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [229135] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7369), 1, - anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6466), 1, - sym_gnu_asm_expression, - STATE(6879), 1, - sym_requires_clause, - STATE(6971), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(7998), 1, + anon_sym_COLON_COLON, + ACTIONS(8200), 1, + sym_identifier, + STATE(2511), 1, + sym_template_type, + STATE(2621), 1, + sym_field_declaration_list, + STATE(2811), 1, + sym__class_declaration, + STATE(2861), 1, + sym__class_declaration_item, + STATE(5082), 1, + sym_ms_declspec_modifier, + STATE(5951), 1, + sym__scope_resolution, + STATE(6411), 1, + sym_virtual_specifier, + STATE(6886), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6395), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6677), 2, + STATE(2361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5084), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6717), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [229190] = 15, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4804), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [183119] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7369), 1, - anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - STATE(6267), 1, - sym_gnu_asm_expression, - STATE(6891), 1, - sym_requires_clause, - STATE(6965), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6468), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6649), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [229245] = 13, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(2695), 1, + anon_sym_STAR, + ACTIONS(2697), 1, + anon_sym_AMP, + ACTIONS(4792), 1, + sym_identifier, + ACTIONS(5475), 1, + anon_sym_COLON_COLON, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5318), 1, + sym__scope_resolution, + STATE(6018), 1, + sym__declarator, + STATE(7657), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [183186] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - ACTIONS(8863), 1, - anon_sym_LBRACK, - STATE(6593), 1, - sym_trailing_return_type, - STATE(6676), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6270), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6519), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8861), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5469), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [229296] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6598), 1, - sym_trailing_return_type, - STATE(6643), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(7998), 1, + anon_sym_COLON_COLON, + ACTIONS(8200), 1, + sym_identifier, + STATE(2511), 1, + sym_template_type, + STATE(2621), 1, + sym_field_declaration_list, + STATE(2824), 1, + sym__class_declaration, + STATE(2861), 1, + sym__class_declaration_item, + STATE(5082), 1, + sym_ms_declspec_modifier, + STATE(5951), 1, + sym__scope_resolution, + STATE(6411), 1, + sym_virtual_specifier, + STATE(6886), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6119), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6256), 2, + STATE(2361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5084), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [229347] = 13, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4804), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [183265] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - STATE(6574), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5343), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8198), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1935), 1, + sym__class_declaration_item, + STATE(1985), 1, + sym__class_declaration, + STATE(2369), 1, + sym_field_declaration_list, + STATE(5095), 1, + sym_ms_declspec_modifier, + STATE(5972), 1, + sym__scope_resolution, + STATE(6317), 1, + sym_virtual_specifier, + STATE(6950), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6377), 2, + STATE(2167), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5113), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 8, - anon_sym_COMMA, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4827), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [183344] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [229398] = 13, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(2695), 1, + anon_sym_STAR, + ACTIONS(2697), 1, + anon_sym_AMP, + ACTIONS(4792), 1, + sym_identifier, + ACTIONS(5475), 1, + anon_sym_COLON_COLON, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5318), 1, + sym__scope_resolution, + STATE(6034), 1, + sym__declarator, + STATE(7657), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [183411] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - STATE(6574), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6116), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6377), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5447), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [229449] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7365), 1, - anon_sym_DASH_GT, - ACTIONS(7367), 1, - anon_sym_requires, - STATE(6403), 1, - sym_gnu_asm_expression, - STATE(6701), 1, - sym_requires_clause, - STATE(6929), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, + ACTIONS(8012), 1, + anon_sym_COLON_COLON, + ACTIONS(8218), 1, + sym_identifier, + STATE(2467), 1, + sym_template_type, + STATE(2774), 1, + sym_field_declaration_list, + STATE(2940), 1, + sym__class_declaration_item, + STATE(2942), 1, + sym__class_declaration, + STATE(5114), 1, + sym_ms_declspec_modifier, + STATE(5980), 1, + sym__scope_resolution, + STATE(6437), 1, + sym_virtual_specifier, + STATE(7126), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6420), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6639), 2, + STATE(2349), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5060), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [229504] = 15, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4826), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [183490] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7357), 1, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6861), 1, anon_sym_DASH_GT, - ACTIONS(7361), 1, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(8135), 1, anon_sym_requires, - STATE(6343), 1, - sym_gnu_asm_expression, - STATE(6891), 1, - sym_requires_clause, - STATE(7045), 1, + STATE(5549), 1, + sym__function_attributes_end, + STATE(5795), 1, sym_trailing_return_type, - ACTIONS(7208), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(7972), 2, anon_sym_final, anon_sym_override, - STATE(6358), 2, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6646), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6715), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 5, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4967), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7893), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [229559] = 15, + anon_sym_GT2, + [183559] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7357), 1, - anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - STATE(6464), 1, - sym_gnu_asm_expression, - STATE(6894), 1, - sym_requires_clause, - STATE(7057), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6306), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6660), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 5, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [229614] = 13, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6555), 1, + anon_sym_STAR, + ACTIONS(6557), 1, + anon_sym_AMP_AMP, + ACTIONS(6559), 1, + anon_sym_AMP, + ACTIONS(6561), 1, + anon_sym_COLON_COLON, + STATE(5323), 1, + sym__scope_resolution, + STATE(5878), 1, + sym__declarator, + STATE(7249), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [183626] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6580), 1, - sym_trailing_return_type, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6131), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6437), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 8, - anon_sym_COMMA, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [229665] = 13, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6555), 1, + anon_sym_STAR, + ACTIONS(6557), 1, + anon_sym_AMP_AMP, + ACTIONS(6559), 1, + anon_sym_AMP, + ACTIONS(6561), 1, + anon_sym_COLON_COLON, + STATE(5323), 1, + sym__scope_resolution, + STATE(5884), 1, + sym__declarator, + STATE(7249), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [183693] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - STATE(6605), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6121), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6404), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5318), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [229716] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6598), 1, - sym_trailing_return_type, - STATE(6643), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(8090), 1, + anon_sym_COLON_COLON, + ACTIONS(8216), 1, + sym_identifier, + STATE(2356), 1, + sym_template_type, + STATE(2411), 1, + sym_field_declaration_list, + STATE(2459), 1, + sym__class_declaration, + STATE(2462), 1, + sym__class_declaration_item, + STATE(5047), 1, + sym_ms_declspec_modifier, + STATE(5965), 1, + sym__scope_resolution, + STATE(6284), 1, + sym_virtual_specifier, + STATE(7049), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6256), 2, + STATE(2119), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5055), 2, sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [229767] = 13, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4812), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [183772] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6861), 1, anon_sym_DASH_GT, - ACTIONS(8863), 1, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6583), 1, + ACTIONS(8220), 1, + anon_sym_requires, + STATE(5618), 1, + sym__function_attributes_end, + STATE(5786), 1, sym_trailing_return_type, - STATE(6676), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8179), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6382), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6519), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8861), 8, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4966), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(8072), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [229818] = 13, + anon_sym_GT2, + [183841] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6581), 1, - sym_trailing_return_type, - STATE(6643), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3012), 1, + sym__class_declaration, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6129), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6450), 2, + STATE(3560), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5063), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [229869] = 13, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [183920] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6581), 1, - sym_trailing_return_type, - STATE(6643), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5343), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8198), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1935), 1, + sym__class_declaration_item, + STATE(1936), 1, + sym__class_declaration, + STATE(2369), 1, + sym_field_declaration_list, + STATE(5095), 1, + sym_ms_declspec_modifier, + STATE(5972), 1, + sym__scope_resolution, + STATE(6317), 1, + sym_virtual_specifier, + STATE(6950), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6450), 2, + STATE(2167), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5113), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [229920] = 15, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4827), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [183999] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7365), 1, - anon_sym_DASH_GT, - ACTIONS(7367), 1, - anon_sym_requires, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6300), 1, - sym_gnu_asm_expression, - STATE(6622), 1, - sym_requires_clause, - STATE(6942), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3089), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6293), 2, + STATE(3560), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6515), 2, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [184078] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3090), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6682), 2, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3560), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5063), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8857), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [229975] = 13, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [184157] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - STATE(6608), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3012), 1, + sym__class_declaration, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6149), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6402), 2, + STATE(3543), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5063), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [230026] = 7, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [184236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, - anon_sym_LBRACE, - ACTIONS(7226), 1, + ACTIONS(8225), 6, anon_sym_LPAREN2, - STATE(4021), 1, - sym_argument_list, - STATE(4436), 1, - sym_initializer_list, - ACTIONS(5321), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5323), 17, - anon_sym_RPAREN, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym___extension__, + anon_sym_COLON_COLON, anon_sym_LBRACK, + ACTIONS(8223), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -569451,497 +445688,772 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, + sym_identifier, anon_sym_decltype, - [230065] = 13, + anon_sym_template, + anon_sym_operator, + [184273] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6580), 1, - sym_trailing_return_type, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5343), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(8227), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1935), 1, + sym__class_declaration_item, + STATE(1936), 1, + sym__class_declaration, + STATE(2369), 1, + sym_field_declaration_list, + STATE(5100), 1, + sym_ms_declspec_modifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(6317), 1, + sym_virtual_specifier, + STATE(6950), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6437), 2, + STATE(2167), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5104), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [230116] = 15, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4828), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [184352] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7365), 1, - anon_sym_DASH_GT, - ACTIONS(7367), 1, - anon_sym_requires, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6462), 1, - sym_gnu_asm_expression, - STATE(6700), 1, - sym_requires_clause, - STATE(6939), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6461), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6627), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8744), 5, - anon_sym_RPAREN, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [230171] = 15, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6555), 1, + anon_sym_STAR, + ACTIONS(6557), 1, + anon_sym_AMP_AMP, + ACTIONS(6559), 1, + anon_sym_AMP, + ACTIONS(6561), 1, + anon_sym_COLON_COLON, + STATE(5323), 1, + sym__scope_resolution, + STATE(5903), 1, + sym__declarator, + STATE(7249), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [184419] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7369), 1, - anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6336), 1, - sym_gnu_asm_expression, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3089), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, STATE(6885), 1, - sym_requires_clause, - STATE(6968), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6345), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6644), 2, + STATE(2943), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5063), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6716), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [184498] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [230226] = 15, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6555), 1, + anon_sym_STAR, + ACTIONS(6557), 1, + anon_sym_AMP_AMP, + ACTIONS(6559), 1, + anon_sym_AMP, + ACTIONS(6561), 1, + anon_sym_COLON_COLON, + STATE(5323), 1, + sym__scope_resolution, + STATE(5860), 1, + sym__declarator, + STATE(7249), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [184565] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7357), 1, - anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(8859), 1, - anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6917), 1, + anon_sym_COLON_COLON, + ACTIONS(8190), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3090), 1, + sym__class_declaration, + STATE(3627), 1, + sym_field_declaration_list, + STATE(5065), 1, + sym_ms_declspec_modifier, + STATE(5982), 1, + sym__scope_resolution, STATE(6333), 1, - sym_gnu_asm_expression, - STATE(6879), 1, - sym_requires_clause, - STATE(7047), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + sym_virtual_specifier, + STATE(7065), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6355), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6629), 2, + STATE(3396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6717), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [230281] = 13, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4811), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [184644] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6579), 1, - sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6135), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6428), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 8, - anon_sym_COMMA, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [230332] = 13, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(2695), 1, + anon_sym_STAR, + ACTIONS(2697), 1, + anon_sym_AMP, + ACTIONS(4792), 1, + sym_identifier, + ACTIONS(5475), 1, + anon_sym_COLON_COLON, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5318), 1, + sym__scope_resolution, + STATE(6013), 1, + sym__declarator, + STATE(7657), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [184711] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6579), 1, - sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5343), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(8227), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1935), 1, + sym__class_declaration_item, + STATE(1985), 1, + sym__class_declaration, + STATE(2369), 1, + sym_field_declaration_list, + STATE(5100), 1, + sym_ms_declspec_modifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(6317), 1, + sym_virtual_specifier, + STATE(6950), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6428), 2, + STATE(2167), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5104), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [230383] = 13, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4828), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [184790] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6582), 1, - sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5343), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(8227), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1932), 1, + sym__class_declaration, + STATE(1935), 1, + sym__class_declaration_item, + STATE(2369), 1, + sym_field_declaration_list, + STATE(5100), 1, + sym_ms_declspec_modifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(6317), 1, + sym_virtual_specifier, + STATE(6950), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6146), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6314), 2, + STATE(2167), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5104), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [230434] = 15, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4828), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [184869] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7357), 1, - anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6373), 1, - sym_gnu_asm_expression, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3012), 1, + sym__class_declaration, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, STATE(6885), 1, - sym_requires_clause, - STATE(7055), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6360), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6664), 2, + STATE(3527), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5063), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6716), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [230489] = 15, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [184948] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7365), 1, - anon_sym_DASH_GT, - ACTIONS(7367), 1, - anon_sym_requires, - STATE(6279), 1, - sym_gnu_asm_expression, - STATE(6678), 1, - sym_requires_clause, - STATE(6934), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6278), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6703), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 5, - anon_sym_RPAREN, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [230544] = 15, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6555), 1, + anon_sym_STAR, + ACTIONS(6557), 1, + anon_sym_AMP_AMP, + ACTIONS(6559), 1, + anon_sym_AMP, + ACTIONS(6561), 1, + anon_sym_COLON_COLON, + STATE(5323), 1, + sym__scope_resolution, + STATE(5899), 1, + sym__declarator, + STATE(7249), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [185015] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7369), 1, - anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - STATE(6422), 1, - sym_gnu_asm_expression, - STATE(6894), 1, - sym_requires_clause, - STATE(6956), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3089), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6429), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6613), 2, + STATE(3543), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5063), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [230599] = 13, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [185094] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - STATE(6587), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8115), 1, + anon_sym_COLON_COLON, + ACTIONS(8229), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2602), 1, + sym_field_declaration_list, + STATE(2820), 1, + sym__class_declaration, + STATE(2821), 1, + sym__class_declaration_item, + STATE(5126), 1, + sym_ms_declspec_modifier, + STATE(5964), 1, + sym__scope_resolution, + STATE(6223), 1, + sym_virtual_specifier, + STATE(6920), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6140), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6413), 2, + STATE(2328), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5122), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 8, - anon_sym_COMMA, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4813), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [185173] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [230650] = 13, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(2695), 1, + anon_sym_STAR, + ACTIONS(2697), 1, + anon_sym_AMP, + ACTIONS(4792), 1, + sym_identifier, + ACTIONS(5475), 1, + anon_sym_COLON_COLON, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5318), 1, + sym__scope_resolution, + STATE(5895), 1, + sym__declarator, + STATE(7657), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [185240] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6601), 1, - sym_trailing_return_type, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3089), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6454), 2, + STATE(3527), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5063), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [230701] = 6, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [185319] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5314), 1, + ACTIONS(8054), 1, + anon_sym___attribute__, + ACTIONS(8144), 1, + anon_sym_LBRACE, + STATE(4802), 1, + sym_enumerator_list, + STATE(4916), 1, + sym_attribute_specifier, + ACTIONS(5443), 2, anon_sym_AMP, - ACTIONS(8872), 1, anon_sym_const, - STATE(6147), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5316), 8, + ACTIONS(5441), 23, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8869), 11, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -569952,3054 +446464,3790 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [230738] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6601), 1, - sym_trailing_return_type, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6128), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6454), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [230789] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - STATE(6587), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6413), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_try, - [230840] = 22, + anon_sym_requires, + [185364] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(8877), 1, - anon_sym_SEMI, - ACTIONS(8879), 1, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, anon_sym_LBRACE, - ACTIONS(8881), 1, - anon_sym_LBRACK, - ACTIONS(8883), 1, - anon_sym_EQ, - ACTIONS(8885), 1, + ACTIONS(6282), 1, anon_sym_COLON, - ACTIONS(8887), 1, - anon_sym_try, - STATE(2899), 1, - sym_try_statement, - STATE(2907), 1, - sym_delete_method_clause, - STATE(2908), 1, - sym_default_method_clause, - STATE(2909), 1, - sym_compound_statement, - STATE(4523), 1, - sym_parameter_list, - STATE(7190), 1, - sym__function_declarator_seq, - STATE(7536), 1, - sym_initializer_list, - STATE(7559), 1, - sym_bitfield_clause, - STATE(7578), 1, - aux_sym_field_declaration_repeat1, - STATE(8989), 1, - sym_attribute_specifier, - STATE(7078), 2, + ACTIONS(6917), 1, + anon_sym_COLON_COLON, + ACTIONS(8190), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3089), 1, + sym__class_declaration, + STATE(3627), 1, + sym_field_declaration_list, + STATE(5065), 1, + sym_ms_declspec_modifier, + STATE(5982), 1, + sym__scope_resolution, + STATE(6333), 1, + sym_virtual_specifier, + STATE(7065), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [230908] = 14, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4811), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [185443] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(8795), 1, - sym_identifier, - ACTIONS(8820), 1, - anon_sym_requires, - ACTIONS(8889), 1, + ACTIONS(2691), 1, anon_sym_LPAREN2, - STATE(2479), 1, - sym_template_type, - STATE(6621), 1, - sym_lambda_capture_specifier, - STATE(7300), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6585), 1, + anon_sym_STAR, + ACTIONS(6587), 1, + anon_sym_AMP_AMP, + ACTIONS(6589), 1, + anon_sym_AMP, + ACTIONS(6591), 1, + anon_sym_COLON_COLON, + STATE(5266), 1, sym__scope_resolution, - ACTIONS(8891), 2, - sym_true, - sym_false, - STATE(9648), 2, + STATE(5581), 1, + sym__declarator, + STATE(7229), 1, + sym_ms_based_modifier, + STATE(7683), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(7299), 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, - [230960] = 14, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [185510] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8820), 1, - anon_sym_requires, - ACTIONS(8889), 1, - anon_sym_LPAREN2, - ACTIONS(8893), 1, - sym_identifier, - ACTIONS(8895), 1, + ACTIONS(4635), 1, anon_sym_COLON_COLON, - STATE(2479), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, sym_template_type, - STATE(6621), 1, - sym_lambda_capture_specifier, - STATE(7259), 1, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3090), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, sym__scope_resolution, - ACTIONS(8897), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6842), 8, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3527), 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, - [231012] = 14, + STATE(5063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [185589] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8607), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8115), 1, anon_sym_COLON_COLON, - ACTIONS(8774), 1, + ACTIONS(8229), 1, sym_identifier, - ACTIONS(8820), 1, - anon_sym_requires, - ACTIONS(8889), 1, - anon_sym_LPAREN2, - STATE(2479), 1, + STATE(2422), 1, sym_template_type, - STATE(6621), 1, - sym_lambda_capture_specifier, - STATE(7275), 1, + STATE(2602), 1, + sym_field_declaration_list, + STATE(2821), 1, + sym__class_declaration_item, + STATE(2822), 1, + sym__class_declaration, + STATE(5126), 1, + sym_ms_declspec_modifier, + STATE(5964), 1, sym__scope_resolution, - ACTIONS(8899), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4823), 8, + STATE(6223), 1, + sym_virtual_specifier, + STATE(6920), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2328), 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, - [231064] = 13, + STATE(5122), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4813), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [185668] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6598), 1, - sym_trailing_return_type, - STATE(6643), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3090), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6160), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6326), 2, + STATE(3539), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5063), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [231114] = 14, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [185747] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8625), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5343), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6897), 1, anon_sym_COLON_COLON, - ACTIONS(8782), 1, + ACTIONS(8231), 1, sym_identifier, - ACTIONS(8812), 1, - anon_sym_requires, - ACTIONS(8901), 1, - anon_sym_LPAREN2, - STATE(3332), 1, + STATE(1892), 1, sym_template_type, - STATE(6647), 1, - sym_lambda_capture_specifier, - STATE(7276), 1, + STATE(1935), 1, + sym__class_declaration_item, + STATE(1936), 1, + sym__class_declaration, + STATE(4945), 1, + sym_field_declaration_list, + STATE(5093), 1, + sym_ms_declspec_modifier, + STATE(5966), 1, sym__scope_resolution, - ACTIONS(8903), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4443), 8, + STATE(6403), 1, + sym_virtual_specifier, + STATE(6904), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(4540), 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, - [231166] = 22, + STATE(5072), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4817), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [185826] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(8881), 1, - anon_sym_LBRACK, - ACTIONS(8885), 1, - anon_sym_COLON, - ACTIONS(8905), 1, - anon_sym_SEMI, - ACTIONS(8907), 1, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5343), 1, anon_sym_LBRACE, - ACTIONS(8909), 1, - anon_sym_EQ, - ACTIONS(8911), 1, - anon_sym_try, - STATE(2690), 1, - sym_try_statement, - STATE(2691), 1, - sym_delete_method_clause, - STATE(2692), 1, - sym_default_method_clause, - STATE(2694), 1, - sym_compound_statement, - STATE(4523), 1, - sym_parameter_list, - STATE(7190), 1, - sym__function_declarator_seq, - STATE(7570), 1, - sym_bitfield_clause, - STATE(7571), 1, - sym_initializer_list, - STATE(7572), 1, - aux_sym_field_declaration_repeat1, - STATE(9039), 1, - sym_attribute_specifier, - STATE(7078), 2, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(8231), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1935), 1, + sym__class_declaration_item, + STATE(1985), 1, + sym__class_declaration, + STATE(4945), 1, + sym_field_declaration_list, + STATE(5093), 1, + sym_ms_declspec_modifier, + STATE(5966), 1, + sym__scope_resolution, + STATE(6403), 1, + sym_virtual_specifier, + STATE(6904), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(4540), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5072), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [231234] = 14, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4817), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [185905] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8625), 1, + ACTIONS(4635), 1, anon_sym_COLON_COLON, - ACTIONS(8782), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, sym_identifier, - ACTIONS(8812), 1, - anon_sym_requires, - ACTIONS(8901), 1, - anon_sym_LPAREN2, - STATE(3332), 1, + STATE(2542), 1, sym_template_type, - STATE(6647), 1, - sym_lambda_capture_specifier, - STATE(7276), 1, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3090), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, sym__scope_resolution, - ACTIONS(8913), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4446), 8, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3543), 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, - [231286] = 22, + STATE(5063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [185984] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(8881), 1, - anon_sym_LBRACK, - ACTIONS(8885), 1, - anon_sym_COLON, - ACTIONS(8915), 1, - anon_sym_SEMI, - ACTIONS(8917), 1, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, anon_sym_LBRACE, - ACTIONS(8919), 1, - anon_sym_EQ, - ACTIONS(8921), 1, - anon_sym_try, - STATE(2489), 1, - sym_try_statement, - STATE(2491), 1, - sym_delete_method_clause, - STATE(2493), 1, - sym_default_method_clause, - STATE(2494), 1, - sym_compound_statement, - STATE(4523), 1, - sym_parameter_list, - STATE(7190), 1, - sym__function_declarator_seq, - STATE(7544), 1, - sym_bitfield_clause, - STATE(7546), 1, - sym_initializer_list, - STATE(7549), 1, - aux_sym_field_declaration_repeat1, - STATE(8926), 1, - sym_attribute_specifier, - STATE(7078), 2, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3089), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3539), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5063), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [231354] = 14, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [186063] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8647), 1, + ACTIONS(4635), 1, anon_sym_COLON_COLON, - ACTIONS(8780), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, sym_identifier, - ACTIONS(8847), 1, - anon_sym_requires, - ACTIONS(8923), 1, - anon_sym_LPAREN2, - STATE(3227), 1, + STATE(2542), 1, sym_template_type, - STATE(6642), 1, - sym_lambda_capture_specifier, - STATE(7282), 1, + STATE(3012), 1, + sym__class_declaration, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, sym__scope_resolution, - ACTIONS(8925), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4311), 8, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3539), 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, - [231406] = 13, + STATE(5063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [186142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(8235), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + ACTIONS(8233), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [186179] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(8863), 1, - anon_sym_LBRACK, - STATE(6593), 1, - sym_trailing_return_type, - STATE(6676), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5343), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(8231), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1932), 1, + sym__class_declaration, + STATE(1935), 1, + sym__class_declaration_item, + STATE(4945), 1, + sym_field_declaration_list, + STATE(5093), 1, + sym_ms_declspec_modifier, + STATE(5966), 1, + sym__scope_resolution, + STATE(6403), 1, + sym_virtual_specifier, + STATE(6904), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6441), 2, + STATE(4540), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5072), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6519), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8861), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [231456] = 14, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4817), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [186258] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7300), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5469), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6994), 1, anon_sym_COLON_COLON, - ACTIONS(8766), 1, + ACTIONS(8202), 1, sym_identifier, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(8931), 1, - anon_sym_requires, - STATE(3369), 1, + STATE(2511), 1, sym_template_type, - STATE(6637), 1, - sym_lambda_capture_specifier, - STATE(7288), 1, + STATE(2621), 1, + sym_field_declaration_list, + STATE(2861), 1, + sym__class_declaration_item, + STATE(2876), 1, + sym__class_declaration, + STATE(5066), 1, + sym_ms_declspec_modifier, + STATE(5956), 1, sym__scope_resolution, - ACTIONS(8929), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6499), 8, + STATE(6411), 1, + sym_virtual_specifier, + STATE(6886), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2361), 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, - [231508] = 11, + STATE(5067), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4809), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [186337] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(5436), 1, + anon_sym_LBRACE, + ACTIONS(8214), 1, + anon_sym_COLON, + STATE(1953), 1, + sym_attribute_specifier, + STATE(4862), 1, + sym__enum_base_clause, + STATE(4939), 1, + sym_enumerator_list, + ACTIONS(5449), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5451), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [186386] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7421), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - ACTIONS(7429), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(6497), 1, anon_sym_LBRACK, - ACTIONS(7783), 1, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6555), 1, anon_sym_STAR, - ACTIONS(7785), 1, + ACTIONS(6557), 1, anon_sym_AMP_AMP, - ACTIONS(7787), 1, + ACTIONS(6559), 1, anon_sym_AMP, - STATE(4623), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6950), 1, - sym__abstract_declarator, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7491), 9, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [231554] = 15, + ACTIONS(6561), 1, + anon_sym_COLON_COLON, + STATE(5323), 1, + sym__scope_resolution, + STATE(5854), 1, + sym__declarator, + STATE(7249), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [186453] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, - anon_sym_requires, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6554), 1, - sym_gnu_asm_expression, - STATE(6879), 1, - sym_requires_clause, - STATE(7191), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(8194), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3012), 1, + sym__class_declaration, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3627), 1, + sym_field_declaration_list, + STATE(5057), 1, + sym_ms_declspec_modifier, + STATE(5987), 1, + sym__scope_resolution, + STATE(6333), 1, + sym_virtual_specifier, + STATE(7065), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6555), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6711), 2, + STATE(3396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5061), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6717), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [231608] = 13, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4829), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [186532] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6598), 1, - sym_trailing_return_type, - STATE(6643), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5318), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8090), 1, + anon_sym_COLON_COLON, + ACTIONS(8216), 1, + sym_identifier, + STATE(2356), 1, + sym_template_type, + STATE(2411), 1, + sym_field_declaration_list, + STATE(2462), 1, + sym__class_declaration_item, + STATE(2463), 1, + sym__class_declaration, + STATE(5047), 1, + sym_ms_declspec_modifier, + STATE(5965), 1, + sym__scope_resolution, + STATE(6284), 1, + sym_virtual_specifier, + STATE(7049), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6326), 2, + STATE(2119), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5055), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 7, - anon_sym_COMMA, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4812), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [186611] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [231658] = 11, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(2695), 1, + anon_sym_STAR, + ACTIONS(2697), 1, + anon_sym_AMP, + ACTIONS(4792), 1, + sym_identifier, + ACTIONS(5475), 1, + anon_sym_COLON_COLON, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5318), 1, + sym__scope_resolution, + STATE(6000), 1, + sym__declarator, + STATE(7657), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [186678] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7421), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, anon_sym_LPAREN2, - ACTIONS(7429), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(2695), 1, + anon_sym_STAR, + ACTIONS(2697), 1, + anon_sym_AMP, + ACTIONS(4792), 1, + sym_identifier, + ACTIONS(5475), 1, + anon_sym_COLON_COLON, + ACTIONS(6497), 1, anon_sym_LBRACK, - ACTIONS(7866), 1, + STATE(5318), 1, + sym__scope_resolution, + STATE(6017), 1, + sym__declarator, + STATE(7657), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [186745] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(7927), 1, + anon_sym_LT, + STATE(4491), 1, + sym_template_argument_list, + ACTIONS(4059), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4067), 24, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(7868), 1, anon_sym_AMP_AMP, - ACTIONS(7870), 1, - anon_sym_AMP, - STATE(4638), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(6916), 1, - sym__abstract_declarator, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7491), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [231704] = 14, + [186788] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8774), 1, - sym_identifier, - ACTIONS(8820), 1, - anon_sym_requires, - ACTIONS(8889), 1, + ACTIONS(2691), 1, anon_sym_LPAREN2, - STATE(2479), 1, - sym_template_type, - STATE(6621), 1, - sym_lambda_capture_specifier, - STATE(7275), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(2695), 1, + anon_sym_STAR, + ACTIONS(2697), 1, + anon_sym_AMP, + ACTIONS(4792), 1, + sym_identifier, + ACTIONS(5475), 1, + anon_sym_COLON_COLON, + ACTIONS(6497), 1, + anon_sym_LBRACK, + STATE(5318), 1, sym__scope_resolution, - ACTIONS(8933), 2, - sym_true, - sym_false, - STATE(9648), 2, + STATE(6019), 1, + sym__declarator, + STATE(7657), 1, + sym_ms_based_modifier, + STATE(7683), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(4622), 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, - [231756] = 14, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [186855] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8647), 1, + ACTIONS(4635), 1, anon_sym_COLON_COLON, - ACTIONS(8780), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, sym_identifier, - ACTIONS(8847), 1, - anon_sym_requires, - ACTIONS(8923), 1, - anon_sym_LPAREN2, - STATE(3227), 1, + STATE(2542), 1, sym_template_type, - STATE(6642), 1, - sym_lambda_capture_specifier, - STATE(7282), 1, + STATE(3012), 1, + sym__class_declaration, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, sym__scope_resolution, - ACTIONS(8935), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4294), 8, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3561), 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, - [231808] = 14, + STATE(5063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [186934] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2691), 1, + anon_sym_LPAREN2, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6497), 1, anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(6565), 1, + anon_sym_STAR, + ACTIONS(6567), 1, + anon_sym_AMP_AMP, + ACTIONS(6569), 1, + anon_sym_AMP, + STATE(5245), 1, + sym__scope_resolution, + STATE(5831), 1, + sym__declarator, + STATE(7308), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [187001] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7318), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6951), 1, anon_sym_COLON_COLON, - ACTIONS(8776), 1, + ACTIONS(7881), 1, + anon_sym_LBRACE, + ACTIONS(8194), 1, sym_identifier, - ACTIONS(8937), 1, - anon_sym_LPAREN2, - ACTIONS(8941), 1, - anon_sym_requires, - STATE(5620), 1, + STATE(2542), 1, sym_template_type, - STATE(6680), 1, - sym_lambda_capture_specifier, - STATE(7289), 1, + STATE(4458), 1, + sym_field_declaration_list, + STATE(4485), 1, + sym__class_declaration_item, + STATE(4487), 1, + sym__class_declaration, + STATE(5050), 1, + sym_ms_declspec_modifier, + STATE(5987), 1, sym__scope_resolution, - ACTIONS(8939), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(7001), 8, + STATE(6289), 1, + sym_virtual_specifier, + STATE(7025), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(4361), 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, - [231860] = 14, + STATE(5048), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4830), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [187080] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7318), 1, - anon_sym_COLON_COLON, - ACTIONS(8776), 1, - sym_identifier, - ACTIONS(8937), 1, + ACTIONS(2691), 1, anon_sym_LPAREN2, - ACTIONS(8941), 1, - anon_sym_requires, - STATE(5620), 1, - sym_template_type, - STATE(6680), 1, - sym_lambda_capture_specifier, - STATE(7289), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6565), 1, + anon_sym_STAR, + ACTIONS(6567), 1, + anon_sym_AMP_AMP, + ACTIONS(6569), 1, + anon_sym_AMP, + STATE(5245), 1, sym__scope_resolution, - ACTIONS(8943), 2, - sym_true, - sym_false, - STATE(9648), 2, + STATE(5944), 1, + sym__declarator, + STATE(7308), 1, + sym_ms_based_modifier, + STATE(7683), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(6994), 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, - [231912] = 14, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [187147] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7296), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8115), 1, anon_sym_COLON_COLON, - ACTIONS(8770), 1, + ACTIONS(8229), 1, sym_identifier, - ACTIONS(8839), 1, - anon_sym_requires, - ACTIONS(8945), 1, - anon_sym_LPAREN2, - STATE(3296), 1, + STATE(2422), 1, sym_template_type, - STATE(6641), 1, - sym_lambda_capture_specifier, - STATE(7297), 1, + STATE(2602), 1, + sym_field_declaration_list, + STATE(2821), 1, + sym__class_declaration_item, + STATE(2823), 1, + sym__class_declaration, + STATE(5126), 1, + sym_ms_declspec_modifier, + STATE(5964), 1, sym__scope_resolution, - ACTIONS(8947), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(7069), 8, + STATE(6223), 1, + sym_virtual_specifier, + STATE(6920), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2328), 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, - [231964] = 14, + STATE(5122), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4813), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [187226] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8679), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6917), 1, anon_sym_COLON_COLON, - ACTIONS(8784), 1, + ACTIONS(7881), 1, + anon_sym_LBRACE, + ACTIONS(8190), 1, sym_identifier, - ACTIONS(8855), 1, - anon_sym_requires, - ACTIONS(8949), 1, - anon_sym_LPAREN2, - STATE(3180), 1, + STATE(2542), 1, sym_template_type, - STATE(6619), 1, - sym_lambda_capture_specifier, - STATE(7293), 1, + STATE(4458), 1, + sym_field_declaration_list, + STATE(4484), 1, + sym__class_declaration, + STATE(4485), 1, + sym__class_declaration_item, + STATE(5058), 1, + sym_ms_declspec_modifier, + STATE(5982), 1, sym__scope_resolution, - ACTIONS(8951), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4221), 8, + STATE(6289), 1, + sym_virtual_specifier, + STATE(7025), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(4361), 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, - [232016] = 14, + STATE(5076), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4818), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [187305] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8585), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6917), 1, anon_sym_COLON_COLON, - ACTIONS(8778), 1, + ACTIONS(7881), 1, + anon_sym_LBRACE, + ACTIONS(8190), 1, sym_identifier, - ACTIONS(8831), 1, - anon_sym_requires, - ACTIONS(8953), 1, - anon_sym_LPAREN2, - STATE(3080), 1, + STATE(2542), 1, sym_template_type, - STATE(6635), 1, - sym_lambda_capture_specifier, - STATE(7278), 1, + STATE(4458), 1, + sym_field_declaration_list, + STATE(4485), 1, + sym__class_declaration_item, + STATE(4488), 1, + sym__class_declaration, + STATE(5058), 1, + sym_ms_declspec_modifier, + STATE(5982), 1, sym__scope_resolution, - ACTIONS(8955), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3559), 8, + STATE(6289), 1, + sym_virtual_specifier, + STATE(7025), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(4361), 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, - [232068] = 14, + STATE(5076), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4818), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [187384] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8585), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6917), 1, anon_sym_COLON_COLON, - ACTIONS(8778), 1, + ACTIONS(7881), 1, + anon_sym_LBRACE, + ACTIONS(8190), 1, sym_identifier, - ACTIONS(8831), 1, - anon_sym_requires, - ACTIONS(8953), 1, - anon_sym_LPAREN2, - STATE(3080), 1, + STATE(2542), 1, sym_template_type, - STATE(6635), 1, - sym_lambda_capture_specifier, - STATE(7278), 1, + STATE(4458), 1, + sym_field_declaration_list, + STATE(4485), 1, + sym__class_declaration_item, + STATE(4487), 1, + sym__class_declaration, + STATE(5058), 1, + sym_ms_declspec_modifier, + STATE(5982), 1, sym__scope_resolution, - ACTIONS(8957), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3558), 8, + STATE(6289), 1, + sym_virtual_specifier, + STATE(7025), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(4361), 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, - [232120] = 14, + STATE(5076), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4818), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [187463] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8679), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5548), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8034), 1, anon_sym_COLON_COLON, - ACTIONS(8784), 1, + ACTIONS(8237), 1, sym_identifier, - ACTIONS(8855), 1, - anon_sym_requires, - ACTIONS(8949), 1, - anon_sym_LPAREN2, - STATE(3180), 1, + STATE(2586), 1, sym_template_type, - STATE(6619), 1, - sym_lambda_capture_specifier, - STATE(7293), 1, + STATE(2960), 1, + sym_field_declaration_list, + STATE(3322), 1, + sym__class_declaration, + STATE(3325), 1, + sym__class_declaration_item, + STATE(5094), 1, + sym_ms_declspec_modifier, + STATE(5960), 1, sym__scope_resolution, - ACTIONS(8959), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4175), 8, + STATE(6323), 1, + sym_virtual_specifier, + STATE(7174), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2402), 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, - [232172] = 14, + STATE(5096), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4824), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [187542] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7296), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5469), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6994), 1, anon_sym_COLON_COLON, - ACTIONS(8770), 1, + ACTIONS(8202), 1, sym_identifier, - ACTIONS(8839), 1, - anon_sym_requires, - ACTIONS(8945), 1, - anon_sym_LPAREN2, - STATE(3296), 1, + STATE(2511), 1, sym_template_type, - STATE(6641), 1, - sym_lambda_capture_specifier, - STATE(7297), 1, + STATE(2621), 1, + sym_field_declaration_list, + STATE(2824), 1, + sym__class_declaration, + STATE(2861), 1, + sym__class_declaration_item, + STATE(5066), 1, + sym_ms_declspec_modifier, + STATE(5956), 1, sym__scope_resolution, - ACTIONS(8961), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4937), 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, - [232224] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, - anon_sym_requires, - STATE(6532), 1, - sym_gnu_asm_expression, - STATE(6891), 1, - sym_requires_clause, - STATE(7187), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + STATE(6411), 1, + sym_virtual_specifier, + STATE(6886), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6560), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6736), 2, + STATE(2361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5067), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [232278] = 15, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4809), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [187621] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, - anon_sym_requires, - ACTIONS(8746), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + ACTIONS(8188), 1, + anon_sym_COLON, + STATE(4436), 1, + sym__enum_base_clause, + STATE(4439), 1, + sym_enumerator_list, + STATE(4527), 1, + sym_attribute_specifier, + ACTIONS(5465), 3, + anon_sym_AMP, anon_sym_LBRACK, - STATE(6566), 1, - sym_gnu_asm_expression, - STATE(6885), 1, - sym_requires_clause, - STATE(7188), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + anon_sym_const, + ACTIONS(5463), 20, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_LBRACK_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(6570), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6716), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6742), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8744), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [232332] = 14, + anon_sym_requires, + [187670] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7280), 1, + ACTIONS(4635), 1, anon_sym_COLON_COLON, - ACTIONS(8764), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, sym_identifier, - ACTIONS(8963), 1, - anon_sym_LPAREN2, - ACTIONS(8967), 1, - anon_sym_requires, - STATE(3369), 1, + STATE(2542), 1, sym_template_type, - STATE(6684), 1, - sym_lambda_capture_specifier, - STATE(7261), 1, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3090), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, sym__scope_resolution, - ACTIONS(8965), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(7195), 8, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3590), 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, - [232384] = 14, + STATE(5063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [187749] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7280), 1, + ACTIONS(4635), 1, anon_sym_COLON_COLON, - ACTIONS(8764), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, sym_identifier, - ACTIONS(8963), 1, - anon_sym_LPAREN2, - ACTIONS(8967), 1, - anon_sym_requires, - STATE(3369), 1, + STATE(2542), 1, sym_template_type, - STATE(6684), 1, - sym_lambda_capture_specifier, - STATE(7261), 1, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3090), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, sym__scope_resolution, - ACTIONS(8969), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6505), 8, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3561), 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, - [232436] = 14, + STATE(5063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [187828] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8701), 1, + ACTIONS(4635), 1, anon_sym_COLON_COLON, - ACTIONS(8790), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, sym_identifier, - ACTIONS(8839), 1, - anon_sym_requires, - ACTIONS(8945), 1, - anon_sym_LPAREN2, - STATE(3296), 1, + STATE(2542), 1, sym_template_type, - STATE(6641), 1, - sym_lambda_capture_specifier, - STATE(7302), 1, + STATE(3012), 1, + sym__class_declaration, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, sym__scope_resolution, - ACTIONS(8961), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4937), 8, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2943), 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, - [232488] = 14, + STATE(5063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [187907] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7300), 1, - anon_sym_COLON_COLON, - ACTIONS(8766), 1, - sym_identifier, - ACTIONS(8927), 1, + ACTIONS(2691), 1, anon_sym_LPAREN2, - ACTIONS(8931), 1, - anon_sym_requires, - STATE(3369), 1, - sym_template_type, - STATE(6637), 1, - sym_lambda_capture_specifier, - STATE(7288), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(6497), 1, + anon_sym_LBRACK, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6555), 1, + anon_sym_STAR, + ACTIONS(6557), 1, + anon_sym_AMP_AMP, + ACTIONS(6559), 1, + anon_sym_AMP, + ACTIONS(6561), 1, + anon_sym_COLON_COLON, + STATE(5323), 1, sym__scope_resolution, - ACTIONS(8971), 2, - sym_true, - sym_false, - STATE(9648), 2, + STATE(5851), 1, + sym__declarator, + STATE(7249), 1, + sym_ms_based_modifier, + STATE(7683), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(6484), 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, - [232540] = 14, + STATE(5742), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [187974] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7280), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5548), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8034), 1, anon_sym_COLON_COLON, - ACTIONS(8764), 1, + ACTIONS(8237), 1, sym_identifier, - ACTIONS(8963), 1, - anon_sym_LPAREN2, - ACTIONS(8967), 1, - anon_sym_requires, - STATE(3369), 1, + STATE(2586), 1, sym_template_type, - STATE(6684), 1, - sym_lambda_capture_specifier, - STATE(7261), 1, + STATE(2960), 1, + sym_field_declaration_list, + STATE(3324), 1, + sym__class_declaration, + STATE(3325), 1, + sym__class_declaration_item, + STATE(5094), 1, + sym_ms_declspec_modifier, + STATE(5960), 1, sym__scope_resolution, - ACTIONS(8973), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(7159), 8, + STATE(6323), 1, + sym_virtual_specifier, + STATE(7174), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2402), 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, - [232592] = 14, + STATE(5096), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4824), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [188053] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7318), 1, + ACTIONS(4635), 1, anon_sym_COLON_COLON, - ACTIONS(8776), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, sym_identifier, - ACTIONS(8937), 1, - anon_sym_LPAREN2, - ACTIONS(8941), 1, - anon_sym_requires, - STATE(5620), 1, + STATE(2542), 1, sym_template_type, - STATE(6680), 1, - sym_lambda_capture_specifier, - STATE(7289), 1, + STATE(3012), 1, + sym__class_declaration, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, sym__scope_resolution, - ACTIONS(8975), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(7018), 8, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3590), 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, - [232644] = 14, + STATE(5063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [188132] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7255), 1, + ACTIONS(4635), 1, anon_sym_COLON_COLON, - ACTIONS(8766), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, sym_identifier, - ACTIONS(8963), 1, - anon_sym_LPAREN2, - ACTIONS(8967), 1, - anon_sym_requires, - STATE(3369), 1, + STATE(2542), 1, sym_template_type, - STATE(6684), 1, - sym_lambda_capture_specifier, - STATE(7279), 1, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3089), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, sym__scope_resolution, - ACTIONS(8969), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6505), 8, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3590), 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, - [232696] = 14, + STATE(5063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [188211] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7255), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5548), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8034), 1, anon_sym_COLON_COLON, - ACTIONS(8766), 1, + ACTIONS(8237), 1, sym_identifier, - ACTIONS(8963), 1, - anon_sym_LPAREN2, - ACTIONS(8967), 1, - anon_sym_requires, - STATE(3369), 1, + STATE(2586), 1, sym_template_type, - STATE(6684), 1, - sym_lambda_capture_specifier, - STATE(7279), 1, + STATE(2960), 1, + sym_field_declaration_list, + STATE(3325), 1, + sym__class_declaration_item, + STATE(3327), 1, + sym__class_declaration, + STATE(5094), 1, + sym_ms_declspec_modifier, + STATE(5960), 1, sym__scope_resolution, - ACTIONS(8977), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6503), 8, + STATE(6323), 1, + sym_virtual_specifier, + STATE(7174), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2402), 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, - [232748] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8820), 1, - anon_sym_requires, - ACTIONS(8889), 1, - anon_sym_LPAREN2, - ACTIONS(8893), 1, - sym_identifier, - ACTIONS(8895), 1, - anon_sym_COLON_COLON, - STATE(2479), 1, - sym_template_type, - STATE(6621), 1, - sym_lambda_capture_specifier, - STATE(7259), 1, - sym__scope_resolution, - ACTIONS(8979), 2, - sym_true, - sym_false, - STATE(9648), 2, + STATE(5096), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6834), 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, - [232800] = 14, + STATE(4824), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [188290] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8820), 1, - anon_sym_requires, - ACTIONS(8889), 1, - anon_sym_LPAREN2, - ACTIONS(8893), 1, - sym_identifier, - ACTIONS(8895), 1, + ACTIONS(4635), 1, anon_sym_COLON_COLON, - STATE(2479), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, sym_template_type, - STATE(6621), 1, - sym_lambda_capture_specifier, - STATE(7259), 1, + STATE(3015), 1, + sym__class_declaration_item, + STATE(3089), 1, + sym__class_declaration, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5117), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, sym__scope_resolution, - ACTIONS(8933), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4622), 8, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3561), 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, - [232852] = 14, + STATE(5063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4821), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [188369] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7300), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6951), 1, anon_sym_COLON_COLON, - ACTIONS(8766), 1, + ACTIONS(7881), 1, + anon_sym_LBRACE, + ACTIONS(8194), 1, sym_identifier, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(8931), 1, - anon_sym_requires, - STATE(3369), 1, + STATE(2542), 1, sym_template_type, - STATE(6637), 1, - sym_lambda_capture_specifier, - STATE(7288), 1, + STATE(4458), 1, + sym_field_declaration_list, + STATE(4484), 1, + sym__class_declaration, + STATE(4485), 1, + sym__class_declaration_item, + STATE(5050), 1, + sym_ms_declspec_modifier, + STATE(5987), 1, sym__scope_resolution, - ACTIONS(8981), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(2345), 8, + STATE(6289), 1, + sym_virtual_specifier, + STATE(7025), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(4361), 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, - [232904] = 13, + STATE(5048), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4830), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [188448] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(8239), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7216), 1, - anon_sym_requires, - STATE(6605), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6210), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6361), 2, + STATE(4800), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 7, + ACTIONS(5632), 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(5634), 15, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, anon_sym_try, - [232954] = 15, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_requires, + [188488] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(8054), 1, anon_sym___attribute__, - ACTIONS(7204), 1, + STATE(4911), 1, + sym_attribute_specifier, + ACTIONS(5479), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5477), 24, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, anon_sym_requires, - STATE(6523), 1, - sym_gnu_asm_expression, - STATE(6894), 1, - sym_requires_clause, - STATE(7184), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + [188528] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8054), 1, + anon_sym___attribute__, + STATE(4908), 1, + sym_attribute_specifier, + ACTIONS(5498), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5496), 24, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(6472), 2, + anon_sym_try, + anon_sym_requires, + [188568] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8054), 1, + anon_sym___attribute__, + STATE(4892), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6713), 2, + ACTIONS(5536), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5534), 24, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [188608] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5469), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(7998), 1, + anon_sym_COLON_COLON, + ACTIONS(8200), 1, + sym_identifier, + STATE(2511), 1, + sym_template_type, + STATE(2621), 1, + sym_field_declaration_list, + STATE(2837), 1, + sym__class_declaration_item, + STATE(5123), 1, + sym_ms_declspec_modifier, + STATE(5951), 1, + sym__scope_resolution, + STATE(6411), 1, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6738), 2, + STATE(6886), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5133), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [233008] = 13, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5509), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [188684] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(8054), 1, anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(8859), 1, + STATE(4919), 1, + sym_attribute_specifier, + ACTIONS(5504), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5502), 24, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(6601), 1, - sym_trailing_return_type, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(6164), 2, + anon_sym_try, + anon_sym_requires, + [188724] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8054), 1, + anon_sym___attribute__, + STATE(4906), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6460), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 7, - anon_sym_COMMA, + ACTIONS(5473), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5471), 24, 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_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_try, - [233058] = 13, + anon_sym_requires, + [188764] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(8859), 1, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(7534), 1, + anon_sym_COLON, + ACTIONS(7666), 1, anon_sym_LBRACK, - STATE(6601), 1, - sym_trailing_return_type, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(5488), 2, + ACTIONS(7956), 1, + anon_sym_const, + ACTIONS(8138), 1, + anon_sym_STAR, + ACTIONS(8140), 1, + anon_sym_AMP_AMP, + ACTIONS(8142), 1, + anon_sym_AMP, + STATE(3661), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6158), 1, + sym__abstract_declarator, + STATE(4975), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7954), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [188822] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8054), 1, + anon_sym___attribute__, + STATE(4923), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6460), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 7, - anon_sym_COMMA, + ACTIONS(5528), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5526), 24, 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_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_try, - [233108] = 14, + anon_sym_requires, + [188862] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(3906), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5469), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6994), 1, anon_sym_COLON_COLON, - ACTIONS(8764), 1, + ACTIONS(8202), 1, sym_identifier, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(8931), 1, - anon_sym_requires, - STATE(3369), 1, + STATE(2511), 1, sym_template_type, - STATE(6637), 1, - sym_lambda_capture_specifier, - STATE(7295), 1, + STATE(2621), 1, + sym_field_declaration_list, + STATE(2837), 1, + sym__class_declaration_item, + STATE(5116), 1, + sym_ms_declspec_modifier, + STATE(5956), 1, sym__scope_resolution, - ACTIONS(8983), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6887), 8, + STATE(6411), 1, + sym_virtual_specifier, + STATE(6886), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2361), 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, - [233160] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8701), 1, - anon_sym_COLON_COLON, - ACTIONS(8790), 1, - sym_identifier, - ACTIONS(8839), 1, - anon_sym_requires, - ACTIONS(8945), 1, - anon_sym_LPAREN2, - STATE(3296), 1, - sym_template_type, - STATE(6641), 1, - sym_lambda_capture_specifier, - STATE(7302), 1, - sym__scope_resolution, - ACTIONS(8985), 2, - sym_true, - sym_false, - STATE(9648), 2, + STATE(5041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5441), 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, - [233212] = 13, + STATE(5509), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [188938] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6582), 1, - sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6192), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6335), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 7, - anon_sym_COMMA, + ACTIONS(4603), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(5420), 1, anon_sym_COLON, - anon_sym_try, - [233262] = 14, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_const, + ACTIONS(8138), 1, + anon_sym_STAR, + ACTIONS(8140), 1, + anon_sym_AMP_AMP, + ACTIONS(8142), 1, + anon_sym_AMP, + STATE(3661), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6166), 1, + sym__abstract_declarator, + STATE(4825), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7954), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [188996] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(8931), 1, - anon_sym_requires, - ACTIONS(8987), 1, - sym_identifier, - ACTIONS(8989), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6917), 1, anon_sym_COLON_COLON, - STATE(3035), 1, + ACTIONS(8190), 1, + sym_identifier, + STATE(2542), 1, sym_template_type, - STATE(6699), 1, - sym_lambda_capture_specifier, - STATE(7268), 1, + STATE(3131), 1, + sym__class_declaration_item, + STATE(3627), 1, + sym_field_declaration_list, + STATE(5069), 1, + sym_ms_declspec_modifier, + STATE(5982), 1, sym__scope_resolution, - ACTIONS(8981), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(2345), 8, + STATE(6333), 1, + sym_virtual_specifier, + STATE(7065), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3396), 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, - [233314] = 14, + STATE(5068), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5509), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [189072] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(8931), 1, - anon_sym_requires, - ACTIONS(8987), 1, - sym_identifier, - ACTIONS(8989), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5318), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8090), 1, anon_sym_COLON_COLON, - STATE(3035), 1, + ACTIONS(8216), 1, + sym_identifier, + STATE(2356), 1, sym_template_type, - STATE(6699), 1, - sym_lambda_capture_specifier, - STATE(7268), 1, + STATE(2411), 1, + sym_field_declaration_list, + STATE(2443), 1, + sym__class_declaration_item, + STATE(5087), 1, + sym_ms_declspec_modifier, + STATE(5965), 1, sym__scope_resolution, - ACTIONS(8991), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3046), 8, + STATE(6284), 1, + sym_virtual_specifier, + STATE(7049), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2119), 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, - [233366] = 14, + STATE(5083), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5509), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [189148] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(3906), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8115), 1, anon_sym_COLON_COLON, - ACTIONS(8764), 1, + ACTIONS(8229), 1, sym_identifier, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(8931), 1, - anon_sym_requires, - STATE(3369), 1, + STATE(2422), 1, sym_template_type, - STATE(6637), 1, - sym_lambda_capture_specifier, - STATE(7295), 1, + STATE(2602), 1, + sym_field_declaration_list, + STATE(2866), 1, + sym__class_declaration_item, + STATE(5108), 1, + sym_ms_declspec_modifier, + STATE(5964), 1, sym__scope_resolution, - ACTIONS(8993), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6831), 8, + STATE(6223), 1, + sym_virtual_specifier, + STATE(6920), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2328), 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, - [233418] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8997), 1, - anon_sym_LPAREN2, - STATE(6311), 1, - sym_preproc_argument_list, - ACTIONS(8999), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(8995), 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, - [233452] = 13, + STATE(5110), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5509), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [189224] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(8054), 1, anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6582), 1, - sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(5488), 2, + STATE(4900), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6335), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 7, - anon_sym_COMMA, + ACTIONS(5494), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5492), 24, 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_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_try, - [233502] = 23, + anon_sym_requires, + [189264] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(131), 1, - anon_sym_operator, - ACTIONS(2056), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(2715), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6965), 1, anon_sym_COLON_COLON, - ACTIONS(8010), 1, - anon_sym_STAR, - ACTIONS(9001), 1, + ACTIONS(8056), 1, + anon_sym_LBRACE, + ACTIONS(8192), 1, sym_identifier, - ACTIONS(9003), 1, - anon_sym_template, - STATE(3377), 1, - sym_operator_name, - STATE(3379), 1, - sym_qualified_type_identifier, - STATE(3398), 1, - sym_qualified_identifier, - STATE(3405), 1, - sym_dependent_type_identifier, - STATE(3408), 1, - sym_dependent_identifier, - STATE(3410), 1, - sym_destructor_name, - STATE(3416), 1, - sym_template_function, - STATE(3418), 1, + STATE(4482), 1, sym_template_type, - STATE(3420), 1, - sym_pointer_type_declarator, - STATE(6201), 1, + STATE(4819), 1, + sym_field_declaration_list, + STATE(4868), 1, + sym__class_declaration_item, + STATE(5056), 1, + sym_ms_declspec_modifier, + STATE(5975), 1, sym__scope_resolution, - STATE(7817), 1, - sym_qualified_operator_cast_identifier, - STATE(7826), 1, - sym_operator_cast, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(9648), 1, + STATE(6376), 1, + sym_virtual_specifier, + STATE(7099), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(4492), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5053), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, sym_decltype, - [233572] = 14, + sym_dependent_type_identifier, + STATE(5509), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [189340] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2030), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(7943), 1, + anon_sym_LT, + STATE(2516), 1, + sym_template_argument_list, + ACTIONS(4059), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4067), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, anon_sym_LBRACK, - ACTIONS(2056), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, anon_sym_decltype, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(8931), 1, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_requires, - ACTIONS(8987), 1, - sym_identifier, - ACTIONS(8989), 1, - anon_sym_COLON_COLON, - STATE(3035), 1, - sym_template_type, - STATE(6699), 1, - sym_lambda_capture_specifier, - STATE(7268), 1, - sym__scope_resolution, - ACTIONS(9005), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3049), 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, - [233624] = 14, + [189382] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7233), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5343), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6897), 1, anon_sym_COLON_COLON, - ACTIONS(8795), 1, + ACTIONS(8231), 1, sym_identifier, - ACTIONS(8820), 1, - anon_sym_requires, - ACTIONS(8889), 1, - anon_sym_LPAREN2, - STATE(2479), 1, + STATE(1892), 1, sym_template_type, - STATE(6621), 1, - sym_lambda_capture_specifier, - STATE(7300), 1, + STATE(1941), 1, + sym__class_declaration_item, + STATE(4945), 1, + sym_field_declaration_list, + STATE(5045), 1, + sym_ms_declspec_modifier, + STATE(5966), 1, sym__scope_resolution, - ACTIONS(8933), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4622), 8, + STATE(6403), 1, + sym_virtual_specifier, + STATE(6904), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(4540), 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, - [233676] = 14, + STATE(5044), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5509), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [189458] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7233), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6917), 1, anon_sym_COLON_COLON, - ACTIONS(8795), 1, + ACTIONS(7881), 1, + anon_sym_LBRACE, + ACTIONS(8190), 1, sym_identifier, - ACTIONS(8820), 1, - anon_sym_requires, - ACTIONS(8889), 1, - anon_sym_LPAREN2, - STATE(2479), 1, + STATE(2542), 1, sym_template_type, - STATE(6621), 1, - sym_lambda_capture_specifier, - STATE(7300), 1, + STATE(4458), 1, + sym_field_declaration_list, + STATE(4515), 1, + sym__class_declaration_item, + STATE(5054), 1, + sym_ms_declspec_modifier, + STATE(5982), 1, sym__scope_resolution, - ACTIONS(9007), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(7281), 8, + STATE(6289), 1, + sym_virtual_specifier, + STATE(7025), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(4361), 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, - [233728] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8108), 1, - anon_sym_STAR, - ACTIONS(9009), 1, - sym_identifier, - ACTIONS(9011), 1, - anon_sym_TILDE, - ACTIONS(9013), 1, - anon_sym_COLON_COLON, - ACTIONS(9015), 1, - anon_sym_template, - ACTIONS(9017), 1, - anon_sym_operator, - STATE(3377), 1, - sym_operator_name, - STATE(3379), 1, sym_qualified_type_identifier, - STATE(3398), 1, - sym_qualified_identifier, - STATE(3405), 1, - sym_dependent_type_identifier, - STATE(3408), 1, - sym_dependent_identifier, - STATE(3410), 1, - sym_destructor_name, - STATE(3416), 1, - sym_template_function, - STATE(3418), 1, - sym_template_type, - STATE(3420), 1, - sym_pointer_type_declarator, - STATE(6205), 1, - sym__scope_resolution, - STATE(7817), 1, - sym_qualified_operator_cast_identifier, - STATE(7826), 1, - sym_operator_cast, - STATE(9550), 1, - sym_ms_based_modifier, - STATE(9648), 1, + STATE(5070), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, sym_decltype, - [233798] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(131), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(3934), 1, - anon_sym_COLON_COLON, - ACTIONS(8010), 1, - anon_sym_STAR, - ACTIONS(9019), 1, - sym_identifier, - ACTIONS(9021), 1, - anon_sym_template, - STATE(3377), 1, - sym_operator_name, - STATE(3379), 1, - sym_qualified_type_identifier, - STATE(3398), 1, - sym_qualified_identifier, - STATE(3405), 1, sym_dependent_type_identifier, - STATE(3408), 1, - sym_dependent_identifier, - STATE(3410), 1, - sym_destructor_name, - STATE(3416), 1, - sym_template_function, - STATE(3418), 1, - sym_template_type, - STATE(3420), 1, - sym_pointer_type_declarator, - STATE(6206), 1, - sym__scope_resolution, - STATE(7817), 1, - sym_qualified_operator_cast_identifier, - STATE(7826), 1, - sym_operator_cast, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(9648), 1, - sym_decltype, - [233868] = 22, + STATE(5509), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [189534] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(8054), 1, anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(8875), 1, + STATE(4895), 1, + sym_attribute_specifier, + ACTIONS(5487), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5485), 24, anon_sym_LPAREN2, - ACTIONS(8881), 1, - anon_sym_LBRACK, - ACTIONS(8885), 1, - anon_sym_COLON, - ACTIONS(9023), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - ACTIONS(9025), 1, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(9027), 1, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(9029), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_try, - STATE(2941), 1, - sym_compound_statement, - STATE(2944), 1, - sym_default_method_clause, - STATE(2945), 1, - sym_delete_method_clause, - STATE(2946), 1, - sym_try_statement, - STATE(4523), 1, + anon_sym_requires, + [189574] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, + anon_sym_COLON, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_const, + ACTIONS(8138), 1, + anon_sym_STAR, + ACTIONS(8140), 1, + anon_sym_AMP_AMP, + ACTIONS(8142), 1, + anon_sym_AMP, + STATE(3661), 1, sym_parameter_list, - STATE(7190), 1, + STATE(5604), 1, sym__function_declarator_seq, - STATE(7522), 1, - sym_bitfield_clause, - STATE(7574), 1, - aux_sym_field_declaration_repeat1, - STATE(7575), 1, - sym_initializer_list, - STATE(9518), 1, - sym_attribute_specifier, - STATE(7078), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [233936] = 14, + STATE(6140), 1, + sym__abstract_declarator, + STATE(4975), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7954), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [189632] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7255), 1, + ACTIONS(4635), 1, anon_sym_COLON_COLON, - ACTIONS(8766), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, sym_identifier, - ACTIONS(8963), 1, - anon_sym_LPAREN2, - ACTIONS(8967), 1, - anon_sym_requires, - STATE(3369), 1, + STATE(2542), 1, sym_template_type, - STATE(6684), 1, - sym_lambda_capture_specifier, - STATE(7279), 1, + STATE(3131), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5081), 1, + sym_ms_declspec_modifier, + STATE(5992), 1, sym__scope_resolution, - ACTIONS(9031), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6473), 8, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2943), 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, - [233988] = 14, + STATE(5086), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5509), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [189708] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7296), 1, + ACTIONS(4611), 1, anon_sym_COLON_COLON, - ACTIONS(8770), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8210), 1, sym_identifier, - ACTIONS(8839), 1, - anon_sym_requires, - ACTIONS(8945), 1, - anon_sym_LPAREN2, - STATE(3296), 1, + STATE(2542), 1, sym_template_type, - STATE(6641), 1, - sym_lambda_capture_specifier, - STATE(7297), 1, + STATE(3131), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5112), 1, + sym_ms_declspec_modifier, + STATE(5953), 1, sym__scope_resolution, - ACTIONS(9033), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(7083), 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, - [234040] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(6574), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6281), 2, + STATE(2943), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5119), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [234090] = 13, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5509), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [189784] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(8054), 1, anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(6574), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6200), 2, + STATE(4887), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6281), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 7, - anon_sym_COMMA, + ACTIONS(5508), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5506), 24, 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_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_try, - [234140] = 14, + anon_sym_requires, + [189824] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(3906), 1, + ACTIONS(4798), 1, + anon_sym___attribute__, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5548), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8034), 1, anon_sym_COLON_COLON, - ACTIONS(8764), 1, + ACTIONS(8237), 1, sym_identifier, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(8931), 1, - anon_sym_requires, - STATE(3369), 1, + STATE(2586), 1, sym_template_type, - STATE(6637), 1, - sym_lambda_capture_specifier, - STATE(7295), 1, + STATE(2960), 1, + sym_field_declaration_list, + STATE(3243), 1, + sym__class_declaration_item, + STATE(5042), 1, + sym_ms_declspec_modifier, + STATE(5960), 1, sym__scope_resolution, - ACTIONS(8981), 2, - sym_true, - sym_false, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(2345), 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, - [234192] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9035), 1, - anon_sym_COMMA, - ACTIONS(9037), 1, - anon_sym_RPAREN, - ACTIONS(9043), 1, - anon_sym_SLASH, - ACTIONS(9045), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9047), 1, - anon_sym_AMP_AMP, - ACTIONS(9049), 1, - anon_sym_PIPE, - ACTIONS(9051), 1, - anon_sym_CARET, - ACTIONS(9053), 1, - anon_sym_AMP, - STATE(8164), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(9039), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9041), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9055), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9057), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9059), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(9061), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [234247] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9035), 1, - anon_sym_COMMA, - ACTIONS(9043), 1, - anon_sym_SLASH, - ACTIONS(9045), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9047), 1, - anon_sym_AMP_AMP, - ACTIONS(9049), 1, - anon_sym_PIPE, - ACTIONS(9051), 1, - anon_sym_CARET, - ACTIONS(9053), 1, - anon_sym_AMP, - ACTIONS(9063), 1, - anon_sym_RPAREN, - STATE(8066), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(9039), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9041), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9055), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9057), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9059), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(9061), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [234302] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - STATE(6587), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(6323), 1, + sym_virtual_specifier, + STATE(7174), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6572), 2, + STATE(2402), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5124), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [234351] = 5, - ACTIONS(8995), 1, - anon_sym_LF, - ACTIONS(9065), 1, - anon_sym_LPAREN2, - ACTIONS(9067), 1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5509), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [189900] = 14, + ACTIONS(3), 1, sym_comment, - STATE(6492), 1, - sym_preproc_argument_list, - ACTIONS(8999), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(6202), 1, + anon_sym_COLON, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_const, + ACTIONS(8138), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8140), 1, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8142), 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, - [234384] = 13, + STATE(3661), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6178), 1, + sym__abstract_declarator, + STATE(4975), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7954), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [189958] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6598), 1, - sym_trailing_return_type, - STATE(6643), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5447), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8012), 1, + anon_sym_COLON_COLON, + ACTIONS(8218), 1, + sym_identifier, + STATE(2467), 1, + sym_template_type, + STATE(2774), 1, + sym_field_declaration_list, + STATE(2962), 1, + sym__class_declaration_item, + STATE(5102), 1, + sym_ms_declspec_modifier, + STATE(5980), 1, + sym__scope_resolution, + STATE(6437), 1, + sym_virtual_specifier, + STATE(7126), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6218), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6597), 2, + STATE(2349), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5074), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8865), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [234433] = 13, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5509), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [190034] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - ACTIONS(8863), 1, - anon_sym_LBRACK, - STATE(6593), 1, - sym_trailing_return_type, - STATE(6676), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5343), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8198), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1941), 1, + sym__class_declaration_item, + STATE(2369), 1, + sym_field_declaration_list, + STATE(5103), 1, + sym_ms_declspec_modifier, + STATE(5972), 1, + sym__scope_resolution, + STATE(6317), 1, + sym_virtual_specifier, + STATE(6950), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6519), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6589), 2, + STATE(2167), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5111), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8861), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [234482] = 13, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5509), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [190110] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6582), 1, - sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(5343), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(8227), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1941), 1, + sym__class_declaration_item, + STATE(2369), 1, + sym_field_declaration_list, + STATE(5101), 1, + sym_ms_declspec_modifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(6317), 1, + sym_virtual_specifier, + STATE(6950), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6241), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6578), 2, + STATE(2167), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5071), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8744), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [234531] = 3, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5509), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [190186] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(9071), 1, - anon_sym_LBRACK, - ACTIONS(9069), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [234560] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - STATE(6587), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(8194), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3131), 1, + sym__class_declaration_item, + STATE(3627), 1, + sym_field_declaration_list, + STATE(5073), 1, + sym_ms_declspec_modifier, + STATE(5987), 1, + sym__scope_resolution, + STATE(6333), 1, + sym_virtual_specifier, + STATE(7065), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6224), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6572), 2, + STATE(3396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5105), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [234609] = 13, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5509), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [190262] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6582), 1, - sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(7881), 1, + anon_sym_LBRACE, + ACTIONS(8194), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(4458), 1, + sym_field_declaration_list, + STATE(4515), 1, + sym__class_declaration_item, + STATE(5136), 1, + sym_ms_declspec_modifier, + STATE(5987), 1, + sym__scope_resolution, + STATE(6289), 1, + sym_virtual_specifier, + STATE(7025), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6578), 2, + STATE(4361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5127), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8744), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [234658] = 13, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5509), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [190338] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(8054), 1, anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - STATE(6574), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6222), 2, + STATE(4921), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6610), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 6, + ACTIONS(5483), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5481), 24, 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_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_try, - [234707] = 13, + anon_sym_requires, + [190378] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(8054), 1, anon_sym___attribute__, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6579), 1, - sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(5422), 2, + STATE(4870), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6575), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8744), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5524), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5522), 24, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [234756] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(8746), 1, anon_sym_LBRACK, - STATE(6579), 1, - sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(6227), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6575), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8744), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [234805] = 13, + anon_sym_try, + anon_sym_requires, + [190418] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(8054), 1, anon_sym___attribute__, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - STATE(6608), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6215), 2, + STATE(4917), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6596), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5540), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5538), 24, 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_GT2, - [234854] = 13, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [190458] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4798), 1, anon_sym___attribute__, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6580), 1, - sym_trailing_return_type, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4804), 1, + anon_sym___declspec, + ACTIONS(4808), 1, + anon_sym_alignas, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, + sym_identifier, + ACTIONS(8212), 1, + anon_sym_COLON_COLON, + STATE(2542), 1, + sym_template_type, + STATE(3131), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5079), 1, + sym_ms_declspec_modifier, + STATE(5959), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6603), 2, + STATE(3777), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5080), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8857), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [234903] = 3, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5509), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [190534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3506), 2, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4955), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(3508), 19, + ACTIONS(4957), 24, 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, @@ -573010,11145 +450258,9836 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [234932] = 13, + [190571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(5115), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5117), 25, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(8859), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(6580), 1, - sym_trailing_return_type, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(6230), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6603), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8857), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [234981] = 13, + anon_sym_try, + anon_sym_requires, + [190606] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, + ACTIONS(6845), 1, anon_sym_requires, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6581), 1, - sym_trailing_return_type, - STATE(6643), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6600), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8865), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [235030] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7247), 1, + ACTIONS(6913), 1, anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(8867), 1, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6581), 1, + STATE(5578), 1, sym_trailing_return_type, - STATE(6643), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(5847), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - STATE(6232), 2, + ACTIONS(8072), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6600), 2, + aux_sym_type_definition_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8865), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [235079] = 13, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5031), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [190673] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(7247), 1, + ACTIONS(6985), 1, anon_sym_DASH_GT, - ACTIONS(7249), 1, + ACTIONS(6987), 1, anon_sym_requires, - ACTIONS(8863), 1, + ACTIONS(7898), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7901), 1, anon_sym_LBRACK, - STATE(6583), 1, + STATE(5740), 1, + sym__function_attributes_end, + STATE(5908), 1, sym_trailing_return_type, - STATE(6676), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7893), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6519), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6590), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8861), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [235128] = 13, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5000), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [190740] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(6685), 1, + anon_sym_DASH_GT, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(8244), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(8247), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7239), 1, + ACTIONS(8250), 1, anon_sym_LBRACK, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - STATE(6574), 1, + STATE(5225), 1, + sym__function_attributes_end, + STATE(5298), 1, sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(5488), 2, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6610), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 6, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 7, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [235177] = 13, + [190801] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7216), 1, + ACTIONS(6845), 1, anon_sym_requires, - ACTIONS(7251), 1, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6913), 1, anon_sym_DASH_GT, - STATE(6605), 1, + ACTIONS(7901), 1, + anon_sym_LBRACK, + STATE(5562), 1, sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(5843), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - STATE(6233), 2, + ACTIONS(7893), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6573), 2, + aux_sym_type_definition_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [235226] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9073), 1, - sym_identifier, - ACTIONS(9075), 1, - anon_sym_RPAREN, - ACTIONS(9077), 1, - anon_sym_LPAREN2, - ACTIONS(9079), 1, - anon_sym_defined, - ACTIONS(9085), 1, - sym_number_literal, - ACTIONS(9081), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9083), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9087), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6242), 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, - [235269] = 11, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5027), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [190868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7421), 1, + ACTIONS(5146), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5148), 25, anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(8066), 1, anon_sym_STAR, - ACTIONS(8068), 1, anon_sym_AMP_AMP, - ACTIONS(8070), 1, - anon_sym_AMP, - STATE(4676), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(7149), 1, - sym__abstract_declarator, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7491), 8, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [235314] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(131), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5105), 1, - anon_sym_COLON_COLON, - ACTIONS(8010), 1, - anon_sym_STAR, - ACTIONS(9089), 1, - sym_identifier, - ACTIONS(9091), 1, - anon_sym_template, - STATE(3377), 1, - sym_operator_name, - STATE(3398), 1, - sym_qualified_identifier, - STATE(3408), 1, - sym_dependent_identifier, - STATE(3410), 1, - sym_destructor_name, - STATE(3416), 1, - sym_template_function, - STATE(3420), 1, - sym_pointer_type_declarator, - STATE(6237), 1, - sym__scope_resolution, - STATE(7817), 1, - sym_qualified_operator_cast_identifier, - STATE(7826), 1, - sym_operator_cast, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [235377] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9073), 1, - sym_identifier, - ACTIONS(9077), 1, - anon_sym_LPAREN2, - ACTIONS(9079), 1, - anon_sym_defined, - ACTIONS(9093), 1, - anon_sym_RPAREN, - ACTIONS(9095), 1, - sym_number_literal, - ACTIONS(9081), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9083), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9087), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6214), 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, - [235420] = 13, + [190903] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(6685), 1, + anon_sym_DASH_GT, + ACTIONS(7895), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(7898), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - ACTIONS(8867), 1, + ACTIONS(7901), 1, anon_sym_LBRACK, - STATE(6598), 1, + ACTIONS(7908), 1, + anon_sym_requires, + STATE(5238), 1, + sym__function_attributes_end, + STATE(5335), 1, sym_trailing_return_type, - STATE(6643), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7905), 2, anon_sym_final, anon_sym_override, - STATE(5488), 2, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6501), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6597), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8865), 6, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 7, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [235469] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9073), 1, - sym_identifier, - ACTIONS(9077), 1, - anon_sym_LPAREN2, - ACTIONS(9079), 1, - anon_sym_defined, - ACTIONS(9097), 1, - anon_sym_RPAREN, - ACTIONS(9099), 1, - sym_number_literal, - ACTIONS(9081), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9083), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9087), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6213), 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, - [235512] = 13, + [190964] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7251), 1, + ACTIONS(6985), 1, anon_sym_DASH_GT, - ACTIONS(8859), 1, + ACTIONS(7898), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7901), 1, anon_sym_LBRACK, - STATE(6601), 1, + ACTIONS(8176), 1, + anon_sym_requires, + STATE(5660), 1, + sym__function_attributes_end, + STATE(5887), 1, sym_trailing_return_type, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7893), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(7905), 2, anon_sym_final, anon_sym_override, - STATE(5488), 2, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6515), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6602), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8857), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [235561] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9035), 1, - anon_sym_COMMA, - ACTIONS(9043), 1, - anon_sym_SLASH, - ACTIONS(9045), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9047), 1, - anon_sym_AMP_AMP, - ACTIONS(9049), 1, - anon_sym_PIPE, - ACTIONS(9051), 1, - anon_sym_CARET, - ACTIONS(9053), 1, - anon_sym_AMP, - ACTIONS(9101), 1, - anon_sym_RPAREN, - STATE(8432), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(9039), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9041), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9055), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9057), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9059), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(9061), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [235616] = 13, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5023), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [191031] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(39), 1, anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6601), 1, - sym_trailing_return_type, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6239), 2, + ACTIONS(5436), 1, + anon_sym_LBRACE, + STATE(1948), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6602), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8857), 6, + STATE(4952), 1, + sym_enumerator_list, + ACTIONS(5441), 2, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [235665] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8108), 1, anon_sym_STAR, - ACTIONS(9103), 1, - sym_identifier, - ACTIONS(9105), 1, - anon_sym_TILDE, - ACTIONS(9107), 1, - anon_sym_COLON_COLON, - ACTIONS(9109), 1, - anon_sym_template, - ACTIONS(9111), 1, - anon_sym_operator, - STATE(3379), 1, - sym_qualified_type_identifier, - STATE(3405), 1, - sym_dependent_type_identifier, - STATE(3418), 1, - sym_template_type, - STATE(3435), 1, - sym_operator_name, - STATE(3443), 1, - sym_destructor_name, - STATE(3444), 1, - sym_qualified_identifier, - STATE(3445), 1, - sym_dependent_identifier, - STATE(3464), 1, - sym_template_function, - STATE(3466), 1, - sym_pointer_type_declarator, - STATE(6244), 1, - sym__scope_resolution, - STATE(9550), 1, - sym_ms_based_modifier, - STATE(9648), 1, - sym_decltype, - [235729] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5775), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8647), 1, - anon_sym_COLON_COLON, - ACTIONS(8780), 1, + ACTIONS(5443), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, sym_identifier, - STATE(3227), 1, - sym_template_type, - STATE(3518), 1, - sym_field_declaration_list, - STATE(7282), 1, - sym__scope_resolution, - STATE(7628), 1, - sym_virtual_specifier, - STATE(8617), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3095), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [235785] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, + sym_auto, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5834), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8701), 1, - anon_sym_COLON_COLON, - ACTIONS(8790), 1, - sym_identifier, - STATE(3296), 1, - sym_template_type, - STATE(3358), 1, - sym_field_declaration_list, - STATE(7302), 1, - sym__scope_resolution, - STATE(7691), 1, - sym_virtual_specifier, - STATE(8716), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3112), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6274), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [235841] = 13, + [191074] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7369), 1, + ACTIONS(6685), 1, anon_sym_DASH_GT, - ACTIONS(7371), 1, + ACTIONS(6747), 1, anon_sym_requires, - ACTIONS(8863), 1, + ACTIONS(8074), 1, + anon_sym___attribute__, + ACTIONS(8077), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6869), 1, - sym_requires_clause, - STATE(6977), 1, + STATE(5234), 1, + sym__function_attributes_end, + STATE(5286), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6618), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6710), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8861), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [235889] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9073), 1, - sym_identifier, - ACTIONS(9077), 1, - anon_sym_LPAREN2, - ACTIONS(9079), 1, - anon_sym_defined, - ACTIONS(9113), 1, - sym_number_literal, - ACTIONS(9081), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9083), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9087), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6438), 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, - [235929] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, - anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9125), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6534), 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, - [235969] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9073), 1, - sym_identifier, - ACTIONS(9077), 1, - anon_sym_LPAREN2, - ACTIONS(9079), 1, - anon_sym_defined, - ACTIONS(9129), 1, - sym_number_literal, - ACTIONS(9081), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9083), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9087), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6425), 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, - [236009] = 15, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [191135] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7239), 1, + ACTIONS(6913), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, anon_sym_LBRACK, - ACTIONS(7371), 1, + ACTIONS(7975), 1, anon_sym_requires, - ACTIONS(7435), 1, - anon_sym_DASH_GT, - STATE(6681), 1, - sym_gnu_asm_expression, - STATE(6891), 1, - sym_requires_clause, - STATE(6965), 1, + STATE(5652), 1, sym_trailing_return_type, - ACTIONS(7208), 2, + STATE(5797), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7237), 2, + ACTIONS(7893), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(7359), 2, + ACTIONS(7972), 2, anon_sym_final, anon_sym_override, - STATE(6628), 2, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6852), 2, + aux_sym_type_definition_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [236061] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, - anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9131), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6538), 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, - [236101] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, - anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9133), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6542), 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, - [236141] = 17, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4992), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [191202] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5689), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, + ACTIONS(6913), 1, + anon_sym_DASH_GT, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(8185), 1, + anon_sym_requires, + STATE(5577), 1, + sym_trailing_return_type, + STATE(5787), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8072), 2, + anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8774), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(3129), 1, - sym_field_declaration_list, - STATE(7275), 1, - sym__scope_resolution, - STATE(7585), 1, - sym_virtual_specifier, - STATE(8634), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(8179), 2, anon_sym_final, anon_sym_override, - STATE(2888), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [236197] = 9, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4995), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [191269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, + ACTIONS(5028), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5030), 25, anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9135), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6544), 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, - [236237] = 11, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [191304] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, + ACTIONS(6685), 1, anon_sym_DASH_GT, - ACTIONS(8863), 1, + ACTIONS(8074), 1, + anon_sym___attribute__, + ACTIONS(8077), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6593), 1, + ACTIONS(8085), 1, + anon_sym_requires, + STATE(5235), 1, + sym__function_attributes_end, + STATE(5313), 1, sym_trailing_return_type, - STATE(6676), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8082), 2, anon_sym_final, anon_sym_override, - STATE(6519), 2, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8861), 8, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [236281] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8108), 1, - anon_sym_STAR, - ACTIONS(9011), 1, - anon_sym_TILDE, - ACTIONS(9137), 1, - sym_identifier, - ACTIONS(9139), 1, - anon_sym_COLON_COLON, - ACTIONS(9141), 1, - anon_sym_template, - ACTIONS(9143), 1, - anon_sym_operator, - STATE(3377), 1, - sym_operator_name, - STATE(3379), 1, - sym_qualified_type_identifier, - STATE(3398), 1, - sym_qualified_identifier, - STATE(3405), 1, - sym_dependent_type_identifier, - STATE(3408), 1, - sym_dependent_identifier, - STATE(3410), 1, - sym_destructor_name, - STATE(3416), 1, - sym_template_function, - STATE(3418), 1, - sym_template_type, - STATE(3420), 1, - sym_pointer_type_declarator, - STATE(6257), 1, - sym__scope_resolution, - STATE(9550), 1, - sym_ms_based_modifier, - STATE(9648), 1, - sym_decltype, - [236345] = 9, + anon_sym_try, + [191365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, + ACTIONS(5127), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5129), 25, anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9145), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6549), 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, - [236385] = 9, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [191400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, + ACTIONS(5138), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5140), 25, anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9147), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6551), 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, - [236425] = 9, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [191435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, + ACTIONS(5196), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5198), 25, anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9149), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6558), 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, - [236465] = 9, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [191470] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9073), 1, - sym_identifier, - ACTIONS(9077), 1, + ACTIONS(6685), 1, + anon_sym_DASH_GT, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(7895), 1, + anon_sym___attribute__, + ACTIONS(7898), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7901), 1, + anon_sym_LBRACK, + STATE(5262), 1, + sym__function_attributes_end, + STATE(5285), 1, + sym_trailing_return_type, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 7, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9079), 1, - anon_sym_defined, - ACTIONS(9151), 1, - sym_number_literal, - ACTIONS(9081), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9083), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9087), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6391), 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, - [236505] = 9, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [191531] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, + ACTIONS(7740), 1, + sym_auto, + ACTIONS(7742), 1, + anon_sym_decltype, + STATE(4873), 1, + sym_decltype_auto, + ACTIONS(5018), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5020), 22, anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9153), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6567), 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, - [236545] = 9, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [191572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, + ACTIONS(5271), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5273), 25, anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9155), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6568), 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, - [236585] = 9, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [191607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, + ACTIONS(5223), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5225), 25, anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9157), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6569), 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, - [236625] = 9, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [191642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9073), 1, - sym_identifier, - ACTIONS(9077), 1, + ACTIONS(5211), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5213), 25, anon_sym_LPAREN2, - ACTIONS(9079), 1, - anon_sym_defined, - ACTIONS(9159), 1, - sym_number_literal, - ACTIONS(9081), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9083), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9087), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6414), 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, - [236665] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8108), 1, anon_sym_STAR, - ACTIONS(9105), 1, - anon_sym_TILDE, - ACTIONS(9111), 1, - anon_sym_operator, - ACTIONS(9161), 1, - sym_identifier, - ACTIONS(9163), 1, - anon_sym_COLON_COLON, - ACTIONS(9165), 1, - anon_sym_template, - STATE(3379), 1, - sym_qualified_type_identifier, - STATE(3405), 1, - sym_dependent_type_identifier, - STATE(3418), 1, - sym_template_type, - STATE(3435), 1, - sym_operator_name, - STATE(3443), 1, - sym_destructor_name, - STATE(3444), 1, - sym_qualified_identifier, - STATE(3445), 1, - sym_dependent_identifier, - STATE(3464), 1, - sym_template_function, - STATE(3466), 1, - sym_pointer_type_declarator, - STATE(6266), 1, - sym__scope_resolution, - STATE(9550), 1, - sym_ms_based_modifier, - STATE(9648), 1, - sym_decltype, - [236729] = 13, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [191677] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(7369), 1, + ACTIONS(6985), 1, anon_sym_DASH_GT, - ACTIONS(7371), 1, + ACTIONS(6987), 1, anon_sym_requires, - ACTIONS(8746), 1, + ACTIONS(8077), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6885), 1, - sym_requires_clause, - STATE(6968), 1, + STATE(5733), 1, + sym__function_attributes_end, + STATE(5886), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(6345), 2, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8072), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6644), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6716), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [236777] = 18, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5020), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [191744] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6685), 1, + anon_sym_DASH_GT, + ACTIONS(8244), 1, + anon_sym___attribute__, + ACTIONS(8247), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8921), 1, - anon_sym_try, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(9169), 1, - anon_sym_LPAREN2, - ACTIONS(9171), 1, - anon_sym_SEMI, - ACTIONS(9173), 1, - anon_sym_LBRACE, - ACTIONS(9175), 1, + ACTIONS(8250), 1, anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym_EQ, - STATE(2512), 1, - sym_try_statement, - STATE(2514), 1, - sym_compound_statement, - STATE(4570), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8295), 1, - aux_sym_declaration_repeat1, - STATE(8301), 1, + ACTIONS(8255), 1, + anon_sym_requires, + STATE(5226), 1, + sym_trailing_return_type, + STATE(5263), 1, + sym__function_attributes_end, + STATE(6113), 1, sym_gnu_asm_expression, - ACTIONS(9179), 2, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, - sym_argument_list, - sym_initializer_list, - [236835] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7952), 1, - anon_sym_STAR, - ACTIONS(9181), 1, - sym_identifier, - ACTIONS(9183), 1, - anon_sym_TILDE, - ACTIONS(9185), 1, - anon_sym_COLON_COLON, - ACTIONS(9187), 1, - anon_sym_template, - ACTIONS(9189), 1, - anon_sym_operator, - STATE(2511), 1, - sym_template_type, - STATE(2516), 1, - sym_dependent_type_identifier, - STATE(2595), 1, - sym_qualified_type_identifier, - STATE(3918), 1, - sym_operator_name, - STATE(3919), 1, - sym_qualified_identifier, - STATE(3920), 1, - sym_dependent_identifier, - STATE(3921), 1, - sym_destructor_name, - STATE(3922), 1, - sym_template_function, - STATE(3928), 1, - sym_pointer_type_declarator, - STATE(6269), 1, - sym__scope_resolution, - STATE(9431), 1, - sym_ms_based_modifier, - STATE(9648), 1, - sym_decltype, - [236899] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - STATE(6599), 1, - sym_trailing_return_type, - STATE(6707), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(8252), 2, anon_sym_final, anon_sym_override, - STATE(6571), 2, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9191), 8, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [236943] = 17, + anon_sym_try, + [191805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(5178), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5180), 25, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, anon_sym_decltype, - ACTIONS(5107), 1, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [191840] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6690), 1, + anon_sym_noexcept, + ACTIONS(6692), 1, + anon_sym_throw, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6985), 1, + anon_sym_DASH_GT, + ACTIONS(8077), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(8258), 1, + anon_sym_requires, + STATE(5712), 1, + sym__function_attributes_end, + STATE(5889), 1, + sym_trailing_return_type, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8072), 2, + anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(8766), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4489), 1, - sym_field_declaration_list, - STATE(7279), 1, - sym__scope_resolution, - STATE(7689), 1, - sym_virtual_specifier, - STATE(8583), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(8082), 2, anon_sym_final, anon_sym_override, - STATE(4335), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [236999] = 9, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5032), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [191907] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9073), 1, - sym_identifier, - ACTIONS(9077), 1, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(5436), 1, + anon_sym_LBRACE, + STATE(1989), 1, + sym_attribute_specifier, + STATE(4963), 1, + sym_enumerator_list, + ACTIONS(5432), 2, anon_sym_LPAREN2, - ACTIONS(9079), 1, - anon_sym_defined, - ACTIONS(9195), 1, - sym_number_literal, - ACTIONS(9081), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9083), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9087), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6447), 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, - [237039] = 17, + anon_sym_STAR, + ACTIONS(5434), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [191950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, + ACTIONS(5086), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5088), 24, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - ACTIONS(8788), 1, - anon_sym_COLON_COLON, - STATE(3369), 1, - sym_template_type, - STATE(4490), 1, - sym_field_declaration_list, - STATE(7267), 1, - sym__scope_resolution, - STATE(7947), 1, - sym_virtual_specifier, - STATE(8809), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4654), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [237095] = 17, + anon_sym_try, + anon_sym_requires, + [191984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5834), 1, + ACTIONS(5263), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5265), 24, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8701), 1, - anon_sym_COLON_COLON, - ACTIONS(8790), 1, - sym_identifier, - STATE(3296), 1, - sym_template_type, - STATE(3394), 1, - sym_field_declaration_list, - STATE(7302), 1, - sym__scope_resolution, - STATE(7820), 1, - sym_virtual_specifier, - STATE(8549), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(3105), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [237151] = 9, + anon_sym_try, + anon_sym_requires, + [192018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, + ACTIONS(5090), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5092), 24, anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9197), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6485), 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, - [237191] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(8766), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4489), 1, - sym_field_declaration_list, - STATE(7279), 1, - sym__scope_resolution, - STATE(7689), 1, - sym_virtual_specifier, - STATE(8583), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4335), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6318), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [237247] = 17, + anon_sym_try, + anon_sym_requires, + [192052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, + ACTIONS(4955), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4957), 24, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4476), 1, - sym_field_declaration_list, - STATE(7286), 1, - sym__scope_resolution, - STATE(7786), 1, - sym_virtual_specifier, - STATE(8691), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(3761), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [237303] = 13, + anon_sym_try, + anon_sym_requires, + [192086] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7365), 1, + ACTIONS(6804), 1, anon_sym_DASH_GT, - ACTIONS(7367), 1, + ACTIONS(6806), 1, anon_sym_requires, - ACTIONS(8746), 1, + ACTIONS(8250), 1, anon_sym_LBRACK, - STATE(6700), 1, - sym_requires_clause, - STATE(6939), 1, + ACTIONS(8261), 1, + anon_sym_LBRACK_LBRACK, + STATE(5228), 1, sym_trailing_return_type, - ACTIONS(5663), 2, + STATE(5300), 1, + sym__function_attributes_end, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, + ACTIONS(8264), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6627), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8744), 5, - anon_sym_RPAREN, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - [237351] = 13, + [192146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(5094), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5096), 24, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [192180] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7365), 1, + ACTIONS(6797), 1, anon_sym_DASH_GT, - ACTIONS(7367), 1, - anon_sym_requires, - ACTIONS(8746), 1, + ACTIONS(7901), 1, anon_sym_LBRACK, - STATE(6700), 1, - sym_requires_clause, - STATE(6939), 1, + ACTIONS(7937), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7940), 1, + anon_sym_requires, + STATE(5333), 1, sym_trailing_return_type, - ACTIONS(5663), 2, + STATE(5383), 1, + sym__function_attributes_end, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7905), 2, anon_sym_final, anon_sym_override, - STATE(6461), 2, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6627), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8744), 5, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 6, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_try, - [237399] = 17, + anon_sym_EQ, + anon_sym_GT2, + [192240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5689), 1, + ACTIONS(5098), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5100), 24, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(8795), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(3116), 1, - sym_field_declaration_list, - STATE(7300), 1, - sym__scope_resolution, - STATE(7727), 1, - sym_virtual_specifier, - STATE(8758), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(2830), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6445), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [237455] = 11, + anon_sym_try, + anon_sym_requires, + [192274] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7210), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6804), 1, anon_sym_DASH_GT, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(8746), 1, + ACTIONS(8250), 1, anon_sym_LBRACK, - STATE(6582), 1, + ACTIONS(8261), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8267), 1, + anon_sym_requires, + STATE(5248), 1, + sym__function_attributes_end, + STATE(5337), 1, sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(8252), 2, anon_sym_final, anon_sym_override, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, + ACTIONS(8264), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8744), 8, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_try, - [237499] = 21, + [192334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7952), 1, + ACTIONS(4955), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4957), 24, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(9199), 1, - sym_identifier, - ACTIONS(9201), 1, - anon_sym_TILDE, - ACTIONS(9203), 1, - anon_sym_COLON_COLON, - ACTIONS(9205), 1, - anon_sym_template, - ACTIONS(9207), 1, - anon_sym_operator, - STATE(2511), 1, - sym_template_type, - STATE(2516), 1, - sym_dependent_type_identifier, - STATE(2595), 1, - sym_qualified_type_identifier, - STATE(4008), 1, - sym_pointer_type_declarator, - STATE(4099), 1, - sym_template_function, - STATE(4100), 1, - sym_destructor_name, - STATE(4102), 1, - sym_dependent_identifier, - STATE(4116), 1, - sym_qualified_identifier, - STATE(4125), 1, - sym_operator_name, - STATE(6282), 1, - sym__scope_resolution, - STATE(9431), 1, - sym_ms_based_modifier, - STATE(9648), 1, - sym_decltype, - [237563] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, - anon_sym_DASH_GT, - ACTIONS(8746), 1, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(6611), 1, - sym_gnu_asm_expression, - STATE(6885), 1, - sym_requires_clause, - STATE(6968), 1, - sym_trailing_return_type, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(8744), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6638), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6716), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6855), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [237615] = 9, + anon_sym_try, + anon_sym_requires, + [192368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, + ACTIONS(5055), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5057), 24, anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9209), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6539), 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, - [237655] = 3, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [192402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9213), 5, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5164), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9211), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_const, + ACTIONS(5166), 24, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - [237683] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5689), 1, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(8786), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(6084), 1, - sym_field_declaration_list, - STATE(7274), 1, - sym__scope_resolution, - STATE(7799), 1, - sym_virtual_specifier, - STATE(8705), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(5629), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [237739] = 17, + anon_sym_try, + anon_sym_requires, + [192436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5689), 1, + ACTIONS(5094), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5096), 24, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(8795), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(3116), 1, - sym_field_declaration_list, - STATE(7300), 1, - sym__scope_resolution, - STATE(7727), 1, - sym_virtual_specifier, - STATE(8758), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(2830), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [237795] = 17, + anon_sym_try, + anon_sym_requires, + [192470] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6804), 1, + anon_sym_DASH_GT, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(8155), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5834), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8701), 1, - anon_sym_COLON_COLON, - ACTIONS(8790), 1, - sym_identifier, - STATE(3296), 1, - sym_template_type, - STATE(3394), 1, - sym_field_declaration_list, - STATE(7302), 1, - sym__scope_resolution, - STATE(7820), 1, - sym_virtual_specifier, - STATE(8549), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + STATE(5230), 1, + sym_trailing_return_type, + STATE(5307), 1, + sym__function_attributes_end, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(3105), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6316), 2, + ACTIONS(8150), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [237851] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 6, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9215), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6516), 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, - [237891] = 17, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [192530] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(5107), 1, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6802), 1, + anon_sym_DASH_GT, + ACTIONS(8247), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4490), 1, - sym_field_declaration_list, - STATE(7286), 1, - sym__scope_resolution, - STATE(7947), 1, - sym_virtual_specifier, - STATE(8809), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(8250), 1, + anon_sym_LBRACK, + STATE(5298), 1, + sym_trailing_return_type, + STATE(5372), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(3744), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [237947] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4916), 1, - anon_sym_COLON_COLON, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(8772), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4490), 1, - sym_field_declaration_list, - STATE(7280), 1, - sym__scope_resolution, - STATE(7947), 1, - sym_virtual_specifier, - STATE(8809), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3744), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [238003] = 18, + anon_sym_try, + [192590] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6802), 1, + anon_sym_DASH_GT, + ACTIONS(8247), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(9169), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(8250), 1, anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym_EQ, - ACTIONS(9217), 1, - anon_sym_SEMI, - ACTIONS(9219), 1, - anon_sym_LBRACE, - ACTIONS(9221), 1, - anon_sym_try, - STATE(1342), 1, - sym_try_statement, - STATE(1343), 1, - sym_compound_statement, - STATE(4570), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8079), 1, + ACTIONS(8255), 1, + anon_sym_requires, + STATE(5226), 1, + sym_trailing_return_type, + STATE(5357), 1, + sym__function_attributes_end, + STATE(6113), 1, sym_gnu_asm_expression, - STATE(8080), 1, - aux_sym_declaration_repeat1, - ACTIONS(9179), 2, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - STATE(6821), 2, + ACTIONS(8252), 2, + anon_sym_final, + anon_sym_override, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, - sym_argument_list, - sym_initializer_list, - [238061] = 13, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [192650] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(7365), 1, + ACTIONS(6790), 1, anon_sym_DASH_GT, - ACTIONS(7367), 1, - anon_sym_requires, - ACTIONS(8867), 1, + ACTIONS(7898), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7901), 1, anon_sym_LBRACK, - STATE(6643), 1, - sym_requires_clause, - STATE(6943), 1, + STATE(5241), 1, + sym__function_attributes_end, + STATE(5285), 1, sym_trailing_return_type, - ACTIONS(5663), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, + ACTIONS(7945), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6501), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6640), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8865), 5, - anon_sym_RPAREN, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_try, - [238109] = 9, + anon_sym_EQ, + anon_sym_COLON, + [192710] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(7935), 1, + anon_sym_LT, + STATE(1726), 1, + sym_template_argument_list, + ACTIONS(4067), 2, anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9223), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6541), 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, - [238149] = 18, + anon_sym_STAR, + ACTIONS(4059), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [192750] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(9169), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6797), 1, + anon_sym_DASH_GT, + ACTIONS(8080), 1, anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym_EQ, - ACTIONS(9225), 1, - anon_sym_SEMI, - ACTIONS(9227), 1, - anon_sym_LBRACE, - ACTIONS(9229), 1, - anon_sym_try, - STATE(782), 1, - sym_try_statement, - STATE(846), 1, - sym_compound_statement, - STATE(4570), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8317), 1, + ACTIONS(8155), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8158), 1, + anon_sym_requires, + STATE(5334), 1, + sym_trailing_return_type, + STATE(5384), 1, + sym__function_attributes_end, + STATE(6128), 1, sym_gnu_asm_expression, - STATE(8321), 1, - aux_sym_declaration_repeat1, - ACTIONS(9179), 2, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - STATE(6821), 2, + ACTIONS(8082), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, - sym_argument_list, - sym_initializer_list, - [238207] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9073), 1, - sym_identifier, - ACTIONS(9077), 1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9079), 1, - anon_sym_defined, - ACTIONS(9231), 1, - sym_number_literal, - ACTIONS(9081), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9083), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9087), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6383), 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, - [238247] = 17, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [192810] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6797), 1, + anon_sym_DASH_GT, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7937), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5726), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8679), 1, - anon_sym_COLON_COLON, - ACTIONS(8784), 1, - sym_identifier, - STATE(3180), 1, - sym_template_type, - STATE(3425), 1, - sym_field_declaration_list, - STATE(7293), 1, - sym__scope_resolution, - STATE(7685), 1, - sym_virtual_specifier, - STATE(8585), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + STATE(5240), 1, + sym_trailing_return_type, + STATE(5373), 1, + sym__function_attributes_end, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(3039), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [238303] = 17, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [192870] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6797), 1, + anon_sym_DASH_GT, + ACTIONS(8250), 1, + anon_sym_LBRACK, + ACTIONS(8261), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5726), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8679), 1, - anon_sym_COLON_COLON, - ACTIONS(8784), 1, - sym_identifier, - STATE(3180), 1, - sym_template_type, - STATE(3345), 1, - sym_field_declaration_list, - STATE(7293), 1, - sym__scope_resolution, - STATE(7779), 1, - sym_virtual_specifier, - STATE(8704), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(8267), 1, + anon_sym_requires, + STATE(5337), 1, + sym_trailing_return_type, + STATE(5385), 1, + sym__function_attributes_end, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8252), 2, anon_sym_final, anon_sym_override, - STATE(3034), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6297), 2, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [238359] = 17, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [192930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(5040), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5042), 24, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5726), 1, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [192964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5094), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5096), 24, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8679), 1, - anon_sym_COLON_COLON, - ACTIONS(8784), 1, - sym_identifier, - STATE(3180), 1, - sym_template_type, - STATE(3345), 1, - sym_field_declaration_list, - STATE(7293), 1, - sym__scope_resolution, - STATE(7779), 1, - sym_virtual_specifier, - STATE(8704), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(3034), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [238415] = 13, + anon_sym_try, + anon_sym_requires, + [192998] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7365), 1, + ACTIONS(6804), 1, anon_sym_DASH_GT, - ACTIONS(7367), 1, - anon_sym_requires, - ACTIONS(8867), 1, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6643), 1, - sym_requires_clause, - STATE(6943), 1, + ACTIONS(8155), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8158), 1, + anon_sym_requires, + STATE(5249), 1, + sym__function_attributes_end, + STATE(5334), 1, sym_trailing_return_type, - ACTIONS(5663), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(8082), 2, anon_sym_final, anon_sym_override, - STATE(6392), 2, + ACTIONS(8150), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6640), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8865), 5, - anon_sym_RPAREN, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - [238463] = 17, + [193058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5726), 1, + ACTIONS(5111), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5113), 24, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8679), 1, - anon_sym_COLON_COLON, - ACTIONS(8784), 1, - sym_identifier, - STATE(3180), 1, - sym_template_type, - STATE(3386), 1, - sym_field_declaration_list, - STATE(7293), 1, - sym__scope_resolution, - STATE(7971), 1, - sym_virtual_specifier, - STATE(8771), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(3033), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [238519] = 17, + anon_sym_try, + anon_sym_requires, + [193092] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6804), 1, + anon_sym_DASH_GT, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7937), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5726), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8679), 1, - anon_sym_COLON_COLON, - ACTIONS(8784), 1, - sym_identifier, - STATE(3180), 1, - sym_template_type, - STATE(3386), 1, - sym_field_declaration_list, - STATE(7293), 1, - sym__scope_resolution, - STATE(7971), 1, - sym_virtual_specifier, - STATE(8771), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + STATE(5240), 1, + sym_trailing_return_type, + STATE(5312), 1, + sym__function_attributes_end, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(3033), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6299), 2, + ACTIONS(7945), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [238575] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9073), 1, - sym_identifier, - ACTIONS(9077), 1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 6, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9079), 1, - anon_sym_defined, - ACTIONS(9233), 1, - sym_number_literal, - ACTIONS(9081), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9083), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9087), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6309), 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, - [238615] = 15, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [193152] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(7625), 1, + ACTIONS(6804), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7937), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7940), 1, + anon_sym_requires, + STATE(5287), 1, + sym__function_attributes_end, + STATE(5333), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(7905), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7945), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 6, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7801), 1, - sym_identifier, - ACTIONS(7803), 1, - anon_sym_STAR, - ACTIONS(7805), 1, - anon_sym_AMP_AMP, - ACTIONS(7807), 1, - anon_sym_AMP, - ACTIONS(9235), 1, anon_sym_SEMI, - STATE(6207), 1, - sym__field_declarator, - STATE(7100), 1, - sym_operator_name, - STATE(9157), 1, - sym_ms_based_modifier, - STATE(9190), 1, - sym_attribute_specifier, - STATE(7189), 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, - [238667] = 3, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [193212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9239), 5, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5090), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9237), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_const, + ACTIONS(5092), 24, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - [238695] = 13, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [193246] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7357), 1, + ACTIONS(6790), 1, anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - STATE(6891), 1, - sym_requires_clause, - STATE(7045), 1, + ACTIONS(8247), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8250), 1, + anon_sym_LBRACK, + STATE(5265), 1, + sym__function_attributes_end, + STATE(5298), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, + ACTIONS(8264), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6646), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 5, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [238743] = 17, + anon_sym_COLON, + [193306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, + ACTIONS(5142), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5144), 24, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(8764), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4501), 1, - sym_field_declaration_list, - STATE(7261), 1, - sym__scope_resolution, - STATE(7698), 1, - sym_virtual_specifier, - STATE(8572), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4236), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [238799] = 9, + anon_sym_try, + anon_sym_requires, + [193340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9073), 1, - sym_identifier, - ACTIONS(9077), 1, + ACTIONS(5134), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5136), 24, anon_sym_LPAREN2, - ACTIONS(9079), 1, - anon_sym_defined, - ACTIONS(9241), 1, - sym_number_literal, - ACTIONS(9081), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9083), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9087), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6381), 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, - [238839] = 3, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [193374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9245), 5, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5156), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9243), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_const, + ACTIONS(5158), 24, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - [238867] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(8500), 1, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(8764), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(5539), 1, - sym_field_declaration_list, - STATE(7261), 1, - sym__scope_resolution, - STATE(7759), 1, - sym_virtual_specifier, - STATE(8545), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(5431), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [238923] = 3, + anon_sym_try, + anon_sym_requires, + [193408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9249), 5, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5160), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9247), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_const, + ACTIONS(5162), 24, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - [238951] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2056), 1, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, anon_sym_decltype, - ACTIONS(7952), 1, - anon_sym_STAR, - ACTIONS(9201), 1, - anon_sym_TILDE, - ACTIONS(9207), 1, - anon_sym_operator, - ACTIONS(9251), 1, - sym_identifier, - ACTIONS(9253), 1, - anon_sym_COLON_COLON, - ACTIONS(9255), 1, - anon_sym_template, - STATE(3379), 1, - sym_qualified_type_identifier, - STATE(3405), 1, - sym_dependent_type_identifier, - STATE(3418), 1, - sym_template_type, - STATE(4008), 1, - sym_pointer_type_declarator, - STATE(4099), 1, - sym_template_function, - STATE(4100), 1, - sym_destructor_name, - STATE(4102), 1, - sym_dependent_identifier, - STATE(4116), 1, - sym_qualified_identifier, - STATE(4125), 1, - sym_operator_name, - STATE(6312), 1, - sym__scope_resolution, - STATE(9431), 1, - sym_ms_based_modifier, - STATE(9648), 1, - sym_decltype, - [239015] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [193442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9259), 5, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5032), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9257), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_const, + ACTIONS(5034), 24, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - [239043] = 11, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [193476] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6802), 1, anon_sym_DASH_GT, - ACTIONS(8859), 1, + ACTIONS(8077), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6601), 1, + ACTIONS(8085), 1, + anon_sym_requires, + STATE(5313), 1, sym_trailing_return_type, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(5359), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8082), 2, anon_sym_final, anon_sym_override, - STATE(6515), 2, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8857), 8, - anon_sym_COMMA, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [239087] = 9, + anon_sym_try, + [193536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, + ACTIONS(5082), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5084), 24, anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9261), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6563), 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, - [239127] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5834), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8701), 1, - anon_sym_COLON_COLON, - ACTIONS(8790), 1, - sym_identifier, - STATE(3296), 1, - sym_template_type, - STATE(3366), 1, - sym_field_declaration_list, - STATE(7302), 1, - sym__scope_resolution, - STATE(7889), 1, - sym_virtual_specifier, - STATE(8494), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(3100), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [239183] = 15, + anon_sym_try, + anon_sym_requires, + [193570] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(6790), 1, + anon_sym_DASH_GT, + ACTIONS(7898), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7239), 1, + ACTIONS(7901), 1, anon_sym_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, + ACTIONS(7908), 1, anon_sym_requires, - STATE(6665), 1, - sym_gnu_asm_expression, - STATE(6678), 1, - sym_requires_clause, - STATE(7255), 1, + STATE(5276), 1, + sym__function_attributes_end, + STATE(5335), 1, sym_trailing_return_type, - ACTIONS(5663), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(7905), 2, anon_sym_final, anon_sym_override, - ACTIONS(7208), 2, + ACTIONS(7945), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7237), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6674), 2, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6832), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [239235] = 17, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [193630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, + ACTIONS(5215), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5217), 24, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(8766), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4501), 1, - sym_field_declaration_list, - STATE(7279), 1, - sym__scope_resolution, - STATE(7698), 1, - sym_virtual_specifier, - STATE(8572), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4236), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [239291] = 9, + anon_sym_try, + anon_sym_requires, + [193664] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, + ACTIONS(5022), 1, + sym_auto, + ACTIONS(5024), 1, + anon_sym_decltype, + STATE(1931), 1, + sym_decltype_auto, + ACTIONS(8272), 2, anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9263), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6533), 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, - [239331] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9073), 1, + anon_sym_STAR, + STATE(4974), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8270), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, sym_identifier, - ACTIONS(9077), 1, - anon_sym_LPAREN2, - ACTIONS(9079), 1, - anon_sym_defined, - ACTIONS(9265), 1, - sym_number_literal, - ACTIONS(9081), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9083), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9087), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6444), 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, - [239371] = 15, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [193708] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(6802), 1, + anon_sym_DASH_GT, + ACTIONS(7898), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, + ACTIONS(7901), 1, anon_sym_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - STATE(6686), 1, - sym_gnu_asm_expression, - STATE(6701), 1, - sym_requires_clause, - STATE(7256), 1, + STATE(5285), 1, sym_trailing_return_type, - ACTIONS(5663), 2, + STATE(5388), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - ACTIONS(7192), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7208), 2, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6688), 2, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6833), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [239423] = 17, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [193768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(5219), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5221), 24, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5689), 1, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [193802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5207), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5209), 24, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8774), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(3129), 1, - sym_field_declaration_list, - STATE(7275), 1, - sym__scope_resolution, - STATE(7585), 1, - sym_virtual_specifier, - STATE(8634), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(2888), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6389), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [239479] = 15, + anon_sym_try, + anon_sym_requires, + [193836] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(6790), 1, + anon_sym_DASH_GT, + ACTIONS(8077), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, + ACTIONS(8080), 1, anon_sym_LBRACK, - ACTIONS(7371), 1, + ACTIONS(8085), 1, anon_sym_requires, - ACTIONS(7435), 1, - anon_sym_DASH_GT, - STATE(6706), 1, - sym_gnu_asm_expression, - STATE(6894), 1, - sym_requires_clause, - STATE(6956), 1, + STATE(5283), 1, + sym__function_attributes_end, + STATE(5313), 1, sym_trailing_return_type, - ACTIONS(7192), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7208), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(8082), 2, anon_sym_final, anon_sym_override, - STATE(6683), 2, + ACTIONS(8150), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6713), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6851), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [239531] = 21, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [193896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(4330), 1, - anon_sym_COLON_COLON, - ACTIONS(8010), 1, + ACTIONS(5168), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5170), 24, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(9267), 1, - sym_identifier, - ACTIONS(9269), 1, - anon_sym_template, - STATE(3377), 1, - sym_operator_name, - STATE(3379), 1, - sym_qualified_type_identifier, - STATE(3398), 1, - sym_qualified_identifier, - STATE(3405), 1, - sym_dependent_type_identifier, - STATE(3408), 1, - sym_dependent_identifier, - STATE(3410), 1, - sym_destructor_name, - STATE(3416), 1, - sym_template_function, - STATE(3418), 1, - sym_template_type, - STATE(3420), 1, - sym_pointer_type_declarator, - STATE(6324), 1, - sym__scope_resolution, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(9648), 1, - sym_decltype, - [239595] = 13, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [193930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7204), 1, + ACTIONS(5059), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5061), 24, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7369), 1, - anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - STATE(6894), 1, - sym_requires_clause, - STATE(6956), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(6429), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6613), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_try, + anon_sym_requires, + [193964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5227), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5229), 24, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - [239643] = 11, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [193998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7216), 1, + ACTIONS(8225), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(8223), 24, + anon_sym___extension__, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + [194032] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6747), 1, anon_sym_requires, - ACTIONS(8863), 1, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6802), 1, + anon_sym_DASH_GT, + ACTIONS(8077), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6593), 1, + STATE(5286), 1, sym_trailing_return_type, - STATE(6676), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(5376), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(6519), 2, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8861), 8, - anon_sym_COMMA, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 6, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [239687] = 17, + [194092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5659), 1, + ACTIONS(5192), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5194), 24, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8585), 1, - anon_sym_COLON_COLON, - ACTIONS(8778), 1, - sym_identifier, - STATE(3080), 1, - sym_template_type, - STATE(3174), 1, - sym_field_declaration_list, - STATE(7278), 1, - sym__scope_resolution, - STATE(7938), 1, - sym_virtual_specifier, - STATE(8812), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(2789), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6339), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [239743] = 17, + anon_sym_try, + anon_sym_requires, + [194126] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6802), 1, + anon_sym_DASH_GT, + ACTIONS(7898), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5659), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8585), 1, - anon_sym_COLON_COLON, - ACTIONS(8778), 1, - sym_identifier, - STATE(3080), 1, - sym_template_type, - STATE(3174), 1, - sym_field_declaration_list, - STATE(7278), 1, - sym__scope_resolution, - STATE(7938), 1, - sym_virtual_specifier, - STATE(8812), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7908), 1, + anon_sym_requires, + STATE(5335), 1, + sym_trailing_return_type, + STATE(5394), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7905), 2, anon_sym_final, anon_sym_override, - STATE(2789), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [239799] = 17, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [194186] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6797), 1, + anon_sym_DASH_GT, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(8250), 1, + anon_sym_LBRACK, + ACTIONS(8261), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(8500), 1, - anon_sym_LBRACE, - ACTIONS(8764), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(5511), 1, - sym_field_declaration_list, - STATE(7261), 1, - sym__scope_resolution, - STATE(7809), 1, - sym_virtual_specifier, - STATE(8528), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + STATE(5228), 1, + sym_trailing_return_type, + STATE(5364), 1, + sym__function_attributes_end, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(5433), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6310), 2, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [239855] = 17, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [194246] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(8274), 1, + sym_identifier, + ACTIONS(8280), 1, + sym_primitive_type, + STATE(2425), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5074), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACE, + ACTIONS(8277), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5076), 16, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, anon_sym_decltype, - ACTIONS(5107), 1, + [194288] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6797), 1, + anon_sym_DASH_GT, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(8155), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(8500), 1, - anon_sym_LBRACE, - ACTIONS(8764), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(5511), 1, - sym_field_declaration_list, - STATE(7261), 1, - sym__scope_resolution, - STATE(7809), 1, - sym_virtual_specifier, - STATE(8528), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + STATE(5230), 1, + sym_trailing_return_type, + STATE(5356), 1, + sym__function_attributes_end, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(5433), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [239911] = 3, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [194348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6456), 5, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5119), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6454), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_const, + ACTIONS(5121), 24, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - [239939] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7357), 1, - anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(8863), 1, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(6869), 1, - sym_requires_clause, - STATE(7042), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6669), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6710), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8861), 5, + anon_sym_try, + anon_sym_requires, + [194382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5259), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5261), 24, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_try, - [239987] = 13, + anon_sym_requires, + [194416] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(7357), 1, + ACTIONS(6790), 1, anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(8867), 1, + ACTIONS(8247), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8250), 1, anon_sym_LBRACK, - STATE(6881), 1, - sym_requires_clause, - STATE(7094), 1, + ACTIONS(8255), 1, + anon_sym_requires, + STATE(5226), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + STATE(5284), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(8252), 2, anon_sym_final, anon_sym_override, - STATE(6332), 2, + ACTIONS(8264), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6697), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6718), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 5, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [240035] = 11, + anon_sym_COLON, + [194476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7216), 1, - anon_sym_requires, - STATE(6605), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 8, - anon_sym_COMMA, + ACTIONS(5255), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5257), 24, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym___extension__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_try, - [240079] = 11, + anon_sym_requires, + [194510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(8859), 1, + ACTIONS(5200), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5202), 24, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(6601), 1, - sym_trailing_return_type, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8857), 8, - anon_sym_COMMA, + anon_sym_try, + anon_sym_requires, + [194544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5267), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5269), 24, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym___extension__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_try, - [240123] = 13, + anon_sym_requires, + [194578] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(7369), 1, + ACTIONS(6790), 1, anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(8859), 1, + ACTIONS(8077), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6879), 1, - sym_requires_clause, - STATE(6971), 1, + STATE(5231), 1, + sym__function_attributes_end, + STATE(5286), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(6395), 2, + ACTIONS(8150), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6677), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6717), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 5, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [240171] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9273), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9271), 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, - [240199] = 3, + anon_sym_EQ, + anon_sym_COLON, + [194638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9277), 5, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5123), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9275), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_const, + ACTIONS(5125), 24, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - [240227] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5659), 1, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8585), 1, - anon_sym_COLON_COLON, - ACTIONS(8778), 1, - sym_identifier, - STATE(3080), 1, - sym_template_type, - STATE(3153), 1, - sym_field_declaration_list, - STATE(7278), 1, - sym__scope_resolution, - STATE(7712), 1, - sym_virtual_specifier, - STATE(8666), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(2796), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [240283] = 17, + anon_sym_try, + anon_sym_requires, + [194672] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(5022), 1, + sym_auto, + ACTIONS(5024), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5659), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8585), 1, - anon_sym_COLON_COLON, - ACTIONS(8778), 1, + STATE(1931), 1, + sym_decltype_auto, + ACTIONS(8285), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(4977), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8283), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, sym_identifier, - STATE(3080), 1, - sym_template_type, - STATE(3153), 1, - sym_field_declaration_list, - STATE(7278), 1, - sym__scope_resolution, - STATE(7712), 1, - sym_virtual_specifier, - STATE(8666), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(2796), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6341), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [240339] = 17, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [194716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5659), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8585), 1, - anon_sym_COLON_COLON, - ACTIONS(8778), 1, + ACTIONS(8235), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(8233), 24, + anon_sym___extension__, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, sym_identifier, - STATE(3080), 1, - sym_template_type, - STATE(3167), 1, - sym_field_declaration_list, - STATE(7278), 1, - sym__scope_resolution, - STATE(7656), 1, - sym_virtual_specifier, - STATE(8639), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(2801), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [240395] = 15, + [194750] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7483), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6821), 1, anon_sym_DASH_GT, - ACTIONS(7485), 1, + ACTIONS(6853), 1, anon_sym_requires, - ACTIONS(8746), 1, + ACTIONS(7901), 1, anon_sym_LBRACK, - STATE(6656), 1, - sym_gnu_asm_expression, - STATE(6700), 1, - sym_requires_clause, - STATE(7251), 1, + STATE(5508), 1, + sym__function_attributes_end, + STATE(5678), 1, sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8744), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6657), 2, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6826), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [240447] = 13, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [194809] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7357), 1, + ACTIONS(6834), 1, anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(8746), 1, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6885), 1, - sym_requires_clause, - STATE(7055), 1, + ACTIONS(8185), 1, + anon_sym_requires, + STATE(5503), 1, + sym__function_attributes_end, + STATE(5577), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8179), 2, anon_sym_final, anon_sym_override, - STATE(6360), 2, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6664), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6716), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 5, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [240495] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, - anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9279), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6517), 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, - [240535] = 13, + [194868] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7369), 1, + ACTIONS(6821), 1, anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(8859), 1, + ACTIONS(8250), 1, anon_sym_LBRACK, - STATE(6879), 1, - sym_requires_clause, - STATE(6971), 1, + ACTIONS(8290), 1, + anon_sym_requires, + STATE(5525), 1, + sym__function_attributes_end, + STATE(5686), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8287), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6677), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6717), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [240583] = 18, + anon_sym_EQ, + anon_sym_try, + [194927] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8911), 1, - anon_sym_try, - ACTIONS(9167), 1, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + ACTIONS(4981), 1, + anon_sym_LBRACE, + ACTIONS(4955), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4957), 21, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(9169), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9175), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym_EQ, - ACTIONS(9281), 1, - anon_sym_SEMI, - ACTIONS(9283), 1, - anon_sym_LBRACE, - STATE(2716), 1, - sym_compound_statement, - STATE(2719), 1, - sym_try_statement, - STATE(4570), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8203), 1, - aux_sym_declaration_repeat1, - STATE(8204), 1, - sym_gnu_asm_expression, - ACTIONS(9179), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, - sym_argument_list, - sym_initializer_list, - [240641] = 17, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [194964] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7255), 1, + ACTIONS(8034), 1, anon_sym_COLON_COLON, - ACTIONS(8500), 1, - anon_sym_LBRACE, - ACTIONS(8766), 1, + ACTIONS(8237), 1, sym_identifier, - STATE(3369), 1, + ACTIONS(8293), 1, + anon_sym_LPAREN2, + ACTIONS(8295), 1, + anon_sym_LBRACE, + ACTIONS(8299), 1, + anon_sym_requires, + STATE(2586), 1, sym_template_type, - STATE(5556), 1, - sym_field_declaration_list, - STATE(7279), 1, + STATE(3565), 1, + sym_requirement_seq, + STATE(5389), 1, + sym_lambda_capture_specifier, + STATE(5960), 1, sym__scope_resolution, - STATE(7884), 1, - sym_virtual_specifier, - STATE(8505), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(5436), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + STATE(6966), 1, + sym_requires_parameter_list, + ACTIONS(8297), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [240697] = 17, + STATE(3574), 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, + [195025] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7255), 1, + ACTIONS(8090), 1, anon_sym_COLON_COLON, - ACTIONS(8500), 1, - anon_sym_LBRACE, - ACTIONS(8766), 1, + ACTIONS(8216), 1, sym_identifier, - STATE(3369), 1, + ACTIONS(8301), 1, + anon_sym_LPAREN2, + ACTIONS(8303), 1, + anon_sym_LBRACE, + ACTIONS(8307), 1, + anon_sym_requires, + STATE(2356), 1, sym_template_type, - STATE(5539), 1, - sym_field_declaration_list, - STATE(7279), 1, + STATE(2700), 1, + sym_requirement_seq, + STATE(5417), 1, + sym_lambda_capture_specifier, + STATE(5965), 1, sym__scope_resolution, - STATE(7759), 1, - sym_virtual_specifier, - STATE(8545), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(5431), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + STATE(7166), 1, + sym_requires_parameter_list, + ACTIONS(8305), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [240753] = 18, + STATE(2701), 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, + [195086] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8887), 1, - anon_sym_try, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(9169), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6834), 1, + anon_sym_DASH_GT, + ACTIONS(8250), 1, anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym_EQ, - ACTIONS(9285), 1, - anon_sym_SEMI, - ACTIONS(9287), 1, - anon_sym_LBRACE, - STATE(2997), 1, - sym_try_statement, - STATE(2998), 1, - sym_compound_statement, - STATE(4570), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8382), 1, - aux_sym_declaration_repeat1, - STATE(8383), 1, + ACTIONS(8309), 1, + anon_sym_requires, + STATE(5497), 1, + sym__function_attributes_end, + STATE(5584), 1, + sym_trailing_return_type, + STATE(6128), 1, sym_gnu_asm_expression, - ACTIONS(9179), 2, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - STATE(6821), 2, + ACTIONS(8287), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, - sym_argument_list, - sym_initializer_list, - [240811] = 17, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [195145] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(4916), 1, + ACTIONS(8012), 1, anon_sym_COLON_COLON, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8772), 1, + ACTIONS(8218), 1, sym_identifier, - STATE(3369), 1, + ACTIONS(8312), 1, + anon_sym_LPAREN2, + ACTIONS(8314), 1, + anon_sym_LBRACE, + ACTIONS(8318), 1, + anon_sym_requires, + STATE(2467), 1, sym_template_type, - STATE(4476), 1, - sym_field_declaration_list, - STATE(7280), 1, + STATE(3482), 1, + sym_requirement_seq, + STATE(5416), 1, + sym_lambda_capture_specifier, + STATE(5980), 1, sym__scope_resolution, - STATE(7786), 1, - sym_virtual_specifier, - STATE(8691), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3761), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + STATE(6934), 1, + sym_requires_parameter_list, + ACTIONS(8316), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [240867] = 14, + STATE(3398), 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, + [195206] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9043), 1, - anon_sym_SLASH, - ACTIONS(9045), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9047), 1, - anon_sym_AMP_AMP, - ACTIONS(9049), 1, - anon_sym_PIPE, - ACTIONS(9051), 1, - anon_sym_CARET, - ACTIONS(9053), 1, - anon_sym_AMP, - ACTIONS(9039), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9041), 2, + ACTIONS(39), 1, + anon_sym___attribute__, + STATE(1943), 1, + sym_attribute_specifier, + ACTIONS(5522), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9055), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9057), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9059), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(9061), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9289), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [240917] = 17, + ACTIONS(5524), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [195243] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - ACTIONS(8788), 1, - anon_sym_COLON_COLON, - STATE(3369), 1, - sym_template_type, - STATE(4476), 1, - sym_field_declaration_list, - STATE(7267), 1, - sym__scope_resolution, - STATE(7786), 1, - sym_virtual_specifier, - STATE(8691), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6834), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7975), 1, + anon_sym_requires, + STATE(5518), 1, + sym__function_attributes_end, + STATE(5652), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7972), 2, anon_sym_final, anon_sym_override, - STATE(4648), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6273), 2, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [240973] = 17, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [195302] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5689), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(8795), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(3129), 1, - sym_field_declaration_list, - STATE(7300), 1, - sym__scope_resolution, - STATE(7585), 1, - sym_virtual_specifier, - STATE(8634), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6821), 1, + anon_sym_DASH_GT, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(8182), 1, + anon_sym_requires, + STATE(5513), 1, + sym__function_attributes_end, + STATE(5684), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8179), 2, anon_sym_final, anon_sym_override, - STATE(2888), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6287), 2, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [241029] = 9, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [195361] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, + ACTIONS(39), 1, + anon_sym___attribute__, + STATE(1955), 1, + sym_attribute_specifier, + ACTIONS(5534), 2, anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9291), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6540), 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, - [241069] = 13, + anon_sym_STAR, + ACTIONS(5536), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [195398] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7357), 1, + ACTIONS(6821), 1, anon_sym_DASH_GT, - ACTIONS(7361), 1, + ACTIONS(6853), 1, anon_sym_requires, - ACTIONS(8867), 1, + ACTIONS(8250), 1, anon_sym_LBRACK, - STATE(6881), 1, - sym_requires_clause, - STATE(7094), 1, + STATE(5472), 1, + sym__function_attributes_end, + STATE(5728), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6697), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6718), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 5, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [241117] = 17, + [195457] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, + ACTIONS(39), 1, + anon_sym___attribute__, + STATE(1988), 1, + sym_attribute_specifier, + ACTIONS(5492), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5494), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, sym_identifier, - ACTIONS(8788), 1, - anon_sym_COLON_COLON, - STATE(3369), 1, - sym_template_type, - STATE(4500), 1, - sym_field_declaration_list, - STATE(7267), 1, - sym__scope_resolution, - STATE(7705), 1, - sym_virtual_specifier, - STATE(8570), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4684), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6364), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [241173] = 17, + sym_auto, + anon_sym_decltype, + [195494] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5689), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(8795), 1, + ACTIONS(39), 1, + anon_sym___attribute__, + STATE(1967), 1, + sym_attribute_specifier, + ACTIONS(5471), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5473), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(3129), 1, - sym_field_declaration_list, - STATE(7300), 1, - sym__scope_resolution, - STATE(7585), 1, - sym_virtual_specifier, - STATE(8634), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(2888), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [241229] = 13, + sym_auto, + anon_sym_decltype, + [195531] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7357), 1, + ACTIONS(6821), 1, anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(8746), 1, + ACTIONS(7901), 1, anon_sym_LBRACK, - STATE(6885), 1, - sym_requires_clause, - STATE(7055), 1, + ACTIONS(7978), 1, + anon_sym_requires, + STATE(5502), 1, + sym__function_attributes_end, + STATE(5670), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7972), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6664), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6716), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 5, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [241277] = 15, + [195590] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(39), 1, anon_sym___attribute__, - ACTIONS(7202), 1, + STATE(1949), 1, + sym_attribute_specifier, + ACTIONS(5526), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5528), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [195627] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7483), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6834), 1, anon_sym_DASH_GT, - ACTIONS(7485), 1, + ACTIONS(6845), 1, anon_sym_requires, - ACTIONS(8859), 1, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6622), 1, - sym_requires_clause, - STATE(6652), 1, - sym_gnu_asm_expression, - STATE(7248), 1, + STATE(5499), 1, + sym__function_attributes_end, + STATE(5578), 1, sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7208), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8857), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6653), 2, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6863), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [241329] = 13, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [195686] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(8320), 1, + anon_sym_LPAREN2, + STATE(3391), 1, + sym_argument_list, + STATE(4368), 1, + sym_initializer_list, + ACTIONS(4955), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4957), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [195727] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + STATE(1961), 1, + sym_attribute_specifier, + ACTIONS(5485), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5487), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [195764] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7357), 1, + ACTIONS(6808), 1, anon_sym_DASH_GT, - ACTIONS(7361), 1, + ACTIONS(6851), 1, anon_sym_requires, - ACTIONS(8859), 1, + ACTIONS(8250), 1, anon_sym_LBRACK, - STATE(6879), 1, - sym_requires_clause, - STATE(7047), 1, + ACTIONS(8261), 1, + anon_sym_LBRACK_LBRACK, + STATE(5456), 1, + sym__function_attributes_end, + STATE(5656), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6629), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6717), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 5, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 5, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_try, - [241377] = 11, + [195823] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7210), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6808), 1, anon_sym_DASH_GT, - ACTIONS(7216), 1, + ACTIONS(6851), 1, anon_sym_requires, - ACTIONS(7239), 1, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6574), 1, + ACTIONS(8155), 1, + anon_sym_LBRACK_LBRACK, + STATE(5445), 1, + sym__function_attributes_end, + STATE(5641), 1, sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 8, - anon_sym_COMMA, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 5, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, anon_sym_try, - [241421] = 17, + [195882] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5834), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8701), 1, + ACTIONS(7998), 1, anon_sym_COLON_COLON, - ACTIONS(8790), 1, + ACTIONS(8200), 1, sym_identifier, - STATE(3296), 1, + ACTIONS(8323), 1, + anon_sym_LPAREN2, + ACTIONS(8325), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_requires, + STATE(2511), 1, sym_template_type, - STATE(3358), 1, - sym_field_declaration_list, - STATE(7302), 1, + STATE(4017), 1, + sym_requirement_seq, + STATE(5386), 1, + sym_lambda_capture_specifier, + STATE(5951), 1, sym__scope_resolution, - STATE(7691), 1, - sym_virtual_specifier, - STATE(8716), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3112), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + STATE(6897), 1, + sym_requires_parameter_list, + ACTIONS(8327), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [241477] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8108), 1, - anon_sym_STAR, - ACTIONS(9105), 1, - anon_sym_TILDE, - ACTIONS(9111), 1, - anon_sym_operator, - ACTIONS(9293), 1, - sym_identifier, - ACTIONS(9295), 1, - anon_sym_COLON_COLON, - ACTIONS(9297), 1, - anon_sym_template, - STATE(3379), 1, - sym_qualified_type_identifier, - STATE(3405), 1, - sym_dependent_type_identifier, - STATE(3418), 1, - sym_template_type, - STATE(3435), 1, - sym_operator_name, - STATE(3443), 1, - sym_destructor_name, - STATE(3444), 1, - sym_qualified_identifier, - STATE(3445), 1, - sym_dependent_identifier, - STATE(3464), 1, - sym_template_function, - STATE(3466), 1, - sym_pointer_type_declarator, - STATE(6363), 1, - sym__scope_resolution, - STATE(9550), 1, - sym_ms_based_modifier, - STATE(9648), 1, - sym_decltype, - [241541] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - ACTIONS(8788), 1, - anon_sym_COLON_COLON, - STATE(3369), 1, - sym_template_type, - STATE(4476), 1, - sym_field_declaration_list, - STATE(7267), 1, - sym__scope_resolution, - STATE(7786), 1, - sym_virtual_specifier, - STATE(8691), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4648), 2, + STATE(4362), 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, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [241597] = 17, + [195943] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6808), 1, + anon_sym_DASH_GT, + ACTIONS(6851), 1, + anon_sym_requires, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7937), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(8500), 1, - anon_sym_LBRACE, - ACTIONS(8766), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(5556), 1, - sym_field_declaration_list, - STATE(7279), 1, - sym__scope_resolution, - STATE(7884), 1, - sym_virtual_specifier, - STATE(8505), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + STATE(5440), 1, + sym__function_attributes_end, + STATE(5634), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(5436), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6372), 2, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [241653] = 17, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [196002] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7318), 1, - anon_sym_COLON_COLON, - ACTIONS(8621), 1, - anon_sym_LBRACE, - ACTIONS(8776), 1, + ACTIONS(39), 1, + anon_sym___attribute__, + STATE(2003), 1, + sym_attribute_specifier, + ACTIONS(5538), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5540), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, sym_identifier, - STATE(5620), 1, - sym_template_type, - STATE(5865), 1, - sym_field_declaration_list, - STATE(7289), 1, - sym__scope_resolution, - STATE(7772), 1, - sym_virtual_specifier, - STATE(8685), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(5607), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [241709] = 17, + sym_auto, + anon_sym_decltype, + [196039] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7280), 1, + ACTIONS(8060), 1, anon_sym_COLON_COLON, - ACTIONS(8764), 1, + ACTIONS(8198), 1, sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4474), 1, - sym_field_declaration_list, - STATE(7261), 1, - sym__scope_resolution, - STATE(7660), 1, - sym_virtual_specifier, - STATE(8591), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4263), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6400), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [241765] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, + ACTIONS(8331), 1, + anon_sym_LPAREN2, + ACTIONS(8333), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, - sym_identifier, - ACTIONS(8788), 1, - anon_sym_COLON_COLON, - STATE(3369), 1, + ACTIONS(8337), 1, + anon_sym_requires, + STATE(1892), 1, sym_template_type, - STATE(4500), 1, - sym_field_declaration_list, - STATE(7267), 1, + STATE(3657), 1, + sym_requirement_seq, + STATE(5419), 1, + sym_lambda_capture_specifier, + STATE(5972), 1, sym__scope_resolution, - STATE(7705), 1, - sym_virtual_specifier, - STATE(8570), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4684), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + STATE(7034), 1, + sym_requires_parameter_list, + ACTIONS(8335), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [241821] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(8500), 1, - anon_sym_LBRACE, - ACTIONS(8764), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(5556), 1, - sym_field_declaration_list, - STATE(7261), 1, - sym__scope_resolution, - STATE(7884), 1, - sym_virtual_specifier, - STATE(8505), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(5436), 2, + STATE(3856), 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, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [241877] = 17, + [196100] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(8500), 1, - anon_sym_LBRACE, - ACTIONS(8764), 1, + ACTIONS(39), 1, + anon_sym___attribute__, + STATE(1991), 1, + sym_attribute_specifier, + ACTIONS(5496), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5498), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(5556), 1, - sym_field_declaration_list, - STATE(7261), 1, - sym__scope_resolution, - STATE(7884), 1, - sym_virtual_specifier, - STATE(8505), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(5436), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6330), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [241933] = 15, + sym_auto, + anon_sym_decltype, + [196137] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___attribute__, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(7625), 1, + STATE(1945), 1, + sym_attribute_specifier, + ACTIONS(5506), 2, anon_sym_LPAREN2, - ACTIONS(7801), 1, - sym_identifier, - ACTIONS(7803), 1, anon_sym_STAR, - ACTIONS(7805), 1, - anon_sym_AMP_AMP, - ACTIONS(7807), 1, - anon_sym_AMP, - ACTIONS(9299), 1, - anon_sym_SEMI, - STATE(6156), 1, - sym__field_declarator, - STATE(7100), 1, - sym_operator_name, - STATE(9157), 1, - sym_ms_based_modifier, - STATE(9582), 1, - sym_attribute_specifier, - STATE(7189), 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, - [241985] = 17, + ACTIONS(5508), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [196174] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(8500), 1, - anon_sym_LBRACE, - ACTIONS(8766), 1, + ACTIONS(39), 1, + anon_sym___attribute__, + STATE(2001), 1, + sym_attribute_specifier, + ACTIONS(5502), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5504), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(5511), 1, - sym_field_declaration_list, - STATE(7279), 1, - sym__scope_resolution, - STATE(7809), 1, - sym_virtual_specifier, - STATE(8528), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(5433), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [242041] = 13, + sym_auto, + anon_sym_decltype, + [196211] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7357), 1, + ACTIONS(6834), 1, anon_sym_DASH_GT, - ACTIONS(7361), 1, + ACTIONS(6845), 1, anon_sym_requires, - ACTIONS(8859), 1, + ACTIONS(8250), 1, anon_sym_LBRACK, - STATE(6879), 1, - sym_requires_clause, - STATE(7047), 1, + STATE(5469), 1, + sym__function_attributes_end, + STATE(5553), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - STATE(6355), 2, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6629), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6717), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 5, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [242089] = 17, + [196270] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6808), 1, + anon_sym_DASH_GT, + ACTIONS(8250), 1, + anon_sym_LBRACK, + ACTIONS(8261), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(8764), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4474), 1, - sym_field_declaration_list, - STATE(7261), 1, - sym__scope_resolution, - STATE(7660), 1, - sym_virtual_specifier, - STATE(8591), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(8339), 1, + anon_sym_requires, + STATE(5436), 1, + sym__function_attributes_end, + STATE(5567), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8252), 2, anon_sym_final, anon_sym_override, - STATE(4263), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [242145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9303), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9301), 15, - anon_sym_COMMA, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 5, 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, - [242173] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9305), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6552), 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, - [242213] = 11, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [196329] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6834), 1, anon_sym_DASH_GT, - ACTIONS(8746), 1, + ACTIONS(6845), 1, + anon_sym_requires, + ACTIONS(7901), 1, anon_sym_LBRACK, - STATE(6582), 1, + STATE(5544), 1, + sym__function_attributes_end, + STATE(5562), 1, sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8744), 8, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [242257] = 18, + [196388] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1980), 1, - anon_sym_LBRACE, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(9169), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6808), 1, + anon_sym_DASH_GT, + ACTIONS(8080), 1, anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym_EQ, - ACTIONS(9307), 1, - anon_sym_SEMI, - ACTIONS(9309), 1, - anon_sym_try, - STATE(1433), 1, - sym_compound_statement, - STATE(1434), 1, - sym_try_statement, - STATE(4570), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8275), 1, - sym_gnu_asm_expression, - STATE(8284), 1, - aux_sym_declaration_repeat1, - ACTIONS(9179), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, - sym_argument_list, - sym_initializer_list, - [242315] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, - anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9311), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6522), 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, - [242355] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9073), 1, - sym_identifier, - ACTIONS(9077), 1, - anon_sym_LPAREN2, - ACTIONS(9079), 1, - anon_sym_defined, - ACTIONS(9313), 1, - sym_number_literal, - ACTIONS(9081), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9083), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9087), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6561), 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, - [242395] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9043), 1, - anon_sym_SLASH, - ACTIONS(9041), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9317), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9315), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [242427] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, + ACTIONS(8155), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7249), 1, + ACTIONS(8173), 1, anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - STATE(6586), 1, + STATE(5454), 1, + sym__function_attributes_end, + STATE(5640), 1, sym_trailing_return_type, - STATE(6707), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8082), 2, anon_sym_final, anon_sym_override, - STATE(5945), 2, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6571), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9191), 8, - anon_sym_COMMA, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 5, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_try, - [242471] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9317), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9315), 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, - [242499] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5689), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(8786), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(6082), 1, - sym_field_declaration_list, - STATE(7274), 1, - sym__scope_resolution, - STATE(7806), 1, - sym_virtual_specifier, - STATE(8717), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(5594), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [242555] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7318), 1, - anon_sym_COLON_COLON, - ACTIONS(8621), 1, - anon_sym_LBRACE, - ACTIONS(8776), 1, - sym_identifier, - STATE(5620), 1, - sym_template_type, - STATE(5910), 1, - sym_field_declaration_list, - STATE(7289), 1, - sym__scope_resolution, - STATE(7745), 1, - sym_virtual_specifier, - STATE(8675), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(5621), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6366), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [242611] = 15, + [196447] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, + ACTIONS(6808), 1, anon_sym_DASH_GT, - ACTIONS(8859), 1, + ACTIONS(7901), 1, anon_sym_LBRACK, - STATE(6655), 1, - sym_gnu_asm_expression, - STATE(6879), 1, - sym_requires_clause, - STATE(6971), 1, + ACTIONS(7937), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7983), 1, + anon_sym_requires, + STATE(5453), 1, + sym__function_attributes_end, + STATE(5646), 1, sym_trailing_return_type, - ACTIONS(7208), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(7905), 2, anon_sym_final, anon_sym_override, - ACTIONS(8857), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6651), 2, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6717), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6857), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [242663] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(7625), 1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 5, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7801), 1, - sym_identifier, - ACTIONS(7803), 1, - anon_sym_STAR, - ACTIONS(7805), 1, - anon_sym_AMP_AMP, - ACTIONS(7807), 1, - anon_sym_AMP, - ACTIONS(9319), 1, anon_sym_SEMI, - STATE(6150), 1, - sym__field_declarator, - STATE(7100), 1, - sym_operator_name, - STATE(9157), 1, - sym_ms_based_modifier, - STATE(9158), 1, - sym_attribute_specifier, - STATE(7189), 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, - [242715] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7952), 1, - anon_sym_STAR, - ACTIONS(9183), 1, - anon_sym_TILDE, - ACTIONS(9189), 1, - anon_sym_operator, - ACTIONS(9321), 1, - sym_identifier, - ACTIONS(9323), 1, - anon_sym_COLON_COLON, - ACTIONS(9325), 1, - anon_sym_template, - STATE(3379), 1, - sym_qualified_type_identifier, - STATE(3405), 1, - sym_dependent_type_identifier, - STATE(3418), 1, - sym_template_type, - STATE(3918), 1, - sym_operator_name, - STATE(3919), 1, - sym_qualified_identifier, - STATE(3920), 1, - sym_dependent_identifier, - STATE(3921), 1, - sym_destructor_name, - STATE(3922), 1, - sym_template_function, - STATE(3928), 1, - sym_pointer_type_declarator, - STATE(6388), 1, - sym__scope_resolution, - STATE(9431), 1, - sym_ms_based_modifier, - STATE(9648), 1, - sym_decltype, - [242779] = 17, + anon_sym_LBRACE, + anon_sym_try, + [196506] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5689), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8607), 1, + ACTIONS(8115), 1, anon_sym_COLON_COLON, - ACTIONS(8774), 1, + ACTIONS(8229), 1, sym_identifier, - STATE(2479), 1, + ACTIONS(8342), 1, + anon_sym_LPAREN2, + ACTIONS(8344), 1, + anon_sym_LBRACE, + ACTIONS(8348), 1, + anon_sym_requires, + STATE(2422), 1, sym_template_type, - STATE(3116), 1, - sym_field_declaration_list, - STATE(7275), 1, + STATE(3169), 1, + sym_requirement_seq, + STATE(5397), 1, + sym_lambda_capture_specifier, + STATE(5964), 1, sym__scope_resolution, - STATE(7727), 1, - sym_virtual_specifier, - STATE(8758), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(2830), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + STATE(7037), 1, + sym_requires_parameter_list, + ACTIONS(8346), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [242835] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(8396), 1, - anon_sym_STAR, - ACTIONS(8398), 1, - anon_sym_AMP_AMP, - ACTIONS(8400), 1, - anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - STATE(4704), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7183), 1, - sym__abstract_declarator, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7491), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [242879] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9043), 1, - anon_sym_SLASH, - ACTIONS(9047), 1, - anon_sym_AMP_AMP, - ACTIONS(9049), 1, - anon_sym_PIPE, - ACTIONS(9051), 1, - anon_sym_CARET, - ACTIONS(9053), 1, - anon_sym_AMP, - ACTIONS(9039), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9041), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9055), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9057), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9059), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(9061), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9315), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [242927] = 13, + STATE(3168), 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, + [196567] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7365), 1, + ACTIONS(6821), 1, anon_sym_DASH_GT, - ACTIONS(7367), 1, + ACTIONS(6853), 1, anon_sym_requires, - ACTIONS(8863), 1, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6676), 1, - sym_requires_clause, - STATE(6945), 1, + STATE(5511), 1, + sym__function_attributes_end, + STATE(5676), 1, sym_trailing_return_type, - ACTIONS(5663), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6519), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6690), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8861), 5, - anon_sym_RPAREN, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - [242975] = 17, + [196626] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7318), 1, - anon_sym_COLON_COLON, - ACTIONS(8621), 1, - anon_sym_LBRACE, - ACTIONS(8776), 1, + ACTIONS(39), 1, + anon_sym___attribute__, + STATE(2005), 1, + sym_attribute_specifier, + ACTIONS(5481), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5483), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, sym_identifier, - STATE(5620), 1, - sym_template_type, - STATE(5910), 1, - sym_field_declaration_list, - STATE(7289), 1, - sym__scope_resolution, - STATE(7745), 1, - sym_virtual_specifier, - STATE(8675), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(5621), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [243031] = 17, + sym_auto, + anon_sym_decltype, + [196663] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5775), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8647), 1, - anon_sym_COLON_COLON, - ACTIONS(8780), 1, - sym_identifier, - STATE(3227), 1, - sym_template_type, - STATE(3561), 1, - sym_field_declaration_list, - STATE(7282), 1, - sym__scope_resolution, - STATE(7631), 1, - sym_virtual_specifier, - STATE(8602), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3085), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6401), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [243087] = 13, + ACTIONS(39), 1, + anon_sym___attribute__, + STATE(1979), 1, + sym_attribute_specifier, + ACTIONS(5477), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5479), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [196700] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7369), 1, - anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(8867), 1, + ACTIONS(7091), 1, + anon_sym_LPAREN2, + ACTIONS(7099), 1, anon_sym_LBRACK, - STATE(6881), 1, - sym_requires_clause, - STATE(6975), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6667), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6718), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 5, + ACTIONS(7111), 1, + anon_sym_STAR, + ACTIONS(7113), 1, + anon_sym_AMP_AMP, + ACTIONS(7115), 1, + anon_sym_AMP, + STATE(3497), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5542), 1, + sym__abstract_declarator, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7127), 11, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACE, - [243135] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5775), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(8647), 1, - anon_sym_COLON_COLON, - ACTIONS(8780), 1, - sym_identifier, - STATE(3227), 1, - sym_template_type, - STATE(3561), 1, - sym_field_declaration_list, - STATE(7282), 1, - sym__scope_resolution, - STATE(7631), 1, - sym_virtual_specifier, - STATE(8602), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - STATE(3085), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [243191] = 9, + anon_sym_requires, + [196748] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9073), 1, - sym_identifier, - ACTIONS(9077), 1, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(9079), 1, - anon_sym_defined, - ACTIONS(9327), 1, - sym_number_literal, - ACTIONS(9081), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9083), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9087), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6351), 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, - [243231] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7121), 1, + anon_sym_STAR, + ACTIONS(7123), 1, + anon_sym_AMP_AMP, + ACTIONS(7125), 1, + anon_sym_AMP, + STATE(3397), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5479), 1, + sym__abstract_declarator, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7127), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(8764), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4489), 1, - sym_field_declaration_list, - STATE(7261), 1, - sym__scope_resolution, - STATE(7689), 1, - sym_virtual_specifier, - STATE(8583), 1, - sym_base_class_clause, - ACTIONS(6656), 2, anon_sym_final, anon_sym_override, - STATE(4335), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6307), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [243287] = 11, + anon_sym_try, + anon_sym_requires, + [196796] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6861), 1, + anon_sym_DASH_GT, + ACTIONS(8250), 1, anon_sym_LBRACK, - ACTIONS(7249), 1, + ACTIONS(8350), 1, anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - STATE(6608), 1, + STATE(5616), 1, + sym__function_attributes_end, + STATE(5779), 1, sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8287), 2, anon_sym_final, anon_sym_override, - STATE(5945), 2, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 8, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [243331] = 17, + anon_sym_GT2, + [196854] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(8764), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4489), 1, - sym_field_declaration_list, - STATE(7261), 1, - sym__scope_resolution, - STATE(7689), 1, - sym_virtual_specifier, - STATE(8583), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6861), 1, + anon_sym_DASH_GT, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(8220), 1, + anon_sym_requires, + STATE(5618), 1, + sym__function_attributes_end, + STATE(5786), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8179), 2, anon_sym_final, anon_sym_override, - STATE(4335), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [243387] = 17, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [196912] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5775), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8647), 1, - anon_sym_COLON_COLON, - ACTIONS(8780), 1, - sym_identifier, - STATE(3227), 1, - sym_template_type, - STATE(3535), 1, - sym_field_declaration_list, - STATE(7282), 1, - sym__scope_resolution, - STATE(7601), 1, - sym_virtual_specifier, - STATE(8652), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6861), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(8135), 1, + anon_sym_requires, + STATE(5549), 1, + sym__function_attributes_end, + STATE(5795), 1, + sym_trailing_return_type, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7972), 2, anon_sym_final, anon_sym_override, - STATE(3073), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [243443] = 11, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [196970] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6861), 1, anon_sym_DASH_GT, - STATE(6587), 1, + ACTIONS(6863), 1, + anon_sym_requires, + ACTIONS(8250), 1, + anon_sym_LBRACK, + STATE(5638), 1, + sym__function_attributes_end, + STATE(5817), 1, sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - STATE(5945), 2, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 8, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_GT2, + [197028] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7091), 1, + anon_sym_LPAREN2, + ACTIONS(7093), 1, + anon_sym_STAR, + ACTIONS(7095), 1, + anon_sym_AMP_AMP, + ACTIONS(7097), 1, + anon_sym_AMP, + ACTIONS(7099), 1, + anon_sym_LBRACK, + STATE(3506), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5466), 1, + sym__abstract_declarator, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7127), 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, - [243487] = 13, + anon_sym_requires, + [197076] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7365), 1, + ACTIONS(6861), 1, anon_sym_DASH_GT, - ACTIONS(7367), 1, + ACTIONS(6863), 1, anon_sym_requires, - STATE(6678), 1, - sym_requires_clause, - STATE(6934), 1, + ACTIONS(8080), 1, + anon_sym_LBRACK, + STATE(5644), 1, + sym__function_attributes_end, + STATE(5820), 1, sym_trailing_return_type, - ACTIONS(5663), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - STATE(6278), 2, + STATE(4994), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6703), 2, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 5, - anon_sym_RPAREN, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [243535] = 11, + anon_sym_GT2, + [197134] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6861), 1, + anon_sym_DASH_GT, + ACTIONS(6863), 1, anon_sym_requires, - ACTIONS(7239), 1, + ACTIONS(7901), 1, anon_sym_LBRACK, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - STATE(6574), 1, + STATE(5649), 1, + sym__function_attributes_end, + STATE(5832), 1, sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(6128), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5250), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 8, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [243579] = 17, + anon_sym_GT2, + [197192] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5775), 1, + ACTIONS(4981), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8647), 1, - anon_sym_COLON_COLON, - ACTIONS(8780), 1, - sym_identifier, - STATE(3227), 1, - sym_template_type, - STATE(3535), 1, - sym_field_declaration_list, - STATE(7282), 1, - sym__scope_resolution, - STATE(7601), 1, - sym_virtual_specifier, - STATE(8652), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3073), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6245), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [243635] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9043), 1, - anon_sym_SLASH, - ACTIONS(9049), 1, - anon_sym_PIPE, - ACTIONS(9051), 1, - anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(4955), 2, anon_sym_AMP, - ACTIONS(9039), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9041), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9055), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9057), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9059), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(9061), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9315), 4, + anon_sym_const, + ACTIONS(4957), 21, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - [243681] = 9, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [197226] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9073), 1, - sym_identifier, - ACTIONS(9077), 1, + ACTIONS(8355), 2, anon_sym_LPAREN2, - ACTIONS(9079), 1, - anon_sym_defined, - ACTIONS(9329), 1, - sym_number_literal, - ACTIONS(9081), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9083), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9087), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6406), 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, - [243721] = 15, + anon_sym_STAR, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8353), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [197261] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(7625), 1, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(8360), 1, + anon_sym_const, + STATE(4975), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4901), 8, anon_sym_LPAREN2, - ACTIONS(7801), 1, - sym_identifier, - ACTIONS(7803), 1, anon_sym_STAR, - ACTIONS(7805), 1, anon_sym_AMP_AMP, - ACTIONS(7807), 1, - anon_sym_AMP, - ACTIONS(9331), 1, - anon_sym_SEMI, - STATE(6158), 1, - sym__field_declarator, - STATE(7100), 1, - sym_operator_name, - STATE(9069), 1, - sym_attribute_specifier, - STATE(9157), 1, - sym_ms_based_modifier, - STATE(7189), 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, - [243773] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5689), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, + anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(8786), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(6082), 1, - sym_field_declaration_list, - STATE(7274), 1, - sym__scope_resolution, - STATE(7806), 1, - sym_virtual_specifier, - STATE(8717), 1, - sym_base_class_clause, - ACTIONS(6656), 2, anon_sym_final, anon_sym_override, - STATE(5594), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [243829] = 17, + anon_sym_requires, + ACTIONS(8357), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [197298] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(8500), 1, + ACTIONS(2208), 1, anon_sym_LBRACE, - ACTIONS(8766), 1, + ACTIONS(6889), 1, + anon_sym_LPAREN2, + STATE(3207), 1, + sym_argument_list, + STATE(3551), 1, + sym_initializer_list, + ACTIONS(4955), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4957), 17, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + [197337] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8365), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(4474), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8363), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(5511), 1, - sym_field_declaration_list, - STATE(7279), 1, - sym__scope_resolution, - STATE(7809), 1, - sym_virtual_specifier, - STATE(8528), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(5433), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6348), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [243885] = 17, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [197372] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4916), 1, - anon_sym_COLON_COLON, - ACTIONS(5107), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8369), 1, + anon_sym_SEMI, + ACTIONS(8371), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + ACTIONS(8373), 1, + anon_sym_LBRACK, + ACTIONS(8375), 1, + anon_sym_EQ, + ACTIONS(8377), 1, anon_sym_COLON, - ACTIONS(8772), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4500), 1, - sym_field_declaration_list, - STATE(7280), 1, - sym__scope_resolution, - STATE(7705), 1, - sym_virtual_specifier, - STATE(8570), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3743), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, + ACTIONS(8379), 1, + anon_sym_try, + STATE(1819), 1, + sym_try_statement, + STATE(1821), 1, + sym_delete_method_clause, + STATE(1825), 1, + sym_default_method_clause, + STATE(1830), 1, + sym_compound_statement, + STATE(3481), 1, + sym_parameter_list, + STATE(5880), 1, + sym__function_declarator_seq, + STATE(6176), 1, + sym_bitfield_clause, + STATE(6183), 1, + aux_sym_field_declaration_repeat1, + STATE(6197), 1, + sym_initializer_list, + STATE(7288), 1, + sym_attribute_specifier, + STATE(5819), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [243941] = 21, + [197440] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(2012), 1, + ACTIONS(131), 1, anon_sym_operator, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(2705), 1, + ACTIONS(2693), 1, anon_sym_TILDE, - ACTIONS(4842), 1, + ACTIONS(2703), 1, anon_sym_COLON_COLON, - ACTIONS(8010), 1, + ACTIONS(7504), 1, anon_sym_STAR, - ACTIONS(9333), 1, + ACTIONS(8381), 1, sym_identifier, - ACTIONS(9335), 1, + ACTIONS(8383), 1, anon_sym_template, - STATE(3377), 1, - sym_operator_name, - STATE(3379), 1, - sym_qualified_type_identifier, - STATE(3398), 1, - sym_qualified_identifier, - STATE(3405), 1, - sym_dependent_type_identifier, - STATE(3408), 1, - sym_dependent_identifier, - STATE(3410), 1, - sym_destructor_name, - STATE(3416), 1, - sym_template_function, - STATE(3418), 1, - sym_template_type, - STATE(3420), 1, + STATE(2549), 1, sym_pointer_type_declarator, - STATE(6412), 1, + STATE(2550), 1, + sym_template_type, + STATE(2552), 1, + sym_template_function, + STATE(2554), 1, + sym_destructor_name, + STATE(2555), 1, + sym_dependent_identifier, + STATE(2556), 1, + sym_dependent_type_identifier, + STATE(2559), 1, + sym_qualified_identifier, + STATE(2560), 1, + sym_qualified_type_identifier, + STATE(2566), 1, + sym_operator_name, + STATE(4979), 1, sym__scope_resolution, - STATE(8943), 1, + STATE(6359), 1, + sym_qualified_operator_cast_identifier, + STATE(6373), 1, + sym_operator_cast, + STATE(7570), 1, sym_ms_based_modifier, - STATE(9648), 1, + STATE(7683), 1, sym_decltype, - [244005] = 11, + [197510] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6579), 1, - sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 8, - anon_sym_COMMA, + ACTIONS(8387), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [244049] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9043), 1, + STATE(5166), 1, + sym_preproc_argument_list, + ACTIONS(8389), 5, anon_sym_SLASH, - ACTIONS(9051), 1, - anon_sym_CARET, - ACTIONS(9053), 1, - anon_sym_AMP, - ACTIONS(9317), 1, anon_sym_PIPE, - ACTIONS(9039), 2, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8385), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9041), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9055), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(9057), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9059), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(9061), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9315), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [244095] = 17, + [197544] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4916), 1, - anon_sym_COLON_COLON, - ACTIONS(5107), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8373), 1, + anon_sym_LBRACK, + ACTIONS(8377), 1, anon_sym_COLON, - ACTIONS(8772), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4500), 1, - sym_field_declaration_list, - STATE(7280), 1, - sym__scope_resolution, - STATE(7705), 1, - sym_virtual_specifier, - STATE(8570), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3743), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6350), 2, + ACTIONS(8391), 1, + anon_sym_SEMI, + ACTIONS(8393), 1, + anon_sym_LBRACE, + ACTIONS(8395), 1, + anon_sym_EQ, + ACTIONS(8397), 1, + anon_sym_try, + STATE(2087), 1, + sym_compound_statement, + STATE(2088), 1, + sym_default_method_clause, + STATE(2089), 1, + sym_delete_method_clause, + STATE(2091), 1, + sym_try_statement, + STATE(3481), 1, + sym_parameter_list, + STATE(5880), 1, + sym__function_declarator_seq, + STATE(6144), 1, + sym_bitfield_clause, + STATE(6145), 1, + sym_initializer_list, + STATE(6146), 1, + aux_sym_field_declaration_repeat1, + STATE(7290), 1, + sym_attribute_specifier, + STATE(5819), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [244151] = 17, + [197612] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5107), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5834), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8373), 1, + anon_sym_LBRACK, + ACTIONS(8377), 1, anon_sym_COLON, - ACTIONS(7296), 1, - anon_sym_COLON_COLON, - ACTIONS(8770), 1, - sym_identifier, - STATE(3296), 1, - sym_template_type, - STATE(3366), 1, - sym_field_declaration_list, - STATE(7297), 1, - sym__scope_resolution, - STATE(7889), 1, - sym_virtual_specifier, - STATE(8494), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3100), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, + ACTIONS(8399), 1, + anon_sym_SEMI, + ACTIONS(8401), 1, + anon_sym_LBRACE, + ACTIONS(8403), 1, + anon_sym_EQ, + ACTIONS(8405), 1, + anon_sym_try, + STATE(2267), 1, + sym_compound_statement, + STATE(2270), 1, + sym_default_method_clause, + STATE(2278), 1, + sym_delete_method_clause, + STATE(2280), 1, + sym_try_statement, + STATE(3481), 1, + sym_parameter_list, + STATE(5880), 1, + sym__function_declarator_seq, + STATE(6154), 1, + aux_sym_field_declaration_repeat1, + STATE(6155), 1, + sym_initializer_list, + STATE(6159), 1, + sym_bitfield_clause, + STATE(7777), 1, + sym_attribute_specifier, + STATE(5819), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [244207] = 17, + [197680] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5834), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7296), 1, + ACTIONS(7998), 1, anon_sym_COLON_COLON, - ACTIONS(8770), 1, + ACTIONS(8200), 1, sym_identifier, - STATE(3296), 1, + ACTIONS(8329), 1, + anon_sym_requires, + ACTIONS(8407), 1, + anon_sym_LPAREN2, + STATE(2511), 1, sym_template_type, - STATE(3394), 1, - sym_field_declaration_list, - STATE(7297), 1, + STATE(5386), 1, + sym_lambda_capture_specifier, + STATE(5951), 1, sym__scope_resolution, - STATE(7820), 1, - sym_virtual_specifier, - STATE(8549), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3105), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6416), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + ACTIONS(8409), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [244263] = 17, + STATE(4373), 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, + [197732] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5834), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7296), 1, - anon_sym_COLON_COLON, - ACTIONS(8770), 1, + ACTIONS(8337), 1, + anon_sym_requires, + ACTIONS(8411), 1, sym_identifier, - STATE(3296), 1, + ACTIONS(8413), 1, + anon_sym_LPAREN2, + ACTIONS(8415), 1, + anon_sym_COLON_COLON, + STATE(1892), 1, sym_template_type, - STATE(3394), 1, - sym_field_declaration_list, - STATE(7297), 1, + STATE(5419), 1, + sym_lambda_capture_specifier, + STATE(5988), 1, sym__scope_resolution, - STATE(7820), 1, - sym_virtual_specifier, - STATE(8549), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3105), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + ACTIONS(8417), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [244319] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7952), 1, - anon_sym_STAR, - ACTIONS(9201), 1, - anon_sym_TILDE, - ACTIONS(9207), 1, - anon_sym_operator, - ACTIONS(9337), 1, - sym_identifier, - ACTIONS(9339), 1, - anon_sym_COLON_COLON, - ACTIONS(9341), 1, - anon_sym_template, - STATE(3379), 1, + STATE(5626), 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, - STATE(3405), 1, - sym_dependent_type_identifier, - STATE(3418), 1, - sym_template_type, - STATE(4008), 1, - sym_pointer_type_declarator, - STATE(4099), 1, - sym_template_function, - STATE(4100), 1, - sym_destructor_name, - STATE(4102), 1, - sym_dependent_identifier, - STATE(4116), 1, - sym_qualified_identifier, - STATE(4125), 1, - sym_operator_name, - STATE(6419), 1, - sym__scope_resolution, - STATE(9431), 1, - sym_ms_based_modifier, - STATE(9648), 1, - sym_decltype, - [244383] = 13, + [197784] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7239), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(7365), 1, - anon_sym_DASH_GT, - ACTIONS(7367), 1, - anon_sym_requires, - STATE(6678), 1, - sym_requires_clause, - STATE(6934), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6703), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [244431] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7966), 1, - anon_sym_STAR, - ACTIONS(9343), 1, - sym_identifier, - ACTIONS(9345), 1, - anon_sym_TILDE, - ACTIONS(9347), 1, + ACTIONS(3673), 1, anon_sym_COLON_COLON, - ACTIONS(9349), 1, - anon_sym_template, - ACTIONS(9351), 1, - anon_sym_operator, - STATE(3279), 1, - sym_dependent_type_identifier, - STATE(3304), 1, + ACTIONS(8190), 1, + sym_identifier, + ACTIONS(8419), 1, + anon_sym_LPAREN2, + ACTIONS(8423), 1, + anon_sym_requires, + STATE(2542), 1, sym_template_type, - STATE(3334), 1, - sym_qualified_type_identifier, - STATE(4223), 1, - sym_pointer_type_declarator, - STATE(4329), 1, - sym_template_function, - STATE(4330), 1, - sym_operator_name, - STATE(4334), 1, - sym_qualified_identifier, - STATE(4338), 1, - sym_dependent_identifier, - STATE(4339), 1, - sym_destructor_name, - STATE(6421), 1, + STATE(5424), 1, + sym_lambda_capture_specifier, + STATE(5983), 1, sym__scope_resolution, - STATE(9176), 1, - sym_ms_based_modifier, - STATE(9648), 1, + ACTIONS(8421), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, - [244495] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7369), 1, - anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - STATE(6891), 1, - sym_requires_clause, - STATE(6965), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6468), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6649), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [244543] = 17, + sym_dependent_type_identifier, + STATE(5595), 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, + [197836] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5689), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8774), 1, + ACTIONS(8419), 1, + anon_sym_LPAREN2, + ACTIONS(8423), 1, + anon_sym_requires, + ACTIONS(8425), 1, sym_identifier, - STATE(2479), 1, + ACTIONS(8427), 1, + anon_sym_COLON_COLON, + STATE(2296), 1, sym_template_type, - STATE(3130), 1, - sym_field_declaration_list, - STATE(7275), 1, + STATE(5352), 1, + sym_lambda_capture_specifier, + STATE(5949), 1, sym__scope_resolution, - STATE(7836), 1, - sym_virtual_specifier, - STATE(8849), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(2889), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + ACTIONS(8429), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [244599] = 17, + STATE(2323), 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, + [197888] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5689), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8774), 1, + ACTIONS(8337), 1, + anon_sym_requires, + ACTIONS(8411), 1, sym_identifier, - STATE(2479), 1, + ACTIONS(8413), 1, + anon_sym_LPAREN2, + ACTIONS(8415), 1, + anon_sym_COLON_COLON, + STATE(1892), 1, sym_template_type, - STATE(3116), 1, - sym_field_declaration_list, - STATE(7275), 1, + STATE(5419), 1, + sym_lambda_capture_specifier, + STATE(5988), 1, sym__scope_resolution, - STATE(7727), 1, - sym_virtual_specifier, - STATE(8758), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(2830), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6423), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + ACTIONS(8431), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [244655] = 11, + STATE(3694), 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, + [197940] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(9043), 1, - anon_sym_SLASH, - ACTIONS(9053), 1, - anon_sym_AMP, - ACTIONS(9317), 1, - anon_sym_PIPE, - ACTIONS(9039), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9041), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9055), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9057), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9059), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(9061), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9315), 5, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7049), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [244699] = 17, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8373), 1, + anon_sym_LBRACK, + ACTIONS(8377), 1, + anon_sym_COLON, + ACTIONS(8433), 1, + anon_sym_SEMI, + ACTIONS(8435), 1, + anon_sym_LBRACE, + ACTIONS(8437), 1, + anon_sym_EQ, + ACTIONS(8439), 1, + anon_sym_try, + STATE(2177), 1, + sym_try_statement, + STATE(2186), 1, + sym_delete_method_clause, + STATE(2209), 1, + sym_default_method_clause, + STATE(2211), 1, + sym_compound_statement, + STATE(3481), 1, + sym_parameter_list, + STATE(5880), 1, + sym__function_declarator_seq, + STATE(6177), 1, + aux_sym_field_declaration_repeat1, + STATE(6188), 1, + sym_bitfield_clause, + STATE(6193), 1, + sym_initializer_list, + STATE(7438), 1, + sym_attribute_specifier, + STATE(5819), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [198008] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5963), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8625), 1, - anon_sym_COLON_COLON, - ACTIONS(8782), 1, + ACTIONS(7572), 1, + anon_sym_STAR, + ACTIONS(8441), 1, sym_identifier, - STATE(3332), 1, + ACTIONS(8443), 1, + anon_sym_TILDE, + ACTIONS(8445), 1, + anon_sym_COLON_COLON, + ACTIONS(8447), 1, + anon_sym_template, + ACTIONS(8449), 1, + anon_sym_operator, + STATE(2549), 1, + sym_pointer_type_declarator, + STATE(2550), 1, sym_template_type, - STATE(3836), 1, - sym_field_declaration_list, - STATE(7276), 1, + STATE(2552), 1, + sym_template_function, + STATE(2554), 1, + sym_destructor_name, + STATE(2555), 1, + sym_dependent_identifier, + STATE(2556), 1, + sym_dependent_type_identifier, + STATE(2559), 1, + sym_qualified_identifier, + STATE(2560), 1, + sym_qualified_type_identifier, + STATE(2566), 1, + sym_operator_name, + STATE(4989), 1, sym__scope_resolution, - STATE(7603), 1, - sym_virtual_specifier, - STATE(8605), 1, - sym_base_class_clause, - ACTIONS(6656), 2, + STATE(6359), 1, + sym_qualified_operator_cast_identifier, + STATE(6373), 1, + sym_operator_cast, + STATE(7189), 1, + sym_ms_based_modifier, + STATE(7683), 1, + sym_decltype, + [198078] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6913), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7975), 1, + anon_sym_requires, + STATE(5652), 1, + sym_trailing_return_type, + STATE(5797), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7893), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(7972), 2, anon_sym_final, anon_sym_override, - STATE(3175), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6439), 2, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [244755] = 17, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + [198134] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5963), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8625), 1, + ACTIONS(6939), 1, anon_sym_COLON_COLON, - ACTIONS(8782), 1, + ACTIONS(8194), 1, sym_identifier, - STATE(3332), 1, + ACTIONS(8419), 1, + anon_sym_LPAREN2, + ACTIONS(8423), 1, + anon_sym_requires, + STATE(2542), 1, sym_template_type, - STATE(3836), 1, - sym_field_declaration_list, - STATE(7276), 1, + STATE(5424), 1, + sym_lambda_capture_specifier, + STATE(5978), 1, sym__scope_resolution, - STATE(7603), 1, - sym_virtual_specifier, - STATE(8605), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3175), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + ACTIONS(8451), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [244811] = 11, + STATE(5303), 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, + [198186] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, + ACTIONS(6913), 1, anon_sym_DASH_GT, - ACTIONS(8859), 1, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6580), 1, + ACTIONS(8185), 1, + anon_sym_requires, + STATE(5577), 1, sym_trailing_return_type, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(5787), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8072), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(8179), 2, anon_sym_final, anon_sym_override, - STATE(5945), 2, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6515), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 8, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + [198242] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(8455), 1, + anon_sym_LBRACK, + STATE(4344), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5289), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8453), 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, - [244855] = 13, + anon_sym_requires, + [198280] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(7239), 1, + ACTIONS(8459), 1, anon_sym_LBRACK, - ACTIONS(7369), 1, - anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - STATE(6891), 1, - sym_requires_clause, - STATE(6965), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5422), 2, + STATE(4344), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6649), 2, + aux_sym_type_definition_repeat1, + STATE(5311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 5, + ACTIONS(8457), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [244903] = 11, + 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, + [198318] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, + ACTIONS(6913), 1, + anon_sym_DASH_GT, + ACTIONS(8250), 1, anon_sym_LBRACK, - ACTIONS(7216), 1, + ACTIONS(8309), 1, anon_sym_requires, - ACTIONS(7292), 1, - anon_sym_DASH_GT, - STATE(6605), 1, + STATE(5584), 1, sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(5833), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8242), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(8287), 2, anon_sym_final, anon_sym_override, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [244947] = 17, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + [198374] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7318), 1, + ACTIONS(6939), 1, anon_sym_COLON_COLON, - ACTIONS(8621), 1, - anon_sym_LBRACE, - ACTIONS(8776), 1, + ACTIONS(8194), 1, sym_identifier, - STATE(5620), 1, + ACTIONS(8419), 1, + anon_sym_LPAREN2, + ACTIONS(8423), 1, + anon_sym_requires, + STATE(2542), 1, sym_template_type, - STATE(5897), 1, - sym_field_declaration_list, - STATE(7289), 1, + STATE(5424), 1, + sym_lambda_capture_specifier, + STATE(5978), 1, sym__scope_resolution, - STATE(7708), 1, - sym_virtual_specifier, - STATE(8664), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(5593), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + ACTIONS(8461), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [245003] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9115), 1, - sym_identifier, - ACTIONS(9117), 1, - anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9353), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6506), 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, - [245043] = 18, + STATE(1733), 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, + [198426] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(9169), 1, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(7099), 1, anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym_EQ, - ACTIONS(9355), 1, - anon_sym_SEMI, - ACTIONS(9357), 1, - anon_sym_LBRACE, - ACTIONS(9359), 1, - anon_sym_try, - STATE(1338), 1, - sym_compound_statement, - STATE(1341), 1, - sym_try_statement, - STATE(4570), 1, + ACTIONS(7412), 1, + anon_sym_STAR, + ACTIONS(7414), 1, + anon_sym_AMP_AMP, + ACTIONS(7416), 1, + anon_sym_AMP, + STATE(3499), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5399), 1, sym__function_declarator_seq, - STATE(8220), 1, - sym_gnu_asm_expression, - STATE(8261), 1, - aux_sym_declaration_repeat1, - ACTIONS(9179), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, - sym_argument_list, - sym_initializer_list, - [245101] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9073), 1, - sym_identifier, - ACTIONS(9077), 1, - anon_sym_LPAREN2, - ACTIONS(9079), 1, - anon_sym_defined, - ACTIONS(9361), 1, - sym_number_literal, - ACTIONS(9081), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9083), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9087), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6467), 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, - [245141] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9073), 1, - sym_identifier, - ACTIONS(9077), 1, - anon_sym_LPAREN2, - ACTIONS(9079), 1, - anon_sym_defined, - ACTIONS(9363), 1, - sym_number_literal, - ACTIONS(9081), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9083), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9087), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6479), 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, - [245181] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9029), 1, - anon_sym_try, - ACTIONS(9167), 1, + STATE(5717), 1, + sym__abstract_declarator, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7127), 9, anon_sym_COMMA, - ACTIONS(9169), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym_EQ, - ACTIONS(9365), 1, - anon_sym_SEMI, - ACTIONS(9367), 1, - anon_sym_LBRACE, - STATE(2852), 1, - sym_try_statement, - STATE(2856), 1, - sym_compound_statement, - STATE(4570), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8137), 1, - aux_sym_declaration_repeat1, - STATE(8138), 1, - sym_gnu_asm_expression, - ACTIONS(9179), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, - sym_argument_list, - sym_initializer_list, - [245239] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, + anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6581), 1, - sym_trailing_return_type, - STATE(6643), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [245283] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9043), 1, - anon_sym_SLASH, - ACTIONS(9039), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9041), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9055), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9057), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9059), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(9061), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9317), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(9315), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [245325] = 17, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [198472] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5963), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8625), 1, - anon_sym_COLON_COLON, - ACTIONS(8782), 1, + ACTIONS(8337), 1, + anon_sym_requires, + ACTIONS(8411), 1, sym_identifier, - STATE(3332), 1, + ACTIONS(8413), 1, + anon_sym_LPAREN2, + ACTIONS(8415), 1, + anon_sym_COLON_COLON, + STATE(1892), 1, sym_template_type, - STATE(3798), 1, - sym_field_declaration_list, - STATE(7276), 1, + STATE(5419), 1, + sym_lambda_capture_specifier, + STATE(5988), 1, sym__scope_resolution, - STATE(7919), 1, - sym_virtual_specifier, - STATE(8485), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3152), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + ACTIONS(8463), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [245381] = 17, + STATE(5596), 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, + [198524] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5963), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8625), 1, + ACTIONS(8034), 1, anon_sym_COLON_COLON, - ACTIONS(8782), 1, + ACTIONS(8237), 1, sym_identifier, - STATE(3332), 1, + ACTIONS(8299), 1, + anon_sym_requires, + ACTIONS(8465), 1, + anon_sym_LPAREN2, + STATE(2586), 1, sym_template_type, - STATE(3798), 1, - sym_field_declaration_list, - STATE(7276), 1, + STATE(5389), 1, + sym_lambda_capture_specifier, + STATE(5960), 1, sym__scope_resolution, - STATE(7919), 1, - sym_virtual_specifier, - STATE(8485), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3152), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6443), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + ACTIONS(8467), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [245437] = 11, + STATE(3583), 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, + [198576] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7210), 1, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6985), 1, anon_sym_DASH_GT, - ACTIONS(7216), 1, + ACTIONS(6987), 1, anon_sym_requires, - ACTIONS(9193), 1, + ACTIONS(8077), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6599), 1, + STATE(5733), 1, + sym__function_attributes_end, + STATE(5886), 1, sym_trailing_return_type, - STATE(6707), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(6571), 2, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8072), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9191), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [245481] = 21, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + [198632] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2056), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7966), 1, - anon_sym_STAR, - ACTIONS(9345), 1, - anon_sym_TILDE, - ACTIONS(9351), 1, - anon_sym_operator, - ACTIONS(9369), 1, - sym_identifier, - ACTIONS(9371), 1, + ACTIONS(8034), 1, anon_sym_COLON_COLON, - ACTIONS(9373), 1, - anon_sym_template, - STATE(3379), 1, - sym_qualified_type_identifier, - STATE(3405), 1, - sym_dependent_type_identifier, - STATE(3418), 1, + ACTIONS(8237), 1, + sym_identifier, + ACTIONS(8299), 1, + anon_sym_requires, + ACTIONS(8465), 1, + anon_sym_LPAREN2, + STATE(2586), 1, sym_template_type, - STATE(4223), 1, - sym_pointer_type_declarator, - STATE(4329), 1, - sym_template_function, - STATE(4330), 1, - sym_operator_name, - STATE(4334), 1, - sym_qualified_identifier, - STATE(4338), 1, - sym_dependent_identifier, - STATE(4339), 1, - sym_destructor_name, - STATE(6442), 1, + STATE(5389), 1, + sym_lambda_capture_specifier, + STATE(5960), 1, sym__scope_resolution, - STATE(9176), 1, - sym_ms_based_modifier, - STATE(9648), 1, + ACTIONS(8469), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, - [245545] = 17, + sym_dependent_type_identifier, + STATE(3520), 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, + [198684] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5963), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8625), 1, + ACTIONS(6939), 1, anon_sym_COLON_COLON, - ACTIONS(8782), 1, + ACTIONS(8194), 1, sym_identifier, - STATE(3332), 1, + ACTIONS(8419), 1, + anon_sym_LPAREN2, + ACTIONS(8423), 1, + anon_sym_requires, + STATE(2542), 1, sym_template_type, - STATE(3717), 1, - sym_field_declaration_list, - STATE(7276), 1, + STATE(5424), 1, + sym_lambda_capture_specifier, + STATE(5978), 1, sym__scope_resolution, - STATE(7980), 1, - sym_virtual_specifier, - STATE(8772), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3189), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + ACTIONS(8471), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [245601] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9043), 1, - anon_sym_SLASH, - ACTIONS(9039), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9041), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9057), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9059), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(9061), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9317), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(9315), 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, - [245641] = 17, + STATE(5291), 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, + [198736] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5689), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7233), 1, + ACTIONS(6965), 1, anon_sym_COLON_COLON, - ACTIONS(8795), 1, + ACTIONS(8192), 1, sym_identifier, - STATE(2479), 1, + ACTIONS(8473), 1, + anon_sym_LPAREN2, + ACTIONS(8477), 1, + anon_sym_requires, + STATE(4482), 1, sym_template_type, - STATE(3130), 1, - sym_field_declaration_list, - STATE(7300), 1, + STATE(5365), 1, + sym_lambda_capture_specifier, + STATE(5975), 1, sym__scope_resolution, - STATE(7836), 1, - sym_virtual_specifier, - STATE(8849), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(2889), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + ACTIONS(8475), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [245697] = 13, + STATE(5663), 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, + [198788] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7204), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(7365), 1, - anon_sym_DASH_GT, - ACTIONS(7367), 1, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8198), 1, + sym_identifier, + ACTIONS(8337), 1, anon_sym_requires, - STATE(6701), 1, - sym_requires_clause, - STATE(6929), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6420), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6639), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 5, - anon_sym_RPAREN, + ACTIONS(8413), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [245745] = 7, + STATE(1892), 1, + sym_template_type, + STATE(5419), 1, + sym_lambda_capture_specifier, + STATE(5972), 1, + sym__scope_resolution, + ACTIONS(8431), 2, + sym_true, + sym_false, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3694), 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, + [198840] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9043), 1, - anon_sym_SLASH, - ACTIONS(9039), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9041), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9061), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9317), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9315), 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, - [245781] = 18, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8419), 1, + anon_sym_LPAREN2, + ACTIONS(8423), 1, + anon_sym_requires, + ACTIONS(8425), 1, + sym_identifier, + ACTIONS(8427), 1, + anon_sym_COLON_COLON, + STATE(2296), 1, + sym_template_type, + STATE(5352), 1, + sym_lambda_capture_specifier, + STATE(5949), 1, + sym__scope_resolution, + ACTIONS(8479), 2, + sym_true, + sym_false, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(2308), 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, + [198892] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6985), 1, + anon_sym_DASH_GT, + ACTIONS(7898), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(9169), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(7901), 1, anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym_EQ, - ACTIONS(9375), 1, - anon_sym_SEMI, - ACTIONS(9377), 1, - anon_sym_LBRACE, - ACTIONS(9379), 1, - anon_sym_try, - STATE(564), 1, - sym_try_statement, - STATE(565), 1, - sym_compound_statement, - STATE(4570), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8319), 1, + ACTIONS(8176), 1, + anon_sym_requires, + STATE(5660), 1, + sym__function_attributes_end, + STATE(5887), 1, + sym_trailing_return_type, + STATE(6113), 1, sym_gnu_asm_expression, - STATE(8320), 1, - aux_sym_declaration_repeat1, - ACTIONS(9179), 2, + ACTIONS(6683), 2, anon_sym_asm, anon_sym___asm__, - STATE(6821), 2, + ACTIONS(7893), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(7905), 2, + anon_sym_final, + anon_sym_override, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, - sym_argument_list, - sym_initializer_list, - [245839] = 17, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + [198948] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(4940), 1, + ACTIONS(6965), 1, anon_sym_COLON_COLON, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, + ACTIONS(8192), 1, sym_identifier, - STATE(3369), 1, + ACTIONS(8473), 1, + anon_sym_LPAREN2, + ACTIONS(8477), 1, + anon_sym_requires, + STATE(4482), 1, sym_template_type, - STATE(4500), 1, - sym_field_declaration_list, - STATE(7286), 1, + STATE(5365), 1, + sym_lambda_capture_specifier, + STATE(5975), 1, sym__scope_resolution, - STATE(7705), 1, - sym_virtual_specifier, - STATE(8570), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3743), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6277), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + ACTIONS(8481), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [245895] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(7278), 1, - anon_sym_DASH_GT, - ACTIONS(8863), 1, - anon_sym_LBRACK, - STATE(6583), 1, - sym_trailing_return_type, - STATE(6676), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6519), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8861), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [245939] = 17, + STATE(5748), 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, + [199000] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(4916), 1, + ACTIONS(6877), 1, anon_sym_COLON_COLON, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8772), 1, + ACTIONS(8227), 1, sym_identifier, - STATE(3369), 1, + ACTIONS(8337), 1, + anon_sym_requires, + ACTIONS(8413), 1, + anon_sym_LPAREN2, + STATE(1892), 1, sym_template_type, - STATE(4476), 1, - sym_field_declaration_list, - STATE(7280), 1, + STATE(5419), 1, + sym_lambda_capture_specifier, + STATE(5968), 1, sym__scope_resolution, - STATE(7786), 1, - sym_virtual_specifier, - STATE(8691), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3761), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6291), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + ACTIONS(8483), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [245995] = 11, + STATE(5955), 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, + [199052] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(8404), 1, + ACTIONS(7099), 1, anon_sym_LBRACK, - ACTIONS(8438), 1, + ACTIONS(7310), 1, anon_sym_STAR, - ACTIONS(8440), 1, + ACTIONS(7312), 1, anon_sym_AMP_AMP, - ACTIONS(8442), 1, + ACTIONS(7314), 1, anon_sym_AMP, - STATE(4649), 1, + STATE(3501), 1, sym_parameter_list, - STATE(6905), 1, + STATE(5399), 1, sym__function_declarator_seq, - STATE(7203), 1, + STATE(5714), 1, sym__abstract_declarator, - STATE(6825), 5, + STATE(5366), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7491), 7, + ACTIONS(7127), 9, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [246039] = 17, + [199098] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(4940), 1, + ACTIONS(6994), 1, anon_sym_COLON_COLON, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, + ACTIONS(8202), 1, sym_identifier, - STATE(3369), 1, + ACTIONS(8329), 1, + anon_sym_requires, + ACTIONS(8407), 1, + anon_sym_LPAREN2, + STATE(2511), 1, sym_template_type, - STATE(4476), 1, - sym_field_declaration_list, - STATE(7286), 1, + STATE(5386), 1, + sym_lambda_capture_specifier, + STATE(5956), 1, sym__scope_resolution, - STATE(7786), 1, - sym_virtual_specifier, - STATE(8691), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3761), 2, + ACTIONS(8485), 2, + sym_true, + sym_false, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5823), 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, - STATE(6290), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + [199150] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(3673), 1, + anon_sym_COLON_COLON, + ACTIONS(8190), 1, + sym_identifier, + ACTIONS(8419), 1, + anon_sym_LPAREN2, + ACTIONS(8423), 1, + anon_sym_requires, + STATE(2542), 1, + sym_template_type, + STATE(5424), 1, + sym_lambda_capture_specifier, + STATE(5983), 1, + sym__scope_resolution, + ACTIONS(8487), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [246095] = 11, + STATE(5625), 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, + [199202] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7292), 1, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6985), 1, anon_sym_DASH_GT, - ACTIONS(8867), 1, + ACTIONS(6987), 1, + anon_sym_requires, + ACTIONS(7898), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7901), 1, anon_sym_LBRACK, - STATE(6598), 1, + STATE(5740), 1, + sym__function_attributes_end, + STATE(5908), 1, sym_trailing_return_type, - STATE(6643), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(6501), 2, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7893), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8865), 8, - anon_sym_COMMA, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + [199258] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(8227), 1, + sym_identifier, + ACTIONS(8337), 1, + anon_sym_requires, + ACTIONS(8413), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [246139] = 17, + STATE(1892), 1, + sym_template_type, + STATE(5419), 1, + sym_lambda_capture_specifier, + STATE(5968), 1, + sym__scope_resolution, + ACTIONS(8431), 2, + sym_true, + sym_false, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3694), 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, + [199310] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7318), 1, + ACTIONS(7998), 1, anon_sym_COLON_COLON, - ACTIONS(8621), 1, - anon_sym_LBRACE, - ACTIONS(8776), 1, + ACTIONS(8200), 1, sym_identifier, - STATE(5620), 1, + ACTIONS(8329), 1, + anon_sym_requires, + ACTIONS(8407), 1, + anon_sym_LPAREN2, + STATE(2511), 1, sym_template_type, - STATE(5897), 1, - sym_field_declaration_list, - STATE(7289), 1, + STATE(5386), 1, + sym_lambda_capture_specifier, + STATE(5951), 1, sym__scope_resolution, - STATE(7708), 1, - sym_virtual_specifier, - STATE(8664), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(5593), 2, + ACTIONS(8489), 2, + sym_true, + sym_false, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3995), 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, - STATE(6393), 2, + [199362] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6845), 1, + anon_sym_requires, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6913), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, + anon_sym_LBRACK, + STATE(5562), 1, + sym_trailing_return_type, + STATE(5843), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7893), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + [199418] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(8227), 1, + sym_identifier, + ACTIONS(8337), 1, + anon_sym_requires, + ACTIONS(8413), 1, + anon_sym_LPAREN2, + STATE(1892), 1, + sym_template_type, + STATE(5419), 1, + sym_lambda_capture_specifier, + STATE(5968), 1, + sym__scope_resolution, + ACTIONS(8491), 2, + sym_true, + sym_false, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5963), 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, + [199470] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(8194), 1, + sym_identifier, + ACTIONS(8493), 1, + anon_sym_LPAREN2, + ACTIONS(8497), 1, + anon_sym_requires, + STATE(2542), 1, + sym_template_type, + STATE(5390), 1, + sym_lambda_capture_specifier, + STATE(5987), 1, + sym__scope_resolution, + ACTIONS(8495), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [246195] = 17, + STATE(5305), 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, + [199522] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7255), 1, + ACTIONS(6951), 1, anon_sym_COLON_COLON, - ACTIONS(8766), 1, + ACTIONS(8194), 1, sym_identifier, - STATE(3369), 1, + ACTIONS(8493), 1, + anon_sym_LPAREN2, + ACTIONS(8497), 1, + anon_sym_requires, + STATE(2542), 1, sym_template_type, - STATE(4474), 1, - sym_field_declaration_list, - STATE(7279), 1, + STATE(5390), 1, + sym_lambda_capture_specifier, + STATE(5987), 1, sym__scope_resolution, - STATE(7660), 1, - sym_virtual_specifier, - STATE(8591), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4263), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6271), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + ACTIONS(8499), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [246251] = 17, + STATE(5295), 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, + [199574] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5689), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7343), 1, + ACTIONS(8115), 1, anon_sym_COLON_COLON, - ACTIONS(8786), 1, + ACTIONS(8229), 1, sym_identifier, - STATE(2479), 1, + ACTIONS(8348), 1, + anon_sym_requires, + ACTIONS(8501), 1, + anon_sym_LPAREN2, + STATE(2422), 1, sym_template_type, - STATE(6057), 1, - sym_field_declaration_list, - STATE(7274), 1, + STATE(5397), 1, + sym_lambda_capture_specifier, + STATE(5964), 1, sym__scope_resolution, - STATE(7819), 1, - sym_virtual_specifier, - STATE(8723), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(5592), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6409), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + ACTIONS(8503), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [246307] = 13, + STATE(3163), 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, + [199626] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7357), 1, + ACTIONS(6985), 1, anon_sym_DASH_GT, - ACTIONS(7361), 1, + ACTIONS(6987), 1, anon_sym_requires, - STATE(6894), 1, - sym_requires_clause, - STATE(7057), 1, + ACTIONS(8247), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8250), 1, + anon_sym_LBRACK, + STATE(5729), 1, + sym__function_attributes_end, + STATE(5894), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(6306), 2, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8242), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6660), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [246355] = 17, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + [199682] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(8766), 1, + ACTIONS(8419), 1, + anon_sym_LPAREN2, + ACTIONS(8423), 1, + anon_sym_requires, + ACTIONS(8425), 1, sym_identifier, - STATE(3369), 1, + ACTIONS(8427), 1, + anon_sym_COLON_COLON, + STATE(2296), 1, sym_template_type, - STATE(4474), 1, - sym_field_declaration_list, - STATE(7279), 1, + STATE(5352), 1, + sym_lambda_capture_specifier, + STATE(5949), 1, sym__scope_resolution, - STATE(7660), 1, - sym_virtual_specifier, - STATE(8591), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(4263), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + ACTIONS(8461), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [246411] = 11, + STATE(1733), 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, + [199734] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7210), 1, - anon_sym_DASH_GT, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(8867), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2018), 1, anon_sym_LBRACK, - STATE(6598), 1, - sym_trailing_return_type, - STATE(6643), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8865), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [246455] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7365), 1, - anon_sym_DASH_GT, - ACTIONS(7367), 1, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8198), 1, + sym_identifier, + ACTIONS(8337), 1, anon_sym_requires, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6622), 1, - sym_requires_clause, - STATE(6942), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6682), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8857), 5, - anon_sym_RPAREN, + ACTIONS(8413), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [246503] = 13, + STATE(1892), 1, + sym_template_type, + STATE(5419), 1, + sym_lambda_capture_specifier, + STATE(5972), 1, + sym__scope_resolution, + ACTIONS(8505), 2, + sym_true, + sym_false, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3888), 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, + [199786] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(7365), 1, + ACTIONS(6985), 1, anon_sym_DASH_GT, - ACTIONS(7367), 1, - anon_sym_requires, - ACTIONS(8859), 1, + ACTIONS(8077), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6622), 1, - sym_requires_clause, - STATE(6942), 1, + ACTIONS(8258), 1, + anon_sym_requires, + STATE(5712), 1, + sym__function_attributes_end, + STATE(5889), 1, sym_trailing_return_type, - ACTIONS(5663), 2, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8072), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(8082), 2, anon_sym_final, anon_sym_override, - STATE(6293), 2, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6515), 2, + aux_sym_type_definition_repeat1, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6682), 2, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8857), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [246551] = 17, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + [199842] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5689), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7343), 1, + ACTIONS(6994), 1, anon_sym_COLON_COLON, - ACTIONS(8786), 1, + ACTIONS(8202), 1, sym_identifier, - STATE(2479), 1, + ACTIONS(8329), 1, + anon_sym_requires, + ACTIONS(8407), 1, + anon_sym_LPAREN2, + STATE(2511), 1, sym_template_type, - STATE(6057), 1, - sym_field_declaration_list, - STATE(7274), 1, + STATE(5386), 1, + sym_lambda_capture_specifier, + STATE(5956), 1, sym__scope_resolution, - STATE(7819), 1, - sym_virtual_specifier, - STATE(8723), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(5592), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + ACTIONS(8489), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [246607] = 13, + STATE(3995), 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, + [199894] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7239), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(7357), 1, - anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - STATE(6891), 1, - sym_requires_clause, - STATE(7045), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6358), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6646), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 5, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(8194), 1, + sym_identifier, + ACTIONS(8493), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [246655] = 17, + ACTIONS(8497), 1, + anon_sym_requires, + STATE(2542), 1, + sym_template_type, + STATE(5390), 1, + sym_lambda_capture_specifier, + STATE(5987), 1, + sym__scope_resolution, + ACTIONS(8507), 2, + sym_true, + sym_false, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5336), 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, + [199946] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(4940), 1, + ACTIONS(6917), 1, anon_sym_COLON_COLON, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6652), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(8768), 1, + ACTIONS(8190), 1, sym_identifier, - STATE(3369), 1, + ACTIONS(8493), 1, + anon_sym_LPAREN2, + ACTIONS(8497), 1, + anon_sym_requires, + STATE(2542), 1, sym_template_type, - STATE(4500), 1, - sym_field_declaration_list, - STATE(7286), 1, + STATE(5390), 1, + sym_lambda_capture_specifier, + STATE(5982), 1, sym__scope_resolution, - STATE(7705), 1, - sym_virtual_specifier, - STATE(8570), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3743), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + ACTIONS(8509), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [246711] = 13, + STATE(5904), 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, + [199998] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(7369), 1, - anon_sym_DASH_GT, - ACTIONS(7371), 1, + ACTIONS(6845), 1, anon_sym_requires, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6881), 1, - sym_requires_clause, - STATE(6975), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6247), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6667), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6718), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [246759] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9043), 1, - anon_sym_SLASH, - ACTIONS(9039), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9041), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9317), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9315), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [246793] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7369), 1, + ACTIONS(6913), 1, anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(8746), 1, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6885), 1, - sym_requires_clause, - STATE(6968), 1, + STATE(5578), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + STATE(5847), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, + ACTIONS(8072), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6644), 2, + aux_sym_type_definition_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6716), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [246841] = 17, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + [200054] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5834), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7296), 1, + ACTIONS(6917), 1, anon_sym_COLON_COLON, - ACTIONS(8770), 1, + ACTIONS(8190), 1, sym_identifier, - STATE(3296), 1, + ACTIONS(8493), 1, + anon_sym_LPAREN2, + ACTIONS(8497), 1, + anon_sym_requires, + STATE(2542), 1, sym_template_type, - STATE(3358), 1, - sym_field_declaration_list, - STATE(7297), 1, + STATE(5390), 1, + sym_lambda_capture_specifier, + STATE(5982), 1, sym__scope_resolution, - STATE(7691), 1, - sym_virtual_specifier, - STATE(8716), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3112), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + ACTIONS(8495), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [246897] = 9, + STATE(5305), 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, + [200106] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9115), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8115), 1, + anon_sym_COLON_COLON, + ACTIONS(8229), 1, sym_identifier, - ACTIONS(9117), 1, + ACTIONS(8348), 1, + anon_sym_requires, + ACTIONS(8501), 1, anon_sym_LPAREN2, - ACTIONS(9119), 1, - anon_sym_defined, - ACTIONS(9381), 1, - sym_number_literal, - ACTIONS(9121), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9127), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6510), 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, - [246937] = 17, + STATE(2422), 1, + sym_template_type, + STATE(5397), 1, + sym_lambda_capture_specifier, + STATE(5964), 1, + sym__scope_resolution, + ACTIONS(8511), 2, + sym_true, + sym_false, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3166), 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, + [200158] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5834), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7296), 1, + ACTIONS(6917), 1, anon_sym_COLON_COLON, - ACTIONS(8770), 1, + ACTIONS(8190), 1, sym_identifier, - STATE(3296), 1, + ACTIONS(8493), 1, + anon_sym_LPAREN2, + ACTIONS(8497), 1, + anon_sym_requires, + STATE(2542), 1, sym_template_type, - STATE(3358), 1, - sym_field_declaration_list, - STATE(7297), 1, + STATE(5390), 1, + sym_lambda_capture_specifier, + STATE(5982), 1, sym__scope_resolution, - STATE(7691), 1, - sym_virtual_specifier, - STATE(8716), 1, - sym_base_class_clause, - ACTIONS(6656), 2, - anon_sym_final, - anon_sym_override, - STATE(3112), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6418), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9648), 2, + ACTIONS(8513), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [246993] = 13, + STATE(5867), 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, + [200210] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, + ACTIONS(6785), 1, anon_sym___attribute__, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, + ACTIONS(6845), 1, anon_sym_requires, - STATE(6891), 1, - sym_requires_clause, - STATE(7187), 1, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6913), 1, + anon_sym_DASH_GT, + ACTIONS(8250), 1, + anon_sym_LBRACK, + STATE(5553), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + STATE(5777), 1, + sym__function_attributes_end, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, + ACTIONS(8242), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5174), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6736), 2, + aux_sym_type_definition_repeat1, + STATE(5346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [247040] = 5, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + [200266] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5743), 1, - anon_sym_LBRACK, - ACTIONS(9383), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9385), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5745), 14, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(6785), 1, anon_sym___attribute__, + ACTIONS(6985), 1, + anon_sym_DASH_GT, + ACTIONS(8247), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [247071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6238), 1, + ACTIONS(8250), 1, anon_sym_LBRACK, - ACTIONS(6236), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, + ACTIONS(8515), 1, anon_sym_requires, - [247098] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9389), 1, - anon_sym_LBRACK, - ACTIONS(9387), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, + STATE(5711), 1, + sym__function_attributes_end, + STATE(5890), 1, + sym_trailing_return_type, + STATE(6113), 1, + sym_gnu_asm_expression, + ACTIONS(6683), 2, 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, - [247125] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9393), 1, + ACTIONS(8242), 2, anon_sym_LPAREN2, - ACTIONS(9395), 1, - anon_sym_LBRACK, - ACTIONS(9391), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + ACTIONS(8252), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [247154] = 18, + STATE(5174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5346), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + [200322] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(6935), 1, + ACTIONS(8090), 1, anon_sym_COLON_COLON, - ACTIONS(7902), 1, - anon_sym_STAR, - ACTIONS(9089), 1, + ACTIONS(8216), 1, sym_identifier, - ACTIONS(9091), 1, - anon_sym_template, - STATE(3377), 1, - sym_operator_name, - STATE(3398), 1, - sym_qualified_identifier, - STATE(3408), 1, - sym_dependent_identifier, - STATE(3410), 1, - sym_destructor_name, - STATE(3416), 1, - sym_template_function, - STATE(3420), 1, - sym_pointer_type_declarator, - STATE(6477), 1, + ACTIONS(8307), 1, + anon_sym_requires, + ACTIONS(8518), 1, + anon_sym_LPAREN2, + STATE(2356), 1, + sym_template_type, + STATE(5417), 1, + sym_lambda_capture_specifier, + STATE(5965), 1, sym__scope_resolution, - STATE(9186), 1, - sym_ms_based_modifier, - STATE(9648), 3, + ACTIONS(8520), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [247211] = 3, + STATE(2708), 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, + [200374] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6426), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(6424), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6965), 1, + anon_sym_COLON_COLON, + ACTIONS(8192), 1, + sym_identifier, + ACTIONS(8473), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, + ACTIONS(8477), 1, anon_sym_requires, - [247238] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9043), 1, - anon_sym_SLASH, - ACTIONS(9045), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9047), 1, - anon_sym_AMP_AMP, - ACTIONS(9049), 1, - anon_sym_PIPE, - ACTIONS(9051), 1, - anon_sym_CARET, - ACTIONS(9053), 1, - anon_sym_AMP, - ACTIONS(9397), 1, - anon_sym_RPAREN, - ACTIONS(9039), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9041), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9055), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9057), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9059), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(9061), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [247287] = 15, + STATE(4482), 1, + sym_template_type, + STATE(5365), 1, + sym_lambda_capture_specifier, + STATE(5975), 1, + sym__scope_resolution, + ACTIONS(8522), 2, + sym_true, + sym_false, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5737), 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, + [200426] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(121), 1, - anon_sym_virtual, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(3906), 1, + ACTIONS(8090), 1, anon_sym_COLON_COLON, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8764), 1, + ACTIONS(8216), 1, sym_identifier, - STATE(3369), 1, + ACTIONS(8307), 1, + anon_sym_requires, + ACTIONS(8518), 1, + anon_sym_LPAREN2, + STATE(2356), 1, sym_template_type, - STATE(7088), 1, - sym_access_specifier, - STATE(7295), 1, + STATE(5417), 1, + sym_lambda_capture_specifier, + STATE(5965), 1, sym__scope_resolution, - STATE(7709), 1, - sym_virtual, - STATE(6536), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7715), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, + ACTIONS(8524), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - ACTIONS(9399), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [247338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6386), 1, - anon_sym_LBRACK, - ACTIONS(6384), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [247365] = 3, + STATE(2707), 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, + [200478] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6390), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(6388), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8012), 1, + anon_sym_COLON_COLON, + ACTIONS(8218), 1, + sym_identifier, + ACTIONS(8318), 1, anon_sym_requires, - [247392] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2198), 1, - anon_sym_LBRACK, - ACTIONS(2196), 18, - anon_sym_COMMA, + ACTIONS(8526), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [247419] = 4, + STATE(2467), 1, + sym_template_type, + STATE(5416), 1, + sym_lambda_capture_specifier, + STATE(5980), 1, + sym__scope_resolution, + ACTIONS(8528), 2, + sym_true, + sym_false, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3471), 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, + [200530] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5735), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(9401), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5737), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [247448] = 12, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9403), 1, - anon_sym_LF, - ACTIONS(9409), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9411), 1, - anon_sym_AMP_AMP, - ACTIONS(9413), 1, - anon_sym_PIPE, - ACTIONS(9415), 1, - anon_sym_CARET, - ACTIONS(9417), 1, - anon_sym_AMP, - ACTIONS(9405), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9407), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9421), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [247493] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(8010), 1, - anon_sym_STAR, - ACTIONS(9425), 1, - sym_identifier, - ACTIONS(9427), 1, + ACTIONS(8012), 1, anon_sym_COLON_COLON, - ACTIONS(9429), 1, - anon_sym_template, - STATE(3377), 1, - sym_operator_name, - STATE(3398), 1, - sym_qualified_identifier, - STATE(3408), 1, - sym_dependent_identifier, - STATE(3410), 1, - sym_destructor_name, - STATE(3416), 1, - sym_template_function, - STATE(3420), 1, - sym_pointer_type_declarator, - STATE(6486), 1, + ACTIONS(8218), 1, + sym_identifier, + ACTIONS(8318), 1, + anon_sym_requires, + ACTIONS(8526), 1, + anon_sym_LPAREN2, + STATE(2467), 1, + sym_template_type, + STATE(5416), 1, + sym_lambda_capture_specifier, + STATE(5980), 1, sym__scope_resolution, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(9648), 3, + ACTIONS(8530), 2, + sym_true, + sym_false, + STATE(7683), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [247550] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5042), 1, - anon_sym_LBRACK, - ACTIONS(5044), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [247577] = 18, + STATE(3402), 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, + [200582] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(2012), 1, + ACTIONS(131), 1, anon_sym_operator, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(2705), 1, + ACTIONS(2693), 1, anon_sym_TILDE, - ACTIONS(6995), 1, + ACTIONS(3701), 1, anon_sym_COLON_COLON, - ACTIONS(7922), 1, + ACTIONS(7504), 1, anon_sym_STAR, - ACTIONS(9431), 1, + ACTIONS(8532), 1, sym_identifier, - ACTIONS(9433), 1, + ACTIONS(8534), 1, anon_sym_template, - STATE(6488), 1, - sym__scope_resolution, - STATE(7023), 1, + STATE(2549), 1, sym_pointer_type_declarator, - STATE(7024), 1, + STATE(2550), 1, + sym_template_type, + STATE(2552), 1, sym_template_function, - STATE(7025), 1, + STATE(2554), 1, sym_destructor_name, - STATE(7026), 1, + STATE(2555), 1, sym_dependent_identifier, - STATE(7027), 1, + STATE(2556), 1, + sym_dependent_type_identifier, + STATE(2559), 1, sym_qualified_identifier, - STATE(7028), 1, + STATE(2560), 1, + sym_qualified_type_identifier, + STATE(2566), 1, sym_operator_name, - STATE(9493), 1, + STATE(5038), 1, + sym__scope_resolution, + STATE(6359), 1, + sym_qualified_operator_cast_identifier, + STATE(6373), 1, + sym_operator_cast, + STATE(7570), 1, sym_ms_based_modifier, - STATE(9648), 3, + STATE(7683), 1, sym_decltype, + [200652] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6994), 1, + anon_sym_COLON_COLON, + ACTIONS(8202), 1, + sym_identifier, + ACTIONS(8329), 1, + anon_sym_requires, + ACTIONS(8407), 1, + anon_sym_LPAREN2, + STATE(2511), 1, sym_template_type, + STATE(5386), 1, + sym_lambda_capture_specifier, + STATE(5956), 1, + sym__scope_resolution, + ACTIONS(8536), 2, + sym_true, + sym_false, + STATE(7683), 2, + sym_decltype, sym_dependent_type_identifier, - [247634] = 3, + STATE(5809), 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, + [200704] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9437), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(9435), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(3673), 1, + anon_sym_COLON_COLON, + ACTIONS(8190), 1, + sym_identifier, + ACTIONS(8419), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(8423), 1, + anon_sym_requires, + STATE(2542), 1, + sym_template_type, + STATE(5424), 1, + sym_lambda_capture_specifier, + STATE(5983), 1, + sym__scope_resolution, + ACTIONS(8461), 2, + sym_true, + sym_false, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(1733), 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, + [200756] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5469), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + ACTIONS(6994), 1, + anon_sym_COLON_COLON, + ACTIONS(8202), 1, + sym_identifier, + STATE(2511), 1, + sym_template_type, + STATE(2621), 1, + sym_field_declaration_list, + STATE(2790), 1, + sym__class_declaration_item, + STATE(5956), 1, + sym__scope_resolution, + STATE(6411), 1, + sym_virtual_specifier, + STATE(6886), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [247661] = 3, + STATE(2361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [200815] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2194), 1, - anon_sym_LBRACK, - ACTIONS(2192), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5548), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(8034), 1, + anon_sym_COLON_COLON, + ACTIONS(8237), 1, + sym_identifier, + STATE(2586), 1, + sym_template_type, + STATE(2960), 1, + sym_field_declaration_list, + STATE(3173), 1, + sym__class_declaration_item, + STATE(5960), 1, + sym__scope_resolution, + STATE(6323), 1, + sym_virtual_specifier, + STATE(7174), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [247688] = 13, + STATE(2402), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5130), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [200874] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, - anon_sym_requires, - STATE(6894), 1, - sym_requires_clause, - STATE(7184), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(8194), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3099), 1, + sym__class_declaration_item, + STATE(3627), 1, + sym_field_declaration_list, + STATE(5987), 1, + sym__scope_resolution, + STATE(6333), 1, + sym_virtual_specifier, + STATE(7065), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6472), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6738), 2, + STATE(3396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [247735] = 3, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9247), 1, - anon_sym_LF, - ACTIONS(9249), 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, - [247762] = 5, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [200933] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6550), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5343), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [247793] = 3, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(8231), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1946), 1, + sym__class_declaration_item, + STATE(4945), 1, + sym_field_declaration_list, + STATE(5966), 1, + sym__scope_resolution, + STATE(6403), 1, + sym_virtual_specifier, + STATE(6904), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(4540), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [200992] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9441), 1, - anon_sym_LBRACK, - ACTIONS(9439), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5343), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(8231), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1939), 1, + sym__class_declaration_item, + STATE(4945), 1, + sym_field_declaration_list, + STATE(5966), 1, + sym__scope_resolution, + STATE(6403), 1, + sym_virtual_specifier, + STATE(6904), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [247820] = 3, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9237), 1, - anon_sym_LF, - ACTIONS(9239), 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, - [247847] = 3, + STATE(4540), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5049), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [201051] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 1, - anon_sym_LBRACK, - ACTIONS(5064), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(6965), 1, + anon_sym_COLON_COLON, + ACTIONS(8056), 1, + anon_sym_LBRACE, + ACTIONS(8192), 1, + sym_identifier, + STATE(4482), 1, + sym_template_type, + STATE(4819), 1, + sym_field_declaration_list, + STATE(4875), 1, + sym__class_declaration_item, + STATE(5975), 1, + sym__scope_resolution, + STATE(6376), 1, + sym_virtual_specifier, + STATE(7099), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [247874] = 3, + STATE(4492), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [201110] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 1, - anon_sym_LBRACK, - ACTIONS(5068), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5318), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(8090), 1, + anon_sym_COLON_COLON, + ACTIONS(8216), 1, + sym_identifier, + STATE(2356), 1, + sym_template_type, + STATE(2411), 1, + sym_field_declaration_list, + STATE(2436), 1, + sym__class_declaration_item, + STATE(5965), 1, + sym__scope_resolution, + STATE(6284), 1, + sym_virtual_specifier, + STATE(7049), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [247901] = 5, + STATE(2119), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5083), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [201169] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(5663), 2, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(7881), 1, + anon_sym_LBRACE, + ACTIONS(8194), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(4458), 1, + sym_field_declaration_list, + STATE(4518), 1, + sym__class_declaration_item, + STATE(5987), 1, + sym__scope_resolution, + STATE(6289), 1, + sym_virtual_specifier, + STATE(7025), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6550), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + STATE(4361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [201228] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5343), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [247932] = 5, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(8231), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(2004), 1, + sym__class_declaration_item, + STATE(4945), 1, + sym_field_declaration_list, + STATE(5966), 1, + sym__scope_resolution, + STATE(6403), 1, + sym_virtual_specifier, + STATE(6904), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(4540), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [201287] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5743), 1, - anon_sym_LBRACK, - ACTIONS(9401), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9443), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5745), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(7881), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(8194), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(4458), 1, + sym_field_declaration_list, + STATE(4543), 1, + sym__class_declaration_item, + STATE(5987), 1, + sym__scope_resolution, + STATE(6289), 1, + sym_virtual_specifier, + STATE(7025), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [247963] = 3, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9271), 1, - anon_sym_LF, - ACTIONS(9273), 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, - [247990] = 5, + STATE(4361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5127), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [201346] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8863), 1, - anon_sym_LBRACK, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6550), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8861), 14, - anon_sym_COMMA, + ACTIONS(8538), 1, + sym_identifier, + ACTIONS(8540), 1, anon_sym_RPAREN, + ACTIONS(8542), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [248021] = 3, + ACTIONS(8544), 1, + anon_sym_defined, + ACTIONS(8550), 1, + sym_number_literal, + ACTIONS(8546), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8548), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8552), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5092), 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, + [201389] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5028), 1, - anon_sym_LBRACK, - ACTIONS(5030), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6280), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(8196), 1, + sym_identifier, + ACTIONS(8212), 1, + anon_sym_COLON_COLON, + STATE(2542), 1, + sym_template_type, + STATE(3099), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5959), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [248048] = 4, + STATE(3777), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [201448] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5735), 1, - anon_sym_LBRACK, - ACTIONS(9385), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5737), 16, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(6965), 1, + anon_sym_COLON_COLON, + ACTIONS(8056), 1, + anon_sym_LBRACE, + ACTIONS(8192), 1, + sym_identifier, + STATE(4482), 1, + sym_template_type, + STATE(4819), 1, + sym_field_declaration_list, + STATE(4890), 1, + sym__class_declaration_item, + STATE(5975), 1, + sym__scope_resolution, + STATE(6376), 1, + sym_virtual_specifier, + STATE(7099), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [248077] = 3, + STATE(4492), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [201507] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5058), 1, - anon_sym_LBRACK, - ACTIONS(5060), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(6917), 1, + anon_sym_COLON_COLON, + ACTIONS(7881), 1, + anon_sym_LBRACE, + ACTIONS(8190), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(4458), 1, + sym_field_declaration_list, + STATE(4535), 1, + sym__class_declaration_item, + STATE(5982), 1, + sym__scope_resolution, + STATE(6289), 1, + sym_virtual_specifier, + STATE(7025), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [248104] = 3, + STATE(4361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5135), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [201566] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5024), 1, - anon_sym_LBRACK, - ACTIONS(5026), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5318), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(8090), 1, + anon_sym_COLON_COLON, + ACTIONS(8216), 1, + sym_identifier, + STATE(2356), 1, + sym_template_type, + STATE(2411), 1, + sym_field_declaration_list, + STATE(2441), 1, + sym__class_declaration_item, + STATE(5965), 1, + sym__scope_resolution, + STATE(6284), 1, + sym_virtual_specifier, + STATE(7049), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [248131] = 12, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9409), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9411), 1, - anon_sym_AMP_AMP, - ACTIONS(9413), 1, - anon_sym_PIPE, - ACTIONS(9415), 1, - anon_sym_CARET, - ACTIONS(9417), 1, - anon_sym_AMP, - ACTIONS(9445), 1, - anon_sym_LF, - ACTIONS(9405), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9407), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9421), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [248176] = 3, + STATE(2119), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [201625] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 1, - anon_sym_LBRACK, - ACTIONS(6408), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + ACTIONS(6965), 1, + anon_sym_COLON_COLON, + ACTIONS(8056), 1, + anon_sym_LBRACE, + ACTIONS(8192), 1, + sym_identifier, + STATE(4482), 1, + sym_template_type, + STATE(4819), 1, + sym_field_declaration_list, + STATE(4865), 1, + sym__class_declaration_item, + STATE(5975), 1, + sym__scope_resolution, + STATE(6376), 1, + sym_virtual_specifier, + STATE(7099), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [248203] = 3, + STATE(4492), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5062), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [201684] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 1, - anon_sym_LBRACK, - ACTIONS(5048), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6280), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(8194), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3110), 1, + sym__class_declaration_item, + STATE(3627), 1, + sym_field_declaration_list, + STATE(5987), 1, + sym__scope_resolution, + STATE(6333), 1, + sym_virtual_specifier, + STATE(7065), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [248230] = 15, + STATE(3396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5105), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [201743] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(121), 1, - anon_sym_virtual, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(3906), 1, - anon_sym_COLON_COLON, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8764), 1, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6917), 1, + anon_sym_COLON_COLON, + ACTIONS(7881), 1, + anon_sym_LBRACE, + ACTIONS(8190), 1, sym_identifier, - STATE(3369), 1, + STATE(2542), 1, sym_template_type, - STATE(7080), 1, - sym_access_specifier, - STATE(7295), 1, + STATE(4458), 1, + sym_field_declaration_list, + STATE(4543), 1, + sym__class_declaration_item, + STATE(5982), 1, sym__scope_resolution, - STATE(8002), 1, - sym_virtual, - STATE(6526), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8046), 2, + STATE(6289), 1, + sym_virtual_specifier, + STATE(7025), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(4361), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9648), 2, + STATE(5070), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - ACTIONS(9399), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [248281] = 12, - ACTIONS(9067), 1, + [201802] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(9409), 1, + ACTIONS(8554), 1, + anon_sym_COMMA, + ACTIONS(8556), 1, + anon_sym_RPAREN, + ACTIONS(8562), 1, + anon_sym_SLASH, + ACTIONS(8564), 1, anon_sym_PIPE_PIPE, - ACTIONS(9411), 1, + ACTIONS(8566), 1, anon_sym_AMP_AMP, - ACTIONS(9413), 1, + ACTIONS(8568), 1, anon_sym_PIPE, - ACTIONS(9415), 1, + ACTIONS(8570), 1, anon_sym_CARET, - ACTIONS(9417), 1, + ACTIONS(8572), 1, anon_sym_AMP, - ACTIONS(9447), 1, - anon_sym_LF, - ACTIONS(9405), 2, + STATE(6539), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(8558), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9407), 3, + ACTIONS(8560), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9421), 4, + ACTIONS(8574), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8576), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(8578), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [248326] = 3, + ACTIONS(8580), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [201857] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 1, - anon_sym_LBRACK, - ACTIONS(5052), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5447), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(8012), 1, + anon_sym_COLON_COLON, + ACTIONS(8218), 1, + sym_identifier, + STATE(2467), 1, + sym_template_type, + STATE(2774), 1, + sym_field_declaration_list, + STATE(2961), 1, + sym__class_declaration_item, + STATE(5980), 1, + sym__scope_resolution, + STATE(6437), 1, + sym_virtual_specifier, + STATE(7126), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [248353] = 3, + STATE(2349), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [201916] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6414), 1, - anon_sym_LBRACK, - ACTIONS(6412), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6280), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(8194), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3129), 1, + sym__class_declaration_item, + STATE(3627), 1, + sym_field_declaration_list, + STATE(5987), 1, + sym__scope_resolution, + STATE(6333), 1, + sym_virtual_specifier, + STATE(7065), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [248380] = 3, + STATE(3396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [201975] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6300), 1, - anon_sym_LBRACK, - ACTIONS(6298), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + ACTIONS(6965), 1, + anon_sym_COLON_COLON, + ACTIONS(8056), 1, + anon_sym_LBRACE, + ACTIONS(8192), 1, + sym_identifier, + STATE(4482), 1, + sym_template_type, + STATE(4819), 1, + sym_field_declaration_list, + STATE(4864), 1, + sym__class_declaration_item, + STATE(5975), 1, + sym__scope_resolution, + STATE(6376), 1, + sym_virtual_specifier, + STATE(7099), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [248407] = 3, + STATE(4492), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [202034] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, - anon_sym_LBRACK, - ACTIONS(5014), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6280), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3129), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [248434] = 5, + STATE(2943), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [202093] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8867), 1, - anon_sym_LBRACK, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6550), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6280), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [248465] = 12, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9409), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9411), 1, - anon_sym_AMP_AMP, - ACTIONS(9413), 1, - anon_sym_PIPE, - ACTIONS(9415), 1, - anon_sym_CARET, - ACTIONS(9417), 1, - anon_sym_AMP, - ACTIONS(9449), 1, - anon_sym_LF, - ACTIONS(9405), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9407), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9421), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [248510] = 12, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9409), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9411), 1, - anon_sym_AMP_AMP, - ACTIONS(9413), 1, - anon_sym_PIPE, - ACTIONS(9415), 1, - anon_sym_CARET, - ACTIONS(9417), 1, - anon_sym_AMP, - ACTIONS(9451), 1, - anon_sym_LF, - ACTIONS(9405), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9407), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9421), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [248555] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5814), 1, + ACTIONS(6917), 1, anon_sym_COLON_COLON, - ACTIONS(8030), 1, - anon_sym_STAR, - ACTIONS(9431), 1, + ACTIONS(8190), 1, sym_identifier, - ACTIONS(9433), 1, - anon_sym_template, - STATE(6518), 1, + STATE(2542), 1, + sym_template_type, + STATE(3129), 1, + sym__class_declaration_item, + STATE(3627), 1, + sym_field_declaration_list, + STATE(5982), 1, sym__scope_resolution, - STATE(7023), 1, - sym_pointer_type_declarator, - STATE(7024), 1, - sym_template_function, - STATE(7025), 1, - sym_destructor_name, - STATE(7026), 1, - sym_dependent_identifier, - STATE(7027), 1, - sym_qualified_identifier, - STATE(7028), 1, - sym_operator_name, - STATE(9270), 1, - sym_ms_based_modifier, - STATE(9648), 3, + STATE(6333), 1, + sym_virtual_specifier, + STATE(7065), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [248612] = 5, + [202152] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6550), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9191), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6280), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [248643] = 3, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9257), 1, - anon_sym_LF, - ACTIONS(9259), 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, - [248670] = 3, + ACTIONS(6917), 1, + anon_sym_COLON_COLON, + ACTIONS(8190), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3110), 1, + sym__class_declaration_item, + STATE(3627), 1, + sym_field_declaration_list, + STATE(5982), 1, + sym__scope_resolution, + STATE(6333), 1, + sym_virtual_specifier, + STATE(7065), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5068), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [202211] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 1, - anon_sym_LBRACK, - ACTIONS(5040), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5469), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(6994), 1, + anon_sym_COLON_COLON, + ACTIONS(8202), 1, + sym_identifier, + STATE(2511), 1, + sym_template_type, + STATE(2621), 1, + sym_field_declaration_list, + STATE(2825), 1, + sym__class_declaration_item, + STATE(5956), 1, + sym__scope_resolution, + STATE(6411), 1, + sym_virtual_specifier, + STATE(6886), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [248697] = 12, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9409), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9411), 1, - anon_sym_AMP_AMP, - ACTIONS(9413), 1, - anon_sym_PIPE, - ACTIONS(9415), 1, - anon_sym_CARET, - ACTIONS(9417), 1, - anon_sym_AMP, - ACTIONS(9453), 1, - anon_sym_LF, - ACTIONS(9405), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9407), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9421), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [248742] = 13, + STATE(2361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [202270] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, - anon_sym_requires, - STATE(6891), 1, - sym_requires_clause, - STATE(7187), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(5469), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6994), 1, + anon_sym_COLON_COLON, + ACTIONS(8202), 1, + sym_identifier, + STATE(2511), 1, + sym_template_type, + STATE(2621), 1, + sym_field_declaration_list, + STATE(2857), 1, + sym__class_declaration_item, + STATE(5956), 1, + sym__scope_resolution, + STATE(6411), 1, + sym_virtual_specifier, + STATE(6886), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6560), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6736), 2, + STATE(2361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [248789] = 3, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9301), 1, - anon_sym_LF, - ACTIONS(9303), 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, - [248816] = 18, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [202329] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(5852), 1, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6917), 1, anon_sym_COLON_COLON, - ACTIONS(8010), 1, - anon_sym_STAR, - ACTIONS(9089), 1, + ACTIONS(8190), 1, sym_identifier, - ACTIONS(9091), 1, - anon_sym_template, - STATE(3377), 1, - sym_operator_name, - STATE(3398), 1, - sym_qualified_identifier, - STATE(3408), 1, - sym_dependent_identifier, - STATE(3410), 1, - sym_destructor_name, - STATE(3416), 1, - sym_template_function, - STATE(3420), 1, - sym_pointer_type_declarator, - STATE(6525), 1, + STATE(2542), 1, + sym_template_type, + STATE(3046), 1, + sym__class_declaration_item, + STATE(3627), 1, + sym_field_declaration_list, + STATE(5982), 1, sym__scope_resolution, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(9648), 3, + STATE(6333), 1, + sym_virtual_specifier, + STATE(7065), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [248873] = 15, + [202388] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(121), 1, - anon_sym_virtual, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(3906), 1, - anon_sym_COLON_COLON, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8764), 1, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6917), 1, + anon_sym_COLON_COLON, + ACTIONS(8190), 1, sym_identifier, - STATE(3369), 1, + STATE(2542), 1, sym_template_type, - STATE(7145), 1, - sym_access_specifier, - STATE(7295), 1, + STATE(3058), 1, + sym__class_declaration_item, + STATE(3627), 1, + sym_field_declaration_list, + STATE(5982), 1, sym__scope_resolution, - STATE(7773), 1, - sym_virtual, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8144), 2, + STATE(6333), 1, + sym_virtual_specifier, + STATE(7065), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(3396), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9648), 2, + STATE(5115), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - ACTIONS(9399), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [248924] = 5, + [202447] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8746), 1, - anon_sym_LBRACK, - ACTIONS(5663), 2, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6917), 1, + anon_sym_COLON_COLON, + ACTIONS(7881), 1, + anon_sym_LBRACE, + ACTIONS(8190), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(4458), 1, + sym_field_declaration_list, + STATE(4495), 1, + sym__class_declaration_item, + STATE(5982), 1, + sym__scope_resolution, + STATE(6289), 1, + sym_virtual_specifier, + STATE(7025), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6550), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + STATE(4361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [202506] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5343), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [248955] = 3, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(8227), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1946), 1, + sym__class_declaration_item, + STATE(2369), 1, + sym_field_declaration_list, + STATE(5968), 1, + sym__scope_resolution, + STATE(6317), 1, + sym_virtual_specifier, + STATE(6950), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2167), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [202565] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 1, - anon_sym_LBRACK, - ACTIONS(5010), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5343), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(8231), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1964), 1, + sym__class_declaration_item, + STATE(4945), 1, + sym_field_declaration_list, + STATE(5966), 1, + sym__scope_resolution, + STATE(6403), 1, + sym_virtual_specifier, + STATE(6904), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [248982] = 3, + STATE(4540), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [202624] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LBRACK, - ACTIONS(5056), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6280), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(8194), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3058), 1, + sym__class_declaration_item, + STATE(3627), 1, + sym_field_declaration_list, + STATE(5987), 1, + sym__scope_resolution, + STATE(6333), 1, + sym_virtual_specifier, + STATE(7065), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [249009] = 11, + STATE(3396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [202683] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(8502), 1, - anon_sym_STAR, - ACTIONS(8504), 1, - anon_sym_AMP_AMP, - ACTIONS(8506), 1, - anon_sym_AMP, - STATE(4737), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7242), 1, - sym__abstract_declarator, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7491), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5447), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8012), 1, + anon_sym_COLON_COLON, + ACTIONS(8218), 1, + sym_identifier, + STATE(2467), 1, + sym_template_type, + STATE(2774), 1, + sym_field_declaration_list, + STATE(2879), 1, + sym__class_declaration_item, + STATE(5980), 1, + sym__scope_resolution, + STATE(6437), 1, + sym_virtual_specifier, + STATE(7126), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [249052] = 5, + STATE(2349), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [202742] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9457), 1, - anon_sym_LBRACK, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6550), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9455), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [249083] = 13, + ACTIONS(6965), 1, + anon_sym_COLON_COLON, + ACTIONS(8056), 1, + anon_sym_LBRACE, + ACTIONS(8192), 1, + sym_identifier, + STATE(4482), 1, + sym_template_type, + STATE(4819), 1, + sym_field_declaration_list, + STATE(4885), 1, + sym__class_declaration_item, + STATE(5975), 1, + sym__scope_resolution, + STATE(6376), 1, + sym_virtual_specifier, + STATE(7099), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(4492), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5053), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [202801] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, - anon_sym_requires, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6885), 1, - sym_requires_clause, - STATE(7188), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6917), 1, + anon_sym_COLON_COLON, + ACTIONS(7881), 1, + anon_sym_LBRACE, + ACTIONS(8190), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(4458), 1, + sym_field_declaration_list, + STATE(4518), 1, + sym__class_declaration_item, + STATE(5982), 1, + sym__scope_resolution, + STATE(6289), 1, + sym_virtual_specifier, + STATE(7025), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6570), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6716), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6742), 2, + STATE(4361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8744), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [249130] = 12, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9409), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9411), 1, - anon_sym_AMP_AMP, - ACTIONS(9413), 1, - anon_sym_PIPE, - ACTIONS(9415), 1, - anon_sym_CARET, - ACTIONS(9417), 1, - anon_sym_AMP, - ACTIONS(9459), 1, - anon_sym_LF, - ACTIONS(9405), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9407), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9421), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [249175] = 5, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9315), 1, - anon_sym_LF, - ACTIONS(9405), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9407), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9317), 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, - [249206] = 3, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [202860] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LBRACK, - ACTIONS(5056), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5343), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(8227), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(2004), 1, + sym__class_declaration_item, + STATE(2369), 1, + sym_field_declaration_list, + STATE(5968), 1, + sym__scope_resolution, + STATE(6317), 1, + sym_virtual_specifier, + STATE(6950), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [249233] = 15, + STATE(2167), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [202919] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(121), 1, - anon_sym_virtual, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(3906), 1, + ACTIONS(4611), 1, anon_sym_COLON_COLON, - ACTIONS(5107), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8764), 1, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8210), 1, sym_identifier, - STATE(3369), 1, + STATE(2542), 1, sym_template_type, - STATE(7091), 1, - sym_access_specifier, - STATE(7295), 1, + STATE(3099), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5953), 1, sym__scope_resolution, - STATE(7783), 1, - sym_virtual, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7810), 2, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2943), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9648), 2, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - ACTIONS(9399), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [249284] = 13, + [202978] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, - anon_sym_requires, - ACTIONS(8863), 1, - anon_sym_LBRACK, - STATE(6869), 1, - sym_requires_clause, - STATE(7193), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, + sym_identifier, + ACTIONS(8212), 1, + anon_sym_COLON_COLON, + STATE(2542), 1, + sym_template_type, + STATE(3058), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5959), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6710), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6737), 2, + STATE(3777), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5052), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8861), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [249331] = 6, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9315), 1, - anon_sym_LF, - ACTIONS(9405), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9407), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9317), 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, - [249364] = 12, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9409), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9411), 1, - anon_sym_AMP_AMP, - ACTIONS(9413), 1, - anon_sym_PIPE, - ACTIONS(9415), 1, - anon_sym_CARET, - ACTIONS(9417), 1, - anon_sym_AMP, - ACTIONS(9461), 1, - anon_sym_LF, - ACTIONS(9405), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9407), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9421), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [249409] = 12, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9409), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9411), 1, - anon_sym_AMP_AMP, - ACTIONS(9413), 1, - anon_sym_PIPE, - ACTIONS(9415), 1, - anon_sym_CARET, - ACTIONS(9417), 1, - anon_sym_AMP, - ACTIONS(9463), 1, - anon_sym_LF, - ACTIONS(9405), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9407), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9421), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [249454] = 12, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9409), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9411), 1, - anon_sym_AMP_AMP, - ACTIONS(9413), 1, - anon_sym_PIPE, - ACTIONS(9415), 1, - anon_sym_CARET, - ACTIONS(9417), 1, - anon_sym_AMP, - ACTIONS(9465), 1, - anon_sym_LF, - ACTIONS(9405), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9407), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9421), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [249499] = 7, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9315), 1, - anon_sym_LF, - ACTIONS(9405), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9407), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9421), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9317), 7, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [249534] = 3, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9211), 1, - anon_sym_LF, - ACTIONS(9213), 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, - [249561] = 8, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9315), 1, - anon_sym_LF, - ACTIONS(9405), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9407), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9421), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9317), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - [249598] = 3, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [203037] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, - anon_sym_LBRACK, - ACTIONS(5036), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6280), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(8196), 1, + sym_identifier, + ACTIONS(8212), 1, + anon_sym_COLON_COLON, + STATE(2542), 1, + sym_template_type, + STATE(3046), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5959), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [249625] = 3, + STATE(3777), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [203096] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9469), 1, - anon_sym_LBRACK, - ACTIONS(9467), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6280), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3058), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [249652] = 18, + STATE(2943), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5106), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [203155] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(2705), 1, - anon_sym_TILDE, - ACTIONS(6911), 1, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5469), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(7998), 1, anon_sym_COLON_COLON, - ACTIONS(8010), 1, - anon_sym_STAR, - ACTIONS(9471), 1, + ACTIONS(8200), 1, sym_identifier, - ACTIONS(9473), 1, - anon_sym_template, - STATE(3377), 1, - sym_operator_name, - STATE(3398), 1, - sym_qualified_identifier, - STATE(3408), 1, - sym_dependent_identifier, - STATE(3410), 1, - sym_destructor_name, - STATE(3416), 1, - sym_template_function, - STATE(3420), 1, - sym_pointer_type_declarator, - STATE(6547), 1, + STATE(2511), 1, + sym_template_type, + STATE(2621), 1, + sym_field_declaration_list, + STATE(2825), 1, + sym__class_declaration_item, + STATE(5951), 1, sym__scope_resolution, - STATE(8943), 1, - sym_ms_based_modifier, - STATE(9648), 3, + STATE(6411), 1, + sym_virtual_specifier, + STATE(6886), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5133), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [249709] = 3, + [203214] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LBRACK, - ACTIONS(5056), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5318), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(8090), 1, + anon_sym_COLON_COLON, + ACTIONS(8216), 1, + sym_identifier, + STATE(2356), 1, + sym_template_type, + STATE(2411), 1, + sym_field_declaration_list, + STATE(2494), 1, + sym__class_declaration_item, + STATE(5965), 1, + sym__scope_resolution, + STATE(6284), 1, + sym_virtual_specifier, + STATE(7049), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [249736] = 9, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9315), 1, - anon_sym_LF, - ACTIONS(9417), 1, - anon_sym_AMP, - ACTIONS(9405), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9407), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9317), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(9421), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [249775] = 5, + STATE(2119), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [203273] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9477), 1, - anon_sym_LBRACK, - ACTIONS(9479), 2, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5469), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(7998), 1, + anon_sym_COLON_COLON, + ACTIONS(8200), 1, + sym_identifier, + STATE(2511), 1, + sym_template_type, + STATE(2621), 1, + sym_field_declaration_list, + STATE(2857), 1, + sym__class_declaration_item, + STATE(5951), 1, + sym__scope_resolution, + STATE(6411), 1, + sym_virtual_specifier, + STATE(6886), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6550), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9475), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + STATE(2361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [203332] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5447), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [249806] = 10, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9315), 1, - anon_sym_LF, - ACTIONS(9415), 1, - anon_sym_CARET, - ACTIONS(9417), 1, - anon_sym_AMP, - ACTIONS(9405), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9317), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(9407), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9421), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [249847] = 12, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9409), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9411), 1, - anon_sym_AMP_AMP, - ACTIONS(9413), 1, - anon_sym_PIPE, - ACTIONS(9415), 1, - anon_sym_CARET, - ACTIONS(9417), 1, - anon_sym_AMP, - ACTIONS(9482), 1, - anon_sym_LF, - ACTIONS(9405), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9407), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9421), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [249892] = 3, + ACTIONS(8012), 1, + anon_sym_COLON_COLON, + ACTIONS(8218), 1, + sym_identifier, + STATE(2467), 1, + sym_template_type, + STATE(2774), 1, + sym_field_declaration_list, + STATE(2947), 1, + sym__class_declaration_item, + STATE(5980), 1, + sym__scope_resolution, + STATE(6437), 1, + sym_virtual_specifier, + STATE(7126), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2349), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [203391] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9486), 1, - anon_sym_LBRACK, - ACTIONS(9484), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6280), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3046), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [249919] = 13, + STATE(2943), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [203450] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, - anon_sym_requires, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6881), 1, - sym_requires_clause, - STATE(7192), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(5318), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8090), 1, + anon_sym_COLON_COLON, + ACTIONS(8216), 1, + sym_identifier, + STATE(2356), 1, + sym_template_type, + STATE(2411), 1, + sym_field_declaration_list, + STATE(2497), 1, + sym__class_declaration_item, + STATE(5965), 1, + sym__scope_resolution, + STATE(6284), 1, + sym_virtual_specifier, + STATE(7049), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6537), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6718), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6740), 2, + STATE(2119), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5088), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8865), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [249966] = 13, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [203509] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, - anon_sym_requires, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6881), 1, - sym_requires_clause, - STATE(7192), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(5318), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8090), 1, + anon_sym_COLON_COLON, + ACTIONS(8216), 1, + sym_identifier, + STATE(2356), 1, + sym_template_type, + STATE(2411), 1, + sym_field_declaration_list, + STATE(2469), 1, + sym__class_declaration_item, + STATE(5965), 1, + sym__scope_resolution, + STATE(6284), 1, + sym_virtual_specifier, + STATE(7049), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6718), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6740), 2, + STATE(2119), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8865), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [250013] = 5, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [203568] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8859), 1, - anon_sym_LBRACK, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6550), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [250044] = 3, - ACTIONS(6454), 1, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(7881), 1, + anon_sym_LBRACE, + ACTIONS(8194), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(4458), 1, + sym_field_declaration_list, + STATE(4516), 1, + sym__class_declaration_item, + STATE(5987), 1, + sym__scope_resolution, + STATE(6289), 1, + sym_virtual_specifier, + STATE(7025), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(4361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [203627] = 5, + ACTIONS(8385), 1, anon_sym_LF, - ACTIONS(9067), 1, + ACTIONS(8582), 1, + anon_sym_LPAREN2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(6456), 18, + STATE(5288), 1, + sym_preproc_argument_list, + ACTIONS(8389), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584167,389 +460106,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [250071] = 11, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9315), 1, - anon_sym_LF, - ACTIONS(9413), 1, - anon_sym_PIPE, - ACTIONS(9415), 1, - anon_sym_CARET, - ACTIONS(9417), 1, - anon_sym_AMP, - ACTIONS(9317), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(9405), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9407), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9421), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [250114] = 3, + [203660] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6510), 1, - anon_sym_LBRACK, - ACTIONS(6508), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8538), 1, + sym_identifier, + ACTIONS(8542), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [250141] = 13, + ACTIONS(8544), 1, + anon_sym_defined, + ACTIONS(8586), 1, + anon_sym_RPAREN, + ACTIONS(8588), 1, + sym_number_literal, + ACTIONS(8546), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8548), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8552), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5059), 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, + [203703] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, - anon_sym_requires, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6885), 1, - sym_requires_clause, - STATE(7188), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6716), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6742), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8744), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(8554), 1, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [250188] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9043), 1, + ACTIONS(8562), 1, anon_sym_SLASH, - ACTIONS(9045), 1, + ACTIONS(8564), 1, anon_sym_PIPE_PIPE, - ACTIONS(9047), 1, + ACTIONS(8566), 1, anon_sym_AMP_AMP, - ACTIONS(9049), 1, + ACTIONS(8568), 1, anon_sym_PIPE, - ACTIONS(9051), 1, + ACTIONS(8570), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(8572), 1, anon_sym_AMP, - ACTIONS(9488), 1, + ACTIONS(8590), 1, anon_sym_RPAREN, - ACTIONS(9039), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9041), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9055), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9057), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9059), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(9061), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [250237] = 3, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9275), 1, - anon_sym_LF, - ACTIONS(9277), 18, + STATE(6580), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(8558), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8560), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(8574), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8576), 2, anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [250264] = 3, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9243), 1, - anon_sym_LF, - ACTIONS(9245), 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, + ACTIONS(8578), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(8580), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [250291] = 3, + [203758] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6234), 1, - anon_sym_LBRACK, - ACTIONS(6232), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5343), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(8231), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1962), 1, + sym__class_declaration_item, + STATE(4945), 1, + sym_field_declaration_list, + STATE(5966), 1, + sym__scope_resolution, + STATE(6403), 1, + sym_virtual_specifier, + STATE(6904), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [250318] = 3, + STATE(4540), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5044), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [203817] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(6512), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5548), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + ACTIONS(8034), 1, + anon_sym_COLON_COLON, + ACTIONS(8237), 1, + sym_identifier, + STATE(2586), 1, + sym_template_type, + STATE(2960), 1, + sym_field_declaration_list, + STATE(3262), 1, + sym__class_declaration_item, + STATE(5960), 1, + sym__scope_resolution, + STATE(6323), 1, + sym_virtual_specifier, + STATE(7174), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [250345] = 13, + STATE(2402), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5124), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [203876] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, - anon_sym_requires, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6879), 1, - sym_requires_clause, - STATE(7191), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(5343), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8198), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1962), 1, + sym__class_declaration_item, + STATE(2369), 1, + sym_field_declaration_list, + STATE(5972), 1, + sym__scope_resolution, + STATE(6317), 1, + sym_virtual_specifier, + STATE(6950), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6555), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6711), 2, + STATE(2167), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5111), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6717), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [250392] = 12, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9315), 1, - anon_sym_LF, - ACTIONS(9317), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9411), 1, - anon_sym_AMP_AMP, - ACTIONS(9413), 1, - anon_sym_PIPE, - ACTIONS(9415), 1, - anon_sym_CARET, - ACTIONS(9417), 1, - anon_sym_AMP, - ACTIONS(9405), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9407), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9421), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [250437] = 3, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9315), 1, - anon_sym_LF, - ACTIONS(9317), 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, - [250464] = 4, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9315), 1, - anon_sym_LF, - ACTIONS(9407), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9317), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [250493] = 13, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [203935] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, - anon_sym_requires, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6879), 1, - sym_requires_clause, - STATE(7191), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(5548), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8034), 1, + anon_sym_COLON_COLON, + ACTIONS(8237), 1, + sym_identifier, + STATE(2586), 1, + sym_template_type, + STATE(2960), 1, + sym_field_declaration_list, + STATE(3248), 1, + sym__class_declaration_item, + STATE(5960), 1, + sym__scope_resolution, + STATE(6323), 1, + sym_virtual_specifier, + STATE(7174), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6711), 2, + STATE(2402), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6717), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [250540] = 5, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [203994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9492), 1, + ACTIONS(8594), 1, anon_sym_LBRACK, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6550), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9490), 14, + ACTIONS(8592), 20, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -584561,2372 +460360,2971 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [250571] = 11, + [204023] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4611), 1, + anon_sym_COLON_COLON, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6579), 1, - sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8210), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3129), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5953), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5945), 2, + STATE(2943), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [250613] = 11, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [204082] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - STATE(6574), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8115), 1, + anon_sym_COLON_COLON, + ACTIONS(8229), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2602), 1, + sym_field_declaration_list, + STATE(2870), 1, + sym__class_declaration_item, + STATE(5964), 1, + sym__scope_resolution, + STATE(6223), 1, + sym_virtual_specifier, + STATE(6920), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, + STATE(2328), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7237), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [250655] = 7, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [204141] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 11, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5343), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [250689] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6580), 1, - sym_trailing_return_type, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(8227), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1962), 1, + sym__class_declaration_item, + STATE(2369), 1, + sym_field_declaration_list, + STATE(5968), 1, + sym__scope_resolution, + STATE(6317), 1, + sym_virtual_specifier, + STATE(6950), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5945), 2, + STATE(2167), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5071), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [250731] = 16, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [204200] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7202), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(9169), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym_EQ, - ACTIONS(9494), 1, - anon_sym_SEMI, - ACTIONS(9496), 1, + ACTIONS(5343), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, anon_sym_COLON, - STATE(4619), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8009), 1, - sym_gnu_asm_expression, - STATE(8050), 1, - aux_sym_declaration_repeat1, - ACTIONS(9179), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7099), 2, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(8227), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1939), 1, + sym__class_declaration_item, + STATE(2369), 1, + sym_field_declaration_list, + STATE(5968), 1, + sym__scope_resolution, + STATE(6317), 1, + sym_virtual_specifier, + STATE(6950), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2167), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5077), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, - sym_argument_list, - sym_initializer_list, - [250783] = 16, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [204259] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7202), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(9169), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym_EQ, - ACTIONS(9494), 1, - anon_sym_SEMI, - ACTIONS(9498), 1, + ACTIONS(5447), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, anon_sym_COLON, - STATE(4619), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8009), 1, - sym_gnu_asm_expression, - STATE(8050), 1, - aux_sym_declaration_repeat1, - ACTIONS(9179), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7099), 2, + ACTIONS(8012), 1, + anon_sym_COLON_COLON, + ACTIONS(8218), 1, + sym_identifier, + STATE(2467), 1, + sym_template_type, + STATE(2774), 1, + sym_field_declaration_list, + STATE(2987), 1, + sym__class_declaration_item, + STATE(5980), 1, + sym__scope_resolution, + STATE(6437), 1, + sym_virtual_specifier, + STATE(7126), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2349), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5085), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, - sym_argument_list, - sym_initializer_list, - [250835] = 11, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [204318] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6601), 1, - sym_trailing_return_type, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(5343), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8198), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1939), 1, + sym__class_declaration_item, + STATE(2369), 1, + sym_field_declaration_list, + STATE(5972), 1, + sym__scope_resolution, + STATE(6317), 1, + sym_virtual_specifier, + STATE(6950), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, + STATE(2167), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5125), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8857), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [250877] = 7, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [204377] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5343), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [250911] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6643), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(8227), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1964), 1, + sym__class_declaration_item, + STATE(2369), 1, + sym_field_declaration_list, + STATE(5968), 1, + sym__scope_resolution, + STATE(6317), 1, + sym_virtual_specifier, + STATE(6950), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [250945] = 7, + STATE(2167), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [204436] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(8863), 1, - anon_sym_LBRACK, - STATE(6676), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6519), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8861), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6280), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [250979] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(8194), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3046), 1, + sym__class_declaration_item, + STATE(3627), 1, + sym_field_declaration_list, + STATE(5987), 1, + sym__scope_resolution, + STATE(6333), 1, + sym_virtual_specifier, + STATE(7065), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 11, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + STATE(3396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [204495] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6280), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [251013] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(9193), 1, - anon_sym_LBRACK, - STATE(6707), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3099), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6571), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9191), 11, + STATE(2943), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [204554] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8554), 1, anon_sym_COMMA, + ACTIONS(8562), 1, + anon_sym_SLASH, + ACTIONS(8564), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8566), 1, + anon_sym_AMP_AMP, + ACTIONS(8568), 1, + anon_sym_PIPE, + ACTIONS(8570), 1, + anon_sym_CARET, + ACTIONS(8572), 1, + anon_sym_AMP, + ACTIONS(8596), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [251047] = 16, + STATE(6706), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(8558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8560), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8574), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8576), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8578), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(8580), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [204609] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7202), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(9169), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym_EQ, - ACTIONS(9494), 1, - anon_sym_SEMI, - ACTIONS(9500), 1, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, anon_sym_COLON, - STATE(4619), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8009), 1, - sym_gnu_asm_expression, - STATE(8050), 1, - aux_sym_declaration_repeat1, - ACTIONS(9179), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7099), 2, + ACTIONS(8115), 1, + anon_sym_COLON_COLON, + ACTIONS(8229), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2602), 1, + sym_field_declaration_list, + STATE(2806), 1, + sym__class_declaration_item, + STATE(5964), 1, + sym__scope_resolution, + STATE(6223), 1, + sym_virtual_specifier, + STATE(6920), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2328), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5099), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, - sym_argument_list, - sym_initializer_list, - [251099] = 5, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [204668] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6030), 1, - anon_sym_LBRACK, - ACTIONS(9502), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - STATE(6585), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6028), 14, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(5469), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + ACTIONS(7998), 1, + anon_sym_COLON_COLON, + ACTIONS(8200), 1, + sym_identifier, + STATE(2511), 1, + sym_template_type, + STATE(2621), 1, + sym_field_declaration_list, + STATE(2877), 1, + sym__class_declaration_item, + STATE(5951), 1, + sym__scope_resolution, + STATE(6411), 1, + sym_virtual_specifier, + STATE(6886), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [251129] = 7, + STATE(2361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [204727] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(9492), 1, - anon_sym_LBRACK, - STATE(6689), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6531), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9490), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5410), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [251163] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8115), 1, + anon_sym_COLON_COLON, + ACTIONS(8229), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2602), 1, + sym_field_declaration_list, + STATE(2789), 1, + sym__class_declaration_item, + STATE(5964), 1, + sym__scope_resolution, + STATE(6223), 1, + sym_virtual_specifier, + STATE(6920), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [251197] = 7, + STATE(2328), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [204786] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7249), 1, - anon_sym_requires, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5343), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [251231] = 11, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8198), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1946), 1, + sym__class_declaration_item, + STATE(2369), 1, + sym_field_declaration_list, + STATE(5972), 1, + sym__scope_resolution, + STATE(6317), 1, + sym_virtual_specifier, + STATE(6950), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2167), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [204845] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4611), 1, + anon_sym_COLON_COLON, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - STATE(6599), 1, - sym_trailing_return_type, - STATE(6707), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8210), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3058), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5953), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6571), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, + STATE(2943), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9191), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [251273] = 11, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [204904] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(9193), 1, - anon_sym_LBRACK, - STATE(6586), 1, - sym_trailing_return_type, - STATE(6707), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(5343), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8198), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(1964), 1, + sym__class_declaration_item, + STATE(2369), 1, + sym_field_declaration_list, + STATE(5972), 1, + sym__scope_resolution, + STATE(6317), 1, + sym_virtual_specifier, + STATE(6950), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5945), 2, + STATE(2167), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6571), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9191), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [251315] = 16, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [204963] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7202), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(9169), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym_EQ, - ACTIONS(9494), 1, - anon_sym_SEMI, - ACTIONS(9505), 1, + ACTIONS(5447), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, anon_sym_COLON, - STATE(4619), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8009), 1, - sym_gnu_asm_expression, - STATE(8050), 1, - aux_sym_declaration_repeat1, - ACTIONS(9179), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7099), 2, + ACTIONS(8012), 1, + anon_sym_COLON_COLON, + ACTIONS(8218), 1, + sym_identifier, + STATE(2467), 1, + sym_template_type, + STATE(2774), 1, + sym_field_declaration_list, + STATE(2954), 1, + sym__class_declaration_item, + STATE(5980), 1, + sym__scope_resolution, + STATE(6437), 1, + sym_virtual_specifier, + STATE(7126), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2349), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5074), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, - sym_argument_list, - sym_initializer_list, - [251367] = 11, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [205022] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7421), 1, - anon_sym_LPAREN2, - ACTIONS(7429), 1, - anon_sym_LBRACK, - ACTIONS(8536), 1, - anon_sym_STAR, - ACTIONS(8538), 1, - anon_sym_AMP_AMP, - ACTIONS(8540), 1, - anon_sym_AMP, - STATE(4812), 1, - sym_parameter_list, - STATE(6614), 1, - sym__function_declarator_seq, - STATE(7270), 1, - sym__abstract_declarator, - ACTIONS(7491), 5, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, anon_sym_COLON, + ACTIONS(6917), 1, + anon_sym_COLON_COLON, + ACTIONS(8190), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3099), 1, + sym__class_declaration_item, + STATE(3627), 1, + sym_field_declaration_list, + STATE(5982), 1, + sym__scope_resolution, + STATE(6333), 1, + sym_virtual_specifier, + STATE(7065), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - STATE(6623), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [251409] = 7, + STATE(3396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [205081] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(9193), 1, - anon_sym_LBRACK, - STATE(6707), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6571), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9191), 11, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5469), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [251443] = 16, + ACTIONS(6994), 1, + anon_sym_COLON_COLON, + ACTIONS(8202), 1, + sym_identifier, + STATE(2511), 1, + sym_template_type, + STATE(2621), 1, + sym_field_declaration_list, + STATE(2809), 1, + sym__class_declaration_item, + STATE(5956), 1, + sym__scope_resolution, + STATE(6411), 1, + sym_virtual_specifier, + STATE(6886), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5121), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [205140] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7202), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(9169), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym_EQ, - ACTIONS(9494), 1, - anon_sym_SEMI, - ACTIONS(9507), 1, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, anon_sym_COLON, - STATE(4619), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8009), 1, - sym_gnu_asm_expression, - STATE(8050), 1, - aux_sym_declaration_repeat1, - ACTIONS(9179), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7099), 2, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3110), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5992), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2943), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5086), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, - sym_argument_list, - sym_initializer_list, - [251495] = 11, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [205199] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - STATE(6608), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, + sym_identifier, + ACTIONS(8212), 1, + anon_sym_COLON_COLON, + STATE(2542), 1, + sym_template_type, + STATE(3129), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5959), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5945), 2, + STATE(3777), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [251537] = 11, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [205258] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4611), 1, + anon_sym_COLON_COLON, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - STATE(6587), 1, - sym_trailing_return_type, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8210), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3046), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5953), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5945), 2, + STATE(2943), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [251579] = 11, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [205317] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - ACTIONS(8863), 1, - anon_sym_LBRACK, - STATE(6593), 1, - sym_trailing_return_type, - STATE(6676), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(6280), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8196), 1, + sym_identifier, + ACTIONS(8212), 1, + anon_sym_COLON_COLON, + STATE(2542), 1, + sym_template_type, + STATE(3110), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5959), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6519), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, + STATE(3777), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5080), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8861), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [251621] = 7, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [205376] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(8863), 1, - anon_sym_LBRACK, - STATE(6676), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6519), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8861), 11, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5469), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [251655] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(9492), 1, - anon_sym_LBRACK, - STATE(6689), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(6994), 1, + anon_sym_COLON_COLON, + ACTIONS(8202), 1, + sym_identifier, + STATE(2511), 1, + sym_template_type, + STATE(2621), 1, + sym_field_declaration_list, + STATE(2877), 1, + sym__class_declaration_item, + STATE(5956), 1, + sym__scope_resolution, + STATE(6411), 1, + sym_virtual_specifier, + STATE(6886), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6531), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9490), 11, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + STATE(2361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [205435] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5410), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [251689] = 11, + ACTIONS(8115), 1, + anon_sym_COLON_COLON, + ACTIONS(8229), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2602), 1, + sym_field_declaration_list, + STATE(2862), 1, + sym__class_declaration_item, + STATE(5964), 1, + sym__scope_resolution, + STATE(6223), 1, + sym_virtual_specifier, + STATE(6920), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2328), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [205494] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(8863), 1, - anon_sym_LBRACK, - STATE(6583), 1, - sym_trailing_return_type, - STATE(6676), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(5469), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(7998), 1, + anon_sym_COLON_COLON, + ACTIONS(8200), 1, + sym_identifier, + STATE(2511), 1, + sym_template_type, + STATE(2621), 1, + sym_field_declaration_list, + STATE(2809), 1, + sym__class_declaration_item, + STATE(5951), 1, + sym__scope_resolution, + STATE(6411), 1, + sym_virtual_specifier, + STATE(6886), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5945), 2, + STATE(2361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5109), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6519), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8861), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [251731] = 7, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [205553] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6643), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 11, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5548), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [251765] = 11, + ACTIONS(8034), 1, + anon_sym_COLON_COLON, + ACTIONS(8237), 1, + sym_identifier, + STATE(2586), 1, + sym_template_type, + STATE(2960), 1, + sym_field_declaration_list, + STATE(3197), 1, + sym__class_declaration_item, + STATE(5960), 1, + sym__scope_resolution, + STATE(6323), 1, + sym_virtual_specifier, + STATE(7174), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2402), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [205612] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6598), 1, - sym_trailing_return_type, - STATE(6643), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(5343), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8198), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(2004), 1, + sym__class_declaration_item, + STATE(2369), 1, + sym_field_declaration_list, + STATE(5972), 1, + sym__scope_resolution, + STATE(6317), 1, + sym_virtual_specifier, + STATE(6950), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, + STATE(2167), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8865), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [251807] = 11, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [205671] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7247), 1, - anon_sym_DASH_GT, - ACTIONS(7249), 1, - anon_sym_requires, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6581), 1, - sym_trailing_return_type, - STATE(6643), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(8115), 1, + anon_sym_COLON_COLON, + ACTIONS(8229), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2602), 1, + sym_field_declaration_list, + STATE(2853), 1, + sym__class_declaration_item, + STATE(5964), 1, + sym__scope_resolution, + STATE(6223), 1, + sym_virtual_specifier, + STATE(6920), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(5945), 2, + STATE(2328), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5110), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [251849] = 16, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [205730] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7202), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(9169), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym_EQ, - ACTIONS(9494), 1, - anon_sym_SEMI, - ACTIONS(9509), 1, + ACTIONS(6282), 1, anon_sym_COLON, - STATE(4619), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8009), 1, - sym_gnu_asm_expression, - STATE(8050), 1, - aux_sym_declaration_repeat1, - ACTIONS(9179), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7099), 2, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(7881), 1, + anon_sym_LBRACE, + ACTIONS(8194), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(4458), 1, + sym_field_declaration_list, + STATE(4495), 1, + sym__class_declaration_item, + STATE(5987), 1, + sym__scope_resolution, + STATE(6289), 1, + sym_virtual_specifier, + STATE(7025), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(4361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, - sym_argument_list, - sym_initializer_list, - [251901] = 7, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [205789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7239), 1, + ACTIONS(3273), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(3275), 19, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, anon_sym_LBRACK, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_final, anon_sym_override, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 11, - anon_sym_COMMA, + anon_sym_requires, + [205818] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7091), 1, anon_sym_LPAREN2, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7458), 1, + anon_sym_STAR, + ACTIONS(7460), 1, + anon_sym_AMP_AMP, + ACTIONS(7462), 1, + anon_sym_AMP, + STATE(3519), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5789), 1, + sym__abstract_declarator, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7127), 8, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_try, - [251935] = 16, + anon_sym_requires, + [205863] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7202), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(9169), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym_EQ, - ACTIONS(9494), 1, - anon_sym_SEMI, - ACTIONS(9511), 1, + ACTIONS(5548), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, anon_sym_COLON, - STATE(4619), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8009), 1, - sym_gnu_asm_expression, - STATE(8050), 1, - aux_sym_declaration_repeat1, - ACTIONS(9179), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7099), 2, + ACTIONS(8034), 1, + anon_sym_COLON_COLON, + ACTIONS(8237), 1, + sym_identifier, + STATE(2586), 1, + sym_template_type, + STATE(2960), 1, + sym_field_declaration_list, + STATE(3244), 1, + sym__class_declaration_item, + STATE(5960), 1, + sym__scope_resolution, + STATE(6323), 1, + sym_virtual_specifier, + STATE(7174), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(2402), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, - sym_argument_list, - sym_initializer_list, - [251987] = 7, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [205922] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 11, - anon_sym_COMMA, + ACTIONS(8538), 1, + sym_identifier, + ACTIONS(8542), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(8544), 1, + anon_sym_defined, + ACTIONS(8598), 1, + anon_sym_RPAREN, + ACTIONS(8600), 1, + sym_number_literal, + ACTIONS(8546), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8548), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8552), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5107), 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, + [205965] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4611), 1, + anon_sym_COLON_COLON, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6280), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6282), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [252021] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7249), 1, - anon_sym_requires, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(8210), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3110), 1, + sym__class_declaration_item, + STATE(3638), 1, + sym_field_declaration_list, + STATE(5953), 1, + sym__scope_resolution, + STATE(6465), 1, + sym_virtual_specifier, + STATE(6885), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [252055] = 11, + STATE(2943), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5119), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [206024] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - STATE(6605), 1, - sym_trailing_return_type, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(5469), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(7998), 1, + anon_sym_COLON_COLON, + ACTIONS(8200), 1, + sym_identifier, + STATE(2511), 1, + sym_template_type, + STATE(2621), 1, + sym_field_declaration_list, + STATE(2790), 1, + sym__class_declaration_item, + STATE(5951), 1, + sym__scope_resolution, + STATE(6411), 1, + sym_virtual_specifier, + STATE(6886), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, + STATE(2361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7192), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [252097] = 11, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [206083] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(131), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4800), 1, + anon_sym_COLON_COLON, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(8602), 1, + sym_identifier, + ACTIONS(8604), 1, + anon_sym_template, + STATE(2549), 1, + sym_pointer_type_declarator, + STATE(2552), 1, + sym_template_function, + STATE(2554), 1, + sym_destructor_name, + STATE(2555), 1, + sym_dependent_identifier, + STATE(2559), 1, + sym_qualified_identifier, + STATE(2566), 1, + sym_operator_name, + STATE(5134), 1, + sym__scope_resolution, + STATE(6359), 1, + sym_qualified_operator_cast_identifier, + STATE(6373), 1, + sym_operator_cast, + STATE(7570), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [206146] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7216), 1, - anon_sym_requires, - ACTIONS(7251), 1, - anon_sym_DASH_GT, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6582), 1, - sym_trailing_return_type, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6917), 1, + anon_sym_COLON_COLON, + ACTIONS(7881), 1, + anon_sym_LBRACE, + ACTIONS(8190), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(4458), 1, + sym_field_declaration_list, + STATE(4516), 1, + sym__class_declaration_item, + STATE(5982), 1, + sym__scope_resolution, + STATE(6289), 1, + sym_virtual_specifier, + STATE(7025), 1, + sym_base_class_clause, + ACTIONS(6284), 2, anon_sym_final, anon_sym_override, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, + STATE(4361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4800), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8744), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [252139] = 13, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [206205] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, - anon_sym_DASH_GT, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6879), 1, - sym_requires_clause, - STATE(6971), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8857), 2, - anon_sym_LPAREN2, + ACTIONS(6282), 1, anon_sym_COLON, - STATE(6651), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6717), 2, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(7881), 1, + anon_sym_LBRACE, + ACTIONS(8194), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(4458), 1, + sym_field_declaration_list, + STATE(4535), 1, + sym__class_declaration_item, + STATE(5987), 1, + sym__scope_resolution, + STATE(6289), 1, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6857), 2, + STATE(7025), 1, + sym_base_class_clause, + ACTIONS(6284), 2, + anon_sym_final, + anon_sym_override, + STATE(4361), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5089), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [252184] = 15, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [206264] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(4910), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(7572), 1, anon_sym_STAR, - ACTIONS(4912), 1, - anon_sym_AMP_AMP, - ACTIONS(4914), 1, + ACTIONS(8606), 1, + sym_identifier, + ACTIONS(8608), 1, + anon_sym_TILDE, + ACTIONS(8610), 1, + anon_sym_COLON_COLON, + ACTIONS(8612), 1, + anon_sym_template, + ACTIONS(8614), 1, + anon_sym_operator, + STATE(2550), 1, + sym_template_type, + STATE(2556), 1, + sym_dependent_type_identifier, + STATE(2560), 1, + sym_qualified_type_identifier, + STATE(2729), 1, + sym_pointer_type_declarator, + STATE(2733), 1, + sym_template_function, + STATE(2734), 1, + sym_destructor_name, + STATE(2737), 1, + sym_dependent_identifier, + STATE(2743), 1, + sym_qualified_identifier, + STATE(2745), 1, + sym_operator_name, + STATE(5137), 1, + sym__scope_resolution, + STATE(7189), 1, + sym_ms_based_modifier, + STATE(7683), 1, + sym_decltype, + [206328] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8618), 5, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9513), 1, - anon_sym_LBRACE, - ACTIONS(9515), 1, - anon_sym_requires, - STATE(4706), 1, - sym_parameter_list, - STATE(6508), 1, - sym_compound_statement, - STATE(6764), 1, - sym_requires_clause, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7587), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [252233] = 11, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8616), 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, + [206356] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, + anon_sym_LPAREN2, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8630), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5314), 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, + [206396] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, + anon_sym_LPAREN2, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8634), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5223), 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, + [206436] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(7572), 1, + anon_sym_STAR, + ACTIONS(8608), 1, + anon_sym_TILDE, + ACTIONS(8614), 1, + anon_sym_operator, + ACTIONS(8636), 1, + sym_identifier, + ACTIONS(8638), 1, + anon_sym_COLON_COLON, + ACTIONS(8640), 1, + anon_sym_template, + STATE(2550), 1, + sym_template_type, + STATE(2556), 1, + sym_dependent_type_identifier, + STATE(2560), 1, + sym_qualified_type_identifier, + STATE(2729), 1, + sym_pointer_type_declarator, + STATE(2733), 1, + sym_template_function, + STATE(2734), 1, + sym_destructor_name, + STATE(2737), 1, + sym_dependent_identifier, + STATE(2743), 1, + sym_qualified_identifier, + STATE(2745), 1, + sym_operator_name, + STATE(5141), 1, + sym__scope_resolution, + STATE(7189), 1, + sym_ms_based_modifier, + STATE(7683), 1, + sym_decltype, + [206500] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8562), 1, + anon_sym_SLASH, + ACTIONS(8558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8560), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8580), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8644), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8642), 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, + [206536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7369), 1, - anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - STATE(6891), 1, - sym_requires_clause, - STATE(6965), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 5, + ACTIONS(6089), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(6087), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [252274] = 3, + 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, + [206564] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9519), 1, - anon_sym_LBRACK, - ACTIONS(9517), 16, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8646), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8648), 1, anon_sym_LPAREN2, + ACTIONS(8650), 1, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + ACTIONS(8652), 1, anon_sym_LBRACE, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(8656), 1, anon_sym_EQ, - anon_sym_COLON, + ACTIONS(8660), 1, + anon_sym_try, + STATE(874), 1, + sym_try_statement, + STATE(876), 1, + sym_compound_statement, + STATE(3511), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(6846), 1, + aux_sym__declaration_declarator_repeat1, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(8658), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [252299] = 3, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6853), 2, + sym_argument_list, + sym_initializer_list, + [206622] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9523), 1, - anon_sym_LBRACK, - ACTIONS(9521), 16, + ACTIONS(8562), 1, + anon_sym_SLASH, + ACTIONS(8558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8560), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8576), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8578), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(8580), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8644), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(8642), 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, + [206662] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [252324] = 11, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8662), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5255), 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, + [206702] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7357), 1, - anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - STATE(6894), 1, - sym_requires_clause, - STATE(7057), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 5, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [252365] = 15, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8664), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5244), 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, + [206742] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8562), 1, + anon_sym_SLASH, + ACTIONS(8558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8560), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8574), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8576), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8578), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(8580), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8644), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(8642), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [206784] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(9167), 1, + ACTIONS(8379), 1, + anon_sym_try, + ACTIONS(8646), 1, anon_sym_COMMA, - ACTIONS(9169), 1, + ACTIONS(8648), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(8650), 1, + anon_sym_SEMI, + ACTIONS(8654), 1, anon_sym_LBRACK, - ACTIONS(9177), 1, + ACTIONS(8656), 1, anon_sym_EQ, - ACTIONS(9355), 1, - anon_sym_SEMI, - STATE(4570), 1, + ACTIONS(8666), 1, + anon_sym_LBRACE, + STATE(1827), 1, + sym_compound_statement, + STATE(1828), 1, + sym_try_statement, + STATE(3511), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5760), 1, sym__function_declarator_seq, - STATE(8220), 1, + STATE(6846), 1, + aux_sym__declaration_declarator_repeat1, + STATE(6850), 1, sym_gnu_asm_expression, - STATE(8261), 1, - aux_sym_declaration_repeat1, - ACTIONS(9179), 2, + ACTIONS(8658), 2, anon_sym_asm, anon_sym___asm__, - STATE(6821), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, + STATE(6853), 2, sym_argument_list, sym_initializer_list, - [252414] = 11, + [206842] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7369), 1, - anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(9193), 1, - anon_sym_LBRACK, - STATE(6878), 1, - sym_requires_clause, - STATE(6982), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6719), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9191), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [252455] = 15, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8668), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5236), 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, + [206882] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, + ACTIONS(8562), 1, + anon_sym_SLASH, + ACTIONS(8564), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8566), 1, anon_sym_AMP_AMP, - ACTIONS(4914), 1, + ACTIONS(8568), 1, + anon_sym_PIPE, + ACTIONS(8570), 1, + anon_sym_CARET, + ACTIONS(8572), 1, anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9525), 1, + ACTIONS(8558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8560), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8574), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8576), 2, + anon_sym_GT, anon_sym_LT, - ACTIONS(9527), 1, - anon_sym_LBRACE, - STATE(4080), 1, - sym_compound_statement, - STATE(4706), 1, - sym_parameter_list, - STATE(6691), 1, - sym_template_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7599), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [252504] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9531), 1, - anon_sym_LBRACK, - ACTIONS(9529), 16, + ACTIONS(8578), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(8580), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8670), 2, anon_sym_COMMA, anon_sym_RPAREN, + [206932] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8538), 1, + sym_identifier, + ACTIONS(8542), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [252529] = 15, + ACTIONS(8544), 1, + anon_sym_defined, + ACTIONS(8672), 1, + sym_number_literal, + ACTIONS(8546), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8548), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8552), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5331), 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, + [206972] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, - anon_sym_AMP_AMP, - ACTIONS(4914), 1, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8674), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5258), 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, + [207012] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8562), 1, + anon_sym_SLASH, + ACTIONS(8572), 1, anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9525), 1, + ACTIONS(8644), 1, + anon_sym_PIPE, + ACTIONS(8558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8560), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8574), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8576), 2, + anon_sym_GT, anon_sym_LT, - ACTIONS(9533), 1, - anon_sym_LBRACE, - STATE(4631), 1, - sym_compound_statement, - STATE(4706), 1, - sym_parameter_list, - STATE(6685), 1, - sym_template_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7840), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [252578] = 3, + ACTIONS(8578), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(8580), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8642), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [207056] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8867), 1, - anon_sym_LBRACK, - ACTIONS(8865), 16, + ACTIONS(8562), 1, + anon_sym_SLASH, + ACTIONS(8570), 1, + anon_sym_CARET, + ACTIONS(8572), 1, + anon_sym_AMP, + ACTIONS(8644), 1, + anon_sym_PIPE, + ACTIONS(8558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8560), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8574), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8576), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8578), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(8580), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8642), 4, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [207102] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [252603] = 3, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8676), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5282), 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, + [207142] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(9537), 1, - anon_sym_LBRACK, - ACTIONS(9535), 16, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(7522), 1, + anon_sym_STAR, + ACTIONS(8678), 1, + sym_identifier, + ACTIONS(8680), 1, + anon_sym_TILDE, + ACTIONS(8682), 1, + anon_sym_COLON_COLON, + ACTIONS(8684), 1, + anon_sym_template, + ACTIONS(8686), 1, + anon_sym_operator, + STATE(2519), 1, + sym_dependent_type_identifier, + STATE(2521), 1, + sym_template_type, + STATE(2594), 1, + sym_qualified_type_identifier, + STATE(3457), 1, + sym_operator_name, + STATE(3461), 1, + sym_qualified_identifier, + STATE(3462), 1, + sym_dependent_identifier, + STATE(3463), 1, + sym_destructor_name, + STATE(3466), 1, + sym_template_function, + STATE(3468), 1, + sym_pointer_type_declarator, + STATE(5157), 1, + sym__scope_resolution, + STATE(7366), 1, + sym_ms_based_modifier, + STATE(7683), 1, + sym_decltype, + [207206] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8562), 1, + anon_sym_SLASH, + ACTIONS(8568), 1, + anon_sym_PIPE, + ACTIONS(8570), 1, + anon_sym_CARET, + ACTIONS(8572), 1, + anon_sym_AMP, + ACTIONS(8558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8560), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8574), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8576), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8578), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(8580), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8642), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [252628] = 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [207252] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7250), 1, anon_sym_LPAREN2, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(8724), 1, + ACTIONS(7338), 1, + sym_identifier, + ACTIONS(7340), 1, anon_sym_STAR, - ACTIONS(8726), 1, + ACTIONS(7342), 1, anon_sym_AMP_AMP, - ACTIONS(8728), 1, + ACTIONS(7344), 1, anon_sym_AMP, - STATE(4709), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7328), 1, - sym__abstract_declarator, - ACTIONS(7491), 4, + ACTIONS(8688), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [252669] = 15, + STATE(4988), 1, + sym__field_declarator, + STATE(5844), 1, + sym_operator_name, + STATE(7410), 1, + sym_attribute_specifier, + STATE(7666), 1, + sym_ms_based_modifier, + STATE(5865), 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, + [207304] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(4910), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(7522), 1, anon_sym_STAR, - ACTIONS(4912), 1, - anon_sym_AMP_AMP, - ACTIONS(4914), 1, - anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9515), 1, - anon_sym_requires, - ACTIONS(9539), 1, - anon_sym_LBRACE, - STATE(4379), 1, - sym_compound_statement, - STATE(4706), 1, - sym_parameter_list, - STATE(6803), 1, - sym_requires_clause, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7668), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [252718] = 11, + ACTIONS(8680), 1, + anon_sym_TILDE, + ACTIONS(8686), 1, + anon_sym_operator, + ACTIONS(8690), 1, + sym_identifier, + ACTIONS(8692), 1, + anon_sym_COLON_COLON, + ACTIONS(8694), 1, + anon_sym_template, + STATE(2550), 1, + sym_template_type, + STATE(2556), 1, + sym_dependent_type_identifier, + STATE(2560), 1, + sym_qualified_type_identifier, + STATE(3457), 1, + sym_operator_name, + STATE(3461), 1, + sym_qualified_identifier, + STATE(3462), 1, + sym_dependent_identifier, + STATE(3463), 1, + sym_destructor_name, + STATE(3466), 1, + sym_template_function, + STATE(3468), 1, + sym_pointer_type_declarator, + STATE(5160), 1, + sym__scope_resolution, + STATE(7366), 1, + sym_ms_based_modifier, + STATE(7683), 1, + sym_decltype, + [207368] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7365), 1, - anon_sym_DASH_GT, - ACTIONS(7367), 1, - anon_sym_requires, - STATE(6701), 1, - sym_requires_clause, - STATE(6929), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 5, + ACTIONS(8562), 1, + anon_sym_SLASH, + ACTIONS(8566), 1, + anon_sym_AMP_AMP, + ACTIONS(8568), 1, + anon_sym_PIPE, + ACTIONS(8570), 1, + anon_sym_CARET, + ACTIONS(8572), 1, + anon_sym_AMP, + ACTIONS(8558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8560), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8574), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8576), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8578), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(8580), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8642), 3, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [252759] = 11, + anon_sym_PIPE_PIPE, + [207416] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7365), 1, - anon_sym_DASH_GT, - ACTIONS(7367), 1, - anon_sym_requires, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6622), 1, - sym_requires_clause, - STATE(6942), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [252800] = 13, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(7572), 1, + anon_sym_STAR, + ACTIONS(8443), 1, + anon_sym_TILDE, + ACTIONS(8696), 1, + sym_identifier, + ACTIONS(8698), 1, + anon_sym_COLON_COLON, + ACTIONS(8700), 1, + anon_sym_template, + ACTIONS(8702), 1, + anon_sym_operator, + STATE(2549), 1, + sym_pointer_type_declarator, + STATE(2550), 1, + sym_template_type, + STATE(2552), 1, + sym_template_function, + STATE(2554), 1, + sym_destructor_name, + STATE(2555), 1, + sym_dependent_identifier, + STATE(2556), 1, + sym_dependent_type_identifier, + STATE(2559), 1, + sym_qualified_identifier, + STATE(2560), 1, + sym_qualified_type_identifier, + STATE(2566), 1, + sym_operator_name, + STATE(5162), 1, + sym__scope_resolution, + STATE(7189), 1, + sym_ms_based_modifier, + STATE(7683), 1, + sym_decltype, + [207480] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, - anon_sym_DASH_GT, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6885), 1, - sym_requires_clause, - STATE(6968), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8744), 2, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6716), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6855), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [252845] = 11, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8704), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5340), 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, + [207520] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7357), 1, - anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6881), 1, - sym_requires_clause, - STATE(7094), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6718), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 5, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [252886] = 6, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8706), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5247), 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, + [207560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(4860), 1, - anon_sym_COLON, - ACTIONS(8544), 1, + ACTIONS(8644), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - STATE(3214), 1, - sym_template_argument_list, - ACTIONS(4865), 13, + ACTIONS(8642), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [252917] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(9169), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym_EQ, - ACTIONS(9494), 1, - anon_sym_SEMI, - STATE(4570), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8009), 1, - sym_gnu_asm_expression, - STATE(8050), 1, - aux_sym_declaration_repeat1, - ACTIONS(9179), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, - sym_argument_list, - sym_initializer_list, - [252966] = 15, + 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, + [207588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(9167), 1, + ACTIONS(8710), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8708), 15, anon_sym_COMMA, - ACTIONS(9169), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym_EQ, - ACTIONS(9217), 1, - anon_sym_SEMI, - STATE(4570), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8079), 1, - sym_gnu_asm_expression, - STATE(8080), 1, - aux_sym_declaration_repeat1, - ACTIONS(9179), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, - sym_argument_list, - sym_initializer_list, - [253015] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(4910), 1, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(4912), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4914), 1, - anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9515), 1, - anon_sym_requires, - STATE(2351), 1, - sym_compound_statement, - STATE(4706), 1, - sym_parameter_list, - STATE(6796), 1, - sym_requires_clause, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7730), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [253064] = 15, + 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, + [207616] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(4910), 1, + ACTIONS(8562), 1, + anon_sym_SLASH, + ACTIONS(8560), 2, anon_sym_STAR, - ACTIONS(4912), 1, - anon_sym_AMP_AMP, - ACTIONS(4914), 1, + anon_sym_PERCENT, + ACTIONS(8644), 4, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9515), 1, - anon_sym_requires, - ACTIONS(9541), 1, - anon_sym_LBRACE, - STATE(3480), 1, - sym_compound_statement, - STATE(4706), 1, - sym_parameter_list, - STATE(6759), 1, - sym_requires_clause, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7719), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [253113] = 15, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8642), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [207648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, - anon_sym_AMP_AMP, - ACTIONS(4914), 1, + ACTIONS(8714), 5, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9525), 1, + anon_sym_GT, anon_sym_LT, - ACTIONS(9541), 1, - anon_sym_LBRACE, - STATE(3545), 1, - sym_compound_statement, - STATE(4706), 1, - sym_parameter_list, - STATE(6634), 1, - sym_template_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7687), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [253162] = 3, + ACTIONS(8712), 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, + [207676] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7192), 16, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8397), 1, + anon_sym_try, + ACTIONS(8646), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8648), 1, anon_sym_LPAREN2, + ACTIONS(8650), 1, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(8656), 1, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [253187] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, + ACTIONS(8716), 1, anon_sym_LBRACE, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, - anon_sym_AMP_AMP, - ACTIONS(4914), 1, - anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9525), 1, - anon_sym_LT, - STATE(2349), 1, + STATE(2104), 1, + sym_try_statement, + STATE(2105), 1, sym_compound_statement, - STATE(4706), 1, + STATE(3511), 1, sym_parameter_list, - STATE(6633), 1, - sym_template_parameter_list, - STATE(6905), 1, + STATE(5760), 1, sym__function_declarator_seq, - STATE(7693), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [253236] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, - anon_sym_DASH_GT, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6879), 1, - sym_requires_clause, - STATE(6971), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8857), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6717), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6857), 2, + STATE(6846), 1, + aux_sym__declaration_declarator_repeat1, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(8658), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [253281] = 11, + STATE(6853), 2, + sym_argument_list, + sym_initializer_list, + [207734] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7365), 1, - anon_sym_DASH_GT, - ACTIONS(7367), 1, - anon_sym_requires, - STATE(6678), 1, - sym_requires_clause, - STATE(6934), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 5, - anon_sym_RPAREN, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [253322] = 11, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8718), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5304), 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, + [207774] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7365), 1, - anon_sym_DASH_GT, - ACTIONS(7367), 1, - anon_sym_requires, - ACTIONS(8863), 1, - anon_sym_LBRACK, - STATE(6676), 1, - sym_requires_clause, - STATE(6945), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6519), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8861), 5, - anon_sym_RPAREN, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [253363] = 15, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8720), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5320), 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, + [207814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, - anon_sym_AMP_AMP, - ACTIONS(4914), 1, + ACTIONS(8724), 5, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9525), 1, - anon_sym_LT, - ACTIONS(9543), 1, - anon_sym_LBRACE, - STATE(4706), 1, - sym_parameter_list, - STATE(4968), 1, - sym_compound_statement, - STATE(6696), 1, - sym_template_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7843), 1, - sym__abstract_declarator, - STATE(7888), 1, - sym_abstract_function_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [253412] = 15, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8722), 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, + [207842] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(4910), 1, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7734), 1, anon_sym_STAR, - ACTIONS(4912), 1, + ACTIONS(7736), 1, anon_sym_AMP_AMP, - ACTIONS(4914), 1, + ACTIONS(7738), 1, anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9525), 1, - anon_sym_LT, - ACTIONS(9545), 1, - anon_sym_LBRACE, - STATE(4353), 1, - sym_compound_statement, - STATE(4706), 1, + STATE(3537), 1, sym_parameter_list, - STATE(6662), 1, - sym_template_parameter_list, - STATE(6905), 1, + STATE(5604), 1, sym__function_declarator_seq, - STATE(7843), 1, + STATE(5861), 1, sym__abstract_declarator, - STATE(7976), 1, - sym_abstract_function_declarator, - STATE(6825), 4, + STATE(5647), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, + sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [253461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8863), 1, - anon_sym_LBRACK, - ACTIONS(8861), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(7127), 7, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [253486] = 11, + [207886] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7369), 1, - anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(8859), 1, + ACTIONS(8459), 1, anon_sym_LBRACK, - STATE(6879), 1, - sym_requires_clause, - STATE(6971), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, + STATE(4412), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5347), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6717), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [253527] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9549), 1, - anon_sym_LBRACK, - ACTIONS(9547), 16, + ACTIONS(8457), 13, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [253552] = 11, + [207922] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7357), 1, - anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6885), 1, - sym_requires_clause, - STATE(7055), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6716), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 5, + ACTIONS(8538), 1, + sym_identifier, + ACTIONS(8542), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [253593] = 15, + ACTIONS(8544), 1, + anon_sym_defined, + ACTIONS(8726), 1, + sym_number_literal, + ACTIONS(8546), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8548), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8552), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5198), 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, + [207962] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7250), 1, anon_sym_LPAREN2, - ACTIONS(4910), 1, + ACTIONS(7338), 1, + sym_identifier, + ACTIONS(7340), 1, anon_sym_STAR, - ACTIONS(4912), 1, + ACTIONS(7342), 1, anon_sym_AMP_AMP, - ACTIONS(4914), 1, + ACTIONS(7344), 1, anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9525), 1, - anon_sym_LT, - ACTIONS(9539), 1, - anon_sym_LBRACE, - STATE(4382), 1, - sym_compound_statement, - STATE(4706), 1, - sym_parameter_list, - STATE(6625), 1, - sym_template_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7683), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [253642] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - ACTIONS(8863), 1, - anon_sym_LBRACK, - STATE(6676), 1, - sym_requires_clause, - STATE(7240), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8861), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5488), 2, + ACTIONS(8728), 1, + anon_sym_SEMI, + STATE(4978), 1, + sym__field_declarator, + STATE(5844), 1, + sym_operator_name, + STATE(7336), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6519), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6817), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [253687] = 11, + STATE(7666), 1, + sym_ms_based_modifier, + STATE(5865), 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, + [208014] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7369), 1, - anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6885), 1, - sym_requires_clause, - STATE(6968), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6716), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [253728] = 12, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(7480), 1, + anon_sym_STAR, + ACTIONS(8730), 1, + sym_identifier, + ACTIONS(8732), 1, + anon_sym_TILDE, + ACTIONS(8734), 1, + anon_sym_COLON_COLON, + ACTIONS(8736), 1, + anon_sym_template, + ACTIONS(8738), 1, + anon_sym_operator, + STATE(1861), 1, + sym_dependent_type_identifier, + STATE(1878), 1, + sym_template_type, + STATE(1983), 1, + sym_qualified_type_identifier, + STATE(3067), 1, + sym_pointer_type_declarator, + STATE(3070), 1, + sym_template_function, + STATE(3073), 1, + sym_destructor_name, + STATE(3075), 1, + sym_dependent_identifier, + STATE(3077), 1, + sym_qualified_identifier, + STATE(3081), 1, + sym_operator_name, + STATE(5177), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_ms_based_modifier, + STATE(7683), 1, + sym_decltype, + [208078] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, ACTIONS(47), 1, anon_sym___based, - ACTIONS(2012), 1, + ACTIONS(2000), 1, anon_sym_operator, - ACTIONS(7625), 1, + ACTIONS(7250), 1, anon_sym_LPAREN2, - ACTIONS(7801), 1, + ACTIONS(7338), 1, sym_identifier, - ACTIONS(7803), 1, + ACTIONS(7340), 1, anon_sym_STAR, - ACTIONS(7805), 1, + ACTIONS(7342), 1, anon_sym_AMP_AMP, - ACTIONS(7807), 1, + ACTIONS(7344), 1, anon_sym_AMP, - STATE(6867), 1, + ACTIONS(8740), 1, + anon_sym_SEMI, + STATE(4982), 1, sym__field_declarator, - STATE(7100), 1, + STATE(5844), 1, sym_operator_name, - STATE(9157), 1, + STATE(7665), 1, + sym_attribute_specifier, + STATE(7666), 1, sym_ms_based_modifier, - STATE(7189), 7, + STATE(5865), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -586934,1441 +463332,1538 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - [253771] = 13, + [208130] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, - anon_sym_DASH_GT, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6881), 1, - sym_requires_clause, - STATE(6975), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8865), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6718), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6858), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [253816] = 13, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4537), 1, + anon_sym_COLON_COLON, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(8742), 1, + sym_identifier, + ACTIONS(8744), 1, + anon_sym_template, + STATE(2549), 1, + sym_pointer_type_declarator, + STATE(2550), 1, + sym_template_type, + STATE(2552), 1, + sym_template_function, + STATE(2554), 1, + sym_destructor_name, + STATE(2555), 1, + sym_dependent_identifier, + STATE(2556), 1, + sym_dependent_type_identifier, + STATE(2559), 1, + sym_qualified_identifier, + STATE(2560), 1, + sym_qualified_type_identifier, + STATE(2566), 1, + sym_operator_name, + STATE(5179), 1, + sym__scope_resolution, + STATE(7570), 1, + sym_ms_based_modifier, + STATE(7683), 1, + sym_decltype, + [208194] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6643), 1, - sym_requires_clause, - STATE(7246), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8865), 2, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6648), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6816), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [253861] = 13, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8746), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5252), 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, + [208234] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, + ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6643), 1, - sym_requires_clause, - STATE(7246), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8865), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6816), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [253906] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9553), 1, - anon_sym_LBRACK, - ACTIONS(9551), 16, + ACTIONS(8405), 1, + anon_sym_try, + ACTIONS(8646), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8648), 1, anon_sym_LPAREN2, + ACTIONS(8650), 1, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(8656), 1, anon_sym_EQ, - anon_sym_COLON, + ACTIONS(8748), 1, + anon_sym_LBRACE, + STATE(2194), 1, + sym_compound_statement, + STATE(2195), 1, + sym_try_statement, + STATE(3511), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(6846), 1, + aux_sym__declaration_declarator_repeat1, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(8658), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [253931] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, - anon_sym_DASH_GT, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6881), 1, - sym_requires_clause, - STATE(6975), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8865), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6666), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6718), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6858), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [253976] = 13, + STATE(6853), 2, + sym_argument_list, + sym_initializer_list, + [208292] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6622), 1, - sym_requires_clause, - STATE(7248), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8857), 2, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6653), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6863), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [254021] = 13, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8750), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5332), 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, + [208332] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6622), 1, - sym_requires_clause, - STATE(7248), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8857), 2, + ACTIONS(8538), 1, + sym_identifier, + ACTIONS(8542), 1, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6863), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [254066] = 3, + ACTIONS(8544), 1, + anon_sym_defined, + ACTIONS(8752), 1, + sym_number_literal, + ACTIONS(8546), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8548), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8552), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5221), 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, + [208372] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9557), 1, - anon_sym_LBRACK, - ACTIONS(9555), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [254091] = 12, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8754), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5310), 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, + [208412] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(2012), 1, + ACTIONS(2000), 1, anon_sym_operator, - ACTIONS(7625), 1, - anon_sym_LPAREN2, - ACTIONS(7801), 1, - sym_identifier, - ACTIONS(7803), 1, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(4055), 1, + anon_sym_COLON_COLON, + ACTIONS(7504), 1, anon_sym_STAR, - ACTIONS(7805), 1, - anon_sym_AMP_AMP, - ACTIONS(7807), 1, - anon_sym_AMP, - STATE(6746), 1, - sym__field_declarator, - STATE(7100), 1, + ACTIONS(8756), 1, + sym_identifier, + ACTIONS(8758), 1, + anon_sym_template, + STATE(2549), 1, + sym_pointer_type_declarator, + STATE(2550), 1, + sym_template_type, + STATE(2552), 1, + sym_template_function, + STATE(2554), 1, + sym_destructor_name, + STATE(2555), 1, + sym_dependent_identifier, + STATE(2556), 1, + sym_dependent_type_identifier, + STATE(2559), 1, + sym_qualified_identifier, + STATE(2560), 1, + sym_qualified_type_identifier, + STATE(2566), 1, sym_operator_name, - STATE(9157), 1, + STATE(5185), 1, + sym__scope_resolution, + STATE(7570), 1, sym_ms_based_modifier, - STATE(7189), 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, - [254134] = 11, + STATE(7683), 1, + sym_decltype, + [208476] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7357), 1, - anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - STATE(6891), 1, - sym_requires_clause, - STATE(7045), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 5, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [254175] = 6, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8760), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5251), 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, + [208516] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(5673), 1, - anon_sym_COLON, - ACTIONS(8544), 1, - anon_sym_LT, - STATE(3214), 1, - sym_template_argument_list, - ACTIONS(4302), 13, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8646), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8648), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(8650), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [254206] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, - anon_sym_AMP_AMP, - ACTIONS(4914), 1, - anon_sym_AMP, - ACTIONS(8404), 1, + ACTIONS(8654), 1, anon_sym_LBRACK, - ACTIONS(9515), 1, - anon_sym_requires, - ACTIONS(9545), 1, + ACTIONS(8656), 1, + anon_sym_EQ, + ACTIONS(8762), 1, anon_sym_LBRACE, - STATE(4227), 1, + ACTIONS(8764), 1, + anon_sym_try, + STATE(812), 1, + sym_try_statement, + STATE(813), 1, sym_compound_statement, - STATE(4706), 1, + STATE(3511), 1, sym_parameter_list, - STATE(6747), 1, - sym_requires_clause, - STATE(6905), 1, + STATE(5760), 1, sym__function_declarator_seq, - STATE(7843), 1, - sym__abstract_declarator, - STATE(7871), 1, - sym_abstract_function_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [254255] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, - anon_sym_DASH_GT, - STATE(6894), 1, - sym_requires_clause, - STATE(6956), 1, - sym_trailing_return_type, - ACTIONS(7192), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6683), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6851), 2, + STATE(6846), 1, + aux_sym__declaration_declarator_repeat1, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(8658), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [254300] = 11, + STATE(6853), 2, + sym_argument_list, + sym_initializer_list, + [208574] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7357), 1, - anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6879), 1, - sym_requires_clause, - STATE(7047), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6717), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 5, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [254341] = 13, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8766), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5264), 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, + [208614] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6700), 1, - sym_requires_clause, - STATE(7251), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8744), 2, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6657), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6826), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [254386] = 13, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8768), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5294), 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, + [208654] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, - anon_sym_DASH_GT, - ACTIONS(8863), 1, - anon_sym_LBRACK, - STATE(6869), 1, - sym_requires_clause, - STATE(6977), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8861), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6710), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6859), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [254431] = 11, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(7480), 1, + anon_sym_STAR, + ACTIONS(8770), 1, + sym_identifier, + ACTIONS(8772), 1, + anon_sym_TILDE, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + ACTIONS(8776), 1, + anon_sym_template, + ACTIONS(8778), 1, + anon_sym_operator, + STATE(2550), 1, + sym_template_type, + STATE(2556), 1, + sym_dependent_type_identifier, + STATE(2560), 1, + sym_qualified_type_identifier, + STATE(3146), 1, + sym_operator_name, + STATE(3154), 1, + sym_qualified_identifier, + STATE(3177), 1, + sym_dependent_identifier, + STATE(3178), 1, + sym_destructor_name, + STATE(3181), 1, + sym_template_function, + STATE(3188), 1, + sym_pointer_type_declarator, + STATE(5190), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_ms_based_modifier, + STATE(7683), 1, + sym_decltype, + [208718] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7369), 1, - anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(8863), 1, + ACTIONS(8455), 1, anon_sym_LBRACK, - STATE(6869), 1, - sym_requires_clause, - STATE(6977), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, + STATE(4412), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5344), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6710), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8861), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [254472] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9561), 1, - anon_sym_LBRACK, - ACTIONS(9559), 16, + ACTIONS(8453), 13, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [254497] = 11, + [208754] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7357), 1, - anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(9193), 1, - anon_sym_LBRACK, - STATE(6878), 1, - sym_requires_clause, - STATE(7041), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6719), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9191), 5, + ACTIONS(8538), 1, + sym_identifier, + ACTIONS(8542), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [254538] = 11, + ACTIONS(8544), 1, + anon_sym_defined, + ACTIONS(8780), 1, + sym_number_literal, + ACTIONS(8546), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8548), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8552), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5142), 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, + [208794] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7369), 1, - anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - STATE(6894), 1, - sym_requires_clause, - STATE(6956), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6713), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 5, + ACTIONS(8538), 1, + sym_identifier, + ACTIONS(8542), 1, + anon_sym_LPAREN2, + ACTIONS(8544), 1, + anon_sym_defined, + ACTIONS(8782), 1, + sym_number_literal, + ACTIONS(8546), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8548), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8552), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5324), 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, + [208834] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8538), 1, + sym_identifier, + ACTIONS(8542), 1, + anon_sym_LPAREN2, + ACTIONS(8544), 1, + anon_sym_defined, + ACTIONS(8784), 1, + sym_number_literal, + ACTIONS(8546), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8548), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8552), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5145), 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, + [208874] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8538), 1, + sym_identifier, + ACTIONS(8542), 1, + anon_sym_LPAREN2, + ACTIONS(8544), 1, + anon_sym_defined, + ACTIONS(8786), 1, + sym_number_literal, + ACTIONS(8546), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8548), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8552), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5148), 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, + [208914] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(7480), 1, + anon_sym_STAR, + ACTIONS(8772), 1, + anon_sym_TILDE, + ACTIONS(8778), 1, + anon_sym_operator, + ACTIONS(8788), 1, + sym_identifier, + ACTIONS(8790), 1, + anon_sym_COLON_COLON, + ACTIONS(8792), 1, + anon_sym_template, + STATE(1861), 1, + sym_dependent_type_identifier, + STATE(1878), 1, + sym_template_type, + STATE(1983), 1, + sym_qualified_type_identifier, + STATE(3146), 1, + sym_operator_name, + STATE(3154), 1, + sym_qualified_identifier, + STATE(3177), 1, + sym_dependent_identifier, + STATE(3178), 1, + sym_destructor_name, + STATE(3181), 1, + sym_template_function, + STATE(3188), 1, + sym_pointer_type_declarator, + STATE(5196), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_ms_based_modifier, + STATE(7683), 1, + sym_decltype, + [208978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8796), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8794), 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, + [209006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8800), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8798), 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, + [209034] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8646), 1, + anon_sym_COMMA, + ACTIONS(8648), 1, anon_sym_LPAREN2, + ACTIONS(8650), 1, anon_sym_SEMI, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(8656), 1, + anon_sym_EQ, + ACTIONS(8802), 1, anon_sym_LBRACE, - [254579] = 15, + ACTIONS(8804), 1, + anon_sym_try, + STATE(536), 1, + sym_try_statement, + STATE(537), 1, + sym_compound_statement, + STATE(3511), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(6846), 1, + aux_sym__declaration_declarator_repeat1, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(8658), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6853), 2, + sym_argument_list, + sym_initializer_list, + [209092] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8538), 1, + sym_identifier, + ACTIONS(8542), 1, + anon_sym_LPAREN2, + ACTIONS(8544), 1, + anon_sym_defined, + ACTIONS(8806), 1, + sym_number_literal, + ACTIONS(8546), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8548), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8552), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5167), 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, + [209132] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(7480), 1, + anon_sym_STAR, + ACTIONS(8772), 1, + anon_sym_TILDE, + ACTIONS(8778), 1, + anon_sym_operator, + ACTIONS(8808), 1, + sym_identifier, + ACTIONS(8810), 1, + anon_sym_COLON_COLON, + ACTIONS(8812), 1, + anon_sym_template, + STATE(2550), 1, + sym_template_type, + STATE(2556), 1, + sym_dependent_type_identifier, + STATE(2560), 1, + sym_qualified_type_identifier, + STATE(3146), 1, + sym_operator_name, + STATE(3154), 1, + sym_qualified_identifier, + STATE(3177), 1, + sym_dependent_identifier, + STATE(3178), 1, + sym_destructor_name, + STATE(3181), 1, + sym_template_function, + STATE(3188), 1, + sym_pointer_type_declarator, + STATE(5201), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_ms_based_modifier, + STATE(7683), 1, + sym_decltype, + [209196] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(7572), 1, + anon_sym_STAR, + ACTIONS(8608), 1, + anon_sym_TILDE, + ACTIONS(8614), 1, + anon_sym_operator, + ACTIONS(8814), 1, + sym_identifier, + ACTIONS(8816), 1, + anon_sym_COLON_COLON, + ACTIONS(8818), 1, + anon_sym_template, + STATE(2550), 1, + sym_template_type, + STATE(2556), 1, + sym_dependent_type_identifier, + STATE(2560), 1, + sym_qualified_type_identifier, + STATE(2729), 1, + sym_pointer_type_declarator, + STATE(2733), 1, + sym_template_function, + STATE(2734), 1, + sym_destructor_name, + STATE(2737), 1, + sym_dependent_identifier, + STATE(2743), 1, + sym_qualified_identifier, + STATE(2745), 1, + sym_operator_name, + STATE(5202), 1, + sym__scope_resolution, + STATE(7189), 1, + sym_ms_based_modifier, + STATE(7683), 1, + sym_decltype, + [209260] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3770), 1, + ACTIONS(1968), 1, anon_sym_LBRACE, - ACTIONS(9167), 1, + ACTIONS(8646), 1, anon_sym_COMMA, - ACTIONS(9169), 1, + ACTIONS(8648), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(8650), 1, + anon_sym_SEMI, + ACTIONS(8654), 1, anon_sym_LBRACK, - ACTIONS(9177), 1, + ACTIONS(8656), 1, anon_sym_EQ, - ACTIONS(9375), 1, - anon_sym_SEMI, - STATE(4570), 1, + ACTIONS(8820), 1, + anon_sym_try, + STATE(956), 1, + sym_compound_statement, + STATE(958), 1, + sym_try_statement, + STATE(3511), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5760), 1, sym__function_declarator_seq, - STATE(8319), 1, + STATE(6846), 1, + aux_sym__declaration_declarator_repeat1, + STATE(6850), 1, sym_gnu_asm_expression, - STATE(8320), 1, - aux_sym_declaration_repeat1, - ACTIONS(9179), 2, + ACTIONS(8658), 2, anon_sym_asm, anon_sym___asm__, - STATE(6821), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, + STATE(6853), 2, sym_argument_list, sym_initializer_list, - [254628] = 3, + [209318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9565), 1, - anon_sym_LBRACK, - ACTIONS(9563), 16, + ACTIONS(8824), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8822), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [254653] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(7623), 1, - sym_identifier, - ACTIONS(7625), 1, - anon_sym_LPAREN2, - ACTIONS(7627), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(7629), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7631), 1, - anon_sym_AMP, - STATE(7306), 1, - sym__field_declarator, - STATE(7499), 1, - sym_operator_name, - STATE(9023), 1, - sym_ms_based_modifier, - STATE(7189), 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, - [254696] = 13, + 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, + [209346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6700), 1, - sym_requires_clause, - STATE(7251), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8744), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6826), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [254741] = 15, + ACTIONS(8828), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8826), 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, + [209374] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(9167), 1, + ACTIONS(8439), 1, + anon_sym_try, + ACTIONS(8646), 1, anon_sym_COMMA, - ACTIONS(9169), 1, + ACTIONS(8648), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(8650), 1, + anon_sym_SEMI, + ACTIONS(8654), 1, anon_sym_LBRACK, - ACTIONS(9177), 1, + ACTIONS(8656), 1, anon_sym_EQ, - ACTIONS(9225), 1, - anon_sym_SEMI, - STATE(4570), 1, + ACTIONS(8830), 1, + anon_sym_LBRACE, + STATE(2241), 1, + sym_try_statement, + STATE(2244), 1, + sym_compound_statement, + STATE(3511), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5760), 1, sym__function_declarator_seq, - STATE(8317), 1, + STATE(6846), 1, + aux_sym__declaration_declarator_repeat1, + STATE(6850), 1, sym_gnu_asm_expression, - STATE(8321), 1, - aux_sym_declaration_repeat1, - ACTIONS(9179), 2, + ACTIONS(8658), 2, anon_sym_asm, anon_sym___asm__, - STATE(6821), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, + STATE(6853), 2, sym_argument_list, sym_initializer_list, - [254790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9191), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [254815] = 11, + [209432] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7369), 1, - anon_sym_DASH_GT, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6881), 1, - sym_requires_clause, - STATE(6975), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6718), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8538), 1, + sym_identifier, + ACTIONS(8542), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [254856] = 3, + ACTIONS(8544), 1, + anon_sym_defined, + ACTIONS(8832), 1, + sym_number_literal, + ACTIONS(8546), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8548), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8552), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5154), 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, + [209472] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8746), 1, - anon_sym_LBRACK, - ACTIONS(8744), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8538), 1, + sym_identifier, + ACTIONS(8542), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [254881] = 13, + ACTIONS(8544), 1, + anon_sym_defined, + ACTIONS(8834), 1, + sym_number_literal, + ACTIONS(8546), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8548), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8552), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5165), 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, + [209512] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(39), 1, anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - STATE(6701), 1, - sym_requires_clause, - STATE(7256), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7192), 2, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7250), 1, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6688), 2, + ACTIONS(7338), 1, + sym_identifier, + ACTIONS(7340), 1, + anon_sym_STAR, + ACTIONS(7342), 1, + anon_sym_AMP_AMP, + ACTIONS(7344), 1, + anon_sym_AMP, + ACTIONS(8836), 1, + anon_sym_SEMI, + STATE(4981), 1, + sym__field_declarator, + STATE(5844), 1, + sym_operator_name, + STATE(7244), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6833), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [254926] = 15, + STATE(7666), 1, + sym_ms_based_modifier, + STATE(5865), 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, + [209564] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, - anon_sym_AMP_AMP, - ACTIONS(4914), 1, - anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9525), 1, - anon_sym_LT, - ACTIONS(9567), 1, - anon_sym_LBRACE, - STATE(4706), 1, - sym_parameter_list, - STATE(6687), 1, - sym_template_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7016), 1, - sym_compound_statement, - STATE(7816), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [254975] = 13, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8838), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5328), 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, + [209604] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, - anon_sym_DASH_GT, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6885), 1, - sym_requires_clause, - STATE(6968), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8744), 2, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6638), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6716), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6855), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [255020] = 11, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8840), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5299), 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, + [209644] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7365), 1, - anon_sym_DASH_GT, - ACTIONS(7367), 1, - anon_sym_requires, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6643), 1, - sym_requires_clause, - STATE(6943), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 5, - anon_sym_RPAREN, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [255061] = 13, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8842), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5301), 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, + [209684] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, - anon_sym_DASH_GT, - STATE(6891), 1, - sym_requires_clause, - STATE(6965), 1, - sym_trailing_return_type, - ACTIONS(7237), 2, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6852), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [255106] = 15, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8844), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5302), 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, + [209724] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(8538), 1, + sym_identifier, + ACTIONS(8542), 1, anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, - anon_sym_AMP_AMP, - ACTIONS(4914), 1, - anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9513), 1, - anon_sym_LBRACE, - ACTIONS(9525), 1, - anon_sym_LT, - STATE(4706), 1, - sym_parameter_list, - STATE(6521), 1, - sym_compound_statement, - STATE(6612), 1, - sym_template_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7654), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [255155] = 15, + ACTIONS(8544), 1, + anon_sym_defined, + ACTIONS(8846), 1, + sym_number_literal, + ACTIONS(8546), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8548), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8552), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5155), 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, + [209764] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, - anon_sym_AMP_AMP, - ACTIONS(4914), 1, - anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9515), 1, - anon_sym_requires, - ACTIONS(9533), 1, - anon_sym_LBRACE, - STATE(4536), 1, - sym_compound_statement, - STATE(4706), 1, - sym_parameter_list, - STATE(6769), 1, - sym_requires_clause, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7665), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [255204] = 13, + ACTIONS(8624), 1, + anon_sym_defined, + ACTIONS(8848), 1, + sym_number_literal, + ACTIONS(8626), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8632), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5242), 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, + [209804] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - STATE(6678), 1, - sym_requires_clause, - STATE(7255), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7237), 2, + ACTIONS(8538), 1, + sym_identifier, + ACTIONS(8542), 1, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6674), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6832), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [255249] = 15, + ACTIONS(8544), 1, + anon_sym_defined, + ACTIONS(8850), 1, + sym_number_literal, + ACTIONS(8546), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8548), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8552), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5158), 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, + [209844] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(4910), 1, + ACTIONS(7658), 1, anon_sym_STAR, - ACTIONS(4912), 1, + ACTIONS(7660), 1, anon_sym_AMP_AMP, - ACTIONS(4914), 1, + ACTIONS(7662), 1, anon_sym_AMP, - ACTIONS(8404), 1, + ACTIONS(7666), 1, anon_sym_LBRACK, - ACTIONS(9515), 1, - anon_sym_requires, - ACTIONS(9567), 1, - anon_sym_LBRACE, - STATE(4706), 1, + STATE(3542), 1, sym_parameter_list, - STATE(6786), 1, - sym_requires_clause, - STATE(6905), 1, + STATE(5604), 1, sym__function_declarator_seq, - STATE(7006), 1, - sym_compound_statement, - STATE(7829), 1, - sym_abstract_function_declarator, - STATE(7843), 1, + STATE(5863), 1, sym__abstract_declarator, - STATE(6825), 4, + STATE(5647), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, + sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [255298] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - STATE(6678), 1, - sym_requires_clause, - STATE(7255), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7237), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5488), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6832), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [255343] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9457), 1, - anon_sym_LBRACK, - ACTIONS(9455), 16, + ACTIONS(7127), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [255368] = 11, + [209888] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7365), 1, - anon_sym_DASH_GT, - ACTIONS(7367), 1, - anon_sym_requires, - ACTIONS(9193), 1, - anon_sym_LBRACK, - STATE(6707), 1, - sym_requires_clause, - STATE(6948), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6571), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9191), 5, - anon_sym_RPAREN, + ACTIONS(8646), 1, + anon_sym_COMMA, + ACTIONS(8648), 1, anon_sym_LPAREN2, + ACTIONS(8650), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [255409] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, - anon_sym_AMP_AMP, - ACTIONS(4914), 1, - anon_sym_AMP, - ACTIONS(8404), 1, + ACTIONS(8654), 1, anon_sym_LBRACK, - ACTIONS(9515), 1, - anon_sym_requires, - ACTIONS(9527), 1, + ACTIONS(8656), 1, + anon_sym_EQ, + ACTIONS(8852), 1, anon_sym_LBRACE, - STATE(4139), 1, + ACTIONS(8854), 1, + anon_sym_try, + STATE(357), 1, sym_compound_statement, - STATE(4706), 1, + STATE(358), 1, + sym_try_statement, + STATE(3511), 1, sym_parameter_list, - STATE(6787), 1, - sym_requires_clause, - STATE(6905), 1, + STATE(5760), 1, sym__function_declarator_seq, - STATE(7843), 1, - sym__abstract_declarator, - STATE(7894), 1, - sym_abstract_function_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [255458] = 11, + STATE(6846), 1, + aux_sym__declaration_declarator_repeat1, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(8658), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6853), 2, + sym_argument_list, + sym_initializer_list, + [209946] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(8538), 1, + sym_identifier, + ACTIONS(8542), 1, anon_sym_LPAREN2, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(8565), 1, - anon_sym_STAR, - ACTIONS(8567), 1, - anon_sym_AMP_AMP, - ACTIONS(8569), 1, - anon_sym_AMP, - STATE(4794), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7342), 1, - sym__abstract_declarator, - ACTIONS(7491), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [255499] = 16, + ACTIONS(8544), 1, + anon_sym_defined, + ACTIONS(8856), 1, + sym_number_literal, + ACTIONS(8546), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8548), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8552), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5151), 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, + [209986] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(9169), 1, + ACTIONS(8538), 1, + sym_identifier, + ACTIONS(8542), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(9494), 1, - anon_sym_SEMI, - ACTIONS(9569), 1, - anon_sym_EQ, - STATE(4570), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8009), 1, - sym_gnu_asm_expression, - STATE(8050), 1, - aux_sym_declaration_repeat1, - STATE(8061), 1, - sym_initializer_list, - STATE(8608), 1, - sym_argument_list, - ACTIONS(9179), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [255550] = 15, + ACTIONS(8544), 1, + anon_sym_defined, + ACTIONS(8858), 1, + sym_number_literal, + ACTIONS(8546), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(8548), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8552), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5161), 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, + [210026] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(9167), 1, + ACTIONS(8562), 1, + anon_sym_SLASH, + ACTIONS(8558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8560), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8644), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8642), 11, anon_sym_COMMA, - ACTIONS(9169), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym_EQ, - ACTIONS(9307), 1, - anon_sym_SEMI, - STATE(4570), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8275), 1, - sym_gnu_asm_expression, - STATE(8284), 1, - aux_sym_declaration_repeat1, - ACTIONS(9179), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, - sym_argument_list, - sym_initializer_list, - [255599] = 12, + 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, + [210060] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(2012), 1, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(7480), 1, + anon_sym_STAR, + ACTIONS(8732), 1, + anon_sym_TILDE, + ACTIONS(8738), 1, anon_sym_operator, - ACTIONS(7623), 1, + ACTIONS(8860), 1, sym_identifier, - ACTIONS(7625), 1, - anon_sym_LPAREN2, - ACTIONS(7627), 1, - anon_sym_STAR, - ACTIONS(7629), 1, - anon_sym_AMP_AMP, - ACTIONS(7631), 1, - anon_sym_AMP, - STATE(7319), 1, - sym__field_declarator, - STATE(7499), 1, + ACTIONS(8862), 1, + anon_sym_COLON_COLON, + ACTIONS(8864), 1, + anon_sym_template, + STATE(2550), 1, + sym_template_type, + STATE(2556), 1, + sym_dependent_type_identifier, + STATE(2560), 1, + sym_qualified_type_identifier, + STATE(3067), 1, + sym_pointer_type_declarator, + STATE(3070), 1, + sym_template_function, + STATE(3073), 1, + sym_destructor_name, + STATE(3075), 1, + sym_dependent_identifier, + STATE(3077), 1, + sym_qualified_identifier, + STATE(3081), 1, sym_operator_name, - STATE(9023), 1, + STATE(5222), 1, + sym__scope_resolution, + STATE(7424), 1, sym_ms_based_modifier, - STATE(7189), 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, - [255642] = 15, - ACTIONS(3), 1, + STATE(7683), 1, + sym_decltype, + [210124] = 12, + ACTIONS(8584), 1, sym_comment, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, + ACTIONS(8866), 1, + anon_sym_LF, + ACTIONS(8872), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8874), 1, anon_sym_AMP_AMP, - ACTIONS(4914), 1, + ACTIONS(8876), 1, + anon_sym_PIPE, + ACTIONS(8878), 1, + anon_sym_CARET, + ACTIONS(8880), 1, anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9515), 1, - anon_sym_requires, - ACTIONS(9543), 1, - anon_sym_LBRACE, - STATE(4706), 1, - sym_parameter_list, - STATE(4925), 1, - sym_compound_statement, - STATE(6752), 1, - sym_requires_clause, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7748), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [255691] = 11, + ACTIONS(8868), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8882), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8886), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8870), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8884), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [210169] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7357), 1, - anon_sym_DASH_GT, - ACTIONS(7361), 1, + ACTIONS(6747), 1, anon_sym_requires, - ACTIONS(8863), 1, + ACTIONS(8890), 1, anon_sym_LBRACK, - STATE(6869), 1, - sym_requires_clause, - STATE(7042), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6710), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8861), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [255732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9573), 1, - anon_sym_LBRACK, - ACTIONS(9571), 16, + aux_sym__function_postfix_repeat1, + STATE(5433), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8888), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -588378,75 +464873,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [255757] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, - anon_sym_AMP_AMP, - ACTIONS(4914), 1, - anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9525), 1, - anon_sym_LT, - ACTIONS(9575), 1, - anon_sym_LBRACE, - STATE(2349), 1, - sym_compound_statement, - STATE(4706), 1, - sym_parameter_list, - STATE(6708), 1, - sym_template_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7843), 1, - sym__abstract_declarator, - STATE(7907), 1, - sym_abstract_function_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [255806] = 3, + [210204] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8859), 1, + ACTIONS(6685), 1, + anon_sym_DASH_GT, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(8894), 1, anon_sym_LBRACK, - ACTIONS(8857), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + STATE(5224), 1, + sym_trailing_return_type, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [255831] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7237), 16, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -588454,21 +464903,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [255856] = 3, + [210243] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9579), 1, + ACTIONS(8894), 1, anon_sym_LBRACK, - ACTIONS(9577), 16, + ACTIONS(8899), 1, + anon_sym_requires, + ACTIONS(8896), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -588478,581 +464931,635 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [255881] = 11, + [210278] = 3, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8616), 1, + anon_sym_LF, + ACTIONS(8618), 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, + [210305] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7365), 1, - anon_sym_DASH_GT, - ACTIONS(7367), 1, + ACTIONS(6806), 1, anon_sym_requires, - ACTIONS(8746), 1, + ACTIONS(8894), 1, anon_sym_LBRACK, - STATE(6700), 1, - sym_requires_clause, - STATE(6939), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6556), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 5, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 11, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [255922] = 3, + [210340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9583), 1, + ACTIONS(4719), 1, anon_sym_LBRACK, - ACTIONS(9581), 16, + ACTIONS(4721), 18, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [255947] = 3, + [210367] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9587), 1, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(8250), 1, anon_sym_LBRACK, - ACTIONS(9585), 16, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [255972] = 13, + [210402] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym___attribute__, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7371), 1, + ACTIONS(6747), 1, anon_sym_requires, - ACTIONS(7435), 1, + ACTIONS(6790), 1, anon_sym_DASH_GT, - STATE(6891), 1, - sym_requires_clause, - STATE(6965), 1, + ACTIONS(8250), 1, + anon_sym_LBRACK, + STATE(5298), 1, sym_trailing_return_type, - ACTIONS(7237), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7359), 2, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(6628), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - STATE(6715), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6852), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [256017] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9492), 1, - anon_sym_LBRACK, - ACTIONS(9490), 16, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [256042] = 15, + [210441] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, - anon_sym_AMP_AMP, - ACTIONS(4914), 1, - anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9515), 1, - anon_sym_requires, - ACTIONS(9575), 1, - anon_sym_LBRACE, - STATE(2351), 1, - sym_compound_statement, - STATE(4706), 1, - sym_parameter_list, - STATE(6751), 1, - sym_requires_clause, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7838), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [256091] = 3, + ACTIONS(121), 1, + anon_sym_virtual, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(3673), 1, + anon_sym_COLON_COLON, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8190), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(5841), 1, + sym_access_specifier, + STATE(5983), 1, + sym__scope_resolution, + STATE(6214), 1, + sym_virtual, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6476), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(8902), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [210492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9591), 1, + ACTIONS(4719), 1, anon_sym_LBRACK, - ACTIONS(9589), 16, + ACTIONS(4721), 18, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [256116] = 4, + [210519] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7359), 2, + ACTIONS(6685), 1, + anon_sym_DASH_GT, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(8250), 1, + anon_sym_LBRACK, + STATE(5298), 1, + sym_trailing_return_type, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(6714), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9191), 12, - anon_sym_DOT_DOT_DOT, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [256142] = 11, + [210558] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7377), 1, + ACTIONS(6685), 1, anon_sym_DASH_GT, - ACTIONS(7379), 1, - anon_sym_requires, - ACTIONS(8867), 1, + ACTIONS(8250), 1, anon_sym_LBRACK, - STATE(6881), 1, - sym_requires_clause, - STATE(7192), 1, + ACTIONS(8255), 1, + anon_sym_requires, + STATE(5226), 1, sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6718), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [256182] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7359), 2, + ACTIONS(8252), 2, anon_sym_final, anon_sym_override, - STATE(6714), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 12, - anon_sym_DOT_DOT_DOT, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [256208] = 4, + [210597] = 12, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8872), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8874), 1, + anon_sym_AMP_AMP, + ACTIONS(8876), 1, + anon_sym_PIPE, + ACTIONS(8878), 1, + anon_sym_CARET, + ACTIONS(8880), 1, + anon_sym_AMP, + ACTIONS(8904), 1, + anon_sym_LF, + ACTIONS(8868), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8882), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8886), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8870), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8884), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [210642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6714), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 12, - anon_sym_DOT_DOT_DOT, + ACTIONS(4719), 1, + anon_sym_LBRACK, + ACTIONS(4721), 18, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [256234] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9593), 2, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - STATE(6714), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9475), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [256260] = 4, + [210669] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6714), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(6685), 1, + anon_sym_DASH_GT, + ACTIONS(8080), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, + ACTIONS(8085), 1, anon_sym_requires, - [256286] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7359), 2, + STATE(5313), 1, + sym_trailing_return_type, + ACTIONS(8082), 2, anon_sym_final, anon_sym_override, - STATE(6714), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 12, - anon_sym_DOT_DOT_DOT, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [256312] = 4, + [210708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6714), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8908), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8910), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [256338] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6714), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8861), 12, + ACTIONS(8906), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [256364] = 4, + [210737] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7359), 2, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(6714), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9490), 12, - anon_sym_DOT_DOT_DOT, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [256390] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, - anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7378), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [256430] = 4, + [210772] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7359), 2, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(6790), 1, + anon_sym_DASH_GT, + ACTIONS(8080), 1, + anon_sym_LBRACK, + STATE(5286), 1, + sym_trailing_return_type, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(6714), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9455), 12, - anon_sym_DOT_DOT_DOT, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [256456] = 3, + anon_sym_asm, + anon_sym___asm__, + [210811] = 9, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8642), 1, + anon_sym_LF, + ACTIONS(8880), 1, + anon_sym_AMP, + ACTIONS(8868), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8882), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8886), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8870), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8644), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(8884), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [210850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3984), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(3986), 15, + ACTIONS(2136), 18, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [256480] = 6, - ACTIONS(3), 1, + [210877] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(9596), 1, - sym_identifier, - ACTIONS(5132), 2, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(6724), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(9598), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9600), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [256510] = 6, + ACTIONS(8642), 1, + anon_sym_LF, + ACTIONS(8868), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8870), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8644), 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, + [210908] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9602), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, + ACTIONS(7548), 1, + anon_sym_STAR, + ACTIONS(8912), 1, sym_identifier, - ACTIONS(5145), 2, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(6725), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(9598), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9600), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [256540] = 6, + ACTIONS(8914), 1, + anon_sym_template, + STATE(5245), 1, + sym__scope_resolution, + STATE(5715), 1, + sym_pointer_type_declarator, + STATE(5739), 1, + sym_template_function, + STATE(5765), 1, + sym_operator_name, + STATE(5766), 1, + sym_qualified_identifier, + STATE(5768), 1, + sym_dependent_identifier, + STATE(5776), 1, + sym_destructor_name, + STATE(7194), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [210965] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(9604), 1, + ACTIONS(121), 1, + anon_sym_virtual, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(3673), 1, + anon_sym_COLON_COLON, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8190), 1, sym_identifier, - ACTIONS(5118), 2, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(6725), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(9607), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9610), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [256570] = 6, - ACTIONS(3), 1, + STATE(2542), 1, + sym_template_type, + STATE(5793), 1, + sym_access_specifier, + STATE(5983), 1, + sym__scope_resolution, + STATE(6414), 1, + sym_virtual, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6415), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(8902), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [211016] = 6, + ACTIONS(8584), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(7070), 1, + ACTIONS(8642), 1, + anon_sym_LF, + ACTIONS(8868), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8886), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8870), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8644), 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, - STATE(6837), 1, - sym_template_argument_list, - ACTIONS(4867), 2, + [211049] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6804), 1, + anon_sym_DASH_GT, + ACTIONS(8894), 1, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(4872), 11, + ACTIONS(8916), 1, + anon_sym_requires, + STATE(5290), 1, + sym_trailing_return_type, + ACTIONS(8896), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -589060,912 +465567,828 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [256600] = 4, + [211088] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6208), 1, + ACTIONS(6804), 1, + anon_sym_DASH_GT, + ACTIONS(8250), 1, anon_sym_LBRACK, - ACTIONS(9613), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6206), 14, + ACTIONS(8267), 1, + anon_sym_requires, + STATE(5337), 1, + sym_trailing_return_type, + ACTIONS(8252), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LT, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [256626] = 3, + [211127] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 1, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8459), 1, anon_sym_LBRACK, - ACTIONS(3990), 15, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8457), 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, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [256650] = 13, + [211158] = 7, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8642), 1, + anon_sym_LF, + ACTIONS(8868), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8886), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8870), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8884), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(8644), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [211193] = 4, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8642), 1, + anon_sym_LF, + ACTIONS(8870), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8644), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [211222] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6804), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7940), 1, + anon_sym_requires, + STATE(5333), 1, + sym_trailing_return_type, + ACTIONS(7905), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3770), 1, anon_sym_LBRACE, - ACTIONS(9169), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, anon_sym_EQ, - STATE(4570), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8434), 1, - sym_gnu_asm_expression, - ACTIONS(9179), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9615), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8608), 2, - sym_argument_list, - sym_initializer_list, - [256694] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, - anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7408), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [256734] = 6, + anon_sym_try, + [211261] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(7070), 1, - anon_sym_LT, - STATE(6837), 1, - sym_template_argument_list, - ACTIONS(7597), 2, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(7901), 1, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(4920), 11, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [256764] = 11, - ACTIONS(3), 1, + [211296] = 12, + ACTIONS(8584), 1, sym_comment, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(8575), 1, - anon_sym_STAR, - ACTIONS(8577), 1, + ACTIONS(8872), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8874), 1, anon_sym_AMP_AMP, - ACTIONS(8579), 1, + ACTIONS(8876), 1, + anon_sym_PIPE, + ACTIONS(8878), 1, + anon_sym_CARET, + ACTIONS(8880), 1, anon_sym_AMP, - STATE(4739), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7372), 1, - sym__abstract_declarator, - ACTIONS(7491), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [256804] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(8919), 1, + anon_sym_LF, + ACTIONS(8868), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8882), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8886), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8870), 3, anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7398), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [256844] = 11, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8884), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [211341] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(4910), 1, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(7864), 1, anon_sym_STAR, - ACTIONS(4912), 1, + ACTIONS(7866), 1, anon_sym_AMP_AMP, - ACTIONS(4914), 1, + ACTIONS(7868), 1, anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - STATE(4706), 1, + STATE(3611), 1, sym_parameter_list, - STATE(6905), 1, + STATE(5604), 1, sym__function_declarator_seq, - STATE(7404), 1, + STATE(5918), 1, sym__abstract_declarator, - ACTIONS(7491), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(6825), 5, + STATE(5647), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [256884] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, - anon_sym_STAR, - STATE(3195), 1, - sym_pointer_type_declarator, - STATE(7391), 1, - sym__type_declarator, - STATE(8943), 1, - sym_ms_based_modifier, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [256924] = 11, + ACTIONS(7127), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [211384] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7377), 1, + ACTIONS(6685), 1, anon_sym_DASH_GT, - ACTIONS(7379), 1, - anon_sym_requires, - ACTIONS(8746), 1, + ACTIONS(7901), 1, anon_sym_LBRACK, - STATE(6885), 1, - sym_requires_clause, - STATE(7188), 1, + ACTIONS(7908), 1, + anon_sym_requires, + STATE(5335), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(7905), 2, anon_sym_final, anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6716), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 4, - anon_sym_DOT_DOT_DOT, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 9, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_GT2, - [256964] = 11, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [211423] = 12, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8872), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8874), 1, + anon_sym_AMP_AMP, + ACTIONS(8876), 1, + anon_sym_PIPE, + ACTIONS(8878), 1, + anon_sym_CARET, + ACTIONS(8880), 1, + anon_sym_AMP, + ACTIONS(8921), 1, + anon_sym_LF, + ACTIONS(8868), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8882), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8886), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8870), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8884), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [211468] = 3, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8722), 1, + anon_sym_LF, + ACTIONS(8724), 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, + [211495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(4761), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, anon_sym_requires, - ACTIONS(9193), 1, + [211522] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8925), 1, anon_sym_LBRACK, - STATE(6878), 1, - sym_requires_clause, - STATE(7194), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6719), 2, + STATE(5329), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9191), 4, - anon_sym_DOT_DOT_DOT, + aux_sym__function_postfix_repeat1, + ACTIONS(8923), 14, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, - [257004] = 11, + anon_sym_try, + anon_sym_requires, + [211553] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7377), 1, + ACTIONS(6685), 1, anon_sym_DASH_GT, - ACTIONS(7379), 1, + ACTIONS(6747), 1, anon_sym_requires, - STATE(6891), 1, - sym_requires_clause, - STATE(7187), 1, + ACTIONS(8080), 1, + anon_sym_LBRACK, + STATE(5286), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6715), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 4, - anon_sym_DOT_DOT_DOT, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 9, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_GT2, - [257044] = 11, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [211592] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7377), 1, + ACTIONS(6685), 1, anon_sym_DASH_GT, - ACTIONS(7379), 1, + ACTIONS(8894), 1, + anon_sym_LBRACK, + ACTIONS(8899), 1, anon_sym_requires, - STATE(6894), 1, - sym_requires_clause, - STATE(7184), 1, + STATE(5309), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(8896), 2, anon_sym_final, anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6713), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 4, - anon_sym_DOT_DOT_DOT, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 9, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_GT2, - [257084] = 11, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [211631] = 8, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8642), 1, + anon_sym_LF, + ACTIONS(8868), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8882), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8886), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8870), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8884), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(8644), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + [211668] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, + ACTIONS(6747), 1, anon_sym_requires, - ACTIONS(8863), 1, + ACTIONS(6790), 1, + anon_sym_DASH_GT, + ACTIONS(8894), 1, anon_sym_LBRACK, - STATE(6869), 1, - sym_requires_clause, - STATE(7193), 1, + STATE(5224), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6710), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8861), 4, - anon_sym_DOT_DOT_DOT, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 9, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_GT2, - [257124] = 11, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [211707] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym_primitive_type, - ACTIONS(8010), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(6591), 1, + anon_sym_COLON_COLON, + ACTIONS(7494), 1, anon_sym_STAR, - STATE(3195), 1, + ACTIONS(8912), 1, + sym_identifier, + ACTIONS(8914), 1, + anon_sym_template, + STATE(5266), 1, + sym__scope_resolution, + STATE(5715), 1, sym_pointer_type_declarator, - STATE(7258), 1, - sym__type_declarator, - STATE(8943), 1, + STATE(5739), 1, + sym_template_function, + STATE(5765), 1, + sym_operator_name, + STATE(5766), 1, + sym_qualified_identifier, + STATE(5768), 1, + sym_dependent_identifier, + STATE(5776), 1, + sym_destructor_name, + STATE(7274), 1, sym_ms_based_modifier, - ACTIONS(7908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3206), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [257164] = 11, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [211764] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7377), 1, - anon_sym_DASH_GT, - ACTIONS(7379), 1, + ACTIONS(6806), 1, anon_sym_requires, - ACTIONS(8859), 1, + ACTIONS(8890), 1, anon_sym_LBRACK, - STATE(6879), 1, - sym_requires_clause, - STATE(7191), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(5945), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6717), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [257204] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9617), 1, - anon_sym_LBRACK, - STATE(6996), 1, - sym_parameter_list, - STATE(6861), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5976), 9, + aux_sym__function_postfix_repeat1, + STATE(5433), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8888), 11, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [257235] = 6, + [211799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(2134), 1, anon_sym_LBRACK, - STATE(4551), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9619), 11, + ACTIONS(2132), 18, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [257264] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9623), 1, - anon_sym_RPAREN, - ACTIONS(9625), 1, - anon_sym_COLON, - STATE(8370), 1, - sym_gnu_asm_output_operand_list, - STATE(6723), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(9598), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9600), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [257295] = 13, + [211826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(8881), 1, + ACTIONS(4739), 1, anon_sym_LBRACK, - ACTIONS(8885), 1, - anon_sym_COLON, - ACTIONS(9629), 1, - anon_sym_EQ, - STATE(4523), 1, - sym_parameter_list, - STATE(7190), 1, - sym__function_declarator_seq, - STATE(8208), 1, - sym_bitfield_clause, - STATE(8211), 1, - sym_initializer_list, - STATE(7078), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9627), 3, + ACTIONS(4741), 18, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [257338] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4908), 1, anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4914), 1, - anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9545), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(4293), 1, - sym_compound_statement, - STATE(4706), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7582), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [257381] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(9631), 1, - sym_identifier, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7300), 1, - sym__scope_resolution, - STATE(2593), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [257418] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9625), 1, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(9633), 1, - anon_sym_RPAREN, - STATE(8364), 1, - sym_gnu_asm_output_operand_list, - STATE(6723), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(9598), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9600), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [257449] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7300), 1, - anon_sym_COLON_COLON, - ACTIONS(9635), 1, - sym_identifier, - STATE(3929), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7288), 1, - sym__scope_resolution, - STATE(3963), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [257486] = 13, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [211853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, - anon_sym_AMP_AMP, - ACTIONS(4914), 1, - anon_sym_AMP, - ACTIONS(8404), 1, + ACTIONS(8929), 1, anon_sym_LBRACK, - ACTIONS(9575), 1, - anon_sym_LBRACE, - STATE(2358), 1, - sym_compound_statement, - STATE(4706), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7794), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [257529] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4908), 1, + ACTIONS(8927), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, - anon_sym_AMP_AMP, - ACTIONS(4914), 1, - anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9543), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(4706), 1, - sym_parameter_list, - STATE(4960), 1, - sym_compound_statement, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7843), 1, - sym__abstract_declarator, - STATE(7850), 1, - sym_abstract_function_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [257572] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7318), 1, - anon_sym_COLON_COLON, - ACTIONS(9631), 1, - sym_identifier, - STATE(5494), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7289), 1, - sym__scope_resolution, - STATE(5981), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(7320), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [257609] = 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [211880] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9625), 1, - anon_sym_COLON, - ACTIONS(9637), 1, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 11, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(8188), 1, - sym_gnu_asm_output_operand_list, - STATE(6723), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(9598), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9600), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [257640] = 10, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [211915] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(6790), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, + anon_sym_LBRACK, + STATE(5285), 1, + sym_trailing_return_type, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [211954] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(121), 1, + anon_sym_virtual, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(4940), 1, + ACTIONS(3673), 1, anon_sym_COLON_COLON, - ACTIONS(9635), 1, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8190), 1, sym_identifier, - STATE(3932), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7286), 1, + STATE(2542), 1, + sym_template_type, + STATE(5824), 1, + sym_access_specifier, + STATE(5983), 1, sym__scope_resolution, - STATE(3963), 2, - sym_sized_type_specifier, + STATE(6384), 1, + sym_virtual, + STATE(5232), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6666), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(9648), 3, + STATE(7683), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - ACTIONS(53), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [257677] = 7, + ACTIONS(8902), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [212005] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9625), 1, + ACTIONS(6790), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7908), 1, + anon_sym_requires, + STATE(5335), 1, + sym_trailing_return_type, + ACTIONS(7905), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(9639), 1, - anon_sym_RPAREN, - STATE(8344), 1, - sym_gnu_asm_output_operand_list, - STATE(6723), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(9598), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9600), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [257708] = 6, + anon_sym_asm, + anon_sym___asm__, + [212044] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9643), 1, + ACTIONS(6685), 1, + anon_sym_DASH_GT, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(7901), 1, + anon_sym_LBRACK, + STATE(5285), 1, + sym_trailing_return_type, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - ACTIONS(9648), 1, - anon_sym_alignas, - ACTIONS(9646), 3, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(6757), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - ACTIONS(9641), 7, - anon_sym___declspec, - anon_sym_COLON, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - [257737] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9625), 1, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(9651), 1, - anon_sym_RPAREN, - STATE(8140), 1, - sym_gnu_asm_output_operand_list, - STATE(6723), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(9598), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9600), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [257768] = 13, + anon_sym_try, + [212083] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, - anon_sym_AMP_AMP, - ACTIONS(4914), 1, - anon_sym_AMP, - ACTIONS(8404), 1, + ACTIONS(6790), 1, + anon_sym_DASH_GT, + ACTIONS(8080), 1, anon_sym_LBRACK, - ACTIONS(9541), 1, + ACTIONS(8085), 1, + anon_sym_requires, + STATE(5313), 1, + sym_trailing_return_type, + ACTIONS(8082), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(3579), 1, - sym_compound_statement, - STATE(4706), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7843), 1, - sym__abstract_declarator, - STATE(7986), 1, - sym_abstract_function_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [257811] = 3, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [212122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6346), 1, + ACTIONS(8933), 1, anon_sym_LBRACK, - ACTIONS(6344), 14, + ACTIONS(8931), 18, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, @@ -589974,4425 +466397,5595 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [257834] = 7, + anon_sym_requires, + [212149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9625), 1, + ACTIONS(4743), 1, + anon_sym_LBRACK, + ACTIONS(4745), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(9653), 1, - anon_sym_RPAREN, - STATE(8408), 1, - sym_gnu_asm_output_operand_list, - STATE(6723), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(9598), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9600), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [257865] = 10, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [212176] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(3906), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(6505), 1, anon_sym_COLON_COLON, - ACTIONS(9635), 1, + ACTIONS(7536), 1, + anon_sym_STAR, + ACTIONS(8602), 1, sym_identifier, - STATE(3929), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7295), 1, + ACTIONS(8604), 1, + anon_sym_template, + STATE(2549), 1, + sym_pointer_type_declarator, + STATE(2552), 1, + sym_template_function, + STATE(2554), 1, + sym_destructor_name, + STATE(2555), 1, + sym_dependent_identifier, + STATE(2559), 1, + sym_qualified_identifier, + STATE(2566), 1, + sym_operator_name, + STATE(5279), 1, sym__scope_resolution, - STATE(3963), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9648), 3, + STATE(7720), 1, + sym_ms_based_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(3908), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [257902] = 7, + [212233] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9625), 1, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7908), 1, + anon_sym_requires, + ACTIONS(7905), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(9655), 1, - anon_sym_RPAREN, - STATE(8217), 1, - sym_gnu_asm_output_operand_list, - STATE(6723), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(9598), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9600), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [257933] = 13, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [212268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(4735), 1, + anon_sym_LBRACK, + ACTIONS(4737), 18, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [212295] = 3, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8798), 1, + anon_sym_LF, + ACTIONS(8800), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(4912), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4914), 1, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9513), 1, - anon_sym_LBRACE, - STATE(4706), 1, - sym_parameter_list, - STATE(6497), 1, - sym_compound_statement, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7613), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [257976] = 10, + 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, + [212322] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8625), 1, - anon_sym_COLON_COLON, - ACTIONS(9657), 1, - sym_identifier, - STATE(3179), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7276), 1, - sym__scope_resolution, - STATE(3901), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(8627), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [258013] = 7, + ACTIONS(6790), 1, + anon_sym_DASH_GT, + ACTIONS(8250), 1, + anon_sym_LBRACK, + ACTIONS(8255), 1, + anon_sym_requires, + STATE(5226), 1, + sym_trailing_return_type, + ACTIONS(8252), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [212361] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9625), 1, + ACTIONS(6790), 1, + anon_sym_DASH_GT, + ACTIONS(8894), 1, + anon_sym_LBRACK, + ACTIONS(8899), 1, + anon_sym_requires, + STATE(5309), 1, + sym_trailing_return_type, + ACTIONS(8896), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(9659), 1, - anon_sym_RPAREN, - STATE(8399), 1, - sym_gnu_asm_output_operand_list, - STATE(6723), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(9598), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9600), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [258044] = 7, + anon_sym_asm, + anon_sym___asm__, + [212400] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9617), 1, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6996), 1, - sym_parameter_list, - STATE(6861), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5991), 9, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 11, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [258075] = 7, + [212435] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9617), 1, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(8250), 1, anon_sym_LBRACK, - STATE(6996), 1, - sym_parameter_list, - STATE(6861), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5965), 9, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 11, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [258106] = 13, + [212470] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(6804), 1, + anon_sym_DASH_GT, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(8158), 1, + anon_sym_requires, + STATE(5334), 1, + sym_trailing_return_type, + ACTIONS(8082), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4910), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [212509] = 3, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8708), 1, + anon_sym_LF, + ACTIONS(8710), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(4912), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4914), 1, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9533), 1, - anon_sym_LBRACE, - STATE(4542), 1, - sym_compound_statement, - STATE(4706), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7843), 1, - sym__abstract_declarator, - STATE(7928), 1, - sym_abstract_function_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [258149] = 7, + 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, + [212536] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(4802), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9617), 1, + ACTIONS(8937), 1, anon_sym_LBRACK, - STATE(6996), 1, - sym_parameter_list, - STATE(6861), 2, + STATE(4800), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(5951), 9, + ACTIONS(8935), 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, - [258180] = 10, + anon_sym_requires, + [212567] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8585), 1, - anon_sym_COLON_COLON, - ACTIONS(9661), 1, - sym_identifier, - STATE(2715), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7278), 1, - sym__scope_resolution, - STATE(3253), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(8587), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [258217] = 6, + ACTIONS(8890), 1, + anon_sym_LBRACK, + ACTIONS(8942), 1, + anon_sym_requires, + ACTIONS(8939), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5433), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8888), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [212602] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - STATE(4524), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9663), 11, + ACTIONS(8945), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5376), 16, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [258246] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7296), 1, - anon_sym_COLON_COLON, - ACTIONS(9631), 1, - sym_identifier, - STATE(3032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7297), 1, - sym__scope_resolution, - STATE(3438), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3139), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [258283] = 3, + [212631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6208), 1, + ACTIONS(4715), 1, anon_sym_LBRACK, - ACTIONS(6206), 14, + ACTIONS(4717), 18, 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_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, anon_sym_try, - [258306] = 6, + anon_sym_requires, + [212658] = 3, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8794), 1, + anon_sym_LF, + ACTIONS(8796), 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, + [212685] = 10, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8642), 1, + anon_sym_LF, + ACTIONS(8878), 1, + anon_sym_CARET, + ACTIONS(8880), 1, + anon_sym_AMP, + ACTIONS(8868), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8882), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8886), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8644), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(8870), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8884), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [212726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - STATE(4524), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9665), 11, + ACTIONS(8947), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5376), 16, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_or, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [258335] = 6, + [212755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(4751), 1, anon_sym_LBRACK, - STATE(4524), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9667), 11, + ACTIONS(4753), 18, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [258364] = 6, + [212782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - STATE(4524), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9669), 11, + ACTIONS(4733), 18, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [258393] = 6, + [212809] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(8894), 1, anon_sym_LBRACK, - STATE(4524), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9671), 11, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 11, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [212844] = 3, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8642), 1, + anon_sym_LF, + ACTIONS(8644), 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, + [212871] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6804), 1, + anon_sym_DASH_GT, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(8894), 1, + anon_sym_LBRACK, + STATE(5267), 1, + sym_trailing_return_type, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - anon_sym_requires, - [258422] = 10, - ACTIONS(3), 1, + [212910] = 12, + ACTIONS(8584), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(9673), 1, - sym_identifier, - STATE(2564), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7275), 1, - sym__scope_resolution, - STATE(2593), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [258459] = 6, + ACTIONS(8642), 1, + anon_sym_LF, + ACTIONS(8644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8874), 1, + anon_sym_AMP_AMP, + ACTIONS(8876), 1, + anon_sym_PIPE, + ACTIONS(8878), 1, + anon_sym_CARET, + ACTIONS(8880), 1, + anon_sym_AMP, + ACTIONS(8868), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8882), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8886), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8870), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8884), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [212955] = 11, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8642), 1, + anon_sym_LF, + ACTIONS(8876), 1, + anon_sym_PIPE, + ACTIONS(8878), 1, + anon_sym_CARET, + ACTIONS(8880), 1, + anon_sym_AMP, + ACTIONS(8644), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(8868), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8882), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8886), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8870), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8884), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [212998] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(5396), 1, anon_sym_LBRACK, - STATE(4524), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9619), 11, + ACTIONS(8945), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8949), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5398), 14, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [258488] = 6, + [213029] = 12, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8872), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8874), 1, + anon_sym_AMP_AMP, + ACTIONS(8876), 1, + anon_sym_PIPE, + ACTIONS(8878), 1, + anon_sym_CARET, + ACTIONS(8880), 1, + anon_sym_AMP, + ACTIONS(8951), 1, + anon_sym_LF, + ACTIONS(8868), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8882), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8886), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8870), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8884), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [213074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(4723), 1, anon_sym_LBRACK, - STATE(4524), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9675), 11, + ACTIONS(4725), 18, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [258517] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9625), 1, - anon_sym_COLON, - ACTIONS(9677), 1, - anon_sym_RPAREN, - STATE(8333), 1, - sym_gnu_asm_output_operand_list, - STATE(6723), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(9598), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9600), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [258548] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8679), 1, - anon_sym_COLON_COLON, - ACTIONS(9679), 1, - sym_identifier, - STATE(3052), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7293), 1, - sym__scope_resolution, - STATE(3542), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(8681), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [258585] = 10, - ACTIONS(3), 1, + [213101] = 3, + ACTIONS(8584), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4916), 1, - anon_sym_COLON_COLON, - ACTIONS(9635), 1, - sym_identifier, - STATE(3932), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7280), 1, - sym__scope_resolution, - STATE(3963), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(53), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [258622] = 5, + ACTIONS(8712), 1, + anon_sym_LF, + ACTIONS(8714), 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, + [213128] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6030), 1, + ACTIONS(6804), 1, + anon_sym_DASH_GT, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(8250), 1, anon_sym_LBRACK, - ACTIONS(9681), 1, - anon_sym_LBRACK_LBRACK, - STATE(6785), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6028), 11, + STATE(5228), 1, + sym_trailing_return_type, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [258649] = 13, - ACTIONS(3), 1, + [213167] = 3, + ACTIONS(8584), 1, sym_comment, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(4910), 1, + ACTIONS(8822), 1, + anon_sym_LF, + ACTIONS(8824), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(4912), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4914), 1, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9567), 1, - anon_sym_LBRACE, - STATE(4706), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(6997), 1, - sym_compound_statement, - STATE(7842), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [258692] = 13, + 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, + [213194] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(8890), 1, + anon_sym_LBRACK, + ACTIONS(8953), 1, + anon_sym_requires, + ACTIONS(8939), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5433), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8888), 11, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [213229] = 12, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8872), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8874), 1, anon_sym_AMP_AMP, - ACTIONS(4914), 1, + ACTIONS(8876), 1, + anon_sym_PIPE, + ACTIONS(8878), 1, + anon_sym_CARET, + ACTIONS(8880), 1, anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9527), 1, - anon_sym_LBRACE, - STATE(4155), 1, - sym_compound_statement, - STATE(4706), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7690), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [258735] = 6, + ACTIONS(8956), 1, + anon_sym_LF, + ACTIONS(8868), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8882), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8886), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8870), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8884), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [213274] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8455), 1, anon_sym_LBRACK, - STATE(4587), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9675), 11, + STATE(4800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8453), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [258764] = 6, + [213305] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, - anon_sym_LBRACK, - STATE(4587), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9619), 11, + ACTIONS(6804), 1, + anon_sym_DASH_GT, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(8080), 1, + anon_sym_LBRACK, + STATE(5230), 1, + sym_trailing_return_type, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 9, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [258793] = 6, + anon_sym_try, + [213344] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(8250), 1, anon_sym_LBRACK, - STATE(4587), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9671), 11, + ACTIONS(8255), 1, + anon_sym_requires, + ACTIONS(8252), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 11, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [258822] = 6, + anon_sym_try, + [213379] = 12, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8872), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8874), 1, + anon_sym_AMP_AMP, + ACTIONS(8876), 1, + anon_sym_PIPE, + ACTIONS(8878), 1, + anon_sym_CARET, + ACTIONS(8880), 1, + anon_sym_AMP, + ACTIONS(8958), 1, + anon_sym_LF, + ACTIONS(8868), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8882), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8886), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8870), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8884), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [213424] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(6804), 1, + anon_sym_DASH_GT, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(7901), 1, anon_sym_LBRACK, - STATE(4587), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9669), 11, + STATE(5240), 1, + sym_trailing_return_type, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 9, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [258851] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9625), 1, - anon_sym_COLON, - ACTIONS(9684), 1, - anon_sym_RPAREN, - STATE(8431), 1, - sym_gnu_asm_output_operand_list, - STATE(6723), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(9598), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9600), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [258882] = 6, + anon_sym_try, + [213463] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(7901), 1, anon_sym_LBRACK, - STATE(4587), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9667), 11, + ACTIONS(7940), 1, + anon_sym_requires, + ACTIONS(7905), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 11, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [258911] = 6, + anon_sym_GT2, + anon_sym_try, + [213498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(8962), 1, anon_sym_LBRACK, - STATE(4587), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9665), 11, + ACTIONS(8960), 18, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [258940] = 6, + [213525] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(5475), 1, + anon_sym_COLON_COLON, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(8602), 1, + sym_identifier, + ACTIONS(8604), 1, + anon_sym_template, + STATE(2549), 1, + sym_pointer_type_declarator, + STATE(2552), 1, + sym_template_function, + STATE(2554), 1, + sym_destructor_name, + STATE(2555), 1, + sym_dependent_identifier, + STATE(2559), 1, + sym_qualified_identifier, + STATE(2566), 1, + sym_operator_name, + STATE(5318), 1, + sym__scope_resolution, + STATE(7570), 1, + sym_ms_based_modifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [213582] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4755), 1, anon_sym_LBRACK, - STATE(4587), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9663), 11, + ACTIONS(4757), 18, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [258969] = 13, - ACTIONS(3), 1, + [213609] = 12, + ACTIONS(8584), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, + ACTIONS(8872), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8874), 1, anon_sym_AMP_AMP, - ACTIONS(4914), 1, + ACTIONS(8876), 1, + anon_sym_PIPE, + ACTIONS(8878), 1, + anon_sym_CARET, + ACTIONS(8880), 1, anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - STATE(2358), 1, - sym_compound_statement, - STATE(4706), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7757), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [259012] = 10, + ACTIONS(8964), 1, + anon_sym_LF, + ACTIONS(8868), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8882), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8886), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8870), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8884), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [213654] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8701), 1, - anon_sym_COLON_COLON, - ACTIONS(9686), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(8966), 1, sym_identifier, - STATE(3032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7302), 1, + ACTIONS(8968), 1, + anon_sym_COLON_COLON, + ACTIONS(8970), 1, + anon_sym_template, + STATE(2549), 1, + sym_pointer_type_declarator, + STATE(2552), 1, + sym_template_function, + STATE(2554), 1, + sym_destructor_name, + STATE(2555), 1, + sym_dependent_identifier, + STATE(2559), 1, + sym_qualified_identifier, + STATE(2566), 1, + sym_operator_name, + STATE(5321), 1, sym__scope_resolution, - STATE(3438), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9648), 3, + STATE(7570), 1, + sym_ms_based_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(3139), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [259049] = 5, + [213711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6189), 1, + ACTIONS(8974), 1, anon_sym_LBRACK, - ACTIONS(7070), 1, - anon_sym_LT, - STATE(6837), 1, - sym_template_argument_list, - ACTIONS(6187), 12, + ACTIONS(8972), 18, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [259076] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9625), 1, - anon_sym_COLON, - ACTIONS(9688), 1, - anon_sym_RPAREN, - STATE(8071), 1, - sym_gnu_asm_output_operand_list, - STATE(6723), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(9598), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9600), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [259107] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9625), 1, - anon_sym_COLON, - ACTIONS(9690), 1, - anon_sym_RPAREN, - STATE(8119), 1, - sym_gnu_asm_output_operand_list, - STATE(6723), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(9598), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9600), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [259138] = 10, + anon_sym_requires, + [213738] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7255), 1, + ACTIONS(2693), 1, + anon_sym_TILDE, + ACTIONS(6561), 1, anon_sym_COLON_COLON, - ACTIONS(9635), 1, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(8976), 1, sym_identifier, - STATE(4993), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7279), 1, - sym__scope_resolution, - STATE(5616), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(7257), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [259175] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, + ACTIONS(8978), 1, anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8647), 1, - anon_sym_COLON_COLON, - ACTIONS(9692), 1, - sym_identifier, - STATE(3074), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7282), 1, + STATE(2549), 1, + sym_pointer_type_declarator, + STATE(2552), 1, + sym_template_function, + STATE(2554), 1, + sym_destructor_name, + STATE(2555), 1, + sym_dependent_identifier, + STATE(2559), 1, + sym_qualified_identifier, + STATE(2566), 1, + sym_operator_name, + STATE(5323), 1, sym__scope_resolution, - STATE(3605), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9648), 3, + STATE(7570), 1, + sym_ms_based_modifier, + STATE(7683), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(8649), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [259212] = 13, + [213795] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, - anon_sym_LPAREN2, - ACTIONS(4910), 1, - anon_sym_STAR, - ACTIONS(4912), 1, + ACTIONS(8562), 1, + anon_sym_SLASH, + ACTIONS(8564), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8566), 1, anon_sym_AMP_AMP, - ACTIONS(4914), 1, + ACTIONS(8568), 1, + anon_sym_PIPE, + ACTIONS(8570), 1, + anon_sym_CARET, + ACTIONS(8572), 1, anon_sym_AMP, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(9539), 1, - anon_sym_LBRACE, - STATE(4437), 1, - sym_compound_statement, - STATE(4706), 1, - sym_parameter_list, - STATE(6905), 1, - sym__function_declarator_seq, - STATE(7751), 1, - sym_abstract_function_declarator, - STATE(7843), 1, - sym__abstract_declarator, - STATE(6825), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [259255] = 6, + ACTIONS(8980), 1, + anon_sym_RPAREN, + ACTIONS(8558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8560), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8574), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8576), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8578), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(8580), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [213844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(4711), 1, anon_sym_LBRACK, - STATE(4551), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9663), 11, + ACTIONS(4713), 18, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [259284] = 6, + [213871] = 3, + ACTIONS(6087), 1, + anon_sym_LF, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(6089), 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, + [213898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(4727), 1, anon_sym_LBRACK, - STATE(4551), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9665), 11, + ACTIONS(4729), 18, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [259313] = 6, + [213925] = 12, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8872), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8874), 1, + anon_sym_AMP_AMP, + ACTIONS(8876), 1, + anon_sym_PIPE, + ACTIONS(8878), 1, + anon_sym_CARET, + ACTIONS(8880), 1, + anon_sym_AMP, + ACTIONS(8982), 1, + anon_sym_LF, + ACTIONS(8868), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8882), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8886), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8870), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8884), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [213970] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(8986), 1, anon_sym_LBRACK, - STATE(4551), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9667), 11, + ACTIONS(8988), 2, + anon_sym_final, + anon_sym_override, + STATE(5329), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(8984), 14, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [259342] = 6, + [214001] = 3, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8826), 1, + anon_sym_LF, + ACTIONS(8828), 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, + [214028] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(8562), 1, + anon_sym_SLASH, + ACTIONS(8564), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8566), 1, + anon_sym_AMP_AMP, + ACTIONS(8568), 1, + anon_sym_PIPE, + ACTIONS(8570), 1, + anon_sym_CARET, + ACTIONS(8572), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_RPAREN, + ACTIONS(8558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8560), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8574), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8576), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8578), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(8580), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [214077] = 12, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8872), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8874), 1, + anon_sym_AMP_AMP, + ACTIONS(8876), 1, + anon_sym_PIPE, + ACTIONS(8878), 1, + anon_sym_CARET, + ACTIONS(8880), 1, + anon_sym_AMP, + ACTIONS(8993), 1, + anon_sym_LF, + ACTIONS(8868), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8882), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8886), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8870), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8884), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [214122] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(4551), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9671), 11, + ACTIONS(8158), 1, + anon_sym_requires, + ACTIONS(8082), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 11, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [214157] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8250), 1, + anon_sym_LBRACK, + ACTIONS(8267), 1, + anon_sym_requires, + ACTIONS(8252), 2, anon_sym_final, anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [259371] = 6, + [214192] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(8085), 1, + anon_sym_requires, + ACTIONS(8082), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 11, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9621), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [214227] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5396), 1, anon_sym_LBRACK, - STATE(4551), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9669), 11, + ACTIONS(8947), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8995), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5398), 14, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [259400] = 7, + [214258] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9625), 1, - anon_sym_COLON, - ACTIONS(9694), 1, + ACTIONS(8894), 1, + anon_sym_LBRACK, + ACTIONS(8916), 1, + anon_sym_requires, + ACTIONS(8896), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 11, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(8190), 1, - sym_gnu_asm_output_operand_list, - STATE(6723), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(9598), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9600), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [259431] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(9631), 1, - sym_identifier, - STATE(6033), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7274), 1, - sym__scope_resolution, - STATE(2593), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(7345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [259468] = 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [214293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(8999), 1, anon_sym_LBRACK, - STATE(4551), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9675), 11, + ACTIONS(8997), 18, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [259497] = 10, + [214320] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(121), 1, + anon_sym_virtual, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7280), 1, + ACTIONS(3673), 1, anon_sym_COLON_COLON, - ACTIONS(9635), 1, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8190), 1, sym_identifier, - STATE(4993), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7261), 1, + STATE(2542), 1, + sym_template_type, + STATE(5829), 1, + sym_access_specifier, + STATE(5983), 1, sym__scope_resolution, - STATE(5616), 2, - sym_sized_type_specifier, + STATE(6405), 1, + sym_virtual, + STATE(5246), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6208), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(9648), 3, + STATE(7683), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - ACTIONS(7257), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [259534] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9625), 1, - anon_sym_COLON, - ACTIONS(9696), 1, - anon_sym_RPAREN, - STATE(8029), 1, - sym_gnu_asm_output_operand_list, - STATE(6723), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(9598), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9600), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [259565] = 7, - ACTIONS(3), 1, + ACTIONS(8902), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [214371] = 12, + ACTIONS(8584), 1, sym_comment, - ACTIONS(9698), 1, - sym_identifier, - STATE(6800), 1, - sym_string_literal, - STATE(7092), 1, - sym_raw_string_literal, - STATE(8189), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [259595] = 2, + ACTIONS(8872), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8874), 1, + anon_sym_AMP_AMP, + ACTIONS(8876), 1, + anon_sym_PIPE, + ACTIONS(8878), 1, + anon_sym_CARET, + ACTIONS(8880), 1, + anon_sym_AMP, + ACTIONS(9001), 1, + anon_sym_LF, + ACTIONS(8868), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8882), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8886), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8870), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8884), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [214416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9555), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4749), 18, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [259615] = 11, + [214443] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - ACTIONS(8863), 1, - anon_sym_LBRACK, - STATE(6676), 1, - sym_requires_clause, - STATE(7240), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8861), 2, + ACTIONS(8646), 1, + anon_sym_COMMA, + ACTIONS(8648), 1, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6519), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [259653] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - ACTIONS(9193), 1, + ACTIONS(8650), 1, + anon_sym_SEMI, + ACTIONS(8654), 1, anon_sym_LBRACK, - STATE(6707), 1, - sym_requires_clause, - STATE(7237), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9191), 2, - anon_sym_LPAREN2, + ACTIONS(8656), 1, + anon_sym_EQ, + ACTIONS(9003), 1, anon_sym_COLON, - STATE(6571), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, + STATE(3514), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(6846), 1, + aux_sym__declaration_declarator_repeat1, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(8658), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5792), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [259691] = 8, + STATE(6853), 2, + sym_argument_list, + sym_initializer_list, + [214495] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(5634), 1, anon_sym_LBRACK, - STATE(4619), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(7099), 2, + ACTIONS(9005), 1, + anon_sym_LBRACK_LBRACK, + STATE(5343), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9700), 7, + ACTIONS(5632), 14, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [259723] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(6137), 1, - anon_sym_LBRACE, - ACTIONS(8625), 1, - anon_sym_COLON_COLON, - ACTIONS(8782), 1, - sym_identifier, - STATE(3332), 1, - sym_template_type, - STATE(3712), 1, - sym_enumerator_list, - STATE(7276), 1, - sym__scope_resolution, - ACTIONS(9702), 2, - anon_sym_class, - anon_sym_struct, - STATE(3389), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [259763] = 8, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [214525] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(8937), 1, anon_sym_LBRACK, - STATE(4619), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(7099), 2, + STATE(5343), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9704), 7, + ACTIONS(8935), 14, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [259795] = 5, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [214555] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(7091), 1, + anon_sym_LPAREN2, + ACTIONS(7099), 1, + anon_sym_LBRACK, + ACTIONS(7887), 1, + anon_sym_STAR, + ACTIONS(7889), 1, + anon_sym_AMP_AMP, + ACTIONS(7891), 1, + anon_sym_AMP, + STATE(3716), 1, + sym_parameter_list, + STATE(5399), 1, + sym__function_declarator_seq, + STATE(5991), 1, + sym__abstract_declarator, + ACTIONS(7127), 5, anon_sym_LBRACK_LBRACK, - ACTIONS(9708), 1, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5366), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [214597] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8459), 1, anon_sym_LBRACK, - STATE(6785), 2, + STATE(5343), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9706), 10, + ACTIONS(8457), 14, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_try, - [259821] = 8, + anon_sym_requires, + [214627] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(8455), 1, anon_sym_LBRACK, - STATE(4619), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(7099), 2, + STATE(5343), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9710), 7, + ACTIONS(8453), 14, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [259853] = 7, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [214657] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9698), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, sym_identifier, - STATE(6761), 1, - sym_string_literal, - STATE(7092), 1, - sym_raw_string_literal, - STATE(8308), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [259883] = 12, + ACTIONS(7502), 1, + anon_sym_LPAREN2, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6429), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [214700] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5972), 1, + ACTIONS(6802), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7908), 1, + anon_sym_requires, + STATE(5335), 1, + sym_trailing_return_type, + ACTIONS(7905), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(8679), 1, - anon_sym_COLON_COLON, - ACTIONS(8784), 1, - sym_identifier, - STATE(3180), 1, - sym_template_type, - STATE(3323), 1, - sym_enumerator_list, - STATE(7293), 1, - sym__scope_resolution, - ACTIONS(9712), 2, - anon_sym_class, - anon_sym_struct, - STATE(3165), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [259923] = 2, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [214737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9535), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(9010), 1, + anon_sym_LBRACK, + ACTIONS(9008), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [259943] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, - anon_sym_requires, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6622), 1, - sym_requires_clause, - STATE(7248), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8857), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [259981] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5790), 1, - anon_sym_LBRACE, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(8795), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(3126), 1, - sym_enumerator_list, - STATE(7300), 1, - sym__scope_resolution, - ACTIONS(9714), 2, - anon_sym_class, - anon_sym_struct, - STATE(5662), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [260021] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7156), 1, - anon_sym_LBRACE, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(8764), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4494), 1, - sym_enumerator_list, - STATE(7261), 1, - sym__scope_resolution, - ACTIONS(9716), 2, - anon_sym_class, - anon_sym_struct, - STATE(4695), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [260061] = 7, + [214762] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9698), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, sym_identifier, - STATE(6813), 1, - sym_string_literal, - STATE(7092), 1, - sym_raw_string_literal, - STATE(8410), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [260091] = 12, + ACTIONS(7502), 1, + anon_sym_LPAREN2, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6268), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [214805] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5790), 1, - anon_sym_LBRACE, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8774), 1, - sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(3126), 1, - sym_enumerator_list, - STATE(7275), 1, - sym__scope_resolution, - ACTIONS(9718), 2, - anon_sym_class, - anon_sym_struct, - STATE(4462), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [260131] = 4, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(9012), 1, + anon_sym_LT, + ACTIONS(9014), 1, + anon_sym_LBRACE, + STATE(1729), 1, + sym_compound_statement, + STATE(3550), 1, + sym_parameter_list, + STATE(5403), 1, + sym_template_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6308), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [214854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5735), 1, + ACTIONS(7901), 1, anon_sym_LBRACK, - ACTIONS(9720), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5737), 11, + ACTIONS(7893), 16, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_or, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [260155] = 11, + [214879] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(9016), 1, + anon_sym_LBRACE, + ACTIONS(9018), 1, anon_sym_requires, - ACTIONS(8746), 1, + STATE(3215), 1, + sym_compound_statement, + STATE(3550), 1, + sym_parameter_list, + STATE(5514), 1, + sym_requires_clause, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6360), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [214928] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, anon_sym_LBRACK, - STATE(6700), 1, + ACTIONS(9018), 1, + anon_sym_requires, + ACTIONS(9020), 1, + anon_sym_LBRACE, + STATE(3550), 1, + sym_parameter_list, + STATE(5534), 1, sym_requires_clause, - STATE(7251), 1, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5763), 1, + sym_compound_statement, + STATE(6251), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [214977] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6797), 1, + anon_sym_DASH_GT, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(8250), 1, + anon_sym_LBRACK, + STATE(5228), 1, sym_trailing_return_type, - ACTIONS(5663), 2, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - ACTIONS(8744), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6556), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [260193] = 11, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [215014] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7483), 1, + ACTIONS(6802), 1, anon_sym_DASH_GT, - ACTIONS(7485), 1, + ACTIONS(8894), 1, + anon_sym_LBRACK, + ACTIONS(8899), 1, anon_sym_requires, - STATE(6678), 1, - sym_requires_clause, - STATE(7255), 1, + STATE(5309), 1, sym_trailing_return_type, - ACTIONS(5663), 2, + ACTIONS(8896), 2, anon_sym_final, anon_sym_override, - ACTIONS(7237), 2, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 7, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [260231] = 3, + anon_sym_try, + [215051] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5737), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6391), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [215094] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_DASH_GT, + ACTIONS(8250), 1, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_or, + ACTIONS(8255), 1, + anon_sym_requires, + STATE(5226), 1, + sym_trailing_return_type, + ACTIONS(8252), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [260253] = 6, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [215131] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9698), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7248), 1, sym_identifier, - STATE(8918), 1, - sym_concatenated_string, - STATE(6963), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [260281] = 6, + ACTIONS(7250), 1, + anon_sym_LPAREN2, + ACTIONS(7252), 1, + anon_sym_STAR, + ACTIONS(7254), 1, + anon_sym_AMP_AMP, + ACTIONS(7256), 1, + anon_sym_AMP, + STATE(6008), 1, + sym__field_declarator, + STATE(6092), 1, + sym_operator_name, + STATE(7431), 1, + sym_ms_based_modifier, + STATE(5865), 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, + [215174] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(9698), 1, - sym_identifier, - STATE(9652), 1, - sym_concatenated_string, - STATE(7022), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [260309] = 4, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(9018), 1, + anon_sym_requires, + ACTIONS(9022), 1, + anon_sym_LBRACE, + STATE(3550), 1, + sym_parameter_list, + STATE(3931), 1, + sym_compound_statement, + STATE(5526), 1, + sym_requires_clause, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6406), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [215223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, - anon_sym_COLON_COLON, - ACTIONS(4899), 2, + ACTIONS(9026), 1, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(4904), 11, + ACTIONS(9024), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [260333] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, anon_sym_requires, - STATE(6701), 1, - sym_requires_clause, - STATE(7256), 1, - sym_trailing_return_type, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7192), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [260371] = 8, + [215248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(9030), 1, anon_sym_LBRACK, - STATE(4619), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(7099), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9724), 7, + ACTIONS(9028), 16, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [260403] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [215273] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(6797), 1, + anon_sym_DASH_GT, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(8894), 1, anon_sym_LBRACK, - STATE(4619), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(7099), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9726), 7, + STATE(5267), 1, + sym_trailing_return_type, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 7, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [260435] = 11, + anon_sym_GT2, + [215310] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(7491), 1, - anon_sym_COLON, - ACTIONS(8404), 1, - anon_sym_LBRACK, - ACTIONS(8730), 1, + ACTIONS(4605), 1, anon_sym_STAR, - ACTIONS(8732), 1, + ACTIONS(4607), 1, anon_sym_AMP_AMP, - ACTIONS(8734), 1, + ACTIONS(4609), 1, anon_sym_AMP, - STATE(4808), 1, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(9012), 1, + anon_sym_LT, + ACTIONS(9020), 1, + anon_sym_LBRACE, + STATE(3550), 1, sym_parameter_list, - STATE(6905), 1, + STATE(5355), 1, + sym_template_parameter_list, + STATE(5604), 1, sym__function_declarator_seq, - STATE(7526), 1, + STATE(5662), 1, + sym_compound_statement, + STATE(6257), 1, + sym_abstract_function_declarator, + STATE(6435), 1, sym__abstract_declarator, - STATE(6825), 5, + STATE(5647), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, - sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [260473] = 4, + [215359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9722), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9728), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5745), 10, + ACTIONS(9034), 1, + anon_sym_LBRACK, + ACTIONS(9032), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [260497] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9698), 1, - sym_identifier, - STATE(6809), 1, - sym_string_literal, - STATE(7092), 1, - sym_raw_string_literal, - STATE(8278), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [260527] = 2, + [215384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9577), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(9038), 1, + anon_sym_LBRACK, + ACTIONS(9036), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [260547] = 2, + [215409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9581), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(8894), 1, + anon_sym_LBRACK, + ACTIONS(8892), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [260567] = 2, + [215434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9585), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(9042), 1, + anon_sym_LBRACK, + ACTIONS(9040), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [260587] = 2, + [215459] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(9589), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(9018), 1, + anon_sym_requires, + ACTIONS(9044), 1, + anon_sym_LBRACE, + STATE(3550), 1, + sym_parameter_list, + STATE(5297), 1, + sym_compound_statement, + STATE(5535), 1, + sym_requires_clause, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6435), 1, + sym__abstract_declarator, + STATE(6450), 1, + sym_abstract_function_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [215508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9048), 1, + anon_sym_LBRACK, + ACTIONS(9046), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [260607] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4916), 1, - anon_sym_COLON_COLON, - ACTIONS(7156), 1, - anon_sym_LBRACE, - ACTIONS(8772), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4508), 1, - sym_enumerator_list, - STATE(7280), 1, - sym__scope_resolution, - ACTIONS(9730), 2, - anon_sym_class, - anon_sym_struct, - STATE(4375), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [260647] = 11, + [215533] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7371), 1, + ACTIONS(6747), 1, anon_sym_requires, - ACTIONS(7435), 1, + ACTIONS(6802), 1, anon_sym_DASH_GT, - STATE(6894), 1, - sym_requires_clause, - STATE(6956), 1, + ACTIONS(8894), 1, + anon_sym_LBRACK, + STATE(5224), 1, sym_trailing_return_type, - ACTIONS(7192), 2, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 7, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(7359), 2, + anon_sym_try, + [215570] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6797), 1, + anon_sym_DASH_GT, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(8080), 1, + anon_sym_LBRACK, + STATE(5230), 1, + sym_trailing_return_type, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(6585), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6713), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - [260685] = 6, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [215607] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9698), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, sym_identifier, - STATE(9455), 1, - sym_concatenated_string, - STATE(6954), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [260713] = 11, + ACTIONS(7502), 1, + anon_sym_LPAREN2, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6326), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [215650] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, + ACTIONS(6797), 1, anon_sym_DASH_GT, - STATE(6891), 1, - sym_requires_clause, - STATE(6965), 1, + ACTIONS(6806), 1, + anon_sym_requires, + ACTIONS(7901), 1, + anon_sym_LBRACK, + STATE(5240), 1, sym_trailing_return_type, - ACTIONS(7237), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7359), 2, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(6585), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6715), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - [260751] = 11, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [215687] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7371), 1, + ACTIONS(6747), 1, anon_sym_requires, - ACTIONS(7435), 1, + ACTIONS(6802), 1, anon_sym_DASH_GT, - ACTIONS(8746), 1, + ACTIONS(8250), 1, anon_sym_LBRACK, - STATE(6885), 1, - sym_requires_clause, - STATE(6968), 1, + STATE(5298), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - ACTIONS(8744), 2, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 7, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - STATE(6585), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6716), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - [260789] = 7, + anon_sym_try, + [215724] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9698), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, sym_identifier, - STATE(6758), 1, - sym_string_literal, - STATE(7092), 1, - sym_raw_string_literal, - STATE(8327), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [260819] = 12, + ACTIONS(7502), 1, + anon_sym_LPAREN2, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6431), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [215767] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(8514), 1, - anon_sym_LBRACE, - ACTIONS(8764), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(5541), 1, - sym_enumerator_list, - STATE(7261), 1, - sym__scope_resolution, - ACTIONS(9732), 2, - anon_sym_class, - anon_sym_struct, - STATE(5835), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [260859] = 11, + ACTIONS(7502), 1, + anon_sym_LPAREN2, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6397), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [215810] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, - anon_sym_DASH_GT, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6879), 1, - sym_requires_clause, - STATE(6971), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8857), 2, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6585), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6717), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - [260897] = 12, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6374), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [215853] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(6082), 1, - anon_sym_LBRACE, - ACTIONS(7296), 1, - anon_sym_COLON_COLON, - ACTIONS(8770), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, sym_identifier, - STATE(3296), 1, - sym_template_type, - STATE(3391), 1, - sym_enumerator_list, - STATE(7297), 1, - sym__scope_resolution, - ACTIONS(9734), 2, - anon_sym_class, - anon_sym_struct, - STATE(5680), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [260937] = 11, + ACTIONS(7502), 1, + anon_sym_LPAREN2, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6328), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [215896] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, + ACTIONS(6797), 1, anon_sym_DASH_GT, - ACTIONS(8867), 1, + ACTIONS(7901), 1, anon_sym_LBRACK, - STATE(6881), 1, - sym_requires_clause, - STATE(6975), 1, + ACTIONS(7940), 1, + anon_sym_requires, + STATE(5333), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(7905), 2, anon_sym_final, anon_sym_override, - ACTIONS(8865), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6585), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6718), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - [260975] = 11, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [215933] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, + anon_sym_LPAREN2, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6459), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [215976] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6797), 1, anon_sym_DASH_GT, - ACTIONS(8863), 1, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6869), 1, - sym_requires_clause, - STATE(6977), 1, + ACTIONS(8158), 1, + anon_sym_requires, + STATE(5334), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(8082), 2, anon_sym_final, anon_sym_override, - ACTIONS(8861), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6585), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6710), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - [261013] = 11, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [216013] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7371), 1, - anon_sym_requires, - ACTIONS(7435), 1, + ACTIONS(6797), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(8250), 1, anon_sym_LBRACK, - STATE(6878), 1, - sym_requires_clause, - STATE(6982), 1, + ACTIONS(8267), 1, + anon_sym_requires, + STATE(5337), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(8252), 2, anon_sym_final, anon_sym_override, - ACTIONS(9191), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6585), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6719), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - [261051] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9551), 14, - anon_sym_DOT_DOT_DOT, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [261071] = 5, + [216050] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6061), 1, + ACTIONS(6797), 1, + anon_sym_DASH_GT, + ACTIONS(8894), 1, anon_sym_LBRACK, - STATE(6785), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6059), 10, + ACTIONS(8916), 1, + anon_sym_requires, + STATE(5290), 1, + sym_trailing_return_type, + ACTIONS(8896), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_GT2, - anon_sym_try, - [261097] = 8, + [216087] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(8881), 1, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, anon_sym_LBRACK, - STATE(4523), 1, + ACTIONS(9012), 1, + anon_sym_LT, + ACTIONS(9022), 1, + anon_sym_LBRACE, + STATE(3550), 1, sym_parameter_list, - STATE(7190), 1, + STATE(3985), 1, + sym_compound_statement, + STATE(5361), 1, + sym_template_parameter_list, + STATE(5604), 1, sym__function_declarator_seq, - STATE(7078), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9736), 7, + STATE(6435), 1, + sym__abstract_declarator, + STATE(6468), 1, + sym_abstract_function_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [216136] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9052), 1, + anon_sym_LBRACK, + ACTIONS(9050), 16, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [261129] = 11, + anon_sym_requires, + [216161] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7483), 1, - anon_sym_DASH_GT, - ACTIONS(7485), 1, + ACTIONS(6747), 1, anon_sym_requires, - ACTIONS(8867), 1, + ACTIONS(6802), 1, + anon_sym_DASH_GT, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(6643), 1, - sym_requires_clause, - STATE(7246), 1, + STATE(5286), 1, sym_trailing_return_type, - ACTIONS(5663), 2, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - ACTIONS(8865), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6501), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(6585), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [261167] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9698), 1, - sym_identifier, - STATE(6763), 1, - sym_string_literal, - STATE(7092), 1, - sym_raw_string_literal, - STATE(8039), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [261197] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 7, anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - STATE(4570), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9726), 7, - anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_COLON, anon_sym_try, - [261229] = 8, + [216198] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(8881), 1, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, anon_sym_LBRACK, - STATE(4523), 1, + ACTIONS(9012), 1, + anon_sym_LT, + ACTIONS(9054), 1, + anon_sym_LBRACE, + STATE(3550), 1, sym_parameter_list, - STATE(7190), 1, + STATE(3582), 1, + sym_compound_statement, + STATE(5425), 1, + sym_template_parameter_list, + STATE(5604), 1, sym__function_declarator_seq, - STATE(7078), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9738), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [261261] = 8, + STATE(6298), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [216247] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(8881), 1, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, anon_sym_LBRACK, - STATE(4523), 1, + ACTIONS(9012), 1, + anon_sym_LT, + ACTIONS(9044), 1, + anon_sym_LBRACE, + STATE(3550), 1, sym_parameter_list, - STATE(7190), 1, + STATE(5325), 1, + sym_compound_statement, + STATE(5370), 1, + sym_template_parameter_list, + STATE(5604), 1, sym__function_declarator_seq, - STATE(7078), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9740), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [261293] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9698), 1, - sym_identifier, - STATE(9156), 1, - sym_concatenated_string, - STATE(6930), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [261321] = 2, + STATE(6435), 1, + sym__abstract_declarator, + STATE(6454), 1, + sym_abstract_function_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [216296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9191), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(8072), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [261341] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7318), 1, - anon_sym_COLON_COLON, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8776), 1, - sym_identifier, - STATE(5620), 1, - sym_template_type, - STATE(5924), 1, - sym_enumerator_list, - STATE(7289), 1, - sym__scope_resolution, - ACTIONS(9742), 2, - anon_sym_class, - anon_sym_struct, - STATE(5663), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [261381] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9698), 1, - sym_identifier, - STATE(9058), 1, - sym_concatenated_string, - STATE(6921), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [261409] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9698), 1, - sym_identifier, - STATE(8992), 1, - sym_concatenated_string, - STATE(6933), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [261437] = 6, + [216321] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9698), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7250), 1, + anon_sym_LPAREN2, + ACTIONS(7338), 1, sym_identifier, - STATE(8972), 1, - sym_concatenated_string, - STATE(6918), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [261465] = 2, + ACTIONS(7340), 1, + anon_sym_STAR, + ACTIONS(7342), 1, + anon_sym_AMP_AMP, + ACTIONS(7344), 1, + anon_sym_AMP, + STATE(5639), 1, + sym__field_declarator, + STATE(5844), 1, + sym_operator_name, + STATE(7666), 1, + sym_ms_based_modifier, + STATE(5865), 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, + [216364] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9455), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7250), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [261485] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9698), 1, + ACTIONS(7338), 1, sym_identifier, - STATE(8914), 1, - sym_concatenated_string, - STATE(6938), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [261513] = 8, + ACTIONS(7340), 1, + anon_sym_STAR, + ACTIONS(7342), 1, + anon_sym_AMP_AMP, + ACTIONS(7344), 1, + anon_sym_AMP, + STATE(5531), 1, + sym__field_declarator, + STATE(5844), 1, + sym_operator_name, + STATE(7666), 1, + sym_ms_based_modifier, + STATE(5865), 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, + [216407] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(6802), 1, + anon_sym_DASH_GT, + ACTIONS(8080), 1, anon_sym_LBRACK, - STATE(4570), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9724), 7, - anon_sym_COMMA, + ACTIONS(8085), 1, + anon_sym_requires, + STATE(5313), 1, + sym_trailing_return_type, + ACTIONS(8082), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 7, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_COLON, anon_sym_try, - [261545] = 7, + [216444] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(9698), 1, - sym_identifier, - STATE(6792), 1, - sym_string_literal, - STATE(7092), 1, - sym_raw_string_literal, - STATE(8218), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [261575] = 2, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(9018), 1, + anon_sym_requires, + ACTIONS(9056), 1, + anon_sym_LBRACE, + STATE(3388), 1, + sym_compound_statement, + STATE(3550), 1, + sym_parameter_list, + STATE(5527), 1, + sym_requires_clause, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6212), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [216493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9490), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(8250), 1, + anon_sym_LBRACK, + ACTIONS(8242), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [261595] = 2, + [216518] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(8865), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4603), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(9012), 1, + anon_sym_LT, + ACTIONS(9016), 1, anon_sym_LBRACE, + STATE(3148), 1, + sym_compound_statement, + STATE(3550), 1, + sym_parameter_list, + STATE(5354), 1, + sym_template_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6258), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [216567] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(7666), 1, anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(7948), 1, + anon_sym_STAR, + ACTIONS(7950), 1, + anon_sym_AMP_AMP, + ACTIONS(7952), 1, + anon_sym_AMP, + STATE(3705), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6015), 1, + sym__abstract_declarator, + ACTIONS(7127), 4, anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [261615] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7156), 1, - anon_sym_LBRACE, - ACTIONS(8768), 1, - sym_identifier, - ACTIONS(8788), 1, - anon_sym_COLON_COLON, - STATE(3369), 1, - sym_template_type, - STATE(4508), 1, - sym_enumerator_list, - STATE(7267), 1, - sym__scope_resolution, - ACTIONS(9744), 2, - anon_sym_class, - anon_sym_struct, - STATE(4851), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [261655] = 2, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [216608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8861), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(9060), 1, + anon_sym_LBRACK, + ACTIONS(9058), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [261675] = 6, + [216633] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9698), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, sym_identifier, - STATE(8861), 1, - sym_concatenated_string, - STATE(6957), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [261703] = 7, + ACTIONS(7502), 1, + anon_sym_LPAREN2, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6446), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [216676] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9698), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, sym_identifier, - STATE(6799), 1, - sym_string_literal, - STATE(7092), 1, - sym_raw_string_literal, - STATE(8131), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [261733] = 8, + ACTIONS(7502), 1, + anon_sym_LPAREN2, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6218), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [216719] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6396), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [216762] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, anon_sym_LBRACK, - STATE(4570), 1, + ACTIONS(9014), 1, + anon_sym_LBRACE, + ACTIONS(9018), 1, + anon_sym_requires, + STATE(1735), 1, + sym_compound_statement, + STATE(3550), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5540), 1, + sym_requires_clause, + STATE(5604), 1, sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9700), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [261765] = 2, + STATE(6356), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [216811] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8857), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5324), 1, + anon_sym_COLON, + ACTIONS(7935), 1, + anon_sym_LT, + STATE(2442), 1, + sym_template_argument_list, + ACTIONS(4085), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [261785] = 12, + [216842] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7156), 1, - anon_sym_LBRACE, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(8766), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(7248), 1, sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4494), 1, - sym_enumerator_list, - STATE(7279), 1, - sym__scope_resolution, - ACTIONS(9746), 2, - anon_sym_class, - anon_sym_struct, - STATE(5365), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [261825] = 5, + ACTIONS(7250), 1, + anon_sym_LPAREN2, + ACTIONS(7252), 1, + anon_sym_STAR, + ACTIONS(7254), 1, + anon_sym_AMP_AMP, + ACTIONS(7256), 1, + anon_sym_AMP, + STATE(6027), 1, + sym__field_declarator, + STATE(6092), 1, + sym_operator_name, + STATE(7431), 1, + sym_ms_based_modifier, + STATE(5865), 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, + [216885] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5743), 1, - anon_sym_LBRACK, - ACTIONS(9720), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9748), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5745), 9, - anon_sym_RPAREN, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [261851] = 8, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6395), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [216928] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - STATE(4570), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9704), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [261883] = 8, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6318), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [216971] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(8646), 1, + anon_sym_COMMA, + ACTIONS(8648), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(8650), 1, + anon_sym_SEMI, + ACTIONS(8654), 1, anon_sym_LBRACK, - STATE(4570), 1, + ACTIONS(9062), 1, + anon_sym_EQ, + STATE(3511), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5760), 1, sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9710), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + STATE(6656), 1, + sym_initializer_list, + STATE(6846), 1, + aux_sym__declaration_declarator_repeat1, + STATE(6850), 1, + sym_gnu_asm_expression, + STATE(6853), 1, + sym_argument_list, + ACTIONS(8658), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_try, - [261915] = 12, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [217022] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5790), 1, - anon_sym_LBRACE, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(8786), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(6075), 1, - sym_enumerator_list, - STATE(7274), 1, - sym__scope_resolution, - ACTIONS(9750), 2, - anon_sym_class, - anon_sym_struct, - STATE(5803), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [261955] = 2, + ACTIONS(7502), 1, + anon_sym_LPAREN2, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6228), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [217065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8744), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(8890), 1, + anon_sym_LBRACK, + ACTIONS(8888), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [261975] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(6043), 1, - anon_sym_LBRACE, - ACTIONS(8647), 1, - anon_sym_COLON_COLON, - ACTIONS(8780), 1, - sym_identifier, - STATE(3227), 1, - sym_template_type, - STATE(3592), 1, - sym_enumerator_list, - STATE(7282), 1, - sym__scope_resolution, - ACTIONS(9752), 2, - anon_sym_class, - anon_sym_struct, - STATE(3223), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [262015] = 12, + [217090] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5796), 1, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(9018), 1, + anon_sym_requires, + ACTIONS(9064), 1, anon_sym_LBRACE, - ACTIONS(8585), 1, - anon_sym_COLON_COLON, - ACTIONS(8778), 1, - sym_identifier, - STATE(3080), 1, - sym_template_type, - STATE(3188), 1, - sym_enumerator_list, - STATE(7278), 1, - sym__scope_resolution, - ACTIONS(9754), 2, - anon_sym_class, - anon_sym_struct, - STATE(3084), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [262055] = 2, + STATE(3550), 1, + sym_parameter_list, + STATE(3752), 1, + sym_compound_statement, + STATE(5462), 1, + sym_requires_clause, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6199), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [217139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7237), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(9068), 1, + anon_sym_LBRACK, + ACTIONS(9066), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [262075] = 2, + [217164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9571), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(9072), 1, + anon_sym_LBRACK, + ACTIONS(9070), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [262095] = 2, + [217189] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9563), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(4559), 1, + anon_sym_COLON, + ACTIONS(7935), 1, + anon_sym_LT, + STATE(2442), 1, + sym_template_argument_list, + ACTIONS(4564), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [262115] = 2, + [217220] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9547), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6238), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [217263] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(9012), 1, + anon_sym_LT, + ACTIONS(9056), 1, anon_sym_LBRACE, + STATE(3469), 1, + sym_compound_statement, + STATE(3550), 1, + sym_parameter_list, + STATE(5395), 1, + sym_template_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6420), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [217312] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [262135] = 2, + ACTIONS(9012), 1, + anon_sym_LT, + ACTIONS(9074), 1, + anon_sym_LBRACE, + STATE(2727), 1, + sym_compound_statement, + STATE(3550), 1, + sym_parameter_list, + STATE(5432), 1, + sym_template_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6378), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [217361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9521), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(9078), 1, + anon_sym_LBRACK, + ACTIONS(9076), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [262155] = 12, + [217386] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(7156), 1, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(9012), 1, + anon_sym_LT, + ACTIONS(9064), 1, anon_sym_LBRACE, - ACTIONS(8768), 1, + STATE(3550), 1, + sym_parameter_list, + STATE(3736), 1, + sym_compound_statement, + STATE(5411), 1, + sym_template_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6418), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [217435] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4508), 1, - sym_enumerator_list, - STATE(7286), 1, - sym__scope_resolution, - ACTIONS(9756), 2, - anon_sym_class, - anon_sym_struct, - STATE(4573), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [262195] = 2, + ACTIONS(7502), 1, + anon_sym_LPAREN2, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6363), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [217478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7192), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(9082), 1, + anon_sym_LBRACK, + ACTIONS(9080), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [262215] = 12, + [217503] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(8514), 1, - anon_sym_LBRACE, - ACTIONS(8766), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(5541), 1, - sym_enumerator_list, - STATE(7279), 1, - sym__scope_resolution, - ACTIONS(9758), 2, - anon_sym_class, - anon_sym_struct, - STATE(5462), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [262255] = 2, + ACTIONS(7502), 1, + anon_sym_LPAREN2, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6250), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [217546] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9529), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6256), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [217589] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, anon_sym_LBRACE, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, + ACTIONS(9012), 1, + anon_sym_LT, + STATE(1729), 1, + sym_compound_statement, + STATE(3550), 1, + sym_parameter_list, + STATE(5431), 1, + sym_template_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6366), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [217638] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(9018), 1, anon_sym_requires, - [262275] = 8, + ACTIONS(9054), 1, + anon_sym_LBRACE, + STATE(3535), 1, + sym_compound_statement, + STATE(3550), 1, + sym_parameter_list, + STATE(5506), 1, + sym_requires_clause, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6413), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [217687] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(8881), 1, + ACTIONS(7666), 1, anon_sym_LBRACK, - STATE(4523), 1, + ACTIONS(8161), 1, + anon_sym_STAR, + ACTIONS(8163), 1, + anon_sym_AMP_AMP, + ACTIONS(8165), 1, + anon_sym_AMP, + STATE(3570), 1, sym_parameter_list, - STATE(7190), 1, + STATE(5604), 1, sym__function_declarator_seq, - STATE(7078), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9760), 7, - anon_sym_COMMA, + STATE(6031), 1, + sym__abstract_declarator, + ACTIONS(7127), 4, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_try, - [262307] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(6082), 1, - anon_sym_LBRACE, - ACTIONS(8701), 1, - anon_sym_COLON_COLON, - ACTIONS(8790), 1, - sym_identifier, - STATE(3296), 1, - sym_template_type, - STATE(3391), 1, - sym_enumerator_list, - STATE(7302), 1, - sym__scope_resolution, - ACTIONS(9762), 2, - anon_sym_class, - anon_sym_struct, - STATE(4664), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [262347] = 2, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [217728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9517), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(9086), 1, + anon_sym_LBRACK, + ACTIONS(9084), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [262367] = 7, + [217753] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9698), 1, + ACTIONS(6747), 1, + anon_sym_requires, + ACTIONS(6802), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, + anon_sym_LBRACK, + STATE(5285), 1, + sym_trailing_return_type, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [217790] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, sym_identifier, - STATE(6745), 1, - sym_string_literal, - STATE(7092), 1, - sym_raw_string_literal, - STATE(8279), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [262397] = 7, + ACTIONS(7502), 1, + anon_sym_LPAREN2, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6350), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [217833] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9698), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, sym_identifier, - STATE(6766), 1, - sym_string_literal, - STATE(7092), 1, - sym_raw_string_literal, - STATE(8371), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [262427] = 8, + ACTIONS(7502), 1, + anon_sym_LPAREN2, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6461), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [217876] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(8881), 1, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, anon_sym_LBRACK, - STATE(4523), 1, + ACTIONS(9018), 1, + anon_sym_requires, + STATE(1735), 1, + sym_compound_statement, + STATE(3550), 1, sym_parameter_list, - STATE(7190), 1, + STATE(5473), 1, + sym_requires_clause, + STATE(5604), 1, sym__function_declarator_seq, - STATE(7078), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9764), 7, + STATE(6332), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [217925] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(9018), 1, + anon_sym_requires, + ACTIONS(9074), 1, + anon_sym_LBRACE, + STATE(2687), 1, + sym_compound_statement, + STATE(3550), 1, + sym_parameter_list, + STATE(5548), 1, + sym_requires_clause, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6435), 1, + sym__abstract_declarator, + STATE(6470), 1, + sym_abstract_function_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [217974] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9090), 1, + anon_sym_LBRACK, + ACTIONS(9088), 16, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [262459] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9698), 1, - sym_identifier, - STATE(6754), 1, - sym_string_literal, - STATE(7092), 1, - sym_raw_string_literal, - STATE(8052), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [262489] = 7, + anon_sym_requires, + [217999] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9698), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, sym_identifier, - STATE(6782), 1, - sym_string_literal, - STATE(7092), 1, - sym_raw_string_literal, - STATE(8191), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [262519] = 7, + ACTIONS(7502), 1, + anon_sym_LPAREN2, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5942), 1, + sym__type_declarator, + STATE(6232), 1, + sym__type_definition_declarators, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [218042] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(9698), 1, - sym_identifier, - STATE(6756), 1, - sym_string_literal, - STATE(7092), 1, - sym_raw_string_literal, - STATE(8363), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [262549] = 2, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(8646), 1, + anon_sym_COMMA, + ACTIONS(8648), 1, + anon_sym_LPAREN2, + ACTIONS(8650), 1, + anon_sym_SEMI, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(8656), 1, + anon_sym_EQ, + STATE(3511), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(6846), 1, + aux_sym__declaration_declarator_repeat1, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(8658), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6853), 2, + sym_argument_list, + sym_initializer_list, + [218091] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9559), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6808), 1, + anon_sym_DASH_GT, + ACTIONS(8894), 1, + anon_sym_LBRACK, + ACTIONS(9092), 1, + anon_sym_requires, + STATE(5636), 1, + sym_trailing_return_type, + ACTIONS(8896), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [262569] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9698), 1, - sym_identifier, - STATE(6749), 1, - sym_string_literal, - STATE(7092), 1, - sym_raw_string_literal, - STATE(8388), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [262599] = 3, + [218127] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6080), 1, + ACTIONS(6808), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, anon_sym_LBRACK, - ACTIONS(6078), 12, - anon_sym_COMMA, + ACTIONS(7983), 1, + anon_sym_requires, + STATE(5646), 1, + sym_trailing_return_type, + ACTIONS(7905), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [262620] = 3, + [218163] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6202), 12, + ACTIONS(9095), 2, + anon_sym_final, + anon_sym_override, + STATE(5438), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(8984), 12, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [262641] = 6, + anon_sym_requires, + [218189] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, anon_sym_LBRACK, - STATE(4638), 1, + STATE(3550), 1, sym_parameter_list, - STATE(6654), 1, + STATE(5604), 1, sym__function_declarator_seq, - ACTIONS(9667), 9, + STATE(6054), 1, + sym__abstract_declarator, + ACTIONS(7127), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [262668] = 3, + anon_sym_SEMI, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [218229] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7597), 1, + ACTIONS(6808), 1, + anon_sym_DASH_GT, + ACTIONS(6851), 1, + anon_sym_requires, + ACTIONS(8080), 1, anon_sym_LBRACK, - ACTIONS(4920), 12, - anon_sym_COMMA, + STATE(5641), 1, + sym_trailing_return_type, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [262689] = 5, + [218265] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9766), 1, + ACTIONS(9098), 1, + sym_identifier, + ACTIONS(4840), 2, anon_sym_RPAREN, - STATE(6723), 2, + anon_sym_COLON, + STATE(5455), 3, sym_string_literal, sym_raw_string_literal, - ACTIONS(9598), 5, + aux_sym_concatenated_string_repeat1, + ACTIONS(9100), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(9600), 5, + ACTIONS(9102), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [262714] = 6, + [218295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, - anon_sym_LBRACK, - STATE(4638), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9665), 9, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5438), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(8923), 12, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_COLON, anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [262741] = 11, + [218321] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, + anon_sym_LPAREN2, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(6066), 1, + sym__type_declarator, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [218361] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3571), 1, anon_sym_LBRACE, - ACTIONS(7597), 1, + ACTIONS(8648), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, anon_sym_LBRACK, - ACTIONS(9768), 1, - anon_sym_SEMI, - ACTIONS(9770), 1, + ACTIONS(8656), 1, anon_sym_EQ, - ACTIONS(9772), 1, - anon_sym_COLON, - ACTIONS(9774), 1, - anon_sym_try, - STATE(1360), 1, - sym_compound_statement, - STATE(8708), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1361), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [262778] = 5, + STATE(3511), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(7031), 1, + sym_gnu_asm_expression, + ACTIONS(8658), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9104), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6853), 2, + sym_argument_list, + sym_initializer_list, + [218405] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9776), 1, + ACTIONS(6808), 1, + anon_sym_DASH_GT, + ACTIONS(6851), 1, + anon_sym_requires, + ACTIONS(8250), 1, + anon_sym_LBRACK, + STATE(5656), 1, + sym_trailing_return_type, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 6, anon_sym_RPAREN, - STATE(6723), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(9598), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9600), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [262803] = 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [218441] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(6063), 1, + sym__type_declarator, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [218481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3751), 1, anon_sym_LBRACK, - STATE(4638), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9663), 9, + ACTIONS(3753), 15, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [262830] = 11, + [218505] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(7597), 1, - anon_sym_LBRACK, - ACTIONS(9772), 1, - anon_sym_COLON, - ACTIONS(9778), 1, - anon_sym_SEMI, - ACTIONS(9780), 1, - anon_sym_EQ, - ACTIONS(9782), 1, - anon_sym_try, - STATE(1327), 1, - sym_compound_statement, - STATE(8786), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1320), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [262867] = 11, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(5967), 1, + sym__type_declarator, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [218545] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(9784), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, sym_identifier, - ACTIONS(9786), 1, - anon_sym_COLON_COLON, - STATE(6970), 1, - sym__scope_resolution, - STATE(8626), 1, - sym_operator_name, - STATE(8839), 1, - sym_field_initializer, - STATE(7626), 2, - sym_template_method, - sym_qualified_field_identifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [262904] = 11, + ACTIONS(7502), 1, + anon_sym_LPAREN2, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(6080), 1, + sym__type_declarator, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [218585] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7597), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(6705), 1, + anon_sym_LT, + STATE(5598), 1, + sym_template_argument_list, + ACTIONS(7196), 2, anon_sym_LBRACK, - ACTIONS(9772), 1, anon_sym_COLON, - ACTIONS(9788), 1, + ACTIONS(4615), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - ACTIONS(9790), 1, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(9792), 1, anon_sym_EQ, - ACTIONS(9794), 1, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - STATE(2524), 1, - sym_compound_statement, - STATE(8496), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2526), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [262941] = 6, + [218615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(3755), 1, anon_sym_LBRACK, - STATE(4638), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9671), 9, + ACTIONS(3757), 15, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [262968] = 7, + [218639] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7204), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, + anon_sym_LPAREN2, + ACTIONS(7504), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + sym_primitive_type, + STATE(2445), 1, + sym_pointer_type_declarator, + STATE(6070), 1, + sym__type_declarator, + STATE(7570), 1, + sym_ms_based_modifier, + ACTIONS(7506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2450), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [218679] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6808), 1, + anon_sym_DASH_GT, + ACTIONS(8080), 1, anon_sym_LBRACK, - ACTIONS(7367), 1, + ACTIONS(8173), 1, anon_sym_requires, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(5640), 1, + sym_trailing_return_type, + ACTIONS(8082), 2, anon_sym_final, anon_sym_override, - STATE(6498), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 6, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [262997] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, - anon_sym_LBRACK, - STATE(4638), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9669), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [263024] = 7, + [218715] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7239), 1, + ACTIONS(6808), 1, + anon_sym_DASH_GT, + ACTIONS(8250), 1, anon_sym_LBRACK, - ACTIONS(7367), 1, + ACTIONS(8339), 1, anon_sym_requires, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(5567), 1, + sym_trailing_return_type, + ACTIONS(8252), 2, anon_sym_final, anon_sym_override, - STATE(6527), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 6, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [263053] = 5, + [218751] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9796), 1, + ACTIONS(9106), 1, + sym_identifier, + ACTIONS(4823), 2, anon_sym_RPAREN, - STATE(6723), 2, + anon_sym_COLON, + STATE(5455), 3, sym_string_literal, sym_raw_string_literal, - ACTIONS(9598), 5, + aux_sym_concatenated_string_repeat1, + ACTIONS(9109), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(9600), 5, + ACTIONS(9112), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [263078] = 6, + [218781] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(6808), 1, + anon_sym_DASH_GT, + ACTIONS(6851), 1, + anon_sym_requires, + ACTIONS(8894), 1, anon_sym_LBRACK, - STATE(4638), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9619), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + STATE(5658), 1, + sym_trailing_return_type, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [263105] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(7597), 1, - anon_sym_LBRACK, - ACTIONS(9772), 1, - anon_sym_COLON, - ACTIONS(9798), 1, - anon_sym_SEMI, - ACTIONS(9800), 1, - anon_sym_EQ, - ACTIONS(9802), 1, - anon_sym_try, - STATE(1465), 1, - sym_compound_statement, - STATE(8642), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(1464), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [263142] = 5, + anon_sym_LBRACE, + anon_sym_try, + [218817] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9804), 1, + ACTIONS(9115), 1, + sym_identifier, + ACTIONS(4812), 2, anon_sym_RPAREN, - STATE(6723), 2, + anon_sym_COLON, + STATE(5441), 3, sym_string_literal, sym_raw_string_literal, - ACTIONS(9598), 5, + aux_sym_concatenated_string_repeat1, + ACTIONS(9100), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(9600), 5, + ACTIONS(9102), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [263167] = 7, + [218847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 1, - anon_sym_requires, - ACTIONS(8746), 1, + ACTIONS(5763), 1, anon_sym_LBRACK, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 6, + ACTIONS(9117), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(5761), 14, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_LT, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [263196] = 6, + [218873] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(7666), 1, anon_sym_LBRACK, - STATE(4638), 1, + ACTIONS(7966), 1, + anon_sym_STAR, + ACTIONS(7968), 1, + anon_sym_AMP_AMP, + ACTIONS(7970), 1, + anon_sym_AMP, + STATE(3605), 1, sym_parameter_list, - STATE(6654), 1, + STATE(5604), 1, sym__function_declarator_seq, - ACTIONS(9675), 9, + STATE(6084), 1, + sym__abstract_declarator, + ACTIONS(7127), 3, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [263223] = 11, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [218913] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(7597), 1, + ACTIONS(6808), 1, + anon_sym_DASH_GT, + ACTIONS(6851), 1, + anon_sym_requires, + ACTIONS(7901), 1, anon_sym_LBRACK, - ACTIONS(9772), 1, - anon_sym_COLON, - ACTIONS(9780), 1, - anon_sym_EQ, - ACTIONS(9782), 1, - anon_sym_try, - ACTIONS(9806), 1, - anon_sym_SEMI, - STATE(1270), 1, - sym_compound_statement, - STATE(8732), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, + STATE(5634), 1, + sym_trailing_return_type, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(1271), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [263260] = 11, + anon_sym_LBRACE, + anon_sym_try, + [218949] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_LBRACE, - ACTIONS(7597), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(6705), 1, + anon_sym_LT, + STATE(5598), 1, + sym_template_argument_list, + ACTIONS(4566), 2, anon_sym_LBRACK, - ACTIONS(9772), 1, anon_sym_COLON, - ACTIONS(9808), 1, + ACTIONS(4571), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - ACTIONS(9810), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(9812), 1, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - STATE(561), 1, + [218979] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(9064), 1, + anon_sym_LBRACE, + STATE(3550), 1, + sym_parameter_list, + STATE(3674), 1, sym_compound_statement, - STATE(8559), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6245), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [219022] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(9119), 1, + sym_identifier, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5968), 1, + sym__scope_resolution, + STATE(1950), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [219059] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8367), 1, anon_sym_LPAREN2, + ACTIONS(9123), 1, + anon_sym_LBRACK, + STATE(3506), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9121), 11, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(560), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [263297] = 5, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [219088] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9814), 1, + ACTIONS(9125), 1, anon_sym_RPAREN, - STATE(6723), 2, + ACTIONS(9127), 1, + anon_sym_COLON, + STATE(6471), 1, + sym_gnu_asm_output_operand_list, + STATE(5457), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(9598), 5, + ACTIONS(9100), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(9600), 5, + ACTIONS(9102), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [263322] = 7, + [219119] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 1, - anon_sym_requires, - ACTIONS(8859), 1, - anon_sym_LBRACK, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 6, - anon_sym_RPAREN, + ACTIONS(8367), 1, anon_sym_LPAREN2, + ACTIONS(9123), 1, + anon_sym_LBRACK, + STATE(3506), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9129), 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, - [263351] = 6, + anon_sym_requires, + [219148] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(4623), 1, + STATE(3506), 1, sym_parameter_list, - STATE(6654), 1, + STATE(5362), 1, sym__function_declarator_seq, - ACTIONS(9663), 9, + ACTIONS(9131), 11, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [263378] = 11, + [219177] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(770), 1, - anon_sym_LBRACE, - ACTIONS(7597), 1, - anon_sym_LBRACK, - ACTIONS(9770), 1, - anon_sym_EQ, - ACTIONS(9772), 1, - anon_sym_COLON, - ACTIONS(9774), 1, - anon_sym_try, - ACTIONS(9816), 1, - anon_sym_SEMI, - STATE(1279), 1, - sym_compound_statement, - STATE(8595), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, + ACTIONS(8367), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1280), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [263415] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7367), 1, - anon_sym_requires, - ACTIONS(8867), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(6643), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(3506), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9133), 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, - [263444] = 7, + anon_sym_requires, + [219206] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 1, + ACTIONS(6834), 1, + anon_sym_DASH_GT, + ACTIONS(6845), 1, anon_sym_requires, - ACTIONS(8863), 1, - anon_sym_LBRACK, - STATE(6676), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(5557), 1, + sym_trailing_return_type, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - STATE(6519), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8861), 6, + aux_sym__function_postfix_repeat1, + STATE(5555), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 6, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_try, - [263473] = 3, + anon_sym_LBRACK, + [219239] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9820), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9123), 1, anon_sym_LBRACK, - ACTIONS(9818), 12, + STATE(3506), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9135), 11, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, anon_sym_try, - [263494] = 7, + anon_sym_requires, + [219268] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 1, - anon_sym_requires, - ACTIONS(9193), 1, - anon_sym_LBRACK, - STATE(6707), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6571), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9191), 6, - anon_sym_RPAREN, + ACTIONS(8367), 1, anon_sym_LPAREN2, + ACTIONS(9123), 1, + anon_sym_LBRACK, + STATE(3506), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9137), 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, - [263523] = 6, + anon_sym_requires, + [219297] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7371), 1, + ACTIONS(6821), 1, + anon_sym_DASH_GT, + ACTIONS(6853), 1, anon_sym_requires, - STATE(6894), 1, - sym_requires_clause, - ACTIONS(7359), 2, + STATE(5762), 1, + sym_trailing_return_type, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - STATE(6713), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym__function_postfix_repeat1, + STATE(5555), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, - [263550] = 11, + anon_sym_EQ, + anon_sym_try, + [219330] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7597), 1, - anon_sym_LBRACK, - ACTIONS(9772), 1, - anon_sym_COLON, - ACTIONS(9822), 1, - anon_sym_SEMI, - ACTIONS(9824), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(9826), 1, - anon_sym_EQ, - ACTIONS(9828), 1, - anon_sym_try, - STATE(2677), 1, - sym_compound_statement, - STATE(8593), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, + ACTIONS(4603), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2695), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [263587] = 7, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_LBRACK, + STATE(1734), 1, + sym_compound_statement, + STATE(3550), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6319), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [219373] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 1, + ACTIONS(6821), 1, + anon_sym_DASH_GT, + ACTIONS(7978), 1, anon_sym_requires, - ACTIONS(9492), 1, - anon_sym_LBRACK, - STATE(6689), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(5670), 1, + sym_trailing_return_type, + ACTIONS(7972), 2, anon_sym_final, anon_sym_override, - STATE(6531), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9490), 6, - anon_sym_RPAREN, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 6, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_try, - [263616] = 6, + [219406] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(3673), 1, + anon_sym_COLON_COLON, + ACTIONS(9139), 1, + sym_identifier, + STATE(3112), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5983), 1, + sym__scope_resolution, + STATE(3066), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [219443] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(4623), 1, + STATE(3397), 1, sym_parameter_list, - STATE(6654), 1, + STATE(5362), 1, sym__function_declarator_seq, - ACTIONS(9665), 9, + ACTIONS(9141), 11, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -594401,19 +471994,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [263643] = 6, + [219472] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(4623), 1, + STATE(3397), 1, sym_parameter_list, - STATE(6654), 1, + STATE(5362), 1, sym__function_declarator_seq, - ACTIONS(9667), 9, + ACTIONS(9121), 11, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -594422,19 +472017,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [263670] = 6, + [219501] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8034), 1, + anon_sym_COLON_COLON, + ACTIONS(9143), 1, + sym_identifier, + STATE(2421), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5960), 1, + sym__scope_resolution, + STATE(3041), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8036), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [219538] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(4623), 1, + STATE(3397), 1, sym_parameter_list, - STATE(6654), 1, + STATE(5362), 1, sym__function_declarator_seq, - ACTIONS(9669), 9, + ACTIONS(9129), 11, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -594443,19 +472067,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [263697] = 6, + [219567] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(9139), 1, + sym_identifier, + STATE(3054), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5992), 1, + sym__scope_resolution, + STATE(3066), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(53), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [219604] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(4623), 1, + STATE(3397), 1, sym_parameter_list, - STATE(6654), 1, + STATE(5362), 1, sym__function_declarator_seq, - ACTIONS(9671), 9, + ACTIONS(9131), 11, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -594464,478 +472117,360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [263724] = 11, + [219633] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(7597), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9123), 1, anon_sym_LBRACK, - ACTIONS(9772), 1, - anon_sym_COLON, - ACTIONS(9800), 1, - anon_sym_EQ, - ACTIONS(9802), 1, - anon_sym_try, - ACTIONS(9830), 1, + STATE(3397), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9133), 11, + anon_sym_COMMA, anon_sym_SEMI, - STATE(1426), 1, - sym_compound_statement, - STATE(8512), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, - anon_sym_LPAREN2, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - STATE(1428), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [263761] = 5, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [219662] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9832), 1, + ACTIONS(9127), 1, + anon_sym_COLON, + ACTIONS(9145), 1, anon_sym_RPAREN, - STATE(6723), 2, + STATE(6653), 1, + sym_gnu_asm_output_operand_list, + STATE(5457), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(9598), 5, + ACTIONS(9100), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(9600), 5, + ACTIONS(9102), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [263786] = 7, + [219693] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9617), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(6996), 1, + STATE(3397), 1, sym_parameter_list, - STATE(7107), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5976), 7, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9135), 11, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [263815] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7371), 1, - anon_sym_requires, - STATE(6891), 1, - sym_requires_clause, - ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - [263842] = 5, + anon_sym_try, + anon_sym_requires, + [219722] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9834), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6897), 1, + anon_sym_COLON_COLON, + ACTIONS(9119), 1, + sym_identifier, + STATE(4914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5966), 1, + sym__scope_resolution, + STATE(1950), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(6899), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [219759] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(7998), 1, + anon_sym_COLON_COLON, + ACTIONS(9147), 1, + sym_identifier, + STATE(2297), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5951), 1, + sym__scope_resolution, + STATE(2768), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2900), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [219796] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9127), 1, + anon_sym_COLON, + ACTIONS(9149), 1, anon_sym_RPAREN, - STATE(6723), 2, + STATE(6508), 1, + sym_gnu_asm_output_operand_list, + STATE(5457), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(9598), 5, + ACTIONS(9100), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(9600), 5, + ACTIONS(9102), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [263867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACK, - ACTIONS(9836), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [263888] = 7, + [219827] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9617), 1, - anon_sym_LBRACK, - STATE(6996), 1, - sym_parameter_list, - STATE(7107), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5991), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(9127), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [263917] = 6, + ACTIONS(9151), 1, + anon_sym_RPAREN, + STATE(6606), 1, + sym_gnu_asm_output_operand_list, + STATE(5457), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9100), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9102), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [219858] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, - anon_sym_LBRACK, - STATE(4623), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9619), 9, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [263944] = 6, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8090), 1, + anon_sym_COLON_COLON, + ACTIONS(9153), 1, + sym_identifier, + STATE(2096), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5965), 1, + sym__scope_resolution, + STATE(2486), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8092), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [219895] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(9155), 1, anon_sym_LBRACK, - STATE(4623), 1, + STATE(5697), 1, sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9675), 9, + STATE(5633), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5582), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [263971] = 7, + [219926] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9617), 1, + ACTIONS(9155), 1, anon_sym_LBRACK, - STATE(6996), 1, + STATE(5697), 1, sym_parameter_list, - STATE(7107), 2, + STATE(5633), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(5965), 7, + ACTIONS(5563), 9, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [264000] = 5, + anon_sym_GT2, + anon_sym_try, + [219957] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9840), 1, + ACTIONS(9127), 1, + anon_sym_COLON, + ACTIONS(9157), 1, anon_sym_RPAREN, - STATE(6723), 2, + STATE(6740), 1, + sym_gnu_asm_output_operand_list, + STATE(5457), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(9598), 5, + ACTIONS(9100), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(9600), 5, + ACTIONS(9102), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [264025] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_LBRACE, - ACTIONS(7597), 1, - anon_sym_LBRACK, - ACTIONS(9772), 1, - anon_sym_COLON, - ACTIONS(9810), 1, - anon_sym_EQ, - ACTIONS(9812), 1, - anon_sym_try, - ACTIONS(9842), 1, - anon_sym_SEMI, - STATE(597), 1, - sym_compound_statement, - STATE(8661), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(596), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [264062] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7371), 1, - anon_sym_requires, - STATE(6885), 1, - sym_requires_clause, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6716), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - [264089] = 7, + [219988] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9617), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(6996), 1, + STATE(3497), 1, sym_parameter_list, - STATE(7107), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5951), 7, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9141), 11, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [264118] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(371), 1, - anon_sym_LBRACE, - ACTIONS(7597), 1, - anon_sym_LBRACK, - ACTIONS(9772), 1, - anon_sym_COLON, - ACTIONS(9844), 1, - anon_sym_SEMI, - ACTIONS(9846), 1, - anon_sym_EQ, - ACTIONS(9848), 1, - anon_sym_try, - STATE(783), 1, - sym_compound_statement, - STATE(8831), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(785), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [264155] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7371), 1, - anon_sym_requires, - STATE(6879), 1, - sym_requires_clause, - ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(6717), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - [264182] = 11, + anon_sym_requires, + [220017] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7597), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9123), 1, anon_sym_LBRACK, - ACTIONS(9772), 1, - anon_sym_COLON, - ACTIONS(9824), 1, + STATE(3397), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9137), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(9826), 1, anon_sym_EQ, - ACTIONS(9828), 1, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_try, - ACTIONS(9850), 1, - anon_sym_SEMI, - STATE(2721), 1, - sym_compound_statement, - STATE(8606), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2722), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [264219] = 12, + anon_sym_requires, + [220046] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(9786), 1, + ACTIONS(6965), 1, anon_sym_COLON_COLON, - ACTIONS(9852), 1, + ACTIONS(9119), 1, sym_identifier, - ACTIONS(9854), 1, - anon_sym_template, - STATE(6970), 1, + STATE(4405), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5975), 1, sym__scope_resolution, - STATE(8626), 1, - sym_operator_name, - STATE(8748), 1, - sym_template_method, - STATE(8750), 1, - sym_dependent_field_identifier, - STATE(8751), 1, - sym_qualified_field_identifier, - STATE(9648), 3, + STATE(4850), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7683), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [264258] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7371), 1, - anon_sym_requires, - STATE(6881), 1, - sym_requires_clause, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6718), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - [264285] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7597), 1, - anon_sym_LBRACK, - ACTIONS(9772), 1, - anon_sym_COLON, - ACTIONS(9856), 1, - anon_sym_SEMI, - ACTIONS(9858), 1, - anon_sym_LBRACE, - ACTIONS(9860), 1, - anon_sym_EQ, - ACTIONS(9862), 1, - anon_sym_try, - STATE(2833), 1, - sym_compound_statement, - STATE(8741), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2832), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [264322] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 13, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [264341] = 3, + ACTIONS(6967), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [220083] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9866), 1, + ACTIONS(5732), 1, anon_sym_LBRACK, - ACTIONS(9864), 12, + ACTIONS(6705), 1, + anon_sym_LT, + STATE(5598), 1, + sym_template_argument_list, + ACTIONS(5730), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -594948,84 +472483,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [264362] = 6, + [220110] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7371), 1, + ACTIONS(6834), 1, + anon_sym_DASH_GT, + ACTIONS(9162), 1, anon_sym_requires, - STATE(6869), 1, - sym_requires_clause, - ACTIONS(7359), 2, + STATE(5588), 1, + sym_trailing_return_type, + ACTIONS(9159), 2, anon_sym_final, anon_sym_override, - STATE(6710), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8861), 7, + aux_sym__function_postfix_repeat1, + STATE(5555), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, - [264389] = 11, + [220143] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7597), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9155), 1, anon_sym_LBRACK, - ACTIONS(9772), 1, - anon_sym_COLON, - ACTIONS(9858), 1, + STATE(5697), 1, + sym_parameter_list, + STATE(5633), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5572), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9860), 1, anon_sym_EQ, - ACTIONS(9862), 1, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - ACTIONS(9868), 1, - anon_sym_SEMI, - STATE(2949), 1, - sym_compound_statement, - STATE(8680), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2948), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [264426] = 6, + [220174] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7371), 1, + ACTIONS(6834), 1, + anon_sym_DASH_GT, + ACTIONS(6845), 1, anon_sym_requires, - STATE(6878), 1, - sym_requires_clause, - ACTIONS(7359), 2, + STATE(5553), 1, + sym_trailing_return_type, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - STATE(6719), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9191), 7, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, - [264453] = 3, + [220207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9872), 1, + ACTIONS(5763), 1, anon_sym_LBRACK, - ACTIONS(9870), 12, + ACTIONS(5761), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_LT, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -595034,229 +472577,501 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [264474] = 3, + [220230] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 1, + ACTIONS(5634), 1, anon_sym_LBRACK, - ACTIONS(5198), 12, + ACTIONS(9165), 1, + anon_sym_LBRACK_LBRACK, + STATE(5501), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5632), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [264495] = 10, + [220257] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6821), 1, + anon_sym_DASH_GT, + ACTIONS(8182), 1, + anon_sym_requires, + STATE(5684), 1, + sym_trailing_return_type, + ACTIONS(8179), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [220290] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(6834), 1, + anon_sym_DASH_GT, + ACTIONS(8309), 1, + anon_sym_requires, + STATE(5584), 1, + sym_trailing_return_type, + ACTIONS(8287), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8404), 1, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(8724), 1, + [220323] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6917), 1, + anon_sym_COLON_COLON, + ACTIONS(9139), 1, + sym_identifier, + STATE(3990), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5982), 1, + sym__scope_resolution, + STATE(4479), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(6919), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [220360] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6994), 1, + anon_sym_COLON_COLON, + ACTIONS(9119), 1, + sym_identifier, + STATE(2297), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5956), 1, + sym__scope_resolution, + STATE(2768), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2900), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [220397] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(4605), 1, anon_sym_STAR, - ACTIONS(8726), 1, + ACTIONS(4607), 1, anon_sym_AMP_AMP, - ACTIONS(8728), 1, + ACTIONS(4609), 1, anon_sym_AMP, - STATE(4709), 1, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(9054), 1, + anon_sym_LBRACE, + STATE(3533), 1, + sym_compound_statement, + STATE(3550), 1, sym_parameter_list, - STATE(6905), 1, + STATE(5604), 1, sym__function_declarator_seq, - STATE(7330), 1, + STATE(6222), 1, + sym_abstract_function_declarator, + STATE(6435), 1, sym__abstract_declarator, - STATE(6825), 5, + STATE(5647), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, - sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [264530] = 11, + [220440] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7597), 1, - anon_sym_LBRACK, - ACTIONS(9772), 1, - anon_sym_COLON, - ACTIONS(9790), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(9139), 1, + sym_identifier, + STATE(3990), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5987), 1, + sym__scope_resolution, + STATE(4479), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(6919), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [220477] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6821), 1, + anon_sym_DASH_GT, + ACTIONS(6853), 1, + anon_sym_requires, + STATE(5676), 1, + sym_trailing_return_type, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9792), 1, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(9794), 1, anon_sym_try, - ACTIONS(9874), 1, - anon_sym_SEMI, - STATE(2492), 1, - sym_compound_statement, - STATE(8524), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, - anon_sym_LPAREN2, + [220510] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9170), 1, + anon_sym___attribute__, + ACTIONS(9175), 1, + anon_sym_alignas, + ACTIONS(9173), 3, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - STATE(2548), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [264567] = 6, + anon_sym_LBRACE, + STATE(5509), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + ACTIONS(9168), 7, + anon_sym___declspec, + anon_sym_COLON, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + [220539] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9127), 1, + anon_sym_COLON, + ACTIONS(9178), 1, + anon_sym_RPAREN, + STATE(6816), 1, + sym_gnu_asm_output_operand_list, + STATE(5457), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9100), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9102), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [220570] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7371), 1, + ACTIONS(6821), 1, + anon_sym_DASH_GT, + ACTIONS(6853), 1, anon_sym_requires, - STATE(6874), 1, - sym_requires_clause, - ACTIONS(7359), 2, + STATE(5728), 1, + sym_trailing_return_type, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - STATE(6721), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9490), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, - [264594] = 2, + anon_sym_EQ, + anon_sym_try, + [220603] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4611), 1, + anon_sym_COLON_COLON, + ACTIONS(9139), 1, + sym_identifier, + STATE(3054), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5953), 1, + sym__scope_resolution, + STATE(3066), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(53), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [220640] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2196), 13, + ACTIONS(6821), 1, + anon_sym_DASH_GT, + ACTIONS(8290), 1, + anon_sym_requires, + STATE(5686), 1, + sym_trailing_return_type, + ACTIONS(8287), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [264613] = 3, + [220673] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5561), 1, - sym_identifier, - ACTIONS(5563), 12, - anon_sym_RPAREN, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(9016), 1, + anon_sym_LBRACE, + STATE(3185), 1, + sym_compound_statement, + STATE(3550), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6230), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [220716] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9127), 1, anon_sym_COLON, + ACTIONS(9180), 1, + anon_sym_RPAREN, + STATE(6777), 1, + sym_gnu_asm_output_operand_list, + STATE(5457), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9100), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, + ACTIONS(9102), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [264634] = 3, + [220747] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, - sym_identifier, - ACTIONS(5594), 12, - anon_sym_RPAREN, + ACTIONS(9127), 1, anon_sym_COLON, + ACTIONS(9182), 1, + anon_sym_RPAREN, + STATE(6691), 1, + sym_gnu_asm_output_operand_list, + STATE(5457), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9100), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, + ACTIONS(9102), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [264655] = 3, + [220778] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5600), 1, - sym_identifier, - ACTIONS(5602), 12, - anon_sym_RPAREN, + ACTIONS(9127), 1, anon_sym_COLON, + ACTIONS(9184), 1, + anon_sym_RPAREN, + STATE(6561), 1, + sym_gnu_asm_output_operand_list, + STATE(5457), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9100), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, + ACTIONS(9102), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [264676] = 3, + [220809] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6018), 1, - anon_sym_LBRACK, - ACTIONS(6016), 12, + ACTIONS(6834), 1, + anon_sym_DASH_GT, + ACTIONS(8185), 1, + anon_sym_requires, + STATE(5577), 1, + sym_trailing_return_type, + ACTIONS(8179), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [264697] = 3, + anon_sym_LBRACK, + [220842] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6037), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9123), 1, anon_sym_LBRACK, - ACTIONS(6035), 12, + STATE(3506), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9141), 11, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [264718] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5052), 13, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [264737] = 3, + [220871] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5997), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9123), 1, anon_sym_LBRACK, - ACTIONS(5995), 12, + STATE(3497), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9137), 11, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, @@ -595264,150 +473079,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [264758] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [220900] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, - sym_identifier, - ACTIONS(5555), 12, - anon_sym_RPAREN, + ACTIONS(9127), 1, anon_sym_COLON, + ACTIONS(9186), 1, + anon_sym_RPAREN, + STATE(6551), 1, + sym_gnu_asm_output_operand_list, + STATE(5457), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9100), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, + ACTIONS(9102), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [264779] = 11, + [220931] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7597), 1, - anon_sym_LBRACK, - ACTIONS(9772), 1, + ACTIONS(9127), 1, anon_sym_COLON, - ACTIONS(9876), 1, - anon_sym_SEMI, - ACTIONS(9878), 1, - anon_sym_LBRACE, - ACTIONS(9880), 1, - anon_sym_EQ, - ACTIONS(9882), 1, - anon_sym_try, - STATE(2884), 1, - sym_compound_statement, - STATE(8651), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2880), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [264816] = 3, + ACTIONS(9188), 1, + anon_sym_RPAREN, + STATE(6701), 1, + sym_gnu_asm_output_operand_list, + STATE(5457), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9100), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9102), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [220962] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9886), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9155), 1, anon_sym_LBRACK, - ACTIONS(9884), 12, + STATE(5697), 1, + sym_parameter_list, + STATE(5633), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5550), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [264837] = 3, + [220993] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9888), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5737), 11, + ACTIONS(8367), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(9123), 1, + anon_sym_LBRACK, + STATE(3497), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9135), 11, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [264858] = 2, + [221022] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5036), 13, + ACTIONS(6821), 1, + anon_sym_DASH_GT, + ACTIONS(9190), 1, + anon_sym_requires, + STATE(5694), 1, + sym_trailing_return_type, + ACTIONS(9159), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5555), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [264877] = 3, + [221055] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6041), 1, - anon_sym_LBRACK, - ACTIONS(6039), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4603), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(9022), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [264898] = 2, + STATE(3550), 1, + sym_parameter_list, + STATE(4006), 1, + sym_compound_statement, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6358), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [221098] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 13, + ACTIONS(4603), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [264917] = 3, + ACTIONS(9056), 1, + anon_sym_LBRACE, + STATE(3366), 1, + sym_compound_statement, + STATE(3550), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6240), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [221141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6005), 1, + ACTIONS(5813), 1, anon_sym_LBRACK, - ACTIONS(6003), 12, + ACTIONS(5811), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_LT, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -595416,92 +473282,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [264938] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7597), 1, - anon_sym_LBRACK, - ACTIONS(9772), 1, - anon_sym_COLON, - ACTIONS(9878), 1, - anon_sym_LBRACE, - ACTIONS(9880), 1, - anon_sym_EQ, - ACTIONS(9882), 1, - anon_sym_try, - ACTIONS(9890), 1, - anon_sym_SEMI, - STATE(2847), 1, - sym_compound_statement, - STATE(8671), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2846), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [264975] = 2, + [221164] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 13, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, + ACTIONS(6834), 1, + anon_sym_DASH_GT, + ACTIONS(7975), 1, + anon_sym_requires, + STATE(5652), 1, + sym_trailing_return_type, + ACTIONS(7972), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [264994] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5026), 13, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [265013] = 2, + [221197] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 13, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6939), 1, + anon_sym_COLON_COLON, + ACTIONS(9139), 1, + sym_identifier, + STATE(3112), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5978), 1, + sym__scope_resolution, + STATE(3066), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [221234] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3571), 1, anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8373), 1, anon_sym_LBRACK, + ACTIONS(8377), 1, + anon_sym_COLON, + ACTIONS(9195), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [265032] = 3, + STATE(3481), 1, + sym_parameter_list, + STATE(5880), 1, + sym__function_declarator_seq, + STATE(6526), 1, + sym_bitfield_clause, + STATE(6529), 1, + sym_initializer_list, + STATE(5819), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9193), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [221277] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6053), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9123), 1, anon_sym_LBRACK, - ACTIONS(6051), 12, + STATE(3497), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9133), 11, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, @@ -595509,95 +473384,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [265053] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [221306] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6049), 1, - anon_sym_LBRACK, - ACTIONS(6047), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(9127), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [265074] = 2, + ACTIONS(9197), 1, + anon_sym_RPAREN, + STATE(6668), 1, + sym_gnu_asm_output_operand_list, + STATE(5457), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9100), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9102), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [221337] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 13, + ACTIONS(4603), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [265093] = 2, + ACTIONS(9020), 1, + anon_sym_LBRACE, + STATE(3550), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(5744), 1, + sym_compound_statement, + STATE(6248), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [221380] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 13, + ACTIONS(4603), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [265112] = 11, + ACTIONS(9044), 1, + anon_sym_LBRACE, + STATE(3550), 1, + sym_parameter_list, + STATE(5327), 1, + sym_compound_statement, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6432), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [221423] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(9784), 1, - sym_identifier, - ACTIONS(9786), 1, + ACTIONS(8012), 1, anon_sym_COLON_COLON, - STATE(6970), 1, + ACTIONS(9199), 1, + sym_identifier, + STATE(2336), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5980), 1, sym__scope_resolution, - STATE(8264), 1, - sym_field_initializer, - STATE(8626), 1, - sym_operator_name, - STATE(7626), 2, - sym_template_method, - sym_qualified_field_identifier, - STATE(9648), 3, + STATE(2785), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7683), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [265149] = 3, + ACTIONS(8014), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [221460] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9123), 1, anon_sym_LBRACK, - ACTIONS(6066), 12, + STATE(3497), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9131), 11, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, @@ -595605,32840 +473518,31273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [265170] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5010), 13, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [265189] = 2, + [221489] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(9201), 1, + sym_identifier, + STATE(1934), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5972), 1, + sym__scope_resolution, + STATE(1950), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [221526] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5060), 13, + ACTIONS(6834), 1, + anon_sym_DASH_GT, + ACTIONS(6845), 1, + anon_sym_requires, + STATE(5562), 1, + sym_trailing_return_type, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [265208] = 11, + [221559] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(371), 1, - anon_sym_LBRACE, - ACTIONS(7597), 1, + ACTIONS(4603), 1, + anon_sym_LPAREN2, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, + anon_sym_AMP_AMP, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, anon_sym_LBRACK, - ACTIONS(9772), 1, - anon_sym_COLON, - ACTIONS(9846), 1, - anon_sym_EQ, - ACTIONS(9848), 1, - anon_sym_try, - ACTIONS(9892), 1, - anon_sym_SEMI, - STATE(801), 1, + ACTIONS(9014), 1, + anon_sym_LBRACE, + STATE(1734), 1, sym_compound_statement, - STATE(8575), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(802), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [265245] = 2, + STATE(3550), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6385), 1, + sym_abstract_function_declarator, + STATE(6435), 1, + sym__abstract_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [221602] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8115), 1, + anon_sym_COLON_COLON, + ACTIONS(9203), 1, + sym_identifier, + STATE(2294), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5964), 1, + sym__scope_resolution, + STATE(2694), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8117), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [221639] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5014), 13, + ACTIONS(8367), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9123), 1, + anon_sym_LBRACK, + STATE(3497), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9129), 11, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [265264] = 2, + [221668] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5056), 13, + ACTIONS(8367), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9123), 1, + anon_sym_LBRACK, + STATE(3497), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9121), 11, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [265283] = 2, + [221697] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5056), 13, + ACTIONS(6834), 1, + anon_sym_DASH_GT, + ACTIONS(6845), 1, + anon_sym_requires, + STATE(5578), 1, + sym_trailing_return_type, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [265302] = 2, + [221730] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5056), 13, + ACTIONS(6821), 1, + anon_sym_DASH_GT, + ACTIONS(6853), 1, + anon_sym_requires, + STATE(5678), 1, + sym_trailing_return_type, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [265321] = 2, + [221763] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9127), 1, + anon_sym_COLON, + ACTIONS(9205), 1, + anon_sym_RPAREN, + STATE(6838), 1, + sym_gnu_asm_output_operand_list, + STATE(5457), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9100), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9102), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [221794] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9127), 1, + anon_sym_COLON, + ACTIONS(9207), 1, + anon_sym_RPAREN, + STATE(6535), 1, + sym_gnu_asm_output_operand_list, + STATE(5457), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9100), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9102), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [221825] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 13, + ACTIONS(4603), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(4605), 1, + anon_sym_STAR, + ACTIONS(4607), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4609), 1, + anon_sym_AMP, + ACTIONS(7666), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, + ACTIONS(9074), 1, + anon_sym_LBRACE, + STATE(2660), 1, + sym_compound_statement, + STATE(3550), 1, + sym_parameter_list, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6435), 1, + sym__abstract_declarator, + STATE(6455), 1, + sym_abstract_function_declarator, + STATE(5647), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [221868] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6861), 1, + anon_sym_DASH_GT, + ACTIONS(8220), 1, + anon_sym_requires, + STATE(5786), 1, + sym_trailing_return_type, + ACTIONS(8179), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [265340] = 3, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [221900] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6072), 1, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, anon_sym_LBRACK, - ACTIONS(6070), 12, + STATE(3514), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5792), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9209), 7, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [265361] = 4, + [221932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9888), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9894), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5745), 9, + ACTIONS(8892), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [265384] = 3, + [221952] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9898), 1, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, anon_sym_LBRACK, - ACTIONS(9896), 12, + STATE(3514), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5792), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9211), 7, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [265405] = 3, + [221984] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9902), 1, - anon_sym_LBRACK, - ACTIONS(9900), 12, + ACTIONS(6845), 1, + anon_sym_requires, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5555), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [265426] = 3, + [222012] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9906), 1, - anon_sym_LBRACK, - ACTIONS(9904), 12, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(5681), 1, + anon_sym_LBRACE, + ACTIONS(6994), 1, + anon_sym_COLON_COLON, + ACTIONS(8202), 1, + sym_identifier, + STATE(2511), 1, + sym_template_type, + STATE(2623), 1, + sym_enumerator_list, + STATE(5956), 1, + sym__scope_resolution, + ACTIONS(9213), 2, + anon_sym_class, + anon_sym_struct, + STATE(4591), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [222052] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8888), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [265447] = 5, + anon_sym_requires, + [222072] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9908), 1, - anon_sym_RPAREN, - STATE(6723), 2, + ACTIONS(9215), 1, + sym_identifier, + STATE(7400), 1, + sym_concatenated_string, + STATE(5716), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(9598), 5, + ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(9600), 5, + ACTIONS(151), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [265472] = 3, + [222100] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_LBRACK, - ACTIONS(4872), 12, + ACTIONS(6845), 1, + anon_sym_requires, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5558), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8888), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [265493] = 3, + [222128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_LBRACK, - ACTIONS(4872), 12, + ACTIONS(9088), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [265514] = 3, + anon_sym_requires, + [222148] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8373), 1, anon_sym_LBRACK, - ACTIONS(4872), 12, + STATE(3481), 1, + sym_parameter_list, + STATE(5880), 1, + sym__function_declarator_seq, + STATE(5819), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9217), 7, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [265535] = 3, + [222180] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9221), 1, anon_sym_LBRACK, - ACTIONS(4872), 12, + STATE(5501), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9219), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [265556] = 3, + [222206] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(9215), 1, + sym_identifier, + STATE(5487), 1, + sym_string_literal, + STATE(5836), 1, + sym_raw_string_literal, + STATE(6492), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [222236] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6845), 1, + anon_sym_requires, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4872), 12, + anon_sym_COLON, + [222264] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8072), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [265577] = 3, + anon_sym_requires, + [222284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_LBRACK, - ACTIONS(4872), 12, + ACTIONS(9050), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [265598] = 11, + anon_sym_requires, + [222304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, + ACTIONS(9070), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(9912), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7422), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7841), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [265634] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, - anon_sym_LBRACK, - STATE(4676), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9663), 8, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [265660] = 11, + [222324] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, + ACTIONS(7975), 1, + anon_sym_requires, + ACTIONS(7972), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 7, anon_sym_COMMA, - ACTIONS(9914), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7465), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7844), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [265696] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9916), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7420), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7849), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [265732] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9918), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7413), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7839), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [265768] = 11, + anon_sym_COLON, + [222352] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + ACTIONS(8894), 1, anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(9092), 1, + anon_sym_requires, + ACTIONS(8896), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9920), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7511), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7591), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [265804] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - STATE(3212), 1, - sym_parameter_list, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5951), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_try, - [265832] = 11, + [222382] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5790), 1, - anon_sym_LBRACE, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(8774), 1, + ACTIONS(9215), 1, sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(3121), 1, - sym_enumerator_list, - STATE(7275), 1, - sym__scope_resolution, - STATE(4461), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [265868] = 11, + STATE(7412), 1, + sym_concatenated_string, + STATE(5681), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [222410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, + ACTIONS(9080), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(9922), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7426), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7853), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [265904] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9924), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7507), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7965), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [265940] = 11, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [222430] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9926), 1, - anon_sym_SEMI, - STATE(3212), 1, + ACTIONS(8654), 1, + anon_sym_LBRACK, + STATE(3511), 1, sym_parameter_list, - STATE(7447), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7784), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [265976] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, + ACTIONS(9223), 7, anon_sym_COMMA, - ACTIONS(9928), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7427), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7855), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [266012] = 6, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [222462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - anon_sym_requires, - STATE(6874), 1, - sym_requires_clause, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6721), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9490), 6, + ACTIONS(9076), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [266038] = 6, + anon_sym_requires, + [222482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - anon_sym_requires, - STATE(6878), 1, - sym_requires_clause, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6719), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9191), 6, + ACTIONS(9066), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [266064] = 11, + anon_sym_requires, + [222502] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9930), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7489), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7617), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [266100] = 11, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(8196), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3647), 1, + sym_enumerator_list, + STATE(5992), 1, + sym__scope_resolution, + ACTIONS(9225), 2, + anon_sym_class, + anon_sym_struct, + STATE(3690), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [222542] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9932), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7434), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7862), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [266136] = 6, + ACTIONS(9215), 1, + sym_identifier, + STATE(5492), 1, + sym_string_literal, + STATE(5836), 1, + sym_raw_string_literal, + STATE(6702), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [222572] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(6851), 1, anon_sym_requires, - STATE(6885), 1, - sym_requires_clause, - ACTIONS(7359), 2, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(6716), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 6, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_try, - [266162] = 11, + [222602] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7156), 1, + ACTIONS(5453), 1, anon_sym_LBRACE, - ACTIONS(7280), 1, + ACTIONS(8090), 1, anon_sym_COLON_COLON, - ACTIONS(8764), 1, + ACTIONS(8216), 1, sym_identifier, - STATE(3369), 1, + STATE(2356), 1, sym_template_type, - STATE(4481), 1, + STATE(2412), 1, sym_enumerator_list, - STATE(7261), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(4696), 2, + ACTIONS(9227), 2, + anon_sym_class, + anon_sym_struct, + STATE(2355), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9648), 2, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [266198] = 6, + [222642] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(8309), 1, anon_sym_requires, - STATE(6881), 1, - sym_requires_clause, - ACTIONS(7359), 2, + ACTIONS(8287), 2, anon_sym_final, anon_sym_override, - STATE(6718), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 6, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [266224] = 10, + anon_sym_COLON, + [222670] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(6845), 1, + anon_sym_requires, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(7597), 1, anon_sym_LBRACK, - ACTIONS(9772), 1, anon_sym_COLON, - ACTIONS(9800), 1, - anon_sym_EQ, - ACTIONS(9802), 1, - anon_sym_try, - STATE(1465), 1, - sym_compound_statement, - STATE(8642), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1464), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [266258] = 11, + [222698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, + ACTIONS(8242), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(9934), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7417), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7833), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [266294] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9936), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7487), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7932), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [266330] = 11, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [222718] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(6082), 1, + ACTIONS(5692), 1, anon_sym_LBRACE, - ACTIONS(8701), 1, + ACTIONS(8034), 1, anon_sym_COLON_COLON, - ACTIONS(8790), 1, + ACTIONS(8237), 1, sym_identifier, - STATE(3296), 1, + STATE(2586), 1, sym_template_type, - STATE(3411), 1, + STATE(2933), 1, sym_enumerator_list, - STATE(7302), 1, + STATE(5960), 1, sym__scope_resolution, - STATE(4666), 2, + ACTIONS(9229), 2, + anon_sym_class, + anon_sym_struct, + STATE(2529), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9648), 2, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [266366] = 11, + [222758] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9938), 1, - anon_sym_SEMI, - STATE(3212), 1, + ACTIONS(8654), 1, + anon_sym_LBRACK, + STATE(3514), 1, sym_parameter_list, - STATE(7480), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5792), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7925), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [266402] = 11, + ACTIONS(9223), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [222790] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5972), 1, - anon_sym_LBRACE, - ACTIONS(8679), 1, - anon_sym_COLON_COLON, - ACTIONS(8784), 1, + ACTIONS(9215), 1, sym_identifier, - STATE(3180), 1, - sym_template_type, - STATE(3376), 1, - sym_enumerator_list, - STATE(7293), 1, - sym__scope_resolution, - STATE(3183), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [266438] = 11, + STATE(5521), 1, + sym_string_literal, + STATE(5836), 1, + sym_raw_string_literal, + STATE(6605), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [222820] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5790), 1, - anon_sym_LBRACE, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(8786), 1, + ACTIONS(9215), 1, sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(6061), 1, - sym_enumerator_list, - STATE(7274), 1, - sym__scope_resolution, - STATE(5833), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [266474] = 6, + STATE(5488), 1, + sym_string_literal, + STATE(5836), 1, + sym_raw_string_literal, + STATE(6658), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [222850] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(9162), 1, anon_sym_requires, - STATE(6879), 1, - sym_requires_clause, - ACTIONS(7359), 2, + ACTIONS(9159), 2, anon_sym_final, anon_sym_override, - STATE(6717), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [266500] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9940), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7448), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7790), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [266536] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7361), 1, - anon_sym_requires, - STATE(6891), 1, + aux_sym__function_postfix_repeat1, + STATE(5555), 2, + sym__function_postfix, sym_requires_clause, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 6, + ACTIONS(8892), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [266562] = 11, + anon_sym_COLON, + [222878] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9942), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7454), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7778), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [266598] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + ACTIONS(8654), 1, anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9944), 1, - anon_sym_SEMI, - STATE(3212), 1, + STATE(3514), 1, sym_parameter_list, - STATE(7456), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5792), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7776), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [266634] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, + ACTIONS(9231), 7, anon_sym_COMMA, - ACTIONS(9946), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7517), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7960), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [266670] = 11, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [222910] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9948), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7458), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7765), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [266706] = 11, + ACTIONS(9215), 1, + sym_identifier, + STATE(7437), 1, + sym_concatenated_string, + STATE(5764), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [222938] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9950), 1, - anon_sym_SEMI, - STATE(3212), 1, + ACTIONS(7127), 1, + anon_sym_COLON, + ACTIONS(7666), 1, + anon_sym_LBRACK, + ACTIONS(8138), 1, + anon_sym_STAR, + ACTIONS(8140), 1, + anon_sym_AMP_AMP, + ACTIONS(8142), 1, + anon_sym_AMP, + STATE(3661), 1, sym_parameter_list, - STATE(7459), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7760), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [266742] = 6, + STATE(5604), 1, + sym__function_declarator_seq, + STATE(6162), 1, + sym__abstract_declarator, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [222976] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(9236), 1, anon_sym_requires, - STATE(6894), 1, - sym_requires_clause, - ACTIONS(7359), 2, + ACTIONS(9233), 2, anon_sym_final, anon_sym_override, - STATE(6713), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 6, + aux_sym__function_postfix_repeat1, + STATE(5558), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8888), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [266768] = 11, + anon_sym_COLON, + [223004] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9952), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7485), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7736), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [266804] = 11, + ACTIONS(9215), 1, + sym_identifier, + STATE(7820), 1, + sym_concatenated_string, + STATE(5701), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [223032] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9215), 1, + sym_identifier, + STATE(5547), 1, + sym_string_literal, + STATE(5836), 1, + sym_raw_string_literal, + STATE(6556), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [223062] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9215), 1, + sym_identifier, + STATE(7280), 1, + sym_concatenated_string, + STATE(5735), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [223090] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(5436), 1, + anon_sym_LBRACE, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8198), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(2368), 1, + sym_enumerator_list, + STATE(5972), 1, + sym__scope_resolution, + ACTIONS(9239), 2, + anon_sym_class, + anon_sym_struct, + STATE(3607), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [223130] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6917), 1, + anon_sym_COLON_COLON, + ACTIONS(7911), 1, + anon_sym_LBRACE, + ACTIONS(8190), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(4460), 1, + sym_enumerator_list, + STATE(5982), 1, + sym__scope_resolution, + ACTIONS(9241), 2, + anon_sym_class, + anon_sym_struct, + STATE(4789), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [223170] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9954), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7440), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7885), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [266840] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + ACTIONS(8654), 1, anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9956), 1, - anon_sym_SEMI, - STATE(3212), 1, + STATE(3511), 1, sym_parameter_list, - STATE(7445), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7893), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [266876] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, + ACTIONS(9231), 7, anon_sym_COMMA, - ACTIONS(9958), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7457), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7898), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [266912] = 11, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [223202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(9243), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5376), 11, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9960), 1, + anon_sym_PIPE_PIPE, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7463), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7902), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [266948] = 3, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_or, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [223226] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9962), 2, + ACTIONS(9245), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9247), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5737), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(5398), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_or, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [266968] = 11, + [223250] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9964), 1, - anon_sym_SEMI, - STATE(3212), 1, + ACTIONS(8654), 1, + anon_sym_LBRACK, + STATE(3511), 1, sym_parameter_list, - STATE(7464), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7904), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [267004] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, + ACTIONS(9209), 7, anon_sym_COMMA, - ACTIONS(9966), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7472), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7911), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [267040] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(187), 1, anon_sym_LBRACE, - ACTIONS(7597), 1, - anon_sym_LBRACK, - ACTIONS(9772), 1, - anon_sym_COLON, - ACTIONS(9810), 1, anon_sym_EQ, - ACTIONS(9812), 1, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - STATE(597), 1, - sym_compound_statement, - STATE(8661), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(596), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [267074] = 10, + [223282] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(371), 1, - anon_sym_LBRACE, - ACTIONS(7597), 1, + ACTIONS(4594), 1, + anon_sym_COLON_COLON, + ACTIONS(4596), 2, anon_sym_LBRACK, - ACTIONS(9772), 1, anon_sym_COLON, - ACTIONS(9846), 1, - anon_sym_EQ, - ACTIONS(9848), 1, - anon_sym_try, - STATE(783), 1, - sym_compound_statement, - STATE(8831), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, + ACTIONS(4589), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(785), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [267108] = 10, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [223306] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_LBRACE, - ACTIONS(7597), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, anon_sym_LBRACK, - ACTIONS(9772), 1, - anon_sym_COLON, - ACTIONS(9810), 1, + STATE(3511), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9211), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(9812), 1, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - STATE(561), 1, - sym_compound_statement, - STATE(8559), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(560), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [267142] = 11, + [223338] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9215), 1, + sym_identifier, + STATE(5517), 1, + sym_string_literal, + STATE(5836), 1, + sym_raw_string_literal, + STATE(6509), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [223368] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(6082), 1, + ACTIONS(5681), 1, anon_sym_LBRACE, - ACTIONS(7296), 1, + ACTIONS(7998), 1, anon_sym_COLON_COLON, - ACTIONS(8770), 1, + ACTIONS(8200), 1, sym_identifier, - STATE(3296), 1, + STATE(2511), 1, sym_template_type, - STATE(3411), 1, + STATE(2623), 1, sym_enumerator_list, - STATE(7297), 1, + STATE(5951), 1, sym__scope_resolution, - STATE(5666), 2, + ACTIONS(9249), 2, + anon_sym_class, + anon_sym_struct, + STATE(3765), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9648), 2, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [267178] = 11, + [223408] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9215), 1, + sym_identifier, + STATE(5522), 1, + sym_string_literal, + STATE(5836), 1, + sym_raw_string_literal, + STATE(6648), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [223438] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(8514), 1, + ACTIONS(6781), 1, anon_sym_LBRACE, - ACTIONS(8766), 1, + ACTIONS(8196), 1, sym_identifier, - STATE(3369), 1, + ACTIONS(8212), 1, + anon_sym_COLON_COLON, + STATE(2542), 1, sym_template_type, - STATE(5506), 1, + STATE(3647), 1, sym_enumerator_list, - STATE(7279), 1, + STATE(5959), 1, sym__scope_resolution, - STATE(5472), 2, + ACTIONS(9251), 2, + anon_sym_class, + anon_sym_struct, + STATE(3854), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9648), 2, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [267214] = 11, + [223478] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9968), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7506), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7994), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [267250] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9972), 1, - anon_sym_LBRACK, - STATE(6585), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9970), 8, + ACTIONS(9058), 14, + 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_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [267274] = 11, + anon_sym_requires, + [223498] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9974), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7498), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7944), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [267310] = 11, + ACTIONS(9215), 1, + sym_identifier, + STATE(5465), 1, + sym_string_literal, + STATE(5836), 1, + sym_raw_string_literal, + STATE(6596), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [223528] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9215), 1, + sym_identifier, + STATE(5515), 1, + sym_string_literal, + STATE(5836), 1, + sym_raw_string_literal, + STATE(6791), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [223558] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(3906), 1, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(6917), 1, anon_sym_COLON_COLON, - ACTIONS(5111), 1, - anon_sym_virtual, - ACTIONS(8764), 1, + ACTIONS(8190), 1, sym_identifier, - STATE(3369), 1, + STATE(2542), 1, sym_template_type, - STATE(7239), 1, - sym_virtual, - STATE(7295), 1, + STATE(3625), 1, + sym_enumerator_list, + STATE(5982), 1, sym__scope_resolution, - STATE(8144), 2, + ACTIONS(9253), 2, + anon_sym_class, + anon_sym_struct, + STATE(3772), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9648), 2, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [267346] = 11, + [223598] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(6043), 1, + ACTIONS(5436), 1, anon_sym_LBRACE, - ACTIONS(8647), 1, + ACTIONS(6897), 1, anon_sym_COLON_COLON, - ACTIONS(8780), 1, + ACTIONS(8231), 1, sym_identifier, - STATE(3227), 1, + STATE(1892), 1, sym_template_type, - STATE(3564), 1, + STATE(4962), 1, sym_enumerator_list, - STATE(7282), 1, + STATE(5966), 1, sym__scope_resolution, - STATE(3213), 2, + ACTIONS(9255), 2, + anon_sym_class, + anon_sym_struct, + STATE(4712), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9648), 2, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [267382] = 11, + [223638] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, + ACTIONS(6861), 1, + anon_sym_DASH_GT, + ACTIONS(6863), 1, + anon_sym_requires, + STATE(5832), 1, + sym_trailing_return_type, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 5, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(9976), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7488), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7726), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [267418] = 4, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [223670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9962), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9978), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5745), 8, + ACTIONS(9046), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [267440] = 11, + [223690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, + ACTIONS(9040), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(9980), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7411), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7943), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [267476] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9982), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7424), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7854), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [267512] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(770), 1, anon_sym_LBRACE, - ACTIONS(7597), 1, anon_sym_LBRACK, - ACTIONS(9770), 1, anon_sym_EQ, - ACTIONS(9772), 1, anon_sym_COLON, - ACTIONS(9774), 1, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - STATE(1279), 1, - sym_compound_statement, - STATE(8595), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1280), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [267546] = 11, + anon_sym_requires, + [223710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, + ACTIONS(9036), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(9984), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7449), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7797), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [267582] = 11, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [223730] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(3906), 1, + ACTIONS(5542), 1, + anon_sym_LBRACE, + ACTIONS(8115), 1, anon_sym_COLON_COLON, - ACTIONS(5111), 1, - anon_sym_virtual, - ACTIONS(8764), 1, + ACTIONS(8229), 1, sym_identifier, - STATE(3369), 1, + STATE(2422), 1, sym_template_type, - STATE(7215), 1, - sym_virtual, - STATE(7295), 1, + STATE(2601), 1, + sym_enumerator_list, + STATE(5964), 1, sym__scope_resolution, - STATE(7810), 2, + ACTIONS(9257), 2, + anon_sym_class, + anon_sym_struct, + STATE(2388), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9648), 2, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [267618] = 10, + [223770] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9215), 1, + sym_identifier, + STATE(7350), 1, + sym_concatenated_string, + STATE(5673), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [223798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(9008), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(7597), 1, anon_sym_LBRACK, - ACTIONS(9772), 1, - anon_sym_COLON, - ACTIONS(9780), 1, anon_sym_EQ, - ACTIONS(9782), 1, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - STATE(1327), 1, - sym_compound_statement, - STATE(8786), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1320), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [267652] = 11, + anon_sym_requires, + [223818] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, + ACTIONS(6861), 1, + anon_sym_DASH_GT, + ACTIONS(9259), 1, + anon_sym_requires, + STATE(5834), 1, + sym_trailing_return_type, + ACTIONS(9159), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5555), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 5, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(9986), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7414), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7942), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [267688] = 11, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [223850] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(3906), 1, + ACTIONS(6951), 1, anon_sym_COLON_COLON, - ACTIONS(5111), 1, - anon_sym_virtual, - ACTIONS(8764), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + ACTIONS(8194), 1, sym_identifier, - STATE(3369), 1, + STATE(2542), 1, sym_template_type, - STATE(7254), 1, - sym_virtual, - STATE(7295), 1, + STATE(4460), 1, + sym_enumerator_list, + STATE(5987), 1, sym__scope_resolution, - STATE(7992), 2, + ACTIONS(9262), 2, + anon_sym_class, + anon_sym_struct, + STATE(4403), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9648), 2, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [267724] = 4, + [223890] = 8, ACTIONS(3), 1, sym_comment, - STATE(6723), 2, + ACTIONS(6861), 1, + anon_sym_DASH_GT, + ACTIONS(8350), 1, + anon_sym_requires, + STATE(5779), 1, + sym_trailing_return_type, + ACTIONS(8287), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [223922] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9215), 1, + sym_identifier, + STATE(5533), 1, sym_string_literal, + STATE(5836), 1, sym_raw_string_literal, - ACTIONS(9598), 5, + STATE(6689), 1, + sym_concatenated_string, + ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(9600), 5, + ACTIONS(151), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [267746] = 11, + [223952] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, + ACTIONS(6845), 1, + anon_sym_requires, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 7, anon_sym_COMMA, - ACTIONS(9988), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7410), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7646), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [267782] = 6, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + [223980] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(6861), 1, + anon_sym_DASH_GT, + ACTIONS(8135), 1, anon_sym_requires, - STATE(6869), 1, - sym_requires_clause, - ACTIONS(7359), 2, + STATE(5795), 1, + sym_trailing_return_type, + ACTIONS(7972), 2, anon_sym_final, anon_sym_override, - STATE(6710), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8861), 6, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [224012] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7893), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [267808] = 11, + anon_sym_requires, + [224032] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5790), 1, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, + anon_sym_LBRACK, + STATE(3514), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5792), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9264), 7, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(8795), 1, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [224064] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9215), 1, sym_identifier, - STATE(2479), 1, - sym_template_type, - STATE(3121), 1, - sym_enumerator_list, - STATE(7300), 1, - sym__scope_resolution, - STATE(5681), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [267844] = 11, + STATE(7470), 1, + sym_concatenated_string, + STATE(5669), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [224092] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5396), 1, + anon_sym_LBRACK, + ACTIONS(9243), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9266), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5398), 9, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [224118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9247), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5376), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_or, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [224140] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7156), 1, - anon_sym_LBRACE, - ACTIONS(7255), 1, + ACTIONS(6965), 1, anon_sym_COLON_COLON, - ACTIONS(8766), 1, + ACTIONS(8144), 1, + anon_sym_LBRACE, + ACTIONS(8192), 1, sym_identifier, - STATE(3369), 1, + STATE(4482), 1, sym_template_type, - STATE(4481), 1, + STATE(4831), 1, sym_enumerator_list, - STATE(7279), 1, + STATE(5975), 1, sym__scope_resolution, - STATE(5366), 2, + ACTIONS(9268), 2, + anon_sym_class, + anon_sym_struct, + STATE(4549), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9648), 2, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [267880] = 11, + [224180] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9990), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7444), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7634), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [267916] = 11, + ACTIONS(9215), 1, + sym_identifier, + STATE(7190), 1, + sym_concatenated_string, + STATE(5770), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [224208] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(9215), 1, + sym_identifier, + STATE(5546), 1, + sym_string_literal, + STATE(5836), 1, + sym_raw_string_literal, + STATE(6829), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [224238] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9992), 1, - anon_sym_SEMI, - STATE(3212), 1, + ACTIONS(8373), 1, + anon_sym_LBRACK, + STATE(3481), 1, sym_parameter_list, - STATE(7436), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, + STATE(5880), 1, + sym__function_declarator_seq, + STATE(5819), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7870), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [267952] = 5, + ACTIONS(9270), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [224270] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9708), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8373), 1, anon_sym_LBRACK, - STATE(6585), 2, + STATE(3481), 1, + sym_parameter_list, + STATE(5880), 1, + sym__function_declarator_seq, + STATE(5819), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9706), 8, + ACTIONS(9272), 7, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [267976] = 5, + anon_sym_try, + [224302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9996), 1, - anon_sym_LT, - ACTIONS(9998), 1, - anon_sym_LBRACK, - STATE(7199), 1, - sym_template_argument_list, - ACTIONS(9994), 9, + ACTIONS(9028), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [268000] = 11, + anon_sym_requires, + [224322] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + ACTIONS(5651), 1, anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10000), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7473), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, + STATE(5501), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7632), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [268036] = 11, + ACTIONS(5649), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [224348] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6851), 1, + anon_sym_requires, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + anon_sym_LBRACE, + anon_sym_try, + [224378] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9215), 1, + sym_identifier, + STATE(5516), 1, + sym_string_literal, + STATE(5836), 1, + sym_raw_string_literal, + STATE(6726), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [224408] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8890), 1, anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(9274), 1, + anon_sym_requires, + ACTIONS(8939), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5433), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8888), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10002), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7433), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7865), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [268072] = 10, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [224438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(9084), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(7597), 1, anon_sym_LBRACK, - ACTIONS(9770), 1, anon_sym_EQ, - ACTIONS(9772), 1, anon_sym_COLON, - ACTIONS(9774), 1, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - STATE(1360), 1, - sym_compound_statement, - STATE(8708), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, + anon_sym_requires, + [224458] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6861), 1, + anon_sym_DASH_GT, + ACTIONS(6863), 1, + anon_sym_requires, + STATE(5810), 1, + sym_trailing_return_type, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5555), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1361), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [268106] = 11, + anon_sym_LBRACK, + anon_sym_GT2, + [224490] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10004), 1, - anon_sym_SEMI, - STATE(3212), 1, + ACTIONS(8373), 1, + anon_sym_LBRACK, + STATE(3481), 1, sym_parameter_list, - STATE(7453), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, + STATE(5880), 1, + sym__function_declarator_seq, + STATE(5819), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7903), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [268142] = 11, + ACTIONS(9277), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [224522] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + ACTIONS(8250), 1, anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(8339), 1, + anon_sym_requires, + ACTIONS(8252), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10006), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7437), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7815), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [268178] = 11, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [224552] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + ACTIONS(6851), 1, + anon_sym_requires, + ACTIONS(8250), 1, anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10008), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7482), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7621), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [268214] = 5, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [224582] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9215), 1, + sym_identifier, + STATE(7499), 1, + sym_concatenated_string, + STATE(5747), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [224610] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4611), 1, + anon_sym_COLON_COLON, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(8210), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(3647), 1, + sym_enumerator_list, + STATE(5953), 1, + sym__scope_resolution, + ACTIONS(9279), 2, + anon_sym_class, + anon_sym_struct, + STATE(3488), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [224650] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6061), 1, + ACTIONS(6861), 1, + anon_sym_DASH_GT, + ACTIONS(6863), 1, + anon_sym_requires, + STATE(5817), 1, + sym_trailing_return_type, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_LBRACK, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - STATE(6585), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6059), 8, + anon_sym_GT2, + [224682] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9024), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [268238] = 11, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [224702] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + ACTIONS(8080), 1, anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(8173), 1, + anon_sym_requires, + ACTIONS(8082), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9910), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [224732] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9032), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(10010), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7502), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7704), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [268274] = 11, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [224752] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8373), 1, anon_sym_LBRACK, - ACTIONS(7054), 1, + STATE(3481), 1, + sym_parameter_list, + STATE(5880), 1, + sym__function_declarator_seq, + STATE(5819), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9281), 7, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [224784] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6861), 1, + anon_sym_DASH_GT, + ACTIONS(6863), 1, + anon_sym_requires, + STATE(5820), 1, + sym_trailing_return_type, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 5, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(10012), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7490), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7616), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [268310] = 11, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [224816] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7318), 1, - anon_sym_COLON_COLON, - ACTIONS(8716), 1, + ACTIONS(6781), 1, anon_sym_LBRACE, - ACTIONS(8776), 1, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(8194), 1, sym_identifier, - STATE(5620), 1, + STATE(2542), 1, sym_template_type, - STATE(5922), 1, + STATE(3625), 1, sym_enumerator_list, - STATE(7289), 1, + STATE(5987), 1, sym__scope_resolution, - STATE(5659), 2, + ACTIONS(9283), 2, + anon_sym_class, + anon_sym_struct, + STATE(4329), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9648), 2, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [268346] = 5, + [224856] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9996), 1, - anon_sym_LT, - ACTIONS(10016), 1, - anon_sym_LBRACK, - STATE(7201), 1, - sym_template_argument_list, - ACTIONS(10014), 9, + ACTIONS(9215), 1, + sym_identifier, + STATE(5510), 1, + sym_string_literal, + STATE(5836), 1, + sym_raw_string_literal, + STATE(6837), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [224886] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8185), 1, + anon_sym_requires, + ACTIONS(8179), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 7, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_COLON, - anon_sym_try, - [268370] = 11, + [224914] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(4940), 1, + ACTIONS(5620), 1, + anon_sym_LBRACE, + ACTIONS(8012), 1, anon_sym_COLON_COLON, - ACTIONS(7156), 1, + ACTIONS(8218), 1, + sym_identifier, + STATE(2467), 1, + sym_template_type, + STATE(2776), 1, + sym_enumerator_list, + STATE(5980), 1, + sym__scope_resolution, + ACTIONS(9285), 2, + anon_sym_class, + anon_sym_struct, + STATE(2457), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [224954] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(5436), 1, anon_sym_LBRACE, - ACTIONS(8768), 1, + ACTIONS(6877), 1, + anon_sym_COLON_COLON, + ACTIONS(8227), 1, sym_identifier, - STATE(3369), 1, + STATE(1892), 1, sym_template_type, - STATE(4498), 1, + STATE(2368), 1, sym_enumerator_list, - STATE(7286), 1, + STATE(5968), 1, sym__scope_resolution, - STATE(4590), 2, + ACTIONS(9287), 2, + anon_sym_class, + anon_sym_struct, + STATE(4577), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9648), 2, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [268406] = 11, + [224994] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10018), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7430), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7846), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [268442] = 6, + ACTIONS(9215), 1, + sym_identifier, + STATE(5483), 1, + sym_string_literal, + STATE(5836), 1, + sym_raw_string_literal, + STATE(6738), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [225024] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(6851), 1, + anon_sym_requires, + ACTIONS(8894), 1, anon_sym_LBRACK, - STATE(4676), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9675), 8, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 6, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [268468] = 8, + [225054] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(8654), 1, anon_sym_LBRACK, - STATE(4620), 1, + STATE(3511), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5760), 1, sym__function_declarator_seq, - STATE(6821), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9710), 5, + ACTIONS(9264), 7, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [268498] = 11, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [225086] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + ACTIONS(6851), 1, + anon_sym_requires, + ACTIONS(8890), 1, anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5433), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8888), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10020), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7494), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7706), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [268534] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - STATE(4620), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9704), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [268564] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1054), 1, anon_sym_LBRACE, - ACTIONS(7597), 1, - anon_sym_LBRACK, - ACTIONS(9772), 1, - anon_sym_COLON, - ACTIONS(9780), 1, - anon_sym_EQ, - ACTIONS(9782), 1, anon_sym_try, - STATE(1270), 1, - sym_compound_statement, - STATE(8732), 1, - sym_field_initializer_list, - ACTIONS(4920), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1271), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [268598] = 11, + [225116] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + ACTIONS(7901), 1, anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(7983), 1, + anon_sym_requires, + ACTIONS(7905), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10022), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7501), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7696), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [268634] = 11, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [225146] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + ACTIONS(6985), 1, + anon_sym_DASH_GT, + ACTIONS(8080), 1, anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(8258), 1, + anon_sym_requires, + STATE(5889), 1, + sym_trailing_return_type, + ACTIONS(8082), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 3, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10024), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7514), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7592), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [268670] = 8, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [225179] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(4620), 1, + STATE(3501), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5362), 1, sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9700), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9133), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [268700] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7156), 1, - anon_sym_LBRACE, - ACTIONS(8768), 1, - sym_identifier, - ACTIONS(8788), 1, - anon_sym_COLON_COLON, - STATE(3369), 1, - sym_template_type, - STATE(4498), 1, - sym_enumerator_list, - STATE(7267), 1, - sym__scope_resolution, - STATE(4861), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [268736] = 6, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [225206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(4713), 13, anon_sym_LPAREN2, - ACTIONS(9621), 1, - anon_sym_LBRACK, - STATE(4676), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9619), 8, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [268762] = 11, + [225225] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(9289), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9291), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5398), 9, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10026), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7497), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7967), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [268798] = 11, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [225248] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + ACTIONS(371), 1, + anon_sym_LBRACE, + ACTIONS(7196), 1, anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10028), 1, + ACTIONS(9293), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7483), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7741), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [268834] = 11, + ACTIONS(9295), 1, + anon_sym_EQ, + ACTIONS(9297), 1, + anon_sym_COLON, + ACTIONS(9299), 1, + anon_sym_try, + STATE(565), 1, + sym_compound_statement, + STATE(6895), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(564), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [225285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(4741), 13, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10030), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7469), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7752), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [268870] = 7, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [225304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + ACTIONS(9303), 1, anon_sym_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - STATE(3212), 1, - sym_parameter_list, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5976), 6, + ACTIONS(9301), 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_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [268898] = 11, + [225325] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10032), 1, - anon_sym_SEMI, - STATE(3212), 1, + ACTIONS(9155), 1, + anon_sym_LBRACK, + STATE(5697), 1, sym_parameter_list, - STATE(7467), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, + STATE(5842), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7753), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [268934] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(8514), 1, - anon_sym_LBRACE, - ACTIONS(8764), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(5506), 1, - sym_enumerator_list, - STATE(7261), 1, - sym__scope_resolution, - STATE(5828), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [268970] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, + ACTIONS(5572), 7, anon_sym_COMMA, - ACTIONS(10034), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7455), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7777), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [269006] = 11, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [225354] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + ACTIONS(7196), 1, anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10036), 1, + ACTIONS(9297), 1, + anon_sym_COLON, + ACTIONS(9305), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7520), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8004), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [269042] = 11, + ACTIONS(9307), 1, + anon_sym_LBRACE, + ACTIONS(9309), 1, + anon_sym_EQ, + ACTIONS(9311), 1, + anon_sym_try, + STATE(2101), 1, + sym_compound_statement, + STATE(7147), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2100), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [225391] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10038), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7466), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7758), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [269078] = 11, + ACTIONS(9313), 1, + anon_sym_RPAREN, + STATE(5457), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9100), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9102), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [225416] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(8182), 1, + anon_sym_requires, + ACTIONS(8179), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 6, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10040), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7451), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7770), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [269114] = 11, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [225443] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + ACTIONS(7196), 1, anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10042), 1, + ACTIONS(9297), 1, + anon_sym_COLON, + ACTIONS(9315), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7450), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7789), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [269150] = 10, + ACTIONS(9317), 1, + anon_sym_LBRACE, + ACTIONS(9319), 1, + anon_sym_EQ, + ACTIONS(9321), 1, + anon_sym_try, + STATE(1836), 1, + sym_compound_statement, + STATE(7129), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1837), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [225480] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(371), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(7597), 1, + ACTIONS(7196), 1, anon_sym_LBRACK, - ACTIONS(9772), 1, + ACTIONS(9297), 1, anon_sym_COLON, - ACTIONS(9846), 1, + ACTIONS(9323), 1, + anon_sym_SEMI, + ACTIONS(9325), 1, anon_sym_EQ, - ACTIONS(9848), 1, + ACTIONS(9327), 1, anon_sym_try, - STATE(801), 1, + STATE(902), 1, sym_compound_statement, - STATE(8575), 1, + STATE(6855), 1, sym_field_initializer_list, - ACTIONS(4920), 2, + ACTIONS(4615), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(802), 3, + STATE(915), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [269184] = 11, + [225517] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10044), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7475), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7767), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [269220] = 11, + ACTIONS(9329), 1, + anon_sym_RPAREN, + STATE(5457), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9100), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9102), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [225542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(6137), 1, + ACTIONS(4721), 13, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(8625), 1, - anon_sym_COLON_COLON, - ACTIONS(8782), 1, - sym_identifier, - STATE(3332), 1, - sym_template_type, - STATE(3794), 1, - sym_enumerator_list, - STATE(7276), 1, - sym__scope_resolution, - STATE(3335), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [269256] = 8, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [225561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(9333), 1, anon_sym_LBRACK, - STATE(4620), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9724), 5, + ACTIONS(9331), 12, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, - [269286] = 11, + anon_sym_try, + [225582] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(6853), 1, + anon_sym_requires, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 6, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10046), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7443), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7673), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [269322] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10048), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7492), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7949), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [269358] = 7, + anon_sym_EQ, + anon_sym_try, + [225609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + ACTIONS(9337), 1, anon_sym_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - STATE(3212), 1, - sym_parameter_list, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5991), 6, + ACTIONS(9335), 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_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [269386] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10050), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7468), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7641), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [269422] = 11, + [225630] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(6853), 1, + anon_sym_requires, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 6, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10052), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7438), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7872), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [269458] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10054), 1, - anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7439), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7876), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [269494] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(3906), 1, - anon_sym_COLON_COLON, - ACTIONS(5111), 1, - anon_sym_virtual, - ACTIONS(8764), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(7234), 1, - sym_virtual, - STATE(7295), 1, - sym__scope_resolution, - STATE(8225), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [269530] = 8, + anon_sym_EQ, + anon_sym_try, + [225657] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(9155), 1, anon_sym_LBRACK, - STATE(4620), 1, + STATE(5697), 1, sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, + STATE(5842), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9726), 5, + ACTIONS(5563), 7, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [269560] = 6, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [225686] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(6985), 1, + anon_sym_DASH_GT, + ACTIONS(6987), 1, + anon_sym_requires, + ACTIONS(7901), 1, anon_sym_LBRACK, - STATE(4676), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9665), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + STATE(5908), 1, + sym_trailing_return_type, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [269586] = 6, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [225719] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, - anon_sym_LBRACK, - STATE(4676), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9671), 8, + ACTIONS(9339), 1, anon_sym_RPAREN, + STATE(5457), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9100), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9102), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [225744] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4721), 13, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [269612] = 6, + [225763] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(263), 1, + anon_sym_LBRACE, + ACTIONS(7196), 1, anon_sym_LBRACK, - STATE(4676), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9667), 8, - anon_sym_RPAREN, + ACTIONS(9297), 1, + anon_sym_COLON, + ACTIONS(9341), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, + ACTIONS(9343), 1, + anon_sym_EQ, + ACTIONS(9345), 1, anon_sym_try, - anon_sym_requires, - [269638] = 11, + STATE(360), 1, + sym_compound_statement, + STATE(7143), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(361), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [225800] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(8290), 1, + anon_sym_requires, + ACTIONS(8287), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 6, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10056), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7416), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7873), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [269674] = 10, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [225827] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(7597), 1, + ACTIONS(7196), 1, anon_sym_LBRACK, - ACTIONS(9772), 1, + ACTIONS(9297), 1, anon_sym_COLON, - ACTIONS(9800), 1, + ACTIONS(9347), 1, + anon_sym_SEMI, + ACTIONS(9349), 1, + anon_sym_LBRACE, + ACTIONS(9351), 1, anon_sym_EQ, - ACTIONS(9802), 1, + ACTIONS(9353), 1, anon_sym_try, - STATE(1426), 1, + STATE(2143), 1, sym_compound_statement, - STATE(8512), 1, + STATE(7035), 1, sym_field_initializer_list, - ACTIONS(4920), 2, + ACTIONS(4615), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(1428), 3, + STATE(2131), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [269708] = 7, + [225864] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(8875), 1, + ACTIONS(9190), 1, + anon_sym_requires, + ACTIONS(9159), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5555), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 6, anon_sym_LPAREN2, - STATE(3212), 1, - sym_parameter_list, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5965), 6, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_try, - [269736] = 11, + [225891] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10058), 1, - anon_sym_SEMI, - STATE(3212), 1, + ACTIONS(9155), 1, + anon_sym_LBRACK, + STATE(5697), 1, sym_parameter_list, - STATE(7481), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, + STATE(5842), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7926), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [269772] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9910), 1, + ACTIONS(5550), 7, anon_sym_COMMA, - ACTIONS(10060), 1, anon_sym_SEMI, - STATE(3212), 1, - sym_parameter_list, - STATE(7421), 1, - aux_sym_type_definition_repeat2, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7825), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [269808] = 6, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [225920] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(4676), 1, + STATE(3499), 1, sym_parameter_list, - STATE(6654), 1, + STATE(5362), 1, sym__function_declarator_seq, - ACTIONS(9669), 8, + ACTIONS(9137), 9, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [269834] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(5796), 1, - anon_sym_LBRACE, - ACTIONS(8585), 1, - anon_sym_COLON_COLON, - ACTIONS(8778), 1, - sym_identifier, - STATE(3080), 1, - sym_template_type, - STATE(3168), 1, - sym_enumerator_list, - STATE(7278), 1, - sym__scope_resolution, - STATE(3082), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [269870] = 11, + [225947] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4916), 1, - anon_sym_COLON_COLON, - ACTIONS(7156), 1, + ACTIONS(2132), 13, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(8772), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(4498), 1, - sym_enumerator_list, - STATE(7280), 1, - sym__scope_resolution, - STATE(4372), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [269906] = 6, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [225966] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(4649), 1, + STATE(3499), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5362), 1, sym__function_declarator_seq, - ACTIONS(9619), 7, - anon_sym_SEMI, + ACTIONS(9135), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [269931] = 5, + [225993] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5743), 1, - anon_sym_LBRACK, - ACTIONS(10064), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(10066), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5745), 6, + ACTIONS(8367), 1, anon_sym_LPAREN2, + ACTIONS(9123), 1, + anon_sym_LBRACK, + STATE(3499), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9133), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [269954] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(9427), 1, - anon_sym_COLON_COLON, - ACTIONS(10068), 1, - sym_identifier, - STATE(6486), 1, - sym__scope_resolution, - STATE(9463), 1, - sym_qualified_identifier, - ACTIONS(10070), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [269985] = 11, + [226020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(9357), 1, + anon_sym_LBRACK, + ACTIONS(9355), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(770), 1, anon_sym_LBRACE, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(9359), 1, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - STATE(1381), 1, - sym_try_statement, - STATE(1382), 1, - sym_compound_statement, - STATE(4716), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [270020] = 5, + [226041] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6061), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(6785), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6059), 7, + STATE(3499), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9131), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [226068] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9359), 1, + anon_sym_requires, + ACTIONS(9233), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5558), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8888), 6, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_try, - [270043] = 9, + [226095] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(9427), 1, - anon_sym_COLON_COLON, - ACTIONS(10072), 1, + ACTIONS(9362), 1, sym_identifier, - STATE(6486), 1, - sym__scope_resolution, - STATE(9572), 1, - sym_qualified_identifier, - ACTIONS(10074), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [270074] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(9427), 1, + ACTIONS(9364), 1, anon_sym_COLON_COLON, - ACTIONS(10076), 1, - sym_identifier, - STATE(6486), 1, + STATE(5769), 1, sym__scope_resolution, - STATE(9610), 1, - sym_qualified_identifier, - ACTIONS(10078), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9648), 3, + STATE(6869), 1, + sym_operator_name, + STATE(7045), 1, + sym_field_initializer, + STATE(6278), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(7683), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [270105] = 3, + [226132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10082), 1, - anon_sym_LBRACK, - ACTIONS(10080), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2136), 13, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_try, - [270124] = 3, + anon_sym_requires, + [226151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10086), 1, + ACTIONS(5655), 1, anon_sym_LBRACK, - ACTIONS(10084), 10, + ACTIONS(5653), 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_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [270143] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(9427), 1, - anon_sym_COLON_COLON, - ACTIONS(10088), 1, - sym_identifier, - STATE(6486), 1, - sym__scope_resolution, - STATE(8950), 1, - sym_qualified_identifier, - ACTIONS(10090), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [270174] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(8921), 1, - anon_sym_try, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(9790), 1, - anon_sym_LBRACE, - STATE(2454), 1, - sym_try_statement, - STATE(2456), 1, - sym_compound_statement, - STATE(4716), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [270209] = 3, + [226172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10094), 1, + ACTIONS(9368), 1, anon_sym_LBRACK, - ACTIONS(10092), 10, + ACTIONS(9366), 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_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [270228] = 3, + [226193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10098), 1, + ACTIONS(5743), 1, anon_sym_LBRACK, - ACTIONS(10096), 10, + ACTIONS(5741), 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_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [270247] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(9427), 1, - anon_sym_COLON_COLON, - ACTIONS(10100), 1, - sym_identifier, - STATE(6486), 1, - sym__scope_resolution, - STATE(8967), 1, - sym_qualified_identifier, - ACTIONS(10102), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [270278] = 8, + [226214] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(9155), 1, anon_sym_LBRACK, - STATE(4716), 1, + STATE(5697), 1, sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, + STATE(5842), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9710), 4, + ACTIONS(5582), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [226243] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9370), 1, anon_sym_RPAREN, + STATE(5457), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9100), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9102), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [226268] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6853), 1, + anon_sym_requires, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 6, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_try, - [270307] = 9, + [226295] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(9427), 1, - anon_sym_COLON_COLON, - ACTIONS(10104), 1, - sym_identifier, - STATE(6486), 1, - sym__scope_resolution, - STATE(9269), 1, - sym_qualified_identifier, - ACTIONS(10106), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [270338] = 8, + ACTIONS(7978), 1, + anon_sym_requires, + ACTIONS(7972), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [226322] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(4716), 1, + STATE(3501), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5362), 1, sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9704), 4, - anon_sym_RPAREN, + ACTIONS(9135), 9, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_try, - [270367] = 11, + anon_sym_requires, + [226349] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(187), 1, + ACTIONS(263), 1, anon_sym_LBRACE, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(7196), 1, anon_sym_LBRACK, - ACTIONS(9379), 1, + ACTIONS(9297), 1, + anon_sym_COLON, + ACTIONS(9343), 1, + anon_sym_EQ, + ACTIONS(9345), 1, anon_sym_try, - STATE(526), 1, - sym_try_statement, - STATE(527), 1, + ACTIONS(9372), 1, + anon_sym_SEMI, + STATE(339), 1, sym_compound_statement, - STATE(4716), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [270402] = 3, + STATE(7165), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(340), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [226386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10110), 1, - anon_sym_LBRACK, - ACTIONS(10108), 10, - anon_sym_COMMA, + ACTIONS(5152), 1, + sym_identifier, + ACTIONS(5154), 12, anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [226407] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8367), 1, anon_sym_LPAREN2, + ACTIONS(9123), 1, + anon_sym_LBRACK, + STATE(3501), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9141), 9, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_try, - [270421] = 11, + anon_sym_requires, + [226434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1054), 1, + ACTIONS(5188), 1, + sym_identifier, + ACTIONS(5190), 12, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [226455] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(371), 1, anon_sym_LBRACE, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(7196), 1, anon_sym_LBRACK, - ACTIONS(9221), 1, + ACTIONS(9295), 1, + anon_sym_EQ, + ACTIONS(9297), 1, + anon_sym_COLON, + ACTIONS(9299), 1, anon_sym_try, - STATE(1309), 1, - sym_try_statement, - STATE(1310), 1, + ACTIONS(9374), 1, + anon_sym_SEMI, + STATE(543), 1, sym_compound_statement, - STATE(4716), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [270456] = 11, + STATE(6859), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(538), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [226492] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(8911), 1, - anon_sym_try, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(9824), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(2741), 1, + ACTIONS(7196), 1, + anon_sym_LBRACK, + ACTIONS(9297), 1, + anon_sym_COLON, + ACTIONS(9325), 1, + anon_sym_EQ, + ACTIONS(9327), 1, + anon_sym_try, + ACTIONS(9376), 1, + anon_sym_SEMI, + STATE(926), 1, sym_compound_statement, - STATE(2743), 1, - sym_try_statement, - STATE(4716), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [270491] = 6, + STATE(7091), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(914), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [226529] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7379), 1, + ACTIONS(6985), 1, + anon_sym_DASH_GT, + ACTIONS(8894), 1, + anon_sym_LBRACK, + ACTIONS(9378), 1, anon_sym_requires, - STATE(6894), 1, - sym_requires_clause, - ACTIONS(7359), 2, + STATE(5891), 1, + sym_trailing_return_type, + ACTIONS(8896), 2, anon_sym_final, anon_sym_override, - STATE(6713), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 3, anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [270516] = 8, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [226562] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6985), 1, + anon_sym_DASH_GT, + ACTIONS(8250), 1, + anon_sym_LBRACK, + ACTIONS(8515), 1, + anon_sym_requires, + STATE(5890), 1, + sym_trailing_return_type, + ACTIONS(8252), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 3, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + anon_sym_COLON, + [226595] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(4716), 1, + STATE(3501), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5362), 1, sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9726), 4, - anon_sym_RPAREN, + ACTIONS(9121), 9, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_try, - [270545] = 6, + anon_sym_requires, + [226622] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(4704), 1, + STATE(3501), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5362), 1, sym__function_declarator_seq, - ACTIONS(9663), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9129), 9, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [270570] = 6, + [226649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(4566), 1, anon_sym_LBRACK, - STATE(4704), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9665), 7, + ACTIONS(4571), 12, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [270595] = 6, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [226670] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9381), 1, + anon_sym_RPAREN, + STATE(5457), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9100), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9102), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [226695] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(4704), 1, + STATE(3499), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5362), 1, sym__function_declarator_seq, - ACTIONS(9667), 7, + ACTIONS(9129), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [270620] = 6, + [226722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7379), 1, - anon_sym_requires, - STATE(6891), 1, - sym_requires_clause, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6715), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 5, - anon_sym_DOT_DOT_DOT, + ACTIONS(5671), 1, + anon_sym_LBRACK, + ACTIONS(5669), 12, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, - [270645] = 6, + anon_sym_try, + [226743] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(4704), 1, + STATE(3501), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5362), 1, sym__function_declarator_seq, - ACTIONS(9669), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9137), 9, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [270670] = 6, + [226770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(4749), 13, anon_sym_LPAREN2, - ACTIONS(10062), 1, - anon_sym_LBRACK, - STATE(4704), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9671), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [270695] = 6, + [226789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7379), 1, - anon_sym_requires, - STATE(6885), 1, - sym_requires_clause, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6716), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 5, - anon_sym_DOT_DOT_DOT, + ACTIONS(5614), 1, + anon_sym_LBRACK, + ACTIONS(5612), 12, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, - [270720] = 6, + anon_sym_try, + [226810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7379), 1, - anon_sym_requires, - STATE(6879), 1, - sym_requires_clause, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6717), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [270745] = 3, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 12, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [226831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5182), 1, + sym_identifier, + ACTIONS(5184), 12, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [226852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9998), 1, + ACTIONS(5630), 1, anon_sym_LBRACK, - ACTIONS(9994), 10, + ACTIONS(5628), 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_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [270764] = 3, + [226873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10114), 1, + ACTIONS(5602), 1, anon_sym_LBRACK, - ACTIONS(10112), 10, + ACTIONS(5600), 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_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [270783] = 6, + [226894] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7379), 1, + ACTIONS(6985), 1, + anon_sym_DASH_GT, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(8176), 1, anon_sym_requires, - STATE(6881), 1, - sym_requires_clause, - ACTIONS(7359), 2, + STATE(5887), 1, + sym_trailing_return_type, + ACTIONS(7905), 2, anon_sym_final, anon_sym_override, - STATE(6718), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 3, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [226927] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7196), 1, anon_sym_LBRACK, - anon_sym_GT2, - [270808] = 6, + ACTIONS(9297), 1, + anon_sym_COLON, + ACTIONS(9383), 1, + anon_sym_SEMI, + ACTIONS(9385), 1, + anon_sym_LBRACE, + ACTIONS(9387), 1, + anon_sym_EQ, + ACTIONS(9389), 1, + anon_sym_try, + STATE(2126), 1, + sym_compound_statement, + STATE(7061), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2127), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [226964] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7379), 1, + ACTIONS(6853), 1, anon_sym_requires, - STATE(6869), 1, - sym_requires_clause, - ACTIONS(7359), 2, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - STATE(6710), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8861), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + aux_sym__function_postfix_repeat1, + STATE(5555), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 6, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_GT2, - [270833] = 6, + anon_sym_EQ, + anon_sym_try, + [226991] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7379), 1, + ACTIONS(6985), 1, + anon_sym_DASH_GT, + ACTIONS(6987), 1, anon_sym_requires, - STATE(6878), 1, - sym_requires_clause, - ACTIONS(7359), 2, + ACTIONS(8894), 1, + anon_sym_LBRACK, + STATE(5902), 1, + sym_trailing_return_type, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - STATE(6719), 2, + STATE(5261), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9191), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 3, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [227024] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(818), 1, + anon_sym_LBRACE, + ACTIONS(7196), 1, anon_sym_LBRACK, - anon_sym_GT2, - [270858] = 6, + ACTIONS(9297), 1, + anon_sym_COLON, + ACTIONS(9391), 1, + anon_sym_SEMI, + ACTIONS(9393), 1, + anon_sym_EQ, + ACTIONS(9395), 1, + anon_sym_try, + STATE(863), 1, + sym_compound_statement, + STATE(6940), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(864), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [227061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7379), 1, - anon_sym_requires, - STATE(6874), 1, - sym_requires_clause, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - STATE(6721), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9490), 5, - anon_sym_DOT_DOT_DOT, + ACTIONS(5618), 1, + anon_sym_LBRACK, + ACTIONS(5616), 12, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, - [270883] = 4, + anon_sym_try, + [227082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5735), 1, + ACTIONS(5626), 1, anon_sym_LBRACK, - ACTIONS(10066), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5737), 8, + ACTIONS(5624), 12, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_or, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [227103] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6985), 1, + anon_sym_DASH_GT, + ACTIONS(6987), 1, + anon_sym_requires, + ACTIONS(8250), 1, + anon_sym_LBRACK, + STATE(5894), 1, + sym_trailing_return_type, + ACTIONS(5322), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [270904] = 6, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [227136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(5645), 1, anon_sym_LBRACK, - STATE(4704), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9619), 7, + ACTIONS(5643), 12, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [270929] = 6, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [227157] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9397), 1, + anon_sym_RPAREN, + STATE(5457), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9100), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9102), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [227182] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(4603), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(7666), 1, anon_sym_LBRACK, - STATE(4704), 1, + ACTIONS(8161), 1, + anon_sym_STAR, + ACTIONS(8163), 1, + anon_sym_AMP_AMP, + ACTIONS(8165), 1, + anon_sym_AMP, + STATE(3570), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5604), 1, sym__function_declarator_seq, - ACTIONS(9675), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(6020), 1, + sym__abstract_declarator, + STATE(5647), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [227217] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9291), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5376), 11, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [270954] = 11, + [227238] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9029), 1, - anon_sym_try, - ACTIONS(9175), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - ACTIONS(9878), 1, - anon_sym_LBRACE, - STATE(2821), 1, - sym_try_statement, - STATE(2823), 1, - sym_compound_statement, - STATE(4716), 1, + STATE(3501), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5362), 1, sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [270989] = 3, + ACTIONS(9131), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [227265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6143), 1, + ACTIONS(4566), 1, anon_sym_LBRACK, - ACTIONS(6141), 10, + ACTIONS(4571), 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_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [271008] = 11, + [227286] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6985), 1, + anon_sym_DASH_GT, + ACTIONS(6987), 1, + anon_sym_requires, + ACTIONS(8080), 1, + anon_sym_LBRACK, + STATE(5886), 1, + sym_trailing_return_type, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 3, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(8875), 1, + anon_sym_COLON, + [227319] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4761), 13, anon_sym_LPAREN2, - ACTIONS(9175), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(9309), 1, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_try, - STATE(1402), 1, - sym_compound_statement, - STATE(1403), 1, - sym_try_statement, - STATE(4716), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [271043] = 3, + anon_sym_requires, + [227338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6430), 1, + ACTIONS(7196), 1, anon_sym_LBRACK, - ACTIONS(6428), 10, + ACTIONS(4615), 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_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [271062] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(9427), 1, - anon_sym_COLON_COLON, - ACTIONS(10116), 1, - sym_identifier, - STATE(6486), 1, - sym__scope_resolution, - STATE(9433), 1, - sym_qualified_identifier, - ACTIONS(10118), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [271093] = 6, + [227359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(5606), 1, anon_sym_LBRACK, - STATE(4649), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9667), 7, + ACTIONS(5604), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [271118] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(9427), 1, - anon_sym_COLON_COLON, - ACTIONS(10120), 1, - sym_identifier, - STATE(6486), 1, - sym__scope_resolution, - STATE(9201), 1, - sym_qualified_identifier, - ACTIONS(10122), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [271149] = 6, + [227380] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(4729), 13, anon_sym_LPAREN2, - ACTIONS(10062), 1, - anon_sym_LBRACK, - STATE(4649), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9665), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [271174] = 11, + [227399] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(371), 1, + ACTIONS(770), 1, anon_sym_LBRACE, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(7196), 1, anon_sym_LBRACK, - ACTIONS(9229), 1, + ACTIONS(9297), 1, + anon_sym_COLON, + ACTIONS(9399), 1, + anon_sym_SEMI, + ACTIONS(9401), 1, + anon_sym_EQ, + ACTIONS(9403), 1, anon_sym_try, - STATE(777), 1, + STATE(859), 1, sym_compound_statement, - STATE(778), 1, - sym_try_statement, - STATE(4716), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [271209] = 6, + STATE(7038), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(856), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [227436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(5663), 1, anon_sym_LBRACK, - STATE(4649), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9675), 7, + ACTIONS(5661), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [271234] = 6, + [227457] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9405), 1, + anon_sym_RPAREN, + STATE(5457), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9100), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9102), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [227482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(4725), 13, anon_sym_LPAREN2, - ACTIONS(10062), 1, - anon_sym_LBRACK, - STATE(4649), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9671), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [271259] = 8, + [227501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(9409), 1, anon_sym_LBRACK, - STATE(4716), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9724), 4, + ACTIONS(9407), 12, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [271288] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(9427), 1, - anon_sym_COLON_COLON, - ACTIONS(10124), 1, - sym_identifier, - STATE(6486), 1, - sym__scope_resolution, - STATE(9442), 1, - sym_qualified_identifier, - ACTIONS(10126), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [271319] = 11, + [227522] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(8887), 1, - anon_sym_try, - ACTIONS(9175), 1, + ACTIONS(7196), 1, anon_sym_LBRACK, - ACTIONS(9858), 1, + ACTIONS(9297), 1, + anon_sym_COLON, + ACTIONS(9317), 1, anon_sym_LBRACE, - STATE(2920), 1, - sym_try_statement, - STATE(2921), 1, + ACTIONS(9319), 1, + anon_sym_EQ, + ACTIONS(9321), 1, + anon_sym_try, + ACTIONS(9411), 1, + anon_sym_SEMI, + STATE(1843), 1, sym_compound_statement, - STATE(4716), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [271354] = 8, + STATE(7029), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1835), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [227559] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(4716), 1, + STATE(3499), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5362), 1, sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9700), 4, + ACTIONS(9121), 9, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_try, - [271383] = 6, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [227586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(4757), 13, anon_sym_LPAREN2, - ACTIONS(10062), 1, - anon_sym_LBRACK, - STATE(4649), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9663), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [271408] = 6, + [227605] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(4649), 1, + STATE(3499), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5362), 1, sym__function_declarator_seq, - ACTIONS(9669), 7, - anon_sym_SEMI, + ACTIONS(9141), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [271433] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(3906), 1, - anon_sym_COLON_COLON, - ACTIONS(8764), 1, - sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(7295), 1, - sym__scope_resolution, - STATE(7992), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, - sym_decltype, - sym_dependent_type_identifier, - [271463] = 5, + [227632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10132), 1, - anon_sym_delete, - ACTIONS(10134), 1, - anon_sym_new, - ACTIONS(10130), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(10128), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [271485] = 5, + ACTIONS(9415), 1, + anon_sym_LBRACK, + ACTIONS(9413), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [227653] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10136), 1, - anon_sym_delete, - ACTIONS(10138), 1, - anon_sym_new, - ACTIONS(10130), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(10128), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [271507] = 3, + ACTIONS(7196), 1, + anon_sym_LBRACK, + ACTIONS(9297), 1, + anon_sym_COLON, + ACTIONS(9349), 1, + anon_sym_LBRACE, + ACTIONS(9351), 1, + anon_sym_EQ, + ACTIONS(9353), 1, + anon_sym_try, + ACTIONS(9417), 1, + anon_sym_SEMI, + STATE(2189), 1, + sym_compound_statement, + STATE(7001), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2190), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [227690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(4865), 1, anon_sym_LBRACK, - ACTIONS(4850), 9, + ACTIONS(4860), 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_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [271525] = 5, + [227711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10140), 1, - anon_sym_delete, - ACTIONS(10142), 1, - anon_sym_new, - ACTIONS(10130), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(10128), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [271547] = 3, + ACTIONS(4717), 13, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [227730] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4888), 1, + ACTIONS(7196), 1, anon_sym_LBRACK, - ACTIONS(4890), 9, - anon_sym_COMMA, + ACTIONS(9297), 1, + anon_sym_COLON, + ACTIONS(9385), 1, + anon_sym_LBRACE, + ACTIONS(9387), 1, + anon_sym_EQ, + ACTIONS(9389), 1, + anon_sym_try, + ACTIONS(9419), 1, + anon_sym_SEMI, + STATE(2169), 1, + sym_compound_statement, + STATE(7093), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2165), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [227767] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4721), 13, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_try, - [271565] = 3, + anon_sym_requires, + [227786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(9423), 1, anon_sym_LBRACK, - ACTIONS(4879), 9, + ACTIONS(9421), 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_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [271583] = 3, + [227807] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4884), 1, + ACTIONS(818), 1, + anon_sym_LBRACE, + ACTIONS(7196), 1, anon_sym_LBRACK, - ACTIONS(4886), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(9297), 1, + anon_sym_COLON, + ACTIONS(9393), 1, + anon_sym_EQ, + ACTIONS(9395), 1, + anon_sym_try, + ACTIONS(9425), 1, anon_sym_SEMI, - anon_sym___attribute__, + STATE(889), 1, + sym_compound_statement, + STATE(6978), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, + STATE(885), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [227844] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6853), 1, + anon_sym_requires, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5558), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8888), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, anon_sym_try, - [271601] = 3, + [227871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4856), 1, - anon_sym_LBRACK, - ACTIONS(4858), 9, - anon_sym_COMMA, + ACTIONS(4733), 13, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_try, - [271619] = 3, + anon_sym_requires, + [227890] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9427), 1, + anon_sym_RPAREN, + STATE(5457), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9100), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9102), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [227915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4844), 1, + ACTIONS(4566), 1, anon_sym_LBRACK, - ACTIONS(4846), 9, + ACTIONS(4571), 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_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [271637] = 3, + [227936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 1, + ACTIONS(4566), 1, anon_sym_LBRACK, - ACTIONS(4854), 9, + ACTIONS(4571), 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_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [271655] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10144), 1, - anon_sym_delete, - ACTIONS(10146), 1, - anon_sym_new, - ACTIONS(10130), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(10128), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [271677] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10142), 1, - anon_sym_new, - ACTIONS(10148), 1, - anon_sym_delete, - ACTIONS(10130), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(10128), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [271699] = 9, + [227957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(4753), 13, anon_sym_LPAREN2, - ACTIONS(9175), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(10152), 1, anon_sym_EQ, - STATE(4620), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - ACTIONS(10150), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [271729] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10154), 1, - anon_sym_delete, - ACTIONS(10156), 1, - anon_sym_new, - ACTIONS(10130), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(10128), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [271751] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, - anon_sym_LBRACK, - STATE(4737), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9663), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [271775] = 6, + [227976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(4566), 1, anon_sym_LBRACK, - STATE(4737), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9669), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(4571), 12, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [271799] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(10158), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - STATE(4620), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - ACTIONS(10150), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [271829] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10162), 1, - anon_sym_LBRACK, - STATE(7937), 1, - sym_gnu_asm_output_operand, - STATE(8942), 1, - sym_string_literal, - ACTIONS(10160), 2, - anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [271853] = 9, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [227997] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(3906), 1, + ACTIONS(9364), 1, anon_sym_COLON_COLON, - ACTIONS(8764), 1, + ACTIONS(9429), 1, sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(7295), 1, + ACTIONS(9431), 1, + anon_sym_template, + STATE(5769), 1, sym__scope_resolution, - STATE(8253), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, + STATE(6869), 1, + sym_operator_name, + STATE(6963), 1, + sym_template_method, + STATE(6967), 1, + sym_dependent_field_identifier, + STATE(6968), 1, + sym_qualified_field_identifier, + STATE(7683), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [271883] = 6, + [228036] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, - anon_sym_LBRACK, - STATE(4737), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9671), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [271907] = 6, + ACTIONS(9433), 1, + anon_sym_RPAREN, + STATE(5457), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9100), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9102), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [228061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(4737), 13, anon_sym_LPAREN2, - ACTIONS(10062), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4737), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9675), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [271931] = 7, + [228080] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7485), 1, - anon_sym_requires, - ACTIONS(9492), 1, + ACTIONS(770), 1, + anon_sym_LBRACE, + ACTIONS(7196), 1, anon_sym_LBRACK, - STATE(6689), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6531), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9490), 3, + ACTIONS(9297), 1, + anon_sym_COLON, + ACTIONS(9401), 1, + anon_sym_EQ, + ACTIONS(9403), 1, + anon_sym_try, + ACTIONS(9435), 1, + anon_sym_SEMI, + STATE(848), 1, + sym_compound_statement, + STATE(6970), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [271957] = 5, + STATE(852), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [228117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10156), 1, - anon_sym_new, - ACTIONS(10164), 1, - anon_sym_delete, - ACTIONS(10130), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(10128), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [271979] = 9, + ACTIONS(4745), 13, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [228136] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(3906), 1, - anon_sym_COLON_COLON, - ACTIONS(8764), 1, + ACTIONS(9362), 1, sym_identifier, - STATE(3369), 1, - sym_template_type, - STATE(7295), 1, + ACTIONS(9364), 1, + anon_sym_COLON_COLON, + STATE(5769), 1, sym__scope_resolution, - STATE(8225), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9648), 2, + STATE(6839), 1, + sym_field_initializer, + STATE(6869), 1, + sym_operator_name, + STATE(6278), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(7683), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [272009] = 7, + [228173] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7485), 1, - anon_sym_requires, - ACTIONS(9193), 1, + ACTIONS(7196), 1, anon_sym_LBRACK, - STATE(6707), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6571), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(9191), 3, + ACTIONS(9297), 1, + anon_sym_COLON, + ACTIONS(9307), 1, + anon_sym_LBRACE, + ACTIONS(9309), 1, + anon_sym_EQ, + ACTIONS(9311), 1, + anon_sym_try, + ACTIONS(9437), 1, + anon_sym_SEMI, + STATE(2057), 1, + sym_compound_statement, + STATE(7151), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [272035] = 6, + STATE(2072), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [228210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(4566), 1, anon_sym_LBRACK, - STATE(4737), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9619), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(4571), 12, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, - anon_sym_requires, - [272059] = 6, + anon_sym_try, + [228231] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, - anon_sym_LBRACK, - STATE(4737), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9667), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6845), 1, + anon_sym_requires, + ACTIONS(6913), 1, + anon_sym_DASH_GT, + STATE(5557), 1, + sym_trailing_return_type, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [272083] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10142), 1, - anon_sym_new, - ACTIONS(10166), 1, - anon_sym_delete, - ACTIONS(10130), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(10128), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [272105] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8875), 1, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5555), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 3, anon_sym_LPAREN2, - ACTIONS(10062), 1, anon_sym_LBRACK, - STATE(4737), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9665), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [272129] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10168), 1, - anon_sym_delete, - ACTIONS(10170), 1, - anon_sym_new, - ACTIONS(10130), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(10128), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [272151] = 7, + anon_sym_COLON, + [228261] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7485), 1, + ACTIONS(6845), 1, anon_sym_requires, - ACTIONS(8863), 1, - anon_sym_LBRACK, - STATE(6676), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(6913), 1, + anon_sym_DASH_GT, + STATE(5562), 1, + sym_trailing_return_type, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - STATE(6519), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8861), 3, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 3, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [272177] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10174), 1, anon_sym_LBRACK, - STATE(7743), 1, - sym_gnu_asm_input_operand, - STATE(9022), 1, - sym_string_literal, - ACTIONS(10172), 2, - anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [272201] = 7, + [228291] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7485), 1, + ACTIONS(9259), 1, anon_sym_requires, - ACTIONS(8867), 1, - anon_sym_LBRACK, - STATE(6643), 1, - sym_requires_clause, - ACTIONS(5663), 2, + ACTIONS(9159), 2, anon_sym_final, anon_sym_override, - STATE(6501), 2, + STATE(5442), 2, sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8865), 3, + aux_sym__function_postfix_repeat1, + STATE(5555), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [272227] = 9, + anon_sym_LBRACK, + anon_sym_GT2, + [228317] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(10176), 1, - sym_identifier, - ACTIONS(10178), 1, + ACTIONS(6917), 1, anon_sym_COLON_COLON, - STATE(3370), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + ACTIONS(8190), 1, + sym_identifier, + STATE(2542), 1, sym_template_type, - STATE(7263), 1, + STATE(4438), 1, + sym_enumerator_list, + STATE(5982), 1, sym__scope_resolution, - STATE(3316), 2, + STATE(4684), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9648), 2, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [272257] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10180), 1, - anon_sym_delete, - ACTIONS(10182), 1, - anon_sym_new, - ACTIONS(10130), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(10128), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [272279] = 7, + [228353] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7485), 1, - anon_sym_requires, - ACTIONS(8859), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(6622), 1, - sym_requires_clause, - ACTIONS(5663), 2, + STATE(3519), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9133), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - STATE(6515), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8857), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [272305] = 10, + anon_sym_try, + anon_sym_requires, + [228379] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3770), 1, + ACTIONS(371), 1, anon_sym_LBRACE, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(7196), 1, anon_sym_LBRACK, - ACTIONS(10184), 1, + ACTIONS(9295), 1, anon_sym_EQ, - STATE(4620), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(8974), 1, - sym_initializer_list, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [272337] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7204), 1, - anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_requires, - STATE(6701), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6498), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7192), 3, + ACTIONS(9297), 1, + anon_sym_COLON, + ACTIONS(9299), 1, + anon_sym_try, + STATE(565), 1, + sym_compound_statement, + STATE(6895), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [272363] = 9, + STATE(564), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [228413] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(3906), 1, + ACTIONS(5436), 1, + anon_sym_LBRACE, + ACTIONS(6877), 1, anon_sym_COLON_COLON, - ACTIONS(8764), 1, + ACTIONS(8227), 1, sym_identifier, - STATE(3369), 1, + STATE(1892), 1, sym_template_type, - STATE(7295), 1, + STATE(2386), 1, + sym_enumerator_list, + STATE(5968), 1, sym__scope_resolution, - STATE(7756), 2, + STATE(4559), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9648), 2, + STATE(7683), 2, sym_decltype, sym_dependent_type_identifier, - [272393] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7485), 1, - anon_sym_requires, - ACTIONS(8746), 1, - anon_sym_LBRACK, - STATE(6700), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6556), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(8744), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [272419] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_requires, - STATE(6678), 1, - sym_requires_clause, - ACTIONS(5663), 2, - anon_sym_final, - anon_sym_override, - STATE(6527), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(7237), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [272445] = 5, + [228449] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10170), 1, - anon_sym_new, - ACTIONS(10186), 1, - anon_sym_delete, - ACTIONS(10130), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(10128), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, + ACTIONS(1378), 1, anon_sym_template, - anon_sym_operator, - [272467] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - STATE(3212), 1, - sym_parameter_list, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10188), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [272492] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8895), 1, + ACTIONS(5681), 1, + anon_sym_LBRACE, + ACTIONS(6994), 1, anon_sym_COLON_COLON, - ACTIONS(10190), 1, + ACTIONS(8202), 1, sym_identifier, - ACTIONS(10192), 1, - anon_sym_template, STATE(2511), 1, sym_template_type, - STATE(2516), 1, - sym_dependent_type_identifier, - STATE(2595), 1, - sym_qualified_type_identifier, - STATE(7259), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_decltype, - [272523] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(9427), 1, - anon_sym_COLON_COLON, - ACTIONS(10194), 1, - sym_identifier, - STATE(6486), 1, + STATE(2607), 1, + sym_enumerator_list, + STATE(5956), 1, sym__scope_resolution, - STATE(9019), 1, - sym_qualified_identifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [272550] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - ACTIONS(10196), 1, - sym_identifier, - STATE(3405), 1, - sym_dependent_type_identifier, - STATE(3418), 1, - sym_template_type, - STATE(3935), 1, + STATE(4576), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(7261), 1, - sym__scope_resolution, - STATE(9648), 1, + STATE(7683), 2, sym_decltype, - [272581] = 6, + sym_dependent_type_identifier, + [228485] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(263), 1, + anon_sym_LBRACE, + ACTIONS(7196), 1, anon_sym_LBRACK, - STATE(4812), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9675), 5, - anon_sym_LBRACK_LBRACK, + ACTIONS(9297), 1, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [272604] = 10, + ACTIONS(9343), 1, + anon_sym_EQ, + ACTIONS(9345), 1, + anon_sym_try, + STATE(360), 1, + sym_compound_statement, + STATE(7143), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(361), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [228519] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(10178), 1, - anon_sym_COLON_COLON, - ACTIONS(10198), 1, - sym_identifier, - ACTIONS(10200), 1, - anon_sym_template, - STATE(3309), 1, - sym_template_type, - STATE(3313), 1, - sym_dependent_type_identifier, - STATE(3401), 1, - sym_qualified_type_identifier, - STATE(7263), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_decltype, - [272635] = 6, + ACTIONS(8350), 1, + anon_sym_requires, + ACTIONS(8287), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [228545] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(6913), 1, + anon_sym_DASH_GT, + ACTIONS(8309), 1, + anon_sym_requires, + STATE(5584), 1, + sym_trailing_return_type, + ACTIONS(8287), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 3, anon_sym_LPAREN2, - ACTIONS(9621), 1, anon_sym_LBRACK, - STATE(4812), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9619), 5, - anon_sym_LBRACK_LBRACK, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [272658] = 6, + [228575] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(4812), 1, + STATE(3519), 1, sym_parameter_list, - STATE(6654), 1, + STATE(5362), 1, sym__function_declarator_seq, - ACTIONS(9671), 5, + ACTIONS(9131), 8, + 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, - [272681] = 6, + [228601] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(4812), 1, + STATE(3519), 1, sym_parameter_list, - STATE(6654), 1, + STATE(5362), 1, sym__function_declarator_seq, - ACTIONS(9669), 5, + ACTIONS(9129), 8, + 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, - [272704] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8788), 1, - anon_sym_COLON_COLON, - ACTIONS(10202), 1, - sym_identifier, - ACTIONS(10204), 1, - anon_sym_template, - STATE(3405), 1, - sym_dependent_type_identifier, - STATE(3418), 1, - sym_template_type, - STATE(3935), 1, - sym_qualified_type_identifier, - STATE(7267), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_decltype, - [272735] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8989), 1, - anon_sym_COLON_COLON, - ACTIONS(10206), 1, - sym_identifier, - ACTIONS(10208), 1, - anon_sym_template, - STATE(3051), 1, - sym_qualified_type_identifier, - STATE(3059), 1, - sym_dependent_type_identifier, - STATE(3060), 1, - sym_template_type, - STATE(7268), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_decltype, - [272766] = 8, + [228627] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(9427), 1, + ACTIONS(5436), 1, + anon_sym_LBRACE, + ACTIONS(6897), 1, anon_sym_COLON_COLON, - ACTIONS(10210), 1, + ACTIONS(8231), 1, sym_identifier, - STATE(6486), 1, + STATE(1892), 1, + sym_template_type, + STATE(4937), 1, + sym_enumerator_list, + STATE(5966), 1, sym__scope_resolution, - STATE(9397), 1, - sym_qualified_identifier, - STATE(9648), 3, + STATE(4771), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [272793] = 6, + [228663] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(4812), 1, + STATE(3519), 1, sym_parameter_list, - STATE(6654), 1, + STATE(5362), 1, sym__function_declarator_seq, - ACTIONS(9667), 5, + ACTIONS(9121), 8, + 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, - [272816] = 4, + [228689] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10214), 1, - anon_sym_AMP, - ACTIONS(10216), 2, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(10212), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9221), 1, anon_sym_LBRACK, - [272835] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10218), 1, - sym_identifier, - ACTIONS(10222), 1, - sym_system_lib_string, - STATE(9059), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(10220), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [272856] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8875), 1, + STATE(5343), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9219), 8, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9621), 1, - anon_sym_LBRACK, - STATE(4812), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9665), 5, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [272879] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7343), 1, - anon_sym_COLON_COLON, - ACTIONS(10224), 1, - sym_identifier, - ACTIONS(10226), 1, - anon_sym_template, - STATE(2511), 1, - sym_template_type, - STATE(2516), 1, - sym_dependent_type_identifier, - STATE(2595), 1, - sym_qualified_type_identifier, - STATE(7274), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_decltype, - [272910] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8607), 1, - anon_sym_COLON_COLON, - ACTIONS(10228), 1, - sym_identifier, - ACTIONS(10230), 1, - anon_sym_template, - STATE(2511), 1, - sym_template_type, - STATE(2516), 1, - sym_dependent_type_identifier, - STATE(2595), 1, - sym_qualified_type_identifier, - STATE(7275), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_decltype, - [272941] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8625), 1, - anon_sym_COLON_COLON, - ACTIONS(10232), 1, - sym_identifier, - ACTIONS(10234), 1, - anon_sym_template, - STATE(3402), 1, - sym_template_type, - STATE(3414), 1, - sym_dependent_type_identifier, - STATE(3441), 1, - sym_qualified_type_identifier, - STATE(7276), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_decltype, - [272972] = 8, + anon_sym_asm, + anon_sym___asm__, + [228713] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(9427), 1, - anon_sym_COLON_COLON, - ACTIONS(10236), 1, - sym_identifier, - STATE(6486), 1, - sym__scope_resolution, - STATE(9198), 1, - sym_qualified_identifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [272999] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8585), 1, + ACTIONS(3673), 1, anon_sym_COLON_COLON, - ACTIONS(10238), 1, + ACTIONS(4806), 1, + anon_sym_virtual, + ACTIONS(8190), 1, sym_identifier, - ACTIONS(10240), 1, - anon_sym_template, - STATE(3092), 1, + STATE(2542), 1, sym_template_type, - STATE(3098), 1, - sym_dependent_type_identifier, - STATE(3138), 1, - sym_qualified_type_identifier, - STATE(7278), 1, + STATE(5941), 1, + sym_virtual, + STATE(5983), 1, sym__scope_resolution, - STATE(9648), 1, - sym_decltype, - [273030] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7255), 1, - anon_sym_COLON_COLON, - ACTIONS(10242), 1, - sym_identifier, - ACTIONS(10244), 1, - anon_sym_template, - STATE(3405), 1, - sym_dependent_type_identifier, - STATE(3418), 1, - sym_template_type, - STATE(3935), 1, + STATE(6365), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(7279), 1, - sym__scope_resolution, - STATE(9648), 1, + STATE(7683), 2, sym_decltype, - [273061] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4916), 1, - anon_sym_COLON_COLON, - ACTIONS(10246), 1, - sym_identifier, - ACTIONS(10248), 1, - anon_sym_template, - STATE(3379), 1, - sym_qualified_type_identifier, - STATE(3405), 1, sym_dependent_type_identifier, - STATE(3418), 1, - sym_template_type, - STATE(7280), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_decltype, - [273092] = 4, + [228749] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5735), 1, - anon_sym_AMP, - ACTIONS(10250), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5737), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, + ACTIONS(51), 1, anon_sym_LBRACE, + ACTIONS(7196), 1, anon_sym_LBRACK, - anon_sym_or, - [273111] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8647), 1, - anon_sym_COLON_COLON, - ACTIONS(10252), 1, - sym_identifier, - ACTIONS(10254), 1, - anon_sym_template, - STATE(3218), 1, - sym_dependent_type_identifier, - STATE(3272), 1, - sym_template_type, - STATE(3278), 1, - sym_qualified_type_identifier, - STATE(7282), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_decltype, - [273142] = 5, + ACTIONS(9297), 1, + anon_sym_COLON, + ACTIONS(9325), 1, + anon_sym_EQ, + ACTIONS(9327), 1, + anon_sym_try, + STATE(902), 1, + sym_compound_statement, + STATE(6855), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(915), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [228783] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10256), 1, - sym_identifier, - ACTIONS(10258), 1, - sym_system_lib_string, - STATE(9483), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(10220), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [273163] = 6, + ACTIONS(8220), 1, + anon_sym_requires, + ACTIONS(8179), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [228809] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(3383), 1, - sym_template_argument_list, - ACTIONS(7597), 2, + ACTIONS(770), 1, + anon_sym_LBRACE, + ACTIONS(7196), 1, anon_sym_LBRACK, + ACTIONS(9297), 1, anon_sym_COLON, - ACTIONS(4920), 4, - anon_sym_RPAREN, + ACTIONS(9401), 1, + anon_sym_EQ, + ACTIONS(9403), 1, + anon_sym_try, + STATE(859), 1, + sym_compound_statement, + STATE(7038), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [273186] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(9427), 1, - anon_sym_COLON_COLON, - ACTIONS(10260), 1, - sym_identifier, - STATE(6486), 1, - sym__scope_resolution, - STATE(9395), 1, - sym_qualified_identifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [273213] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - ACTIONS(10202), 1, - sym_identifier, - ACTIONS(10204), 1, - anon_sym_template, - STATE(3379), 1, - sym_qualified_type_identifier, - STATE(3405), 1, - sym_dependent_type_identifier, - STATE(3418), 1, - sym_template_type, - STATE(7286), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_decltype, - [273244] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10262), 1, - sym_identifier, - ACTIONS(10264), 1, - sym_system_lib_string, - STATE(9134), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(10220), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [273265] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7300), 1, - anon_sym_COLON_COLON, - ACTIONS(10242), 1, - sym_identifier, - ACTIONS(10244), 1, - anon_sym_template, - STATE(3379), 1, - sym_qualified_type_identifier, - STATE(3405), 1, - sym_dependent_type_identifier, - STATE(3418), 1, - sym_template_type, - STATE(7288), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_decltype, - [273296] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7318), 1, - anon_sym_COLON_COLON, - ACTIONS(10266), 1, - sym_identifier, - ACTIONS(10268), 1, - anon_sym_template, - STATE(5573), 1, - sym_dependent_type_identifier, - STATE(5576), 1, - sym_template_type, - STATE(5679), 1, - sym_qualified_type_identifier, - STATE(7289), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_decltype, - [273327] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10270), 1, - sym_identifier, - ACTIONS(10272), 1, - sym_system_lib_string, - STATE(9605), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(10220), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [273348] = 8, + STATE(856), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [228843] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - anon_sym_template, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(9427), 1, - anon_sym_COLON_COLON, - ACTIONS(10274), 1, - sym_identifier, - STATE(6486), 1, - sym__scope_resolution, - STATE(9260), 1, - sym_qualified_identifier, - STATE(9648), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [273375] = 8, + ACTIONS(6913), 1, + anon_sym_DASH_GT, + ACTIONS(8185), 1, + anon_sym_requires, + STATE(5577), 1, + sym_trailing_return_type, + ACTIONS(8179), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [228873] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(9427), 1, + ACTIONS(4611), 1, anon_sym_COLON_COLON, - ACTIONS(10276), 1, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(8210), 1, sym_identifier, - STATE(6486), 1, + STATE(2542), 1, + sym_template_type, + STATE(3635), 1, + sym_enumerator_list, + STATE(5953), 1, sym__scope_resolution, - STATE(9476), 1, - sym_qualified_identifier, - STATE(9648), 3, + STATE(3495), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [273402] = 10, + [228909] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(8679), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_identifier, - ACTIONS(10280), 1, - anon_sym_template, - STATE(3143), 1, - sym_template_type, - STATE(3184), 1, - sym_dependent_type_identifier, - STATE(3211), 1, - sym_qualified_type_identifier, - STATE(7293), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_decltype, - [273433] = 5, + ACTIONS(8135), 1, + anon_sym_requires, + ACTIONS(7972), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [228935] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10282), 1, - sym_identifier, - ACTIONS(10284), 1, - sym_system_lib_string, - STATE(9647), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(10220), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [273454] = 10, + ACTIONS(263), 1, + anon_sym_LBRACE, + ACTIONS(7196), 1, + anon_sym_LBRACK, + ACTIONS(9297), 1, + anon_sym_COLON, + ACTIONS(9343), 1, + anon_sym_EQ, + ACTIONS(9345), 1, + anon_sym_try, + STATE(339), 1, + sym_compound_statement, + STATE(7165), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(340), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [228969] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(3906), 1, + ACTIONS(6965), 1, anon_sym_COLON_COLON, - ACTIONS(10196), 1, + ACTIONS(8144), 1, + anon_sym_LBRACE, + ACTIONS(8192), 1, sym_identifier, - STATE(3379), 1, - sym_qualified_type_identifier, - STATE(3405), 1, - sym_dependent_type_identifier, - STATE(3418), 1, + STATE(4482), 1, sym_template_type, - STATE(7295), 1, + STATE(4803), 1, + sym_enumerator_list, + STATE(5975), 1, sym__scope_resolution, - STATE(9648), 1, + STATE(4554), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, sym_decltype, - [273485] = 8, + sym_dependent_type_identifier, + [229005] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9123), 1, + anon_sym_LBRACK, + STATE(3519), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9141), 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, + [229031] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6913), 1, + anon_sym_DASH_GT, + ACTIONS(7975), 1, + anon_sym_requires, + STATE(5652), 1, + sym_trailing_return_type, + ACTIONS(7972), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [229061] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(9427), 1, + ACTIONS(5542), 1, + anon_sym_LBRACE, + ACTIONS(8115), 1, anon_sym_COLON_COLON, - ACTIONS(10286), 1, + ACTIONS(8229), 1, sym_identifier, - STATE(6486), 1, + STATE(2422), 1, + sym_template_type, + STATE(2614), 1, + sym_enumerator_list, + STATE(5964), 1, sym__scope_resolution, - STATE(9445), 1, - sym_qualified_identifier, - STATE(9648), 3, + STATE(2401), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [273512] = 10, + [229097] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5558), 1, + anon_sym_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + STATE(2466), 1, + sym_parameter_list, + STATE(5866), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5572), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_try, + [229125] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(7196), 1, + anon_sym_LBRACK, + ACTIONS(9297), 1, + anon_sym_COLON, + ACTIONS(9325), 1, + anon_sym_EQ, + ACTIONS(9327), 1, + anon_sym_try, + STATE(926), 1, + sym_compound_statement, + STATE(7091), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(914), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [229159] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2056), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(7296), 1, + ACTIONS(5692), 1, + anon_sym_LBRACE, + ACTIONS(8034), 1, anon_sym_COLON_COLON, - ACTIONS(10288), 1, + ACTIONS(8237), 1, sym_identifier, - ACTIONS(10290), 1, - anon_sym_template, - STATE(3279), 1, - sym_dependent_type_identifier, - STATE(3304), 1, + STATE(2586), 1, sym_template_type, - STATE(3334), 1, - sym_qualified_type_identifier, - STATE(7297), 1, + STATE(2978), 1, + sym_enumerator_list, + STATE(5960), 1, sym__scope_resolution, - STATE(9648), 1, + STATE(2591), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, sym_decltype, - [273543] = 8, + sym_dependent_type_identifier, + [229195] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(9427), 1, + ACTIONS(4635), 1, anon_sym_COLON_COLON, - ACTIONS(10292), 1, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(8196), 1, sym_identifier, - STATE(6486), 1, + STATE(2542), 1, + sym_template_type, + STATE(3635), 1, + sym_enumerator_list, + STATE(5992), 1, sym__scope_resolution, - STATE(9037), 1, - sym_qualified_identifier, - STATE(9648), 3, + STATE(3662), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [273570] = 5, + [229231] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5743), 1, - anon_sym_AMP, - ACTIONS(10250), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(10294), 2, + ACTIONS(9439), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5745), 4, + ACTIONS(9441), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5398), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACE, anon_sym_LBRACK, - [273591] = 10, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [229253] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2056), 1, - anon_sym_decltype, - ACTIONS(7233), 1, - anon_sym_COLON_COLON, - ACTIONS(10230), 1, - anon_sym_template, - ACTIONS(10296), 1, - sym_identifier, - STATE(2511), 1, - sym_template_type, - STATE(2516), 1, - sym_dependent_type_identifier, - STATE(2595), 1, - sym_qualified_type_identifier, - STATE(7300), 1, - sym__scope_resolution, - STATE(9648), 1, - sym_decltype, - [273622] = 6, + ACTIONS(6863), 1, + anon_sym_requires, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5558), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8888), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [229279] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(3383), 1, - sym_template_argument_list, - ACTIONS(4867), 2, + ACTIONS(818), 1, + anon_sym_LBRACE, + ACTIONS(7196), 1, anon_sym_LBRACK, + ACTIONS(9297), 1, anon_sym_COLON, - ACTIONS(4872), 4, - anon_sym_RPAREN, + ACTIONS(9393), 1, + anon_sym_EQ, + ACTIONS(9395), 1, + anon_sym_try, + STATE(863), 1, + sym_compound_statement, + STATE(6940), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [273645] = 10, + STATE(864), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [229313] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2056), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(8701), 1, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(6951), 1, anon_sym_COLON_COLON, - ACTIONS(10290), 1, - anon_sym_template, - ACTIONS(10298), 1, + ACTIONS(8194), 1, sym_identifier, - STATE(3279), 1, - sym_dependent_type_identifier, - STATE(3304), 1, + STATE(2542), 1, sym_template_type, - STATE(3334), 1, - sym_qualified_type_identifier, - STATE(7302), 1, + STATE(3640), 1, + sym_enumerator_list, + STATE(5987), 1, sym__scope_resolution, - STATE(9648), 1, + STATE(4324), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, sym_decltype, - [273676] = 6, + sym_dependent_type_identifier, + [229349] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9621), 1, + ACTIONS(371), 1, + anon_sym_LBRACE, + ACTIONS(7196), 1, anon_sym_LBRACK, - STATE(4812), 1, - sym_parameter_list, - STATE(6654), 1, - sym__function_declarator_seq, - ACTIONS(9663), 5, - anon_sym_LBRACK_LBRACK, + ACTIONS(9295), 1, + anon_sym_EQ, + ACTIONS(9297), 1, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [273699] = 8, + ACTIONS(9299), 1, + anon_sym_try, + STATE(543), 1, + sym_compound_statement, + STATE(6859), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(538), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [229383] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_template, - ACTIONS(2056), 1, + ACTIONS(2044), 1, anon_sym_decltype, - ACTIONS(9427), 1, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(6917), 1, anon_sym_COLON_COLON, - ACTIONS(10300), 1, + ACTIONS(8190), 1, sym_identifier, - STATE(6486), 1, + STATE(2542), 1, + sym_template_type, + STATE(3640), 1, + sym_enumerator_list, + STATE(5982), 1, sym__scope_resolution, - STATE(9565), 1, - sym_qualified_identifier, - STATE(9648), 3, + STATE(3771), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [273726] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(9201), 1, - anon_sym_TILDE, - ACTIONS(10302), 1, - sym_identifier, - ACTIONS(10304), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10307), 1, - anon_sym_template, - STATE(8569), 1, - sym_operator_name, - STATE(4035), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [273753] = 8, + [229419] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(8881), 1, + ACTIONS(8654), 1, anon_sym_LBRACK, - ACTIONS(10309), 1, - anon_sym_RPAREN, - STATE(4716), 1, + STATE(3515), 1, sym_parameter_list, - STATE(7190), 1, + STATE(5760), 1, sym__function_declarator_seq, - STATE(7419), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273779] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(10311), 1, - anon_sym_SEMI, - ACTIONS(10313), 1, + ACTIONS(9264), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_EQ, - STATE(2334), 1, - sym_template_argument_list, - STATE(7607), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [273805] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10174), 1, - anon_sym_LBRACK, - STATE(8262), 1, - sym_gnu_asm_input_operand, - STATE(9022), 1, - sym_string_literal, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [273825] = 8, + anon_sym_GT2, + [229449] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(770), 1, + anon_sym_LBRACE, + ACTIONS(7196), 1, anon_sym_LBRACK, - ACTIONS(10315), 1, + ACTIONS(9297), 1, anon_sym_COLON, - STATE(4877), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(7099), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [273851] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(9345), 1, - anon_sym_TILDE, - ACTIONS(10317), 1, - sym_identifier, - ACTIONS(10319), 1, - anon_sym_template, - STATE(8759), 1, - sym_operator_name, - STATE(4247), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [273875] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(9201), 1, - anon_sym_TILDE, - ACTIONS(10302), 1, - sym_identifier, - ACTIONS(10307), 1, - anon_sym_template, - STATE(8569), 1, - sym_operator_name, - STATE(4035), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [273899] = 8, + ACTIONS(9401), 1, + anon_sym_EQ, + ACTIONS(9403), 1, + anon_sym_try, + STATE(848), 1, + sym_compound_statement, + STATE(6970), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(852), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [229483] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(6863), 1, + anon_sym_requires, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5555), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9175), 1, anon_sym_LBRACK, - ACTIONS(10321), 1, - anon_sym_SEMI, - STATE(4716), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [273925] = 8, + anon_sym_GT2, + [229509] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(5558), 1, anon_sym_LBRACK, - ACTIONS(10323), 1, - anon_sym_SEMI, - STATE(4716), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + STATE(2466), 1, sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, + STATE(5866), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10327), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(10325), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [273967] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, - anon_sym_LBRACK, - STATE(4709), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9665), 4, + ACTIONS(5563), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_try, - [273989] = 8, + [229537] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(9445), 1, anon_sym_LBRACK, - ACTIONS(10329), 1, - anon_sym_SEMI, - STATE(4716), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, + STATE(5343), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [274015] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(7597), 1, - anon_sym_LBRACK, - STATE(6837), 1, - sym_template_argument_list, - ACTIONS(4920), 4, + ACTIONS(9443), 8, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - [274037] = 6, + [229561] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, - anon_sym_LBRACK, - STATE(4794), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9675), 4, - anon_sym_COLON, + ACTIONS(6863), 1, + anon_sym_requires, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [274059] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8881), 1, anon_sym_LBRACK, - ACTIONS(9740), 1, - anon_sym_RPAREN, - STATE(4716), 1, - sym_parameter_list, - STATE(7190), 1, - sym__function_declarator_seq, - STATE(7419), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274085] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(10331), 1, - anon_sym_SEMI, - ACTIONS(10333), 1, - anon_sym_EQ, - STATE(2334), 1, - sym_template_argument_list, - STATE(7682), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274111] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(10335), 1, - anon_sym_SEMI, - ACTIONS(10337), 1, - anon_sym_EQ, - STATE(2334), 1, - sym_template_argument_list, - STATE(7635), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274137] = 8, + anon_sym_GT2, + [229587] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(5558), 1, anon_sym_LBRACK, - ACTIONS(10339), 1, - anon_sym_SEMI, - STATE(4716), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + STATE(2466), 1, sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, + STATE(5866), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [274163] = 8, + ACTIONS(5582), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_try, + [229615] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(818), 1, + anon_sym_LBRACE, + ACTIONS(7196), 1, anon_sym_LBRACK, - ACTIONS(10341), 1, + ACTIONS(9297), 1, anon_sym_COLON, - STATE(4877), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(7099), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274189] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(9393), 1, + anon_sym_EQ, + ACTIONS(9395), 1, + anon_sym_try, + STATE(889), 1, + sym_compound_statement, + STATE(6978), 1, + sym_field_initializer_list, + ACTIONS(4615), 2, anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(10343), 1, - anon_sym_SEMI, - STATE(4716), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274215] = 6, + anon_sym_LBRACK_LBRACK, + STATE(885), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [229649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(9441), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5376), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10062), 1, + anon_sym_PIPE_PIPE, anon_sym_LBRACK, - STATE(4794), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9619), 4, - anon_sym_COLON, + anon_sym_or, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [274237] = 8, + [229669] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(10345), 1, - anon_sym_SEMI, - STATE(4716), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274263] = 8, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(3673), 1, + anon_sym_COLON_COLON, + ACTIONS(4806), 1, + anon_sym_virtual, + ACTIONS(8190), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(5924), 1, + sym_virtual, + STATE(5983), 1, + sym__scope_resolution, + STATE(6476), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [229705] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(8881), 1, - anon_sym_LBRACK, - ACTIONS(9764), 1, - anon_sym_RPAREN, - STATE(4716), 1, - sym_parameter_list, - STATE(7190), 1, - sym__function_declarator_seq, - STATE(7419), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274289] = 6, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(5681), 1, + anon_sym_LBRACE, + ACTIONS(7998), 1, + anon_sym_COLON_COLON, + ACTIONS(8200), 1, + sym_identifier, + STATE(2511), 1, + sym_template_type, + STATE(2607), 1, + sym_enumerator_list, + STATE(5951), 1, + sym__scope_resolution, + STATE(3768), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [229741] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, - anon_sym_LBRACK, - STATE(4709), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9667), 4, - anon_sym_SEMI, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(5453), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [274311] = 8, + ACTIONS(8090), 1, + anon_sym_COLON_COLON, + ACTIONS(8216), 1, + sym_identifier, + STATE(2356), 1, + sym_template_type, + STATE(2418), 1, + sym_enumerator_list, + STATE(5965), 1, + sym__scope_resolution, + STATE(2352), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [229777] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(10347), 1, - anon_sym_COLON, - STATE(4877), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(7099), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274337] = 6, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(8196), 1, + sym_identifier, + ACTIONS(8212), 1, + anon_sym_COLON_COLON, + STATE(2542), 1, + sym_template_type, + STATE(3635), 1, + sym_enumerator_list, + STATE(5959), 1, + sym__scope_resolution, + STATE(3852), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [229813] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9449), 1, + anon_sym_LT, + ACTIONS(9451), 1, anon_sym_LBRACK, - STATE(4709), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(10349), 4, + STATE(5857), 1, + sym_template_argument_list, + ACTIONS(9447), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - [274359] = 8, + [229837] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4297), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(3673), 1, anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(10351), 1, - anon_sym_SEMI, - ACTIONS(10353), 1, - anon_sym_EQ, - STATE(2334), 1, - sym_template_argument_list, - STATE(7953), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274385] = 8, + ACTIONS(4806), 1, + anon_sym_virtual, + ACTIONS(8190), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(5935), 1, + sym_virtual, + STATE(5983), 1, + sym__scope_resolution, + STATE(6415), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [229873] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(8654), 1, anon_sym_LBRACK, - ACTIONS(10355), 1, - anon_sym_COLON, - STATE(4877), 1, + STATE(3515), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5760), 1, sym__function_declarator_seq, - STATE(7099), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [274411] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, - anon_sym_LBRACK, - STATE(4794), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9671), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [274433] = 8, + ACTIONS(9231), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [229903] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(8654), 1, anon_sym_LBRACK, - ACTIONS(9710), 1, - anon_sym_COLON, - STATE(4877), 1, + STATE(3515), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5760), 1, sym__function_declarator_seq, - STATE(7099), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [274459] = 6, + ACTIONS(9223), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [229933] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, - anon_sym_LBRACK, - STATE(4794), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9669), 4, - anon_sym_COLON, + ACTIONS(6863), 1, + anon_sym_requires, + ACTIONS(6843), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [274481] = 8, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [229959] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(6913), 1, + anon_sym_DASH_GT, + ACTIONS(9162), 1, + anon_sym_requires, + STATE(5588), 1, + sym_trailing_return_type, + ACTIONS(9159), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5555), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 3, anon_sym_LPAREN2, - ACTIONS(9175), 1, anon_sym_LBRACK, - ACTIONS(10357), 1, anon_sym_COLON, - STATE(4877), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(7099), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274507] = 8, + [229989] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(9453), 1, + anon_sym_requires, + ACTIONS(9233), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5558), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8888), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9175), 1, anon_sym_LBRACK, - ACTIONS(10359), 1, - anon_sym_SEMI, - STATE(4716), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274533] = 8, + anon_sym_GT2, + [230015] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4297), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(5620), 1, + anon_sym_LBRACE, + ACTIONS(8012), 1, anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(10361), 1, - anon_sym_SEMI, - ACTIONS(10363), 1, - anon_sym_EQ, - STATE(2334), 1, - sym_template_argument_list, - STATE(7610), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274559] = 8, + ACTIONS(8218), 1, + sym_identifier, + STATE(2467), 1, + sym_template_type, + STATE(2653), 1, + sym_enumerator_list, + STATE(5980), 1, + sym__scope_resolution, + STATE(2448), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [230051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(9704), 1, - anon_sym_COLON, - STATE(4877), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(7099), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274585] = 8, + STATE(5457), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9100), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9102), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [230073] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(8881), 1, + ACTIONS(5558), 1, anon_sym_LBRACK, - ACTIONS(9760), 1, - anon_sym_RPAREN, - STATE(4716), 1, - sym_parameter_list, - STATE(7190), 1, - sym__function_declarator_seq, - STATE(7419), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274611] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(10365), 1, - anon_sym_RPAREN, - STATE(4716), 1, + STATE(2466), 1, sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(6821), 2, + STATE(5866), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [274637] = 6, + ACTIONS(5550), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_try, + [230101] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(4794), 1, + STATE(3519), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5362), 1, sym__function_declarator_seq, - ACTIONS(9667), 4, - anon_sym_COLON, + ACTIONS(9135), 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, - [274659] = 8, + [230127] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - ACTIONS(10367), 1, - anon_sym_SEMI, - STATE(4716), 1, + STATE(3519), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5362), 1, sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274685] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7202), 1, + ACTIONS(9137), 8, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(10369), 1, - anon_sym_COLON, - STATE(4877), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(7099), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274711] = 8, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [230153] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(6863), 1, + anon_sym_requires, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5563), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8881), 1, anon_sym_LBRACK, - ACTIONS(9738), 1, - anon_sym_RPAREN, - STATE(4716), 1, - sym_parameter_list, - STATE(7190), 1, - sym__function_declarator_seq, - STATE(7419), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274737] = 8, + anon_sym_GT2, + [230179] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4297), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(3673), 1, anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(10371), 1, - anon_sym_SEMI, - ACTIONS(10373), 1, - anon_sym_EQ, - STATE(2334), 1, - sym_template_argument_list, - STATE(7720), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274763] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(9105), 1, - anon_sym_TILDE, - ACTIONS(10375), 1, + ACTIONS(4806), 1, + anon_sym_virtual, + ACTIONS(8190), 1, sym_identifier, - ACTIONS(10377), 1, - anon_sym_template, - STATE(8576), 1, - sym_operator_name, - STATE(3461), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [274787] = 8, + STATE(2542), 1, + sym_template_type, + STATE(5931), 1, + sym_virtual, + STATE(5983), 1, + sym__scope_resolution, + STATE(6530), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [230215] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(5651), 1, + anon_sym_LBRACK, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(10379), 1, - anon_sym_SEMI, - ACTIONS(10381), 1, - anon_sym_EQ, - STATE(2334), 1, - sym_template_argument_list, - STATE(7620), 2, + STATE(5343), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [274813] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(7652), 1, - sym_string_literal, - ACTIONS(10383), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [274831] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(5649), 8, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8881), 1, - anon_sym_LBRACK, - ACTIONS(9736), 1, - anon_sym_RPAREN, - STATE(4716), 1, - sym_parameter_list, - STATE(7190), 1, - sym__function_declarator_seq, - STATE(7419), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274857] = 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [230239] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(6845), 1, + anon_sym_requires, + ACTIONS(6913), 1, + anon_sym_DASH_GT, + STATE(5578), 1, + sym_trailing_return_type, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5579), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 3, anon_sym_LPAREN2, - ACTIONS(10062), 1, anon_sym_LBRACK, - STATE(4794), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9665), 4, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [274879] = 5, + [230269] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6189), 1, - anon_sym_LBRACK, - ACTIONS(6432), 1, + ACTIONS(9449), 1, anon_sym_LT, - STATE(3383), 1, + ACTIONS(9458), 1, + anon_sym_LBRACK, + STATE(5853), 1, sym_template_argument_list, - ACTIONS(6187), 5, - anon_sym_RPAREN, + ACTIONS(9456), 9, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - [274899] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10162), 1, - anon_sym_LBRACK, - STATE(8234), 1, - sym_gnu_asm_output_operand, - STATE(8942), 1, - sym_string_literal, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [274919] = 8, + anon_sym_try, + [230293] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4297), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(5436), 1, + anon_sym_LBRACE, + ACTIONS(8060), 1, anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(10385), 1, - anon_sym_SEMI, - ACTIONS(10387), 1, - anon_sym_EQ, - STATE(2334), 1, - sym_template_argument_list, - STATE(7589), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274945] = 8, + ACTIONS(8198), 1, + sym_identifier, + STATE(1892), 1, + sym_template_type, + STATE(2386), 1, + sym_enumerator_list, + STATE(5972), 1, + sym__scope_resolution, + STATE(3608), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [230329] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, - anon_sym_LBRACK, - ACTIONS(10389), 1, - anon_sym_COLON, - STATE(4877), 1, - sym_parameter_list, - STATE(6993), 1, - sym__function_declarator_seq, - STATE(7099), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274971] = 6, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(7911), 1, + anon_sym_LBRACE, + ACTIONS(8194), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(4438), 1, + sym_enumerator_list, + STATE(5987), 1, + sym__scope_resolution, + STATE(4401), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [230365] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, - anon_sym_LBRACK, - STATE(4794), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9663), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, + ACTIONS(6845), 1, anon_sym_requires, - [274993] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(9105), 1, - anon_sym_TILDE, - ACTIONS(10391), 1, - sym_identifier, - ACTIONS(10393), 1, - anon_sym_template, - STATE(8678), 1, - sym_operator_name, - STATE(3461), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [275017] = 8, + ACTIONS(6913), 1, + anon_sym_DASH_GT, + STATE(5553), 1, + sym_trailing_return_type, + ACTIONS(6843), 2, + anon_sym_final, + anon_sym_override, + STATE(5442), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5551), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [230395] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(8654), 1, anon_sym_LBRACK, - ACTIONS(10395), 1, - anon_sym_SEMI, - STATE(4716), 1, + STATE(3515), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5760), 1, sym__function_declarator_seq, - STATE(6821), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [275043] = 8, + ACTIONS(9209), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [230425] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(8654), 1, anon_sym_LBRACK, - ACTIONS(9700), 1, - anon_sym_COLON, - STATE(4877), 1, + STATE(3515), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5760), 1, sym__function_declarator_seq, - STATE(7099), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [275069] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10399), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(10397), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [275085] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(10401), 1, - anon_sym_SEMI, - ACTIONS(10403), 1, + ACTIONS(9211), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_EQ, - STATE(2334), 1, - sym_template_argument_list, - STATE(7584), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [275111] = 6, + anon_sym_GT2, + [230455] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(4867), 1, - anon_sym_LBRACK, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(6837), 1, - sym_template_argument_list, - ACTIONS(4872), 4, - anon_sym_LPAREN2, + ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [275133] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(8654), 1, anon_sym_LBRACK, - STATE(4709), 1, + STATE(3569), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5760), 1, sym__function_declarator_seq, - ACTIONS(9619), 4, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9209), 4, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_try, - [275155] = 8, + [230484] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(8405), 1, + anon_sym_try, + ACTIONS(8654), 1, anon_sym_LBRACK, - ACTIONS(9724), 1, - anon_sym_COLON, - STATE(4877), 1, + ACTIONS(9349), 1, + anon_sym_LBRACE, + STATE(2210), 1, + sym_compound_statement, + STATE(2222), 1, + sym_try_statement, + STATE(3569), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5760), 1, sym__function_declarator_seq, - STATE(7099), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [275181] = 8, + [230519] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(8654), 1, anon_sym_LBRACK, - ACTIONS(9726), 1, - anon_sym_COLON, - STATE(4877), 1, + STATE(3569), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5760), 1, sym__function_declarator_seq, - STATE(7099), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [275207] = 8, + ACTIONS(9231), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [230548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5739), 1, + anon_sym_LBRACK, + ACTIONS(5737), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [230567] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(371), 1, + anon_sym_LBRACE, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(8654), 1, anon_sym_LBRACK, - ACTIONS(10405), 1, - anon_sym_SEMI, - STATE(4716), 1, + ACTIONS(8804), 1, + anon_sym_try, + STATE(528), 1, + sym_try_statement, + STATE(529), 1, + sym_compound_statement, + STATE(3569), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5760), 1, sym__function_declarator_seq, - STATE(6821), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [275233] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4403), 1, - anon_sym_AMP, - ACTIONS(4401), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - [275248] = 6, + [230602] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9460), 1, anon_sym_LBRACK, - STATE(4739), 1, + STATE(3542), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5645), 1, sym__function_declarator_seq, - ACTIONS(9675), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(9135), 7, anon_sym_COMMA, - anon_sym_GT2, - [275269] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10214), 1, - anon_sym_AMP, - ACTIONS(10212), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LT, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, - [275284] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [230627] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(8397), 1, + anon_sym_try, + ACTIONS(8654), 1, anon_sym_LBRACK, - STATE(4739), 1, + ACTIONS(9307), 1, + anon_sym_LBRACE, + STATE(2052), 1, + sym_try_statement, + STATE(2053), 1, + sym_compound_statement, + STATE(3569), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5760), 1, sym__function_declarator_seq, - ACTIONS(9619), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [275305] = 6, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [230662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(5898), 1, anon_sym_LBRACK, - STATE(4739), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9665), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(5896), 10, anon_sym_COMMA, - anon_sym_GT2, - [275326] = 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [230681] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9460), 1, anon_sym_LBRACK, - STATE(4739), 1, + STATE(3537), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5645), 1, sym__function_declarator_seq, - ACTIONS(9667), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [275347] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4944), 1, - anon_sym_LBRACE, - ACTIONS(10407), 1, - sym_identifier, - ACTIONS(10409), 1, - anon_sym_COLON_COLON, - ACTIONS(10411), 1, - anon_sym_inline, - STATE(1278), 1, - sym_declaration_list, - STATE(8578), 1, - sym_nested_namespace_specifier, - STATE(9576), 1, - sym__namespace_specifier, - [275372] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4946), 1, + ACTIONS(9121), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(10409), 1, - anon_sym_COLON_COLON, - ACTIONS(10411), 1, - anon_sym_inline, - ACTIONS(10413), 1, - sym_identifier, - STATE(1369), 1, - sym_declaration_list, - STATE(8791), 1, - sym_nested_namespace_specifier, - STATE(9576), 1, - sym__namespace_specifier, - [275397] = 6, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [230706] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9460), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(3542), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5645), 1, sym__function_declarator_seq, - ACTIONS(9669), 3, + ACTIONS(9141), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [275418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5828), 1, - anon_sym_AMP, - ACTIONS(5830), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_final, + anon_sym_override, anon_sym_requires, - [275433] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(10409), 1, - anon_sym_COLON_COLON, - ACTIONS(10411), 1, - anon_sym_inline, - ACTIONS(10415), 1, - sym_identifier, - STATE(1420), 1, - sym_declaration_list, - STATE(8553), 1, - sym_nested_namespace_specifier, - STATE(9576), 1, - sym__namespace_specifier, - [275458] = 7, + [230731] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(8875), 1, + ACTIONS(818), 1, + anon_sym_LBRACE, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10417), 1, - anon_sym_RPAREN, - STATE(3212), 1, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(8764), 1, + anon_sym_try, + STATE(779), 1, + sym_try_statement, + STATE(800), 1, + sym_compound_statement, + STATE(3569), 1, sym_parameter_list, - STATE(7162), 2, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [275481] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(10409), 1, - anon_sym_COLON_COLON, - ACTIONS(10411), 1, - anon_sym_inline, - ACTIONS(10419), 1, - sym_identifier, - STATE(599), 1, - sym_declaration_list, - STATE(8670), 1, - sym_nested_namespace_specifier, - STATE(9576), 1, - sym__namespace_specifier, - [275506] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10423), 1, - anon_sym_AMP, - ACTIONS(10421), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - [275521] = 6, + [230766] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9460), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(3537), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5645), 1, sym__function_declarator_seq, - ACTIONS(9619), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9129), 7, anon_sym_SEMI, - [275542] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5951), 1, - anon_sym_COLON, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - STATE(3212), 1, - sym_parameter_list, - STATE(7429), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [275565] = 8, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [230791] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4942), 1, - anon_sym_LBRACE, - ACTIONS(10409), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8968), 1, anon_sym_COLON_COLON, - ACTIONS(10411), 1, - anon_sym_inline, - ACTIONS(10425), 1, + ACTIONS(9462), 1, sym_identifier, - STATE(832), 1, - sym_declaration_list, - STATE(8730), 1, - sym_nested_namespace_specifier, - STATE(9576), 1, - sym__namespace_specifier, - [275590] = 6, + STATE(5321), 1, + sym__scope_resolution, + STATE(7537), 1, + sym_qualified_identifier, + ACTIONS(9464), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [230822] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9460), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(3542), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5645), 1, sym__function_declarator_seq, - ACTIONS(9663), 3, + ACTIONS(9129), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [275611] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5900), 1, - anon_sym_AMP, - ACTIONS(5902), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_final, + anon_sym_override, anon_sym_requires, - [275626] = 6, + [230847] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9460), 1, anon_sym_LBRACK, - STATE(4739), 1, + STATE(3542), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5645), 1, sym__function_declarator_seq, - ACTIONS(9663), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(9137), 7, anon_sym_COMMA, - anon_sym_GT2, - [275647] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4946), 1, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(10409), 1, - anon_sym_COLON_COLON, - ACTIONS(10411), 1, - anon_sym_inline, - ACTIONS(10427), 1, - sym_identifier, - STATE(1355), 1, - sym_declaration_list, - STATE(8761), 1, - sym_nested_namespace_specifier, - STATE(9576), 1, - sym__namespace_specifier, - [275672] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [230872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9458), 1, anon_sym_LBRACK, - STATE(4706), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9675), 3, + ACTIONS(9456), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - [275693] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(5976), 1, - anon_sym_COLON, - ACTIONS(7202), 1, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - STATE(3212), 1, - sym_parameter_list, - STATE(7429), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [275716] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3770), 1, anon_sym_LBRACE, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(7218), 1, - anon_sym_LPAREN2, - STATE(8094), 1, - sym_template_argument_list, - STATE(8096), 2, - sym_argument_list, - sym_initializer_list, - [275739] = 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [230891] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, + ACTIONS(5651), 1, anon_sym_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10429), 1, - anon_sym_RPAREN, - STATE(3212), 1, - sym_parameter_list, - STATE(7162), 2, + STATE(5501), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [275762] = 5, + ACTIONS(5649), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_try, + [230914] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6189), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(6837), 1, - sym_template_argument_list, - ACTIONS(6187), 4, + ACTIONS(9466), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5376), 8, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [275781] = 6, + anon_sym_COLON, + anon_sym_or, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [230935] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9460), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(3537), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5645), 1, sym__function_declarator_seq, - ACTIONS(9671), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9131), 7, anon_sym_SEMI, - [275802] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4944), 1, anon_sym_LBRACE, - ACTIONS(10409), 1, - anon_sym_COLON_COLON, - ACTIONS(10411), 1, - anon_sym_inline, - ACTIONS(10431), 1, - sym_identifier, - STATE(1311), 1, - sym_declaration_list, - STATE(8624), 1, - sym_nested_namespace_specifier, - STATE(9576), 1, - sym__namespace_specifier, - [275827] = 7, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [230960] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(9460), 1, anon_sym_LBRACK, - STATE(4640), 1, + STATE(3537), 1, sym_parameter_list, - STATE(6993), 1, + STATE(5645), 1, sym__function_declarator_seq, - STATE(6821), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [275850] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(10409), 1, - anon_sym_COLON_COLON, - ACTIONS(10411), 1, - anon_sym_inline, - ACTIONS(10433), 1, - sym_identifier, - STATE(583), 1, - sym_declaration_list, - STATE(8632), 1, - sym_nested_namespace_specifier, - STATE(9576), 1, - sym__namespace_specifier, - [275875] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4950), 1, + ACTIONS(9133), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(10409), 1, - anon_sym_COLON_COLON, - ACTIONS(10411), 1, - anon_sym_inline, - ACTIONS(10435), 1, - sym_identifier, - STATE(1419), 1, - sym_declaration_list, - STATE(8506), 1, - sym_nested_namespace_specifier, - STATE(9576), 1, - sym__namespace_specifier, - [275900] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10437), 1, - anon_sym_RPAREN, - STATE(3212), 1, - sym_parameter_list, - STATE(7162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [275923] = 6, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [230985] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9460), 1, anon_sym_LBRACK, - STATE(4739), 1, + STATE(3542), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5645), 1, sym__function_declarator_seq, - ACTIONS(9671), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(9121), 7, anon_sym_COMMA, - anon_sym_GT2, - [275944] = 6, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [231010] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, - anon_sym_LBRACK, - STATE(4739), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9669), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [275965] = 7, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8968), 1, + anon_sym_COLON_COLON, + ACTIONS(9468), 1, + sym_identifier, + STATE(5321), 1, + sym__scope_resolution, + STATE(7398), 1, + sym_qualified_identifier, + ACTIONS(9470), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [231041] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(5991), 1, - anon_sym_COLON, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - STATE(3212), 1, - sym_parameter_list, - STATE(7429), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [275988] = 3, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8968), 1, + anon_sym_COLON_COLON, + ACTIONS(9472), 1, + sym_identifier, + STATE(5321), 1, + sym__scope_resolution, + STATE(7902), 1, + sym_qualified_identifier, + ACTIONS(9474), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [231072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10441), 1, - anon_sym_AMP, - ACTIONS(10439), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_LBRACE, + ACTIONS(9478), 1, anon_sym_LBRACK, - [276003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5892), 1, - anon_sym_AMP, - ACTIONS(5894), 6, + ACTIONS(9476), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_requires, - [276018] = 6, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [231091] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9460), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(3542), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5645), 1, sym__function_declarator_seq, - ACTIONS(9667), 3, + ACTIONS(9133), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [276039] = 7, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [231116] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5959), 1, + ACTIONS(6987), 1, + anon_sym_requires, + ACTIONS(7901), 1, anon_sym_LBRACK, - ACTIONS(5965), 1, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(7202), 1, + [231143] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8875), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(8367), 1, anon_sym_LPAREN2, - STATE(3212), 1, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(8820), 1, + anon_sym_try, + STATE(927), 1, + sym_try_statement, + STATE(930), 1, + sym_compound_statement, + STATE(3569), 1, sym_parameter_list, - STATE(7429), 2, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [276062] = 6, + [231178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9482), 1, anon_sym_LBRACK, - STATE(4706), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - ACTIONS(9665), 3, + ACTIONS(9480), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - [276083] = 3, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [231197] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10445), 1, - anon_sym_AMP, - ACTIONS(10443), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LT, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(263), 1, anon_sym_LBRACE, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, anon_sym_LBRACK, - [276098] = 7, + ACTIONS(8854), 1, + anon_sym_try, + STATE(375), 1, + sym_compound_statement, + STATE(376), 1, + sym_try_statement, + STATE(3569), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [231232] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5959), 1, - anon_sym_LBRACK, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10447), 1, - anon_sym_RPAREN, - STATE(3212), 1, + ACTIONS(8654), 1, + anon_sym_LBRACK, + STATE(3569), 1, sym_parameter_list, - STATE(7162), 2, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [276121] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4942), 1, + ACTIONS(9264), 4, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(10409), 1, - anon_sym_COLON_COLON, - ACTIONS(10411), 1, - anon_sym_inline, - ACTIONS(10449), 1, - sym_identifier, - STATE(807), 1, - sym_declaration_list, - STATE(8587), 1, - sym_nested_namespace_specifier, - STATE(9576), 1, - sym__namespace_specifier, - [276146] = 6, + anon_sym_try, + [231261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, + ACTIONS(9486), 1, + anon_sym_LBRACK, + ACTIONS(9484), 10, anon_sym_COMMA, - ACTIONS(10451), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7648), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276166] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10453), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7725), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276186] = 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [231280] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10455), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - STATE(7519), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(10457), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [276202] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10459), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7723), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276222] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10461), 1, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3537), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9141), 7, anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7916), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276242] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(371), 1, anon_sym_LBRACE, - ACTIONS(9229), 1, - anon_sym_try, - ACTIONS(10463), 1, - anon_sym_SEMI, - ACTIONS(10465), 1, anon_sym_EQ, - STATE(804), 2, - sym_compound_statement, - sym_try_statement, - [276262] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [231305] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10467), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7905), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276282] = 6, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8968), 1, + anon_sym_COLON_COLON, + ACTIONS(9488), 1, + sym_identifier, + STATE(5321), 1, + sym__scope_resolution, + STATE(7696), 1, + sym_qualified_identifier, + ACTIONS(9490), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [231336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, + ACTIONS(9494), 1, + anon_sym_LBRACK, + ACTIONS(9492), 10, anon_sym_COMMA, - ACTIONS(10469), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7847), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276302] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8911), 1, - anon_sym_try, - ACTIONS(9824), 1, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(10471), 1, - anon_sym_SEMI, - ACTIONS(10473), 1, anon_sym_EQ, - STATE(2725), 2, - sym_compound_statement, - sym_try_statement, - [276322] = 5, + anon_sym_COLON, + anon_sym_try, + [231355] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9972), 1, - anon_sym_LBRACK, - ACTIONS(9970), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(6785), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [276340] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10475), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7857), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276360] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10477), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7781), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276380] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10479), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7724), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276400] = 6, - ACTIONS(3), 1, - sym_comment, ACTIONS(770), 1, anon_sym_LBRACE, - ACTIONS(9359), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(8660), 1, anon_sym_try, - ACTIONS(10481), 1, - anon_sym_SEMI, - ACTIONS(10483), 1, - anon_sym_EQ, - STATE(1364), 2, - sym_compound_statement, + STATE(822), 1, sym_try_statement, - [276420] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10485), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7831), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276440] = 5, + STATE(825), 1, + sym_compound_statement, + STATE(3569), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [231390] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6189), 1, + ACTIONS(7901), 1, anon_sym_LBRACK, - ACTIONS(7070), 1, - anon_sym_LT, - STATE(4718), 1, - sym_template_argument_list, - ACTIONS(6187), 3, - anon_sym_RPAREN, + ACTIONS(8176), 1, + anon_sym_requires, + ACTIONS(7905), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7893), 3, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [276458] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10487), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7859), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276478] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10489), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7860), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276498] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(9221), 1, - anon_sym_try, - ACTIONS(10491), 1, - anon_sym_SEMI, - ACTIONS(10493), 1, - anon_sym_EQ, - STATE(1273), 2, - sym_compound_statement, - sym_try_statement, - [276518] = 5, + anon_sym_COLON, + [231417] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6061), 1, + ACTIONS(6987), 1, + anon_sym_requires, + ACTIONS(8250), 1, anon_sym_LBRACK, - ACTIONS(7202), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6059), 2, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 3, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - STATE(6585), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [276536] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10495), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7597), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276556] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(9309), 1, - anon_sym_try, - ACTIONS(10497), 1, - anon_sym_SEMI, - ACTIONS(10499), 1, - anon_sym_EQ, - STATE(1461), 2, - sym_compound_statement, - sym_try_statement, - [276576] = 4, + [231444] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10501), 1, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(8258), 1, + anon_sym_requires, + ACTIONS(8082), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 3, anon_sym_LPAREN2, - STATE(7441), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(10457), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [276592] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10503), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7897), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276612] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10505), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7863), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276632] = 6, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [231471] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9460), 1, anon_sym_LBRACK, - STATE(4739), 1, + STATE(3537), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5645), 1, sym__function_declarator_seq, - ACTIONS(10150), 2, - anon_sym_COMMA, - anon_sym_GT2, - [276652] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10507), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7935), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276672] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10509), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7880), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276692] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10511), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7922), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276712] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10513), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7924), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276732] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10515), 1, + ACTIONS(9135), 7, anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7896), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276752] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10517), 1, - anon_sym_LPAREN2, - STATE(7519), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(10457), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [276768] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(371), 1, anon_sym_LBRACE, - ACTIONS(9229), 1, - anon_sym_try, - ACTIONS(10519), 1, - anon_sym_SEMI, - ACTIONS(10521), 1, anon_sym_EQ, - STATE(789), 2, - sym_compound_statement, - sym_try_statement, - [276788] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10523), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(8000), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276808] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10525), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7644), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276828] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10527), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7900), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276848] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(770), 1, - anon_sym_LBRACE, - ACTIONS(9359), 1, + anon_sym_final, + anon_sym_override, anon_sym_try, - ACTIONS(10529), 1, - anon_sym_SEMI, - ACTIONS(10531), 1, - anon_sym_EQ, - STATE(1283), 2, - sym_compound_statement, - sym_try_statement, - [276868] = 6, + anon_sym_requires, + [231496] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10533), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7672), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276888] = 6, + ACTIONS(8250), 1, + anon_sym_LBRACK, + ACTIONS(8515), 1, + anon_sym_requires, + ACTIONS(8252), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8242), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [231523] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10535), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7792), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276908] = 6, + ACTIONS(8894), 1, + anon_sym_LBRACK, + ACTIONS(9378), 1, + anon_sym_requires, + ACTIONS(8896), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [231550] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10537), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276928] = 6, + ACTIONS(8890), 1, + anon_sym_LBRACK, + ACTIONS(9496), 1, + anon_sym_requires, + ACTIONS(8939), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5433), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8888), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [231577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, + ACTIONS(9501), 1, + anon_sym_LBRACK, + ACTIONS(9499), 10, anon_sym_COMMA, - ACTIONS(10539), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7754), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276948] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10541), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7878), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [276968] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9029), 1, - anon_sym_try, - ACTIONS(9878), 1, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(10543), 1, - anon_sym_SEMI, - ACTIONS(10545), 1, anon_sym_EQ, - STATE(2877), 2, - sym_compound_statement, - sym_try_statement, - [276988] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10547), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7848), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277008] = 6, + anon_sym_COLON, + anon_sym_try, + [231596] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10549), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7788), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277028] = 6, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8968), 1, + anon_sym_COLON_COLON, + ACTIONS(9503), 1, + sym_identifier, + STATE(5321), 1, + sym__scope_resolution, + STATE(7894), 1, + sym_qualified_identifier, + ACTIONS(9505), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [231627] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10551), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7750), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277048] = 6, + ACTIONS(6987), 1, + anon_sym_requires, + ACTIONS(8894), 1, + anon_sym_LBRACK, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8892), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [231654] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10553), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, + anon_sym_LBRACK, + STATE(3569), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9223), 4, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7787), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277068] = 6, + anon_sym_LBRACE, + anon_sym_try, + [231683] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3542), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9131), 7, anon_sym_COMMA, - ACTIONS(10555), 1, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7906), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277088] = 6, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [231708] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10557), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3537), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9137), 7, anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7780), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277108] = 6, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [231733] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10559), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7774), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277128] = 6, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8968), 1, + anon_sym_COLON_COLON, + ACTIONS(9507), 1, + sym_identifier, + STATE(5321), 1, + sym__scope_resolution, + STATE(7358), 1, + sym_qualified_identifier, + ACTIONS(9509), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [231764] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8921), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8439), 1, anon_sym_try, - ACTIONS(9790), 1, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(9385), 1, anon_sym_LBRACE, - ACTIONS(10561), 1, - anon_sym_SEMI, - ACTIONS(10563), 1, - anon_sym_EQ, - STATE(2483), 2, + STATE(2140), 1, sym_compound_statement, + STATE(2142), 1, sym_try_statement, - [277148] = 4, + STATE(3569), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [231799] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10565), 1, - anon_sym_LPAREN2, - STATE(7478), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(10457), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [277164] = 5, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8968), 1, + anon_sym_COLON_COLON, + ACTIONS(9511), 1, + sym_identifier, + STATE(5321), 1, + sym__scope_resolution, + STATE(7199), 1, + sym_qualified_identifier, + ACTIONS(9513), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [231830] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10567), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, anon_sym_LBRACK, - ACTIONS(10570), 1, - anon_sym_EQ, - ACTIONS(10572), 1, - anon_sym_DOT, - STATE(7462), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [277182] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10575), 1, + STATE(3569), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9211), 4, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7908), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277202] = 6, + anon_sym_LBRACE, + anon_sym_try, + [231859] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10577), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7909), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277222] = 6, + ACTIONS(6987), 1, + anon_sym_requires, + ACTIONS(8890), 1, + anon_sym_LBRACK, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5433), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8888), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [231886] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10579), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7851), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277242] = 6, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8379), 1, + anon_sym_try, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(9317), 1, + anon_sym_LBRACE, + STATE(1850), 1, + sym_compound_statement, + STATE(1851), 1, + sym_try_statement, + STATE(3569), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [231921] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10581), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7868), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277262] = 6, + ACTIONS(5396), 1, + anon_sym_LBRACK, + ACTIONS(9466), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9515), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5398), 6, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [231944] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10583), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7747), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277282] = 6, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8968), 1, + anon_sym_COLON_COLON, + ACTIONS(9517), 1, + sym_identifier, + STATE(5321), 1, + sym__scope_resolution, + STATE(7985), 1, + sym_qualified_identifier, + ACTIONS(9519), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [231975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, + ACTIONS(9523), 1, + anon_sym_LBRACK, + ACTIONS(9521), 10, anon_sym_COMMA, - ACTIONS(10585), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7901), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277302] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10587), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7744), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277322] = 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [231994] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10589), 1, - anon_sym_LPAREN2, - STATE(7486), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(10457), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [277338] = 4, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8968), 1, + anon_sym_COLON_COLON, + ACTIONS(9525), 1, + sym_identifier, + STATE(5321), 1, + sym__scope_resolution, + STATE(7407), 1, + sym_qualified_identifier, + ACTIONS(9527), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [232025] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10591), 1, + ACTIONS(6987), 1, + anon_sym_requires, + ACTIONS(8080), 1, + anon_sym_LBRACK, + ACTIONS(5322), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8072), 3, anon_sym_LPAREN2, - STATE(7519), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(10457), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [277354] = 6, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [232052] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3611), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9121), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(10593), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7912), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277374] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [232076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, + ACTIONS(4539), 1, + anon_sym_LBRACK, + ACTIONS(4541), 9, anon_sym_COMMA, - ACTIONS(10595), 1, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7643), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277394] = 4, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [232094] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10597), 1, - anon_sym_LPAREN2, - STATE(7493), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(10457), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [277410] = 6, + ACTIONS(9533), 1, + anon_sym_delete, + ACTIONS(9535), 1, + anon_sym_new, + ACTIONS(9531), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(9529), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [232116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, + ACTIONS(4543), 1, + anon_sym_LBRACK, + ACTIONS(4545), 9, anon_sym_COMMA, - ACTIONS(10599), 1, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7867), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277430] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(187), 1, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(9379), 1, + anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - ACTIONS(10601), 1, + [232134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4576), 1, + anon_sym_LBRACK, + ACTIONS(4578), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, - ACTIONS(10603), 1, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - STATE(592), 2, - sym_compound_statement, - sym_try_statement, - [277450] = 3, + anon_sym_COLON, + anon_sym_try, + [232152] = 6, ACTIONS(3), 1, sym_comment, - STATE(9322), 1, + ACTIONS(9539), 1, + anon_sym_LBRACK, + STATE(6392), 1, + sym_gnu_asm_input_operand, + STATE(7960), 1, sym_string_literal, + ACTIONS(9537), 2, + anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [277464] = 4, + [232176] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10605), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - STATE(7519), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(10457), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [277480] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10607), 1, + ACTIONS(9460), 1, anon_sym_LBRACK, - ACTIONS(10609), 1, - anon_sym_EQ, - ACTIONS(10611), 1, - anon_sym_DOT, - STATE(7462), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [277498] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, + STATE(3611), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9141), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(10613), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7998), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277518] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [232200] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(9543), 1, + anon_sym_EQ, + STATE(3515), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + ACTIONS(9541), 2, anon_sym_COMMA, - ACTIONS(10615), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7959), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277538] = 6, + anon_sym_RPAREN, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [232230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, + ACTIONS(4551), 1, + anon_sym_LBRACK, + ACTIONS(4553), 9, anon_sym_COMMA, - ACTIONS(10617), 1, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7636), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277558] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10619), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7733), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277578] = 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [232248] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9460), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(3611), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5645), 1, sym__function_declarator_seq, - ACTIONS(10150), 2, + ACTIONS(9129), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - [277598] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [232272] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3611), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9131), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(10621), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7763), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277618] = 4, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [232296] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10623), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - STATE(7519), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(10457), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [277634] = 6, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3611), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9133), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [232320] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10625), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7988), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277654] = 6, + ACTIONS(9545), 1, + anon_sym_delete, + ACTIONS(9547), 1, + anon_sym_new, + ACTIONS(9531), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(9529), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [232342] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3611), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9135), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(10627), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7962), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277674] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [232366] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3611), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9137), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(10629), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7766), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277694] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [232390] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10631), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7630), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277714] = 3, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(3673), 1, + anon_sym_COLON_COLON, + ACTIONS(8190), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(5983), 1, + sym__scope_resolution, + STATE(6530), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [232420] = 5, ACTIONS(3), 1, sym_comment, - STATE(8282), 1, - sym_string_literal, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [277728] = 6, + ACTIONS(9549), 1, + anon_sym_delete, + ACTIONS(9551), 1, + anon_sym_new, + ACTIONS(9531), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(9529), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [232442] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(9553), 1, + anon_sym_EQ, + STATE(3515), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + ACTIONS(9541), 2, anon_sym_COMMA, - ACTIONS(10633), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7877), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277748] = 4, + anon_sym_GT2, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [232472] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10635), 1, - anon_sym_LPAREN2, - STATE(7519), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(10457), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [277764] = 6, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(9555), 1, + sym_identifier, + ACTIONS(9557), 1, + anon_sym_COLON_COLON, + STATE(2605), 1, + sym_template_type, + STATE(5962), 1, + sym__scope_resolution, + STATE(2598), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [232502] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10637), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7640), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277784] = 6, + ACTIONS(9559), 1, + anon_sym_delete, + ACTIONS(9561), 1, + anon_sym_new, + ACTIONS(9531), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(9529), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [232524] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8921), 1, - anon_sym_try, - ACTIONS(9790), 1, - anon_sym_LBRACE, - ACTIONS(10639), 1, - anon_sym_SEMI, - ACTIONS(10641), 1, - anon_sym_EQ, - STATE(2427), 2, - sym_compound_statement, - sym_try_statement, - [277804] = 6, + ACTIONS(9551), 1, + anon_sym_new, + ACTIONS(9563), 1, + anon_sym_delete, + ACTIONS(9531), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(9529), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [232546] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(9309), 1, - anon_sym_try, - ACTIONS(10643), 1, - anon_sym_SEMI, - ACTIONS(10645), 1, - anon_sym_EQ, - STATE(1437), 2, - sym_compound_statement, - sym_try_statement, - [277824] = 6, + ACTIONS(9535), 1, + anon_sym_new, + ACTIONS(9565), 1, + anon_sym_delete, + ACTIONS(9531), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(9529), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [232568] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10647), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7837), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277844] = 6, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(3673), 1, + anon_sym_COLON_COLON, + ACTIONS(8190), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(5983), 1, + sym__scope_resolution, + STATE(6553), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [232598] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10649), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7739), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277864] = 5, + ACTIONS(9547), 1, + anon_sym_new, + ACTIONS(9567), 1, + anon_sym_delete, + ACTIONS(9531), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(9529), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [232620] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(9998), 1, - anon_sym_LBRACK, - STATE(7199), 1, - sym_template_argument_list, - ACTIONS(9994), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [277882] = 5, + ACTIONS(9569), 1, + anon_sym_delete, + ACTIONS(9571), 1, + anon_sym_new, + ACTIONS(9531), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(9529), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [232642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(10016), 1, + ACTIONS(4555), 1, anon_sym_LBRACK, - STATE(7201), 1, - sym_template_argument_list, - ACTIONS(10014), 3, - anon_sym_RPAREN, + ACTIONS(4557), 9, + anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [277900] = 6, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [232660] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10651), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7671), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277920] = 6, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(3673), 1, + anon_sym_COLON_COLON, + ACTIONS(8190), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(5983), 1, + sym__scope_resolution, + STATE(6365), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [232690] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10653), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7762), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [277940] = 5, + ACTIONS(9573), 1, + anon_sym_delete, + ACTIONS(9575), 1, + anon_sym_new, + ACTIONS(9531), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(9529), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [232712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6189), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(4718), 1, - sym_template_argument_list, - ACTIONS(6187), 3, + ACTIONS(4585), 9, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [277958] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8911), 1, - anon_sym_try, - ACTIONS(9824), 1, anon_sym_LBRACE, - ACTIONS(10655), 1, - anon_sym_SEMI, - ACTIONS(10657), 1, anon_sym_EQ, - STATE(2698), 2, - sym_compound_statement, - sym_try_statement, - [277978] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8887), 1, + anon_sym_COLON, anon_sym_try, - ACTIONS(9858), 1, - anon_sym_LBRACE, - ACTIONS(10659), 1, - anon_sym_SEMI, - ACTIONS(10661), 1, - anon_sym_EQ, - STATE(2924), 2, - sym_compound_statement, - sym_try_statement, - [277998] = 6, + [232730] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10663), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7600), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [278018] = 6, + ACTIONS(9577), 1, + anon_sym_delete, + ACTIONS(9579), 1, + anon_sym_new, + ACTIONS(9531), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(9529), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [232752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, + ACTIONS(4547), 1, + anon_sym_LBRACK, + ACTIONS(4549), 9, anon_sym_COMMA, - ACTIONS(10665), 1, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7984), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [278038] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9029), 1, - anon_sym_try, - ACTIONS(9878), 1, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(10667), 1, - anon_sym_SEMI, - ACTIONS(10669), 1, anon_sym_EQ, - STATE(2844), 2, - sym_compound_statement, - sym_try_statement, - [278058] = 4, + anon_sym_COLON, + anon_sym_try, + [232770] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10671), 1, - anon_sym_LPAREN2, - STATE(7510), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(10457), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [278074] = 4, + ACTIONS(9583), 1, + anon_sym_LBRACK, + STATE(6469), 1, + sym_gnu_asm_output_operand, + STATE(7798), 1, + sym_string_literal, + ACTIONS(9581), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [232794] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10673), 1, - anon_sym_LPAREN2, - STATE(7519), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(10457), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [278090] = 6, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(3673), 1, + anon_sym_COLON_COLON, + ACTIONS(8190), 1, + sym_identifier, + STATE(2542), 1, + sym_template_type, + STATE(5983), 1, + sym__scope_resolution, + STATE(6304), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7683), 2, + sym_decltype, + sym_dependent_type_identifier, + [232824] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5558), 1, + anon_sym_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9585), 1, anon_sym_COMMA, - ACTIONS(10675), 1, + STATE(2466), 1, + sym_parameter_list, + STATE(6438), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(9587), 2, anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7822), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [278110] = 6, + anon_sym___attribute__, + STATE(5866), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [232854] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8887), 1, - anon_sym_try, - ACTIONS(9858), 1, - anon_sym_LBRACE, - ACTIONS(10677), 1, - anon_sym_SEMI, - ACTIONS(10679), 1, - anon_sym_EQ, - STATE(2828), 2, - sym_compound_statement, - sym_try_statement, - [278130] = 4, + ACTIONS(9547), 1, + anon_sym_new, + ACTIONS(9589), 1, + anon_sym_delete, + ACTIONS(9531), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(9529), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [232876] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10681), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(8367), 1, anon_sym_LPAREN2, - STATE(7471), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(10457), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [278146] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10683), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7619), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [278166] = 6, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(9591), 1, + anon_sym_EQ, + STATE(3515), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(8012), 1, + sym_initializer_list, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [232908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(9221), 1, - anon_sym_try, - ACTIONS(10685), 1, - anon_sym_SEMI, - ACTIONS(10687), 1, + ACTIONS(9595), 1, + anon_sym_AMP, + ACTIONS(9597), 2, anon_sym_EQ, - STATE(1294), 2, - sym_compound_statement, - sym_try_statement, - [278186] = 3, + anon_sym_DOT, + ACTIONS(9593), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + [232927] = 5, ACTIONS(3), 1, sym_comment, - STATE(9212), 1, + ACTIONS(9599), 1, + sym_identifier, + ACTIONS(9603), 1, + sym_system_lib_string, + STATE(7469), 2, + sym_preproc_call_expression, sym_string_literal, - ACTIONS(111), 5, + ACTIONS(9601), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [278200] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10689), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7633), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [278220] = 6, + [232948] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_LBRACE, - ACTIONS(9379), 1, - anon_sym_try, - ACTIONS(10691), 1, - anon_sym_SEMI, - ACTIONS(10693), 1, - anon_sym_EQ, - STATE(557), 2, - sym_compound_statement, - sym_try_statement, - [278240] = 4, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8968), 1, + anon_sym_COLON_COLON, + ACTIONS(9605), 1, + sym_identifier, + STATE(5321), 1, + sym__scope_resolution, + STATE(7376), 1, + sym_qualified_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [232975] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10695), 1, - anon_sym_LPAREN2, - STATE(7519), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(10697), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [278256] = 6, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8968), 1, + anon_sym_COLON_COLON, + ACTIONS(9607), 1, + sym_identifier, + STATE(5321), 1, + sym__scope_resolution, + STATE(7584), 1, + sym_qualified_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [233002] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(10700), 1, - anon_sym_SEMI, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - STATE(7990), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [278276] = 4, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8427), 1, + anon_sym_COLON_COLON, + ACTIONS(9609), 1, + sym_identifier, + ACTIONS(9611), 1, + anon_sym_template, + STATE(2315), 1, + sym_dependent_type_identifier, + STATE(2316), 1, + sym_template_type, + STATE(2327), 1, + sym_qualified_type_identifier, + STATE(5949), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_decltype, + [233033] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10702), 1, - anon_sym_LPAREN2, - STATE(7412), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(10457), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [278292] = 6, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8968), 1, + anon_sym_COLON_COLON, + ACTIONS(9613), 1, + sym_identifier, + STATE(5321), 1, + sym__scope_resolution, + STATE(7733), 1, + sym_qualified_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [233060] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10704), 1, - anon_sym_SEMI, - STATE(7552), 1, - aux_sym_field_declaration_repeat1, - STATE(9574), 1, - sym_attribute_specifier, - [278311] = 6, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(7998), 1, + anon_sym_COLON_COLON, + ACTIONS(9615), 1, + sym_identifier, + ACTIONS(9617), 1, + anon_sym_template, + STATE(2519), 1, + sym_dependent_type_identifier, + STATE(2521), 1, + sym_template_type, + STATE(2594), 1, + sym_qualified_type_identifier, + STATE(5951), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_decltype, + [233091] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10706), 1, - anon_sym_SEMI, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - STATE(9620), 1, - sym_attribute_specifier, - [278330] = 6, + ACTIONS(9619), 1, + sym_identifier, + ACTIONS(9621), 1, + sym_system_lib_string, + STATE(7715), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(9601), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [233112] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10708), 1, - anon_sym_SEMI, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - STATE(9713), 1, - sym_attribute_specifier, - [278349] = 6, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4611), 1, + anon_sym_COLON_COLON, + ACTIONS(9623), 1, + sym_identifier, + ACTIONS(9625), 1, + anon_sym_template, + STATE(2550), 1, + sym_template_type, + STATE(2556), 1, + sym_dependent_type_identifier, + STATE(2560), 1, + sym_qualified_type_identifier, + STATE(5953), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_decltype, + [233143] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10710), 1, - anon_sym_SEMI, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - STATE(9293), 1, - sym_attribute_specifier, - [278368] = 6, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8968), 1, + anon_sym_COLON_COLON, + ACTIONS(9627), 1, + sym_identifier, + STATE(5321), 1, + sym__scope_resolution, + STATE(7577), 1, + sym_qualified_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [233170] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(5396), 1, + anon_sym_AMP, + ACTIONS(9629), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9631), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5398), 4, anon_sym_LPAREN2, - ACTIONS(9667), 1, - anon_sym_COLON, - ACTIONS(10062), 1, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4808), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - [278387] = 6, + [233191] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10712), 1, - anon_sym_SEMI, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - STATE(9197), 1, - sym_attribute_specifier, - [278406] = 6, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6994), 1, + anon_sym_COLON_COLON, + ACTIONS(9617), 1, + anon_sym_template, + ACTIONS(9633), 1, + sym_identifier, + STATE(2519), 1, + sym_dependent_type_identifier, + STATE(2521), 1, + sym_template_type, + STATE(2594), 1, + sym_qualified_type_identifier, + STATE(5956), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_decltype, + [233222] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10714), 1, - anon_sym_SEMI, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - STATE(9489), 1, - sym_attribute_specifier, - [278425] = 6, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8968), 1, + anon_sym_COLON_COLON, + ACTIONS(9635), 1, + sym_identifier, + STATE(5321), 1, + sym__scope_resolution, + STATE(7615), 1, + sym_qualified_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [233249] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10716), 1, - anon_sym_SEMI, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - STATE(9199), 1, - sym_attribute_specifier, - [278444] = 5, + ACTIONS(9637), 1, + sym_identifier, + ACTIONS(9639), 1, + sym_system_lib_string, + STATE(7494), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(9601), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [233270] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8212), 1, + anon_sym_COLON_COLON, + ACTIONS(9641), 1, + sym_identifier, + ACTIONS(9643), 1, + anon_sym_template, + STATE(2550), 1, + sym_template_type, + STATE(2556), 1, + sym_dependent_type_identifier, + STATE(3137), 1, + sym_qualified_type_identifier, + STATE(5959), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_decltype, + [233301] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7399), 1, - sym_auto, - ACTIONS(7401), 1, + ACTIONS(2044), 1, anon_sym_decltype, - STATE(3891), 1, - sym_decltype_auto, - ACTIONS(10718), 2, - anon_sym_COMMA, - anon_sym_GT2, - [278461] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9665), 1, - anon_sym_COLON, - ACTIONS(10062), 1, - anon_sym_LBRACK, - STATE(4808), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - [278480] = 6, + ACTIONS(8034), 1, + anon_sym_COLON_COLON, + ACTIONS(9645), 1, + sym_identifier, + ACTIONS(9647), 1, + anon_sym_template, + STATE(2592), 1, + sym_dependent_type_identifier, + STATE(2597), 1, + sym_template_type, + STATE(2744), 1, + sym_qualified_type_identifier, + STATE(5960), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_decltype, + [233332] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9669), 1, - anon_sym_COLON, - ACTIONS(10062), 1, - anon_sym_LBRACK, - STATE(4808), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - [278499] = 6, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8968), 1, + anon_sym_COLON_COLON, + ACTIONS(9649), 1, + sym_identifier, + STATE(5321), 1, + sym__scope_resolution, + STATE(7876), 1, + sym_qualified_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [233359] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10720), 1, - anon_sym_SEMI, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - STATE(9613), 1, - sym_attribute_specifier, - [278518] = 6, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(9557), 1, + anon_sym_COLON_COLON, + ACTIONS(9651), 1, + sym_identifier, + ACTIONS(9653), 1, + anon_sym_template, + STATE(2551), 1, + sym_dependent_type_identifier, + STATE(2553), 1, + sym_template_type, + STATE(2596), 1, + sym_qualified_type_identifier, + STATE(5962), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_decltype, + [233390] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(5374), 1, + anon_sym_AMP, + ACTIONS(9631), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5376), 6, anon_sym_LPAREN2, - ACTIONS(9663), 1, - anon_sym_COLON, - ACTIONS(10062), 1, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4808), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - [278537] = 6, + anon_sym_or, + [233409] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10409), 1, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8115), 1, anon_sym_COLON_COLON, - ACTIONS(10411), 1, - anon_sym_inline, - ACTIONS(10722), 1, + ACTIONS(9655), 1, sym_identifier, - STATE(9238), 1, - sym_nested_namespace_specifier, - STATE(9576), 1, - sym__namespace_specifier, - [278556] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10724), 1, - anon_sym_SEMI, - STATE(7539), 1, - aux_sym_field_declaration_repeat1, - STATE(8923), 1, - sym_attribute_specifier, - [278575] = 6, + ACTIONS(9657), 1, + anon_sym_template, + STATE(2392), 1, + sym_dependent_type_identifier, + STATE(2395), 1, + sym_template_type, + STATE(2480), 1, + sym_qualified_type_identifier, + STATE(5964), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_decltype, + [233440] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10409), 1, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8090), 1, anon_sym_COLON_COLON, - ACTIONS(10411), 1, - anon_sym_inline, - ACTIONS(10726), 1, + ACTIONS(9659), 1, sym_identifier, - STATE(8304), 1, - sym__namespace_specifier, - STATE(8601), 1, - sym_nested_namespace_specifier, - [278594] = 6, + ACTIONS(9661), 1, + anon_sym_template, + STATE(2341), 1, + sym_dependent_type_identifier, + STATE(2348), 1, + sym_template_type, + STATE(2376), 1, + sym_qualified_type_identifier, + STATE(5965), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_decltype, + [233471] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10409), 1, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6897), 1, anon_sym_COLON_COLON, - ACTIONS(10411), 1, - anon_sym_inline, - ACTIONS(10728), 1, + ACTIONS(9663), 1, sym_identifier, - STATE(9020), 1, - sym_nested_namespace_specifier, - STATE(9576), 1, - sym__namespace_specifier, - [278613] = 6, + ACTIONS(9665), 1, + anon_sym_template, + STATE(1861), 1, + sym_dependent_type_identifier, + STATE(1878), 1, + sym_template_type, + STATE(1983), 1, + sym_qualified_type_identifier, + STATE(5966), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_decltype, + [233502] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5558), 1, + anon_sym_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + STATE(2466), 1, + sym_parameter_list, + STATE(5866), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9667), 3, anon_sym_COMMA, - ACTIONS(10730), 1, anon_sym_SEMI, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - STATE(9111), 1, - sym_attribute_specifier, - [278632] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10732), 1, - anon_sym_SEMI, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - STATE(9107), 1, - sym_attribute_specifier, - [278651] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9671), 1, - anon_sym_COLON, - ACTIONS(10062), 1, - anon_sym_LBRACK, - STATE(4808), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - [278670] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(8246), 1, - anon_sym_RPAREN, - STATE(3483), 1, - sym_argument_list, - STATE(4809), 1, - sym_initializer_list, - [278689] = 3, + [233527] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10736), 1, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6877), 1, anon_sym_COLON_COLON, - ACTIONS(10734), 4, + ACTIONS(9669), 1, sym_identifier, - anon_sym_decltype, - anon_sym_virtual, + ACTIONS(9671), 1, anon_sym_template, - [278702] = 6, + STATE(1861), 1, + sym_dependent_type_identifier, + STATE(1878), 1, + sym_template_type, + STATE(1983), 1, + sym_qualified_type_identifier, + STATE(5968), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_decltype, + [233558] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10738), 1, - anon_sym_SEMI, - STATE(7557), 1, - aux_sym_field_declaration_repeat1, - STATE(8885), 1, - sym_attribute_specifier, - [278721] = 6, + ACTIONS(9673), 1, + sym_identifier, + ACTIONS(9675), 1, + sym_system_lib_string, + STATE(7235), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(9601), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [233579] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - ACTIONS(10740), 1, - anon_sym_RPAREN, - STATE(4706), 1, + STATE(3716), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5362), 1, sym__function_declarator_seq, - [278740] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10742), 1, - anon_sym_SEMI, - STATE(7558), 1, - aux_sym_field_declaration_repeat1, - STATE(8900), 1, - sym_attribute_specifier, - [278759] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10744), 1, - anon_sym_SEMI, - STATE(7529), 1, - aux_sym_field_declaration_repeat1, - STATE(9125), 1, - sym_attribute_specifier, - [278778] = 6, + ACTIONS(9137), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [233602] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10062), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - ACTIONS(10746), 1, - anon_sym_RPAREN, - STATE(4706), 1, + STATE(3716), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5362), 1, sym__function_declarator_seq, - [278797] = 6, + ACTIONS(9135), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [233625] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10748), 1, - anon_sym_SEMI, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - STATE(8906), 1, - sym_attribute_specifier, - [278816] = 5, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(9671), 1, + anon_sym_template, + ACTIONS(9677), 1, + sym_identifier, + STATE(1861), 1, + sym_dependent_type_identifier, + STATE(1878), 1, + sym_template_type, + STATE(1983), 1, + sym_qualified_type_identifier, + STATE(5972), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_decltype, + [233656] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6189), 1, - anon_sym_LBRACK, - ACTIONS(6432), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, anon_sym_LT, - STATE(5152), 1, + STATE(2616), 1, sym_template_argument_list, - ACTIONS(6187), 2, + ACTIONS(4566), 2, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(4571), 4, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [278833] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10750), 1, - anon_sym_SEMI, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - STATE(9379), 1, - sym_attribute_specifier, - [278852] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10752), 1, - anon_sym_SEMI, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - STATE(9384), 1, - sym_attribute_specifier, - [278871] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10754), 2, - anon_sym_class, - anon_sym_typename, - STATE(8821), 3, - sym_type_parameter_declaration, - sym_variadic_type_parameter_declaration, - sym_optional_type_parameter_declaration, - [278884] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10756), 1, - anon_sym_SEMI, - STATE(7523), 1, - aux_sym_field_declaration_repeat1, - STATE(9440), 1, - sym_attribute_specifier, - [278903] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10758), 1, - anon_sym_SEMI, - STATE(7573), 1, - aux_sym_field_declaration_repeat1, - STATE(9430), 1, - sym_attribute_specifier, - [278922] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10760), 1, - anon_sym_SEMI, - STATE(7568), 1, - aux_sym_field_declaration_repeat1, - STATE(8945), 1, - sym_attribute_specifier, - [278941] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10762), 1, anon_sym_SEMI, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - STATE(8947), 1, - sym_attribute_specifier, - [278960] = 6, + anon_sym_LBRACK_LBRACK, + [233679] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10764), 1, - anon_sym_SEMI, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - STATE(8956), 1, - sym_attribute_specifier, - [278979] = 6, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8968), 1, + anon_sym_COLON_COLON, + ACTIONS(9679), 1, + sym_identifier, + STATE(5321), 1, + sym__scope_resolution, + STATE(7873), 1, + sym_qualified_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [233706] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10766), 1, - anon_sym_SEMI, - STATE(7540), 1, - aux_sym_field_declaration_repeat1, - STATE(8920), 1, - sym_attribute_specifier, - [278998] = 5, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6965), 1, + anon_sym_COLON_COLON, + ACTIONS(9681), 1, + sym_identifier, + ACTIONS(9683), 1, + anon_sym_template, + STATE(4468), 1, + sym_dependent_type_identifier, + STATE(4519), 1, + sym_template_type, + STATE(4579), 1, + sym_qualified_type_identifier, + STATE(5975), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_decltype, + [233737] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(8094), 1, - sym_template_argument_list, - ACTIONS(10768), 2, + ACTIONS(8367), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, - [279015] = 6, + ACTIONS(9123), 1, + anon_sym_LBRACK, + STATE(3716), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9121), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [233760] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2012), 1, + ACTIONS(2000), 1, anon_sym_operator, - ACTIONS(10770), 1, + ACTIONS(8772), 1, + anon_sym_TILDE, + ACTIONS(9685), 1, sym_identifier, - STATE(3328), 1, - sym_template_type, - STATE(3361), 1, - sym_template_method, - STATE(8626), 1, + ACTIONS(9687), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9690), 1, + anon_sym_template, + STATE(7146), 1, sym_operator_name, - [279034] = 6, + STATE(3225), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [233787] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10409), 1, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6939), 1, anon_sym_COLON_COLON, - ACTIONS(10411), 1, - anon_sym_inline, - ACTIONS(10772), 1, + ACTIONS(9692), 1, sym_identifier, - STATE(9083), 1, - sym_nested_namespace_specifier, - STATE(9576), 1, - sym__namespace_specifier, - [279053] = 5, + ACTIONS(9694), 1, + anon_sym_template, + STATE(2550), 1, + sym_template_type, + STATE(2556), 1, + sym_dependent_type_identifier, + STATE(2560), 1, + sym_qualified_type_identifier, + STATE(5978), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_decltype, + [233818] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8554), 1, - anon_sym_EQ, - ACTIONS(10774), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8968), 1, + anon_sym_COLON_COLON, + ACTIONS(9696), 1, sym_identifier, - ACTIONS(8552), 2, - anon_sym_COMMA, - anon_sym_GT2, - [279070] = 5, + STATE(5321), 1, + sym__scope_resolution, + STATE(7392), 1, + sym_qualified_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [233845] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7399), 1, - sym_auto, - ACTIONS(7401), 1, + ACTIONS(2044), 1, anon_sym_decltype, - STATE(3891), 1, - sym_decltype_auto, - ACTIONS(10776), 2, - anon_sym_COMMA, - anon_sym_GT2, - [279087] = 5, + ACTIONS(8012), 1, + anon_sym_COLON_COLON, + ACTIONS(9698), 1, + sym_identifier, + ACTIONS(9700), 1, + anon_sym_template, + STATE(2487), 1, + sym_template_type, + STATE(2489), 1, + sym_dependent_type_identifier, + STATE(2518), 1, + sym_qualified_type_identifier, + STATE(5980), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_decltype, + [233876] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7218), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(10780), 1, - anon_sym_COLON_COLON, - STATE(8542), 1, - sym_argument_list, - ACTIONS(10778), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [279104] = 6, + ACTIONS(9123), 1, + anon_sym_LBRACK, + STATE(3716), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9133), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [233899] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10409), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6917), 1, anon_sym_COLON_COLON, - ACTIONS(10411), 1, - anon_sym_inline, - ACTIONS(10726), 1, + ACTIONS(9702), 1, sym_identifier, - STATE(8115), 1, - sym__namespace_specifier, - STATE(8739), 1, - sym_nested_namespace_specifier, - [279123] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10782), 1, - anon_sym_SEMI, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - STATE(8978), 1, - sym_attribute_specifier, - [279142] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10784), 1, - anon_sym_SEMI, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - STATE(8979), 1, - sym_attribute_specifier, - [279161] = 6, + STATE(2550), 1, + sym_template_type, + STATE(2556), 1, + sym_dependent_type_identifier, + STATE(3137), 1, + sym_qualified_type_identifier, + STATE(5982), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_decltype, + [233930] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10409), 1, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(3673), 1, anon_sym_COLON_COLON, - ACTIONS(10411), 1, - anon_sym_inline, - ACTIONS(10786), 1, + ACTIONS(9702), 1, sym_identifier, - STATE(9546), 1, - sym_nested_namespace_specifier, - STATE(9576), 1, - sym__namespace_specifier, - [279180] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10788), 1, - anon_sym_SEMI, - STATE(7524), 1, - aux_sym_field_declaration_repeat1, - STATE(8878), 1, - sym_attribute_specifier, - [279199] = 6, + STATE(2550), 1, + sym_template_type, + STATE(2556), 1, + sym_dependent_type_identifier, + STATE(2560), 1, + sym_qualified_type_identifier, + STATE(5983), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_decltype, + [233961] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10790), 1, - anon_sym_SEMI, - STATE(7528), 1, - aux_sym_field_declaration_repeat1, - STATE(8958), 1, - sym_attribute_specifier, - [279218] = 6, + ACTIONS(1378), 1, + anon_sym_template, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8968), 1, + anon_sym_COLON_COLON, + ACTIONS(9704), 1, + sym_identifier, + STATE(5321), 1, + sym__scope_resolution, + STATE(8015), 1, + sym_qualified_identifier, + STATE(7683), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [233988] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10792), 1, - anon_sym_SEMI, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - STATE(8959), 1, - sym_attribute_specifier, - [279237] = 6, + ACTIONS(9706), 1, + sym_identifier, + ACTIONS(9708), 1, + sym_system_lib_string, + STATE(7323), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(9601), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [234009] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10794), 1, - anon_sym_SEMI, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - STATE(9292), 1, - sym_attribute_specifier, - [279256] = 6, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9123), 1, + anon_sym_LBRACK, + STATE(3716), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9131), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [234032] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10796), 1, - anon_sym_SEMI, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - STATE(9556), 1, - sym_attribute_specifier, - [279275] = 6, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(6951), 1, + anon_sym_COLON_COLON, + ACTIONS(9692), 1, + sym_identifier, + ACTIONS(9694), 1, + anon_sym_template, + STATE(2550), 1, + sym_template_type, + STATE(2556), 1, + sym_dependent_type_identifier, + STATE(3137), 1, + sym_qualified_type_identifier, + STATE(5987), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_decltype, + [234063] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10798), 1, - anon_sym_SEMI, - STATE(7551), 1, - aux_sym_field_declaration_repeat1, - STATE(9564), 1, - sym_attribute_specifier, - [279294] = 6, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(8415), 1, + anon_sym_COLON_COLON, + ACTIONS(9710), 1, + sym_identifier, + ACTIONS(9712), 1, + anon_sym_template, + STATE(1861), 1, + sym_dependent_type_identifier, + STATE(1878), 1, + sym_template_type, + STATE(1983), 1, + sym_qualified_type_identifier, + STATE(5988), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_decltype, + [234094] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(5708), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(8408), 1, - anon_sym_RPAREN, - STATE(3483), 1, - sym_argument_list, - STATE(4809), 1, - sym_initializer_list, - [279313] = 5, + ACTIONS(9123), 1, + anon_sym_LBRACK, + STATE(3716), 1, + sym_parameter_list, + STATE(5362), 1, + sym__function_declarator_seq, + ACTIONS(9141), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [234117] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6189), 1, - anon_sym_LBRACK, - ACTIONS(6432), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, anon_sym_LT, - STATE(4905), 1, + STATE(2616), 1, sym_template_argument_list, - ACTIONS(6187), 2, + ACTIONS(7196), 2, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(4615), 4, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [279330] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(10800), 1, anon_sym_SEMI, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - STATE(8860), 1, - sym_attribute_specifier, - [279349] = 6, + anon_sym_LBRACK_LBRACK, + [234140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - ACTIONS(9619), 1, - anon_sym_COLON, - ACTIONS(10062), 1, + ACTIONS(9123), 1, anon_sym_LBRACK, - STATE(4808), 1, + STATE(3716), 1, sym_parameter_list, - STATE(6860), 1, + STATE(5362), 1, sym__function_declarator_seq, - [279368] = 6, + ACTIONS(9129), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [234163] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10409), 1, + ACTIONS(2044), 1, + anon_sym_decltype, + ACTIONS(4635), 1, anon_sym_COLON_COLON, - ACTIONS(10411), 1, - anon_sym_inline, - ACTIONS(10802), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(9576), 1, - sym__namespace_specifier, - STATE(9658), 1, - sym_nested_namespace_specifier, - [279387] = 6, + ACTIONS(9643), 1, + anon_sym_template, + STATE(2550), 1, + sym_template_type, + STATE(2556), 1, + sym_dependent_type_identifier, + STATE(2560), 1, + sym_qualified_type_identifier, + STATE(5992), 1, + sym__scope_resolution, + STATE(7683), 1, + sym_decltype, + [234194] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(9675), 1, - anon_sym_COLON, - ACTIONS(10062), 1, + ACTIONS(9539), 1, anon_sym_LBRACK, - STATE(4808), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - [279406] = 4, + STATE(6571), 1, + sym_gnu_asm_input_operand, + STATE(7960), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [234214] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9545), 1, - anon_sym_LBRACE, - STATE(4341), 1, - sym_compound_statement, - ACTIONS(9535), 2, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, anon_sym_LPAREN2, + ACTIONS(8654), 1, anon_sym_LBRACK, - [279420] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, + ACTIONS(9223), 1, anon_sym_COLON, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(3129), 1, - sym_field_declaration_list, - STATE(8634), 1, - sym_base_class_clause, - [279436] = 4, + STATE(3698), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5792), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [234240] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10804), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + ACTIONS(9714), 1, + anon_sym_SEMI, + ACTIONS(9716), 1, anon_sym_EQ, - STATE(6785), 2, + STATE(1726), 1, + sym_template_argument_list, + STATE(6234), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [279450] = 5, + [234266] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5689), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3570), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9121), 4, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3116), 1, - sym_field_declaration_list, - STATE(8758), 1, - sym_base_class_clause, - [279466] = 4, + anon_sym_EQ, + anon_sym_try, + [234288] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10403), 1, - anon_sym_EQ, - STATE(7584), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [279480] = 4, + ACTIONS(9583), 1, + anon_sym_LBRACK, + STATE(6540), 1, + sym_gnu_asm_output_operand, + STATE(7798), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [234308] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9513), 1, - anon_sym_LBRACE, - STATE(6496), 1, - sym_compound_statement, - ACTIONS(9535), 2, + ACTIONS(8367), 1, anon_sym_LPAREN2, + ACTIONS(9460), 1, anon_sym_LBRACK, - [279494] = 4, + STATE(3705), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9135), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [234330] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10806), 1, - anon_sym_COMMA, - STATE(7588), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(10809), 2, - anon_sym_RPAREN, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(9264), 1, anon_sym_COLON, - [279508] = 4, + STATE(3698), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5792), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [234356] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10811), 1, - anon_sym_EQ, - STATE(6785), 2, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(9718), 1, + anon_sym_SEMI, + STATE(3569), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [279522] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(3117), 1, - sym_field_declaration_list, - STATE(8763), 1, - sym_base_class_clause, - [279538] = 4, + [234382] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10813), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + ACTIONS(9720), 1, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [279552] = 4, + ACTIONS(9722), 1, + anon_sym_EQ, + STATE(1726), 1, + sym_template_argument_list, + STATE(6424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [234408] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10815), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [279566] = 4, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(8680), 1, + anon_sym_TILDE, + ACTIONS(9724), 1, + sym_identifier, + ACTIONS(9726), 1, + anon_sym_template, + STATE(7004), 1, + sym_operator_name, + STATE(3446), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [234432] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10337), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + ACTIONS(9728), 1, + anon_sym_SEMI, + ACTIONS(9730), 1, anon_sym_EQ, - STATE(7635), 2, + STATE(1726), 1, + sym_template_argument_list, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [279580] = 5, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(10817), 1, - aux_sym_preproc_include_token2, - ACTIONS(10819), 1, - anon_sym_LPAREN, - ACTIONS(10821), 1, - sym_preproc_arg, - STATE(8785), 1, - sym_preproc_params, - [279596] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(10823), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10825), 1, - anon_sym_GT2, - STATE(8184), 1, - aux_sym_template_argument_list_repeat1, - [279612] = 5, + [234458] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(9772), 1, - anon_sym_COLON, - STATE(8326), 1, - sym_compound_statement, - STATE(8663), 1, - sym_field_initializer_list, - [279628] = 4, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(8608), 1, + anon_sym_TILDE, + ACTIONS(9732), 1, + sym_identifier, + ACTIONS(9734), 1, + anon_sym_template, + STATE(7085), 1, + sym_operator_name, + STATE(2718), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [234482] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10827), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [279642] = 5, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(8608), 1, + anon_sym_TILDE, + ACTIONS(9736), 1, + sym_identifier, + ACTIONS(9738), 1, + anon_sym_template, + STATE(7020), 1, + sym_operator_name, + STATE(2718), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [234506] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(9740), 1, anon_sym_COLON, - ACTIONS(5775), 1, - anon_sym_LBRACE, - STATE(3520), 1, - sym_field_declaration_list, - STATE(8613), 1, - sym_base_class_clause, - [279658] = 4, + STATE(3698), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5792), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [234532] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9527), 1, - anon_sym_LBRACE, - STATE(4136), 1, - sym_compound_statement, - ACTIONS(9535), 2, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, anon_sym_LPAREN2, + ACTIONS(8654), 1, anon_sym_LBRACK, - [279672] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10829), 1, + ACTIONS(9742), 1, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [279686] = 5, + STATE(3569), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [234558] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5775), 1, - anon_sym_LBRACE, - STATE(3518), 1, - sym_field_declaration_list, - STATE(8617), 1, - sym_base_class_clause, - [279702] = 4, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8373), 1, + anon_sym_LBRACK, + ACTIONS(9744), 1, + anon_sym_RPAREN, + STATE(3569), 1, + sym_parameter_list, + STATE(5880), 1, + sym__function_declarator_seq, + STATE(6114), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [234584] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10381), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + ACTIONS(9746), 1, + anon_sym_SEMI, + ACTIONS(9748), 1, anon_sym_EQ, - STATE(7620), 2, + STATE(1726), 1, + sym_template_argument_list, + STATE(6460), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [279716] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5963), 1, - anon_sym_LBRACE, - STATE(3798), 1, - sym_field_declaration_list, - STATE(8485), 1, - sym_base_class_clause, - [279732] = 5, + [234610] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4080), 1, anon_sym_COLON_COLON, - ACTIONS(6432), 1, + ACTIONS(5950), 1, anon_sym_LT, - ACTIONS(10831), 1, + ACTIONS(9750), 1, anon_sym_SEMI, - STATE(2334), 1, + ACTIONS(9752), 1, + anon_sym_EQ, + STATE(1726), 1, sym_template_argument_list, - [279748] = 5, + STATE(6285), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [234636] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(10833), 1, - sym_identifier, - STATE(1483), 1, - sym_template_parameter_list, - STATE(3328), 1, - sym_template_type, - [279764] = 4, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3705), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9133), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [234658] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3705), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9131), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [234680] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10387), 1, - anon_sym_EQ, - STATE(7589), 2, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(9754), 1, + anon_sym_SEMI, + STATE(3569), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [279778] = 4, + [234706] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10835), 1, - anon_sym_EQ, - STATE(6785), 2, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(9756), 1, + anon_sym_SEMI, + STATE(3569), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [279792] = 5, + [234732] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(10837), 1, - anon_sym_SEMI, - STATE(2334), 1, - sym_template_argument_list, - [279808] = 4, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3705), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9129), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [234754] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10839), 1, - anon_sym_COMMA, - STATE(7588), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(10841), 2, - anon_sym_RPAREN, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3705), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9121), 4, anon_sym_COLON, - [279822] = 4, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [234776] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10843), 1, - anon_sym_EQ, - STATE(6785), 2, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(9758), 1, + anon_sym_SEMI, + STATE(3569), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [279836] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5963), 1, - anon_sym_LBRACE, - STATE(3832), 1, - sym_field_declaration_list, - STATE(8481), 1, - sym_base_class_clause, - [279852] = 5, + [234802] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(10845), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(9760), 1, anon_sym_SEMI, - STATE(2334), 1, - sym_template_argument_list, - [279868] = 4, + STATE(3569), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [234828] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9513), 1, - anon_sym_LBRACE, - STATE(6511), 1, - sym_compound_statement, - ACTIONS(9535), 2, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, anon_sym_LPAREN2, + ACTIONS(8654), 1, anon_sym_LBRACK, - [279882] = 4, + ACTIONS(9762), 1, + anon_sym_SEMI, + STATE(3569), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [234854] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10847), 1, - anon_sym_COMMA, - STATE(7614), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(10850), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [279896] = 5, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3570), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9764), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [234876] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(10823), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10852), 1, - anon_sym_GT2, - STATE(8374), 1, - aux_sym_template_argument_list_repeat1, - [279912] = 4, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3570), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9135), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [234898] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10854), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [279926] = 4, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8373), 1, + anon_sym_LBRACK, + ACTIONS(9270), 1, + anon_sym_RPAREN, + STATE(3569), 1, + sym_parameter_list, + STATE(5880), 1, + sym__function_declarator_seq, + STATE(6114), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [234924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10856), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [279940] = 5, + ACTIONS(9768), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(9766), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [234940] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(10823), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10858), 1, - anon_sym_GT2, - STATE(8270), 1, - aux_sym_template_argument_list_repeat1, - [279956] = 4, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + ACTIONS(7196), 1, + anon_sym_LBRACK, + STATE(5598), 1, + sym_template_argument_list, + ACTIONS(4615), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [234962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10860), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [279970] = 4, + STATE(6244), 1, + sym_string_literal, + ACTIONS(9770), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [234980] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10862), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + ACTIONS(9772), 1, + anon_sym_SEMI, + ACTIONS(9774), 1, anon_sym_EQ, - STATE(6785), 2, + STATE(1726), 1, + sym_template_argument_list, + STATE(6301), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [279984] = 4, + [235006] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10864), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [279998] = 5, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8373), 1, + anon_sym_LBRACK, + ACTIONS(9277), 1, + anon_sym_RPAREN, + STATE(3569), 1, + sym_parameter_list, + STATE(5880), 1, + sym__function_declarator_seq, + STATE(6114), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [235032] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(8500), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(4566), 1, + anon_sym_LBRACK, + ACTIONS(5950), 1, + anon_sym_LT, + STATE(5598), 1, + sym_template_argument_list, + ACTIONS(4571), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(5555), 1, - sym_field_declaration_list, - STATE(8556), 1, - sym_base_class_clause, - [280014] = 5, + anon_sym_try, + [235054] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2156), 1, - anon_sym_LBRACE, - ACTIONS(6084), 1, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, anon_sym_LPAREN2, - STATE(4245), 1, - sym_argument_list, - STATE(4314), 1, - sym_initializer_list, - [280030] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(9211), 1, anon_sym_COLON, - ACTIONS(5775), 1, - anon_sym_LBRACE, - STATE(3533), 1, - sym_field_declaration_list, - STATE(8611), 1, - sym_base_class_clause, - [280046] = 5, + STATE(3698), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5792), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [235080] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(5732), 1, + anon_sym_LBRACK, + ACTIONS(5950), 1, + anon_sym_LT, + STATE(2616), 1, + sym_template_argument_list, + ACTIONS(5730), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(5775), 1, - anon_sym_LBRACE, - STATE(3512), 1, - sym_field_declaration_list, - STATE(8620), 1, - sym_base_class_clause, - [280062] = 4, + [235100] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(7218), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - STATE(8092), 2, - sym_argument_list, - sym_initializer_list, - [280076] = 4, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3570), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9129), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [235122] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10313), 1, - anon_sym_EQ, - STATE(7607), 2, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8373), 1, + anon_sym_LBRACK, + ACTIONS(9217), 1, + anon_sym_RPAREN, + STATE(3569), 1, + sym_parameter_list, + STATE(5880), 1, + sym__function_declarator_seq, + STATE(6114), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280090] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5775), 1, - anon_sym_LBRACE, - STATE(3431), 1, - sym_field_declaration_list, - STATE(8627), 1, - sym_base_class_clause, - [280106] = 4, + [235148] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10866), 1, - anon_sym_EQ, - STATE(6785), 2, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8373), 1, + anon_sym_LBRACK, + ACTIONS(9281), 1, + anon_sym_RPAREN, + STATE(3569), 1, + sym_parameter_list, + STATE(5880), 1, + sym__function_declarator_seq, + STATE(6114), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280120] = 4, + [235174] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10868), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [280134] = 5, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(9776), 1, + anon_sym_RPAREN, + STATE(3569), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [235200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3705), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9141), 4, anon_sym_COLON, - ACTIONS(5775), 1, - anon_sym_LBRACE, - STATE(3535), 1, - sym_field_declaration_list, - STATE(8652), 1, - sym_base_class_clause, - [280150] = 4, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [235222] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10870), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(9778), 1, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [280164] = 4, + STATE(3569), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [235248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10872), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [280178] = 4, + ACTIONS(9782), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(9780), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [235264] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10874), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + ACTIONS(9784), 1, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [280192] = 4, + ACTIONS(9786), 1, + anon_sym_EQ, + STATE(1726), 1, + sym_template_argument_list, + STATE(6273), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [235290] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10876), 1, - anon_sym_EQ, - STATE(6785), 2, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8373), 1, + anon_sym_LBRACK, + ACTIONS(9272), 1, + anon_sym_RPAREN, + STATE(3569), 1, + sym_parameter_list, + STATE(5880), 1, + sym__function_declarator_seq, + STATE(6114), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280206] = 4, + [235316] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10878), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [280220] = 5, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(9209), 1, + anon_sym_COLON, + STATE(3698), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5792), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [235342] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, - anon_sym_LBRACE, - ACTIONS(5661), 1, - anon_sym_COLON, - STATE(3173), 1, - sym_field_declaration_list, - STATE(8519), 1, - sym_base_class_clause, - [280236] = 5, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(8772), 1, + anon_sym_TILDE, + ACTIONS(9685), 1, + sym_identifier, + ACTIONS(9690), 1, + anon_sym_template, + STATE(7146), 1, + sym_operator_name, + STATE(3225), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [235366] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3705), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9137), 4, anon_sym_COLON, - ACTIONS(5775), 1, - anon_sym_LBRACE, - STATE(3508), 1, - sym_field_declaration_list, - STATE(8630), 1, - sym_base_class_clause, - [280252] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [235388] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4080), 1, anon_sym_COLON_COLON, - ACTIONS(4872), 1, - anon_sym_SEMI, - ACTIONS(6432), 1, + ACTIONS(5950), 1, anon_sym_LT, - STATE(2623), 1, - sym_template_argument_list, - [280268] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10880), 1, + ACTIONS(9788), 1, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [280282] = 4, + ACTIONS(9790), 1, + anon_sym_EQ, + STATE(1726), 1, + sym_template_argument_list, + STATE(6417), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [235414] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10882), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(9792), 1, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [280296] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(10884), 1, - sym_identifier, - STATE(4051), 1, - sym_template_method, - STATE(8569), 1, - sym_operator_name, - [280312] = 4, + STATE(3569), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [235440] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10886), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(9794), 1, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [280326] = 4, + STATE(3569), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [235466] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10888), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + ACTIONS(9796), 1, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [280340] = 5, + ACTIONS(9798), 1, + anon_sym_EQ, + STATE(1726), 1, + sym_template_argument_list, + STATE(6303), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [235492] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, + anon_sym_LBRACK, + ACTIONS(9231), 1, anon_sym_COLON, - ACTIONS(5726), 1, - anon_sym_LBRACE, - STATE(3310), 1, - sym_field_declaration_list, - STATE(8525), 1, - sym_base_class_clause, - [280356] = 4, + STATE(3698), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5792), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [235518] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10890), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [280370] = 5, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3605), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9141), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [235539] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(10892), 1, + ACTIONS(4645), 1, + anon_sym_LBRACE, + ACTIONS(9800), 1, sym_identifier, - STATE(3361), 1, - sym_template_method, - STATE(8678), 1, - sym_operator_name, - [280386] = 4, + ACTIONS(9802), 1, + anon_sym_COLON_COLON, + ACTIONS(9804), 1, + anon_sym_inline, + STATE(338), 1, + sym_declaration_list, + STATE(7141), 1, + sym_nested_namespace_specifier, + STATE(7417), 1, + sym__namespace_specifier, + [235564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10894), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [280400] = 5, + ACTIONS(5514), 1, + anon_sym_AMP, + ACTIONS(5516), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_requires, + [235579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, + ACTIONS(9808), 1, + anon_sym_AMP, + ACTIONS(9806), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, anon_sym_LBRACE, - STATE(4474), 1, - sym_field_declaration_list, - STATE(8591), 1, - sym_base_class_clause, - [280416] = 5, + anon_sym_LBRACK, + [235594] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(10833), 1, - sym_identifier, - STATE(3328), 1, - sym_template_type, - STATE(7553), 1, - sym_template_parameter_list, - [280432] = 5, - ACTIONS(9067), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3605), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9131), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [235615] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(10896), 1, - anon_sym_DQUOTE, - ACTIONS(10898), 1, - aux_sym_string_literal_token1, - ACTIONS(10900), 1, - sym_escape_sequence, - STATE(7866), 1, - aux_sym_string_literal_repeat1, - [280448] = 4, + ACTIONS(4641), 1, + anon_sym_LBRACE, + ACTIONS(9802), 1, + anon_sym_COLON_COLON, + ACTIONS(9804), 1, + anon_sym_inline, + ACTIONS(9810), 1, + sym_identifier, + STATE(957), 1, + sym_declaration_list, + STATE(6985), 1, + sym_nested_namespace_specifier, + STATE(7417), 1, + sym__namespace_specifier, + [235640] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10839), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3550), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9129), 3, anon_sym_COMMA, - STATE(7609), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(10902), 2, anon_sym_RPAREN, - anon_sym_COLON, - [280462] = 5, + anon_sym_SEMI, + [235661] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(10823), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10904), 1, - anon_sym_GT2, - STATE(8414), 1, - aux_sym_template_argument_list_repeat1, - [280478] = 4, + ACTIONS(4639), 1, + anon_sym_LBRACE, + ACTIONS(9802), 1, + anon_sym_COLON_COLON, + ACTIONS(9804), 1, + anon_sym_inline, + ACTIONS(9812), 1, + sym_identifier, + STATE(844), 1, + sym_declaration_list, + STATE(6964), 1, + sym_nested_namespace_specifier, + STATE(7417), 1, + sym__namespace_specifier, + [235686] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9513), 1, - anon_sym_LBRACE, - STATE(6528), 1, - sym_compound_statement, - ACTIONS(9535), 2, + ACTIONS(8367), 1, anon_sym_LPAREN2, + ACTIONS(9460), 1, anon_sym_LBRACK, - [280492] = 5, + STATE(3550), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9121), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [235707] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(10906), 1, - anon_sym_SEMI, - STATE(2334), 1, - sym_template_argument_list, - [280508] = 5, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(8654), 1, + anon_sym_LBRACK, + STATE(3503), 1, + sym_parameter_list, + STATE(5760), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [235730] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, + ACTIONS(4637), 1, anon_sym_LBRACE, - ACTIONS(5661), 1, - anon_sym_COLON, - STATE(3177), 1, - sym_field_declaration_list, - STATE(8539), 1, - sym_base_class_clause, - [280524] = 5, + ACTIONS(9802), 1, + anon_sym_COLON_COLON, + ACTIONS(9804), 1, + anon_sym_inline, + ACTIONS(9814), 1, + sym_identifier, + STATE(551), 1, + sym_declaration_list, + STATE(7023), 1, + sym_nested_namespace_specifier, + STATE(7417), 1, + sym__namespace_specifier, + [235755] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3550), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9137), 3, anon_sym_COMMA, - ACTIONS(10823), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10908), 1, - anon_sym_GT2, - STATE(8125), 1, - aux_sym_template_argument_list_repeat1, - [280540] = 4, + anon_sym_RPAREN, + anon_sym_SEMI, + [235776] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10910), 1, - anon_sym_COMMA, - STATE(7614), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(10912), 2, - anon_sym_RPAREN, + ACTIONS(5558), 1, + anon_sym_LBRACK, + ACTIONS(5572), 1, anon_sym_COLON, - [280554] = 5, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + STATE(2466), 1, + sym_parameter_list, + STATE(6100), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [235799] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8843), 1, - anon_sym_LBRACE, - ACTIONS(10914), 1, + ACTIONS(5550), 1, + anon_sym_COLON, + ACTIONS(5558), 1, + anon_sym_LBRACK, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, anon_sym_LPAREN2, - STATE(4332), 1, - sym_requirement_seq, - STATE(8787), 1, - sym_requires_parameter_list, - [280570] = 5, + STATE(2466), 1, + sym_parameter_list, + STATE(6100), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [235822] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4489), 1, - sym_field_declaration_list, - STATE(8583), 1, - sym_base_class_clause, - [280586] = 4, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3605), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9133), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [235843] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10333), 1, - anon_sym_EQ, - STATE(7682), 2, + ACTIONS(5558), 1, + anon_sym_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9816), 1, + anon_sym_RPAREN, + STATE(2466), 1, + sym_parameter_list, + STATE(5866), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280600] = 5, - ACTIONS(9067), 1, + [235866] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(10916), 1, - anon_sym_DQUOTE, - ACTIONS(10918), 1, - aux_sym_string_literal_token1, - ACTIONS(10920), 1, - sym_escape_sequence, - STATE(7681), 1, - aux_sym_string_literal_repeat1, - [280616] = 4, + ACTIONS(4164), 1, + anon_sym_AMP, + ACTIONS(4162), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + [235881] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4641), 1, + anon_sym_LBRACE, + ACTIONS(9802), 1, + anon_sym_COLON_COLON, + ACTIONS(9804), 1, + anon_sym_inline, + ACTIONS(9818), 1, + sym_identifier, + STATE(910), 1, + sym_declaration_list, + STATE(6915), 1, + sym_nested_namespace_specifier, + STATE(7417), 1, + sym__namespace_specifier, + [235906] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10922), 1, - anon_sym_EQ, - STATE(6785), 2, + ACTIONS(5558), 1, + anon_sym_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9820), 1, + anon_sym_RPAREN, + STATE(2466), 1, + sym_parameter_list, + STATE(5866), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280630] = 5, + [235929] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(4080), 1, anon_sym_COLON_COLON, - ACTIONS(6432), 1, + ACTIONS(5950), 1, anon_sym_LT, - ACTIONS(10924), 1, - anon_sym_SEMI, - STATE(2334), 1, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + STATE(6727), 1, sym_template_argument_list, - [280646] = 4, + STATE(6728), 2, + sym_argument_list, + sym_initializer_list, + [235952] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9533), 1, + ACTIONS(4643), 1, anon_sym_LBRACE, - STATE(4539), 1, - sym_compound_statement, - ACTIONS(9535), 2, + ACTIONS(9802), 1, + anon_sym_COLON_COLON, + ACTIONS(9804), 1, + anon_sym_inline, + ACTIONS(9822), 1, + sym_identifier, + STATE(802), 1, + sym_declaration_list, + STATE(6899), 1, + sym_nested_namespace_specifier, + STATE(7417), 1, + sym__namespace_specifier, + [235977] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8367), 1, anon_sym_LPAREN2, + ACTIONS(9460), 1, anon_sym_LBRACK, - [280660] = 5, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(10819), 1, - anon_sym_LPAREN, - ACTIONS(10926), 1, - aux_sym_preproc_include_token2, - ACTIONS(10928), 1, - sym_preproc_arg, - STATE(8654), 1, - sym_preproc_params, - [280676] = 5, + STATE(3550), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9131), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [235998] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4491), 1, - sym_field_declaration_list, - STATE(8582), 1, - sym_base_class_clause, - [280692] = 4, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5558), 1, + anon_sym_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9824), 1, + anon_sym_RPAREN, + STATE(2466), 1, + sym_parameter_list, + STATE(5866), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [236021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9539), 1, - anon_sym_LBRACE, - STATE(4432), 1, - sym_compound_statement, - ACTIONS(9535), 2, + ACTIONS(9828), 1, + anon_sym_AMP, + ACTIONS(9826), 6, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - [280706] = 5, + [236036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8851), 1, - anon_sym_LBRACE, - ACTIONS(10914), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - STATE(4094), 1, - sym_requirement_seq, - STATE(8607), 1, - sym_requires_parameter_list, - [280722] = 5, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(10930), 1, - anon_sym_DQUOTE, - ACTIONS(10932), 1, - aux_sym_string_literal_token1, - ACTIONS(10934), 1, - sym_escape_sequence, - STATE(7674), 1, - aux_sym_string_literal_repeat1, - [280738] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10936), 1, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3550), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9141), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [280752] = 4, + [236057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10938), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [280766] = 4, + ACTIONS(5518), 1, + anon_sym_AMP, + ACTIONS(5520), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_requires, + [236072] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10940), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3550), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9133), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [280780] = 5, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(10942), 1, - anon_sym_DQUOTE, - ACTIONS(10944), 1, - aux_sym_string_literal_token1, - ACTIONS(10947), 1, - sym_escape_sequence, - STATE(7674), 1, - aux_sym_string_literal_repeat1, - [280796] = 5, + [236093] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, - sym_identifier, - ACTIONS(10952), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3605), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9121), 3, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(10954), 1, - anon_sym_RBRACE, - STATE(8216), 1, - sym_enumerator, - [280812] = 5, + anon_sym_GT2, + [236114] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5775), 1, + ACTIONS(4637), 1, anon_sym_LBRACE, - STATE(3561), 1, - sym_field_declaration_list, - STATE(8602), 1, - sym_base_class_clause, - [280828] = 4, + ACTIONS(9802), 1, + anon_sym_COLON_COLON, + ACTIONS(9804), 1, + anon_sym_inline, + ACTIONS(9830), 1, + sym_identifier, + STATE(573), 1, + sym_declaration_list, + STATE(7040), 1, + sym_nested_namespace_specifier, + STATE(7417), 1, + sym__namespace_specifier, + [236139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10956), 1, - anon_sym_COMMA, - STATE(7677), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(10959), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [280842] = 5, + ACTIONS(5510), 1, + anon_sym_AMP, + ACTIONS(5512), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_requires, + [236154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(8621), 1, + ACTIONS(9834), 1, + anon_sym_AMP, + ACTIONS(9832), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, anon_sym_LBRACE, - STATE(5897), 1, - sym_field_declaration_list, - STATE(8664), 1, - sym_base_class_clause, - [280858] = 5, + anon_sym_LBRACK, + [236169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5834), 1, + ACTIONS(9595), 1, + anon_sym_AMP, + ACTIONS(9593), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, anon_sym_LBRACE, - STATE(3382), 1, - sym_field_declaration_list, - STATE(8547), 1, - sym_base_class_clause, - [280874] = 4, + anon_sym_LBRACK, + [236184] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10373), 1, - anon_sym_EQ, - STATE(7720), 2, + ACTIONS(5558), 1, + anon_sym_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_RPAREN, + STATE(2466), 1, + sym_parameter_list, + STATE(5866), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280888] = 5, - ACTIONS(9067), 1, + [236207] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(10932), 1, - aux_sym_string_literal_token1, - ACTIONS(10934), 1, - sym_escape_sequence, - ACTIONS(10961), 1, - anon_sym_DQUOTE, - STATE(7674), 1, - aux_sym_string_literal_repeat1, - [280904] = 4, + ACTIONS(4643), 1, + anon_sym_LBRACE, + ACTIONS(9802), 1, + anon_sym_COLON_COLON, + ACTIONS(9804), 1, + anon_sym_inline, + ACTIONS(9838), 1, + sym_identifier, + STATE(787), 1, + sym_declaration_list, + STATE(6881), 1, + sym_nested_namespace_specifier, + STATE(7417), 1, + sym__namespace_specifier, + [236232] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(5558), 1, + anon_sym_LBRACK, + ACTIONS(5563), 1, + anon_sym_COLON, + ACTIONS(6911), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10963), 1, - anon_sym_EQ, - STATE(6785), 2, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + STATE(2466), 1, + sym_parameter_list, + STATE(6100), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280918] = 4, + [236255] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9539), 1, - anon_sym_LBRACE, - STATE(4447), 1, - sym_compound_statement, - ACTIONS(9535), 2, + ACTIONS(8367), 1, anon_sym_LPAREN2, + ACTIONS(9460), 1, anon_sym_LBRACK, - [280932] = 5, + STATE(3605), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9137), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [236276] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, - sym_identifier, - ACTIONS(10965), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3605), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9129), 3, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(10967), 1, - anon_sym_RBRACE, - STATE(8302), 1, - sym_enumerator, - [280948] = 5, + anon_sym_GT2, + [236297] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5726), 1, - anon_sym_LBRACE, - STATE(3308), 1, - sym_field_declaration_list, - STATE(8510), 1, - sym_base_class_clause, - [280964] = 5, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3605), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9135), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [236318] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, + ACTIONS(4639), 1, anon_sym_LBRACE, - STATE(4468), 1, - sym_field_declaration_list, - STATE(8574), 1, - sym_base_class_clause, - [280980] = 4, + ACTIONS(9802), 1, + anon_sym_COLON_COLON, + ACTIONS(9804), 1, + anon_sym_inline, + ACTIONS(9840), 1, + sym_identifier, + STATE(883), 1, + sym_declaration_list, + STATE(6990), 1, + sym_nested_namespace_specifier, + STATE(7417), 1, + sym__namespace_specifier, + [236343] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9541), 1, - anon_sym_LBRACE, - STATE(3479), 1, - sym_compound_statement, - ACTIONS(9535), 2, - anon_sym_LPAREN2, + ACTIONS(5732), 1, anon_sym_LBRACK, - [280994] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10914), 1, + ACTIONS(5950), 1, + anon_sym_LT, + STATE(5598), 1, + sym_template_argument_list, + ACTIONS(5730), 4, anon_sym_LPAREN2, - ACTIONS(10969), 1, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(6995), 1, - sym_requirement_seq, - STATE(8650), 1, - sym_requires_parameter_list, - [281010] = 5, + anon_sym_try, + [236362] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, + ACTIONS(4645), 1, anon_sym_LBRACE, - STATE(4501), 1, - sym_field_declaration_list, - STATE(8572), 1, - sym_base_class_clause, - [281026] = 4, + ACTIONS(9802), 1, + anon_sym_COLON_COLON, + ACTIONS(9804), 1, + anon_sym_inline, + ACTIONS(9842), 1, + sym_identifier, + STATE(349), 1, + sym_declaration_list, + STATE(7157), 1, + sym_nested_namespace_specifier, + STATE(7417), 1, + sym__namespace_specifier, + [236387] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9527), 1, - anon_sym_LBRACE, - STATE(4076), 1, - sym_compound_statement, - ACTIONS(9535), 2, + ACTIONS(8367), 1, anon_sym_LPAREN2, + ACTIONS(9460), 1, anon_sym_LBRACK, - [281040] = 5, + STATE(3550), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9135), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [236408] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(5558), 1, + anon_sym_LBRACK, + ACTIONS(5582), 1, anon_sym_COLON, - ACTIONS(5834), 1, - anon_sym_LBRACE, - STATE(3394), 1, - sym_field_declaration_list, - STATE(8549), 1, - sym_base_class_clause, - [281056] = 5, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + STATE(2466), 1, + sym_parameter_list, + STATE(6100), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [236431] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(8379), 1, + anon_sym_try, + ACTIONS(9317), 1, anon_sym_LBRACE, - ACTIONS(9772), 1, - anon_sym_COLON, - STATE(8104), 1, + ACTIONS(9844), 1, + anon_sym_SEMI, + ACTIONS(9846), 1, + anon_sym_EQ, + STATE(1822), 2, sym_compound_statement, - STATE(8737), 1, - sym_field_initializer_list, - [281072] = 4, + sym_try_statement, + [236451] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(2342), 1, - sym_compound_statement, - ACTIONS(9535), 2, - anon_sym_LPAREN2, + ACTIONS(5950), 1, + anon_sym_LT, + ACTIONS(9458), 1, anon_sym_LBRACK, - [281086] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8827), 1, - anon_sym_LBRACE, - ACTIONS(10914), 1, + STATE(5853), 1, + sym_template_argument_list, + ACTIONS(9456), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(3492), 1, - sym_requirement_seq, - STATE(8662), 1, - sym_requires_parameter_list, - [281102] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(10833), 1, - sym_identifier, - STATE(1485), 1, - sym_template_parameter_list, - STATE(3328), 1, - sym_template_type, - [281118] = 4, + anon_sym_LBRACK_LBRACK, + [236469] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10971), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [281132] = 5, + ACTIONS(9848), 1, + anon_sym_LBRACK, + ACTIONS(9851), 1, + anon_sym_EQ, + ACTIONS(9853), 1, + anon_sym_DOT, + STATE(6093), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [236487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4515), 1, - sym_field_declaration_list, - STATE(8567), 1, - sym_base_class_clause, - [281148] = 5, + STATE(7885), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [236501] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, + ACTIONS(263), 1, anon_sym_LBRACE, - STATE(4516), 1, - sym_field_declaration_list, - STATE(8565), 1, - sym_base_class_clause, - [281164] = 5, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(10819), 1, - anon_sym_LPAREN, - ACTIONS(10973), 1, - aux_sym_preproc_include_token2, - ACTIONS(10975), 1, - sym_preproc_arg, - STATE(8594), 1, - sym_preproc_params, - [281180] = 5, + ACTIONS(8854), 1, + anon_sym_try, + ACTIONS(9856), 1, + anon_sym_SEMI, + ACTIONS(9858), 1, + anon_sym_EQ, + STATE(343), 2, + sym_compound_statement, + sym_try_statement, + [236521] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4510), 1, - sym_field_declaration_list, - STATE(8713), 1, - sym_base_class_clause, - [281196] = 5, + ACTIONS(9860), 1, + anon_sym_LPAREN2, + STATE(6111), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9862), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [236537] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LBRACE, - ACTIONS(10914), 1, + ACTIONS(9864), 1, anon_sym_LPAREN2, - STATE(4390), 1, - sym_requirement_seq, - STATE(8589), 1, - sym_requires_parameter_list, - [281212] = 5, + STATE(6133), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9862), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [236553] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, + ACTIONS(8397), 1, + anon_sym_try, + ACTIONS(9307), 1, anon_sym_LBRACE, - STATE(4472), 1, - sym_field_declaration_list, - STATE(8693), 1, - sym_base_class_clause, - [281228] = 5, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(10977), 1, - anon_sym_DQUOTE, - ACTIONS(10979), 1, - aux_sym_string_literal_token1, - ACTIONS(10981), 1, - sym_escape_sequence, - STATE(7670), 1, - aux_sym_string_literal_repeat1, - [281244] = 4, + ACTIONS(9866), 1, + anon_sym_SEMI, + ACTIONS(9868), 1, + anon_sym_EQ, + STATE(2098), 2, + sym_compound_statement, + sym_try_statement, + [236573] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10983), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(8820), 1, + anon_sym_try, + ACTIONS(9870), 1, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [281258] = 5, + ACTIONS(9872), 1, + anon_sym_EQ, + STATE(920), 2, + sym_compound_statement, + sym_try_statement, + [236593] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(5651), 1, + anon_sym_LBRACK, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5649), 2, + anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4476), 1, - sym_field_declaration_list, - STATE(8691), 1, - sym_base_class_clause, - [281274] = 4, + STATE(5343), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [236611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(10985), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [281288] = 5, + ACTIONS(9874), 1, + anon_sym_LPAREN2, + STATE(6138), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9862), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [236627] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4942), 1, - anon_sym_LBRACE, - ACTIONS(10987), 1, - anon_sym_COLON_COLON, - ACTIONS(10989), 1, - anon_sym_EQ, - STATE(838), 1, - sym_declaration_list, - [281304] = 5, + ACTIONS(9876), 1, + anon_sym_LPAREN2, + STATE(6126), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9862), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [236643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(8621), 1, - anon_sym_LBRACE, - STATE(5910), 1, - sym_field_declaration_list, - STATE(8675), 1, - sym_base_class_clause, - [281320] = 3, + STATE(6578), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [236657] = 4, ACTIONS(3), 1, sym_comment, - STATE(7215), 1, - sym_access_specifier, - ACTIONS(10991), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [281332] = 5, + ACTIONS(9878), 1, + anon_sym_LPAREN2, + STATE(6101), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9862), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [236673] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(8621), 1, - anon_sym_LBRACE, - STATE(5913), 1, - sym_field_declaration_list, - STATE(8676), 1, - sym_base_class_clause, - [281348] = 5, + ACTIONS(9880), 1, + anon_sym_LPAREN2, + STATE(6138), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9862), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [236689] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3550), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9541), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [236709] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8397), 1, + anon_sym_try, + ACTIONS(9307), 1, anon_sym_LBRACE, - STATE(4519), 1, - sym_field_declaration_list, - STATE(8561), 1, - sym_base_class_clause, - [281364] = 5, + ACTIONS(9882), 1, + anon_sym_SEMI, + ACTIONS(9884), 1, + anon_sym_EQ, + STATE(2081), 2, + sym_compound_statement, + sym_try_statement, + [236729] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, + ACTIONS(8405), 1, + anon_sym_try, + ACTIONS(9349), 1, anon_sym_LBRACE, - ACTIONS(5661), 1, - anon_sym_COLON, - STATE(3167), 1, - sym_field_declaration_list, - STATE(8639), 1, - sym_base_class_clause, - [281380] = 5, + ACTIONS(9886), 1, + anon_sym_SEMI, + ACTIONS(9888), 1, + anon_sym_EQ, + STATE(2196), 2, + sym_compound_statement, + sym_try_statement, + [236749] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(7896), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [236763] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3605), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + ACTIONS(9541), 2, anon_sym_COMMA, - ACTIONS(10823), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10993), 1, anon_sym_GT2, - STATE(8174), 1, - aux_sym_template_argument_list_repeat1, - [281396] = 5, + [236783] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(10995), 1, - sym_identifier, - STATE(4250), 1, - sym_template_method, - STATE(8759), 1, - sym_operator_name, - [281412] = 5, + ACTIONS(9890), 1, + anon_sym_LPAREN2, + STATE(6138), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9862), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [236799] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10997), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10999), 1, - anon_sym_COMMA, - ACTIONS(11001), 1, + ACTIONS(8379), 1, + anon_sym_try, + ACTIONS(9317), 1, anon_sym_LBRACE, - STATE(8150), 1, - aux_sym_base_class_clause_repeat1, - [281428] = 4, + ACTIONS(9892), 1, + anon_sym_SEMI, + ACTIONS(9894), 1, + anon_sym_EQ, + STATE(1840), 2, + sym_compound_statement, + sym_try_statement, + [236819] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6785), 1, + anon_sym___attribute__, + ACTIONS(6911), 1, + anon_sym_LBRACK_LBRACK, + STATE(5191), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5347), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [236837] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10353), 1, - anon_sym_EQ, - STATE(7953), 2, + ACTIONS(9445), 1, + anon_sym_LBRACK, + ACTIONS(9443), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(5501), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [281442] = 5, + [236855] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, + ACTIONS(5950), 1, anon_sym_LT, - ACTIONS(11003), 1, - anon_sym_SEMI, - STATE(2334), 1, + ACTIONS(9451), 1, + anon_sym_LBRACK, + STATE(5857), 1, sym_template_argument_list, - [281458] = 5, + ACTIONS(9447), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [236873] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, - anon_sym_LBRACE, - ACTIONS(5661), 1, - anon_sym_COLON, - STATE(3171), 1, - sym_field_declaration_list, - STATE(8618), 1, - sym_base_class_clause, - [281474] = 4, + ACTIONS(9896), 1, + anon_sym_LPAREN2, + STATE(6138), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9862), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [236889] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9541), 1, + ACTIONS(818), 1, anon_sym_LBRACE, - STATE(3578), 1, + ACTIONS(8764), 1, + anon_sym_try, + ACTIONS(9898), 1, + anon_sym_SEMI, + ACTIONS(9900), 1, + anon_sym_EQ, + STATE(866), 2, sym_compound_statement, - ACTIONS(9535), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [281488] = 4, + sym_try_statement, + [236909] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11005), 1, + ACTIONS(8439), 1, + anon_sym_try, + ACTIONS(9385), 1, + anon_sym_LBRACE, + ACTIONS(9902), 1, + anon_sym_SEMI, + ACTIONS(9904), 1, anon_sym_EQ, - STATE(6785), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [281502] = 5, + STATE(2129), 2, + sym_compound_statement, + sym_try_statement, + [236929] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, - sym_identifier, - ACTIONS(11007), 1, - anon_sym_COMMA, - ACTIONS(11009), 1, - anon_sym_RBRACE, - STATE(8015), 1, - sym_enumerator, - [281518] = 5, + ACTIONS(9906), 1, + anon_sym_LPAREN2, + STATE(6105), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9862), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [236945] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5689), 1, + ACTIONS(770), 1, anon_sym_LBRACE, - STATE(3136), 1, - sym_field_declaration_list, - STATE(8836), 1, - sym_base_class_clause, - [281534] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11011), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [281548] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11013), 1, + ACTIONS(8660), 1, + anon_sym_try, + ACTIONS(9908), 1, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [281562] = 4, + ACTIONS(9910), 1, + anon_sym_EQ, + STATE(869), 2, + sym_compound_statement, + sym_try_statement, + [236965] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11015), 1, + ACTIONS(371), 1, + anon_sym_LBRACE, + ACTIONS(8804), 1, + anon_sym_try, + ACTIONS(9912), 1, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [281576] = 4, + ACTIONS(9914), 1, + anon_sym_EQ, + STATE(560), 2, + sym_compound_statement, + sym_try_statement, + [236985] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11017), 1, + ACTIONS(371), 1, + anon_sym_LBRACE, + ACTIONS(8804), 1, + anon_sym_try, + ACTIONS(9916), 1, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [281590] = 5, + ACTIONS(9918), 1, + anon_sym_EQ, + STATE(526), 2, + sym_compound_statement, + sym_try_statement, + [237005] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(3130), 1, - sym_field_declaration_list, - STATE(8849), 1, - sym_base_class_clause, - [281606] = 4, + ACTIONS(9920), 1, + anon_sym_LPAREN2, + STATE(6138), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9862), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [237021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7218), 1, + ACTIONS(9922), 1, anon_sym_LPAREN2, - STATE(8778), 1, - sym_argument_list, - ACTIONS(11019), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [281620] = 5, + STATE(6123), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9862), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [237037] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(10987), 1, - anon_sym_COLON_COLON, - ACTIONS(11021), 1, - anon_sym_EQ, - STATE(570), 1, - sym_declaration_list, - [281636] = 4, + ACTIONS(5732), 1, + anon_sym_LBRACK, + ACTIONS(6705), 1, + anon_sym_LT, + STATE(3784), 1, + sym_template_argument_list, + ACTIONS(5730), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [237055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(2357), 1, - sym_compound_statement, - ACTIONS(9535), 2, + ACTIONS(9924), 1, anon_sym_LPAREN2, - anon_sym_LBRACK, - [281650] = 5, + STATE(6138), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9862), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [237071] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(263), 1, anon_sym_LBRACE, - ACTIONS(9772), 1, - anon_sym_COLON, - STATE(8377), 1, + ACTIONS(8854), 1, + anon_sym_try, + ACTIONS(9926), 1, + anon_sym_SEMI, + ACTIONS(9928), 1, + anon_sym_EQ, + STATE(363), 2, sym_compound_statement, - STATE(8781), 1, - sym_field_initializer_list, - [281666] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(10833), 1, - sym_identifier, - STATE(1478), 1, - sym_template_parameter_list, - STATE(3328), 1, - sym_template_type, - [281682] = 4, + sym_try_statement, + [237091] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(4802), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11023), 1, - anon_sym_SEMI, - STATE(5422), 2, + STATE(4993), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [281696] = 4, + aux_sym_type_definition_repeat1, + STATE(5311), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [237109] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10363), 1, + ACTIONS(9930), 1, + anon_sym_LBRACK, + ACTIONS(9932), 1, anon_sym_EQ, - STATE(7610), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [281710] = 5, + ACTIONS(9934), 1, + anon_sym_DOT, + STATE(6093), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [237127] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, + ACTIONS(770), 1, anon_sym_LBRACE, - ACTIONS(10987), 1, - anon_sym_COLON_COLON, - ACTIONS(11025), 1, + ACTIONS(8660), 1, + anon_sym_try, + ACTIONS(9936), 1, + anon_sym_SEMI, + ACTIONS(9938), 1, anon_sym_EQ, - STATE(1330), 1, - sym_declaration_list, - [281726] = 4, + STATE(854), 2, + sym_compound_statement, + sym_try_statement, + [237147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11027), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [281740] = 5, + ACTIONS(9940), 1, + anon_sym_LPAREN2, + STATE(6116), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9862), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [237163] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5963), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(3824), 1, - sym_field_declaration_list, - STATE(8552), 1, - sym_base_class_clause, - [281756] = 5, + ACTIONS(8820), 1, + anon_sym_try, + ACTIONS(9942), 1, + anon_sym_SEMI, + ACTIONS(9944), 1, + anon_sym_EQ, + STATE(905), 2, + sym_compound_statement, + sym_try_statement, + [237183] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5726), 1, - anon_sym_LBRACE, - STATE(3386), 1, - sym_field_declaration_list, - STATE(8771), 1, - sym_base_class_clause, - [281772] = 4, + ACTIONS(9946), 1, + anon_sym_LPAREN2, + STATE(6138), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9862), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [237199] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11029), 1, + ACTIONS(8439), 1, + anon_sym_try, + ACTIONS(9385), 1, + anon_sym_LBRACE, + ACTIONS(9948), 1, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [281786] = 5, + ACTIONS(9950), 1, + anon_sym_EQ, + STATE(2151), 2, + sym_compound_statement, + sym_try_statement, + [237219] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 1, + ACTIONS(5732), 1, + anon_sym_LBRACK, + ACTIONS(5950), 1, anon_sym_LT, - ACTIONS(10833), 1, - sym_identifier, - STATE(1480), 1, - sym_template_parameter_list, - STATE(3328), 1, - sym_template_type, - [281802] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11031), 1, + STATE(3784), 1, + sym_template_argument_list, + ACTIONS(5730), 3, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [281816] = 5, + anon_sym_LBRACK_LBRACK, + [237237] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(8621), 1, + ACTIONS(8405), 1, + anon_sym_try, + ACTIONS(9349), 1, anon_sym_LBRACE, - STATE(5898), 1, - sym_field_declaration_list, - STATE(8682), 1, - sym_base_class_clause, - [281832] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10910), 1, - anon_sym_COMMA, - STATE(7658), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(11033), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [281846] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11035), 1, + ACTIONS(9952), 1, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [281860] = 5, + ACTIONS(9954), 1, + anon_sym_EQ, + STATE(2193), 2, + sym_compound_statement, + sym_try_statement, + [237257] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(8621), 1, + ACTIONS(818), 1, anon_sym_LBRACE, - STATE(5865), 1, - sym_field_declaration_list, - STATE(8685), 1, - sym_base_class_clause, - [281876] = 4, + ACTIONS(8764), 1, + anon_sym_try, + ACTIONS(9956), 1, + anon_sym_SEMI, + ACTIONS(9958), 1, + anon_sym_EQ, + STATE(882), 2, + sym_compound_statement, + sym_try_statement, + [237277] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11037), 1, - anon_sym_COMMA, - STATE(7677), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(11039), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [281890] = 4, + ACTIONS(9960), 1, + anon_sym_LPAREN2, + STATE(6138), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9962), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [237293] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11041), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(9965), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + STATE(7479), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [281904] = 4, + [237312] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9543), 1, - anon_sym_LBRACE, - STATE(4955), 1, - sym_compound_statement, - ACTIONS(9535), 2, + ACTIONS(8367), 1, anon_sym_LPAREN2, + ACTIONS(9137), 1, + anon_sym_COLON, + ACTIONS(9460), 1, anon_sym_LBRACK, - [281918] = 5, + STATE(3661), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + [237331] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, + ACTIONS(7960), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7964), 1, + anon_sym_EQ, + ACTIONS(9967), 1, sym_identifier, - ACTIONS(11043), 1, + ACTIONS(7962), 2, anon_sym_COMMA, - ACTIONS(11045), 1, - anon_sym_RBRACE, - STATE(8291), 1, - sym_enumerator, - [281934] = 4, + anon_sym_GT2, + [237348] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11047), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [281948] = 4, + ACTIONS(7027), 1, + sym_auto, + ACTIONS(7029), 1, + anon_sym_decltype, + STATE(3021), 1, + sym_decltype_auto, + ACTIONS(9969), 2, + anon_sym_COMMA, + anon_sym_GT2, + [237365] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9539), 1, - anon_sym_LBRACE, - STATE(4389), 1, - sym_compound_statement, - ACTIONS(9535), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [281962] = 4, + ACTIONS(7027), 1, + sym_auto, + ACTIONS(7029), 1, + anon_sym_decltype, + STATE(3021), 1, + sym_decltype_auto, + ACTIONS(9971), 2, + anon_sym_COMMA, + anon_sym_GT2, + [237382] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11049), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(9973), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6150), 1, + aux_sym_field_declaration_repeat1, + STATE(7300), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [281976] = 4, + [237401] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11051), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(9975), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6151), 1, + aux_sym_field_declaration_repeat1, + STATE(7302), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [281990] = 4, + [237420] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11053), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(9977), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + STATE(7303), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282004] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(9772), 1, - anon_sym_COLON, - STATE(8286), 1, - sym_compound_statement, - STATE(8818), 1, - sym_field_initializer_list, - [282020] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10999), 1, - anon_sym_COMMA, - ACTIONS(11055), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11057), 1, - anon_sym_LBRACE, - STATE(8228), 1, - aux_sym_base_class_clause_repeat1, - [282036] = 4, + [237439] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(2352), 1, - sym_compound_statement, - ACTIONS(9535), 2, + ACTIONS(8367), 1, anon_sym_LPAREN2, + ACTIONS(9460), 1, anon_sym_LBRACK, - [282050] = 4, + ACTIONS(9979), 1, + anon_sym_RPAREN, + STATE(3550), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + [237458] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9802), 1, + anon_sym_COLON_COLON, + ACTIONS(9804), 1, + anon_sym_inline, + ACTIONS(9981), 1, + sym_identifier, + STATE(7254), 1, + sym_nested_namespace_specifier, + STATE(7417), 1, + sym__namespace_specifier, + [237477] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11059), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(9983), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6153), 1, + aux_sym_field_declaration_repeat1, + STATE(7309), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282064] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(8500), 1, - anon_sym_LBRACE, - STATE(5521), 1, - sym_field_declaration_list, - STATE(8551), 1, - sym_base_class_clause, - [282080] = 4, + [237496] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11061), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(9985), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + STATE(7310), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282094] = 5, + [237515] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(8500), 1, - anon_sym_LBRACE, - STATE(5517), 1, - sym_field_declaration_list, - STATE(8546), 1, - sym_base_class_clause, - [282110] = 4, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(9987), 1, + anon_sym_SEMI, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + STATE(7314), 1, + sym_attribute_specifier, + [237534] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11063), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(9989), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + STATE(7317), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282124] = 4, + [237553] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11065), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(9991), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + STATE(7318), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282138] = 5, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(10932), 1, - aux_sym_string_literal_token1, - ACTIONS(10934), 1, - sym_escape_sequence, - ACTIONS(11067), 1, - anon_sym_DQUOTE, - STATE(7674), 1, - aux_sym_string_literal_repeat1, - [282154] = 4, + [237572] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11069), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(9993), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + STATE(8034), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282168] = 4, + [237591] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11071), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(9995), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6174), 1, + aux_sym_field_declaration_repeat1, + STATE(8035), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282182] = 4, + [237610] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11073), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(9997), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6164), 1, + aux_sym_field_declaration_repeat1, + STATE(7926), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282196] = 5, - ACTIONS(9067), 1, + [237629] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(11075), 1, - anon_sym_DQUOTE, - ACTIONS(11077), 1, - aux_sym_string_literal_token1, - ACTIONS(11079), 1, - sym_escape_sequence, - STATE(7974), 1, - aux_sym_string_literal_repeat1, - [282212] = 5, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9133), 1, + anon_sym_COLON, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3661), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + [237648] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9131), 1, anon_sym_COLON, - ACTIONS(8621), 1, - anon_sym_LBRACE, - STATE(5855), 1, - sym_field_declaration_list, - STATE(8686), 1, - sym_base_class_clause, - [282228] = 4, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3661), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + [237667] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11081), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(9999), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6163), 1, + aux_sym_field_declaration_repeat1, + STATE(8036), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282242] = 5, + [237686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(10833), 1, + ACTIONS(10003), 1, + anon_sym_COLON_COLON, + ACTIONS(10001), 4, sym_identifier, - STATE(1479), 1, - sym_template_parameter_list, - STATE(3328), 1, - sym_template_type, - [282258] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(8621), 1, - anon_sym_LBRACE, - STATE(5858), 1, - sym_field_declaration_list, - STATE(8688), 1, - sym_base_class_clause, - [282274] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(7234), 1, - sym_access_specifier, - ACTIONS(10991), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [282286] = 4, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + [237699] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11083), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(10005), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + STATE(7905), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282300] = 5, - ACTIONS(9067), 1, + [237718] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(10932), 1, - aux_sym_string_literal_token1, - ACTIONS(10934), 1, - sym_escape_sequence, - ACTIONS(11085), 1, - anon_sym_DQUOTE, - STATE(7674), 1, - aux_sym_string_literal_repeat1, - [282316] = 4, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9129), 1, + anon_sym_COLON, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3661), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + [237737] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11087), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(10007), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + STATE(7925), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282330] = 4, + [237756] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11089), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(10009), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + STATE(7904), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282344] = 4, + [237775] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11091), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282358] = 5, + ACTIONS(9802), 1, + anon_sym_COLON_COLON, + ACTIONS(9804), 1, + anon_sym_inline, + ACTIONS(10011), 1, + sym_identifier, + STATE(7316), 1, + sym_nested_namespace_specifier, + STATE(7417), 1, + sym__namespace_specifier, + [237794] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9121), 1, anon_sym_COLON, - ACTIONS(5726), 1, - anon_sym_LBRACE, - STATE(3425), 1, - sym_field_declaration_list, - STATE(8585), 1, - sym_base_class_clause, - [282374] = 4, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3661), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + [237813] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11093), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(10013), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + STATE(7481), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282388] = 4, + [237832] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11095), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282402] = 5, + ACTIONS(5732), 1, + anon_sym_LBRACK, + ACTIONS(5950), 1, + anon_sym_LT, + STATE(4091), 1, + sym_template_argument_list, + ACTIONS(5730), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [237849] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(8621), 1, - anon_sym_LBRACE, - STATE(5954), 1, - sym_field_declaration_list, - STATE(8692), 1, - sym_base_class_clause, - [282418] = 3, + ACTIONS(9802), 1, + anon_sym_COLON_COLON, + ACTIONS(9804), 1, + anon_sym_inline, + ACTIONS(10015), 1, + sym_identifier, + STATE(7417), 1, + sym__namespace_specifier, + STATE(7604), 1, + sym_nested_namespace_specifier, + [237868] = 6, ACTIONS(3), 1, sym_comment, - STATE(7254), 1, - sym_access_specifier, - ACTIONS(10991), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [282430] = 4, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + ACTIONS(10017), 1, + anon_sym_RPAREN, + STATE(3550), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + [237887] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11097), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(10019), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + STATE(7471), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282444] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4482), 1, - sym_field_declaration_list, - STATE(8793), 1, - sym_base_class_clause, - [282460] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4490), 1, - sym_field_declaration_list, - STATE(8809), 1, - sym_base_class_clause, - [282476] = 4, + [237906] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11099), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(10021), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + STATE(7467), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282490] = 4, + [237925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10023), 2, + anon_sym_class, + anon_sym_typename, + STATE(7018), 3, + sym_type_parameter_declaration, + sym_variadic_type_parameter_declaration, + sym_optional_type_parameter_declaration, + [237938] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11101), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(10025), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + STATE(7924), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282504] = 4, + [237957] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11103), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(10027), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6167), 1, + aux_sym_field_declaration_repeat1, + STATE(7466), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282518] = 4, + [237976] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11105), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(10029), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6181), 1, + aux_sym_field_declaration_repeat1, + STATE(7270), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282532] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11107), 1, - anon_sym_EQ, - STATE(7663), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [282546] = 4, + [237995] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11109), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(10031), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + STATE(7451), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282560] = 5, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(10932), 1, - aux_sym_string_literal_token1, - ACTIONS(10934), 1, - sym_escape_sequence, - ACTIONS(11111), 1, - anon_sym_DQUOTE, - STATE(7674), 1, - aux_sym_string_literal_repeat1, - [282576] = 4, + [238014] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9575), 1, - anon_sym_LBRACE, - STATE(2352), 1, - sym_compound_statement, - ACTIONS(9535), 2, + ACTIONS(8367), 1, anon_sym_LPAREN2, + ACTIONS(9135), 1, + anon_sym_COLON, + ACTIONS(9460), 1, anon_sym_LBRACK, - [282590] = 5, + STATE(3661), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + [238033] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(10833), 1, - sym_identifier, - STATE(1482), 1, - sym_template_parameter_list, - STATE(3328), 1, - sym_template_type, - [282606] = 5, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + ACTIONS(10035), 1, + anon_sym_COLON_COLON, + STATE(6928), 1, + sym_argument_list, + ACTIONS(10033), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [238050] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5834), 1, - anon_sym_LBRACE, - STATE(3307), 1, - sym_field_declaration_list, - STATE(8497), 1, - sym_base_class_clause, - [282622] = 4, + ACTIONS(9802), 1, + anon_sym_COLON_COLON, + ACTIONS(9804), 1, + anon_sym_inline, + ACTIONS(10037), 1, + sym_identifier, + STATE(7417), 1, + sym__namespace_specifier, + STATE(7694), 1, + sym_nested_namespace_specifier, + [238069] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11113), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(10039), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + STATE(7266), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282636] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(6059), 1, - sym_field_declaration_list, - STATE(8697), 1, - sym_base_class_clause, - [282652] = 5, + [238088] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(6068), 1, - sym_field_declaration_list, - STATE(8698), 1, - sym_base_class_clause, - [282668] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(6067), 1, - sym_field_declaration_list, - STATE(8701), 1, - sym_base_class_clause, - [282684] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5963), 1, - anon_sym_LBRACE, - STATE(3836), 1, - sym_field_declaration_list, - STATE(8605), 1, - sym_base_class_clause, - [282700] = 5, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(10819), 1, - anon_sym_LPAREN, - ACTIONS(11115), 1, - aux_sym_preproc_include_token2, - ACTIONS(11117), 1, - sym_preproc_arg, - STATE(8838), 1, - sym_preproc_params, - [282716] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10950), 1, + ACTIONS(9802), 1, + anon_sym_COLON_COLON, + ACTIONS(9804), 1, + anon_sym_inline, + ACTIONS(10041), 1, sym_identifier, - ACTIONS(11119), 1, - anon_sym_COMMA, - ACTIONS(11121), 1, - anon_sym_RBRACE, - STATE(8267), 1, - sym_enumerator, - [282732] = 5, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(11123), 1, - anon_sym_DQUOTE, - ACTIONS(11125), 1, - aux_sym_string_literal_token1, - ACTIONS(11127), 1, - sym_escape_sequence, - STATE(7812), 1, - aux_sym_string_literal_repeat1, - [282748] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(8500), 1, - anon_sym_LBRACE, - STATE(5520), 1, - sym_field_declaration_list, - STATE(8529), 1, - sym_base_class_clause, - [282764] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(6084), 1, - sym_field_declaration_list, - STATE(8705), 1, - sym_base_class_clause, - [282780] = 5, + STATE(6757), 1, + sym__namespace_specifier, + STATE(6938), 1, + sym_nested_namespace_specifier, + [238107] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(6086), 1, - sym_field_declaration_list, - STATE(8711), 1, - sym_base_class_clause, - [282796] = 5, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(10043), 1, + anon_sym_SEMI, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + STATE(7276), 1, + sym_attribute_specifier, + [238126] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5726), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + STATE(6727), 1, + sym_template_argument_list, + ACTIONS(10045), 2, + anon_sym_LPAREN2, anon_sym_LBRACE, - STATE(3422), 1, - sym_field_declaration_list, - STATE(8598), 1, - sym_base_class_clause, - [282812] = 5, + [238143] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(8500), 1, + ACTIONS(3571), 1, anon_sym_LBRACE, - STATE(5539), 1, - sym_field_declaration_list, - STATE(8545), 1, - sym_base_class_clause, - [282828] = 5, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + ACTIONS(7760), 1, + anon_sym_RPAREN, + STATE(2634), 1, + sym_argument_list, + STATE(3882), 1, + sym_initializer_list, + [238162] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10999), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(7049), 1, anon_sym_COMMA, - ACTIONS(11129), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11131), 1, - anon_sym_LBRACE, - STATE(8045), 1, - aux_sym_base_class_clause_repeat1, - [282844] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(6076), 1, - sym_field_declaration_list, - STATE(8715), 1, - sym_base_class_clause, - [282860] = 5, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(10932), 1, - aux_sym_string_literal_token1, - ACTIONS(10934), 1, - sym_escape_sequence, - ACTIONS(11133), 1, - anon_sym_DQUOTE, - STATE(7674), 1, - aux_sym_string_literal_repeat1, - [282876] = 5, + ACTIONS(10047), 1, + anon_sym_SEMI, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + STATE(7264), 1, + sym_attribute_specifier, + [238181] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9141), 1, anon_sym_COLON, - ACTIONS(8500), 1, - anon_sym_LBRACE, - STATE(5544), 1, - sym_field_declaration_list, - STATE(8540), 1, - sym_base_class_clause, - [282892] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11135), 1, - anon_sym_COMMA, - STATE(7814), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(11138), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [282906] = 4, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3661), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + [238200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11140), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(10049), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6172), 1, + aux_sym_field_declaration_repeat1, + STATE(7449), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [282920] = 4, + [238219] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9567), 1, + ACTIONS(3571), 1, anon_sym_LBRACE, - STATE(7009), 1, - sym_compound_statement, - ACTIONS(9535), 2, + ACTIONS(5364), 1, anon_sym_LPAREN2, - anon_sym_LBRACK, - [282934] = 2, + ACTIONS(7804), 1, + anon_sym_RPAREN, + STATE(2634), 1, + sym_argument_list, + STATE(3882), 1, + sym_initializer_list, + [238238] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11142), 4, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(10051), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [282944] = 5, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + STATE(7261), 1, + sym_attribute_specifier, + [238257] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(10833), 1, + ACTIONS(9802), 1, + anon_sym_COLON_COLON, + ACTIONS(9804), 1, + anon_sym_inline, + ACTIONS(10041), 1, sym_identifier, - STATE(1484), 1, - sym_template_parameter_list, - STATE(3328), 1, - sym_template_type, - [282960] = 5, + STATE(6842), 1, + sym__namespace_specifier, + STATE(6861), 1, + sym_nested_namespace_specifier, + [238276] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(6082), 1, - sym_field_declaration_list, - STATE(8717), 1, - sym_base_class_clause, - [282976] = 5, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(10053), 1, + sym_identifier, + STATE(2558), 1, + sym_template_method, + STATE(2573), 1, + sym_template_type, + STATE(6869), 1, + sym_operator_name, + [238295] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5834), 1, - anon_sym_LBRACE, - STATE(3366), 1, - sym_field_declaration_list, - STATE(8494), 1, - sym_base_class_clause, - [282992] = 5, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(10055), 1, + anon_sym_SEMI, + STATE(6171), 1, + aux_sym_field_declaration_repeat1, + STATE(7450), 1, + sym_attribute_specifier, + [238314] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(6057), 1, - sym_field_declaration_list, - STATE(8723), 1, - sym_base_class_clause, - [283008] = 4, + ACTIONS(5732), 1, + anon_sym_LBRACK, + ACTIONS(5950), 1, + anon_sym_LT, + STATE(3920), 1, + sym_template_argument_list, + ACTIONS(5730), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [238331] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11144), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(10057), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + STATE(7259), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283022] = 5, + [238350] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, - anon_sym_LBRACE, - ACTIONS(6020), 1, - anon_sym_LPAREN2, - STATE(4021), 1, - sym_argument_list, - STATE(4436), 1, - sym_initializer_list, - [283038] = 5, + ACTIONS(9802), 1, + anon_sym_COLON_COLON, + ACTIONS(9804), 1, + anon_sym_inline, + ACTIONS(10059), 1, + sym_identifier, + STATE(7417), 1, + sym__namespace_specifier, + STATE(7422), 1, + sym_nested_namespace_specifier, + [238369] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(7049), 1, anon_sym_COMMA, - ACTIONS(10823), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11146), 1, - anon_sym_GT2, - STATE(8128), 1, - aux_sym_template_argument_list_repeat1, - [283054] = 4, + ACTIONS(10061), 1, + anon_sym_SEMI, + STATE(6186), 1, + aux_sym_field_declaration_repeat1, + STATE(7277), 1, + sym_attribute_specifier, + [238388] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11148), 1, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(10063), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6195), 1, + aux_sym_field_declaration_repeat1, + STATE(7267), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283068] = 2, + [238407] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11142), 4, - anon_sym_SEMI, + ACTIONS(9064), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [283078] = 5, + STATE(3678), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [238421] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(2208), 1, anon_sym_LBRACE, - ACTIONS(9772), 1, - anon_sym_COLON, - STATE(8074), 1, - sym_compound_statement, - STATE(8564), 1, - sym_field_initializer_list, - [283094] = 5, + ACTIONS(5592), 1, + anon_sym_LPAREN2, + STATE(3207), 1, + sym_argument_list, + STATE(3551), 1, + sym_initializer_list, + [238437] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 1, + ACTIONS(4535), 1, anon_sym_LT, - ACTIONS(10833), 1, + ACTIONS(10065), 1, sym_identifier, - STATE(1481), 1, + STATE(993), 1, sym_template_parameter_list, - STATE(3328), 1, + STATE(2573), 1, sym_template_type, - [283110] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9567), 1, - anon_sym_LBRACE, - STATE(7000), 1, - sym_compound_statement, - ACTIONS(9535), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [283124] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(9772), 1, - anon_sym_COLON, - STATE(8200), 1, - sym_compound_statement, - STATE(8852), 1, - sym_field_initializer_list, - [283140] = 4, + [238453] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11150), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283154] = 5, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, + anon_sym_EQ, + STATE(6303), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [238467] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, - anon_sym_LBRACE, - ACTIONS(5661), 1, - anon_sym_COLON, - STATE(3144), 1, - sym_field_declaration_list, - STATE(8655), 1, - sym_base_class_clause, - [283170] = 4, + ACTIONS(10067), 1, + sym_identifier, + ACTIONS(10069), 1, + anon_sym_COMMA, + ACTIONS(10071), 1, + anon_sym_RBRACE, + STATE(6789), 1, + sym_enumerator, + [238483] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11152), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + ACTIONS(10073), 1, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283184] = 5, - ACTIONS(3), 1, + STATE(1726), 1, + sym_template_argument_list, + [238499] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(3122), 1, - sym_field_declaration_list, - STATE(8830), 1, - sym_base_class_clause, - [283200] = 5, + ACTIONS(10075), 1, + anon_sym_DQUOTE, + ACTIONS(10077), 1, + aux_sym_string_literal_token1, + ACTIONS(10079), 1, + sym_escape_sequence, + STATE(6322), 1, + aux_sym_string_literal_repeat1, + [238515] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5726), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(3387), 1, - sym_field_declaration_list, - STATE(8478), 1, - sym_base_class_clause, - [283216] = 5, + ACTIONS(9297), 1, + anon_sym_COLON, + STATE(6843), 1, + sym_compound_statement, + STATE(7046), 1, + sym_field_initializer_list, + [238531] = 5, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(10077), 1, + aux_sym_string_literal_token1, + ACTIONS(10079), 1, + sym_escape_sequence, + ACTIONS(10081), 1, + anon_sym_DQUOTE, + STATE(6322), 1, + aux_sym_string_literal_repeat1, + [238547] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5689), 1, + ACTIONS(10083), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10085), 1, + anon_sym_COMMA, + ACTIONS(10087), 1, anon_sym_LBRACE, - STATE(3132), 1, - sym_field_declaration_list, - STATE(8825), 1, - sym_base_class_clause, - [283232] = 4, + STATE(6796), 1, + aux_sym_base_class_clause_repeat1, + [238563] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11154), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283246] = 4, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(10089), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10091), 1, + anon_sym_GT2, + STATE(6709), 1, + aux_sym_template_argument_list_repeat1, + [238579] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9575), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(2357), 1, + ACTIONS(9297), 1, + anon_sym_COLON, + STATE(6495), 1, sym_compound_statement, - ACTIONS(9535), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [283260] = 4, + STATE(7153), 1, + sym_field_initializer_list, + [238595] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11156), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283274] = 4, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(10089), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10093), 1, + anon_sym_GT2, + STATE(6764), 1, + aux_sym_template_argument_list_repeat1, + [238611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9533), 1, + ACTIONS(9056), 1, anon_sym_LBRACE, - STATE(4537), 1, + STATE(3365), 1, sym_compound_statement, - ACTIONS(9535), 2, + ACTIONS(9032), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [283288] = 4, + [238625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11158), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283302] = 4, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9716), 1, + anon_sym_EQ, + STATE(6234), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [238639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9567), 1, - anon_sym_LBRACE, - STATE(6989), 1, - sym_compound_statement, - ACTIONS(9535), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [283316] = 5, + STATE(5931), 1, + sym_access_specifier, + ACTIONS(10095), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [238651] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - ACTIONS(10062), 1, - anon_sym_LBRACK, - STATE(4706), 1, - sym_parameter_list, - STATE(6860), 1, - sym__function_declarator_seq, - [283332] = 4, + ACTIONS(4535), 1, + anon_sym_LT, + ACTIONS(10065), 1, + sym_identifier, + STATE(988), 1, + sym_template_parameter_list, + STATE(2573), 1, + sym_template_type, + [238667] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11160), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283346] = 5, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(10089), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10097), 1, + anon_sym_GT2, + STATE(6598), 1, + aux_sym_template_argument_list_repeat1, + [238683] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(5318), 1, anon_sym_LBRACE, - ACTIONS(9772), 1, + ACTIONS(5320), 1, anon_sym_COLON, - STATE(8249), 1, - sym_compound_statement, - STATE(8629), 1, - sym_field_initializer_list, - [283362] = 4, + STATE(2403), 1, + sym_field_declaration_list, + STATE(6989), 1, + sym_base_class_clause, + [238699] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11162), 1, + ACTIONS(10099), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6242), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283376] = 4, + aux_sym_type_definition_repeat1, + [238713] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11164), 1, + ACTIONS(10101), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(4344), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283390] = 4, + aux_sym_type_definition_repeat1, + [238727] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11166), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283404] = 4, - ACTIONS(3), 1, + ACTIONS(5320), 1, + anon_sym_COLON, + ACTIONS(5343), 1, + anon_sym_LBRACE, + STATE(2377), 1, + sym_field_declaration_list, + STATE(7054), 1, + sym_base_class_clause, + [238743] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11168), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283418] = 4, + ACTIONS(10103), 1, + anon_sym_DQUOTE, + ACTIONS(10105), 1, + aux_sym_string_literal_token1, + ACTIONS(10107), 1, + sym_escape_sequence, + STATE(6207), 1, + aux_sym_string_literal_repeat1, + [238759] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9543), 1, + ACTIONS(9054), 1, anon_sym_LBRACE, - STATE(4996), 1, + STATE(3529), 1, sym_compound_statement, - ACTIONS(9535), 2, + ACTIONS(9032), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [283432] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11170), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283446] = 5, + [238773] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(5320), 1, + anon_sym_COLON, + ACTIONS(5410), 1, anon_sym_LBRACE, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - STATE(3483), 1, - sym_argument_list, - STATE(3554), 1, - sym_initializer_list, - [283462] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11172), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283476] = 4, + STATE(2624), 1, + sym_field_declaration_list, + STATE(6962), 1, + sym_base_class_clause, + [238789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11174), 1, + ACTIONS(10109), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(4344), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283490] = 4, + aux_sym_type_definition_repeat1, + [238803] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11176), 1, + ACTIONS(10111), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(4344), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283504] = 5, + aux_sym_type_definition_repeat1, + [238817] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, + ACTIONS(4080), 1, anon_sym_COLON_COLON, - ACTIONS(6432), 1, + ACTIONS(5950), 1, anon_sym_LT, - ACTIONS(11178), 1, + ACTIONS(10113), 1, anon_sym_SEMI, - STATE(2334), 1, + STATE(1726), 1, sym_template_argument_list, - [283520] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11180), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283534] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5659), 1, - anon_sym_LBRACE, - ACTIONS(5661), 1, - anon_sym_COLON, - STATE(3174), 1, - sym_field_declaration_list, - STATE(8812), 1, - sym_base_class_clause, - [283550] = 4, + [238833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11182), 1, + ACTIONS(10115), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(4344), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283564] = 4, + aux_sym_type_definition_repeat1, + [238847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11184), 1, + ACTIONS(10117), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6225), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283578] = 5, + aux_sym_type_definition_repeat1, + [238861] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(10823), 1, + ACTIONS(10089), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11186), 1, + ACTIONS(10119), 1, anon_sym_GT2, - STATE(8305), 1, + STATE(6694), 1, aux_sym_template_argument_list_repeat1, - [283594] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11188), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283608] = 4, + [238877] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11190), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283622] = 3, - ACTIONS(3), 1, + ACTIONS(9016), 1, + anon_sym_LBRACE, + STATE(3274), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [238891] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(11192), 1, - sym_identifier, - ACTIONS(11194), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [283634] = 4, + ACTIONS(10077), 1, + aux_sym_string_literal_token1, + ACTIONS(10079), 1, + sym_escape_sequence, + ACTIONS(10121), 1, + anon_sym_DQUOTE, + STATE(6322), 1, + aux_sym_string_literal_repeat1, + [238907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11196), 1, + ACTIONS(10123), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6227), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283648] = 5, - ACTIONS(9067), 1, + aux_sym_type_definition_repeat1, + [238921] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(10932), 1, + ACTIONS(10077), 1, aux_sym_string_literal_token1, - ACTIONS(10934), 1, + ACTIONS(10079), 1, sym_escape_sequence, - ACTIONS(11198), 1, + ACTIONS(10125), 1, anon_sym_DQUOTE, - STATE(7674), 1, + STATE(6322), 1, aux_sym_string_literal_repeat1, - [283664] = 4, + [238937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11200), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283678] = 4, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10127), 1, + anon_sym_EQ, + STATE(5501), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [238951] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11202), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283692] = 5, - ACTIONS(9067), 1, + ACTIONS(10067), 1, + sym_identifier, + ACTIONS(10129), 1, + anon_sym_COMMA, + ACTIONS(10131), 1, + anon_sym_RBRACE, + STATE(6731), 1, + sym_enumerator, + [238967] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(11204), 1, + ACTIONS(10133), 1, anon_sym_DQUOTE, - ACTIONS(11206), 1, + ACTIONS(10135), 1, aux_sym_string_literal_token1, - ACTIONS(11208), 1, + ACTIONS(10137), 1, sym_escape_sequence, - STATE(7874), 1, + STATE(6233), 1, aux_sym_string_literal_repeat1, - [283708] = 4, + [238983] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11210), 1, + ACTIONS(10139), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(4344), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283722] = 4, + aux_sym_type_definition_repeat1, + [238997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9545), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(10141), 1, + anon_sym_SEMI, + STATE(6407), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [239011] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4641), 1, + anon_sym_LBRACE, + ACTIONS(10143), 1, + anon_sym_COLON_COLON, + ACTIONS(10145), 1, + anon_sym_EQ, + STATE(899), 1, + sym_declaration_list, + [239027] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9056), 1, anon_sym_LBRACE, - STATE(4292), 1, + STATE(3385), 1, sym_compound_statement, - ACTIONS(9535), 2, + ACTIONS(9032), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [283736] = 4, + [239041] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11212), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283750] = 4, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(10147), 1, + sym_identifier, + STATE(2558), 1, + sym_template_method, + STATE(7085), 1, + sym_operator_name, + [239057] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11214), 1, + ACTIONS(10149), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(4344), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283764] = 5, - ACTIONS(9067), 1, + aux_sym_type_definition_repeat1, + [239071] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(10932), 1, - aux_sym_string_literal_token1, - ACTIONS(10934), 1, - sym_escape_sequence, - ACTIONS(11216), 1, - anon_sym_DQUOTE, - STATE(7674), 1, - aux_sym_string_literal_repeat1, - [283780] = 5, + ACTIONS(4535), 1, + anon_sym_LT, + ACTIONS(10065), 1, + sym_identifier, + STATE(2573), 1, + sym_template_type, + STATE(6173), 1, + sym_template_parameter_list, + [239087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8816), 1, + ACTIONS(10151), 1, + anon_sym_COMMA, + STATE(6351), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(10153), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [239101] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9064), 1, anon_sym_LBRACE, - ACTIONS(10914), 1, + STATE(3679), 1, + sym_compound_statement, + ACTIONS(9032), 2, anon_sym_LPAREN2, - STATE(4639), 1, - sym_requirement_seq, - STATE(8508), 1, - sym_requires_parameter_list, - [283796] = 4, + anon_sym_LBRACK, + [239115] = 5, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(10155), 1, + anon_sym_DQUOTE, + ACTIONS(10157), 1, + aux_sym_string_literal_token1, + ACTIONS(10159), 1, + sym_escape_sequence, + STATE(6260), 1, + aux_sym_string_literal_repeat1, + [239131] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11218), 1, + ACTIONS(10161), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(4344), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283810] = 4, + aux_sym_type_definition_repeat1, + [239145] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11220), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283824] = 4, + ACTIONS(9020), 1, + anon_sym_LBRACE, + STATE(5741), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [239159] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11222), 1, + ACTIONS(10163), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(4344), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283838] = 5, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(10819), 1, - anon_sym_LPAREN, - ACTIONS(11224), 1, - aux_sym_preproc_include_token2, - ACTIONS(11226), 1, - sym_preproc_arg, - STATE(8641), 1, - sym_preproc_params, - [283854] = 4, + aux_sym_type_definition_repeat1, + [239173] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11228), 1, + ACTIONS(10165), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6247), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283868] = 5, + aux_sym_type_definition_repeat1, + [239187] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9020), 1, + anon_sym_LBRACE, + STATE(5720), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [239201] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(10823), 1, + ACTIONS(10089), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11230), 1, + ACTIONS(10167), 1, anon_sym_GT2, - STATE(8099), 1, + STATE(6663), 1, aux_sym_template_argument_list_repeat1, - [283884] = 5, + [239217] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(8333), 1, anon_sym_LBRACE, - ACTIONS(9772), 1, - anon_sym_COLON, - STATE(8248), 1, - sym_compound_statement, - STATE(8808), 1, - sym_field_initializer_list, - [283900] = 5, + ACTIONS(10169), 1, + anon_sym_LPAREN2, + STATE(3657), 1, + sym_requirement_seq, + STATE(7034), 1, + sym_requires_parameter_list, + [239233] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 1, + ACTIONS(2152), 1, anon_sym_LBRACE, - ACTIONS(6084), 1, + ACTIONS(5673), 1, anon_sym_LPAREN2, - STATE(4245), 1, + STATE(3391), 1, sym_argument_list, - STATE(5417), 1, + STATE(3458), 1, sym_initializer_list, - [283916] = 5, + [239249] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(8500), 1, - anon_sym_LBRACE, - STATE(5511), 1, - sym_field_declaration_list, - STATE(8528), 1, - sym_base_class_clause, - [283932] = 4, + ACTIONS(4535), 1, + anon_sym_LT, + ACTIONS(10065), 1, + sym_identifier, + STATE(989), 1, + sym_template_parameter_list, + STATE(2573), 1, + sym_template_type, + [239265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11232), 1, + ACTIONS(10171), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6249), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [283946] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10950), 1, - sym_identifier, - ACTIONS(11234), 1, - anon_sym_COMMA, - ACTIONS(11236), 1, - anon_sym_RBRACE, - STATE(8089), 1, - sym_enumerator, - [283962] = 5, + aux_sym_type_definition_repeat1, + [239279] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5834), 1, + ACTIONS(9020), 1, anon_sym_LBRACE, - STATE(3352), 1, - sym_field_declaration_list, - STATE(8558), 1, - sym_base_class_clause, - [283978] = 4, + STATE(5767), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [239293] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9543), 1, + ACTIONS(9016), 1, anon_sym_LBRACE, - STATE(4926), 1, + STATE(3216), 1, sym_compound_statement, - ACTIONS(9535), 2, + ACTIONS(9032), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [283992] = 5, + [239307] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(8344), 1, + anon_sym_LBRACE, + ACTIONS(10169), 1, + anon_sym_LPAREN2, + STATE(3169), 1, + sym_requirement_seq, + STATE(7037), 1, + sym_requires_parameter_list, + [239323] = 5, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(10077), 1, + aux_sym_string_literal_token1, + ACTIONS(10079), 1, + sym_escape_sequence, + ACTIONS(10173), 1, + anon_sym_DQUOTE, + STATE(6322), 1, + aux_sym_string_literal_repeat1, + [239339] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5320), 1, anon_sym_COLON, - ACTIONS(5834), 1, + ACTIONS(5447), 1, anon_sym_LBRACE, - STATE(3351), 1, + STATE(2772), 1, sym_field_declaration_list, - STATE(8467), 1, + STATE(7139), 1, sym_base_class_clause, - [284008] = 5, + [239355] = 5, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(10077), 1, + aux_sym_string_literal_token1, + ACTIONS(10079), 1, + sym_escape_sequence, + ACTIONS(10175), 1, + anon_sym_DQUOTE, + STATE(6322), 1, + aux_sym_string_literal_repeat1, + [239371] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(10987), 1, - anon_sym_COLON_COLON, - ACTIONS(11238), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10177), 1, anon_sym_EQ, - STATE(1411), 1, - sym_declaration_list, - [284024] = 5, + STATE(5501), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [239385] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11240), 1, - anon_sym_SEMI, - ACTIONS(11242), 1, - anon_sym_DASH_GT, - ACTIONS(11244), 1, - anon_sym_noexcept, - STATE(9048), 1, - sym_trailing_return_type, - [284040] = 5, - ACTIONS(9067), 1, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(10089), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10179), 1, + anon_sym_GT2, + STATE(6784), 1, + aux_sym_template_argument_list_repeat1, + [239401] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(10819), 1, - anon_sym_LPAREN, - ACTIONS(11246), 1, + ACTIONS(10181), 1, aux_sym_preproc_include_token2, - ACTIONS(11248), 1, + ACTIONS(10183), 1, + anon_sym_LPAREN, + ACTIONS(10185), 1, sym_preproc_arg, - STATE(8609), 1, + STATE(6946), 1, sym_preproc_params, - [284056] = 4, - ACTIONS(3), 1, + [239417] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11250), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284070] = 4, + ACTIONS(10187), 1, + anon_sym_DQUOTE, + ACTIONS(10189), 1, + aux_sym_string_literal_token1, + ACTIONS(10191), 1, + sym_escape_sequence, + STATE(6292), 1, + aux_sym_string_literal_repeat1, + [239433] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9527), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(4158), 1, + ACTIONS(9297), 1, + anon_sym_COLON, + STATE(6577), 1, sym_compound_statement, - ACTIONS(9535), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [284084] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - STATE(3483), 1, - sym_argument_list, - STATE(4809), 1, - sym_initializer_list, - [284100] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11252), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284114] = 4, + STATE(6969), 1, + sym_field_initializer_list, + [239449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11254), 1, + ACTIONS(10193), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6309), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284128] = 4, + aux_sym_type_definition_repeat1, + [239463] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11256), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(4571), 1, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284142] = 5, - ACTIONS(9067), 1, + ACTIONS(5950), 1, + anon_sym_LT, + STATE(1919), 1, + sym_template_argument_list, + [239479] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(10932), 1, - aux_sym_string_literal_token1, - ACTIONS(10934), 1, - sym_escape_sequence, - ACTIONS(11258), 1, - anon_sym_DQUOTE, - STATE(7674), 1, - aux_sym_string_literal_repeat1, - [284158] = 4, + ACTIONS(10183), 1, + anon_sym_LPAREN, + ACTIONS(10195), 1, + aux_sym_preproc_include_token2, + ACTIONS(10197), 1, + sym_preproc_arg, + STATE(7042), 1, + sym_preproc_params, + [239495] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11260), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284172] = 4, + ACTIONS(4637), 1, + anon_sym_LBRACE, + ACTIONS(10143), 1, + anon_sym_COLON_COLON, + ACTIONS(10199), 1, + anon_sym_EQ, + STATE(541), 1, + sym_declaration_list, + [239511] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11262), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284186] = 4, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10201), 1, + anon_sym_EQ, + STATE(6402), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [239525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11264), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284200] = 4, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10203), 1, + anon_sym_EQ, + STATE(5501), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [239539] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11266), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284214] = 4, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9752), 1, + anon_sym_EQ, + STATE(6285), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [239553] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11268), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284228] = 4, - ACTIONS(3), 1, + ACTIONS(4535), 1, + anon_sym_LT, + ACTIONS(10065), 1, + sym_identifier, + STATE(991), 1, + sym_template_parameter_list, + STATE(2573), 1, + sym_template_type, + [239569] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11270), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284242] = 4, - ACTIONS(3), 1, + ACTIONS(10205), 1, + anon_sym_DQUOTE, + ACTIONS(10207), 1, + aux_sym_string_literal_token1, + ACTIONS(10209), 1, + sym_escape_sequence, + STATE(6421), 1, + aux_sym_string_literal_repeat1, + [239585] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11272), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284256] = 4, + ACTIONS(10211), 1, + anon_sym_DQUOTE, + ACTIONS(10213), 1, + aux_sym_string_literal_token1, + ACTIONS(10215), 1, + sym_escape_sequence, + STATE(6262), 1, + aux_sym_string_literal_repeat1, + [239601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9575), 1, + ACTIONS(3571), 1, anon_sym_LBRACE, - STATE(2342), 1, - sym_compound_statement, - ACTIONS(9535), 2, + ACTIONS(6881), 1, anon_sym_LPAREN2, - anon_sym_LBRACK, - [284270] = 4, + STATE(6723), 2, + sym_argument_list, + sym_initializer_list, + [239615] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11274), 1, + ACTIONS(10217), 1, + anon_sym_COMMA, + STATE(6279), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(10220), 2, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284284] = 4, + anon_sym___attribute__, + [239629] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11276), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284298] = 5, + ACTIONS(4535), 1, + anon_sym_LT, + ACTIONS(10065), 1, + sym_identifier, + STATE(994), 1, + sym_template_parameter_list, + STATE(2573), 1, + sym_template_type, + [239645] = 5, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(10077), 1, + aux_sym_string_literal_token1, + ACTIONS(10079), 1, + sym_escape_sequence, + ACTIONS(10222), 1, + anon_sym_DQUOTE, + STATE(6322), 1, + aux_sym_string_literal_repeat1, + [239661] = 5, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(10224), 1, + anon_sym_DQUOTE, + ACTIONS(10226), 1, + aux_sym_string_literal_token1, + ACTIONS(10228), 1, + sym_escape_sequence, + STATE(6205), 1, + aux_sym_string_literal_repeat1, + [239677] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(5320), 1, anon_sym_COLON, - ACTIONS(5963), 1, + ACTIONS(5410), 1, anon_sym_LBRACE, - STATE(3716), 1, + STATE(2571), 1, sym_field_declaration_list, - STATE(8769), 1, + STATE(6981), 1, sym_base_class_clause, - [284314] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11278), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284328] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11280), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284342] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11282), 4, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [284352] = 5, + [239693] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(6652), 1, + ACTIONS(5318), 1, anon_sym_LBRACE, - STATE(4500), 1, + ACTIONS(5320), 1, + anon_sym_COLON, + STATE(2389), 1, sym_field_declaration_list, - STATE(8570), 1, + STATE(7016), 1, sym_base_class_clause, - [284368] = 5, + [239709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10914), 1, - anon_sym_LPAREN2, - ACTIONS(11284), 1, - anon_sym_LBRACE, - STATE(6545), 1, - sym_requirement_seq, - STATE(8592), 1, - sym_requires_parameter_list, - [284384] = 4, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10230), 1, + anon_sym_EQ, + STATE(5501), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [239723] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11286), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284398] = 5, + ACTIONS(10067), 1, + sym_identifier, + ACTIONS(10232), 1, + anon_sym_COMMA, + ACTIONS(10234), 1, + anon_sym_RBRACE, + STATE(6602), 1, + sym_enumerator, + [239739] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, + ACTIONS(10067), 1, sym_identifier, - ACTIONS(11288), 1, + ACTIONS(10236), 1, anon_sym_COMMA, - ACTIONS(11290), 1, + ACTIONS(10238), 1, anon_sym_RBRACE, - STATE(8336), 1, + STATE(6638), 1, sym_enumerator, - [284414] = 5, - ACTIONS(9067), 1, + [239755] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(11292), 1, - anon_sym_DQUOTE, - ACTIONS(11294), 1, - aux_sym_string_literal_token1, - ACTIONS(11296), 1, - sym_escape_sequence, - STATE(7923), 1, - aux_sym_string_literal_repeat1, - [284430] = 5, + ACTIONS(10240), 1, + sym_identifier, + ACTIONS(10242), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [239767] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(5320), 1, anon_sym_COLON, - ACTIONS(5963), 1, + ACTIONS(7881), 1, anon_sym_LBRACE, - STATE(3717), 1, + STATE(4446), 1, sym_field_declaration_list, - STATE(8772), 1, + STATE(7064), 1, sym_base_class_clause, - [284446] = 5, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(10932), 1, - aux_sym_string_literal_token1, - ACTIONS(10934), 1, - sym_escape_sequence, - ACTIONS(11298), 1, - anon_sym_DQUOTE, - STATE(7674), 1, - aux_sym_string_literal_repeat1, - [284462] = 5, - ACTIONS(9067), 1, + [239783] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(11300), 1, - anon_sym_DQUOTE, - ACTIONS(11302), 1, - aux_sym_string_literal_token1, - ACTIONS(11304), 1, - sym_escape_sequence, - STATE(7793), 1, - aux_sym_string_literal_repeat1, - [284478] = 4, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(9297), 1, + anon_sym_COLON, + STATE(6830), 1, + sym_compound_statement, + STATE(6871), 1, + sym_field_initializer_list, + [239799] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11306), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284492] = 5, - ACTIONS(9067), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(10244), 1, + sym_identifier, + STATE(2558), 1, + sym_template_method, + STATE(7020), 1, + sym_operator_name, + [239815] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(10932), 1, + ACTIONS(10077), 1, aux_sym_string_literal_token1, - ACTIONS(10934), 1, + ACTIONS(10079), 1, sym_escape_sequence, - ACTIONS(11308), 1, + ACTIONS(10246), 1, anon_sym_DQUOTE, - STATE(7674), 1, + STATE(6322), 1, aux_sym_string_literal_repeat1, - [284508] = 4, + [239831] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11310), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284522] = 4, + ACTIONS(4639), 1, + anon_sym_LBRACE, + ACTIONS(10143), 1, + anon_sym_COLON_COLON, + ACTIONS(10248), 1, + anon_sym_EQ, + STATE(888), 1, + sym_declaration_list, + [239847] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11312), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284536] = 4, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(10089), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10250), 1, + anon_sym_GT2, + STATE(6720), 1, + aux_sym_template_argument_list_repeat1, + [239863] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 1, + anon_sym_LT, + ACTIONS(10065), 1, + sym_identifier, + STATE(995), 1, + sym_template_parameter_list, + STATE(2573), 1, + sym_template_type, + [239879] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(10089), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10252), 1, + anon_sym_GT2, + STATE(6686), 1, + aux_sym_template_argument_list_repeat1, + [239895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11314), 1, + ACTIONS(10254), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(4344), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284550] = 5, + aux_sym_type_definition_repeat1, + [239909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(8500), 1, + ACTIONS(9054), 1, anon_sym_LBRACE, - STATE(5556), 1, - sym_field_declaration_list, - STATE(8505), 1, - sym_base_class_clause, - [284566] = 4, + STATE(3536), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [239923] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9533), 1, + ACTIONS(8295), 1, anon_sym_LBRACE, - STATE(4589), 1, - sym_compound_statement, - ACTIONS(9535), 2, + ACTIONS(10169), 1, anon_sym_LPAREN2, - anon_sym_LBRACK, - [284580] = 5, + STATE(3565), 1, + sym_requirement_seq, + STATE(6966), 1, + sym_requires_parameter_list, + [239939] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(10823), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11316), 1, - anon_sym_GT2, - STATE(8068), 1, - aux_sym_template_argument_list_repeat1, - [284596] = 5, + ACTIONS(10169), 1, + anon_sym_LPAREN2, + ACTIONS(10256), 1, + anon_sym_LBRACE, + STATE(5269), 1, + sym_requirement_seq, + STATE(7144), 1, + sym_requires_parameter_list, + [239955] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, - sym_identifier, - ACTIONS(11318), 1, - anon_sym_COMMA, - ACTIONS(11320), 1, - anon_sym_RBRACE, - STATE(8394), 1, - sym_enumerator, - [284612] = 5, - ACTIONS(9067), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10258), 1, + anon_sym_EQ, + STATE(5501), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [239969] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(11322), 1, + ACTIONS(10260), 1, anon_sym_DQUOTE, - ACTIONS(11324), 1, + ACTIONS(10262), 1, aux_sym_string_literal_token1, - ACTIONS(11326), 1, + ACTIONS(10264), 1, sym_escape_sequence, - STATE(7764), 1, + STATE(6335), 1, aux_sym_string_literal_repeat1, - [284628] = 4, + [239985] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11328), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284642] = 5, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10266), 1, + anon_sym_EQ, + STATE(5501), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [239999] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10085), 1, + anon_sym_COMMA, + ACTIONS(10268), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10270), 1, + anon_sym_LBRACE, + STATE(6534), 1, + aux_sym_base_class_clause_repeat1, + [240015] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8835), 1, + ACTIONS(2068), 1, anon_sym_LBRACE, - ACTIONS(10914), 1, + ACTIONS(5592), 1, anon_sym_LPAREN2, - STATE(4973), 1, - sym_requirement_seq, - STATE(8823), 1, - sym_requires_parameter_list, - [284658] = 5, + STATE(3183), 1, + sym_initializer_list, + STATE(3207), 1, + sym_argument_list, + [240031] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(10272), 1, + anon_sym_COMMA, + STATE(6306), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(10275), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [240045] = 5, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(10183), 1, + anon_sym_LPAREN, + ACTIONS(10277), 1, + aux_sym_preproc_include_token2, + ACTIONS(10279), 1, + sym_preproc_arg, + STATE(7030), 1, + sym_preproc_params, + [240061] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9014), 1, anon_sym_LBRACE, - ACTIONS(9772), 1, - anon_sym_COLON, - STATE(8329), 1, + STATE(1740), 1, sym_compound_statement, - STATE(8446), 1, - sym_field_initializer_list, - [284674] = 4, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [240075] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11330), 1, + ACTIONS(10281), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(4344), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284688] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10950), 1, - sym_identifier, - ACTIONS(11332), 1, - anon_sym_COMMA, - ACTIONS(11334), 1, - anon_sym_RBRACE, - STATE(8214), 1, - sym_enumerator, - [284704] = 4, + aux_sym_type_definition_repeat1, + [240089] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11037), 1, + ACTIONS(10283), 1, anon_sym_COMMA, - STATE(7746), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(11336), 2, + STATE(6348), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(10285), 2, anon_sym_RPAREN, anon_sym_COLON, - [284718] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5659), 1, - anon_sym_LBRACE, - ACTIONS(5661), 1, - anon_sym_COLON, - STATE(3153), 1, - sym_field_declaration_list, - STATE(8666), 1, - sym_base_class_clause, - [284734] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5834), 1, - anon_sym_LBRACE, - STATE(3342), 1, - sym_field_declaration_list, - STATE(8456), 1, - sym_base_class_clause, - [284750] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_COLON_COLON, - ACTIONS(6432), 1, - anon_sym_LT, - ACTIONS(11338), 1, - anon_sym_SEMI, - STATE(2334), 1, - sym_template_argument_list, - [284766] = 5, - ACTIONS(9067), 1, + [240103] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(11340), 1, + ACTIONS(10287), 1, anon_sym_DQUOTE, - ACTIONS(11342), 1, + ACTIONS(10289), 1, aux_sym_string_literal_token1, - ACTIONS(11344), 1, + ACTIONS(10291), 1, sym_escape_sequence, - STATE(7946), 1, + STATE(6345), 1, aux_sym_string_literal_repeat1, - [284782] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11346), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284796] = 4, + [240119] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11348), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284810] = 4, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(10089), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10293), 1, + anon_sym_GT2, + STATE(6774), 1, + aux_sym_template_argument_list_repeat1, + [240135] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11350), 1, + ACTIONS(10295), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(4344), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284824] = 5, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(10819), 1, - anon_sym_LPAREN, - ACTIONS(11352), 1, - aux_sym_preproc_include_token2, - ACTIONS(11354), 1, - sym_preproc_arg, - STATE(8532), 1, - sym_preproc_params, - [284840] = 5, - ACTIONS(9067), 1, + aux_sym_type_definition_repeat1, + [240149] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(10932), 1, + ACTIONS(10297), 1, + anon_sym_DQUOTE, + ACTIONS(10299), 1, aux_sym_string_literal_token1, - ACTIONS(10934), 1, + ACTIONS(10301), 1, sym_escape_sequence, - ACTIONS(11356), 1, - anon_sym_DQUOTE, - STATE(7674), 1, + STATE(6281), 1, aux_sym_string_literal_repeat1, - [284856] = 5, + [240165] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10303), 1, + anon_sym_COMMA, + STATE(6315), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(10306), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [240179] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(5320), 1, anon_sym_COLON, - ACTIONS(6652), 1, + ACTIONS(6280), 1, anon_sym_LBRACE, - STATE(4530), 1, + STATE(3615), 1, sym_field_declaration_list, - STATE(8799), 1, + STATE(7075), 1, sym_base_class_clause, - [284872] = 5, + [240195] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(5320), 1, anon_sym_COLON, - ACTIONS(6652), 1, + ACTIONS(5343), 1, anon_sym_LBRACE, - STATE(4526), 1, + STATE(2383), 1, sym_field_declaration_list, - STATE(8804), 1, + STATE(7002), 1, sym_base_class_clause, - [284888] = 4, + [240211] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11358), 1, + ACTIONS(10308), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6364), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [284902] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(10823), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11360), 1, - anon_sym_GT2, - STATE(8201), 1, - aux_sym_template_argument_list_repeat1, - [284918] = 5, + aux_sym_type_definition_repeat1, + [240225] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2108), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(6020), 1, + STATE(1742), 1, + sym_compound_statement, + ACTIONS(9032), 2, anon_sym_LPAREN2, - STATE(4021), 1, - sym_argument_list, - STATE(4113), 1, - sym_initializer_list, - [284934] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(10823), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11362), 1, - anon_sym_GT2, - STATE(8057), 1, - aux_sym_template_argument_list_repeat1, - [284950] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11364), 1, - anon_sym_EQ, - STATE(6785), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284964] = 5, + anon_sym_LBRACK, + [240239] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(5661), 1, + ACTIONS(9297), 1, anon_sym_COLON, - STATE(3150), 1, - sym_field_declaration_list, - STATE(8646), 1, - sym_base_class_clause, - [284980] = 5, + STATE(6670), 1, + sym_compound_statement, + STATE(7106), 1, + sym_field_initializer_list, + [240255] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2012), 1, - anon_sym_operator, - ACTIONS(11366), 1, + ACTIONS(10067), 1, sym_identifier, - STATE(3361), 1, - sym_template_method, - STATE(8576), 1, - sym_operator_name, - [284996] = 5, - ACTIONS(9067), 1, + ACTIONS(10310), 1, + anon_sym_COMMA, + ACTIONS(10312), 1, + anon_sym_RBRACE, + STATE(6672), 1, + sym_enumerator, + [240271] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(10819), 1, - anon_sym_LPAREN, - ACTIONS(11368), 1, - aux_sym_preproc_include_token2, - ACTIONS(11370), 1, - sym_preproc_arg, - STATE(8503), 1, - sym_preproc_params, - [285012] = 5, + ACTIONS(10314), 1, + anon_sym_DQUOTE, + ACTIONS(10316), 1, + aux_sym_string_literal_token1, + ACTIONS(10319), 1, + sym_escape_sequence, + STATE(6322), 1, + aux_sym_string_literal_repeat1, + [240287] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(5320), 1, anon_sym_COLON, - ACTIONS(5834), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(3358), 1, + STATE(2936), 1, sym_field_declaration_list, - STATE(8716), 1, + STATE(7152), 1, sym_base_class_clause, - [285028] = 5, - ACTIONS(3), 1, + [240303] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(4946), 1, - anon_sym_LBRACE, - ACTIONS(10987), 1, - anon_sym_COLON_COLON, - ACTIONS(11372), 1, - anon_sym_EQ, - STATE(1349), 1, - sym_declaration_list, - [285044] = 4, + ACTIONS(10322), 1, + anon_sym_DQUOTE, + ACTIONS(10324), 1, + aux_sym_string_literal_token1, + ACTIONS(10326), 1, + sym_escape_sequence, + STATE(6346), 1, + aux_sym_string_literal_repeat1, + [240319] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11374), 1, + ACTIONS(10328), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(4344), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [285058] = 4, + aux_sym_type_definition_repeat1, + [240333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11376), 1, + ACTIONS(10330), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6313), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [285072] = 4, - ACTIONS(3), 1, + aux_sym_type_definition_repeat1, + [240347] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(11378), 1, - anon_sym_COMMA, - STATE(7961), 1, - aux_sym_type_definition_repeat2, - ACTIONS(11381), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [285086] = 4, + ACTIONS(10332), 1, + anon_sym_DQUOTE, + ACTIONS(10334), 1, + aux_sym_string_literal_token1, + ACTIONS(10336), 1, + sym_escape_sequence, + STATE(6381), 1, + aux_sym_string_literal_repeat1, + [240363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11383), 1, + ACTIONS(10338), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6433), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [285100] = 5, + aux_sym_type_definition_repeat1, + [240377] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(9297), 1, + anon_sym_COLON, + STATE(6488), 1, + sym_compound_statement, + STATE(6943), 1, + sym_field_initializer_list, + [240393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(5320), 1, anon_sym_COLON, - ACTIONS(5963), 1, + ACTIONS(7881), 1, anon_sym_LBRACE, - STATE(3770), 1, + STATE(4461), 1, sym_field_declaration_list, - STATE(8803), 1, + STATE(7097), 1, sym_base_class_clause, - [285116] = 5, - ACTIONS(9067), 1, + [240409] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(11385), 1, - anon_sym_DQUOTE, - ACTIONS(11387), 1, - aux_sym_string_literal_token1, - ACTIONS(11389), 1, - sym_escape_sequence, - STATE(7968), 1, - aux_sym_string_literal_repeat1, - [285132] = 4, + ACTIONS(10183), 1, + anon_sym_LPAREN, + ACTIONS(10340), 1, + aux_sym_preproc_include_token2, + ACTIONS(10342), 1, + sym_preproc_arg, + STATE(7163), 1, + sym_preproc_params, + [240425] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11391), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [285146] = 5, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(1739), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [240439] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(5320), 1, anon_sym_COLON, - ACTIONS(5726), 1, + ACTIONS(6280), 1, anon_sym_LBRACE, - STATE(3344), 1, + STATE(3622), 1, sym_field_declaration_list, - STATE(8679), 1, + STATE(7073), 1, sym_base_class_clause, - [285162] = 4, + [240455] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11393), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + ACTIONS(10344), 1, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [285176] = 5, - ACTIONS(9067), 1, + STATE(1726), 1, + sym_template_argument_list, + [240471] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(10932), 1, + ACTIONS(10077), 1, aux_sym_string_literal_token1, - ACTIONS(10934), 1, + ACTIONS(10079), 1, sym_escape_sequence, - ACTIONS(11395), 1, - anon_sym_DQUOTE, - STATE(7674), 1, - aux_sym_string_literal_repeat1, - [285192] = 5, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(11397), 1, + ACTIONS(10346), 1, anon_sym_DQUOTE, - ACTIONS(11399), 1, - aux_sym_string_literal_token1, - ACTIONS(11401), 1, - sym_escape_sequence, - STATE(7920), 1, + STATE(6322), 1, aux_sym_string_literal_repeat1, - [285208] = 4, + [240487] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11403), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [285222] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5726), 1, - anon_sym_LBRACE, - STATE(3345), 1, - sym_field_declaration_list, - STATE(8704), 1, - sym_base_class_clause, - [285238] = 5, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(10932), 1, - aux_sym_string_literal_token1, - ACTIONS(10934), 1, - sym_escape_sequence, - ACTIONS(11405), 1, - anon_sym_DQUOTE, - STATE(7674), 1, - aux_sym_string_literal_repeat1, - [285254] = 5, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9730), 1, + anon_sym_EQ, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [240501] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(10823), 1, + ACTIONS(10089), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11407), 1, + ACTIONS(10348), 1, anon_sym_GT2, - STATE(8012), 1, + STATE(6552), 1, aux_sym_template_argument_list_repeat1, - [285270] = 5, - ACTIONS(9067), 1, + [240517] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(10932), 1, + ACTIONS(10077), 1, aux_sym_string_literal_token1, - ACTIONS(10934), 1, + ACTIONS(10079), 1, sym_escape_sequence, - ACTIONS(11409), 1, + ACTIONS(10350), 1, anon_sym_DQUOTE, - STATE(7674), 1, + STATE(6322), 1, aux_sym_string_literal_repeat1, - [285286] = 5, + [240533] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(3102), 1, - sym_field_declaration_list, - STATE(8806), 1, - sym_base_class_clause, - [285302] = 4, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + ACTIONS(10352), 1, + anon_sym_SEMI, + STATE(1726), 1, + sym_template_argument_list, + [240549] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9545), 1, - anon_sym_LBRACE, - STATE(4226), 1, - sym_compound_statement, - ACTIONS(9535), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [285316] = 5, + ACTIONS(10067), 1, + sym_identifier, + ACTIONS(10354), 1, + anon_sym_COMMA, + ACTIONS(10356), 1, + anon_sym_RBRACE, + STATE(6490), 1, + sym_enumerator, + [240565] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(10823), 1, + ACTIONS(10089), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11411), 1, + ACTIONS(10358), 1, anon_sym_GT2, - STATE(8037), 1, + STATE(6804), 1, aux_sym_template_argument_list_repeat1, - [285332] = 5, + [240581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, + ACTIONS(4080), 1, anon_sym_COLON_COLON, - ACTIONS(6432), 1, + ACTIONS(5950), 1, anon_sym_LT, - ACTIONS(11413), 1, + ACTIONS(10360), 1, anon_sym_SEMI, - STATE(2334), 1, + STATE(1726), 1, sym_template_argument_list, - [285348] = 5, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(11415), 1, - anon_sym_DQUOTE, - ACTIONS(11417), 1, - aux_sym_string_literal_token1, - ACTIONS(11419), 1, - sym_escape_sequence, - STATE(7983), 1, - aux_sym_string_literal_repeat1, - [285364] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_COLON, - ACTIONS(5963), 1, - anon_sym_LBRACE, - STATE(3771), 1, - sym_field_declaration_list, - STATE(8746), 1, - sym_base_class_clause, - [285380] = 5, + [240597] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(10833), 1, - sym_identifier, - STATE(1486), 1, - sym_template_parameter_list, - STATE(3328), 1, - sym_template_type, - [285396] = 5, - ACTIONS(9067), 1, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(10089), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10362), 1, + anon_sym_GT2, + STATE(6609), 1, + aux_sym_template_argument_list_repeat1, + [240613] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(11421), 1, - anon_sym_DQUOTE, - ACTIONS(11423), 1, + ACTIONS(10077), 1, aux_sym_string_literal_token1, - ACTIONS(11425), 1, + ACTIONS(10079), 1, sym_escape_sequence, - STATE(7899), 1, + ACTIONS(10364), 1, + anon_sym_DQUOTE, + STATE(6322), 1, aux_sym_string_literal_repeat1, - [285412] = 5, - ACTIONS(9067), 1, + [240629] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(10932), 1, + ACTIONS(10077), 1, aux_sym_string_literal_token1, - ACTIONS(10934), 1, + ACTIONS(10079), 1, sym_escape_sequence, - ACTIONS(11427), 1, + ACTIONS(10366), 1, anon_sym_DQUOTE, - STATE(7674), 1, + STATE(6322), 1, aux_sym_string_literal_repeat1, - [285428] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11429), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [285442] = 5, - ACTIONS(9067), 1, + [240645] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(11431), 1, - anon_sym_DQUOTE, - ACTIONS(11433), 1, + ACTIONS(10077), 1, aux_sym_string_literal_token1, - ACTIONS(11435), 1, + ACTIONS(10079), 1, sym_escape_sequence, - STATE(7989), 1, + ACTIONS(10368), 1, + anon_sym_DQUOTE, + STATE(6322), 1, aux_sym_string_literal_repeat1, - [285458] = 4, + [240661] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9541), 1, + ACTIONS(5320), 1, + anon_sym_COLON, + ACTIONS(8056), 1, anon_sym_LBRACE, - STATE(3566), 1, - sym_compound_statement, - ACTIONS(9535), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [285472] = 5, + STATE(4805), 1, + sym_field_declaration_list, + STATE(7056), 1, + sym_base_class_clause, + [240677] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(10370), 1, anon_sym_COMMA, - ACTIONS(10823), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11437), 1, - anon_sym_GT2, - STATE(8221), 1, - aux_sym_template_argument_list_repeat1, - [285488] = 4, + STATE(6348), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(10373), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [240691] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2016), 1, + anon_sym_LBRACE, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + STATE(2634), 1, + sym_argument_list, + STATE(2726), 1, + sym_initializer_list, + [240707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11439), 1, + ACTIONS(10375), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6325), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [285502] = 5, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(10932), 1, - aux_sym_string_literal_token1, - ACTIONS(10934), 1, - sym_escape_sequence, - ACTIONS(11441), 1, - anon_sym_DQUOTE, - STATE(7674), 1, - aux_sym_string_literal_repeat1, - [285518] = 4, + aux_sym_type_definition_repeat1, + [240721] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11443), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [285532] = 5, - ACTIONS(9067), 1, + ACTIONS(10151), 1, + anon_sym_COMMA, + STATE(6401), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(10377), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [240735] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(11445), 1, + ACTIONS(10379), 1, anon_sym_DQUOTE, - ACTIONS(11447), 1, + ACTIONS(10381), 1, aux_sym_string_literal_token1, - ACTIONS(11449), 1, + ACTIONS(10383), 1, sym_escape_sequence, - STATE(7995), 1, + STATE(6355), 1, aux_sym_string_literal_repeat1, - [285548] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10999), 1, - anon_sym_COMMA, - ACTIONS(11451), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11453), 1, - anon_sym_LBRACE, - STATE(8157), 1, - aux_sym_base_class_clause_repeat1, - [285564] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(10823), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11455), 1, - anon_sym_GT2, - STATE(8025), 1, - aux_sym_template_argument_list_repeat1, - [285580] = 4, + [240751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11457), 1, + ACTIONS(10385), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(4344), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [285594] = 5, - ACTIONS(9067), 1, + aux_sym_type_definition_repeat1, + [240765] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 1, + anon_sym_LT, + ACTIONS(10065), 1, + sym_identifier, + STATE(990), 1, + sym_template_parameter_list, + STATE(2573), 1, + sym_template_type, + [240781] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(10932), 1, + ACTIONS(10077), 1, aux_sym_string_literal_token1, - ACTIONS(10934), 1, + ACTIONS(10079), 1, sym_escape_sequence, - ACTIONS(11459), 1, + ACTIONS(10387), 1, anon_sym_DQUOTE, - STATE(7674), 1, + STATE(6322), 1, aux_sym_string_literal_repeat1, - [285610] = 5, - ACTIONS(9067), 1, + [240797] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, - anon_sym_LPAREN, - ACTIONS(11461), 1, - aux_sym_preproc_include_token2, - ACTIONS(11463), 1, - sym_preproc_arg, - STATE(8736), 1, - sym_preproc_params, - [285626] = 5, - ACTIONS(9067), 1, + ACTIONS(9014), 1, + anon_sym_LBRACE, + STATE(1739), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [240811] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(11465), 1, + ACTIONS(10389), 1, anon_sym_DQUOTE, - ACTIONS(11467), 1, + ACTIONS(10391), 1, aux_sym_string_literal_token1, - ACTIONS(11469), 1, + ACTIONS(10393), 1, sym_escape_sequence, - STATE(7775), 1, + STATE(6344), 1, aux_sym_string_literal_repeat1, - [285642] = 4, + [240827] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11471), 1, + ACTIONS(9022), 1, + anon_sym_LBRACE, + STATE(4013), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [240841] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10395), 4, anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [285656] = 4, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [240851] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9016), 1, + anon_sym_LBRACE, + STATE(3180), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [240865] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10397), 1, + anon_sym_EQ, + STATE(5501), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [240879] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11473), 1, + ACTIONS(9786), 1, anon_sym_EQ, - STATE(7629), 2, + STATE(6273), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [285670] = 4, + [240893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, + ACTIONS(6663), 1, anon_sym___attribute__, - ACTIONS(11475), 1, + ACTIONS(10399), 1, anon_sym_SEMI, - STATE(5422), 2, + STATE(6388), 2, sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [285684] = 5, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(11477), 1, - anon_sym_DQUOTE, - ACTIONS(11479), 1, - aux_sym_string_literal_token1, - ACTIONS(11481), 1, - sym_escape_sequence, - STATE(8006), 1, - aux_sym_string_literal_repeat1, - [285700] = 3, + aux_sym_type_definition_repeat1, + [240907] = 4, ACTIONS(3), 1, sym_comment, - STATE(7239), 1, - sym_access_specifier, - ACTIONS(10991), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [285712] = 5, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(10401), 1, + anon_sym_SEMI, + STATE(4344), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [240921] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10914), 1, - anon_sym_LPAREN2, - ACTIONS(11483), 1, + ACTIONS(10085), 1, + anon_sym_COMMA, + ACTIONS(10403), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10405), 1, anon_sym_LBRACE, - STATE(2348), 1, - sym_requirement_seq, - STATE(8488), 1, - sym_requires_parameter_list, - [285728] = 4, + STATE(6482), 1, + aux_sym_base_class_clause_repeat1, + [240937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym___attribute__, - ACTIONS(11485), 1, - anon_sym_SEMI, - STATE(5422), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat3, - [285742] = 5, - ACTIONS(9067), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(1740), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [240951] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(11487), 1, + ACTIONS(10407), 1, anon_sym_DQUOTE, - ACTIONS(11489), 1, + ACTIONS(10409), 1, aux_sym_string_literal_token1, - ACTIONS(11491), 1, + ACTIONS(10411), 1, sym_escape_sequence, - STATE(7972), 1, + STATE(6369), 1, aux_sym_string_literal_repeat1, - [285758] = 5, - ACTIONS(9067), 1, + [240967] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10169), 1, + anon_sym_LPAREN2, + ACTIONS(10413), 1, + anon_sym_LBRACE, + STATE(5665), 1, + sym_requirement_seq, + STATE(7095), 1, + sym_requires_parameter_list, + [240983] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(10932), 1, + ACTIONS(10077), 1, aux_sym_string_literal_token1, - ACTIONS(10934), 1, + ACTIONS(10079), 1, sym_escape_sequence, - ACTIONS(11493), 1, + ACTIONS(10415), 1, anon_sym_DQUOTE, - STATE(7674), 1, + STATE(6322), 1, aux_sym_string_literal_repeat1, - [285774] = 4, + [240999] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11495), 1, - anon_sym_COMMA, - ACTIONS(11497), 1, - anon_sym_GT2, - STATE(8087), 1, - aux_sym_template_parameter_list_repeat1, - [285787] = 4, + ACTIONS(8303), 1, + anon_sym_LBRACE, + ACTIONS(10169), 1, + anon_sym_LPAREN2, + STATE(2700), 1, + sym_requirement_seq, + STATE(7166), 1, + sym_requires_parameter_list, + [241015] = 5, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(10183), 1, + anon_sym_LPAREN, + ACTIONS(10417), 1, + aux_sym_preproc_include_token2, + ACTIONS(10419), 1, + sym_preproc_arg, + STATE(6973), 1, + sym_preproc_params, + [241031] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11499), 1, + ACTIONS(4535), 1, + anon_sym_LT, + ACTIONS(10065), 1, sym_identifier, - STATE(3328), 1, + STATE(987), 1, + sym_template_parameter_list, + STATE(2573), 1, sym_template_type, - STATE(3409), 1, - sym_template_function, - [285800] = 4, + [241047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(11501), 1, + ACTIONS(10395), 4, anon_sym_SEMI, - STATE(8223), 1, - aux_sym_declaration_repeat1, - [285813] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11503), 1, - anon_sym_GT2, - STATE(8013), 1, - aux_sym_template_argument_list_repeat1, - [285826] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11505), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [285839] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11507), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [285852] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11509), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [285865] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7733), 1, - anon_sym_COMMA, - ACTIONS(11511), 1, - anon_sym_RPAREN, - STATE(8016), 1, - aux_sym_argument_list_repeat1, - [285878] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11513), 1, - anon_sym_COMMA, - ACTIONS(11515), 1, - anon_sym_RBRACE, - STATE(8146), 1, - aux_sym_enumerator_list_repeat1, - [285891] = 4, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [241057] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8028), 1, - anon_sym_RPAREN, - ACTIONS(11517), 1, - anon_sym_COMMA, - STATE(8016), 1, - aux_sym_argument_list_repeat1, - [285904] = 4, - ACTIONS(3), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(10421), 1, + anon_sym_SEMI, + STATE(6224), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [241071] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(7759), 1, - anon_sym_COMMA, - ACTIONS(7761), 1, - anon_sym_RBRACE, - STATE(8133), 1, - aux_sym_initializer_list_repeat1, - [285917] = 4, + ACTIONS(10077), 1, + aux_sym_string_literal_token1, + ACTIONS(10079), 1, + sym_escape_sequence, + ACTIONS(10423), 1, + anon_sym_DQUOTE, + STATE(6322), 1, + aux_sym_string_literal_repeat1, + [241087] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7825), 1, - anon_sym_COMMA, - ACTIONS(11520), 1, - anon_sym_RBRACK, - STATE(8176), 1, - aux_sym_lambda_capture_specifier_repeat1, - [285930] = 4, - ACTIONS(3), 1, + ACTIONS(5320), 1, + anon_sym_COLON, + ACTIONS(8056), 1, + anon_sym_LBRACE, + STATE(4832), 1, + sym_field_declaration_list, + STATE(7077), 1, + sym_base_class_clause, + [241103] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(7733), 1, - anon_sym_COMMA, - ACTIONS(7757), 1, - anon_sym_RPAREN, - STATE(8207), 1, - aux_sym_argument_list_repeat1, - [285943] = 4, + ACTIONS(10183), 1, + anon_sym_LPAREN, + ACTIONS(10425), 1, + aux_sym_preproc_include_token2, + ACTIONS(10427), 1, + sym_preproc_arg, + STATE(7120), 1, + sym_preproc_params, + [241119] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7755), 1, - anon_sym_RBRACE, - ACTIONS(11522), 1, - anon_sym_COMMA, - STATE(8020), 1, - aux_sym_initializer_list_repeat1, - [285956] = 4, + ACTIONS(9074), 1, + anon_sym_LBRACE, + STATE(2686), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [241133] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11525), 1, + ACTIONS(10067), 1, sym_identifier, - STATE(3328), 1, - sym_template_type, - STATE(4111), 1, - sym_template_function, - [285969] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11527), 1, + ACTIONS(10429), 1, anon_sym_COMMA, - ACTIONS(11529), 1, - anon_sym_RBRACK_RBRACK, - STATE(8193), 1, - aux_sym_attribute_declaration_repeat1, - [285982] = 4, + ACTIONS(10431), 1, + anon_sym_RBRACE, + STATE(6575), 1, + sym_enumerator, + [241149] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11531), 1, - anon_sym_GT2, - STATE(8026), 1, - aux_sym_template_argument_list_repeat1, - [285995] = 4, - ACTIONS(3), 1, + ACTIONS(3571), 1, + anon_sym_LBRACE, + ACTIONS(5364), 1, + anon_sym_LPAREN2, + STATE(2634), 1, + sym_argument_list, + STATE(3882), 1, + sym_initializer_list, + [241165] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11533), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [286008] = 4, - ACTIONS(3), 1, + ACTIONS(10077), 1, + aux_sym_string_literal_token1, + ACTIONS(10079), 1, + sym_escape_sequence, + ACTIONS(10433), 1, + anon_sym_DQUOTE, + STATE(6322), 1, + aux_sym_string_literal_repeat1, + [241181] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11535), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [286021] = 4, + ACTIONS(10183), 1, + anon_sym_LPAREN, + ACTIONS(10435), 1, + aux_sym_preproc_include_token2, + ACTIONS(10437), 1, + sym_preproc_arg, + STATE(6890), 1, + sym_preproc_params, + [241197] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(11537), 1, + ACTIONS(10089), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10439), 1, anon_sym_GT2, - STATE(8078), 1, + STATE(6743), 1, aux_sym_template_argument_list_repeat1, - [286034] = 4, + [241213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, - sym_identifier, - ACTIONS(11539), 1, - anon_sym_RBRACE, - STATE(8783), 1, - sym_enumerator, - [286047] = 4, + STATE(5924), 1, + sym_access_specifier, + ACTIONS(10095), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [241225] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11541), 1, - anon_sym_RPAREN, - ACTIONS(11543), 1, - anon_sym_COLON, - STATE(8250), 1, - sym_gnu_asm_clobber_list, - [286060] = 4, + ACTIONS(9014), 1, + anon_sym_LBRACE, + STATE(1742), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [241239] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11545), 1, - anon_sym_RPAREN, - ACTIONS(11547), 1, + ACTIONS(5320), 1, anon_sym_COLON, - STATE(8256), 1, - sym_gnu_asm_input_operand_list, - [286073] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11549), 1, - anon_sym_COMMA, - ACTIONS(11552), 1, - anon_sym_RBRACE, - STATE(8030), 1, - aux_sym_enumerator_list_repeat1, - [286086] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11554), 1, - anon_sym_COMMA, - ACTIONS(11556), 1, - anon_sym_RPAREN, - STATE(8095), 1, - aux_sym_parameter_list_repeat1, - [286099] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11558), 1, - anon_sym_GT2, - STATE(8222), 1, - aux_sym_template_argument_list_repeat1, - [286112] = 4, - ACTIONS(3), 1, + ACTIONS(5343), 1, + anon_sym_LBRACE, + STATE(4954), 1, + sym_field_declaration_list, + STATE(6909), 1, + sym_base_class_clause, + [241255] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(11560), 1, - sym_identifier, - STATE(3328), 1, - sym_template_type, - STATE(3409), 1, - sym_template_function, - [286125] = 4, + ACTIONS(10441), 1, + anon_sym_DQUOTE, + ACTIONS(10443), 1, + aux_sym_string_literal_token1, + ACTIONS(10445), 1, + sym_escape_sequence, + STATE(6231), 1, + aux_sym_string_literal_repeat1, + [241271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11562), 1, - sym_identifier, - STATE(3328), 1, - sym_template_type, - STATE(3409), 1, - sym_template_function, - [286138] = 4, - ACTIONS(3), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(10447), 1, + anon_sym_SEMI, + STATE(4344), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [241285] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11564), 1, - anon_sym_GT2, - STATE(8038), 1, - aux_sym_template_argument_list_repeat1, - [286151] = 4, + ACTIONS(10183), 1, + anon_sym_LPAREN, + ACTIONS(10449), 1, + aux_sym_preproc_include_token2, + ACTIONS(10451), 1, + sym_preproc_arg, + STATE(7090), 1, + sym_preproc_params, + [241301] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(10453), 1, anon_sym_COMMA, - ACTIONS(11566), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [286164] = 4, + STATE(6315), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(10455), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [241315] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11568), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [286177] = 4, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(10457), 1, + anon_sym_SEMI, + STATE(6449), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [241329] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(10283), 1, anon_sym_COMMA, - ACTIONS(11570), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [286190] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9625), 1, - anon_sym_COLON, - ACTIONS(9655), 1, + STATE(6310), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(10459), 2, anon_sym_RPAREN, - STATE(8217), 1, - sym_gnu_asm_output_operand_list, - [286203] = 4, + anon_sym_COLON, + [241343] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(11572), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(10461), 1, anon_sym_SEMI, - STATE(8084), 1, - aux_sym_declaration_repeat1, - [286216] = 4, - ACTIONS(3), 1, + STATE(4344), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [241357] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(11574), 1, - sym_identifier, - STATE(3328), 1, - sym_template_type, - STATE(4346), 1, - sym_template_function, - [286229] = 3, + ACTIONS(10463), 1, + anon_sym_DQUOTE, + ACTIONS(10465), 1, + aux_sym_string_literal_token1, + ACTIONS(10467), 1, + sym_escape_sequence, + STATE(6375), 1, + aux_sym_string_literal_repeat1, + [241373] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11576), 1, - anon_sym_catch, - STATE(546), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [286240] = 4, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(10469), 1, + anon_sym_SEMI, + STATE(6237), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [241387] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11578), 1, - sym_identifier, - STATE(3328), 1, - sym_template_type, - STATE(3485), 1, - sym_template_function, - [286253] = 4, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(10471), 1, + anon_sym_SEMI, + STATE(6219), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [241401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11580), 1, - sym_identifier, - STATE(3328), 1, - sym_template_type, - STATE(3409), 1, - sym_template_function, - [286266] = 4, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(10473), 1, + anon_sym_SEMI, + STATE(6353), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [241415] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10999), 1, - anon_sym_COMMA, - ACTIONS(11453), 1, + ACTIONS(3623), 1, anon_sym_LBRACE, - STATE(8048), 1, - aux_sym_base_class_clause_repeat1, - [286279] = 3, + ACTIONS(5673), 1, + anon_sym_LPAREN2, + STATE(3391), 1, + sym_argument_list, + STATE(4368), 1, + sym_initializer_list, + [241431] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11582), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11584), 2, - anon_sym_COMMA, + ACTIONS(5320), 1, + anon_sym_COLON, + ACTIONS(5548), 1, anon_sym_LBRACE, - [286290] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7650), 1, - anon_sym_COMMA, - ACTIONS(11586), 1, - anon_sym_RPAREN, - STATE(8277), 1, - aux_sym_generic_expression_repeat1, - [286303] = 4, + STATE(2921), 1, + sym_field_declaration_list, + STATE(7133), 1, + sym_base_class_clause, + [241447] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11584), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(11588), 1, - anon_sym_COMMA, - STATE(8048), 1, - aux_sym_base_class_clause_repeat1, - [286316] = 4, + ACTIONS(9297), 1, + anon_sym_COLON, + STATE(6594), 1, + sym_compound_statement, + STATE(6921), 1, + sym_field_initializer_list, + [241463] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(10475), 1, anon_sym_COMMA, - ACTIONS(11591), 1, - anon_sym_GT2, - STATE(8056), 1, - aux_sym_template_argument_list_repeat1, - [286329] = 4, + STATE(6401), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(10478), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [241477] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(11593), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [286342] = 4, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10480), 1, + anon_sym_EQ, + STATE(5501), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [241491] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11595), 1, - anon_sym_RPAREN, - ACTIONS(11597), 1, + ACTIONS(5320), 1, anon_sym_COLON, - STATE(8982), 1, - sym_gnu_asm_goto_list, - [286355] = 4, + ACTIONS(5343), 1, + anon_sym_LBRACE, + STATE(4934), 1, + sym_field_declaration_list, + STATE(6908), 1, + sym_base_class_clause, + [241507] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9625), 1, + ACTIONS(5320), 1, anon_sym_COLON, - ACTIONS(9637), 1, - anon_sym_RPAREN, - STATE(8188), 1, - sym_gnu_asm_output_operand_list, - [286368] = 4, + ACTIONS(6280), 1, + anon_sym_LBRACE, + STATE(3617), 1, + sym_field_declaration_list, + STATE(6903), 1, + sym_base_class_clause, + [241523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, - anon_sym_LPAREN2, - ACTIONS(11601), 1, - anon_sym_constexpr, - STATE(262), 1, - sym_condition_clause, - [286381] = 4, + STATE(5935), 1, + sym_access_specifier, + ACTIONS(10095), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [241535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10999), 1, - anon_sym_COMMA, - ACTIONS(11453), 1, + ACTIONS(9022), 1, anon_sym_LBRACE, - STATE(8157), 1, - aux_sym_base_class_clause_repeat1, - [286394] = 4, + STATE(4004), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [241549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(11603), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(10482), 1, anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [286407] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11605), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [286420] = 4, + STATE(4344), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [241563] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(10067), 1, + sym_identifier, + ACTIONS(10484), 1, anon_sym_COMMA, - ACTIONS(11607), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [286433] = 4, + ACTIONS(10486), 1, + anon_sym_RBRACE, + STATE(6824), 1, + sym_enumerator, + [241579] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11609), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [286446] = 4, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10488), 1, + anon_sym_EQ, + STATE(6361), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [241593] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(11611), 1, + ACTIONS(10089), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10490), 1, anon_sym_GT2, - STATE(8127), 1, + STATE(6512), 1, aux_sym_template_argument_list_repeat1, - [286459] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11613), 1, - sym_identifier, - STATE(3298), 1, - sym_template_type, - STATE(4346), 1, - sym_template_function, - [286472] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11617), 1, - anon_sym_RPAREN, - ACTIONS(11615), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [286483] = 4, + [241609] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11619), 1, - anon_sym_GT2, - STATE(8289), 1, - aux_sym_template_argument_list_repeat1, - [286496] = 4, + ACTIONS(5320), 1, + anon_sym_COLON, + ACTIONS(5469), 1, + anon_sym_LBRACE, + STATE(2540), 1, + sym_field_declaration_list, + STATE(6874), 1, + sym_base_class_clause, + [241625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11621), 1, - anon_sym_COMMA, - ACTIONS(11623), 1, - anon_sym_RPAREN, - STATE(8165), 1, - aux_sym_preproc_params_repeat1, - [286509] = 4, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9722), 1, + anon_sym_EQ, + STATE(6424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [241639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, + ACTIONS(9054), 1, + anon_sym_LBRACE, + STATE(3532), 1, + sym_compound_statement, + ACTIONS(9032), 2, anon_sym_LPAREN2, - ACTIONS(11625), 1, - anon_sym_constexpr, - STATE(295), 1, - sym_condition_clause, - [286522] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11554), 1, - anon_sym_COMMA, - ACTIONS(11627), 1, - anon_sym_RPAREN, - STATE(8224), 1, - aux_sym_parameter_list_repeat1, - [286535] = 4, + anon_sym_LBRACK, + [241653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9035), 1, - anon_sym_COMMA, - ACTIONS(11629), 1, - anon_sym_RPAREN, - STATE(8108), 1, - aux_sym_preproc_argument_list_repeat1, - [286548] = 4, + STATE(5941), 1, + sym_access_specifier, + ACTIONS(10095), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [241665] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(10085), 1, anon_sym_COMMA, - ACTIONS(11631), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [286561] = 4, + ACTIONS(10492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10494), 1, + anon_sym_LBRACE, + STATE(6667), 1, + aux_sym_base_class_clause_repeat1, + [241681] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11633), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [286574] = 4, + ACTIONS(10496), 1, + anon_sym_SEMI, + ACTIONS(10498), 1, + anon_sym_DASH_GT, + ACTIONS(10500), 1, + anon_sym_noexcept, + STATE(7940), 1, + sym_trailing_return_type, + [241697] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11543), 1, - anon_sym_COLON, - ACTIONS(11635), 1, - anon_sym_RPAREN, - STATE(8179), 1, - sym_gnu_asm_clobber_list, - [286587] = 4, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10502), 1, + anon_sym_EQ, + STATE(5501), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [241711] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11637), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [286600] = 4, - ACTIONS(3), 1, + ACTIONS(9064), 1, + anon_sym_LBRACE, + STATE(3741), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [241725] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(11547), 1, - anon_sym_COLON, - ACTIONS(11639), 1, - anon_sym_RPAREN, - STATE(8186), 1, - sym_gnu_asm_input_operand_list, - [286613] = 3, + ACTIONS(10504), 1, + anon_sym_DQUOTE, + ACTIONS(10506), 1, + aux_sym_string_literal_token1, + ACTIONS(10508), 1, + sym_escape_sequence, + STATE(6440), 1, + aux_sym_string_literal_repeat1, + [241741] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10823), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11641), 2, - anon_sym_COMMA, - anon_sym_GT2, - [286624] = 4, - ACTIONS(3), 1, + ACTIONS(9056), 1, + anon_sym_LBRACE, + STATE(3389), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [241755] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11643), 1, - anon_sym_GT2, - STATE(8067), 1, - aux_sym_template_argument_list_repeat1, - [286637] = 3, - ACTIONS(3), 1, + ACTIONS(10077), 1, + aux_sym_string_literal_token1, + ACTIONS(10079), 1, + sym_escape_sequence, + ACTIONS(10510), 1, + anon_sym_DQUOTE, + STATE(6322), 1, + aux_sym_string_literal_repeat1, + [241771] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(11645), 1, - anon_sym_catch, - STATE(2589), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [286648] = 4, - ACTIONS(3), 1, + ACTIONS(10512), 1, + anon_sym_DQUOTE, + ACTIONS(10514), 1, + aux_sym_string_literal_token1, + ACTIONS(10516), 1, + sym_escape_sequence, + STATE(6338), 1, + aux_sym_string_literal_repeat1, + [241787] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(11647), 1, - sym_identifier, - STATE(3328), 1, - sym_template_type, - STATE(3485), 1, - sym_template_function, - [286661] = 4, + ACTIONS(10183), 1, + anon_sym_LPAREN, + ACTIONS(10518), 1, + aux_sym_preproc_include_token2, + ACTIONS(10520), 1, + sym_preproc_arg, + STATE(7115), 1, + sym_preproc_params, + [241803] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11527), 1, - anon_sym_COMMA, - ACTIONS(11649), 1, - anon_sym_RBRACK_RBRACK, - STATE(8163), 1, - aux_sym_attribute_declaration_repeat1, - [286674] = 4, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10522), 1, + anon_sym_EQ, + STATE(5501), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [241817] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7654), 1, - anon_sym_COMMA, - ACTIONS(11651), 1, - anon_sym_RBRACK, - STATE(8103), 1, - aux_sym_subscript_argument_list_repeat1, - [286687] = 4, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(10524), 1, + sym_identifier, + STATE(3283), 1, + sym_template_method, + STATE(7146), 1, + sym_operator_name, + [241833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11653), 1, - anon_sym_COMMA, - ACTIONS(11656), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [286700] = 4, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9748), 1, + anon_sym_EQ, + STATE(6460), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [241847] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(11658), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + ACTIONS(10526), 1, anon_sym_SEMI, - STATE(8239), 1, - aux_sym_declaration_repeat1, - [286713] = 4, + STATE(1726), 1, + sym_template_argument_list, + [241863] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(11660), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(10528), 1, anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [286726] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11543), 1, - anon_sym_COLON, - ACTIONS(11662), 1, - anon_sym_RPAREN, - STATE(8051), 1, - sym_gnu_asm_clobber_list, - [286739] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11597), 1, - anon_sym_COLON, - ACTIONS(11664), 1, - anon_sym_RPAREN, - STATE(8973), 1, - sym_gnu_asm_goto_list, - [286752] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11666), 1, - anon_sym_catch, - STATE(770), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [286763] = 4, + STATE(4344), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [241877] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(11668), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(10530), 1, anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [286776] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11670), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [286785] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11672), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [286794] = 4, + STATE(6297), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [241891] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11674), 1, - anon_sym_COMMA, - ACTIONS(11677), 1, - anon_sym_GT2, - STATE(8087), 1, - aux_sym_template_parameter_list_repeat1, - [286807] = 4, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9774), 1, + anon_sym_EQ, + STATE(6301), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [241905] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(11679), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(10532), 1, anon_sym_SEMI, - STATE(8322), 1, - aux_sym_declaration_repeat1, - [286820] = 4, + STATE(6393), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [241919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11681), 1, - anon_sym_COMMA, - ACTIONS(11683), 1, - anon_sym_RBRACE, - STATE(8178), 1, - aux_sym_enumerator_list_repeat1, - [286833] = 4, + ACTIONS(9044), 1, + anon_sym_LBRACE, + STATE(5260), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [241933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11685), 1, - anon_sym_COMMA, - ACTIONS(11688), 1, - anon_sym_RPAREN, - STATE(8090), 1, - aux_sym_requires_parameter_list_repeat1, - [286846] = 4, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(10534), 1, + anon_sym_SEMI, + STATE(4344), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [241947] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, + ACTIONS(10067), 1, sym_identifier, - ACTIONS(11690), 1, + ACTIONS(10536), 1, + anon_sym_COMMA, + ACTIONS(10538), 1, anon_sym_RBRACE, - STATE(8783), 1, + STATE(6477), 1, sym_enumerator, - [286859] = 3, + [241963] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11692), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11694), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [286870] = 4, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(3550), 1, + sym_parameter_list, + STATE(5645), 1, + sym__function_declarator_seq, + [241979] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11696), 1, - anon_sym_COMMA, - ACTIONS(11698), 1, - anon_sym_LBRACE, - STATE(8101), 1, - aux_sym_field_initializer_list_repeat1, - [286883] = 3, + ACTIONS(4535), 1, + anon_sym_LT, + ACTIONS(10065), 1, + sym_identifier, + STATE(992), 1, + sym_template_parameter_list, + STATE(2573), 1, + sym_template_type, + [241995] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, - anon_sym_COLON_COLON, - ACTIONS(6428), 2, - anon_sym_LPAREN2, + ACTIONS(5320), 1, + anon_sym_COLON, + ACTIONS(5447), 1, anon_sym_LBRACE, - [286894] = 4, + STATE(2630), 1, + sym_field_declaration_list, + STATE(7168), 1, + sym_base_class_clause, + [242011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11700), 1, + ACTIONS(9585), 1, anon_sym_COMMA, - ACTIONS(11703), 1, - anon_sym_RPAREN, - STATE(8095), 1, - aux_sym_parameter_list_repeat1, - [286907] = 3, + STATE(6306), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(10540), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [242025] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11705), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11707), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [286918] = 4, - ACTIONS(3), 1, + ACTIONS(2000), 1, + anon_sym_operator, + ACTIONS(10542), 1, + sym_identifier, + STATE(3375), 1, + sym_template_method, + STATE(7004), 1, + sym_operator_name, + [242041] = 5, + ACTIONS(8584), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11709), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [286931] = 3, + ACTIONS(10077), 1, + aux_sym_string_literal_token1, + ACTIONS(10079), 1, + sym_escape_sequence, + ACTIONS(10544), 1, + anon_sym_DQUOTE, + STATE(6322), 1, + aux_sym_string_literal_repeat1, + [242057] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11645), 1, - anon_sym_catch, - STATE(2588), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [286942] = 4, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + ACTIONS(10546), 1, + anon_sym_SEMI, + STATE(1726), 1, + sym_template_argument_list, + [242073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11711), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [286955] = 4, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(10548), 1, + anon_sym_SEMI, + STATE(4344), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [242087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11713), 1, - anon_sym_COMMA, - ACTIONS(11715), 1, - anon_sym_RPAREN, - STATE(8197), 1, - aux_sym_throw_specifier_repeat1, - [286968] = 4, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(10550), 1, + anon_sym_SEMI, + STATE(4344), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [242101] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11717), 1, - anon_sym_COMMA, - ACTIONS(11720), 1, + ACTIONS(4645), 1, anon_sym_LBRACE, - STATE(8101), 1, - aux_sym_field_initializer_list_repeat1, - [286981] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11722), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [286994] = 4, + ACTIONS(10143), 1, + anon_sym_COLON_COLON, + ACTIONS(10552), 1, + anon_sym_EQ, + STATE(353), 1, + sym_declaration_list, + [242117] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8116), 1, - anon_sym_RBRACK, - ACTIONS(11724), 1, - anon_sym_COMMA, - STATE(8103), 1, - aux_sym_subscript_argument_list_repeat1, - [287007] = 3, + ACTIONS(10169), 1, + anon_sym_LPAREN2, + ACTIONS(10554), 1, + anon_sym_LBRACE, + STATE(1737), 1, + sym_requirement_seq, + STATE(7027), 1, + sym_requires_parameter_list, + [242133] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11576), 1, - anon_sym_catch, - STATE(686), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [287018] = 4, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(10556), 1, + anon_sym_SEMI, + STATE(6428), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [242147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7775), 1, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + STATE(6986), 1, + sym_argument_list, + ACTIONS(10558), 2, anon_sym_COMMA, - ACTIONS(7777), 1, - anon_sym_RBRACE, - STATE(8156), 1, - aux_sym_initializer_list_repeat1, - [287031] = 4, + anon_sym_RBRACK_RBRACK, + [242161] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11727), 1, - anon_sym_GT2, - STATE(8097), 1, - aux_sym_template_argument_list_repeat1, - [287044] = 4, + ACTIONS(8314), 1, + anon_sym_LBRACE, + ACTIONS(10169), 1, + anon_sym_LPAREN2, + STATE(3482), 1, + sym_requirement_seq, + STATE(6934), 1, + sym_requires_parameter_list, + [242177] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, - sym_identifier, - STATE(3328), 1, - sym_template_type, - STATE(3409), 1, - sym_template_function, - [287057] = 4, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(10560), 1, + anon_sym_SEMI, + STATE(4344), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [242191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9289), 1, - anon_sym_RPAREN, - ACTIONS(11731), 1, - anon_sym_COMMA, - STATE(8108), 1, - aux_sym_preproc_argument_list_repeat1, - [287070] = 4, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(11734), 1, - aux_sym_preproc_include_token2, - ACTIONS(11736), 1, + ACTIONS(9044), 1, + anon_sym_LBRACE, + STATE(5341), 1, + sym_compound_statement, + ACTIONS(9032), 2, anon_sym_LPAREN2, - STATE(9545), 1, - sym_preproc_argument_list, - [287083] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7733), 1, - anon_sym_COMMA, - ACTIONS(11738), 1, - anon_sym_RPAREN, - STATE(8016), 1, - aux_sym_argument_list_repeat1, - [287096] = 4, + anon_sym_LBRACK, + [242205] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11740), 1, - anon_sym_COMMA, - ACTIONS(11743), 1, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + ACTIONS(10562), 1, anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [287109] = 4, + STATE(1726), 1, + sym_template_argument_list, + [242221] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11745), 1, - sym_identifier, - STATE(3328), 1, - sym_template_type, - STATE(3409), 1, - sym_template_function, - [287122] = 4, + ACTIONS(8325), 1, + anon_sym_LBRACE, + ACTIONS(10169), 1, + anon_sym_LPAREN2, + STATE(4017), 1, + sym_requirement_seq, + STATE(6897), 1, + sym_requires_parameter_list, + [242237] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(11747), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [287135] = 4, + ACTIONS(10089), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10564), 1, + anon_sym_GT2, + STATE(6834), 1, + aux_sym_template_argument_list_repeat1, + [242253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11749), 1, - anon_sym_COMMA, - ACTIONS(11751), 1, - anon_sym_RPAREN, - STATE(8090), 1, - aux_sym_requires_parameter_list_repeat1, - [287148] = 3, + ACTIONS(9044), 1, + anon_sym_LBRACE, + STATE(5296), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [242267] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11755), 1, - anon_sym_COLON_COLON, - ACTIONS(11753), 2, - anon_sym_SEMI, + ACTIONS(9074), 1, anon_sym_LBRACE, - [287159] = 4, + STATE(2735), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [242281] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11543), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(9297), 1, anon_sym_COLON, - ACTIONS(11757), 1, - anon_sym_RPAREN, - STATE(8425), 1, - sym_gnu_asm_clobber_list, - [287172] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11759), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [287181] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11759), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [287190] = 4, + STATE(6711), 1, + sym_compound_statement, + STATE(7006), 1, + sym_field_initializer_list, + [242297] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11547), 1, - anon_sym_COLON, - ACTIONS(11761), 1, - anon_sym_RPAREN, - STATE(8081), 1, - sym_gnu_asm_input_operand_list, - [287203] = 4, + ACTIONS(4643), 1, + anon_sym_LBRACE, + ACTIONS(10143), 1, + anon_sym_COLON_COLON, + ACTIONS(10566), 1, + anon_sym_EQ, + STATE(824), 1, + sym_declaration_list, + [242313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11763), 1, - sym_identifier, - STATE(3328), 1, - sym_template_type, - STATE(3409), 1, - sym_template_function, - [287216] = 4, + ACTIONS(10568), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [242323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11543), 1, - anon_sym_COLON, - ACTIONS(11765), 1, - anon_sym_RPAREN, - STATE(8082), 1, - sym_gnu_asm_clobber_list, - [287229] = 3, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(10570), 1, + anon_sym_SEMI, + STATE(6442), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [242337] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11767), 1, - sym_identifier, - ACTIONS(11769), 2, - anon_sym_COMMA, - anon_sym_GT2, - [287240] = 4, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10572), 1, + anon_sym_EQ, + STATE(5501), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [242351] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(11771), 1, + ACTIONS(6663), 1, + anon_sym___attribute__, + ACTIONS(10574), 1, anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [287253] = 4, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [242365] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11773), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [287266] = 4, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9790), 1, + anon_sym_EQ, + STATE(6417), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [242379] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11775), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [287279] = 4, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(9297), 1, + anon_sym_COLON, + STATE(6629), 1, + sym_compound_statement, + STATE(6945), 1, + sym_field_initializer_list, + [242395] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11777), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [287292] = 4, + ACTIONS(5320), 1, + anon_sym_COLON, + ACTIONS(5469), 1, + anon_sym_LBRACE, + STATE(2593), 1, + sym_field_declaration_list, + STATE(6862), 1, + sym_base_class_clause, + [242411] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11779), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [287305] = 4, + ACTIONS(5320), 1, + anon_sym_COLON, + ACTIONS(6280), 1, + anon_sym_LBRACE, + STATE(3621), 1, + sym_field_declaration_list, + STATE(6878), 1, + sym_base_class_clause, + [242427] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(11781), 1, + ACTIONS(10089), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10576), 1, anon_sym_GT2, - STATE(8078), 1, + STATE(6504), 1, aux_sym_template_argument_list_repeat1, - [287318] = 2, + [242443] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10216), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [287327] = 4, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(5950), 1, + anon_sym_LT, + ACTIONS(10578), 1, + anon_sym_SEMI, + STATE(1726), 1, + sym_template_argument_list, + [242459] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11783), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [287340] = 4, + ACTIONS(9022), 1, + anon_sym_LBRACE, + STATE(3930), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [242473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9625), 1, - anon_sym_COLON, - ACTIONS(9688), 1, + ACTIONS(10453), 1, + anon_sym_COMMA, + STATE(6390), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(10580), 2, anon_sym_RPAREN, - STATE(8071), 1, - sym_gnu_asm_output_operand_list, - [287353] = 4, + anon_sym_COLON, + [242487] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4942), 1, + ACTIONS(9074), 1, anon_sym_LBRACE, - ACTIONS(10987), 1, - anon_sym_COLON_COLON, - STATE(816), 1, - sym_declaration_list, - [287366] = 4, + STATE(2663), 1, + sym_compound_statement, + ACTIONS(9032), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [242501] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4260), 1, - anon_sym_RBRACE, - ACTIONS(11785), 1, - anon_sym_COMMA, - STATE(8020), 1, - aux_sym_initializer_list_repeat1, - [287379] = 4, + ACTIONS(10582), 1, + anon_sym_RPAREN, + ACTIONS(10584), 1, + anon_sym_COLON, + STATE(6536), 1, + sym_gnu_asm_input_operand_list, + [242514] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, + ACTIONS(10586), 1, anon_sym_COMMA, - ACTIONS(7763), 1, + ACTIONS(10588), 1, anon_sym_RPAREN, - STATE(8153), 1, - aux_sym_argument_list_repeat1, - [287392] = 4, - ACTIONS(3), 1, + STATE(6716), 1, + aux_sym_parameter_list_repeat1, + [242527] = 4, + ACTIONS(8584), 1, sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(11787), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [287405] = 4, + ACTIONS(10590), 1, + aux_sym_preproc_include_token2, + ACTIONS(10592), 1, + anon_sym_LPAREN2, + STATE(7239), 1, + sym_preproc_argument_list, + [242540] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11527), 1, + ACTIONS(10594), 1, anon_sym_COMMA, - ACTIONS(11789), 1, + ACTIONS(10596), 1, anon_sym_RBRACK_RBRACK, - STATE(8193), 1, + STATE(6485), 1, aux_sym_attribute_declaration_repeat1, - [287418] = 4, + [242553] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(10594), 1, anon_sym_COMMA, - ACTIONS(11791), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [287431] = 4, + ACTIONS(10598), 1, + anon_sym_RBRACK_RBRACK, + STATE(6818), 1, + aux_sym_attribute_declaration_repeat1, + [242566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(10600), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10602), 2, anon_sym_COMMA, - ACTIONS(11793), 1, - anon_sym_SEMI, - STATE(8123), 1, - aux_sym_declaration_repeat1, - [287444] = 4, + anon_sym_LBRACE, + [242577] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11795), 1, + ACTIONS(10604), 1, anon_sym_COMMA, - ACTIONS(11798), 1, - anon_sym_RBRACK, - STATE(8139), 1, - aux_sym_structured_binding_declarator_repeat1, - [287457] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11547), 1, - anon_sym_COLON, - ACTIONS(11800), 1, - anon_sym_RPAREN, - STATE(8069), 1, - sym_gnu_asm_input_operand_list, - [287470] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10950), 1, - sym_identifier, - ACTIONS(11802), 1, + ACTIONS(10606), 1, anon_sym_RBRACE, - STATE(8783), 1, - sym_enumerator, - [287483] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11804), 1, - sym_identifier, - STATE(2457), 1, - sym_template_type, - STATE(4111), 1, - sym_template_function, - [287496] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(11806), 1, - anon_sym_SEMI, - STATE(8135), 1, - aux_sym_declaration_repeat1, - [287509] = 3, + STATE(6499), 1, + aux_sym_enumerator_list_repeat1, + [242590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11808), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11810), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [287520] = 3, + ACTIONS(10608), 1, + anon_sym_LPAREN2, + ACTIONS(10610), 1, + anon_sym_constexpr, + STATE(159), 1, + sym_condition_clause, + [242603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11812), 1, + ACTIONS(10612), 1, anon_sym_catch, - STATE(2590), 2, + STATE(154), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [287531] = 4, + [242614] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11802), 1, - anon_sym_RBRACE, - ACTIONS(11814), 1, + ACTIONS(10085), 1, anon_sym_COMMA, - STATE(8030), 1, - aux_sym_enumerator_list_repeat1, - [287544] = 4, + ACTIONS(10270), 1, + anon_sym_LBRACE, + STATE(6534), 1, + aux_sym_base_class_clause_repeat1, + [242627] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11527), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(11816), 1, - anon_sym_RBRACK_RBRACK, - STATE(8241), 1, - aux_sym_attribute_declaration_repeat1, - [287557] = 4, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(11736), 1, - anon_sym_LPAREN2, - ACTIONS(11818), 1, - aux_sym_preproc_include_token2, - STATE(9545), 1, - sym_preproc_argument_list, - [287570] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10950), 1, - sym_identifier, - ACTIONS(11820), 1, - anon_sym_RBRACE, - STATE(8783), 1, - sym_enumerator, - [287583] = 4, + ACTIONS(10614), 1, + anon_sym_GT2, + STATE(6505), 1, + aux_sym_template_argument_list_repeat1, + [242640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10999), 1, + ACTIONS(10085), 1, anon_sym_COMMA, - ACTIONS(11131), 1, + ACTIONS(10270), 1, anon_sym_LBRACE, - STATE(8048), 1, + STATE(6687), 1, aux_sym_base_class_clause_repeat1, - [287596] = 4, + [242653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, - anon_sym_COMMA, - ACTIONS(11822), 1, - anon_sym_RPAREN, - STATE(8016), 1, - aux_sym_argument_list_repeat1, - [287609] = 4, + ACTIONS(10616), 1, + sym_identifier, + STATE(2573), 1, + sym_template_type, + STATE(2688), 1, + sym_template_function, + [242666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10999), 1, + ACTIONS(10618), 1, + sym_identifier, + STATE(2557), 1, + sym_template_function, + STATE(2573), 1, + sym_template_type, + [242679] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10594), 1, anon_sym_COMMA, - ACTIONS(11131), 1, - anon_sym_LBRACE, - STATE(8045), 1, - aux_sym_base_class_clause_repeat1, - [287622] = 4, + ACTIONS(10620), 1, + anon_sym_RBRACK_RBRACK, + STATE(6818), 1, + aux_sym_attribute_declaration_repeat1, + [242692] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, + ACTIONS(7198), 1, anon_sym_COMMA, - ACTIONS(7849), 1, + ACTIONS(7374), 1, anon_sym_RPAREN, - STATE(8016), 1, + STATE(6497), 1, aux_sym_argument_list_repeat1, - [287635] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10950), 1, - sym_identifier, - ACTIONS(11824), 1, - anon_sym_RBRACE, - STATE(8783), 1, - sym_enumerator, - [287648] = 4, + [242705] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10999), 1, - anon_sym_COMMA, - ACTIONS(11057), 1, + ACTIONS(4645), 1, anon_sym_LBRACE, - STATE(8228), 1, - aux_sym_base_class_clause_repeat1, - [287661] = 4, + ACTIONS(10143), 1, + anon_sym_COLON_COLON, + STATE(369), 1, + sym_declaration_list, + [242718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, - anon_sym_RBRACE, - ACTIONS(11826), 1, - anon_sym_COMMA, - STATE(8020), 1, - aux_sym_initializer_list_repeat1, - [287674] = 4, + ACTIONS(10622), 1, + anon_sym_catch, + STATE(1812), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [242729] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10999), 1, + ACTIONS(7368), 1, anon_sym_COMMA, - ACTIONS(11057), 1, - anon_sym_LBRACE, - STATE(8048), 1, - aux_sym_base_class_clause_repeat1, - [287687] = 4, + ACTIONS(7370), 1, + anon_sym_RBRACE, + STATE(6592), 1, + aux_sym_initializer_list_repeat1, + [242742] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11828), 1, + ACTIONS(10624), 1, anon_sym_COMMA, - ACTIONS(11830), 1, + ACTIONS(10626), 1, anon_sym_RBRACE, - STATE(8030), 1, + STATE(6506), 1, aux_sym_enumerator_list_repeat1, - [287700] = 4, + [242755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, + ACTIONS(10628), 1, sym_identifier, - ACTIONS(11830), 1, - anon_sym_RBRACE, - STATE(8783), 1, - sym_enumerator, - [287713] = 3, + STATE(2573), 1, + sym_template_type, + STATE(3241), 1, + sym_template_function, + [242768] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11812), 1, - anon_sym_catch, - STATE(2631), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [287724] = 4, + ACTIONS(9127), 1, + anon_sym_COLON, + ACTIONS(9149), 1, + anon_sym_RPAREN, + STATE(6508), 1, + sym_gnu_asm_output_operand_list, + [242781] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(11832), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [287737] = 3, + ACTIONS(10630), 1, + anon_sym_GT2, + STATE(6519), 1, + aux_sym_template_argument_list_repeat1, + [242794] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11834), 1, + ACTIONS(10586), 1, + anon_sym_COMMA, + ACTIONS(10632), 1, + anon_sym_RPAREN, + STATE(6524), 1, + aux_sym_parameter_list_repeat1, + [242807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10612), 1, anon_sym_catch, - STATE(154), 2, + STATE(171), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [287748] = 4, + [242818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11527), 1, + ACTIONS(7272), 1, anon_sym_COMMA, - ACTIONS(11836), 1, - anon_sym_RBRACK_RBRACK, - STATE(8193), 1, - aux_sym_attribute_declaration_repeat1, - [287761] = 4, + ACTIONS(7298), 1, + anon_sym_RBRACK, + STATE(6531), 1, + aux_sym_subscript_argument_list_repeat1, + [242831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9035), 1, + ACTIONS(7198), 1, anon_sym_COMMA, - ACTIONS(11838), 1, + ACTIONS(7262), 1, anon_sym_RPAREN, - STATE(8108), 1, - aux_sym_preproc_argument_list_repeat1, - [287774] = 4, + STATE(6698), 1, + aux_sym_argument_list_repeat1, + [242844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11840), 1, - anon_sym_COMMA, - ACTIONS(11843), 1, - anon_sym_RPAREN, - STATE(8165), 1, - aux_sym_preproc_params_repeat1, - [287787] = 4, + ACTIONS(10067), 1, + sym_identifier, + ACTIONS(10634), 1, + anon_sym_RBRACE, + STATE(6997), 1, + sym_enumerator, + [242857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4248), 1, + ACTIONS(10634), 1, anon_sym_RBRACE, - ACTIONS(11845), 1, + ACTIONS(10636), 1, anon_sym_COMMA, - STATE(8020), 1, - aux_sym_initializer_list_repeat1, - [287800] = 2, + STATE(6671), 1, + aux_sym_enumerator_list_repeat1, + [242870] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11847), 3, + ACTIONS(9597), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [287809] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(11849), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [287822] = 4, + [242879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7654), 1, - anon_sym_COMMA, - ACTIONS(11851), 1, - anon_sym_RBRACK, - STATE(8103), 1, - aux_sym_subscript_argument_list_repeat1, - [287835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11853), 1, + ACTIONS(10638), 1, anon_sym_catch, - STATE(705), 2, + STATE(1763), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [287846] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11554), 1, - anon_sym_COMMA, - ACTIONS(11855), 1, - anon_sym_RPAREN, - STATE(8095), 1, - aux_sym_parameter_list_repeat1, - [287859] = 4, + [242890] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(11857), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [287872] = 4, + ACTIONS(10067), 1, + sym_identifier, + ACTIONS(10640), 1, + anon_sym_RBRACE, + STATE(6997), 1, + sym_enumerator, + [242903] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(7735), 1, - anon_sym_RPAREN, - STATE(8349), 1, - aux_sym_argument_list_repeat1, - [287885] = 4, + ACTIONS(10642), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [242916] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(11859), 1, + ACTIONS(10644), 1, anon_sym_GT2, - STATE(8078), 1, + STATE(6644), 1, aux_sym_template_argument_list_repeat1, - [287898] = 4, + [242929] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(11861), 1, + ACTIONS(10646), 1, anon_sym_GT2, - STATE(8078), 1, + STATE(6644), 1, aux_sym_template_argument_list_repeat1, - [287911] = 4, + [242942] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8026), 1, - anon_sym_RBRACK, - ACTIONS(11863), 1, + ACTIONS(10640), 1, + anon_sym_RBRACE, + ACTIONS(10648), 1, anon_sym_COMMA, - STATE(8176), 1, - aux_sym_lambda_capture_specifier_repeat1, - [287924] = 4, + STATE(6671), 1, + aux_sym_enumerator_list_repeat1, + [242955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11866), 1, + ACTIONS(10652), 1, + anon_sym_RPAREN, + ACTIONS(10650), 2, + anon_sym_DOT_DOT_DOT, sym_identifier, - STATE(3328), 1, - sym_template_type, - STATE(3931), 1, - sym_template_function, - [287937] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11868), 1, - anon_sym_COMMA, - ACTIONS(11870), 1, - anon_sym_RBRACE, - STATE(8030), 1, - aux_sym_enumerator_list_repeat1, - [287950] = 4, + [242966] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11597), 1, + ACTIONS(10584), 1, anon_sym_COLON, - ACTIONS(11872), 1, + ACTIONS(10654), 1, anon_sym_RPAREN, - STATE(9151), 1, - sym_gnu_asm_goto_list, - [287963] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11495), 1, - anon_sym_COMMA, - ACTIONS(11874), 1, - anon_sym_GT2, - STATE(8087), 1, - aux_sym_template_parameter_list_repeat1, - [287976] = 4, + STATE(6560), 1, + sym_gnu_asm_input_operand_list, + [242979] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, - anon_sym_COMMA, - ACTIONS(7847), 1, + ACTIONS(9127), 1, + anon_sym_COLON, + ACTIONS(9184), 1, anon_sym_RPAREN, - STATE(8016), 1, - aux_sym_argument_list_repeat1, - [287989] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11876), 1, - anon_sym_COMMA, - ACTIONS(11878), 1, - anon_sym_RBRACE, - STATE(8030), 1, - aux_sym_enumerator_list_repeat1, - [288002] = 4, + STATE(6561), 1, + sym_gnu_asm_output_operand_list, + [242992] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(11880), 1, + ACTIONS(10656), 1, anon_sym_GT2, - STATE(8078), 1, + STATE(6644), 1, aux_sym_template_argument_list_repeat1, - [288015] = 4, + [243005] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10622), 1, + anon_sym_catch, + STATE(1808), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [243016] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(11882), 1, + ACTIONS(10658), 1, anon_sym_GT2, - STATE(8078), 1, + STATE(6644), 1, aux_sym_template_argument_list_repeat1, - [288028] = 4, + [243029] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(10594), 1, anon_sym_COMMA, - ACTIONS(11884), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [288041] = 4, + ACTIONS(10660), 1, + anon_sym_RBRACK_RBRACK, + STATE(6475), 1, + aux_sym_attribute_declaration_repeat1, + [243042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11543), 1, - anon_sym_COLON, - ACTIONS(11886), 1, + ACTIONS(10662), 1, anon_sym_RPAREN, - STATE(8243), 1, - sym_gnu_asm_clobber_list, - [288054] = 4, + ACTIONS(10664), 1, + anon_sym_COLON, + STATE(7912), 1, + sym_gnu_asm_goto_list, + [243055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, + ACTIONS(10067), 1, sym_identifier, - ACTIONS(11878), 1, + ACTIONS(10666), 1, anon_sym_RBRACE, - STATE(8783), 1, + STATE(6997), 1, sym_enumerator, - [288067] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11547), 1, - anon_sym_COLON, - ACTIONS(11888), 1, - anon_sym_RPAREN, - STATE(8332), 1, - sym_gnu_asm_input_operand_list, - [288080] = 4, + [243068] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9625), 1, - anon_sym_COLON, - ACTIONS(9690), 1, - anon_sym_RPAREN, - STATE(8119), 1, - sym_gnu_asm_output_operand_list, - [288093] = 4, + ACTIONS(10608), 1, + anon_sym_LPAREN2, + ACTIONS(10668), 1, + anon_sym_constexpr, + STATE(162), 1, + sym_condition_clause, + [243081] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11547), 1, - anon_sym_COLON, - ACTIONS(11890), 1, + ACTIONS(10670), 1, anon_sym_RPAREN, - STATE(8121), 1, - sym_gnu_asm_input_operand_list, - [288106] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9625), 1, + ACTIONS(10672), 1, anon_sym_COLON, - ACTIONS(9677), 1, - anon_sym_RPAREN, - STATE(8333), 1, - sym_gnu_asm_output_operand_list, - [288119] = 3, + STATE(6541), 1, + sym_gnu_asm_clobber_list, + [243094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7154), 1, + ACTIONS(6779), 1, anon_sym_EQ, - ACTIONS(7152), 2, + ACTIONS(6777), 2, anon_sym_COMMA, anon_sym_GT2, - [288130] = 4, + [243105] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11892), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(11895), 1, - anon_sym_RBRACK_RBRACK, - STATE(8193), 1, - aux_sym_attribute_declaration_repeat1, - [288143] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4946), 1, - anon_sym_LBRACE, - ACTIONS(10987), 1, - anon_sym_COLON_COLON, - STATE(1321), 1, - sym_declaration_list, - [288156] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2764), 1, - anon_sym_while, - ACTIONS(11897), 1, - anon_sym_else, - STATE(1216), 1, - sym_else_clause, - [288169] = 4, + ACTIONS(10674), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [243118] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11242), 1, + ACTIONS(10498), 1, anon_sym_DASH_GT, - ACTIONS(11899), 1, + ACTIONS(10676), 1, anon_sym_SEMI, - STATE(9159), 1, + STATE(7875), 1, sym_trailing_return_type, - [288182] = 4, + [243131] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11713), 1, + ACTIONS(10678), 1, anon_sym_COMMA, - ACTIONS(11901), 1, + ACTIONS(10680), 1, anon_sym_RPAREN, - STATE(8245), 1, + STATE(6546), 1, aux_sym_throw_specifier_repeat1, - [288195] = 4, + [243144] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7364), 1, anon_sym_COMMA, - ACTIONS(11903), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [288208] = 4, + ACTIONS(10682), 1, + anon_sym_RPAREN, + STATE(6574), 1, + aux_sym_generic_expression_repeat1, + [243157] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7640), 1, + ACTIONS(10608), 1, + anon_sym_LPAREN2, + ACTIONS(10684), 1, + anon_sym_constexpr, + STATE(217), 1, + sym_condition_clause, + [243170] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10586), 1, anon_sym_COMMA, - ACTIONS(7642), 1, - anon_sym_RBRACE, - STATE(8351), 1, - aux_sym_initializer_list_repeat1, - [288221] = 3, + ACTIONS(10686), 1, + anon_sym_RPAREN, + STATE(6623), 1, + aux_sym_parameter_list_repeat1, + [243183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11812), 1, + ACTIONS(10612), 1, anon_sym_catch, - STATE(2643), 2, + STATE(167), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [288232] = 4, + [243194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(10688), 3, anon_sym_COMMA, - ACTIONS(11905), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [288245] = 4, + anon_sym_SEMI, + anon_sym___attribute__, + [243203] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(11907), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [288258] = 4, + ACTIONS(10664), 1, + anon_sym_COLON, + ACTIONS(10690), 1, + anon_sym_RPAREN, + STATE(7253), 1, + sym_gnu_asm_goto_list, + [243216] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10664), 1, + anon_sym_COLON, + ACTIONS(10692), 1, + anon_sym_RPAREN, + STATE(7935), 1, + sym_gnu_asm_goto_list, + [243229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(10694), 3, anon_sym_COMMA, - ACTIONS(11909), 1, anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [288271] = 4, + anon_sym___attribute__, + [243238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(10696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10698), 2, anon_sym_COMMA, - ACTIONS(11911), 1, - anon_sym_SEMI, - STATE(8161), 1, - aux_sym_declaration_repeat1, - [288284] = 4, + anon_sym_LBRACE, + [243249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7272), 1, anon_sym_COMMA, - ACTIONS(11913), 1, - anon_sym_GT2, - STATE(8168), 1, - aux_sym_template_argument_list_repeat1, - [288297] = 4, + ACTIONS(10700), 1, + anon_sym_RBRACK, + STATE(6600), 1, + aux_sym_subscript_argument_list_repeat1, + [243262] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, - sym_identifier, - ACTIONS(11870), 1, - anon_sym_RBRACE, - STATE(8783), 1, - sym_enumerator, - [288310] = 4, + ACTIONS(10672), 1, + anon_sym_COLON, + ACTIONS(10702), 1, + anon_sym_RPAREN, + STATE(6528), 1, + sym_gnu_asm_clobber_list, + [243275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, - anon_sym_COMMA, - ACTIONS(7779), 1, + ACTIONS(10664), 1, + anon_sym_COLON, + ACTIONS(10704), 1, anon_sym_RPAREN, - STATE(8016), 1, - aux_sym_argument_list_repeat1, - [288323] = 2, + STATE(7929), 1, + sym_gnu_asm_goto_list, + [243288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11915), 3, + ACTIONS(10085), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [288332] = 4, + ACTIONS(10706), 1, + anon_sym_LBRACE, + STATE(6687), 1, + aux_sym_base_class_clause_repeat1, + [243301] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11917), 1, - anon_sym_COMMA, - ACTIONS(11919), 1, - anon_sym_RBRACE, - STATE(8030), 1, - aux_sym_enumerator_list_repeat1, - [288345] = 4, + ACTIONS(10584), 1, + anon_sym_COLON, + ACTIONS(10708), 1, + anon_sym_RPAREN, + STATE(6532), 1, + sym_gnu_asm_input_operand_list, + [243314] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, + ACTIONS(10672), 1, + anon_sym_COLON, + ACTIONS(10710), 1, + anon_sym_RPAREN, + STATE(6533), 1, + sym_gnu_asm_clobber_list, + [243327] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10067), 1, sym_identifier, - ACTIONS(11919), 1, + ACTIONS(10712), 1, anon_sym_RBRACE, - STATE(8783), 1, + STATE(6997), 1, sym_enumerator, - [288358] = 2, + [243340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11921), 3, + ACTIONS(10085), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [288367] = 4, + ACTIONS(10706), 1, + anon_sym_LBRACE, + STATE(6557), 1, + aux_sym_base_class_clause_repeat1, + [243353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4254), 1, - anon_sym_RBRACE, - ACTIONS(11923), 1, + ACTIONS(8554), 1, anon_sym_COMMA, - STATE(8020), 1, - aux_sym_initializer_list_repeat1, - [288380] = 4, + ACTIONS(10714), 1, + anon_sym_RPAREN, + STATE(6595), 1, + aux_sym_preproc_argument_list_repeat1, + [243366] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, + ACTIONS(10716), 3, anon_sym_COMMA, - ACTIONS(7837), 1, anon_sym_RPAREN, - STATE(8016), 1, - aux_sym_argument_list_repeat1, - [288393] = 4, + anon_sym_COLON, + [243375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11925), 1, - anon_sym_COMMA, - ACTIONS(11927), 1, - anon_sym_RBRACE, - STATE(8353), 1, - aux_sym_enumerator_list_repeat1, - [288406] = 4, + ACTIONS(10664), 1, + anon_sym_COLON, + ACTIONS(10718), 1, + anon_sym_RPAREN, + STATE(7891), 1, + sym_gnu_asm_goto_list, + [243388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(11929), 1, - anon_sym_SEMI, - STATE(8323), 1, - aux_sym_declaration_repeat1, - [288419] = 4, + ACTIONS(10672), 1, + anon_sym_COLON, + ACTIONS(10720), 1, + anon_sym_RPAREN, + STATE(6527), 1, + sym_gnu_asm_clobber_list, + [243401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11931), 1, + ACTIONS(7198), 1, anon_sym_COMMA, - ACTIONS(11933), 1, - anon_sym_RBRACE, - STATE(8182), 1, - aux_sym_enumerator_list_repeat1, - [288432] = 4, + ACTIONS(10722), 1, + anon_sym_RPAREN, + STATE(6698), 1, + aux_sym_argument_list_repeat1, + [243414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11547), 1, - anon_sym_COLON, - ACTIONS(11935), 1, - anon_sym_RPAREN, - STATE(8361), 1, - sym_gnu_asm_input_operand_list, - [288445] = 4, + ACTIONS(10638), 1, + anon_sym_catch, + STATE(1767), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [243425] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9625), 1, + ACTIONS(10664), 1, anon_sym_COLON, - ACTIONS(9684), 1, + ACTIONS(10724), 1, anon_sym_RPAREN, - STATE(8431), 1, - sym_gnu_asm_output_operand_list, - [288458] = 4, + STATE(7263), 1, + sym_gnu_asm_goto_list, + [243438] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(10726), 1, anon_sym_COMMA, - ACTIONS(11937), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [288471] = 4, + ACTIONS(10729), 1, + anon_sym_RPAREN, + STATE(6546), 1, + aux_sym_throw_specifier_repeat1, + [243451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(7445), 3, anon_sym_COMMA, - ACTIONS(11939), 1, anon_sym_SEMI, - STATE(8172), 1, - aux_sym_declaration_repeat1, - [288484] = 4, + anon_sym___attribute__, + [243460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7198), 1, anon_sym_COMMA, - ACTIONS(11941), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [288497] = 4, + ACTIONS(10731), 1, + anon_sym_RPAREN, + STATE(6698), 1, + aux_sym_argument_list_repeat1, + [243473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(11943), 1, + ACTIONS(10733), 1, anon_sym_GT2, - STATE(8078), 1, + STATE(6644), 1, aux_sym_template_argument_list_repeat1, - [288510] = 4, + [243486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(11945), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [288523] = 4, + ACTIONS(10067), 1, + sym_identifier, + ACTIONS(10735), 1, + anon_sym_RBRACE, + STATE(6997), 1, + sym_enumerator, + [243499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11554), 1, - anon_sym_COMMA, - ACTIONS(11947), 1, + ACTIONS(10584), 1, + anon_sym_COLON, + ACTIONS(10737), 1, anon_sym_RPAREN, - STATE(8095), 1, - aux_sym_parameter_list_repeat1, - [288536] = 3, + STATE(6542), 1, + sym_gnu_asm_input_operand_list, + [243512] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(10739), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [243525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11949), 1, + ACTIONS(10741), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11951), 2, + ACTIONS(10743), 2, anon_sym_COMMA, anon_sym_LBRACE, - [288547] = 4, + [243536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(11953), 1, + ACTIONS(10745), 1, anon_sym_GT2, - STATE(8269), 1, + STATE(6644), 1, aux_sym_template_argument_list_repeat1, - [288560] = 3, + [243549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11645), 1, + ACTIONS(10622), 1, anon_sym_catch, - STATE(2637), 2, + STATE(1807), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [288571] = 4, + [243560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10999), 1, - anon_sym_COMMA, - ACTIONS(11955), 1, - anon_sym_LBRACE, - STATE(8048), 1, - aux_sym_base_class_clause_repeat1, - [288584] = 4, + ACTIONS(9127), 1, + anon_sym_COLON, + ACTIONS(9207), 1, + anon_sym_RPAREN, + STATE(6535), 1, + sym_gnu_asm_output_operand_list, + [243573] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10999), 1, + ACTIONS(10085), 1, anon_sym_COMMA, - ACTIONS(11955), 1, + ACTIONS(10747), 1, anon_sym_LBRACE, - STATE(8255), 1, + STATE(6687), 1, aux_sym_base_class_clause_repeat1, - [288597] = 4, + [243586] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10672), 1, + anon_sym_COLON, + ACTIONS(10749), 1, + anon_sym_RPAREN, + STATE(6545), 1, + sym_gnu_asm_clobber_list, + [243599] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10067), 1, + sym_identifier, + ACTIONS(10751), 1, + anon_sym_RBRACE, + STATE(6997), 1, + sym_enumerator, + [243612] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10672), 1, + anon_sym_COLON, + ACTIONS(10753), 1, + anon_sym_RPAREN, + STATE(6570), 1, + sym_gnu_asm_clobber_list, + [243625] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10584), 1, + anon_sym_COLON, + ACTIONS(10755), 1, + anon_sym_RPAREN, + STATE(6573), 1, + sym_gnu_asm_input_operand_list, + [243638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(10757), 1, anon_sym_COMMA, - ACTIONS(11957), 1, - anon_sym_SEMI, - STATE(8202), 1, - aux_sym_declaration_repeat1, - [288610] = 4, + ACTIONS(10759), 1, + anon_sym_RBRACE, + STATE(6671), 1, + aux_sym_enumerator_list_repeat1, + [243651] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11527), 1, + ACTIONS(7198), 1, anon_sym_COMMA, - ACTIONS(11959), 1, - anon_sym_RBRACK_RBRACK, - STATE(8022), 1, - aux_sym_attribute_declaration_repeat1, - [288623] = 3, + ACTIONS(10761), 1, + anon_sym_RPAREN, + STATE(6698), 1, + aux_sym_argument_list_repeat1, + [243664] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11961), 1, - anon_sym_catch, - STATE(2423), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [288634] = 4, + ACTIONS(10067), 1, + sym_identifier, + ACTIONS(10759), 1, + anon_sym_RBRACE, + STATE(6997), 1, + sym_enumerator, + [243677] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7198), 1, + anon_sym_COMMA, + ACTIONS(7346), 1, + anon_sym_RPAREN, + STATE(6698), 1, + aux_sym_argument_list_repeat1, + [243690] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11963), 1, + ACTIONS(10763), 1, sym_identifier, - STATE(3328), 1, + STATE(2573), 1, sym_template_type, - STATE(3485), 1, + STATE(3121), 1, sym_template_function, - [288647] = 2, + [243703] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11965), 3, + ACTIONS(7364), 1, anon_sym_COMMA, + ACTIONS(10765), 1, anon_sym_RPAREN, - anon_sym_COLON, - [288656] = 4, + STATE(6574), 1, + aux_sym_generic_expression_repeat1, + [243716] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7650), 1, + ACTIONS(10767), 3, anon_sym_COMMA, - ACTIONS(11967), 1, anon_sym_RPAREN, - STATE(8277), 1, - aux_sym_generic_expression_repeat1, - [288669] = 4, + anon_sym_COLON, + [243725] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(11969), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [288682] = 4, + ACTIONS(10608), 1, + anon_sym_LPAREN2, + ACTIONS(10769), 1, + anon_sym_constexpr, + STATE(231), 1, + sym_condition_clause, + [243738] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11597), 1, + ACTIONS(10664), 1, anon_sym_COLON, - ACTIONS(11971), 1, + ACTIONS(10771), 1, anon_sym_RPAREN, - STATE(9247), 1, + STATE(7315), 1, sym_gnu_asm_goto_list, - [288695] = 4, + [243751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11621), 1, + ACTIONS(10773), 3, anon_sym_COMMA, - ACTIONS(11973), 1, anon_sym_RPAREN, - STATE(8063), 1, - aux_sym_preproc_params_repeat1, - [288708] = 4, + anon_sym_COLON, + [243760] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(10775), 1, anon_sym_COMMA, - ACTIONS(11975), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [288721] = 3, + ACTIONS(10777), 1, + anon_sym_RPAREN, + STATE(6579), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [243773] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11576), 1, - anon_sym_catch, - STATE(734), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [288732] = 4, + ACTIONS(10672), 1, + anon_sym_COLON, + ACTIONS(10779), 1, + anon_sym_RPAREN, + STATE(6588), 1, + sym_gnu_asm_clobber_list, + [243786] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11527), 1, + ACTIONS(10781), 1, anon_sym_COMMA, - ACTIONS(11977), 1, - anon_sym_RBRACK_RBRACK, - STATE(8193), 1, - aux_sym_attribute_declaration_repeat1, - [288745] = 4, + ACTIONS(10784), 1, + anon_sym_RPAREN, + STATE(6574), 1, + aux_sym_generic_expression_repeat1, + [243799] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, + ACTIONS(10786), 1, anon_sym_COMMA, - ACTIONS(7853), 1, - anon_sym_RPAREN, - STATE(8386), 1, - aux_sym_argument_list_repeat1, - [288758] = 4, + ACTIONS(10788), 1, + anon_sym_RBRACE, + STATE(6604), 1, + aux_sym_enumerator_list_repeat1, + [243812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11597), 1, - anon_sym_COLON, - ACTIONS(11979), 1, + ACTIONS(10790), 3, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(9287), 1, - sym_gnu_asm_goto_list, - [288771] = 4, + anon_sym_COLON, + [243821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(10987), 1, - anon_sym_COLON_COLON, - STATE(545), 1, - sym_declaration_list, - [288784] = 4, + ACTIONS(10638), 1, + anon_sym_catch, + STATE(1764), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [243832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11981), 1, + ACTIONS(10792), 3, anon_sym_COMMA, - ACTIONS(11984), 1, anon_sym_RPAREN, - STATE(8245), 1, - aux_sym_throw_specifier_repeat1, - [288797] = 4, + anon_sym_COLON, + [243841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7654), 1, + ACTIONS(10775), 1, anon_sym_COMMA, - ACTIONS(7864), 1, - anon_sym_RBRACK, - STATE(8169), 1, - aux_sym_subscript_argument_list_repeat1, - [288810] = 4, + ACTIONS(10794), 1, + anon_sym_RPAREN, + STATE(6583), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [243854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7654), 1, + ACTIONS(8554), 1, anon_sym_COMMA, - ACTIONS(7680), 1, - anon_sym_RBRACK, - STATE(8077), 1, - aux_sym_subscript_argument_list_repeat1, - [288823] = 3, + ACTIONS(10796), 1, + anon_sym_RPAREN, + STATE(6595), 1, + aux_sym_preproc_argument_list_repeat1, + [243867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11853), 1, - anon_sym_catch, - STATE(707), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [288834] = 3, + ACTIONS(7272), 1, + anon_sym_COMMA, + ACTIONS(10798), 1, + anon_sym_RBRACK, + STATE(6600), 1, + aux_sym_subscript_argument_list_repeat1, + [243880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11666), 1, + ACTIONS(10800), 1, anon_sym_catch, - STATE(797), 2, + STATE(450), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [288845] = 4, + [243891] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11597), 1, - anon_sym_COLON, - ACTIONS(11986), 1, + ACTIONS(10802), 1, + anon_sym_COMMA, + ACTIONS(10805), 1, anon_sym_RPAREN, - STATE(9575), 1, - sym_gnu_asm_goto_list, - [288858] = 2, + STATE(6583), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [243904] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7607), 3, + ACTIONS(7210), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [288867] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11988), 1, - sym_identifier, - STATE(3328), 1, - sym_template_type, - STATE(3409), 1, - sym_template_function, - [288880] = 3, + ACTIONS(10807), 1, + anon_sym_GT2, + STATE(6610), 1, + aux_sym_template_argument_list_repeat1, + [243917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11990), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11992), 2, + ACTIONS(10809), 3, anon_sym_COMMA, - anon_sym_LBRACE, - [288891] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [243926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11554), 1, + ACTIONS(10811), 3, anon_sym_COMMA, - ACTIONS(11994), 1, anon_sym_RPAREN, - STATE(8171), 1, - aux_sym_parameter_list_repeat1, - [288904] = 4, + anon_sym_COLON, + [243935] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10999), 1, + ACTIONS(10586), 1, anon_sym_COMMA, - ACTIONS(11996), 1, - anon_sym_LBRACE, - STATE(8048), 1, - aux_sym_base_class_clause_repeat1, - [288917] = 4, + ACTIONS(10813), 1, + anon_sym_RPAREN, + STATE(6623), 1, + aux_sym_parameter_list_repeat1, + [243948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11543), 1, + ACTIONS(10664), 1, anon_sym_COLON, - ACTIONS(11998), 1, + ACTIONS(10815), 1, anon_sym_RPAREN, - STATE(8402), 1, - sym_gnu_asm_clobber_list, - [288930] = 4, + STATE(7319), 1, + sym_gnu_asm_goto_list, + [243961] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7650), 1, + ACTIONS(7364), 1, anon_sym_COMMA, - ACTIONS(12000), 1, + ACTIONS(10817), 1, anon_sym_RPAREN, - STATE(8277), 1, + STATE(6574), 1, aux_sym_generic_expression_repeat1, - [288943] = 2, + [243974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12002), 3, + ACTIONS(10819), 1, anon_sym_COMMA, + ACTIONS(10822), 1, anon_sym_RPAREN, - anon_sym_COLON, - [288952] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7819), 1, - anon_sym_COMMA, - ACTIONS(7821), 1, - anon_sym_RBRACE, - STATE(8392), 1, - aux_sym_initializer_list_repeat1, - [288965] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(12004), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [288978] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(12006), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [288991] = 2, + STATE(6590), 1, + aux_sym_preproc_params_repeat1, + [243987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12008), 3, + ACTIONS(7210), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [289000] = 4, + ACTIONS(10824), 1, + anon_sym_GT2, + STATE(6549), 1, + aux_sym_template_argument_list_repeat1, + [244000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, - sym_identifier, - ACTIONS(12010), 1, + ACTIONS(4031), 1, anon_sym_RBRACE, - STATE(8783), 1, - sym_enumerator, - [289013] = 4, + ACTIONS(10826), 1, + anon_sym_COMMA, + STATE(6679), 1, + aux_sym_initializer_list_repeat1, + [244013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11696), 1, + ACTIONS(10828), 1, anon_sym_COMMA, - ACTIONS(12012), 1, - anon_sym_LBRACE, - STATE(8093), 1, - aux_sym_field_initializer_list_repeat1, - [289026] = 3, + ACTIONS(10830), 1, + anon_sym_GT2, + STATE(6637), 1, + aux_sym_template_parameter_list_repeat1, + [244026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11961), 1, + ACTIONS(10832), 1, anon_sym_catch, - STATE(2424), 2, + STATE(1924), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [289037] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(12014), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [289050] = 4, + [244037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12016), 1, + ACTIONS(8670), 1, + anon_sym_RPAREN, + ACTIONS(10834), 1, anon_sym_COMMA, - ACTIONS(12018), 1, - anon_sym_RBRACE, - STATE(8395), 1, - aux_sym_enumerator_list_repeat1, - [289063] = 4, + STATE(6595), 1, + aux_sym_preproc_argument_list_repeat1, + [244050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12020), 1, - anon_sym_COMMA, - ACTIONS(12022), 1, + ACTIONS(9125), 1, anon_sym_RPAREN, - STATE(8287), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [289076] = 4, + ACTIONS(9127), 1, + anon_sym_COLON, + STATE(6471), 1, + sym_gnu_asm_output_operand_list, + [244063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12024), 1, + ACTIONS(10837), 1, anon_sym_GT2, - STATE(8078), 1, + STATE(6644), 1, aux_sym_template_argument_list_repeat1, - [289089] = 4, + [244076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12026), 1, + ACTIONS(10839), 1, anon_sym_GT2, - STATE(8078), 1, + STATE(6644), 1, aux_sym_template_argument_list_repeat1, - [289102] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11495), 1, - anon_sym_COMMA, - ACTIONS(12028), 1, - anon_sym_GT2, - STATE(8180), 1, - aux_sym_template_parameter_list_repeat1, - [289115] = 4, - ACTIONS(3), 1, + [244089] = 4, + ACTIONS(8584), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(12030), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [289128] = 4, + ACTIONS(10592), 1, + anon_sym_LPAREN2, + ACTIONS(10841), 1, + aux_sym_preproc_include_token2, + STATE(7239), 1, + sym_preproc_argument_list, + [244102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11554), 1, + ACTIONS(7542), 1, + anon_sym_RBRACK, + ACTIONS(10843), 1, anon_sym_COMMA, - ACTIONS(12032), 1, - anon_sym_RPAREN, - STATE(8031), 1, - aux_sym_parameter_list_repeat1, - [289141] = 4, + STATE(6600), 1, + aux_sym_subscript_argument_list_repeat1, + [244115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12034), 1, + ACTIONS(10846), 1, anon_sym_GT2, - STATE(8183), 1, + STATE(6644), 1, aux_sym_template_argument_list_repeat1, - [289154] = 4, + [244128] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(10848), 1, anon_sym_COMMA, - ACTIONS(12036), 1, - anon_sym_SEMI, - STATE(8113), 1, - aux_sym_declaration_repeat1, - [289167] = 4, + ACTIONS(10850), 1, + anon_sym_RBRACE, + STATE(6562), 1, + aux_sym_enumerator_list_repeat1, + [244141] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12038), 1, - anon_sym_COMMA, - ACTIONS(12040), 1, + ACTIONS(10067), 1, + sym_identifier, + ACTIONS(10852), 1, anon_sym_RBRACE, - STATE(8030), 1, - aux_sym_enumerator_list_repeat1, - [289180] = 4, + STATE(6997), 1, + sym_enumerator, + [244154] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12042), 1, + ACTIONS(10852), 1, + anon_sym_RBRACE, + ACTIONS(10854), 1, anon_sym_COMMA, - ACTIONS(12045), 1, - anon_sym_RPAREN, - STATE(8277), 1, - aux_sym_generic_expression_repeat1, - [289193] = 4, + STATE(6671), 1, + aux_sym_enumerator_list_repeat1, + [244167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9625), 1, + ACTIONS(9127), 1, anon_sym_COLON, - ACTIONS(9694), 1, + ACTIONS(9186), 1, anon_sym_RPAREN, - STATE(8190), 1, + STATE(6551), 1, sym_gnu_asm_output_operand_list, - [289206] = 4, + [244180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9623), 1, - anon_sym_RPAREN, - ACTIONS(9625), 1, + ACTIONS(10584), 1, anon_sym_COLON, - STATE(8370), 1, - sym_gnu_asm_output_operand_list, - [289219] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12047), 3, - anon_sym_COMMA, + ACTIONS(10856), 1, anon_sym_RPAREN, - anon_sym_COLON, - [289228] = 4, + STATE(6558), 1, + sym_gnu_asm_input_operand_list, + [244193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2756), 1, + ACTIONS(2760), 1, anon_sym_while, - ACTIONS(11897), 1, + ACTIONS(10858), 1, anon_sym_else, - STATE(922), 1, + STATE(605), 1, sym_else_clause, - [289241] = 2, + [244206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12049), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [289250] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10950), 1, - sym_identifier, - ACTIONS(12040), 1, - anon_sym_RBRACE, - STATE(8783), 1, - sym_enumerator, - [289263] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(12051), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [289276] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7733), 1, - anon_sym_COMMA, - ACTIONS(12053), 1, - anon_sym_RPAREN, - STATE(8016), 1, - aux_sym_argument_list_repeat1, - [289289] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11961), 1, - anon_sym_catch, - STATE(2415), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [289300] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12020), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12055), 1, - anon_sym_RPAREN, - STATE(8290), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [289313] = 4, + ACTIONS(10860), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [244219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11749), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12057), 1, - anon_sym_RPAREN, - STATE(8114), 1, - aux_sym_requires_parameter_list_repeat1, - [289326] = 4, + ACTIONS(10862), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [244232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12059), 1, + ACTIONS(10864), 1, anon_sym_GT2, - STATE(8078), 1, + STATE(6644), 1, aux_sym_template_argument_list_repeat1, - [289339] = 4, + [244245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12061), 1, + ACTIONS(10594), 1, anon_sym_COMMA, - ACTIONS(12064), 1, - anon_sym_RPAREN, - STATE(8290), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [289352] = 4, + ACTIONS(10866), 1, + anon_sym_RBRACK_RBRACK, + STATE(6632), 1, + aux_sym_attribute_declaration_repeat1, + [244258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12066), 1, + ACTIONS(10868), 1, anon_sym_COMMA, - ACTIONS(12068), 1, + ACTIONS(10870), 1, anon_sym_RBRACE, - STATE(8209), 1, + STATE(6671), 1, aux_sym_enumerator_list_repeat1, - [289365] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(12070), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [289378] = 4, + [244271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7878), 1, - anon_sym_COMMA, - ACTIONS(7880), 1, + ACTIONS(10067), 1, + sym_identifier, + ACTIONS(10870), 1, anon_sym_RBRACE, - STATE(8212), 1, - aux_sym_initializer_list_repeat1, - [289391] = 2, + STATE(6997), 1, + sym_enumerator, + [244284] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12072), 3, + ACTIONS(7198), 1, anon_sym_COMMA, + ACTIONS(7360), 1, anon_sym_RPAREN, - anon_sym_COLON, - [289400] = 4, + STATE(6565), 1, + aux_sym_argument_list_repeat1, + [244297] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(10872), 1, anon_sym_COMMA, - ACTIONS(12074), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [289413] = 2, + ACTIONS(10875), 1, + anon_sym_LBRACE, + STATE(6615), 1, + aux_sym_field_initializer_list_repeat1, + [244310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10832), 1, + anon_sym_catch, + STATE(1968), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [244321] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12076), 3, + ACTIONS(10594), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [289422] = 4, + ACTIONS(10877), 1, + anon_sym_RBRACK_RBRACK, + STATE(6818), 1, + aux_sym_attribute_declaration_repeat1, + [244334] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, - anon_sym_LBRACE, - ACTIONS(10987), 1, - anon_sym_COLON_COLON, - STATE(1376), 1, - sym_declaration_list, - [289435] = 4, + ACTIONS(4035), 1, + anon_sym_RBRACE, + ACTIONS(10879), 1, + anon_sym_COMMA, + STATE(6679), 1, + aux_sym_initializer_list_repeat1, + [244347] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, + ACTIONS(7198), 1, anon_sym_COMMA, - ACTIONS(7876), 1, + ACTIONS(7440), 1, anon_sym_RPAREN, - STATE(8213), 1, + STATE(6698), 1, aux_sym_argument_list_repeat1, - [289448] = 4, + [244360] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, - anon_sym_LPAREN2, - ACTIONS(12078), 1, - anon_sym_constexpr, - STATE(335), 1, - sym_condition_clause, - [289461] = 4, + ACTIONS(10067), 1, + sym_identifier, + ACTIONS(10881), 1, + anon_sym_RBRACE, + STATE(6997), 1, + sym_enumerator, + [244373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11527), 1, - anon_sym_COMMA, - ACTIONS(12080), 1, - anon_sym_RBRACK_RBRACK, - STATE(8193), 1, - aux_sym_attribute_declaration_repeat1, - [289474] = 4, + ACTIONS(10883), 1, + anon_sym_catch, + STATE(257), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [244384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(8646), 1, anon_sym_COMMA, - ACTIONS(12082), 1, + ACTIONS(8650), 1, anon_sym_SEMI, - STATE(8266), 1, - aux_sym_declaration_repeat1, - [289487] = 4, + STATE(6845), 1, + aux_sym__declaration_declarator_repeat1, + [244397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12084), 1, + ACTIONS(10885), 1, anon_sym_COMMA, - ACTIONS(12086), 1, - anon_sym_RBRACE, - STATE(8276), 1, - aux_sym_enumerator_list_repeat1, - [289500] = 2, + ACTIONS(10888), 1, + anon_sym_RPAREN, + STATE(6623), 1, + aux_sym_parameter_list_repeat1, + [244410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12088), 3, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - [289509] = 3, + ACTIONS(10890), 1, + sym_identifier, + STATE(2557), 1, + sym_template_function, + STATE(2573), 1, + sym_template_type, + [244423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11755), 1, - anon_sym_COLON_COLON, - ACTIONS(12090), 2, + ACTIONS(5730), 1, anon_sym_SEMI, - anon_sym_LBRACE, - [289520] = 4, + ACTIONS(5950), 1, + anon_sym_LT, + STATE(1919), 1, + sym_template_argument_list, + [244436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_COMMA, - ACTIONS(12092), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [289533] = 2, + ACTIONS(10892), 1, + sym_identifier, + STATE(2573), 1, + sym_template_type, + STATE(5699), 1, + sym_template_function, + [244449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10987), 3, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - [289542] = 4, + ACTIONS(7272), 1, + anon_sym_COMMA, + ACTIONS(7454), 1, + anon_sym_RBRACK, + STATE(6581), 1, + aux_sym_subscript_argument_list_repeat1, + [244462] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(10894), 1, anon_sym_COMMA, - ACTIONS(12094), 1, - anon_sym_GT2, - STATE(8375), 1, - aux_sym_template_argument_list_repeat1, - [289555] = 4, + ACTIONS(10897), 1, + anon_sym_RPAREN, + STATE(6628), 1, + aux_sym_requires_parameter_list_repeat1, + [244475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9625), 1, - anon_sym_COLON, - ACTIONS(9653), 1, - anon_sym_RPAREN, - STATE(8408), 1, - sym_gnu_asm_output_operand_list, - [289568] = 4, + ACTIONS(10800), 1, + anon_sym_catch, + STATE(489), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [244486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11527), 1, + ACTIONS(7198), 1, anon_sym_COMMA, - ACTIONS(12096), 1, - anon_sym_RBRACK_RBRACK, - STATE(8193), 1, - aux_sym_attribute_declaration_repeat1, - [289581] = 4, + ACTIONS(10899), 1, + anon_sym_RPAREN, + STATE(6698), 1, + aux_sym_argument_list_repeat1, + [244499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10901), 1, + anon_sym_catch, + STATE(1032), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [244510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(10594), 1, anon_sym_COMMA, - ACTIONS(12098), 1, - anon_sym_SEMI, - STATE(8055), 1, - aux_sym_declaration_repeat1, - [289594] = 4, + ACTIONS(10903), 1, + anon_sym_RBRACK_RBRACK, + STATE(6818), 1, + aux_sym_attribute_declaration_repeat1, + [244523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11495), 1, + ACTIONS(7198), 1, anon_sym_COMMA, - ACTIONS(12100), 1, - anon_sym_GT2, - STATE(8007), 1, - aux_sym_template_parameter_list_repeat1, - [289607] = 4, + ACTIONS(7260), 1, + anon_sym_RPAREN, + STATE(6675), 1, + aux_sym_argument_list_repeat1, + [244536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12102), 1, - sym_identifier, - STATE(3328), 1, - sym_template_type, - STATE(4111), 1, - sym_template_function, - [289620] = 4, + ACTIONS(4637), 1, + anon_sym_LBRACE, + ACTIONS(10143), 1, + anon_sym_COLON_COLON, + STATE(535), 1, + sym_declaration_list, + [244549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7264), 1, anon_sym_COMMA, - ACTIONS(12104), 1, - anon_sym_GT2, - STATE(8420), 1, - aux_sym_template_argument_list_repeat1, - [289633] = 4, + ACTIONS(7266), 1, + anon_sym_RBRACE, + STATE(6678), 1, + aux_sym_initializer_list_repeat1, + [244562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(10594), 1, anon_sym_COMMA, - ACTIONS(12106), 1, - anon_sym_SEMI, - STATE(8292), 1, - aux_sym_declaration_repeat1, - [289646] = 4, + ACTIONS(10905), 1, + anon_sym_RBRACK_RBRACK, + STATE(6617), 1, + aux_sym_attribute_declaration_repeat1, + [244575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(10907), 1, anon_sym_COMMA, - ACTIONS(12108), 1, + ACTIONS(10910), 1, anon_sym_GT2, - STATE(8124), 1, - aux_sym_template_argument_list_repeat1, - [289659] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12110), 1, - anon_sym_catch, - STATE(2375), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [289670] = 4, + STATE(6637), 1, + aux_sym_template_parameter_list_repeat1, + [244588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(10912), 1, anon_sym_COMMA, - ACTIONS(12112), 1, - anon_sym_SEMI, - STATE(8378), 1, - aux_sym_declaration_repeat1, - [289683] = 4, + ACTIONS(10914), 1, + anon_sym_RBRACE, + STATE(6683), 1, + aux_sym_enumerator_list_repeat1, + [244601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12114), 1, - sym_identifier, - STATE(2457), 1, - sym_template_type, - STATE(3931), 1, - sym_template_function, - [289696] = 4, + ACTIONS(10916), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [244610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(10918), 3, anon_sym_COMMA, - ACTIONS(12116), 1, - anon_sym_SEMI, - STATE(8422), 1, - aux_sym_declaration_repeat1, - [289709] = 4, + anon_sym_RPAREN, + anon_sym_GT2, + [244619] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(10586), 1, anon_sym_COMMA, - ACTIONS(12118), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [289722] = 4, + ACTIONS(10920), 1, + anon_sym_RPAREN, + STATE(6587), 1, + aux_sym_parameter_list_repeat1, + [244632] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(10828), 1, anon_sym_COMMA, - ACTIONS(12120), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [289735] = 4, + ACTIONS(10922), 1, + anon_sym_GT2, + STATE(6593), 1, + aux_sym_template_parameter_list_repeat1, + [244645] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(10678), 1, anon_sym_COMMA, - ACTIONS(12122), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [289748] = 4, + ACTIONS(10924), 1, + anon_sym_RPAREN, + STATE(6521), 1, + aux_sym_throw_specifier_repeat1, + [244658] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(10926), 1, anon_sym_COMMA, - ACTIONS(12124), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [289761] = 4, + ACTIONS(10929), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [244671] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11527), 1, + ACTIONS(10594), 1, anon_sym_COMMA, - ACTIONS(12126), 1, + ACTIONS(10931), 1, anon_sym_RBRACK_RBRACK, - STATE(8309), 1, + STATE(6759), 1, aux_sym_attribute_declaration_repeat1, - [289774] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(12128), 1, - anon_sym_SEMI, - STATE(8260), 1, - aux_sym_declaration_repeat1, - [289787] = 3, + [244684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12130), 1, + ACTIONS(10832), 1, anon_sym_catch, - STATE(442), 2, + STATE(1975), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [289798] = 4, + [244695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9625), 1, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(10933), 1, + anon_sym_GT2, + STATE(6597), 1, + aux_sym_template_argument_list_repeat1, + [244708] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9127), 1, anon_sym_COLON, - ACTIONS(9651), 1, + ACTIONS(9188), 1, anon_sym_RPAREN, - STATE(8140), 1, + STATE(6701), 1, sym_gnu_asm_output_operand_list, - [289811] = 4, + [244721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11554), 1, + ACTIONS(10089), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10935), 2, anon_sym_COMMA, - ACTIONS(12132), 1, - anon_sym_RPAREN, - STATE(8423), 1, - aux_sym_parameter_list_repeat1, - [289824] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11834), 1, - anon_sym_catch, - STATE(273), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [289835] = 3, + anon_sym_GT2, + [244732] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12130), 1, - anon_sym_catch, - STATE(357), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [289846] = 4, + ACTIONS(10937), 1, + sym_identifier, + STATE(1815), 1, + sym_template_type, + STATE(3241), 1, + sym_template_function, + [244745] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7654), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(7799), 1, - anon_sym_RBRACK, - STATE(8426), 1, - aux_sym_subscript_argument_list_repeat1, - [289859] = 4, + ACTIONS(10939), 1, + anon_sym_GT2, + STATE(6714), 1, + aux_sym_template_argument_list_repeat1, + [244758] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11543), 1, - anon_sym_COLON, - ACTIONS(12134), 1, + ACTIONS(7364), 1, + anon_sym_COMMA, + ACTIONS(10941), 1, anon_sym_RPAREN, - STATE(8384), 1, - sym_gnu_asm_clobber_list, - [289872] = 4, + STATE(6574), 1, + aux_sym_generic_expression_repeat1, + [244771] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11547), 1, + ACTIONS(10584), 1, anon_sym_COLON, - ACTIONS(12136), 1, + ACTIONS(10943), 1, anon_sym_RPAREN, - STATE(8387), 1, + STATE(6517), 1, sym_gnu_asm_input_operand_list, - [289885] = 4, + [244784] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(10987), 1, - anon_sym_COLON_COLON, - STATE(1410), 1, - sym_declaration_list, - [289898] = 4, + ACTIONS(10664), 1, + anon_sym_COLON, + ACTIONS(10945), 1, + anon_sym_RPAREN, + STATE(7805), 1, + sym_gnu_asm_goto_list, + [244797] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11597), 1, + ACTIONS(10672), 1, anon_sym_COLON, - ACTIONS(12138), 1, + ACTIONS(10947), 1, anon_sym_RPAREN, - STATE(9491), 1, - sym_gnu_asm_goto_list, - [289911] = 4, + STATE(6514), 1, + sym_gnu_asm_clobber_list, + [244810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12140), 1, + ACTIONS(10951), 1, + anon_sym_RPAREN, + ACTIONS(10949), 2, anon_sym_COMMA, - ACTIONS(12142), 1, - anon_sym_RBRACE, - STATE(8158), 1, - aux_sym_enumerator_list_repeat1, - [289924] = 3, + anon_sym_SEMI, + [244821] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12146), 1, - anon_sym_EQ, - ACTIONS(12144), 2, + ACTIONS(7210), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [289935] = 3, + ACTIONS(10953), 1, + anon_sym_GT2, + STATE(6664), 1, + aux_sym_template_argument_list_repeat1, + [244834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11853), 1, - anon_sym_catch, - STATE(542), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [289946] = 4, + ACTIONS(9127), 1, + anon_sym_COLON, + ACTIONS(9151), 1, + anon_sym_RPAREN, + STATE(6606), 1, + sym_gnu_asm_output_operand_list, + [244847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11543), 1, + ACTIONS(10672), 1, anon_sym_COLON, - ACTIONS(12148), 1, + ACTIONS(10955), 1, anon_sym_RPAREN, - STATE(8335), 1, + STATE(6654), 1, sym_gnu_asm_clobber_list, - [289959] = 4, + [244860] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11597), 1, + ACTIONS(10664), 1, anon_sym_COLON, - ACTIONS(12150), 1, + ACTIONS(10957), 1, anon_sym_RPAREN, - STATE(9492), 1, + STATE(7802), 1, sym_gnu_asm_goto_list, - [289972] = 4, + [244873] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7595), 1, - anon_sym_RBRACE, - ACTIONS(7833), 1, + ACTIONS(10085), 1, anon_sym_COMMA, - STATE(8166), 1, - aux_sym_initializer_list_repeat1, - [289985] = 4, + ACTIONS(10405), 1, + anon_sym_LBRACE, + STATE(6482), 1, + aux_sym_base_class_clause_repeat1, + [244886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7825), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12152), 1, - anon_sym_RBRACK, - STATE(8176), 1, - aux_sym_lambda_capture_specifier_repeat1, - [289998] = 4, + ACTIONS(10959), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [244899] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5459), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12154), 1, - anon_sym_RBRACK, - STATE(8139), 1, - aux_sym_structured_binding_declarator_repeat1, - [290011] = 4, + ACTIONS(10961), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [244912] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11547), 1, - anon_sym_COLON, - ACTIONS(12156), 1, - anon_sym_RPAREN, - STATE(8339), 1, - sym_gnu_asm_input_operand_list, - [290024] = 4, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(10963), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [244925] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11543), 1, - anon_sym_COLON, - ACTIONS(12158), 1, - anon_sym_RPAREN, - STATE(8340), 1, - sym_gnu_asm_clobber_list, - [290037] = 4, + ACTIONS(2737), 1, + anon_sym_while, + ACTIONS(10858), 1, + anon_sym_else, + STATE(604), 1, + sym_else_clause, + [244938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, + ACTIONS(10965), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10967), 2, anon_sym_COMMA, - ACTIONS(7831), 1, - anon_sym_RPAREN, - STATE(8181), 1, - aux_sym_argument_list_repeat1, - [290050] = 4, + anon_sym_LBRACE, + [244949] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11527), 1, + ACTIONS(10085), 1, anon_sym_COMMA, - ACTIONS(12160), 1, - anon_sym_RBRACK_RBRACK, - STATE(8193), 1, - aux_sym_attribute_declaration_repeat1, - [290063] = 4, + ACTIONS(10405), 1, + anon_sym_LBRACE, + STATE(6687), 1, + aux_sym_base_class_clause_repeat1, + [244962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11543), 1, + ACTIONS(10584), 1, + anon_sym_COLON, + ACTIONS(10969), 1, + anon_sym_RPAREN, + STATE(6659), 1, + sym_gnu_asm_input_operand_list, + [244975] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10672), 1, anon_sym_COLON, - ACTIONS(12162), 1, + ACTIONS(10971), 1, anon_sym_RPAREN, - STATE(8237), 1, + STATE(6660), 1, sym_gnu_asm_clobber_list, - [290076] = 4, + [244988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10973), 1, + anon_sym_catch, + STATE(2009), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [244999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, + ACTIONS(10975), 1, anon_sym_COMMA, - ACTIONS(7773), 1, - anon_sym_RPAREN, - STATE(8016), 1, - aux_sym_argument_list_repeat1, - [290089] = 4, + ACTIONS(10978), 1, + anon_sym_RBRACE, + STATE(6671), 1, + aux_sym_enumerator_list_repeat1, + [245012] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10980), 1, + anon_sym_COMMA, + ACTIONS(10982), 1, + anon_sym_RBRACE, + STATE(6612), 1, + aux_sym_enumerator_list_repeat1, + [245025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, + ACTIONS(10067), 1, sym_identifier, - ACTIONS(12164), 1, + ACTIONS(10984), 1, anon_sym_RBRACE, - STATE(8783), 1, + STATE(6997), 1, sym_enumerator, - [290102] = 4, + [245038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4266), 1, + ACTIONS(10067), 1, + sym_identifier, + ACTIONS(10986), 1, anon_sym_RBRACE, - ACTIONS(12166), 1, + STATE(6997), 1, + sym_enumerator, + [245051] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7198), 1, anon_sym_COMMA, - STATE(8020), 1, - aux_sym_initializer_list_repeat1, - [290115] = 4, + ACTIONS(7200), 1, + anon_sym_RPAREN, + STATE(6698), 1, + aux_sym_argument_list_repeat1, + [245064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, - sym_identifier, - ACTIONS(12168), 1, + ACTIONS(10973), 1, + anon_sym_catch, + STATE(1942), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [245075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10988), 1, + anon_sym_catch, + STATE(465), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [245086] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4041), 1, anon_sym_RBRACE, - STATE(8783), 1, - sym_enumerator, - [290128] = 4, + ACTIONS(10990), 1, + anon_sym_COMMA, + STATE(6679), 1, + aux_sym_initializer_list_repeat1, + [245099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12168), 1, + ACTIONS(7452), 1, anon_sym_RBRACE, - ACTIONS(12170), 1, + ACTIONS(10992), 1, anon_sym_COMMA, - STATE(8030), 1, - aux_sym_enumerator_list_repeat1, - [290141] = 4, + STATE(6679), 1, + aux_sym_initializer_list_repeat1, + [245112] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, + ACTIONS(7396), 1, anon_sym_COMMA, - ACTIONS(12172), 1, - anon_sym_RPAREN, - STATE(8016), 1, - aux_sym_argument_list_repeat1, - [290154] = 4, + ACTIONS(10995), 1, + anon_sym_RBRACK, + STATE(6807), 1, + aux_sym_lambda_capture_specifier_repeat1, + [245125] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, + ACTIONS(10067), 1, sym_identifier, - ACTIONS(12174), 1, + ACTIONS(10997), 1, anon_sym_RBRACE, - STATE(8783), 1, + STATE(6997), 1, sym_enumerator, - [290167] = 4, + [245138] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11597), 1, - anon_sym_COLON, - ACTIONS(12176), 1, - anon_sym_RPAREN, - STATE(9313), 1, - sym_gnu_asm_goto_list, - [290180] = 3, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(10999), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [245151] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12110), 1, - anon_sym_catch, - STATE(2376), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [290191] = 4, + ACTIONS(10997), 1, + anon_sym_RBRACE, + ACTIONS(11001), 1, + anon_sym_COMMA, + STATE(6671), 1, + aux_sym_enumerator_list_repeat1, + [245164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, - anon_sym_COMMA, - ACTIONS(12178), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [290204] = 4, + ACTIONS(11003), 1, + sym_identifier, + STATE(2557), 1, + sym_template_function, + STATE(2573), 1, + sym_template_type, + [245177] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5459), 1, + ACTIONS(7432), 1, anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_RBRACK, - STATE(8343), 1, - aux_sym_structured_binding_declarator_repeat1, - [290217] = 4, + ACTIONS(7434), 1, + anon_sym_RBRACE, + STATE(6618), 1, + aux_sym_initializer_list_repeat1, + [245190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12182), 1, + ACTIONS(11005), 1, anon_sym_GT2, - STATE(8078), 1, + STATE(6644), 1, aux_sym_template_argument_list_repeat1, - [290230] = 4, + [245203] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11543), 1, - anon_sym_COLON, - ACTIONS(12184), 1, - anon_sym_RPAREN, - STATE(8356), 1, - sym_gnu_asm_clobber_list, - [290243] = 4, + ACTIONS(10967), 1, + anon_sym_LBRACE, + ACTIONS(11007), 1, + anon_sym_COMMA, + STATE(6687), 1, + aux_sym_base_class_clause_repeat1, + [245216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12186), 1, + ACTIONS(11010), 1, anon_sym_GT2, - STATE(8078), 1, + STATE(6644), 1, aux_sym_template_argument_list_repeat1, - [290256] = 4, + [245229] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9625), 1, + ACTIONS(9127), 1, anon_sym_COLON, - ACTIONS(9639), 1, + ACTIONS(9197), 1, anon_sym_RPAREN, - STATE(8344), 1, + STATE(6668), 1, sym_gnu_asm_output_operand_list, - [290269] = 4, + [245242] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11547), 1, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(11012), 1, + anon_sym_GT2, + STATE(6695), 1, + aux_sym_template_argument_list_repeat1, + [245255] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10584), 1, anon_sym_COLON, - ACTIONS(12188), 1, + ACTIONS(11014), 1, anon_sym_RPAREN, - STATE(8345), 1, + STATE(6669), 1, sym_gnu_asm_input_operand_list, - [290282] = 3, + [245268] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12192), 1, - anon_sym_RPAREN, - ACTIONS(12190), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [290293] = 4, + ACTIONS(4639), 1, + anon_sym_LBRACE, + ACTIONS(10143), 1, + anon_sym_COLON_COLON, + STATE(845), 1, + sym_declaration_list, + [245281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12194), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12196), 1, - anon_sym_RBRACE, - STATE(8030), 1, - aux_sym_enumerator_list_repeat1, - [290306] = 4, + ACTIONS(11016), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [245294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11527), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12198), 1, - anon_sym_RBRACK_RBRACK, - STATE(8300), 1, - aux_sym_attribute_declaration_repeat1, - [290319] = 4, + ACTIONS(11018), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [245307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, - sym_identifier, - ACTIONS(12196), 1, - anon_sym_RBRACE, - STATE(8783), 1, - sym_enumerator, - [290332] = 4, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(11020), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [245320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, + ACTIONS(7198), 1, anon_sym_COMMA, - ACTIONS(7797), 1, + ACTIONS(11022), 1, anon_sym_RPAREN, - STATE(8016), 1, + STATE(6698), 1, aux_sym_argument_list_repeat1, - [290345] = 4, + [245333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11547), 1, + ACTIONS(7198), 1, + anon_sym_COMMA, + ACTIONS(7430), 1, + anon_sym_RPAREN, + STATE(6619), 1, + aux_sym_argument_list_repeat1, + [245346] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7468), 1, + anon_sym_RPAREN, + ACTIONS(11024), 1, + anon_sym_COMMA, + STATE(6698), 1, + aux_sym_argument_list_repeat1, + [245359] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11027), 1, + anon_sym_COMMA, + ACTIONS(11029), 1, + anon_sym_RPAREN, + STATE(6590), 1, + aux_sym_preproc_params_repeat1, + [245372] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10594), 1, + anon_sym_COMMA, + ACTIONS(11031), 1, + anon_sym_RBRACK_RBRACK, + STATE(6818), 1, + aux_sym_attribute_declaration_repeat1, + [245385] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10584), 1, anon_sym_COLON, - ACTIONS(12200), 1, + ACTIONS(11033), 1, anon_sym_RPAREN, - STATE(8397), 1, + STATE(6737), 1, sym_gnu_asm_input_operand_list, - [290358] = 4, + [245398] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9625), 1, + ACTIONS(9127), 1, anon_sym_COLON, - ACTIONS(9659), 1, + ACTIONS(9157), 1, anon_sym_RPAREN, - STATE(8399), 1, + STATE(6740), 1, sym_gnu_asm_output_operand_list, - [290371] = 4, + [245411] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(11035), 1, anon_sym_COMMA, - ACTIONS(12202), 1, - anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [290384] = 4, + ACTIONS(11037), 1, + anon_sym_RBRACE, + STATE(6671), 1, + aux_sym_enumerator_list_repeat1, + [245424] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12204), 1, + ACTIONS(10067), 1, sym_identifier, - STATE(3328), 1, - sym_template_type, - STATE(3409), 1, - sym_template_function, - [290397] = 4, + ACTIONS(11037), 1, + anon_sym_RBRACE, + STATE(6997), 1, + sym_enumerator, + [245437] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4037), 1, + anon_sym_RBRACE, + ACTIONS(11039), 1, + anon_sym_COMMA, + STATE(6679), 1, + aux_sym_initializer_list_repeat1, + [245450] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8554), 1, + anon_sym_COMMA, + ACTIONS(11041), 1, + anon_sym_RPAREN, + STATE(6595), 1, + aux_sym_preproc_argument_list_repeat1, + [245463] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7198), 1, + anon_sym_COMMA, + ACTIONS(7388), 1, + anon_sym_RPAREN, + STATE(6698), 1, + aux_sym_argument_list_repeat1, + [245476] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12206), 1, + ACTIONS(11043), 1, anon_sym_GT2, - STATE(8078), 1, + STATE(6644), 1, aux_sym_template_argument_list_repeat1, - [290410] = 4, + [245489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12208), 1, + ACTIONS(11045), 1, anon_sym_GT2, - STATE(8078), 1, + STATE(6644), 1, aux_sym_template_argument_list_repeat1, - [290423] = 4, + [245502] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, - anon_sym_LPAREN2, - ACTIONS(12210), 1, - anon_sym_constexpr, - STATE(161), 1, - sym_condition_clause, - [290436] = 3, + ACTIONS(7272), 1, + anon_sym_COMMA, + ACTIONS(11047), 1, + anon_sym_RBRACK, + STATE(6600), 1, + aux_sym_subscript_argument_list_repeat1, + [245515] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10988), 1, + anon_sym_catch, + STATE(443), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [245526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12110), 1, + ACTIONS(11049), 1, anon_sym_catch, - STATE(2374), 2, + STATE(577), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [290447] = 4, + [245537] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11051), 1, + sym_identifier, + STATE(2573), 1, + sym_template_type, + STATE(2688), 1, + sym_template_function, + [245550] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12212), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [290460] = 4, + ACTIONS(11053), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [245563] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, - anon_sym_LPAREN2, - ACTIONS(12214), 1, - anon_sym_constexpr, - STATE(193), 1, - sym_condition_clause, - [290473] = 3, + ACTIONS(11055), 1, + sym_identifier, + STATE(1815), 1, + sym_template_type, + STATE(3121), 1, + sym_template_function, + [245576] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10586), 1, + anon_sym_COMMA, + ACTIONS(11057), 1, + anon_sym_RPAREN, + STATE(6623), 1, + aux_sym_parameter_list_repeat1, + [245589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12130), 1, + ACTIONS(10973), 1, anon_sym_catch, - STATE(381), 2, + STATE(1925), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [290484] = 4, + [245600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12216), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [290497] = 4, + ACTIONS(11059), 1, + anon_sym_GT2, + STATE(6721), 1, + aux_sym_template_argument_list_repeat1, + [245613] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12218), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [290510] = 4, + ACTIONS(11061), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [245626] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12220), 1, - anon_sym_SEMI, - STATE(8358), 1, - aux_sym_declaration_repeat1, - [290523] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11597), 1, - anon_sym_COLON, - ACTIONS(12222), 1, - anon_sym_RPAREN, - STATE(9751), 1, - sym_gnu_asm_goto_list, - [290536] = 4, + ACTIONS(11063), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [245639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12224), 1, + ACTIONS(11065), 1, anon_sym_GT2, - STATE(8360), 1, + STATE(6644), 1, aux_sym_template_argument_list_repeat1, - [290549] = 4, + [245652] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10067), 1, + sym_identifier, + ACTIONS(11067), 1, + anon_sym_RBRACE, + STATE(6997), 1, + sym_enumerator, + [245665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, + ACTIONS(11069), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11071), 2, anon_sym_COMMA, - ACTIONS(7793), 1, - anon_sym_RPAREN, - STATE(8016), 1, - aux_sym_argument_list_repeat1, - [290562] = 4, + anon_sym_LBRACE, + [245676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11543), 1, - anon_sym_COLON, - ACTIONS(12226), 1, - anon_sym_RPAREN, - STATE(8430), 1, - sym_gnu_asm_clobber_list, - [290575] = 4, + ACTIONS(11073), 1, + anon_sym_COMMA, + ACTIONS(11075), 1, + anon_sym_LBRACE, + STATE(6615), 1, + aux_sym_field_initializer_list_repeat1, + [245689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9625), 1, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(11077), 1, + anon_sym_GT2, + STATE(6682), 1, + aux_sym_template_argument_list_repeat1, + [245702] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9127), 1, anon_sym_COLON, - ACTIONS(9633), 1, + ACTIONS(9182), 1, anon_sym_RPAREN, - STATE(8364), 1, + STATE(6691), 1, sym_gnu_asm_output_operand_list, - [290588] = 4, + [245715] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4594), 1, + anon_sym_COLON_COLON, + ACTIONS(5896), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + [245726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, + ACTIONS(11079), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11081), 2, anon_sym_COMMA, - ACTIONS(12228), 1, - anon_sym_RPAREN, - STATE(8016), 1, - aux_sym_argument_list_repeat1, - [290601] = 4, + anon_sym_LBRACE, + [245737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, - sym_identifier, - ACTIONS(12230), 1, - anon_sym_RBRACE, - STATE(8783), 1, - sym_enumerator, - [290614] = 4, + ACTIONS(10800), 1, + anon_sym_catch, + STATE(335), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [245748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(5102), 1, anon_sym_COMMA, - ACTIONS(12232), 1, - anon_sym_SEMI, - STATE(8236), 1, - aux_sym_declaration_repeat1, - [290627] = 4, + ACTIONS(11083), 1, + anon_sym_RBRACK, + STATE(6778), 1, + aux_sym_structured_binding_declarator_repeat1, + [245761] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4256), 1, - anon_sym_RBRACE, - ACTIONS(12234), 1, + ACTIONS(11085), 1, anon_sym_COMMA, - STATE(8020), 1, - aux_sym_initializer_list_repeat1, - [290640] = 4, + ACTIONS(11087), 1, + anon_sym_RBRACE, + STATE(6703), 1, + aux_sym_enumerator_list_repeat1, + [245774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, - sym_identifier, - ACTIONS(12236), 1, - anon_sym_RBRACE, - STATE(8783), 1, - sym_enumerator, - [290653] = 4, + ACTIONS(8646), 1, + anon_sym_COMMA, + ACTIONS(11089), 1, + anon_sym_SEMI, + STATE(6734), 1, + aux_sym__declaration_declarator_repeat1, + [245787] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12238), 1, + ACTIONS(7330), 1, anon_sym_COMMA, - ACTIONS(12240), 1, + ACTIONS(7332), 1, anon_sym_RBRACE, - STATE(8366), 1, - aux_sym_enumerator_list_repeat1, - [290666] = 4, + STATE(6705), 1, + aux_sym_initializer_list_repeat1, + [245800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12236), 1, - anon_sym_RBRACE, - ACTIONS(12242), 1, + ACTIONS(11091), 1, anon_sym_COMMA, - STATE(8030), 1, - aux_sym_enumerator_list_repeat1, - [290679] = 4, - ACTIONS(9067), 1, + ACTIONS(11094), 1, + anon_sym_SEMI, + STATE(6734), 1, + aux_sym__declaration_declarator_repeat1, + [245813] = 4, + ACTIONS(8584), 1, sym_comment, - ACTIONS(11736), 1, + ACTIONS(10592), 1, anon_sym_LPAREN2, - ACTIONS(12244), 1, + ACTIONS(11096), 1, aux_sym_preproc_include_token2, - STATE(9545), 1, + STATE(7239), 1, sym_preproc_argument_list, - [290692] = 4, + [245826] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11543), 1, + ACTIONS(11098), 1, + sym_identifier, + STATE(2517), 1, + sym_template_type, + STATE(3386), 1, + sym_template_function, + [245839] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10672), 1, anon_sym_COLON, - ACTIONS(12246), 1, + ACTIONS(11100), 1, anon_sym_RPAREN, - STATE(8421), 1, + STATE(6748), 1, sym_gnu_asm_clobber_list, - [290705] = 4, + [245852] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9127), 1, + anon_sym_COLON, + ACTIONS(9145), 1, + anon_sym_RPAREN, + STATE(6653), 1, + sym_gnu_asm_output_operand_list, + [245865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, + ACTIONS(7198), 1, anon_sym_COMMA, - ACTIONS(7791), 1, + ACTIONS(7334), 1, anon_sym_RPAREN, - STATE(8369), 1, + STATE(6707), 1, aux_sym_argument_list_repeat1, - [290718] = 4, + [245878] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11547), 1, + ACTIONS(10584), 1, anon_sym_COLON, - ACTIONS(12248), 1, + ACTIONS(11102), 1, anon_sym_RPAREN, - STATE(8116), 1, + STATE(6749), 1, sym_gnu_asm_input_operand_list, - [290731] = 4, + [245891] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11527), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12250), 1, - anon_sym_RBRACK_RBRACK, - STATE(8193), 1, - aux_sym_attribute_declaration_repeat1, - [290744] = 3, + ACTIONS(11104), 1, + anon_sym_GT2, + STATE(6744), 1, + aux_sym_template_argument_list_repeat1, + [245904] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(11106), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [245917] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(11108), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [245930] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(11110), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [245943] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10608), 1, + anon_sym_LPAREN2, + ACTIONS(11112), 1, + anon_sym_constexpr, + STATE(206), 1, + sym_condition_clause, + [245956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11666), 1, + ACTIONS(11049), 1, anon_sym_catch, - STATE(605), 2, + STATE(416), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [290755] = 4, + [245967] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11597), 1, + ACTIONS(10594), 1, + anon_sym_COMMA, + ACTIONS(11114), 1, + anon_sym_RBRACK_RBRACK, + STATE(6818), 1, + aux_sym_attribute_declaration_repeat1, + [245980] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10664), 1, anon_sym_COLON, - ACTIONS(12252), 1, + ACTIONS(11116), 1, anon_sym_RPAREN, - STATE(9095), 1, + STATE(7474), 1, sym_gnu_asm_goto_list, - [290768] = 4, + [245993] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, - sym_identifier, - ACTIONS(12254), 1, - anon_sym_RBRACE, - STATE(8783), 1, - sym_enumerator, - [290781] = 4, + ACTIONS(10672), 1, + anon_sym_COLON, + ACTIONS(11118), 1, + anon_sym_RPAREN, + STATE(6754), 1, + sym_gnu_asm_clobber_list, + [246006] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10594), 1, + anon_sym_COMMA, + ACTIONS(11120), 1, + anon_sym_RBRACK_RBRACK, + STATE(6700), 1, + aux_sym_attribute_declaration_repeat1, + [246019] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11122), 1, + anon_sym_COMMA, + ACTIONS(11124), 1, + anon_sym_RPAREN, + STATE(6628), 1, + aux_sym_requires_parameter_list_repeat1, + [246032] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12256), 1, + ACTIONS(11126), 1, sym_identifier, - STATE(3328), 1, - sym_template_type, - STATE(6915), 1, + STATE(2557), 1, sym_template_function, - [290794] = 4, + STATE(2573), 1, + sym_template_type, + [246045] = 4, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(10592), 1, + anon_sym_LPAREN2, + ACTIONS(11128), 1, + aux_sym_preproc_include_token2, + STATE(7239), 1, + sym_preproc_argument_list, + [246058] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10664), 1, + anon_sym_COLON, + ACTIONS(11130), 1, + anon_sym_RPAREN, + STATE(7483), 1, + sym_gnu_asm_goto_list, + [246071] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(7364), 1, anon_sym_COMMA, - ACTIONS(12258), 1, + ACTIONS(11132), 1, + anon_sym_RPAREN, + STATE(6574), 1, + aux_sym_generic_expression_repeat1, + [246084] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10608), 1, + anon_sym_LPAREN2, + ACTIONS(11134), 1, + anon_sym_constexpr, + STATE(218), 1, + sym_condition_clause, + [246097] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11138), 1, + anon_sym_COLON_COLON, + ACTIONS(11136), 2, anon_sym_SEMI, - STATE(8381), 1, - aux_sym_declaration_repeat1, - [290807] = 3, + anon_sym_LBRACE, + [246108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12260), 1, - anon_sym_catch, - STATE(1521), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [290818] = 4, + ACTIONS(11140), 1, + sym_identifier, + STATE(2557), 1, + sym_template_function, + STATE(2573), 1, + sym_template_type, + [246121] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11527), 1, + ACTIONS(10594), 1, anon_sym_COMMA, - ACTIONS(12262), 1, + ACTIONS(11142), 1, anon_sym_RBRACK_RBRACK, - STATE(8347), 1, + STATE(6818), 1, aux_sym_attribute_declaration_repeat1, - [290831] = 4, + [246134] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11547), 1, - anon_sym_COLON, - ACTIONS(12264), 1, + ACTIONS(10586), 1, + anon_sym_COMMA, + ACTIONS(11144), 1, anon_sym_RPAREN, - STATE(8028), 1, - sym_gnu_asm_input_operand_list, - [290844] = 4, + STATE(6623), 1, + aux_sym_parameter_list_repeat1, + [246147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, + ACTIONS(7198), 1, anon_sym_COMMA, - ACTIONS(12266), 1, + ACTIONS(7408), 1, anon_sym_RPAREN, - STATE(8016), 1, + STATE(6812), 1, aux_sym_argument_list_repeat1, - [290857] = 4, + [246160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9625), 1, - anon_sym_COLON, - ACTIONS(9696), 1, - anon_sym_RPAREN, - STATE(8029), 1, - sym_gnu_asm_output_operand_list, - [290870] = 4, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(11146), 1, + anon_sym_GT2, + STATE(6765), 1, + aux_sym_template_argument_list_repeat1, + [246173] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11527), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12268), 1, - anon_sym_RBRACK_RBRACK, - STATE(8400), 1, - aux_sym_attribute_declaration_repeat1, - [290883] = 4, + ACTIONS(11148), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [246186] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12270), 1, + ACTIONS(11150), 1, anon_sym_GT2, - STATE(8078), 1, + STATE(6644), 1, aux_sym_template_argument_list_repeat1, - [290896] = 4, + [246199] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11527), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12272), 1, - anon_sym_RBRACK_RBRACK, - STATE(8136), 1, - aux_sym_attribute_declaration_repeat1, - [290909] = 4, + ACTIONS(11152), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [246212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(10828), 1, anon_sym_COMMA, - ACTIONS(12274), 1, + ACTIONS(11154), 1, anon_sym_GT2, - STATE(8078), 1, - aux_sym_template_argument_list_repeat1, - [290922] = 4, + STATE(6637), 1, + aux_sym_template_parameter_list_repeat1, + [246225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7650), 1, + ACTIONS(11156), 3, anon_sym_COMMA, - ACTIONS(12276), 1, anon_sym_RPAREN, - STATE(8277), 1, - aux_sym_generic_expression_repeat1, - [290935] = 4, + anon_sym_GT2, + [246234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, - anon_sym_LPAREN2, - ACTIONS(12278), 1, - anon_sym_constexpr, - STATE(288), 1, - sym_condition_clause, - [290948] = 4, + ACTIONS(11156), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [246243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7650), 1, + ACTIONS(11158), 1, + sym_identifier, + ACTIONS(11160), 2, anon_sym_COMMA, - ACTIONS(12280), 1, - anon_sym_RPAREN, - STATE(8277), 1, - aux_sym_generic_expression_repeat1, - [290961] = 4, + anon_sym_GT2, + [246254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6187), 1, - anon_sym_SEMI, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(2623), 1, - sym_template_argument_list, - [290974] = 4, - ACTIONS(9067), 1, + ACTIONS(4027), 1, + anon_sym_RBRACE, + ACTIONS(11162), 1, + anon_sym_COMMA, + STATE(6679), 1, + aux_sym_initializer_list_repeat1, + [246267] = 4, + ACTIONS(8584), 1, sym_comment, - ACTIONS(11736), 1, + ACTIONS(10592), 1, anon_sym_LPAREN2, - ACTIONS(12282), 1, + ACTIONS(11164), 1, aux_sym_preproc_include_token2, - STATE(9545), 1, + STATE(7239), 1, sym_preproc_argument_list, - [290987] = 4, + [246280] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12284), 1, + ACTIONS(11166), 1, anon_sym_GT2, - STATE(8078), 1, + STATE(6644), 1, aux_sym_template_argument_list_repeat1, - [291000] = 4, + [246293] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11597), 1, - anon_sym_COLON, - ACTIONS(12286), 1, - anon_sym_RPAREN, - STATE(9712), 1, - sym_gnu_asm_goto_list, - [291013] = 4, + ACTIONS(10594), 1, + anon_sym_COMMA, + ACTIONS(11168), 1, + anon_sym_RBRACK_RBRACK, + STATE(6747), 1, + aux_sym_attribute_declaration_repeat1, + [246306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9167), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12288), 1, - anon_sym_SEMI, - STATE(8111), 1, - aux_sym_declaration_repeat1, - [291026] = 4, + ACTIONS(11170), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [246319] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11554), 1, + ACTIONS(7396), 1, anon_sym_COMMA, - ACTIONS(12290), 1, - anon_sym_RPAREN, - STATE(8095), 1, - aux_sym_parameter_list_repeat1, - [291039] = 3, + ACTIONS(11172), 1, + anon_sym_RBRACK, + STATE(6807), 1, + aux_sym_lambda_capture_specifier_repeat1, + [246332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11834), 1, - anon_sym_catch, - STATE(279), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [291050] = 4, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(11174), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [246345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11597), 1, + ACTIONS(10584), 1, anon_sym_COLON, - ACTIONS(12292), 1, + ACTIONS(11176), 1, anon_sym_RPAREN, - STATE(9730), 1, - sym_gnu_asm_goto_list, - [291063] = 4, + STATE(6655), 1, + sym_gnu_asm_input_operand_list, + [246358] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7654), 1, + ACTIONS(5102), 1, anon_sym_COMMA, - ACTIONS(12294), 1, + ACTIONS(11178), 1, anon_sym_RBRACK, - STATE(8103), 1, - aux_sym_subscript_argument_list_repeat1, - [291076] = 4, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(11736), 1, - anon_sym_LPAREN2, - ACTIONS(12296), 1, - aux_sym_preproc_include_token2, - STATE(9545), 1, - sym_preproc_argument_list, - [291089] = 4, + STATE(6808), 1, + aux_sym_structured_binding_declarator_repeat1, + [246371] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, - anon_sym_LPAREN2, - ACTIONS(12298), 1, - anon_sym_constexpr, - STATE(204), 1, - sym_condition_clause, - [291102] = 4, + ACTIONS(11180), 1, + sym_identifier, + STATE(2573), 1, + sym_template_type, + STATE(3241), 1, + sym_template_function, + [246384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7650), 1, + ACTIONS(11184), 1, + anon_sym_EQ, + ACTIONS(11182), 2, anon_sym_COMMA, - ACTIONS(12300), 1, - anon_sym_RPAREN, - STATE(8277), 1, - aux_sym_generic_expression_repeat1, - [291115] = 4, + anon_sym_RBRACE, + [246395] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11597), 1, - anon_sym_COLON, - ACTIONS(12302), 1, - anon_sym_RPAREN, - STATE(9747), 1, - sym_gnu_asm_goto_list, - [291128] = 4, + ACTIONS(10594), 1, + anon_sym_COMMA, + ACTIONS(11186), 1, + anon_sym_RBRACK_RBRACK, + STATE(6795), 1, + aux_sym_attribute_declaration_repeat1, + [246408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11547), 1, - anon_sym_COLON, - ACTIONS(12304), 1, - anon_sym_RPAREN, - STATE(8348), 1, - sym_gnu_asm_input_operand_list, - [291141] = 4, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(11188), 1, + anon_sym_GT2, + STATE(6785), 1, + aux_sym_template_argument_list_repeat1, + [246421] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9035), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - ACTIONS(12306), 1, - anon_sym_RPAREN, - STATE(8108), 1, - aux_sym_preproc_argument_list_repeat1, - [291154] = 3, + ACTIONS(11190), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [246434] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 1, - anon_sym_LBRACE, - STATE(839), 1, - sym_compound_statement, - [291164] = 2, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(11192), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [246447] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12308), 2, + ACTIONS(7210), 1, anon_sym_COMMA, - anon_sym_SEMI, - [291172] = 3, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12310), 1, - aux_sym_preproc_include_token2, - ACTIONS(12312), 1, - sym_preproc_arg, - [291182] = 3, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12314), 1, - aux_sym_preproc_include_token2, - ACTIONS(12316), 1, - sym_preproc_arg, - [291192] = 3, + ACTIONS(11194), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [246460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12318), 1, - anon_sym_LPAREN2, - STATE(9711), 1, - sym_parenthesized_expression, - [291202] = 3, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12320), 1, - aux_sym_preproc_include_token2, - ACTIONS(12322), 1, - sym_preproc_arg, - [291212] = 3, + ACTIONS(7194), 1, + anon_sym_RBRACE, + ACTIONS(7372), 1, + anon_sym_COMMA, + STATE(6801), 1, + aux_sym_initializer_list_repeat1, + [246473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12324), 1, + ACTIONS(11196), 1, sym_identifier, - STATE(8407), 1, - sym_attribute, - [291222] = 3, + STATE(2557), 1, + sym_template_function, + STATE(2573), 1, + sym_template_type, + [246486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7218), 1, - anon_sym_LPAREN2, - STATE(9615), 1, - sym_argument_list, - [291232] = 3, + ACTIONS(7198), 1, + anon_sym_COMMA, + ACTIONS(11198), 1, + anon_sym_RPAREN, + STATE(6698), 1, + aux_sym_argument_list_repeat1, + [246499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12326), 1, - anon_sym_LT, - STATE(4287), 1, - sym_template_argument_list, - [291242] = 3, + ACTIONS(11200), 1, + anon_sym_COMMA, + ACTIONS(11202), 1, + anon_sym_RBRACE, + STATE(6814), 1, + aux_sym_enumerator_list_repeat1, + [246512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - STATE(8470), 1, - sym_parameter_list, - [291252] = 3, + ACTIONS(4641), 1, + anon_sym_LBRACE, + ACTIONS(10143), 1, + anon_sym_COLON_COLON, + STATE(954), 1, + sym_declaration_list, + [246525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, - anon_sym_LPAREN2, - STATE(8492), 1, - sym_condition_clause, - [291262] = 3, + ACTIONS(9127), 1, + anon_sym_COLON, + ACTIONS(9180), 1, + anon_sym_RPAREN, + STATE(6777), 1, + sym_gnu_asm_output_operand_list, + [246538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, - anon_sym_LPAREN2, - STATE(208), 1, - sym_condition_clause, - [291272] = 3, - ACTIONS(9067), 1, + ACTIONS(10085), 1, + anon_sym_COMMA, + ACTIONS(10494), 1, + anon_sym_LBRACE, + STATE(6667), 1, + aux_sym_base_class_clause_repeat1, + [246551] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12328), 1, - aux_sym_preproc_include_token2, - ACTIONS(12330), 1, - sym_preproc_arg, - [291282] = 3, + ACTIONS(10988), 1, + anon_sym_catch, + STATE(414), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [246562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(8424), 1, - sym_compound_statement, - [291292] = 3, + ACTIONS(11204), 1, + sym_identifier, + STATE(2557), 1, + sym_template_function, + STATE(2573), 1, + sym_template_type, + [246575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(4113), 1, - sym_initializer_list, - [291302] = 2, - ACTIONS(9067), 1, + ACTIONS(10594), 1, + anon_sym_COMMA, + ACTIONS(11206), 1, + anon_sym_RBRACK_RBRACK, + STATE(6818), 1, + aux_sym_attribute_declaration_repeat1, + [246588] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12332), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [291310] = 3, + ACTIONS(10085), 1, + anon_sym_COMMA, + ACTIONS(10494), 1, + anon_sym_LBRACE, + STATE(6687), 1, + aux_sym_base_class_clause_repeat1, + [246601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12334), 1, - anon_sym_LPAREN2, - ACTIONS(12336), 1, - sym_raw_string_delimiter, - [291320] = 3, + ACTIONS(7364), 1, + anon_sym_COMMA, + ACTIONS(11208), 1, + anon_sym_RPAREN, + STATE(6574), 1, + aux_sym_generic_expression_repeat1, + [246614] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12338), 1, - anon_sym_LPAREN2, - ACTIONS(12340), 1, - sym_raw_string_delimiter, - [291330] = 3, + ACTIONS(10664), 1, + anon_sym_COLON, + ACTIONS(11210), 1, + anon_sym_RPAREN, + STATE(7663), 1, + sym_gnu_asm_goto_list, + [246627] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12342), 1, + ACTIONS(11212), 1, sym_identifier, - STATE(3090), 1, + STATE(2557), 1, + sym_template_function, + STATE(2573), 1, sym_template_type, - [291340] = 3, + [246640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12344), 1, - anon_sym_LPAREN2, - ACTIONS(12346), 1, - sym_raw_string_delimiter, - [291350] = 3, + ACTIONS(10067), 1, + sym_identifier, + ACTIONS(11214), 1, + anon_sym_RBRACE, + STATE(6997), 1, + sym_enumerator, + [246653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12348), 1, - anon_sym_LPAREN2, - ACTIONS(12350), 1, - sym_raw_string_delimiter, - [291360] = 3, + ACTIONS(4001), 1, + anon_sym_RBRACE, + ACTIONS(11216), 1, + anon_sym_COMMA, + STATE(6679), 1, + aux_sym_initializer_list_repeat1, + [246666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12352), 1, - anon_sym_LPAREN2, - ACTIONS(12354), 1, - sym_raw_string_delimiter, - [291370] = 3, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(11218), 1, + anon_sym_GT2, + STATE(6805), 1, + aux_sym_template_argument_list_repeat1, + [246679] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12356), 1, - anon_sym_LPAREN2, - ACTIONS(12358), 1, - sym_raw_string_delimiter, - [291380] = 3, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(11220), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [246692] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 1, - anon_sym_LBRACE, - STATE(3336), 1, - sym_field_declaration_list, - [291390] = 3, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(11222), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [246705] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12360), 1, - anon_sym_LPAREN2, - ACTIONS(12362), 1, - sym_raw_string_delimiter, - [291400] = 3, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(11224), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [246718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12364), 1, - anon_sym_LPAREN2, - ACTIONS(12366), 1, - sym_raw_string_delimiter, - [291410] = 3, + ACTIONS(11226), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [246727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(8401), 1, - sym_compound_statement, - [291420] = 3, + ACTIONS(7456), 1, + anon_sym_RBRACK, + ACTIONS(11228), 1, + anon_sym_COMMA, + STATE(6807), 1, + aux_sym_lambda_capture_specifier_repeat1, + [246740] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12368), 1, - anon_sym_LPAREN2, - ACTIONS(12370), 1, - sym_raw_string_delimiter, - [291430] = 3, + ACTIONS(11231), 1, + anon_sym_COMMA, + ACTIONS(11234), 1, + anon_sym_RBRACK, + STATE(6808), 1, + aux_sym_structured_binding_declarator_repeat1, + [246753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12372), 1, - anon_sym_LPAREN2, - ACTIONS(12374), 1, - sym_raw_string_delimiter, - [291440] = 3, + ACTIONS(10672), 1, + anon_sym_COLON, + ACTIONS(11236), 1, + anon_sym_RPAREN, + STATE(6798), 1, + sym_gnu_asm_clobber_list, + [246766] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12376), 1, - anon_sym_LPAREN2, - ACTIONS(12378), 1, - sym_raw_string_delimiter, - [291450] = 3, + ACTIONS(10664), 1, + anon_sym_COLON, + ACTIONS(11238), 1, + anon_sym_RPAREN, + STATE(7662), 1, + sym_gnu_asm_goto_list, + [246779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12380), 1, - anon_sym_LPAREN2, - ACTIONS(12382), 1, - sym_raw_string_delimiter, - [291460] = 3, + ACTIONS(7198), 1, + anon_sym_COMMA, + ACTIONS(7308), 1, + anon_sym_RPAREN, + STATE(6851), 1, + aux_sym_argument_list_repeat1, + [246792] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12384), 1, - anon_sym_LPAREN2, - ACTIONS(12386), 1, - sym_raw_string_delimiter, - [291470] = 3, + ACTIONS(7198), 1, + anon_sym_COMMA, + ACTIONS(7418), 1, + anon_sym_RPAREN, + STATE(6698), 1, + aux_sym_argument_list_repeat1, + [246805] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10987), 1, - anon_sym_COLON_COLON, - ACTIONS(12388), 1, - anon_sym_SEMI, - [291480] = 3, + ACTIONS(11240), 1, + sym_identifier, + STATE(2573), 1, + sym_template_type, + STATE(3386), 1, + sym_template_function, + [246818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_LBRACE, - STATE(4809), 1, - sym_initializer_list, - [291490] = 3, + ACTIONS(11214), 1, + anon_sym_RBRACE, + ACTIONS(11242), 1, + anon_sym_COMMA, + STATE(6671), 1, + aux_sym_enumerator_list_repeat1, + [246831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 1, + ACTIONS(4643), 1, anon_sym_LBRACE, - STATE(3341), 1, - sym_field_declaration_list, - [291500] = 3, + ACTIONS(10143), 1, + anon_sym_COLON_COLON, + STATE(782), 1, + sym_declaration_list, + [246844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 1, - anon_sym_LBRACE, - STATE(3342), 1, - sym_field_declaration_list, - [291510] = 3, + ACTIONS(10584), 1, + anon_sym_COLON, + ACTIONS(11244), 1, + anon_sym_RPAREN, + STATE(6809), 1, + sym_gnu_asm_input_operand_list, + [246857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, - anon_sym_LPAREN2, - STATE(308), 1, - sym_condition_clause, - [291520] = 3, + ACTIONS(10672), 1, + anon_sym_COLON, + ACTIONS(11246), 1, + anon_sym_RPAREN, + STATE(6810), 1, + sym_gnu_asm_clobber_list, + [246870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_LBRACE, - STATE(360), 1, - sym_compound_statement, - [291530] = 3, + ACTIONS(11248), 1, + anon_sym_COMMA, + ACTIONS(11251), 1, + anon_sym_RBRACK_RBRACK, + STATE(6818), 1, + aux_sym_attribute_declaration_repeat1, + [246883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12390), 1, - anon_sym_LPAREN2, - ACTIONS(12392), 1, - sym_raw_string_delimiter, - [291540] = 3, + ACTIONS(10067), 1, + sym_identifier, + ACTIONS(11253), 1, + anon_sym_RBRACE, + STATE(6997), 1, + sym_enumerator, + [246896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12394), 1, + ACTIONS(7198), 1, + anon_sym_COMMA, + ACTIONS(11255), 1, + anon_sym_RPAREN, + STATE(6698), 1, + aux_sym_argument_list_repeat1, + [246909] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11257), 1, sym_identifier, - STATE(3036), 1, + STATE(2573), 1, sym_template_type, - [291550] = 3, + STATE(2688), 1, + sym_template_function, + [246922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12396), 1, - sym_identifier, - ACTIONS(12398), 1, - anon_sym_LPAREN2, - [291560] = 3, + ACTIONS(7318), 1, + anon_sym_COMMA, + ACTIONS(7320), 1, + anon_sym_RBRACE, + STATE(6770), 1, + aux_sym_initializer_list_repeat1, + [246935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, - anon_sym_LT, - STATE(2334), 1, - sym_template_argument_list, - [291570] = 3, + ACTIONS(10883), 1, + anon_sym_catch, + STATE(276), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [246946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10833), 1, - sym_identifier, - STATE(3328), 1, - sym_template_type, - [291580] = 3, + ACTIONS(11259), 1, + anon_sym_COMMA, + ACTIONS(11261), 1, + anon_sym_RBRACE, + STATE(6848), 1, + aux_sym_enumerator_list_repeat1, + [246959] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11027), 1, + anon_sym_COMMA, + ACTIONS(11263), 1, + anon_sym_RPAREN, + STATE(6699), 1, + aux_sym_preproc_params_repeat1, + [246972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12400), 1, - anon_sym_default, - ACTIONS(12402), 1, - anon_sym_delete, - [291590] = 3, + ACTIONS(7272), 1, + anon_sym_COMMA, + ACTIONS(7438), 1, + anon_sym_RBRACK, + STATE(6710), 1, + aux_sym_subscript_argument_list_repeat1, + [246985] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12404), 1, - anon_sym_LPAREN2, - ACTIONS(12406), 1, - sym_raw_string_delimiter, - [291600] = 3, + ACTIONS(11265), 1, + sym_identifier, + STATE(2557), 1, + sym_template_function, + STATE(2573), 1, + sym_template_type, + [246998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5726), 1, - anon_sym_LBRACE, - STATE(3317), 1, - sym_field_declaration_list, - [291610] = 3, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(11267), 1, + anon_sym_GT2, + STATE(6772), 1, + aux_sym_template_argument_list_repeat1, + [247011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7218), 1, - anon_sym_LPAREN2, - STATE(9512), 1, - sym_argument_list, - [291620] = 3, + ACTIONS(9127), 1, + anon_sym_COLON, + ACTIONS(9205), 1, + anon_sym_RPAREN, + STATE(6838), 1, + sym_gnu_asm_output_operand_list, + [247024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8500), 1, - anon_sym_LBRACE, - STATE(5556), 1, - sym_field_declaration_list, - [291630] = 3, + ACTIONS(11049), 1, + anon_sym_catch, + STATE(559), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [247035] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, - anon_sym_LBRACE, - STATE(3721), 1, - sym_field_declaration_list, - [291640] = 2, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(11269), 1, + anon_sym_GT2, + STATE(6833), 1, + aux_sym_template_argument_list_repeat1, + [247048] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4525), 2, + ACTIONS(10828), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [291648] = 3, + ACTIONS(11271), 1, + anon_sym_GT2, + STATE(6766), 1, + aux_sym_template_parameter_list_repeat1, + [247061] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7857), 1, - anon_sym_RBRACK, - ACTIONS(12408), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - [291658] = 3, + ACTIONS(11273), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [247074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, - anon_sym_LBRACE, - STATE(4436), 1, - sym_initializer_list, - [291668] = 3, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(11275), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [247087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, + ACTIONS(10143), 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, - STATE(3717), 1, - sym_field_declaration_list, - [291678] = 3, + [247096] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, - anon_sym_LPAREN2, - STATE(287), 1, - sym_condition_clause, - [291688] = 3, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(11277), 1, + anon_sym_GT2, + STATE(6644), 1, + aux_sym_template_argument_list_repeat1, + [247109] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7218), 1, - anon_sym_LPAREN2, - STATE(9325), 1, - sym_argument_list, - [291698] = 3, + ACTIONS(9127), 1, + anon_sym_COLON, + ACTIONS(9178), 1, + anon_sym_RPAREN, + STATE(6816), 1, + sym_gnu_asm_output_operand_list, + [247122] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11483), 1, - anon_sym_LBRACE, - STATE(2356), 1, - sym_requirement_seq, - [291708] = 3, + ACTIONS(10584), 1, + anon_sym_COLON, + ACTIONS(11279), 1, + anon_sym_RPAREN, + STATE(6817), 1, + sym_gnu_asm_input_operand_list, + [247135] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, + ACTIONS(11073), 1, + anon_sym_COMMA, + ACTIONS(11281), 1, anon_sym_LBRACE, - STATE(3716), 1, - sym_field_declaration_list, - [291718] = 3, + STATE(6724), 1, + aux_sym_field_initializer_list_repeat1, + [247148] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4500), 1, - sym_field_declaration_list, - [291728] = 3, + ACTIONS(10586), 1, + anon_sym_COMMA, + ACTIONS(11283), 1, + anon_sym_RPAREN, + STATE(6760), 1, + aux_sym_parameter_list_repeat1, + [247161] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, + ACTIONS(10608), 1, anon_sym_LPAREN2, - STATE(203), 1, + ACTIONS(11285), 1, + anon_sym_constexpr, + STATE(247), 1, sym_condition_clause, - [291738] = 3, + [247174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(11138), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(982), 1, - sym_compound_statement, - [291748] = 3, + [247185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12410), 1, - sym_identifier, - ACTIONS(12412), 1, - anon_sym_LPAREN2, - [291758] = 3, + ACTIONS(10883), 1, + anon_sym_catch, + STATE(277), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [247196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 1, + ACTIONS(11289), 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, - STATE(3351), 1, - sym_field_declaration_list, - [291768] = 3, + [247205] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 1, - anon_sym_LBRACE, - STATE(3352), 1, - sym_field_declaration_list, - [291778] = 3, + ACTIONS(8646), 1, + anon_sym_COMMA, + ACTIONS(11291), 1, + anon_sym_SEMI, + STATE(6734), 1, + aux_sym__declaration_declarator_repeat1, + [247218] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9790), 1, - anon_sym_LBRACE, - STATE(2507), 1, - sym_compound_statement, - [291788] = 3, + ACTIONS(8646), 1, + anon_sym_COMMA, + ACTIONS(11291), 1, + anon_sym_SEMI, + STATE(6734), 1, + aux_sym__declaration_declarator_repeat1, + [247231] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 1, - anon_sym_LBRACE, - STATE(3354), 1, - sym_field_declaration_list, - [291798] = 3, + ACTIONS(11122), 1, + anon_sym_COMMA, + ACTIONS(11293), 1, + anon_sym_RPAREN, + STATE(6751), 1, + aux_sym_requires_parameter_list_repeat1, + [247244] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12414), 1, - sym_identifier, - STATE(2457), 1, - sym_template_type, - [291808] = 3, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11297), 1, + anon_sym_RBRACE, + STATE(6671), 1, + aux_sym_enumerator_list_repeat1, + [247257] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12416), 1, + ACTIONS(10067), 1, sym_identifier, - STATE(2457), 1, - sym_template_type, - [291818] = 3, + ACTIONS(11297), 1, + anon_sym_RBRACE, + STATE(6997), 1, + sym_enumerator, + [247270] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12418), 1, - sym_identifier, - STATE(3328), 1, - sym_template_type, - [291828] = 3, + ACTIONS(8646), 1, + anon_sym_COMMA, + ACTIONS(11299), 1, + anon_sym_SEMI, + STATE(6732), 1, + aux_sym__declaration_declarator_repeat1, + [247283] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7070), 1, - anon_sym_LT, - STATE(2334), 1, - sym_template_argument_list, - [291838] = 3, + ACTIONS(7198), 1, + anon_sym_COMMA, + ACTIONS(7400), 1, + anon_sym_RPAREN, + STATE(6698), 1, + aux_sym_argument_list_repeat1, + [247296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12420), 1, + ACTIONS(10608), 1, anon_sym_LPAREN2, - ACTIONS(12422), 1, - sym_raw_string_delimiter, - [291848] = 3, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12424), 1, - aux_sym_preproc_include_token2, - ACTIONS(12426), 1, - sym_preproc_arg, - [291858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7070), 1, - anon_sym_LT, - STATE(4357), 1, - sym_template_argument_list, - [291868] = 3, + STATE(235), 1, + sym_condition_clause, + [247306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8500), 1, - anon_sym_LBRACE, - STATE(5511), 1, - sym_field_declaration_list, - [291878] = 3, + ACTIONS(10949), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [247314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4950), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(1421), 1, - sym_declaration_list, - [291888] = 3, + STATE(6729), 1, + sym_compound_statement, + [247324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8500), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(5520), 1, - sym_field_declaration_list, - [291898] = 3, + STATE(947), 1, + sym_compound_statement, + [247334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8816), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(4543), 1, - sym_requirement_seq, - [291908] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12428), 1, - anon_sym_default, - ACTIONS(12430), 1, - anon_sym_delete, - [291918] = 3, - ACTIONS(3), 1, + STATE(597), 1, + sym_compound_statement, + [247344] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(5726), 1, - anon_sym_LBRACE, - STATE(3393), 1, - sym_field_declaration_list, - [291928] = 3, + ACTIONS(11301), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [247352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(8162), 1, - sym_compound_statement, - [291938] = 3, + ACTIONS(10608), 1, + anon_sym_LPAREN2, + STATE(248), 1, + sym_condition_clause, + [247362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(371), 1, anon_sym_LBRACE, - STATE(1456), 1, + STATE(514), 1, sym_compound_statement, - [291948] = 3, + [247372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12324), 1, + ACTIONS(11303), 1, sym_identifier, - STATE(8413), 1, - sym_attribute, - [291958] = 2, - ACTIONS(9067), 1, + STATE(2573), 1, + sym_template_type, + [247382] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(12432), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [291966] = 3, + ACTIONS(11287), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [247390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5726), 1, + ACTIONS(5469), 1, anon_sym_LBRACE, - STATE(3387), 1, + STATE(2613), 1, sym_field_declaration_list, - [291976] = 3, + [247400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, + ACTIONS(10608), 1, anon_sym_LPAREN2, - STATE(8522), 1, + STATE(6952), 1, sym_condition_clause, - [291986] = 3, + [247410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, - anon_sym_LBRACE, - STATE(3174), 1, - sym_field_declaration_list, - [291996] = 3, + ACTIONS(11305), 1, + sym_identifier, + STATE(6750), 1, + sym_attribute, + [247420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - STATE(185), 1, - sym_condition_clause, - [292006] = 3, + STATE(6923), 1, + sym_parameter_list, + [247430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, + ACTIONS(818), 1, anon_sym_LBRACE, - STATE(3181), 1, - sym_field_declaration_list, - [292016] = 2, - ACTIONS(9067), 1, + STATE(512), 1, + sym_compound_statement, + [247440] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(12434), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [292024] = 3, + ACTIONS(6067), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [247448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, + ACTIONS(6881), 1, anon_sym_LPAREN2, - STATE(162), 1, - sym_condition_clause, - [292034] = 3, + STATE(7419), 1, + sym_argument_list, + [247458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(371), 1, - anon_sym_LBRACE, - STATE(658), 1, - sym_compound_statement, - [292044] = 3, + ACTIONS(5950), 1, + anon_sym_LT, + STATE(2548), 1, + sym_template_argument_list, + [247468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(8330), 1, - sym_compound_statement, - [292054] = 3, + ACTIONS(10143), 1, + anon_sym_COLON_COLON, + ACTIONS(11307), 1, + anon_sym_SEMI, + [247478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9790), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(2549), 1, + STATE(6712), 1, sym_compound_statement, - [292064] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5726), 1, - anon_sym_LBRACE, - STATE(3371), 1, - sym_field_declaration_list, - [292074] = 3, + [247488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8500), 1, - anon_sym_LBRACE, - STATE(5544), 1, - sym_field_declaration_list, - [292084] = 3, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + STATE(7671), 1, + sym_parenthesized_expression, + [247498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, - anon_sym_LBRACE, - STATE(3144), 1, - sym_field_declaration_list, - [292094] = 3, + ACTIONS(7356), 1, + anon_sym_RPAREN, + ACTIONS(7358), 1, + anon_sym_SEMI, + [247508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8500), 1, + ACTIONS(5469), 1, anon_sym_LBRACE, - STATE(5539), 1, + STATE(2528), 1, sym_field_declaration_list, - [292104] = 3, + [247518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8500), 1, + ACTIONS(5469), 1, anon_sym_LBRACE, - STATE(5533), 1, + STATE(2593), 1, sym_field_declaration_list, - [292114] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12436), 1, - sym_identifier, - STATE(3328), 1, - sym_template_type, - [292124] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10987), 1, - anon_sym_COLON_COLON, - ACTIONS(12438), 1, - anon_sym_SEMI, - [292134] = 3, - ACTIONS(9067), 1, + [247528] = 3, + ACTIONS(8584), 1, sym_comment, - ACTIONS(12440), 1, + ACTIONS(11311), 1, aux_sym_preproc_include_token2, - ACTIONS(12442), 1, + ACTIONS(11313), 1, sym_preproc_arg, - [292144] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11599), 1, - anon_sym_LPAREN2, - STATE(8695), 1, - sym_condition_clause, - [292154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7218), 1, - anon_sym_LPAREN2, - STATE(8955), 1, - sym_argument_list, - [292164] = 3, + [247538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, + ACTIONS(10608), 1, anon_sym_LPAREN2, - STATE(290), 1, + STATE(158), 1, sym_condition_clause, - [292174] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(2334), 1, - sym_template_argument_list, - [292184] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12324), 1, - sym_identifier, - STATE(8147), 1, - sym_attribute, - [292194] = 3, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12444), 1, - aux_sym_preproc_include_token2, - ACTIONS(12446), 1, - sym_preproc_arg, - [292204] = 3, + [247548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, + ACTIONS(6280), 1, anon_sym_LBRACE, - STATE(3145), 1, + STATE(3623), 1, sym_field_declaration_list, - [292214] = 3, + [247558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8500), 1, + ACTIONS(7324), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [247566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6280), 1, anon_sym_LBRACE, - STATE(5510), 1, + STATE(3617), 1, sym_field_declaration_list, - [292224] = 3, + [247576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8500), 1, + ACTIONS(4643), 1, anon_sym_LBRACE, - STATE(5517), 1, - sym_field_declaration_list, - [292234] = 2, + STATE(781), 1, + sym_declaration_list, + [247586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12448), 2, + ACTIONS(11251), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [292242] = 3, + [247594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12450), 1, - anon_sym_default, - ACTIONS(12452), 1, - anon_sym_delete, - [292252] = 3, + ACTIONS(11234), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [247602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12324), 1, - sym_identifier, - STATE(8672), 1, - sym_attribute, - [292262] = 3, + ACTIONS(5952), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [247610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8500), 1, + ACTIONS(6280), 1, anon_sym_LBRACE, - STATE(5521), 1, + STATE(3621), 1, sym_field_declaration_list, - [292272] = 3, + [247620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8500), 1, + ACTIONS(5469), 1, anon_sym_LBRACE, - STATE(5553), 1, + STATE(2540), 1, sym_field_declaration_list, - [292282] = 3, + [247630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 1, - anon_sym_LBRACE, - STATE(3364), 1, - sym_field_declaration_list, - [292292] = 3, + ACTIONS(11315), 1, + anon_sym_LT, + STATE(2442), 1, + sym_template_argument_list, + [247640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8500), 1, - anon_sym_LBRACE, - STATE(5555), 1, - sym_field_declaration_list, - [292302] = 3, + ACTIONS(5960), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [247648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 1, - anon_sym_LBRACE, - STATE(3366), 1, - sym_field_declaration_list, - [292312] = 3, + ACTIONS(6095), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [247656] = 3, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(11317), 1, + aux_sym_preproc_include_token2, + ACTIONS(11319), 1, + sym_preproc_arg, + [247666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 1, - anon_sym_LBRACE, - STATE(3307), 1, - sym_field_declaration_list, - [292322] = 3, + ACTIONS(11321), 1, + anon_sym_default, + ACTIONS(11323), 1, + anon_sym_delete, + [247676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8500), 1, - anon_sym_LBRACE, - STATE(5560), 1, - sym_field_declaration_list, - [292332] = 3, + ACTIONS(6091), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [247684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, - anon_sym_LBRACE, - STATE(3837), 1, - sym_field_declaration_list, - [292342] = 3, + ACTIONS(6019), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [247692] = 3, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(11325), 1, + aux_sym_preproc_include_token2, + ACTIONS(11327), 1, + sym_preproc_arg, + [247702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4950), 1, + ACTIONS(371), 1, anon_sym_LBRACE, - STATE(1409), 1, - sym_declaration_list, - [292352] = 3, + STATE(545), 1, + sym_compound_statement, + [247712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12318), 1, - anon_sym_LPAREN2, - STATE(9217), 1, - sym_parenthesized_expression, - [292362] = 3, + ACTIONS(6011), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [247720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1858), 1, + ACTIONS(8325), 1, anon_sym_LBRACE, - STATE(1528), 1, - sym_compound_statement, - [292372] = 3, + STATE(3953), 1, + sym_requirement_seq, + [247730] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5924), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [247738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8500), 1, + ACTIONS(4643), 1, anon_sym_LBRACE, - STATE(5507), 1, - sym_field_declaration_list, - [292382] = 3, + STATE(823), 1, + sym_declaration_list, + [247748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(10608), 1, anon_sym_LPAREN2, - STATE(8659), 1, - sym_parameter_list, - [292392] = 3, + STATE(6856), 1, + sym_condition_clause, + [247758] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 1, - anon_sym_LBRACE, - STATE(3343), 1, - sym_field_declaration_list, - [292402] = 3, + ACTIONS(5920), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [247766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_LBRACE, - STATE(609), 1, - sym_compound_statement, - [292412] = 3, + ACTIONS(5855), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [247774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(6280), 1, anon_sym_LBRACE, - STATE(3129), 1, + STATE(3626), 1, sym_field_declaration_list, - [292422] = 3, + [247784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, + ACTIONS(5343), 1, anon_sym_LBRACE, - STATE(4528), 1, + STATE(4934), 1, sym_field_declaration_list, - [292432] = 3, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12454), 1, - aux_sym_preproc_include_token2, - ACTIONS(12456), 1, - sym_preproc_arg, - [292442] = 3, + [247794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(2152), 1, anon_sym_LBRACE, - STATE(1128), 1, - sym_compound_statement, - [292452] = 3, + STATE(3458), 1, + sym_initializer_list, + [247804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(818), 1, anon_sym_LBRACE, - STATE(8227), 1, + STATE(745), 1, sym_compound_statement, - [292462] = 3, + [247814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, + ACTIONS(5343), 1, anon_sym_LBRACE, - STATE(4521), 1, + STATE(4954), 1, sym_field_declaration_list, - [292472] = 3, + [247824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, + ACTIONS(5343), 1, anon_sym_LBRACE, - STATE(4519), 1, + STATE(4950), 1, sym_field_declaration_list, - [292482] = 3, + [247834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, + ACTIONS(5343), 1, anon_sym_LBRACE, - STATE(4518), 1, + STATE(4940), 1, sym_field_declaration_list, - [292492] = 3, + [247844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - STATE(238), 1, - sym_condition_clause, - [292502] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12458), 1, - anon_sym_LT, - STATE(4077), 1, - sym_template_argument_list, - [292512] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4476), 1, - sym_field_declaration_list, - [292522] = 3, + STATE(7005), 1, + sym_parameter_list, + [247854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12460), 1, + ACTIONS(11329), 1, sym_identifier, - STATE(3319), 1, + STATE(2517), 1, sym_template_type, - [292532] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4516), 1, - sym_field_declaration_list, - [292542] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4515), 1, - sym_field_declaration_list, - [292552] = 3, + [247864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4514), 1, - sym_field_declaration_list, - [292562] = 3, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + STATE(7803), 1, + sym_argument_list, + [247874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(371), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(829), 1, + STATE(6646), 1, sym_compound_statement, - [292572] = 3, - ACTIONS(3), 1, + [247884] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(12462), 1, - anon_sym_LT, - STATE(3348), 1, - sym_template_argument_list, - [292582] = 3, + ACTIONS(11331), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [247892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, + ACTIONS(4641), 1, anon_sym_LBRACE, - STATE(4472), 1, - sym_field_declaration_list, - [292592] = 3, + STATE(952), 1, + sym_declaration_list, + [247902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, - anon_sym_LBRACE, - STATE(1332), 1, - sym_declaration_list, - [292602] = 3, + ACTIONS(10608), 1, + anon_sym_LPAREN2, + STATE(157), 1, + sym_condition_clause, + [247912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12464), 1, + ACTIONS(11333), 1, sym_identifier, - STATE(2457), 1, + STATE(2390), 1, sym_template_type, - [292612] = 3, + [247922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7611), 1, - anon_sym_RPAREN, - ACTIONS(7613), 1, + ACTIONS(10143), 1, + anon_sym_COLON_COLON, + ACTIONS(11335), 1, anon_sym_SEMI, - [292622] = 3, + [247932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12318), 1, - anon_sym_LPAREN2, - STATE(9067), 1, - sym_parenthesized_expression, - [292632] = 3, + ACTIONS(11337), 2, + anon_sym_COMMA, + anon_sym_GT2, + [247940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, + ACTIONS(5410), 1, anon_sym_LBRACE, - STATE(4504), 1, + STATE(2624), 1, sym_field_declaration_list, - [292642] = 3, + [247950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(4501), 1, - sym_field_declaration_list, - [292652] = 3, + STATE(6616), 1, + sym_compound_statement, + [247960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, + ACTIONS(3623), 1, anon_sym_LBRACE, - STATE(4468), 1, - sym_field_declaration_list, - [292662] = 3, + STATE(4368), 1, + sym_initializer_list, + [247970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5726), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(3308), 1, - sym_field_declaration_list, - [292672] = 3, + STATE(557), 1, + sym_compound_statement, + [247980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5726), 1, + ACTIONS(1804), 1, anon_sym_LBRACE, - STATE(3310), 1, - sym_field_declaration_list, - [292682] = 3, + STATE(1098), 1, + sym_compound_statement, + [247990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4942), 1, - anon_sym_LBRACE, - STATE(842), 1, - sym_declaration_list, - [292692] = 3, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + STATE(7328), 1, + sym_parenthesized_expression, + [248000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5775), 1, - anon_sym_LBRACE, - STATE(3561), 1, - sym_field_declaration_list, - [292702] = 3, + ACTIONS(11305), 1, + sym_identifier, + STATE(6882), 1, + sym_attribute, + [248010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LBRACE, - STATE(4435), 1, - sym_requirement_seq, - [292712] = 3, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + STATE(7052), 1, + sym_parameter_list, + [248020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4491), 1, - sym_field_declaration_list, - [292722] = 3, + ACTIONS(11339), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [248028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4489), 1, - sym_field_declaration_list, - [292732] = 3, + ACTIONS(7398), 1, + anon_sym_RBRACK, + ACTIONS(11341), 1, + anon_sym_COMMA, + [248038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11284), 1, - anon_sym_LBRACE, - STATE(6504), 1, - sym_requirement_seq, - [292742] = 3, + ACTIONS(11343), 1, + anon_sym_default, + ACTIONS(11345), 1, + anon_sym_delete, + [248048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9824), 1, - anon_sym_LBRACE, - STATE(2720), 1, - sym_compound_statement, - [292752] = 3, - ACTIONS(9067), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + STATE(7069), 1, + sym_parameter_list, + [248058] = 3, + ACTIONS(8584), 1, sym_comment, - ACTIONS(12466), 1, + ACTIONS(11347), 1, aux_sym_preproc_include_token2, - ACTIONS(12468), 1, + ACTIONS(11349), 1, sym_preproc_arg, - [292762] = 3, + [248068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(770), 1, - anon_sym_LBRACE, - STATE(1350), 1, - sym_compound_statement, - [292772] = 3, + ACTIONS(10608), 1, + anon_sym_LPAREN2, + STATE(209), 1, + sym_condition_clause, + [248078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, + ACTIONS(8314), 1, anon_sym_LBRACE, - STATE(4474), 1, - sym_field_declaration_list, - [292782] = 3, + STATE(3354), 1, + sym_requirement_seq, + [248088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12458), 1, - anon_sym_LT, - STATE(3163), 1, - sym_template_argument_list, - [292792] = 3, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + STATE(7893), 1, + sym_argument_list, + [248098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5726), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(3312), 1, - sym_field_declaration_list, - [292802] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12470), 1, - anon_sym_LPAREN2, - ACTIONS(12472), 1, - sym_raw_string_delimiter, - [292812] = 3, - ACTIONS(3), 1, + STATE(6555), 1, + sym_compound_statement, + [248108] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - STATE(8734), 1, - sym_parameter_list, - [292822] = 2, + ACTIONS(11351), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [248116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12090), 2, + ACTIONS(11136), 2, anon_sym_SEMI, anon_sym_LBRACE, - [292830] = 3, + [248124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5775), 1, + ACTIONS(2208), 1, anon_sym_LBRACE, - STATE(3535), 1, - sym_field_declaration_list, - [292840] = 3, + STATE(3551), 1, + sym_initializer_list, + [248134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5775), 1, + ACTIONS(818), 1, anon_sym_LBRACE, - STATE(3533), 1, - sym_field_declaration_list, - [292850] = 3, + STATE(891), 1, + sym_compound_statement, + [248144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, - anon_sym_LBRACE, - STATE(3832), 1, - sym_field_declaration_list, - [292860] = 3, + ACTIONS(11353), 1, + sym_identifier, + ACTIONS(11355), 1, + anon_sym_LPAREN2, + [248154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, - anon_sym_LBRACE, - STATE(3798), 1, - sym_field_declaration_list, - [292870] = 3, + ACTIONS(11357), 1, + sym_identifier, + STATE(1815), 1, + sym_template_type, + [248164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9824), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(2757), 1, + STATE(6511), 1, sym_compound_statement, - [292880] = 3, + [248174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8851), 1, - anon_sym_LBRACE, - STATE(4007), 1, - sym_requirement_seq, - [292890] = 2, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + STATE(7138), 1, + sym_parameter_list, + [248184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11615), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [292898] = 3, - ACTIONS(9067), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(6582), 1, + sym_compound_statement, + [248194] = 3, + ACTIONS(8584), 1, sym_comment, - ACTIONS(12474), 1, + ACTIONS(11359), 1, aux_sym_preproc_include_token2, - ACTIONS(12476), 1, + ACTIONS(11361), 1, sym_preproc_arg, - [292908] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5775), 1, - anon_sym_LBRACE, - STATE(3520), 1, - sym_field_declaration_list, - [292918] = 3, + [248204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5775), 1, - anon_sym_LBRACE, - STATE(3515), 1, - sym_field_declaration_list, - [292928] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9790), 1, - anon_sym_LBRACE, - STATE(2412), 1, - sym_compound_statement, - [292938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5775), 1, - anon_sym_LBRACE, - STATE(3513), 1, - sym_field_declaration_list, - [292948] = 3, + ACTIONS(11363), 1, + anon_sym_default, + ACTIONS(11365), 1, + anon_sym_delete, + [248214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8544), 1, + ACTIONS(11367), 1, anon_sym_LT, - STATE(2334), 1, + STATE(2335), 1, sym_template_argument_list, - [292958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5775), 1, - anon_sym_LBRACE, - STATE(3512), 1, - sym_field_declaration_list, - [292968] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12324), 1, - sym_identifier, - STATE(8076), 1, - sym_attribute, - [292978] = 3, + [248224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5775), 1, - anon_sym_LBRACE, - STATE(3431), 1, - sym_field_declaration_list, - [292988] = 3, + ACTIONS(9104), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [248232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, + ACTIONS(5343), 1, anon_sym_LBRACE, - STATE(3170), 1, + STATE(2383), 1, sym_field_declaration_list, - [292998] = 3, + [248242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, + ACTIONS(10608), 1, anon_sym_LPAREN2, - STATE(8777), 1, + STATE(193), 1, sym_condition_clause, - [293008] = 3, + [248252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5775), 1, + ACTIONS(770), 1, anon_sym_LBRACE, - STATE(3509), 1, - sym_field_declaration_list, - [293018] = 3, + STATE(764), 1, + sym_compound_statement, + [248262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, + ACTIONS(6881), 1, anon_sym_LPAREN2, - STATE(322), 1, - sym_condition_clause, - [293028] = 3, + STATE(7906), 1, + sym_argument_list, + [248272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5775), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(3508), 1, - sym_field_declaration_list, - [293038] = 2, - ACTIONS(9067), 1, + STATE(6501), 1, + sym_compound_statement, + [248282] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(12478), 2, + ACTIONS(11369), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [293046] = 3, + [248290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, - anon_sym_LBRACE, - STATE(1378), 1, - sym_declaration_list, - [293056] = 3, + ACTIONS(7380), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [248298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(8042), 1, - sym_compound_statement, - [293066] = 3, + ACTIONS(11305), 1, + sym_identifier, + STATE(6513), 1, + sym_attribute, + [248308] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4240), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [248316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6432), 1, + ACTIONS(7927), 1, anon_sym_LT, - STATE(3348), 1, + STATE(4491), 1, sym_template_argument_list, - [293076] = 3, + [248326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5775), 1, + ACTIONS(5410), 1, anon_sym_LBRACE, - STATE(3507), 1, + STATE(2571), 1, sym_field_declaration_list, - [293086] = 2, - ACTIONS(3), 1, + [248336] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(12480), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [293094] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(8083), 1, - sym_compound_statement, - [293104] = 3, + ACTIONS(11371), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [248344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5775), 1, + ACTIONS(5410), 1, anon_sym_LBRACE, - STATE(3506), 1, + STATE(2568), 1, sym_field_declaration_list, - [293114] = 3, + [248354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2156), 1, + ACTIONS(11373), 2, + anon_sym_LPAREN2, anon_sym_LBRACE, - STATE(4314), 1, - sym_initializer_list, - [293124] = 3, + [248362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4948), 1, + ACTIONS(4639), 1, anon_sym_LBRACE, - STATE(544), 1, + STATE(887), 1, sym_declaration_list, - [293134] = 3, - ACTIONS(3), 1, + [248372] = 3, + ACTIONS(8584), 1, sym_comment, - ACTIONS(5659), 1, - anon_sym_LBRACE, - STATE(3173), 1, - sym_field_declaration_list, - [293144] = 3, + ACTIONS(11375), 1, + aux_sym_preproc_include_token2, + ACTIONS(11377), 1, + sym_preproc_arg, + [248382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(8295), 1, anon_sym_LBRACE, - STATE(3116), 1, - sym_field_declaration_list, - [293154] = 3, + STATE(3592), 1, + sym_requirement_seq, + [248392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7218), 1, + ACTIONS(11373), 2, anon_sym_LPAREN2, - STATE(8934), 1, - sym_argument_list, - [293164] = 3, + anon_sym_LBRACE, + [248400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, + ACTIONS(11373), 2, anon_sym_LPAREN2, - STATE(212), 1, - sym_condition_clause, - [293174] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5689), 1, anon_sym_LBRACE, - STATE(3117), 1, - sym_field_declaration_list, - [293184] = 3, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12482), 1, - aux_sym_preproc_include_token2, - ACTIONS(12484), 1, - sym_preproc_arg, - [293194] = 3, + [248408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(3177), 1, - sym_field_declaration_list, - [293204] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(4357), 1, - sym_template_argument_list, - [293214] = 3, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12486), 1, - aux_sym_preproc_include_token2, - ACTIONS(12488), 1, - sym_preproc_arg, - [293224] = 3, + STATE(6544), 1, + sym_compound_statement, + [248418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(770), 1, anon_sym_LBRACE, - STATE(1449), 1, + STATE(860), 1, sym_compound_statement, - [293234] = 3, + [248428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12490), 1, + ACTIONS(11379), 1, sym_identifier, - STATE(3200), 1, - sym_template_type, - [293244] = 3, + ACTIONS(11381), 1, + anon_sym_LPAREN2, + [248438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12492), 1, - anon_sym_default, - ACTIONS(12494), 1, - anon_sym_delete, - [293254] = 3, - ACTIONS(9067), 1, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + STATE(7100), 1, + sym_parameter_list, + [248448] = 3, + ACTIONS(8584), 1, sym_comment, - ACTIONS(12496), 1, + ACTIONS(11383), 1, aux_sym_preproc_include_token2, - ACTIONS(12498), 1, + ACTIONS(11385), 1, sym_preproc_arg, - [293264] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5659), 1, - anon_sym_LBRACE, - STATE(3147), 1, - sym_field_declaration_list, - [293274] = 2, + [248458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12500), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [293282] = 2, + ACTIONS(7935), 1, + anon_sym_LT, + STATE(1726), 1, + sym_template_argument_list, + [248468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7753), 2, - anon_sym_RPAREN, + ACTIONS(10143), 1, + anon_sym_COLON_COLON, + ACTIONS(11387), 1, anon_sym_SEMI, - [293290] = 3, + [248478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8621), 1, + ACTIONS(371), 1, anon_sym_LBRACE, - STATE(5897), 1, - sym_field_declaration_list, - [293300] = 3, + STATE(412), 1, + sym_compound_statement, + [248488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10969), 1, - anon_sym_LBRACE, - STATE(7010), 1, - sym_requirement_seq, - [293310] = 3, + ACTIONS(11389), 1, + anon_sym_LT, + STATE(2493), 1, + sym_template_argument_list, + [248498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9878), 1, + ACTIONS(818), 1, anon_sym_LBRACE, - STATE(2851), 1, + STATE(829), 1, sym_compound_statement, - [293320] = 3, + [248508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5775), 1, - anon_sym_LBRACE, - STATE(3518), 1, - sym_field_declaration_list, - [293330] = 3, + ACTIONS(11367), 1, + anon_sym_LT, + STATE(2649), 1, + sym_template_argument_list, + [248518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12318), 1, - anon_sym_LPAREN2, - STATE(9515), 1, - sym_parenthesized_expression, - [293340] = 3, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12502), 1, - aux_sym_preproc_include_token2, - ACTIONS(12504), 1, - sym_preproc_arg, - [293350] = 3, + ACTIONS(11391), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [248526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, + ACTIONS(5410), 1, anon_sym_LBRACE, - STATE(3160), 1, + STATE(2538), 1, sym_field_declaration_list, - [293360] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - STATE(8433), 1, - sym_parameter_list, - [293370] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12506), 1, - sym_identifier, - STATE(3298), 1, - sym_template_type, - [293380] = 3, - ACTIONS(3), 1, + [248536] = 3, + ACTIONS(8584), 1, sym_comment, - ACTIONS(10987), 1, - anon_sym_COLON_COLON, - ACTIONS(12508), 1, - anon_sym_SEMI, - [293390] = 3, + ACTIONS(11393), 1, + aux_sym_preproc_include_token2, + ACTIONS(11395), 1, + sym_preproc_arg, + [248546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(371), 1, - anon_sym_LBRACE, - STATE(582), 1, - sym_compound_statement, - [293400] = 3, + ACTIONS(11397), 1, + anon_sym_LT, + STATE(2649), 1, + sym_template_argument_list, + [248556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9858), 1, - anon_sym_LBRACE, - STATE(2798), 1, - sym_compound_statement, - [293410] = 3, + ACTIONS(11399), 1, + anon_sym_default, + ACTIONS(11401), 1, + anon_sym_delete, + [248566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, + ACTIONS(4641), 1, anon_sym_LBRACE, - STATE(562), 1, - sym_compound_statement, - [293420] = 3, + STATE(949), 1, + sym_declaration_list, + [248576] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8827), 1, - anon_sym_LBRACE, - STATE(3457), 1, - sym_requirement_seq, - [293430] = 3, + ACTIONS(11403), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [248584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(8380), 1, - sym_compound_statement, - [293440] = 3, + ACTIONS(7468), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [248592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8621), 1, - anon_sym_LBRACE, - STATE(5910), 1, - sym_field_declaration_list, - [293450] = 3, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + STATE(7839), 1, + sym_argument_list, + [248602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8621), 1, + ACTIONS(5318), 1, anon_sym_LBRACE, - STATE(5913), 1, + STATE(2414), 1, sym_field_declaration_list, - [293460] = 3, + [248612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, + ACTIONS(4639), 1, anon_sym_LBRACE, - STATE(3167), 1, - sym_field_declaration_list, - [293470] = 3, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12510), 1, - aux_sym_preproc_include_token2, - ACTIONS(12512), 1, - sym_preproc_arg, - [293480] = 3, + STATE(842), 1, + sym_declaration_list, + [248622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, - anon_sym_LBRACE, - STATE(3171), 1, - sym_field_declaration_list, - [293490] = 2, + ACTIONS(7935), 1, + anon_sym_LT, + STATE(2442), 1, + sym_template_argument_list, + [248632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11992), 2, - anon_sym_COMMA, + ACTIONS(51), 1, anon_sym_LBRACE, - [293498] = 3, + STATE(6631), 1, + sym_compound_statement, + [248642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4948), 1, + ACTIONS(3571), 1, anon_sym_LBRACE, - STATE(569), 1, - sym_declaration_list, - [293508] = 3, + STATE(3882), 1, + sym_initializer_list, + [248652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9878), 1, + ACTIONS(9349), 1, anon_sym_LBRACE, - STATE(2817), 1, + STATE(2116), 1, sym_compound_statement, - [293518] = 2, + [248662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11895), 2, + ACTIONS(7586), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [293526] = 2, + anon_sym_RBRACE, + [248670] = 2, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(11405), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [248678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11798), 2, + ACTIONS(10978), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [293534] = 3, + anon_sym_RBRACE, + [248686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11305), 1, + sym_identifier, + STATE(6636), 1, + sym_attribute, + [248696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10065), 1, + sym_identifier, + STATE(2573), 1, + sym_template_type, + [248706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8621), 1, + ACTIONS(5343), 1, anon_sym_LBRACE, - STATE(5898), 1, + STATE(2377), 1, sym_field_declaration_list, - [293544] = 3, + [248716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8621), 1, + ACTIONS(9349), 1, anon_sym_LBRACE, - STATE(5865), 1, - sym_field_declaration_list, - [293554] = 3, + STATE(2263), 1, + sym_compound_statement, + [248726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8621), 1, + ACTIONS(5343), 1, anon_sym_LBRACE, - STATE(5870), 1, + STATE(2387), 1, sym_field_declaration_list, - [293564] = 3, + [248736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9824), 1, - anon_sym_LBRACE, - STATE(2635), 1, - sym_compound_statement, - [293574] = 3, + ACTIONS(7452), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [248744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12514), 1, + ACTIONS(11389), 1, anon_sym_LT, - STATE(3348), 1, + STATE(3381), 1, sym_template_argument_list, - [293584] = 3, + [248754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5726), 1, + ACTIONS(9385), 1, anon_sym_LBRACE, - STATE(3381), 1, - sym_field_declaration_list, - [293594] = 3, + STATE(2114), 1, + sym_compound_statement, + [248764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9858), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(2861), 1, + STATE(6677), 1, sym_compound_statement, - [293604] = 2, + [248774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11984), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [293612] = 3, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + STATE(7369), 1, + sym_argument_list, + [248784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8621), 1, - anon_sym_LBRACE, - STATE(5871), 1, - sym_field_declaration_list, - [293622] = 3, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + STATE(6994), 1, + sym_parameter_list, + [248794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8621), 1, - anon_sym_LBRACE, - STATE(5855), 1, - sym_field_declaration_list, - [293632] = 3, + ACTIONS(11407), 2, + anon_sym_COMMA, + anon_sym_GT2, + [248802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 1, - anon_sym_LBRACE, - STATE(3382), 1, - sym_field_declaration_list, - [293642] = 3, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + STATE(7752), 1, + sym_parenthesized_expression, + [248812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8621), 1, - anon_sym_LBRACE, - STATE(5858), 1, - sym_field_declaration_list, - [293652] = 3, + ACTIONS(5647), 1, + anon_sym_LT, + STATE(2618), 1, + sym_template_argument_list, + [248822] = 3, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(11409), 1, + aux_sym_preproc_include_token2, + ACTIONS(11411), 1, + sym_preproc_arg, + [248832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8621), 1, - anon_sym_LBRACE, - STATE(5960), 1, - sym_field_declaration_list, - [293662] = 3, + ACTIONS(11413), 2, + anon_sym_COMMA, + anon_sym_GT2, + [248840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8621), 1, - anon_sym_LBRACE, - STATE(5954), 1, - sym_field_declaration_list, - [293672] = 3, + ACTIONS(11415), 1, + sym_identifier, + STATE(2318), 1, + sym_template_type, + [248850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11417), 1, + anon_sym_default, + ACTIONS(11419), 1, + anon_sym_delete, + [248860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8621), 1, + ACTIONS(5318), 1, anon_sym_LBRACE, - STATE(5919), 1, + STATE(2413), 1, sym_field_declaration_list, - [293682] = 3, + [248870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, + ACTIONS(5318), 1, anon_sym_LBRACE, - STATE(4482), 1, + STATE(2403), 1, sym_field_declaration_list, - [293692] = 3, + [248880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12516), 1, - sym_identifier, - ACTIONS(12518), 1, - anon_sym_RPAREN, - [293702] = 3, + ACTIONS(11421), 2, + anon_sym_COMMA, + anon_sym_GT2, + [248888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4490), 1, - sym_field_declaration_list, - [293712] = 3, + ACTIONS(11423), 1, + sym_identifier, + STATE(4483), 1, + sym_template_type, + [248898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8621), 1, - anon_sym_LBRACE, - STATE(5846), 1, - sym_field_declaration_list, - [293722] = 3, + ACTIONS(11367), 1, + anon_sym_LT, + STATE(2548), 1, + sym_template_argument_list, + [248908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4471), 1, - sym_field_declaration_list, - [293732] = 3, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + STATE(7476), 1, + sym_argument_list, + [248918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 1, - anon_sym_LBRACE, - STATE(5417), 1, - sym_initializer_list, - [293742] = 3, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + STATE(7710), 1, + sym_argument_list, + [248928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, + ACTIONS(4637), 1, anon_sym_LBRACE, - STATE(438), 1, - sym_compound_statement, - [293752] = 3, + STATE(534), 1, + sym_declaration_list, + [248938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, - anon_sym_LPAREN2, - STATE(281), 1, - sym_condition_clause, - [293762] = 3, + ACTIONS(10910), 2, + anon_sym_COMMA, + anon_sym_GT2, + [248946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(7881), 1, anon_sym_LBRACE, - STATE(6089), 1, + STATE(4446), 1, sym_field_declaration_list, - [293772] = 3, + [248956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(6078), 1, - sym_field_declaration_list, - [293782] = 3, + ACTIONS(10897), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [248964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(10554), 1, anon_sym_LBRACE, - STATE(6059), 1, - sym_field_declaration_list, - [293792] = 3, + STATE(1736), 1, + sym_requirement_seq, + [248974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, - anon_sym_LBRACE, - STATE(3836), 1, - sym_field_declaration_list, - [293802] = 3, + ACTIONS(7935), 1, + anon_sym_LT, + STATE(2379), 1, + sym_template_argument_list, + [248984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(9317), 1, anon_sym_LBRACE, - STATE(6085), 1, - sym_field_declaration_list, - [293812] = 3, + STATE(1829), 1, + sym_compound_statement, + [248994] = 3, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(11425), 1, + aux_sym_preproc_include_token2, + ACTIONS(11427), 1, + sym_preproc_arg, + [249004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12324), 1, - sym_identifier, - STATE(8231), 1, - sym_attribute, - [293822] = 3, + ACTIONS(11429), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [249012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, - anon_sym_LPAREN2, - STATE(8810), 1, - sym_condition_clause, - [293832] = 3, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(6676), 1, + sym_compound_statement, + [249022] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10888), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [249030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5726), 1, + ACTIONS(8333), 1, anon_sym_LBRACE, - STATE(3425), 1, - sym_field_declaration_list, - [293842] = 3, + STATE(3660), 1, + sym_requirement_seq, + [249040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(9349), 1, anon_sym_LBRACE, - STATE(6068), 1, - sym_field_declaration_list, - [293852] = 2, - ACTIONS(9067), 1, + STATE(2144), 1, + sym_compound_statement, + [249050] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(12520), 2, + ACTIONS(11431), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [293860] = 3, + [249058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(8344), 1, anon_sym_LBRACE, - STATE(8098), 1, - sym_compound_statement, - [293870] = 3, + STATE(3302), 1, + sym_requirement_seq, + [249068] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(770), 1, anon_sym_LBRACE, - STATE(1266), 1, + STATE(807), 1, sym_compound_statement, - [293880] = 3, + [249078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(6067), 1, - sym_field_declaration_list, - [293890] = 3, + ACTIONS(10608), 1, + anon_sym_LPAREN2, + STATE(6924), 1, + sym_condition_clause, + [249088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5726), 1, + ACTIONS(4637), 1, anon_sym_LBRACE, - STATE(3422), 1, - sym_field_declaration_list, - [293900] = 3, + STATE(540), 1, + sym_declaration_list, + [249098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(11433), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(6079), 1, - sym_field_declaration_list, - [293910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7218), 1, - anon_sym_LPAREN2, - STATE(9000), 1, - sym_argument_list, - [293920] = 3, - ACTIONS(3), 1, + [249106] = 3, + ACTIONS(8584), 1, sym_comment, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4522), 1, - sym_field_declaration_list, - [293930] = 3, + ACTIONS(11435), 1, + aux_sym_preproc_include_token2, + ACTIONS(11437), 1, + sym_preproc_arg, + [249116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12522), 1, + ACTIONS(11305), 1, sym_identifier, - STATE(5625), 1, - sym_template_type, - [293940] = 3, + STATE(6773), 1, + sym_attribute, + [249126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(6087), 1, - sym_field_declaration_list, - [293950] = 3, + ACTIONS(6705), 1, + anon_sym_LT, + STATE(3513), 1, + sym_template_argument_list, + [249136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 1, + ACTIONS(10875), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(3394), 1, - sym_field_declaration_list, - [293960] = 3, + [249144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(6084), 1, - sym_field_declaration_list, - [293970] = 3, + STATE(6823), 1, + sym_compound_statement, + [249154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(371), 1, anon_sym_LBRACE, - STATE(6086), 1, - sym_field_declaration_list, - [293980] = 3, + STATE(452), 1, + sym_compound_statement, + [249164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12524), 1, + ACTIONS(11439), 1, anon_sym_default, - ACTIONS(12526), 1, + ACTIONS(11441), 1, anon_sym_delete, - [293990] = 3, + [249174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(5318), 1, anon_sym_LBRACE, - STATE(6076), 1, + STATE(2389), 1, sym_field_declaration_list, - [294000] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8546), 1, - anon_sym_LT, - STATE(3280), 1, - sym_template_argument_list, - [294010] = 2, + [249184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11951), 2, + ACTIONS(11443), 2, anon_sym_COMMA, anon_sym_LBRACE, - [294018] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(6082), 1, - sym_field_declaration_list, - [294028] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12528), 1, - sym_identifier, - STATE(3166), 1, - sym_template_type, - [294038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(6057), 1, - sym_field_declaration_list, - [294048] = 3, + [249192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6014), 1, + ACTIONS(5950), 1, anon_sym_LT, - STATE(3421), 1, + STATE(6727), 1, sym_template_argument_list, - [294058] = 3, + [249202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9878), 1, + ACTIONS(9307), 1, anon_sym_LBRACE, - STATE(2792), 1, + STATE(1938), 1, sym_compound_statement, - [294068] = 3, + [249212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12318), 1, + ACTIONS(8367), 1, anon_sym_LPAREN2, - STATE(9162), 1, - sym_parenthesized_expression, - [294078] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12530), 2, - anon_sym_COMMA, - anon_sym_GT2, - [294086] = 3, + STATE(6866), 1, + sym_parameter_list, + [249222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4942), 1, + ACTIONS(5343), 1, anon_sym_LBRACE, - STATE(814), 1, - sym_declaration_list, - [294096] = 3, + STATE(2365), 1, + sym_field_declaration_list, + [249232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(8660), 1, - sym_parameter_list, - [294106] = 3, + STATE(7598), 1, + sym_parenthesized_expression, + [249242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(8056), 1, anon_sym_LBRACE, - STATE(1317), 1, - sym_compound_statement, - [294116] = 3, + STATE(4806), 1, + sym_field_declaration_list, + [249252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, - anon_sym_LBRACE, - STATE(3770), 1, - sym_field_declaration_list, - [294126] = 3, + ACTIONS(11445), 1, + anon_sym_LPAREN2, + ACTIONS(11447), 1, + sym_raw_string_delimiter, + [249262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(815), 1, - sym_compound_statement, - [294136] = 3, + ACTIONS(7542), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [249270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10987), 1, - anon_sym_COLON_COLON, - ACTIONS(12532), 1, - anon_sym_SEMI, - [294146] = 3, - ACTIONS(9067), 1, + ACTIONS(11449), 1, + sym_identifier, + STATE(2338), 1, + sym_template_type, + [249280] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12534), 1, - aux_sym_preproc_include_token2, - ACTIONS(12536), 1, - sym_preproc_arg, - [294156] = 3, + ACTIONS(7881), 1, + anon_sym_LBRACE, + STATE(4461), 1, + sym_field_declaration_list, + [249290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(9385), 1, anon_sym_LBRACE, - STATE(8240), 1, + STATE(2159), 1, sym_compound_statement, - [294166] = 3, + [249300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12538), 1, - sym_identifier, - STATE(3417), 1, - sym_template_type, - [294176] = 2, + ACTIONS(11451), 1, + anon_sym_default, + ACTIONS(11453), 1, + anon_sym_delete, + [249310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11753), 2, - anon_sym_SEMI, + ACTIONS(2068), 1, anon_sym_LBRACE, - [294184] = 3, + STATE(3183), 1, + sym_initializer_list, + [249320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12462), 1, - anon_sym_LT, - STATE(3531), 1, - sym_template_argument_list, - [294194] = 3, + ACTIONS(7881), 1, + anon_sym_LBRACE, + STATE(4437), 1, + sym_field_declaration_list, + [249330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9858), 1, + ACTIONS(6280), 1, anon_sym_LBRACE, - STATE(2891), 1, - sym_compound_statement, - [294204] = 2, + STATE(3622), 1, + sym_field_declaration_list, + [249340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9615), 2, + ACTIONS(10822), 2, anon_sym_COMMA, - anon_sym_SEMI, - [294212] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [249348] = 3, + ACTIONS(8584), 1, sym_comment, - ACTIONS(7636), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [294220] = 3, - ACTIONS(3), 1, + ACTIONS(11455), 1, + aux_sym_preproc_include_token2, + ACTIONS(11457), 1, + sym_preproc_arg, + [249358] = 3, + ACTIONS(8584), 1, sym_comment, - ACTIONS(8544), 1, - anon_sym_LT, - STATE(3214), 1, - sym_template_argument_list, - [294230] = 3, + ACTIONS(11459), 1, + aux_sym_preproc_include_token2, + ACTIONS(11461), 1, + sym_preproc_arg, + [249368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(770), 1, anon_sym_LBRACE, - STATE(3554), 1, - sym_initializer_list, - [294240] = 3, + STATE(556), 1, + sym_compound_statement, + [249378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, + ACTIONS(6280), 1, anon_sym_LBRACE, - STATE(3826), 1, + STATE(3615), 1, sym_field_declaration_list, - [294250] = 3, + [249388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10143), 1, + anon_sym_COLON_COLON, + ACTIONS(11463), 1, + anon_sym_SEMI, + [249398] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10608), 1, + anon_sym_LPAREN2, + STATE(212), 1, + sym_condition_clause, + [249408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, + ACTIONS(6280), 1, anon_sym_LBRACE, - STATE(3824), 1, + STATE(3643), 1, sym_field_declaration_list, - [294260] = 2, + [249418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12540), 2, + ACTIONS(6881), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, - [294268] = 3, + STATE(7591), 1, + sym_argument_list, + [249428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(6280), 1, anon_sym_LBRACE, - STATE(3136), 1, + STATE(3636), 1, sym_field_declaration_list, - [294278] = 2, + [249438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12540), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - [294286] = 2, + ACTIONS(11465), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [249446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12540), 2, - anon_sym_LPAREN2, + ACTIONS(8056), 1, anon_sym_LBRACE, - [294294] = 3, + STATE(4833), 1, + sym_field_declaration_list, + [249456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12514), 1, - anon_sym_LT, - STATE(3531), 1, - sym_template_argument_list, - [294304] = 3, + ACTIONS(11467), 1, + sym_identifier, + STATE(1815), 1, + sym_template_type, + [249466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12326), 1, + ACTIONS(11469), 1, anon_sym_LT, - STATE(3220), 1, + STATE(3282), 1, sym_template_argument_list, - [294314] = 3, + [249476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12324), 1, - sym_identifier, - STATE(8411), 1, - sym_attribute, - [294324] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12542), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [294332] = 3, + ACTIONS(5950), 1, + anon_sym_LT, + STATE(1726), 1, + sym_template_argument_list, + [249486] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(8406), 1, + STATE(6793), 1, sym_compound_statement, - [294342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11599), 1, - anon_sym_LPAREN2, - STATE(293), 1, - sym_condition_clause, - [294352] = 3, + [249496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(8056), 1, anon_sym_LBRACE, - STATE(3130), 1, + STATE(4805), 1, sym_field_declaration_list, - [294362] = 3, + [249506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12326), 1, + ACTIONS(5306), 1, anon_sym_LT, - STATE(4275), 1, + STATE(1726), 1, sym_template_argument_list, - [294372] = 3, + [249516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7218), 1, - anon_sym_LPAREN2, - STATE(9584), 1, - sym_argument_list, - [294382] = 3, + ACTIONS(11471), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [249524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4946), 1, - anon_sym_LBRACE, - STATE(1318), 1, - sym_declaration_list, - [294392] = 2, + ACTIONS(11397), 1, + anon_sym_LT, + STATE(2548), 1, + sym_template_argument_list, + [249534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12544), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [294400] = 3, + ACTIONS(7943), 1, + anon_sym_LT, + STATE(2516), 1, + sym_template_argument_list, + [249544] = 2, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(11473), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [249552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(3135), 1, - sym_field_declaration_list, - [294410] = 3, - ACTIONS(9067), 1, + ACTIONS(10608), 1, + anon_sym_LPAREN2, + STATE(230), 1, + sym_condition_clause, + [249562] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12546), 1, - aux_sym_preproc_include_token2, - ACTIONS(12548), 1, - sym_preproc_arg, - [294420] = 3, - ACTIONS(9067), 1, + ACTIONS(10608), 1, + anon_sym_LPAREN2, + STATE(6906), 1, + sym_condition_clause, + [249572] = 3, + ACTIONS(8584), 1, sym_comment, - ACTIONS(12550), 1, + ACTIONS(11475), 1, aux_sym_preproc_include_token2, - ACTIONS(12552), 1, + ACTIONS(11477), 1, sym_preproc_arg, - [294430] = 3, + [249582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12554), 1, - anon_sym_default, - ACTIONS(12556), 1, - anon_sym_delete, - [294440] = 3, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(936), 1, + sym_compound_statement, + [249592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8542), 1, - anon_sym_LT, - STATE(5570), 1, - sym_template_argument_list, - [294450] = 3, + ACTIONS(11305), 1, + sym_identifier, + STATE(6781), 1, + sym_attribute, + [249602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 1, + ACTIONS(9385), 1, anon_sym_LBRACE, - STATE(3358), 1, - sym_field_declaration_list, - [294460] = 3, + STATE(2124), 1, + sym_compound_statement, + [249612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, - anon_sym_LBRACE, - STATE(3763), 1, - sym_field_declaration_list, - [294470] = 3, + ACTIONS(6881), 1, + anon_sym_LPAREN2, + STATE(7744), 1, + sym_argument_list, + [249622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5726), 1, + ACTIONS(10413), 1, anon_sym_LBRACE, - STATE(3344), 1, - sym_field_declaration_list, - [294480] = 3, + STATE(5771), 1, + sym_requirement_seq, + [249632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5726), 1, - anon_sym_LBRACE, - STATE(3345), 1, - sym_field_declaration_list, - [294490] = 3, + ACTIONS(11305), 1, + sym_identifier, + STATE(6645), 1, + sym_attribute, + [249642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, + ACTIONS(7881), 1, anon_sym_LBRACE, - STATE(3771), 1, + STATE(4445), 1, sym_field_declaration_list, - [294500] = 3, + [249652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(10743), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(837), 1, - sym_compound_statement, - [294510] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10987), 1, - anon_sym_COLON_COLON, - ACTIONS(12558), 1, - anon_sym_SEMI, - [294520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8544), 1, - anon_sym_LT, - STATE(3120), 1, - sym_template_argument_list, - [294530] = 3, + [249660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - STATE(8555), 1, - sym_parameter_list, - [294540] = 3, + ACTIONS(8056), 1, + anon_sym_LBRACE, + STATE(4832), 1, + sym_field_declaration_list, + [249670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1804), 1, anon_sym_LBRACE, - STATE(1029), 1, + STATE(1035), 1, sym_compound_statement, - [294550] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12560), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [294558] = 2, + [249680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8028), 2, + ACTIONS(10729), 2, anon_sym_COMMA, anon_sym_RPAREN, - [294566] = 2, + [249688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7755), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [294574] = 3, + ACTIONS(11479), 1, + sym_identifier, + ACTIONS(11481), 1, + anon_sym_RPAREN, + [249698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(8357), 1, - sym_compound_statement, - [294584] = 2, + ACTIONS(11483), 1, + sym_identifier, + STATE(2499), 1, + sym_template_type, + [249708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8012), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [294592] = 2, + ACTIONS(11389), 1, + anon_sym_LT, + STATE(3384), 1, + sym_template_argument_list, + [249718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11552), 2, + ACTIONS(10698), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [294600] = 3, + anon_sym_LBRACE, + [249726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12514), 1, - anon_sym_LT, - STATE(3094), 1, - sym_template_argument_list, - [294610] = 3, - ACTIONS(9067), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(6717), 1, + sym_compound_statement, + [249736] = 3, + ACTIONS(8584), 1, sym_comment, - ACTIONS(12562), 1, + ACTIONS(11485), 1, aux_sym_preproc_include_token2, - ACTIONS(12564), 1, + ACTIONS(11487), 1, sym_preproc_arg, - [294620] = 3, + [249746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 1, - anon_sym_LBRACE, - STATE(1269), 1, - sym_compound_statement, - [294630] = 3, + ACTIONS(11489), 1, + anon_sym_LPAREN2, + ACTIONS(11491), 1, + sym_raw_string_delimiter, + [249756] = 3, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(11493), 1, + aux_sym_preproc_include_token2, + ACTIONS(11495), 1, + sym_preproc_arg, + [249766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8843), 1, - anon_sym_LBRACE, - STATE(4252), 1, - sym_requirement_seq, - [294640] = 3, + ACTIONS(11497), 1, + anon_sym_LPAREN2, + ACTIONS(11499), 1, + sym_raw_string_delimiter, + [249776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12324), 1, + ACTIONS(11305), 1, sym_identifier, - STATE(8367), 1, + STATE(6474), 1, sym_attribute, - [294650] = 3, + [249786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, - anon_sym_LBRACE, - STATE(3150), 1, - sym_field_declaration_list, - [294660] = 3, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + STATE(6976), 1, + sym_parameter_list, + [249796] = 3, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(11501), 1, + aux_sym_preproc_include_token2, + ACTIONS(11503), 1, + sym_preproc_arg, + [249806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, + ACTIONS(10608), 1, anon_sym_LPAREN2, - STATE(8563), 1, + STATE(7171), 1, sym_condition_clause, - [294670] = 3, - ACTIONS(3), 1, + [249816] = 3, + ACTIONS(8584), 1, sym_comment, - ACTIONS(4946), 1, - anon_sym_LBRACE, - STATE(1346), 1, - sym_declaration_list, - [294680] = 3, + ACTIONS(11505), 1, + aux_sym_preproc_include_token2, + ACTIONS(11507), 1, + sym_preproc_arg, + [249826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, + ACTIONS(10608), 1, anon_sym_LPAREN2, - STATE(266), 1, + STATE(208), 1, sym_condition_clause, - [294690] = 3, + [249836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4529), 1, - sym_field_declaration_list, - [294700] = 2, - ACTIONS(9067), 1, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + STATE(7394), 1, + sym_parenthesized_expression, + [249846] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(12566), 2, + ACTIONS(11509), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [294708] = 3, + [249854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12324), 1, + ACTIONS(11511), 1, sym_identifier, - STATE(8324), 1, - sym_attribute, - [294718] = 2, - ACTIONS(9067), 1, + STATE(2545), 1, + sym_template_type, + [249864] = 3, + ACTIONS(8584), 1, sym_comment, - ACTIONS(12568), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [294726] = 3, + ACTIONS(11513), 1, + aux_sym_preproc_include_token2, + ACTIONS(11515), 1, + sym_preproc_arg, + [249874] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(8316), 1, + STATE(6479), 1, sym_compound_statement, - [294736] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5726), 1, - anon_sym_LBRACE, - STATE(3386), 1, - sym_field_declaration_list, - [294746] = 3, + [249884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4513), 1, - sym_field_declaration_list, - [294756] = 3, + ACTIONS(10143), 1, + anon_sym_COLON_COLON, + ACTIONS(11517), 1, + anon_sym_SEMI, + [249894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, + ACTIONS(263), 1, anon_sym_LBRACE, - STATE(4510), 1, - sym_field_declaration_list, - [294766] = 3, + STATE(261), 1, + sym_compound_statement, + [249904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7218), 1, + ACTIONS(11519), 1, anon_sym_LPAREN2, - STATE(9432), 1, - sym_argument_list, - [294776] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12458), 1, - anon_sym_LT, - STATE(4131), 1, - sym_template_argument_list, - [294786] = 3, + ACTIONS(11521), 1, + sym_raw_string_delimiter, + [249914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, - anon_sym_LBRACE, - STATE(3823), 1, - sym_field_declaration_list, - [294796] = 3, + ACTIONS(11523), 1, + anon_sym_LPAREN2, + ACTIONS(11525), 1, + sym_raw_string_delimiter, + [249924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, + ACTIONS(5447), 1, anon_sym_LBRACE, - STATE(4507), 1, + STATE(2630), 1, sym_field_declaration_list, - [294806] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12570), 1, - anon_sym_default, - ACTIONS(12572), 1, - anon_sym_delete, - [294816] = 3, + [249934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym_field_declaration_list, - [294826] = 3, + ACTIONS(11527), 1, + anon_sym_LPAREN2, + ACTIONS(11529), 1, + sym_raw_string_delimiter, + [249944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4526), 1, - sym_field_declaration_list, - [294836] = 3, + ACTIONS(11531), 1, + sym_identifier, + STATE(2573), 1, + sym_template_type, + [249954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(9317), 1, anon_sym_LBRACE, - STATE(8170), 1, + STATE(1856), 1, sym_compound_statement, - [294846] = 3, + [249964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, - anon_sym_LBRACE, - STATE(4530), 1, - sym_field_declaration_list, - [294856] = 3, + ACTIONS(10067), 1, + sym_identifier, + STATE(6997), 1, + sym_enumerator, + [249974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1858), 1, - anon_sym_LBRACE, - STATE(1556), 1, - sym_compound_statement, - [294866] = 3, + ACTIONS(11533), 1, + anon_sym_default, + ACTIONS(11535), 1, + anon_sym_delete, + [249984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(8338), 1, - sym_compound_statement, - [294876] = 3, + ACTIONS(10608), 1, + anon_sym_LPAREN2, + STATE(210), 1, + sym_condition_clause, + [249994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(3153), 1, + STATE(2967), 1, sym_field_declaration_list, - [294886] = 3, + [250004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - STATE(8612), 1, - sym_parameter_list, - [294896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12574), 1, - sym_identifier, - STATE(3328), 1, - sym_template_type, - [294906] = 2, + ACTIONS(11539), 1, + sym_raw_string_delimiter, + [250014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12576), 2, - anon_sym_COMMA, - anon_sym_GT2, - [294914] = 3, + ACTIONS(10608), 1, + anon_sym_LPAREN2, + STATE(214), 1, + sym_condition_clause, + [250024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7218), 1, + ACTIONS(6881), 1, anon_sym_LPAREN2, - STATE(9351), 1, + STATE(7236), 1, sym_argument_list, - [294924] = 2, + [250034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12578), 2, - anon_sym_COMMA, - anon_sym_GT2, - [294932] = 3, + ACTIONS(10608), 1, + anon_sym_LPAREN2, + STATE(219), 1, + sym_condition_clause, + [250044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(9317), 1, anon_sym_LBRACE, - STATE(8265), 1, + STATE(1809), 1, sym_compound_statement, - [294942] = 2, + [250054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11810), 2, - anon_sym_COMMA, + ACTIONS(5447), 1, anon_sym_LBRACE, - [294950] = 3, + STATE(2747), 1, + sym_field_declaration_list, + [250064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(11541), 1, anon_sym_LPAREN2, - STATE(8773), 1, - sym_parameter_list, - [294960] = 2, + ACTIONS(11543), 1, + sym_raw_string_delimiter, + [250074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12580), 2, - anon_sym_COMMA, - anon_sym_GT2, - [294968] = 2, + ACTIONS(4645), 1, + anon_sym_LBRACE, + STATE(355), 1, + sym_declaration_list, + [250084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11677), 2, - anon_sym_COMMA, - anon_sym_GT2, - [294976] = 3, + ACTIONS(11545), 1, + anon_sym_default, + ACTIONS(11547), 1, + anon_sym_delete, + [250094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8835), 1, + ACTIONS(263), 1, anon_sym_LBRACE, - STATE(4939), 1, + STATE(333), 1, + sym_compound_statement, + [250104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10256), 1, + anon_sym_LBRACE, + STATE(5281), 1, sym_requirement_seq, - [294986] = 3, + [250114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11599), 1, + ACTIONS(11549), 1, anon_sym_LPAREN2, - STATE(298), 1, - sym_condition_clause, - [294996] = 3, + ACTIONS(11551), 1, + sym_raw_string_delimiter, + [250124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(3103), 1, - sym_field_declaration_list, - [295006] = 2, + ACTIONS(11469), 1, + anon_sym_LT, + STATE(3275), 1, + sym_template_argument_list, + [250134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11688), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [295014] = 3, + ACTIONS(9307), 1, + anon_sym_LBRACE, + STATE(2046), 1, + sym_compound_statement, + [250144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12318), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(9028), 1, + STATE(7245), 1, sym_parenthesized_expression, - [295024] = 3, + [250154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, - anon_sym_LBRACE, - STATE(3102), 1, - sym_field_declaration_list, - [295034] = 3, + ACTIONS(8367), 1, + anon_sym_LPAREN2, + STATE(7123), 1, + sym_parameter_list, + [250164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12582), 1, - anon_sym_LT, - STATE(3214), 1, - sym_template_argument_list, - [295044] = 3, + ACTIONS(11553), 1, + anon_sym_LPAREN2, + ACTIONS(11555), 1, + sym_raw_string_delimiter, + [250174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(9307), 1, anon_sym_LBRACE, - STATE(3101), 1, - sym_field_declaration_list, - [295054] = 3, + STATE(2103), 1, + sym_compound_statement, + [250184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(371), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(800), 1, - sym_compound_statement, - [295064] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12584), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [295072] = 3, + STATE(2903), 1, + sym_field_declaration_list, + [250194] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(8232), 1, + STATE(6525), 1, sym_compound_statement, - [295082] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11703), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [295090] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12586), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [295098] = 3, + [250204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(3104), 1, + STATE(2921), 1, sym_field_declaration_list, - [295108] = 3, + [250214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7218), 1, + ACTIONS(11557), 1, anon_sym_LPAREN2, - STATE(9226), 1, - sym_argument_list, - [295118] = 3, - ACTIONS(9067), 1, + ACTIONS(11559), 1, + sym_raw_string_delimiter, + [250224] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12588), 1, - aux_sym_preproc_include_token2, - ACTIONS(12590), 1, - sym_preproc_arg, - [295128] = 2, + ACTIONS(11561), 1, + anon_sym_LPAREN2, + ACTIONS(11563), 1, + sym_raw_string_delimiter, + [250234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11720), 2, - anon_sym_COMMA, + ACTIONS(4645), 1, anon_sym_LBRACE, - [295136] = 3, + STATE(370), 1, + sym_declaration_list, + [250244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12592), 1, - anon_sym_default, - ACTIONS(12594), 1, - anon_sym_delete, - [295146] = 3, + ACTIONS(11565), 1, + anon_sym_LPAREN2, + ACTIONS(11567), 1, + sym_raw_string_delimiter, + [250254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12596), 1, - anon_sym_default, - ACTIONS(12598), 1, - anon_sym_delete, - [295156] = 2, + ACTIONS(11569), 1, + anon_sym_LPAREN2, + ACTIONS(11571), 1, + sym_raw_string_delimiter, + [250264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12600), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [295164] = 3, + ACTIONS(11573), 1, + anon_sym_LPAREN2, + ACTIONS(11575), 1, + sym_raw_string_delimiter, + [250274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6432), 1, + ACTIONS(5950), 1, anon_sym_LT, - STATE(8094), 1, + STATE(3513), 1, sym_template_argument_list, - [295174] = 2, + [250284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8116), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [295182] = 3, - ACTIONS(3), 1, + ACTIONS(11577), 1, + anon_sym_LPAREN2, + ACTIONS(11579), 1, + sym_raw_string_delimiter, + [250294] = 3, + ACTIONS(8584), 1, sym_comment, - ACTIONS(10950), 1, - sym_identifier, - STATE(8783), 1, - sym_enumerator, - [295192] = 3, + ACTIONS(11581), 1, + aux_sym_preproc_include_token2, + ACTIONS(11583), 1, + sym_preproc_arg, + [250304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(11585), 1, anon_sym_LPAREN2, - STATE(8727), 1, - sym_parameter_list, - [295202] = 3, + ACTIONS(11587), 1, + sym_raw_string_delimiter, + [250314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_LPAREN2, - STATE(8677), 1, - sym_parameter_list, - [295212] = 3, + ACTIONS(263), 1, + anon_sym_LBRACE, + STATE(359), 1, + sym_compound_statement, + [250324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(8303), 1, anon_sym_LBRACE, - STATE(3122), 1, - sym_field_declaration_list, - [295222] = 3, + STATE(2645), 1, + sym_requirement_seq, + [250334] = 3, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(11589), 1, + aux_sym_preproc_include_token2, + ACTIONS(11591), 1, + sym_preproc_arg, + [250344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(5447), 1, anon_sym_LBRACE, - STATE(3132), 1, + STATE(2771), 1, sym_field_declaration_list, - [295232] = 2, + [250354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [295240] = 3, + ACTIONS(11593), 1, + sym_identifier, + STATE(1815), 1, + sym_template_type, + [250364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7218), 1, - anon_sym_LPAREN2, - STATE(9110), 1, - sym_argument_list, - [295250] = 3, + ACTIONS(6705), 1, + anon_sym_LT, + STATE(1726), 1, + sym_template_argument_list, + [250374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(263), 1, anon_sym_LBRACE, - STATE(8160), 1, + STATE(310), 1, sym_compound_statement, - [295260] = 3, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12602), 1, - aux_sym_preproc_include_token2, - ACTIONS(12604), 1, - sym_preproc_arg, - [295270] = 3, + [250384] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(8145), 1, + STATE(6746), 1, sym_compound_statement, - [295280] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12606), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [295288] = 2, + [250394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12608), 1, - anon_sym_DQUOTE, - [295295] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9257), 1, - aux_sym_preproc_include_token2, - [295302] = 2, + ACTIONS(10608), 1, + anon_sym_LPAREN2, + STATE(186), 1, + sym_condition_clause, + [250404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12610), 1, - aux_sym_preproc_if_token2, - [295309] = 2, + ACTIONS(5548), 1, + anon_sym_LBRACE, + STATE(2936), 1, + sym_field_declaration_list, + [250414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12612), 1, - aux_sym_preproc_if_token2, - [295316] = 2, + ACTIONS(11305), 1, + sym_identifier, + STATE(6611), 1, + sym_attribute, + [250424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12614), 1, - anon_sym_SEMI, - [295323] = 2, + ACTIONS(5447), 1, + anon_sym_LBRACE, + STATE(2772), 1, + sym_field_declaration_list, + [250434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9834), 1, - anon_sym_RPAREN, - [295330] = 2, + ACTIONS(10608), 1, + anon_sym_LPAREN2, + STATE(7047), 1, + sym_condition_clause, + [250444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6859), 1, - sym_identifier, - [295337] = 2, + ACTIONS(10602), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [250452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12616), 1, - sym_raw_string_delimiter, - [295344] = 2, - ACTIONS(3), 1, + ACTIONS(10608), 1, + anon_sym_LPAREN2, + STATE(160), 1, + sym_condition_clause, + [250462] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(12618), 1, - anon_sym_SEMI, - [295351] = 2, + ACTIONS(11595), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [250470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12620), 1, - anon_sym_RPAREN, - [295358] = 2, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(6621), 1, + sym_compound_statement, + [250480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8154), 1, - anon_sym_RPAREN, - [295365] = 2, + ACTIONS(11597), 1, + sym_identifier, + STATE(2590), 1, + sym_template_type, + [250490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12622), 1, - anon_sym_SQUOTE, - [295372] = 2, + ACTIONS(11599), 1, + sym_identifier, + STATE(2573), 1, + sym_template_type, + [250500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12624), 1, - anon_sym_RPAREN, - [295379] = 2, + ACTIONS(11469), 1, + anon_sym_LT, + STATE(2397), 1, + sym_template_argument_list, + [250510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12626), 1, - aux_sym_preproc_if_token2, - [295386] = 2, + ACTIONS(2016), 1, + anon_sym_LBRACE, + STATE(2726), 1, + sym_initializer_list, + [250520] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8148), 1, + ACTIONS(11601), 1, anon_sym_RPAREN, - [295393] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(9271), 1, - aux_sym_preproc_include_token2, - [295400] = 2, + [250527] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12628), 1, - anon_sym_RPAREN, - [295407] = 2, + ACTIONS(11603), 1, + anon_sym_PLUS, + [250534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12630), 1, + ACTIONS(11605), 1, aux_sym_preproc_if_token2, - [295414] = 2, + [250541] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7777), 1, - anon_sym_RBRACE, - [295421] = 2, + ACTIONS(11607), 1, + anon_sym_STAR, + [250548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12632), 1, - aux_sym_preproc_if_token2, - [295428] = 2, + ACTIONS(9433), 1, + anon_sym_RPAREN, + [250555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12634), 1, + ACTIONS(11609), 1, anon_sym_LPAREN2, - [295435] = 2, + [250562] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12636), 1, + ACTIONS(11611), 1, sym_raw_string_delimiter, - [295442] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12638), 1, - anon_sym_SEMI, - [295449] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12640), 1, - aux_sym_preproc_if_token2, - [295456] = 2, - ACTIONS(3), 1, + [250569] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(12642), 1, - anon_sym_LPAREN2, - [295463] = 2, + ACTIONS(11613), 1, + aux_sym_preproc_include_token2, + [250576] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12644), 1, - sym_identifier, - [295470] = 2, + ACTIONS(11615), 1, + anon_sym_STAR, + [250583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12646), 1, + ACTIONS(11617), 1, anon_sym_RPAREN, - [295477] = 2, + [250590] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12648), 1, + ACTIONS(11619), 1, aux_sym_preproc_if_token2, - [295484] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12650), 1, - aux_sym_preproc_include_token2, - [295491] = 2, + [250597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12652), 1, + ACTIONS(11621), 1, anon_sym_SEMI, - [295498] = 2, + [250604] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6985), 1, - sym_identifier, - [295505] = 2, + ACTIONS(11623), 1, + sym_auto, + [250611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12654), 1, - sym_raw_string_delimiter, - [295512] = 2, + ACTIONS(9750), 1, + anon_sym_SEMI, + [250618] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12656), 1, + ACTIONS(11625), 1, anon_sym_RPAREN, - [295519] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12658), 1, - sym_raw_string_delimiter, - [295526] = 2, + [250625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12660), 1, + ACTIONS(11627), 1, anon_sym_RPAREN, - [295533] = 2, + [250632] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12662), 1, - sym_raw_string_delimiter, - [295540] = 2, + ACTIONS(6286), 1, + sym_identifier, + [250639] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12664), 1, - anon_sym_RPAREN, - [295547] = 2, + ACTIONS(11629), 1, + anon_sym_SQUOTE, + [250646] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12666), 1, - sym_raw_string_delimiter, - [295554] = 2, + ACTIONS(11631), 1, + anon_sym_SEMI, + [250653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12668), 1, + ACTIONS(11633), 1, anon_sym_RPAREN, - [295561] = 2, + [250660] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12670), 1, - sym_raw_string_delimiter, - [295568] = 2, + ACTIONS(11635), 1, + anon_sym_RPAREN, + [250667] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12672), 1, - anon_sym_RPAREN, - [295575] = 2, + ACTIONS(11637), 1, + anon_sym_LPAREN2, + [250674] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12674), 1, - sym_raw_string_delimiter, - [295582] = 2, + ACTIONS(7608), 1, + anon_sym_SEMI, + [250681] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12676), 1, + ACTIONS(11639), 1, anon_sym_RPAREN, - [295589] = 2, + [250688] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12678), 1, - sym_raw_string_delimiter, - [295596] = 2, + ACTIONS(11641), 1, + sym_identifier, + [250695] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12680), 1, - anon_sym_SEMI, - [295603] = 2, + ACTIONS(11643), 1, + sym_identifier, + [250702] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12682), 1, + ACTIONS(11645), 1, aux_sym_preproc_if_token2, - [295610] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11683), 1, - anon_sym_RBRACE, - [295617] = 2, + [250709] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12684), 1, - anon_sym_LPAREN2, - [295624] = 2, + ACTIONS(11647), 1, + sym_identifier, + [250716] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12686), 1, + ACTIONS(11649), 1, anon_sym_SEMI, - [295631] = 2, + [250723] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12688), 1, - anon_sym_LPAREN2, - [295638] = 2, + ACTIONS(11651), 1, + anon_sym_COLON, + [250730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12690), 1, + ACTIONS(7614), 1, anon_sym_SEMI, - [295645] = 2, + [250737] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12692), 1, + ACTIONS(11653), 1, sym_identifier, - [295652] = 2, + [250744] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12694), 1, - anon_sym_LPAREN2, - [295659] = 2, + ACTIONS(10626), 1, + anon_sym_RBRACE, + [250751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8180), 1, + ACTIONS(11655), 1, anon_sym_SEMI, - [295666] = 2, + [250758] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, - anon_sym_LPAREN2, - [295673] = 2, + ACTIONS(7370), 1, + anon_sym_RBRACE, + [250765] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12698), 1, - anon_sym_LPAREN2, - [295680] = 2, - ACTIONS(3), 1, + ACTIONS(11657), 1, + sym_identifier, + [250772] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(12700), 1, - sym_raw_string_delimiter, - [295687] = 2, + ACTIONS(11659), 1, + aux_sym_preproc_include_token2, + [250779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12702), 1, - anon_sym_LBRACE, - [295694] = 2, + ACTIONS(11661), 1, + sym_identifier, + [250786] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9814), 1, + ACTIONS(11663), 1, anon_sym_RPAREN, - [295701] = 2, + [250793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12704), 1, - sym_raw_string_delimiter, - [295708] = 2, + ACTIONS(11665), 1, + anon_sym_LPAREN2, + [250800] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12706), 1, - sym_identifier, - [295715] = 2, + ACTIONS(11667), 1, + anon_sym_RPAREN, + [250807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12708), 1, + ACTIONS(11669), 1, anon_sym_RPAREN, - [295722] = 2, + [250814] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9840), 1, + ACTIONS(11671), 1, anon_sym_RPAREN, - [295729] = 2, + [250821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12710), 1, - anon_sym_SEMI, - [295736] = 2, + ACTIONS(11673), 1, + anon_sym_STAR, + [250828] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12712), 1, - anon_sym_SEMI, - [295743] = 2, + ACTIONS(6421), 1, + anon_sym_RPAREN, + [250835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8140), 1, - anon_sym_SEMI, - [295750] = 2, + ACTIONS(11675), 1, + sym_identifier, + [250842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8208), 1, + ACTIONS(11677), 1, anon_sym_RPAREN, - [295757] = 2, - ACTIONS(3), 1, + [250849] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(12714), 1, - anon_sym_SEMI, - [295764] = 2, + ACTIONS(11679), 1, + aux_sym_preproc_include_token2, + [250856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8190), 1, + ACTIONS(11681), 1, anon_sym_RPAREN, - [295771] = 2, + [250863] = 2, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(10590), 1, + aux_sym_preproc_include_token2, + [250870] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12716), 1, + ACTIONS(11683), 1, anon_sym_RPAREN, - [295778] = 2, + [250877] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11685), 1, + sym_identifier, + [250884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12718), 1, + ACTIONS(11687), 1, anon_sym_SEMI, - [295785] = 2, + [250891] = 2, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8708), 1, + aux_sym_preproc_include_token2, + [250898] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8170), 1, - anon_sym_RPAREN, - [295792] = 2, + ACTIONS(11689), 1, + anon_sym_SEMI, + [250905] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12720), 1, - anon_sym_while, - [295799] = 2, + ACTIONS(11691), 1, + anon_sym_SEMI, + [250912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12722), 1, - sym_identifier, - [295806] = 2, + ACTIONS(11693), 1, + anon_sym_SEMI, + [250919] = 2, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(11695), 1, + aux_sym_preproc_include_token2, + [250926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12724), 1, - anon_sym_LPAREN2, - [295813] = 2, + ACTIONS(11697), 1, + anon_sym_SEMI, + [250933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12726), 1, - anon_sym_RPAREN, - [295820] = 2, + ACTIONS(11699), 1, + anon_sym_SEMI, + [250940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12728), 1, - anon_sym_RPAREN, - [295827] = 2, + ACTIONS(11701), 1, + anon_sym_COLON, + [250947] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12730), 1, - anon_sym_DQUOTE, - [295834] = 2, + ACTIONS(11703), 1, + anon_sym_LPAREN2, + [250954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12732), 1, + ACTIONS(11705), 1, anon_sym_RPAREN, - [295841] = 2, + [250961] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12734), 1, - anon_sym_DQUOTE, - [295848] = 2, + ACTIONS(11707), 1, + anon_sym_STAR, + [250968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12736), 1, - anon_sym_EQ, - [295855] = 2, + ACTIONS(11709), 1, + aux_sym_preproc_if_token2, + [250975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12738), 1, - sym_raw_string_content, - [295862] = 2, + ACTIONS(11711), 1, + sym_identifier, + [250982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12740), 1, - aux_sym_preproc_if_token2, - [295869] = 2, + ACTIONS(11713), 1, + sym_identifier, + [250989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12742), 1, - aux_sym_preproc_if_token2, - [295876] = 2, + ACTIONS(11715), 1, + anon_sym_RPAREN, + [250996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12744), 1, + ACTIONS(11717), 1, anon_sym_SEMI, - [295883] = 2, + [251003] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12746), 1, - anon_sym_STAR, - [295890] = 2, + ACTIONS(11719), 1, + anon_sym_SEMI, + [251010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12748), 1, - anon_sym_LPAREN2, - [295897] = 2, + ACTIONS(11721), 1, + sym_identifier, + [251017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12750), 1, - anon_sym_STAR, - [295904] = 2, + ACTIONS(11723), 1, + anon_sym_RPAREN, + [251024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12752), 1, - anon_sym_COLON, - [295911] = 2, + ACTIONS(11725), 1, + sym_identifier, + [251031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12754), 1, + ACTIONS(11727), 1, anon_sym_SEMI, - [295918] = 2, + [251038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12756), 1, + ACTIONS(11729), 1, sym_identifier, - [295925] = 2, + [251045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12758), 1, + ACTIONS(11731), 1, anon_sym_SEMI, - [295932] = 2, + [251052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12760), 1, - anon_sym_COLON, - [295939] = 2, + ACTIONS(11733), 1, + anon_sym_DQUOTE, + [251059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12762), 1, + ACTIONS(11735), 1, anon_sym_RPAREN, - [295946] = 2, + [251066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10385), 1, + ACTIONS(11737), 1, anon_sym_SEMI, - [295953] = 2, + [251073] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11739), 1, + anon_sym_RPAREN, + [251080] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8168), 1, + ACTIONS(11741), 1, anon_sym_SEMI, - [295960] = 2, + [251087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_RPAREN, - [295967] = 2, + ACTIONS(11743), 1, + anon_sym_SEMI, + [251094] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8152), 1, - anon_sym_RPAREN, - [295974] = 2, + ACTIONS(11745), 1, + anon_sym_SEMI, + [251101] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12764), 1, - anon_sym_RPAREN, - [295981] = 2, + ACTIONS(11747), 1, + anon_sym_SEMI, + [251108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12766), 1, - anon_sym_RPAREN, - [295988] = 2, + ACTIONS(11749), 1, + anon_sym_SEMI, + [251115] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11751), 1, + anon_sym_DQUOTE, + [251122] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12768), 1, + ACTIONS(11753), 1, anon_sym_SEMI, - [295995] = 2, + [251129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12770), 1, + ACTIONS(11755), 1, sym_identifier, - [296002] = 2, + [251136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12772), 1, - anon_sym_SEMI, - [296009] = 2, + ACTIONS(11757), 1, + anon_sym_STAR, + [251143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12774), 1, - anon_sym_SEMI, - [296016] = 2, + ACTIONS(11759), 1, + sym_identifier, + [251150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12776), 1, - anon_sym_LPAREN2, - [296023] = 2, + ACTIONS(11761), 1, + anon_sym_SEMI, + [251157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8110), 1, + ACTIONS(11763), 1, anon_sym_SEMI, - [296030] = 2, + [251164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12778), 1, - anon_sym_RPAREN, - [296037] = 2, + ACTIONS(11765), 1, + anon_sym_DOT_DOT_DOT, + [251171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12780), 1, - anon_sym_COMMA, - [296044] = 2, + ACTIONS(11768), 1, + anon_sym_LPAREN2, + [251178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8142), 1, + ACTIONS(9397), 1, anon_sym_RPAREN, - [296051] = 2, + [251185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12782), 1, + ACTIONS(11770), 1, aux_sym_preproc_if_token2, - [296058] = 2, + [251192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12784), 1, - sym_identifier, - [296065] = 2, + ACTIONS(11772), 1, + sym_raw_string_delimiter, + [251199] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11774), 1, + aux_sym_preproc_if_token2, + [251206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10311), 1, + ACTIONS(11776), 1, anon_sym_SEMI, - [296072] = 2, + [251213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12786), 1, - sym_identifier, - [296079] = 2, + ACTIONS(11778), 1, + aux_sym_preproc_if_token2, + [251220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12788), 1, - sym_raw_string_delimiter, - [296086] = 2, + ACTIONS(11780), 1, + aux_sym_preproc_if_token2, + [251227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12790), 1, + ACTIONS(11782), 1, anon_sym_RPAREN, - [296093] = 2, + [251234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12792), 1, - anon_sym_DQUOTE, - [296100] = 2, + ACTIONS(11784), 1, + anon_sym_SEMI, + [251241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9766), 1, - anon_sym_RPAREN, - [296107] = 2, + ACTIONS(11786), 1, + aux_sym_preproc_if_token2, + [251248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12794), 1, - anon_sym_RPAREN, - [296114] = 2, + ACTIONS(11788), 1, + anon_sym_SEMI, + [251255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11617), 1, - anon_sym_RPAREN, - [296121] = 2, + ACTIONS(11790), 1, + sym_identifier, + [251262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8058), 1, - anon_sym_RPAREN, - [296128] = 2, + ACTIONS(11792), 1, + sym_identifier, + [251269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12796), 1, + ACTIONS(11794), 1, anon_sym_RPAREN, - [296135] = 2, + [251276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12798), 1, - anon_sym_RPAREN, - [296142] = 2, + ACTIONS(11796), 1, + sym_identifier, + [251283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12800), 1, + ACTIONS(11798), 1, anon_sym_SEMI, - [296149] = 2, + [251290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12802), 1, - anon_sym_SEMI, - [296156] = 2, + ACTIONS(11800), 1, + aux_sym_preproc_if_token2, + [251297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12804), 1, - sym_identifier, - [296163] = 2, + ACTIONS(11802), 1, + aux_sym_preproc_if_token2, + [251304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12806), 1, - sym_identifier, - [296170] = 2, + ACTIONS(11804), 1, + aux_sym_preproc_if_token2, + [251311] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12808), 1, - anon_sym_RPAREN, - [296177] = 2, + ACTIONS(11806), 1, + aux_sym_preproc_if_token2, + [251318] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8036), 1, - anon_sym_RPAREN, - [296184] = 2, + ACTIONS(11808), 1, + anon_sym_SEMI, + [251325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12810), 1, + ACTIONS(11810), 1, sym_identifier, - [296191] = 2, + [251332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8088), 1, + ACTIONS(11812), 1, anon_sym_SEMI, - [296198] = 2, + [251339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12812), 1, - anon_sym_DQUOTE, - [296205] = 2, + ACTIONS(11814), 1, + anon_sym_SEMI, + [251346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8078), 1, + ACTIONS(11816), 1, anon_sym_SEMI, - [296212] = 2, + [251353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12814), 1, - aux_sym_preproc_if_token2, - [296219] = 2, + ACTIONS(11818), 1, + anon_sym_DQUOTE, + [251360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12816), 1, - anon_sym_SEMI, - [296226] = 2, + ACTIONS(11820), 1, + aux_sym_preproc_if_token2, + [251367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12818), 1, - anon_sym_DQUOTE, - [296233] = 2, + ACTIONS(11822), 1, + anon_sym_SEMI, + [251374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12820), 1, - anon_sym_RPAREN, - [296240] = 2, + ACTIONS(11824), 1, + anon_sym_STAR, + [251381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9804), 1, - anon_sym_RPAREN, - [296247] = 2, + ACTIONS(11826), 1, + anon_sym_SEMI, + [251388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12822), 1, - anon_sym_DQUOTE, - [296254] = 2, + ACTIONS(11828), 1, + anon_sym_SEMI, + [251395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12824), 1, + ACTIONS(11830), 1, anon_sym_DQUOTE, - [296261] = 2, + [251402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12826), 1, - anon_sym_SQUOTE, - [296268] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12828), 1, + ACTIONS(11832), 1, anon_sym_SEMI, - [296275] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12830), 1, - aux_sym_preproc_include_token2, - [296282] = 2, + [251409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7984), 1, - anon_sym_RPAREN, - [296289] = 2, + ACTIONS(11834), 1, + anon_sym_SEMI, + [251416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12832), 1, - anon_sym_RBRACK, - [296296] = 2, + ACTIONS(11836), 1, + anon_sym_SEMI, + [251423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12834), 1, + ACTIONS(11838), 1, anon_sym_RPAREN, - [296303] = 2, + [251430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12836), 1, + ACTIONS(11840), 1, anon_sym_SEMI, - [296310] = 2, + [251437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12838), 1, + ACTIONS(11842), 1, anon_sym_SEMI, - [296317] = 2, + [251444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7912), 1, + ACTIONS(11844), 1, anon_sym_SEMI, - [296324] = 2, + [251451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12840), 1, - anon_sym_DQUOTE, - [296331] = 2, + ACTIONS(11846), 1, + anon_sym_RPAREN, + [251458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12842), 1, + ACTIONS(11848), 1, anon_sym_COLON, - [296338] = 2, + [251465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12844), 1, + ACTIONS(11850), 1, anon_sym_SEMI, - [296345] = 2, + [251472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7938), 1, + ACTIONS(11852), 1, anon_sym_SEMI, - [296352] = 2, - ACTIONS(3), 1, + [251479] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(12846), 1, - anon_sym_DQUOTE, - [296359] = 2, + ACTIONS(10841), 1, + aux_sym_preproc_include_token2, + [251486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12848), 1, - sym_identifier, - [296366] = 2, - ACTIONS(3), 1, + ACTIONS(11854), 1, + anon_sym_LPAREN2, + [251493] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(12850), 1, - anon_sym_RPAREN, - [296373] = 2, + ACTIONS(11856), 1, + aux_sym_preproc_include_token2, + [251500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12852), 1, + ACTIONS(11858), 1, anon_sym_RPAREN, - [296380] = 2, + [251507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8136), 1, + ACTIONS(11860), 1, anon_sym_RPAREN, - [296387] = 2, + [251514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7761), 1, - anon_sym_RBRACE, - [296394] = 2, + ACTIONS(11862), 1, + anon_sym_SEMI, + [251521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8132), 1, + ACTIONS(11864), 1, anon_sym_RPAREN, - [296401] = 2, + [251528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12854), 1, + ACTIONS(11866), 1, anon_sym_RPAREN, - [296408] = 2, + [251535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11515), 1, - anon_sym_RBRACE, - [296415] = 2, + ACTIONS(11868), 1, + anon_sym_RPAREN, + [251542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12856), 1, - anon_sym_DQUOTE, - [296422] = 2, + ACTIONS(11870), 1, + anon_sym_RPAREN, + [251549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12858), 1, + ACTIONS(11872), 1, sym_identifier, - [296429] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11413), 1, - anon_sym_SEMI, - [296436] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12860), 1, - anon_sym_SEMI, - [296443] = 2, + [251556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12862), 1, - anon_sym_DQUOTE, - [296450] = 2, + ACTIONS(11874), 1, + anon_sym_RPAREN, + [251563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12864), 1, + ACTIONS(11876), 1, anon_sym_LPAREN2, - [296457] = 2, + [251570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12866), 1, - anon_sym_STAR, - [296464] = 2, + ACTIONS(11878), 1, + anon_sym_SEMI, + [251577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8042), 1, + ACTIONS(11880), 1, anon_sym_SEMI, - [296471] = 2, + [251584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12868), 1, - anon_sym_RPAREN, - [296478] = 2, + ACTIONS(11882), 1, + anon_sym_DOT_DOT_DOT, + [251591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12870), 1, - anon_sym_RPAREN, - [296485] = 2, + ACTIONS(11885), 1, + sym_identifier, + [251598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12872), 1, - aux_sym_preproc_if_token2, - [296492] = 2, + ACTIONS(11887), 1, + anon_sym_RPAREN, + [251605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12874), 1, + ACTIONS(7516), 1, anon_sym_SEMI, - [296499] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12876), 1, - anon_sym_DQUOTE, - [296506] = 2, + [251612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12878), 1, - sym_auto, - [296513] = 2, + ACTIONS(11889), 1, + anon_sym_EQ, + [251619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12880), 1, - anon_sym_LPAREN2, - [296520] = 2, + ACTIONS(7550), 1, + anon_sym_SEMI, + [251626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12882), 1, - anon_sym_RPAREN, - [296527] = 2, + ACTIONS(11891), 1, + anon_sym_DOT_DOT_DOT, + [251633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12884), 1, - aux_sym_preproc_if_token2, - [296534] = 2, + ACTIONS(11894), 1, + anon_sym_SEMI, + [251640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12886), 1, - aux_sym_preproc_if_token2, - [296541] = 2, + ACTIONS(11896), 1, + anon_sym_DOT_DOT_DOT, + [251647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7928), 1, - anon_sym_SEMI, - [296548] = 2, + ACTIONS(11899), 1, + sym_identifier, + [251654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12888), 1, - anon_sym_SEMI, - [296555] = 2, + ACTIONS(11901), 1, + aux_sym_preproc_if_token2, + [251661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, - anon_sym_SEMI, - [296562] = 2, + ACTIONS(11903), 1, + anon_sym_DOT_DOT_DOT, + [251668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12890), 1, - anon_sym_DQUOTE, - [296569] = 2, + ACTIONS(9329), 1, + anon_sym_RPAREN, + [251675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12892), 1, - anon_sym_SEMI, - [296576] = 2, + ACTIONS(11906), 1, + aux_sym_preproc_if_token2, + [251682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12894), 1, - anon_sym_SEMI, - [296583] = 2, + ACTIONS(11908), 1, + sym_raw_string_delimiter, + [251689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12896), 1, - anon_sym_COLON, - [296590] = 2, + ACTIONS(11910), 1, + anon_sym_RPAREN, + [251696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12898), 1, - anon_sym_DQUOTE, - [296597] = 2, - ACTIONS(9067), 1, + ACTIONS(11912), 1, + sym_identifier, + [251703] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(9211), 1, + ACTIONS(11914), 1, aux_sym_preproc_include_token2, - [296604] = 2, + [251710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12900), 1, - anon_sym_DQUOTE, - [296611] = 2, + ACTIONS(11916), 1, + anon_sym_SQUOTE, + [251717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4618), 1, - anon_sym_SEMI, - [296618] = 2, + ACTIONS(5765), 1, + sym_identifier, + [251724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7944), 1, + ACTIONS(9784), 1, anon_sym_SEMI, - [296625] = 2, + [251731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12902), 1, + ACTIONS(11918), 1, sym_identifier, - [296632] = 2, + [251738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11899), 1, + ACTIONS(11920), 1, anon_sym_SEMI, - [296639] = 2, + [251745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12904), 1, + ACTIONS(11922), 1, anon_sym_SEMI, - [296646] = 2, + [251752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7642), 1, - anon_sym_RBRACE, - [296653] = 2, + ACTIONS(11924), 1, + anon_sym_DOT_DOT_DOT, + [251759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12906), 1, - sym_auto, - [296660] = 2, + ACTIONS(11927), 1, + anon_sym_DOT_DOT_DOT, + [251766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12908), 1, - sym_identifier, - [296667] = 2, + ACTIONS(11930), 1, + anon_sym_DOT_DOT_DOT, + [251773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12910), 1, - anon_sym_SEMI, - [296674] = 2, + ACTIONS(11933), 1, + anon_sym_STAR, + [251780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12912), 1, - aux_sym_preproc_if_token2, - [296681] = 2, + ACTIONS(11935), 1, + anon_sym_STAR, + [251787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12914), 1, - aux_sym_preproc_if_token2, - [296688] = 2, + ACTIONS(11937), 1, + sym_auto, + [251794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12916), 1, + ACTIONS(11939), 1, aux_sym_preproc_if_token2, - [296695] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12918), 1, - sym_raw_string_delimiter, - [296702] = 2, + [251801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9776), 1, + ACTIONS(11941), 1, anon_sym_RPAREN, - [296709] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(11734), 1, - aux_sym_preproc_include_token2, - [296716] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12920), 1, - anon_sym_DQUOTE, - [296723] = 2, + [251808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12922), 1, - anon_sym_SEMI, - [296730] = 2, + ACTIONS(7266), 1, + anon_sym_RBRACE, + [251815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12924), 1, + ACTIONS(11943), 1, anon_sym_SEMI, - [296737] = 2, + [251822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12926), 1, + ACTIONS(11945), 1, anon_sym_SEMI, - [296744] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12928), 1, - anon_sym_DQUOTE, - [296751] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12930), 1, - aux_sym_preproc_include_token2, - [296758] = 2, + [251829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12932), 1, - anon_sym_SEMI, - [296765] = 2, + ACTIONS(10914), 1, + anon_sym_RBRACE, + [251836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12934), 1, - anon_sym_SEMI, - [296772] = 2, + ACTIONS(11947), 1, + anon_sym_DOT_DOT_DOT, + [251843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12936), 1, - anon_sym_RPAREN, - [296779] = 2, + ACTIONS(11950), 1, + anon_sym_COLON, + [251850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12938), 1, + ACTIONS(10562), 1, anon_sym_SEMI, - [296786] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12940), 1, - sym_identifier, - [296793] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12942), 1, - sym_identifier, - [296800] = 2, + [251857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12944), 1, - aux_sym_preproc_if_token2, - [296807] = 2, + ACTIONS(11952), 1, + anon_sym_LPAREN2, + [251864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 1, + ACTIONS(11954), 1, anon_sym_DOT_DOT_DOT, - [296814] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12946), 1, - aux_sym_preproc_include_token2, - [296821] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12948), 1, - anon_sym_LBRACE, - [296828] = 2, + [251871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12950), 1, - anon_sym_DQUOTE, - [296835] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12952), 1, - anon_sym_RPAREN, - [296842] = 2, + ACTIONS(11957), 1, + anon_sym_DOT_DOT_DOT, + [251878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12954), 1, - anon_sym_SEMI, - [296849] = 2, + ACTIONS(11960), 1, + sym_raw_string_content, + [251885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12956), 1, + ACTIONS(11962), 1, anon_sym_RPAREN, - [296856] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12958), 1, - anon_sym_SEMI, - [296863] = 2, - ACTIONS(3), 1, + [251892] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(11927), 1, - anon_sym_RBRACE, - [296870] = 2, + ACTIONS(11964), 1, + aux_sym_preproc_include_token2, + [251899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8178), 1, + ACTIONS(11966), 1, anon_sym_RPAREN, - [296877] = 2, + [251906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12960), 1, - anon_sym_SEMI, - [296884] = 2, + ACTIONS(11968), 1, + sym_identifier, + [251913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8006), 1, + ACTIONS(11970), 1, anon_sym_RPAREN, - [296891] = 2, + [251920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12962), 1, - anon_sym_RPAREN, - [296898] = 2, + ACTIONS(11972), 1, + anon_sym_LPAREN2, + [251927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6844), 1, + ACTIONS(11974), 1, anon_sym_RPAREN, - [296905] = 2, + [251934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12964), 1, + ACTIONS(11976), 1, anon_sym_RPAREN, - [296912] = 2, + [251941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12966), 1, + ACTIONS(11978), 1, anon_sym_RPAREN, - [296919] = 2, + [251948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12968), 1, + ACTIONS(11980), 1, anon_sym_RPAREN, - [296926] = 2, + [251955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12970), 1, + ACTIONS(11982), 1, anon_sym_RPAREN, - [296933] = 2, + [251962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12972), 1, + ACTIONS(10073), 1, anon_sym_SEMI, - [296940] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12974), 1, - aux_sym_preproc_include_token2, - [296947] = 2, + [251969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12976), 1, - anon_sym_DQUOTE, - [296954] = 2, + ACTIONS(11984), 1, + anon_sym_DOT_DOT_DOT, + [251976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12978), 1, + ACTIONS(11987), 1, anon_sym_SEMI, - [296961] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12980), 1, - anon_sym_RPAREN, - [296968] = 2, + [251983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12982), 1, + ACTIONS(4469), 1, anon_sym_SEMI, - [296975] = 2, + [251990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12984), 1, - anon_sym_SEMI, - [296982] = 2, + ACTIONS(11989), 1, + sym_auto, + [251997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12986), 1, - anon_sym_RPAREN, - [296989] = 2, + ACTIONS(11991), 1, + sym_identifier, + [252004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12988), 1, - sym_identifier, - [296996] = 2, + ACTIONS(9796), 1, + anon_sym_SEMI, + [252011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12990), 1, - aux_sym_preproc_if_token2, - [297003] = 2, + ACTIONS(11993), 1, + anon_sym_COLON, + [252018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12992), 1, + ACTIONS(9381), 1, anon_sym_RPAREN, - [297010] = 2, - ACTIONS(9067), 1, + [252025] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(12994), 1, + ACTIONS(11995), 1, aux_sym_preproc_include_token2, - [297017] = 2, + [252032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12996), 1, - sym_identifier, - [297024] = 2, + ACTIONS(11997), 1, + sym_raw_string_delimiter, + [252039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12998), 1, - anon_sym_RPAREN, - [297031] = 2, + ACTIONS(10982), 1, + anon_sym_RBRACE, + [252046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13000), 1, + ACTIONS(11999), 1, sym_identifier, - [297038] = 2, + [252053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13002), 1, + ACTIONS(12001), 1, aux_sym_preproc_if_token2, - [297045] = 2, + [252060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13004), 1, - anon_sym_SEMI, - [297052] = 2, + ACTIONS(12003), 1, + aux_sym_preproc_if_token2, + [252067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8188), 1, + ACTIONS(9714), 1, anon_sym_SEMI, - [297059] = 2, + [252074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8186), 1, + ACTIONS(12005), 1, anon_sym_SEMI, - [297066] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13006), 1, - anon_sym_RPAREN, - [297073] = 2, + [252081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13008), 1, - anon_sym_SEMI, - [297080] = 2, + ACTIONS(7434), 1, + anon_sym_RBRACE, + [252088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7990), 1, + ACTIONS(12007), 1, anon_sym_SEMI, - [297087] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13010), 1, - anon_sym_LPAREN2, - [297094] = 2, + [252095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13012), 1, - anon_sym_SEMI, - [297101] = 2, + ACTIONS(12009), 1, + sym_raw_string_delimiter, + [252102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13014), 1, - aux_sym_preproc_if_token2, - [297108] = 2, + ACTIONS(9339), 1, + anon_sym_RPAREN, + [252109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13016), 1, - anon_sym_SQUOTE, - [297115] = 2, + ACTIONS(12011), 1, + ts_builtin_sym_end, + [252116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13018), 1, - anon_sym_SEMI, - [297122] = 2, + ACTIONS(12013), 1, + anon_sym_DOT_DOT_DOT, + [252123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13020), 1, + ACTIONS(12015), 1, anon_sym_RPAREN, - [297129] = 2, + [252130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8182), 1, - anon_sym_RPAREN, - [297136] = 2, + ACTIONS(12017), 1, + anon_sym_SEMI, + [252137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8072), 1, - anon_sym_SEMI, - [297143] = 2, + ACTIONS(11138), 1, + anon_sym_COLON_COLON, + [252144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13022), 1, - sym_raw_string_delimiter, - [297150] = 2, + ACTIONS(12019), 1, + anon_sym_LPAREN2, + [252151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13024), 1, + ACTIONS(12021), 1, anon_sym_RPAREN, - [297157] = 2, + [252158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13026), 1, + ACTIONS(12023), 1, anon_sym_RPAREN, - [297164] = 2, + [252165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7896), 1, - anon_sym_RPAREN, - [297171] = 2, + ACTIONS(12025), 1, + aux_sym_preproc_if_token2, + [252172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13028), 1, + ACTIONS(12027), 1, anon_sym_SEMI, - [297178] = 2, - ACTIONS(9067), 1, + [252179] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(13030), 1, + ACTIONS(12029), 1, aux_sym_preproc_include_token2, - [297185] = 2, + [252186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13032), 1, - sym_identifier, - [297192] = 2, + ACTIONS(12031), 1, + anon_sym_STAR, + [252193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8192), 1, - anon_sym_RPAREN, - [297199] = 2, + ACTIONS(12033), 1, + sym_identifier, + [252200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13034), 1, - sym_identifier, - [297206] = 2, + ACTIONS(12035), 1, + anon_sym_SEMI, + [252207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13036), 1, - sym_identifier, - [297213] = 2, + ACTIONS(12037), 1, + anon_sym_SEMI, + [252214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13038), 1, - anon_sym_RPAREN, - [297220] = 2, + ACTIONS(12039), 1, + anon_sym_SEMI, + [252221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13040), 1, + ACTIONS(12041), 1, anon_sym_RPAREN, - [297227] = 2, + [252228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7932), 1, - anon_sym_RPAREN, - [297234] = 2, - ACTIONS(9067), 1, + ACTIONS(12043), 1, + anon_sym_DQUOTE, + [252235] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(11818), 1, - aux_sym_preproc_include_token2, - [297241] = 2, + ACTIONS(12045), 1, + anon_sym_STAR, + [252242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13042), 1, + ACTIONS(12047), 1, aux_sym_preproc_if_token2, - [297248] = 2, + [252249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13044), 1, - anon_sym_RBRACK, - [297255] = 2, + ACTIONS(12049), 1, + sym_identifier, + [252256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7982), 1, + ACTIONS(12051), 1, anon_sym_RPAREN, - [297262] = 2, + [252263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8000), 1, - anon_sym_SEMI, - [297269] = 2, + ACTIONS(12053), 1, + aux_sym_preproc_if_token2, + [252270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13046), 1, - anon_sym_SEMI, - [297276] = 2, + ACTIONS(6204), 1, + sym_identifier, + [252277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8184), 1, + ACTIONS(9427), 1, anon_sym_RPAREN, - [297283] = 2, + [252284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13048), 1, - anon_sym_SQUOTE, - [297290] = 2, + ACTIONS(12055), 1, + anon_sym_SEMI, + [252291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7972), 1, - anon_sym_RPAREN, - [297297] = 2, + ACTIONS(12057), 1, + sym_raw_string_delimiter, + [252298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7934), 1, - anon_sym_RPAREN, - [297304] = 2, + ACTIONS(12059), 1, + sym_identifier, + [252305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13050), 1, + ACTIONS(12061), 1, anon_sym_RPAREN, - [297311] = 2, + [252312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13052), 1, - anon_sym_RPAREN, - [297318] = 2, + ACTIONS(12063), 1, + anon_sym_SEMI, + [252319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13054), 1, - anon_sym_RPAREN, - [297325] = 2, + ACTIONS(12065), 1, + aux_sym_preproc_if_token2, + [252326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13056), 1, - anon_sym_DQUOTE, - [297332] = 2, + ACTIONS(12067), 1, + anon_sym_SQUOTE, + [252333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13058), 1, + ACTIONS(12069), 1, anon_sym_SEMI, - [297339] = 2, + [252340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, - anon_sym_RPAREN, - [297346] = 2, + ACTIONS(7600), 1, + anon_sym_SEMI, + [252347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_STAR_EQ, - [297353] = 2, + ACTIONS(12071), 1, + aux_sym_preproc_if_token2, + [252354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13062), 1, - anon_sym_RPAREN, - [297360] = 2, + ACTIONS(9117), 1, + sym_identifier, + [252361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7946), 1, - anon_sym_RPAREN, - [297367] = 2, + ACTIONS(12073), 1, + anon_sym_SEMI, + [252368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13064), 1, + ACTIONS(12075), 1, anon_sym_SEMI, - [297374] = 2, + [252375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7958), 1, - anon_sym_RPAREN, - [297381] = 2, + ACTIONS(12077), 1, + anon_sym_SEMI, + [252382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13066), 1, - sym_raw_string_delimiter, - [297388] = 2, + ACTIONS(7596), 1, + anon_sym_SEMI, + [252389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9796), 1, - anon_sym_RPAREN, - [297395] = 2, + ACTIONS(12079), 1, + anon_sym_LPAREN2, + [252396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13068), 1, - anon_sym_STAR, - [297402] = 2, + ACTIONS(12081), 1, + anon_sym_SEMI, + [252403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13070), 1, - anon_sym_SEMI, - [297409] = 2, + ACTIONS(12083), 1, + sym_identifier, + [252410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13072), 1, - anon_sym_SEMI, - [297416] = 2, + ACTIONS(12085), 1, + anon_sym_RPAREN, + [252417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13074), 1, - anon_sym_SEMI, - [297423] = 2, + ACTIONS(12087), 1, + anon_sym_RPAREN, + [252424] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12089), 1, + anon_sym_DQUOTE, + [252431] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12091), 1, + anon_sym_RPAREN, + [252438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7976), 1, + ACTIONS(12093), 1, anon_sym_RPAREN, - [297430] = 2, + [252445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13076), 1, - anon_sym_SEMI, - [297437] = 2, + ACTIONS(6476), 1, + anon_sym_RPAREN, + [252452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 1, - sym_identifier, - [297444] = 2, + ACTIONS(12095), 1, + anon_sym_RPAREN, + [252459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13078), 1, - anon_sym_DQUOTE, - [297451] = 2, + ACTIONS(12097), 1, + aux_sym_preproc_if_token2, + [252466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13080), 1, + ACTIONS(12099), 1, anon_sym_SEMI, - [297458] = 2, - ACTIONS(3), 1, + [252473] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(13082), 1, - anon_sym_LPAREN2, - [297465] = 2, + ACTIONS(12101), 1, + aux_sym_preproc_include_token2, + [252480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13084), 1, - anon_sym_LPAREN2, - [297472] = 2, + ACTIONS(12103), 1, + anon_sym_SEMI, + [252487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13086), 1, + ACTIONS(12105), 1, anon_sym_SEMI, - [297479] = 2, + [252494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13088), 1, + ACTIONS(12107), 1, anon_sym_LPAREN2, - [297486] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13090), 1, - sym_auto, - [297493] = 2, - ACTIONS(3), 1, + [252501] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(13092), 1, - anon_sym_RPAREN, - [297500] = 2, + ACTIONS(11128), 1, + aux_sym_preproc_include_token2, + [252508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8106), 1, + ACTIONS(9313), 1, anon_sym_RPAREN, - [297507] = 2, + [252515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13094), 1, + ACTIONS(12109), 1, anon_sym_SEMI, - [297514] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13096), 1, - anon_sym_SEMI, - [297521] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13098), 1, - aux_sym_preproc_if_token2, - [297528] = 2, + [252522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13100), 1, - anon_sym_STAR, - [297535] = 2, + ACTIONS(12111), 1, + sym_raw_string_delimiter, + [252529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13102), 1, - anon_sym_while, - [297542] = 2, + ACTIONS(12113), 1, + sym_identifier, + [252536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13104), 1, - anon_sym_SEMI, - [297549] = 2, + ACTIONS(12115), 1, + anon_sym_RPAREN, + [252543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13106), 1, - anon_sym_LPAREN2, - [297556] = 2, + ACTIONS(12117), 1, + anon_sym_RPAREN, + [252550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13108), 1, + ACTIONS(12119), 1, anon_sym_RPAREN, - [297563] = 2, + [252557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13110), 1, + ACTIONS(12121), 1, anon_sym_SEMI, - [297570] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(13112), 1, - aux_sym_preproc_include_token2, - [297577] = 2, + [252564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13114), 1, + ACTIONS(12123), 1, anon_sym_SEMI, - [297584] = 2, + [252571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13116), 1, - anon_sym_EQ, - [297591] = 2, + ACTIONS(12125), 1, + anon_sym_SEMI, + [252578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13118), 1, - sym_raw_string_content, - [297598] = 2, + ACTIONS(12127), 1, + anon_sym_LPAREN2, + [252585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13120), 1, - anon_sym_STAR, - [297605] = 2, + ACTIONS(12129), 1, + anon_sym_SEMI, + [252592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13122), 1, + ACTIONS(12131), 1, anon_sym_COLON, - [297612] = 2, + [252599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13124), 1, - sym_identifier, - [297619] = 2, + ACTIONS(12133), 1, + anon_sym_RPAREN, + [252606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13126), 1, + ACTIONS(7558), 1, anon_sym_SEMI, - [297626] = 2, + [252613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13128), 1, - anon_sym_SEMI, - [297633] = 2, + ACTIONS(12135), 1, + anon_sym_LPAREN2, + [252620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13130), 1, - sym_auto, - [297640] = 2, + ACTIONS(12137), 1, + sym_identifier, + [252627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4782), 1, - anon_sym_SEMI, - [297647] = 2, + ACTIONS(12139), 1, + anon_sym_COLON, + [252634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7996), 1, - anon_sym_SEMI, - [297654] = 2, + ACTIONS(12141), 1, + sym_identifier, + [252641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13132), 1, + ACTIONS(12143), 1, anon_sym_RPAREN, - [297661] = 2, + [252648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13134), 1, - anon_sym_COMMA, - [297668] = 2, + ACTIONS(12145), 1, + anon_sym_RPAREN, + [252655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13136), 1, + ACTIONS(12147), 1, anon_sym_SEMI, - [297675] = 2, + [252662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13138), 1, - anon_sym_SEMI, - [297682] = 2, + ACTIONS(12149), 1, + anon_sym_RPAREN, + [252669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11003), 1, + ACTIONS(12151), 1, anon_sym_SEMI, - [297689] = 2, - ACTIONS(3), 1, + [252676] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(13140), 1, - anon_sym_SEMI, - [297696] = 2, + ACTIONS(11164), 1, + aux_sym_preproc_include_token2, + [252683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7992), 1, - anon_sym_SEMI, - [297703] = 2, + ACTIONS(12153), 1, + sym_identifier, + [252690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10371), 1, - anon_sym_SEMI, - [297710] = 2, + ACTIONS(12155), 1, + anon_sym_RPAREN, + [252697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7988), 1, - anon_sym_SEMI, - [297717] = 2, + ACTIONS(12157), 1, + sym_identifier, + [252704] = 2, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(12159), 1, + aux_sym_preproc_include_token2, + [252711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7930), 1, + ACTIONS(9405), 1, anon_sym_RPAREN, - [297724] = 2, + [252718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13142), 1, + ACTIONS(12161), 1, anon_sym_RPAREN, - [297731] = 2, + [252725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13144), 1, - anon_sym_RPAREN, - [297738] = 2, + ACTIONS(12163), 1, + sym_raw_string_delimiter, + [252732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13146), 1, + ACTIONS(12165), 1, anon_sym_RPAREN, - [297745] = 2, + [252739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13148), 1, + ACTIONS(12167), 1, anon_sym_RPAREN, - [297752] = 2, + [252746] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7194), 1, + anon_sym_RBRACE, + [252753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13150), 1, + ACTIONS(12169), 1, anon_sym_RPAREN, - [297759] = 2, + [252760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7974), 1, - anon_sym_SEMI, - [297766] = 2, + ACTIONS(12171), 1, + sym_identifier, + [252767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13152), 1, - anon_sym_RPAREN, - [297773] = 2, + ACTIONS(12173), 1, + sym_identifier, + [252774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13154), 1, - anon_sym_COLON, - [297780] = 2, + ACTIONS(12175), 1, + sym_identifier, + [252781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13156), 1, - anon_sym_LPAREN2, - [297787] = 2, + ACTIONS(12177), 1, + anon_sym_RPAREN, + [252788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_DASH_GT_STAR, - [297794] = 2, + ACTIONS(11202), 1, + anon_sym_RBRACE, + [252795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_DOT_STAR, - [297801] = 2, + ACTIONS(12179), 1, + sym_raw_string_delimiter, + [252802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_not_eq, - [297808] = 2, + ACTIONS(12181), 1, + sym_identifier, + [252809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_bitand, - [297815] = 2, + ACTIONS(7580), 1, + anon_sym_SEMI, + [252816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13158), 1, + ACTIONS(7564), 1, anon_sym_SEMI, - [297822] = 2, + [252823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_xor, - [297829] = 2, + ACTIONS(12183), 1, + anon_sym_RPAREN, + [252830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_bitor, - [297836] = 2, + ACTIONS(10003), 1, + anon_sym_COLON, + [252837] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12185), 1, + sym_raw_string_delimiter, + [252844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13160), 1, + ACTIONS(12187), 1, anon_sym_RPAREN, - [297843] = 2, + [252851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_and, - [297850] = 2, + ACTIONS(12189), 1, + sym_raw_string_delimiter, + [252858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13162), 1, + ACTIONS(12191), 1, anon_sym_RPAREN, - [297857] = 2, + [252865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11933), 1, - anon_sym_RBRACE, - [297864] = 2, + ACTIONS(12193), 1, + sym_raw_string_delimiter, + [252872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13164), 1, + ACTIONS(12195), 1, anon_sym_RPAREN, - [297871] = 2, + [252879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_or, - [297878] = 2, + ACTIONS(12197), 1, + sym_raw_string_delimiter, + [252886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13166), 1, + ACTIONS(12199), 1, anon_sym_RPAREN, - [297885] = 2, + [252893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13168), 1, - anon_sym_RPAREN, - [297892] = 2, + ACTIONS(12201), 1, + sym_raw_string_delimiter, + [252900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_PIPE_EQ, - [297899] = 2, + ACTIONS(12203), 1, + anon_sym_RPAREN, + [252907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_CARET_EQ, - [297906] = 2, + ACTIONS(12205), 1, + sym_raw_string_delimiter, + [252914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_AMP_EQ, - [297913] = 2, + ACTIONS(12207), 1, + anon_sym_RPAREN, + [252921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_GT_GT_EQ, - [297920] = 2, + ACTIONS(12209), 1, + sym_raw_string_delimiter, + [252928] = 2, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(12211), 1, + aux_sym_preproc_include_token2, + [252935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_LT_LT_EQ, - [297927] = 2, + ACTIONS(12213), 1, + anon_sym_SQUOTE, + [252942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_DASH_EQ, - [297934] = 2, + ACTIONS(12215), 1, + anon_sym_SQUOTE, + [252949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_PLUS_EQ, - [297941] = 2, + ACTIONS(12217), 1, + anon_sym_LPAREN2, + [252956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13170), 1, - anon_sym_RPAREN, - [297948] = 2, + ACTIONS(6429), 1, + sym_identifier, + [252963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_PERCENT_EQ, - [297955] = 2, + ACTIONS(12219), 1, + anon_sym_LPAREN2, + [252970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13172), 1, - anon_sym_SQUOTE, - [297962] = 2, + ACTIONS(12221), 1, + anon_sym_LPAREN2, + [252977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13174), 1, + ACTIONS(9772), 1, anon_sym_SEMI, - [297969] = 2, + [252984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_SLASH_EQ, - [297976] = 2, + ACTIONS(12223), 1, + anon_sym_LPAREN2, + [252991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13176), 1, - anon_sym_SEMI, - [297983] = 2, + ACTIONS(12225), 1, + anon_sym_LPAREN2, + [252998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13178), 1, + ACTIONS(12227), 1, anon_sym_SEMI, - [297990] = 2, + [253005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13180), 1, - anon_sym_DQUOTE, - [297997] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(13182), 1, - aux_sym_preproc_include_token2, - [298004] = 2, + ACTIONS(12229), 1, + anon_sym_LPAREN2, + [253012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13184), 1, - anon_sym_RPAREN, - [298011] = 2, + ACTIONS(12231), 1, + anon_sym_LPAREN2, + [253019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13186), 1, - sym_identifier, - [298018] = 2, - ACTIONS(9067), 1, + ACTIONS(12233), 1, + anon_sym_LPAREN2, + [253026] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(13188), 1, + ACTIONS(12235), 1, aux_sym_preproc_include_token2, - [298025] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13190), 1, - anon_sym_RPAREN, - [298032] = 2, + [253033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_STAR, - [298039] = 2, + ACTIONS(12237), 1, + anon_sym_COLON, + [253040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_EQ, - [298046] = 2, + ACTIONS(12239), 1, + aux_sym_preproc_if_token2, + [253047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_GT_GT, - [298053] = 2, + ACTIONS(12241), 1, + anon_sym_RPAREN, + [253054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13192), 1, + ACTIONS(12243), 1, anon_sym_LPAREN2, - [298060] = 2, + [253061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13194), 1, + ACTIONS(12245), 1, anon_sym_LPAREN2, - [298067] = 2, + [253068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13196), 1, + ACTIONS(12247), 1, anon_sym_SEMI, - [298074] = 2, + [253075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13198), 1, - anon_sym_LPAREN2, - [298081] = 2, + ACTIONS(7320), 1, + anon_sym_RBRACE, + [253082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_LT_LT, - [298088] = 2, + ACTIONS(12249), 1, + sym_identifier, + [253089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_LT, - [298095] = 2, + ACTIONS(11261), 1, + anon_sym_RBRACE, + [253096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_LT_EQ, - [298102] = 2, + ACTIONS(7356), 1, + anon_sym_RPAREN, + [253103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13200), 1, - anon_sym_while, - [298109] = 2, + ACTIONS(12251), 1, + anon_sym_RPAREN, + [253110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13202), 1, - anon_sym_LPAREN2, - [298116] = 2, + ACTIONS(12253), 1, + anon_sym_RPAREN, + [253117] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12255), 1, + anon_sym_while, + [253124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10831), 1, + ACTIONS(7556), 1, anon_sym_SEMI, - [298123] = 2, + [253131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_GT_EQ, - [298130] = 2, + ACTIONS(12257), 1, + anon_sym_LPAREN2, + [253138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13204), 1, - anon_sym_EQ, - [298137] = 2, + ACTIONS(12259), 1, + anon_sym_RPAREN, + [253145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13206), 1, - sym_raw_string_content, - [298144] = 2, + ACTIONS(12261), 1, + sym_identifier, + [253152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_GT, - [298151] = 2, + ACTIONS(12263), 1, + sym_identifier, + [253159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_BANG_EQ, - [298158] = 2, + ACTIONS(12265), 1, + anon_sym_RPAREN, + [253166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_EQ_EQ, - [298165] = 2, + ACTIONS(12267), 1, + anon_sym_RPAREN, + [253173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_AMP, - [298172] = 2, + ACTIONS(12269), 1, + anon_sym_EQ, + [253180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13208), 1, - anon_sym_COMMA, - [298179] = 2, + ACTIONS(12271), 1, + sym_raw_string_content, + [253187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10335), 1, - anon_sym_SEMI, - [298186] = 2, + ACTIONS(12273), 1, + anon_sym_COMMA, + [253194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13210), 1, - anon_sym_STAR, - [298193] = 2, + ACTIONS(12275), 1, + anon_sym_SEMI, + [253201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_CARET, - [298200] = 2, + ACTIONS(12277), 1, + anon_sym_RPAREN, + [253208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7998), 1, - anon_sym_SEMI, - [298207] = 2, + ACTIONS(12279), 1, + anon_sym_STAR, + [253215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_PIPE, - [298214] = 2, + ACTIONS(12281), 1, + anon_sym_RPAREN, + [253222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7942), 1, + ACTIONS(12283), 1, anon_sym_SEMI, - [298221] = 2, + [253229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_AMP_AMP, - [298228] = 2, + ACTIONS(12285), 1, + sym_identifier, + [253236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13212), 1, - anon_sym_SQUOTE, - [298235] = 2, + ACTIONS(12287), 1, + anon_sym_RPAREN, + [253243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13214), 1, + ACTIONS(12289), 1, anon_sym_RPAREN, - [298242] = 2, + [253250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_PIPE_PIPE, - [298249] = 2, + ACTIONS(12291), 1, + anon_sym_while, + [253257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_PERCENT, - [298256] = 2, + ACTIONS(10546), 1, + anon_sym_SEMI, + [253264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8002), 1, + ACTIONS(12293), 1, anon_sym_SEMI, - [298263] = 2, + [253271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13216), 1, - anon_sym_COLON, - [298270] = 2, + ACTIONS(12295), 1, + anon_sym_SEMI, + [253278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13218), 1, - anon_sym_SLASH, - [298277] = 2, + ACTIONS(12297), 1, + sym_identifier, + [253285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13220), 1, + ACTIONS(12299), 1, anon_sym_RPAREN, - [298284] = 2, + [253292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_PLUS, - [298291] = 2, + ACTIONS(12301), 1, + anon_sym_COMMA, + [253299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_DASH, - [298298] = 2, + ACTIONS(12303), 1, + sym_auto, + [253306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13222), 1, - aux_sym_preproc_if_token2, - [298305] = 2, + ACTIONS(10113), 1, + anon_sym_SEMI, + [253313] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12305), 1, + sym_raw_string_content, + [253320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13224), 1, + ACTIONS(12307), 1, anon_sym_RPAREN, - [298312] = 2, + [253327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_COMMA, - [298319] = 2, + ACTIONS(12309), 1, + anon_sym_LBRACE, + [253334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13226), 1, + ACTIONS(12311), 1, aux_sym_preproc_if_token2, - [298326] = 2, + [253341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13228), 1, - anon_sym_SEMI, - [298333] = 2, + ACTIONS(12313), 1, + anon_sym_STAR, + [253348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13230), 1, - anon_sym_DQUOTE, - [298340] = 2, + ACTIONS(12315), 1, + aux_sym_preproc_if_token2, + [253355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13232), 1, - anon_sym_SEMI, - [298347] = 2, + ACTIONS(12317), 1, + anon_sym_RPAREN, + [253362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13234), 1, + ACTIONS(12319), 1, anon_sym_SEMI, - [298354] = 2, + [253369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13236), 1, - aux_sym_preproc_if_token2, - [298361] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(13238), 1, - aux_sym_preproc_include_token2, - [298368] = 2, + ACTIONS(12321), 1, + sym_identifier, + [253376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13240), 1, - anon_sym_RPAREN, - [298375] = 2, + ACTIONS(12323), 1, + anon_sym_LPAREN2, + [253383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13242), 1, - aux_sym_preproc_if_token2, - [298382] = 2, + ACTIONS(12325), 1, + anon_sym_SEMI, + [253390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13244), 1, - anon_sym_RPAREN, - [298389] = 2, + ACTIONS(12327), 1, + anon_sym_SEMI, + [253397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13246), 1, - anon_sym_LPAREN2, - [298396] = 2, + ACTIONS(12329), 1, + anon_sym_RPAREN, + [253404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13248), 1, - anon_sym_LPAREN2, - [298403] = 2, + ACTIONS(12331), 1, + anon_sym_SEMI, + [253411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13250), 1, + ACTIONS(12333), 1, anon_sym_RPAREN, - [298410] = 2, + [253418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13252), 1, - anon_sym_LPAREN2, - [298417] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(13254), 1, - aux_sym_preproc_include_token2, - [298424] = 2, + ACTIONS(12335), 1, + sym_identifier, + [253425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13256), 1, - anon_sym_LPAREN2, - [298431] = 2, + ACTIONS(12337), 1, + sym_identifier, + [253432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13258), 1, - anon_sym_RPAREN, - [298438] = 2, + ACTIONS(12339), 1, + anon_sym_COLON, + [253439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13260), 1, - anon_sym_while, - [298445] = 2, + ACTIONS(12341), 1, + sym_auto, + [253446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13262), 1, - anon_sym_LPAREN2, - [298452] = 2, + ACTIONS(12343), 1, + anon_sym_SEMI, + [253453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13264), 1, - anon_sym_DQUOTE, - [298459] = 2, + ACTIONS(11603), 1, + anon_sym_GT_EQ, + [253460] = 2, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(8822), 1, + aux_sym_preproc_include_token2, + [253467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13266), 1, + ACTIONS(12345), 1, anon_sym_SEMI, - [298466] = 2, + [253474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13268), 1, - anon_sym_EQ, - [298473] = 2, - ACTIONS(3), 1, + ACTIONS(12347), 1, + anon_sym_SEMI, + [253481] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(13270), 1, - sym_raw_string_content, - [298480] = 2, + ACTIONS(12349), 1, + aux_sym_preproc_include_token2, + [253488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13272), 1, + ACTIONS(12351), 1, anon_sym_RPAREN, - [298487] = 2, + [253495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13274), 1, - anon_sym_RPAREN, - [298494] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(13276), 1, - aux_sym_preproc_include_token2, - [298501] = 2, + ACTIONS(12353), 1, + aux_sym_preproc_if_token2, + [253502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13278), 1, + ACTIONS(11603), 1, anon_sym_COMMA, - [298508] = 2, + [253509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13280), 1, - anon_sym_RPAREN, - [298515] = 2, + ACTIONS(12355), 1, + anon_sym_DQUOTE, + [253516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13282), 1, - aux_sym_preproc_if_token2, - [298522] = 2, + ACTIONS(11603), 1, + anon_sym_DASH, + [253523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13284), 1, - anon_sym_RPAREN, - [298529] = 2, + ACTIONS(10526), 1, + anon_sym_SEMI, + [253530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8150), 1, - anon_sym_SEMI, - [298536] = 2, + ACTIONS(11603), 1, + anon_sym_STAR, + [253537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13286), 1, - sym_identifier, - [298543] = 2, + ACTIONS(12357), 1, + anon_sym_SLASH, + [253544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8158), 1, - anon_sym_SEMI, - [298550] = 2, + ACTIONS(11603), 1, + anon_sym_PERCENT, + [253551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13288), 1, - anon_sym_LPAREN2, - [298557] = 2, + ACTIONS(11603), 1, + anon_sym_PIPE_PIPE, + [253558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13290), 1, - anon_sym_RPAREN, - [298564] = 2, + ACTIONS(11603), 1, + anon_sym_AMP_AMP, + [253565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13292), 1, - anon_sym_RPAREN, - [298571] = 2, + ACTIONS(11603), 1, + anon_sym_PIPE, + [253572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13294), 1, - anon_sym_RPAREN, - [298578] = 2, + ACTIONS(11603), 1, + anon_sym_CARET, + [253579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13296), 1, - anon_sym_COLON, - [298585] = 2, + ACTIONS(11603), 1, + anon_sym_AMP, + [253586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - anon_sym_SEMI, - [298592] = 2, + ACTIONS(11603), 1, + anon_sym_EQ_EQ, + [253593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13298), 1, - anon_sym_COLON, - [298599] = 2, + ACTIONS(11603), 1, + anon_sym_BANG_EQ, + [253600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7821), 1, - anon_sym_RBRACE, - [298606] = 2, + ACTIONS(11603), 1, + anon_sym_GT, + [253607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13300), 1, - sym_identifier, - [298613] = 2, + ACTIONS(11603), 1, + anon_sym_not_eq, + [253614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13302), 1, - anon_sym_LPAREN2, - [298620] = 2, + ACTIONS(11603), 1, + anon_sym_LT_EQ, + [253621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13304), 1, - anon_sym_LPAREN2, - [298627] = 2, + ACTIONS(11603), 1, + anon_sym_LT, + [253628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13306), 1, - anon_sym_DQUOTE, - [298634] = 2, + ACTIONS(11603), 1, + anon_sym_LT_LT, + [253635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13308), 1, - anon_sym_LPAREN2, - [298641] = 2, + ACTIONS(11603), 1, + anon_sym_GT_GT, + [253642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13310), 1, - sym_auto, - [298648] = 2, + ACTIONS(11603), 1, + anon_sym_EQ, + [253649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13312), 1, - anon_sym_RPAREN, - [298655] = 2, + ACTIONS(11603), 1, + anon_sym_STAR_EQ, + [253656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13314), 1, - anon_sym_SEMI, - [298662] = 2, + ACTIONS(11603), 1, + anon_sym_SLASH_EQ, + [253663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13316), 1, - anon_sym_while, - [298669] = 2, + ACTIONS(11603), 1, + anon_sym_PERCENT_EQ, + [253670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13318), 1, - anon_sym_LPAREN2, - [298676] = 2, + ACTIONS(11603), 1, + anon_sym_PLUS_EQ, + [253677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13320), 1, - anon_sym_STAR, - [298683] = 2, + ACTIONS(11603), 1, + anon_sym_DASH_EQ, + [253684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12068), 1, - anon_sym_RBRACE, - [298690] = 2, + ACTIONS(11603), 1, + anon_sym_LT_LT_EQ, + [253691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13322), 1, - anon_sym_EQ, - [298697] = 2, + ACTIONS(11603), 1, + anon_sym_GT_GT_EQ, + [253698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13324), 1, - sym_raw_string_content, - [298704] = 2, + ACTIONS(11603), 1, + anon_sym_AMP_EQ, + [253705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, - anon_sym_RBRACE, - [298711] = 2, + ACTIONS(11603), 1, + anon_sym_CARET_EQ, + [253712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13326), 1, - anon_sym_COMMA, - [298718] = 2, + ACTIONS(11603), 1, + anon_sym_PIPE_EQ, + [253719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13328), 1, - sym_identifier, - [298725] = 2, + ACTIONS(11603), 1, + anon_sym_or, + [253726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13330), 1, - anon_sym_SEMI, - [298732] = 2, + ACTIONS(11603), 1, + anon_sym_and, + [253733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13332), 1, - anon_sym_RPAREN, - [298739] = 2, + ACTIONS(11603), 1, + anon_sym_bitor, + [253740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13334), 1, - anon_sym_RPAREN, - [298746] = 2, + ACTIONS(12359), 1, + aux_sym_preproc_if_token2, + [253747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13336), 1, - anon_sym_COLON, - [298753] = 2, + ACTIONS(11603), 1, + anon_sym_bitand, + [253754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13338), 1, - anon_sym_RPAREN, - [298760] = 2, + ACTIONS(12361), 1, + aux_sym_preproc_if_token2, + [253761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13340), 1, - anon_sym_LPAREN2, - [298767] = 2, + ACTIONS(11603), 1, + anon_sym_DOT_STAR, + [253768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13342), 1, - aux_sym_preproc_if_token2, - [298774] = 2, + ACTIONS(11603), 1, + anon_sym_DASH_GT_STAR, + [253775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13344), 1, - anon_sym_LPAREN2, - [298781] = 2, + ACTIONS(12363), 1, + anon_sym_RPAREN, + [253782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13346), 1, - anon_sym_COLON, - [298788] = 2, + ACTIONS(11603), 1, + anon_sym_xor, + [253789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12018), 1, + ACTIONS(11087), 1, anon_sym_RBRACE, - [298795] = 2, + [253796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13348), 1, - anon_sym_SEMI, - [298802] = 2, + ACTIONS(12365), 1, + anon_sym_DQUOTE, + [253803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13350), 1, + ACTIONS(12367), 1, anon_sym_DQUOTE, - [298809] = 2, + [253810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13352), 1, + ACTIONS(12369), 1, anon_sym_SEMI, - [298816] = 2, + [253817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13354), 1, - anon_sym_EQ, - [298823] = 2, + ACTIONS(12371), 1, + anon_sym_STAR, + [253824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13356), 1, - sym_raw_string_content, - [298830] = 2, + ACTIONS(12373), 1, + anon_sym_SEMI, + [253831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13358), 1, - anon_sym_LPAREN2, - [298837] = 2, + ACTIONS(12375), 1, + anon_sym_DQUOTE, + [253838] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13360), 1, - anon_sym_SEMI, - [298844] = 2, + ACTIONS(12377), 1, + anon_sym_DQUOTE, + [253845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13362), 1, - anon_sym_SEMI, - [298851] = 2, + ACTIONS(12379), 1, + anon_sym_DQUOTE, + [253852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13364), 1, - sym_identifier, - [298858] = 2, + ACTIONS(12381), 1, + anon_sym_RPAREN, + [253859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13366), 1, + ACTIONS(12383), 1, anon_sym_RPAREN, - [298865] = 2, + [253866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13368), 1, - sym_identifier, - [298872] = 2, + ACTIONS(12385), 1, + anon_sym_SEMI, + [253873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13370), 1, - anon_sym_LPAREN2, - [298879] = 2, + ACTIONS(12387), 1, + anon_sym_SEMI, + [253880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13372), 1, - anon_sym_LPAREN2, - [298886] = 2, + ACTIONS(12389), 1, + anon_sym_STAR, + [253887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13374), 1, - anon_sym_RPAREN, - [298893] = 2, + ACTIONS(7192), 1, + anon_sym_SEMI, + [253894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13376), 1, - anon_sym_DQUOTE, - [298900] = 2, + ACTIONS(12391), 1, + sym_identifier, + [253901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7994), 1, - anon_sym_SEMI, - [298907] = 2, + ACTIONS(12393), 1, + anon_sym_COLON, + [253908] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7544), 1, + anon_sym_RPAREN, + [253915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13378), 1, + ACTIONS(12395), 1, anon_sym_SEMI, - [298914] = 2, + [253922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13380), 1, - anon_sym_EQ, - [298921] = 2, + ACTIONS(12397), 1, + anon_sym_SEMI, + [253929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13382), 1, - sym_raw_string_content, - [298928] = 2, + ACTIONS(7578), 1, + anon_sym_SEMI, + [253936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13384), 1, - aux_sym_preproc_if_token2, - [298935] = 2, - ACTIONS(9067), 1, + ACTIONS(12399), 1, + anon_sym_SEMI, + [253943] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(13386), 1, + ACTIONS(12401), 1, aux_sym_preproc_include_token2, - [298942] = 2, - ACTIONS(9067), 1, + [253950] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13388), 1, - aux_sym_preproc_include_token2, - [298949] = 2, + ACTIONS(12403), 1, + anon_sym_DQUOTE, + [253957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13390), 1, + ACTIONS(7606), 1, anon_sym_SEMI, - [298956] = 2, + [253964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13392), 1, + ACTIONS(12405), 1, anon_sym_RPAREN, - [298963] = 2, + [253971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13394), 1, - sym_identifier, - [298970] = 2, + ACTIONS(12407), 1, + anon_sym_DQUOTE, + [253978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13396), 1, - anon_sym_LPAREN2, - [298977] = 2, + ACTIONS(12409), 1, + anon_sym_RPAREN, + [253985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13398), 1, - anon_sym_LPAREN2, - [298984] = 2, + ACTIONS(12411), 1, + anon_sym_RPAREN, + [253992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13400), 1, - anon_sym_SEMI, - [298991] = 2, + ACTIONS(12413), 1, + anon_sym_COLON, + [253999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13402), 1, - sym_auto, - [298998] = 2, + ACTIONS(4917), 1, + anon_sym_COLON_COLON, + [254006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13404), 1, - anon_sym_LBRACE, - [299005] = 2, + ACTIONS(12415), 1, + anon_sym_RPAREN, + [254013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13406), 1, + ACTIONS(12417), 1, anon_sym_RPAREN, - [299012] = 2, + [254020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13408), 1, - anon_sym_EQ, - [299019] = 2, + ACTIONS(12419), 1, + anon_sym_RPAREN, + [254027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13410), 1, - sym_raw_string_content, - [299026] = 2, + ACTIONS(12421), 1, + sym_identifier, + [254034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13412), 1, - sym_raw_string_content, - [299033] = 2, + ACTIONS(7510), 1, + anon_sym_SEMI, + [254041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4704), 1, + ACTIONS(7554), 1, anon_sym_SEMI, - [299040] = 2, + [254048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13414), 1, + ACTIONS(12423), 1, anon_sym_SEMI, - [299047] = 2, + [254055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13416), 1, - anon_sym_COLON, - [299054] = 2, + ACTIONS(12425), 1, + anon_sym_DQUOTE, + [254062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13418), 1, - anon_sym_RPAREN, - [299061] = 2, + ACTIONS(12427), 1, + anon_sym_DQUOTE, + [254069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10837), 1, + ACTIONS(12429), 1, + anon_sym_SQUOTE, + [254076] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12431), 1, anon_sym_SEMI, - [299068] = 2, + [254083] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13420), 1, - anon_sym_LPAREN2, - [299075] = 2, + ACTIONS(6563), 1, + sym_identifier, + [254090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10845), 1, + ACTIONS(9746), 1, anon_sym_SEMI, - [299082] = 2, + [254097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13422), 1, + ACTIONS(12433), 1, anon_sym_SEMI, - [299089] = 2, + [254104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13424), 1, - sym_raw_string_content, - [299096] = 2, + ACTIONS(12435), 1, + anon_sym_SEMI, + [254111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_SEMI, - [299103] = 2, - ACTIONS(5602), 1, - aux_sym_preproc_include_token2, - ACTIONS(9067), 1, + ACTIONS(12437), 1, + anon_sym_RPAREN, + [254118] = 2, + ACTIONS(3), 1, sym_comment, - [299110] = 2, + ACTIONS(12439), 1, + anon_sym_DQUOTE, + [254125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13428), 1, - anon_sym_RPAREN, - [299117] = 2, + ACTIONS(12441), 1, + anon_sym_LBRACE, + [254132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13430), 1, - anon_sym_RPAREN, - [299124] = 2, - ACTIONS(5594), 1, - aux_sym_preproc_include_token2, - ACTIONS(9067), 1, + ACTIONS(12443), 1, + anon_sym_LPAREN2, + [254139] = 2, + ACTIONS(3), 1, sym_comment, - [299131] = 2, + ACTIONS(12445), 1, + anon_sym_LPAREN2, + [254146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8004), 1, - anon_sym_RPAREN, - [299138] = 2, + ACTIONS(12447), 1, + anon_sym_LPAREN2, + [254153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13432), 1, - anon_sym_RPAREN, - [299145] = 2, + ACTIONS(12449), 1, + anon_sym_SEMI, + [254160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13434), 1, - sym_raw_string_content, - [299152] = 2, + ACTIONS(12451), 1, + anon_sym_LPAREN2, + [254167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13436), 1, - anon_sym_RPAREN, - [299159] = 2, + ACTIONS(4254), 1, + anon_sym_DOT_DOT_DOT, + [254174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13438), 1, - aux_sym_preproc_if_token2, - [299166] = 2, + ACTIONS(12453), 1, + anon_sym_RPAREN, + [254181] = 2, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(12455), 1, + aux_sym_preproc_include_token2, + [254188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13440), 1, + ACTIONS(12457), 1, anon_sym_RPAREN, - [299173] = 2, + [254195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13442), 1, - sym_raw_string_content, - [299180] = 2, + ACTIONS(12459), 1, + anon_sym_while, + [254202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13444), 1, - anon_sym_RPAREN, - [299187] = 2, + ACTIONS(12461), 1, + anon_sym_DQUOTE, + [254209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13446), 1, - sym_raw_string_content, - [299194] = 2, + ACTIONS(12463), 1, + anon_sym_LPAREN2, + [254216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13448), 1, - anon_sym_RPAREN, - [299201] = 2, + ACTIONS(12465), 1, + anon_sym_DQUOTE, + [254223] = 2, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(11096), 1, + aux_sym_preproc_include_token2, + [254230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13450), 1, - sym_raw_string_content, - [299208] = 2, + ACTIONS(7332), 1, + anon_sym_RBRACE, + [254237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13452), 1, - anon_sym_RPAREN, - [299215] = 2, + ACTIONS(12467), 1, + aux_sym_preproc_if_token2, + [254244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13454), 1, + ACTIONS(12469), 1, + anon_sym_EQ, + [254251] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12471), 1, sym_raw_string_content, - [299222] = 2, + [254258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13456), 1, - anon_sym_RPAREN, - [299229] = 2, + ACTIONS(12473), 1, + anon_sym_STAR, + [254265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13458), 1, - sym_raw_string_content, - [299236] = 2, + ACTIONS(12475), 1, + anon_sym_SEMI, + [254272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13460), 1, + ACTIONS(12477), 1, anon_sym_RPAREN, - [299243] = 2, + [254279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13462), 1, - sym_raw_string_content, - [299250] = 2, + ACTIONS(12479), 1, + anon_sym_COMMA, + [254286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13464), 1, + ACTIONS(12481), 1, anon_sym_RPAREN, - [299257] = 2, + [254293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13466), 1, + ACTIONS(12483), 1, anon_sym_RPAREN, - [299264] = 2, - ACTIONS(9067), 1, + [254300] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13468), 1, - aux_sym_preproc_include_token2, - [299271] = 2, + ACTIONS(12485), 1, + anon_sym_RPAREN, + [254307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13470), 1, - anon_sym_LPAREN2, - [299278] = 2, + ACTIONS(12487), 1, + anon_sym_RPAREN, + [254314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13472), 1, - anon_sym_LPAREN2, - [299285] = 2, + ACTIONS(12489), 1, + anon_sym_COLON, + [254321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13474), 1, - sym_identifier, - [299292] = 2, + ACTIONS(12491), 1, + anon_sym_DQUOTE, + [254328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8144), 1, - anon_sym_RPAREN, - [299299] = 2, + ACTIONS(12493), 1, + anon_sym_DQUOTE, + [254335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12086), 1, - anon_sym_RBRACE, - [299306] = 2, + ACTIONS(12495), 1, + anon_sym_LPAREN2, + [254342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13476), 1, - anon_sym_SEMI, - [299313] = 2, + ACTIONS(12497), 1, + anon_sym_LPAREN2, + [254349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13478), 1, - anon_sym_STAR, - [299320] = 2, + ACTIONS(10344), 1, + anon_sym_SEMI, + [254356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13480), 1, - anon_sym_RPAREN, - [299327] = 2, + ACTIONS(12499), 1, + anon_sym_LPAREN2, + [254363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10331), 1, + ACTIONS(12501), 1, anon_sym_SEMI, - [299334] = 2, + [254370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13482), 1, + ACTIONS(12503), 1, anon_sym_SEMI, - [299341] = 2, + [254377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8120), 1, - anon_sym_RPAREN, - [299348] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(13484), 1, - aux_sym_preproc_include_token2, - [299355] = 2, + ACTIONS(12505), 1, + anon_sym_while, + [254384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13486), 1, - anon_sym_RPAREN, - [299362] = 2, + ACTIONS(12507), 1, + sym_auto, + [254391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13488), 1, - anon_sym_RPAREN, - [299369] = 2, - ACTIONS(3), 1, + ACTIONS(12509), 1, + anon_sym_LPAREN2, + [254398] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(13490), 1, - anon_sym_RPAREN, - [299376] = 2, - ACTIONS(3), 1, + ACTIONS(8616), 1, + aux_sym_preproc_include_token2, + [254405] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(13492), 1, - anon_sym_SEMI, - [299383] = 2, + ACTIONS(12511), 1, + aux_sym_preproc_include_token2, + [254412] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8086), 1, - anon_sym_RPAREN, - [299390] = 2, + ACTIONS(12513), 1, + anon_sym_EQ, + [254419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10379), 1, - anon_sym_SEMI, - [299397] = 2, + ACTIONS(12515), 1, + sym_raw_string_content, + [254426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13494), 1, - anon_sym_COLON, - [299404] = 2, + ACTIONS(12517), 1, + anon_sym_STAR, + [254433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13496), 1, - sym_identifier, - [299411] = 2, + ACTIONS(12519), 1, + anon_sym_COMMA, + [254440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10924), 1, + ACTIONS(12521), 1, anon_sym_SEMI, - [299418] = 2, + [254447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13498), 1, - anon_sym_SQUOTE, - [299425] = 2, + ACTIONS(12523), 1, + anon_sym_DQUOTE, + [254454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8092), 1, + ACTIONS(12525), 1, anon_sym_SEMI, - [299432] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13500), 1, - sym_raw_string_content, - [299439] = 2, + [254461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8076), 1, + ACTIONS(12527), 1, anon_sym_RPAREN, - [299446] = 2, + [254468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13502), 1, - anon_sym_SEMI, - [299453] = 2, + ACTIONS(12529), 1, + anon_sym_COLON, + [254475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13504), 1, - sym_raw_string_delimiter, - [299460] = 2, + ACTIONS(12531), 1, + aux_sym_preproc_if_token2, + [254482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13506), 1, - aux_sym_preproc_if_token2, - [299467] = 2, + ACTIONS(12533), 1, + anon_sym_SEMI, + [254489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13508), 1, - anon_sym_COMMA, - [299474] = 2, + ACTIONS(12535), 1, + anon_sym_LPAREN2, + [254496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13510), 1, - anon_sym_RPAREN, - [299481] = 2, + ACTIONS(12537), 1, + anon_sym_LPAREN2, + [254503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9832), 1, - anon_sym_RPAREN, - [299488] = 2, + ACTIONS(12539), 1, + anon_sym_DQUOTE, + [254510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_SEMI, - [299495] = 2, + ACTIONS(12541), 1, + anon_sym_LPAREN2, + [254517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13514), 1, + ACTIONS(12543), 1, anon_sym_SEMI, - [299502] = 2, + [254524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13516), 1, + ACTIONS(12545), 1, anon_sym_RPAREN, - [299509] = 2, + [254531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, - anon_sym_RPAREN, - [299516] = 2, - ACTIONS(3), 1, + ACTIONS(12547), 1, + anon_sym_while, + [254538] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(13518), 1, - anon_sym_RPAREN, - [299523] = 2, + ACTIONS(12549), 1, + aux_sym_preproc_include_token2, + [254545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13520), 1, - sym_identifier, - [299530] = 2, + ACTIONS(12551), 1, + anon_sym_LPAREN2, + [254552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7914), 1, + ACTIONS(12553), 1, anon_sym_SEMI, - [299537] = 2, + [254559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10351), 1, + ACTIONS(12555), 1, anon_sym_SEMI, - [299544] = 2, + [254566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7611), 1, - anon_sym_RPAREN, - [299551] = 2, + ACTIONS(12557), 1, + anon_sym_EQ, + [254573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13522), 1, - sym_auto, - [299558] = 2, + ACTIONS(12559), 1, + sym_raw_string_content, + [254580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13524), 1, - sym_identifier, - [299565] = 2, + ACTIONS(12561), 1, + anon_sym_COMMA, + [254587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13526), 1, - anon_sym_RPAREN, - [299572] = 2, + ACTIONS(12563), 1, + anon_sym_DQUOTE, + [254594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8040), 1, - anon_sym_RPAREN, - [299579] = 2, + ACTIONS(12565), 1, + sym_identifier, + [254601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13528), 1, - anon_sym_SEMI, - [299586] = 2, + ACTIONS(12567), 1, + anon_sym_RPAREN, + [254608] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13530), 1, + ACTIONS(12569), 1, anon_sym_RPAREN, - [299593] = 2, + [254615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13532), 1, - sym_identifier, - [299600] = 2, - ACTIONS(9067), 1, + ACTIONS(12571), 1, + anon_sym_COLON, + [254622] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13534), 1, - aux_sym_preproc_include_token2, - [299607] = 2, + ACTIONS(12573), 1, + aux_sym_preproc_if_token2, + [254629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13536), 1, - anon_sym_RPAREN, - [299614] = 2, + ACTIONS(12575), 1, + anon_sym_LPAREN2, + [254636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13538), 1, - aux_sym_preproc_if_token2, - [299621] = 2, - ACTIONS(9067), 1, + ACTIONS(12577), 1, + anon_sym_LPAREN2, + [254643] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13540), 1, - aux_sym_preproc_include_token2, - [299628] = 2, + ACTIONS(12579), 1, + anon_sym_DQUOTE, + [254650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10906), 1, - anon_sym_SEMI, - [299635] = 2, + ACTIONS(12581), 1, + anon_sym_LPAREN2, + [254657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13542), 1, + ACTIONS(12583), 1, anon_sym_SEMI, - [299642] = 2, + [254664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13544), 1, + ACTIONS(12585), 1, anon_sym_SEMI, - [299649] = 2, + [254671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13546), 1, - aux_sym_preproc_if_token2, - [299656] = 2, + ACTIONS(12587), 1, + anon_sym_while, + [254678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6650), 1, - sym_identifier, - [299663] = 2, + ACTIONS(12589), 1, + anon_sym_LPAREN2, + [254685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13548), 1, - sym_auto, - [299670] = 2, + ACTIONS(12591), 1, + anon_sym_DQUOTE, + [254692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13550), 1, + ACTIONS(12593), 1, anon_sym_SEMI, - [299677] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12296), 1, - aux_sym_preproc_include_token2, - [299684] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13552), 1, - anon_sym_RPAREN, - [299691] = 2, + [254699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13554), 1, - anon_sym_COLON, - [299698] = 2, + ACTIONS(12595), 1, + anon_sym_EQ, + [254706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13556), 1, - sym_identifier, - [299705] = 2, + ACTIONS(12597), 1, + sym_raw_string_content, + [254713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10736), 1, - anon_sym_COLON, - [299712] = 2, + ACTIONS(12599), 1, + anon_sym_COMMA, + [254720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13558), 1, - anon_sym_RPAREN, - [299719] = 2, + ACTIONS(12601), 1, + anon_sym_SEMI, + [254727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13560), 1, + ACTIONS(12603), 1, anon_sym_SEMI, - [299726] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(13562), 1, - aux_sym_preproc_include_token2, - [299733] = 2, + [254734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13564), 1, + ACTIONS(7594), 1, anon_sym_RPAREN, - [299740] = 2, + [254741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13566), 1, + ACTIONS(12605), 1, anon_sym_RPAREN, - [299747] = 2, + [254748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13568), 1, - anon_sym_STAR, - [299754] = 2, + ACTIONS(12607), 1, + anon_sym_COLON, + [254755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12142), 1, - anon_sym_RBRACE, - [299761] = 2, + ACTIONS(7566), 1, + anon_sym_RPAREN, + [254762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13570), 1, - anon_sym_DQUOTE, - [299768] = 2, + ACTIONS(12609), 1, + anon_sym_LPAREN2, + [254769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13572), 1, + ACTIONS(7470), 1, anon_sym_SEMI, - [299775] = 2, + [254776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13574), 1, - sym_identifier, - [299782] = 2, + ACTIONS(12611), 1, + anon_sym_LPAREN2, + [254783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7595), 1, - anon_sym_RBRACE, - [299789] = 2, + ACTIONS(12613), 1, + anon_sym_RPAREN, + [254790] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8118), 1, - anon_sym_RPAREN, - [299796] = 2, + ACTIONS(12615), 1, + anon_sym_COLON, + [254797] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13576), 1, + ACTIONS(12617), 1, sym_identifier, - [299803] = 2, + [254804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8008), 1, - anon_sym_SEMI, - [299810] = 2, + ACTIONS(12619), 1, + anon_sym_LPAREN2, + [254811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13578), 1, - sym_identifier, - [299817] = 2, + ACTIONS(12621), 1, + anon_sym_EQ, + [254818] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13580), 1, - sym_identifier, - [299824] = 2, + ACTIONS(12623), 1, + sym_raw_string_content, + [254825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13582), 1, - anon_sym_SEMI, - [299831] = 2, + ACTIONS(12625), 1, + anon_sym_DQUOTE, + [254832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13584), 1, - sym_identifier, - [299838] = 2, + ACTIONS(12627), 1, + anon_sym_RPAREN, + [254839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13586), 1, - anon_sym_SEMI, - [299845] = 2, + ACTIONS(12629), 1, + anon_sym_RPAREN, + [254846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13588), 1, + ACTIONS(12631), 1, anon_sym_RPAREN, - [299852] = 2, + [254853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13590), 1, - anon_sym_SQUOTE, - [299859] = 2, + ACTIONS(12633), 1, + anon_sym_RPAREN, + [254860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13592), 1, + ACTIONS(12635), 1, anon_sym_LPAREN2, - [299866] = 2, + [254867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13594), 1, - sym_identifier, - [299873] = 2, + ACTIONS(12637), 1, + anon_sym_LPAREN2, + [254874] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13596), 1, - sym_identifier, - [299880] = 2, - ACTIONS(3), 1, + ACTIONS(12639), 1, + anon_sym_SEMI, + [254881] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(13598), 1, - anon_sym_RPAREN, - [299887] = 2, + ACTIONS(12641), 1, + aux_sym_preproc_include_token2, + [254888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13600), 1, - anon_sym_SEMI, - [299894] = 2, + ACTIONS(12643), 1, + anon_sym_SQUOTE, + [254895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13602), 1, - anon_sym_SEMI, - [299901] = 2, + ACTIONS(12645), 1, + anon_sym_EQ, + [254902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13604), 1, - anon_sym_SEMI, - [299908] = 2, + ACTIONS(12647), 1, + sym_raw_string_content, + [254909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13606), 1, - aux_sym_preproc_if_token2, - [299915] = 2, + ACTIONS(12649), 1, + anon_sym_RPAREN, + [254916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13608), 1, - anon_sym_DQUOTE, - [299922] = 2, + ACTIONS(12651), 1, + anon_sym_RPAREN, + [254923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13610), 1, - anon_sym_SEMI, - [299929] = 2, + ACTIONS(12653), 1, + anon_sym_RPAREN, + [254930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13612), 1, - anon_sym_SEMI, - [299936] = 2, + ACTIONS(12655), 1, + anon_sym_RPAREN, + [254937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13614), 1, + ACTIONS(12657), 1, anon_sym_RPAREN, - [299943] = 2, + [254944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13616), 1, - anon_sym_DOT_DOT_DOT, - [299950] = 2, + ACTIONS(12659), 1, + anon_sym_LPAREN2, + [254951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13618), 1, - anon_sym_DOT_DOT_DOT, - [299957] = 2, + ACTIONS(12661), 1, + anon_sym_LPAREN2, + [254958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13621), 1, - aux_sym_preproc_if_token2, - [299964] = 2, + ACTIONS(9370), 1, + anon_sym_RPAREN, + [254965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13623), 1, - anon_sym_DOT_DOT_DOT, - [299971] = 2, + ACTIONS(12663), 1, + sym_raw_string_delimiter, + [254972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13626), 1, - anon_sym_DOT_DOT_DOT, - [299978] = 2, + ACTIONS(7358), 1, + anon_sym_SEMI, + [254979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13629), 1, - anon_sym_DOT_DOT_DOT, - [299985] = 2, + ACTIONS(12665), 1, + anon_sym_EQ, + [254986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13632), 1, - anon_sym_DOT_DOT_DOT, - [299992] = 2, + ACTIONS(12667), 1, + sym_raw_string_content, + [254993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13635), 1, - anon_sym_STAR, - [299999] = 2, + ACTIONS(12669), 1, + anon_sym_LBRACE, + [255000] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13637), 1, - anon_sym_DOT_DOT_DOT, - [300006] = 2, + ACTIONS(12671), 1, + anon_sym_SQUOTE, + [255007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13640), 1, - anon_sym_DOT_DOT_DOT, - [300013] = 2, + ACTIONS(12673), 1, + anon_sym_SEMI, + [255014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13643), 1, - anon_sym_DOT_DOT_DOT, - [300020] = 2, - ACTIONS(3), 1, + ACTIONS(12675), 1, + anon_sym_RPAREN, + [255021] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(13646), 1, - anon_sym_DOT_DOT_DOT, - [300027] = 2, + ACTIONS(12677), 1, + aux_sym_preproc_include_token2, + [255028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13649), 1, - anon_sym_DOT_DOT_DOT, - [300034] = 2, - ACTIONS(3), 1, + ACTIONS(12679), 1, + anon_sym_LPAREN2, + [255035] = 2, + ACTIONS(5154), 1, + aux_sym_preproc_include_token2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(13652), 1, - anon_sym_DOT_DOT_DOT, - [300041] = 2, + [255042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13655), 1, - anon_sym_DOT_DOT_DOT, - [300048] = 2, + ACTIONS(12681), 1, + sym_raw_string_content, + [255049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13658), 1, - anon_sym_SEMI, - [300055] = 2, + ACTIONS(12683), 1, + anon_sym_DQUOTE, + [255056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13660), 1, - anon_sym_RPAREN, - [300062] = 2, + ACTIONS(12685), 1, + aux_sym_preproc_if_token2, + [255063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8202), 1, + ACTIONS(12687), 1, anon_sym_RPAREN, - [300069] = 2, + [255070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13662), 1, - aux_sym_preproc_if_token2, - [300076] = 2, + ACTIONS(12689), 1, + anon_sym_SEMI, + [255077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13664), 1, - anon_sym_RPAREN, - [300083] = 2, + ACTIONS(12691), 1, + anon_sym_SEMI, + [255084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13666), 1, - sym_identifier, - [300090] = 2, + ACTIONS(12693), 1, + sym_raw_string_content, + [255091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, - sym_identifier, - [300097] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(13670), 1, - aux_sym_preproc_include_token2, - [300104] = 2, + ACTIONS(12695), 1, + anon_sym_RPAREN, + [255098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13672), 1, + ACTIONS(12697), 1, anon_sym_RPAREN, - [300111] = 2, - ACTIONS(9067), 1, + [255105] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9247), 1, - aux_sym_preproc_include_token2, - [300118] = 2, + ACTIONS(12699), 1, + sym_raw_string_content, + [255112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13674), 1, - anon_sym_SEMI, - [300125] = 2, + ACTIONS(12701), 1, + anon_sym_RPAREN, + [255119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13676), 1, - anon_sym_SEMI, - [300132] = 2, + ACTIONS(12703), 1, + sym_raw_string_content, + [255126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13678), 1, - anon_sym_STAR, - [300139] = 2, + ACTIONS(12705), 1, + anon_sym_RPAREN, + [255133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13680), 1, - anon_sym_SEMI, - [300146] = 2, + ACTIONS(12707), 1, + sym_raw_string_content, + [255140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13682), 1, - anon_sym_STAR, - [300153] = 2, + ACTIONS(12709), 1, + anon_sym_RPAREN, + [255147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13684), 1, - anon_sym_SEMI, - [300160] = 2, - ACTIONS(9067), 1, + ACTIONS(12711), 1, + sym_raw_string_content, + [255154] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13686), 1, - aux_sym_preproc_include_token2, - [300167] = 2, + ACTIONS(12713), 1, + anon_sym_RPAREN, + [255161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8104), 1, - anon_sym_SEMI, - [300174] = 2, + ACTIONS(12715), 1, + sym_raw_string_content, + [255168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13688), 1, - anon_sym_DQUOTE, - [300181] = 2, + ACTIONS(12717), 1, + anon_sym_RPAREN, + [255175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13690), 1, - sym_identifier, - [300188] = 2, + ACTIONS(12719), 1, + sym_raw_string_content, + [255182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13692), 1, - anon_sym_SEMI, - [300195] = 2, + ACTIONS(12721), 1, + anon_sym_RPAREN, + [255189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13694), 1, - sym_auto, - [300202] = 2, + ACTIONS(12723), 1, + anon_sym_DQUOTE, + [255196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(12725), 1, anon_sym_SEMI, - [300209] = 2, + [255203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13696), 1, + ACTIONS(12727), 1, anon_sym_LPAREN2, - [300216] = 2, + [255210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13698), 1, - sym_identifier, - [300223] = 2, + ACTIONS(12729), 1, + anon_sym_LPAREN2, + [255217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13700), 1, - anon_sym_SEMI, - [300230] = 2, + ACTIONS(12731), 1, + sym_identifier, + [255224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13702), 1, - anon_sym_RPAREN, - [300237] = 2, + ACTIONS(12733), 1, + anon_sym_SEMI, + [255231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13704), 1, - aux_sym_preproc_if_token2, - [300244] = 2, + ACTIONS(10850), 1, + anon_sym_RBRACE, + [255238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13706), 1, + ACTIONS(12735), 1, anon_sym_SEMI, - [300251] = 2, + [255245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11178), 1, - anon_sym_SEMI, - [300258] = 2, - ACTIONS(3), 1, + ACTIONS(12737), 1, + anon_sym_SQUOTE, + [255252] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(13708), 1, - anon_sym_RPAREN, - [300265] = 2, - ACTIONS(3), 1, + ACTIONS(8712), 1, + aux_sym_preproc_include_token2, + [255259] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(13710), 1, - sym_identifier, - [300272] = 2, + ACTIONS(12739), 1, + aux_sym_preproc_include_token2, + [255266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13712), 1, + ACTIONS(12741), 1, anon_sym_RPAREN, - [300279] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13714), 1, - sym_raw_string_content, - [300286] = 2, - ACTIONS(3), 1, + [255273] = 2, + ACTIONS(5190), 1, + aux_sym_preproc_include_token2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(13716), 1, - anon_sym_LPAREN2, - [300293] = 2, + [255280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13718), 1, - anon_sym_EQ, - [300300] = 2, + ACTIONS(12743), 1, + sym_auto, + [255287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10361), 1, + ACTIONS(4301), 1, anon_sym_SEMI, - [300307] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13720), 1, - sym_identifier, - [300314] = 2, + [255294] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13722), 1, + ACTIONS(12745), 1, anon_sym_SEMI, - [300321] = 2, + [255301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13724), 1, + ACTIONS(6448), 1, anon_sym_RPAREN, - [300328] = 2, + [255308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11755), 1, - anon_sym_COLON_COLON, - [300335] = 2, + ACTIONS(12747), 1, + anon_sym_RPAREN, + [255315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13726), 1, - anon_sym_RPAREN, - [300342] = 2, + ACTIONS(12749), 1, + sym_identifier, + [255322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13728), 1, - anon_sym_SEMI, - [300349] = 2, + ACTIONS(12751), 1, + sym_raw_string_content, + [255329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13730), 1, - sym_identifier, - [300356] = 2, + ACTIONS(10352), 1, + anon_sym_SEMI, + [255336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12240), 1, - anon_sym_RBRACE, - [300363] = 2, + ACTIONS(12753), 1, + aux_sym_preproc_if_token2, + [255343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(12755), 1, anon_sym_SEMI, - [300370] = 2, + [255350] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13734), 1, + ACTIONS(10360), 1, anon_sym_SEMI, - [300377] = 2, + [255357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9613), 1, - sym_identifier, - [300384] = 2, + ACTIONS(12757), 1, + anon_sym_RPAREN, + [255364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13736), 1, + ACTIONS(12759), 1, anon_sym_RPAREN, - [300391] = 2, + [255371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13738), 1, - aux_sym_preproc_if_token2, - [300398] = 2, + ACTIONS(12761), 1, + sym_identifier, + [255378] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13740), 1, - anon_sym_DQUOTE, - [300405] = 2, + ACTIONS(12763), 1, + anon_sym_RPAREN, + [255385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13742), 1, - anon_sym_RPAREN, - [300412] = 2, + ACTIONS(12765), 1, + anon_sym_SEMI, + [255392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13744), 1, - anon_sym_STAR, - [300419] = 2, + ACTIONS(12767), 1, + sym_identifier, + [255399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13746), 1, - anon_sym_SQUOTE, - [300426] = 2, + ACTIONS(4325), 1, + anon_sym_SEMI, + [255406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13748), 1, - anon_sym_LPAREN2, - [300433] = 2, + ACTIONS(12769), 1, + anon_sym_RPAREN, + [255413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13750), 1, + ACTIONS(12771), 1, anon_sym_LPAREN2, - [300440] = 2, + [255420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13752), 1, + ACTIONS(12773), 1, sym_identifier, - [300447] = 2, + [255427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13754), 1, - anon_sym_RPAREN, - [300454] = 2, - ACTIONS(9067), 1, + ACTIONS(12775), 1, + sym_auto, + [255434] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13756), 1, - aux_sym_preproc_include_token2, - [300461] = 2, + ACTIONS(12777), 1, + anon_sym_COLON, + [255441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6836), 1, - anon_sym_RPAREN, - [300468] = 2, + ACTIONS(10788), 1, + anon_sym_RBRACE, + [255448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13758), 1, + ACTIONS(12779), 1, aux_sym_preproc_if_token2, - [300475] = 2, + [255455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13760), 1, - sym_identifier, - [300482] = 2, + ACTIONS(12781), 1, + anon_sym_RPAREN, + [255462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13762), 1, - anon_sym_LPAREN2, - [300489] = 2, + ACTIONS(12783), 1, + anon_sym_RPAREN, + [255469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13764), 1, - anon_sym_SEMI, - [300496] = 2, + ACTIONS(12785), 1, + anon_sym_RPAREN, + [255476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, + ACTIONS(9788), 1, anon_sym_SEMI, - [300503] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13766), 1, - sym_raw_string_content, - [300510] = 2, + [255483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8196), 1, - anon_sym_SEMI, - [300517] = 2, + ACTIONS(12787), 1, + anon_sym_RPAREN, + [255490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13768), 1, - anon_sym_while, - [300524] = 2, - ACTIONS(9067), 1, + ACTIONS(12789), 1, + anon_sym_LPAREN2, + [255497] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(13770), 1, + ACTIONS(12791), 1, aux_sym_preproc_include_token2, - [300531] = 2, - ACTIONS(9067), 1, + [255504] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(12244), 1, + ACTIONS(12793), 1, aux_sym_preproc_include_token2, - [300538] = 2, + [255511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13772), 1, - anon_sym_RPAREN, - [300545] = 2, + ACTIONS(12795), 1, + anon_sym_LPAREN2, + [255518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7894), 1, + ACTIONS(12797), 1, anon_sym_SEMI, - [300552] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8096), 1, - anon_sym_RPAREN, - [300559] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13774), 1, - anon_sym_RPAREN, - [300566] = 2, + [255525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10401), 1, + ACTIONS(12799), 1, anon_sym_SEMI, - [300573] = 2, + [255532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13776), 1, + ACTIONS(9728), 1, anon_sym_SEMI, - [300580] = 2, + [255539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8090), 1, + ACTIONS(12801), 1, anon_sym_RPAREN, - [300587] = 2, + [255546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13778), 1, + ACTIONS(12803), 1, anon_sym_SEMI, - [300594] = 2, + [255553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7593), 1, + ACTIONS(12805), 1, anon_sym_SEMI, - [300601] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13780), 1, - anon_sym_STAR, - [300608] = 2, + [255560] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13782), 1, - sym_identifier, - [300615] = 2, + ACTIONS(12807), 1, + anon_sym_RPAREN, + [255567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13784), 1, + ACTIONS(12809), 1, aux_sym_preproc_if_token2, - [300622] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13786), 1, - anon_sym_SQUOTE, - [300629] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13788), 1, - anon_sym_RPAREN, - [300636] = 2, + [255574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13790), 1, + ACTIONS(12811), 1, anon_sym_SEMI, - [300643] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13792), 1, - anon_sym_RPAREN, - [300650] = 2, + [255581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7613), 1, + ACTIONS(12813), 1, anon_sym_SEMI, - [300657] = 2, + [255588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13794), 1, - anon_sym_RPAREN, - [300664] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13796), 1, - sym_identifier, - [300671] = 2, + ACTIONS(12815), 1, + anon_sym_DQUOTE, + [255595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13798), 1, - sym_identifier, - [300678] = 2, + ACTIONS(12817), 1, + anon_sym_RPAREN, + [255602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13800), 1, + ACTIONS(12819), 1, anon_sym_RPAREN, - [300685] = 2, + [255609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13802), 1, - anon_sym_LPAREN2, - [300692] = 2, + ACTIONS(12821), 1, + aux_sym_preproc_if_token2, + [255616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13804), 1, - sym_identifier, - [300699] = 2, + ACTIONS(12823), 1, + anon_sym_LPAREN2, + [255623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13806), 1, - anon_sym_RPAREN, - [300706] = 2, + ACTIONS(12825), 1, + anon_sym_RBRACK, + [255630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13808), 1, + ACTIONS(12827), 1, anon_sym_RPAREN, - [300713] = 2, + [255637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13810), 1, + ACTIONS(12829), 1, anon_sym_RPAREN, - [300720] = 2, + [255644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13812), 1, + ACTIONS(7708), 1, anon_sym_RPAREN, - [300727] = 2, + [255651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6842), 1, + ACTIONS(7598), 1, anon_sym_RPAREN, - [300734] = 2, + [255658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13814), 1, + ACTIONS(12831), 1, anon_sym_RPAREN, - [300741] = 2, - ACTIONS(3), 1, + [255665] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(13816), 1, - anon_sym_LPAREN2, - [300748] = 2, + ACTIONS(12833), 1, + aux_sym_preproc_include_token2, + [255672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13818), 1, - sym_identifier, - [300755] = 2, + ACTIONS(12835), 1, + anon_sym_SEMI, + [255679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13820), 1, + ACTIONS(12837), 1, anon_sym_SEMI, - [300762] = 2, + [255686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8134), 1, - anon_sym_RPAREN, - [300769] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(13822), 1, - aux_sym_preproc_include_token2, - [300776] = 2, + ACTIONS(12839), 1, + anon_sym_SEMI, + [255693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13824), 1, - sym_identifier, - [300783] = 2, + ACTIONS(12841), 1, + anon_sym_SEMI, + [255700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13826), 1, - anon_sym_LPAREN2, - [300790] = 2, + ACTIONS(12843), 1, + anon_sym_SEMI, + [255707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, + ACTIONS(12845), 1, anon_sym_SEMI, - [300797] = 2, + [255714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13828), 1, - sym_raw_string_content, - [300804] = 2, + ACTIONS(12847), 1, + anon_sym_DQUOTE, + [255721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13830), 1, + ACTIONS(12849), 1, anon_sym_RPAREN, - [300811] = 2, + [255728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13832), 1, - sym_raw_string_delimiter, - [300818] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(13834), 1, - aux_sym_preproc_include_token2, - [300825] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(12282), 1, - aux_sym_preproc_include_token2, - [300832] = 2, + ACTIONS(12851), 1, + aux_sym_preproc_if_token2, + [255735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - [300839] = 2, + ACTIONS(12853), 1, + aux_sym_preproc_if_token2, + [255742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13836), 1, + ACTIONS(12855), 1, anon_sym_LPAREN2, - [300846] = 2, + [255749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13838), 1, - sym_identifier, - [300853] = 2, + ACTIONS(12857), 1, + anon_sym_LPAREN2, + [255756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6210), 1, + ACTIONS(12859), 1, sym_identifier, - [300860] = 2, + [255763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9908), 1, + ACTIONS(12861), 1, anon_sym_RPAREN, - [300867] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8138), 1, - anon_sym_SEMI, - [300874] = 2, + [255770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13840), 1, + ACTIONS(12863), 1, sym_identifier, - [300881] = 2, - ACTIONS(3), 1, + [255777] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(13842), 1, - anon_sym_COLON, - [300888] = 2, + ACTIONS(12865), 1, + aux_sym_preproc_include_token2, + [255784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7986), 1, - anon_sym_SEMI, - [300895] = 2, + ACTIONS(12867), 1, + sym_identifier, + [255791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13844), 1, + ACTIONS(12869), 1, sym_raw_string_content, - [300902] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13846), 1, - anon_sym_SEMI, - [300909] = 2, + [255798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13848), 1, + ACTIONS(10676), 1, anon_sym_SEMI, - [300916] = 2, + [255805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13850), 1, - anon_sym_SEMI, - [300923] = 2, + ACTIONS(12871), 1, + anon_sym_RPAREN, + [255812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13852), 1, - anon_sym_STAR, - [300930] = 2, + ACTIONS(12873), 1, + sym_identifier, + [255819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13854), 1, - ts_builtin_sym_end, - [300937] = 2, + ACTIONS(12875), 1, + anon_sym_LPAREN2, + [255826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13856), 1, + ACTIONS(12877), 1, anon_sym_LPAREN2, - [300944] = 2, + [255833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13858), 1, + ACTIONS(12879), 1, sym_identifier, - [300951] = 2, + [255840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8172), 1, + ACTIONS(12881), 1, anon_sym_RPAREN, - [300958] = 2, + [255847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13860), 1, - sym_identifier, - [300965] = 2, + ACTIONS(12883), 1, + anon_sym_DQUOTE, + [255854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13862), 1, + ACTIONS(12885), 1, sym_identifier, - [300972] = 2, + [255861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13864), 1, + ACTIONS(12887), 1, sym_raw_string_content, - [300979] = 2, + [255868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13866), 1, - sym_identifier, - [300986] = 2, + ACTIONS(12889), 1, + anon_sym_SEMI, + [255875] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12891), 1, + anon_sym_DQUOTE, + [255882] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12893), 1, + anon_sym_SEMI, + [255889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13868), 1, + ACTIONS(12895), 1, anon_sym_LPAREN2, - [300993] = 2, + [255896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13870), 1, + ACTIONS(12897), 1, anon_sym_LPAREN2, - [301000] = 2, + [255903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13872), 1, + ACTIONS(12899), 1, sym_identifier, - [301007] = 2, + [255910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13874), 1, + ACTIONS(12901), 1, anon_sym_SEMI, - [301014] = 2, + [255917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13876), 1, + ACTIONS(12903), 1, + anon_sym_RPAREN, + [255924] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12905), 1, sym_identifier, - [301021] = 2, + [255931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13878), 1, + ACTIONS(12907), 1, sym_raw_string_content, - [301028] = 2, + [255938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13880), 1, - anon_sym_SEMI, - [301035] = 2, + ACTIONS(12909), 1, + anon_sym_LPAREN2, + [255945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12911), 1, + sym_identifier, + [255952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13882), 1, + ACTIONS(12913), 1, + sym_identifier, + [255959] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12915), 1, anon_sym_LPAREN2, - [301042] = 2, + [255966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13884), 1, + ACTIONS(12917), 1, sym_identifier, - [301049] = 2, + [255973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7980), 1, + ACTIONS(12919), 1, anon_sym_RPAREN, - [301056] = 2, + [255980] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12921), 1, + sym_identifier, + [255987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13886), 1, + ACTIONS(12923), 1, sym_identifier, - [301063] = 2, + [255994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13888), 1, + ACTIONS(12925), 1, sym_raw_string_content, - [301070] = 2, + [256001] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12927), 1, + anon_sym_RBRACK, + [256008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13890), 1, + ACTIONS(12929), 1, anon_sym_DQUOTE, - [301077] = 2, + [256015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13892), 1, + ACTIONS(12931), 1, anon_sym_LPAREN2, - [301084] = 2, + [256022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13894), 1, + ACTIONS(12933), 1, sym_identifier, - [301091] = 2, + [256029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13896), 1, - anon_sym_RPAREN, - [301098] = 2, + ACTIONS(12935), 1, + anon_sym_SEMI, + [256036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13898), 1, + ACTIONS(12937), 1, sym_identifier, - [301105] = 2, + [256043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13900), 1, + ACTIONS(12939), 1, sym_raw_string_content, - [301112] = 2, + [256050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13902), 1, + ACTIONS(12941), 1, anon_sym_SEMI, - [301119] = 2, + [256057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13904), 1, - anon_sym_DQUOTE, - [301126] = 2, + ACTIONS(12943), 1, + anon_sym_LPAREN2, + [256064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13906), 1, + ACTIONS(12945), 1, sym_identifier, - [301133] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13908), 1, - sym_raw_string_content, - [301140] = 2, + [256071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13910), 1, - anon_sym_LPAREN2, - [301147] = 2, + ACTIONS(12947), 1, + anon_sym_SEMI, + [256078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13912), 1, + ACTIONS(12949), 1, sym_identifier, - [301154] = 2, + [256085] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13914), 1, + ACTIONS(12951), 1, sym_raw_string_content, - [301161] = 2, + [256092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7978), 1, - anon_sym_SEMI, - [301168] = 2, + ACTIONS(7532), 1, + anon_sym_RPAREN, + [256099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13916), 1, - sym_raw_string_content, - [301175] = 2, + ACTIONS(12953), 1, + anon_sym_LPAREN2, + [256106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13918), 1, - anon_sym_RPAREN, - [301182] = 2, + ACTIONS(12955), 1, + sym_identifier, + [256113] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13920), 1, - sym_raw_string_content, - [301189] = 2, + ACTIONS(9720), 1, + anon_sym_SEMI, + [256120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8038), 1, - anon_sym_SEMI, - [301196] = 2, + ACTIONS(12957), 1, + sym_identifier, + [256127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13922), 1, + ACTIONS(12959), 1, sym_raw_string_content, - [301203] = 2, + [256134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13924), 1, + ACTIONS(7790), 1, anon_sym_RPAREN, - [301210] = 2, + [256141] = 2, + ACTIONS(8584), 1, + sym_comment, + ACTIONS(12961), 1, + aux_sym_preproc_include_token2, + [256148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13926), 1, + ACTIONS(12963), 1, + sym_identifier, + [256155] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12965), 1, sym_raw_string_content, - [301217] = 2, + [256162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13928), 1, + ACTIONS(7512), 1, anon_sym_RPAREN, - [301224] = 2, + [256169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13930), 1, - sym_raw_string_content, - [301231] = 2, - ACTIONS(9067), 1, - sym_comment, - ACTIONS(13932), 1, - aux_sym_preproc_include_token2, - [301238] = 2, + ACTIONS(12967), 1, + anon_sym_SEMI, + [256176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13934), 1, + ACTIONS(12969), 1, sym_raw_string_content, - [301245] = 2, - ACTIONS(3), 1, + [256183] = 2, + ACTIONS(8584), 1, sym_comment, - ACTIONS(13936), 1, - anon_sym_LPAREN2, - [301252] = 2, + ACTIONS(12971), 1, + aux_sym_preproc_include_token2, + [256190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13938), 1, - anon_sym_LPAREN2, - [301259] = 2, + ACTIONS(12973), 1, + sym_raw_string_content, + [256197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13940), 1, - anon_sym_LPAREN2, - [301266] = 2, + ACTIONS(12975), 1, + sym_auto, + [256204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13942), 1, - anon_sym_LPAREN2, - [301273] = 2, + ACTIONS(12977), 1, + sym_raw_string_content, + [256211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13944), 1, + ACTIONS(4412), 1, anon_sym_SEMI, - [301280] = 2, + [256218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13946), 1, - anon_sym_RPAREN, - [301287] = 2, + ACTIONS(12979), 1, + sym_raw_string_content, + [256225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13948), 1, + ACTIONS(12981), 1, anon_sym_SEMI, - [301294] = 2, + [256232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13950), 1, - anon_sym_LPAREN2, - [301301] = 2, + ACTIONS(12983), 1, + sym_raw_string_content, + [256239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13952), 1, - anon_sym_LPAREN2, - [301308] = 2, + ACTIONS(12985), 1, + anon_sym_SQUOTE, + [256246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13954), 1, - anon_sym_LPAREN2, - [301315] = 2, + ACTIONS(12987), 1, + sym_raw_string_content, + [256253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13956), 1, + ACTIONS(12989), 1, anon_sym_LPAREN2, - [301322] = 2, + [256260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13958), 1, - anon_sym_LPAREN2, - [301329] = 2, + ACTIONS(12991), 1, + sym_raw_string_content, + [256267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13960), 1, + ACTIONS(12993), 1, anon_sym_LPAREN2, - [301336] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13962), 1, - sym_identifier, - [301343] = 2, + [256274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13964), 1, + ACTIONS(12995), 1, anon_sym_LPAREN2, - [301350] = 2, + [256281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13966), 1, - anon_sym_LPAREN2, - [301357] = 2, + ACTIONS(7546), 1, + anon_sym_RPAREN, + [256288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13968), 1, + ACTIONS(12997), 1, anon_sym_LPAREN2, - [301364] = 2, + [256295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13970), 1, - anon_sym_SEMI, - [301371] = 2, + ACTIONS(12999), 1, + anon_sym_LPAREN2, + [256302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13972), 1, - anon_sym_SEMI, - [301378] = 2, + ACTIONS(10951), 1, + anon_sym_RPAREN, + [256309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13974), 1, + ACTIONS(13001), 1, anon_sym_LPAREN2, - [301385] = 2, + [256316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13976), 1, + ACTIONS(13003), 1, anon_sym_LPAREN2, - [301392] = 2, + [256323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13978), 1, - anon_sym_LPAREN2, - [301399] = 2, + ACTIONS(10578), 1, + anon_sym_SEMI, + [256330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13980), 1, + ACTIONS(13005), 1, anon_sym_LPAREN2, - [301406] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13982), 1, - anon_sym_RPAREN, - [301413] = 2, + [256337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13984), 1, - anon_sym_COLON, - [301420] = 2, + ACTIONS(13007), 1, + anon_sym_LPAREN2, + [256344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13986), 1, + ACTIONS(13009), 1, anon_sym_RPAREN, - [301427] = 2, + [256351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13988), 1, + ACTIONS(13011), 1, anon_sym_LPAREN2, - [301434] = 2, + [256358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13990), 1, + ACTIONS(13013), 1, anon_sym_LPAREN2, - [301441] = 2, + [256365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13992), 1, - anon_sym_SEMI, - [301448] = 2, + ACTIONS(13015), 1, + anon_sym_RPAREN, + [256372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13994), 1, + ACTIONS(13017), 1, anon_sym_LPAREN2, - [301455] = 2, + [256379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13996), 1, + ACTIONS(13019), 1, anon_sym_LPAREN2, - [301462] = 2, + [256386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13998), 1, + ACTIONS(13021), 1, anon_sym_LPAREN2, - [301469] = 2, + [256393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14000), 1, + ACTIONS(13023), 1, anon_sym_LPAREN2, - [301476] = 2, + [256400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14002), 1, + ACTIONS(13025), 1, anon_sym_LPAREN2, - [301483] = 2, + [256407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(13027), 1, anon_sym_LPAREN2, - [301490] = 2, + [256414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14006), 1, + ACTIONS(13029), 1, anon_sym_LPAREN2, - [301497] = 2, + [256421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14008), 1, + ACTIONS(13031), 1, anon_sym_LPAREN2, - [301504] = 2, + [256428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14010), 1, + ACTIONS(13033), 1, anon_sym_LPAREN2, - [301511] = 2, + [256435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14012), 1, + ACTIONS(13035), 1, anon_sym_LPAREN2, - [301518] = 2, + [256442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14014), 1, + ACTIONS(13037), 1, anon_sym_LPAREN2, - [301525] = 2, + [256449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14016), 1, - anon_sym_RPAREN, - [301532] = 2, + ACTIONS(10606), 1, + anon_sym_RBRACE, + [256456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14018), 1, + ACTIONS(13039), 1, anon_sym_SEMI, - [301539] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14020), 1, - anon_sym_LPAREN2, - [301546] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14022), 1, - sym_identifier, - [301553] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14024), 1, - anon_sym_RPAREN, - [301560] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14026), 1, - anon_sym_LPAREN2, - [301567] = 2, + [256463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14028), 1, - anon_sym_COLON, - [301574] = 2, + ACTIONS(13041), 1, + anon_sym_SEMI, + [256470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14030), 1, - sym_identifier, - [301581] = 2, + ACTIONS(13043), 1, + anon_sym_SEMI, + [256477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14032), 1, - sym_identifier, - [301588] = 2, + ACTIONS(13045), 1, + aux_sym_preproc_if_token2, + [256484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14034), 1, + ACTIONS(13047), 1, anon_sym_LPAREN2, - [301595] = 2, + [256491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14036), 1, + ACTIONS(13049), 1, anon_sym_LPAREN2, - [301602] = 2, + [256498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14038), 1, + ACTIONS(13051), 1, anon_sym_LPAREN2, - [301609] = 2, + [256505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14040), 1, + ACTIONS(13053), 1, anon_sym_LPAREN2, - [301616] = 2, + [256512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14042), 1, + ACTIONS(13055), 1, anon_sym_LPAREN2, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(2804)] = 0, - [SMALL_STATE(2805)] = 71, - [SMALL_STATE(2806)] = 142, - [SMALL_STATE(2807)] = 213, - [SMALL_STATE(2808)] = 284, - [SMALL_STATE(2809)] = 355, - [SMALL_STATE(2810)] = 426, - [SMALL_STATE(2811)] = 497, - [SMALL_STATE(2812)] = 568, - [SMALL_STATE(2813)] = 639, - [SMALL_STATE(2814)] = 710, - [SMALL_STATE(2815)] = 781, - [SMALL_STATE(2816)] = 852, - [SMALL_STATE(2817)] = 923, - [SMALL_STATE(2818)] = 994, - [SMALL_STATE(2819)] = 1065, - [SMALL_STATE(2820)] = 1136, - [SMALL_STATE(2821)] = 1207, - [SMALL_STATE(2822)] = 1278, - [SMALL_STATE(2823)] = 1349, - [SMALL_STATE(2824)] = 1420, - [SMALL_STATE(2825)] = 1491, - [SMALL_STATE(2826)] = 1562, - [SMALL_STATE(2827)] = 1633, - [SMALL_STATE(2828)] = 1704, - [SMALL_STATE(2829)] = 1775, - [SMALL_STATE(2830)] = 1846, - [SMALL_STATE(2831)] = 1933, - [SMALL_STATE(2832)] = 2004, - [SMALL_STATE(2833)] = 2075, - [SMALL_STATE(2834)] = 2146, - [SMALL_STATE(2835)] = 2217, - [SMALL_STATE(2836)] = 2288, - [SMALL_STATE(2837)] = 2367, - [SMALL_STATE(2838)] = 2438, - [SMALL_STATE(2839)] = 2509, - [SMALL_STATE(2840)] = 2580, - [SMALL_STATE(2841)] = 2651, - [SMALL_STATE(2842)] = 2722, - [SMALL_STATE(2843)] = 2793, - [SMALL_STATE(2844)] = 2864, - [SMALL_STATE(2845)] = 2935, - [SMALL_STATE(2846)] = 3006, - [SMALL_STATE(2847)] = 3077, - [SMALL_STATE(2848)] = 3148, - [SMALL_STATE(2849)] = 3219, - [SMALL_STATE(2850)] = 3290, - [SMALL_STATE(2851)] = 3361, - [SMALL_STATE(2852)] = 3432, - [SMALL_STATE(2853)] = 3503, - [SMALL_STATE(2854)] = 3574, - [SMALL_STATE(2855)] = 3645, - [SMALL_STATE(2856)] = 3716, - [SMALL_STATE(2857)] = 3787, - [SMALL_STATE(2858)] = 3858, - [SMALL_STATE(2859)] = 3929, - [SMALL_STATE(2860)] = 4000, - [SMALL_STATE(2861)] = 4071, - [SMALL_STATE(2862)] = 4142, - [SMALL_STATE(2863)] = 4213, - [SMALL_STATE(2864)] = 4284, - [SMALL_STATE(2865)] = 4355, - [SMALL_STATE(2866)] = 4426, - [SMALL_STATE(2867)] = 4505, - [SMALL_STATE(2868)] = 4576, - [SMALL_STATE(2869)] = 4647, - [SMALL_STATE(2870)] = 4718, - [SMALL_STATE(2871)] = 4789, - [SMALL_STATE(2872)] = 4860, - [SMALL_STATE(2873)] = 4931, - [SMALL_STATE(2874)] = 5002, - [SMALL_STATE(2875)] = 5089, - [SMALL_STATE(2876)] = 5160, - [SMALL_STATE(2877)] = 5231, - [SMALL_STATE(2878)] = 5302, - [SMALL_STATE(2879)] = 5373, - [SMALL_STATE(2880)] = 5444, - [SMALL_STATE(2881)] = 5515, - [SMALL_STATE(2882)] = 5586, - [SMALL_STATE(2883)] = 5657, - [SMALL_STATE(2884)] = 5728, - [SMALL_STATE(2885)] = 5799, - [SMALL_STATE(2886)] = 5870, - [SMALL_STATE(2887)] = 5941, - [SMALL_STATE(2888)] = 6012, - [SMALL_STATE(2889)] = 6099, - [SMALL_STATE(2890)] = 6186, - [SMALL_STATE(2891)] = 6257, - [SMALL_STATE(2892)] = 6328, - [SMALL_STATE(2893)] = 6399, - [SMALL_STATE(2894)] = 6470, - [SMALL_STATE(2895)] = 6541, - [SMALL_STATE(2896)] = 6612, - [SMALL_STATE(2897)] = 6683, - [SMALL_STATE(2898)] = 6754, - [SMALL_STATE(2899)] = 6825, - [SMALL_STATE(2900)] = 6896, - [SMALL_STATE(2901)] = 6967, - [SMALL_STATE(2902)] = 7038, - [SMALL_STATE(2903)] = 7109, - [SMALL_STATE(2904)] = 7180, - [SMALL_STATE(2905)] = 7251, - [SMALL_STATE(2906)] = 7322, - [SMALL_STATE(2907)] = 7393, - [SMALL_STATE(2908)] = 7464, - [SMALL_STATE(2909)] = 7535, - [SMALL_STATE(2910)] = 7606, - [SMALL_STATE(2911)] = 7677, - [SMALL_STATE(2912)] = 7748, - [SMALL_STATE(2913)] = 7819, - [SMALL_STATE(2914)] = 7890, - [SMALL_STATE(2915)] = 7961, - [SMALL_STATE(2916)] = 8032, - [SMALL_STATE(2917)] = 8103, - [SMALL_STATE(2918)] = 8182, - [SMALL_STATE(2919)] = 8253, - [SMALL_STATE(2920)] = 8324, - [SMALL_STATE(2921)] = 8395, - [SMALL_STATE(2922)] = 8466, - [SMALL_STATE(2923)] = 8537, - [SMALL_STATE(2924)] = 8608, - [SMALL_STATE(2925)] = 8679, - [SMALL_STATE(2926)] = 8750, - [SMALL_STATE(2927)] = 8821, - [SMALL_STATE(2928)] = 8892, - [SMALL_STATE(2929)] = 8963, - [SMALL_STATE(2930)] = 9034, - [SMALL_STATE(2931)] = 9105, - [SMALL_STATE(2932)] = 9176, - [SMALL_STATE(2933)] = 9247, - [SMALL_STATE(2934)] = 9318, - [SMALL_STATE(2935)] = 9389, - [SMALL_STATE(2936)] = 9460, - [SMALL_STATE(2937)] = 9531, - [SMALL_STATE(2938)] = 9602, - [SMALL_STATE(2939)] = 9673, - [SMALL_STATE(2940)] = 9744, - [SMALL_STATE(2941)] = 9815, - [SMALL_STATE(2942)] = 9886, - [SMALL_STATE(2943)] = 9957, - [SMALL_STATE(2944)] = 10028, - [SMALL_STATE(2945)] = 10099, - [SMALL_STATE(2946)] = 10170, - [SMALL_STATE(2947)] = 10241, - [SMALL_STATE(2948)] = 10312, - [SMALL_STATE(2949)] = 10383, - [SMALL_STATE(2950)] = 10454, - [SMALL_STATE(2951)] = 10525, - [SMALL_STATE(2952)] = 10596, - [SMALL_STATE(2953)] = 10667, - [SMALL_STATE(2954)] = 10738, - [SMALL_STATE(2955)] = 10809, - [SMALL_STATE(2956)] = 10880, - [SMALL_STATE(2957)] = 10951, - [SMALL_STATE(2958)] = 11022, - [SMALL_STATE(2959)] = 11093, - [SMALL_STATE(2960)] = 11164, - [SMALL_STATE(2961)] = 11235, - [SMALL_STATE(2962)] = 11306, - [SMALL_STATE(2963)] = 11377, - [SMALL_STATE(2964)] = 11448, - [SMALL_STATE(2965)] = 11519, - [SMALL_STATE(2966)] = 11590, - [SMALL_STATE(2967)] = 11661, - [SMALL_STATE(2968)] = 11732, - [SMALL_STATE(2969)] = 11803, - [SMALL_STATE(2970)] = 11874, - [SMALL_STATE(2971)] = 11945, - [SMALL_STATE(2972)] = 12016, - [SMALL_STATE(2973)] = 12087, - [SMALL_STATE(2974)] = 12158, - [SMALL_STATE(2975)] = 12229, - [SMALL_STATE(2976)] = 12300, - [SMALL_STATE(2977)] = 12371, - [SMALL_STATE(2978)] = 12442, - [SMALL_STATE(2979)] = 12521, - [SMALL_STATE(2980)] = 12592, - [SMALL_STATE(2981)] = 12663, - [SMALL_STATE(2982)] = 12734, - [SMALL_STATE(2983)] = 12805, - [SMALL_STATE(2984)] = 12876, - [SMALL_STATE(2985)] = 12947, - [SMALL_STATE(2986)] = 13018, - [SMALL_STATE(2987)] = 13089, - [SMALL_STATE(2988)] = 13160, - [SMALL_STATE(2989)] = 13231, - [SMALL_STATE(2990)] = 13302, - [SMALL_STATE(2991)] = 13373, - [SMALL_STATE(2992)] = 13444, - [SMALL_STATE(2993)] = 13515, - [SMALL_STATE(2994)] = 13586, - [SMALL_STATE(2995)] = 13657, - [SMALL_STATE(2996)] = 13728, - [SMALL_STATE(2997)] = 13799, - [SMALL_STATE(2998)] = 13870, - [SMALL_STATE(2999)] = 13941, - [SMALL_STATE(3000)] = 14012, - [SMALL_STATE(3001)] = 14083, - [SMALL_STATE(3002)] = 14154, - [SMALL_STATE(3003)] = 14225, - [SMALL_STATE(3004)] = 14296, - [SMALL_STATE(3005)] = 14367, - [SMALL_STATE(3006)] = 14438, - [SMALL_STATE(3007)] = 14509, - [SMALL_STATE(3008)] = 14580, - [SMALL_STATE(3009)] = 14651, - [SMALL_STATE(3010)] = 14722, - [SMALL_STATE(3011)] = 14793, - [SMALL_STATE(3012)] = 14864, - [SMALL_STATE(3013)] = 14935, - [SMALL_STATE(3014)] = 15006, - [SMALL_STATE(3015)] = 15077, - [SMALL_STATE(3016)] = 15148, - [SMALL_STATE(3017)] = 15219, - [SMALL_STATE(3018)] = 15290, - [SMALL_STATE(3019)] = 15361, - [SMALL_STATE(3020)] = 15432, - [SMALL_STATE(3021)] = 15503, - [SMALL_STATE(3022)] = 15574, - [SMALL_STATE(3023)] = 15645, - [SMALL_STATE(3024)] = 15716, - [SMALL_STATE(3025)] = 15787, - [SMALL_STATE(3026)] = 15858, - [SMALL_STATE(3027)] = 15929, - [SMALL_STATE(3028)] = 16000, - [SMALL_STATE(3029)] = 16070, - [SMALL_STATE(3030)] = 16140, - [SMALL_STATE(3031)] = 16210, - [SMALL_STATE(3032)] = 16296, - [SMALL_STATE(3033)] = 16374, - [SMALL_STATE(3034)] = 16460, - [SMALL_STATE(3035)] = 16546, - [SMALL_STATE(3036)] = 16618, - [SMALL_STATE(3037)] = 16688, - [SMALL_STATE(3038)] = 16758, - [SMALL_STATE(3039)] = 16828, - [SMALL_STATE(3040)] = 16914, - [SMALL_STATE(3041)] = 16984, - [SMALL_STATE(3042)] = 17070, - [SMALL_STATE(3043)] = 17140, - [SMALL_STATE(3044)] = 17210, - [SMALL_STATE(3045)] = 17296, - [SMALL_STATE(3046)] = 17370, - [SMALL_STATE(3047)] = 17444, - [SMALL_STATE(3048)] = 17514, - [SMALL_STATE(3049)] = 17584, - [SMALL_STATE(3050)] = 17662, - [SMALL_STATE(3051)] = 17732, - [SMALL_STATE(3052)] = 17802, - [SMALL_STATE(3053)] = 17880, - [SMALL_STATE(3054)] = 17956, - [SMALL_STATE(3055)] = 18026, - [SMALL_STATE(3056)] = 18096, - [SMALL_STATE(3057)] = 18172, - [SMALL_STATE(3058)] = 18242, - [SMALL_STATE(3059)] = 18312, - [SMALL_STATE(3060)] = 18384, - [SMALL_STATE(3061)] = 18456, - [SMALL_STATE(3062)] = 18526, - [SMALL_STATE(3063)] = 18612, - [SMALL_STATE(3064)] = 18682, - [SMALL_STATE(3065)] = 18752, - [SMALL_STATE(3066)] = 18826, - [SMALL_STATE(3067)] = 18896, - [SMALL_STATE(3068)] = 18966, - [SMALL_STATE(3069)] = 19036, - [SMALL_STATE(3070)] = 19122, - [SMALL_STATE(3071)] = 19207, - [SMALL_STATE(3072)] = 19276, - [SMALL_STATE(3073)] = 19345, - [SMALL_STATE(3074)] = 19430, - [SMALL_STATE(3075)] = 19507, - [SMALL_STATE(3076)] = 19580, - [SMALL_STATE(3077)] = 19657, - [SMALL_STATE(3078)] = 19726, - [SMALL_STATE(3079)] = 19803, - [SMALL_STATE(3080)] = 19872, - [SMALL_STATE(3081)] = 19943, - [SMALL_STATE(3082)] = 20012, - [SMALL_STATE(3083)] = 20093, - [SMALL_STATE(3084)] = 20162, - [SMALL_STATE(3085)] = 20243, - [SMALL_STATE(3086)] = 20328, - [SMALL_STATE(3087)] = 20449, - [SMALL_STATE(3088)] = 20518, - [SMALL_STATE(3089)] = 20587, - [SMALL_STATE(3090)] = 20656, - [SMALL_STATE(3091)] = 20725, - [SMALL_STATE(3092)] = 20794, - [SMALL_STATE(3093)] = 20865, - [SMALL_STATE(3094)] = 20934, - [SMALL_STATE(3095)] = 21003, - [SMALL_STATE(3096)] = 21088, - [SMALL_STATE(3097)] = 21165, - [SMALL_STATE(3098)] = 21286, - [SMALL_STATE(3099)] = 21357, - [SMALL_STATE(3100)] = 21425, - [SMALL_STATE(3101)] = 21509, - [SMALL_STATE(3102)] = 21581, - [SMALL_STATE(3103)] = 21653, - [SMALL_STATE(3104)] = 21725, - [SMALL_STATE(3105)] = 21797, - [SMALL_STATE(3106)] = 21881, - [SMALL_STATE(3107)] = 22001, - [SMALL_STATE(3108)] = 22077, - [SMALL_STATE(3109)] = 22145, - [SMALL_STATE(3110)] = 22217, - [SMALL_STATE(3111)] = 22285, - [SMALL_STATE(3112)] = 22369, - [SMALL_STATE(3113)] = 22453, - [SMALL_STATE(3114)] = 22525, - [SMALL_STATE(3115)] = 22597, - [SMALL_STATE(3116)] = 22669, - [SMALL_STATE(3117)] = 22741, - [SMALL_STATE(3118)] = 22813, - [SMALL_STATE(3119)] = 22887, - [SMALL_STATE(3120)] = 22955, - [SMALL_STATE(3121)] = 23023, - [SMALL_STATE(3122)] = 23095, - [SMALL_STATE(3123)] = 23167, - [SMALL_STATE(3124)] = 23241, - [SMALL_STATE(3125)] = 23313, - [SMALL_STATE(3126)] = 23381, - [SMALL_STATE(3127)] = 23453, - [SMALL_STATE(3128)] = 23521, - [SMALL_STATE(3129)] = 23593, - [SMALL_STATE(3130)] = 23665, - [SMALL_STATE(3131)] = 23737, - [SMALL_STATE(3132)] = 23809, - [SMALL_STATE(3133)] = 23881, - [SMALL_STATE(3134)] = 23949, - [SMALL_STATE(3135)] = 24021, - [SMALL_STATE(3136)] = 24093, - [SMALL_STATE(3137)] = 24165, - [SMALL_STATE(3138)] = 24239, - [SMALL_STATE(3139)] = 24307, - [SMALL_STATE(3140)] = 24379, - [SMALL_STATE(3141)] = 24455, - [SMALL_STATE(3142)] = 24527, - [SMALL_STATE(3143)] = 24599, - [SMALL_STATE(3144)] = 24668, - [SMALL_STATE(3145)] = 24739, - [SMALL_STATE(3146)] = 24810, - [SMALL_STATE(3147)] = 24877, - [SMALL_STATE(3148)] = 24948, - [SMALL_STATE(3149)] = 25015, - [SMALL_STATE(3150)] = 25092, - [SMALL_STATE(3151)] = 25163, - [SMALL_STATE(3152)] = 25234, - [SMALL_STATE(3153)] = 25317, - [SMALL_STATE(3154)] = 25388, - [SMALL_STATE(3155)] = 25459, - [SMALL_STATE(3156)] = 25536, - [SMALL_STATE(3157)] = 25607, - [SMALL_STATE(3158)] = 25678, - [SMALL_STATE(3159)] = 25749, - [SMALL_STATE(3160)] = 25820, - [SMALL_STATE(3161)] = 25891, - [SMALL_STATE(3162)] = 25958, - [SMALL_STATE(3163)] = 26025, - [SMALL_STATE(3164)] = 26092, - [SMALL_STATE(3165)] = 26165, - [SMALL_STATE(3166)] = 26244, - [SMALL_STATE(3167)] = 26311, - [SMALL_STATE(3168)] = 26382, - [SMALL_STATE(3169)] = 26453, - [SMALL_STATE(3170)] = 26520, - [SMALL_STATE(3171)] = 26591, - [SMALL_STATE(3172)] = 26662, - [SMALL_STATE(3173)] = 26733, - [SMALL_STATE(3174)] = 26804, - [SMALL_STATE(3175)] = 26875, - [SMALL_STATE(3176)] = 26958, - [SMALL_STATE(3177)] = 27035, - [SMALL_STATE(3178)] = 27106, - [SMALL_STATE(3179)] = 27177, - [SMALL_STATE(3180)] = 27252, - [SMALL_STATE(3181)] = 27321, - [SMALL_STATE(3182)] = 27392, - [SMALL_STATE(3183)] = 27475, - [SMALL_STATE(3184)] = 27554, - [SMALL_STATE(3185)] = 27623, - [SMALL_STATE(3186)] = 27696, - [SMALL_STATE(3187)] = 27767, - [SMALL_STATE(3188)] = 27838, - [SMALL_STATE(3189)] = 27909, - [SMALL_STATE(3190)] = 27992, - [SMALL_STATE(3191)] = 28065, - [SMALL_STATE(3192)] = 28142, - [SMALL_STATE(3193)] = 28209, - [SMALL_STATE(3194)] = 28276, - [SMALL_STATE(3195)] = 28345, - [SMALL_STATE(3196)] = 28411, - [SMALL_STATE(3197)] = 28477, - [SMALL_STATE(3198)] = 28549, - [SMALL_STATE(3199)] = 28615, - [SMALL_STATE(3200)] = 28681, - [SMALL_STATE(3201)] = 28747, - [SMALL_STATE(3202)] = 28813, - [SMALL_STATE(3203)] = 28879, - [SMALL_STATE(3204)] = 28951, - [SMALL_STATE(3205)] = 29025, - [SMALL_STATE(3206)] = 29097, - [SMALL_STATE(3207)] = 29163, - [SMALL_STATE(3208)] = 29229, - [SMALL_STATE(3209)] = 29311, - [SMALL_STATE(3210)] = 29381, - [SMALL_STATE(3211)] = 29447, - [SMALL_STATE(3212)] = 29513, - [SMALL_STATE(3213)] = 29579, - [SMALL_STATE(3214)] = 29657, - [SMALL_STATE(3215)] = 29723, - [SMALL_STATE(3216)] = 29789, - [SMALL_STATE(3217)] = 29855, - [SMALL_STATE(3218)] = 29921, - [SMALL_STATE(3219)] = 29989, - [SMALL_STATE(3220)] = 30055, - [SMALL_STATE(3221)] = 30121, - [SMALL_STATE(3222)] = 30187, - [SMALL_STATE(3223)] = 30253, - [SMALL_STATE(3224)] = 30331, - [SMALL_STATE(3225)] = 30397, - [SMALL_STATE(3226)] = 30463, - [SMALL_STATE(3227)] = 30535, - [SMALL_STATE(3228)] = 30603, - [SMALL_STATE(3229)] = 30669, - [SMALL_STATE(3230)] = 30735, - [SMALL_STATE(3231)] = 30801, - [SMALL_STATE(3232)] = 30867, - [SMALL_STATE(3233)] = 30933, - [SMALL_STATE(3234)] = 31015, - [SMALL_STATE(3235)] = 31081, - [SMALL_STATE(3236)] = 31147, - [SMALL_STATE(3237)] = 31213, - [SMALL_STATE(3238)] = 31279, - [SMALL_STATE(3239)] = 31351, - [SMALL_STATE(3240)] = 31417, - [SMALL_STATE(3241)] = 31483, - [SMALL_STATE(3242)] = 31549, - [SMALL_STATE(3243)] = 31631, - [SMALL_STATE(3244)] = 31697, - [SMALL_STATE(3245)] = 31763, - [SMALL_STATE(3246)] = 31845, - [SMALL_STATE(3247)] = 31911, - [SMALL_STATE(3248)] = 31981, - [SMALL_STATE(3249)] = 32047, - [SMALL_STATE(3250)] = 32113, - [SMALL_STATE(3251)] = 32179, - [SMALL_STATE(3252)] = 32245, - [SMALL_STATE(3253)] = 32311, - [SMALL_STATE(3254)] = 32377, - [SMALL_STATE(3255)] = 32443, - [SMALL_STATE(3256)] = 32509, - [SMALL_STATE(3257)] = 32575, - [SMALL_STATE(3258)] = 32641, - [SMALL_STATE(3259)] = 32707, - [SMALL_STATE(3260)] = 32773, - [SMALL_STATE(3261)] = 32839, - [SMALL_STATE(3262)] = 32905, - [SMALL_STATE(3263)] = 32971, - [SMALL_STATE(3264)] = 33037, - [SMALL_STATE(3265)] = 33103, - [SMALL_STATE(3266)] = 33169, - [SMALL_STATE(3267)] = 33235, - [SMALL_STATE(3268)] = 33305, - [SMALL_STATE(3269)] = 33371, - [SMALL_STATE(3270)] = 33437, - [SMALL_STATE(3271)] = 33503, - [SMALL_STATE(3272)] = 33569, - [SMALL_STATE(3273)] = 33637, - [SMALL_STATE(3274)] = 33703, - [SMALL_STATE(3275)] = 33769, - [SMALL_STATE(3276)] = 33841, - [SMALL_STATE(3277)] = 33907, - [SMALL_STATE(3278)] = 33973, - [SMALL_STATE(3279)] = 34038, - [SMALL_STATE(3280)] = 34105, - [SMALL_STATE(3281)] = 34170, - [SMALL_STATE(3282)] = 34235, - [SMALL_STATE(3283)] = 34300, - [SMALL_STATE(3284)] = 34365, - [SMALL_STATE(3285)] = 34430, - [SMALL_STATE(3286)] = 34503, - [SMALL_STATE(3287)] = 34584, - [SMALL_STATE(3288)] = 34657, - [SMALL_STATE(3289)] = 34738, - [SMALL_STATE(3290)] = 34819, - [SMALL_STATE(3291)] = 34888, - [SMALL_STATE(3292)] = 34959, - [SMALL_STATE(3293)] = 35026, - [SMALL_STATE(3294)] = 35107, - [SMALL_STATE(3295)] = 35180, - [SMALL_STATE(3296)] = 35249, - [SMALL_STATE(3297)] = 35316, - [SMALL_STATE(3298)] = 35389, - [SMALL_STATE(3299)] = 35454, - [SMALL_STATE(3300)] = 35519, - [SMALL_STATE(3301)] = 35584, - [SMALL_STATE(3302)] = 35649, - [SMALL_STATE(3303)] = 35714, - [SMALL_STATE(3304)] = 35779, - [SMALL_STATE(3305)] = 35846, - [SMALL_STATE(3306)] = 35917, - [SMALL_STATE(3307)] = 35981, - [SMALL_STATE(3308)] = 36049, - [SMALL_STATE(3309)] = 36117, - [SMALL_STATE(3310)] = 36183, - [SMALL_STATE(3311)] = 36251, - [SMALL_STATE(3312)] = 36319, - [SMALL_STATE(3313)] = 36387, - [SMALL_STATE(3314)] = 36453, - [SMALL_STATE(3315)] = 36517, - [SMALL_STATE(3316)] = 36585, - [SMALL_STATE(3317)] = 36649, - [SMALL_STATE(3318)] = 36717, - [SMALL_STATE(3319)] = 36781, - [SMALL_STATE(3320)] = 36845, - [SMALL_STATE(3321)] = 36909, - [SMALL_STATE(3322)] = 36977, - [SMALL_STATE(3323)] = 37049, - [SMALL_STATE(3324)] = 37117, - [SMALL_STATE(3325)] = 37185, - [SMALL_STATE(3326)] = 37249, - [SMALL_STATE(3327)] = 37321, - [SMALL_STATE(3328)] = 37385, - [SMALL_STATE(3329)] = 37449, - [SMALL_STATE(3330)] = 37525, - [SMALL_STATE(3331)] = 37589, - [SMALL_STATE(3332)] = 37657, - [SMALL_STATE(3333)] = 37723, - [SMALL_STATE(3334)] = 37787, - [SMALL_STATE(3335)] = 37851, - [SMALL_STATE(3336)] = 37927, - [SMALL_STATE(3337)] = 37995, - [SMALL_STATE(3338)] = 38059, - [SMALL_STATE(3339)] = 38123, - [SMALL_STATE(3340)] = 38187, - [SMALL_STATE(3341)] = 38251, - [SMALL_STATE(3342)] = 38319, - [SMALL_STATE(3343)] = 38387, - [SMALL_STATE(3344)] = 38455, - [SMALL_STATE(3345)] = 38523, - [SMALL_STATE(3346)] = 38591, - [SMALL_STATE(3347)] = 38659, - [SMALL_STATE(3348)] = 38723, - [SMALL_STATE(3349)] = 38787, - [SMALL_STATE(3350)] = 38855, - [SMALL_STATE(3351)] = 38919, - [SMALL_STATE(3352)] = 38987, - [SMALL_STATE(3353)] = 39055, - [SMALL_STATE(3354)] = 39123, - [SMALL_STATE(3355)] = 39191, - [SMALL_STATE(3356)] = 39255, - [SMALL_STATE(3357)] = 39319, - [SMALL_STATE(3358)] = 39383, - [SMALL_STATE(3359)] = 39451, - [SMALL_STATE(3360)] = 39519, - [SMALL_STATE(3361)] = 39583, - [SMALL_STATE(3362)] = 39647, - [SMALL_STATE(3363)] = 39711, - [SMALL_STATE(3364)] = 39775, - [SMALL_STATE(3365)] = 39843, - [SMALL_STATE(3366)] = 39911, - [SMALL_STATE(3367)] = 39979, - [SMALL_STATE(3368)] = 40047, - [SMALL_STATE(3369)] = 40115, - [SMALL_STATE(3370)] = 40181, - [SMALL_STATE(3371)] = 40247, - [SMALL_STATE(3372)] = 40315, - [SMALL_STATE(3373)] = 40385, - [SMALL_STATE(3374)] = 40463, - [SMALL_STATE(3375)] = 40527, - [SMALL_STATE(3376)] = 40595, - [SMALL_STATE(3377)] = 40663, - [SMALL_STATE(3378)] = 40727, - [SMALL_STATE(3379)] = 40795, - [SMALL_STATE(3380)] = 40859, - [SMALL_STATE(3381)] = 40935, - [SMALL_STATE(3382)] = 41003, - [SMALL_STATE(3383)] = 41071, - [SMALL_STATE(3384)] = 41137, - [SMALL_STATE(3385)] = 41201, - [SMALL_STATE(3386)] = 41279, - [SMALL_STATE(3387)] = 41347, - [SMALL_STATE(3388)] = 41415, - [SMALL_STATE(3389)] = 41483, - [SMALL_STATE(3390)] = 41559, - [SMALL_STATE(3391)] = 41627, - [SMALL_STATE(3392)] = 41695, - [SMALL_STATE(3393)] = 41763, - [SMALL_STATE(3394)] = 41831, - [SMALL_STATE(3395)] = 41899, - [SMALL_STATE(3396)] = 41967, - [SMALL_STATE(3397)] = 42035, - [SMALL_STATE(3398)] = 42103, - [SMALL_STATE(3399)] = 42167, - [SMALL_STATE(3400)] = 42245, - [SMALL_STATE(3401)] = 42323, - [SMALL_STATE(3402)] = 42387, - [SMALL_STATE(3403)] = 42453, - [SMALL_STATE(3404)] = 42517, - [SMALL_STATE(3405)] = 42581, - [SMALL_STATE(3406)] = 42647, - [SMALL_STATE(3407)] = 42715, - [SMALL_STATE(3408)] = 42779, - [SMALL_STATE(3409)] = 42843, - [SMALL_STATE(3410)] = 42907, - [SMALL_STATE(3411)] = 42971, - [SMALL_STATE(3412)] = 43039, - [SMALL_STATE(3413)] = 43103, - [SMALL_STATE(3414)] = 43171, - [SMALL_STATE(3415)] = 43237, - [SMALL_STATE(3416)] = 43301, - [SMALL_STATE(3417)] = 43365, - [SMALL_STATE(3418)] = 43429, - [SMALL_STATE(3419)] = 43495, - [SMALL_STATE(3420)] = 43563, - [SMALL_STATE(3421)] = 43627, - [SMALL_STATE(3422)] = 43691, - [SMALL_STATE(3423)] = 43759, - [SMALL_STATE(3424)] = 43823, - [SMALL_STATE(3425)] = 43889, - [SMALL_STATE(3426)] = 43957, - [SMALL_STATE(3427)] = 44025, - [SMALL_STATE(3428)] = 44089, - [SMALL_STATE(3429)] = 44153, - [SMALL_STATE(3430)] = 44221, - [SMALL_STATE(3431)] = 44284, - [SMALL_STATE(3432)] = 44351, - [SMALL_STATE(3433)] = 44414, - [SMALL_STATE(3434)] = 44477, - [SMALL_STATE(3435)] = 44540, - [SMALL_STATE(3436)] = 44603, - [SMALL_STATE(3437)] = 44666, - [SMALL_STATE(3438)] = 44729, - [SMALL_STATE(3439)] = 44792, - [SMALL_STATE(3440)] = 44855, - [SMALL_STATE(3441)] = 44918, - [SMALL_STATE(3442)] = 44981, - [SMALL_STATE(3443)] = 45044, - [SMALL_STATE(3444)] = 45107, - [SMALL_STATE(3445)] = 45170, - [SMALL_STATE(3446)] = 45233, - [SMALL_STATE(3447)] = 45296, - [SMALL_STATE(3448)] = 45359, - [SMALL_STATE(3449)] = 45422, - [SMALL_STATE(3450)] = 45485, - [SMALL_STATE(3451)] = 45548, - [SMALL_STATE(3452)] = 45633, - [SMALL_STATE(3453)] = 45746, - [SMALL_STATE(3454)] = 45809, - [SMALL_STATE(3455)] = 45872, - [SMALL_STATE(3456)] = 45935, - [SMALL_STATE(3457)] = 46006, - [SMALL_STATE(3458)] = 46069, - [SMALL_STATE(3459)] = 46132, - [SMALL_STATE(3460)] = 46195, - [SMALL_STATE(3461)] = 46258, - [SMALL_STATE(3462)] = 46321, - [SMALL_STATE(3463)] = 46384, - [SMALL_STATE(3464)] = 46447, - [SMALL_STATE(3465)] = 46510, - [SMALL_STATE(3466)] = 46589, - [SMALL_STATE(3467)] = 46652, - [SMALL_STATE(3468)] = 46715, - [SMALL_STATE(3469)] = 46820, - [SMALL_STATE(3470)] = 46921, - [SMALL_STATE(3471)] = 47018, - [SMALL_STATE(3472)] = 47113, - [SMALL_STATE(3473)] = 47204, - [SMALL_STATE(3474)] = 47293, - [SMALL_STATE(3475)] = 47378, - [SMALL_STATE(3476)] = 47459, - [SMALL_STATE(3477)] = 47542, - [SMALL_STATE(3478)] = 47615, - [SMALL_STATE(3479)] = 47684, - [SMALL_STATE(3480)] = 47747, - [SMALL_STATE(3481)] = 47810, - [SMALL_STATE(3482)] = 47877, - [SMALL_STATE(3483)] = 47948, - [SMALL_STATE(3484)] = 48011, - [SMALL_STATE(3485)] = 48090, - [SMALL_STATE(3486)] = 48153, - [SMALL_STATE(3487)] = 48216, - [SMALL_STATE(3488)] = 48279, - [SMALL_STATE(3489)] = 48342, - [SMALL_STATE(3490)] = 48405, - [SMALL_STATE(3491)] = 48468, - [SMALL_STATE(3492)] = 48539, - [SMALL_STATE(3493)] = 48602, - [SMALL_STATE(3494)] = 48665, - [SMALL_STATE(3495)] = 48734, - [SMALL_STATE(3496)] = 48843, - [SMALL_STATE(3497)] = 48906, - [SMALL_STATE(3498)] = 48991, - [SMALL_STATE(3499)] = 49054, - [SMALL_STATE(3500)] = 49139, - [SMALL_STATE(3501)] = 49210, - [SMALL_STATE(3502)] = 49273, - [SMALL_STATE(3503)] = 49336, - [SMALL_STATE(3504)] = 49399, - [SMALL_STATE(3505)] = 49462, - [SMALL_STATE(3506)] = 49525, - [SMALL_STATE(3507)] = 49592, - [SMALL_STATE(3508)] = 49659, - [SMALL_STATE(3509)] = 49726, - [SMALL_STATE(3510)] = 49793, - [SMALL_STATE(3511)] = 49860, - [SMALL_STATE(3512)] = 49969, - [SMALL_STATE(3513)] = 50036, - [SMALL_STATE(3514)] = 50103, - [SMALL_STATE(3515)] = 50166, - [SMALL_STATE(3516)] = 50233, - [SMALL_STATE(3517)] = 50300, - [SMALL_STATE(3518)] = 50363, - [SMALL_STATE(3519)] = 50430, - [SMALL_STATE(3520)] = 50493, - [SMALL_STATE(3521)] = 50560, - [SMALL_STATE(3522)] = 50623, - [SMALL_STATE(3523)] = 50696, - [SMALL_STATE(3524)] = 50759, - [SMALL_STATE(3525)] = 50822, - [SMALL_STATE(3526)] = 50885, - [SMALL_STATE(3527)] = 50948, - [SMALL_STATE(3528)] = 51015, - [SMALL_STATE(3529)] = 51078, - [SMALL_STATE(3530)] = 51141, - [SMALL_STATE(3531)] = 51204, - [SMALL_STATE(3532)] = 51267, - [SMALL_STATE(3533)] = 51330, - [SMALL_STATE(3534)] = 51397, - [SMALL_STATE(3535)] = 51466, - [SMALL_STATE(3536)] = 51533, - [SMALL_STATE(3537)] = 51600, - [SMALL_STATE(3538)] = 51667, - [SMALL_STATE(3539)] = 51776, - [SMALL_STATE(3540)] = 51839, - [SMALL_STATE(3541)] = 51912, - [SMALL_STATE(3542)] = 51975, - [SMALL_STATE(3543)] = 52038, - [SMALL_STATE(3544)] = 52101, - [SMALL_STATE(3545)] = 52164, - [SMALL_STATE(3546)] = 52227, - [SMALL_STATE(3547)] = 52290, - [SMALL_STATE(3548)] = 52359, - [SMALL_STATE(3549)] = 52422, - [SMALL_STATE(3550)] = 52485, - [SMALL_STATE(3551)] = 52548, - [SMALL_STATE(3552)] = 52611, - [SMALL_STATE(3553)] = 52678, - [SMALL_STATE(3554)] = 52741, - [SMALL_STATE(3555)] = 52804, - [SMALL_STATE(3556)] = 52867, - [SMALL_STATE(3557)] = 52930, - [SMALL_STATE(3558)] = 53001, - [SMALL_STATE(3559)] = 53068, - [SMALL_STATE(3560)] = 53131, - [SMALL_STATE(3561)] = 53198, - [SMALL_STATE(3562)] = 53265, - [SMALL_STATE(3563)] = 53328, - [SMALL_STATE(3564)] = 53395, - [SMALL_STATE(3565)] = 53462, - [SMALL_STATE(3566)] = 53541, - [SMALL_STATE(3567)] = 53604, - [SMALL_STATE(3568)] = 53669, - [SMALL_STATE(3569)] = 53782, - [SMALL_STATE(3570)] = 53845, - [SMALL_STATE(3571)] = 53910, - [SMALL_STATE(3572)] = 53973, - [SMALL_STATE(3573)] = 54036, - [SMALL_STATE(3574)] = 54107, - [SMALL_STATE(3575)] = 54170, - [SMALL_STATE(3576)] = 54233, - [SMALL_STATE(3577)] = 54306, - [SMALL_STATE(3578)] = 54419, - [SMALL_STATE(3579)] = 54482, - [SMALL_STATE(3580)] = 54545, - [SMALL_STATE(3581)] = 54608, - [SMALL_STATE(3582)] = 54717, - [SMALL_STATE(3583)] = 54780, - [SMALL_STATE(3584)] = 54843, - [SMALL_STATE(3585)] = 54906, - [SMALL_STATE(3586)] = 54969, - [SMALL_STATE(3587)] = 55032, - [SMALL_STATE(3588)] = 55111, - [SMALL_STATE(3589)] = 55190, - [SMALL_STATE(3590)] = 55253, - [SMALL_STATE(3591)] = 55320, - [SMALL_STATE(3592)] = 55383, - [SMALL_STATE(3593)] = 55450, - [SMALL_STATE(3594)] = 55515, - [SMALL_STATE(3595)] = 55577, - [SMALL_STATE(3596)] = 55639, - [SMALL_STATE(3597)] = 55707, - [SMALL_STATE(3598)] = 55769, - [SMALL_STATE(3599)] = 55831, - [SMALL_STATE(3600)] = 55893, - [SMALL_STATE(3601)] = 55955, - [SMALL_STATE(3602)] = 56021, - [SMALL_STATE(3603)] = 56087, - [SMALL_STATE(3604)] = 56149, - [SMALL_STATE(3605)] = 56211, - [SMALL_STATE(3606)] = 56273, - [SMALL_STATE(3607)] = 56335, - [SMALL_STATE(3608)] = 56397, - [SMALL_STATE(3609)] = 56459, - [SMALL_STATE(3610)] = 56521, - [SMALL_STATE(3611)] = 56587, - [SMALL_STATE(3612)] = 56657, - [SMALL_STATE(3613)] = 56719, - [SMALL_STATE(3614)] = 56781, - [SMALL_STATE(3615)] = 56843, - [SMALL_STATE(3616)] = 56905, - [SMALL_STATE(3617)] = 56967, - [SMALL_STATE(3618)] = 57033, - [SMALL_STATE(3619)] = 57095, - [SMALL_STATE(3620)] = 57157, - [SMALL_STATE(3621)] = 57219, - [SMALL_STATE(3622)] = 57281, - [SMALL_STATE(3623)] = 57347, - [SMALL_STATE(3624)] = 57409, - [SMALL_STATE(3625)] = 57471, - [SMALL_STATE(3626)] = 57533, - [SMALL_STATE(3627)] = 57595, - [SMALL_STATE(3628)] = 57657, - [SMALL_STATE(3629)] = 57727, - [SMALL_STATE(3630)] = 57789, - [SMALL_STATE(3631)] = 57851, - [SMALL_STATE(3632)] = 57913, - [SMALL_STATE(3633)] = 57975, - [SMALL_STATE(3634)] = 58037, - [SMALL_STATE(3635)] = 58107, - [SMALL_STATE(3636)] = 58169, - [SMALL_STATE(3637)] = 58231, - [SMALL_STATE(3638)] = 58293, - [SMALL_STATE(3639)] = 58355, - [SMALL_STATE(3640)] = 58417, - [SMALL_STATE(3641)] = 58481, - [SMALL_STATE(3642)] = 58543, - [SMALL_STATE(3643)] = 58605, - [SMALL_STATE(3644)] = 58667, - [SMALL_STATE(3645)] = 58729, - [SMALL_STATE(3646)] = 58791, - [SMALL_STATE(3647)] = 58853, - [SMALL_STATE(3648)] = 58915, - [SMALL_STATE(3649)] = 58977, - [SMALL_STATE(3650)] = 59039, - [SMALL_STATE(3651)] = 59101, - [SMALL_STATE(3652)] = 59163, - [SMALL_STATE(3653)] = 59225, - [SMALL_STATE(3654)] = 59287, - [SMALL_STATE(3655)] = 59349, - [SMALL_STATE(3656)] = 59411, - [SMALL_STATE(3657)] = 59473, - [SMALL_STATE(3658)] = 59535, - [SMALL_STATE(3659)] = 59597, - [SMALL_STATE(3660)] = 59659, - [SMALL_STATE(3661)] = 59721, - [SMALL_STATE(3662)] = 59783, - [SMALL_STATE(3663)] = 59845, - [SMALL_STATE(3664)] = 59907, - [SMALL_STATE(3665)] = 59973, - [SMALL_STATE(3666)] = 60037, - [SMALL_STATE(3667)] = 60105, - [SMALL_STATE(3668)] = 60171, - [SMALL_STATE(3669)] = 60233, - [SMALL_STATE(3670)] = 60295, - [SMALL_STATE(3671)] = 60357, - [SMALL_STATE(3672)] = 60419, - [SMALL_STATE(3673)] = 60481, - [SMALL_STATE(3674)] = 60543, - [SMALL_STATE(3675)] = 60605, - [SMALL_STATE(3676)] = 60667, - [SMALL_STATE(3677)] = 60729, - [SMALL_STATE(3678)] = 60791, - [SMALL_STATE(3679)] = 60853, - [SMALL_STATE(3680)] = 60915, - [SMALL_STATE(3681)] = 60977, - [SMALL_STATE(3682)] = 61049, - [SMALL_STATE(3683)] = 61111, - [SMALL_STATE(3684)] = 61177, - [SMALL_STATE(3685)] = 61245, - [SMALL_STATE(3686)] = 61311, - [SMALL_STATE(3687)] = 61373, - [SMALL_STATE(3688)] = 61435, - [SMALL_STATE(3689)] = 61497, - [SMALL_STATE(3690)] = 61559, - [SMALL_STATE(3691)] = 61621, - [SMALL_STATE(3692)] = 61683, - [SMALL_STATE(3693)] = 61745, - [SMALL_STATE(3694)] = 61813, - [SMALL_STATE(3695)] = 61875, - [SMALL_STATE(3696)] = 61947, - [SMALL_STATE(3697)] = 62009, - [SMALL_STATE(3698)] = 62071, - [SMALL_STATE(3699)] = 62133, - [SMALL_STATE(3700)] = 62195, - [SMALL_STATE(3701)] = 62257, - [SMALL_STATE(3702)] = 62325, - [SMALL_STATE(3703)] = 62387, - [SMALL_STATE(3704)] = 62449, - [SMALL_STATE(3705)] = 62521, - [SMALL_STATE(3706)] = 62593, - [SMALL_STATE(3707)] = 62655, - [SMALL_STATE(3708)] = 62717, - [SMALL_STATE(3709)] = 62779, - [SMALL_STATE(3710)] = 62886, - [SMALL_STATE(3711)] = 62993, - [SMALL_STATE(3712)] = 63104, - [SMALL_STATE(3713)] = 63169, - [SMALL_STATE(3714)] = 63234, - [SMALL_STATE(3715)] = 63309, - [SMALL_STATE(3716)] = 63370, - [SMALL_STATE(3717)] = 63435, - [SMALL_STATE(3718)] = 63500, - [SMALL_STATE(3719)] = 63561, - [SMALL_STATE(3720)] = 63626, - [SMALL_STATE(3721)] = 63691, - [SMALL_STATE(3722)] = 63756, - [SMALL_STATE(3723)] = 63817, - [SMALL_STATE(3724)] = 63928, - [SMALL_STATE(3725)] = 63989, - [SMALL_STATE(3726)] = 64050, - [SMALL_STATE(3727)] = 64161, - [SMALL_STATE(3728)] = 64222, - [SMALL_STATE(3729)] = 64329, - [SMALL_STATE(3730)] = 64390, - [SMALL_STATE(3731)] = 64453, - [SMALL_STATE(3732)] = 64522, - [SMALL_STATE(3733)] = 64585, - [SMALL_STATE(3734)] = 64646, - [SMALL_STATE(3735)] = 64711, - [SMALL_STATE(3736)] = 64818, - [SMALL_STATE(3737)] = 64891, - [SMALL_STATE(3738)] = 64964, - [SMALL_STATE(3739)] = 65025, - [SMALL_STATE(3740)] = 65086, - [SMALL_STATE(3741)] = 65147, - [SMALL_STATE(3742)] = 65208, - [SMALL_STATE(3743)] = 65315, - [SMALL_STATE(3744)] = 65392, - [SMALL_STATE(3745)] = 65469, - [SMALL_STATE(3746)] = 65532, - [SMALL_STATE(3747)] = 65615, - [SMALL_STATE(3748)] = 65680, - [SMALL_STATE(3749)] = 65791, - [SMALL_STATE(3750)] = 65896, - [SMALL_STATE(3751)] = 65973, - [SMALL_STATE(3752)] = 66034, - [SMALL_STATE(3753)] = 66109, - [SMALL_STATE(3754)] = 66170, - [SMALL_STATE(3755)] = 66273, - [SMALL_STATE(3756)] = 66334, - [SMALL_STATE(3757)] = 66395, - [SMALL_STATE(3758)] = 66506, - [SMALL_STATE(3759)] = 66567, - [SMALL_STATE(3760)] = 66644, - [SMALL_STATE(3761)] = 66705, - [SMALL_STATE(3762)] = 66782, - [SMALL_STATE(3763)] = 66847, - [SMALL_STATE(3764)] = 66912, - [SMALL_STATE(3765)] = 66973, - [SMALL_STATE(3766)] = 67038, - [SMALL_STATE(3767)] = 67137, - [SMALL_STATE(3768)] = 67232, - [SMALL_STATE(3769)] = 67293, - [SMALL_STATE(3770)] = 67398, - [SMALL_STATE(3771)] = 67463, - [SMALL_STATE(3772)] = 67528, - [SMALL_STATE(3773)] = 67621, - [SMALL_STATE(3774)] = 67682, - [SMALL_STATE(3775)] = 67771, - [SMALL_STATE(3776)] = 67846, - [SMALL_STATE(3777)] = 67911, - [SMALL_STATE(3778)] = 67972, - [SMALL_STATE(3779)] = 68059, - [SMALL_STATE(3780)] = 68142, - [SMALL_STATE(3781)] = 68211, - [SMALL_STATE(3782)] = 68272, - [SMALL_STATE(3783)] = 68333, - [SMALL_STATE(3784)] = 68394, - [SMALL_STATE(3785)] = 68457, - [SMALL_STATE(3786)] = 68518, - [SMALL_STATE(3787)] = 68579, - [SMALL_STATE(3788)] = 68658, - [SMALL_STATE(3789)] = 68719, - [SMALL_STATE(3790)] = 68786, - [SMALL_STATE(3791)] = 68867, - [SMALL_STATE(3792)] = 68944, - [SMALL_STATE(3793)] = 69009, - [SMALL_STATE(3794)] = 69084, - [SMALL_STATE(3795)] = 69149, - [SMALL_STATE(3796)] = 69210, - [SMALL_STATE(3797)] = 69271, - [SMALL_STATE(3798)] = 69354, - [SMALL_STATE(3799)] = 69419, - [SMALL_STATE(3800)] = 69480, - [SMALL_STATE(3801)] = 69545, - [SMALL_STATE(3802)] = 69606, - [SMALL_STATE(3803)] = 69667, - [SMALL_STATE(3804)] = 69754, - [SMALL_STATE(3805)] = 69815, - [SMALL_STATE(3806)] = 69876, - [SMALL_STATE(3807)] = 69983, - [SMALL_STATE(3808)] = 70048, - [SMALL_STATE(3809)] = 70113, - [SMALL_STATE(3810)] = 70202, - [SMALL_STATE(3811)] = 70263, - [SMALL_STATE(3812)] = 70324, - [SMALL_STATE(3813)] = 70385, - [SMALL_STATE(3814)] = 70446, - [SMALL_STATE(3815)] = 70511, - [SMALL_STATE(3816)] = 70572, - [SMALL_STATE(3817)] = 70639, - [SMALL_STATE(3818)] = 70732, - [SMALL_STATE(3819)] = 70793, - [SMALL_STATE(3820)] = 70854, - [SMALL_STATE(3821)] = 70915, - [SMALL_STATE(3822)] = 71010, - [SMALL_STATE(3823)] = 71087, - [SMALL_STATE(3824)] = 71152, - [SMALL_STATE(3825)] = 71217, - [SMALL_STATE(3826)] = 71316, - [SMALL_STATE(3827)] = 71381, - [SMALL_STATE(3828)] = 71484, - [SMALL_STATE(3829)] = 71549, - [SMALL_STATE(3830)] = 71616, - [SMALL_STATE(3831)] = 71727, - [SMALL_STATE(3832)] = 71792, - [SMALL_STATE(3833)] = 71857, - [SMALL_STATE(3834)] = 71938, - [SMALL_STATE(3835)] = 71999, - [SMALL_STATE(3836)] = 72078, - [SMALL_STATE(3837)] = 72143, - [SMALL_STATE(3838)] = 72208, - [SMALL_STATE(3839)] = 72275, - [SMALL_STATE(3840)] = 72382, - [SMALL_STATE(3841)] = 72459, - [SMALL_STATE(3842)] = 72566, - [SMALL_STATE(3843)] = 72649, - [SMALL_STATE(3844)] = 72726, - [SMALL_STATE(3845)] = 72793, - [SMALL_STATE(3846)] = 72858, - [SMALL_STATE(3847)] = 72925, - [SMALL_STATE(3848)] = 72985, - [SMALL_STATE(3849)] = 73051, - [SMALL_STATE(3850)] = 73111, - [SMALL_STATE(3851)] = 73175, - [SMALL_STATE(3852)] = 73235, - [SMALL_STATE(3853)] = 73309, - [SMALL_STATE(3854)] = 73369, - [SMALL_STATE(3855)] = 73429, - [SMALL_STATE(3856)] = 73489, - [SMALL_STATE(3857)] = 73549, - [SMALL_STATE(3858)] = 73609, - [SMALL_STATE(3859)] = 73669, - [SMALL_STATE(3860)] = 73729, - [SMALL_STATE(3861)] = 73809, - [SMALL_STATE(3862)] = 73869, - [SMALL_STATE(3863)] = 73929, - [SMALL_STATE(3864)] = 74007, - [SMALL_STATE(3865)] = 74089, - [SMALL_STATE(3866)] = 74173, - [SMALL_STATE(3867)] = 74259, - [SMALL_STATE(3868)] = 74349, - [SMALL_STATE(3869)] = 74441, - [SMALL_STATE(3870)] = 74537, - [SMALL_STATE(3871)] = 74597, - [SMALL_STATE(3872)] = 74657, - [SMALL_STATE(3873)] = 74717, - [SMALL_STATE(3874)] = 74817, - [SMALL_STATE(3875)] = 74891, - [SMALL_STATE(3876)] = 74967, - [SMALL_STATE(3877)] = 75027, - [SMALL_STATE(3878)] = 75087, - [SMALL_STATE(3879)] = 75147, - [SMALL_STATE(3880)] = 75215, - [SMALL_STATE(3881)] = 75275, - [SMALL_STATE(3882)] = 75335, - [SMALL_STATE(3883)] = 75395, - [SMALL_STATE(3884)] = 75503, - [SMALL_STATE(3885)] = 75659, - [SMALL_STATE(3886)] = 75719, - [SMALL_STATE(3887)] = 75783, - [SMALL_STATE(3888)] = 75843, - [SMALL_STATE(3889)] = 75907, - [SMALL_STATE(3890)] = 76063, - [SMALL_STATE(3891)] = 76219, - [SMALL_STATE(3892)] = 76279, - [SMALL_STATE(3893)] = 76383, - [SMALL_STATE(3894)] = 76451, - [SMALL_STATE(3895)] = 76607, - [SMALL_STATE(3896)] = 76667, - [SMALL_STATE(3897)] = 76727, - [SMALL_STATE(3898)] = 76835, - [SMALL_STATE(3899)] = 76895, - [SMALL_STATE(3900)] = 76957, - [SMALL_STATE(3901)] = 77061, - [SMALL_STATE(3902)] = 77121, - [SMALL_STATE(3903)] = 77181, - [SMALL_STATE(3904)] = 77241, - [SMALL_STATE(3905)] = 77305, - [SMALL_STATE(3906)] = 77413, - [SMALL_STATE(3907)] = 77475, - [SMALL_STATE(3908)] = 77535, - [SMALL_STATE(3909)] = 77595, - [SMALL_STATE(3910)] = 77699, - [SMALL_STATE(3911)] = 77759, - [SMALL_STATE(3912)] = 77863, - [SMALL_STATE(3913)] = 78019, - [SMALL_STATE(3914)] = 78175, - [SMALL_STATE(3915)] = 78235, - [SMALL_STATE(3916)] = 78295, - [SMALL_STATE(3917)] = 78355, - [SMALL_STATE(3918)] = 78415, - [SMALL_STATE(3919)] = 78475, - [SMALL_STATE(3920)] = 78535, - [SMALL_STATE(3921)] = 78595, - [SMALL_STATE(3922)] = 78655, - [SMALL_STATE(3923)] = 78715, - [SMALL_STATE(3924)] = 78775, - [SMALL_STATE(3925)] = 78835, - [SMALL_STATE(3926)] = 78897, - [SMALL_STATE(3927)] = 78957, - [SMALL_STATE(3928)] = 79023, - [SMALL_STATE(3929)] = 79083, - [SMALL_STATE(3930)] = 79151, - [SMALL_STATE(3931)] = 79211, - [SMALL_STATE(3932)] = 79271, - [SMALL_STATE(3933)] = 79339, - [SMALL_STATE(3934)] = 79399, - [SMALL_STATE(3935)] = 79469, - [SMALL_STATE(3936)] = 79529, - [SMALL_STATE(3937)] = 79601, - [SMALL_STATE(3938)] = 79757, - [SMALL_STATE(3939)] = 79817, - [SMALL_STATE(3940)] = 79877, - [SMALL_STATE(3941)] = 79941, - [SMALL_STATE(3942)] = 80001, - [SMALL_STATE(3943)] = 80061, - [SMALL_STATE(3944)] = 80121, - [SMALL_STATE(3945)] = 80181, - [SMALL_STATE(3946)] = 80241, - [SMALL_STATE(3947)] = 80301, - [SMALL_STATE(3948)] = 80361, - [SMALL_STATE(3949)] = 80465, - [SMALL_STATE(3950)] = 80525, - [SMALL_STATE(3951)] = 80585, - [SMALL_STATE(3952)] = 80649, - [SMALL_STATE(3953)] = 80709, - [SMALL_STATE(3954)] = 80769, - [SMALL_STATE(3955)] = 80829, - [SMALL_STATE(3956)] = 80911, - [SMALL_STATE(3957)] = 80985, - [SMALL_STATE(3958)] = 81045, - [SMALL_STATE(3959)] = 81105, - [SMALL_STATE(3960)] = 81167, - [SMALL_STATE(3961)] = 81233, - [SMALL_STATE(3962)] = 81301, - [SMALL_STATE(3963)] = 81361, - [SMALL_STATE(3964)] = 81421, - [SMALL_STATE(3965)] = 81577, - [SMALL_STATE(3966)] = 81637, - [SMALL_STATE(3967)] = 81697, - [SMALL_STATE(3968)] = 81757, - [SMALL_STATE(3969)] = 81817, - [SMALL_STATE(3970)] = 81877, - [SMALL_STATE(3971)] = 81937, - [SMALL_STATE(3972)] = 81997, - [SMALL_STATE(3973)] = 82057, - [SMALL_STATE(3974)] = 82117, - [SMALL_STATE(3975)] = 82189, - [SMALL_STATE(3976)] = 82249, - [SMALL_STATE(3977)] = 82309, - [SMALL_STATE(3978)] = 82369, - [SMALL_STATE(3979)] = 82429, - [SMALL_STATE(3980)] = 82489, - [SMALL_STATE(3981)] = 82549, - [SMALL_STATE(3982)] = 82705, - [SMALL_STATE(3983)] = 82765, - [SMALL_STATE(3984)] = 82921, - [SMALL_STATE(3985)] = 82981, - [SMALL_STATE(3986)] = 83043, - [SMALL_STATE(3987)] = 83199, - [SMALL_STATE(3988)] = 83265, - [SMALL_STATE(3989)] = 83325, - [SMALL_STATE(3990)] = 83385, - [SMALL_STATE(3991)] = 83445, - [SMALL_STATE(3992)] = 83513, - [SMALL_STATE(3993)] = 83573, - [SMALL_STATE(3994)] = 83639, - [SMALL_STATE(3995)] = 83703, - [SMALL_STATE(3996)] = 83763, - [SMALL_STATE(3997)] = 83823, - [SMALL_STATE(3998)] = 83883, - [SMALL_STATE(3999)] = 83943, - [SMALL_STATE(4000)] = 84017, - [SMALL_STATE(4001)] = 84173, - [SMALL_STATE(4002)] = 84233, - [SMALL_STATE(4003)] = 84301, - [SMALL_STATE(4004)] = 84361, - [SMALL_STATE(4005)] = 84420, - [SMALL_STATE(4006)] = 84481, - [SMALL_STATE(4007)] = 84540, - [SMALL_STATE(4008)] = 84599, - [SMALL_STATE(4009)] = 84658, - [SMALL_STATE(4010)] = 84717, - [SMALL_STATE(4011)] = 84776, - [SMALL_STATE(4012)] = 84835, - [SMALL_STATE(4013)] = 84894, - [SMALL_STATE(4014)] = 84953, - [SMALL_STATE(4015)] = 85012, - [SMALL_STATE(4016)] = 85071, - [SMALL_STATE(4017)] = 85130, - [SMALL_STATE(4018)] = 85189, - [SMALL_STATE(4019)] = 85248, - [SMALL_STATE(4020)] = 85307, - [SMALL_STATE(4021)] = 85366, - [SMALL_STATE(4022)] = 85425, - [SMALL_STATE(4023)] = 85526, - [SMALL_STATE(4024)] = 85627, - [SMALL_STATE(4025)] = 85728, - [SMALL_STATE(4026)] = 85829, - [SMALL_STATE(4027)] = 85888, - [SMALL_STATE(4028)] = 85947, - [SMALL_STATE(4029)] = 86006, - [SMALL_STATE(4030)] = 86107, - [SMALL_STATE(4031)] = 86166, - [SMALL_STATE(4032)] = 86227, - [SMALL_STATE(4033)] = 86328, - [SMALL_STATE(4034)] = 86391, - [SMALL_STATE(4035)] = 86450, - [SMALL_STATE(4036)] = 86509, - [SMALL_STATE(4037)] = 86568, - [SMALL_STATE(4038)] = 86627, - [SMALL_STATE(4039)] = 86688, - [SMALL_STATE(4040)] = 86749, - [SMALL_STATE(4041)] = 86808, - [SMALL_STATE(4042)] = 86869, - [SMALL_STATE(4043)] = 86970, - [SMALL_STATE(4044)] = 87031, - [SMALL_STATE(4045)] = 87092, - [SMALL_STATE(4046)] = 87157, - [SMALL_STATE(4047)] = 87258, - [SMALL_STATE(4048)] = 87319, - [SMALL_STATE(4049)] = 87380, - [SMALL_STATE(4050)] = 87481, - [SMALL_STATE(4051)] = 87542, - [SMALL_STATE(4052)] = 87601, - [SMALL_STATE(4053)] = 87660, - [SMALL_STATE(4054)] = 87761, - [SMALL_STATE(4055)] = 87822, - [SMALL_STATE(4056)] = 87881, - [SMALL_STATE(4057)] = 87940, - [SMALL_STATE(4058)] = 87999, - [SMALL_STATE(4059)] = 88058, - [SMALL_STATE(4060)] = 88117, - [SMALL_STATE(4061)] = 88176, - [SMALL_STATE(4062)] = 88235, - [SMALL_STATE(4063)] = 88294, - [SMALL_STATE(4064)] = 88353, - [SMALL_STATE(4065)] = 88412, - [SMALL_STATE(4066)] = 88471, - [SMALL_STATE(4067)] = 88530, - [SMALL_STATE(4068)] = 88589, - [SMALL_STATE(4069)] = 88648, - [SMALL_STATE(4070)] = 88707, - [SMALL_STATE(4071)] = 88766, - [SMALL_STATE(4072)] = 88825, - [SMALL_STATE(4073)] = 88884, - [SMALL_STATE(4074)] = 88945, - [SMALL_STATE(4075)] = 89004, - [SMALL_STATE(4076)] = 89063, - [SMALL_STATE(4077)] = 89122, - [SMALL_STATE(4078)] = 89181, - [SMALL_STATE(4079)] = 89240, - [SMALL_STATE(4080)] = 89305, - [SMALL_STATE(4081)] = 89364, - [SMALL_STATE(4082)] = 89423, - [SMALL_STATE(4083)] = 89482, - [SMALL_STATE(4084)] = 89541, - [SMALL_STATE(4085)] = 89600, - [SMALL_STATE(4086)] = 89659, - [SMALL_STATE(4087)] = 89718, - [SMALL_STATE(4088)] = 89777, - [SMALL_STATE(4089)] = 89836, - [SMALL_STATE(4090)] = 89895, - [SMALL_STATE(4091)] = 89954, - [SMALL_STATE(4092)] = 90063, - [SMALL_STATE(4093)] = 90122, - [SMALL_STATE(4094)] = 90189, - [SMALL_STATE(4095)] = 90248, - [SMALL_STATE(4096)] = 90307, - [SMALL_STATE(4097)] = 90412, - [SMALL_STATE(4098)] = 90473, - [SMALL_STATE(4099)] = 90532, - [SMALL_STATE(4100)] = 90591, - [SMALL_STATE(4101)] = 90650, - [SMALL_STATE(4102)] = 90717, - [SMALL_STATE(4103)] = 90776, - [SMALL_STATE(4104)] = 90885, - [SMALL_STATE(4105)] = 90944, - [SMALL_STATE(4106)] = 91003, - [SMALL_STATE(4107)] = 91062, - [SMALL_STATE(4108)] = 91121, - [SMALL_STATE(4109)] = 91180, - [SMALL_STATE(4110)] = 91285, - [SMALL_STATE(4111)] = 91344, - [SMALL_STATE(4112)] = 91403, - [SMALL_STATE(4113)] = 91468, - [SMALL_STATE(4114)] = 91527, - [SMALL_STATE(4115)] = 91628, - [SMALL_STATE(4116)] = 91687, - [SMALL_STATE(4117)] = 91746, - [SMALL_STATE(4118)] = 91819, - [SMALL_STATE(4119)] = 91878, - [SMALL_STATE(4120)] = 91937, - [SMALL_STATE(4121)] = 91996, - [SMALL_STATE(4122)] = 92055, - [SMALL_STATE(4123)] = 92156, - [SMALL_STATE(4124)] = 92235, - [SMALL_STATE(4125)] = 92336, - [SMALL_STATE(4126)] = 92395, - [SMALL_STATE(4127)] = 92496, - [SMALL_STATE(4128)] = 92555, - [SMALL_STATE(4129)] = 92614, - [SMALL_STATE(4130)] = 92691, - [SMALL_STATE(4131)] = 92750, - [SMALL_STATE(4132)] = 92809, - [SMALL_STATE(4133)] = 92868, - [SMALL_STATE(4134)] = 92927, - [SMALL_STATE(4135)] = 92986, - [SMALL_STATE(4136)] = 93045, - [SMALL_STATE(4137)] = 93104, - [SMALL_STATE(4138)] = 93163, - [SMALL_STATE(4139)] = 93222, - [SMALL_STATE(4140)] = 93281, - [SMALL_STATE(4141)] = 93340, - [SMALL_STATE(4142)] = 93399, - [SMALL_STATE(4143)] = 93458, - [SMALL_STATE(4144)] = 93517, - [SMALL_STATE(4145)] = 93582, - [SMALL_STATE(4146)] = 93641, - [SMALL_STATE(4147)] = 93742, - [SMALL_STATE(4148)] = 93803, - [SMALL_STATE(4149)] = 93862, - [SMALL_STATE(4150)] = 93921, - [SMALL_STATE(4151)] = 93980, - [SMALL_STATE(4152)] = 94061, - [SMALL_STATE(4153)] = 94120, - [SMALL_STATE(4154)] = 94205, - [SMALL_STATE(4155)] = 94264, - [SMALL_STATE(4156)] = 94323, - [SMALL_STATE(4157)] = 94382, - [SMALL_STATE(4158)] = 94441, - [SMALL_STATE(4159)] = 94500, - [SMALL_STATE(4160)] = 94571, - [SMALL_STATE(4161)] = 94644, - [SMALL_STATE(4162)] = 94703, - [SMALL_STATE(4163)] = 94762, - [SMALL_STATE(4164)] = 94821, - [SMALL_STATE(4165)] = 94880, - [SMALL_STATE(4166)] = 94967, - [SMALL_STATE(4167)] = 95068, - [SMALL_STATE(4168)] = 95127, - [SMALL_STATE(4169)] = 95190, - [SMALL_STATE(4170)] = 95249, - [SMALL_STATE(4171)] = 95330, - [SMALL_STATE(4172)] = 95389, - [SMALL_STATE(4173)] = 95448, - [SMALL_STATE(4174)] = 95553, - [SMALL_STATE(4175)] = 95612, - [SMALL_STATE(4176)] = 95675, - [SMALL_STATE(4177)] = 95734, - [SMALL_STATE(4178)] = 95835, - [SMALL_STATE(4179)] = 95936, - [SMALL_STATE(4180)] = 95997, - [SMALL_STATE(4181)] = 96098, - [SMALL_STATE(4182)] = 96165, - [SMALL_STATE(4183)] = 96232, - [SMALL_STATE(4184)] = 96333, - [SMALL_STATE(4185)] = 96392, - [SMALL_STATE(4186)] = 96493, - [SMALL_STATE(4187)] = 96584, - [SMALL_STATE(4188)] = 96685, - [SMALL_STATE(4189)] = 96744, - [SMALL_STATE(4190)] = 96805, - [SMALL_STATE(4191)] = 96864, - [SMALL_STATE(4192)] = 96923, - [SMALL_STATE(4193)] = 96982, - [SMALL_STATE(4194)] = 97041, - [SMALL_STATE(4195)] = 97142, - [SMALL_STATE(4196)] = 97201, - [SMALL_STATE(4197)] = 97264, - [SMALL_STATE(4198)] = 97323, - [SMALL_STATE(4199)] = 97382, - [SMALL_STATE(4200)] = 97479, - [SMALL_STATE(4201)] = 97538, - [SMALL_STATE(4202)] = 97639, - [SMALL_STATE(4203)] = 97712, - [SMALL_STATE(4204)] = 97771, - [SMALL_STATE(4205)] = 97846, - [SMALL_STATE(4206)] = 97905, - [SMALL_STATE(4207)] = 97966, - [SMALL_STATE(4208)] = 98039, - [SMALL_STATE(4209)] = 98102, - [SMALL_STATE(4210)] = 98161, - [SMALL_STATE(4211)] = 98254, - [SMALL_STATE(4212)] = 98313, - [SMALL_STATE(4213)] = 98414, - [SMALL_STATE(4214)] = 98477, - [SMALL_STATE(4215)] = 98548, - [SMALL_STATE(4216)] = 98607, - [SMALL_STATE(4217)] = 98712, - [SMALL_STATE(4218)] = 98821, - [SMALL_STATE(4219)] = 98880, - [SMALL_STATE(4220)] = 98939, - [SMALL_STATE(4221)] = 98998, - [SMALL_STATE(4222)] = 99057, - [SMALL_STATE(4223)] = 99115, - [SMALL_STATE(4224)] = 99173, - [SMALL_STATE(4225)] = 99253, - [SMALL_STATE(4226)] = 99311, - [SMALL_STATE(4227)] = 99369, - [SMALL_STATE(4228)] = 99427, - [SMALL_STATE(4229)] = 99499, - [SMALL_STATE(4230)] = 99557, - [SMALL_STATE(4231)] = 99615, - [SMALL_STATE(4232)] = 99717, - [SMALL_STATE(4233)] = 99775, - [SMALL_STATE(4234)] = 99845, - [SMALL_STATE(4235)] = 99911, - [SMALL_STATE(4236)] = 99969, - [SMALL_STATE(4237)] = 100043, - [SMALL_STATE(4238)] = 100125, - [SMALL_STATE(4239)] = 100183, - [SMALL_STATE(4240)] = 100261, - [SMALL_STATE(4241)] = 100319, - [SMALL_STATE(4242)] = 100377, - [SMALL_STATE(4243)] = 100435, - [SMALL_STATE(4244)] = 100517, - [SMALL_STATE(4245)] = 100583, - [SMALL_STATE(4246)] = 100641, - [SMALL_STATE(4247)] = 100701, - [SMALL_STATE(4248)] = 100759, - [SMALL_STATE(4249)] = 100865, - [SMALL_STATE(4250)] = 100947, - [SMALL_STATE(4251)] = 101005, - [SMALL_STATE(4252)] = 101063, - [SMALL_STATE(4253)] = 101121, - [SMALL_STATE(4254)] = 101193, - [SMALL_STATE(4255)] = 101269, - [SMALL_STATE(4256)] = 101333, - [SMALL_STATE(4257)] = 101391, - [SMALL_STATE(4258)] = 101471, - [SMALL_STATE(4259)] = 101529, - [SMALL_STATE(4260)] = 101613, - [SMALL_STATE(4261)] = 101671, - [SMALL_STATE(4262)] = 101729, - [SMALL_STATE(4263)] = 101787, - [SMALL_STATE(4264)] = 101861, - [SMALL_STATE(4265)] = 101963, - [SMALL_STATE(4266)] = 102049, - [SMALL_STATE(4267)] = 102107, - [SMALL_STATE(4268)] = 102197, - [SMALL_STATE(4269)] = 102291, - [SMALL_STATE(4270)] = 102389, - [SMALL_STATE(4271)] = 102447, - [SMALL_STATE(4272)] = 102547, - [SMALL_STATE(4273)] = 102605, - [SMALL_STATE(4274)] = 102663, - [SMALL_STATE(4275)] = 102721, - [SMALL_STATE(4276)] = 102779, - [SMALL_STATE(4277)] = 102843, - [SMALL_STATE(4278)] = 102901, - [SMALL_STATE(4279)] = 102959, - [SMALL_STATE(4280)] = 103041, - [SMALL_STATE(4281)] = 103123, - [SMALL_STATE(4282)] = 103195, - [SMALL_STATE(4283)] = 103269, - [SMALL_STATE(4284)] = 103351, - [SMALL_STATE(4285)] = 103433, - [SMALL_STATE(4286)] = 103495, - [SMALL_STATE(4287)] = 103553, - [SMALL_STATE(4288)] = 103611, - [SMALL_STATE(4289)] = 103673, - [SMALL_STATE(4290)] = 103747, - [SMALL_STATE(4291)] = 103853, - [SMALL_STATE(4292)] = 103911, - [SMALL_STATE(4293)] = 103969, - [SMALL_STATE(4294)] = 104027, - [SMALL_STATE(4295)] = 104089, - [SMALL_STATE(4296)] = 104147, - [SMALL_STATE(4297)] = 104205, - [SMALL_STATE(4298)] = 104267, - [SMALL_STATE(4299)] = 104325, - [SMALL_STATE(4300)] = 104401, - [SMALL_STATE(4301)] = 104507, - [SMALL_STATE(4302)] = 104565, - [SMALL_STATE(4303)] = 104623, - [SMALL_STATE(4304)] = 104681, - [SMALL_STATE(4305)] = 104745, - [SMALL_STATE(4306)] = 104803, - [SMALL_STATE(4307)] = 104861, - [SMALL_STATE(4308)] = 104919, - [SMALL_STATE(4309)] = 104977, - [SMALL_STATE(4310)] = 105035, - [SMALL_STATE(4311)] = 105109, - [SMALL_STATE(4312)] = 105167, - [SMALL_STATE(4313)] = 105229, - [SMALL_STATE(4314)] = 105287, - [SMALL_STATE(4315)] = 105345, - [SMALL_STATE(4316)] = 105403, - [SMALL_STATE(4317)] = 105505, - [SMALL_STATE(4318)] = 105575, - [SMALL_STATE(4319)] = 105633, - [SMALL_STATE(4320)] = 105691, - [SMALL_STATE(4321)] = 105749, - [SMALL_STATE(4322)] = 105807, - [SMALL_STATE(4323)] = 105865, - [SMALL_STATE(4324)] = 105923, - [SMALL_STATE(4325)] = 105981, - [SMALL_STATE(4326)] = 106039, - [SMALL_STATE(4327)] = 106097, - [SMALL_STATE(4328)] = 106155, - [SMALL_STATE(4329)] = 106213, - [SMALL_STATE(4330)] = 106271, - [SMALL_STATE(4331)] = 106329, - [SMALL_STATE(4332)] = 106431, - [SMALL_STATE(4333)] = 106489, - [SMALL_STATE(4334)] = 106547, - [SMALL_STATE(4335)] = 106605, - [SMALL_STATE(4336)] = 106679, - [SMALL_STATE(4337)] = 106737, - [SMALL_STATE(4338)] = 106795, - [SMALL_STATE(4339)] = 106853, - [SMALL_STATE(4340)] = 106911, - [SMALL_STATE(4341)] = 106969, - [SMALL_STATE(4342)] = 107027, - [SMALL_STATE(4343)] = 107085, - [SMALL_STATE(4344)] = 107167, - [SMALL_STATE(4345)] = 107225, - [SMALL_STATE(4346)] = 107307, - [SMALL_STATE(4347)] = 107365, - [SMALL_STATE(4348)] = 107423, - [SMALL_STATE(4349)] = 107481, - [SMALL_STATE(4350)] = 107539, - [SMALL_STATE(4351)] = 107597, - [SMALL_STATE(4352)] = 107655, - [SMALL_STATE(4353)] = 107713, - [SMALL_STATE(4354)] = 107771, - [SMALL_STATE(4355)] = 107828, - [SMALL_STATE(4356)] = 107885, - [SMALL_STATE(4357)] = 107952, - [SMALL_STATE(4358)] = 108009, - [SMALL_STATE(4359)] = 108066, - [SMALL_STATE(4360)] = 108129, - [SMALL_STATE(4361)] = 108192, - [SMALL_STATE(4362)] = 108255, - [SMALL_STATE(4363)] = 108314, - [SMALL_STATE(4364)] = 108371, - [SMALL_STATE(4365)] = 108428, - [SMALL_STATE(4366)] = 108485, - [SMALL_STATE(4367)] = 108550, - [SMALL_STATE(4368)] = 108607, - [SMALL_STATE(4369)] = 108664, - [SMALL_STATE(4370)] = 108721, - [SMALL_STATE(4371)] = 108778, - [SMALL_STATE(4372)] = 108835, - [SMALL_STATE(4373)] = 108904, - [SMALL_STATE(4374)] = 108961, - [SMALL_STATE(4375)] = 109022, - [SMALL_STATE(4376)] = 109091, - [SMALL_STATE(4377)] = 109148, - [SMALL_STATE(4378)] = 109205, - [SMALL_STATE(4379)] = 109262, - [SMALL_STATE(4380)] = 109318, - [SMALL_STATE(4381)] = 109374, - [SMALL_STATE(4382)] = 109430, - [SMALL_STATE(4383)] = 109486, - [SMALL_STATE(4384)] = 109542, - [SMALL_STATE(4385)] = 109598, - [SMALL_STATE(4386)] = 109654, - [SMALL_STATE(4387)] = 109728, - [SMALL_STATE(4388)] = 109792, - [SMALL_STATE(4389)] = 109852, - [SMALL_STATE(4390)] = 109908, - [SMALL_STATE(4391)] = 109964, - [SMALL_STATE(4392)] = 110020, - [SMALL_STATE(4393)] = 110076, - [SMALL_STATE(4394)] = 110132, - [SMALL_STATE(4395)] = 110206, - [SMALL_STATE(4396)] = 110280, - [SMALL_STATE(4397)] = 110336, - [SMALL_STATE(4398)] = 110398, - [SMALL_STATE(4399)] = 110454, - [SMALL_STATE(4400)] = 110510, - [SMALL_STATE(4401)] = 110566, - [SMALL_STATE(4402)] = 110622, - [SMALL_STATE(4403)] = 110678, - [SMALL_STATE(4404)] = 110734, - [SMALL_STATE(4405)] = 110790, - [SMALL_STATE(4406)] = 110864, - [SMALL_STATE(4407)] = 110938, - [SMALL_STATE(4408)] = 110994, - [SMALL_STATE(4409)] = 111050, - [SMALL_STATE(4410)] = 111106, - [SMALL_STATE(4411)] = 111162, - [SMALL_STATE(4412)] = 111236, - [SMALL_STATE(4413)] = 111292, - [SMALL_STATE(4414)] = 111348, - [SMALL_STATE(4415)] = 111404, - [SMALL_STATE(4416)] = 111460, - [SMALL_STATE(4417)] = 111516, - [SMALL_STATE(4418)] = 111572, - [SMALL_STATE(4419)] = 111628, - [SMALL_STATE(4420)] = 111692, - [SMALL_STATE(4421)] = 111748, - [SMALL_STATE(4422)] = 111804, - [SMALL_STATE(4423)] = 111860, - [SMALL_STATE(4424)] = 111916, - [SMALL_STATE(4425)] = 111972, - [SMALL_STATE(4426)] = 112028, - [SMALL_STATE(4427)] = 112102, - [SMALL_STATE(4428)] = 112176, - [SMALL_STATE(4429)] = 112232, - [SMALL_STATE(4430)] = 112288, - [SMALL_STATE(4431)] = 112344, - [SMALL_STATE(4432)] = 112406, - [SMALL_STATE(4433)] = 112462, - [SMALL_STATE(4434)] = 112518, - [SMALL_STATE(4435)] = 112592, - [SMALL_STATE(4436)] = 112648, - [SMALL_STATE(4437)] = 112704, - [SMALL_STATE(4438)] = 112760, - [SMALL_STATE(4439)] = 112816, - [SMALL_STATE(4440)] = 112872, - [SMALL_STATE(4441)] = 112928, - [SMALL_STATE(4442)] = 112984, - [SMALL_STATE(4443)] = 113040, - [SMALL_STATE(4444)] = 113098, - [SMALL_STATE(4445)] = 113154, - [SMALL_STATE(4446)] = 113210, - [SMALL_STATE(4447)] = 113266, - [SMALL_STATE(4448)] = 113322, - [SMALL_STATE(4449)] = 113378, - [SMALL_STATE(4450)] = 113434, - [SMALL_STATE(4451)] = 113490, - [SMALL_STATE(4452)] = 113546, - [SMALL_STATE(4453)] = 113602, - [SMALL_STATE(4454)] = 113658, - [SMALL_STATE(4455)] = 113714, - [SMALL_STATE(4456)] = 113770, - [SMALL_STATE(4457)] = 113826, - [SMALL_STATE(4458)] = 113882, - [SMALL_STATE(4459)] = 113938, - [SMALL_STATE(4460)] = 113993, - [SMALL_STATE(4461)] = 114056, - [SMALL_STATE(4462)] = 114123, - [SMALL_STATE(4463)] = 114190, - [SMALL_STATE(4464)] = 114245, - [SMALL_STATE(4465)] = 114308, - [SMALL_STATE(4466)] = 114363, - [SMALL_STATE(4467)] = 114418, - [SMALL_STATE(4468)] = 114481, - [SMALL_STATE(4469)] = 114539, - [SMALL_STATE(4470)] = 114635, - [SMALL_STATE(4471)] = 114705, - [SMALL_STATE(4472)] = 114763, - [SMALL_STATE(4473)] = 114821, - [SMALL_STATE(4474)] = 114879, - [SMALL_STATE(4475)] = 114937, - [SMALL_STATE(4476)] = 114997, - [SMALL_STATE(4477)] = 115055, - [SMALL_STATE(4478)] = 115113, - [SMALL_STATE(4479)] = 115171, - [SMALL_STATE(4480)] = 115229, - [SMALL_STATE(4481)] = 115287, - [SMALL_STATE(4482)] = 115345, - [SMALL_STATE(4483)] = 115403, - [SMALL_STATE(4484)] = 115461, - [SMALL_STATE(4485)] = 115523, - [SMALL_STATE(4486)] = 115581, - [SMALL_STATE(4487)] = 115639, - [SMALL_STATE(4488)] = 115697, - [SMALL_STATE(4489)] = 115755, - [SMALL_STATE(4490)] = 115813, - [SMALL_STATE(4491)] = 115871, - [SMALL_STATE(4492)] = 115929, - [SMALL_STATE(4493)] = 115989, - [SMALL_STATE(4494)] = 116059, - [SMALL_STATE(4495)] = 116117, - [SMALL_STATE(4496)] = 116175, - [SMALL_STATE(4497)] = 116245, - [SMALL_STATE(4498)] = 116343, - [SMALL_STATE(4499)] = 116401, - [SMALL_STATE(4500)] = 116459, - [SMALL_STATE(4501)] = 116517, - [SMALL_STATE(4502)] = 116575, - [SMALL_STATE(4503)] = 116671, - [SMALL_STATE(4504)] = 116729, - [SMALL_STATE(4505)] = 116787, - [SMALL_STATE(4506)] = 116883, - [SMALL_STATE(4507)] = 116941, - [SMALL_STATE(4508)] = 116999, - [SMALL_STATE(4509)] = 117057, - [SMALL_STATE(4510)] = 117117, - [SMALL_STATE(4511)] = 117175, - [SMALL_STATE(4512)] = 117271, - [SMALL_STATE(4513)] = 117329, - [SMALL_STATE(4514)] = 117387, - [SMALL_STATE(4515)] = 117445, - [SMALL_STATE(4516)] = 117503, - [SMALL_STATE(4517)] = 117561, - [SMALL_STATE(4518)] = 117619, - [SMALL_STATE(4519)] = 117677, - [SMALL_STATE(4520)] = 117735, - [SMALL_STATE(4521)] = 117793, - [SMALL_STATE(4522)] = 117851, - [SMALL_STATE(4523)] = 117909, - [SMALL_STATE(4524)] = 118005, - [SMALL_STATE(4525)] = 118101, - [SMALL_STATE(4526)] = 118159, - [SMALL_STATE(4527)] = 118217, - [SMALL_STATE(4528)] = 118275, - [SMALL_STATE(4529)] = 118333, - [SMALL_STATE(4530)] = 118391, - [SMALL_STATE(4531)] = 118449, - [SMALL_STATE(4532)] = 118519, - [SMALL_STATE(4533)] = 118579, - [SMALL_STATE(4534)] = 118632, - [SMALL_STATE(4535)] = 118727, - [SMALL_STATE(4536)] = 118822, - [SMALL_STATE(4537)] = 118875, - [SMALL_STATE(4538)] = 118928, - [SMALL_STATE(4539)] = 119023, - [SMALL_STATE(4540)] = 119076, - [SMALL_STATE(4541)] = 119171, - [SMALL_STATE(4542)] = 119266, - [SMALL_STATE(4543)] = 119319, - [SMALL_STATE(4544)] = 119372, - [SMALL_STATE(4545)] = 119467, - [SMALL_STATE(4546)] = 119562, - [SMALL_STATE(4547)] = 119657, - [SMALL_STATE(4548)] = 119752, - [SMALL_STATE(4549)] = 119847, - [SMALL_STATE(4550)] = 119906, - [SMALL_STATE(4551)] = 119959, - [SMALL_STATE(4552)] = 120054, - [SMALL_STATE(4553)] = 120149, - [SMALL_STATE(4554)] = 120244, - [SMALL_STATE(4555)] = 120307, - [SMALL_STATE(4556)] = 120402, - [SMALL_STATE(4557)] = 120497, - [SMALL_STATE(4558)] = 120592, - [SMALL_STATE(4559)] = 120687, - [SMALL_STATE(4560)] = 120782, - [SMALL_STATE(4561)] = 120877, - [SMALL_STATE(4562)] = 120972, - [SMALL_STATE(4563)] = 121067, - [SMALL_STATE(4564)] = 121122, - [SMALL_STATE(4565)] = 121217, - [SMALL_STATE(4566)] = 121312, - [SMALL_STATE(4567)] = 121365, - [SMALL_STATE(4568)] = 121460, - [SMALL_STATE(4569)] = 121513, - [SMALL_STATE(4570)] = 121608, - [SMALL_STATE(4571)] = 121703, - [SMALL_STATE(4572)] = 121798, - [SMALL_STATE(4573)] = 121893, - [SMALL_STATE(4574)] = 121958, - [SMALL_STATE(4575)] = 122015, - [SMALL_STATE(4576)] = 122074, - [SMALL_STATE(4577)] = 122169, - [SMALL_STATE(4578)] = 122232, - [SMALL_STATE(4579)] = 122327, - [SMALL_STATE(4580)] = 122422, - [SMALL_STATE(4581)] = 122517, - [SMALL_STATE(4582)] = 122612, - [SMALL_STATE(4583)] = 122707, - [SMALL_STATE(4584)] = 122802, - [SMALL_STATE(4585)] = 122897, - [SMALL_STATE(4586)] = 122992, - [SMALL_STATE(4587)] = 123087, - [SMALL_STATE(4588)] = 123182, - [SMALL_STATE(4589)] = 123277, - [SMALL_STATE(4590)] = 123330, - [SMALL_STATE(4591)] = 123395, - [SMALL_STATE(4592)] = 123490, - [SMALL_STATE(4593)] = 123585, - [SMALL_STATE(4594)] = 123680, - [SMALL_STATE(4595)] = 123775, - [SMALL_STATE(4596)] = 123870, - [SMALL_STATE(4597)] = 123965, - [SMALL_STATE(4598)] = 124060, - [SMALL_STATE(4599)] = 124155, - [SMALL_STATE(4600)] = 124208, - [SMALL_STATE(4601)] = 124261, - [SMALL_STATE(4602)] = 124314, - [SMALL_STATE(4603)] = 124409, - [SMALL_STATE(4604)] = 124504, - [SMALL_STATE(4605)] = 124557, - [SMALL_STATE(4606)] = 124620, - [SMALL_STATE(4607)] = 124715, - [SMALL_STATE(4608)] = 124768, - [SMALL_STATE(4609)] = 124863, - [SMALL_STATE(4610)] = 124958, - [SMALL_STATE(4611)] = 125053, - [SMALL_STATE(4612)] = 125148, - [SMALL_STATE(4613)] = 125243, - [SMALL_STATE(4614)] = 125338, - [SMALL_STATE(4615)] = 125433, - [SMALL_STATE(4616)] = 125486, - [SMALL_STATE(4617)] = 125581, - [SMALL_STATE(4618)] = 125676, - [SMALL_STATE(4619)] = 125771, - [SMALL_STATE(4620)] = 125866, - [SMALL_STATE(4621)] = 125961, - [SMALL_STATE(4622)] = 126056, - [SMALL_STATE(4623)] = 126109, - [SMALL_STATE(4624)] = 126204, - [SMALL_STATE(4625)] = 126299, - [SMALL_STATE(4626)] = 126352, - [SMALL_STATE(4627)] = 126447, - [SMALL_STATE(4628)] = 126542, - [SMALL_STATE(4629)] = 126595, - [SMALL_STATE(4630)] = 126690, - [SMALL_STATE(4631)] = 126785, - [SMALL_STATE(4632)] = 126838, - [SMALL_STATE(4633)] = 126933, - [SMALL_STATE(4634)] = 127028, - [SMALL_STATE(4635)] = 127123, - [SMALL_STATE(4636)] = 127218, - [SMALL_STATE(4637)] = 127313, - [SMALL_STATE(4638)] = 127408, - [SMALL_STATE(4639)] = 127503, - [SMALL_STATE(4640)] = 127556, - [SMALL_STATE(4641)] = 127651, - [SMALL_STATE(4642)] = 127743, - [SMALL_STATE(4643)] = 127835, - [SMALL_STATE(4644)] = 127927, - [SMALL_STATE(4645)] = 128019, - [SMALL_STATE(4646)] = 128111, - [SMALL_STATE(4647)] = 128203, - [SMALL_STATE(4648)] = 128295, - [SMALL_STATE(4649)] = 128363, - [SMALL_STATE(4650)] = 128457, - [SMALL_STATE(4651)] = 128549, - [SMALL_STATE(4652)] = 128641, - [SMALL_STATE(4653)] = 128733, - [SMALL_STATE(4654)] = 128791, - [SMALL_STATE(4655)] = 128859, - [SMALL_STATE(4656)] = 128951, - [SMALL_STATE(4657)] = 129043, - [SMALL_STATE(4658)] = 129135, - [SMALL_STATE(4659)] = 129227, - [SMALL_STATE(4660)] = 129321, - [SMALL_STATE(4661)] = 129413, - [SMALL_STATE(4662)] = 129505, - [SMALL_STATE(4663)] = 129597, - [SMALL_STATE(4664)] = 129689, - [SMALL_STATE(4665)] = 129753, - [SMALL_STATE(4666)] = 129845, - [SMALL_STATE(4667)] = 129909, - [SMALL_STATE(4668)] = 130001, - [SMALL_STATE(4669)] = 130093, - [SMALL_STATE(4670)] = 130185, - [SMALL_STATE(4671)] = 130277, - [SMALL_STATE(4672)] = 130369, - [SMALL_STATE(4673)] = 130461, - [SMALL_STATE(4674)] = 130553, - [SMALL_STATE(4675)] = 130645, - [SMALL_STATE(4676)] = 130737, - [SMALL_STATE(4677)] = 130831, - [SMALL_STATE(4678)] = 130923, - [SMALL_STATE(4679)] = 131015, - [SMALL_STATE(4680)] = 131107, - [SMALL_STATE(4681)] = 131201, - [SMALL_STATE(4682)] = 131295, - [SMALL_STATE(4683)] = 131387, - [SMALL_STATE(4684)] = 131481, - [SMALL_STATE(4685)] = 131549, - [SMALL_STATE(4686)] = 131641, - [SMALL_STATE(4687)] = 131733, - [SMALL_STATE(4688)] = 131825, - [SMALL_STATE(4689)] = 131917, - [SMALL_STATE(4690)] = 131985, - [SMALL_STATE(4691)] = 132077, - [SMALL_STATE(4692)] = 132169, - [SMALL_STATE(4693)] = 132261, - [SMALL_STATE(4694)] = 132353, - [SMALL_STATE(4695)] = 132445, - [SMALL_STATE(4696)] = 132509, - [SMALL_STATE(4697)] = 132573, - [SMALL_STATE(4698)] = 132665, - [SMALL_STATE(4699)] = 132757, - [SMALL_STATE(4700)] = 132825, - [SMALL_STATE(4701)] = 132917, - [SMALL_STATE(4702)] = 133011, - [SMALL_STATE(4703)] = 133103, - [SMALL_STATE(4704)] = 133195, - [SMALL_STATE(4705)] = 133289, - [SMALL_STATE(4706)] = 133383, - [SMALL_STATE(4707)] = 133477, - [SMALL_STATE(4708)] = 133545, - [SMALL_STATE(4709)] = 133637, - [SMALL_STATE(4710)] = 133731, - [SMALL_STATE(4711)] = 133799, - [SMALL_STATE(4712)] = 133891, - [SMALL_STATE(4713)] = 133985, - [SMALL_STATE(4714)] = 134079, - [SMALL_STATE(4715)] = 134171, - [SMALL_STATE(4716)] = 134265, - [SMALL_STATE(4717)] = 134359, - [SMALL_STATE(4718)] = 134453, - [SMALL_STATE(4719)] = 134511, - [SMALL_STATE(4720)] = 134603, - [SMALL_STATE(4721)] = 134695, - [SMALL_STATE(4722)] = 134787, - [SMALL_STATE(4723)] = 134881, - [SMALL_STATE(4724)] = 134949, - [SMALL_STATE(4725)] = 135041, - [SMALL_STATE(4726)] = 135133, - [SMALL_STATE(4727)] = 135225, - [SMALL_STATE(4728)] = 135319, - [SMALL_STATE(4729)] = 135411, - [SMALL_STATE(4730)] = 135503, - [SMALL_STATE(4731)] = 135595, - [SMALL_STATE(4732)] = 135680, - [SMALL_STATE(4733)] = 135773, - [SMALL_STATE(4734)] = 135872, - [SMALL_STATE(4735)] = 135965, - [SMALL_STATE(4736)] = 136032, - [SMALL_STATE(4737)] = 136099, - [SMALL_STATE(4738)] = 136192, - [SMALL_STATE(4739)] = 136277, - [SMALL_STATE(4740)] = 136370, - [SMALL_STATE(4741)] = 136455, - [SMALL_STATE(4742)] = 136510, - [SMALL_STATE(4743)] = 136595, - [SMALL_STATE(4744)] = 136680, - [SMALL_STATE(4745)] = 136765, - [SMALL_STATE(4746)] = 136842, - [SMALL_STATE(4747)] = 136935, - [SMALL_STATE(4748)] = 137020, - [SMALL_STATE(4749)] = 137105, - [SMALL_STATE(4750)] = 137190, - [SMALL_STATE(4751)] = 137275, - [SMALL_STATE(4752)] = 137368, - [SMALL_STATE(4753)] = 137453, - [SMALL_STATE(4754)] = 137538, - [SMALL_STATE(4755)] = 137637, - [SMALL_STATE(4756)] = 137722, - [SMALL_STATE(4757)] = 137799, - [SMALL_STATE(4758)] = 137884, - [SMALL_STATE(4759)] = 137969, - [SMALL_STATE(4760)] = 138054, - [SMALL_STATE(4761)] = 138121, - [SMALL_STATE(4762)] = 138206, - [SMALL_STATE(4763)] = 138259, - [SMALL_STATE(4764)] = 138326, - [SMALL_STATE(4765)] = 138411, - [SMALL_STATE(4766)] = 138461, - [SMALL_STATE(4767)] = 138513, - [SMALL_STATE(4768)] = 138569, - [SMALL_STATE(4769)] = 138629, - [SMALL_STATE(4770)] = 138685, - [SMALL_STATE(4771)] = 138735, - [SMALL_STATE(4772)] = 138785, - [SMALL_STATE(4773)] = 138841, - [SMALL_STATE(4774)] = 138891, - [SMALL_STATE(4775)] = 138947, - [SMALL_STATE(4776)] = 139003, - [SMALL_STATE(4777)] = 139053, - [SMALL_STATE(4778)] = 139117, - [SMALL_STATE(4779)] = 139181, - [SMALL_STATE(4780)] = 139241, - [SMALL_STATE(4781)] = 139303, - [SMALL_STATE(4782)] = 139365, - [SMALL_STATE(4783)] = 139423, - [SMALL_STATE(4784)] = 139485, - [SMALL_STATE(4785)] = 139541, - [SMALL_STATE(4786)] = 139595, - [SMALL_STATE(4787)] = 139657, - [SMALL_STATE(4788)] = 139709, - [SMALL_STATE(4789)] = 139773, - [SMALL_STATE(4790)] = 139822, - [SMALL_STATE(4791)] = 139871, - [SMALL_STATE(4792)] = 139920, - [SMALL_STATE(4793)] = 139969, - [SMALL_STATE(4794)] = 140046, - [SMALL_STATE(4795)] = 140137, - [SMALL_STATE(4796)] = 140214, - [SMALL_STATE(4797)] = 140269, - [SMALL_STATE(4798)] = 140318, - [SMALL_STATE(4799)] = 140367, - [SMALL_STATE(4800)] = 140470, - [SMALL_STATE(4801)] = 140519, - [SMALL_STATE(4802)] = 140568, - [SMALL_STATE(4803)] = 140659, - [SMALL_STATE(4804)] = 140708, - [SMALL_STATE(4805)] = 140759, - [SMALL_STATE(4806)] = 140808, - [SMALL_STATE(4807)] = 140857, - [SMALL_STATE(4808)] = 140906, - [SMALL_STATE(4809)] = 140997, - [SMALL_STATE(4810)] = 141046, - [SMALL_STATE(4811)] = 141149, - [SMALL_STATE(4812)] = 141198, - [SMALL_STATE(4813)] = 141289, - [SMALL_STATE(4814)] = 141338, - [SMALL_STATE(4815)] = 141387, - [SMALL_STATE(4816)] = 141436, - [SMALL_STATE(4817)] = 141485, - [SMALL_STATE(4818)] = 141534, - [SMALL_STATE(4819)] = 141583, - [SMALL_STATE(4820)] = 141632, - [SMALL_STATE(4821)] = 141681, - [SMALL_STATE(4822)] = 141730, - [SMALL_STATE(4823)] = 141779, - [SMALL_STATE(4824)] = 141830, - [SMALL_STATE(4825)] = 141879, - [SMALL_STATE(4826)] = 141982, - [SMALL_STATE(4827)] = 142075, - [SMALL_STATE(4828)] = 142124, - [SMALL_STATE(4829)] = 142173, - [SMALL_STATE(4830)] = 142222, - [SMALL_STATE(4831)] = 142271, - [SMALL_STATE(4832)] = 142348, - [SMALL_STATE(4833)] = 142397, - [SMALL_STATE(4834)] = 142488, - [SMALL_STATE(4835)] = 142537, - [SMALL_STATE(4836)] = 142630, - [SMALL_STATE(4837)] = 142679, - [SMALL_STATE(4838)] = 142728, - [SMALL_STATE(4839)] = 142819, - [SMALL_STATE(4840)] = 142896, - [SMALL_STATE(4841)] = 142945, - [SMALL_STATE(4842)] = 142994, - [SMALL_STATE(4843)] = 143085, - [SMALL_STATE(4844)] = 143134, - [SMALL_STATE(4845)] = 143237, - [SMALL_STATE(4846)] = 143328, - [SMALL_STATE(4847)] = 143377, - [SMALL_STATE(4848)] = 143426, - [SMALL_STATE(4849)] = 143475, - [SMALL_STATE(4850)] = 143524, - [SMALL_STATE(4851)] = 143573, - [SMALL_STATE(4852)] = 143634, - [SMALL_STATE(4853)] = 143725, - [SMALL_STATE(4854)] = 143802, - [SMALL_STATE(4855)] = 143893, - [SMALL_STATE(4856)] = 143942, - [SMALL_STATE(4857)] = 144033, - [SMALL_STATE(4858)] = 144082, - [SMALL_STATE(4859)] = 144131, - [SMALL_STATE(4860)] = 144180, - [SMALL_STATE(4861)] = 144229, - [SMALL_STATE(4862)] = 144290, - [SMALL_STATE(4863)] = 144339, - [SMALL_STATE(4864)] = 144416, - [SMALL_STATE(4865)] = 144465, - [SMALL_STATE(4866)] = 144514, - [SMALL_STATE(4867)] = 144563, - [SMALL_STATE(4868)] = 144612, - [SMALL_STATE(4869)] = 144665, - [SMALL_STATE(4870)] = 144714, - [SMALL_STATE(4871)] = 144763, - [SMALL_STATE(4872)] = 144812, - [SMALL_STATE(4873)] = 144861, - [SMALL_STATE(4874)] = 144910, - [SMALL_STATE(4875)] = 144959, - [SMALL_STATE(4876)] = 145008, - [SMALL_STATE(4877)] = 145057, - [SMALL_STATE(4878)] = 145148, - [SMALL_STATE(4879)] = 145220, - [SMALL_STATE(4880)] = 145314, - [SMALL_STATE(4881)] = 145364, - [SMALL_STATE(4882)] = 145418, - [SMALL_STATE(4883)] = 145470, - [SMALL_STATE(4884)] = 145524, - [SMALL_STATE(4885)] = 145614, - [SMALL_STATE(4886)] = 145704, - [SMALL_STATE(4887)] = 145776, - [SMALL_STATE(4888)] = 145844, - [SMALL_STATE(4889)] = 145914, - [SMALL_STATE(4890)] = 145968, - [SMALL_STATE(4891)] = 146040, - [SMALL_STATE(4892)] = 146140, - [SMALL_STATE(4893)] = 146194, - [SMALL_STATE(4894)] = 146262, - [SMALL_STATE(4895)] = 146352, - [SMALL_STATE(4896)] = 146446, - [SMALL_STATE(4897)] = 146540, - [SMALL_STATE(4898)] = 146624, - [SMALL_STATE(4899)] = 146714, - [SMALL_STATE(4900)] = 146768, - [SMALL_STATE(4901)] = 146844, - [SMALL_STATE(4902)] = 146922, - [SMALL_STATE(4903)] = 146990, - [SMALL_STATE(4904)] = 147048, - [SMALL_STATE(4905)] = 147102, - [SMALL_STATE(4906)] = 147154, - [SMALL_STATE(4907)] = 147222, - [SMALL_STATE(4908)] = 147288, - [SMALL_STATE(4909)] = 147346, - [SMALL_STATE(4910)] = 147434, - [SMALL_STATE(4911)] = 147520, - [SMALL_STATE(4912)] = 147592, - [SMALL_STATE(4913)] = 147674, - [SMALL_STATE(4914)] = 147767, - [SMALL_STATE(4915)] = 147864, - [SMALL_STATE(4916)] = 147913, - [SMALL_STATE(4917)] = 147960, - [SMALL_STATE(4918)] = 148013, - [SMALL_STATE(4919)] = 148090, - [SMALL_STATE(4920)] = 148141, - [SMALL_STATE(4921)] = 148190, - [SMALL_STATE(4922)] = 148285, - [SMALL_STATE(4923)] = 148382, - [SMALL_STATE(4924)] = 148453, - [SMALL_STATE(4925)] = 148550, - [SMALL_STATE(4926)] = 148597, - [SMALL_STATE(4927)] = 148644, - [SMALL_STATE(4928)] = 148733, - [SMALL_STATE(4929)] = 148786, - [SMALL_STATE(4930)] = 148883, - [SMALL_STATE(4931)] = 148954, - [SMALL_STATE(4932)] = 149001, - [SMALL_STATE(4933)] = 149098, - [SMALL_STATE(4934)] = 149145, - [SMALL_STATE(4935)] = 149232, - [SMALL_STATE(4936)] = 149325, - [SMALL_STATE(4937)] = 149422, - [SMALL_STATE(4938)] = 149469, - [SMALL_STATE(4939)] = 149540, - [SMALL_STATE(4940)] = 149587, - [SMALL_STATE(4941)] = 149634, - [SMALL_STATE(4942)] = 149687, - [SMALL_STATE(4943)] = 149776, - [SMALL_STATE(4944)] = 149873, - [SMALL_STATE(4945)] = 149960, - [SMALL_STATE(4946)] = 150057, - [SMALL_STATE(4947)] = 150104, - [SMALL_STATE(4948)] = 150181, - [SMALL_STATE(4949)] = 150278, - [SMALL_STATE(4950)] = 150375, - [SMALL_STATE(4951)] = 150422, - [SMALL_STATE(4952)] = 150499, - [SMALL_STATE(4953)] = 150596, - [SMALL_STATE(4954)] = 150693, - [SMALL_STATE(4955)] = 150764, - [SMALL_STATE(4956)] = 150811, - [SMALL_STATE(4957)] = 150904, - [SMALL_STATE(4958)] = 150951, - [SMALL_STATE(4959)] = 151040, - [SMALL_STATE(4960)] = 151137, - [SMALL_STATE(4961)] = 151184, - [SMALL_STATE(4962)] = 151281, - [SMALL_STATE(4963)] = 151378, - [SMALL_STATE(4964)] = 151425, - [SMALL_STATE(4965)] = 151472, - [SMALL_STATE(4966)] = 151569, - [SMALL_STATE(4967)] = 151644, - [SMALL_STATE(4968)] = 151741, - [SMALL_STATE(4969)] = 151788, - [SMALL_STATE(4970)] = 151841, - [SMALL_STATE(4971)] = 151938, - [SMALL_STATE(4972)] = 152035, - [SMALL_STATE(4973)] = 152132, - [SMALL_STATE(4974)] = 152179, - [SMALL_STATE(4975)] = 152276, - [SMALL_STATE(4976)] = 152347, - [SMALL_STATE(4977)] = 152444, - [SMALL_STATE(4978)] = 152521, - [SMALL_STATE(4979)] = 152618, - [SMALL_STATE(4980)] = 152695, - [SMALL_STATE(4981)] = 152744, - [SMALL_STATE(4982)] = 152841, - [SMALL_STATE(4983)] = 152918, - [SMALL_STATE(4984)] = 152995, - [SMALL_STATE(4985)] = 153092, - [SMALL_STATE(4986)] = 153189, - [SMALL_STATE(4987)] = 153286, - [SMALL_STATE(4988)] = 153383, - [SMALL_STATE(4989)] = 153480, - [SMALL_STATE(4990)] = 153551, - [SMALL_STATE(4991)] = 153648, - [SMALL_STATE(4992)] = 153745, - [SMALL_STATE(4993)] = 153842, - [SMALL_STATE(4994)] = 153897, - [SMALL_STATE(4995)] = 153994, - [SMALL_STATE(4996)] = 154063, - [SMALL_STATE(4997)] = 154110, - [SMALL_STATE(4998)] = 154207, - [SMALL_STATE(4999)] = 154274, - [SMALL_STATE(5000)] = 154371, - [SMALL_STATE(5001)] = 154466, - [SMALL_STATE(5002)] = 154563, - [SMALL_STATE(5003)] = 154634, - [SMALL_STATE(5004)] = 154731, - [SMALL_STATE(5005)] = 154802, - [SMALL_STATE(5006)] = 154877, - [SMALL_STATE(5007)] = 154954, - [SMALL_STATE(5008)] = 155047, - [SMALL_STATE(5009)] = 155136, - [SMALL_STATE(5010)] = 155211, - [SMALL_STATE(5011)] = 155308, - [SMALL_STATE(5012)] = 155379, - [SMALL_STATE(5013)] = 155476, - [SMALL_STATE(5014)] = 155553, - [SMALL_STATE(5015)] = 155634, - [SMALL_STATE(5016)] = 155717, - [SMALL_STATE(5017)] = 155814, - [SMALL_STATE(5018)] = 155899, - [SMALL_STATE(5019)] = 155986, - [SMALL_STATE(5020)] = 156061, - [SMALL_STATE(5021)] = 156158, - [SMALL_STATE(5022)] = 156255, - [SMALL_STATE(5023)] = 156352, - [SMALL_STATE(5024)] = 156449, - [SMALL_STATE(5025)] = 156546, - [SMALL_STATE(5026)] = 156643, - [SMALL_STATE(5027)] = 156714, - [SMALL_STATE(5028)] = 156789, - [SMALL_STATE(5029)] = 156886, - [SMALL_STATE(5030)] = 156979, - [SMALL_STATE(5031)] = 157076, - [SMALL_STATE(5032)] = 157173, - [SMALL_STATE(5033)] = 157270, - [SMALL_STATE(5034)] = 157335, - [SMALL_STATE(5035)] = 157429, - [SMALL_STATE(5036)] = 157487, - [SMALL_STATE(5037)] = 157581, - [SMALL_STATE(5038)] = 157655, - [SMALL_STATE(5039)] = 157749, - [SMALL_STATE(5040)] = 157843, - [SMALL_STATE(5041)] = 157895, - [SMALL_STATE(5042)] = 157987, - [SMALL_STATE(5043)] = 158061, - [SMALL_STATE(5044)] = 158135, - [SMALL_STATE(5045)] = 158229, - [SMALL_STATE(5046)] = 158321, - [SMALL_STATE(5047)] = 158395, - [SMALL_STATE(5048)] = 158489, - [SMALL_STATE(5049)] = 158583, - [SMALL_STATE(5050)] = 158677, - [SMALL_STATE(5051)] = 158723, - [SMALL_STATE(5052)] = 158817, - [SMALL_STATE(5053)] = 158909, - [SMALL_STATE(5054)] = 159003, - [SMALL_STATE(5055)] = 159071, - [SMALL_STATE(5056)] = 159139, - [SMALL_STATE(5057)] = 159233, - [SMALL_STATE(5058)] = 159327, - [SMALL_STATE(5059)] = 159421, - [SMALL_STATE(5060)] = 159495, - [SMALL_STATE(5061)] = 159589, - [SMALL_STATE(5062)] = 159657, - [SMALL_STATE(5063)] = 159725, - [SMALL_STATE(5064)] = 159799, - [SMALL_STATE(5065)] = 159893, - [SMALL_STATE(5066)] = 159987, - [SMALL_STATE(5067)] = 160081, - [SMALL_STATE(5068)] = 160175, - [SMALL_STATE(5069)] = 160269, - [SMALL_STATE(5070)] = 160343, - [SMALL_STATE(5071)] = 160437, - [SMALL_STATE(5072)] = 160531, - [SMALL_STATE(5073)] = 160625, - [SMALL_STATE(5074)] = 160717, - [SMALL_STATE(5075)] = 160811, - [SMALL_STATE(5076)] = 160905, - [SMALL_STATE(5077)] = 160999, - [SMALL_STATE(5078)] = 161093, - [SMALL_STATE(5079)] = 161187, - [SMALL_STATE(5080)] = 161281, - [SMALL_STATE(5081)] = 161375, - [SMALL_STATE(5082)] = 161469, - [SMALL_STATE(5083)] = 161563, - [SMALL_STATE(5084)] = 161657, - [SMALL_STATE(5085)] = 161751, - [SMALL_STATE(5086)] = 161839, - [SMALL_STATE(5087)] = 161913, - [SMALL_STATE(5088)] = 161987, - [SMALL_STATE(5089)] = 162079, - [SMALL_STATE(5090)] = 162171, - [SMALL_STATE(5091)] = 162265, - [SMALL_STATE(5092)] = 162359, - [SMALL_STATE(5093)] = 162453, - [SMALL_STATE(5094)] = 162547, - [SMALL_STATE(5095)] = 162621, - [SMALL_STATE(5096)] = 162713, - [SMALL_STATE(5097)] = 162805, - [SMALL_STATE(5098)] = 162897, - [SMALL_STATE(5099)] = 162989, - [SMALL_STATE(5100)] = 163063, - [SMALL_STATE(5101)] = 163157, - [SMALL_STATE(5102)] = 163251, - [SMALL_STATE(5103)] = 163343, - [SMALL_STATE(5104)] = 163393, - [SMALL_STATE(5105)] = 163467, - [SMALL_STATE(5106)] = 163561, - [SMALL_STATE(5107)] = 163609, - [SMALL_STATE(5108)] = 163679, - [SMALL_STATE(5109)] = 163767, - [SMALL_STATE(5110)] = 163853, - [SMALL_STATE(5111)] = 163921, - [SMALL_STATE(5112)] = 164015, - [SMALL_STATE(5113)] = 164109, - [SMALL_STATE(5114)] = 164179, - [SMALL_STATE(5115)] = 164253, - [SMALL_STATE(5116)] = 164347, - [SMALL_STATE(5117)] = 164439, - [SMALL_STATE(5118)] = 164513, - [SMALL_STATE(5119)] = 164587, - [SMALL_STATE(5120)] = 164657, - [SMALL_STATE(5121)] = 164731, - [SMALL_STATE(5122)] = 164779, - [SMALL_STATE(5123)] = 164873, - [SMALL_STATE(5124)] = 164967, - [SMALL_STATE(5125)] = 165061, - [SMALL_STATE(5126)] = 165155, - [SMALL_STATE(5127)] = 165225, - [SMALL_STATE(5128)] = 165319, - [SMALL_STATE(5129)] = 165377, - [SMALL_STATE(5130)] = 165471, - [SMALL_STATE(5131)] = 165531, - [SMALL_STATE(5132)] = 165603, - [SMALL_STATE(5133)] = 165697, - [SMALL_STATE(5134)] = 165765, - [SMALL_STATE(5135)] = 165853, - [SMALL_STATE(5136)] = 165947, - [SMALL_STATE(5137)] = 166021, - [SMALL_STATE(5138)] = 166113, - [SMALL_STATE(5139)] = 166179, - [SMALL_STATE(5140)] = 166249, - [SMALL_STATE(5141)] = 166323, - [SMALL_STATE(5142)] = 166397, - [SMALL_STATE(5143)] = 166473, - [SMALL_STATE(5144)] = 166553, - [SMALL_STATE(5145)] = 166635, - [SMALL_STATE(5146)] = 166729, - [SMALL_STATE(5147)] = 166823, - [SMALL_STATE(5148)] = 166907, - [SMALL_STATE(5149)] = 166995, - [SMALL_STATE(5150)] = 167081, - [SMALL_STATE(5151)] = 167155, - [SMALL_STATE(5152)] = 167219, - [SMALL_STATE(5153)] = 167269, - [SMALL_STATE(5154)] = 167363, - [SMALL_STATE(5155)] = 167437, - [SMALL_STATE(5156)] = 167531, - [SMALL_STATE(5157)] = 167599, - [SMALL_STATE(5158)] = 167693, - [SMALL_STATE(5159)] = 167787, - [SMALL_STATE(5160)] = 167861, - [SMALL_STATE(5161)] = 167955, - [SMALL_STATE(5162)] = 168043, - [SMALL_STATE(5163)] = 168117, - [SMALL_STATE(5164)] = 168211, - [SMALL_STATE(5165)] = 168303, - [SMALL_STATE(5166)] = 168397, - [SMALL_STATE(5167)] = 168471, - [SMALL_STATE(5168)] = 168565, - [SMALL_STATE(5169)] = 168639, - [SMALL_STATE(5170)] = 168709, - [SMALL_STATE(5171)] = 168803, - [SMALL_STATE(5172)] = 168895, - [SMALL_STATE(5173)] = 168987, - [SMALL_STATE(5174)] = 169081, - [SMALL_STATE(5175)] = 169149, - [SMALL_STATE(5176)] = 169223, - [SMALL_STATE(5177)] = 169317, - [SMALL_STATE(5178)] = 169411, - [SMALL_STATE(5179)] = 169505, - [SMALL_STATE(5180)] = 169593, - [SMALL_STATE(5181)] = 169687, - [SMALL_STATE(5182)] = 169781, - [SMALL_STATE(5183)] = 169875, - [SMALL_STATE(5184)] = 169967, - [SMALL_STATE(5185)] = 170061, - [SMALL_STATE(5186)] = 170155, - [SMALL_STATE(5187)] = 170249, - [SMALL_STATE(5188)] = 170343, - [SMALL_STATE(5189)] = 170437, - [SMALL_STATE(5190)] = 170531, - [SMALL_STATE(5191)] = 170625, - [SMALL_STATE(5192)] = 170693, - [SMALL_STATE(5193)] = 170767, - [SMALL_STATE(5194)] = 170861, - [SMALL_STATE(5195)] = 170953, - [SMALL_STATE(5196)] = 171017, - [SMALL_STATE(5197)] = 171111, - [SMALL_STATE(5198)] = 171205, - [SMALL_STATE(5199)] = 171299, - [SMALL_STATE(5200)] = 171359, - [SMALL_STATE(5201)] = 171453, - [SMALL_STATE(5202)] = 171539, - [SMALL_STATE(5203)] = 171623, - [SMALL_STATE(5204)] = 171705, - [SMALL_STATE(5205)] = 171785, - [SMALL_STATE(5206)] = 171855, - [SMALL_STATE(5207)] = 171929, - [SMALL_STATE(5208)] = 172017, - [SMALL_STATE(5209)] = 172091, - [SMALL_STATE(5210)] = 172167, - [SMALL_STATE(5211)] = 172241, - [SMALL_STATE(5212)] = 172335, - [SMALL_STATE(5213)] = 172407, - [SMALL_STATE(5214)] = 172501, - [SMALL_STATE(5215)] = 172567, - [SMALL_STATE(5216)] = 172661, - [SMALL_STATE(5217)] = 172755, - [SMALL_STATE(5218)] = 172849, - [SMALL_STATE(5219)] = 172943, - [SMALL_STATE(5220)] = 173037, - [SMALL_STATE(5221)] = 173131, - [SMALL_STATE(5222)] = 173223, - [SMALL_STATE(5223)] = 173311, - [SMALL_STATE(5224)] = 173405, - [SMALL_STATE(5225)] = 173475, - [SMALL_STATE(5226)] = 173569, - [SMALL_STATE(5227)] = 173663, - [SMALL_STATE(5228)] = 173757, - [SMALL_STATE(5229)] = 173825, - [SMALL_STATE(5230)] = 173893, - [SMALL_STATE(5231)] = 173967, - [SMALL_STATE(5232)] = 174061, - [SMALL_STATE(5233)] = 174129, - [SMALL_STATE(5234)] = 174221, - [SMALL_STATE(5235)] = 174295, - [SMALL_STATE(5236)] = 174365, - [SMALL_STATE(5237)] = 174425, - [SMALL_STATE(5238)] = 174493, - [SMALL_STATE(5239)] = 174584, - [SMALL_STATE(5240)] = 174649, - [SMALL_STATE(5241)] = 174718, - [SMALL_STATE(5242)] = 174809, - [SMALL_STATE(5243)] = 174900, - [SMALL_STATE(5244)] = 174991, - [SMALL_STATE(5245)] = 175060, - [SMALL_STATE(5246)] = 175151, - [SMALL_STATE(5247)] = 175242, - [SMALL_STATE(5248)] = 175333, - [SMALL_STATE(5249)] = 175424, - [SMALL_STATE(5250)] = 175469, - [SMALL_STATE(5251)] = 175526, - [SMALL_STATE(5252)] = 175585, - [SMALL_STATE(5253)] = 175676, - [SMALL_STATE(5254)] = 175767, - [SMALL_STATE(5255)] = 175858, - [SMALL_STATE(5256)] = 175949, - [SMALL_STATE(5257)] = 176006, - [SMALL_STATE(5258)] = 176097, - [SMALL_STATE(5259)] = 176188, - [SMALL_STATE(5260)] = 176233, - [SMALL_STATE(5261)] = 176324, - [SMALL_STATE(5262)] = 176415, - [SMALL_STATE(5263)] = 176506, - [SMALL_STATE(5264)] = 176597, - [SMALL_STATE(5265)] = 176688, - [SMALL_STATE(5266)] = 176779, - [SMALL_STATE(5267)] = 176870, - [SMALL_STATE(5268)] = 176961, - [SMALL_STATE(5269)] = 177052, - [SMALL_STATE(5270)] = 177143, - [SMALL_STATE(5271)] = 177234, - [SMALL_STATE(5272)] = 177325, - [SMALL_STATE(5273)] = 177416, - [SMALL_STATE(5274)] = 177507, - [SMALL_STATE(5275)] = 177598, - [SMALL_STATE(5276)] = 177689, - [SMALL_STATE(5277)] = 177780, - [SMALL_STATE(5278)] = 177871, - [SMALL_STATE(5279)] = 177962, - [SMALL_STATE(5280)] = 178053, - [SMALL_STATE(5281)] = 178144, - [SMALL_STATE(5282)] = 178235, - [SMALL_STATE(5283)] = 178326, - [SMALL_STATE(5284)] = 178417, - [SMALL_STATE(5285)] = 178462, - [SMALL_STATE(5286)] = 178553, - [SMALL_STATE(5287)] = 178644, - [SMALL_STATE(5288)] = 178735, - [SMALL_STATE(5289)] = 178826, - [SMALL_STATE(5290)] = 178917, - [SMALL_STATE(5291)] = 179008, - [SMALL_STATE(5292)] = 179099, - [SMALL_STATE(5293)] = 179144, - [SMALL_STATE(5294)] = 179235, - [SMALL_STATE(5295)] = 179326, - [SMALL_STATE(5296)] = 179417, - [SMALL_STATE(5297)] = 179508, - [SMALL_STATE(5298)] = 179599, - [SMALL_STATE(5299)] = 179690, - [SMALL_STATE(5300)] = 179781, - [SMALL_STATE(5301)] = 179872, - [SMALL_STATE(5302)] = 179963, - [SMALL_STATE(5303)] = 180054, - [SMALL_STATE(5304)] = 180145, - [SMALL_STATE(5305)] = 180236, - [SMALL_STATE(5306)] = 180327, - [SMALL_STATE(5307)] = 180418, - [SMALL_STATE(5308)] = 180509, - [SMALL_STATE(5309)] = 180600, - [SMALL_STATE(5310)] = 180691, - [SMALL_STATE(5311)] = 180782, - [SMALL_STATE(5312)] = 180873, - [SMALL_STATE(5313)] = 180964, - [SMALL_STATE(5314)] = 181055, - [SMALL_STATE(5315)] = 181146, - [SMALL_STATE(5316)] = 181237, - [SMALL_STATE(5317)] = 181328, - [SMALL_STATE(5318)] = 181419, - [SMALL_STATE(5319)] = 181510, - [SMALL_STATE(5320)] = 181601, - [SMALL_STATE(5321)] = 181692, - [SMALL_STATE(5322)] = 181783, - [SMALL_STATE(5323)] = 181842, - [SMALL_STATE(5324)] = 181929, - [SMALL_STATE(5325)] = 182020, - [SMALL_STATE(5326)] = 182111, - [SMALL_STATE(5327)] = 182170, - [SMALL_STATE(5328)] = 182261, - [SMALL_STATE(5329)] = 182352, - [SMALL_STATE(5330)] = 182443, - [SMALL_STATE(5331)] = 182534, - [SMALL_STATE(5332)] = 182625, - [SMALL_STATE(5333)] = 182716, - [SMALL_STATE(5334)] = 182807, - [SMALL_STATE(5335)] = 182898, - [SMALL_STATE(5336)] = 182989, - [SMALL_STATE(5337)] = 183080, - [SMALL_STATE(5338)] = 183171, - [SMALL_STATE(5339)] = 183262, - [SMALL_STATE(5340)] = 183335, - [SMALL_STATE(5341)] = 183426, - [SMALL_STATE(5342)] = 183517, - [SMALL_STATE(5343)] = 183608, - [SMALL_STATE(5344)] = 183699, - [SMALL_STATE(5345)] = 183762, - [SMALL_STATE(5346)] = 183847, - [SMALL_STATE(5347)] = 183938, - [SMALL_STATE(5348)] = 184021, - [SMALL_STATE(5349)] = 184112, - [SMALL_STATE(5350)] = 184193, - [SMALL_STATE(5351)] = 184284, - [SMALL_STATE(5352)] = 184375, - [SMALL_STATE(5353)] = 184466, - [SMALL_STATE(5354)] = 184517, - [SMALL_STATE(5355)] = 184596, - [SMALL_STATE(5356)] = 184687, - [SMALL_STATE(5357)] = 184778, - [SMALL_STATE(5358)] = 184823, - [SMALL_STATE(5359)] = 184896, - [SMALL_STATE(5360)] = 184987, - [SMALL_STATE(5361)] = 185078, - [SMALL_STATE(5362)] = 185169, - [SMALL_STATE(5363)] = 185242, - [SMALL_STATE(5364)] = 185333, - [SMALL_STATE(5365)] = 185424, - [SMALL_STATE(5366)] = 185481, - [SMALL_STATE(5367)] = 185538, - [SMALL_STATE(5368)] = 185629, - [SMALL_STATE(5369)] = 185720, - [SMALL_STATE(5370)] = 185811, - [SMALL_STATE(5371)] = 185856, - [SMALL_STATE(5372)] = 185947, - [SMALL_STATE(5373)] = 186038, - [SMALL_STATE(5374)] = 186129, - [SMALL_STATE(5375)] = 186220, - [SMALL_STATE(5376)] = 186293, - [SMALL_STATE(5377)] = 186360, - [SMALL_STATE(5378)] = 186447, - [SMALL_STATE(5379)] = 186538, - [SMALL_STATE(5380)] = 186629, - [SMALL_STATE(5381)] = 186720, - [SMALL_STATE(5382)] = 186811, - [SMALL_STATE(5383)] = 186902, - [SMALL_STATE(5384)] = 186993, - [SMALL_STATE(5385)] = 187084, - [SMALL_STATE(5386)] = 187175, - [SMALL_STATE(5387)] = 187266, - [SMALL_STATE(5388)] = 187341, - [SMALL_STATE(5389)] = 187432, - [SMALL_STATE(5390)] = 187523, - [SMALL_STATE(5391)] = 187592, - [SMALL_STATE(5392)] = 187643, - [SMALL_STATE(5393)] = 187730, - [SMALL_STATE(5394)] = 187821, - [SMALL_STATE(5395)] = 187912, - [SMALL_STATE(5396)] = 188003, - [SMALL_STATE(5397)] = 188050, - [SMALL_STATE(5398)] = 188141, - [SMALL_STATE(5399)] = 188214, - [SMALL_STATE(5400)] = 188305, - [SMALL_STATE(5401)] = 188396, - [SMALL_STATE(5402)] = 188465, - [SMALL_STATE(5403)] = 188556, - [SMALL_STATE(5404)] = 188647, - [SMALL_STATE(5405)] = 188734, - [SMALL_STATE(5406)] = 188778, - [SMALL_STATE(5407)] = 188822, - [SMALL_STATE(5408)] = 188866, - [SMALL_STATE(5409)] = 188910, - [SMALL_STATE(5410)] = 188954, - [SMALL_STATE(5411)] = 188998, - [SMALL_STATE(5412)] = 189046, - [SMALL_STATE(5413)] = 189112, - [SMALL_STATE(5414)] = 189200, - [SMALL_STATE(5415)] = 189244, - [SMALL_STATE(5416)] = 189288, - [SMALL_STATE(5417)] = 189332, - [SMALL_STATE(5418)] = 189376, - [SMALL_STATE(5419)] = 189442, - [SMALL_STATE(5420)] = 189486, - [SMALL_STATE(5421)] = 189530, - [SMALL_STATE(5422)] = 189596, - [SMALL_STATE(5423)] = 189644, - [SMALL_STATE(5424)] = 189688, - [SMALL_STATE(5425)] = 189732, - [SMALL_STATE(5426)] = 189776, - [SMALL_STATE(5427)] = 189820, - [SMALL_STATE(5428)] = 189864, - [SMALL_STATE(5429)] = 189908, - [SMALL_STATE(5430)] = 189952, - [SMALL_STATE(5431)] = 189996, - [SMALL_STATE(5432)] = 190056, - [SMALL_STATE(5433)] = 190100, - [SMALL_STATE(5434)] = 190160, - [SMALL_STATE(5435)] = 190204, - [SMALL_STATE(5436)] = 190248, - [SMALL_STATE(5437)] = 190308, - [SMALL_STATE(5438)] = 190352, - [SMALL_STATE(5439)] = 190412, - [SMALL_STATE(5440)] = 190456, - [SMALL_STATE(5441)] = 190500, - [SMALL_STATE(5442)] = 190546, - [SMALL_STATE(5443)] = 190612, - [SMALL_STATE(5444)] = 190656, - [SMALL_STATE(5445)] = 190700, - [SMALL_STATE(5446)] = 190766, - [SMALL_STATE(5447)] = 190838, - [SMALL_STATE(5448)] = 190882, - [SMALL_STATE(5449)] = 190926, - [SMALL_STATE(5450)] = 190970, - [SMALL_STATE(5451)] = 191014, - [SMALL_STATE(5452)] = 191058, - [SMALL_STATE(5453)] = 191102, - [SMALL_STATE(5454)] = 191146, - [SMALL_STATE(5455)] = 191190, - [SMALL_STATE(5456)] = 191262, - [SMALL_STATE(5457)] = 191328, - [SMALL_STATE(5458)] = 191394, - [SMALL_STATE(5459)] = 191438, - [SMALL_STATE(5460)] = 191504, - [SMALL_STATE(5461)] = 191548, - [SMALL_STATE(5462)] = 191615, - [SMALL_STATE(5463)] = 191670, - [SMALL_STATE(5464)] = 191713, - [SMALL_STATE(5465)] = 191778, - [SMALL_STATE(5466)] = 191823, - [SMALL_STATE(5467)] = 191872, - [SMALL_STATE(5468)] = 191915, - [SMALL_STATE(5469)] = 191958, - [SMALL_STATE(5470)] = 192023, - [SMALL_STATE(5471)] = 192090, - [SMALL_STATE(5472)] = 192155, - [SMALL_STATE(5473)] = 192210, - [SMALL_STATE(5474)] = 192253, - [SMALL_STATE(5475)] = 192296, - [SMALL_STATE(5476)] = 192361, - [SMALL_STATE(5477)] = 192428, - [SMALL_STATE(5478)] = 192495, - [SMALL_STATE(5479)] = 192566, - [SMALL_STATE(5480)] = 192637, - [SMALL_STATE(5481)] = 192701, - [SMALL_STATE(5482)] = 192765, - [SMALL_STATE(5483)] = 192829, - [SMALL_STATE(5484)] = 192877, - [SMALL_STATE(5485)] = 192927, - [SMALL_STATE(5486)] = 192975, - [SMALL_STATE(5487)] = 193023, - [SMALL_STATE(5488)] = 193073, - [SMALL_STATE(5489)] = 193119, - [SMALL_STATE(5490)] = 193183, - [SMALL_STATE(5491)] = 193247, - [SMALL_STATE(5492)] = 193331, - [SMALL_STATE(5493)] = 193379, - [SMALL_STATE(5494)] = 193443, - [SMALL_STATE(5495)] = 193493, - [SMALL_STATE(5496)] = 193539, - [SMALL_STATE(5497)] = 193587, - [SMALL_STATE(5498)] = 193651, - [SMALL_STATE(5499)] = 193721, - [SMALL_STATE(5500)] = 193791, - [SMALL_STATE(5501)] = 193839, - [SMALL_STATE(5502)] = 193903, - [SMALL_STATE(5503)] = 193970, - [SMALL_STATE(5504)] = 194037, - [SMALL_STATE(5505)] = 194104, - [SMALL_STATE(5506)] = 194171, - [SMALL_STATE(5507)] = 194216, - [SMALL_STATE(5508)] = 194261, - [SMALL_STATE(5509)] = 194328, - [SMALL_STATE(5510)] = 194373, - [SMALL_STATE(5511)] = 194418, - [SMALL_STATE(5512)] = 194463, - [SMALL_STATE(5513)] = 194530, - [SMALL_STATE(5514)] = 194593, - [SMALL_STATE(5515)] = 194660, - [SMALL_STATE(5516)] = 194727, - [SMALL_STATE(5517)] = 194794, - [SMALL_STATE(5518)] = 194839, - [SMALL_STATE(5519)] = 194906, - [SMALL_STATE(5520)] = 194947, - [SMALL_STATE(5521)] = 194992, - [SMALL_STATE(5522)] = 195037, - [SMALL_STATE(5523)] = 195104, - [SMALL_STATE(5524)] = 195171, - [SMALL_STATE(5525)] = 195238, - [SMALL_STATE(5526)] = 195285, - [SMALL_STATE(5527)] = 195352, - [SMALL_STATE(5528)] = 195419, - [SMALL_STATE(5529)] = 195464, - [SMALL_STATE(5530)] = 195509, - [SMALL_STATE(5531)] = 195576, - [SMALL_STATE(5532)] = 195621, - [SMALL_STATE(5533)] = 195688, - [SMALL_STATE(5534)] = 195733, - [SMALL_STATE(5535)] = 195796, - [SMALL_STATE(5536)] = 195841, - [SMALL_STATE(5537)] = 195904, - [SMALL_STATE(5538)] = 195971, - [SMALL_STATE(5539)] = 196038, - [SMALL_STATE(5540)] = 196083, - [SMALL_STATE(5541)] = 196152, - [SMALL_STATE(5542)] = 196197, - [SMALL_STATE(5543)] = 196264, - [SMALL_STATE(5544)] = 196331, - [SMALL_STATE(5545)] = 196376, - [SMALL_STATE(5546)] = 196443, - [SMALL_STATE(5547)] = 196488, - [SMALL_STATE(5548)] = 196557, - [SMALL_STATE(5549)] = 196624, - [SMALL_STATE(5550)] = 196669, - [SMALL_STATE(5551)] = 196736, - [SMALL_STATE(5552)] = 196803, - [SMALL_STATE(5553)] = 196848, - [SMALL_STATE(5554)] = 196893, - [SMALL_STATE(5555)] = 196960, - [SMALL_STATE(5556)] = 197005, - [SMALL_STATE(5557)] = 197050, - [SMALL_STATE(5558)] = 197117, - [SMALL_STATE(5559)] = 197184, - [SMALL_STATE(5560)] = 197251, - [SMALL_STATE(5561)] = 197296, - [SMALL_STATE(5562)] = 197363, - [SMALL_STATE(5563)] = 197430, - [SMALL_STATE(5564)] = 197497, - [SMALL_STATE(5565)] = 197542, - [SMALL_STATE(5566)] = 197611, - [SMALL_STATE(5567)] = 197674, - [SMALL_STATE(5568)] = 197741, - [SMALL_STATE(5569)] = 197810, - [SMALL_STATE(5570)] = 197896, - [SMALL_STATE(5571)] = 197936, - [SMALL_STATE(5572)] = 198016, - [SMALL_STATE(5573)] = 198056, - [SMALL_STATE(5574)] = 198098, - [SMALL_STATE(5575)] = 198138, - [SMALL_STATE(5576)] = 198178, - [SMALL_STATE(5577)] = 198220, - [SMALL_STATE(5578)] = 198260, - [SMALL_STATE(5579)] = 198300, - [SMALL_STATE(5580)] = 198340, - [SMALL_STATE(5581)] = 198380, - [SMALL_STATE(5582)] = 198420, - [SMALL_STATE(5583)] = 198460, - [SMALL_STATE(5584)] = 198500, - [SMALL_STATE(5585)] = 198540, - [SMALL_STATE(5586)] = 198580, - [SMALL_STATE(5587)] = 198620, - [SMALL_STATE(5588)] = 198682, - [SMALL_STATE(5589)] = 198722, - [SMALL_STATE(5590)] = 198802, - [SMALL_STATE(5591)] = 198842, - [SMALL_STATE(5592)] = 198882, - [SMALL_STATE(5593)] = 198938, - [SMALL_STATE(5594)] = 198994, - [SMALL_STATE(5595)] = 199050, - [SMALL_STATE(5596)] = 199106, - [SMALL_STATE(5597)] = 199146, - [SMALL_STATE(5598)] = 199186, - [SMALL_STATE(5599)] = 199226, - [SMALL_STATE(5600)] = 199266, - [SMALL_STATE(5601)] = 199306, - [SMALL_STATE(5602)] = 199368, - [SMALL_STATE(5603)] = 199412, - [SMALL_STATE(5604)] = 199452, - [SMALL_STATE(5605)] = 199492, - [SMALL_STATE(5606)] = 199532, - [SMALL_STATE(5607)] = 199572, - [SMALL_STATE(5608)] = 199628, - [SMALL_STATE(5609)] = 199708, - [SMALL_STATE(5610)] = 199748, - [SMALL_STATE(5611)] = 199788, - [SMALL_STATE(5612)] = 199868, - [SMALL_STATE(5613)] = 199948, - [SMALL_STATE(5614)] = 199988, - [SMALL_STATE(5615)] = 200036, - [SMALL_STATE(5616)] = 200076, - [SMALL_STATE(5617)] = 200116, - [SMALL_STATE(5618)] = 200196, - [SMALL_STATE(5619)] = 200276, - [SMALL_STATE(5620)] = 200316, - [SMALL_STATE(5621)] = 200358, - [SMALL_STATE(5622)] = 200414, - [SMALL_STATE(5623)] = 200494, - [SMALL_STATE(5624)] = 200534, - [SMALL_STATE(5625)] = 200574, - [SMALL_STATE(5626)] = 200614, - [SMALL_STATE(5627)] = 200654, - [SMALL_STATE(5628)] = 200694, - [SMALL_STATE(5629)] = 200734, - [SMALL_STATE(5630)] = 200790, - [SMALL_STATE(5631)] = 200830, - [SMALL_STATE(5632)] = 200910, - [SMALL_STATE(5633)] = 200950, - [SMALL_STATE(5634)] = 200990, - [SMALL_STATE(5635)] = 201070, - [SMALL_STATE(5636)] = 201110, - [SMALL_STATE(5637)] = 201150, - [SMALL_STATE(5638)] = 201190, - [SMALL_STATE(5639)] = 201252, - [SMALL_STATE(5640)] = 201292, - [SMALL_STATE(5641)] = 201332, - [SMALL_STATE(5642)] = 201372, - [SMALL_STATE(5643)] = 201452, - [SMALL_STATE(5644)] = 201492, - [SMALL_STATE(5645)] = 201534, - [SMALL_STATE(5646)] = 201574, - [SMALL_STATE(5647)] = 201614, - [SMALL_STATE(5648)] = 201694, - [SMALL_STATE(5649)] = 201734, - [SMALL_STATE(5650)] = 201774, - [SMALL_STATE(5651)] = 201830, - [SMALL_STATE(5652)] = 201870, - [SMALL_STATE(5653)] = 201910, - [SMALL_STATE(5654)] = 201990, - [SMALL_STATE(5655)] = 202030, - [SMALL_STATE(5656)] = 202070, - [SMALL_STATE(5657)] = 202110, - [SMALL_STATE(5658)] = 202172, - [SMALL_STATE(5659)] = 202252, - [SMALL_STATE(5660)] = 202303, - [SMALL_STATE(5661)] = 202364, - [SMALL_STATE(5662)] = 202425, - [SMALL_STATE(5663)] = 202476, - [SMALL_STATE(5664)] = 202527, - [SMALL_STATE(5665)] = 202588, - [SMALL_STATE(5666)] = 202649, - [SMALL_STATE(5667)] = 202700, - [SMALL_STATE(5668)] = 202745, - [SMALL_STATE(5669)] = 202806, - [SMALL_STATE(5670)] = 202867, - [SMALL_STATE(5671)] = 202928, - [SMALL_STATE(5672)] = 202973, - [SMALL_STATE(5673)] = 203040, - [SMALL_STATE(5674)] = 203101, - [SMALL_STATE(5675)] = 203162, - [SMALL_STATE(5676)] = 203223, - [SMALL_STATE(5677)] = 203284, - [SMALL_STATE(5678)] = 203351, - [SMALL_STATE(5679)] = 203412, - [SMALL_STATE(5680)] = 203451, - [SMALL_STATE(5681)] = 203502, - [SMALL_STATE(5682)] = 203553, - [SMALL_STATE(5683)] = 203611, - [SMALL_STATE(5684)] = 203669, - [SMALL_STATE(5685)] = 203727, - [SMALL_STATE(5686)] = 203797, - [SMALL_STATE(5687)] = 203871, - [SMALL_STATE(5688)] = 203931, - [SMALL_STATE(5689)] = 203975, - [SMALL_STATE(5690)] = 204049, - [SMALL_STATE(5691)] = 204107, - [SMALL_STATE(5692)] = 204165, - [SMALL_STATE(5693)] = 204225, - [SMALL_STATE(5694)] = 204299, - [SMALL_STATE(5695)] = 204357, - [SMALL_STATE(5696)] = 204417, - [SMALL_STATE(5697)] = 204477, - [SMALL_STATE(5698)] = 204535, - [SMALL_STATE(5699)] = 204609, - [SMALL_STATE(5700)] = 204683, - [SMALL_STATE(5701)] = 204757, - [SMALL_STATE(5702)] = 204831, - [SMALL_STATE(5703)] = 204901, - [SMALL_STATE(5704)] = 204975, - [SMALL_STATE(5705)] = 205033, - [SMALL_STATE(5706)] = 205103, - [SMALL_STATE(5707)] = 205163, - [SMALL_STATE(5708)] = 205237, - [SMALL_STATE(5709)] = 205307, - [SMALL_STATE(5710)] = 205377, - [SMALL_STATE(5711)] = 205435, - [SMALL_STATE(5712)] = 205509, - [SMALL_STATE(5713)] = 205583, - [SMALL_STATE(5714)] = 205657, - [SMALL_STATE(5715)] = 205715, - [SMALL_STATE(5716)] = 205773, - [SMALL_STATE(5717)] = 205843, - [SMALL_STATE(5718)] = 205917, - [SMALL_STATE(5719)] = 205975, - [SMALL_STATE(5720)] = 206033, - [SMALL_STATE(5721)] = 206091, - [SMALL_STATE(5722)] = 206161, - [SMALL_STATE(5723)] = 206219, - [SMALL_STATE(5724)] = 206289, - [SMALL_STATE(5725)] = 206359, - [SMALL_STATE(5726)] = 206417, - [SMALL_STATE(5727)] = 206491, - [SMALL_STATE(5728)] = 206549, - [SMALL_STATE(5729)] = 206619, - [SMALL_STATE(5730)] = 206693, - [SMALL_STATE(5731)] = 206751, - [SMALL_STATE(5732)] = 206821, - [SMALL_STATE(5733)] = 206879, - [SMALL_STATE(5734)] = 206949, - [SMALL_STATE(5735)] = 207023, - [SMALL_STATE(5736)] = 207081, - [SMALL_STATE(5737)] = 207155, - [SMALL_STATE(5738)] = 207213, - [SMALL_STATE(5739)] = 207271, - [SMALL_STATE(5740)] = 207329, - [SMALL_STATE(5741)] = 207387, - [SMALL_STATE(5742)] = 207461, - [SMALL_STATE(5743)] = 207519, - [SMALL_STATE(5744)] = 207593, - [SMALL_STATE(5745)] = 207651, - [SMALL_STATE(5746)] = 207709, - [SMALL_STATE(5747)] = 207783, - [SMALL_STATE(5748)] = 207841, - [SMALL_STATE(5749)] = 207899, - [SMALL_STATE(5750)] = 207973, - [SMALL_STATE(5751)] = 208031, - [SMALL_STATE(5752)] = 208089, - [SMALL_STATE(5753)] = 208147, - [SMALL_STATE(5754)] = 208217, - [SMALL_STATE(5755)] = 208277, - [SMALL_STATE(5756)] = 208347, - [SMALL_STATE(5757)] = 208421, - [SMALL_STATE(5758)] = 208479, - [SMALL_STATE(5759)] = 208549, - [SMALL_STATE(5760)] = 208623, - [SMALL_STATE(5761)] = 208693, - [SMALL_STATE(5762)] = 208751, - [SMALL_STATE(5763)] = 208809, - [SMALL_STATE(5764)] = 208867, - [SMALL_STATE(5765)] = 208941, - [SMALL_STATE(5766)] = 209015, - [SMALL_STATE(5767)] = 209073, - [SMALL_STATE(5768)] = 209143, - [SMALL_STATE(5769)] = 209217, - [SMALL_STATE(5770)] = 209287, - [SMALL_STATE(5771)] = 209345, - [SMALL_STATE(5772)] = 209415, - [SMALL_STATE(5773)] = 209473, - [SMALL_STATE(5774)] = 209547, - [SMALL_STATE(5775)] = 209605, - [SMALL_STATE(5776)] = 209663, - [SMALL_STATE(5777)] = 209707, - [SMALL_STATE(5778)] = 209777, - [SMALL_STATE(5779)] = 209835, - [SMALL_STATE(5780)] = 209893, - [SMALL_STATE(5781)] = 209963, - [SMALL_STATE(5782)] = 210021, - [SMALL_STATE(5783)] = 210079, - [SMALL_STATE(5784)] = 210153, - [SMALL_STATE(5785)] = 210227, - [SMALL_STATE(5786)] = 210285, - [SMALL_STATE(5787)] = 210343, - [SMALL_STATE(5788)] = 210417, - [SMALL_STATE(5789)] = 210491, - [SMALL_STATE(5790)] = 210565, - [SMALL_STATE(5791)] = 210635, - [SMALL_STATE(5792)] = 210705, - [SMALL_STATE(5793)] = 210763, - [SMALL_STATE(5794)] = 210821, - [SMALL_STATE(5795)] = 210881, - [SMALL_STATE(5796)] = 210955, - [SMALL_STATE(5797)] = 211013, - [SMALL_STATE(5798)] = 211071, - [SMALL_STATE(5799)] = 211131, - [SMALL_STATE(5800)] = 211189, - [SMALL_STATE(5801)] = 211247, - [SMALL_STATE(5802)] = 211317, - [SMALL_STATE(5803)] = 211375, - [SMALL_STATE(5804)] = 211424, - [SMALL_STATE(5805)] = 211491, - [SMALL_STATE(5806)] = 211558, - [SMALL_STATE(5807)] = 211625, - [SMALL_STATE(5808)] = 211670, - [SMALL_STATE(5809)] = 211737, - [SMALL_STATE(5810)] = 211804, - [SMALL_STATE(5811)] = 211871, - [SMALL_STATE(5812)] = 211916, - [SMALL_STATE(5813)] = 211983, - [SMALL_STATE(5814)] = 212050, - [SMALL_STATE(5815)] = 212093, - [SMALL_STATE(5816)] = 212160, - [SMALL_STATE(5817)] = 212227, - [SMALL_STATE(5818)] = 212264, - [SMALL_STATE(5819)] = 212331, - [SMALL_STATE(5820)] = 212398, - [SMALL_STATE(5821)] = 212435, - [SMALL_STATE(5822)] = 212502, - [SMALL_STATE(5823)] = 212543, - [SMALL_STATE(5824)] = 212610, - [SMALL_STATE(5825)] = 212677, - [SMALL_STATE(5826)] = 212744, - [SMALL_STATE(5827)] = 212811, - [SMALL_STATE(5828)] = 212878, - [SMALL_STATE(5829)] = 212927, - [SMALL_STATE(5830)] = 212994, - [SMALL_STATE(5831)] = 213061, - [SMALL_STATE(5832)] = 213128, - [SMALL_STATE(5833)] = 213195, - [SMALL_STATE(5834)] = 213244, - [SMALL_STATE(5835)] = 213311, - [SMALL_STATE(5836)] = 213360, - [SMALL_STATE(5837)] = 213405, - [SMALL_STATE(5838)] = 213472, - [SMALL_STATE(5839)] = 213539, - [SMALL_STATE(5840)] = 213606, - [SMALL_STATE(5841)] = 213673, - [SMALL_STATE(5842)] = 213740, - [SMALL_STATE(5843)] = 213807, - [SMALL_STATE(5844)] = 213874, - [SMALL_STATE(5845)] = 213941, - [SMALL_STATE(5846)] = 214008, - [SMALL_STATE(5847)] = 214048, - [SMALL_STATE(5848)] = 214114, - [SMALL_STATE(5849)] = 214190, - [SMALL_STATE(5850)] = 214266, - [SMALL_STATE(5851)] = 214324, - [SMALL_STATE(5852)] = 214400, - [SMALL_STATE(5853)] = 214476, - [SMALL_STATE(5854)] = 214516, - [SMALL_STATE(5855)] = 214556, - [SMALL_STATE(5856)] = 214596, - [SMALL_STATE(5857)] = 214654, - [SMALL_STATE(5858)] = 214730, - [SMALL_STATE(5859)] = 214770, - [SMALL_STATE(5860)] = 214846, - [SMALL_STATE(5861)] = 214922, - [SMALL_STATE(5862)] = 214962, - [SMALL_STATE(5863)] = 215028, - [SMALL_STATE(5864)] = 215104, - [SMALL_STATE(5865)] = 215170, - [SMALL_STATE(5866)] = 215210, - [SMALL_STATE(5867)] = 215286, - [SMALL_STATE(5868)] = 215352, - [SMALL_STATE(5869)] = 215428, - [SMALL_STATE(5870)] = 215504, - [SMALL_STATE(5871)] = 215544, - [SMALL_STATE(5872)] = 215584, - [SMALL_STATE(5873)] = 215660, - [SMALL_STATE(5874)] = 215736, - [SMALL_STATE(5875)] = 215812, - [SMALL_STATE(5876)] = 215888, - [SMALL_STATE(5877)] = 215964, - [SMALL_STATE(5878)] = 216040, - [SMALL_STATE(5879)] = 216116, - [SMALL_STATE(5880)] = 216182, - [SMALL_STATE(5881)] = 216258, - [SMALL_STATE(5882)] = 216300, - [SMALL_STATE(5883)] = 216376, - [SMALL_STATE(5884)] = 216452, - [SMALL_STATE(5885)] = 216528, - [SMALL_STATE(5886)] = 216568, - [SMALL_STATE(5887)] = 216644, - [SMALL_STATE(5888)] = 216710, - [SMALL_STATE(5889)] = 216750, - [SMALL_STATE(5890)] = 216816, - [SMALL_STATE(5891)] = 216892, - [SMALL_STATE(5892)] = 216968, - [SMALL_STATE(5893)] = 217008, - [SMALL_STATE(5894)] = 217084, - [SMALL_STATE(5895)] = 217160, - [SMALL_STATE(5896)] = 217236, - [SMALL_STATE(5897)] = 217312, - [SMALL_STATE(5898)] = 217352, - [SMALL_STATE(5899)] = 217392, - [SMALL_STATE(5900)] = 217468, - [SMALL_STATE(5901)] = 217534, - [SMALL_STATE(5902)] = 217574, - [SMALL_STATE(5903)] = 217640, - [SMALL_STATE(5904)] = 217716, - [SMALL_STATE(5905)] = 217792, - [SMALL_STATE(5906)] = 217868, - [SMALL_STATE(5907)] = 217944, - [SMALL_STATE(5908)] = 218020, - [SMALL_STATE(5909)] = 218060, - [SMALL_STATE(5910)] = 218136, - [SMALL_STATE(5911)] = 218176, - [SMALL_STATE(5912)] = 218252, - [SMALL_STATE(5913)] = 218328, - [SMALL_STATE(5914)] = 218368, - [SMALL_STATE(5915)] = 218434, - [SMALL_STATE(5916)] = 218510, - [SMALL_STATE(5917)] = 218586, - [SMALL_STATE(5918)] = 218626, - [SMALL_STATE(5919)] = 218702, - [SMALL_STATE(5920)] = 218742, - [SMALL_STATE(5921)] = 218818, - [SMALL_STATE(5922)] = 218884, - [SMALL_STATE(5923)] = 218924, - [SMALL_STATE(5924)] = 219000, - [SMALL_STATE(5925)] = 219040, - [SMALL_STATE(5926)] = 219116, - [SMALL_STATE(5927)] = 219192, - [SMALL_STATE(5928)] = 219268, - [SMALL_STATE(5929)] = 219344, - [SMALL_STATE(5930)] = 219420, - [SMALL_STATE(5931)] = 219496, - [SMALL_STATE(5932)] = 219572, - [SMALL_STATE(5933)] = 219648, - [SMALL_STATE(5934)] = 219724, - [SMALL_STATE(5935)] = 219800, - [SMALL_STATE(5936)] = 219876, - [SMALL_STATE(5937)] = 219952, - [SMALL_STATE(5938)] = 220028, - [SMALL_STATE(5939)] = 220104, - [SMALL_STATE(5940)] = 220180, - [SMALL_STATE(5941)] = 220246, - [SMALL_STATE(5942)] = 220304, - [SMALL_STATE(5943)] = 220380, - [SMALL_STATE(5944)] = 220456, - [SMALL_STATE(5945)] = 220532, - [SMALL_STATE(5946)] = 220572, - [SMALL_STATE(5947)] = 220648, - [SMALL_STATE(5948)] = 220724, - [SMALL_STATE(5949)] = 220800, - [SMALL_STATE(5950)] = 220876, - [SMALL_STATE(5951)] = 220952, - [SMALL_STATE(5952)] = 221028, - [SMALL_STATE(5953)] = 221104, - [SMALL_STATE(5954)] = 221180, - [SMALL_STATE(5955)] = 221220, - [SMALL_STATE(5956)] = 221296, - [SMALL_STATE(5957)] = 221372, - [SMALL_STATE(5958)] = 221448, - [SMALL_STATE(5959)] = 221506, - [SMALL_STATE(5960)] = 221582, - [SMALL_STATE(5961)] = 221622, - [SMALL_STATE(5962)] = 221698, - [SMALL_STATE(5963)] = 221774, - [SMALL_STATE(5964)] = 221850, - [SMALL_STATE(5965)] = 221926, - [SMALL_STATE(5966)] = 222002, - [SMALL_STATE(5967)] = 222075, - [SMALL_STATE(5968)] = 222140, - [SMALL_STATE(5969)] = 222175, - [SMALL_STATE(5970)] = 222210, - [SMALL_STATE(5971)] = 222283, - [SMALL_STATE(5972)] = 222356, - [SMALL_STATE(5973)] = 222429, - [SMALL_STATE(5974)] = 222494, - [SMALL_STATE(5975)] = 222529, - [SMALL_STATE(5976)] = 222594, - [SMALL_STATE(5977)] = 222667, - [SMALL_STATE(5978)] = 222740, - [SMALL_STATE(5979)] = 222775, - [SMALL_STATE(5980)] = 222848, - [SMALL_STATE(5981)] = 222883, - [SMALL_STATE(5982)] = 222918, - [SMALL_STATE(5983)] = 222991, - [SMALL_STATE(5984)] = 223064, - [SMALL_STATE(5985)] = 223129, - [SMALL_STATE(5986)] = 223194, - [SMALL_STATE(5987)] = 223267, - [SMALL_STATE(5988)] = 223332, - [SMALL_STATE(5989)] = 223397, - [SMALL_STATE(5990)] = 223440, - [SMALL_STATE(5991)] = 223475, - [SMALL_STATE(5992)] = 223548, - [SMALL_STATE(5993)] = 223583, - [SMALL_STATE(5994)] = 223648, - [SMALL_STATE(5995)] = 223713, - [SMALL_STATE(5996)] = 223786, - [SMALL_STATE(5997)] = 223859, - [SMALL_STATE(5998)] = 223900, - [SMALL_STATE(5999)] = 223973, - [SMALL_STATE(6000)] = 224046, - [SMALL_STATE(6001)] = 224119, - [SMALL_STATE(6002)] = 224162, - [SMALL_STATE(6003)] = 224197, - [SMALL_STATE(6004)] = 224232, - [SMALL_STATE(6005)] = 224305, - [SMALL_STATE(6006)] = 224342, - [SMALL_STATE(6007)] = 224376, - [SMALL_STATE(6008)] = 224410, - [SMALL_STATE(6009)] = 224444, - [SMALL_STATE(6010)] = 224508, - [SMALL_STATE(6011)] = 224542, - [SMALL_STATE(6012)] = 224576, - [SMALL_STATE(6013)] = 224610, - [SMALL_STATE(6014)] = 224644, - [SMALL_STATE(6015)] = 224678, - [SMALL_STATE(6016)] = 224712, - [SMALL_STATE(6017)] = 224746, - [SMALL_STATE(6018)] = 224780, - [SMALL_STATE(6019)] = 224820, - [SMALL_STATE(6020)] = 224854, - [SMALL_STATE(6021)] = 224888, - [SMALL_STATE(6022)] = 224922, - [SMALL_STATE(6023)] = 224986, - [SMALL_STATE(6024)] = 225020, - [SMALL_STATE(6025)] = 225054, - [SMALL_STATE(6026)] = 225088, - [SMALL_STATE(6027)] = 225122, - [SMALL_STATE(6028)] = 225156, - [SMALL_STATE(6029)] = 225190, - [SMALL_STATE(6030)] = 225224, - [SMALL_STATE(6031)] = 225288, - [SMALL_STATE(6032)] = 225322, - [SMALL_STATE(6033)] = 225356, - [SMALL_STATE(6034)] = 225398, - [SMALL_STATE(6035)] = 225432, - [SMALL_STATE(6036)] = 225466, - [SMALL_STATE(6037)] = 225500, - [SMALL_STATE(6038)] = 225534, - [SMALL_STATE(6039)] = 225568, - [SMALL_STATE(6040)] = 225602, - [SMALL_STATE(6041)] = 225636, - [SMALL_STATE(6042)] = 225670, - [SMALL_STATE(6043)] = 225704, - [SMALL_STATE(6044)] = 225738, - [SMALL_STATE(6045)] = 225772, - [SMALL_STATE(6046)] = 225806, - [SMALL_STATE(6047)] = 225840, - [SMALL_STATE(6048)] = 225874, - [SMALL_STATE(6049)] = 225908, - [SMALL_STATE(6050)] = 225942, - [SMALL_STATE(6051)] = 225976, - [SMALL_STATE(6052)] = 226010, - [SMALL_STATE(6053)] = 226044, - [SMALL_STATE(6054)] = 226078, - [SMALL_STATE(6055)] = 226139, - [SMALL_STATE(6056)] = 226196, - [SMALL_STATE(6057)] = 226233, - [SMALL_STATE(6058)] = 226270, - [SMALL_STATE(6059)] = 226307, - [SMALL_STATE(6060)] = 226344, - [SMALL_STATE(6061)] = 226405, - [SMALL_STATE(6062)] = 226442, - [SMALL_STATE(6063)] = 226483, - [SMALL_STATE(6064)] = 226544, - [SMALL_STATE(6065)] = 226605, - [SMALL_STATE(6066)] = 226642, - [SMALL_STATE(6067)] = 226699, - [SMALL_STATE(6068)] = 226736, - [SMALL_STATE(6069)] = 226773, - [SMALL_STATE(6070)] = 226834, - [SMALL_STATE(6071)] = 226895, - [SMALL_STATE(6072)] = 226952, - [SMALL_STATE(6073)] = 226989, - [SMALL_STATE(6074)] = 227026, - [SMALL_STATE(6075)] = 227063, - [SMALL_STATE(6076)] = 227100, - [SMALL_STATE(6077)] = 227137, - [SMALL_STATE(6078)] = 227174, - [SMALL_STATE(6079)] = 227211, - [SMALL_STATE(6080)] = 227248, - [SMALL_STATE(6081)] = 227285, - [SMALL_STATE(6082)] = 227342, - [SMALL_STATE(6083)] = 227379, - [SMALL_STATE(6084)] = 227416, - [SMALL_STATE(6085)] = 227453, - [SMALL_STATE(6086)] = 227490, - [SMALL_STATE(6087)] = 227527, - [SMALL_STATE(6088)] = 227564, - [SMALL_STATE(6089)] = 227601, - [SMALL_STATE(6090)] = 227638, - [SMALL_STATE(6091)] = 227694, - [SMALL_STATE(6092)] = 227750, - [SMALL_STATE(6093)] = 227806, - [SMALL_STATE(6094)] = 227862, - [SMALL_STATE(6095)] = 227924, - [SMALL_STATE(6096)] = 227972, - [SMALL_STATE(6097)] = 228028, - [SMALL_STATE(6098)] = 228084, - [SMALL_STATE(6099)] = 228118, - [SMALL_STATE(6100)] = 228180, - [SMALL_STATE(6101)] = 228242, - [SMALL_STATE(6102)] = 228298, - [SMALL_STATE(6103)] = 228346, - [SMALL_STATE(6104)] = 228402, - [SMALL_STATE(6105)] = 228458, - [SMALL_STATE(6106)] = 228514, - [SMALL_STATE(6107)] = 228576, - [SMALL_STATE(6108)] = 228632, - [SMALL_STATE(6109)] = 228688, - [SMALL_STATE(6110)] = 228736, - [SMALL_STATE(6111)] = 228792, - [SMALL_STATE(6112)] = 228848, - [SMALL_STATE(6113)] = 228910, - [SMALL_STATE(6114)] = 228966, - [SMALL_STATE(6115)] = 229028, - [SMALL_STATE(6116)] = 229084, - [SMALL_STATE(6117)] = 229135, - [SMALL_STATE(6118)] = 229190, - [SMALL_STATE(6119)] = 229245, - [SMALL_STATE(6120)] = 229296, - [SMALL_STATE(6121)] = 229347, - [SMALL_STATE(6122)] = 229398, - [SMALL_STATE(6123)] = 229449, - [SMALL_STATE(6124)] = 229504, - [SMALL_STATE(6125)] = 229559, - [SMALL_STATE(6126)] = 229614, - [SMALL_STATE(6127)] = 229665, - [SMALL_STATE(6128)] = 229716, - [SMALL_STATE(6129)] = 229767, - [SMALL_STATE(6130)] = 229818, - [SMALL_STATE(6131)] = 229869, - [SMALL_STATE(6132)] = 229920, - [SMALL_STATE(6133)] = 229975, - [SMALL_STATE(6134)] = 230026, - [SMALL_STATE(6135)] = 230065, - [SMALL_STATE(6136)] = 230116, - [SMALL_STATE(6137)] = 230171, - [SMALL_STATE(6138)] = 230226, - [SMALL_STATE(6139)] = 230281, - [SMALL_STATE(6140)] = 230332, - [SMALL_STATE(6141)] = 230383, - [SMALL_STATE(6142)] = 230434, - [SMALL_STATE(6143)] = 230489, - [SMALL_STATE(6144)] = 230544, - [SMALL_STATE(6145)] = 230599, - [SMALL_STATE(6146)] = 230650, - [SMALL_STATE(6147)] = 230701, - [SMALL_STATE(6148)] = 230738, - [SMALL_STATE(6149)] = 230789, - [SMALL_STATE(6150)] = 230840, - [SMALL_STATE(6151)] = 230908, - [SMALL_STATE(6152)] = 230960, - [SMALL_STATE(6153)] = 231012, - [SMALL_STATE(6154)] = 231064, - [SMALL_STATE(6155)] = 231114, - [SMALL_STATE(6156)] = 231166, - [SMALL_STATE(6157)] = 231234, - [SMALL_STATE(6158)] = 231286, - [SMALL_STATE(6159)] = 231354, - [SMALL_STATE(6160)] = 231406, - [SMALL_STATE(6161)] = 231456, - [SMALL_STATE(6162)] = 231508, - [SMALL_STATE(6163)] = 231554, - [SMALL_STATE(6164)] = 231608, - [SMALL_STATE(6165)] = 231658, - [SMALL_STATE(6166)] = 231704, - [SMALL_STATE(6167)] = 231756, - [SMALL_STATE(6168)] = 231808, - [SMALL_STATE(6169)] = 231860, - [SMALL_STATE(6170)] = 231912, - [SMALL_STATE(6171)] = 231964, - [SMALL_STATE(6172)] = 232016, - [SMALL_STATE(6173)] = 232068, - [SMALL_STATE(6174)] = 232120, - [SMALL_STATE(6175)] = 232172, - [SMALL_STATE(6176)] = 232224, - [SMALL_STATE(6177)] = 232278, - [SMALL_STATE(6178)] = 232332, - [SMALL_STATE(6179)] = 232384, - [SMALL_STATE(6180)] = 232436, - [SMALL_STATE(6181)] = 232488, - [SMALL_STATE(6182)] = 232540, - [SMALL_STATE(6183)] = 232592, - [SMALL_STATE(6184)] = 232644, - [SMALL_STATE(6185)] = 232696, - [SMALL_STATE(6186)] = 232748, - [SMALL_STATE(6187)] = 232800, - [SMALL_STATE(6188)] = 232852, - [SMALL_STATE(6189)] = 232904, - [SMALL_STATE(6190)] = 232954, - [SMALL_STATE(6191)] = 233008, - [SMALL_STATE(6192)] = 233058, - [SMALL_STATE(6193)] = 233108, - [SMALL_STATE(6194)] = 233160, - [SMALL_STATE(6195)] = 233212, - [SMALL_STATE(6196)] = 233262, - [SMALL_STATE(6197)] = 233314, - [SMALL_STATE(6198)] = 233366, - [SMALL_STATE(6199)] = 233418, - [SMALL_STATE(6200)] = 233452, - [SMALL_STATE(6201)] = 233502, - [SMALL_STATE(6202)] = 233572, - [SMALL_STATE(6203)] = 233624, - [SMALL_STATE(6204)] = 233676, - [SMALL_STATE(6205)] = 233728, - [SMALL_STATE(6206)] = 233798, - [SMALL_STATE(6207)] = 233868, - [SMALL_STATE(6208)] = 233936, - [SMALL_STATE(6209)] = 233988, - [SMALL_STATE(6210)] = 234040, - [SMALL_STATE(6211)] = 234090, - [SMALL_STATE(6212)] = 234140, - [SMALL_STATE(6213)] = 234192, - [SMALL_STATE(6214)] = 234247, - [SMALL_STATE(6215)] = 234302, - [SMALL_STATE(6216)] = 234351, - [SMALL_STATE(6217)] = 234384, - [SMALL_STATE(6218)] = 234433, - [SMALL_STATE(6219)] = 234482, - [SMALL_STATE(6220)] = 234531, - [SMALL_STATE(6221)] = 234560, - [SMALL_STATE(6222)] = 234609, - [SMALL_STATE(6223)] = 234658, - [SMALL_STATE(6224)] = 234707, - [SMALL_STATE(6225)] = 234756, - [SMALL_STATE(6226)] = 234805, - [SMALL_STATE(6227)] = 234854, - [SMALL_STATE(6228)] = 234903, - [SMALL_STATE(6229)] = 234932, - [SMALL_STATE(6230)] = 234981, - [SMALL_STATE(6231)] = 235030, - [SMALL_STATE(6232)] = 235079, - [SMALL_STATE(6233)] = 235128, - [SMALL_STATE(6234)] = 235177, - [SMALL_STATE(6235)] = 235226, - [SMALL_STATE(6236)] = 235269, - [SMALL_STATE(6237)] = 235314, - [SMALL_STATE(6238)] = 235377, - [SMALL_STATE(6239)] = 235420, - [SMALL_STATE(6240)] = 235469, - [SMALL_STATE(6241)] = 235512, - [SMALL_STATE(6242)] = 235561, - [SMALL_STATE(6243)] = 235616, - [SMALL_STATE(6244)] = 235665, - [SMALL_STATE(6245)] = 235729, - [SMALL_STATE(6246)] = 235785, - [SMALL_STATE(6247)] = 235841, - [SMALL_STATE(6248)] = 235889, - [SMALL_STATE(6249)] = 235929, - [SMALL_STATE(6250)] = 235969, - [SMALL_STATE(6251)] = 236009, - [SMALL_STATE(6252)] = 236061, - [SMALL_STATE(6253)] = 236101, - [SMALL_STATE(6254)] = 236141, - [SMALL_STATE(6255)] = 236197, - [SMALL_STATE(6256)] = 236237, - [SMALL_STATE(6257)] = 236281, - [SMALL_STATE(6258)] = 236345, - [SMALL_STATE(6259)] = 236385, - [SMALL_STATE(6260)] = 236425, - [SMALL_STATE(6261)] = 236465, - [SMALL_STATE(6262)] = 236505, - [SMALL_STATE(6263)] = 236545, - [SMALL_STATE(6264)] = 236585, - [SMALL_STATE(6265)] = 236625, - [SMALL_STATE(6266)] = 236665, - [SMALL_STATE(6267)] = 236729, - [SMALL_STATE(6268)] = 236777, - [SMALL_STATE(6269)] = 236835, - [SMALL_STATE(6270)] = 236899, - [SMALL_STATE(6271)] = 236943, - [SMALL_STATE(6272)] = 236999, - [SMALL_STATE(6273)] = 237039, - [SMALL_STATE(6274)] = 237095, - [SMALL_STATE(6275)] = 237151, - [SMALL_STATE(6276)] = 237191, - [SMALL_STATE(6277)] = 237247, - [SMALL_STATE(6278)] = 237303, - [SMALL_STATE(6279)] = 237351, - [SMALL_STATE(6280)] = 237399, - [SMALL_STATE(6281)] = 237455, - [SMALL_STATE(6282)] = 237499, - [SMALL_STATE(6283)] = 237563, - [SMALL_STATE(6284)] = 237615, - [SMALL_STATE(6285)] = 237655, - [SMALL_STATE(6286)] = 237683, - [SMALL_STATE(6287)] = 237739, - [SMALL_STATE(6288)] = 237795, - [SMALL_STATE(6289)] = 237851, - [SMALL_STATE(6290)] = 237891, - [SMALL_STATE(6291)] = 237947, - [SMALL_STATE(6292)] = 238003, - [SMALL_STATE(6293)] = 238061, - [SMALL_STATE(6294)] = 238109, - [SMALL_STATE(6295)] = 238149, - [SMALL_STATE(6296)] = 238207, - [SMALL_STATE(6297)] = 238247, - [SMALL_STATE(6298)] = 238303, - [SMALL_STATE(6299)] = 238359, - [SMALL_STATE(6300)] = 238415, - [SMALL_STATE(6301)] = 238463, - [SMALL_STATE(6302)] = 238519, - [SMALL_STATE(6303)] = 238575, - [SMALL_STATE(6304)] = 238615, - [SMALL_STATE(6305)] = 238667, - [SMALL_STATE(6306)] = 238695, - [SMALL_STATE(6307)] = 238743, - [SMALL_STATE(6308)] = 238799, - [SMALL_STATE(6309)] = 238839, - [SMALL_STATE(6310)] = 238867, - [SMALL_STATE(6311)] = 238923, - [SMALL_STATE(6312)] = 238951, - [SMALL_STATE(6313)] = 239015, - [SMALL_STATE(6314)] = 239043, - [SMALL_STATE(6315)] = 239087, - [SMALL_STATE(6316)] = 239127, - [SMALL_STATE(6317)] = 239183, - [SMALL_STATE(6318)] = 239235, - [SMALL_STATE(6319)] = 239291, - [SMALL_STATE(6320)] = 239331, - [SMALL_STATE(6321)] = 239371, - [SMALL_STATE(6322)] = 239423, - [SMALL_STATE(6323)] = 239479, - [SMALL_STATE(6324)] = 239531, - [SMALL_STATE(6325)] = 239595, - [SMALL_STATE(6326)] = 239643, - [SMALL_STATE(6327)] = 239687, - [SMALL_STATE(6328)] = 239743, - [SMALL_STATE(6329)] = 239799, - [SMALL_STATE(6330)] = 239855, - [SMALL_STATE(6331)] = 239911, - [SMALL_STATE(6332)] = 239939, - [SMALL_STATE(6333)] = 239987, - [SMALL_STATE(6334)] = 240035, - [SMALL_STATE(6335)] = 240079, - [SMALL_STATE(6336)] = 240123, - [SMALL_STATE(6337)] = 240171, - [SMALL_STATE(6338)] = 240199, - [SMALL_STATE(6339)] = 240227, - [SMALL_STATE(6340)] = 240283, - [SMALL_STATE(6341)] = 240339, - [SMALL_STATE(6342)] = 240395, - [SMALL_STATE(6343)] = 240447, - [SMALL_STATE(6344)] = 240495, - [SMALL_STATE(6345)] = 240535, - [SMALL_STATE(6346)] = 240583, - [SMALL_STATE(6347)] = 240641, - [SMALL_STATE(6348)] = 240697, - [SMALL_STATE(6349)] = 240753, - [SMALL_STATE(6350)] = 240811, - [SMALL_STATE(6351)] = 240867, - [SMALL_STATE(6352)] = 240917, - [SMALL_STATE(6353)] = 240973, - [SMALL_STATE(6354)] = 241029, - [SMALL_STATE(6355)] = 241069, - [SMALL_STATE(6356)] = 241117, - [SMALL_STATE(6357)] = 241173, - [SMALL_STATE(6358)] = 241229, - [SMALL_STATE(6359)] = 241277, - [SMALL_STATE(6360)] = 241329, - [SMALL_STATE(6361)] = 241377, - [SMALL_STATE(6362)] = 241421, - [SMALL_STATE(6363)] = 241477, - [SMALL_STATE(6364)] = 241541, - [SMALL_STATE(6365)] = 241597, - [SMALL_STATE(6366)] = 241653, - [SMALL_STATE(6367)] = 241709, - [SMALL_STATE(6368)] = 241765, - [SMALL_STATE(6369)] = 241821, - [SMALL_STATE(6370)] = 241877, - [SMALL_STATE(6371)] = 241933, - [SMALL_STATE(6372)] = 241985, - [SMALL_STATE(6373)] = 242041, - [SMALL_STATE(6374)] = 242089, - [SMALL_STATE(6375)] = 242145, - [SMALL_STATE(6376)] = 242173, - [SMALL_STATE(6377)] = 242213, - [SMALL_STATE(6378)] = 242257, - [SMALL_STATE(6379)] = 242315, - [SMALL_STATE(6380)] = 242355, - [SMALL_STATE(6381)] = 242395, - [SMALL_STATE(6382)] = 242427, - [SMALL_STATE(6383)] = 242471, - [SMALL_STATE(6384)] = 242499, - [SMALL_STATE(6385)] = 242555, - [SMALL_STATE(6386)] = 242611, - [SMALL_STATE(6387)] = 242663, - [SMALL_STATE(6388)] = 242715, - [SMALL_STATE(6389)] = 242779, - [SMALL_STATE(6390)] = 242835, - [SMALL_STATE(6391)] = 242879, - [SMALL_STATE(6392)] = 242927, - [SMALL_STATE(6393)] = 242975, - [SMALL_STATE(6394)] = 243031, - [SMALL_STATE(6395)] = 243087, - [SMALL_STATE(6396)] = 243135, - [SMALL_STATE(6397)] = 243191, - [SMALL_STATE(6398)] = 243231, - [SMALL_STATE(6399)] = 243287, - [SMALL_STATE(6400)] = 243331, - [SMALL_STATE(6401)] = 243387, - [SMALL_STATE(6402)] = 243443, - [SMALL_STATE(6403)] = 243487, - [SMALL_STATE(6404)] = 243535, - [SMALL_STATE(6405)] = 243579, - [SMALL_STATE(6406)] = 243635, - [SMALL_STATE(6407)] = 243681, - [SMALL_STATE(6408)] = 243721, - [SMALL_STATE(6409)] = 243773, - [SMALL_STATE(6410)] = 243829, - [SMALL_STATE(6411)] = 243885, - [SMALL_STATE(6412)] = 243941, - [SMALL_STATE(6413)] = 244005, - [SMALL_STATE(6414)] = 244049, - [SMALL_STATE(6415)] = 244095, - [SMALL_STATE(6416)] = 244151, - [SMALL_STATE(6417)] = 244207, - [SMALL_STATE(6418)] = 244263, - [SMALL_STATE(6419)] = 244319, - [SMALL_STATE(6420)] = 244383, - [SMALL_STATE(6421)] = 244431, - [SMALL_STATE(6422)] = 244495, - [SMALL_STATE(6423)] = 244543, - [SMALL_STATE(6424)] = 244599, - [SMALL_STATE(6425)] = 244655, - [SMALL_STATE(6426)] = 244699, - [SMALL_STATE(6427)] = 244755, - [SMALL_STATE(6428)] = 244811, - [SMALL_STATE(6429)] = 244855, - [SMALL_STATE(6430)] = 244903, - [SMALL_STATE(6431)] = 244947, - [SMALL_STATE(6432)] = 245003, - [SMALL_STATE(6433)] = 245043, - [SMALL_STATE(6434)] = 245101, - [SMALL_STATE(6435)] = 245141, - [SMALL_STATE(6436)] = 245181, - [SMALL_STATE(6437)] = 245239, - [SMALL_STATE(6438)] = 245283, - [SMALL_STATE(6439)] = 245325, - [SMALL_STATE(6440)] = 245381, - [SMALL_STATE(6441)] = 245437, - [SMALL_STATE(6442)] = 245481, - [SMALL_STATE(6443)] = 245545, - [SMALL_STATE(6444)] = 245601, - [SMALL_STATE(6445)] = 245641, - [SMALL_STATE(6446)] = 245697, - [SMALL_STATE(6447)] = 245745, - [SMALL_STATE(6448)] = 245781, - [SMALL_STATE(6449)] = 245839, - [SMALL_STATE(6450)] = 245895, - [SMALL_STATE(6451)] = 245939, - [SMALL_STATE(6452)] = 245995, - [SMALL_STATE(6453)] = 246039, - [SMALL_STATE(6454)] = 246095, - [SMALL_STATE(6455)] = 246139, - [SMALL_STATE(6456)] = 246195, - [SMALL_STATE(6457)] = 246251, - [SMALL_STATE(6458)] = 246307, - [SMALL_STATE(6459)] = 246355, - [SMALL_STATE(6460)] = 246411, - [SMALL_STATE(6461)] = 246455, - [SMALL_STATE(6462)] = 246503, - [SMALL_STATE(6463)] = 246551, - [SMALL_STATE(6464)] = 246607, - [SMALL_STATE(6465)] = 246655, - [SMALL_STATE(6466)] = 246711, - [SMALL_STATE(6467)] = 246759, - [SMALL_STATE(6468)] = 246793, - [SMALL_STATE(6469)] = 246841, - [SMALL_STATE(6470)] = 246897, - [SMALL_STATE(6471)] = 246937, - [SMALL_STATE(6472)] = 246993, - [SMALL_STATE(6473)] = 247040, - [SMALL_STATE(6474)] = 247071, - [SMALL_STATE(6475)] = 247098, - [SMALL_STATE(6476)] = 247125, - [SMALL_STATE(6477)] = 247154, - [SMALL_STATE(6478)] = 247211, - [SMALL_STATE(6479)] = 247238, - [SMALL_STATE(6480)] = 247287, - [SMALL_STATE(6481)] = 247338, - [SMALL_STATE(6482)] = 247365, - [SMALL_STATE(6483)] = 247392, - [SMALL_STATE(6484)] = 247419, - [SMALL_STATE(6485)] = 247448, - [SMALL_STATE(6486)] = 247493, - [SMALL_STATE(6487)] = 247550, - [SMALL_STATE(6488)] = 247577, - [SMALL_STATE(6489)] = 247634, - [SMALL_STATE(6490)] = 247661, - [SMALL_STATE(6491)] = 247688, - [SMALL_STATE(6492)] = 247735, - [SMALL_STATE(6493)] = 247762, - [SMALL_STATE(6494)] = 247793, - [SMALL_STATE(6495)] = 247820, - [SMALL_STATE(6496)] = 247847, - [SMALL_STATE(6497)] = 247874, - [SMALL_STATE(6498)] = 247901, - [SMALL_STATE(6499)] = 247932, - [SMALL_STATE(6500)] = 247963, - [SMALL_STATE(6501)] = 247990, - [SMALL_STATE(6502)] = 248021, - [SMALL_STATE(6503)] = 248048, - [SMALL_STATE(6504)] = 248077, - [SMALL_STATE(6505)] = 248104, - [SMALL_STATE(6506)] = 248131, - [SMALL_STATE(6507)] = 248176, - [SMALL_STATE(6508)] = 248203, - [SMALL_STATE(6509)] = 248230, - [SMALL_STATE(6510)] = 248281, - [SMALL_STATE(6511)] = 248326, - [SMALL_STATE(6512)] = 248353, - [SMALL_STATE(6513)] = 248380, - [SMALL_STATE(6514)] = 248407, - [SMALL_STATE(6515)] = 248434, - [SMALL_STATE(6516)] = 248465, - [SMALL_STATE(6517)] = 248510, - [SMALL_STATE(6518)] = 248555, - [SMALL_STATE(6519)] = 248612, - [SMALL_STATE(6520)] = 248643, - [SMALL_STATE(6521)] = 248670, - [SMALL_STATE(6522)] = 248697, - [SMALL_STATE(6523)] = 248742, - [SMALL_STATE(6524)] = 248789, - [SMALL_STATE(6525)] = 248816, - [SMALL_STATE(6526)] = 248873, - [SMALL_STATE(6527)] = 248924, - [SMALL_STATE(6528)] = 248955, - [SMALL_STATE(6529)] = 248982, - [SMALL_STATE(6530)] = 249009, - [SMALL_STATE(6531)] = 249052, - [SMALL_STATE(6532)] = 249083, - [SMALL_STATE(6533)] = 249130, - [SMALL_STATE(6534)] = 249175, - [SMALL_STATE(6535)] = 249206, - [SMALL_STATE(6536)] = 249233, - [SMALL_STATE(6537)] = 249284, - [SMALL_STATE(6538)] = 249331, - [SMALL_STATE(6539)] = 249364, - [SMALL_STATE(6540)] = 249409, - [SMALL_STATE(6541)] = 249454, - [SMALL_STATE(6542)] = 249499, - [SMALL_STATE(6543)] = 249534, - [SMALL_STATE(6544)] = 249561, - [SMALL_STATE(6545)] = 249598, - [SMALL_STATE(6546)] = 249625, - [SMALL_STATE(6547)] = 249652, - [SMALL_STATE(6548)] = 249709, - [SMALL_STATE(6549)] = 249736, - [SMALL_STATE(6550)] = 249775, - [SMALL_STATE(6551)] = 249806, - [SMALL_STATE(6552)] = 249847, - [SMALL_STATE(6553)] = 249892, - [SMALL_STATE(6554)] = 249919, - [SMALL_STATE(6555)] = 249966, - [SMALL_STATE(6556)] = 250013, - [SMALL_STATE(6557)] = 250044, - [SMALL_STATE(6558)] = 250071, - [SMALL_STATE(6559)] = 250114, - [SMALL_STATE(6560)] = 250141, - [SMALL_STATE(6561)] = 250188, - [SMALL_STATE(6562)] = 250237, - [SMALL_STATE(6563)] = 250264, - [SMALL_STATE(6564)] = 250291, - [SMALL_STATE(6565)] = 250318, - [SMALL_STATE(6566)] = 250345, - [SMALL_STATE(6567)] = 250392, - [SMALL_STATE(6568)] = 250437, - [SMALL_STATE(6569)] = 250464, - [SMALL_STATE(6570)] = 250493, - [SMALL_STATE(6571)] = 250540, - [SMALL_STATE(6572)] = 250571, - [SMALL_STATE(6573)] = 250613, - [SMALL_STATE(6574)] = 250655, - [SMALL_STATE(6575)] = 250689, - [SMALL_STATE(6576)] = 250731, - [SMALL_STATE(6577)] = 250783, - [SMALL_STATE(6578)] = 250835, - [SMALL_STATE(6579)] = 250877, - [SMALL_STATE(6580)] = 250911, - [SMALL_STATE(6581)] = 250945, - [SMALL_STATE(6582)] = 250979, - [SMALL_STATE(6583)] = 251013, - [SMALL_STATE(6584)] = 251047, - [SMALL_STATE(6585)] = 251099, - [SMALL_STATE(6586)] = 251129, - [SMALL_STATE(6587)] = 251163, - [SMALL_STATE(6588)] = 251197, - [SMALL_STATE(6589)] = 251231, - [SMALL_STATE(6590)] = 251273, - [SMALL_STATE(6591)] = 251315, - [SMALL_STATE(6592)] = 251367, - [SMALL_STATE(6593)] = 251409, - [SMALL_STATE(6594)] = 251443, - [SMALL_STATE(6595)] = 251495, - [SMALL_STATE(6596)] = 251537, - [SMALL_STATE(6597)] = 251579, - [SMALL_STATE(6598)] = 251621, - [SMALL_STATE(6599)] = 251655, - [SMALL_STATE(6600)] = 251689, - [SMALL_STATE(6601)] = 251731, - [SMALL_STATE(6602)] = 251765, - [SMALL_STATE(6603)] = 251807, - [SMALL_STATE(6604)] = 251849, - [SMALL_STATE(6605)] = 251901, - [SMALL_STATE(6606)] = 251935, - [SMALL_STATE(6607)] = 251987, - [SMALL_STATE(6608)] = 252021, - [SMALL_STATE(6609)] = 252055, - [SMALL_STATE(6610)] = 252097, - [SMALL_STATE(6611)] = 252139, - [SMALL_STATE(6612)] = 252184, - [SMALL_STATE(6613)] = 252233, - [SMALL_STATE(6614)] = 252274, - [SMALL_STATE(6615)] = 252299, - [SMALL_STATE(6616)] = 252324, - [SMALL_STATE(6617)] = 252365, - [SMALL_STATE(6618)] = 252414, - [SMALL_STATE(6619)] = 252455, - [SMALL_STATE(6620)] = 252504, - [SMALL_STATE(6621)] = 252529, - [SMALL_STATE(6622)] = 252578, - [SMALL_STATE(6623)] = 252603, - [SMALL_STATE(6624)] = 252628, - [SMALL_STATE(6625)] = 252669, - [SMALL_STATE(6626)] = 252718, - [SMALL_STATE(6627)] = 252759, - [SMALL_STATE(6628)] = 252800, - [SMALL_STATE(6629)] = 252845, - [SMALL_STATE(6630)] = 252886, - [SMALL_STATE(6631)] = 252917, - [SMALL_STATE(6632)] = 252966, - [SMALL_STATE(6633)] = 253015, - [SMALL_STATE(6634)] = 253064, - [SMALL_STATE(6635)] = 253113, - [SMALL_STATE(6636)] = 253162, - [SMALL_STATE(6637)] = 253187, - [SMALL_STATE(6638)] = 253236, - [SMALL_STATE(6639)] = 253281, - [SMALL_STATE(6640)] = 253322, - [SMALL_STATE(6641)] = 253363, - [SMALL_STATE(6642)] = 253412, - [SMALL_STATE(6643)] = 253461, - [SMALL_STATE(6644)] = 253486, - [SMALL_STATE(6645)] = 253527, - [SMALL_STATE(6646)] = 253552, - [SMALL_STATE(6647)] = 253593, - [SMALL_STATE(6648)] = 253642, - [SMALL_STATE(6649)] = 253687, - [SMALL_STATE(6650)] = 253728, - [SMALL_STATE(6651)] = 253771, - [SMALL_STATE(6652)] = 253816, - [SMALL_STATE(6653)] = 253861, - [SMALL_STATE(6654)] = 253906, - [SMALL_STATE(6655)] = 253931, - [SMALL_STATE(6656)] = 253976, - [SMALL_STATE(6657)] = 254021, - [SMALL_STATE(6658)] = 254066, - [SMALL_STATE(6659)] = 254091, - [SMALL_STATE(6660)] = 254134, - [SMALL_STATE(6661)] = 254175, - [SMALL_STATE(6662)] = 254206, - [SMALL_STATE(6663)] = 254255, - [SMALL_STATE(6664)] = 254300, - [SMALL_STATE(6665)] = 254341, - [SMALL_STATE(6666)] = 254386, - [SMALL_STATE(6667)] = 254431, - [SMALL_STATE(6668)] = 254472, - [SMALL_STATE(6669)] = 254497, - [SMALL_STATE(6670)] = 254538, - [SMALL_STATE(6671)] = 254579, - [SMALL_STATE(6672)] = 254628, - [SMALL_STATE(6673)] = 254653, - [SMALL_STATE(6674)] = 254696, - [SMALL_STATE(6675)] = 254741, - [SMALL_STATE(6676)] = 254790, - [SMALL_STATE(6677)] = 254815, - [SMALL_STATE(6678)] = 254856, - [SMALL_STATE(6679)] = 254881, - [SMALL_STATE(6680)] = 254926, - [SMALL_STATE(6681)] = 254975, - [SMALL_STATE(6682)] = 255020, - [SMALL_STATE(6683)] = 255061, - [SMALL_STATE(6684)] = 255106, - [SMALL_STATE(6685)] = 255155, - [SMALL_STATE(6686)] = 255204, - [SMALL_STATE(6687)] = 255249, - [SMALL_STATE(6688)] = 255298, - [SMALL_STATE(6689)] = 255343, - [SMALL_STATE(6690)] = 255368, - [SMALL_STATE(6691)] = 255409, - [SMALL_STATE(6692)] = 255458, - [SMALL_STATE(6693)] = 255499, - [SMALL_STATE(6694)] = 255550, - [SMALL_STATE(6695)] = 255599, - [SMALL_STATE(6696)] = 255642, - [SMALL_STATE(6697)] = 255691, - [SMALL_STATE(6698)] = 255732, - [SMALL_STATE(6699)] = 255757, - [SMALL_STATE(6700)] = 255806, - [SMALL_STATE(6701)] = 255831, - [SMALL_STATE(6702)] = 255856, - [SMALL_STATE(6703)] = 255881, - [SMALL_STATE(6704)] = 255922, - [SMALL_STATE(6705)] = 255947, - [SMALL_STATE(6706)] = 255972, - [SMALL_STATE(6707)] = 256017, - [SMALL_STATE(6708)] = 256042, - [SMALL_STATE(6709)] = 256091, - [SMALL_STATE(6710)] = 256116, - [SMALL_STATE(6711)] = 256142, - [SMALL_STATE(6712)] = 256182, - [SMALL_STATE(6713)] = 256208, - [SMALL_STATE(6714)] = 256234, - [SMALL_STATE(6715)] = 256260, - [SMALL_STATE(6716)] = 256286, - [SMALL_STATE(6717)] = 256312, - [SMALL_STATE(6718)] = 256338, - [SMALL_STATE(6719)] = 256364, - [SMALL_STATE(6720)] = 256390, - [SMALL_STATE(6721)] = 256430, - [SMALL_STATE(6722)] = 256456, - [SMALL_STATE(6723)] = 256480, - [SMALL_STATE(6724)] = 256510, - [SMALL_STATE(6725)] = 256540, - [SMALL_STATE(6726)] = 256570, - [SMALL_STATE(6727)] = 256600, - [SMALL_STATE(6728)] = 256626, - [SMALL_STATE(6729)] = 256650, - [SMALL_STATE(6730)] = 256694, - [SMALL_STATE(6731)] = 256734, - [SMALL_STATE(6732)] = 256764, - [SMALL_STATE(6733)] = 256804, - [SMALL_STATE(6734)] = 256844, - [SMALL_STATE(6735)] = 256884, - [SMALL_STATE(6736)] = 256924, - [SMALL_STATE(6737)] = 256964, - [SMALL_STATE(6738)] = 257004, - [SMALL_STATE(6739)] = 257044, - [SMALL_STATE(6740)] = 257084, - [SMALL_STATE(6741)] = 257124, - [SMALL_STATE(6742)] = 257164, - [SMALL_STATE(6743)] = 257204, - [SMALL_STATE(6744)] = 257235, - [SMALL_STATE(6745)] = 257264, - [SMALL_STATE(6746)] = 257295, - [SMALL_STATE(6747)] = 257338, - [SMALL_STATE(6748)] = 257381, - [SMALL_STATE(6749)] = 257418, - [SMALL_STATE(6750)] = 257449, - [SMALL_STATE(6751)] = 257486, - [SMALL_STATE(6752)] = 257529, - [SMALL_STATE(6753)] = 257572, - [SMALL_STATE(6754)] = 257609, - [SMALL_STATE(6755)] = 257640, - [SMALL_STATE(6756)] = 257677, - [SMALL_STATE(6757)] = 257708, - [SMALL_STATE(6758)] = 257737, - [SMALL_STATE(6759)] = 257768, - [SMALL_STATE(6760)] = 257811, - [SMALL_STATE(6761)] = 257834, - [SMALL_STATE(6762)] = 257865, - [SMALL_STATE(6763)] = 257902, - [SMALL_STATE(6764)] = 257933, - [SMALL_STATE(6765)] = 257976, - [SMALL_STATE(6766)] = 258013, - [SMALL_STATE(6767)] = 258044, - [SMALL_STATE(6768)] = 258075, - [SMALL_STATE(6769)] = 258106, - [SMALL_STATE(6770)] = 258149, - [SMALL_STATE(6771)] = 258180, - [SMALL_STATE(6772)] = 258217, - [SMALL_STATE(6773)] = 258246, - [SMALL_STATE(6774)] = 258283, - [SMALL_STATE(6775)] = 258306, - [SMALL_STATE(6776)] = 258335, - [SMALL_STATE(6777)] = 258364, - [SMALL_STATE(6778)] = 258393, - [SMALL_STATE(6779)] = 258422, - [SMALL_STATE(6780)] = 258459, - [SMALL_STATE(6781)] = 258488, - [SMALL_STATE(6782)] = 258517, - [SMALL_STATE(6783)] = 258548, - [SMALL_STATE(6784)] = 258585, - [SMALL_STATE(6785)] = 258622, - [SMALL_STATE(6786)] = 258649, - [SMALL_STATE(6787)] = 258692, - [SMALL_STATE(6788)] = 258735, - [SMALL_STATE(6789)] = 258764, - [SMALL_STATE(6790)] = 258793, - [SMALL_STATE(6791)] = 258822, - [SMALL_STATE(6792)] = 258851, - [SMALL_STATE(6793)] = 258882, - [SMALL_STATE(6794)] = 258911, - [SMALL_STATE(6795)] = 258940, - [SMALL_STATE(6796)] = 258969, - [SMALL_STATE(6797)] = 259012, - [SMALL_STATE(6798)] = 259049, - [SMALL_STATE(6799)] = 259076, - [SMALL_STATE(6800)] = 259107, - [SMALL_STATE(6801)] = 259138, - [SMALL_STATE(6802)] = 259175, - [SMALL_STATE(6803)] = 259212, - [SMALL_STATE(6804)] = 259255, - [SMALL_STATE(6805)] = 259284, - [SMALL_STATE(6806)] = 259313, - [SMALL_STATE(6807)] = 259342, - [SMALL_STATE(6808)] = 259371, - [SMALL_STATE(6809)] = 259400, - [SMALL_STATE(6810)] = 259431, - [SMALL_STATE(6811)] = 259468, - [SMALL_STATE(6812)] = 259497, - [SMALL_STATE(6813)] = 259534, - [SMALL_STATE(6814)] = 259565, - [SMALL_STATE(6815)] = 259595, - [SMALL_STATE(6816)] = 259615, - [SMALL_STATE(6817)] = 259653, - [SMALL_STATE(6818)] = 259691, - [SMALL_STATE(6819)] = 259723, - [SMALL_STATE(6820)] = 259763, - [SMALL_STATE(6821)] = 259795, - [SMALL_STATE(6822)] = 259821, - [SMALL_STATE(6823)] = 259853, - [SMALL_STATE(6824)] = 259883, - [SMALL_STATE(6825)] = 259923, - [SMALL_STATE(6826)] = 259943, - [SMALL_STATE(6827)] = 259981, - [SMALL_STATE(6828)] = 260021, - [SMALL_STATE(6829)] = 260061, - [SMALL_STATE(6830)] = 260091, - [SMALL_STATE(6831)] = 260131, - [SMALL_STATE(6832)] = 260155, - [SMALL_STATE(6833)] = 260193, - [SMALL_STATE(6834)] = 260231, - [SMALL_STATE(6835)] = 260253, - [SMALL_STATE(6836)] = 260281, - [SMALL_STATE(6837)] = 260309, - [SMALL_STATE(6838)] = 260333, - [SMALL_STATE(6839)] = 260371, - [SMALL_STATE(6840)] = 260403, - [SMALL_STATE(6841)] = 260435, - [SMALL_STATE(6842)] = 260473, - [SMALL_STATE(6843)] = 260497, - [SMALL_STATE(6844)] = 260527, - [SMALL_STATE(6845)] = 260547, - [SMALL_STATE(6846)] = 260567, - [SMALL_STATE(6847)] = 260587, - [SMALL_STATE(6848)] = 260607, - [SMALL_STATE(6849)] = 260647, - [SMALL_STATE(6850)] = 260685, - [SMALL_STATE(6851)] = 260713, - [SMALL_STATE(6852)] = 260751, - [SMALL_STATE(6853)] = 260789, - [SMALL_STATE(6854)] = 260819, - [SMALL_STATE(6855)] = 260859, - [SMALL_STATE(6856)] = 260897, - [SMALL_STATE(6857)] = 260937, - [SMALL_STATE(6858)] = 260975, - [SMALL_STATE(6859)] = 261013, - [SMALL_STATE(6860)] = 261051, - [SMALL_STATE(6861)] = 261071, - [SMALL_STATE(6862)] = 261097, - [SMALL_STATE(6863)] = 261129, - [SMALL_STATE(6864)] = 261167, - [SMALL_STATE(6865)] = 261197, - [SMALL_STATE(6866)] = 261229, - [SMALL_STATE(6867)] = 261261, - [SMALL_STATE(6868)] = 261293, - [SMALL_STATE(6869)] = 261321, - [SMALL_STATE(6870)] = 261341, - [SMALL_STATE(6871)] = 261381, - [SMALL_STATE(6872)] = 261409, - [SMALL_STATE(6873)] = 261437, - [SMALL_STATE(6874)] = 261465, - [SMALL_STATE(6875)] = 261485, - [SMALL_STATE(6876)] = 261513, - [SMALL_STATE(6877)] = 261545, - [SMALL_STATE(6878)] = 261575, - [SMALL_STATE(6879)] = 261595, - [SMALL_STATE(6880)] = 261615, - [SMALL_STATE(6881)] = 261655, - [SMALL_STATE(6882)] = 261675, - [SMALL_STATE(6883)] = 261703, - [SMALL_STATE(6884)] = 261733, - [SMALL_STATE(6885)] = 261765, - [SMALL_STATE(6886)] = 261785, - [SMALL_STATE(6887)] = 261825, - [SMALL_STATE(6888)] = 261851, - [SMALL_STATE(6889)] = 261883, - [SMALL_STATE(6890)] = 261915, - [SMALL_STATE(6891)] = 261955, - [SMALL_STATE(6892)] = 261975, - [SMALL_STATE(6893)] = 262015, - [SMALL_STATE(6894)] = 262055, - [SMALL_STATE(6895)] = 262075, - [SMALL_STATE(6896)] = 262095, - [SMALL_STATE(6897)] = 262115, - [SMALL_STATE(6898)] = 262135, - [SMALL_STATE(6899)] = 262155, - [SMALL_STATE(6900)] = 262195, - [SMALL_STATE(6901)] = 262215, - [SMALL_STATE(6902)] = 262255, - [SMALL_STATE(6903)] = 262275, - [SMALL_STATE(6904)] = 262307, - [SMALL_STATE(6905)] = 262347, - [SMALL_STATE(6906)] = 262367, - [SMALL_STATE(6907)] = 262397, - [SMALL_STATE(6908)] = 262427, - [SMALL_STATE(6909)] = 262459, - [SMALL_STATE(6910)] = 262489, - [SMALL_STATE(6911)] = 262519, - [SMALL_STATE(6912)] = 262549, - [SMALL_STATE(6913)] = 262569, - [SMALL_STATE(6914)] = 262599, - [SMALL_STATE(6915)] = 262620, - [SMALL_STATE(6916)] = 262641, - [SMALL_STATE(6917)] = 262668, - [SMALL_STATE(6918)] = 262689, - [SMALL_STATE(6919)] = 262714, - [SMALL_STATE(6920)] = 262741, - [SMALL_STATE(6921)] = 262778, - [SMALL_STATE(6922)] = 262803, - [SMALL_STATE(6923)] = 262830, - [SMALL_STATE(6924)] = 262867, - [SMALL_STATE(6925)] = 262904, - [SMALL_STATE(6926)] = 262941, - [SMALL_STATE(6927)] = 262968, - [SMALL_STATE(6928)] = 262997, - [SMALL_STATE(6929)] = 263024, - [SMALL_STATE(6930)] = 263053, - [SMALL_STATE(6931)] = 263078, - [SMALL_STATE(6932)] = 263105, - [SMALL_STATE(6933)] = 263142, - [SMALL_STATE(6934)] = 263167, - [SMALL_STATE(6935)] = 263196, - [SMALL_STATE(6936)] = 263223, - [SMALL_STATE(6937)] = 263260, - [SMALL_STATE(6938)] = 263297, - [SMALL_STATE(6939)] = 263322, - [SMALL_STATE(6940)] = 263351, - [SMALL_STATE(6941)] = 263378, - [SMALL_STATE(6942)] = 263415, - [SMALL_STATE(6943)] = 263444, - [SMALL_STATE(6944)] = 263473, - [SMALL_STATE(6945)] = 263494, - [SMALL_STATE(6946)] = 263523, - [SMALL_STATE(6947)] = 263550, - [SMALL_STATE(6948)] = 263587, - [SMALL_STATE(6949)] = 263616, - [SMALL_STATE(6950)] = 263643, - [SMALL_STATE(6951)] = 263670, - [SMALL_STATE(6952)] = 263697, - [SMALL_STATE(6953)] = 263724, - [SMALL_STATE(6954)] = 263761, - [SMALL_STATE(6955)] = 263786, - [SMALL_STATE(6956)] = 263815, - [SMALL_STATE(6957)] = 263842, - [SMALL_STATE(6958)] = 263867, - [SMALL_STATE(6959)] = 263888, - [SMALL_STATE(6960)] = 263917, - [SMALL_STATE(6961)] = 263944, - [SMALL_STATE(6962)] = 263971, - [SMALL_STATE(6963)] = 264000, - [SMALL_STATE(6964)] = 264025, - [SMALL_STATE(6965)] = 264062, - [SMALL_STATE(6966)] = 264089, - [SMALL_STATE(6967)] = 264118, - [SMALL_STATE(6968)] = 264155, - [SMALL_STATE(6969)] = 264182, - [SMALL_STATE(6970)] = 264219, - [SMALL_STATE(6971)] = 264258, - [SMALL_STATE(6972)] = 264285, - [SMALL_STATE(6973)] = 264322, - [SMALL_STATE(6974)] = 264341, - [SMALL_STATE(6975)] = 264362, - [SMALL_STATE(6976)] = 264389, - [SMALL_STATE(6977)] = 264426, - [SMALL_STATE(6978)] = 264453, - [SMALL_STATE(6979)] = 264474, - [SMALL_STATE(6980)] = 264495, - [SMALL_STATE(6981)] = 264530, - [SMALL_STATE(6982)] = 264567, - [SMALL_STATE(6983)] = 264594, - [SMALL_STATE(6984)] = 264613, - [SMALL_STATE(6985)] = 264634, - [SMALL_STATE(6986)] = 264655, - [SMALL_STATE(6987)] = 264676, - [SMALL_STATE(6988)] = 264697, - [SMALL_STATE(6989)] = 264718, - [SMALL_STATE(6990)] = 264737, - [SMALL_STATE(6991)] = 264758, - [SMALL_STATE(6992)] = 264779, - [SMALL_STATE(6993)] = 264816, - [SMALL_STATE(6994)] = 264837, - [SMALL_STATE(6995)] = 264858, - [SMALL_STATE(6996)] = 264877, - [SMALL_STATE(6997)] = 264898, - [SMALL_STATE(6998)] = 264917, - [SMALL_STATE(6999)] = 264938, - [SMALL_STATE(7000)] = 264975, - [SMALL_STATE(7001)] = 264994, - [SMALL_STATE(7002)] = 265013, - [SMALL_STATE(7003)] = 265032, - [SMALL_STATE(7004)] = 265053, - [SMALL_STATE(7005)] = 265074, - [SMALL_STATE(7006)] = 265093, - [SMALL_STATE(7007)] = 265112, - [SMALL_STATE(7008)] = 265149, - [SMALL_STATE(7009)] = 265170, - [SMALL_STATE(7010)] = 265189, - [SMALL_STATE(7011)] = 265208, - [SMALL_STATE(7012)] = 265245, - [SMALL_STATE(7013)] = 265264, - [SMALL_STATE(7014)] = 265283, - [SMALL_STATE(7015)] = 265302, - [SMALL_STATE(7016)] = 265321, - [SMALL_STATE(7017)] = 265340, - [SMALL_STATE(7018)] = 265361, - [SMALL_STATE(7019)] = 265384, - [SMALL_STATE(7020)] = 265405, - [SMALL_STATE(7021)] = 265426, - [SMALL_STATE(7022)] = 265447, - [SMALL_STATE(7023)] = 265472, - [SMALL_STATE(7024)] = 265493, - [SMALL_STATE(7025)] = 265514, - [SMALL_STATE(7026)] = 265535, - [SMALL_STATE(7027)] = 265556, - [SMALL_STATE(7028)] = 265577, - [SMALL_STATE(7029)] = 265598, - [SMALL_STATE(7030)] = 265634, - [SMALL_STATE(7031)] = 265660, - [SMALL_STATE(7032)] = 265696, - [SMALL_STATE(7033)] = 265732, - [SMALL_STATE(7034)] = 265768, - [SMALL_STATE(7035)] = 265804, - [SMALL_STATE(7036)] = 265832, - [SMALL_STATE(7037)] = 265868, - [SMALL_STATE(7038)] = 265904, - [SMALL_STATE(7039)] = 265940, - [SMALL_STATE(7040)] = 265976, - [SMALL_STATE(7041)] = 266012, - [SMALL_STATE(7042)] = 266038, - [SMALL_STATE(7043)] = 266064, - [SMALL_STATE(7044)] = 266100, - [SMALL_STATE(7045)] = 266136, - [SMALL_STATE(7046)] = 266162, - [SMALL_STATE(7047)] = 266198, - [SMALL_STATE(7048)] = 266224, - [SMALL_STATE(7049)] = 266258, - [SMALL_STATE(7050)] = 266294, - [SMALL_STATE(7051)] = 266330, - [SMALL_STATE(7052)] = 266366, - [SMALL_STATE(7053)] = 266402, - [SMALL_STATE(7054)] = 266438, - [SMALL_STATE(7055)] = 266474, - [SMALL_STATE(7056)] = 266500, - [SMALL_STATE(7057)] = 266536, - [SMALL_STATE(7058)] = 266562, - [SMALL_STATE(7059)] = 266598, - [SMALL_STATE(7060)] = 266634, - [SMALL_STATE(7061)] = 266670, - [SMALL_STATE(7062)] = 266706, - [SMALL_STATE(7063)] = 266742, - [SMALL_STATE(7064)] = 266768, - [SMALL_STATE(7065)] = 266804, - [SMALL_STATE(7066)] = 266840, - [SMALL_STATE(7067)] = 266876, - [SMALL_STATE(7068)] = 266912, - [SMALL_STATE(7069)] = 266948, - [SMALL_STATE(7070)] = 266968, - [SMALL_STATE(7071)] = 267004, - [SMALL_STATE(7072)] = 267040, - [SMALL_STATE(7073)] = 267074, - [SMALL_STATE(7074)] = 267108, - [SMALL_STATE(7075)] = 267142, - [SMALL_STATE(7076)] = 267178, - [SMALL_STATE(7077)] = 267214, - [SMALL_STATE(7078)] = 267250, - [SMALL_STATE(7079)] = 267274, - [SMALL_STATE(7080)] = 267310, - [SMALL_STATE(7081)] = 267346, - [SMALL_STATE(7082)] = 267382, - [SMALL_STATE(7083)] = 267418, - [SMALL_STATE(7084)] = 267440, - [SMALL_STATE(7085)] = 267476, - [SMALL_STATE(7086)] = 267512, - [SMALL_STATE(7087)] = 267546, - [SMALL_STATE(7088)] = 267582, - [SMALL_STATE(7089)] = 267618, - [SMALL_STATE(7090)] = 267652, - [SMALL_STATE(7091)] = 267688, - [SMALL_STATE(7092)] = 267724, - [SMALL_STATE(7093)] = 267746, - [SMALL_STATE(7094)] = 267782, - [SMALL_STATE(7095)] = 267808, - [SMALL_STATE(7096)] = 267844, - [SMALL_STATE(7097)] = 267880, - [SMALL_STATE(7098)] = 267916, - [SMALL_STATE(7099)] = 267952, - [SMALL_STATE(7100)] = 267976, - [SMALL_STATE(7101)] = 268000, - [SMALL_STATE(7102)] = 268036, - [SMALL_STATE(7103)] = 268072, - [SMALL_STATE(7104)] = 268106, - [SMALL_STATE(7105)] = 268142, - [SMALL_STATE(7106)] = 268178, - [SMALL_STATE(7107)] = 268214, - [SMALL_STATE(7108)] = 268238, - [SMALL_STATE(7109)] = 268274, - [SMALL_STATE(7110)] = 268310, - [SMALL_STATE(7111)] = 268346, - [SMALL_STATE(7112)] = 268370, - [SMALL_STATE(7113)] = 268406, - [SMALL_STATE(7114)] = 268442, - [SMALL_STATE(7115)] = 268468, - [SMALL_STATE(7116)] = 268498, - [SMALL_STATE(7117)] = 268534, - [SMALL_STATE(7118)] = 268564, - [SMALL_STATE(7119)] = 268598, - [SMALL_STATE(7120)] = 268634, - [SMALL_STATE(7121)] = 268670, - [SMALL_STATE(7122)] = 268700, - [SMALL_STATE(7123)] = 268736, - [SMALL_STATE(7124)] = 268762, - [SMALL_STATE(7125)] = 268798, - [SMALL_STATE(7126)] = 268834, - [SMALL_STATE(7127)] = 268870, - [SMALL_STATE(7128)] = 268898, - [SMALL_STATE(7129)] = 268934, - [SMALL_STATE(7130)] = 268970, - [SMALL_STATE(7131)] = 269006, - [SMALL_STATE(7132)] = 269042, - [SMALL_STATE(7133)] = 269078, - [SMALL_STATE(7134)] = 269114, - [SMALL_STATE(7135)] = 269150, - [SMALL_STATE(7136)] = 269184, - [SMALL_STATE(7137)] = 269220, - [SMALL_STATE(7138)] = 269256, - [SMALL_STATE(7139)] = 269286, - [SMALL_STATE(7140)] = 269322, - [SMALL_STATE(7141)] = 269358, - [SMALL_STATE(7142)] = 269386, - [SMALL_STATE(7143)] = 269422, - [SMALL_STATE(7144)] = 269458, - [SMALL_STATE(7145)] = 269494, - [SMALL_STATE(7146)] = 269530, - [SMALL_STATE(7147)] = 269560, - [SMALL_STATE(7148)] = 269586, - [SMALL_STATE(7149)] = 269612, - [SMALL_STATE(7150)] = 269638, - [SMALL_STATE(7151)] = 269674, - [SMALL_STATE(7152)] = 269708, - [SMALL_STATE(7153)] = 269736, - [SMALL_STATE(7154)] = 269772, - [SMALL_STATE(7155)] = 269808, - [SMALL_STATE(7156)] = 269834, - [SMALL_STATE(7157)] = 269870, - [SMALL_STATE(7158)] = 269906, - [SMALL_STATE(7159)] = 269931, - [SMALL_STATE(7160)] = 269954, - [SMALL_STATE(7161)] = 269985, - [SMALL_STATE(7162)] = 270020, - [SMALL_STATE(7163)] = 270043, - [SMALL_STATE(7164)] = 270074, - [SMALL_STATE(7165)] = 270105, - [SMALL_STATE(7166)] = 270124, - [SMALL_STATE(7167)] = 270143, - [SMALL_STATE(7168)] = 270174, - [SMALL_STATE(7169)] = 270209, - [SMALL_STATE(7170)] = 270228, - [SMALL_STATE(7171)] = 270247, - [SMALL_STATE(7172)] = 270278, - [SMALL_STATE(7173)] = 270307, - [SMALL_STATE(7174)] = 270338, - [SMALL_STATE(7175)] = 270367, - [SMALL_STATE(7176)] = 270402, - [SMALL_STATE(7177)] = 270421, - [SMALL_STATE(7178)] = 270456, - [SMALL_STATE(7179)] = 270491, - [SMALL_STATE(7180)] = 270516, - [SMALL_STATE(7181)] = 270545, - [SMALL_STATE(7182)] = 270570, - [SMALL_STATE(7183)] = 270595, - [SMALL_STATE(7184)] = 270620, - [SMALL_STATE(7185)] = 270645, - [SMALL_STATE(7186)] = 270670, - [SMALL_STATE(7187)] = 270695, - [SMALL_STATE(7188)] = 270720, - [SMALL_STATE(7189)] = 270745, - [SMALL_STATE(7190)] = 270764, - [SMALL_STATE(7191)] = 270783, - [SMALL_STATE(7192)] = 270808, - [SMALL_STATE(7193)] = 270833, - [SMALL_STATE(7194)] = 270858, - [SMALL_STATE(7195)] = 270883, - [SMALL_STATE(7196)] = 270904, - [SMALL_STATE(7197)] = 270929, - [SMALL_STATE(7198)] = 270954, - [SMALL_STATE(7199)] = 270989, - [SMALL_STATE(7200)] = 271008, - [SMALL_STATE(7201)] = 271043, - [SMALL_STATE(7202)] = 271062, - [SMALL_STATE(7203)] = 271093, - [SMALL_STATE(7204)] = 271118, - [SMALL_STATE(7205)] = 271149, - [SMALL_STATE(7206)] = 271174, - [SMALL_STATE(7207)] = 271209, - [SMALL_STATE(7208)] = 271234, - [SMALL_STATE(7209)] = 271259, - [SMALL_STATE(7210)] = 271288, - [SMALL_STATE(7211)] = 271319, - [SMALL_STATE(7212)] = 271354, - [SMALL_STATE(7213)] = 271383, - [SMALL_STATE(7214)] = 271408, - [SMALL_STATE(7215)] = 271433, - [SMALL_STATE(7216)] = 271463, - [SMALL_STATE(7217)] = 271485, - [SMALL_STATE(7218)] = 271507, - [SMALL_STATE(7219)] = 271525, - [SMALL_STATE(7220)] = 271547, - [SMALL_STATE(7221)] = 271565, - [SMALL_STATE(7222)] = 271583, - [SMALL_STATE(7223)] = 271601, - [SMALL_STATE(7224)] = 271619, - [SMALL_STATE(7225)] = 271637, - [SMALL_STATE(7226)] = 271655, - [SMALL_STATE(7227)] = 271677, - [SMALL_STATE(7228)] = 271699, - [SMALL_STATE(7229)] = 271729, - [SMALL_STATE(7230)] = 271751, - [SMALL_STATE(7231)] = 271775, - [SMALL_STATE(7232)] = 271799, - [SMALL_STATE(7233)] = 271829, - [SMALL_STATE(7234)] = 271853, - [SMALL_STATE(7235)] = 271883, - [SMALL_STATE(7236)] = 271907, - [SMALL_STATE(7237)] = 271931, - [SMALL_STATE(7238)] = 271957, - [SMALL_STATE(7239)] = 271979, - [SMALL_STATE(7240)] = 272009, - [SMALL_STATE(7241)] = 272035, - [SMALL_STATE(7242)] = 272059, - [SMALL_STATE(7243)] = 272083, - [SMALL_STATE(7244)] = 272105, - [SMALL_STATE(7245)] = 272129, - [SMALL_STATE(7246)] = 272151, - [SMALL_STATE(7247)] = 272177, - [SMALL_STATE(7248)] = 272201, - [SMALL_STATE(7249)] = 272227, - [SMALL_STATE(7250)] = 272257, - [SMALL_STATE(7251)] = 272279, - [SMALL_STATE(7252)] = 272305, - [SMALL_STATE(7253)] = 272337, - [SMALL_STATE(7254)] = 272363, - [SMALL_STATE(7255)] = 272393, - [SMALL_STATE(7256)] = 272419, - [SMALL_STATE(7257)] = 272445, - [SMALL_STATE(7258)] = 272467, - [SMALL_STATE(7259)] = 272492, - [SMALL_STATE(7260)] = 272523, - [SMALL_STATE(7261)] = 272550, - [SMALL_STATE(7262)] = 272581, - [SMALL_STATE(7263)] = 272604, - [SMALL_STATE(7264)] = 272635, - [SMALL_STATE(7265)] = 272658, - [SMALL_STATE(7266)] = 272681, - [SMALL_STATE(7267)] = 272704, - [SMALL_STATE(7268)] = 272735, - [SMALL_STATE(7269)] = 272766, - [SMALL_STATE(7270)] = 272793, - [SMALL_STATE(7271)] = 272816, - [SMALL_STATE(7272)] = 272835, - [SMALL_STATE(7273)] = 272856, - [SMALL_STATE(7274)] = 272879, - [SMALL_STATE(7275)] = 272910, - [SMALL_STATE(7276)] = 272941, - [SMALL_STATE(7277)] = 272972, - [SMALL_STATE(7278)] = 272999, - [SMALL_STATE(7279)] = 273030, - [SMALL_STATE(7280)] = 273061, - [SMALL_STATE(7281)] = 273092, - [SMALL_STATE(7282)] = 273111, - [SMALL_STATE(7283)] = 273142, - [SMALL_STATE(7284)] = 273163, - [SMALL_STATE(7285)] = 273186, - [SMALL_STATE(7286)] = 273213, - [SMALL_STATE(7287)] = 273244, - [SMALL_STATE(7288)] = 273265, - [SMALL_STATE(7289)] = 273296, - [SMALL_STATE(7290)] = 273327, - [SMALL_STATE(7291)] = 273348, - [SMALL_STATE(7292)] = 273375, - [SMALL_STATE(7293)] = 273402, - [SMALL_STATE(7294)] = 273433, - [SMALL_STATE(7295)] = 273454, - [SMALL_STATE(7296)] = 273485, - [SMALL_STATE(7297)] = 273512, - [SMALL_STATE(7298)] = 273543, - [SMALL_STATE(7299)] = 273570, - [SMALL_STATE(7300)] = 273591, - [SMALL_STATE(7301)] = 273622, - [SMALL_STATE(7302)] = 273645, - [SMALL_STATE(7303)] = 273676, - [SMALL_STATE(7304)] = 273699, - [SMALL_STATE(7305)] = 273726, - [SMALL_STATE(7306)] = 273753, - [SMALL_STATE(7307)] = 273779, - [SMALL_STATE(7308)] = 273805, - [SMALL_STATE(7309)] = 273825, - [SMALL_STATE(7310)] = 273851, - [SMALL_STATE(7311)] = 273875, - [SMALL_STATE(7312)] = 273899, - [SMALL_STATE(7313)] = 273925, - [SMALL_STATE(7314)] = 273951, - [SMALL_STATE(7315)] = 273967, - [SMALL_STATE(7316)] = 273989, - [SMALL_STATE(7317)] = 274015, - [SMALL_STATE(7318)] = 274037, - [SMALL_STATE(7319)] = 274059, - [SMALL_STATE(7320)] = 274085, - [SMALL_STATE(7321)] = 274111, - [SMALL_STATE(7322)] = 274137, - [SMALL_STATE(7323)] = 274163, - [SMALL_STATE(7324)] = 274189, - [SMALL_STATE(7325)] = 274215, - [SMALL_STATE(7326)] = 274237, - [SMALL_STATE(7327)] = 274263, - [SMALL_STATE(7328)] = 274289, - [SMALL_STATE(7329)] = 274311, - [SMALL_STATE(7330)] = 274337, - [SMALL_STATE(7331)] = 274359, - [SMALL_STATE(7332)] = 274385, - [SMALL_STATE(7333)] = 274411, - [SMALL_STATE(7334)] = 274433, - [SMALL_STATE(7335)] = 274459, - [SMALL_STATE(7336)] = 274481, - [SMALL_STATE(7337)] = 274507, - [SMALL_STATE(7338)] = 274533, - [SMALL_STATE(7339)] = 274559, - [SMALL_STATE(7340)] = 274585, - [SMALL_STATE(7341)] = 274611, - [SMALL_STATE(7342)] = 274637, - [SMALL_STATE(7343)] = 274659, - [SMALL_STATE(7344)] = 274685, - [SMALL_STATE(7345)] = 274711, - [SMALL_STATE(7346)] = 274737, - [SMALL_STATE(7347)] = 274763, - [SMALL_STATE(7348)] = 274787, - [SMALL_STATE(7349)] = 274813, - [SMALL_STATE(7350)] = 274831, - [SMALL_STATE(7351)] = 274857, - [SMALL_STATE(7352)] = 274879, - [SMALL_STATE(7353)] = 274899, - [SMALL_STATE(7354)] = 274919, - [SMALL_STATE(7355)] = 274945, - [SMALL_STATE(7356)] = 274971, - [SMALL_STATE(7357)] = 274993, - [SMALL_STATE(7358)] = 275017, - [SMALL_STATE(7359)] = 275043, - [SMALL_STATE(7360)] = 275069, - [SMALL_STATE(7361)] = 275085, - [SMALL_STATE(7362)] = 275111, - [SMALL_STATE(7363)] = 275133, - [SMALL_STATE(7364)] = 275155, - [SMALL_STATE(7365)] = 275181, - [SMALL_STATE(7366)] = 275207, - [SMALL_STATE(7367)] = 275233, - [SMALL_STATE(7368)] = 275248, - [SMALL_STATE(7369)] = 275269, - [SMALL_STATE(7370)] = 275284, - [SMALL_STATE(7371)] = 275305, - [SMALL_STATE(7372)] = 275326, - [SMALL_STATE(7373)] = 275347, - [SMALL_STATE(7374)] = 275372, - [SMALL_STATE(7375)] = 275397, - [SMALL_STATE(7376)] = 275418, - [SMALL_STATE(7377)] = 275433, - [SMALL_STATE(7378)] = 275458, - [SMALL_STATE(7379)] = 275481, - [SMALL_STATE(7380)] = 275506, - [SMALL_STATE(7381)] = 275521, - [SMALL_STATE(7382)] = 275542, - [SMALL_STATE(7383)] = 275565, - [SMALL_STATE(7384)] = 275590, - [SMALL_STATE(7385)] = 275611, - [SMALL_STATE(7386)] = 275626, - [SMALL_STATE(7387)] = 275647, - [SMALL_STATE(7388)] = 275672, - [SMALL_STATE(7389)] = 275693, - [SMALL_STATE(7390)] = 275716, - [SMALL_STATE(7391)] = 275739, - [SMALL_STATE(7392)] = 275762, - [SMALL_STATE(7393)] = 275781, - [SMALL_STATE(7394)] = 275802, - [SMALL_STATE(7395)] = 275827, - [SMALL_STATE(7396)] = 275850, - [SMALL_STATE(7397)] = 275875, - [SMALL_STATE(7398)] = 275900, - [SMALL_STATE(7399)] = 275923, - [SMALL_STATE(7400)] = 275944, - [SMALL_STATE(7401)] = 275965, - [SMALL_STATE(7402)] = 275988, - [SMALL_STATE(7403)] = 276003, - [SMALL_STATE(7404)] = 276018, - [SMALL_STATE(7405)] = 276039, - [SMALL_STATE(7406)] = 276062, - [SMALL_STATE(7407)] = 276083, - [SMALL_STATE(7408)] = 276098, - [SMALL_STATE(7409)] = 276121, - [SMALL_STATE(7410)] = 276146, - [SMALL_STATE(7411)] = 276166, - [SMALL_STATE(7412)] = 276186, - [SMALL_STATE(7413)] = 276202, - [SMALL_STATE(7414)] = 276222, - [SMALL_STATE(7415)] = 276242, - [SMALL_STATE(7416)] = 276262, - [SMALL_STATE(7417)] = 276282, - [SMALL_STATE(7418)] = 276302, - [SMALL_STATE(7419)] = 276322, - [SMALL_STATE(7420)] = 276340, - [SMALL_STATE(7421)] = 276360, - [SMALL_STATE(7422)] = 276380, - [SMALL_STATE(7423)] = 276400, - [SMALL_STATE(7424)] = 276420, - [SMALL_STATE(7425)] = 276440, - [SMALL_STATE(7426)] = 276458, - [SMALL_STATE(7427)] = 276478, - [SMALL_STATE(7428)] = 276498, - [SMALL_STATE(7429)] = 276518, - [SMALL_STATE(7430)] = 276536, - [SMALL_STATE(7431)] = 276556, - [SMALL_STATE(7432)] = 276576, - [SMALL_STATE(7433)] = 276592, - [SMALL_STATE(7434)] = 276612, - [SMALL_STATE(7435)] = 276632, - [SMALL_STATE(7436)] = 276652, - [SMALL_STATE(7437)] = 276672, - [SMALL_STATE(7438)] = 276692, - [SMALL_STATE(7439)] = 276712, - [SMALL_STATE(7440)] = 276732, - [SMALL_STATE(7441)] = 276752, - [SMALL_STATE(7442)] = 276768, - [SMALL_STATE(7443)] = 276788, - [SMALL_STATE(7444)] = 276808, - [SMALL_STATE(7445)] = 276828, - [SMALL_STATE(7446)] = 276848, - [SMALL_STATE(7447)] = 276868, - [SMALL_STATE(7448)] = 276888, - [SMALL_STATE(7449)] = 276908, - [SMALL_STATE(7450)] = 276928, - [SMALL_STATE(7451)] = 276948, - [SMALL_STATE(7452)] = 276968, - [SMALL_STATE(7453)] = 276988, - [SMALL_STATE(7454)] = 277008, - [SMALL_STATE(7455)] = 277028, - [SMALL_STATE(7456)] = 277048, - [SMALL_STATE(7457)] = 277068, - [SMALL_STATE(7458)] = 277088, - [SMALL_STATE(7459)] = 277108, - [SMALL_STATE(7460)] = 277128, - [SMALL_STATE(7461)] = 277148, - [SMALL_STATE(7462)] = 277164, - [SMALL_STATE(7463)] = 277182, - [SMALL_STATE(7464)] = 277202, - [SMALL_STATE(7465)] = 277222, - [SMALL_STATE(7466)] = 277242, - [SMALL_STATE(7467)] = 277262, - [SMALL_STATE(7468)] = 277282, - [SMALL_STATE(7469)] = 277302, - [SMALL_STATE(7470)] = 277322, - [SMALL_STATE(7471)] = 277338, - [SMALL_STATE(7472)] = 277354, - [SMALL_STATE(7473)] = 277374, - [SMALL_STATE(7474)] = 277394, - [SMALL_STATE(7475)] = 277410, - [SMALL_STATE(7476)] = 277430, - [SMALL_STATE(7477)] = 277450, - [SMALL_STATE(7478)] = 277464, - [SMALL_STATE(7479)] = 277480, - [SMALL_STATE(7480)] = 277498, - [SMALL_STATE(7481)] = 277518, - [SMALL_STATE(7482)] = 277538, - [SMALL_STATE(7483)] = 277558, - [SMALL_STATE(7484)] = 277578, - [SMALL_STATE(7485)] = 277598, - [SMALL_STATE(7486)] = 277618, - [SMALL_STATE(7487)] = 277634, - [SMALL_STATE(7488)] = 277654, - [SMALL_STATE(7489)] = 277674, - [SMALL_STATE(7490)] = 277694, - [SMALL_STATE(7491)] = 277714, - [SMALL_STATE(7492)] = 277728, - [SMALL_STATE(7493)] = 277748, - [SMALL_STATE(7494)] = 277764, - [SMALL_STATE(7495)] = 277784, - [SMALL_STATE(7496)] = 277804, - [SMALL_STATE(7497)] = 277824, - [SMALL_STATE(7498)] = 277844, - [SMALL_STATE(7499)] = 277864, - [SMALL_STATE(7500)] = 277882, - [SMALL_STATE(7501)] = 277900, - [SMALL_STATE(7502)] = 277920, - [SMALL_STATE(7503)] = 277940, - [SMALL_STATE(7504)] = 277958, - [SMALL_STATE(7505)] = 277978, - [SMALL_STATE(7506)] = 277998, - [SMALL_STATE(7507)] = 278018, - [SMALL_STATE(7508)] = 278038, - [SMALL_STATE(7509)] = 278058, - [SMALL_STATE(7510)] = 278074, - [SMALL_STATE(7511)] = 278090, - [SMALL_STATE(7512)] = 278110, - [SMALL_STATE(7513)] = 278130, - [SMALL_STATE(7514)] = 278146, - [SMALL_STATE(7515)] = 278166, - [SMALL_STATE(7516)] = 278186, - [SMALL_STATE(7517)] = 278200, - [SMALL_STATE(7518)] = 278220, - [SMALL_STATE(7519)] = 278240, - [SMALL_STATE(7520)] = 278256, - [SMALL_STATE(7521)] = 278276, - [SMALL_STATE(7522)] = 278292, - [SMALL_STATE(7523)] = 278311, - [SMALL_STATE(7524)] = 278330, - [SMALL_STATE(7525)] = 278349, - [SMALL_STATE(7526)] = 278368, - [SMALL_STATE(7527)] = 278387, - [SMALL_STATE(7528)] = 278406, - [SMALL_STATE(7529)] = 278425, - [SMALL_STATE(7530)] = 278444, - [SMALL_STATE(7531)] = 278461, - [SMALL_STATE(7532)] = 278480, - [SMALL_STATE(7533)] = 278499, - [SMALL_STATE(7534)] = 278518, - [SMALL_STATE(7535)] = 278537, - [SMALL_STATE(7536)] = 278556, - [SMALL_STATE(7537)] = 278575, - [SMALL_STATE(7538)] = 278594, - [SMALL_STATE(7539)] = 278613, - [SMALL_STATE(7540)] = 278632, - [SMALL_STATE(7541)] = 278651, - [SMALL_STATE(7542)] = 278670, - [SMALL_STATE(7543)] = 278689, - [SMALL_STATE(7544)] = 278702, - [SMALL_STATE(7545)] = 278721, - [SMALL_STATE(7546)] = 278740, - [SMALL_STATE(7547)] = 278759, - [SMALL_STATE(7548)] = 278778, - [SMALL_STATE(7549)] = 278797, - [SMALL_STATE(7550)] = 278816, - [SMALL_STATE(7551)] = 278833, - [SMALL_STATE(7552)] = 278852, - [SMALL_STATE(7553)] = 278871, - [SMALL_STATE(7554)] = 278884, - [SMALL_STATE(7555)] = 278903, - [SMALL_STATE(7556)] = 278922, - [SMALL_STATE(7557)] = 278941, - [SMALL_STATE(7558)] = 278960, - [SMALL_STATE(7559)] = 278979, - [SMALL_STATE(7560)] = 278998, - [SMALL_STATE(7561)] = 279015, - [SMALL_STATE(7562)] = 279034, - [SMALL_STATE(7563)] = 279053, - [SMALL_STATE(7564)] = 279070, - [SMALL_STATE(7565)] = 279087, - [SMALL_STATE(7566)] = 279104, - [SMALL_STATE(7567)] = 279123, - [SMALL_STATE(7568)] = 279142, - [SMALL_STATE(7569)] = 279161, - [SMALL_STATE(7570)] = 279180, - [SMALL_STATE(7571)] = 279199, - [SMALL_STATE(7572)] = 279218, - [SMALL_STATE(7573)] = 279237, - [SMALL_STATE(7574)] = 279256, - [SMALL_STATE(7575)] = 279275, - [SMALL_STATE(7576)] = 279294, - [SMALL_STATE(7577)] = 279313, - [SMALL_STATE(7578)] = 279330, - [SMALL_STATE(7579)] = 279349, - [SMALL_STATE(7580)] = 279368, - [SMALL_STATE(7581)] = 279387, - [SMALL_STATE(7582)] = 279406, - [SMALL_STATE(7583)] = 279420, - [SMALL_STATE(7584)] = 279436, - [SMALL_STATE(7585)] = 279450, - [SMALL_STATE(7586)] = 279466, - [SMALL_STATE(7587)] = 279480, - [SMALL_STATE(7588)] = 279494, - [SMALL_STATE(7589)] = 279508, - [SMALL_STATE(7590)] = 279522, - [SMALL_STATE(7591)] = 279538, - [SMALL_STATE(7592)] = 279552, - [SMALL_STATE(7593)] = 279566, - [SMALL_STATE(7594)] = 279580, - [SMALL_STATE(7595)] = 279596, - [SMALL_STATE(7596)] = 279612, - [SMALL_STATE(7597)] = 279628, - [SMALL_STATE(7598)] = 279642, - [SMALL_STATE(7599)] = 279658, - [SMALL_STATE(7600)] = 279672, - [SMALL_STATE(7601)] = 279686, - [SMALL_STATE(7602)] = 279702, - [SMALL_STATE(7603)] = 279716, - [SMALL_STATE(7604)] = 279732, - [SMALL_STATE(7605)] = 279748, - [SMALL_STATE(7606)] = 279764, - [SMALL_STATE(7607)] = 279778, - [SMALL_STATE(7608)] = 279792, - [SMALL_STATE(7609)] = 279808, - [SMALL_STATE(7610)] = 279822, - [SMALL_STATE(7611)] = 279836, - [SMALL_STATE(7612)] = 279852, - [SMALL_STATE(7613)] = 279868, - [SMALL_STATE(7614)] = 279882, - [SMALL_STATE(7615)] = 279896, - [SMALL_STATE(7616)] = 279912, - [SMALL_STATE(7617)] = 279926, - [SMALL_STATE(7618)] = 279940, - [SMALL_STATE(7619)] = 279956, - [SMALL_STATE(7620)] = 279970, - [SMALL_STATE(7621)] = 279984, - [SMALL_STATE(7622)] = 279998, - [SMALL_STATE(7623)] = 280014, - [SMALL_STATE(7624)] = 280030, - [SMALL_STATE(7625)] = 280046, - [SMALL_STATE(7626)] = 280062, - [SMALL_STATE(7627)] = 280076, - [SMALL_STATE(7628)] = 280090, - [SMALL_STATE(7629)] = 280106, - [SMALL_STATE(7630)] = 280120, - [SMALL_STATE(7631)] = 280134, - [SMALL_STATE(7632)] = 280150, - [SMALL_STATE(7633)] = 280164, - [SMALL_STATE(7634)] = 280178, - [SMALL_STATE(7635)] = 280192, - [SMALL_STATE(7636)] = 280206, - [SMALL_STATE(7637)] = 280220, - [SMALL_STATE(7638)] = 280236, - [SMALL_STATE(7639)] = 280252, - [SMALL_STATE(7640)] = 280268, - [SMALL_STATE(7641)] = 280282, - [SMALL_STATE(7642)] = 280296, - [SMALL_STATE(7643)] = 280312, - [SMALL_STATE(7644)] = 280326, - [SMALL_STATE(7645)] = 280340, - [SMALL_STATE(7646)] = 280356, - [SMALL_STATE(7647)] = 280370, - [SMALL_STATE(7648)] = 280386, - [SMALL_STATE(7649)] = 280400, - [SMALL_STATE(7650)] = 280416, - [SMALL_STATE(7651)] = 280432, - [SMALL_STATE(7652)] = 280448, - [SMALL_STATE(7653)] = 280462, - [SMALL_STATE(7654)] = 280478, - [SMALL_STATE(7655)] = 280492, - [SMALL_STATE(7656)] = 280508, - [SMALL_STATE(7657)] = 280524, - [SMALL_STATE(7658)] = 280540, - [SMALL_STATE(7659)] = 280554, - [SMALL_STATE(7660)] = 280570, - [SMALL_STATE(7661)] = 280586, - [SMALL_STATE(7662)] = 280600, - [SMALL_STATE(7663)] = 280616, - [SMALL_STATE(7664)] = 280630, - [SMALL_STATE(7665)] = 280646, - [SMALL_STATE(7666)] = 280660, - [SMALL_STATE(7667)] = 280676, - [SMALL_STATE(7668)] = 280692, - [SMALL_STATE(7669)] = 280706, - [SMALL_STATE(7670)] = 280722, - [SMALL_STATE(7671)] = 280738, - [SMALL_STATE(7672)] = 280752, - [SMALL_STATE(7673)] = 280766, - [SMALL_STATE(7674)] = 280780, - [SMALL_STATE(7675)] = 280796, - [SMALL_STATE(7676)] = 280812, - [SMALL_STATE(7677)] = 280828, - [SMALL_STATE(7678)] = 280842, - [SMALL_STATE(7679)] = 280858, - [SMALL_STATE(7680)] = 280874, - [SMALL_STATE(7681)] = 280888, - [SMALL_STATE(7682)] = 280904, - [SMALL_STATE(7683)] = 280918, - [SMALL_STATE(7684)] = 280932, - [SMALL_STATE(7685)] = 280948, - [SMALL_STATE(7686)] = 280964, - [SMALL_STATE(7687)] = 280980, - [SMALL_STATE(7688)] = 280994, - [SMALL_STATE(7689)] = 281010, - [SMALL_STATE(7690)] = 281026, - [SMALL_STATE(7691)] = 281040, - [SMALL_STATE(7692)] = 281056, - [SMALL_STATE(7693)] = 281072, - [SMALL_STATE(7694)] = 281086, - [SMALL_STATE(7695)] = 281102, - [SMALL_STATE(7696)] = 281118, - [SMALL_STATE(7697)] = 281132, - [SMALL_STATE(7698)] = 281148, - [SMALL_STATE(7699)] = 281164, - [SMALL_STATE(7700)] = 281180, - [SMALL_STATE(7701)] = 281196, - [SMALL_STATE(7702)] = 281212, - [SMALL_STATE(7703)] = 281228, - [SMALL_STATE(7704)] = 281244, - [SMALL_STATE(7705)] = 281258, - [SMALL_STATE(7706)] = 281274, - [SMALL_STATE(7707)] = 281288, - [SMALL_STATE(7708)] = 281304, - [SMALL_STATE(7709)] = 281320, - [SMALL_STATE(7710)] = 281332, - [SMALL_STATE(7711)] = 281348, - [SMALL_STATE(7712)] = 281364, - [SMALL_STATE(7713)] = 281380, - [SMALL_STATE(7714)] = 281396, - [SMALL_STATE(7715)] = 281412, - [SMALL_STATE(7716)] = 281428, - [SMALL_STATE(7717)] = 281442, - [SMALL_STATE(7718)] = 281458, - [SMALL_STATE(7719)] = 281474, - [SMALL_STATE(7720)] = 281488, - [SMALL_STATE(7721)] = 281502, - [SMALL_STATE(7722)] = 281518, - [SMALL_STATE(7723)] = 281534, - [SMALL_STATE(7724)] = 281548, - [SMALL_STATE(7725)] = 281562, - [SMALL_STATE(7726)] = 281576, - [SMALL_STATE(7727)] = 281590, - [SMALL_STATE(7728)] = 281606, - [SMALL_STATE(7729)] = 281620, - [SMALL_STATE(7730)] = 281636, - [SMALL_STATE(7731)] = 281650, - [SMALL_STATE(7732)] = 281666, - [SMALL_STATE(7733)] = 281682, - [SMALL_STATE(7734)] = 281696, - [SMALL_STATE(7735)] = 281710, - [SMALL_STATE(7736)] = 281726, - [SMALL_STATE(7737)] = 281740, - [SMALL_STATE(7738)] = 281756, - [SMALL_STATE(7739)] = 281772, - [SMALL_STATE(7740)] = 281786, - [SMALL_STATE(7741)] = 281802, - [SMALL_STATE(7742)] = 281816, - [SMALL_STATE(7743)] = 281832, - [SMALL_STATE(7744)] = 281846, - [SMALL_STATE(7745)] = 281860, - [SMALL_STATE(7746)] = 281876, - [SMALL_STATE(7747)] = 281890, - [SMALL_STATE(7748)] = 281904, - [SMALL_STATE(7749)] = 281918, - [SMALL_STATE(7750)] = 281934, - [SMALL_STATE(7751)] = 281948, - [SMALL_STATE(7752)] = 281962, - [SMALL_STATE(7753)] = 281976, - [SMALL_STATE(7754)] = 281990, - [SMALL_STATE(7755)] = 282004, - [SMALL_STATE(7756)] = 282020, - [SMALL_STATE(7757)] = 282036, - [SMALL_STATE(7758)] = 282050, - [SMALL_STATE(7759)] = 282064, - [SMALL_STATE(7760)] = 282080, - [SMALL_STATE(7761)] = 282094, - [SMALL_STATE(7762)] = 282110, - [SMALL_STATE(7763)] = 282124, - [SMALL_STATE(7764)] = 282138, - [SMALL_STATE(7765)] = 282154, - [SMALL_STATE(7766)] = 282168, - [SMALL_STATE(7767)] = 282182, - [SMALL_STATE(7768)] = 282196, - [SMALL_STATE(7769)] = 282212, - [SMALL_STATE(7770)] = 282228, - [SMALL_STATE(7771)] = 282242, - [SMALL_STATE(7772)] = 282258, - [SMALL_STATE(7773)] = 282274, - [SMALL_STATE(7774)] = 282286, - [SMALL_STATE(7775)] = 282300, - [SMALL_STATE(7776)] = 282316, - [SMALL_STATE(7777)] = 282330, - [SMALL_STATE(7778)] = 282344, - [SMALL_STATE(7779)] = 282358, - [SMALL_STATE(7780)] = 282374, - [SMALL_STATE(7781)] = 282388, - [SMALL_STATE(7782)] = 282402, - [SMALL_STATE(7783)] = 282418, - [SMALL_STATE(7784)] = 282430, - [SMALL_STATE(7785)] = 282444, - [SMALL_STATE(7786)] = 282460, - [SMALL_STATE(7787)] = 282476, - [SMALL_STATE(7788)] = 282490, - [SMALL_STATE(7789)] = 282504, - [SMALL_STATE(7790)] = 282518, - [SMALL_STATE(7791)] = 282532, - [SMALL_STATE(7792)] = 282546, - [SMALL_STATE(7793)] = 282560, - [SMALL_STATE(7794)] = 282576, - [SMALL_STATE(7795)] = 282590, - [SMALL_STATE(7796)] = 282606, - [SMALL_STATE(7797)] = 282622, - [SMALL_STATE(7798)] = 282636, - [SMALL_STATE(7799)] = 282652, - [SMALL_STATE(7800)] = 282668, - [SMALL_STATE(7801)] = 282684, - [SMALL_STATE(7802)] = 282700, - [SMALL_STATE(7803)] = 282716, - [SMALL_STATE(7804)] = 282732, - [SMALL_STATE(7805)] = 282748, - [SMALL_STATE(7806)] = 282764, - [SMALL_STATE(7807)] = 282780, - [SMALL_STATE(7808)] = 282796, - [SMALL_STATE(7809)] = 282812, - [SMALL_STATE(7810)] = 282828, - [SMALL_STATE(7811)] = 282844, - [SMALL_STATE(7812)] = 282860, - [SMALL_STATE(7813)] = 282876, - [SMALL_STATE(7814)] = 282892, - [SMALL_STATE(7815)] = 282906, - [SMALL_STATE(7816)] = 282920, - [SMALL_STATE(7817)] = 282934, - [SMALL_STATE(7818)] = 282944, - [SMALL_STATE(7819)] = 282960, - [SMALL_STATE(7820)] = 282976, - [SMALL_STATE(7821)] = 282992, - [SMALL_STATE(7822)] = 283008, - [SMALL_STATE(7823)] = 283022, - [SMALL_STATE(7824)] = 283038, - [SMALL_STATE(7825)] = 283054, - [SMALL_STATE(7826)] = 283068, - [SMALL_STATE(7827)] = 283078, - [SMALL_STATE(7828)] = 283094, - [SMALL_STATE(7829)] = 283110, - [SMALL_STATE(7830)] = 283124, - [SMALL_STATE(7831)] = 283140, - [SMALL_STATE(7832)] = 283154, - [SMALL_STATE(7833)] = 283170, - [SMALL_STATE(7834)] = 283184, - [SMALL_STATE(7835)] = 283200, - [SMALL_STATE(7836)] = 283216, - [SMALL_STATE(7837)] = 283232, - [SMALL_STATE(7838)] = 283246, - [SMALL_STATE(7839)] = 283260, - [SMALL_STATE(7840)] = 283274, - [SMALL_STATE(7841)] = 283288, - [SMALL_STATE(7842)] = 283302, - [SMALL_STATE(7843)] = 283316, - [SMALL_STATE(7844)] = 283332, - [SMALL_STATE(7845)] = 283346, - [SMALL_STATE(7846)] = 283362, - [SMALL_STATE(7847)] = 283376, - [SMALL_STATE(7848)] = 283390, - [SMALL_STATE(7849)] = 283404, - [SMALL_STATE(7850)] = 283418, - [SMALL_STATE(7851)] = 283432, - [SMALL_STATE(7852)] = 283446, - [SMALL_STATE(7853)] = 283462, - [SMALL_STATE(7854)] = 283476, - [SMALL_STATE(7855)] = 283490, - [SMALL_STATE(7856)] = 283504, - [SMALL_STATE(7857)] = 283520, - [SMALL_STATE(7858)] = 283534, - [SMALL_STATE(7859)] = 283550, - [SMALL_STATE(7860)] = 283564, - [SMALL_STATE(7861)] = 283578, - [SMALL_STATE(7862)] = 283594, - [SMALL_STATE(7863)] = 283608, - [SMALL_STATE(7864)] = 283622, - [SMALL_STATE(7865)] = 283634, - [SMALL_STATE(7866)] = 283648, - [SMALL_STATE(7867)] = 283664, - [SMALL_STATE(7868)] = 283678, - [SMALL_STATE(7869)] = 283692, - [SMALL_STATE(7870)] = 283708, - [SMALL_STATE(7871)] = 283722, - [SMALL_STATE(7872)] = 283736, - [SMALL_STATE(7873)] = 283750, - [SMALL_STATE(7874)] = 283764, - [SMALL_STATE(7875)] = 283780, - [SMALL_STATE(7876)] = 283796, - [SMALL_STATE(7877)] = 283810, - [SMALL_STATE(7878)] = 283824, - [SMALL_STATE(7879)] = 283838, - [SMALL_STATE(7880)] = 283854, - [SMALL_STATE(7881)] = 283868, - [SMALL_STATE(7882)] = 283884, - [SMALL_STATE(7883)] = 283900, - [SMALL_STATE(7884)] = 283916, - [SMALL_STATE(7885)] = 283932, - [SMALL_STATE(7886)] = 283946, - [SMALL_STATE(7887)] = 283962, - [SMALL_STATE(7888)] = 283978, - [SMALL_STATE(7889)] = 283992, - [SMALL_STATE(7890)] = 284008, - [SMALL_STATE(7891)] = 284024, - [SMALL_STATE(7892)] = 284040, - [SMALL_STATE(7893)] = 284056, - [SMALL_STATE(7894)] = 284070, - [SMALL_STATE(7895)] = 284084, - [SMALL_STATE(7896)] = 284100, - [SMALL_STATE(7897)] = 284114, - [SMALL_STATE(7898)] = 284128, - [SMALL_STATE(7899)] = 284142, - [SMALL_STATE(7900)] = 284158, - [SMALL_STATE(7901)] = 284172, - [SMALL_STATE(7902)] = 284186, - [SMALL_STATE(7903)] = 284200, - [SMALL_STATE(7904)] = 284214, - [SMALL_STATE(7905)] = 284228, - [SMALL_STATE(7906)] = 284242, - [SMALL_STATE(7907)] = 284256, - [SMALL_STATE(7908)] = 284270, - [SMALL_STATE(7909)] = 284284, - [SMALL_STATE(7910)] = 284298, - [SMALL_STATE(7911)] = 284314, - [SMALL_STATE(7912)] = 284328, - [SMALL_STATE(7913)] = 284342, - [SMALL_STATE(7914)] = 284352, - [SMALL_STATE(7915)] = 284368, - [SMALL_STATE(7916)] = 284384, - [SMALL_STATE(7917)] = 284398, - [SMALL_STATE(7918)] = 284414, - [SMALL_STATE(7919)] = 284430, - [SMALL_STATE(7920)] = 284446, - [SMALL_STATE(7921)] = 284462, - [SMALL_STATE(7922)] = 284478, - [SMALL_STATE(7923)] = 284492, - [SMALL_STATE(7924)] = 284508, - [SMALL_STATE(7925)] = 284522, - [SMALL_STATE(7926)] = 284536, - [SMALL_STATE(7927)] = 284550, - [SMALL_STATE(7928)] = 284566, - [SMALL_STATE(7929)] = 284580, - [SMALL_STATE(7930)] = 284596, - [SMALL_STATE(7931)] = 284612, - [SMALL_STATE(7932)] = 284628, - [SMALL_STATE(7933)] = 284642, - [SMALL_STATE(7934)] = 284658, - [SMALL_STATE(7935)] = 284674, - [SMALL_STATE(7936)] = 284688, - [SMALL_STATE(7937)] = 284704, - [SMALL_STATE(7938)] = 284718, - [SMALL_STATE(7939)] = 284734, - [SMALL_STATE(7940)] = 284750, - [SMALL_STATE(7941)] = 284766, - [SMALL_STATE(7942)] = 284782, - [SMALL_STATE(7943)] = 284796, - [SMALL_STATE(7944)] = 284810, - [SMALL_STATE(7945)] = 284824, - [SMALL_STATE(7946)] = 284840, - [SMALL_STATE(7947)] = 284856, - [SMALL_STATE(7948)] = 284872, - [SMALL_STATE(7949)] = 284888, - [SMALL_STATE(7950)] = 284902, - [SMALL_STATE(7951)] = 284918, - [SMALL_STATE(7952)] = 284934, - [SMALL_STATE(7953)] = 284950, - [SMALL_STATE(7954)] = 284964, - [SMALL_STATE(7955)] = 284980, - [SMALL_STATE(7956)] = 284996, - [SMALL_STATE(7957)] = 285012, - [SMALL_STATE(7958)] = 285028, - [SMALL_STATE(7959)] = 285044, - [SMALL_STATE(7960)] = 285058, - [SMALL_STATE(7961)] = 285072, - [SMALL_STATE(7962)] = 285086, - [SMALL_STATE(7963)] = 285100, - [SMALL_STATE(7964)] = 285116, - [SMALL_STATE(7965)] = 285132, - [SMALL_STATE(7966)] = 285146, - [SMALL_STATE(7967)] = 285162, - [SMALL_STATE(7968)] = 285176, - [SMALL_STATE(7969)] = 285192, - [SMALL_STATE(7970)] = 285208, - [SMALL_STATE(7971)] = 285222, - [SMALL_STATE(7972)] = 285238, - [SMALL_STATE(7973)] = 285254, - [SMALL_STATE(7974)] = 285270, - [SMALL_STATE(7975)] = 285286, - [SMALL_STATE(7976)] = 285302, - [SMALL_STATE(7977)] = 285316, - [SMALL_STATE(7978)] = 285332, - [SMALL_STATE(7979)] = 285348, - [SMALL_STATE(7980)] = 285364, - [SMALL_STATE(7981)] = 285380, - [SMALL_STATE(7982)] = 285396, - [SMALL_STATE(7983)] = 285412, - [SMALL_STATE(7984)] = 285428, - [SMALL_STATE(7985)] = 285442, - [SMALL_STATE(7986)] = 285458, - [SMALL_STATE(7987)] = 285472, - [SMALL_STATE(7988)] = 285488, - [SMALL_STATE(7989)] = 285502, - [SMALL_STATE(7990)] = 285518, - [SMALL_STATE(7991)] = 285532, - [SMALL_STATE(7992)] = 285548, - [SMALL_STATE(7993)] = 285564, - [SMALL_STATE(7994)] = 285580, - [SMALL_STATE(7995)] = 285594, - [SMALL_STATE(7996)] = 285610, - [SMALL_STATE(7997)] = 285626, - [SMALL_STATE(7998)] = 285642, - [SMALL_STATE(7999)] = 285656, - [SMALL_STATE(8000)] = 285670, - [SMALL_STATE(8001)] = 285684, - [SMALL_STATE(8002)] = 285700, - [SMALL_STATE(8003)] = 285712, - [SMALL_STATE(8004)] = 285728, - [SMALL_STATE(8005)] = 285742, - [SMALL_STATE(8006)] = 285758, - [SMALL_STATE(8007)] = 285774, - [SMALL_STATE(8008)] = 285787, - [SMALL_STATE(8009)] = 285800, - [SMALL_STATE(8010)] = 285813, - [SMALL_STATE(8011)] = 285826, - [SMALL_STATE(8012)] = 285839, - [SMALL_STATE(8013)] = 285852, - [SMALL_STATE(8014)] = 285865, - [SMALL_STATE(8015)] = 285878, - [SMALL_STATE(8016)] = 285891, - [SMALL_STATE(8017)] = 285904, - [SMALL_STATE(8018)] = 285917, - [SMALL_STATE(8019)] = 285930, - [SMALL_STATE(8020)] = 285943, - [SMALL_STATE(8021)] = 285956, - [SMALL_STATE(8022)] = 285969, - [SMALL_STATE(8023)] = 285982, - [SMALL_STATE(8024)] = 285995, - [SMALL_STATE(8025)] = 286008, - [SMALL_STATE(8026)] = 286021, - [SMALL_STATE(8027)] = 286034, - [SMALL_STATE(8028)] = 286047, - [SMALL_STATE(8029)] = 286060, - [SMALL_STATE(8030)] = 286073, - [SMALL_STATE(8031)] = 286086, - [SMALL_STATE(8032)] = 286099, - [SMALL_STATE(8033)] = 286112, - [SMALL_STATE(8034)] = 286125, - [SMALL_STATE(8035)] = 286138, - [SMALL_STATE(8036)] = 286151, - [SMALL_STATE(8037)] = 286164, - [SMALL_STATE(8038)] = 286177, - [SMALL_STATE(8039)] = 286190, - [SMALL_STATE(8040)] = 286203, - [SMALL_STATE(8041)] = 286216, - [SMALL_STATE(8042)] = 286229, - [SMALL_STATE(8043)] = 286240, - [SMALL_STATE(8044)] = 286253, - [SMALL_STATE(8045)] = 286266, - [SMALL_STATE(8046)] = 286279, - [SMALL_STATE(8047)] = 286290, - [SMALL_STATE(8048)] = 286303, - [SMALL_STATE(8049)] = 286316, - [SMALL_STATE(8050)] = 286329, - [SMALL_STATE(8051)] = 286342, - [SMALL_STATE(8052)] = 286355, - [SMALL_STATE(8053)] = 286368, - [SMALL_STATE(8054)] = 286381, - [SMALL_STATE(8055)] = 286394, - [SMALL_STATE(8056)] = 286407, - [SMALL_STATE(8057)] = 286420, - [SMALL_STATE(8058)] = 286433, - [SMALL_STATE(8059)] = 286446, - [SMALL_STATE(8060)] = 286459, - [SMALL_STATE(8061)] = 286472, - [SMALL_STATE(8062)] = 286483, - [SMALL_STATE(8063)] = 286496, - [SMALL_STATE(8064)] = 286509, - [SMALL_STATE(8065)] = 286522, - [SMALL_STATE(8066)] = 286535, - [SMALL_STATE(8067)] = 286548, - [SMALL_STATE(8068)] = 286561, - [SMALL_STATE(8069)] = 286574, - [SMALL_STATE(8070)] = 286587, - [SMALL_STATE(8071)] = 286600, - [SMALL_STATE(8072)] = 286613, - [SMALL_STATE(8073)] = 286624, - [SMALL_STATE(8074)] = 286637, - [SMALL_STATE(8075)] = 286648, - [SMALL_STATE(8076)] = 286661, - [SMALL_STATE(8077)] = 286674, - [SMALL_STATE(8078)] = 286687, - [SMALL_STATE(8079)] = 286700, - [SMALL_STATE(8080)] = 286713, - [SMALL_STATE(8081)] = 286726, - [SMALL_STATE(8082)] = 286739, - [SMALL_STATE(8083)] = 286752, - [SMALL_STATE(8084)] = 286763, - [SMALL_STATE(8085)] = 286776, - [SMALL_STATE(8086)] = 286785, - [SMALL_STATE(8087)] = 286794, - [SMALL_STATE(8088)] = 286807, - [SMALL_STATE(8089)] = 286820, - [SMALL_STATE(8090)] = 286833, - [SMALL_STATE(8091)] = 286846, - [SMALL_STATE(8092)] = 286859, - [SMALL_STATE(8093)] = 286870, - [SMALL_STATE(8094)] = 286883, - [SMALL_STATE(8095)] = 286894, - [SMALL_STATE(8096)] = 286907, - [SMALL_STATE(8097)] = 286918, - [SMALL_STATE(8098)] = 286931, - [SMALL_STATE(8099)] = 286942, - [SMALL_STATE(8100)] = 286955, - [SMALL_STATE(8101)] = 286968, - [SMALL_STATE(8102)] = 286981, - [SMALL_STATE(8103)] = 286994, - [SMALL_STATE(8104)] = 287007, - [SMALL_STATE(8105)] = 287018, - [SMALL_STATE(8106)] = 287031, - [SMALL_STATE(8107)] = 287044, - [SMALL_STATE(8108)] = 287057, - [SMALL_STATE(8109)] = 287070, - [SMALL_STATE(8110)] = 287083, - [SMALL_STATE(8111)] = 287096, - [SMALL_STATE(8112)] = 287109, - [SMALL_STATE(8113)] = 287122, - [SMALL_STATE(8114)] = 287135, - [SMALL_STATE(8115)] = 287148, - [SMALL_STATE(8116)] = 287159, - [SMALL_STATE(8117)] = 287172, - [SMALL_STATE(8118)] = 287181, - [SMALL_STATE(8119)] = 287190, - [SMALL_STATE(8120)] = 287203, - [SMALL_STATE(8121)] = 287216, - [SMALL_STATE(8122)] = 287229, - [SMALL_STATE(8123)] = 287240, - [SMALL_STATE(8124)] = 287253, - [SMALL_STATE(8125)] = 287266, - [SMALL_STATE(8126)] = 287279, - [SMALL_STATE(8127)] = 287292, - [SMALL_STATE(8128)] = 287305, - [SMALL_STATE(8129)] = 287318, - [SMALL_STATE(8130)] = 287327, - [SMALL_STATE(8131)] = 287340, - [SMALL_STATE(8132)] = 287353, - [SMALL_STATE(8133)] = 287366, - [SMALL_STATE(8134)] = 287379, - [SMALL_STATE(8135)] = 287392, - [SMALL_STATE(8136)] = 287405, - [SMALL_STATE(8137)] = 287418, - [SMALL_STATE(8138)] = 287431, - [SMALL_STATE(8139)] = 287444, - [SMALL_STATE(8140)] = 287457, - [SMALL_STATE(8141)] = 287470, - [SMALL_STATE(8142)] = 287483, - [SMALL_STATE(8143)] = 287496, - [SMALL_STATE(8144)] = 287509, - [SMALL_STATE(8145)] = 287520, - [SMALL_STATE(8146)] = 287531, - [SMALL_STATE(8147)] = 287544, - [SMALL_STATE(8148)] = 287557, - [SMALL_STATE(8149)] = 287570, - [SMALL_STATE(8150)] = 287583, - [SMALL_STATE(8151)] = 287596, - [SMALL_STATE(8152)] = 287609, - [SMALL_STATE(8153)] = 287622, - [SMALL_STATE(8154)] = 287635, - [SMALL_STATE(8155)] = 287648, - [SMALL_STATE(8156)] = 287661, - [SMALL_STATE(8157)] = 287674, - [SMALL_STATE(8158)] = 287687, - [SMALL_STATE(8159)] = 287700, - [SMALL_STATE(8160)] = 287713, - [SMALL_STATE(8161)] = 287724, - [SMALL_STATE(8162)] = 287737, - [SMALL_STATE(8163)] = 287748, - [SMALL_STATE(8164)] = 287761, - [SMALL_STATE(8165)] = 287774, - [SMALL_STATE(8166)] = 287787, - [SMALL_STATE(8167)] = 287800, - [SMALL_STATE(8168)] = 287809, - [SMALL_STATE(8169)] = 287822, - [SMALL_STATE(8170)] = 287835, - [SMALL_STATE(8171)] = 287846, - [SMALL_STATE(8172)] = 287859, - [SMALL_STATE(8173)] = 287872, - [SMALL_STATE(8174)] = 287885, - [SMALL_STATE(8175)] = 287898, - [SMALL_STATE(8176)] = 287911, - [SMALL_STATE(8177)] = 287924, - [SMALL_STATE(8178)] = 287937, - [SMALL_STATE(8179)] = 287950, - [SMALL_STATE(8180)] = 287963, - [SMALL_STATE(8181)] = 287976, - [SMALL_STATE(8182)] = 287989, - [SMALL_STATE(8183)] = 288002, - [SMALL_STATE(8184)] = 288015, - [SMALL_STATE(8185)] = 288028, - [SMALL_STATE(8186)] = 288041, - [SMALL_STATE(8187)] = 288054, - [SMALL_STATE(8188)] = 288067, - [SMALL_STATE(8189)] = 288080, - [SMALL_STATE(8190)] = 288093, - [SMALL_STATE(8191)] = 288106, - [SMALL_STATE(8192)] = 288119, - [SMALL_STATE(8193)] = 288130, - [SMALL_STATE(8194)] = 288143, - [SMALL_STATE(8195)] = 288156, - [SMALL_STATE(8196)] = 288169, - [SMALL_STATE(8197)] = 288182, - [SMALL_STATE(8198)] = 288195, - [SMALL_STATE(8199)] = 288208, - [SMALL_STATE(8200)] = 288221, - [SMALL_STATE(8201)] = 288232, - [SMALL_STATE(8202)] = 288245, - [SMALL_STATE(8203)] = 288258, - [SMALL_STATE(8204)] = 288271, - [SMALL_STATE(8205)] = 288284, - [SMALL_STATE(8206)] = 288297, - [SMALL_STATE(8207)] = 288310, - [SMALL_STATE(8208)] = 288323, - [SMALL_STATE(8209)] = 288332, - [SMALL_STATE(8210)] = 288345, - [SMALL_STATE(8211)] = 288358, - [SMALL_STATE(8212)] = 288367, - [SMALL_STATE(8213)] = 288380, - [SMALL_STATE(8214)] = 288393, - [SMALL_STATE(8215)] = 288406, - [SMALL_STATE(8216)] = 288419, - [SMALL_STATE(8217)] = 288432, - [SMALL_STATE(8218)] = 288445, - [SMALL_STATE(8219)] = 288458, - [SMALL_STATE(8220)] = 288471, - [SMALL_STATE(8221)] = 288484, - [SMALL_STATE(8222)] = 288497, - [SMALL_STATE(8223)] = 288510, - [SMALL_STATE(8224)] = 288523, - [SMALL_STATE(8225)] = 288536, - [SMALL_STATE(8226)] = 288547, - [SMALL_STATE(8227)] = 288560, - [SMALL_STATE(8228)] = 288571, - [SMALL_STATE(8229)] = 288584, - [SMALL_STATE(8230)] = 288597, - [SMALL_STATE(8231)] = 288610, - [SMALL_STATE(8232)] = 288623, - [SMALL_STATE(8233)] = 288634, - [SMALL_STATE(8234)] = 288647, - [SMALL_STATE(8235)] = 288656, - [SMALL_STATE(8236)] = 288669, - [SMALL_STATE(8237)] = 288682, - [SMALL_STATE(8238)] = 288695, - [SMALL_STATE(8239)] = 288708, - [SMALL_STATE(8240)] = 288721, - [SMALL_STATE(8241)] = 288732, - [SMALL_STATE(8242)] = 288745, - [SMALL_STATE(8243)] = 288758, - [SMALL_STATE(8244)] = 288771, - [SMALL_STATE(8245)] = 288784, - [SMALL_STATE(8246)] = 288797, - [SMALL_STATE(8247)] = 288810, - [SMALL_STATE(8248)] = 288823, - [SMALL_STATE(8249)] = 288834, - [SMALL_STATE(8250)] = 288845, - [SMALL_STATE(8251)] = 288858, - [SMALL_STATE(8252)] = 288867, - [SMALL_STATE(8253)] = 288880, - [SMALL_STATE(8254)] = 288891, - [SMALL_STATE(8255)] = 288904, - [SMALL_STATE(8256)] = 288917, - [SMALL_STATE(8257)] = 288930, - [SMALL_STATE(8258)] = 288943, - [SMALL_STATE(8259)] = 288952, - [SMALL_STATE(8260)] = 288965, - [SMALL_STATE(8261)] = 288978, - [SMALL_STATE(8262)] = 288991, - [SMALL_STATE(8263)] = 289000, - [SMALL_STATE(8264)] = 289013, - [SMALL_STATE(8265)] = 289026, - [SMALL_STATE(8266)] = 289037, - [SMALL_STATE(8267)] = 289050, - [SMALL_STATE(8268)] = 289063, - [SMALL_STATE(8269)] = 289076, - [SMALL_STATE(8270)] = 289089, - [SMALL_STATE(8271)] = 289102, - [SMALL_STATE(8272)] = 289115, - [SMALL_STATE(8273)] = 289128, - [SMALL_STATE(8274)] = 289141, - [SMALL_STATE(8275)] = 289154, - [SMALL_STATE(8276)] = 289167, - [SMALL_STATE(8277)] = 289180, - [SMALL_STATE(8278)] = 289193, - [SMALL_STATE(8279)] = 289206, - [SMALL_STATE(8280)] = 289219, - [SMALL_STATE(8281)] = 289228, - [SMALL_STATE(8282)] = 289241, - [SMALL_STATE(8283)] = 289250, - [SMALL_STATE(8284)] = 289263, - [SMALL_STATE(8285)] = 289276, - [SMALL_STATE(8286)] = 289289, - [SMALL_STATE(8287)] = 289300, - [SMALL_STATE(8288)] = 289313, - [SMALL_STATE(8289)] = 289326, - [SMALL_STATE(8290)] = 289339, - [SMALL_STATE(8291)] = 289352, - [SMALL_STATE(8292)] = 289365, - [SMALL_STATE(8293)] = 289378, - [SMALL_STATE(8294)] = 289391, - [SMALL_STATE(8295)] = 289400, - [SMALL_STATE(8296)] = 289413, - [SMALL_STATE(8297)] = 289422, - [SMALL_STATE(8298)] = 289435, - [SMALL_STATE(8299)] = 289448, - [SMALL_STATE(8300)] = 289461, - [SMALL_STATE(8301)] = 289474, - [SMALL_STATE(8302)] = 289487, - [SMALL_STATE(8303)] = 289500, - [SMALL_STATE(8304)] = 289509, - [SMALL_STATE(8305)] = 289520, - [SMALL_STATE(8306)] = 289533, - [SMALL_STATE(8307)] = 289542, - [SMALL_STATE(8308)] = 289555, - [SMALL_STATE(8309)] = 289568, - [SMALL_STATE(8310)] = 289581, - [SMALL_STATE(8311)] = 289594, - [SMALL_STATE(8312)] = 289607, - [SMALL_STATE(8313)] = 289620, - [SMALL_STATE(8314)] = 289633, - [SMALL_STATE(8315)] = 289646, - [SMALL_STATE(8316)] = 289659, - [SMALL_STATE(8317)] = 289670, - [SMALL_STATE(8318)] = 289683, - [SMALL_STATE(8319)] = 289696, - [SMALL_STATE(8320)] = 289709, - [SMALL_STATE(8321)] = 289722, - [SMALL_STATE(8322)] = 289735, - [SMALL_STATE(8323)] = 289748, - [SMALL_STATE(8324)] = 289761, - [SMALL_STATE(8325)] = 289774, - [SMALL_STATE(8326)] = 289787, - [SMALL_STATE(8327)] = 289798, - [SMALL_STATE(8328)] = 289811, - [SMALL_STATE(8329)] = 289824, - [SMALL_STATE(8330)] = 289835, - [SMALL_STATE(8331)] = 289846, - [SMALL_STATE(8332)] = 289859, - [SMALL_STATE(8333)] = 289872, - [SMALL_STATE(8334)] = 289885, - [SMALL_STATE(8335)] = 289898, - [SMALL_STATE(8336)] = 289911, - [SMALL_STATE(8337)] = 289924, - [SMALL_STATE(8338)] = 289935, - [SMALL_STATE(8339)] = 289946, - [SMALL_STATE(8340)] = 289959, - [SMALL_STATE(8341)] = 289972, - [SMALL_STATE(8342)] = 289985, - [SMALL_STATE(8343)] = 289998, - [SMALL_STATE(8344)] = 290011, - [SMALL_STATE(8345)] = 290024, - [SMALL_STATE(8346)] = 290037, - [SMALL_STATE(8347)] = 290050, - [SMALL_STATE(8348)] = 290063, - [SMALL_STATE(8349)] = 290076, - [SMALL_STATE(8350)] = 290089, - [SMALL_STATE(8351)] = 290102, - [SMALL_STATE(8352)] = 290115, - [SMALL_STATE(8353)] = 290128, - [SMALL_STATE(8354)] = 290141, - [SMALL_STATE(8355)] = 290154, - [SMALL_STATE(8356)] = 290167, - [SMALL_STATE(8357)] = 290180, - [SMALL_STATE(8358)] = 290191, - [SMALL_STATE(8359)] = 290204, - [SMALL_STATE(8360)] = 290217, - [SMALL_STATE(8361)] = 290230, - [SMALL_STATE(8362)] = 290243, - [SMALL_STATE(8363)] = 290256, - [SMALL_STATE(8364)] = 290269, - [SMALL_STATE(8365)] = 290282, - [SMALL_STATE(8366)] = 290293, - [SMALL_STATE(8367)] = 290306, - [SMALL_STATE(8368)] = 290319, - [SMALL_STATE(8369)] = 290332, - [SMALL_STATE(8370)] = 290345, - [SMALL_STATE(8371)] = 290358, - [SMALL_STATE(8372)] = 290371, - [SMALL_STATE(8373)] = 290384, - [SMALL_STATE(8374)] = 290397, - [SMALL_STATE(8375)] = 290410, - [SMALL_STATE(8376)] = 290423, - [SMALL_STATE(8377)] = 290436, - [SMALL_STATE(8378)] = 290447, - [SMALL_STATE(8379)] = 290460, - [SMALL_STATE(8380)] = 290473, - [SMALL_STATE(8381)] = 290484, - [SMALL_STATE(8382)] = 290497, - [SMALL_STATE(8383)] = 290510, - [SMALL_STATE(8384)] = 290523, - [SMALL_STATE(8385)] = 290536, - [SMALL_STATE(8386)] = 290549, - [SMALL_STATE(8387)] = 290562, - [SMALL_STATE(8388)] = 290575, - [SMALL_STATE(8389)] = 290588, - [SMALL_STATE(8390)] = 290601, - [SMALL_STATE(8391)] = 290614, - [SMALL_STATE(8392)] = 290627, - [SMALL_STATE(8393)] = 290640, - [SMALL_STATE(8394)] = 290653, - [SMALL_STATE(8395)] = 290666, - [SMALL_STATE(8396)] = 290679, - [SMALL_STATE(8397)] = 290692, - [SMALL_STATE(8398)] = 290705, - [SMALL_STATE(8399)] = 290718, - [SMALL_STATE(8400)] = 290731, - [SMALL_STATE(8401)] = 290744, - [SMALL_STATE(8402)] = 290755, - [SMALL_STATE(8403)] = 290768, - [SMALL_STATE(8404)] = 290781, - [SMALL_STATE(8405)] = 290794, - [SMALL_STATE(8406)] = 290807, - [SMALL_STATE(8407)] = 290818, - [SMALL_STATE(8408)] = 290831, - [SMALL_STATE(8409)] = 290844, - [SMALL_STATE(8410)] = 290857, - [SMALL_STATE(8411)] = 290870, - [SMALL_STATE(8412)] = 290883, - [SMALL_STATE(8413)] = 290896, - [SMALL_STATE(8414)] = 290909, - [SMALL_STATE(8415)] = 290922, - [SMALL_STATE(8416)] = 290935, - [SMALL_STATE(8417)] = 290948, - [SMALL_STATE(8418)] = 290961, - [SMALL_STATE(8419)] = 290974, - [SMALL_STATE(8420)] = 290987, - [SMALL_STATE(8421)] = 291000, - [SMALL_STATE(8422)] = 291013, - [SMALL_STATE(8423)] = 291026, - [SMALL_STATE(8424)] = 291039, - [SMALL_STATE(8425)] = 291050, - [SMALL_STATE(8426)] = 291063, - [SMALL_STATE(8427)] = 291076, - [SMALL_STATE(8428)] = 291089, - [SMALL_STATE(8429)] = 291102, - [SMALL_STATE(8430)] = 291115, - [SMALL_STATE(8431)] = 291128, - [SMALL_STATE(8432)] = 291141, - [SMALL_STATE(8433)] = 291154, - [SMALL_STATE(8434)] = 291164, - [SMALL_STATE(8435)] = 291172, - [SMALL_STATE(8436)] = 291182, - [SMALL_STATE(8437)] = 291192, - [SMALL_STATE(8438)] = 291202, - [SMALL_STATE(8439)] = 291212, - [SMALL_STATE(8440)] = 291222, - [SMALL_STATE(8441)] = 291232, - [SMALL_STATE(8442)] = 291242, - [SMALL_STATE(8443)] = 291252, - [SMALL_STATE(8444)] = 291262, - [SMALL_STATE(8445)] = 291272, - [SMALL_STATE(8446)] = 291282, - [SMALL_STATE(8447)] = 291292, - [SMALL_STATE(8448)] = 291302, - [SMALL_STATE(8449)] = 291310, - [SMALL_STATE(8450)] = 291320, - [SMALL_STATE(8451)] = 291330, - [SMALL_STATE(8452)] = 291340, - [SMALL_STATE(8453)] = 291350, - [SMALL_STATE(8454)] = 291360, - [SMALL_STATE(8455)] = 291370, - [SMALL_STATE(8456)] = 291380, - [SMALL_STATE(8457)] = 291390, - [SMALL_STATE(8458)] = 291400, - [SMALL_STATE(8459)] = 291410, - [SMALL_STATE(8460)] = 291420, - [SMALL_STATE(8461)] = 291430, - [SMALL_STATE(8462)] = 291440, - [SMALL_STATE(8463)] = 291450, - [SMALL_STATE(8464)] = 291460, - [SMALL_STATE(8465)] = 291470, - [SMALL_STATE(8466)] = 291480, - [SMALL_STATE(8467)] = 291490, - [SMALL_STATE(8468)] = 291500, - [SMALL_STATE(8469)] = 291510, - [SMALL_STATE(8470)] = 291520, - [SMALL_STATE(8471)] = 291530, - [SMALL_STATE(8472)] = 291540, - [SMALL_STATE(8473)] = 291550, - [SMALL_STATE(8474)] = 291560, - [SMALL_STATE(8475)] = 291570, - [SMALL_STATE(8476)] = 291580, - [SMALL_STATE(8477)] = 291590, - [SMALL_STATE(8478)] = 291600, - [SMALL_STATE(8479)] = 291610, - [SMALL_STATE(8480)] = 291620, - [SMALL_STATE(8481)] = 291630, - [SMALL_STATE(8482)] = 291640, - [SMALL_STATE(8483)] = 291648, - [SMALL_STATE(8484)] = 291658, - [SMALL_STATE(8485)] = 291668, - [SMALL_STATE(8486)] = 291678, - [SMALL_STATE(8487)] = 291688, - [SMALL_STATE(8488)] = 291698, - [SMALL_STATE(8489)] = 291708, - [SMALL_STATE(8490)] = 291718, - [SMALL_STATE(8491)] = 291728, - [SMALL_STATE(8492)] = 291738, - [SMALL_STATE(8493)] = 291748, - [SMALL_STATE(8494)] = 291758, - [SMALL_STATE(8495)] = 291768, - [SMALL_STATE(8496)] = 291778, - [SMALL_STATE(8497)] = 291788, - [SMALL_STATE(8498)] = 291798, - [SMALL_STATE(8499)] = 291808, - [SMALL_STATE(8500)] = 291818, - [SMALL_STATE(8501)] = 291828, - [SMALL_STATE(8502)] = 291838, - [SMALL_STATE(8503)] = 291848, - [SMALL_STATE(8504)] = 291858, - [SMALL_STATE(8505)] = 291868, - [SMALL_STATE(8506)] = 291878, - [SMALL_STATE(8507)] = 291888, - [SMALL_STATE(8508)] = 291898, - [SMALL_STATE(8509)] = 291908, - [SMALL_STATE(8510)] = 291918, - [SMALL_STATE(8511)] = 291928, - [SMALL_STATE(8512)] = 291938, - [SMALL_STATE(8513)] = 291948, - [SMALL_STATE(8514)] = 291958, - [SMALL_STATE(8515)] = 291966, - [SMALL_STATE(8516)] = 291976, - [SMALL_STATE(8517)] = 291986, - [SMALL_STATE(8518)] = 291996, - [SMALL_STATE(8519)] = 292006, - [SMALL_STATE(8520)] = 292016, - [SMALL_STATE(8521)] = 292024, - [SMALL_STATE(8522)] = 292034, - [SMALL_STATE(8523)] = 292044, - [SMALL_STATE(8524)] = 292054, - [SMALL_STATE(8525)] = 292064, - [SMALL_STATE(8526)] = 292074, - [SMALL_STATE(8527)] = 292084, - [SMALL_STATE(8528)] = 292094, - [SMALL_STATE(8529)] = 292104, - [SMALL_STATE(8530)] = 292114, - [SMALL_STATE(8531)] = 292124, - [SMALL_STATE(8532)] = 292134, - [SMALL_STATE(8533)] = 292144, - [SMALL_STATE(8534)] = 292154, - [SMALL_STATE(8535)] = 292164, - [SMALL_STATE(8536)] = 292174, - [SMALL_STATE(8537)] = 292184, - [SMALL_STATE(8538)] = 292194, - [SMALL_STATE(8539)] = 292204, - [SMALL_STATE(8540)] = 292214, - [SMALL_STATE(8541)] = 292224, - [SMALL_STATE(8542)] = 292234, - [SMALL_STATE(8543)] = 292242, - [SMALL_STATE(8544)] = 292252, - [SMALL_STATE(8545)] = 292262, - [SMALL_STATE(8546)] = 292272, - [SMALL_STATE(8547)] = 292282, - [SMALL_STATE(8548)] = 292292, - [SMALL_STATE(8549)] = 292302, - [SMALL_STATE(8550)] = 292312, - [SMALL_STATE(8551)] = 292322, - [SMALL_STATE(8552)] = 292332, - [SMALL_STATE(8553)] = 292342, - [SMALL_STATE(8554)] = 292352, - [SMALL_STATE(8555)] = 292362, - [SMALL_STATE(8556)] = 292372, - [SMALL_STATE(8557)] = 292382, - [SMALL_STATE(8558)] = 292392, - [SMALL_STATE(8559)] = 292402, - [SMALL_STATE(8560)] = 292412, - [SMALL_STATE(8561)] = 292422, - [SMALL_STATE(8562)] = 292432, - [SMALL_STATE(8563)] = 292442, - [SMALL_STATE(8564)] = 292452, - [SMALL_STATE(8565)] = 292462, - [SMALL_STATE(8566)] = 292472, - [SMALL_STATE(8567)] = 292482, - [SMALL_STATE(8568)] = 292492, - [SMALL_STATE(8569)] = 292502, - [SMALL_STATE(8570)] = 292512, - [SMALL_STATE(8571)] = 292522, - [SMALL_STATE(8572)] = 292532, - [SMALL_STATE(8573)] = 292542, - [SMALL_STATE(8574)] = 292552, - [SMALL_STATE(8575)] = 292562, - [SMALL_STATE(8576)] = 292572, - [SMALL_STATE(8577)] = 292582, - [SMALL_STATE(8578)] = 292592, - [SMALL_STATE(8579)] = 292602, - [SMALL_STATE(8580)] = 292612, - [SMALL_STATE(8581)] = 292622, - [SMALL_STATE(8582)] = 292632, - [SMALL_STATE(8583)] = 292642, - [SMALL_STATE(8584)] = 292652, - [SMALL_STATE(8585)] = 292662, - [SMALL_STATE(8586)] = 292672, - [SMALL_STATE(8587)] = 292682, - [SMALL_STATE(8588)] = 292692, - [SMALL_STATE(8589)] = 292702, - [SMALL_STATE(8590)] = 292712, - [SMALL_STATE(8591)] = 292722, - [SMALL_STATE(8592)] = 292732, - [SMALL_STATE(8593)] = 292742, - [SMALL_STATE(8594)] = 292752, - [SMALL_STATE(8595)] = 292762, - [SMALL_STATE(8596)] = 292772, - [SMALL_STATE(8597)] = 292782, - [SMALL_STATE(8598)] = 292792, - [SMALL_STATE(8599)] = 292802, - [SMALL_STATE(8600)] = 292812, - [SMALL_STATE(8601)] = 292822, - [SMALL_STATE(8602)] = 292830, - [SMALL_STATE(8603)] = 292840, - [SMALL_STATE(8604)] = 292850, - [SMALL_STATE(8605)] = 292860, - [SMALL_STATE(8606)] = 292870, - [SMALL_STATE(8607)] = 292880, - [SMALL_STATE(8608)] = 292890, - [SMALL_STATE(8609)] = 292898, - [SMALL_STATE(8610)] = 292908, - [SMALL_STATE(8611)] = 292918, - [SMALL_STATE(8612)] = 292928, - [SMALL_STATE(8613)] = 292938, - [SMALL_STATE(8614)] = 292948, - [SMALL_STATE(8615)] = 292958, - [SMALL_STATE(8616)] = 292968, - [SMALL_STATE(8617)] = 292978, - [SMALL_STATE(8618)] = 292988, - [SMALL_STATE(8619)] = 292998, - [SMALL_STATE(8620)] = 293008, - [SMALL_STATE(8621)] = 293018, - [SMALL_STATE(8622)] = 293028, - [SMALL_STATE(8623)] = 293038, - [SMALL_STATE(8624)] = 293046, - [SMALL_STATE(8625)] = 293056, - [SMALL_STATE(8626)] = 293066, - [SMALL_STATE(8627)] = 293076, - [SMALL_STATE(8628)] = 293086, - [SMALL_STATE(8629)] = 293094, - [SMALL_STATE(8630)] = 293104, - [SMALL_STATE(8631)] = 293114, - [SMALL_STATE(8632)] = 293124, - [SMALL_STATE(8633)] = 293134, - [SMALL_STATE(8634)] = 293144, - [SMALL_STATE(8635)] = 293154, - [SMALL_STATE(8636)] = 293164, - [SMALL_STATE(8637)] = 293174, - [SMALL_STATE(8638)] = 293184, - [SMALL_STATE(8639)] = 293194, - [SMALL_STATE(8640)] = 293204, - [SMALL_STATE(8641)] = 293214, - [SMALL_STATE(8642)] = 293224, - [SMALL_STATE(8643)] = 293234, - [SMALL_STATE(8644)] = 293244, - [SMALL_STATE(8645)] = 293254, - [SMALL_STATE(8646)] = 293264, - [SMALL_STATE(8647)] = 293274, - [SMALL_STATE(8648)] = 293282, - [SMALL_STATE(8649)] = 293290, - [SMALL_STATE(8650)] = 293300, - [SMALL_STATE(8651)] = 293310, - [SMALL_STATE(8652)] = 293320, - [SMALL_STATE(8653)] = 293330, - [SMALL_STATE(8654)] = 293340, - [SMALL_STATE(8655)] = 293350, - [SMALL_STATE(8656)] = 293360, - [SMALL_STATE(8657)] = 293370, - [SMALL_STATE(8658)] = 293380, - [SMALL_STATE(8659)] = 293390, - [SMALL_STATE(8660)] = 293400, - [SMALL_STATE(8661)] = 293410, - [SMALL_STATE(8662)] = 293420, - [SMALL_STATE(8663)] = 293430, - [SMALL_STATE(8664)] = 293440, - [SMALL_STATE(8665)] = 293450, - [SMALL_STATE(8666)] = 293460, - [SMALL_STATE(8667)] = 293470, - [SMALL_STATE(8668)] = 293480, - [SMALL_STATE(8669)] = 293490, - [SMALL_STATE(8670)] = 293498, - [SMALL_STATE(8671)] = 293508, - [SMALL_STATE(8672)] = 293518, - [SMALL_STATE(8673)] = 293526, - [SMALL_STATE(8674)] = 293534, - [SMALL_STATE(8675)] = 293544, - [SMALL_STATE(8676)] = 293554, - [SMALL_STATE(8677)] = 293564, - [SMALL_STATE(8678)] = 293574, - [SMALL_STATE(8679)] = 293584, - [SMALL_STATE(8680)] = 293594, - [SMALL_STATE(8681)] = 293604, - [SMALL_STATE(8682)] = 293612, - [SMALL_STATE(8683)] = 293622, - [SMALL_STATE(8684)] = 293632, - [SMALL_STATE(8685)] = 293642, - [SMALL_STATE(8686)] = 293652, - [SMALL_STATE(8687)] = 293662, - [SMALL_STATE(8688)] = 293672, - [SMALL_STATE(8689)] = 293682, - [SMALL_STATE(8690)] = 293692, - [SMALL_STATE(8691)] = 293702, - [SMALL_STATE(8692)] = 293712, - [SMALL_STATE(8693)] = 293722, - [SMALL_STATE(8694)] = 293732, - [SMALL_STATE(8695)] = 293742, - [SMALL_STATE(8696)] = 293752, - [SMALL_STATE(8697)] = 293762, - [SMALL_STATE(8698)] = 293772, - [SMALL_STATE(8699)] = 293782, - [SMALL_STATE(8700)] = 293792, - [SMALL_STATE(8701)] = 293802, - [SMALL_STATE(8702)] = 293812, - [SMALL_STATE(8703)] = 293822, - [SMALL_STATE(8704)] = 293832, - [SMALL_STATE(8705)] = 293842, - [SMALL_STATE(8706)] = 293852, - [SMALL_STATE(8707)] = 293860, - [SMALL_STATE(8708)] = 293870, - [SMALL_STATE(8709)] = 293880, - [SMALL_STATE(8710)] = 293890, - [SMALL_STATE(8711)] = 293900, - [SMALL_STATE(8712)] = 293910, - [SMALL_STATE(8713)] = 293920, - [SMALL_STATE(8714)] = 293930, - [SMALL_STATE(8715)] = 293940, - [SMALL_STATE(8716)] = 293950, - [SMALL_STATE(8717)] = 293960, - [SMALL_STATE(8718)] = 293970, - [SMALL_STATE(8719)] = 293980, - [SMALL_STATE(8720)] = 293990, - [SMALL_STATE(8721)] = 294000, - [SMALL_STATE(8722)] = 294010, - [SMALL_STATE(8723)] = 294018, - [SMALL_STATE(8724)] = 294028, - [SMALL_STATE(8725)] = 294038, - [SMALL_STATE(8726)] = 294048, - [SMALL_STATE(8727)] = 294058, - [SMALL_STATE(8728)] = 294068, - [SMALL_STATE(8729)] = 294078, - [SMALL_STATE(8730)] = 294086, - [SMALL_STATE(8731)] = 294096, - [SMALL_STATE(8732)] = 294106, - [SMALL_STATE(8733)] = 294116, - [SMALL_STATE(8734)] = 294126, - [SMALL_STATE(8735)] = 294136, - [SMALL_STATE(8736)] = 294146, - [SMALL_STATE(8737)] = 294156, - [SMALL_STATE(8738)] = 294166, - [SMALL_STATE(8739)] = 294176, - [SMALL_STATE(8740)] = 294184, - [SMALL_STATE(8741)] = 294194, - [SMALL_STATE(8742)] = 294204, - [SMALL_STATE(8743)] = 294212, - [SMALL_STATE(8744)] = 294220, - [SMALL_STATE(8745)] = 294230, - [SMALL_STATE(8746)] = 294240, - [SMALL_STATE(8747)] = 294250, - [SMALL_STATE(8748)] = 294260, - [SMALL_STATE(8749)] = 294268, - [SMALL_STATE(8750)] = 294278, - [SMALL_STATE(8751)] = 294286, - [SMALL_STATE(8752)] = 294294, - [SMALL_STATE(8753)] = 294304, - [SMALL_STATE(8754)] = 294314, - [SMALL_STATE(8755)] = 294324, - [SMALL_STATE(8756)] = 294332, - [SMALL_STATE(8757)] = 294342, - [SMALL_STATE(8758)] = 294352, - [SMALL_STATE(8759)] = 294362, - [SMALL_STATE(8760)] = 294372, - [SMALL_STATE(8761)] = 294382, - [SMALL_STATE(8762)] = 294392, - [SMALL_STATE(8763)] = 294400, - [SMALL_STATE(8764)] = 294410, - [SMALL_STATE(8765)] = 294420, - [SMALL_STATE(8766)] = 294430, - [SMALL_STATE(8767)] = 294440, - [SMALL_STATE(8768)] = 294450, - [SMALL_STATE(8769)] = 294460, - [SMALL_STATE(8770)] = 294470, - [SMALL_STATE(8771)] = 294480, - [SMALL_STATE(8772)] = 294490, - [SMALL_STATE(8773)] = 294500, - [SMALL_STATE(8774)] = 294510, - [SMALL_STATE(8775)] = 294520, - [SMALL_STATE(8776)] = 294530, - [SMALL_STATE(8777)] = 294540, - [SMALL_STATE(8778)] = 294550, - [SMALL_STATE(8779)] = 294558, - [SMALL_STATE(8780)] = 294566, - [SMALL_STATE(8781)] = 294574, - [SMALL_STATE(8782)] = 294584, - [SMALL_STATE(8783)] = 294592, - [SMALL_STATE(8784)] = 294600, - [SMALL_STATE(8785)] = 294610, - [SMALL_STATE(8786)] = 294620, - [SMALL_STATE(8787)] = 294630, - [SMALL_STATE(8788)] = 294640, - [SMALL_STATE(8789)] = 294650, - [SMALL_STATE(8790)] = 294660, - [SMALL_STATE(8791)] = 294670, - [SMALL_STATE(8792)] = 294680, - [SMALL_STATE(8793)] = 294690, - [SMALL_STATE(8794)] = 294700, - [SMALL_STATE(8795)] = 294708, - [SMALL_STATE(8796)] = 294718, - [SMALL_STATE(8797)] = 294726, - [SMALL_STATE(8798)] = 294736, - [SMALL_STATE(8799)] = 294746, - [SMALL_STATE(8800)] = 294756, - [SMALL_STATE(8801)] = 294766, - [SMALL_STATE(8802)] = 294776, - [SMALL_STATE(8803)] = 294786, - [SMALL_STATE(8804)] = 294796, - [SMALL_STATE(8805)] = 294806, - [SMALL_STATE(8806)] = 294816, - [SMALL_STATE(8807)] = 294826, - [SMALL_STATE(8808)] = 294836, - [SMALL_STATE(8809)] = 294846, - [SMALL_STATE(8810)] = 294856, - [SMALL_STATE(8811)] = 294866, - [SMALL_STATE(8812)] = 294876, - [SMALL_STATE(8813)] = 294886, - [SMALL_STATE(8814)] = 294896, - [SMALL_STATE(8815)] = 294906, - [SMALL_STATE(8816)] = 294914, - [SMALL_STATE(8817)] = 294924, - [SMALL_STATE(8818)] = 294932, - [SMALL_STATE(8819)] = 294942, - [SMALL_STATE(8820)] = 294950, - [SMALL_STATE(8821)] = 294960, - [SMALL_STATE(8822)] = 294968, - [SMALL_STATE(8823)] = 294976, - [SMALL_STATE(8824)] = 294986, - [SMALL_STATE(8825)] = 294996, - [SMALL_STATE(8826)] = 295006, - [SMALL_STATE(8827)] = 295014, - [SMALL_STATE(8828)] = 295024, - [SMALL_STATE(8829)] = 295034, - [SMALL_STATE(8830)] = 295044, - [SMALL_STATE(8831)] = 295054, - [SMALL_STATE(8832)] = 295064, - [SMALL_STATE(8833)] = 295072, - [SMALL_STATE(8834)] = 295082, - [SMALL_STATE(8835)] = 295090, - [SMALL_STATE(8836)] = 295098, - [SMALL_STATE(8837)] = 295108, - [SMALL_STATE(8838)] = 295118, - [SMALL_STATE(8839)] = 295128, - [SMALL_STATE(8840)] = 295136, - [SMALL_STATE(8841)] = 295146, - [SMALL_STATE(8842)] = 295156, - [SMALL_STATE(8843)] = 295164, - [SMALL_STATE(8844)] = 295174, - [SMALL_STATE(8845)] = 295182, - [SMALL_STATE(8846)] = 295192, - [SMALL_STATE(8847)] = 295202, - [SMALL_STATE(8848)] = 295212, - [SMALL_STATE(8849)] = 295222, - [SMALL_STATE(8850)] = 295232, - [SMALL_STATE(8851)] = 295240, - [SMALL_STATE(8852)] = 295250, - [SMALL_STATE(8853)] = 295260, - [SMALL_STATE(8854)] = 295270, - [SMALL_STATE(8855)] = 295280, - [SMALL_STATE(8856)] = 295288, - [SMALL_STATE(8857)] = 295295, - [SMALL_STATE(8858)] = 295302, - [SMALL_STATE(8859)] = 295309, - [SMALL_STATE(8860)] = 295316, - [SMALL_STATE(8861)] = 295323, - [SMALL_STATE(8862)] = 295330, - [SMALL_STATE(8863)] = 295337, - [SMALL_STATE(8864)] = 295344, - [SMALL_STATE(8865)] = 295351, - [SMALL_STATE(8866)] = 295358, - [SMALL_STATE(8867)] = 295365, - [SMALL_STATE(8868)] = 295372, - [SMALL_STATE(8869)] = 295379, - [SMALL_STATE(8870)] = 295386, - [SMALL_STATE(8871)] = 295393, - [SMALL_STATE(8872)] = 295400, - [SMALL_STATE(8873)] = 295407, - [SMALL_STATE(8874)] = 295414, - [SMALL_STATE(8875)] = 295421, - [SMALL_STATE(8876)] = 295428, - [SMALL_STATE(8877)] = 295435, - [SMALL_STATE(8878)] = 295442, - [SMALL_STATE(8879)] = 295449, - [SMALL_STATE(8880)] = 295456, - [SMALL_STATE(8881)] = 295463, - [SMALL_STATE(8882)] = 295470, - [SMALL_STATE(8883)] = 295477, - [SMALL_STATE(8884)] = 295484, - [SMALL_STATE(8885)] = 295491, - [SMALL_STATE(8886)] = 295498, - [SMALL_STATE(8887)] = 295505, - [SMALL_STATE(8888)] = 295512, - [SMALL_STATE(8889)] = 295519, - [SMALL_STATE(8890)] = 295526, - [SMALL_STATE(8891)] = 295533, - [SMALL_STATE(8892)] = 295540, - [SMALL_STATE(8893)] = 295547, - [SMALL_STATE(8894)] = 295554, - [SMALL_STATE(8895)] = 295561, - [SMALL_STATE(8896)] = 295568, - [SMALL_STATE(8897)] = 295575, - [SMALL_STATE(8898)] = 295582, - [SMALL_STATE(8899)] = 295589, - [SMALL_STATE(8900)] = 295596, - [SMALL_STATE(8901)] = 295603, - [SMALL_STATE(8902)] = 295610, - [SMALL_STATE(8903)] = 295617, - [SMALL_STATE(8904)] = 295624, - [SMALL_STATE(8905)] = 295631, - [SMALL_STATE(8906)] = 295638, - [SMALL_STATE(8907)] = 295645, - [SMALL_STATE(8908)] = 295652, - [SMALL_STATE(8909)] = 295659, - [SMALL_STATE(8910)] = 295666, - [SMALL_STATE(8911)] = 295673, - [SMALL_STATE(8912)] = 295680, - [SMALL_STATE(8913)] = 295687, - [SMALL_STATE(8914)] = 295694, - [SMALL_STATE(8915)] = 295701, - [SMALL_STATE(8916)] = 295708, - [SMALL_STATE(8917)] = 295715, - [SMALL_STATE(8918)] = 295722, - [SMALL_STATE(8919)] = 295729, - [SMALL_STATE(8920)] = 295736, - [SMALL_STATE(8921)] = 295743, - [SMALL_STATE(8922)] = 295750, - [SMALL_STATE(8923)] = 295757, - [SMALL_STATE(8924)] = 295764, - [SMALL_STATE(8925)] = 295771, - [SMALL_STATE(8926)] = 295778, - [SMALL_STATE(8927)] = 295785, - [SMALL_STATE(8928)] = 295792, - [SMALL_STATE(8929)] = 295799, - [SMALL_STATE(8930)] = 295806, - [SMALL_STATE(8931)] = 295813, - [SMALL_STATE(8932)] = 295820, - [SMALL_STATE(8933)] = 295827, - [SMALL_STATE(8934)] = 295834, - [SMALL_STATE(8935)] = 295841, - [SMALL_STATE(8936)] = 295848, - [SMALL_STATE(8937)] = 295855, - [SMALL_STATE(8938)] = 295862, - [SMALL_STATE(8939)] = 295869, - [SMALL_STATE(8940)] = 295876, - [SMALL_STATE(8941)] = 295883, - [SMALL_STATE(8942)] = 295890, - [SMALL_STATE(8943)] = 295897, - [SMALL_STATE(8944)] = 295904, - [SMALL_STATE(8945)] = 295911, - [SMALL_STATE(8946)] = 295918, - [SMALL_STATE(8947)] = 295925, - [SMALL_STATE(8948)] = 295932, - [SMALL_STATE(8949)] = 295939, - [SMALL_STATE(8950)] = 295946, - [SMALL_STATE(8951)] = 295953, - [SMALL_STATE(8952)] = 295960, - [SMALL_STATE(8953)] = 295967, - [SMALL_STATE(8954)] = 295974, - [SMALL_STATE(8955)] = 295981, - [SMALL_STATE(8956)] = 295988, - [SMALL_STATE(8957)] = 295995, - [SMALL_STATE(8958)] = 296002, - [SMALL_STATE(8959)] = 296009, - [SMALL_STATE(8960)] = 296016, - [SMALL_STATE(8961)] = 296023, - [SMALL_STATE(8962)] = 296030, - [SMALL_STATE(8963)] = 296037, - [SMALL_STATE(8964)] = 296044, - [SMALL_STATE(8965)] = 296051, - [SMALL_STATE(8966)] = 296058, - [SMALL_STATE(8967)] = 296065, - [SMALL_STATE(8968)] = 296072, - [SMALL_STATE(8969)] = 296079, - [SMALL_STATE(8970)] = 296086, - [SMALL_STATE(8971)] = 296093, - [SMALL_STATE(8972)] = 296100, - [SMALL_STATE(8973)] = 296107, - [SMALL_STATE(8974)] = 296114, - [SMALL_STATE(8975)] = 296121, - [SMALL_STATE(8976)] = 296128, - [SMALL_STATE(8977)] = 296135, - [SMALL_STATE(8978)] = 296142, - [SMALL_STATE(8979)] = 296149, - [SMALL_STATE(8980)] = 296156, - [SMALL_STATE(8981)] = 296163, - [SMALL_STATE(8982)] = 296170, - [SMALL_STATE(8983)] = 296177, - [SMALL_STATE(8984)] = 296184, - [SMALL_STATE(8985)] = 296191, - [SMALL_STATE(8986)] = 296198, - [SMALL_STATE(8987)] = 296205, - [SMALL_STATE(8988)] = 296212, - [SMALL_STATE(8989)] = 296219, - [SMALL_STATE(8990)] = 296226, - [SMALL_STATE(8991)] = 296233, - [SMALL_STATE(8992)] = 296240, - [SMALL_STATE(8993)] = 296247, - [SMALL_STATE(8994)] = 296254, - [SMALL_STATE(8995)] = 296261, - [SMALL_STATE(8996)] = 296268, - [SMALL_STATE(8997)] = 296275, - [SMALL_STATE(8998)] = 296282, - [SMALL_STATE(8999)] = 296289, - [SMALL_STATE(9000)] = 296296, - [SMALL_STATE(9001)] = 296303, - [SMALL_STATE(9002)] = 296310, - [SMALL_STATE(9003)] = 296317, - [SMALL_STATE(9004)] = 296324, - [SMALL_STATE(9005)] = 296331, - [SMALL_STATE(9006)] = 296338, - [SMALL_STATE(9007)] = 296345, - [SMALL_STATE(9008)] = 296352, - [SMALL_STATE(9009)] = 296359, - [SMALL_STATE(9010)] = 296366, - [SMALL_STATE(9011)] = 296373, - [SMALL_STATE(9012)] = 296380, - [SMALL_STATE(9013)] = 296387, - [SMALL_STATE(9014)] = 296394, - [SMALL_STATE(9015)] = 296401, - [SMALL_STATE(9016)] = 296408, - [SMALL_STATE(9017)] = 296415, - [SMALL_STATE(9018)] = 296422, - [SMALL_STATE(9019)] = 296429, - [SMALL_STATE(9020)] = 296436, - [SMALL_STATE(9021)] = 296443, - [SMALL_STATE(9022)] = 296450, - [SMALL_STATE(9023)] = 296457, - [SMALL_STATE(9024)] = 296464, - [SMALL_STATE(9025)] = 296471, - [SMALL_STATE(9026)] = 296478, - [SMALL_STATE(9027)] = 296485, - [SMALL_STATE(9028)] = 296492, - [SMALL_STATE(9029)] = 296499, - [SMALL_STATE(9030)] = 296506, - [SMALL_STATE(9031)] = 296513, - [SMALL_STATE(9032)] = 296520, - [SMALL_STATE(9033)] = 296527, - [SMALL_STATE(9034)] = 296534, - [SMALL_STATE(9035)] = 296541, - [SMALL_STATE(9036)] = 296548, - [SMALL_STATE(9037)] = 296555, - [SMALL_STATE(9038)] = 296562, - [SMALL_STATE(9039)] = 296569, - [SMALL_STATE(9040)] = 296576, - [SMALL_STATE(9041)] = 296583, - [SMALL_STATE(9042)] = 296590, - [SMALL_STATE(9043)] = 296597, - [SMALL_STATE(9044)] = 296604, - [SMALL_STATE(9045)] = 296611, - [SMALL_STATE(9046)] = 296618, - [SMALL_STATE(9047)] = 296625, - [SMALL_STATE(9048)] = 296632, - [SMALL_STATE(9049)] = 296639, - [SMALL_STATE(9050)] = 296646, - [SMALL_STATE(9051)] = 296653, - [SMALL_STATE(9052)] = 296660, - [SMALL_STATE(9053)] = 296667, - [SMALL_STATE(9054)] = 296674, - [SMALL_STATE(9055)] = 296681, - [SMALL_STATE(9056)] = 296688, - [SMALL_STATE(9057)] = 296695, - [SMALL_STATE(9058)] = 296702, - [SMALL_STATE(9059)] = 296709, - [SMALL_STATE(9060)] = 296716, - [SMALL_STATE(9061)] = 296723, - [SMALL_STATE(9062)] = 296730, - [SMALL_STATE(9063)] = 296737, - [SMALL_STATE(9064)] = 296744, - [SMALL_STATE(9065)] = 296751, - [SMALL_STATE(9066)] = 296758, - [SMALL_STATE(9067)] = 296765, - [SMALL_STATE(9068)] = 296772, - [SMALL_STATE(9069)] = 296779, - [SMALL_STATE(9070)] = 296786, - [SMALL_STATE(9071)] = 296793, - [SMALL_STATE(9072)] = 296800, - [SMALL_STATE(9073)] = 296807, - [SMALL_STATE(9074)] = 296814, - [SMALL_STATE(9075)] = 296821, - [SMALL_STATE(9076)] = 296828, - [SMALL_STATE(9077)] = 296835, - [SMALL_STATE(9078)] = 296842, - [SMALL_STATE(9079)] = 296849, - [SMALL_STATE(9080)] = 296856, - [SMALL_STATE(9081)] = 296863, - [SMALL_STATE(9082)] = 296870, - [SMALL_STATE(9083)] = 296877, - [SMALL_STATE(9084)] = 296884, - [SMALL_STATE(9085)] = 296891, - [SMALL_STATE(9086)] = 296898, - [SMALL_STATE(9087)] = 296905, - [SMALL_STATE(9088)] = 296912, - [SMALL_STATE(9089)] = 296919, - [SMALL_STATE(9090)] = 296926, - [SMALL_STATE(9091)] = 296933, - [SMALL_STATE(9092)] = 296940, - [SMALL_STATE(9093)] = 296947, - [SMALL_STATE(9094)] = 296954, - [SMALL_STATE(9095)] = 296961, - [SMALL_STATE(9096)] = 296968, - [SMALL_STATE(9097)] = 296975, - [SMALL_STATE(9098)] = 296982, - [SMALL_STATE(9099)] = 296989, - [SMALL_STATE(9100)] = 296996, - [SMALL_STATE(9101)] = 297003, - [SMALL_STATE(9102)] = 297010, - [SMALL_STATE(9103)] = 297017, - [SMALL_STATE(9104)] = 297024, - [SMALL_STATE(9105)] = 297031, - [SMALL_STATE(9106)] = 297038, - [SMALL_STATE(9107)] = 297045, - [SMALL_STATE(9108)] = 297052, - [SMALL_STATE(9109)] = 297059, - [SMALL_STATE(9110)] = 297066, - [SMALL_STATE(9111)] = 297073, - [SMALL_STATE(9112)] = 297080, - [SMALL_STATE(9113)] = 297087, - [SMALL_STATE(9114)] = 297094, - [SMALL_STATE(9115)] = 297101, - [SMALL_STATE(9116)] = 297108, - [SMALL_STATE(9117)] = 297115, - [SMALL_STATE(9118)] = 297122, - [SMALL_STATE(9119)] = 297129, - [SMALL_STATE(9120)] = 297136, - [SMALL_STATE(9121)] = 297143, - [SMALL_STATE(9122)] = 297150, - [SMALL_STATE(9123)] = 297157, - [SMALL_STATE(9124)] = 297164, - [SMALL_STATE(9125)] = 297171, - [SMALL_STATE(9126)] = 297178, - [SMALL_STATE(9127)] = 297185, - [SMALL_STATE(9128)] = 297192, - [SMALL_STATE(9129)] = 297199, - [SMALL_STATE(9130)] = 297206, - [SMALL_STATE(9131)] = 297213, - [SMALL_STATE(9132)] = 297220, - [SMALL_STATE(9133)] = 297227, - [SMALL_STATE(9134)] = 297234, - [SMALL_STATE(9135)] = 297241, - [SMALL_STATE(9136)] = 297248, - [SMALL_STATE(9137)] = 297255, - [SMALL_STATE(9138)] = 297262, - [SMALL_STATE(9139)] = 297269, - [SMALL_STATE(9140)] = 297276, - [SMALL_STATE(9141)] = 297283, - [SMALL_STATE(9142)] = 297290, - [SMALL_STATE(9143)] = 297297, - [SMALL_STATE(9144)] = 297304, - [SMALL_STATE(9145)] = 297311, - [SMALL_STATE(9146)] = 297318, - [SMALL_STATE(9147)] = 297325, - [SMALL_STATE(9148)] = 297332, - [SMALL_STATE(9149)] = 297339, - [SMALL_STATE(9150)] = 297346, - [SMALL_STATE(9151)] = 297353, - [SMALL_STATE(9152)] = 297360, - [SMALL_STATE(9153)] = 297367, - [SMALL_STATE(9154)] = 297374, - [SMALL_STATE(9155)] = 297381, - [SMALL_STATE(9156)] = 297388, - [SMALL_STATE(9157)] = 297395, - [SMALL_STATE(9158)] = 297402, - [SMALL_STATE(9159)] = 297409, - [SMALL_STATE(9160)] = 297416, - [SMALL_STATE(9161)] = 297423, - [SMALL_STATE(9162)] = 297430, - [SMALL_STATE(9163)] = 297437, - [SMALL_STATE(9164)] = 297444, - [SMALL_STATE(9165)] = 297451, - [SMALL_STATE(9166)] = 297458, - [SMALL_STATE(9167)] = 297465, - [SMALL_STATE(9168)] = 297472, - [SMALL_STATE(9169)] = 297479, - [SMALL_STATE(9170)] = 297486, - [SMALL_STATE(9171)] = 297493, - [SMALL_STATE(9172)] = 297500, - [SMALL_STATE(9173)] = 297507, - [SMALL_STATE(9174)] = 297514, - [SMALL_STATE(9175)] = 297521, - [SMALL_STATE(9176)] = 297528, - [SMALL_STATE(9177)] = 297535, - [SMALL_STATE(9178)] = 297542, - [SMALL_STATE(9179)] = 297549, - [SMALL_STATE(9180)] = 297556, - [SMALL_STATE(9181)] = 297563, - [SMALL_STATE(9182)] = 297570, - [SMALL_STATE(9183)] = 297577, - [SMALL_STATE(9184)] = 297584, - [SMALL_STATE(9185)] = 297591, - [SMALL_STATE(9186)] = 297598, - [SMALL_STATE(9187)] = 297605, - [SMALL_STATE(9188)] = 297612, - [SMALL_STATE(9189)] = 297619, - [SMALL_STATE(9190)] = 297626, - [SMALL_STATE(9191)] = 297633, - [SMALL_STATE(9192)] = 297640, - [SMALL_STATE(9193)] = 297647, - [SMALL_STATE(9194)] = 297654, - [SMALL_STATE(9195)] = 297661, - [SMALL_STATE(9196)] = 297668, - [SMALL_STATE(9197)] = 297675, - [SMALL_STATE(9198)] = 297682, - [SMALL_STATE(9199)] = 297689, - [SMALL_STATE(9200)] = 297696, - [SMALL_STATE(9201)] = 297703, - [SMALL_STATE(9202)] = 297710, - [SMALL_STATE(9203)] = 297717, - [SMALL_STATE(9204)] = 297724, - [SMALL_STATE(9205)] = 297731, - [SMALL_STATE(9206)] = 297738, - [SMALL_STATE(9207)] = 297745, - [SMALL_STATE(9208)] = 297752, - [SMALL_STATE(9209)] = 297759, - [SMALL_STATE(9210)] = 297766, - [SMALL_STATE(9211)] = 297773, - [SMALL_STATE(9212)] = 297780, - [SMALL_STATE(9213)] = 297787, - [SMALL_STATE(9214)] = 297794, - [SMALL_STATE(9215)] = 297801, - [SMALL_STATE(9216)] = 297808, - [SMALL_STATE(9217)] = 297815, - [SMALL_STATE(9218)] = 297822, - [SMALL_STATE(9219)] = 297829, - [SMALL_STATE(9220)] = 297836, - [SMALL_STATE(9221)] = 297843, - [SMALL_STATE(9222)] = 297850, - [SMALL_STATE(9223)] = 297857, - [SMALL_STATE(9224)] = 297864, - [SMALL_STATE(9225)] = 297871, - [SMALL_STATE(9226)] = 297878, - [SMALL_STATE(9227)] = 297885, - [SMALL_STATE(9228)] = 297892, - [SMALL_STATE(9229)] = 297899, - [SMALL_STATE(9230)] = 297906, - [SMALL_STATE(9231)] = 297913, - [SMALL_STATE(9232)] = 297920, - [SMALL_STATE(9233)] = 297927, - [SMALL_STATE(9234)] = 297934, - [SMALL_STATE(9235)] = 297941, - [SMALL_STATE(9236)] = 297948, - [SMALL_STATE(9237)] = 297955, - [SMALL_STATE(9238)] = 297962, - [SMALL_STATE(9239)] = 297969, - [SMALL_STATE(9240)] = 297976, - [SMALL_STATE(9241)] = 297983, - [SMALL_STATE(9242)] = 297990, - [SMALL_STATE(9243)] = 297997, - [SMALL_STATE(9244)] = 298004, - [SMALL_STATE(9245)] = 298011, - [SMALL_STATE(9246)] = 298018, - [SMALL_STATE(9247)] = 298025, - [SMALL_STATE(9248)] = 298032, - [SMALL_STATE(9249)] = 298039, - [SMALL_STATE(9250)] = 298046, - [SMALL_STATE(9251)] = 298053, - [SMALL_STATE(9252)] = 298060, - [SMALL_STATE(9253)] = 298067, - [SMALL_STATE(9254)] = 298074, - [SMALL_STATE(9255)] = 298081, - [SMALL_STATE(9256)] = 298088, - [SMALL_STATE(9257)] = 298095, - [SMALL_STATE(9258)] = 298102, - [SMALL_STATE(9259)] = 298109, - [SMALL_STATE(9260)] = 298116, - [SMALL_STATE(9261)] = 298123, - [SMALL_STATE(9262)] = 298130, - [SMALL_STATE(9263)] = 298137, - [SMALL_STATE(9264)] = 298144, - [SMALL_STATE(9265)] = 298151, - [SMALL_STATE(9266)] = 298158, - [SMALL_STATE(9267)] = 298165, - [SMALL_STATE(9268)] = 298172, - [SMALL_STATE(9269)] = 298179, - [SMALL_STATE(9270)] = 298186, - [SMALL_STATE(9271)] = 298193, - [SMALL_STATE(9272)] = 298200, - [SMALL_STATE(9273)] = 298207, - [SMALL_STATE(9274)] = 298214, - [SMALL_STATE(9275)] = 298221, - [SMALL_STATE(9276)] = 298228, - [SMALL_STATE(9277)] = 298235, - [SMALL_STATE(9278)] = 298242, - [SMALL_STATE(9279)] = 298249, - [SMALL_STATE(9280)] = 298256, - [SMALL_STATE(9281)] = 298263, - [SMALL_STATE(9282)] = 298270, - [SMALL_STATE(9283)] = 298277, - [SMALL_STATE(9284)] = 298284, - [SMALL_STATE(9285)] = 298291, - [SMALL_STATE(9286)] = 298298, - [SMALL_STATE(9287)] = 298305, - [SMALL_STATE(9288)] = 298312, - [SMALL_STATE(9289)] = 298319, - [SMALL_STATE(9290)] = 298326, - [SMALL_STATE(9291)] = 298333, - [SMALL_STATE(9292)] = 298340, - [SMALL_STATE(9293)] = 298347, - [SMALL_STATE(9294)] = 298354, - [SMALL_STATE(9295)] = 298361, - [SMALL_STATE(9296)] = 298368, - [SMALL_STATE(9297)] = 298375, - [SMALL_STATE(9298)] = 298382, - [SMALL_STATE(9299)] = 298389, - [SMALL_STATE(9300)] = 298396, - [SMALL_STATE(9301)] = 298403, - [SMALL_STATE(9302)] = 298410, - [SMALL_STATE(9303)] = 298417, - [SMALL_STATE(9304)] = 298424, - [SMALL_STATE(9305)] = 298431, - [SMALL_STATE(9306)] = 298438, - [SMALL_STATE(9307)] = 298445, - [SMALL_STATE(9308)] = 298452, - [SMALL_STATE(9309)] = 298459, - [SMALL_STATE(9310)] = 298466, - [SMALL_STATE(9311)] = 298473, - [SMALL_STATE(9312)] = 298480, - [SMALL_STATE(9313)] = 298487, - [SMALL_STATE(9314)] = 298494, - [SMALL_STATE(9315)] = 298501, - [SMALL_STATE(9316)] = 298508, - [SMALL_STATE(9317)] = 298515, - [SMALL_STATE(9318)] = 298522, - [SMALL_STATE(9319)] = 298529, - [SMALL_STATE(9320)] = 298536, - [SMALL_STATE(9321)] = 298543, - [SMALL_STATE(9322)] = 298550, - [SMALL_STATE(9323)] = 298557, - [SMALL_STATE(9324)] = 298564, - [SMALL_STATE(9325)] = 298571, - [SMALL_STATE(9326)] = 298578, - [SMALL_STATE(9327)] = 298585, - [SMALL_STATE(9328)] = 298592, - [SMALL_STATE(9329)] = 298599, - [SMALL_STATE(9330)] = 298606, - [SMALL_STATE(9331)] = 298613, - [SMALL_STATE(9332)] = 298620, - [SMALL_STATE(9333)] = 298627, - [SMALL_STATE(9334)] = 298634, - [SMALL_STATE(9335)] = 298641, - [SMALL_STATE(9336)] = 298648, - [SMALL_STATE(9337)] = 298655, - [SMALL_STATE(9338)] = 298662, - [SMALL_STATE(9339)] = 298669, - [SMALL_STATE(9340)] = 298676, - [SMALL_STATE(9341)] = 298683, - [SMALL_STATE(9342)] = 298690, - [SMALL_STATE(9343)] = 298697, - [SMALL_STATE(9344)] = 298704, - [SMALL_STATE(9345)] = 298711, - [SMALL_STATE(9346)] = 298718, - [SMALL_STATE(9347)] = 298725, - [SMALL_STATE(9348)] = 298732, - [SMALL_STATE(9349)] = 298739, - [SMALL_STATE(9350)] = 298746, - [SMALL_STATE(9351)] = 298753, - [SMALL_STATE(9352)] = 298760, - [SMALL_STATE(9353)] = 298767, - [SMALL_STATE(9354)] = 298774, - [SMALL_STATE(9355)] = 298781, - [SMALL_STATE(9356)] = 298788, - [SMALL_STATE(9357)] = 298795, - [SMALL_STATE(9358)] = 298802, - [SMALL_STATE(9359)] = 298809, - [SMALL_STATE(9360)] = 298816, - [SMALL_STATE(9361)] = 298823, - [SMALL_STATE(9362)] = 298830, - [SMALL_STATE(9363)] = 298837, - [SMALL_STATE(9364)] = 298844, - [SMALL_STATE(9365)] = 298851, - [SMALL_STATE(9366)] = 298858, - [SMALL_STATE(9367)] = 298865, - [SMALL_STATE(9368)] = 298872, - [SMALL_STATE(9369)] = 298879, - [SMALL_STATE(9370)] = 298886, - [SMALL_STATE(9371)] = 298893, - [SMALL_STATE(9372)] = 298900, - [SMALL_STATE(9373)] = 298907, - [SMALL_STATE(9374)] = 298914, - [SMALL_STATE(9375)] = 298921, - [SMALL_STATE(9376)] = 298928, - [SMALL_STATE(9377)] = 298935, - [SMALL_STATE(9378)] = 298942, - [SMALL_STATE(9379)] = 298949, - [SMALL_STATE(9380)] = 298956, - [SMALL_STATE(9381)] = 298963, - [SMALL_STATE(9382)] = 298970, - [SMALL_STATE(9383)] = 298977, - [SMALL_STATE(9384)] = 298984, - [SMALL_STATE(9385)] = 298991, - [SMALL_STATE(9386)] = 298998, - [SMALL_STATE(9387)] = 299005, - [SMALL_STATE(9388)] = 299012, - [SMALL_STATE(9389)] = 299019, - [SMALL_STATE(9390)] = 299026, - [SMALL_STATE(9391)] = 299033, - [SMALL_STATE(9392)] = 299040, - [SMALL_STATE(9393)] = 299047, - [SMALL_STATE(9394)] = 299054, - [SMALL_STATE(9395)] = 299061, - [SMALL_STATE(9396)] = 299068, - [SMALL_STATE(9397)] = 299075, - [SMALL_STATE(9398)] = 299082, - [SMALL_STATE(9399)] = 299089, - [SMALL_STATE(9400)] = 299096, - [SMALL_STATE(9401)] = 299103, - [SMALL_STATE(9402)] = 299110, - [SMALL_STATE(9403)] = 299117, - [SMALL_STATE(9404)] = 299124, - [SMALL_STATE(9405)] = 299131, - [SMALL_STATE(9406)] = 299138, - [SMALL_STATE(9407)] = 299145, - [SMALL_STATE(9408)] = 299152, - [SMALL_STATE(9409)] = 299159, - [SMALL_STATE(9410)] = 299166, - [SMALL_STATE(9411)] = 299173, - [SMALL_STATE(9412)] = 299180, - [SMALL_STATE(9413)] = 299187, - [SMALL_STATE(9414)] = 299194, - [SMALL_STATE(9415)] = 299201, - [SMALL_STATE(9416)] = 299208, - [SMALL_STATE(9417)] = 299215, - [SMALL_STATE(9418)] = 299222, - [SMALL_STATE(9419)] = 299229, - [SMALL_STATE(9420)] = 299236, - [SMALL_STATE(9421)] = 299243, - [SMALL_STATE(9422)] = 299250, - [SMALL_STATE(9423)] = 299257, - [SMALL_STATE(9424)] = 299264, - [SMALL_STATE(9425)] = 299271, - [SMALL_STATE(9426)] = 299278, - [SMALL_STATE(9427)] = 299285, - [SMALL_STATE(9428)] = 299292, - [SMALL_STATE(9429)] = 299299, - [SMALL_STATE(9430)] = 299306, - [SMALL_STATE(9431)] = 299313, - [SMALL_STATE(9432)] = 299320, - [SMALL_STATE(9433)] = 299327, - [SMALL_STATE(9434)] = 299334, - [SMALL_STATE(9435)] = 299341, - [SMALL_STATE(9436)] = 299348, - [SMALL_STATE(9437)] = 299355, - [SMALL_STATE(9438)] = 299362, - [SMALL_STATE(9439)] = 299369, - [SMALL_STATE(9440)] = 299376, - [SMALL_STATE(9441)] = 299383, - [SMALL_STATE(9442)] = 299390, - [SMALL_STATE(9443)] = 299397, - [SMALL_STATE(9444)] = 299404, - [SMALL_STATE(9445)] = 299411, - [SMALL_STATE(9446)] = 299418, - [SMALL_STATE(9447)] = 299425, - [SMALL_STATE(9448)] = 299432, - [SMALL_STATE(9449)] = 299439, - [SMALL_STATE(9450)] = 299446, - [SMALL_STATE(9451)] = 299453, - [SMALL_STATE(9452)] = 299460, - [SMALL_STATE(9453)] = 299467, - [SMALL_STATE(9454)] = 299474, - [SMALL_STATE(9455)] = 299481, - [SMALL_STATE(9456)] = 299488, - [SMALL_STATE(9457)] = 299495, - [SMALL_STATE(9458)] = 299502, - [SMALL_STATE(9459)] = 299509, - [SMALL_STATE(9460)] = 299516, - [SMALL_STATE(9461)] = 299523, - [SMALL_STATE(9462)] = 299530, - [SMALL_STATE(9463)] = 299537, - [SMALL_STATE(9464)] = 299544, - [SMALL_STATE(9465)] = 299551, - [SMALL_STATE(9466)] = 299558, - [SMALL_STATE(9467)] = 299565, - [SMALL_STATE(9468)] = 299572, - [SMALL_STATE(9469)] = 299579, - [SMALL_STATE(9470)] = 299586, - [SMALL_STATE(9471)] = 299593, - [SMALL_STATE(9472)] = 299600, - [SMALL_STATE(9473)] = 299607, - [SMALL_STATE(9474)] = 299614, - [SMALL_STATE(9475)] = 299621, - [SMALL_STATE(9476)] = 299628, - [SMALL_STATE(9477)] = 299635, - [SMALL_STATE(9478)] = 299642, - [SMALL_STATE(9479)] = 299649, - [SMALL_STATE(9480)] = 299656, - [SMALL_STATE(9481)] = 299663, - [SMALL_STATE(9482)] = 299670, - [SMALL_STATE(9483)] = 299677, - [SMALL_STATE(9484)] = 299684, - [SMALL_STATE(9485)] = 299691, - [SMALL_STATE(9486)] = 299698, - [SMALL_STATE(9487)] = 299705, - [SMALL_STATE(9488)] = 299712, - [SMALL_STATE(9489)] = 299719, - [SMALL_STATE(9490)] = 299726, - [SMALL_STATE(9491)] = 299733, - [SMALL_STATE(9492)] = 299740, - [SMALL_STATE(9493)] = 299747, - [SMALL_STATE(9494)] = 299754, - [SMALL_STATE(9495)] = 299761, - [SMALL_STATE(9496)] = 299768, - [SMALL_STATE(9497)] = 299775, - [SMALL_STATE(9498)] = 299782, - [SMALL_STATE(9499)] = 299789, - [SMALL_STATE(9500)] = 299796, - [SMALL_STATE(9501)] = 299803, - [SMALL_STATE(9502)] = 299810, - [SMALL_STATE(9503)] = 299817, - [SMALL_STATE(9504)] = 299824, - [SMALL_STATE(9505)] = 299831, - [SMALL_STATE(9506)] = 299838, - [SMALL_STATE(9507)] = 299845, - [SMALL_STATE(9508)] = 299852, - [SMALL_STATE(9509)] = 299859, - [SMALL_STATE(9510)] = 299866, - [SMALL_STATE(9511)] = 299873, - [SMALL_STATE(9512)] = 299880, - [SMALL_STATE(9513)] = 299887, - [SMALL_STATE(9514)] = 299894, - [SMALL_STATE(9515)] = 299901, - [SMALL_STATE(9516)] = 299908, - [SMALL_STATE(9517)] = 299915, - [SMALL_STATE(9518)] = 299922, - [SMALL_STATE(9519)] = 299929, - [SMALL_STATE(9520)] = 299936, - [SMALL_STATE(9521)] = 299943, - [SMALL_STATE(9522)] = 299950, - [SMALL_STATE(9523)] = 299957, - [SMALL_STATE(9524)] = 299964, - [SMALL_STATE(9525)] = 299971, - [SMALL_STATE(9526)] = 299978, - [SMALL_STATE(9527)] = 299985, - [SMALL_STATE(9528)] = 299992, - [SMALL_STATE(9529)] = 299999, - [SMALL_STATE(9530)] = 300006, - [SMALL_STATE(9531)] = 300013, - [SMALL_STATE(9532)] = 300020, - [SMALL_STATE(9533)] = 300027, - [SMALL_STATE(9534)] = 300034, - [SMALL_STATE(9535)] = 300041, - [SMALL_STATE(9536)] = 300048, - [SMALL_STATE(9537)] = 300055, - [SMALL_STATE(9538)] = 300062, - [SMALL_STATE(9539)] = 300069, - [SMALL_STATE(9540)] = 300076, - [SMALL_STATE(9541)] = 300083, - [SMALL_STATE(9542)] = 300090, - [SMALL_STATE(9543)] = 300097, - [SMALL_STATE(9544)] = 300104, - [SMALL_STATE(9545)] = 300111, - [SMALL_STATE(9546)] = 300118, - [SMALL_STATE(9547)] = 300125, - [SMALL_STATE(9548)] = 300132, - [SMALL_STATE(9549)] = 300139, - [SMALL_STATE(9550)] = 300146, - [SMALL_STATE(9551)] = 300153, - [SMALL_STATE(9552)] = 300160, - [SMALL_STATE(9553)] = 300167, - [SMALL_STATE(9554)] = 300174, - [SMALL_STATE(9555)] = 300181, - [SMALL_STATE(9556)] = 300188, - [SMALL_STATE(9557)] = 300195, - [SMALL_STATE(9558)] = 300202, - [SMALL_STATE(9559)] = 300209, - [SMALL_STATE(9560)] = 300216, - [SMALL_STATE(9561)] = 300223, - [SMALL_STATE(9562)] = 300230, - [SMALL_STATE(9563)] = 300237, - [SMALL_STATE(9564)] = 300244, - [SMALL_STATE(9565)] = 300251, - [SMALL_STATE(9566)] = 300258, - [SMALL_STATE(9567)] = 300265, - [SMALL_STATE(9568)] = 300272, - [SMALL_STATE(9569)] = 300279, - [SMALL_STATE(9570)] = 300286, - [SMALL_STATE(9571)] = 300293, - [SMALL_STATE(9572)] = 300300, - [SMALL_STATE(9573)] = 300307, - [SMALL_STATE(9574)] = 300314, - [SMALL_STATE(9575)] = 300321, - [SMALL_STATE(9576)] = 300328, - [SMALL_STATE(9577)] = 300335, - [SMALL_STATE(9578)] = 300342, - [SMALL_STATE(9579)] = 300349, - [SMALL_STATE(9580)] = 300356, - [SMALL_STATE(9581)] = 300363, - [SMALL_STATE(9582)] = 300370, - [SMALL_STATE(9583)] = 300377, - [SMALL_STATE(9584)] = 300384, - [SMALL_STATE(9585)] = 300391, - [SMALL_STATE(9586)] = 300398, - [SMALL_STATE(9587)] = 300405, - [SMALL_STATE(9588)] = 300412, - [SMALL_STATE(9589)] = 300419, - [SMALL_STATE(9590)] = 300426, - [SMALL_STATE(9591)] = 300433, - [SMALL_STATE(9592)] = 300440, - [SMALL_STATE(9593)] = 300447, - [SMALL_STATE(9594)] = 300454, - [SMALL_STATE(9595)] = 300461, - [SMALL_STATE(9596)] = 300468, - [SMALL_STATE(9597)] = 300475, - [SMALL_STATE(9598)] = 300482, - [SMALL_STATE(9599)] = 300489, - [SMALL_STATE(9600)] = 300496, - [SMALL_STATE(9601)] = 300503, - [SMALL_STATE(9602)] = 300510, - [SMALL_STATE(9603)] = 300517, - [SMALL_STATE(9604)] = 300524, - [SMALL_STATE(9605)] = 300531, - [SMALL_STATE(9606)] = 300538, - [SMALL_STATE(9607)] = 300545, - [SMALL_STATE(9608)] = 300552, - [SMALL_STATE(9609)] = 300559, - [SMALL_STATE(9610)] = 300566, - [SMALL_STATE(9611)] = 300573, - [SMALL_STATE(9612)] = 300580, - [SMALL_STATE(9613)] = 300587, - [SMALL_STATE(9614)] = 300594, - [SMALL_STATE(9615)] = 300601, - [SMALL_STATE(9616)] = 300608, - [SMALL_STATE(9617)] = 300615, - [SMALL_STATE(9618)] = 300622, - [SMALL_STATE(9619)] = 300629, - [SMALL_STATE(9620)] = 300636, - [SMALL_STATE(9621)] = 300643, - [SMALL_STATE(9622)] = 300650, - [SMALL_STATE(9623)] = 300657, - [SMALL_STATE(9624)] = 300664, - [SMALL_STATE(9625)] = 300671, - [SMALL_STATE(9626)] = 300678, - [SMALL_STATE(9627)] = 300685, - [SMALL_STATE(9628)] = 300692, - [SMALL_STATE(9629)] = 300699, - [SMALL_STATE(9630)] = 300706, - [SMALL_STATE(9631)] = 300713, - [SMALL_STATE(9632)] = 300720, - [SMALL_STATE(9633)] = 300727, - [SMALL_STATE(9634)] = 300734, - [SMALL_STATE(9635)] = 300741, - [SMALL_STATE(9636)] = 300748, - [SMALL_STATE(9637)] = 300755, - [SMALL_STATE(9638)] = 300762, - [SMALL_STATE(9639)] = 300769, - [SMALL_STATE(9640)] = 300776, - [SMALL_STATE(9641)] = 300783, - [SMALL_STATE(9642)] = 300790, - [SMALL_STATE(9643)] = 300797, - [SMALL_STATE(9644)] = 300804, - [SMALL_STATE(9645)] = 300811, - [SMALL_STATE(9646)] = 300818, - [SMALL_STATE(9647)] = 300825, - [SMALL_STATE(9648)] = 300832, - [SMALL_STATE(9649)] = 300839, - [SMALL_STATE(9650)] = 300846, - [SMALL_STATE(9651)] = 300853, - [SMALL_STATE(9652)] = 300860, - [SMALL_STATE(9653)] = 300867, - [SMALL_STATE(9654)] = 300874, - [SMALL_STATE(9655)] = 300881, - [SMALL_STATE(9656)] = 300888, - [SMALL_STATE(9657)] = 300895, - [SMALL_STATE(9658)] = 300902, - [SMALL_STATE(9659)] = 300909, - [SMALL_STATE(9660)] = 300916, - [SMALL_STATE(9661)] = 300923, - [SMALL_STATE(9662)] = 300930, - [SMALL_STATE(9663)] = 300937, - [SMALL_STATE(9664)] = 300944, - [SMALL_STATE(9665)] = 300951, - [SMALL_STATE(9666)] = 300958, - [SMALL_STATE(9667)] = 300965, - [SMALL_STATE(9668)] = 300972, - [SMALL_STATE(9669)] = 300979, - [SMALL_STATE(9670)] = 300986, - [SMALL_STATE(9671)] = 300993, - [SMALL_STATE(9672)] = 301000, - [SMALL_STATE(9673)] = 301007, - [SMALL_STATE(9674)] = 301014, - [SMALL_STATE(9675)] = 301021, - [SMALL_STATE(9676)] = 301028, - [SMALL_STATE(9677)] = 301035, - [SMALL_STATE(9678)] = 301042, - [SMALL_STATE(9679)] = 301049, - [SMALL_STATE(9680)] = 301056, - [SMALL_STATE(9681)] = 301063, - [SMALL_STATE(9682)] = 301070, - [SMALL_STATE(9683)] = 301077, - [SMALL_STATE(9684)] = 301084, - [SMALL_STATE(9685)] = 301091, - [SMALL_STATE(9686)] = 301098, - [SMALL_STATE(9687)] = 301105, - [SMALL_STATE(9688)] = 301112, - [SMALL_STATE(9689)] = 301119, - [SMALL_STATE(9690)] = 301126, - [SMALL_STATE(9691)] = 301133, - [SMALL_STATE(9692)] = 301140, - [SMALL_STATE(9693)] = 301147, - [SMALL_STATE(9694)] = 301154, - [SMALL_STATE(9695)] = 301161, - [SMALL_STATE(9696)] = 301168, - [SMALL_STATE(9697)] = 301175, - [SMALL_STATE(9698)] = 301182, - [SMALL_STATE(9699)] = 301189, - [SMALL_STATE(9700)] = 301196, - [SMALL_STATE(9701)] = 301203, - [SMALL_STATE(9702)] = 301210, - [SMALL_STATE(9703)] = 301217, - [SMALL_STATE(9704)] = 301224, - [SMALL_STATE(9705)] = 301231, - [SMALL_STATE(9706)] = 301238, - [SMALL_STATE(9707)] = 301245, - [SMALL_STATE(9708)] = 301252, - [SMALL_STATE(9709)] = 301259, - [SMALL_STATE(9710)] = 301266, - [SMALL_STATE(9711)] = 301273, - [SMALL_STATE(9712)] = 301280, - [SMALL_STATE(9713)] = 301287, - [SMALL_STATE(9714)] = 301294, - [SMALL_STATE(9715)] = 301301, - [SMALL_STATE(9716)] = 301308, - [SMALL_STATE(9717)] = 301315, - [SMALL_STATE(9718)] = 301322, - [SMALL_STATE(9719)] = 301329, - [SMALL_STATE(9720)] = 301336, - [SMALL_STATE(9721)] = 301343, - [SMALL_STATE(9722)] = 301350, - [SMALL_STATE(9723)] = 301357, - [SMALL_STATE(9724)] = 301364, - [SMALL_STATE(9725)] = 301371, - [SMALL_STATE(9726)] = 301378, - [SMALL_STATE(9727)] = 301385, - [SMALL_STATE(9728)] = 301392, - [SMALL_STATE(9729)] = 301399, - [SMALL_STATE(9730)] = 301406, - [SMALL_STATE(9731)] = 301413, - [SMALL_STATE(9732)] = 301420, - [SMALL_STATE(9733)] = 301427, - [SMALL_STATE(9734)] = 301434, - [SMALL_STATE(9735)] = 301441, - [SMALL_STATE(9736)] = 301448, - [SMALL_STATE(9737)] = 301455, - [SMALL_STATE(9738)] = 301462, - [SMALL_STATE(9739)] = 301469, - [SMALL_STATE(9740)] = 301476, - [SMALL_STATE(9741)] = 301483, - [SMALL_STATE(9742)] = 301490, - [SMALL_STATE(9743)] = 301497, - [SMALL_STATE(9744)] = 301504, - [SMALL_STATE(9745)] = 301511, - [SMALL_STATE(9746)] = 301518, - [SMALL_STATE(9747)] = 301525, - [SMALL_STATE(9748)] = 301532, - [SMALL_STATE(9749)] = 301539, - [SMALL_STATE(9750)] = 301546, - [SMALL_STATE(9751)] = 301553, - [SMALL_STATE(9752)] = 301560, - [SMALL_STATE(9753)] = 301567, - [SMALL_STATE(9754)] = 301574, - [SMALL_STATE(9755)] = 301581, - [SMALL_STATE(9756)] = 301588, - [SMALL_STATE(9757)] = 301595, - [SMALL_STATE(9758)] = 301602, - [SMALL_STATE(9759)] = 301609, - [SMALL_STATE(9760)] = 301616, + [SMALL_STATE(2123)] = 0, + [SMALL_STATE(2124)] = 71, + [SMALL_STATE(2125)] = 142, + [SMALL_STATE(2126)] = 213, + [SMALL_STATE(2127)] = 284, + [SMALL_STATE(2128)] = 355, + [SMALL_STATE(2129)] = 426, + [SMALL_STATE(2130)] = 497, + [SMALL_STATE(2131)] = 568, + [SMALL_STATE(2132)] = 639, + [SMALL_STATE(2133)] = 710, + [SMALL_STATE(2134)] = 781, + [SMALL_STATE(2135)] = 852, + [SMALL_STATE(2136)] = 923, + [SMALL_STATE(2137)] = 994, + [SMALL_STATE(2138)] = 1065, + [SMALL_STATE(2139)] = 1136, + [SMALL_STATE(2140)] = 1207, + [SMALL_STATE(2141)] = 1278, + [SMALL_STATE(2142)] = 1349, + [SMALL_STATE(2143)] = 1420, + [SMALL_STATE(2144)] = 1491, + [SMALL_STATE(2145)] = 1562, + [SMALL_STATE(2146)] = 1633, + [SMALL_STATE(2147)] = 1704, + [SMALL_STATE(2148)] = 1775, + [SMALL_STATE(2149)] = 1846, + [SMALL_STATE(2150)] = 1917, + [SMALL_STATE(2151)] = 1996, + [SMALL_STATE(2152)] = 2067, + [SMALL_STATE(2153)] = 2146, + [SMALL_STATE(2154)] = 2217, + [SMALL_STATE(2155)] = 2296, + [SMALL_STATE(2156)] = 2367, + [SMALL_STATE(2157)] = 2438, + [SMALL_STATE(2158)] = 2509, + [SMALL_STATE(2159)] = 2580, + [SMALL_STATE(2160)] = 2651, + [SMALL_STATE(2161)] = 2722, + [SMALL_STATE(2162)] = 2793, + [SMALL_STATE(2163)] = 2864, + [SMALL_STATE(2164)] = 2935, + [SMALL_STATE(2165)] = 3006, + [SMALL_STATE(2166)] = 3077, + [SMALL_STATE(2167)] = 3156, + [SMALL_STATE(2168)] = 3243, + [SMALL_STATE(2169)] = 3314, + [SMALL_STATE(2170)] = 3385, + [SMALL_STATE(2171)] = 3456, + [SMALL_STATE(2172)] = 3527, + [SMALL_STATE(2173)] = 3598, + [SMALL_STATE(2174)] = 3669, + [SMALL_STATE(2175)] = 3740, + [SMALL_STATE(2176)] = 3811, + [SMALL_STATE(2177)] = 3882, + [SMALL_STATE(2178)] = 3953, + [SMALL_STATE(2179)] = 4024, + [SMALL_STATE(2180)] = 4095, + [SMALL_STATE(2181)] = 4166, + [SMALL_STATE(2182)] = 4237, + [SMALL_STATE(2183)] = 4308, + [SMALL_STATE(2184)] = 4379, + [SMALL_STATE(2185)] = 4450, + [SMALL_STATE(2186)] = 4521, + [SMALL_STATE(2187)] = 4592, + [SMALL_STATE(2188)] = 4663, + [SMALL_STATE(2189)] = 4734, + [SMALL_STATE(2190)] = 4805, + [SMALL_STATE(2191)] = 4876, + [SMALL_STATE(2192)] = 4947, + [SMALL_STATE(2193)] = 5018, + [SMALL_STATE(2194)] = 5089, + [SMALL_STATE(2195)] = 5160, + [SMALL_STATE(2196)] = 5231, + [SMALL_STATE(2197)] = 5302, + [SMALL_STATE(2198)] = 5373, + [SMALL_STATE(2199)] = 5444, + [SMALL_STATE(2200)] = 5515, + [SMALL_STATE(2201)] = 5586, + [SMALL_STATE(2202)] = 5657, + [SMALL_STATE(2203)] = 5728, + [SMALL_STATE(2204)] = 5799, + [SMALL_STATE(2205)] = 5870, + [SMALL_STATE(2206)] = 5941, + [SMALL_STATE(2207)] = 6012, + [SMALL_STATE(2208)] = 6083, + [SMALL_STATE(2209)] = 6154, + [SMALL_STATE(2210)] = 6225, + [SMALL_STATE(2211)] = 6296, + [SMALL_STATE(2212)] = 6367, + [SMALL_STATE(2213)] = 6438, + [SMALL_STATE(2214)] = 6509, + [SMALL_STATE(2215)] = 6580, + [SMALL_STATE(2216)] = 6651, + [SMALL_STATE(2217)] = 6722, + [SMALL_STATE(2218)] = 6793, + [SMALL_STATE(2219)] = 6864, + [SMALL_STATE(2220)] = 6935, + [SMALL_STATE(2221)] = 7006, + [SMALL_STATE(2222)] = 7077, + [SMALL_STATE(2223)] = 7148, + [SMALL_STATE(2224)] = 7219, + [SMALL_STATE(2225)] = 7290, + [SMALL_STATE(2226)] = 7361, + [SMALL_STATE(2227)] = 7432, + [SMALL_STATE(2228)] = 7503, + [SMALL_STATE(2229)] = 7574, + [SMALL_STATE(2230)] = 7645, + [SMALL_STATE(2231)] = 7716, + [SMALL_STATE(2232)] = 7787, + [SMALL_STATE(2233)] = 7858, + [SMALL_STATE(2234)] = 7929, + [SMALL_STATE(2235)] = 8000, + [SMALL_STATE(2236)] = 8071, + [SMALL_STATE(2237)] = 8142, + [SMALL_STATE(2238)] = 8213, + [SMALL_STATE(2239)] = 8284, + [SMALL_STATE(2240)] = 8355, + [SMALL_STATE(2241)] = 8426, + [SMALL_STATE(2242)] = 8497, + [SMALL_STATE(2243)] = 8568, + [SMALL_STATE(2244)] = 8639, + [SMALL_STATE(2245)] = 8710, + [SMALL_STATE(2246)] = 8781, + [SMALL_STATE(2247)] = 8852, + [SMALL_STATE(2248)] = 8923, + [SMALL_STATE(2249)] = 8994, + [SMALL_STATE(2250)] = 9065, + [SMALL_STATE(2251)] = 9136, + [SMALL_STATE(2252)] = 9207, + [SMALL_STATE(2253)] = 9278, + [SMALL_STATE(2254)] = 9349, + [SMALL_STATE(2255)] = 9420, + [SMALL_STATE(2256)] = 9491, + [SMALL_STATE(2257)] = 9562, + [SMALL_STATE(2258)] = 9633, + [SMALL_STATE(2259)] = 9704, + [SMALL_STATE(2260)] = 9775, + [SMALL_STATE(2261)] = 9846, + [SMALL_STATE(2262)] = 9917, + [SMALL_STATE(2263)] = 9988, + [SMALL_STATE(2264)] = 10059, + [SMALL_STATE(2265)] = 10130, + [SMALL_STATE(2266)] = 10201, + [SMALL_STATE(2267)] = 10272, + [SMALL_STATE(2268)] = 10343, + [SMALL_STATE(2269)] = 10414, + [SMALL_STATE(2270)] = 10485, + [SMALL_STATE(2271)] = 10556, + [SMALL_STATE(2272)] = 10627, + [SMALL_STATE(2273)] = 10698, + [SMALL_STATE(2274)] = 10769, + [SMALL_STATE(2275)] = 10840, + [SMALL_STATE(2276)] = 10911, + [SMALL_STATE(2277)] = 10982, + [SMALL_STATE(2278)] = 11053, + [SMALL_STATE(2279)] = 11124, + [SMALL_STATE(2280)] = 11195, + [SMALL_STATE(2281)] = 11266, + [SMALL_STATE(2282)] = 11337, + [SMALL_STATE(2283)] = 11408, + [SMALL_STATE(2284)] = 11479, + [SMALL_STATE(2285)] = 11550, + [SMALL_STATE(2286)] = 11621, + [SMALL_STATE(2287)] = 11692, + [SMALL_STATE(2288)] = 11763, + [SMALL_STATE(2289)] = 11834, + [SMALL_STATE(2290)] = 11905, + [SMALL_STATE(2291)] = 11976, + [SMALL_STATE(2292)] = 12047, + [SMALL_STATE(2293)] = 12118, + [SMALL_STATE(2294)] = 12189, + [SMALL_STATE(2295)] = 12267, + [SMALL_STATE(2296)] = 12337, + [SMALL_STATE(2297)] = 12409, + [SMALL_STATE(2298)] = 12487, + [SMALL_STATE(2299)] = 12563, + [SMALL_STATE(2300)] = 12639, + [SMALL_STATE(2301)] = 12725, + [SMALL_STATE(2302)] = 12795, + [SMALL_STATE(2303)] = 12865, + [SMALL_STATE(2304)] = 12935, + [SMALL_STATE(2305)] = 13005, + [SMALL_STATE(2306)] = 13075, + [SMALL_STATE(2307)] = 13145, + [SMALL_STATE(2308)] = 13215, + [SMALL_STATE(2309)] = 13289, + [SMALL_STATE(2310)] = 13375, + [SMALL_STATE(2311)] = 13445, + [SMALL_STATE(2312)] = 13531, + [SMALL_STATE(2313)] = 13601, + [SMALL_STATE(2314)] = 13675, + [SMALL_STATE(2315)] = 13745, + [SMALL_STATE(2316)] = 13817, + [SMALL_STATE(2317)] = 13889, + [SMALL_STATE(2318)] = 13963, + [SMALL_STATE(2319)] = 14033, + [SMALL_STATE(2320)] = 14103, + [SMALL_STATE(2321)] = 14173, + [SMALL_STATE(2322)] = 14243, + [SMALL_STATE(2323)] = 14313, + [SMALL_STATE(2324)] = 14391, + [SMALL_STATE(2325)] = 14477, + [SMALL_STATE(2326)] = 14547, + [SMALL_STATE(2327)] = 14617, + [SMALL_STATE(2328)] = 14687, + [SMALL_STATE(2329)] = 14773, + [SMALL_STATE(2330)] = 14843, + [SMALL_STATE(2331)] = 14913, + [SMALL_STATE(2332)] = 14983, + [SMALL_STATE(2333)] = 15053, + [SMALL_STATE(2334)] = 15122, + [SMALL_STATE(2335)] = 15191, + [SMALL_STATE(2336)] = 15260, + [SMALL_STATE(2337)] = 15337, + [SMALL_STATE(2338)] = 15406, + [SMALL_STATE(2339)] = 15475, + [SMALL_STATE(2340)] = 15596, + [SMALL_STATE(2341)] = 15673, + [SMALL_STATE(2342)] = 15744, + [SMALL_STATE(2343)] = 15813, + [SMALL_STATE(2344)] = 15882, + [SMALL_STATE(2345)] = 15951, + [SMALL_STATE(2346)] = 16024, + [SMALL_STATE(2347)] = 16093, + [SMALL_STATE(2348)] = 16170, + [SMALL_STATE(2349)] = 16241, + [SMALL_STATE(2350)] = 16326, + [SMALL_STATE(2351)] = 16395, + [SMALL_STATE(2352)] = 16464, + [SMALL_STATE(2353)] = 16545, + [SMALL_STATE(2354)] = 16666, + [SMALL_STATE(2355)] = 16735, + [SMALL_STATE(2356)] = 16816, + [SMALL_STATE(2357)] = 16887, + [SMALL_STATE(2358)] = 16956, + [SMALL_STATE(2359)] = 17033, + [SMALL_STATE(2360)] = 17101, + [SMALL_STATE(2361)] = 17177, + [SMALL_STATE(2362)] = 17261, + [SMALL_STATE(2363)] = 17335, + [SMALL_STATE(2364)] = 17411, + [SMALL_STATE(2365)] = 17479, + [SMALL_STATE(2366)] = 17551, + [SMALL_STATE(2367)] = 17671, + [SMALL_STATE(2368)] = 17743, + [SMALL_STATE(2369)] = 17815, + [SMALL_STATE(2370)] = 17887, + [SMALL_STATE(2371)] = 17961, + [SMALL_STATE(2372)] = 18033, + [SMALL_STATE(2373)] = 18101, + [SMALL_STATE(2374)] = 18173, + [SMALL_STATE(2375)] = 18247, + [SMALL_STATE(2376)] = 18315, + [SMALL_STATE(2377)] = 18383, + [SMALL_STATE(2378)] = 18455, + [SMALL_STATE(2379)] = 18527, + [SMALL_STATE(2380)] = 18595, + [SMALL_STATE(2381)] = 18663, + [SMALL_STATE(2382)] = 18731, + [SMALL_STATE(2383)] = 18799, + [SMALL_STATE(2384)] = 18871, + [SMALL_STATE(2385)] = 18943, + [SMALL_STATE(2386)] = 19015, + [SMALL_STATE(2387)] = 19087, + [SMALL_STATE(2388)] = 19159, + [SMALL_STATE(2389)] = 19238, + [SMALL_STATE(2390)] = 19309, + [SMALL_STATE(2391)] = 19376, + [SMALL_STATE(2392)] = 19443, + [SMALL_STATE(2393)] = 19512, + [SMALL_STATE(2394)] = 19581, + [SMALL_STATE(2395)] = 19652, + [SMALL_STATE(2396)] = 19721, + [SMALL_STATE(2397)] = 19788, + [SMALL_STATE(2398)] = 19855, + [SMALL_STATE(2399)] = 19926, + [SMALL_STATE(2400)] = 19999, + [SMALL_STATE(2401)] = 20066, + [SMALL_STATE(2402)] = 20145, + [SMALL_STATE(2403)] = 20228, + [SMALL_STATE(2404)] = 20299, + [SMALL_STATE(2405)] = 20376, + [SMALL_STATE(2406)] = 20443, + [SMALL_STATE(2407)] = 20510, + [SMALL_STATE(2408)] = 20583, + [SMALL_STATE(2409)] = 20654, + [SMALL_STATE(2410)] = 20731, + [SMALL_STATE(2411)] = 20798, + [SMALL_STATE(2412)] = 20869, + [SMALL_STATE(2413)] = 20940, + [SMALL_STATE(2414)] = 21011, + [SMALL_STATE(2415)] = 21082, + [SMALL_STATE(2416)] = 21153, + [SMALL_STATE(2417)] = 21224, + [SMALL_STATE(2418)] = 21295, + [SMALL_STATE(2419)] = 21366, + [SMALL_STATE(2420)] = 21439, + [SMALL_STATE(2421)] = 21516, + [SMALL_STATE(2422)] = 21591, + [SMALL_STATE(2423)] = 21660, + [SMALL_STATE(2424)] = 21727, + [SMALL_STATE(2425)] = 21804, + [SMALL_STATE(2426)] = 21874, + [SMALL_STATE(2427)] = 21940, + [SMALL_STATE(2428)] = 22014, + [SMALL_STATE(2429)] = 22080, + [SMALL_STATE(2430)] = 22146, + [SMALL_STATE(2431)] = 22228, + [SMALL_STATE(2432)] = 22294, + [SMALL_STATE(2433)] = 22360, + [SMALL_STATE(2434)] = 22426, + [SMALL_STATE(2435)] = 22492, + [SMALL_STATE(2436)] = 22564, + [SMALL_STATE(2437)] = 22630, + [SMALL_STATE(2438)] = 22696, + [SMALL_STATE(2439)] = 22762, + [SMALL_STATE(2440)] = 22828, + [SMALL_STATE(2441)] = 22894, + [SMALL_STATE(2442)] = 22960, + [SMALL_STATE(2443)] = 23026, + [SMALL_STATE(2444)] = 23092, + [SMALL_STATE(2445)] = 23158, + [SMALL_STATE(2446)] = 23224, + [SMALL_STATE(2447)] = 23306, + [SMALL_STATE(2448)] = 23372, + [SMALL_STATE(2449)] = 23450, + [SMALL_STATE(2450)] = 23516, + [SMALL_STATE(2451)] = 23582, + [SMALL_STATE(2452)] = 23648, + [SMALL_STATE(2453)] = 23730, + [SMALL_STATE(2454)] = 23800, + [SMALL_STATE(2455)] = 23872, + [SMALL_STATE(2456)] = 23938, + [SMALL_STATE(2457)] = 24004, + [SMALL_STATE(2458)] = 24082, + [SMALL_STATE(2459)] = 24154, + [SMALL_STATE(2460)] = 24220, + [SMALL_STATE(2461)] = 24286, + [SMALL_STATE(2462)] = 24356, + [SMALL_STATE(2463)] = 24422, + [SMALL_STATE(2464)] = 24488, + [SMALL_STATE(2465)] = 24554, + [SMALL_STATE(2466)] = 24620, + [SMALL_STATE(2467)] = 24686, + [SMALL_STATE(2468)] = 24754, + [SMALL_STATE(2469)] = 24820, + [SMALL_STATE(2470)] = 24886, + [SMALL_STATE(2471)] = 24958, + [SMALL_STATE(2472)] = 25024, + [SMALL_STATE(2473)] = 25090, + [SMALL_STATE(2474)] = 25156, + [SMALL_STATE(2475)] = 25222, + [SMALL_STATE(2476)] = 25294, + [SMALL_STATE(2477)] = 25360, + [SMALL_STATE(2478)] = 25426, + [SMALL_STATE(2479)] = 25492, + [SMALL_STATE(2480)] = 25558, + [SMALL_STATE(2481)] = 25624, + [SMALL_STATE(2482)] = 25706, + [SMALL_STATE(2483)] = 25772, + [SMALL_STATE(2484)] = 25838, + [SMALL_STATE(2485)] = 25904, + [SMALL_STATE(2486)] = 25970, + [SMALL_STATE(2487)] = 26036, + [SMALL_STATE(2488)] = 26104, + [SMALL_STATE(2489)] = 26170, + [SMALL_STATE(2490)] = 26238, + [SMALL_STATE(2491)] = 26304, + [SMALL_STATE(2492)] = 26370, + [SMALL_STATE(2493)] = 26442, + [SMALL_STATE(2494)] = 26508, + [SMALL_STATE(2495)] = 26574, + [SMALL_STATE(2496)] = 26640, + [SMALL_STATE(2497)] = 26706, + [SMALL_STATE(2498)] = 26772, + [SMALL_STATE(2499)] = 26838, + [SMALL_STATE(2500)] = 26904, + [SMALL_STATE(2501)] = 26985, + [SMALL_STATE(2502)] = 27058, + [SMALL_STATE(2503)] = 27123, + [SMALL_STATE(2504)] = 27190, + [SMALL_STATE(2505)] = 27261, + [SMALL_STATE(2506)] = 27342, + [SMALL_STATE(2507)] = 27407, + [SMALL_STATE(2508)] = 27472, + [SMALL_STATE(2509)] = 27537, + [SMALL_STATE(2510)] = 27602, + [SMALL_STATE(2511)] = 27667, + [SMALL_STATE(2512)] = 27734, + [SMALL_STATE(2513)] = 27799, + [SMALL_STATE(2514)] = 27864, + [SMALL_STATE(2515)] = 27929, + [SMALL_STATE(2516)] = 27998, + [SMALL_STATE(2517)] = 28063, + [SMALL_STATE(2518)] = 28128, + [SMALL_STATE(2519)] = 28193, + [SMALL_STATE(2520)] = 28260, + [SMALL_STATE(2521)] = 28341, + [SMALL_STATE(2522)] = 28408, + [SMALL_STATE(2523)] = 28481, + [SMALL_STATE(2524)] = 28554, + [SMALL_STATE(2525)] = 28635, + [SMALL_STATE(2526)] = 28706, + [SMALL_STATE(2527)] = 28779, + [SMALL_STATE(2528)] = 28848, + [SMALL_STATE(2529)] = 28916, + [SMALL_STATE(2530)] = 28992, + [SMALL_STATE(2531)] = 29070, + [SMALL_STATE(2532)] = 29134, + [SMALL_STATE(2533)] = 29198, + [SMALL_STATE(2534)] = 29262, + [SMALL_STATE(2535)] = 29330, + [SMALL_STATE(2536)] = 29394, + [SMALL_STATE(2537)] = 29458, + [SMALL_STATE(2538)] = 29530, + [SMALL_STATE(2539)] = 29598, + [SMALL_STATE(2540)] = 29676, + [SMALL_STATE(2541)] = 29744, + [SMALL_STATE(2542)] = 29812, + [SMALL_STATE(2543)] = 29878, + [SMALL_STATE(2544)] = 29942, + [SMALL_STATE(2545)] = 30010, + [SMALL_STATE(2546)] = 30074, + [SMALL_STATE(2547)] = 30142, + [SMALL_STATE(2548)] = 30210, + [SMALL_STATE(2549)] = 30274, + [SMALL_STATE(2550)] = 30338, + [SMALL_STATE(2551)] = 30404, + [SMALL_STATE(2552)] = 30470, + [SMALL_STATE(2553)] = 30534, + [SMALL_STATE(2554)] = 30600, + [SMALL_STATE(2555)] = 30664, + [SMALL_STATE(2556)] = 30728, + [SMALL_STATE(2557)] = 30794, + [SMALL_STATE(2558)] = 30858, + [SMALL_STATE(2559)] = 30922, + [SMALL_STATE(2560)] = 30986, + [SMALL_STATE(2561)] = 31050, + [SMALL_STATE(2562)] = 31114, + [SMALL_STATE(2563)] = 31178, + [SMALL_STATE(2564)] = 31242, + [SMALL_STATE(2565)] = 31306, + [SMALL_STATE(2566)] = 31370, + [SMALL_STATE(2567)] = 31434, + [SMALL_STATE(2568)] = 31512, + [SMALL_STATE(2569)] = 31580, + [SMALL_STATE(2570)] = 31648, + [SMALL_STATE(2571)] = 31714, + [SMALL_STATE(2572)] = 31782, + [SMALL_STATE(2573)] = 31850, + [SMALL_STATE(2574)] = 31914, + [SMALL_STATE(2575)] = 31986, + [SMALL_STATE(2576)] = 32054, + [SMALL_STATE(2577)] = 32122, + [SMALL_STATE(2578)] = 32186, + [SMALL_STATE(2579)] = 32250, + [SMALL_STATE(2580)] = 32314, + [SMALL_STATE(2581)] = 32378, + [SMALL_STATE(2582)] = 32446, + [SMALL_STATE(2583)] = 32510, + [SMALL_STATE(2584)] = 32574, + [SMALL_STATE(2585)] = 32638, + [SMALL_STATE(2586)] = 32702, + [SMALL_STATE(2587)] = 32768, + [SMALL_STATE(2588)] = 32832, + [SMALL_STATE(2589)] = 32908, + [SMALL_STATE(2590)] = 32976, + [SMALL_STATE(2591)] = 33040, + [SMALL_STATE(2592)] = 33116, + [SMALL_STATE(2593)] = 33182, + [SMALL_STATE(2594)] = 33250, + [SMALL_STATE(2595)] = 33314, + [SMALL_STATE(2596)] = 33378, + [SMALL_STATE(2597)] = 33442, + [SMALL_STATE(2598)] = 33508, + [SMALL_STATE(2599)] = 33572, + [SMALL_STATE(2600)] = 33636, + [SMALL_STATE(2601)] = 33700, + [SMALL_STATE(2602)] = 33768, + [SMALL_STATE(2603)] = 33836, + [SMALL_STATE(2604)] = 33912, + [SMALL_STATE(2605)] = 33980, + [SMALL_STATE(2606)] = 34046, + [SMALL_STATE(2607)] = 34116, + [SMALL_STATE(2608)] = 34184, + [SMALL_STATE(2609)] = 34248, + [SMALL_STATE(2610)] = 34316, + [SMALL_STATE(2611)] = 34384, + [SMALL_STATE(2612)] = 34448, + [SMALL_STATE(2613)] = 34512, + [SMALL_STATE(2614)] = 34580, + [SMALL_STATE(2615)] = 34648, + [SMALL_STATE(2616)] = 34716, + [SMALL_STATE(2617)] = 34782, + [SMALL_STATE(2618)] = 34846, + [SMALL_STATE(2619)] = 34910, + [SMALL_STATE(2620)] = 34974, + [SMALL_STATE(2621)] = 35038, + [SMALL_STATE(2622)] = 35106, + [SMALL_STATE(2623)] = 35174, + [SMALL_STATE(2624)] = 35242, + [SMALL_STATE(2625)] = 35310, + [SMALL_STATE(2626)] = 35374, + [SMALL_STATE(2627)] = 35442, + [SMALL_STATE(2628)] = 35520, + [SMALL_STATE(2629)] = 35583, + [SMALL_STATE(2630)] = 35692, + [SMALL_STATE(2631)] = 35759, + [SMALL_STATE(2632)] = 35822, + [SMALL_STATE(2633)] = 35885, + [SMALL_STATE(2634)] = 35952, + [SMALL_STATE(2635)] = 36015, + [SMALL_STATE(2636)] = 36082, + [SMALL_STATE(2637)] = 36145, + [SMALL_STATE(2638)] = 36208, + [SMALL_STATE(2639)] = 36271, + [SMALL_STATE(2640)] = 36334, + [SMALL_STATE(2641)] = 36397, + [SMALL_STATE(2642)] = 36460, + [SMALL_STATE(2643)] = 36523, + [SMALL_STATE(2644)] = 36594, + [SMALL_STATE(2645)] = 36657, + [SMALL_STATE(2646)] = 36720, + [SMALL_STATE(2647)] = 36829, + [SMALL_STATE(2648)] = 36892, + [SMALL_STATE(2649)] = 36955, + [SMALL_STATE(2650)] = 37018, + [SMALL_STATE(2651)] = 37085, + [SMALL_STATE(2652)] = 37148, + [SMALL_STATE(2653)] = 37233, + [SMALL_STATE(2654)] = 37300, + [SMALL_STATE(2655)] = 37363, + [SMALL_STATE(2656)] = 37426, + [SMALL_STATE(2657)] = 37535, + [SMALL_STATE(2658)] = 37614, + [SMALL_STATE(2659)] = 37699, + [SMALL_STATE(2660)] = 37762, + [SMALL_STATE(2661)] = 37825, + [SMALL_STATE(2662)] = 37930, + [SMALL_STATE(2663)] = 38031, + [SMALL_STATE(2664)] = 38094, + [SMALL_STATE(2665)] = 38157, + [SMALL_STATE(2666)] = 38220, + [SMALL_STATE(2667)] = 38283, + [SMALL_STATE(2668)] = 38380, + [SMALL_STATE(2669)] = 38475, + [SMALL_STATE(2670)] = 38566, + [SMALL_STATE(2671)] = 38655, + [SMALL_STATE(2672)] = 38740, + [SMALL_STATE(2673)] = 38803, + [SMALL_STATE(2674)] = 38866, + [SMALL_STATE(2675)] = 38929, + [SMALL_STATE(2676)] = 38994, + [SMALL_STATE(2677)] = 39057, + [SMALL_STATE(2678)] = 39130, + [SMALL_STATE(2679)] = 39243, + [SMALL_STATE(2680)] = 39324, + [SMALL_STATE(2681)] = 39407, + [SMALL_STATE(2682)] = 39476, + [SMALL_STATE(2683)] = 39539, + [SMALL_STATE(2684)] = 39608, + [SMALL_STATE(2685)] = 39671, + [SMALL_STATE(2686)] = 39734, + [SMALL_STATE(2687)] = 39797, + [SMALL_STATE(2688)] = 39860, + [SMALL_STATE(2689)] = 39923, + [SMALL_STATE(2690)] = 39986, + [SMALL_STATE(2691)] = 40049, + [SMALL_STATE(2692)] = 40112, + [SMALL_STATE(2693)] = 40175, + [SMALL_STATE(2694)] = 40238, + [SMALL_STATE(2695)] = 40301, + [SMALL_STATE(2696)] = 40372, + [SMALL_STATE(2697)] = 40435, + [SMALL_STATE(2698)] = 40498, + [SMALL_STATE(2699)] = 40561, + [SMALL_STATE(2700)] = 40632, + [SMALL_STATE(2701)] = 40695, + [SMALL_STATE(2702)] = 40766, + [SMALL_STATE(2703)] = 40829, + [SMALL_STATE(2704)] = 40892, + [SMALL_STATE(2705)] = 40963, + [SMALL_STATE(2706)] = 41032, + [SMALL_STATE(2707)] = 41095, + [SMALL_STATE(2708)] = 41158, + [SMALL_STATE(2709)] = 41225, + [SMALL_STATE(2710)] = 41288, + [SMALL_STATE(2711)] = 41351, + [SMALL_STATE(2712)] = 41424, + [SMALL_STATE(2713)] = 41487, + [SMALL_STATE(2714)] = 41550, + [SMALL_STATE(2715)] = 41613, + [SMALL_STATE(2716)] = 41676, + [SMALL_STATE(2717)] = 41739, + [SMALL_STATE(2718)] = 41802, + [SMALL_STATE(2719)] = 41865, + [SMALL_STATE(2720)] = 41928, + [SMALL_STATE(2721)] = 41997, + [SMALL_STATE(2722)] = 42106, + [SMALL_STATE(2723)] = 42169, + [SMALL_STATE(2724)] = 42248, + [SMALL_STATE(2725)] = 42311, + [SMALL_STATE(2726)] = 42382, + [SMALL_STATE(2727)] = 42445, + [SMALL_STATE(2728)] = 42508, + [SMALL_STATE(2729)] = 42571, + [SMALL_STATE(2730)] = 42634, + [SMALL_STATE(2731)] = 42697, + [SMALL_STATE(2732)] = 42762, + [SMALL_STATE(2733)] = 42875, + [SMALL_STATE(2734)] = 42938, + [SMALL_STATE(2735)] = 43001, + [SMALL_STATE(2736)] = 43064, + [SMALL_STATE(2737)] = 43149, + [SMALL_STATE(2738)] = 43212, + [SMALL_STATE(2739)] = 43275, + [SMALL_STATE(2740)] = 43338, + [SMALL_STATE(2741)] = 43401, + [SMALL_STATE(2742)] = 43474, + [SMALL_STATE(2743)] = 43537, + [SMALL_STATE(2744)] = 43600, + [SMALL_STATE(2745)] = 43663, + [SMALL_STATE(2746)] = 43726, + [SMALL_STATE(2747)] = 43789, + [SMALL_STATE(2748)] = 43856, + [SMALL_STATE(2749)] = 43919, + [SMALL_STATE(2750)] = 43982, + [SMALL_STATE(2751)] = 44045, + [SMALL_STATE(2752)] = 44112, + [SMALL_STATE(2753)] = 44225, + [SMALL_STATE(2754)] = 44304, + [SMALL_STATE(2755)] = 44367, + [SMALL_STATE(2756)] = 44430, + [SMALL_STATE(2757)] = 44493, + [SMALL_STATE(2758)] = 44556, + [SMALL_STATE(2759)] = 44621, + [SMALL_STATE(2760)] = 44684, + [SMALL_STATE(2761)] = 44747, + [SMALL_STATE(2762)] = 44810, + [SMALL_STATE(2763)] = 44873, + [SMALL_STATE(2764)] = 44936, + [SMALL_STATE(2765)] = 44999, + [SMALL_STATE(2766)] = 45062, + [SMALL_STATE(2767)] = 45129, + [SMALL_STATE(2768)] = 45202, + [SMALL_STATE(2769)] = 45265, + [SMALL_STATE(2770)] = 45344, + [SMALL_STATE(2771)] = 45407, + [SMALL_STATE(2772)] = 45474, + [SMALL_STATE(2773)] = 45541, + [SMALL_STATE(2774)] = 45620, + [SMALL_STATE(2775)] = 45687, + [SMALL_STATE(2776)] = 45754, + [SMALL_STATE(2777)] = 45821, + [SMALL_STATE(2778)] = 45884, + [SMALL_STATE(2779)] = 45947, + [SMALL_STATE(2780)] = 46010, + [SMALL_STATE(2781)] = 46072, + [SMALL_STATE(2782)] = 46134, + [SMALL_STATE(2783)] = 46200, + [SMALL_STATE(2784)] = 46262, + [SMALL_STATE(2785)] = 46332, + [SMALL_STATE(2786)] = 46394, + [SMALL_STATE(2787)] = 46456, + [SMALL_STATE(2788)] = 46518, + [SMALL_STATE(2789)] = 46588, + [SMALL_STATE(2790)] = 46650, + [SMALL_STATE(2791)] = 46712, + [SMALL_STATE(2792)] = 46774, + [SMALL_STATE(2793)] = 46836, + [SMALL_STATE(2794)] = 46904, + [SMALL_STATE(2795)] = 46966, + [SMALL_STATE(2796)] = 47028, + [SMALL_STATE(2797)] = 47090, + [SMALL_STATE(2798)] = 47152, + [SMALL_STATE(2799)] = 47224, + [SMALL_STATE(2800)] = 47286, + [SMALL_STATE(2801)] = 47348, + [SMALL_STATE(2802)] = 47414, + [SMALL_STATE(2803)] = 47476, + [SMALL_STATE(2804)] = 47538, + [SMALL_STATE(2805)] = 47600, + [SMALL_STATE(2806)] = 47662, + [SMALL_STATE(2807)] = 47724, + [SMALL_STATE(2808)] = 47786, + [SMALL_STATE(2809)] = 47848, + [SMALL_STATE(2810)] = 47910, + [SMALL_STATE(2811)] = 47972, + [SMALL_STATE(2812)] = 48034, + [SMALL_STATE(2813)] = 48106, + [SMALL_STATE(2814)] = 48168, + [SMALL_STATE(2815)] = 48234, + [SMALL_STATE(2816)] = 48296, + [SMALL_STATE(2817)] = 48358, + [SMALL_STATE(2818)] = 48420, + [SMALL_STATE(2819)] = 48482, + [SMALL_STATE(2820)] = 48544, + [SMALL_STATE(2821)] = 48606, + [SMALL_STATE(2822)] = 48668, + [SMALL_STATE(2823)] = 48730, + [SMALL_STATE(2824)] = 48792, + [SMALL_STATE(2825)] = 48854, + [SMALL_STATE(2826)] = 48916, + [SMALL_STATE(2827)] = 48978, + [SMALL_STATE(2828)] = 49040, + [SMALL_STATE(2829)] = 49108, + [SMALL_STATE(2830)] = 49180, + [SMALL_STATE(2831)] = 49246, + [SMALL_STATE(2832)] = 49308, + [SMALL_STATE(2833)] = 49370, + [SMALL_STATE(2834)] = 49432, + [SMALL_STATE(2835)] = 49496, + [SMALL_STATE(2836)] = 49564, + [SMALL_STATE(2837)] = 49626, + [SMALL_STATE(2838)] = 49688, + [SMALL_STATE(2839)] = 49756, + [SMALL_STATE(2840)] = 49818, + [SMALL_STATE(2841)] = 49880, + [SMALL_STATE(2842)] = 49946, + [SMALL_STATE(2843)] = 50008, + [SMALL_STATE(2844)] = 50070, + [SMALL_STATE(2845)] = 50132, + [SMALL_STATE(2846)] = 50194, + [SMALL_STATE(2847)] = 50256, + [SMALL_STATE(2848)] = 50318, + [SMALL_STATE(2849)] = 50384, + [SMALL_STATE(2850)] = 50446, + [SMALL_STATE(2851)] = 50508, + [SMALL_STATE(2852)] = 50570, + [SMALL_STATE(2853)] = 50634, + [SMALL_STATE(2854)] = 50696, + [SMALL_STATE(2855)] = 50758, + [SMALL_STATE(2856)] = 50820, + [SMALL_STATE(2857)] = 50886, + [SMALL_STATE(2858)] = 50948, + [SMALL_STATE(2859)] = 51020, + [SMALL_STATE(2860)] = 51082, + [SMALL_STATE(2861)] = 51144, + [SMALL_STATE(2862)] = 51206, + [SMALL_STATE(2863)] = 51268, + [SMALL_STATE(2864)] = 51330, + [SMALL_STATE(2865)] = 51400, + [SMALL_STATE(2866)] = 51462, + [SMALL_STATE(2867)] = 51524, + [SMALL_STATE(2868)] = 51586, + [SMALL_STATE(2869)] = 51648, + [SMALL_STATE(2870)] = 51716, + [SMALL_STATE(2871)] = 51778, + [SMALL_STATE(2872)] = 51840, + [SMALL_STATE(2873)] = 51902, + [SMALL_STATE(2874)] = 51968, + [SMALL_STATE(2875)] = 52030, + [SMALL_STATE(2876)] = 52096, + [SMALL_STATE(2877)] = 52158, + [SMALL_STATE(2878)] = 52220, + [SMALL_STATE(2879)] = 52282, + [SMALL_STATE(2880)] = 52343, + [SMALL_STATE(2881)] = 52438, + [SMALL_STATE(2882)] = 52505, + [SMALL_STATE(2883)] = 52572, + [SMALL_STATE(2884)] = 52645, + [SMALL_STATE(2885)] = 52752, + [SMALL_STATE(2886)] = 52835, + [SMALL_STATE(2887)] = 52942, + [SMALL_STATE(2888)] = 53017, + [SMALL_STATE(2889)] = 53084, + [SMALL_STATE(2890)] = 53149, + [SMALL_STATE(2891)] = 53218, + [SMALL_STATE(2892)] = 53283, + [SMALL_STATE(2893)] = 53388, + [SMALL_STATE(2894)] = 53455, + [SMALL_STATE(2895)] = 53528, + [SMALL_STATE(2896)] = 53591, + [SMALL_STATE(2897)] = 53656, + [SMALL_STATE(2898)] = 53723, + [SMALL_STATE(2899)] = 53800, + [SMALL_STATE(2900)] = 53865, + [SMALL_STATE(2901)] = 53976, + [SMALL_STATE(2902)] = 54053, + [SMALL_STATE(2903)] = 54164, + [SMALL_STATE(2904)] = 54229, + [SMALL_STATE(2905)] = 54290, + [SMALL_STATE(2906)] = 54397, + [SMALL_STATE(2907)] = 54504, + [SMALL_STATE(2908)] = 54615, + [SMALL_STATE(2909)] = 54684, + [SMALL_STATE(2910)] = 54791, + [SMALL_STATE(2911)] = 54852, + [SMALL_STATE(2912)] = 54915, + [SMALL_STATE(2913)] = 55020, + [SMALL_STATE(2914)] = 55081, + [SMALL_STATE(2915)] = 55156, + [SMALL_STATE(2916)] = 55217, + [SMALL_STATE(2917)] = 55300, + [SMALL_STATE(2918)] = 55387, + [SMALL_STATE(2919)] = 55476, + [SMALL_STATE(2920)] = 55569, + [SMALL_STATE(2921)] = 55676, + [SMALL_STATE(2922)] = 55741, + [SMALL_STATE(2923)] = 55852, + [SMALL_STATE(2924)] = 55919, + [SMALL_STATE(2925)] = 55980, + [SMALL_STATE(2926)] = 56075, + [SMALL_STATE(2927)] = 56136, + [SMALL_STATE(2928)] = 56235, + [SMALL_STATE(2929)] = 56300, + [SMALL_STATE(2930)] = 56403, + [SMALL_STATE(2931)] = 56468, + [SMALL_STATE(2932)] = 56579, + [SMALL_STATE(2933)] = 56686, + [SMALL_STATE(2934)] = 56751, + [SMALL_STATE(2935)] = 56826, + [SMALL_STATE(2936)] = 56891, + [SMALL_STATE(2937)] = 56956, + [SMALL_STATE(2938)] = 57017, + [SMALL_STATE(2939)] = 57078, + [SMALL_STATE(2940)] = 57139, + [SMALL_STATE(2941)] = 57200, + [SMALL_STATE(2942)] = 57261, + [SMALL_STATE(2943)] = 57322, + [SMALL_STATE(2944)] = 57399, + [SMALL_STATE(2945)] = 57462, + [SMALL_STATE(2946)] = 57523, + [SMALL_STATE(2947)] = 57588, + [SMALL_STATE(2948)] = 57649, + [SMALL_STATE(2949)] = 57710, + [SMALL_STATE(2950)] = 57771, + [SMALL_STATE(2951)] = 57832, + [SMALL_STATE(2952)] = 57915, + [SMALL_STATE(2953)] = 57976, + [SMALL_STATE(2954)] = 58037, + [SMALL_STATE(2955)] = 58098, + [SMALL_STATE(2956)] = 58159, + [SMALL_STATE(2957)] = 58220, + [SMALL_STATE(2958)] = 58327, + [SMALL_STATE(2959)] = 58388, + [SMALL_STATE(2960)] = 58449, + [SMALL_STATE(2961)] = 58514, + [SMALL_STATE(2962)] = 58575, + [SMALL_STATE(2963)] = 58636, + [SMALL_STATE(2964)] = 58717, + [SMALL_STATE(2965)] = 58782, + [SMALL_STATE(2966)] = 58859, + [SMALL_STATE(2967)] = 58936, + [SMALL_STATE(2968)] = 59001, + [SMALL_STATE(2969)] = 59100, + [SMALL_STATE(2970)] = 59165, + [SMALL_STATE(2971)] = 59226, + [SMALL_STATE(2972)] = 59287, + [SMALL_STATE(2973)] = 59348, + [SMALL_STATE(2974)] = 59427, + [SMALL_STATE(2975)] = 59492, + [SMALL_STATE(2976)] = 59555, + [SMALL_STATE(2977)] = 59616, + [SMALL_STATE(2978)] = 59699, + [SMALL_STATE(2979)] = 59764, + [SMALL_STATE(2980)] = 59825, + [SMALL_STATE(2981)] = 59886, + [SMALL_STATE(2982)] = 59961, + [SMALL_STATE(2983)] = 60040, + [SMALL_STATE(2984)] = 60121, + [SMALL_STATE(2985)] = 60186, + [SMALL_STATE(2986)] = 60247, + [SMALL_STATE(2987)] = 60308, + [SMALL_STATE(2988)] = 60369, + [SMALL_STATE(2989)] = 60456, + [SMALL_STATE(2990)] = 60545, + [SMALL_STATE(2991)] = 60638, + [SMALL_STATE(2992)] = 60741, + [SMALL_STATE(2993)] = 60852, + [SMALL_STATE(2994)] = 60929, + [SMALL_STATE(2995)] = 60989, + [SMALL_STATE(2996)] = 61079, + [SMALL_STATE(2997)] = 61235, + [SMALL_STATE(2998)] = 61307, + [SMALL_STATE(2999)] = 61411, + [SMALL_STATE(3000)] = 61471, + [SMALL_STATE(3001)] = 61535, + [SMALL_STATE(3002)] = 61595, + [SMALL_STATE(3003)] = 61677, + [SMALL_STATE(3004)] = 61751, + [SMALL_STATE(3005)] = 61815, + [SMALL_STATE(3006)] = 61875, + [SMALL_STATE(3007)] = 61935, + [SMALL_STATE(3008)] = 61995, + [SMALL_STATE(3009)] = 62059, + [SMALL_STATE(3010)] = 62215, + [SMALL_STATE(3011)] = 62287, + [SMALL_STATE(3012)] = 62347, + [SMALL_STATE(3013)] = 62407, + [SMALL_STATE(3014)] = 62563, + [SMALL_STATE(3015)] = 62623, + [SMALL_STATE(3016)] = 62683, + [SMALL_STATE(3017)] = 62743, + [SMALL_STATE(3018)] = 62803, + [SMALL_STATE(3019)] = 62907, + [SMALL_STATE(3020)] = 62967, + [SMALL_STATE(3021)] = 63027, + [SMALL_STATE(3022)] = 63087, + [SMALL_STATE(3023)] = 63147, + [SMALL_STATE(3024)] = 63207, + [SMALL_STATE(3025)] = 63267, + [SMALL_STATE(3026)] = 63327, + [SMALL_STATE(3027)] = 63397, + [SMALL_STATE(3028)] = 63457, + [SMALL_STATE(3029)] = 63517, + [SMALL_STATE(3030)] = 63577, + [SMALL_STATE(3031)] = 63637, + [SMALL_STATE(3032)] = 63697, + [SMALL_STATE(3033)] = 63757, + [SMALL_STATE(3034)] = 63817, + [SMALL_STATE(3035)] = 63879, + [SMALL_STATE(3036)] = 63941, + [SMALL_STATE(3037)] = 64007, + [SMALL_STATE(3038)] = 64075, + [SMALL_STATE(3039)] = 64231, + [SMALL_STATE(3040)] = 64305, + [SMALL_STATE(3041)] = 64371, + [SMALL_STATE(3042)] = 64431, + [SMALL_STATE(3043)] = 64497, + [SMALL_STATE(3044)] = 64559, + [SMALL_STATE(3045)] = 64619, + [SMALL_STATE(3046)] = 64687, + [SMALL_STATE(3047)] = 64747, + [SMALL_STATE(3048)] = 64807, + [SMALL_STATE(3049)] = 64867, + [SMALL_STATE(3050)] = 64927, + [SMALL_STATE(3051)] = 64987, + [SMALL_STATE(3052)] = 65095, + [SMALL_STATE(3053)] = 65155, + [SMALL_STATE(3054)] = 65215, + [SMALL_STATE(3055)] = 65283, + [SMALL_STATE(3056)] = 65359, + [SMALL_STATE(3057)] = 65419, + [SMALL_STATE(3058)] = 65493, + [SMALL_STATE(3059)] = 65553, + [SMALL_STATE(3060)] = 65653, + [SMALL_STATE(3061)] = 65749, + [SMALL_STATE(3062)] = 65905, + [SMALL_STATE(3063)] = 65965, + [SMALL_STATE(3064)] = 66025, + [SMALL_STATE(3065)] = 66117, + [SMALL_STATE(3066)] = 66177, + [SMALL_STATE(3067)] = 66237, + [SMALL_STATE(3068)] = 66297, + [SMALL_STATE(3069)] = 66357, + [SMALL_STATE(3070)] = 66417, + [SMALL_STATE(3071)] = 66477, + [SMALL_STATE(3072)] = 66581, + [SMALL_STATE(3073)] = 66685, + [SMALL_STATE(3074)] = 66745, + [SMALL_STATE(3075)] = 66813, + [SMALL_STATE(3076)] = 66873, + [SMALL_STATE(3077)] = 66933, + [SMALL_STATE(3078)] = 66993, + [SMALL_STATE(3079)] = 67079, + [SMALL_STATE(3080)] = 67235, + [SMALL_STATE(3081)] = 67319, + [SMALL_STATE(3082)] = 67379, + [SMALL_STATE(3083)] = 67461, + [SMALL_STATE(3084)] = 67521, + [SMALL_STATE(3085)] = 67581, + [SMALL_STATE(3086)] = 67641, + [SMALL_STATE(3087)] = 67719, + [SMALL_STATE(3088)] = 67783, + [SMALL_STATE(3089)] = 67863, + [SMALL_STATE(3090)] = 67923, + [SMALL_STATE(3091)] = 67983, + [SMALL_STATE(3092)] = 68091, + [SMALL_STATE(3093)] = 68155, + [SMALL_STATE(3094)] = 68215, + [SMALL_STATE(3095)] = 68275, + [SMALL_STATE(3096)] = 68343, + [SMALL_STATE(3097)] = 68499, + [SMALL_STATE(3098)] = 68559, + [SMALL_STATE(3099)] = 68619, + [SMALL_STATE(3100)] = 68679, + [SMALL_STATE(3101)] = 68753, + [SMALL_STATE(3102)] = 68813, + [SMALL_STATE(3103)] = 68969, + [SMALL_STATE(3104)] = 69029, + [SMALL_STATE(3105)] = 69089, + [SMALL_STATE(3106)] = 69245, + [SMALL_STATE(3107)] = 69307, + [SMALL_STATE(3108)] = 69463, + [SMALL_STATE(3109)] = 69529, + [SMALL_STATE(3110)] = 69589, + [SMALL_STATE(3111)] = 69649, + [SMALL_STATE(3112)] = 69715, + [SMALL_STATE(3113)] = 69783, + [SMALL_STATE(3114)] = 69939, + [SMALL_STATE(3115)] = 69999, + [SMALL_STATE(3116)] = 70059, + [SMALL_STATE(3117)] = 70119, + [SMALL_STATE(3118)] = 70183, + [SMALL_STATE(3119)] = 70243, + [SMALL_STATE(3120)] = 70303, + [SMALL_STATE(3121)] = 70363, + [SMALL_STATE(3122)] = 70423, + [SMALL_STATE(3123)] = 70483, + [SMALL_STATE(3124)] = 70543, + [SMALL_STATE(3125)] = 70607, + [SMALL_STATE(3126)] = 70667, + [SMALL_STATE(3127)] = 70727, + [SMALL_STATE(3128)] = 70787, + [SMALL_STATE(3129)] = 70847, + [SMALL_STATE(3130)] = 70907, + [SMALL_STATE(3131)] = 70975, + [SMALL_STATE(3132)] = 71035, + [SMALL_STATE(3133)] = 71095, + [SMALL_STATE(3134)] = 71155, + [SMALL_STATE(3135)] = 71259, + [SMALL_STATE(3136)] = 71367, + [SMALL_STATE(3137)] = 71427, + [SMALL_STATE(3138)] = 71487, + [SMALL_STATE(3139)] = 71643, + [SMALL_STATE(3140)] = 71703, + [SMALL_STATE(3141)] = 71763, + [SMALL_STATE(3142)] = 71825, + [SMALL_STATE(3143)] = 71885, + [SMALL_STATE(3144)] = 71944, + [SMALL_STATE(3145)] = 72003, + [SMALL_STATE(3146)] = 72064, + [SMALL_STATE(3147)] = 72123, + [SMALL_STATE(3148)] = 72186, + [SMALL_STATE(3149)] = 72245, + [SMALL_STATE(3150)] = 72312, + [SMALL_STATE(3151)] = 72371, + [SMALL_STATE(3152)] = 72430, + [SMALL_STATE(3153)] = 72491, + [SMALL_STATE(3154)] = 72592, + [SMALL_STATE(3155)] = 72651, + [SMALL_STATE(3156)] = 72752, + [SMALL_STATE(3157)] = 72811, + [SMALL_STATE(3158)] = 72870, + [SMALL_STATE(3159)] = 72929, + [SMALL_STATE(3160)] = 72988, + [SMALL_STATE(3161)] = 73047, + [SMALL_STATE(3162)] = 73106, + [SMALL_STATE(3163)] = 73165, + [SMALL_STATE(3164)] = 73228, + [SMALL_STATE(3165)] = 73287, + [SMALL_STATE(3166)] = 73348, + [SMALL_STATE(3167)] = 73407, + [SMALL_STATE(3168)] = 73466, + [SMALL_STATE(3169)] = 73533, + [SMALL_STATE(3170)] = 73592, + [SMALL_STATE(3171)] = 73697, + [SMALL_STATE(3172)] = 73758, + [SMALL_STATE(3173)] = 73817, + [SMALL_STATE(3174)] = 73876, + [SMALL_STATE(3175)] = 73977, + [SMALL_STATE(3176)] = 74038, + [SMALL_STATE(3177)] = 74139, + [SMALL_STATE(3178)] = 74198, + [SMALL_STATE(3179)] = 74257, + [SMALL_STATE(3180)] = 74320, + [SMALL_STATE(3181)] = 74379, + [SMALL_STATE(3182)] = 74438, + [SMALL_STATE(3183)] = 74497, + [SMALL_STATE(3184)] = 74556, + [SMALL_STATE(3185)] = 74621, + [SMALL_STATE(3186)] = 74680, + [SMALL_STATE(3187)] = 74781, + [SMALL_STATE(3188)] = 74840, + [SMALL_STATE(3189)] = 74899, + [SMALL_STATE(3190)] = 74958, + [SMALL_STATE(3191)] = 75017, + [SMALL_STATE(3192)] = 75076, + [SMALL_STATE(3193)] = 75135, + [SMALL_STATE(3194)] = 75194, + [SMALL_STATE(3195)] = 75295, + [SMALL_STATE(3196)] = 75354, + [SMALL_STATE(3197)] = 75413, + [SMALL_STATE(3198)] = 75472, + [SMALL_STATE(3199)] = 75531, + [SMALL_STATE(3200)] = 75636, + [SMALL_STATE(3201)] = 75695, + [SMALL_STATE(3202)] = 75762, + [SMALL_STATE(3203)] = 75871, + [SMALL_STATE(3204)] = 75930, + [SMALL_STATE(3205)] = 75989, + [SMALL_STATE(3206)] = 76048, + [SMALL_STATE(3207)] = 76107, + [SMALL_STATE(3208)] = 76166, + [SMALL_STATE(3209)] = 76225, + [SMALL_STATE(3210)] = 76284, + [SMALL_STATE(3211)] = 76343, + [SMALL_STATE(3212)] = 76444, + [SMALL_STATE(3213)] = 76505, + [SMALL_STATE(3214)] = 76564, + [SMALL_STATE(3215)] = 76637, + [SMALL_STATE(3216)] = 76696, + [SMALL_STATE(3217)] = 76755, + [SMALL_STATE(3218)] = 76834, + [SMALL_STATE(3219)] = 76897, + [SMALL_STATE(3220)] = 76974, + [SMALL_STATE(3221)] = 77035, + [SMALL_STATE(3222)] = 77116, + [SMALL_STATE(3223)] = 77217, + [SMALL_STATE(3224)] = 77278, + [SMALL_STATE(3225)] = 77337, + [SMALL_STATE(3226)] = 77396, + [SMALL_STATE(3227)] = 77497, + [SMALL_STATE(3228)] = 77582, + [SMALL_STATE(3229)] = 77641, + [SMALL_STATE(3230)] = 77742, + [SMALL_STATE(3231)] = 77805, + [SMALL_STATE(3232)] = 77896, + [SMALL_STATE(3233)] = 77967, + [SMALL_STATE(3234)] = 78026, + [SMALL_STATE(3235)] = 78099, + [SMALL_STATE(3236)] = 78158, + [SMALL_STATE(3237)] = 78217, + [SMALL_STATE(3238)] = 78276, + [SMALL_STATE(3239)] = 78369, + [SMALL_STATE(3240)] = 78428, + [SMALL_STATE(3241)] = 78525, + [SMALL_STATE(3242)] = 78584, + [SMALL_STATE(3243)] = 78643, + [SMALL_STATE(3244)] = 78702, + [SMALL_STATE(3245)] = 78761, + [SMALL_STATE(3246)] = 78862, + [SMALL_STATE(3247)] = 78927, + [SMALL_STATE(3248)] = 79028, + [SMALL_STATE(3249)] = 79087, + [SMALL_STATE(3250)] = 79188, + [SMALL_STATE(3251)] = 79255, + [SMALL_STATE(3252)] = 79318, + [SMALL_STATE(3253)] = 79377, + [SMALL_STATE(3254)] = 79436, + [SMALL_STATE(3255)] = 79495, + [SMALL_STATE(3256)] = 79554, + [SMALL_STATE(3257)] = 79613, + [SMALL_STATE(3258)] = 79672, + [SMALL_STATE(3259)] = 79737, + [SMALL_STATE(3260)] = 79810, + [SMALL_STATE(3261)] = 79891, + [SMALL_STATE(3262)] = 79950, + [SMALL_STATE(3263)] = 80009, + [SMALL_STATE(3264)] = 80082, + [SMALL_STATE(3265)] = 80141, + [SMALL_STATE(3266)] = 80200, + [SMALL_STATE(3267)] = 80261, + [SMALL_STATE(3268)] = 80320, + [SMALL_STATE(3269)] = 80379, + [SMALL_STATE(3270)] = 80438, + [SMALL_STATE(3271)] = 80497, + [SMALL_STATE(3272)] = 80556, + [SMALL_STATE(3273)] = 80657, + [SMALL_STATE(3274)] = 80758, + [SMALL_STATE(3275)] = 80817, + [SMALL_STATE(3276)] = 80876, + [SMALL_STATE(3277)] = 80935, + [SMALL_STATE(3278)] = 81022, + [SMALL_STATE(3279)] = 81081, + [SMALL_STATE(3280)] = 81140, + [SMALL_STATE(3281)] = 81211, + [SMALL_STATE(3282)] = 81270, + [SMALL_STATE(3283)] = 81329, + [SMALL_STATE(3284)] = 81388, + [SMALL_STATE(3285)] = 81489, + [SMALL_STATE(3286)] = 81548, + [SMALL_STATE(3287)] = 81649, + [SMALL_STATE(3288)] = 81750, + [SMALL_STATE(3289)] = 81851, + [SMALL_STATE(3290)] = 81910, + [SMALL_STATE(3291)] = 81969, + [SMALL_STATE(3292)] = 82028, + [SMALL_STATE(3293)] = 82087, + [SMALL_STATE(3294)] = 82146, + [SMALL_STATE(3295)] = 82205, + [SMALL_STATE(3296)] = 82264, + [SMALL_STATE(3297)] = 82325, + [SMALL_STATE(3298)] = 82434, + [SMALL_STATE(3299)] = 82535, + [SMALL_STATE(3300)] = 82594, + [SMALL_STATE(3301)] = 82653, + [SMALL_STATE(3302)] = 82712, + [SMALL_STATE(3303)] = 82771, + [SMALL_STATE(3304)] = 82830, + [SMALL_STATE(3305)] = 82889, + [SMALL_STATE(3306)] = 82954, + [SMALL_STATE(3307)] = 83013, + [SMALL_STATE(3308)] = 83072, + [SMALL_STATE(3309)] = 83131, + [SMALL_STATE(3310)] = 83190, + [SMALL_STATE(3311)] = 83251, + [SMALL_STATE(3312)] = 83310, + [SMALL_STATE(3313)] = 83411, + [SMALL_STATE(3314)] = 83472, + [SMALL_STATE(3315)] = 83531, + [SMALL_STATE(3316)] = 83590, + [SMALL_STATE(3317)] = 83649, + [SMALL_STATE(3318)] = 83708, + [SMALL_STATE(3319)] = 83767, + [SMALL_STATE(3320)] = 83868, + [SMALL_STATE(3321)] = 83927, + [SMALL_STATE(3322)] = 83986, + [SMALL_STATE(3323)] = 84045, + [SMALL_STATE(3324)] = 84150, + [SMALL_STATE(3325)] = 84209, + [SMALL_STATE(3326)] = 84268, + [SMALL_STATE(3327)] = 84373, + [SMALL_STATE(3328)] = 84432, + [SMALL_STATE(3329)] = 84507, + [SMALL_STATE(3330)] = 84566, + [SMALL_STATE(3331)] = 84625, + [SMALL_STATE(3332)] = 84684, + [SMALL_STATE(3333)] = 84785, + [SMALL_STATE(3334)] = 84846, + [SMALL_STATE(3335)] = 84905, + [SMALL_STATE(3336)] = 85006, + [SMALL_STATE(3337)] = 85065, + [SMALL_STATE(3338)] = 85124, + [SMALL_STATE(3339)] = 85185, + [SMALL_STATE(3340)] = 85244, + [SMALL_STATE(3341)] = 85303, + [SMALL_STATE(3342)] = 85364, + [SMALL_STATE(3343)] = 85423, + [SMALL_STATE(3344)] = 85484, + [SMALL_STATE(3345)] = 85593, + [SMALL_STATE(3346)] = 85652, + [SMALL_STATE(3347)] = 85711, + [SMALL_STATE(3348)] = 85812, + [SMALL_STATE(3349)] = 85871, + [SMALL_STATE(3350)] = 85930, + [SMALL_STATE(3351)] = 85989, + [SMALL_STATE(3352)] = 86048, + [SMALL_STATE(3353)] = 86109, + [SMALL_STATE(3354)] = 86173, + [SMALL_STATE(3355)] = 86231, + [SMALL_STATE(3356)] = 86293, + [SMALL_STATE(3357)] = 86351, + [SMALL_STATE(3358)] = 86409, + [SMALL_STATE(3359)] = 86467, + [SMALL_STATE(3360)] = 86573, + [SMALL_STATE(3361)] = 86655, + [SMALL_STATE(3362)] = 86737, + [SMALL_STATE(3363)] = 86795, + [SMALL_STATE(3364)] = 86853, + [SMALL_STATE(3365)] = 86911, + [SMALL_STATE(3366)] = 86969, + [SMALL_STATE(3367)] = 87027, + [SMALL_STATE(3368)] = 87133, + [SMALL_STATE(3369)] = 87191, + [SMALL_STATE(3370)] = 87249, + [SMALL_STATE(3371)] = 87307, + [SMALL_STATE(3372)] = 87365, + [SMALL_STATE(3373)] = 87423, + [SMALL_STATE(3374)] = 87481, + [SMALL_STATE(3375)] = 87539, + [SMALL_STATE(3376)] = 87597, + [SMALL_STATE(3377)] = 87655, + [SMALL_STATE(3378)] = 87717, + [SMALL_STATE(3379)] = 87819, + [SMALL_STATE(3380)] = 87877, + [SMALL_STATE(3381)] = 87935, + [SMALL_STATE(3382)] = 87993, + [SMALL_STATE(3383)] = 88051, + [SMALL_STATE(3384)] = 88109, + [SMALL_STATE(3385)] = 88167, + [SMALL_STATE(3386)] = 88225, + [SMALL_STATE(3387)] = 88283, + [SMALL_STATE(3388)] = 88365, + [SMALL_STATE(3389)] = 88423, + [SMALL_STATE(3390)] = 88481, + [SMALL_STATE(3391)] = 88551, + [SMALL_STATE(3392)] = 88609, + [SMALL_STATE(3393)] = 88715, + [SMALL_STATE(3394)] = 88773, + [SMALL_STATE(3395)] = 88831, + [SMALL_STATE(3396)] = 88889, + [SMALL_STATE(3397)] = 88963, + [SMALL_STATE(3398)] = 89067, + [SMALL_STATE(3399)] = 89133, + [SMALL_STATE(3400)] = 89191, + [SMALL_STATE(3401)] = 89251, + [SMALL_STATE(3402)] = 89309, + [SMALL_STATE(3403)] = 89367, + [SMALL_STATE(3404)] = 89425, + [SMALL_STATE(3405)] = 89487, + [SMALL_STATE(3406)] = 89561, + [SMALL_STATE(3407)] = 89633, + [SMALL_STATE(3408)] = 89691, + [SMALL_STATE(3409)] = 89749, + [SMALL_STATE(3410)] = 89807, + [SMALL_STATE(3411)] = 89865, + [SMALL_STATE(3412)] = 89923, + [SMALL_STATE(3413)] = 90023, + [SMALL_STATE(3414)] = 90081, + [SMALL_STATE(3415)] = 90139, + [SMALL_STATE(3416)] = 90197, + [SMALL_STATE(3417)] = 90255, + [SMALL_STATE(3418)] = 90313, + [SMALL_STATE(3419)] = 90371, + [SMALL_STATE(3420)] = 90429, + [SMALL_STATE(3421)] = 90487, + [SMALL_STATE(3422)] = 90545, + [SMALL_STATE(3423)] = 90603, + [SMALL_STATE(3424)] = 90661, + [SMALL_STATE(3425)] = 90759, + [SMALL_STATE(3426)] = 90825, + [SMALL_STATE(3427)] = 90919, + [SMALL_STATE(3428)] = 91009, + [SMALL_STATE(3429)] = 91067, + [SMALL_STATE(3430)] = 91153, + [SMALL_STATE(3431)] = 91211, + [SMALL_STATE(3432)] = 91295, + [SMALL_STATE(3433)] = 91353, + [SMALL_STATE(3434)] = 91411, + [SMALL_STATE(3435)] = 91475, + [SMALL_STATE(3436)] = 91555, + [SMALL_STATE(3437)] = 91631, + [SMALL_STATE(3438)] = 91733, + [SMALL_STATE(3439)] = 91791, + [SMALL_STATE(3440)] = 91849, + [SMALL_STATE(3441)] = 91907, + [SMALL_STATE(3442)] = 91985, + [SMALL_STATE(3443)] = 92067, + [SMALL_STATE(3444)] = 92125, + [SMALL_STATE(3445)] = 92199, + [SMALL_STATE(3446)] = 92257, + [SMALL_STATE(3447)] = 92315, + [SMALL_STATE(3448)] = 92373, + [SMALL_STATE(3449)] = 92445, + [SMALL_STATE(3450)] = 92503, + [SMALL_STATE(3451)] = 92583, + [SMALL_STATE(3452)] = 92665, + [SMALL_STATE(3453)] = 92723, + [SMALL_STATE(3454)] = 92805, + [SMALL_STATE(3455)] = 92863, + [SMALL_STATE(3456)] = 92921, + [SMALL_STATE(3457)] = 92993, + [SMALL_STATE(3458)] = 93051, + [SMALL_STATE(3459)] = 93109, + [SMALL_STATE(3460)] = 93173, + [SMALL_STATE(3461)] = 93231, + [SMALL_STATE(3462)] = 93289, + [SMALL_STATE(3463)] = 93347, + [SMALL_STATE(3464)] = 93405, + [SMALL_STATE(3465)] = 93463, + [SMALL_STATE(3466)] = 93545, + [SMALL_STATE(3467)] = 93603, + [SMALL_STATE(3468)] = 93661, + [SMALL_STATE(3469)] = 93719, + [SMALL_STATE(3470)] = 93777, + [SMALL_STATE(3471)] = 93839, + [SMALL_STATE(3472)] = 93901, + [SMALL_STATE(3473)] = 94003, + [SMALL_STATE(3474)] = 94061, + [SMALL_STATE(3475)] = 94119, + [SMALL_STATE(3476)] = 94201, + [SMALL_STATE(3477)] = 94303, + [SMALL_STATE(3478)] = 94373, + [SMALL_STATE(3479)] = 94431, + [SMALL_STATE(3480)] = 94489, + [SMALL_STATE(3481)] = 94571, + [SMALL_STATE(3482)] = 94675, + [SMALL_STATE(3483)] = 94733, + [SMALL_STATE(3484)] = 94809, + [SMALL_STATE(3485)] = 94866, + [SMALL_STATE(3486)] = 94923, + [SMALL_STATE(3487)] = 94990, + [SMALL_STATE(3488)] = 95047, + [SMALL_STATE(3489)] = 95116, + [SMALL_STATE(3490)] = 95173, + [SMALL_STATE(3491)] = 95230, + [SMALL_STATE(3492)] = 95287, + [SMALL_STATE(3493)] = 95344, + [SMALL_STATE(3494)] = 95407, + [SMALL_STATE(3495)] = 95470, + [SMALL_STATE(3496)] = 95539, + [SMALL_STATE(3497)] = 95600, + [SMALL_STATE(3498)] = 95703, + [SMALL_STATE(3499)] = 95760, + [SMALL_STATE(3500)] = 95863, + [SMALL_STATE(3501)] = 95928, + [SMALL_STATE(3502)] = 96031, + [SMALL_STATE(3503)] = 96088, + [SMALL_STATE(3504)] = 96191, + [SMALL_STATE(3505)] = 96250, + [SMALL_STATE(3506)] = 96307, + [SMALL_STATE(3507)] = 96410, + [SMALL_STATE(3508)] = 96467, + [SMALL_STATE(3509)] = 96524, + [SMALL_STATE(3510)] = 96581, + [SMALL_STATE(3511)] = 96638, + [SMALL_STATE(3512)] = 96741, + [SMALL_STATE(3513)] = 96798, + [SMALL_STATE(3514)] = 96855, + [SMALL_STATE(3515)] = 96958, + [SMALL_STATE(3516)] = 97061, + [SMALL_STATE(3517)] = 97124, + [SMALL_STATE(3518)] = 97180, + [SMALL_STATE(3519)] = 97236, + [SMALL_STATE(3520)] = 97338, + [SMALL_STATE(3521)] = 97394, + [SMALL_STATE(3522)] = 97468, + [SMALL_STATE(3523)] = 97524, + [SMALL_STATE(3524)] = 97580, + [SMALL_STATE(3525)] = 97644, + [SMALL_STATE(3526)] = 97718, + [SMALL_STATE(3527)] = 97792, + [SMALL_STATE(3528)] = 97866, + [SMALL_STATE(3529)] = 97922, + [SMALL_STATE(3530)] = 97978, + [SMALL_STATE(3531)] = 98034, + [SMALL_STATE(3532)] = 98090, + [SMALL_STATE(3533)] = 98146, + [SMALL_STATE(3534)] = 98202, + [SMALL_STATE(3535)] = 98258, + [SMALL_STATE(3536)] = 98314, + [SMALL_STATE(3537)] = 98370, + [SMALL_STATE(3538)] = 98472, + [SMALL_STATE(3539)] = 98534, + [SMALL_STATE(3540)] = 98608, + [SMALL_STATE(3541)] = 98664, + [SMALL_STATE(3542)] = 98720, + [SMALL_STATE(3543)] = 98822, + [SMALL_STATE(3544)] = 98896, + [SMALL_STATE(3545)] = 98952, + [SMALL_STATE(3546)] = 99008, + [SMALL_STATE(3547)] = 99064, + [SMALL_STATE(3548)] = 99120, + [SMALL_STATE(3549)] = 99182, + [SMALL_STATE(3550)] = 99238, + [SMALL_STATE(3551)] = 99340, + [SMALL_STATE(3552)] = 99396, + [SMALL_STATE(3553)] = 99452, + [SMALL_STATE(3554)] = 99508, + [SMALL_STATE(3555)] = 99564, + [SMALL_STATE(3556)] = 99620, + [SMALL_STATE(3557)] = 99676, + [SMALL_STATE(3558)] = 99732, + [SMALL_STATE(3559)] = 99788, + [SMALL_STATE(3560)] = 99844, + [SMALL_STATE(3561)] = 99918, + [SMALL_STATE(3562)] = 99992, + [SMALL_STATE(3563)] = 100048, + [SMALL_STATE(3564)] = 100104, + [SMALL_STATE(3565)] = 100160, + [SMALL_STATE(3566)] = 100216, + [SMALL_STATE(3567)] = 100272, + [SMALL_STATE(3568)] = 100328, + [SMALL_STATE(3569)] = 100384, + [SMALL_STATE(3570)] = 100486, + [SMALL_STATE(3571)] = 100588, + [SMALL_STATE(3572)] = 100644, + [SMALL_STATE(3573)] = 100700, + [SMALL_STATE(3574)] = 100756, + [SMALL_STATE(3575)] = 100816, + [SMALL_STATE(3576)] = 100872, + [SMALL_STATE(3577)] = 100928, + [SMALL_STATE(3578)] = 100984, + [SMALL_STATE(3579)] = 101040, + [SMALL_STATE(3580)] = 101096, + [SMALL_STATE(3581)] = 101152, + [SMALL_STATE(3582)] = 101208, + [SMALL_STATE(3583)] = 101264, + [SMALL_STATE(3584)] = 101322, + [SMALL_STATE(3585)] = 101378, + [SMALL_STATE(3586)] = 101434, + [SMALL_STATE(3587)] = 101490, + [SMALL_STATE(3588)] = 101546, + [SMALL_STATE(3589)] = 101610, + [SMALL_STATE(3590)] = 101666, + [SMALL_STATE(3591)] = 101740, + [SMALL_STATE(3592)] = 101796, + [SMALL_STATE(3593)] = 101852, + [SMALL_STATE(3594)] = 101908, + [SMALL_STATE(3595)] = 101964, + [SMALL_STATE(3596)] = 102020, + [SMALL_STATE(3597)] = 102076, + [SMALL_STATE(3598)] = 102132, + [SMALL_STATE(3599)] = 102188, + [SMALL_STATE(3600)] = 102244, + [SMALL_STATE(3601)] = 102300, + [SMALL_STATE(3602)] = 102356, + [SMALL_STATE(3603)] = 102412, + [SMALL_STATE(3604)] = 102467, + [SMALL_STATE(3605)] = 102522, + [SMALL_STATE(3606)] = 102623, + [SMALL_STATE(3607)] = 102686, + [SMALL_STATE(3608)] = 102753, + [SMALL_STATE(3609)] = 102820, + [SMALL_STATE(3610)] = 102875, + [SMALL_STATE(3611)] = 102930, + [SMALL_STATE(3612)] = 103031, + [SMALL_STATE(3613)] = 103094, + [SMALL_STATE(3614)] = 103157, + [SMALL_STATE(3615)] = 103217, + [SMALL_STATE(3616)] = 103275, + [SMALL_STATE(3617)] = 103333, + [SMALL_STATE(3618)] = 103391, + [SMALL_STATE(3619)] = 103449, + [SMALL_STATE(3620)] = 103507, + [SMALL_STATE(3621)] = 103565, + [SMALL_STATE(3622)] = 103623, + [SMALL_STATE(3623)] = 103681, + [SMALL_STATE(3624)] = 103739, + [SMALL_STATE(3625)] = 103797, + [SMALL_STATE(3626)] = 103855, + [SMALL_STATE(3627)] = 103913, + [SMALL_STATE(3628)] = 103971, + [SMALL_STATE(3629)] = 104069, + [SMALL_STATE(3630)] = 104139, + [SMALL_STATE(3631)] = 104197, + [SMALL_STATE(3632)] = 104257, + [SMALL_STATE(3633)] = 104315, + [SMALL_STATE(3634)] = 104375, + [SMALL_STATE(3635)] = 104433, + [SMALL_STATE(3636)] = 104491, + [SMALL_STATE(3637)] = 104549, + [SMALL_STATE(3638)] = 104607, + [SMALL_STATE(3639)] = 104665, + [SMALL_STATE(3640)] = 104723, + [SMALL_STATE(3641)] = 104781, + [SMALL_STATE(3642)] = 104851, + [SMALL_STATE(3643)] = 104911, + [SMALL_STATE(3644)] = 104969, + [SMALL_STATE(3645)] = 105031, + [SMALL_STATE(3646)] = 105101, + [SMALL_STATE(3647)] = 105171, + [SMALL_STATE(3648)] = 105229, + [SMALL_STATE(3649)] = 105287, + [SMALL_STATE(3650)] = 105340, + [SMALL_STATE(3651)] = 105403, + [SMALL_STATE(3652)] = 105498, + [SMALL_STATE(3653)] = 105551, + [SMALL_STATE(3654)] = 105646, + [SMALL_STATE(3655)] = 105741, + [SMALL_STATE(3656)] = 105794, + [SMALL_STATE(3657)] = 105889, + [SMALL_STATE(3658)] = 105942, + [SMALL_STATE(3659)] = 106037, + [SMALL_STATE(3660)] = 106132, + [SMALL_STATE(3661)] = 106185, + [SMALL_STATE(3662)] = 106284, + [SMALL_STATE(3663)] = 106349, + [SMALL_STATE(3664)] = 106444, + [SMALL_STATE(3665)] = 106539, + [SMALL_STATE(3666)] = 106592, + [SMALL_STATE(3667)] = 106645, + [SMALL_STATE(3668)] = 106740, + [SMALL_STATE(3669)] = 106835, + [SMALL_STATE(3670)] = 106930, + [SMALL_STATE(3671)] = 107025, + [SMALL_STATE(3672)] = 107120, + [SMALL_STATE(3673)] = 107215, + [SMALL_STATE(3674)] = 107310, + [SMALL_STATE(3675)] = 107363, + [SMALL_STATE(3676)] = 107458, + [SMALL_STATE(3677)] = 107553, + [SMALL_STATE(3678)] = 107648, + [SMALL_STATE(3679)] = 107701, + [SMALL_STATE(3680)] = 107754, + [SMALL_STATE(3681)] = 107849, + [SMALL_STATE(3682)] = 107944, + [SMALL_STATE(3683)] = 108039, + [SMALL_STATE(3684)] = 108134, + [SMALL_STATE(3685)] = 108229, + [SMALL_STATE(3686)] = 108282, + [SMALL_STATE(3687)] = 108377, + [SMALL_STATE(3688)] = 108472, + [SMALL_STATE(3689)] = 108567, + [SMALL_STATE(3690)] = 108620, + [SMALL_STATE(3691)] = 108685, + [SMALL_STATE(3692)] = 108738, + [SMALL_STATE(3693)] = 108833, + [SMALL_STATE(3694)] = 108928, + [SMALL_STATE(3695)] = 108981, + [SMALL_STATE(3696)] = 109076, + [SMALL_STATE(3697)] = 109171, + [SMALL_STATE(3698)] = 109266, + [SMALL_STATE(3699)] = 109365, + [SMALL_STATE(3700)] = 109460, + [SMALL_STATE(3701)] = 109555, + [SMALL_STATE(3702)] = 109650, + [SMALL_STATE(3703)] = 109745, + [SMALL_STATE(3704)] = 109840, + [SMALL_STATE(3705)] = 109935, + [SMALL_STATE(3706)] = 110034, + [SMALL_STATE(3707)] = 110129, + [SMALL_STATE(3708)] = 110224, + [SMALL_STATE(3709)] = 110319, + [SMALL_STATE(3710)] = 110414, + [SMALL_STATE(3711)] = 110509, + [SMALL_STATE(3712)] = 110604, + [SMALL_STATE(3713)] = 110663, + [SMALL_STATE(3714)] = 110758, + [SMALL_STATE(3715)] = 110853, + [SMALL_STATE(3716)] = 110948, + [SMALL_STATE(3717)] = 111047, + [SMALL_STATE(3718)] = 111110, + [SMALL_STATE(3719)] = 111205, + [SMALL_STATE(3720)] = 111300, + [SMALL_STATE(3721)] = 111395, + [SMALL_STATE(3722)] = 111490, + [SMALL_STATE(3723)] = 111585, + [SMALL_STATE(3724)] = 111680, + [SMALL_STATE(3725)] = 111735, + [SMALL_STATE(3726)] = 111830, + [SMALL_STATE(3727)] = 111925, + [SMALL_STATE(3728)] = 112020, + [SMALL_STATE(3729)] = 112083, + [SMALL_STATE(3730)] = 112136, + [SMALL_STATE(3731)] = 112231, + [SMALL_STATE(3732)] = 112290, + [SMALL_STATE(3733)] = 112385, + [SMALL_STATE(3734)] = 112442, + [SMALL_STATE(3735)] = 112537, + [SMALL_STATE(3736)] = 112632, + [SMALL_STATE(3737)] = 112685, + [SMALL_STATE(3738)] = 112780, + [SMALL_STATE(3739)] = 112833, + [SMALL_STATE(3740)] = 112886, + [SMALL_STATE(3741)] = 112981, + [SMALL_STATE(3742)] = 113034, + [SMALL_STATE(3743)] = 113087, + [SMALL_STATE(3744)] = 113182, + [SMALL_STATE(3745)] = 113277, + [SMALL_STATE(3746)] = 113372, + [SMALL_STATE(3747)] = 113467, + [SMALL_STATE(3748)] = 113562, + [SMALL_STATE(3749)] = 113657, + [SMALL_STATE(3750)] = 113752, + [SMALL_STATE(3751)] = 113847, + [SMALL_STATE(3752)] = 113942, + [SMALL_STATE(3753)] = 113995, + [SMALL_STATE(3754)] = 114090, + [SMALL_STATE(3755)] = 114185, + [SMALL_STATE(3756)] = 114280, + [SMALL_STATE(3757)] = 114375, + [SMALL_STATE(3758)] = 114470, + [SMALL_STATE(3759)] = 114565, + [SMALL_STATE(3760)] = 114657, + [SMALL_STATE(3761)] = 114749, + [SMALL_STATE(3762)] = 114841, + [SMALL_STATE(3763)] = 114933, + [SMALL_STATE(3764)] = 115025, + [SMALL_STATE(3765)] = 115117, + [SMALL_STATE(3766)] = 115181, + [SMALL_STATE(3767)] = 115239, + [SMALL_STATE(3768)] = 115331, + [SMALL_STATE(3769)] = 115395, + [SMALL_STATE(3770)] = 115487, + [SMALL_STATE(3771)] = 115579, + [SMALL_STATE(3772)] = 115643, + [SMALL_STATE(3773)] = 115707, + [SMALL_STATE(3774)] = 115775, + [SMALL_STATE(3775)] = 115867, + [SMALL_STATE(3776)] = 115935, + [SMALL_STATE(3777)] = 116027, + [SMALL_STATE(3778)] = 116095, + [SMALL_STATE(3779)] = 116163, + [SMALL_STATE(3780)] = 116231, + [SMALL_STATE(3781)] = 116323, + [SMALL_STATE(3782)] = 116415, + [SMALL_STATE(3783)] = 116507, + [SMALL_STATE(3784)] = 116599, + [SMALL_STATE(3785)] = 116657, + [SMALL_STATE(3786)] = 116724, + [SMALL_STATE(3787)] = 116779, + [SMALL_STATE(3788)] = 116864, + [SMALL_STATE(3789)] = 116949, + [SMALL_STATE(3790)] = 117034, + [SMALL_STATE(3791)] = 117119, + [SMALL_STATE(3792)] = 117172, + [SMALL_STATE(3793)] = 117239, + [SMALL_STATE(3794)] = 117324, + [SMALL_STATE(3795)] = 117423, + [SMALL_STATE(3796)] = 117508, + [SMALL_STATE(3797)] = 117593, + [SMALL_STATE(3798)] = 117678, + [SMALL_STATE(3799)] = 117763, + [SMALL_STATE(3800)] = 117830, + [SMALL_STATE(3801)] = 117915, + [SMALL_STATE(3802)] = 118000, + [SMALL_STATE(3803)] = 118085, + [SMALL_STATE(3804)] = 118162, + [SMALL_STATE(3805)] = 118239, + [SMALL_STATE(3806)] = 118324, + [SMALL_STATE(3807)] = 118409, + [SMALL_STATE(3808)] = 118494, + [SMALL_STATE(3809)] = 118579, + [SMALL_STATE(3810)] = 118646, + [SMALL_STATE(3811)] = 118731, + [SMALL_STATE(3812)] = 118830, + [SMALL_STATE(3813)] = 118915, + [SMALL_STATE(3814)] = 118971, + [SMALL_STATE(3815)] = 119021, + [SMALL_STATE(3816)] = 119071, + [SMALL_STATE(3817)] = 119133, + [SMALL_STATE(3818)] = 119191, + [SMALL_STATE(3819)] = 119245, + [SMALL_STATE(3820)] = 119307, + [SMALL_STATE(3821)] = 119359, + [SMALL_STATE(3822)] = 119411, + [SMALL_STATE(3823)] = 119461, + [SMALL_STATE(3824)] = 119517, + [SMALL_STATE(3825)] = 119573, + [SMALL_STATE(3826)] = 119633, + [SMALL_STATE(3827)] = 119683, + [SMALL_STATE(3828)] = 119747, + [SMALL_STATE(3829)] = 119811, + [SMALL_STATE(3830)] = 119871, + [SMALL_STATE(3831)] = 119933, + [SMALL_STATE(3832)] = 119989, + [SMALL_STATE(3833)] = 120045, + [SMALL_STATE(3834)] = 120101, + [SMALL_STATE(3835)] = 120163, + [SMALL_STATE(3836)] = 120227, + [SMALL_STATE(3837)] = 120277, + [SMALL_STATE(3838)] = 120380, + [SMALL_STATE(3839)] = 120429, + [SMALL_STATE(3840)] = 120478, + [SMALL_STATE(3841)] = 120527, + [SMALL_STATE(3842)] = 120576, + [SMALL_STATE(3843)] = 120679, + [SMALL_STATE(3844)] = 120728, + [SMALL_STATE(3845)] = 120777, + [SMALL_STATE(3846)] = 120826, + [SMALL_STATE(3847)] = 120875, + [SMALL_STATE(3848)] = 120924, + [SMALL_STATE(3849)] = 120973, + [SMALL_STATE(3850)] = 121022, + [SMALL_STATE(3851)] = 121125, + [SMALL_STATE(3852)] = 121202, + [SMALL_STATE(3853)] = 121263, + [SMALL_STATE(3854)] = 121312, + [SMALL_STATE(3855)] = 121373, + [SMALL_STATE(3856)] = 121422, + [SMALL_STATE(3857)] = 121475, + [SMALL_STATE(3858)] = 121526, + [SMALL_STATE(3859)] = 121575, + [SMALL_STATE(3860)] = 121678, + [SMALL_STATE(3861)] = 121727, + [SMALL_STATE(3862)] = 121804, + [SMALL_STATE(3863)] = 121853, + [SMALL_STATE(3864)] = 121908, + [SMALL_STATE(3865)] = 121957, + [SMALL_STATE(3866)] = 122006, + [SMALL_STATE(3867)] = 122055, + [SMALL_STATE(3868)] = 122104, + [SMALL_STATE(3869)] = 122153, + [SMALL_STATE(3870)] = 122230, + [SMALL_STATE(3871)] = 122279, + [SMALL_STATE(3872)] = 122328, + [SMALL_STATE(3873)] = 122377, + [SMALL_STATE(3874)] = 122426, + [SMALL_STATE(3875)] = 122475, + [SMALL_STATE(3876)] = 122552, + [SMALL_STATE(3877)] = 122601, + [SMALL_STATE(3878)] = 122694, + [SMALL_STATE(3879)] = 122743, + [SMALL_STATE(3880)] = 122792, + [SMALL_STATE(3881)] = 122841, + [SMALL_STATE(3882)] = 122890, + [SMALL_STATE(3883)] = 122939, + [SMALL_STATE(3884)] = 122988, + [SMALL_STATE(3885)] = 123037, + [SMALL_STATE(3886)] = 123086, + [SMALL_STATE(3887)] = 123135, + [SMALL_STATE(3888)] = 123212, + [SMALL_STATE(3889)] = 123263, + [SMALL_STATE(3890)] = 123312, + [SMALL_STATE(3891)] = 123405, + [SMALL_STATE(3892)] = 123482, + [SMALL_STATE(3893)] = 123531, + [SMALL_STATE(3894)] = 123580, + [SMALL_STATE(3895)] = 123638, + [SMALL_STATE(3896)] = 123732, + [SMALL_STATE(3897)] = 123822, + [SMALL_STATE(3898)] = 123890, + [SMALL_STATE(3899)] = 123980, + [SMALL_STATE(3900)] = 124034, + [SMALL_STATE(3901)] = 124102, + [SMALL_STATE(3902)] = 124170, + [SMALL_STATE(3903)] = 124242, + [SMALL_STATE(3904)] = 124336, + [SMALL_STATE(3905)] = 124390, + [SMALL_STATE(3906)] = 124472, + [SMALL_STATE(3907)] = 124540, + [SMALL_STATE(3908)] = 124616, + [SMALL_STATE(3909)] = 124706, + [SMALL_STATE(3910)] = 124800, + [SMALL_STATE(3911)] = 124858, + [SMALL_STATE(3912)] = 124912, + [SMALL_STATE(3913)] = 124966, + [SMALL_STATE(3914)] = 125016, + [SMALL_STATE(3915)] = 125068, + [SMALL_STATE(3916)] = 125168, + [SMALL_STATE(3917)] = 125222, + [SMALL_STATE(3918)] = 125300, + [SMALL_STATE(3919)] = 125390, + [SMALL_STATE(3920)] = 125460, + [SMALL_STATE(3921)] = 125512, + [SMALL_STATE(3922)] = 125578, + [SMALL_STATE(3923)] = 125666, + [SMALL_STATE(3924)] = 125724, + [SMALL_STATE(3925)] = 125778, + [SMALL_STATE(3926)] = 125850, + [SMALL_STATE(3927)] = 125936, + [SMALL_STATE(3928)] = 126020, + [SMALL_STATE(3929)] = 126109, + [SMALL_STATE(3930)] = 126206, + [SMALL_STATE(3931)] = 126253, + [SMALL_STATE(3932)] = 126300, + [SMALL_STATE(3933)] = 126387, + [SMALL_STATE(3934)] = 126436, + [SMALL_STATE(3935)] = 126525, + [SMALL_STATE(3936)] = 126622, + [SMALL_STATE(3937)] = 126699, + [SMALL_STATE(3938)] = 126796, + [SMALL_STATE(3939)] = 126873, + [SMALL_STATE(3940)] = 126970, + [SMALL_STATE(3941)] = 127067, + [SMALL_STATE(3942)] = 127144, + [SMALL_STATE(3943)] = 127241, + [SMALL_STATE(3944)] = 127338, + [SMALL_STATE(3945)] = 127435, + [SMALL_STATE(3946)] = 127532, + [SMALL_STATE(3947)] = 127579, + [SMALL_STATE(3948)] = 127676, + [SMALL_STATE(3949)] = 127769, + [SMALL_STATE(3950)] = 127844, + [SMALL_STATE(3951)] = 127891, + [SMALL_STATE(3952)] = 127988, + [SMALL_STATE(3953)] = 128085, + [SMALL_STATE(3954)] = 128132, + [SMALL_STATE(3955)] = 128179, + [SMALL_STATE(3956)] = 128232, + [SMALL_STATE(3957)] = 128285, + [SMALL_STATE(3958)] = 128374, + [SMALL_STATE(3959)] = 128461, + [SMALL_STATE(3960)] = 128556, + [SMALL_STATE(3961)] = 128653, + [SMALL_STATE(3962)] = 128750, + [SMALL_STATE(3963)] = 128847, + [SMALL_STATE(3964)] = 128944, + [SMALL_STATE(3965)] = 129041, + [SMALL_STATE(3966)] = 129118, + [SMALL_STATE(3967)] = 129215, + [SMALL_STATE(3968)] = 129264, + [SMALL_STATE(3969)] = 129361, + [SMALL_STATE(3970)] = 129458, + [SMALL_STATE(3971)] = 129555, + [SMALL_STATE(3972)] = 129652, + [SMALL_STATE(3973)] = 129749, + [SMALL_STATE(3974)] = 129846, + [SMALL_STATE(3975)] = 129943, + [SMALL_STATE(3976)] = 130040, + [SMALL_STATE(3977)] = 130137, + [SMALL_STATE(3978)] = 130184, + [SMALL_STATE(3979)] = 130281, + [SMALL_STATE(3980)] = 130328, + [SMALL_STATE(3981)] = 130425, + [SMALL_STATE(3982)] = 130472, + [SMALL_STATE(3983)] = 130521, + [SMALL_STATE(3984)] = 130614, + [SMALL_STATE(3985)] = 130709, + [SMALL_STATE(3986)] = 130756, + [SMALL_STATE(3987)] = 130853, + [SMALL_STATE(3988)] = 130924, + [SMALL_STATE(3989)] = 131021, + [SMALL_STATE(3990)] = 131118, + [SMALL_STATE(3991)] = 131173, + [SMALL_STATE(3992)] = 131270, + [SMALL_STATE(3993)] = 131323, + [SMALL_STATE(3994)] = 131370, + [SMALL_STATE(3995)] = 131417, + [SMALL_STATE(3996)] = 131464, + [SMALL_STATE(3997)] = 131561, + [SMALL_STATE(3998)] = 131636, + [SMALL_STATE(3999)] = 131713, + [SMALL_STATE(4000)] = 131810, + [SMALL_STATE(4001)] = 131907, + [SMALL_STATE(4002)] = 131984, + [SMALL_STATE(4003)] = 132081, + [SMALL_STATE(4004)] = 132178, + [SMALL_STATE(4005)] = 132225, + [SMALL_STATE(4006)] = 132322, + [SMALL_STATE(4007)] = 132369, + [SMALL_STATE(4008)] = 132446, + [SMALL_STATE(4009)] = 132521, + [SMALL_STATE(4010)] = 132618, + [SMALL_STATE(4011)] = 132671, + [SMALL_STATE(4012)] = 132768, + [SMALL_STATE(4013)] = 132837, + [SMALL_STATE(4014)] = 132884, + [SMALL_STATE(4015)] = 132981, + [SMALL_STATE(4016)] = 133048, + [SMALL_STATE(4017)] = 133095, + [SMALL_STATE(4018)] = 133142, + [SMALL_STATE(4019)] = 133235, + [SMALL_STATE(4020)] = 133310, + [SMALL_STATE(4021)] = 133381, + [SMALL_STATE(4022)] = 133456, + [SMALL_STATE(4023)] = 133553, + [SMALL_STATE(4024)] = 133630, + [SMALL_STATE(4025)] = 133711, + [SMALL_STATE(4026)] = 133794, + [SMALL_STATE(4027)] = 133891, + [SMALL_STATE(4028)] = 133988, + [SMALL_STATE(4029)] = 134085, + [SMALL_STATE(4030)] = 134170, + [SMALL_STATE(4031)] = 134267, + [SMALL_STATE(4032)] = 134354, + [SMALL_STATE(4033)] = 134419, + [SMALL_STATE(4034)] = 134470, + [SMALL_STATE(4035)] = 134563, + [SMALL_STATE(4036)] = 134640, + [SMALL_STATE(4037)] = 134729, + [SMALL_STATE(4038)] = 134826, + [SMALL_STATE(4039)] = 134919, + [SMALL_STATE(4040)] = 135016, + [SMALL_STATE(4041)] = 135113, + [SMALL_STATE(4042)] = 135205, + [SMALL_STATE(4043)] = 135279, + [SMALL_STATE(4044)] = 135373, + [SMALL_STATE(4045)] = 135433, + [SMALL_STATE(4046)] = 135525, + [SMALL_STATE(4047)] = 135617, + [SMALL_STATE(4048)] = 135709, + [SMALL_STATE(4049)] = 135783, + [SMALL_STATE(4050)] = 135869, + [SMALL_STATE(4051)] = 135941, + [SMALL_STATE(4052)] = 136015, + [SMALL_STATE(4053)] = 136107, + [SMALL_STATE(4054)] = 136177, + [SMALL_STATE(4055)] = 136265, + [SMALL_STATE(4056)] = 136331, + [SMALL_STATE(4057)] = 136425, + [SMALL_STATE(4058)] = 136519, + [SMALL_STATE(4059)] = 136593, + [SMALL_STATE(4060)] = 136667, + [SMALL_STATE(4061)] = 136739, + [SMALL_STATE(4062)] = 136813, + [SMALL_STATE(4063)] = 136881, + [SMALL_STATE(4064)] = 136975, + [SMALL_STATE(4065)] = 137051, + [SMALL_STATE(4066)] = 137145, + [SMALL_STATE(4067)] = 137225, + [SMALL_STATE(4068)] = 137317, + [SMALL_STATE(4069)] = 137385, + [SMALL_STATE(4070)] = 137479, + [SMALL_STATE(4071)] = 137535, + [SMALL_STATE(4072)] = 137609, + [SMALL_STATE(4073)] = 137683, + [SMALL_STATE(4074)] = 137765, + [SMALL_STATE(4075)] = 137853, + [SMALL_STATE(4076)] = 137937, + [SMALL_STATE(4077)] = 138029, + [SMALL_STATE(4078)] = 138121, + [SMALL_STATE(4079)] = 138209, + [SMALL_STATE(4080)] = 138303, + [SMALL_STATE(4081)] = 138363, + [SMALL_STATE(4082)] = 138431, + [SMALL_STATE(4083)] = 138505, + [SMALL_STATE(4084)] = 138569, + [SMALL_STATE(4085)] = 138643, + [SMALL_STATE(4086)] = 138711, + [SMALL_STATE(4087)] = 138771, + [SMALL_STATE(4088)] = 138845, + [SMALL_STATE(4089)] = 138913, + [SMALL_STATE(4090)] = 139007, + [SMALL_STATE(4091)] = 139075, + [SMALL_STATE(4092)] = 139125, + [SMALL_STATE(4093)] = 139193, + [SMALL_STATE(4094)] = 139285, + [SMALL_STATE(4095)] = 139343, + [SMALL_STATE(4096)] = 139411, + [SMALL_STATE(4097)] = 139497, + [SMALL_STATE(4098)] = 139571, + [SMALL_STATE(4099)] = 139665, + [SMALL_STATE(4100)] = 139759, + [SMALL_STATE(4101)] = 139833, + [SMALL_STATE(4102)] = 139925, + [SMALL_STATE(4103)] = 139999, + [SMALL_STATE(4104)] = 140087, + [SMALL_STATE(4105)] = 140145, + [SMALL_STATE(4106)] = 140215, + [SMALL_STATE(4107)] = 140309, + [SMALL_STATE(4108)] = 140401, + [SMALL_STATE(4109)] = 140495, + [SMALL_STATE(4110)] = 140587, + [SMALL_STATE(4111)] = 140681, + [SMALL_STATE(4112)] = 140731, + [SMALL_STATE(4113)] = 140825, + [SMALL_STATE(4114)] = 140919, + [SMALL_STATE(4115)] = 141013, + [SMALL_STATE(4116)] = 141107, + [SMALL_STATE(4117)] = 141201, + [SMALL_STATE(4118)] = 141275, + [SMALL_STATE(4119)] = 141349, + [SMALL_STATE(4120)] = 141443, + [SMALL_STATE(4121)] = 141517, + [SMALL_STATE(4122)] = 141605, + [SMALL_STATE(4123)] = 141697, + [SMALL_STATE(4124)] = 141743, + [SMALL_STATE(4125)] = 141817, + [SMALL_STATE(4126)] = 141909, + [SMALL_STATE(4127)] = 141957, + [SMALL_STATE(4128)] = 142009, + [SMALL_STATE(4129)] = 142103, + [SMALL_STATE(4130)] = 142197, + [SMALL_STATE(4131)] = 142291, + [SMALL_STATE(4132)] = 142365, + [SMALL_STATE(4133)] = 142413, + [SMALL_STATE(4134)] = 142487, + [SMALL_STATE(4135)] = 142575, + [SMALL_STATE(4136)] = 142669, + [SMALL_STATE(4137)] = 142743, + [SMALL_STATE(4138)] = 142817, + [SMALL_STATE(4139)] = 142891, + [SMALL_STATE(4140)] = 142979, + [SMALL_STATE(4141)] = 143053, + [SMALL_STATE(4142)] = 143145, + [SMALL_STATE(4143)] = 143239, + [SMALL_STATE(4144)] = 143313, + [SMALL_STATE(4145)] = 143405, + [SMALL_STATE(4146)] = 143497, + [SMALL_STATE(4147)] = 143591, + [SMALL_STATE(4148)] = 143659, + [SMALL_STATE(4149)] = 143733, + [SMALL_STATE(4150)] = 143827, + [SMALL_STATE(4151)] = 143919, + [SMALL_STATE(4152)] = 144013, + [SMALL_STATE(4153)] = 144087, + [SMALL_STATE(4154)] = 144179, + [SMALL_STATE(4155)] = 144273, + [SMALL_STATE(4156)] = 144347, + [SMALL_STATE(4157)] = 144441, + [SMALL_STATE(4158)] = 144509, + [SMALL_STATE(4159)] = 144597, + [SMALL_STATE(4160)] = 144691, + [SMALL_STATE(4161)] = 144759, + [SMALL_STATE(4162)] = 144853, + [SMALL_STATE(4163)] = 144947, + [SMALL_STATE(4164)] = 145039, + [SMALL_STATE(4165)] = 145105, + [SMALL_STATE(4166)] = 145175, + [SMALL_STATE(4167)] = 145249, + [SMALL_STATE(4168)] = 145323, + [SMALL_STATE(4169)] = 145391, + [SMALL_STATE(4170)] = 145455, + [SMALL_STATE(4171)] = 145529, + [SMALL_STATE(4172)] = 145623, + [SMALL_STATE(4173)] = 145717, + [SMALL_STATE(4174)] = 145803, + [SMALL_STATE(4175)] = 145877, + [SMALL_STATE(4176)] = 145953, + [SMALL_STATE(4177)] = 146033, + [SMALL_STATE(4178)] = 146101, + [SMALL_STATE(4179)] = 146185, + [SMALL_STATE(4180)] = 146267, + [SMALL_STATE(4181)] = 146358, + [SMALL_STATE(4182)] = 146449, + [SMALL_STATE(4183)] = 146540, + [SMALL_STATE(4184)] = 146631, + [SMALL_STATE(4185)] = 146722, + [SMALL_STATE(4186)] = 146813, + [SMALL_STATE(4187)] = 146886, + [SMALL_STATE(4188)] = 146977, + [SMALL_STATE(4189)] = 147068, + [SMALL_STATE(4190)] = 147141, + [SMALL_STATE(4191)] = 147232, + [SMALL_STATE(4192)] = 147323, + [SMALL_STATE(4193)] = 147414, + [SMALL_STATE(4194)] = 147505, + [SMALL_STATE(4195)] = 147552, + [SMALL_STATE(4196)] = 147643, + [SMALL_STATE(4197)] = 147700, + [SMALL_STATE(4198)] = 147791, + [SMALL_STATE(4199)] = 147882, + [SMALL_STATE(4200)] = 147973, + [SMALL_STATE(4201)] = 148060, + [SMALL_STATE(4202)] = 148151, + [SMALL_STATE(4203)] = 148242, + [SMALL_STATE(4204)] = 148333, + [SMALL_STATE(4205)] = 148424, + [SMALL_STATE(4206)] = 148491, + [SMALL_STATE(4207)] = 148582, + [SMALL_STATE(4208)] = 148627, + [SMALL_STATE(4209)] = 148718, + [SMALL_STATE(4210)] = 148809, + [SMALL_STATE(4211)] = 148868, + [SMALL_STATE(4212)] = 148959, + [SMALL_STATE(4213)] = 149050, + [SMALL_STATE(4214)] = 149095, + [SMALL_STATE(4215)] = 149186, + [SMALL_STATE(4216)] = 149277, + [SMALL_STATE(4217)] = 149368, + [SMALL_STATE(4218)] = 149459, + [SMALL_STATE(4219)] = 149550, + [SMALL_STATE(4220)] = 149641, + [SMALL_STATE(4221)] = 149732, + [SMALL_STATE(4222)] = 149823, + [SMALL_STATE(4223)] = 149914, + [SMALL_STATE(4224)] = 149977, + [SMALL_STATE(4225)] = 150068, + [SMALL_STATE(4226)] = 150119, + [SMALL_STATE(4227)] = 150210, + [SMALL_STATE(4228)] = 150301, + [SMALL_STATE(4229)] = 150392, + [SMALL_STATE(4230)] = 150483, + [SMALL_STATE(4231)] = 150564, + [SMALL_STATE(4232)] = 150655, + [SMALL_STATE(4233)] = 150746, + [SMALL_STATE(4234)] = 150837, + [SMALL_STATE(4235)] = 150896, + [SMALL_STATE(4236)] = 150965, + [SMALL_STATE(4237)] = 151056, + [SMALL_STATE(4238)] = 151107, + [SMALL_STATE(4239)] = 151164, + [SMALL_STATE(4240)] = 151237, + [SMALL_STATE(4241)] = 151328, + [SMALL_STATE(4242)] = 151419, + [SMALL_STATE(4243)] = 151510, + [SMALL_STATE(4244)] = 151601, + [SMALL_STATE(4245)] = 151692, + [SMALL_STATE(4246)] = 151783, + [SMALL_STATE(4247)] = 151874, + [SMALL_STATE(4248)] = 151965, + [SMALL_STATE(4249)] = 152056, + [SMALL_STATE(4250)] = 152147, + [SMALL_STATE(4251)] = 152238, + [SMALL_STATE(4252)] = 152283, + [SMALL_STATE(4253)] = 152374, + [SMALL_STATE(4254)] = 152465, + [SMALL_STATE(4255)] = 152556, + [SMALL_STATE(4256)] = 152647, + [SMALL_STATE(4257)] = 152738, + [SMALL_STATE(4258)] = 152829, + [SMALL_STATE(4259)] = 152902, + [SMALL_STATE(4260)] = 152993, + [SMALL_STATE(4261)] = 153084, + [SMALL_STATE(4262)] = 153129, + [SMALL_STATE(4263)] = 153174, + [SMALL_STATE(4264)] = 153259, + [SMALL_STATE(4265)] = 153350, + [SMALL_STATE(4266)] = 153441, + [SMALL_STATE(4267)] = 153532, + [SMALL_STATE(4268)] = 153623, + [SMALL_STATE(4269)] = 153682, + [SMALL_STATE(4270)] = 153773, + [SMALL_STATE(4271)] = 153864, + [SMALL_STATE(4272)] = 153951, + [SMALL_STATE(4273)] = 154038, + [SMALL_STATE(4274)] = 154111, + [SMALL_STATE(4275)] = 154194, + [SMALL_STATE(4276)] = 154285, + [SMALL_STATE(4277)] = 154376, + [SMALL_STATE(4278)] = 154467, + [SMALL_STATE(4279)] = 154558, + [SMALL_STATE(4280)] = 154649, + [SMALL_STATE(4281)] = 154740, + [SMALL_STATE(4282)] = 154831, + [SMALL_STATE(4283)] = 154922, + [SMALL_STATE(4284)] = 155013, + [SMALL_STATE(4285)] = 155104, + [SMALL_STATE(4286)] = 155195, + [SMALL_STATE(4287)] = 155286, + [SMALL_STATE(4288)] = 155377, + [SMALL_STATE(4289)] = 155422, + [SMALL_STATE(4290)] = 155513, + [SMALL_STATE(4291)] = 155604, + [SMALL_STATE(4292)] = 155695, + [SMALL_STATE(4293)] = 155786, + [SMALL_STATE(4294)] = 155877, + [SMALL_STATE(4295)] = 155968, + [SMALL_STATE(4296)] = 156059, + [SMALL_STATE(4297)] = 156150, + [SMALL_STATE(4298)] = 156241, + [SMALL_STATE(4299)] = 156332, + [SMALL_STATE(4300)] = 156423, + [SMALL_STATE(4301)] = 156514, + [SMALL_STATE(4302)] = 156605, + [SMALL_STATE(4303)] = 156684, + [SMALL_STATE(4304)] = 156775, + [SMALL_STATE(4305)] = 156866, + [SMALL_STATE(4306)] = 156957, + [SMALL_STATE(4307)] = 157048, + [SMALL_STATE(4308)] = 157139, + [SMALL_STATE(4309)] = 157230, + [SMALL_STATE(4310)] = 157321, + [SMALL_STATE(4311)] = 157412, + [SMALL_STATE(4312)] = 157503, + [SMALL_STATE(4313)] = 157594, + [SMALL_STATE(4314)] = 157685, + [SMALL_STATE(4315)] = 157776, + [SMALL_STATE(4316)] = 157851, + [SMALL_STATE(4317)] = 157942, + [SMALL_STATE(4318)] = 158007, + [SMALL_STATE(4319)] = 158098, + [SMALL_STATE(4320)] = 158189, + [SMALL_STATE(4321)] = 158280, + [SMALL_STATE(4322)] = 158371, + [SMALL_STATE(4323)] = 158462, + [SMALL_STATE(4324)] = 158553, + [SMALL_STATE(4325)] = 158610, + [SMALL_STATE(4326)] = 158679, + [SMALL_STATE(4327)] = 158770, + [SMALL_STATE(4328)] = 158861, + [SMALL_STATE(4329)] = 158948, + [SMALL_STATE(4330)] = 159005, + [SMALL_STATE(4331)] = 159096, + [SMALL_STATE(4332)] = 159187, + [SMALL_STATE(4333)] = 159278, + [SMALL_STATE(4334)] = 159322, + [SMALL_STATE(4335)] = 159366, + [SMALL_STATE(4336)] = 159410, + [SMALL_STATE(4337)] = 159454, + [SMALL_STATE(4338)] = 159498, + [SMALL_STATE(4339)] = 159570, + [SMALL_STATE(4340)] = 159614, + [SMALL_STATE(4341)] = 159658, + [SMALL_STATE(4342)] = 159708, + [SMALL_STATE(4343)] = 159752, + [SMALL_STATE(4344)] = 159818, + [SMALL_STATE(4345)] = 159866, + [SMALL_STATE(4346)] = 159932, + [SMALL_STATE(4347)] = 159976, + [SMALL_STATE(4348)] = 160020, + [SMALL_STATE(4349)] = 160064, + [SMALL_STATE(4350)] = 160108, + [SMALL_STATE(4351)] = 160158, + [SMALL_STATE(4352)] = 160202, + [SMALL_STATE(4353)] = 160246, + [SMALL_STATE(4354)] = 160290, + [SMALL_STATE(4355)] = 160334, + [SMALL_STATE(4356)] = 160406, + [SMALL_STATE(4357)] = 160450, + [SMALL_STATE(4358)] = 160494, + [SMALL_STATE(4359)] = 160538, + [SMALL_STATE(4360)] = 160582, + [SMALL_STATE(4361)] = 160626, + [SMALL_STATE(4362)] = 160686, + [SMALL_STATE(4363)] = 160734, + [SMALL_STATE(4364)] = 160778, + [SMALL_STATE(4365)] = 160822, + [SMALL_STATE(4366)] = 160866, + [SMALL_STATE(4367)] = 160910, + [SMALL_STATE(4368)] = 160976, + [SMALL_STATE(4369)] = 161020, + [SMALL_STATE(4370)] = 161064, + [SMALL_STATE(4371)] = 161108, + [SMALL_STATE(4372)] = 161174, + [SMALL_STATE(4373)] = 161218, + [SMALL_STATE(4374)] = 161264, + [SMALL_STATE(4375)] = 161330, + [SMALL_STATE(4376)] = 161374, + [SMALL_STATE(4377)] = 161418, + [SMALL_STATE(4378)] = 161462, + [SMALL_STATE(4379)] = 161506, + [SMALL_STATE(4380)] = 161572, + [SMALL_STATE(4381)] = 161616, + [SMALL_STATE(4382)] = 161660, + [SMALL_STATE(4383)] = 161748, + [SMALL_STATE(4384)] = 161792, + [SMALL_STATE(4385)] = 161836, + [SMALL_STATE(4386)] = 161880, + [SMALL_STATE(4387)] = 161946, + [SMALL_STATE(4388)] = 162012, + [SMALL_STATE(4389)] = 162083, + [SMALL_STATE(4390)] = 162126, + [SMALL_STATE(4391)] = 162207, + [SMALL_STATE(4392)] = 162278, + [SMALL_STATE(4393)] = 162323, + [SMALL_STATE(4394)] = 162404, + [SMALL_STATE(4395)] = 162447, + [SMALL_STATE(4396)] = 162512, + [SMALL_STATE(4397)] = 162555, + [SMALL_STATE(4398)] = 162620, + [SMALL_STATE(4399)] = 162685, + [SMALL_STATE(4400)] = 162728, + [SMALL_STATE(4401)] = 162793, + [SMALL_STATE(4402)] = 162848, + [SMALL_STATE(4403)] = 162897, + [SMALL_STATE(4404)] = 162952, + [SMALL_STATE(4405)] = 162995, + [SMALL_STATE(4406)] = 163045, + [SMALL_STATE(4407)] = 163109, + [SMALL_STATE(4408)] = 163173, + [SMALL_STATE(4409)] = 163221, + [SMALL_STATE(4410)] = 163285, + [SMALL_STATE(4411)] = 163331, + [SMALL_STATE(4412)] = 163395, + [SMALL_STATE(4413)] = 163441, + [SMALL_STATE(4414)] = 163489, + [SMALL_STATE(4415)] = 163539, + [SMALL_STATE(4416)] = 163587, + [SMALL_STATE(4417)] = 163651, + [SMALL_STATE(4418)] = 163731, + [SMALL_STATE(4419)] = 163779, + [SMALL_STATE(4420)] = 163827, + [SMALL_STATE(4421)] = 163907, + [SMALL_STATE(4422)] = 163971, + [SMALL_STATE(4423)] = 164051, + [SMALL_STATE(4424)] = 164099, + [SMALL_STATE(4425)] = 164179, + [SMALL_STATE(4426)] = 164227, + [SMALL_STATE(4427)] = 164307, + [SMALL_STATE(4428)] = 164387, + [SMALL_STATE(4429)] = 164467, + [SMALL_STATE(4430)] = 164531, + [SMALL_STATE(4431)] = 164601, + [SMALL_STATE(4432)] = 164671, + [SMALL_STATE(4433)] = 164735, + [SMALL_STATE(4434)] = 164815, + [SMALL_STATE(4435)] = 164899, + [SMALL_STATE(4436)] = 164947, + [SMALL_STATE(4437)] = 164997, + [SMALL_STATE(4438)] = 165042, + [SMALL_STATE(4439)] = 165087, + [SMALL_STATE(4440)] = 165132, + [SMALL_STATE(4441)] = 165201, + [SMALL_STATE(4442)] = 165280, + [SMALL_STATE(4443)] = 165359, + [SMALL_STATE(4444)] = 165448, + [SMALL_STATE(4445)] = 165527, + [SMALL_STATE(4446)] = 165572, + [SMALL_STATE(4447)] = 165617, + [SMALL_STATE(4448)] = 165696, + [SMALL_STATE(4449)] = 165741, + [SMALL_STATE(4450)] = 165810, + [SMALL_STATE(4451)] = 165857, + [SMALL_STATE(4452)] = 165936, + [SMALL_STATE(4453)] = 165999, + [SMALL_STATE(4454)] = 166062, + [SMALL_STATE(4455)] = 166103, + [SMALL_STATE(4456)] = 166166, + [SMALL_STATE(4457)] = 166211, + [SMALL_STATE(4458)] = 166280, + [SMALL_STATE(4459)] = 166325, + [SMALL_STATE(4460)] = 166388, + [SMALL_STATE(4461)] = 166433, + [SMALL_STATE(4462)] = 166478, + [SMALL_STATE(4463)] = 166523, + [SMALL_STATE(4464)] = 166592, + [SMALL_STATE(4465)] = 166637, + [SMALL_STATE(4466)] = 166716, + [SMALL_STATE(4467)] = 166756, + [SMALL_STATE(4468)] = 166796, + [SMALL_STATE(4469)] = 166838, + [SMALL_STATE(4470)] = 166886, + [SMALL_STATE(4471)] = 166926, + [SMALL_STATE(4472)] = 166966, + [SMALL_STATE(4473)] = 167046, + [SMALL_STATE(4474)] = 167086, + [SMALL_STATE(4475)] = 167130, + [SMALL_STATE(4476)] = 167170, + [SMALL_STATE(4477)] = 167250, + [SMALL_STATE(4478)] = 167330, + [SMALL_STATE(4479)] = 167370, + [SMALL_STATE(4480)] = 167410, + [SMALL_STATE(4481)] = 167450, + [SMALL_STATE(4482)] = 167490, + [SMALL_STATE(4483)] = 167532, + [SMALL_STATE(4484)] = 167572, + [SMALL_STATE(4485)] = 167612, + [SMALL_STATE(4486)] = 167652, + [SMALL_STATE(4487)] = 167692, + [SMALL_STATE(4488)] = 167732, + [SMALL_STATE(4489)] = 167772, + [SMALL_STATE(4490)] = 167852, + [SMALL_STATE(4491)] = 167892, + [SMALL_STATE(4492)] = 167932, + [SMALL_STATE(4493)] = 167988, + [SMALL_STATE(4494)] = 168028, + [SMALL_STATE(4495)] = 168108, + [SMALL_STATE(4496)] = 168148, + [SMALL_STATE(4497)] = 168220, + [SMALL_STATE(4498)] = 168300, + [SMALL_STATE(4499)] = 168362, + [SMALL_STATE(4500)] = 168402, + [SMALL_STATE(4501)] = 168442, + [SMALL_STATE(4502)] = 168482, + [SMALL_STATE(4503)] = 168554, + [SMALL_STATE(4504)] = 168616, + [SMALL_STATE(4505)] = 168678, + [SMALL_STATE(4506)] = 168718, + [SMALL_STATE(4507)] = 168790, + [SMALL_STATE(4508)] = 168830, + [SMALL_STATE(4509)] = 168910, + [SMALL_STATE(4510)] = 168950, + [SMALL_STATE(4511)] = 168990, + [SMALL_STATE(4512)] = 169030, + [SMALL_STATE(4513)] = 169072, + [SMALL_STATE(4514)] = 169112, + [SMALL_STATE(4515)] = 169152, + [SMALL_STATE(4516)] = 169192, + [SMALL_STATE(4517)] = 169232, + [SMALL_STATE(4518)] = 169272, + [SMALL_STATE(4519)] = 169312, + [SMALL_STATE(4520)] = 169354, + [SMALL_STATE(4521)] = 169434, + [SMALL_STATE(4522)] = 169474, + [SMALL_STATE(4523)] = 169554, + [SMALL_STATE(4524)] = 169594, + [SMALL_STATE(4525)] = 169674, + [SMALL_STATE(4526)] = 169714, + [SMALL_STATE(4527)] = 169794, + [SMALL_STATE(4528)] = 169834, + [SMALL_STATE(4529)] = 169874, + [SMALL_STATE(4530)] = 169914, + [SMALL_STATE(4531)] = 169992, + [SMALL_STATE(4532)] = 170070, + [SMALL_STATE(4533)] = 170150, + [SMALL_STATE(4534)] = 170190, + [SMALL_STATE(4535)] = 170230, + [SMALL_STATE(4536)] = 170270, + [SMALL_STATE(4537)] = 170310, + [SMALL_STATE(4538)] = 170350, + [SMALL_STATE(4539)] = 170390, + [SMALL_STATE(4540)] = 170430, + [SMALL_STATE(4541)] = 170486, + [SMALL_STATE(4542)] = 170548, + [SMALL_STATE(4543)] = 170628, + [SMALL_STATE(4544)] = 170668, + [SMALL_STATE(4545)] = 170748, + [SMALL_STATE(4546)] = 170788, + [SMALL_STATE(4547)] = 170860, + [SMALL_STATE(4548)] = 170931, + [SMALL_STATE(4549)] = 170998, + [SMALL_STATE(4550)] = 171049, + [SMALL_STATE(4551)] = 171122, + [SMALL_STATE(4552)] = 171193, + [SMALL_STATE(4553)] = 171266, + [SMALL_STATE(4554)] = 171333, + [SMALL_STATE(4555)] = 171384, + [SMALL_STATE(4556)] = 171445, + [SMALL_STATE(4557)] = 171506, + [SMALL_STATE(4558)] = 171579, + [SMALL_STATE(4559)] = 171652, + [SMALL_STATE(4560)] = 171703, + [SMALL_STATE(4561)] = 171774, + [SMALL_STATE(4562)] = 171847, + [SMALL_STATE(4563)] = 171908, + [SMALL_STATE(4564)] = 171979, + [SMALL_STATE(4565)] = 172052, + [SMALL_STATE(4566)] = 172123, + [SMALL_STATE(4567)] = 172194, + [SMALL_STATE(4568)] = 172267, + [SMALL_STATE(4569)] = 172312, + [SMALL_STATE(4570)] = 172383, + [SMALL_STATE(4571)] = 172444, + [SMALL_STATE(4572)] = 172517, + [SMALL_STATE(4573)] = 172578, + [SMALL_STATE(4574)] = 172651, + [SMALL_STATE(4575)] = 172724, + [SMALL_STATE(4576)] = 172785, + [SMALL_STATE(4577)] = 172836, + [SMALL_STATE(4578)] = 172887, + [SMALL_STATE(4579)] = 172960, + [SMALL_STATE(4580)] = 172999, + [SMALL_STATE(4581)] = 173070, + [SMALL_STATE(4582)] = 173141, + [SMALL_STATE(4583)] = 173202, + [SMALL_STATE(4584)] = 173263, + [SMALL_STATE(4585)] = 173334, + [SMALL_STATE(4586)] = 173405, + [SMALL_STATE(4587)] = 173466, + [SMALL_STATE(4588)] = 173537, + [SMALL_STATE(4589)] = 173608, + [SMALL_STATE(4590)] = 173679, + [SMALL_STATE(4591)] = 173752, + [SMALL_STATE(4592)] = 173803, + [SMALL_STATE(4593)] = 173876, + [SMALL_STATE(4594)] = 173937, + [SMALL_STATE(4595)] = 173982, + [SMALL_STATE(4596)] = 174043, + [SMALL_STATE(4597)] = 174114, + [SMALL_STATE(4598)] = 174185, + [SMALL_STATE(4599)] = 174258, + [SMALL_STATE(4600)] = 174319, + [SMALL_STATE(4601)] = 174392, + [SMALL_STATE(4602)] = 174465, + [SMALL_STATE(4603)] = 174538, + [SMALL_STATE(4604)] = 174614, + [SMALL_STATE(4605)] = 174688, + [SMALL_STATE(4606)] = 174762, + [SMALL_STATE(4607)] = 174820, + [SMALL_STATE(4608)] = 174890, + [SMALL_STATE(4609)] = 174934, + [SMALL_STATE(4610)] = 175008, + [SMALL_STATE(4611)] = 175082, + [SMALL_STATE(4612)] = 175140, + [SMALL_STATE(4613)] = 175214, + [SMALL_STATE(4614)] = 175272, + [SMALL_STATE(4615)] = 175346, + [SMALL_STATE(4616)] = 175420, + [SMALL_STATE(4617)] = 175494, + [SMALL_STATE(4618)] = 175568, + [SMALL_STATE(4619)] = 175642, + [SMALL_STATE(4620)] = 175700, + [SMALL_STATE(4621)] = 175770, + [SMALL_STATE(4622)] = 175828, + [SMALL_STATE(4623)] = 175898, + [SMALL_STATE(4624)] = 175968, + [SMALL_STATE(4625)] = 176026, + [SMALL_STATE(4626)] = 176096, + [SMALL_STATE(4627)] = 176166, + [SMALL_STATE(4628)] = 176224, + [SMALL_STATE(4629)] = 176294, + [SMALL_STATE(4630)] = 176368, + [SMALL_STATE(4631)] = 176442, + [SMALL_STATE(4632)] = 176502, + [SMALL_STATE(4633)] = 176576, + [SMALL_STATE(4634)] = 176636, + [SMALL_STATE(4635)] = 176696, + [SMALL_STATE(4636)] = 176754, + [SMALL_STATE(4637)] = 176812, + [SMALL_STATE(4638)] = 176886, + [SMALL_STATE(4639)] = 176962, + [SMALL_STATE(4640)] = 177038, + [SMALL_STATE(4641)] = 177108, + [SMALL_STATE(4642)] = 177182, + [SMALL_STATE(4643)] = 177252, + [SMALL_STATE(4644)] = 177326, + [SMALL_STATE(4645)] = 177400, + [SMALL_STATE(4646)] = 177460, + [SMALL_STATE(4647)] = 177518, + [SMALL_STATE(4648)] = 177592, + [SMALL_STATE(4649)] = 177662, + [SMALL_STATE(4650)] = 177736, + [SMALL_STATE(4651)] = 177794, + [SMALL_STATE(4652)] = 177868, + [SMALL_STATE(4653)] = 177942, + [SMALL_STATE(4654)] = 178000, + [SMALL_STATE(4655)] = 178070, + [SMALL_STATE(4656)] = 178144, + [SMALL_STATE(4657)] = 178202, + [SMALL_STATE(4658)] = 178276, + [SMALL_STATE(4659)] = 178334, + [SMALL_STATE(4660)] = 178392, + [SMALL_STATE(4661)] = 178466, + [SMALL_STATE(4662)] = 178540, + [SMALL_STATE(4663)] = 178598, + [SMALL_STATE(4664)] = 178672, + [SMALL_STATE(4665)] = 178730, + [SMALL_STATE(4666)] = 178790, + [SMALL_STATE(4667)] = 178860, + [SMALL_STATE(4668)] = 178918, + [SMALL_STATE(4669)] = 178978, + [SMALL_STATE(4670)] = 179048, + [SMALL_STATE(4671)] = 179106, + [SMALL_STATE(4672)] = 179180, + [SMALL_STATE(4673)] = 179254, + [SMALL_STATE(4674)] = 179312, + [SMALL_STATE(4675)] = 179386, + [SMALL_STATE(4676)] = 179446, + [SMALL_STATE(4677)] = 179506, + [SMALL_STATE(4678)] = 179582, + [SMALL_STATE(4679)] = 179640, + [SMALL_STATE(4680)] = 179714, + [SMALL_STATE(4681)] = 179788, + [SMALL_STATE(4682)] = 179862, + [SMALL_STATE(4683)] = 179906, + [SMALL_STATE(4684)] = 179980, + [SMALL_STATE(4685)] = 180029, + [SMALL_STATE(4686)] = 180108, + [SMALL_STATE(4687)] = 180177, + [SMALL_STATE(4688)] = 180246, + [SMALL_STATE(4689)] = 180325, + [SMALL_STATE(4690)] = 180404, + [SMALL_STATE(4691)] = 180483, + [SMALL_STATE(4692)] = 180562, + [SMALL_STATE(4693)] = 180641, + [SMALL_STATE(4694)] = 180720, + [SMALL_STATE(4695)] = 180799, + [SMALL_STATE(4696)] = 180878, + [SMALL_STATE(4697)] = 180957, + [SMALL_STATE(4698)] = 181036, + [SMALL_STATE(4699)] = 181103, + [SMALL_STATE(4700)] = 181182, + [SMALL_STATE(4701)] = 181227, + [SMALL_STATE(4702)] = 181306, + [SMALL_STATE(4703)] = 181385, + [SMALL_STATE(4704)] = 181464, + [SMALL_STATE(4705)] = 181543, + [SMALL_STATE(4706)] = 181622, + [SMALL_STATE(4707)] = 181663, + [SMALL_STATE(4708)] = 181730, + [SMALL_STATE(4709)] = 181809, + [SMALL_STATE(4710)] = 181888, + [SMALL_STATE(4711)] = 181955, + [SMALL_STATE(4712)] = 182034, + [SMALL_STATE(4713)] = 182083, + [SMALL_STATE(4714)] = 182162, + [SMALL_STATE(4715)] = 182241, + [SMALL_STATE(4716)] = 182320, + [SMALL_STATE(4717)] = 182387, + [SMALL_STATE(4718)] = 182454, + [SMALL_STATE(4719)] = 182533, + [SMALL_STATE(4720)] = 182612, + [SMALL_STATE(4721)] = 182679, + [SMALL_STATE(4722)] = 182758, + [SMALL_STATE(4723)] = 182837, + [SMALL_STATE(4724)] = 182916, + [SMALL_STATE(4725)] = 182995, + [SMALL_STATE(4726)] = 183040, + [SMALL_STATE(4727)] = 183119, + [SMALL_STATE(4728)] = 183186, + [SMALL_STATE(4729)] = 183265, + [SMALL_STATE(4730)] = 183344, + [SMALL_STATE(4731)] = 183411, + [SMALL_STATE(4732)] = 183490, + [SMALL_STATE(4733)] = 183559, + [SMALL_STATE(4734)] = 183626, + [SMALL_STATE(4735)] = 183693, + [SMALL_STATE(4736)] = 183772, + [SMALL_STATE(4737)] = 183841, + [SMALL_STATE(4738)] = 183920, + [SMALL_STATE(4739)] = 183999, + [SMALL_STATE(4740)] = 184078, + [SMALL_STATE(4741)] = 184157, + [SMALL_STATE(4742)] = 184236, + [SMALL_STATE(4743)] = 184273, + [SMALL_STATE(4744)] = 184352, + [SMALL_STATE(4745)] = 184419, + [SMALL_STATE(4746)] = 184498, + [SMALL_STATE(4747)] = 184565, + [SMALL_STATE(4748)] = 184644, + [SMALL_STATE(4749)] = 184711, + [SMALL_STATE(4750)] = 184790, + [SMALL_STATE(4751)] = 184869, + [SMALL_STATE(4752)] = 184948, + [SMALL_STATE(4753)] = 185015, + [SMALL_STATE(4754)] = 185094, + [SMALL_STATE(4755)] = 185173, + [SMALL_STATE(4756)] = 185240, + [SMALL_STATE(4757)] = 185319, + [SMALL_STATE(4758)] = 185364, + [SMALL_STATE(4759)] = 185443, + [SMALL_STATE(4760)] = 185510, + [SMALL_STATE(4761)] = 185589, + [SMALL_STATE(4762)] = 185668, + [SMALL_STATE(4763)] = 185747, + [SMALL_STATE(4764)] = 185826, + [SMALL_STATE(4765)] = 185905, + [SMALL_STATE(4766)] = 185984, + [SMALL_STATE(4767)] = 186063, + [SMALL_STATE(4768)] = 186142, + [SMALL_STATE(4769)] = 186179, + [SMALL_STATE(4770)] = 186258, + [SMALL_STATE(4771)] = 186337, + [SMALL_STATE(4772)] = 186386, + [SMALL_STATE(4773)] = 186453, + [SMALL_STATE(4774)] = 186532, + [SMALL_STATE(4775)] = 186611, + [SMALL_STATE(4776)] = 186678, + [SMALL_STATE(4777)] = 186745, + [SMALL_STATE(4778)] = 186788, + [SMALL_STATE(4779)] = 186855, + [SMALL_STATE(4780)] = 186934, + [SMALL_STATE(4781)] = 187001, + [SMALL_STATE(4782)] = 187080, + [SMALL_STATE(4783)] = 187147, + [SMALL_STATE(4784)] = 187226, + [SMALL_STATE(4785)] = 187305, + [SMALL_STATE(4786)] = 187384, + [SMALL_STATE(4787)] = 187463, + [SMALL_STATE(4788)] = 187542, + [SMALL_STATE(4789)] = 187621, + [SMALL_STATE(4790)] = 187670, + [SMALL_STATE(4791)] = 187749, + [SMALL_STATE(4792)] = 187828, + [SMALL_STATE(4793)] = 187907, + [SMALL_STATE(4794)] = 187974, + [SMALL_STATE(4795)] = 188053, + [SMALL_STATE(4796)] = 188132, + [SMALL_STATE(4797)] = 188211, + [SMALL_STATE(4798)] = 188290, + [SMALL_STATE(4799)] = 188369, + [SMALL_STATE(4800)] = 188448, + [SMALL_STATE(4801)] = 188488, + [SMALL_STATE(4802)] = 188528, + [SMALL_STATE(4803)] = 188568, + [SMALL_STATE(4804)] = 188608, + [SMALL_STATE(4805)] = 188684, + [SMALL_STATE(4806)] = 188724, + [SMALL_STATE(4807)] = 188764, + [SMALL_STATE(4808)] = 188822, + [SMALL_STATE(4809)] = 188862, + [SMALL_STATE(4810)] = 188938, + [SMALL_STATE(4811)] = 188996, + [SMALL_STATE(4812)] = 189072, + [SMALL_STATE(4813)] = 189148, + [SMALL_STATE(4814)] = 189224, + [SMALL_STATE(4815)] = 189264, + [SMALL_STATE(4816)] = 189340, + [SMALL_STATE(4817)] = 189382, + [SMALL_STATE(4818)] = 189458, + [SMALL_STATE(4819)] = 189534, + [SMALL_STATE(4820)] = 189574, + [SMALL_STATE(4821)] = 189632, + [SMALL_STATE(4822)] = 189708, + [SMALL_STATE(4823)] = 189784, + [SMALL_STATE(4824)] = 189824, + [SMALL_STATE(4825)] = 189900, + [SMALL_STATE(4826)] = 189958, + [SMALL_STATE(4827)] = 190034, + [SMALL_STATE(4828)] = 190110, + [SMALL_STATE(4829)] = 190186, + [SMALL_STATE(4830)] = 190262, + [SMALL_STATE(4831)] = 190338, + [SMALL_STATE(4832)] = 190378, + [SMALL_STATE(4833)] = 190418, + [SMALL_STATE(4834)] = 190458, + [SMALL_STATE(4835)] = 190534, + [SMALL_STATE(4836)] = 190571, + [SMALL_STATE(4837)] = 190606, + [SMALL_STATE(4838)] = 190673, + [SMALL_STATE(4839)] = 190740, + [SMALL_STATE(4840)] = 190801, + [SMALL_STATE(4841)] = 190868, + [SMALL_STATE(4842)] = 190903, + [SMALL_STATE(4843)] = 190964, + [SMALL_STATE(4844)] = 191031, + [SMALL_STATE(4845)] = 191074, + [SMALL_STATE(4846)] = 191135, + [SMALL_STATE(4847)] = 191202, + [SMALL_STATE(4848)] = 191269, + [SMALL_STATE(4849)] = 191304, + [SMALL_STATE(4850)] = 191365, + [SMALL_STATE(4851)] = 191400, + [SMALL_STATE(4852)] = 191435, + [SMALL_STATE(4853)] = 191470, + [SMALL_STATE(4854)] = 191531, + [SMALL_STATE(4855)] = 191572, + [SMALL_STATE(4856)] = 191607, + [SMALL_STATE(4857)] = 191642, + [SMALL_STATE(4858)] = 191677, + [SMALL_STATE(4859)] = 191744, + [SMALL_STATE(4860)] = 191805, + [SMALL_STATE(4861)] = 191840, + [SMALL_STATE(4862)] = 191907, + [SMALL_STATE(4863)] = 191950, + [SMALL_STATE(4864)] = 191984, + [SMALL_STATE(4865)] = 192018, + [SMALL_STATE(4866)] = 192052, + [SMALL_STATE(4867)] = 192086, + [SMALL_STATE(4868)] = 192146, + [SMALL_STATE(4869)] = 192180, + [SMALL_STATE(4870)] = 192240, + [SMALL_STATE(4871)] = 192274, + [SMALL_STATE(4872)] = 192334, + [SMALL_STATE(4873)] = 192368, + [SMALL_STATE(4874)] = 192402, + [SMALL_STATE(4875)] = 192436, + [SMALL_STATE(4876)] = 192470, + [SMALL_STATE(4877)] = 192530, + [SMALL_STATE(4878)] = 192590, + [SMALL_STATE(4879)] = 192650, + [SMALL_STATE(4880)] = 192710, + [SMALL_STATE(4881)] = 192750, + [SMALL_STATE(4882)] = 192810, + [SMALL_STATE(4883)] = 192870, + [SMALL_STATE(4884)] = 192930, + [SMALL_STATE(4885)] = 192964, + [SMALL_STATE(4886)] = 192998, + [SMALL_STATE(4887)] = 193058, + [SMALL_STATE(4888)] = 193092, + [SMALL_STATE(4889)] = 193152, + [SMALL_STATE(4890)] = 193212, + [SMALL_STATE(4891)] = 193246, + [SMALL_STATE(4892)] = 193306, + [SMALL_STATE(4893)] = 193340, + [SMALL_STATE(4894)] = 193374, + [SMALL_STATE(4895)] = 193408, + [SMALL_STATE(4896)] = 193442, + [SMALL_STATE(4897)] = 193476, + [SMALL_STATE(4898)] = 193536, + [SMALL_STATE(4899)] = 193570, + [SMALL_STATE(4900)] = 193630, + [SMALL_STATE(4901)] = 193664, + [SMALL_STATE(4902)] = 193708, + [SMALL_STATE(4903)] = 193768, + [SMALL_STATE(4904)] = 193802, + [SMALL_STATE(4905)] = 193836, + [SMALL_STATE(4906)] = 193896, + [SMALL_STATE(4907)] = 193930, + [SMALL_STATE(4908)] = 193964, + [SMALL_STATE(4909)] = 193998, + [SMALL_STATE(4910)] = 194032, + [SMALL_STATE(4911)] = 194092, + [SMALL_STATE(4912)] = 194126, + [SMALL_STATE(4913)] = 194186, + [SMALL_STATE(4914)] = 194246, + [SMALL_STATE(4915)] = 194288, + [SMALL_STATE(4916)] = 194348, + [SMALL_STATE(4917)] = 194382, + [SMALL_STATE(4918)] = 194416, + [SMALL_STATE(4919)] = 194476, + [SMALL_STATE(4920)] = 194510, + [SMALL_STATE(4921)] = 194544, + [SMALL_STATE(4922)] = 194578, + [SMALL_STATE(4923)] = 194638, + [SMALL_STATE(4924)] = 194672, + [SMALL_STATE(4925)] = 194716, + [SMALL_STATE(4926)] = 194750, + [SMALL_STATE(4927)] = 194809, + [SMALL_STATE(4928)] = 194868, + [SMALL_STATE(4929)] = 194927, + [SMALL_STATE(4930)] = 194964, + [SMALL_STATE(4931)] = 195025, + [SMALL_STATE(4932)] = 195086, + [SMALL_STATE(4933)] = 195145, + [SMALL_STATE(4934)] = 195206, + [SMALL_STATE(4935)] = 195243, + [SMALL_STATE(4936)] = 195302, + [SMALL_STATE(4937)] = 195361, + [SMALL_STATE(4938)] = 195398, + [SMALL_STATE(4939)] = 195457, + [SMALL_STATE(4940)] = 195494, + [SMALL_STATE(4941)] = 195531, + [SMALL_STATE(4942)] = 195590, + [SMALL_STATE(4943)] = 195627, + [SMALL_STATE(4944)] = 195686, + [SMALL_STATE(4945)] = 195727, + [SMALL_STATE(4946)] = 195764, + [SMALL_STATE(4947)] = 195823, + [SMALL_STATE(4948)] = 195882, + [SMALL_STATE(4949)] = 195943, + [SMALL_STATE(4950)] = 196002, + [SMALL_STATE(4951)] = 196039, + [SMALL_STATE(4952)] = 196100, + [SMALL_STATE(4953)] = 196137, + [SMALL_STATE(4954)] = 196174, + [SMALL_STATE(4955)] = 196211, + [SMALL_STATE(4956)] = 196270, + [SMALL_STATE(4957)] = 196329, + [SMALL_STATE(4958)] = 196388, + [SMALL_STATE(4959)] = 196447, + [SMALL_STATE(4960)] = 196506, + [SMALL_STATE(4961)] = 196567, + [SMALL_STATE(4962)] = 196626, + [SMALL_STATE(4963)] = 196663, + [SMALL_STATE(4964)] = 196700, + [SMALL_STATE(4965)] = 196748, + [SMALL_STATE(4966)] = 196796, + [SMALL_STATE(4967)] = 196854, + [SMALL_STATE(4968)] = 196912, + [SMALL_STATE(4969)] = 196970, + [SMALL_STATE(4970)] = 197028, + [SMALL_STATE(4971)] = 197076, + [SMALL_STATE(4972)] = 197134, + [SMALL_STATE(4973)] = 197192, + [SMALL_STATE(4974)] = 197226, + [SMALL_STATE(4975)] = 197261, + [SMALL_STATE(4976)] = 197298, + [SMALL_STATE(4977)] = 197337, + [SMALL_STATE(4978)] = 197372, + [SMALL_STATE(4979)] = 197440, + [SMALL_STATE(4980)] = 197510, + [SMALL_STATE(4981)] = 197544, + [SMALL_STATE(4982)] = 197612, + [SMALL_STATE(4983)] = 197680, + [SMALL_STATE(4984)] = 197732, + [SMALL_STATE(4985)] = 197784, + [SMALL_STATE(4986)] = 197836, + [SMALL_STATE(4987)] = 197888, + [SMALL_STATE(4988)] = 197940, + [SMALL_STATE(4989)] = 198008, + [SMALL_STATE(4990)] = 198078, + [SMALL_STATE(4991)] = 198134, + [SMALL_STATE(4992)] = 198186, + [SMALL_STATE(4993)] = 198242, + [SMALL_STATE(4994)] = 198280, + [SMALL_STATE(4995)] = 198318, + [SMALL_STATE(4996)] = 198374, + [SMALL_STATE(4997)] = 198426, + [SMALL_STATE(4998)] = 198472, + [SMALL_STATE(4999)] = 198524, + [SMALL_STATE(5000)] = 198576, + [SMALL_STATE(5001)] = 198632, + [SMALL_STATE(5002)] = 198684, + [SMALL_STATE(5003)] = 198736, + [SMALL_STATE(5004)] = 198788, + [SMALL_STATE(5005)] = 198840, + [SMALL_STATE(5006)] = 198892, + [SMALL_STATE(5007)] = 198948, + [SMALL_STATE(5008)] = 199000, + [SMALL_STATE(5009)] = 199052, + [SMALL_STATE(5010)] = 199098, + [SMALL_STATE(5011)] = 199150, + [SMALL_STATE(5012)] = 199202, + [SMALL_STATE(5013)] = 199258, + [SMALL_STATE(5014)] = 199310, + [SMALL_STATE(5015)] = 199362, + [SMALL_STATE(5016)] = 199418, + [SMALL_STATE(5017)] = 199470, + [SMALL_STATE(5018)] = 199522, + [SMALL_STATE(5019)] = 199574, + [SMALL_STATE(5020)] = 199626, + [SMALL_STATE(5021)] = 199682, + [SMALL_STATE(5022)] = 199734, + [SMALL_STATE(5023)] = 199786, + [SMALL_STATE(5024)] = 199842, + [SMALL_STATE(5025)] = 199894, + [SMALL_STATE(5026)] = 199946, + [SMALL_STATE(5027)] = 199998, + [SMALL_STATE(5028)] = 200054, + [SMALL_STATE(5029)] = 200106, + [SMALL_STATE(5030)] = 200158, + [SMALL_STATE(5031)] = 200210, + [SMALL_STATE(5032)] = 200266, + [SMALL_STATE(5033)] = 200322, + [SMALL_STATE(5034)] = 200374, + [SMALL_STATE(5035)] = 200426, + [SMALL_STATE(5036)] = 200478, + [SMALL_STATE(5037)] = 200530, + [SMALL_STATE(5038)] = 200582, + [SMALL_STATE(5039)] = 200652, + [SMALL_STATE(5040)] = 200704, + [SMALL_STATE(5041)] = 200756, + [SMALL_STATE(5042)] = 200815, + [SMALL_STATE(5043)] = 200874, + [SMALL_STATE(5044)] = 200933, + [SMALL_STATE(5045)] = 200992, + [SMALL_STATE(5046)] = 201051, + [SMALL_STATE(5047)] = 201110, + [SMALL_STATE(5048)] = 201169, + [SMALL_STATE(5049)] = 201228, + [SMALL_STATE(5050)] = 201287, + [SMALL_STATE(5051)] = 201346, + [SMALL_STATE(5052)] = 201389, + [SMALL_STATE(5053)] = 201448, + [SMALL_STATE(5054)] = 201507, + [SMALL_STATE(5055)] = 201566, + [SMALL_STATE(5056)] = 201625, + [SMALL_STATE(5057)] = 201684, + [SMALL_STATE(5058)] = 201743, + [SMALL_STATE(5059)] = 201802, + [SMALL_STATE(5060)] = 201857, + [SMALL_STATE(5061)] = 201916, + [SMALL_STATE(5062)] = 201975, + [SMALL_STATE(5063)] = 202034, + [SMALL_STATE(5064)] = 202093, + [SMALL_STATE(5065)] = 202152, + [SMALL_STATE(5066)] = 202211, + [SMALL_STATE(5067)] = 202270, + [SMALL_STATE(5068)] = 202329, + [SMALL_STATE(5069)] = 202388, + [SMALL_STATE(5070)] = 202447, + [SMALL_STATE(5071)] = 202506, + [SMALL_STATE(5072)] = 202565, + [SMALL_STATE(5073)] = 202624, + [SMALL_STATE(5074)] = 202683, + [SMALL_STATE(5075)] = 202742, + [SMALL_STATE(5076)] = 202801, + [SMALL_STATE(5077)] = 202860, + [SMALL_STATE(5078)] = 202919, + [SMALL_STATE(5079)] = 202978, + [SMALL_STATE(5080)] = 203037, + [SMALL_STATE(5081)] = 203096, + [SMALL_STATE(5082)] = 203155, + [SMALL_STATE(5083)] = 203214, + [SMALL_STATE(5084)] = 203273, + [SMALL_STATE(5085)] = 203332, + [SMALL_STATE(5086)] = 203391, + [SMALL_STATE(5087)] = 203450, + [SMALL_STATE(5088)] = 203509, + [SMALL_STATE(5089)] = 203568, + [SMALL_STATE(5090)] = 203627, + [SMALL_STATE(5091)] = 203660, + [SMALL_STATE(5092)] = 203703, + [SMALL_STATE(5093)] = 203758, + [SMALL_STATE(5094)] = 203817, + [SMALL_STATE(5095)] = 203876, + [SMALL_STATE(5096)] = 203935, + [SMALL_STATE(5097)] = 203994, + [SMALL_STATE(5098)] = 204023, + [SMALL_STATE(5099)] = 204082, + [SMALL_STATE(5100)] = 204141, + [SMALL_STATE(5101)] = 204200, + [SMALL_STATE(5102)] = 204259, + [SMALL_STATE(5103)] = 204318, + [SMALL_STATE(5104)] = 204377, + [SMALL_STATE(5105)] = 204436, + [SMALL_STATE(5106)] = 204495, + [SMALL_STATE(5107)] = 204554, + [SMALL_STATE(5108)] = 204609, + [SMALL_STATE(5109)] = 204668, + [SMALL_STATE(5110)] = 204727, + [SMALL_STATE(5111)] = 204786, + [SMALL_STATE(5112)] = 204845, + [SMALL_STATE(5113)] = 204904, + [SMALL_STATE(5114)] = 204963, + [SMALL_STATE(5115)] = 205022, + [SMALL_STATE(5116)] = 205081, + [SMALL_STATE(5117)] = 205140, + [SMALL_STATE(5118)] = 205199, + [SMALL_STATE(5119)] = 205258, + [SMALL_STATE(5120)] = 205317, + [SMALL_STATE(5121)] = 205376, + [SMALL_STATE(5122)] = 205435, + [SMALL_STATE(5123)] = 205494, + [SMALL_STATE(5124)] = 205553, + [SMALL_STATE(5125)] = 205612, + [SMALL_STATE(5126)] = 205671, + [SMALL_STATE(5127)] = 205730, + [SMALL_STATE(5128)] = 205789, + [SMALL_STATE(5129)] = 205818, + [SMALL_STATE(5130)] = 205863, + [SMALL_STATE(5131)] = 205922, + [SMALL_STATE(5132)] = 205965, + [SMALL_STATE(5133)] = 206024, + [SMALL_STATE(5134)] = 206083, + [SMALL_STATE(5135)] = 206146, + [SMALL_STATE(5136)] = 206205, + [SMALL_STATE(5137)] = 206264, + [SMALL_STATE(5138)] = 206328, + [SMALL_STATE(5139)] = 206356, + [SMALL_STATE(5140)] = 206396, + [SMALL_STATE(5141)] = 206436, + [SMALL_STATE(5142)] = 206500, + [SMALL_STATE(5143)] = 206536, + [SMALL_STATE(5144)] = 206564, + [SMALL_STATE(5145)] = 206622, + [SMALL_STATE(5146)] = 206662, + [SMALL_STATE(5147)] = 206702, + [SMALL_STATE(5148)] = 206742, + [SMALL_STATE(5149)] = 206784, + [SMALL_STATE(5150)] = 206842, + [SMALL_STATE(5151)] = 206882, + [SMALL_STATE(5152)] = 206932, + [SMALL_STATE(5153)] = 206972, + [SMALL_STATE(5154)] = 207012, + [SMALL_STATE(5155)] = 207056, + [SMALL_STATE(5156)] = 207102, + [SMALL_STATE(5157)] = 207142, + [SMALL_STATE(5158)] = 207206, + [SMALL_STATE(5159)] = 207252, + [SMALL_STATE(5160)] = 207304, + [SMALL_STATE(5161)] = 207368, + [SMALL_STATE(5162)] = 207416, + [SMALL_STATE(5163)] = 207480, + [SMALL_STATE(5164)] = 207520, + [SMALL_STATE(5165)] = 207560, + [SMALL_STATE(5166)] = 207588, + [SMALL_STATE(5167)] = 207616, + [SMALL_STATE(5168)] = 207648, + [SMALL_STATE(5169)] = 207676, + [SMALL_STATE(5170)] = 207734, + [SMALL_STATE(5171)] = 207774, + [SMALL_STATE(5172)] = 207814, + [SMALL_STATE(5173)] = 207842, + [SMALL_STATE(5174)] = 207886, + [SMALL_STATE(5175)] = 207922, + [SMALL_STATE(5176)] = 207962, + [SMALL_STATE(5177)] = 208014, + [SMALL_STATE(5178)] = 208078, + [SMALL_STATE(5179)] = 208130, + [SMALL_STATE(5180)] = 208194, + [SMALL_STATE(5181)] = 208234, + [SMALL_STATE(5182)] = 208292, + [SMALL_STATE(5183)] = 208332, + [SMALL_STATE(5184)] = 208372, + [SMALL_STATE(5185)] = 208412, + [SMALL_STATE(5186)] = 208476, + [SMALL_STATE(5187)] = 208516, + [SMALL_STATE(5188)] = 208574, + [SMALL_STATE(5189)] = 208614, + [SMALL_STATE(5190)] = 208654, + [SMALL_STATE(5191)] = 208718, + [SMALL_STATE(5192)] = 208754, + [SMALL_STATE(5193)] = 208794, + [SMALL_STATE(5194)] = 208834, + [SMALL_STATE(5195)] = 208874, + [SMALL_STATE(5196)] = 208914, + [SMALL_STATE(5197)] = 208978, + [SMALL_STATE(5198)] = 209006, + [SMALL_STATE(5199)] = 209034, + [SMALL_STATE(5200)] = 209092, + [SMALL_STATE(5201)] = 209132, + [SMALL_STATE(5202)] = 209196, + [SMALL_STATE(5203)] = 209260, + [SMALL_STATE(5204)] = 209318, + [SMALL_STATE(5205)] = 209346, + [SMALL_STATE(5206)] = 209374, + [SMALL_STATE(5207)] = 209432, + [SMALL_STATE(5208)] = 209472, + [SMALL_STATE(5209)] = 209512, + [SMALL_STATE(5210)] = 209564, + [SMALL_STATE(5211)] = 209604, + [SMALL_STATE(5212)] = 209644, + [SMALL_STATE(5213)] = 209684, + [SMALL_STATE(5214)] = 209724, + [SMALL_STATE(5215)] = 209764, + [SMALL_STATE(5216)] = 209804, + [SMALL_STATE(5217)] = 209844, + [SMALL_STATE(5218)] = 209888, + [SMALL_STATE(5219)] = 209946, + [SMALL_STATE(5220)] = 209986, + [SMALL_STATE(5221)] = 210026, + [SMALL_STATE(5222)] = 210060, + [SMALL_STATE(5223)] = 210124, + [SMALL_STATE(5224)] = 210169, + [SMALL_STATE(5225)] = 210204, + [SMALL_STATE(5226)] = 210243, + [SMALL_STATE(5227)] = 210278, + [SMALL_STATE(5228)] = 210305, + [SMALL_STATE(5229)] = 210340, + [SMALL_STATE(5230)] = 210367, + [SMALL_STATE(5231)] = 210402, + [SMALL_STATE(5232)] = 210441, + [SMALL_STATE(5233)] = 210492, + [SMALL_STATE(5234)] = 210519, + [SMALL_STATE(5235)] = 210558, + [SMALL_STATE(5236)] = 210597, + [SMALL_STATE(5237)] = 210642, + [SMALL_STATE(5238)] = 210669, + [SMALL_STATE(5239)] = 210708, + [SMALL_STATE(5240)] = 210737, + [SMALL_STATE(5241)] = 210772, + [SMALL_STATE(5242)] = 210811, + [SMALL_STATE(5243)] = 210850, + [SMALL_STATE(5244)] = 210877, + [SMALL_STATE(5245)] = 210908, + [SMALL_STATE(5246)] = 210965, + [SMALL_STATE(5247)] = 211016, + [SMALL_STATE(5248)] = 211049, + [SMALL_STATE(5249)] = 211088, + [SMALL_STATE(5250)] = 211127, + [SMALL_STATE(5251)] = 211158, + [SMALL_STATE(5252)] = 211193, + [SMALL_STATE(5253)] = 211222, + [SMALL_STATE(5254)] = 211261, + [SMALL_STATE(5255)] = 211296, + [SMALL_STATE(5256)] = 211341, + [SMALL_STATE(5257)] = 211384, + [SMALL_STATE(5258)] = 211423, + [SMALL_STATE(5259)] = 211468, + [SMALL_STATE(5260)] = 211495, + [SMALL_STATE(5261)] = 211522, + [SMALL_STATE(5262)] = 211553, + [SMALL_STATE(5263)] = 211592, + [SMALL_STATE(5264)] = 211631, + [SMALL_STATE(5265)] = 211668, + [SMALL_STATE(5266)] = 211707, + [SMALL_STATE(5267)] = 211764, + [SMALL_STATE(5268)] = 211799, + [SMALL_STATE(5269)] = 211826, + [SMALL_STATE(5270)] = 211853, + [SMALL_STATE(5271)] = 211880, + [SMALL_STATE(5272)] = 211915, + [SMALL_STATE(5273)] = 211954, + [SMALL_STATE(5274)] = 212005, + [SMALL_STATE(5275)] = 212044, + [SMALL_STATE(5276)] = 212083, + [SMALL_STATE(5277)] = 212122, + [SMALL_STATE(5278)] = 212149, + [SMALL_STATE(5279)] = 212176, + [SMALL_STATE(5280)] = 212233, + [SMALL_STATE(5281)] = 212268, + [SMALL_STATE(5282)] = 212295, + [SMALL_STATE(5283)] = 212322, + [SMALL_STATE(5284)] = 212361, + [SMALL_STATE(5285)] = 212400, + [SMALL_STATE(5286)] = 212435, + [SMALL_STATE(5287)] = 212470, + [SMALL_STATE(5288)] = 212509, + [SMALL_STATE(5289)] = 212536, + [SMALL_STATE(5290)] = 212567, + [SMALL_STATE(5291)] = 212602, + [SMALL_STATE(5292)] = 212631, + [SMALL_STATE(5293)] = 212658, + [SMALL_STATE(5294)] = 212685, + [SMALL_STATE(5295)] = 212726, + [SMALL_STATE(5296)] = 212755, + [SMALL_STATE(5297)] = 212782, + [SMALL_STATE(5298)] = 212809, + [SMALL_STATE(5299)] = 212844, + [SMALL_STATE(5300)] = 212871, + [SMALL_STATE(5301)] = 212910, + [SMALL_STATE(5302)] = 212955, + [SMALL_STATE(5303)] = 212998, + [SMALL_STATE(5304)] = 213029, + [SMALL_STATE(5305)] = 213074, + [SMALL_STATE(5306)] = 213101, + [SMALL_STATE(5307)] = 213128, + [SMALL_STATE(5308)] = 213167, + [SMALL_STATE(5309)] = 213194, + [SMALL_STATE(5310)] = 213229, + [SMALL_STATE(5311)] = 213274, + [SMALL_STATE(5312)] = 213305, + [SMALL_STATE(5313)] = 213344, + [SMALL_STATE(5314)] = 213379, + [SMALL_STATE(5315)] = 213424, + [SMALL_STATE(5316)] = 213463, + [SMALL_STATE(5317)] = 213498, + [SMALL_STATE(5318)] = 213525, + [SMALL_STATE(5319)] = 213582, + [SMALL_STATE(5320)] = 213609, + [SMALL_STATE(5321)] = 213654, + [SMALL_STATE(5322)] = 213711, + [SMALL_STATE(5323)] = 213738, + [SMALL_STATE(5324)] = 213795, + [SMALL_STATE(5325)] = 213844, + [SMALL_STATE(5326)] = 213871, + [SMALL_STATE(5327)] = 213898, + [SMALL_STATE(5328)] = 213925, + [SMALL_STATE(5329)] = 213970, + [SMALL_STATE(5330)] = 214001, + [SMALL_STATE(5331)] = 214028, + [SMALL_STATE(5332)] = 214077, + [SMALL_STATE(5333)] = 214122, + [SMALL_STATE(5334)] = 214157, + [SMALL_STATE(5335)] = 214192, + [SMALL_STATE(5336)] = 214227, + [SMALL_STATE(5337)] = 214258, + [SMALL_STATE(5338)] = 214293, + [SMALL_STATE(5339)] = 214320, + [SMALL_STATE(5340)] = 214371, + [SMALL_STATE(5341)] = 214416, + [SMALL_STATE(5342)] = 214443, + [SMALL_STATE(5343)] = 214495, + [SMALL_STATE(5344)] = 214525, + [SMALL_STATE(5345)] = 214555, + [SMALL_STATE(5346)] = 214597, + [SMALL_STATE(5347)] = 214627, + [SMALL_STATE(5348)] = 214657, + [SMALL_STATE(5349)] = 214700, + [SMALL_STATE(5350)] = 214737, + [SMALL_STATE(5351)] = 214762, + [SMALL_STATE(5352)] = 214805, + [SMALL_STATE(5353)] = 214854, + [SMALL_STATE(5354)] = 214879, + [SMALL_STATE(5355)] = 214928, + [SMALL_STATE(5356)] = 214977, + [SMALL_STATE(5357)] = 215014, + [SMALL_STATE(5358)] = 215051, + [SMALL_STATE(5359)] = 215094, + [SMALL_STATE(5360)] = 215131, + [SMALL_STATE(5361)] = 215174, + [SMALL_STATE(5362)] = 215223, + [SMALL_STATE(5363)] = 215248, + [SMALL_STATE(5364)] = 215273, + [SMALL_STATE(5365)] = 215310, + [SMALL_STATE(5366)] = 215359, + [SMALL_STATE(5367)] = 215384, + [SMALL_STATE(5368)] = 215409, + [SMALL_STATE(5369)] = 215434, + [SMALL_STATE(5370)] = 215459, + [SMALL_STATE(5371)] = 215508, + [SMALL_STATE(5372)] = 215533, + [SMALL_STATE(5373)] = 215570, + [SMALL_STATE(5374)] = 215607, + [SMALL_STATE(5375)] = 215650, + [SMALL_STATE(5376)] = 215687, + [SMALL_STATE(5377)] = 215724, + [SMALL_STATE(5378)] = 215767, + [SMALL_STATE(5379)] = 215810, + [SMALL_STATE(5380)] = 215853, + [SMALL_STATE(5381)] = 215896, + [SMALL_STATE(5382)] = 215933, + [SMALL_STATE(5383)] = 215976, + [SMALL_STATE(5384)] = 216013, + [SMALL_STATE(5385)] = 216050, + [SMALL_STATE(5386)] = 216087, + [SMALL_STATE(5387)] = 216136, + [SMALL_STATE(5388)] = 216161, + [SMALL_STATE(5389)] = 216198, + [SMALL_STATE(5390)] = 216247, + [SMALL_STATE(5391)] = 216296, + [SMALL_STATE(5392)] = 216321, + [SMALL_STATE(5393)] = 216364, + [SMALL_STATE(5394)] = 216407, + [SMALL_STATE(5395)] = 216444, + [SMALL_STATE(5396)] = 216493, + [SMALL_STATE(5397)] = 216518, + [SMALL_STATE(5398)] = 216567, + [SMALL_STATE(5399)] = 216608, + [SMALL_STATE(5400)] = 216633, + [SMALL_STATE(5401)] = 216676, + [SMALL_STATE(5402)] = 216719, + [SMALL_STATE(5403)] = 216762, + [SMALL_STATE(5404)] = 216811, + [SMALL_STATE(5405)] = 216842, + [SMALL_STATE(5406)] = 216885, + [SMALL_STATE(5407)] = 216928, + [SMALL_STATE(5408)] = 216971, + [SMALL_STATE(5409)] = 217022, + [SMALL_STATE(5410)] = 217065, + [SMALL_STATE(5411)] = 217090, + [SMALL_STATE(5412)] = 217139, + [SMALL_STATE(5413)] = 217164, + [SMALL_STATE(5414)] = 217189, + [SMALL_STATE(5415)] = 217220, + [SMALL_STATE(5416)] = 217263, + [SMALL_STATE(5417)] = 217312, + [SMALL_STATE(5418)] = 217361, + [SMALL_STATE(5419)] = 217386, + [SMALL_STATE(5420)] = 217435, + [SMALL_STATE(5421)] = 217478, + [SMALL_STATE(5422)] = 217503, + [SMALL_STATE(5423)] = 217546, + [SMALL_STATE(5424)] = 217589, + [SMALL_STATE(5425)] = 217638, + [SMALL_STATE(5426)] = 217687, + [SMALL_STATE(5427)] = 217728, + [SMALL_STATE(5428)] = 217753, + [SMALL_STATE(5429)] = 217790, + [SMALL_STATE(5430)] = 217833, + [SMALL_STATE(5431)] = 217876, + [SMALL_STATE(5432)] = 217925, + [SMALL_STATE(5433)] = 217974, + [SMALL_STATE(5434)] = 217999, + [SMALL_STATE(5435)] = 218042, + [SMALL_STATE(5436)] = 218091, + [SMALL_STATE(5437)] = 218127, + [SMALL_STATE(5438)] = 218163, + [SMALL_STATE(5439)] = 218189, + [SMALL_STATE(5440)] = 218229, + [SMALL_STATE(5441)] = 218265, + [SMALL_STATE(5442)] = 218295, + [SMALL_STATE(5443)] = 218321, + [SMALL_STATE(5444)] = 218361, + [SMALL_STATE(5445)] = 218405, + [SMALL_STATE(5446)] = 218441, + [SMALL_STATE(5447)] = 218481, + [SMALL_STATE(5448)] = 218505, + [SMALL_STATE(5449)] = 218545, + [SMALL_STATE(5450)] = 218585, + [SMALL_STATE(5451)] = 218615, + [SMALL_STATE(5452)] = 218639, + [SMALL_STATE(5453)] = 218679, + [SMALL_STATE(5454)] = 218715, + [SMALL_STATE(5455)] = 218751, + [SMALL_STATE(5456)] = 218781, + [SMALL_STATE(5457)] = 218817, + [SMALL_STATE(5458)] = 218847, + [SMALL_STATE(5459)] = 218873, + [SMALL_STATE(5460)] = 218913, + [SMALL_STATE(5461)] = 218949, + [SMALL_STATE(5462)] = 218979, + [SMALL_STATE(5463)] = 219022, + [SMALL_STATE(5464)] = 219059, + [SMALL_STATE(5465)] = 219088, + [SMALL_STATE(5466)] = 219119, + [SMALL_STATE(5467)] = 219148, + [SMALL_STATE(5468)] = 219177, + [SMALL_STATE(5469)] = 219206, + [SMALL_STATE(5470)] = 219239, + [SMALL_STATE(5471)] = 219268, + [SMALL_STATE(5472)] = 219297, + [SMALL_STATE(5473)] = 219330, + [SMALL_STATE(5474)] = 219373, + [SMALL_STATE(5475)] = 219406, + [SMALL_STATE(5476)] = 219443, + [SMALL_STATE(5477)] = 219472, + [SMALL_STATE(5478)] = 219501, + [SMALL_STATE(5479)] = 219538, + [SMALL_STATE(5480)] = 219567, + [SMALL_STATE(5481)] = 219604, + [SMALL_STATE(5482)] = 219633, + [SMALL_STATE(5483)] = 219662, + [SMALL_STATE(5484)] = 219693, + [SMALL_STATE(5485)] = 219722, + [SMALL_STATE(5486)] = 219759, + [SMALL_STATE(5487)] = 219796, + [SMALL_STATE(5488)] = 219827, + [SMALL_STATE(5489)] = 219858, + [SMALL_STATE(5490)] = 219895, + [SMALL_STATE(5491)] = 219926, + [SMALL_STATE(5492)] = 219957, + [SMALL_STATE(5493)] = 219988, + [SMALL_STATE(5494)] = 220017, + [SMALL_STATE(5495)] = 220046, + [SMALL_STATE(5496)] = 220083, + [SMALL_STATE(5497)] = 220110, + [SMALL_STATE(5498)] = 220143, + [SMALL_STATE(5499)] = 220174, + [SMALL_STATE(5500)] = 220207, + [SMALL_STATE(5501)] = 220230, + [SMALL_STATE(5502)] = 220257, + [SMALL_STATE(5503)] = 220290, + [SMALL_STATE(5504)] = 220323, + [SMALL_STATE(5505)] = 220360, + [SMALL_STATE(5506)] = 220397, + [SMALL_STATE(5507)] = 220440, + [SMALL_STATE(5508)] = 220477, + [SMALL_STATE(5509)] = 220510, + [SMALL_STATE(5510)] = 220539, + [SMALL_STATE(5511)] = 220570, + [SMALL_STATE(5512)] = 220603, + [SMALL_STATE(5513)] = 220640, + [SMALL_STATE(5514)] = 220673, + [SMALL_STATE(5515)] = 220716, + [SMALL_STATE(5516)] = 220747, + [SMALL_STATE(5517)] = 220778, + [SMALL_STATE(5518)] = 220809, + [SMALL_STATE(5519)] = 220842, + [SMALL_STATE(5520)] = 220871, + [SMALL_STATE(5521)] = 220900, + [SMALL_STATE(5522)] = 220931, + [SMALL_STATE(5523)] = 220962, + [SMALL_STATE(5524)] = 220993, + [SMALL_STATE(5525)] = 221022, + [SMALL_STATE(5526)] = 221055, + [SMALL_STATE(5527)] = 221098, + [SMALL_STATE(5528)] = 221141, + [SMALL_STATE(5529)] = 221164, + [SMALL_STATE(5530)] = 221197, + [SMALL_STATE(5531)] = 221234, + [SMALL_STATE(5532)] = 221277, + [SMALL_STATE(5533)] = 221306, + [SMALL_STATE(5534)] = 221337, + [SMALL_STATE(5535)] = 221380, + [SMALL_STATE(5536)] = 221423, + [SMALL_STATE(5537)] = 221460, + [SMALL_STATE(5538)] = 221489, + [SMALL_STATE(5539)] = 221526, + [SMALL_STATE(5540)] = 221559, + [SMALL_STATE(5541)] = 221602, + [SMALL_STATE(5542)] = 221639, + [SMALL_STATE(5543)] = 221668, + [SMALL_STATE(5544)] = 221697, + [SMALL_STATE(5545)] = 221730, + [SMALL_STATE(5546)] = 221763, + [SMALL_STATE(5547)] = 221794, + [SMALL_STATE(5548)] = 221825, + [SMALL_STATE(5549)] = 221868, + [SMALL_STATE(5550)] = 221900, + [SMALL_STATE(5551)] = 221932, + [SMALL_STATE(5552)] = 221952, + [SMALL_STATE(5553)] = 221984, + [SMALL_STATE(5554)] = 222012, + [SMALL_STATE(5555)] = 222052, + [SMALL_STATE(5556)] = 222072, + [SMALL_STATE(5557)] = 222100, + [SMALL_STATE(5558)] = 222128, + [SMALL_STATE(5559)] = 222148, + [SMALL_STATE(5560)] = 222180, + [SMALL_STATE(5561)] = 222206, + [SMALL_STATE(5562)] = 222236, + [SMALL_STATE(5563)] = 222264, + [SMALL_STATE(5564)] = 222284, + [SMALL_STATE(5565)] = 222304, + [SMALL_STATE(5566)] = 222324, + [SMALL_STATE(5567)] = 222352, + [SMALL_STATE(5568)] = 222382, + [SMALL_STATE(5569)] = 222410, + [SMALL_STATE(5570)] = 222430, + [SMALL_STATE(5571)] = 222462, + [SMALL_STATE(5572)] = 222482, + [SMALL_STATE(5573)] = 222502, + [SMALL_STATE(5574)] = 222542, + [SMALL_STATE(5575)] = 222572, + [SMALL_STATE(5576)] = 222602, + [SMALL_STATE(5577)] = 222642, + [SMALL_STATE(5578)] = 222670, + [SMALL_STATE(5579)] = 222698, + [SMALL_STATE(5580)] = 222718, + [SMALL_STATE(5581)] = 222758, + [SMALL_STATE(5582)] = 222790, + [SMALL_STATE(5583)] = 222820, + [SMALL_STATE(5584)] = 222850, + [SMALL_STATE(5585)] = 222878, + [SMALL_STATE(5586)] = 222910, + [SMALL_STATE(5587)] = 222938, + [SMALL_STATE(5588)] = 222976, + [SMALL_STATE(5589)] = 223004, + [SMALL_STATE(5590)] = 223032, + [SMALL_STATE(5591)] = 223062, + [SMALL_STATE(5592)] = 223090, + [SMALL_STATE(5593)] = 223130, + [SMALL_STATE(5594)] = 223170, + [SMALL_STATE(5595)] = 223202, + [SMALL_STATE(5596)] = 223226, + [SMALL_STATE(5597)] = 223250, + [SMALL_STATE(5598)] = 223282, + [SMALL_STATE(5599)] = 223306, + [SMALL_STATE(5600)] = 223338, + [SMALL_STATE(5601)] = 223368, + [SMALL_STATE(5602)] = 223408, + [SMALL_STATE(5603)] = 223438, + [SMALL_STATE(5604)] = 223478, + [SMALL_STATE(5605)] = 223498, + [SMALL_STATE(5606)] = 223528, + [SMALL_STATE(5607)] = 223558, + [SMALL_STATE(5608)] = 223598, + [SMALL_STATE(5609)] = 223638, + [SMALL_STATE(5610)] = 223670, + [SMALL_STATE(5611)] = 223690, + [SMALL_STATE(5612)] = 223710, + [SMALL_STATE(5613)] = 223730, + [SMALL_STATE(5614)] = 223770, + [SMALL_STATE(5615)] = 223798, + [SMALL_STATE(5616)] = 223818, + [SMALL_STATE(5617)] = 223850, + [SMALL_STATE(5618)] = 223890, + [SMALL_STATE(5619)] = 223922, + [SMALL_STATE(5620)] = 223952, + [SMALL_STATE(5621)] = 223980, + [SMALL_STATE(5622)] = 224012, + [SMALL_STATE(5623)] = 224032, + [SMALL_STATE(5624)] = 224064, + [SMALL_STATE(5625)] = 224092, + [SMALL_STATE(5626)] = 224118, + [SMALL_STATE(5627)] = 224140, + [SMALL_STATE(5628)] = 224180, + [SMALL_STATE(5629)] = 224208, + [SMALL_STATE(5630)] = 224238, + [SMALL_STATE(5631)] = 224270, + [SMALL_STATE(5632)] = 224302, + [SMALL_STATE(5633)] = 224322, + [SMALL_STATE(5634)] = 224348, + [SMALL_STATE(5635)] = 224378, + [SMALL_STATE(5636)] = 224408, + [SMALL_STATE(5637)] = 224438, + [SMALL_STATE(5638)] = 224458, + [SMALL_STATE(5639)] = 224490, + [SMALL_STATE(5640)] = 224522, + [SMALL_STATE(5641)] = 224552, + [SMALL_STATE(5642)] = 224582, + [SMALL_STATE(5643)] = 224610, + [SMALL_STATE(5644)] = 224650, + [SMALL_STATE(5645)] = 224682, + [SMALL_STATE(5646)] = 224702, + [SMALL_STATE(5647)] = 224732, + [SMALL_STATE(5648)] = 224752, + [SMALL_STATE(5649)] = 224784, + [SMALL_STATE(5650)] = 224816, + [SMALL_STATE(5651)] = 224856, + [SMALL_STATE(5652)] = 224886, + [SMALL_STATE(5653)] = 224914, + [SMALL_STATE(5654)] = 224954, + [SMALL_STATE(5655)] = 224994, + [SMALL_STATE(5656)] = 225024, + [SMALL_STATE(5657)] = 225054, + [SMALL_STATE(5658)] = 225086, + [SMALL_STATE(5659)] = 225116, + [SMALL_STATE(5660)] = 225146, + [SMALL_STATE(5661)] = 225179, + [SMALL_STATE(5662)] = 225206, + [SMALL_STATE(5663)] = 225225, + [SMALL_STATE(5664)] = 225248, + [SMALL_STATE(5665)] = 225285, + [SMALL_STATE(5666)] = 225304, + [SMALL_STATE(5667)] = 225325, + [SMALL_STATE(5668)] = 225354, + [SMALL_STATE(5669)] = 225391, + [SMALL_STATE(5670)] = 225416, + [SMALL_STATE(5671)] = 225443, + [SMALL_STATE(5672)] = 225480, + [SMALL_STATE(5673)] = 225517, + [SMALL_STATE(5674)] = 225542, + [SMALL_STATE(5675)] = 225561, + [SMALL_STATE(5676)] = 225582, + [SMALL_STATE(5677)] = 225609, + [SMALL_STATE(5678)] = 225630, + [SMALL_STATE(5679)] = 225657, + [SMALL_STATE(5680)] = 225686, + [SMALL_STATE(5681)] = 225719, + [SMALL_STATE(5682)] = 225744, + [SMALL_STATE(5683)] = 225763, + [SMALL_STATE(5684)] = 225800, + [SMALL_STATE(5685)] = 225827, + [SMALL_STATE(5686)] = 225864, + [SMALL_STATE(5687)] = 225891, + [SMALL_STATE(5688)] = 225920, + [SMALL_STATE(5689)] = 225947, + [SMALL_STATE(5690)] = 225966, + [SMALL_STATE(5691)] = 225993, + [SMALL_STATE(5692)] = 226020, + [SMALL_STATE(5693)] = 226041, + [SMALL_STATE(5694)] = 226068, + [SMALL_STATE(5695)] = 226095, + [SMALL_STATE(5696)] = 226132, + [SMALL_STATE(5697)] = 226151, + [SMALL_STATE(5698)] = 226172, + [SMALL_STATE(5699)] = 226193, + [SMALL_STATE(5700)] = 226214, + [SMALL_STATE(5701)] = 226243, + [SMALL_STATE(5702)] = 226268, + [SMALL_STATE(5703)] = 226295, + [SMALL_STATE(5704)] = 226322, + [SMALL_STATE(5705)] = 226349, + [SMALL_STATE(5706)] = 226386, + [SMALL_STATE(5707)] = 226407, + [SMALL_STATE(5708)] = 226434, + [SMALL_STATE(5709)] = 226455, + [SMALL_STATE(5710)] = 226492, + [SMALL_STATE(5711)] = 226529, + [SMALL_STATE(5712)] = 226562, + [SMALL_STATE(5713)] = 226595, + [SMALL_STATE(5714)] = 226622, + [SMALL_STATE(5715)] = 226649, + [SMALL_STATE(5716)] = 226670, + [SMALL_STATE(5717)] = 226695, + [SMALL_STATE(5718)] = 226722, + [SMALL_STATE(5719)] = 226743, + [SMALL_STATE(5720)] = 226770, + [SMALL_STATE(5721)] = 226789, + [SMALL_STATE(5722)] = 226810, + [SMALL_STATE(5723)] = 226831, + [SMALL_STATE(5724)] = 226852, + [SMALL_STATE(5725)] = 226873, + [SMALL_STATE(5726)] = 226894, + [SMALL_STATE(5727)] = 226927, + [SMALL_STATE(5728)] = 226964, + [SMALL_STATE(5729)] = 226991, + [SMALL_STATE(5730)] = 227024, + [SMALL_STATE(5731)] = 227061, + [SMALL_STATE(5732)] = 227082, + [SMALL_STATE(5733)] = 227103, + [SMALL_STATE(5734)] = 227136, + [SMALL_STATE(5735)] = 227157, + [SMALL_STATE(5736)] = 227182, + [SMALL_STATE(5737)] = 227217, + [SMALL_STATE(5738)] = 227238, + [SMALL_STATE(5739)] = 227265, + [SMALL_STATE(5740)] = 227286, + [SMALL_STATE(5741)] = 227319, + [SMALL_STATE(5742)] = 227338, + [SMALL_STATE(5743)] = 227359, + [SMALL_STATE(5744)] = 227380, + [SMALL_STATE(5745)] = 227399, + [SMALL_STATE(5746)] = 227436, + [SMALL_STATE(5747)] = 227457, + [SMALL_STATE(5748)] = 227482, + [SMALL_STATE(5749)] = 227501, + [SMALL_STATE(5750)] = 227522, + [SMALL_STATE(5751)] = 227559, + [SMALL_STATE(5752)] = 227586, + [SMALL_STATE(5753)] = 227605, + [SMALL_STATE(5754)] = 227632, + [SMALL_STATE(5755)] = 227653, + [SMALL_STATE(5756)] = 227690, + [SMALL_STATE(5757)] = 227711, + [SMALL_STATE(5758)] = 227730, + [SMALL_STATE(5759)] = 227767, + [SMALL_STATE(5760)] = 227786, + [SMALL_STATE(5761)] = 227807, + [SMALL_STATE(5762)] = 227844, + [SMALL_STATE(5763)] = 227871, + [SMALL_STATE(5764)] = 227890, + [SMALL_STATE(5765)] = 227915, + [SMALL_STATE(5766)] = 227936, + [SMALL_STATE(5767)] = 227957, + [SMALL_STATE(5768)] = 227976, + [SMALL_STATE(5769)] = 227997, + [SMALL_STATE(5770)] = 228036, + [SMALL_STATE(5771)] = 228061, + [SMALL_STATE(5772)] = 228080, + [SMALL_STATE(5773)] = 228117, + [SMALL_STATE(5774)] = 228136, + [SMALL_STATE(5775)] = 228173, + [SMALL_STATE(5776)] = 228210, + [SMALL_STATE(5777)] = 228231, + [SMALL_STATE(5778)] = 228261, + [SMALL_STATE(5779)] = 228291, + [SMALL_STATE(5780)] = 228317, + [SMALL_STATE(5781)] = 228353, + [SMALL_STATE(5782)] = 228379, + [SMALL_STATE(5783)] = 228413, + [SMALL_STATE(5784)] = 228449, + [SMALL_STATE(5785)] = 228485, + [SMALL_STATE(5786)] = 228519, + [SMALL_STATE(5787)] = 228545, + [SMALL_STATE(5788)] = 228575, + [SMALL_STATE(5789)] = 228601, + [SMALL_STATE(5790)] = 228627, + [SMALL_STATE(5791)] = 228663, + [SMALL_STATE(5792)] = 228689, + [SMALL_STATE(5793)] = 228713, + [SMALL_STATE(5794)] = 228749, + [SMALL_STATE(5795)] = 228783, + [SMALL_STATE(5796)] = 228809, + [SMALL_STATE(5797)] = 228843, + [SMALL_STATE(5798)] = 228873, + [SMALL_STATE(5799)] = 228909, + [SMALL_STATE(5800)] = 228935, + [SMALL_STATE(5801)] = 228969, + [SMALL_STATE(5802)] = 229005, + [SMALL_STATE(5803)] = 229031, + [SMALL_STATE(5804)] = 229061, + [SMALL_STATE(5805)] = 229097, + [SMALL_STATE(5806)] = 229125, + [SMALL_STATE(5807)] = 229159, + [SMALL_STATE(5808)] = 229195, + [SMALL_STATE(5809)] = 229231, + [SMALL_STATE(5810)] = 229253, + [SMALL_STATE(5811)] = 229279, + [SMALL_STATE(5812)] = 229313, + [SMALL_STATE(5813)] = 229349, + [SMALL_STATE(5814)] = 229383, + [SMALL_STATE(5815)] = 229419, + [SMALL_STATE(5816)] = 229449, + [SMALL_STATE(5817)] = 229483, + [SMALL_STATE(5818)] = 229509, + [SMALL_STATE(5819)] = 229537, + [SMALL_STATE(5820)] = 229561, + [SMALL_STATE(5821)] = 229587, + [SMALL_STATE(5822)] = 229615, + [SMALL_STATE(5823)] = 229649, + [SMALL_STATE(5824)] = 229669, + [SMALL_STATE(5825)] = 229705, + [SMALL_STATE(5826)] = 229741, + [SMALL_STATE(5827)] = 229777, + [SMALL_STATE(5828)] = 229813, + [SMALL_STATE(5829)] = 229837, + [SMALL_STATE(5830)] = 229873, + [SMALL_STATE(5831)] = 229903, + [SMALL_STATE(5832)] = 229933, + [SMALL_STATE(5833)] = 229959, + [SMALL_STATE(5834)] = 229989, + [SMALL_STATE(5835)] = 230015, + [SMALL_STATE(5836)] = 230051, + [SMALL_STATE(5837)] = 230073, + [SMALL_STATE(5838)] = 230101, + [SMALL_STATE(5839)] = 230127, + [SMALL_STATE(5840)] = 230153, + [SMALL_STATE(5841)] = 230179, + [SMALL_STATE(5842)] = 230215, + [SMALL_STATE(5843)] = 230239, + [SMALL_STATE(5844)] = 230269, + [SMALL_STATE(5845)] = 230293, + [SMALL_STATE(5846)] = 230329, + [SMALL_STATE(5847)] = 230365, + [SMALL_STATE(5848)] = 230395, + [SMALL_STATE(5849)] = 230425, + [SMALL_STATE(5850)] = 230455, + [SMALL_STATE(5851)] = 230484, + [SMALL_STATE(5852)] = 230519, + [SMALL_STATE(5853)] = 230548, + [SMALL_STATE(5854)] = 230567, + [SMALL_STATE(5855)] = 230602, + [SMALL_STATE(5856)] = 230627, + [SMALL_STATE(5857)] = 230662, + [SMALL_STATE(5858)] = 230681, + [SMALL_STATE(5859)] = 230706, + [SMALL_STATE(5860)] = 230731, + [SMALL_STATE(5861)] = 230766, + [SMALL_STATE(5862)] = 230791, + [SMALL_STATE(5863)] = 230822, + [SMALL_STATE(5864)] = 230847, + [SMALL_STATE(5865)] = 230872, + [SMALL_STATE(5866)] = 230891, + [SMALL_STATE(5867)] = 230914, + [SMALL_STATE(5868)] = 230935, + [SMALL_STATE(5869)] = 230960, + [SMALL_STATE(5870)] = 230985, + [SMALL_STATE(5871)] = 231010, + [SMALL_STATE(5872)] = 231041, + [SMALL_STATE(5873)] = 231072, + [SMALL_STATE(5874)] = 231091, + [SMALL_STATE(5875)] = 231116, + [SMALL_STATE(5876)] = 231143, + [SMALL_STATE(5877)] = 231178, + [SMALL_STATE(5878)] = 231197, + [SMALL_STATE(5879)] = 231232, + [SMALL_STATE(5880)] = 231261, + [SMALL_STATE(5881)] = 231280, + [SMALL_STATE(5882)] = 231305, + [SMALL_STATE(5883)] = 231336, + [SMALL_STATE(5884)] = 231355, + [SMALL_STATE(5885)] = 231390, + [SMALL_STATE(5886)] = 231417, + [SMALL_STATE(5887)] = 231444, + [SMALL_STATE(5888)] = 231471, + [SMALL_STATE(5889)] = 231496, + [SMALL_STATE(5890)] = 231523, + [SMALL_STATE(5891)] = 231550, + [SMALL_STATE(5892)] = 231577, + [SMALL_STATE(5893)] = 231596, + [SMALL_STATE(5894)] = 231627, + [SMALL_STATE(5895)] = 231654, + [SMALL_STATE(5896)] = 231683, + [SMALL_STATE(5897)] = 231708, + [SMALL_STATE(5898)] = 231733, + [SMALL_STATE(5899)] = 231764, + [SMALL_STATE(5900)] = 231799, + [SMALL_STATE(5901)] = 231830, + [SMALL_STATE(5902)] = 231859, + [SMALL_STATE(5903)] = 231886, + [SMALL_STATE(5904)] = 231921, + [SMALL_STATE(5905)] = 231944, + [SMALL_STATE(5906)] = 231975, + [SMALL_STATE(5907)] = 231994, + [SMALL_STATE(5908)] = 232025, + [SMALL_STATE(5909)] = 232052, + [SMALL_STATE(5910)] = 232076, + [SMALL_STATE(5911)] = 232094, + [SMALL_STATE(5912)] = 232116, + [SMALL_STATE(5913)] = 232134, + [SMALL_STATE(5914)] = 232152, + [SMALL_STATE(5915)] = 232176, + [SMALL_STATE(5916)] = 232200, + [SMALL_STATE(5917)] = 232230, + [SMALL_STATE(5918)] = 232248, + [SMALL_STATE(5919)] = 232272, + [SMALL_STATE(5920)] = 232296, + [SMALL_STATE(5921)] = 232320, + [SMALL_STATE(5922)] = 232342, + [SMALL_STATE(5923)] = 232366, + [SMALL_STATE(5924)] = 232390, + [SMALL_STATE(5925)] = 232420, + [SMALL_STATE(5926)] = 232442, + [SMALL_STATE(5927)] = 232472, + [SMALL_STATE(5928)] = 232502, + [SMALL_STATE(5929)] = 232524, + [SMALL_STATE(5930)] = 232546, + [SMALL_STATE(5931)] = 232568, + [SMALL_STATE(5932)] = 232598, + [SMALL_STATE(5933)] = 232620, + [SMALL_STATE(5934)] = 232642, + [SMALL_STATE(5935)] = 232660, + [SMALL_STATE(5936)] = 232690, + [SMALL_STATE(5937)] = 232712, + [SMALL_STATE(5938)] = 232730, + [SMALL_STATE(5939)] = 232752, + [SMALL_STATE(5940)] = 232770, + [SMALL_STATE(5941)] = 232794, + [SMALL_STATE(5942)] = 232824, + [SMALL_STATE(5943)] = 232854, + [SMALL_STATE(5944)] = 232876, + [SMALL_STATE(5945)] = 232908, + [SMALL_STATE(5946)] = 232927, + [SMALL_STATE(5947)] = 232948, + [SMALL_STATE(5948)] = 232975, + [SMALL_STATE(5949)] = 233002, + [SMALL_STATE(5950)] = 233033, + [SMALL_STATE(5951)] = 233060, + [SMALL_STATE(5952)] = 233091, + [SMALL_STATE(5953)] = 233112, + [SMALL_STATE(5954)] = 233143, + [SMALL_STATE(5955)] = 233170, + [SMALL_STATE(5956)] = 233191, + [SMALL_STATE(5957)] = 233222, + [SMALL_STATE(5958)] = 233249, + [SMALL_STATE(5959)] = 233270, + [SMALL_STATE(5960)] = 233301, + [SMALL_STATE(5961)] = 233332, + [SMALL_STATE(5962)] = 233359, + [SMALL_STATE(5963)] = 233390, + [SMALL_STATE(5964)] = 233409, + [SMALL_STATE(5965)] = 233440, + [SMALL_STATE(5966)] = 233471, + [SMALL_STATE(5967)] = 233502, + [SMALL_STATE(5968)] = 233527, + [SMALL_STATE(5969)] = 233558, + [SMALL_STATE(5970)] = 233579, + [SMALL_STATE(5971)] = 233602, + [SMALL_STATE(5972)] = 233625, + [SMALL_STATE(5973)] = 233656, + [SMALL_STATE(5974)] = 233679, + [SMALL_STATE(5975)] = 233706, + [SMALL_STATE(5976)] = 233737, + [SMALL_STATE(5977)] = 233760, + [SMALL_STATE(5978)] = 233787, + [SMALL_STATE(5979)] = 233818, + [SMALL_STATE(5980)] = 233845, + [SMALL_STATE(5981)] = 233876, + [SMALL_STATE(5982)] = 233899, + [SMALL_STATE(5983)] = 233930, + [SMALL_STATE(5984)] = 233961, + [SMALL_STATE(5985)] = 233988, + [SMALL_STATE(5986)] = 234009, + [SMALL_STATE(5987)] = 234032, + [SMALL_STATE(5988)] = 234063, + [SMALL_STATE(5989)] = 234094, + [SMALL_STATE(5990)] = 234117, + [SMALL_STATE(5991)] = 234140, + [SMALL_STATE(5992)] = 234163, + [SMALL_STATE(5993)] = 234194, + [SMALL_STATE(5994)] = 234214, + [SMALL_STATE(5995)] = 234240, + [SMALL_STATE(5996)] = 234266, + [SMALL_STATE(5997)] = 234288, + [SMALL_STATE(5998)] = 234308, + [SMALL_STATE(5999)] = 234330, + [SMALL_STATE(6000)] = 234356, + [SMALL_STATE(6001)] = 234382, + [SMALL_STATE(6002)] = 234408, + [SMALL_STATE(6003)] = 234432, + [SMALL_STATE(6004)] = 234458, + [SMALL_STATE(6005)] = 234482, + [SMALL_STATE(6006)] = 234506, + [SMALL_STATE(6007)] = 234532, + [SMALL_STATE(6008)] = 234558, + [SMALL_STATE(6009)] = 234584, + [SMALL_STATE(6010)] = 234610, + [SMALL_STATE(6011)] = 234636, + [SMALL_STATE(6012)] = 234658, + [SMALL_STATE(6013)] = 234680, + [SMALL_STATE(6014)] = 234706, + [SMALL_STATE(6015)] = 234732, + [SMALL_STATE(6016)] = 234754, + [SMALL_STATE(6017)] = 234776, + [SMALL_STATE(6018)] = 234802, + [SMALL_STATE(6019)] = 234828, + [SMALL_STATE(6020)] = 234854, + [SMALL_STATE(6021)] = 234876, + [SMALL_STATE(6022)] = 234898, + [SMALL_STATE(6023)] = 234924, + [SMALL_STATE(6024)] = 234940, + [SMALL_STATE(6025)] = 234962, + [SMALL_STATE(6026)] = 234980, + [SMALL_STATE(6027)] = 235006, + [SMALL_STATE(6028)] = 235032, + [SMALL_STATE(6029)] = 235054, + [SMALL_STATE(6030)] = 235080, + [SMALL_STATE(6031)] = 235100, + [SMALL_STATE(6032)] = 235122, + [SMALL_STATE(6033)] = 235148, + [SMALL_STATE(6034)] = 235174, + [SMALL_STATE(6035)] = 235200, + [SMALL_STATE(6036)] = 235222, + [SMALL_STATE(6037)] = 235248, + [SMALL_STATE(6038)] = 235264, + [SMALL_STATE(6039)] = 235290, + [SMALL_STATE(6040)] = 235316, + [SMALL_STATE(6041)] = 235342, + [SMALL_STATE(6042)] = 235366, + [SMALL_STATE(6043)] = 235388, + [SMALL_STATE(6044)] = 235414, + [SMALL_STATE(6045)] = 235440, + [SMALL_STATE(6046)] = 235466, + [SMALL_STATE(6047)] = 235492, + [SMALL_STATE(6048)] = 235518, + [SMALL_STATE(6049)] = 235539, + [SMALL_STATE(6050)] = 235564, + [SMALL_STATE(6051)] = 235579, + [SMALL_STATE(6052)] = 235594, + [SMALL_STATE(6053)] = 235615, + [SMALL_STATE(6054)] = 235640, + [SMALL_STATE(6055)] = 235661, + [SMALL_STATE(6056)] = 235686, + [SMALL_STATE(6057)] = 235707, + [SMALL_STATE(6058)] = 235730, + [SMALL_STATE(6059)] = 235755, + [SMALL_STATE(6060)] = 235776, + [SMALL_STATE(6061)] = 235799, + [SMALL_STATE(6062)] = 235822, + [SMALL_STATE(6063)] = 235843, + [SMALL_STATE(6064)] = 235866, + [SMALL_STATE(6065)] = 235881, + [SMALL_STATE(6066)] = 235906, + [SMALL_STATE(6067)] = 235929, + [SMALL_STATE(6068)] = 235952, + [SMALL_STATE(6069)] = 235977, + [SMALL_STATE(6070)] = 235998, + [SMALL_STATE(6071)] = 236021, + [SMALL_STATE(6072)] = 236036, + [SMALL_STATE(6073)] = 236057, + [SMALL_STATE(6074)] = 236072, + [SMALL_STATE(6075)] = 236093, + [SMALL_STATE(6076)] = 236114, + [SMALL_STATE(6077)] = 236139, + [SMALL_STATE(6078)] = 236154, + [SMALL_STATE(6079)] = 236169, + [SMALL_STATE(6080)] = 236184, + [SMALL_STATE(6081)] = 236207, + [SMALL_STATE(6082)] = 236232, + [SMALL_STATE(6083)] = 236255, + [SMALL_STATE(6084)] = 236276, + [SMALL_STATE(6085)] = 236297, + [SMALL_STATE(6086)] = 236318, + [SMALL_STATE(6087)] = 236343, + [SMALL_STATE(6088)] = 236362, + [SMALL_STATE(6089)] = 236387, + [SMALL_STATE(6090)] = 236408, + [SMALL_STATE(6091)] = 236431, + [SMALL_STATE(6092)] = 236451, + [SMALL_STATE(6093)] = 236469, + [SMALL_STATE(6094)] = 236487, + [SMALL_STATE(6095)] = 236501, + [SMALL_STATE(6096)] = 236521, + [SMALL_STATE(6097)] = 236537, + [SMALL_STATE(6098)] = 236553, + [SMALL_STATE(6099)] = 236573, + [SMALL_STATE(6100)] = 236593, + [SMALL_STATE(6101)] = 236611, + [SMALL_STATE(6102)] = 236627, + [SMALL_STATE(6103)] = 236643, + [SMALL_STATE(6104)] = 236657, + [SMALL_STATE(6105)] = 236673, + [SMALL_STATE(6106)] = 236689, + [SMALL_STATE(6107)] = 236709, + [SMALL_STATE(6108)] = 236729, + [SMALL_STATE(6109)] = 236749, + [SMALL_STATE(6110)] = 236763, + [SMALL_STATE(6111)] = 236783, + [SMALL_STATE(6112)] = 236799, + [SMALL_STATE(6113)] = 236819, + [SMALL_STATE(6114)] = 236837, + [SMALL_STATE(6115)] = 236855, + [SMALL_STATE(6116)] = 236873, + [SMALL_STATE(6117)] = 236889, + [SMALL_STATE(6118)] = 236909, + [SMALL_STATE(6119)] = 236929, + [SMALL_STATE(6120)] = 236945, + [SMALL_STATE(6121)] = 236965, + [SMALL_STATE(6122)] = 236985, + [SMALL_STATE(6123)] = 237005, + [SMALL_STATE(6124)] = 237021, + [SMALL_STATE(6125)] = 237037, + [SMALL_STATE(6126)] = 237055, + [SMALL_STATE(6127)] = 237071, + [SMALL_STATE(6128)] = 237091, + [SMALL_STATE(6129)] = 237109, + [SMALL_STATE(6130)] = 237127, + [SMALL_STATE(6131)] = 237147, + [SMALL_STATE(6132)] = 237163, + [SMALL_STATE(6133)] = 237183, + [SMALL_STATE(6134)] = 237199, + [SMALL_STATE(6135)] = 237219, + [SMALL_STATE(6136)] = 237237, + [SMALL_STATE(6137)] = 237257, + [SMALL_STATE(6138)] = 237277, + [SMALL_STATE(6139)] = 237293, + [SMALL_STATE(6140)] = 237312, + [SMALL_STATE(6141)] = 237331, + [SMALL_STATE(6142)] = 237348, + [SMALL_STATE(6143)] = 237365, + [SMALL_STATE(6144)] = 237382, + [SMALL_STATE(6145)] = 237401, + [SMALL_STATE(6146)] = 237420, + [SMALL_STATE(6147)] = 237439, + [SMALL_STATE(6148)] = 237458, + [SMALL_STATE(6149)] = 237477, + [SMALL_STATE(6150)] = 237496, + [SMALL_STATE(6151)] = 237515, + [SMALL_STATE(6152)] = 237534, + [SMALL_STATE(6153)] = 237553, + [SMALL_STATE(6154)] = 237572, + [SMALL_STATE(6155)] = 237591, + [SMALL_STATE(6156)] = 237610, + [SMALL_STATE(6157)] = 237629, + [SMALL_STATE(6158)] = 237648, + [SMALL_STATE(6159)] = 237667, + [SMALL_STATE(6160)] = 237686, + [SMALL_STATE(6161)] = 237699, + [SMALL_STATE(6162)] = 237718, + [SMALL_STATE(6163)] = 237737, + [SMALL_STATE(6164)] = 237756, + [SMALL_STATE(6165)] = 237775, + [SMALL_STATE(6166)] = 237794, + [SMALL_STATE(6167)] = 237813, + [SMALL_STATE(6168)] = 237832, + [SMALL_STATE(6169)] = 237849, + [SMALL_STATE(6170)] = 237868, + [SMALL_STATE(6171)] = 237887, + [SMALL_STATE(6172)] = 237906, + [SMALL_STATE(6173)] = 237925, + [SMALL_STATE(6174)] = 237938, + [SMALL_STATE(6175)] = 237957, + [SMALL_STATE(6176)] = 237976, + [SMALL_STATE(6177)] = 237995, + [SMALL_STATE(6178)] = 238014, + [SMALL_STATE(6179)] = 238033, + [SMALL_STATE(6180)] = 238050, + [SMALL_STATE(6181)] = 238069, + [SMALL_STATE(6182)] = 238088, + [SMALL_STATE(6183)] = 238107, + [SMALL_STATE(6184)] = 238126, + [SMALL_STATE(6185)] = 238143, + [SMALL_STATE(6186)] = 238162, + [SMALL_STATE(6187)] = 238181, + [SMALL_STATE(6188)] = 238200, + [SMALL_STATE(6189)] = 238219, + [SMALL_STATE(6190)] = 238238, + [SMALL_STATE(6191)] = 238257, + [SMALL_STATE(6192)] = 238276, + [SMALL_STATE(6193)] = 238295, + [SMALL_STATE(6194)] = 238314, + [SMALL_STATE(6195)] = 238331, + [SMALL_STATE(6196)] = 238350, + [SMALL_STATE(6197)] = 238369, + [SMALL_STATE(6198)] = 238388, + [SMALL_STATE(6199)] = 238407, + [SMALL_STATE(6200)] = 238421, + [SMALL_STATE(6201)] = 238437, + [SMALL_STATE(6202)] = 238453, + [SMALL_STATE(6203)] = 238467, + [SMALL_STATE(6204)] = 238483, + [SMALL_STATE(6205)] = 238499, + [SMALL_STATE(6206)] = 238515, + [SMALL_STATE(6207)] = 238531, + [SMALL_STATE(6208)] = 238547, + [SMALL_STATE(6209)] = 238563, + [SMALL_STATE(6210)] = 238579, + [SMALL_STATE(6211)] = 238595, + [SMALL_STATE(6212)] = 238611, + [SMALL_STATE(6213)] = 238625, + [SMALL_STATE(6214)] = 238639, + [SMALL_STATE(6215)] = 238651, + [SMALL_STATE(6216)] = 238667, + [SMALL_STATE(6217)] = 238683, + [SMALL_STATE(6218)] = 238699, + [SMALL_STATE(6219)] = 238713, + [SMALL_STATE(6220)] = 238727, + [SMALL_STATE(6221)] = 238743, + [SMALL_STATE(6222)] = 238759, + [SMALL_STATE(6223)] = 238773, + [SMALL_STATE(6224)] = 238789, + [SMALL_STATE(6225)] = 238803, + [SMALL_STATE(6226)] = 238817, + [SMALL_STATE(6227)] = 238833, + [SMALL_STATE(6228)] = 238847, + [SMALL_STATE(6229)] = 238861, + [SMALL_STATE(6230)] = 238877, + [SMALL_STATE(6231)] = 238891, + [SMALL_STATE(6232)] = 238907, + [SMALL_STATE(6233)] = 238921, + [SMALL_STATE(6234)] = 238937, + [SMALL_STATE(6235)] = 238951, + [SMALL_STATE(6236)] = 238967, + [SMALL_STATE(6237)] = 238983, + [SMALL_STATE(6238)] = 238997, + [SMALL_STATE(6239)] = 239011, + [SMALL_STATE(6240)] = 239027, + [SMALL_STATE(6241)] = 239041, + [SMALL_STATE(6242)] = 239057, + [SMALL_STATE(6243)] = 239071, + [SMALL_STATE(6244)] = 239087, + [SMALL_STATE(6245)] = 239101, + [SMALL_STATE(6246)] = 239115, + [SMALL_STATE(6247)] = 239131, + [SMALL_STATE(6248)] = 239145, + [SMALL_STATE(6249)] = 239159, + [SMALL_STATE(6250)] = 239173, + [SMALL_STATE(6251)] = 239187, + [SMALL_STATE(6252)] = 239201, + [SMALL_STATE(6253)] = 239217, + [SMALL_STATE(6254)] = 239233, + [SMALL_STATE(6255)] = 239249, + [SMALL_STATE(6256)] = 239265, + [SMALL_STATE(6257)] = 239279, + [SMALL_STATE(6258)] = 239293, + [SMALL_STATE(6259)] = 239307, + [SMALL_STATE(6260)] = 239323, + [SMALL_STATE(6261)] = 239339, + [SMALL_STATE(6262)] = 239355, + [SMALL_STATE(6263)] = 239371, + [SMALL_STATE(6264)] = 239385, + [SMALL_STATE(6265)] = 239401, + [SMALL_STATE(6266)] = 239417, + [SMALL_STATE(6267)] = 239433, + [SMALL_STATE(6268)] = 239449, + [SMALL_STATE(6269)] = 239463, + [SMALL_STATE(6270)] = 239479, + [SMALL_STATE(6271)] = 239495, + [SMALL_STATE(6272)] = 239511, + [SMALL_STATE(6273)] = 239525, + [SMALL_STATE(6274)] = 239539, + [SMALL_STATE(6275)] = 239553, + [SMALL_STATE(6276)] = 239569, + [SMALL_STATE(6277)] = 239585, + [SMALL_STATE(6278)] = 239601, + [SMALL_STATE(6279)] = 239615, + [SMALL_STATE(6280)] = 239629, + [SMALL_STATE(6281)] = 239645, + [SMALL_STATE(6282)] = 239661, + [SMALL_STATE(6283)] = 239677, + [SMALL_STATE(6284)] = 239693, + [SMALL_STATE(6285)] = 239709, + [SMALL_STATE(6286)] = 239723, + [SMALL_STATE(6287)] = 239739, + [SMALL_STATE(6288)] = 239755, + [SMALL_STATE(6289)] = 239767, + [SMALL_STATE(6290)] = 239783, + [SMALL_STATE(6291)] = 239799, + [SMALL_STATE(6292)] = 239815, + [SMALL_STATE(6293)] = 239831, + [SMALL_STATE(6294)] = 239847, + [SMALL_STATE(6295)] = 239863, + [SMALL_STATE(6296)] = 239879, + [SMALL_STATE(6297)] = 239895, + [SMALL_STATE(6298)] = 239909, + [SMALL_STATE(6299)] = 239923, + [SMALL_STATE(6300)] = 239939, + [SMALL_STATE(6301)] = 239955, + [SMALL_STATE(6302)] = 239969, + [SMALL_STATE(6303)] = 239985, + [SMALL_STATE(6304)] = 239999, + [SMALL_STATE(6305)] = 240015, + [SMALL_STATE(6306)] = 240031, + [SMALL_STATE(6307)] = 240045, + [SMALL_STATE(6308)] = 240061, + [SMALL_STATE(6309)] = 240075, + [SMALL_STATE(6310)] = 240089, + [SMALL_STATE(6311)] = 240103, + [SMALL_STATE(6312)] = 240119, + [SMALL_STATE(6313)] = 240135, + [SMALL_STATE(6314)] = 240149, + [SMALL_STATE(6315)] = 240165, + [SMALL_STATE(6316)] = 240179, + [SMALL_STATE(6317)] = 240195, + [SMALL_STATE(6318)] = 240211, + [SMALL_STATE(6319)] = 240225, + [SMALL_STATE(6320)] = 240239, + [SMALL_STATE(6321)] = 240255, + [SMALL_STATE(6322)] = 240271, + [SMALL_STATE(6323)] = 240287, + [SMALL_STATE(6324)] = 240303, + [SMALL_STATE(6325)] = 240319, + [SMALL_STATE(6326)] = 240333, + [SMALL_STATE(6327)] = 240347, + [SMALL_STATE(6328)] = 240363, + [SMALL_STATE(6329)] = 240377, + [SMALL_STATE(6330)] = 240393, + [SMALL_STATE(6331)] = 240409, + [SMALL_STATE(6332)] = 240425, + [SMALL_STATE(6333)] = 240439, + [SMALL_STATE(6334)] = 240455, + [SMALL_STATE(6335)] = 240471, + [SMALL_STATE(6336)] = 240487, + [SMALL_STATE(6337)] = 240501, + [SMALL_STATE(6338)] = 240517, + [SMALL_STATE(6339)] = 240533, + [SMALL_STATE(6340)] = 240549, + [SMALL_STATE(6341)] = 240565, + [SMALL_STATE(6342)] = 240581, + [SMALL_STATE(6343)] = 240597, + [SMALL_STATE(6344)] = 240613, + [SMALL_STATE(6345)] = 240629, + [SMALL_STATE(6346)] = 240645, + [SMALL_STATE(6347)] = 240661, + [SMALL_STATE(6348)] = 240677, + [SMALL_STATE(6349)] = 240691, + [SMALL_STATE(6350)] = 240707, + [SMALL_STATE(6351)] = 240721, + [SMALL_STATE(6352)] = 240735, + [SMALL_STATE(6353)] = 240751, + [SMALL_STATE(6354)] = 240765, + [SMALL_STATE(6355)] = 240781, + [SMALL_STATE(6356)] = 240797, + [SMALL_STATE(6357)] = 240811, + [SMALL_STATE(6358)] = 240827, + [SMALL_STATE(6359)] = 240841, + [SMALL_STATE(6360)] = 240851, + [SMALL_STATE(6361)] = 240865, + [SMALL_STATE(6362)] = 240879, + [SMALL_STATE(6363)] = 240893, + [SMALL_STATE(6364)] = 240907, + [SMALL_STATE(6365)] = 240921, + [SMALL_STATE(6366)] = 240937, + [SMALL_STATE(6367)] = 240951, + [SMALL_STATE(6368)] = 240967, + [SMALL_STATE(6369)] = 240983, + [SMALL_STATE(6370)] = 240999, + [SMALL_STATE(6371)] = 241015, + [SMALL_STATE(6372)] = 241031, + [SMALL_STATE(6373)] = 241047, + [SMALL_STATE(6374)] = 241057, + [SMALL_STATE(6375)] = 241071, + [SMALL_STATE(6376)] = 241087, + [SMALL_STATE(6377)] = 241103, + [SMALL_STATE(6378)] = 241119, + [SMALL_STATE(6379)] = 241133, + [SMALL_STATE(6380)] = 241149, + [SMALL_STATE(6381)] = 241165, + [SMALL_STATE(6382)] = 241181, + [SMALL_STATE(6383)] = 241197, + [SMALL_STATE(6384)] = 241213, + [SMALL_STATE(6385)] = 241225, + [SMALL_STATE(6386)] = 241239, + [SMALL_STATE(6387)] = 241255, + [SMALL_STATE(6388)] = 241271, + [SMALL_STATE(6389)] = 241285, + [SMALL_STATE(6390)] = 241301, + [SMALL_STATE(6391)] = 241315, + [SMALL_STATE(6392)] = 241329, + [SMALL_STATE(6393)] = 241343, + [SMALL_STATE(6394)] = 241357, + [SMALL_STATE(6395)] = 241373, + [SMALL_STATE(6396)] = 241387, + [SMALL_STATE(6397)] = 241401, + [SMALL_STATE(6398)] = 241415, + [SMALL_STATE(6399)] = 241431, + [SMALL_STATE(6400)] = 241447, + [SMALL_STATE(6401)] = 241463, + [SMALL_STATE(6402)] = 241477, + [SMALL_STATE(6403)] = 241491, + [SMALL_STATE(6404)] = 241507, + [SMALL_STATE(6405)] = 241523, + [SMALL_STATE(6406)] = 241535, + [SMALL_STATE(6407)] = 241549, + [SMALL_STATE(6408)] = 241563, + [SMALL_STATE(6409)] = 241579, + [SMALL_STATE(6410)] = 241593, + [SMALL_STATE(6411)] = 241609, + [SMALL_STATE(6412)] = 241625, + [SMALL_STATE(6413)] = 241639, + [SMALL_STATE(6414)] = 241653, + [SMALL_STATE(6415)] = 241665, + [SMALL_STATE(6416)] = 241681, + [SMALL_STATE(6417)] = 241697, + [SMALL_STATE(6418)] = 241711, + [SMALL_STATE(6419)] = 241725, + [SMALL_STATE(6420)] = 241741, + [SMALL_STATE(6421)] = 241755, + [SMALL_STATE(6422)] = 241771, + [SMALL_STATE(6423)] = 241787, + [SMALL_STATE(6424)] = 241803, + [SMALL_STATE(6425)] = 241817, + [SMALL_STATE(6426)] = 241833, + [SMALL_STATE(6427)] = 241847, + [SMALL_STATE(6428)] = 241863, + [SMALL_STATE(6429)] = 241877, + [SMALL_STATE(6430)] = 241891, + [SMALL_STATE(6431)] = 241905, + [SMALL_STATE(6432)] = 241919, + [SMALL_STATE(6433)] = 241933, + [SMALL_STATE(6434)] = 241947, + [SMALL_STATE(6435)] = 241963, + [SMALL_STATE(6436)] = 241979, + [SMALL_STATE(6437)] = 241995, + [SMALL_STATE(6438)] = 242011, + [SMALL_STATE(6439)] = 242025, + [SMALL_STATE(6440)] = 242041, + [SMALL_STATE(6441)] = 242057, + [SMALL_STATE(6442)] = 242073, + [SMALL_STATE(6443)] = 242087, + [SMALL_STATE(6444)] = 242101, + [SMALL_STATE(6445)] = 242117, + [SMALL_STATE(6446)] = 242133, + [SMALL_STATE(6447)] = 242147, + [SMALL_STATE(6448)] = 242161, + [SMALL_STATE(6449)] = 242177, + [SMALL_STATE(6450)] = 242191, + [SMALL_STATE(6451)] = 242205, + [SMALL_STATE(6452)] = 242221, + [SMALL_STATE(6453)] = 242237, + [SMALL_STATE(6454)] = 242253, + [SMALL_STATE(6455)] = 242267, + [SMALL_STATE(6456)] = 242281, + [SMALL_STATE(6457)] = 242297, + [SMALL_STATE(6458)] = 242313, + [SMALL_STATE(6459)] = 242323, + [SMALL_STATE(6460)] = 242337, + [SMALL_STATE(6461)] = 242351, + [SMALL_STATE(6462)] = 242365, + [SMALL_STATE(6463)] = 242379, + [SMALL_STATE(6464)] = 242395, + [SMALL_STATE(6465)] = 242411, + [SMALL_STATE(6466)] = 242427, + [SMALL_STATE(6467)] = 242443, + [SMALL_STATE(6468)] = 242459, + [SMALL_STATE(6469)] = 242473, + [SMALL_STATE(6470)] = 242487, + [SMALL_STATE(6471)] = 242501, + [SMALL_STATE(6472)] = 242514, + [SMALL_STATE(6473)] = 242527, + [SMALL_STATE(6474)] = 242540, + [SMALL_STATE(6475)] = 242553, + [SMALL_STATE(6476)] = 242566, + [SMALL_STATE(6477)] = 242577, + [SMALL_STATE(6478)] = 242590, + [SMALL_STATE(6479)] = 242603, + [SMALL_STATE(6480)] = 242614, + [SMALL_STATE(6481)] = 242627, + [SMALL_STATE(6482)] = 242640, + [SMALL_STATE(6483)] = 242653, + [SMALL_STATE(6484)] = 242666, + [SMALL_STATE(6485)] = 242679, + [SMALL_STATE(6486)] = 242692, + [SMALL_STATE(6487)] = 242705, + [SMALL_STATE(6488)] = 242718, + [SMALL_STATE(6489)] = 242729, + [SMALL_STATE(6490)] = 242742, + [SMALL_STATE(6491)] = 242755, + [SMALL_STATE(6492)] = 242768, + [SMALL_STATE(6493)] = 242781, + [SMALL_STATE(6494)] = 242794, + [SMALL_STATE(6495)] = 242807, + [SMALL_STATE(6496)] = 242818, + [SMALL_STATE(6497)] = 242831, + [SMALL_STATE(6498)] = 242844, + [SMALL_STATE(6499)] = 242857, + [SMALL_STATE(6500)] = 242870, + [SMALL_STATE(6501)] = 242879, + [SMALL_STATE(6502)] = 242890, + [SMALL_STATE(6503)] = 242903, + [SMALL_STATE(6504)] = 242916, + [SMALL_STATE(6505)] = 242929, + [SMALL_STATE(6506)] = 242942, + [SMALL_STATE(6507)] = 242955, + [SMALL_STATE(6508)] = 242966, + [SMALL_STATE(6509)] = 242979, + [SMALL_STATE(6510)] = 242992, + [SMALL_STATE(6511)] = 243005, + [SMALL_STATE(6512)] = 243016, + [SMALL_STATE(6513)] = 243029, + [SMALL_STATE(6514)] = 243042, + [SMALL_STATE(6515)] = 243055, + [SMALL_STATE(6516)] = 243068, + [SMALL_STATE(6517)] = 243081, + [SMALL_STATE(6518)] = 243094, + [SMALL_STATE(6519)] = 243105, + [SMALL_STATE(6520)] = 243118, + [SMALL_STATE(6521)] = 243131, + [SMALL_STATE(6522)] = 243144, + [SMALL_STATE(6523)] = 243157, + [SMALL_STATE(6524)] = 243170, + [SMALL_STATE(6525)] = 243183, + [SMALL_STATE(6526)] = 243194, + [SMALL_STATE(6527)] = 243203, + [SMALL_STATE(6528)] = 243216, + [SMALL_STATE(6529)] = 243229, + [SMALL_STATE(6530)] = 243238, + [SMALL_STATE(6531)] = 243249, + [SMALL_STATE(6532)] = 243262, + [SMALL_STATE(6533)] = 243275, + [SMALL_STATE(6534)] = 243288, + [SMALL_STATE(6535)] = 243301, + [SMALL_STATE(6536)] = 243314, + [SMALL_STATE(6537)] = 243327, + [SMALL_STATE(6538)] = 243340, + [SMALL_STATE(6539)] = 243353, + [SMALL_STATE(6540)] = 243366, + [SMALL_STATE(6541)] = 243375, + [SMALL_STATE(6542)] = 243388, + [SMALL_STATE(6543)] = 243401, + [SMALL_STATE(6544)] = 243414, + [SMALL_STATE(6545)] = 243425, + [SMALL_STATE(6546)] = 243438, + [SMALL_STATE(6547)] = 243451, + [SMALL_STATE(6548)] = 243460, + [SMALL_STATE(6549)] = 243473, + [SMALL_STATE(6550)] = 243486, + [SMALL_STATE(6551)] = 243499, + [SMALL_STATE(6552)] = 243512, + [SMALL_STATE(6553)] = 243525, + [SMALL_STATE(6554)] = 243536, + [SMALL_STATE(6555)] = 243549, + [SMALL_STATE(6556)] = 243560, + [SMALL_STATE(6557)] = 243573, + [SMALL_STATE(6558)] = 243586, + [SMALL_STATE(6559)] = 243599, + [SMALL_STATE(6560)] = 243612, + [SMALL_STATE(6561)] = 243625, + [SMALL_STATE(6562)] = 243638, + [SMALL_STATE(6563)] = 243651, + [SMALL_STATE(6564)] = 243664, + [SMALL_STATE(6565)] = 243677, + [SMALL_STATE(6566)] = 243690, + [SMALL_STATE(6567)] = 243703, + [SMALL_STATE(6568)] = 243716, + [SMALL_STATE(6569)] = 243725, + [SMALL_STATE(6570)] = 243738, + [SMALL_STATE(6571)] = 243751, + [SMALL_STATE(6572)] = 243760, + [SMALL_STATE(6573)] = 243773, + [SMALL_STATE(6574)] = 243786, + [SMALL_STATE(6575)] = 243799, + [SMALL_STATE(6576)] = 243812, + [SMALL_STATE(6577)] = 243821, + [SMALL_STATE(6578)] = 243832, + [SMALL_STATE(6579)] = 243841, + [SMALL_STATE(6580)] = 243854, + [SMALL_STATE(6581)] = 243867, + [SMALL_STATE(6582)] = 243880, + [SMALL_STATE(6583)] = 243891, + [SMALL_STATE(6584)] = 243904, + [SMALL_STATE(6585)] = 243917, + [SMALL_STATE(6586)] = 243926, + [SMALL_STATE(6587)] = 243935, + [SMALL_STATE(6588)] = 243948, + [SMALL_STATE(6589)] = 243961, + [SMALL_STATE(6590)] = 243974, + [SMALL_STATE(6591)] = 243987, + [SMALL_STATE(6592)] = 244000, + [SMALL_STATE(6593)] = 244013, + [SMALL_STATE(6594)] = 244026, + [SMALL_STATE(6595)] = 244037, + [SMALL_STATE(6596)] = 244050, + [SMALL_STATE(6597)] = 244063, + [SMALL_STATE(6598)] = 244076, + [SMALL_STATE(6599)] = 244089, + [SMALL_STATE(6600)] = 244102, + [SMALL_STATE(6601)] = 244115, + [SMALL_STATE(6602)] = 244128, + [SMALL_STATE(6603)] = 244141, + [SMALL_STATE(6604)] = 244154, + [SMALL_STATE(6605)] = 244167, + [SMALL_STATE(6606)] = 244180, + [SMALL_STATE(6607)] = 244193, + [SMALL_STATE(6608)] = 244206, + [SMALL_STATE(6609)] = 244219, + [SMALL_STATE(6610)] = 244232, + [SMALL_STATE(6611)] = 244245, + [SMALL_STATE(6612)] = 244258, + [SMALL_STATE(6613)] = 244271, + [SMALL_STATE(6614)] = 244284, + [SMALL_STATE(6615)] = 244297, + [SMALL_STATE(6616)] = 244310, + [SMALL_STATE(6617)] = 244321, + [SMALL_STATE(6618)] = 244334, + [SMALL_STATE(6619)] = 244347, + [SMALL_STATE(6620)] = 244360, + [SMALL_STATE(6621)] = 244373, + [SMALL_STATE(6622)] = 244384, + [SMALL_STATE(6623)] = 244397, + [SMALL_STATE(6624)] = 244410, + [SMALL_STATE(6625)] = 244423, + [SMALL_STATE(6626)] = 244436, + [SMALL_STATE(6627)] = 244449, + [SMALL_STATE(6628)] = 244462, + [SMALL_STATE(6629)] = 244475, + [SMALL_STATE(6630)] = 244486, + [SMALL_STATE(6631)] = 244499, + [SMALL_STATE(6632)] = 244510, + [SMALL_STATE(6633)] = 244523, + [SMALL_STATE(6634)] = 244536, + [SMALL_STATE(6635)] = 244549, + [SMALL_STATE(6636)] = 244562, + [SMALL_STATE(6637)] = 244575, + [SMALL_STATE(6638)] = 244588, + [SMALL_STATE(6639)] = 244601, + [SMALL_STATE(6640)] = 244610, + [SMALL_STATE(6641)] = 244619, + [SMALL_STATE(6642)] = 244632, + [SMALL_STATE(6643)] = 244645, + [SMALL_STATE(6644)] = 244658, + [SMALL_STATE(6645)] = 244671, + [SMALL_STATE(6646)] = 244684, + [SMALL_STATE(6647)] = 244695, + [SMALL_STATE(6648)] = 244708, + [SMALL_STATE(6649)] = 244721, + [SMALL_STATE(6650)] = 244732, + [SMALL_STATE(6651)] = 244745, + [SMALL_STATE(6652)] = 244758, + [SMALL_STATE(6653)] = 244771, + [SMALL_STATE(6654)] = 244784, + [SMALL_STATE(6655)] = 244797, + [SMALL_STATE(6656)] = 244810, + [SMALL_STATE(6657)] = 244821, + [SMALL_STATE(6658)] = 244834, + [SMALL_STATE(6659)] = 244847, + [SMALL_STATE(6660)] = 244860, + [SMALL_STATE(6661)] = 244873, + [SMALL_STATE(6662)] = 244886, + [SMALL_STATE(6663)] = 244899, + [SMALL_STATE(6664)] = 244912, + [SMALL_STATE(6665)] = 244925, + [SMALL_STATE(6666)] = 244938, + [SMALL_STATE(6667)] = 244949, + [SMALL_STATE(6668)] = 244962, + [SMALL_STATE(6669)] = 244975, + [SMALL_STATE(6670)] = 244988, + [SMALL_STATE(6671)] = 244999, + [SMALL_STATE(6672)] = 245012, + [SMALL_STATE(6673)] = 245025, + [SMALL_STATE(6674)] = 245038, + [SMALL_STATE(6675)] = 245051, + [SMALL_STATE(6676)] = 245064, + [SMALL_STATE(6677)] = 245075, + [SMALL_STATE(6678)] = 245086, + [SMALL_STATE(6679)] = 245099, + [SMALL_STATE(6680)] = 245112, + [SMALL_STATE(6681)] = 245125, + [SMALL_STATE(6682)] = 245138, + [SMALL_STATE(6683)] = 245151, + [SMALL_STATE(6684)] = 245164, + [SMALL_STATE(6685)] = 245177, + [SMALL_STATE(6686)] = 245190, + [SMALL_STATE(6687)] = 245203, + [SMALL_STATE(6688)] = 245216, + [SMALL_STATE(6689)] = 245229, + [SMALL_STATE(6690)] = 245242, + [SMALL_STATE(6691)] = 245255, + [SMALL_STATE(6692)] = 245268, + [SMALL_STATE(6693)] = 245281, + [SMALL_STATE(6694)] = 245294, + [SMALL_STATE(6695)] = 245307, + [SMALL_STATE(6696)] = 245320, + [SMALL_STATE(6697)] = 245333, + [SMALL_STATE(6698)] = 245346, + [SMALL_STATE(6699)] = 245359, + [SMALL_STATE(6700)] = 245372, + [SMALL_STATE(6701)] = 245385, + [SMALL_STATE(6702)] = 245398, + [SMALL_STATE(6703)] = 245411, + [SMALL_STATE(6704)] = 245424, + [SMALL_STATE(6705)] = 245437, + [SMALL_STATE(6706)] = 245450, + [SMALL_STATE(6707)] = 245463, + [SMALL_STATE(6708)] = 245476, + [SMALL_STATE(6709)] = 245489, + [SMALL_STATE(6710)] = 245502, + [SMALL_STATE(6711)] = 245515, + [SMALL_STATE(6712)] = 245526, + [SMALL_STATE(6713)] = 245537, + [SMALL_STATE(6714)] = 245550, + [SMALL_STATE(6715)] = 245563, + [SMALL_STATE(6716)] = 245576, + [SMALL_STATE(6717)] = 245589, + [SMALL_STATE(6718)] = 245600, + [SMALL_STATE(6719)] = 245613, + [SMALL_STATE(6720)] = 245626, + [SMALL_STATE(6721)] = 245639, + [SMALL_STATE(6722)] = 245652, + [SMALL_STATE(6723)] = 245665, + [SMALL_STATE(6724)] = 245676, + [SMALL_STATE(6725)] = 245689, + [SMALL_STATE(6726)] = 245702, + [SMALL_STATE(6727)] = 245715, + [SMALL_STATE(6728)] = 245726, + [SMALL_STATE(6729)] = 245737, + [SMALL_STATE(6730)] = 245748, + [SMALL_STATE(6731)] = 245761, + [SMALL_STATE(6732)] = 245774, + [SMALL_STATE(6733)] = 245787, + [SMALL_STATE(6734)] = 245800, + [SMALL_STATE(6735)] = 245813, + [SMALL_STATE(6736)] = 245826, + [SMALL_STATE(6737)] = 245839, + [SMALL_STATE(6738)] = 245852, + [SMALL_STATE(6739)] = 245865, + [SMALL_STATE(6740)] = 245878, + [SMALL_STATE(6741)] = 245891, + [SMALL_STATE(6742)] = 245904, + [SMALL_STATE(6743)] = 245917, + [SMALL_STATE(6744)] = 245930, + [SMALL_STATE(6745)] = 245943, + [SMALL_STATE(6746)] = 245956, + [SMALL_STATE(6747)] = 245967, + [SMALL_STATE(6748)] = 245980, + [SMALL_STATE(6749)] = 245993, + [SMALL_STATE(6750)] = 246006, + [SMALL_STATE(6751)] = 246019, + [SMALL_STATE(6752)] = 246032, + [SMALL_STATE(6753)] = 246045, + [SMALL_STATE(6754)] = 246058, + [SMALL_STATE(6755)] = 246071, + [SMALL_STATE(6756)] = 246084, + [SMALL_STATE(6757)] = 246097, + [SMALL_STATE(6758)] = 246108, + [SMALL_STATE(6759)] = 246121, + [SMALL_STATE(6760)] = 246134, + [SMALL_STATE(6761)] = 246147, + [SMALL_STATE(6762)] = 246160, + [SMALL_STATE(6763)] = 246173, + [SMALL_STATE(6764)] = 246186, + [SMALL_STATE(6765)] = 246199, + [SMALL_STATE(6766)] = 246212, + [SMALL_STATE(6767)] = 246225, + [SMALL_STATE(6768)] = 246234, + [SMALL_STATE(6769)] = 246243, + [SMALL_STATE(6770)] = 246254, + [SMALL_STATE(6771)] = 246267, + [SMALL_STATE(6772)] = 246280, + [SMALL_STATE(6773)] = 246293, + [SMALL_STATE(6774)] = 246306, + [SMALL_STATE(6775)] = 246319, + [SMALL_STATE(6776)] = 246332, + [SMALL_STATE(6777)] = 246345, + [SMALL_STATE(6778)] = 246358, + [SMALL_STATE(6779)] = 246371, + [SMALL_STATE(6780)] = 246384, + [SMALL_STATE(6781)] = 246395, + [SMALL_STATE(6782)] = 246408, + [SMALL_STATE(6783)] = 246421, + [SMALL_STATE(6784)] = 246434, + [SMALL_STATE(6785)] = 246447, + [SMALL_STATE(6786)] = 246460, + [SMALL_STATE(6787)] = 246473, + [SMALL_STATE(6788)] = 246486, + [SMALL_STATE(6789)] = 246499, + [SMALL_STATE(6790)] = 246512, + [SMALL_STATE(6791)] = 246525, + [SMALL_STATE(6792)] = 246538, + [SMALL_STATE(6793)] = 246551, + [SMALL_STATE(6794)] = 246562, + [SMALL_STATE(6795)] = 246575, + [SMALL_STATE(6796)] = 246588, + [SMALL_STATE(6797)] = 246601, + [SMALL_STATE(6798)] = 246614, + [SMALL_STATE(6799)] = 246627, + [SMALL_STATE(6800)] = 246640, + [SMALL_STATE(6801)] = 246653, + [SMALL_STATE(6802)] = 246666, + [SMALL_STATE(6803)] = 246679, + [SMALL_STATE(6804)] = 246692, + [SMALL_STATE(6805)] = 246705, + [SMALL_STATE(6806)] = 246718, + [SMALL_STATE(6807)] = 246727, + [SMALL_STATE(6808)] = 246740, + [SMALL_STATE(6809)] = 246753, + [SMALL_STATE(6810)] = 246766, + [SMALL_STATE(6811)] = 246779, + [SMALL_STATE(6812)] = 246792, + [SMALL_STATE(6813)] = 246805, + [SMALL_STATE(6814)] = 246818, + [SMALL_STATE(6815)] = 246831, + [SMALL_STATE(6816)] = 246844, + [SMALL_STATE(6817)] = 246857, + [SMALL_STATE(6818)] = 246870, + [SMALL_STATE(6819)] = 246883, + [SMALL_STATE(6820)] = 246896, + [SMALL_STATE(6821)] = 246909, + [SMALL_STATE(6822)] = 246922, + [SMALL_STATE(6823)] = 246935, + [SMALL_STATE(6824)] = 246946, + [SMALL_STATE(6825)] = 246959, + [SMALL_STATE(6826)] = 246972, + [SMALL_STATE(6827)] = 246985, + [SMALL_STATE(6828)] = 246998, + [SMALL_STATE(6829)] = 247011, + [SMALL_STATE(6830)] = 247024, + [SMALL_STATE(6831)] = 247035, + [SMALL_STATE(6832)] = 247048, + [SMALL_STATE(6833)] = 247061, + [SMALL_STATE(6834)] = 247074, + [SMALL_STATE(6835)] = 247087, + [SMALL_STATE(6836)] = 247096, + [SMALL_STATE(6837)] = 247109, + [SMALL_STATE(6838)] = 247122, + [SMALL_STATE(6839)] = 247135, + [SMALL_STATE(6840)] = 247148, + [SMALL_STATE(6841)] = 247161, + [SMALL_STATE(6842)] = 247174, + [SMALL_STATE(6843)] = 247185, + [SMALL_STATE(6844)] = 247196, + [SMALL_STATE(6845)] = 247205, + [SMALL_STATE(6846)] = 247218, + [SMALL_STATE(6847)] = 247231, + [SMALL_STATE(6848)] = 247244, + [SMALL_STATE(6849)] = 247257, + [SMALL_STATE(6850)] = 247270, + [SMALL_STATE(6851)] = 247283, + [SMALL_STATE(6852)] = 247296, + [SMALL_STATE(6853)] = 247306, + [SMALL_STATE(6854)] = 247314, + [SMALL_STATE(6855)] = 247324, + [SMALL_STATE(6856)] = 247334, + [SMALL_STATE(6857)] = 247344, + [SMALL_STATE(6858)] = 247352, + [SMALL_STATE(6859)] = 247362, + [SMALL_STATE(6860)] = 247372, + [SMALL_STATE(6861)] = 247382, + [SMALL_STATE(6862)] = 247390, + [SMALL_STATE(6863)] = 247400, + [SMALL_STATE(6864)] = 247410, + [SMALL_STATE(6865)] = 247420, + [SMALL_STATE(6866)] = 247430, + [SMALL_STATE(6867)] = 247440, + [SMALL_STATE(6868)] = 247448, + [SMALL_STATE(6869)] = 247458, + [SMALL_STATE(6870)] = 247468, + [SMALL_STATE(6871)] = 247478, + [SMALL_STATE(6872)] = 247488, + [SMALL_STATE(6873)] = 247498, + [SMALL_STATE(6874)] = 247508, + [SMALL_STATE(6875)] = 247518, + [SMALL_STATE(6876)] = 247528, + [SMALL_STATE(6877)] = 247538, + [SMALL_STATE(6878)] = 247548, + [SMALL_STATE(6879)] = 247558, + [SMALL_STATE(6880)] = 247566, + [SMALL_STATE(6881)] = 247576, + [SMALL_STATE(6882)] = 247586, + [SMALL_STATE(6883)] = 247594, + [SMALL_STATE(6884)] = 247602, + [SMALL_STATE(6885)] = 247610, + [SMALL_STATE(6886)] = 247620, + [SMALL_STATE(6887)] = 247630, + [SMALL_STATE(6888)] = 247640, + [SMALL_STATE(6889)] = 247648, + [SMALL_STATE(6890)] = 247656, + [SMALL_STATE(6891)] = 247666, + [SMALL_STATE(6892)] = 247676, + [SMALL_STATE(6893)] = 247684, + [SMALL_STATE(6894)] = 247692, + [SMALL_STATE(6895)] = 247702, + [SMALL_STATE(6896)] = 247712, + [SMALL_STATE(6897)] = 247720, + [SMALL_STATE(6898)] = 247730, + [SMALL_STATE(6899)] = 247738, + [SMALL_STATE(6900)] = 247748, + [SMALL_STATE(6901)] = 247758, + [SMALL_STATE(6902)] = 247766, + [SMALL_STATE(6903)] = 247774, + [SMALL_STATE(6904)] = 247784, + [SMALL_STATE(6905)] = 247794, + [SMALL_STATE(6906)] = 247804, + [SMALL_STATE(6907)] = 247814, + [SMALL_STATE(6908)] = 247824, + [SMALL_STATE(6909)] = 247834, + [SMALL_STATE(6910)] = 247844, + [SMALL_STATE(6911)] = 247854, + [SMALL_STATE(6912)] = 247864, + [SMALL_STATE(6913)] = 247874, + [SMALL_STATE(6914)] = 247884, + [SMALL_STATE(6915)] = 247892, + [SMALL_STATE(6916)] = 247902, + [SMALL_STATE(6917)] = 247912, + [SMALL_STATE(6918)] = 247922, + [SMALL_STATE(6919)] = 247932, + [SMALL_STATE(6920)] = 247940, + [SMALL_STATE(6921)] = 247950, + [SMALL_STATE(6922)] = 247960, + [SMALL_STATE(6923)] = 247970, + [SMALL_STATE(6924)] = 247980, + [SMALL_STATE(6925)] = 247990, + [SMALL_STATE(6926)] = 248000, + [SMALL_STATE(6927)] = 248010, + [SMALL_STATE(6928)] = 248020, + [SMALL_STATE(6929)] = 248028, + [SMALL_STATE(6930)] = 248038, + [SMALL_STATE(6931)] = 248048, + [SMALL_STATE(6932)] = 248058, + [SMALL_STATE(6933)] = 248068, + [SMALL_STATE(6934)] = 248078, + [SMALL_STATE(6935)] = 248088, + [SMALL_STATE(6936)] = 248098, + [SMALL_STATE(6937)] = 248108, + [SMALL_STATE(6938)] = 248116, + [SMALL_STATE(6939)] = 248124, + [SMALL_STATE(6940)] = 248134, + [SMALL_STATE(6941)] = 248144, + [SMALL_STATE(6942)] = 248154, + [SMALL_STATE(6943)] = 248164, + [SMALL_STATE(6944)] = 248174, + [SMALL_STATE(6945)] = 248184, + [SMALL_STATE(6946)] = 248194, + [SMALL_STATE(6947)] = 248204, + [SMALL_STATE(6948)] = 248214, + [SMALL_STATE(6949)] = 248224, + [SMALL_STATE(6950)] = 248232, + [SMALL_STATE(6951)] = 248242, + [SMALL_STATE(6952)] = 248252, + [SMALL_STATE(6953)] = 248262, + [SMALL_STATE(6954)] = 248272, + [SMALL_STATE(6955)] = 248282, + [SMALL_STATE(6956)] = 248290, + [SMALL_STATE(6957)] = 248298, + [SMALL_STATE(6958)] = 248308, + [SMALL_STATE(6959)] = 248316, + [SMALL_STATE(6960)] = 248326, + [SMALL_STATE(6961)] = 248336, + [SMALL_STATE(6962)] = 248344, + [SMALL_STATE(6963)] = 248354, + [SMALL_STATE(6964)] = 248362, + [SMALL_STATE(6965)] = 248372, + [SMALL_STATE(6966)] = 248382, + [SMALL_STATE(6967)] = 248392, + [SMALL_STATE(6968)] = 248400, + [SMALL_STATE(6969)] = 248408, + [SMALL_STATE(6970)] = 248418, + [SMALL_STATE(6971)] = 248428, + [SMALL_STATE(6972)] = 248438, + [SMALL_STATE(6973)] = 248448, + [SMALL_STATE(6974)] = 248458, + [SMALL_STATE(6975)] = 248468, + [SMALL_STATE(6976)] = 248478, + [SMALL_STATE(6977)] = 248488, + [SMALL_STATE(6978)] = 248498, + [SMALL_STATE(6979)] = 248508, + [SMALL_STATE(6980)] = 248518, + [SMALL_STATE(6981)] = 248526, + [SMALL_STATE(6982)] = 248536, + [SMALL_STATE(6983)] = 248546, + [SMALL_STATE(6984)] = 248556, + [SMALL_STATE(6985)] = 248566, + [SMALL_STATE(6986)] = 248576, + [SMALL_STATE(6987)] = 248584, + [SMALL_STATE(6988)] = 248592, + [SMALL_STATE(6989)] = 248602, + [SMALL_STATE(6990)] = 248612, + [SMALL_STATE(6991)] = 248622, + [SMALL_STATE(6992)] = 248632, + [SMALL_STATE(6993)] = 248642, + [SMALL_STATE(6994)] = 248652, + [SMALL_STATE(6995)] = 248662, + [SMALL_STATE(6996)] = 248670, + [SMALL_STATE(6997)] = 248678, + [SMALL_STATE(6998)] = 248686, + [SMALL_STATE(6999)] = 248696, + [SMALL_STATE(7000)] = 248706, + [SMALL_STATE(7001)] = 248716, + [SMALL_STATE(7002)] = 248726, + [SMALL_STATE(7003)] = 248736, + [SMALL_STATE(7004)] = 248744, + [SMALL_STATE(7005)] = 248754, + [SMALL_STATE(7006)] = 248764, + [SMALL_STATE(7007)] = 248774, + [SMALL_STATE(7008)] = 248784, + [SMALL_STATE(7009)] = 248794, + [SMALL_STATE(7010)] = 248802, + [SMALL_STATE(7011)] = 248812, + [SMALL_STATE(7012)] = 248822, + [SMALL_STATE(7013)] = 248832, + [SMALL_STATE(7014)] = 248840, + [SMALL_STATE(7015)] = 248850, + [SMALL_STATE(7016)] = 248860, + [SMALL_STATE(7017)] = 248870, + [SMALL_STATE(7018)] = 248880, + [SMALL_STATE(7019)] = 248888, + [SMALL_STATE(7020)] = 248898, + [SMALL_STATE(7021)] = 248908, + [SMALL_STATE(7022)] = 248918, + [SMALL_STATE(7023)] = 248928, + [SMALL_STATE(7024)] = 248938, + [SMALL_STATE(7025)] = 248946, + [SMALL_STATE(7026)] = 248956, + [SMALL_STATE(7027)] = 248964, + [SMALL_STATE(7028)] = 248974, + [SMALL_STATE(7029)] = 248984, + [SMALL_STATE(7030)] = 248994, + [SMALL_STATE(7031)] = 249004, + [SMALL_STATE(7032)] = 249012, + [SMALL_STATE(7033)] = 249022, + [SMALL_STATE(7034)] = 249030, + [SMALL_STATE(7035)] = 249040, + [SMALL_STATE(7036)] = 249050, + [SMALL_STATE(7037)] = 249058, + [SMALL_STATE(7038)] = 249068, + [SMALL_STATE(7039)] = 249078, + [SMALL_STATE(7040)] = 249088, + [SMALL_STATE(7041)] = 249098, + [SMALL_STATE(7042)] = 249106, + [SMALL_STATE(7043)] = 249116, + [SMALL_STATE(7044)] = 249126, + [SMALL_STATE(7045)] = 249136, + [SMALL_STATE(7046)] = 249144, + [SMALL_STATE(7047)] = 249154, + [SMALL_STATE(7048)] = 249164, + [SMALL_STATE(7049)] = 249174, + [SMALL_STATE(7050)] = 249184, + [SMALL_STATE(7051)] = 249192, + [SMALL_STATE(7052)] = 249202, + [SMALL_STATE(7053)] = 249212, + [SMALL_STATE(7054)] = 249222, + [SMALL_STATE(7055)] = 249232, + [SMALL_STATE(7056)] = 249242, + [SMALL_STATE(7057)] = 249252, + [SMALL_STATE(7058)] = 249262, + [SMALL_STATE(7059)] = 249270, + [SMALL_STATE(7060)] = 249280, + [SMALL_STATE(7061)] = 249290, + [SMALL_STATE(7062)] = 249300, + [SMALL_STATE(7063)] = 249310, + [SMALL_STATE(7064)] = 249320, + [SMALL_STATE(7065)] = 249330, + [SMALL_STATE(7066)] = 249340, + [SMALL_STATE(7067)] = 249348, + [SMALL_STATE(7068)] = 249358, + [SMALL_STATE(7069)] = 249368, + [SMALL_STATE(7070)] = 249378, + [SMALL_STATE(7071)] = 249388, + [SMALL_STATE(7072)] = 249398, + [SMALL_STATE(7073)] = 249408, + [SMALL_STATE(7074)] = 249418, + [SMALL_STATE(7075)] = 249428, + [SMALL_STATE(7076)] = 249438, + [SMALL_STATE(7077)] = 249446, + [SMALL_STATE(7078)] = 249456, + [SMALL_STATE(7079)] = 249466, + [SMALL_STATE(7080)] = 249476, + [SMALL_STATE(7081)] = 249486, + [SMALL_STATE(7082)] = 249496, + [SMALL_STATE(7083)] = 249506, + [SMALL_STATE(7084)] = 249516, + [SMALL_STATE(7085)] = 249524, + [SMALL_STATE(7086)] = 249534, + [SMALL_STATE(7087)] = 249544, + [SMALL_STATE(7088)] = 249552, + [SMALL_STATE(7089)] = 249562, + [SMALL_STATE(7090)] = 249572, + [SMALL_STATE(7091)] = 249582, + [SMALL_STATE(7092)] = 249592, + [SMALL_STATE(7093)] = 249602, + [SMALL_STATE(7094)] = 249612, + [SMALL_STATE(7095)] = 249622, + [SMALL_STATE(7096)] = 249632, + [SMALL_STATE(7097)] = 249642, + [SMALL_STATE(7098)] = 249652, + [SMALL_STATE(7099)] = 249660, + [SMALL_STATE(7100)] = 249670, + [SMALL_STATE(7101)] = 249680, + [SMALL_STATE(7102)] = 249688, + [SMALL_STATE(7103)] = 249698, + [SMALL_STATE(7104)] = 249708, + [SMALL_STATE(7105)] = 249718, + [SMALL_STATE(7106)] = 249726, + [SMALL_STATE(7107)] = 249736, + [SMALL_STATE(7108)] = 249746, + [SMALL_STATE(7109)] = 249756, + [SMALL_STATE(7110)] = 249766, + [SMALL_STATE(7111)] = 249776, + [SMALL_STATE(7112)] = 249786, + [SMALL_STATE(7113)] = 249796, + [SMALL_STATE(7114)] = 249806, + [SMALL_STATE(7115)] = 249816, + [SMALL_STATE(7116)] = 249826, + [SMALL_STATE(7117)] = 249836, + [SMALL_STATE(7118)] = 249846, + [SMALL_STATE(7119)] = 249854, + [SMALL_STATE(7120)] = 249864, + [SMALL_STATE(7121)] = 249874, + [SMALL_STATE(7122)] = 249884, + [SMALL_STATE(7123)] = 249894, + [SMALL_STATE(7124)] = 249904, + [SMALL_STATE(7125)] = 249914, + [SMALL_STATE(7126)] = 249924, + [SMALL_STATE(7127)] = 249934, + [SMALL_STATE(7128)] = 249944, + [SMALL_STATE(7129)] = 249954, + [SMALL_STATE(7130)] = 249964, + [SMALL_STATE(7131)] = 249974, + [SMALL_STATE(7132)] = 249984, + [SMALL_STATE(7133)] = 249994, + [SMALL_STATE(7134)] = 250004, + [SMALL_STATE(7135)] = 250014, + [SMALL_STATE(7136)] = 250024, + [SMALL_STATE(7137)] = 250034, + [SMALL_STATE(7138)] = 250044, + [SMALL_STATE(7139)] = 250054, + [SMALL_STATE(7140)] = 250064, + [SMALL_STATE(7141)] = 250074, + [SMALL_STATE(7142)] = 250084, + [SMALL_STATE(7143)] = 250094, + [SMALL_STATE(7144)] = 250104, + [SMALL_STATE(7145)] = 250114, + [SMALL_STATE(7146)] = 250124, + [SMALL_STATE(7147)] = 250134, + [SMALL_STATE(7148)] = 250144, + [SMALL_STATE(7149)] = 250154, + [SMALL_STATE(7150)] = 250164, + [SMALL_STATE(7151)] = 250174, + [SMALL_STATE(7152)] = 250184, + [SMALL_STATE(7153)] = 250194, + [SMALL_STATE(7154)] = 250204, + [SMALL_STATE(7155)] = 250214, + [SMALL_STATE(7156)] = 250224, + [SMALL_STATE(7157)] = 250234, + [SMALL_STATE(7158)] = 250244, + [SMALL_STATE(7159)] = 250254, + [SMALL_STATE(7160)] = 250264, + [SMALL_STATE(7161)] = 250274, + [SMALL_STATE(7162)] = 250284, + [SMALL_STATE(7163)] = 250294, + [SMALL_STATE(7164)] = 250304, + [SMALL_STATE(7165)] = 250314, + [SMALL_STATE(7166)] = 250324, + [SMALL_STATE(7167)] = 250334, + [SMALL_STATE(7168)] = 250344, + [SMALL_STATE(7169)] = 250354, + [SMALL_STATE(7170)] = 250364, + [SMALL_STATE(7171)] = 250374, + [SMALL_STATE(7172)] = 250384, + [SMALL_STATE(7173)] = 250394, + [SMALL_STATE(7174)] = 250404, + [SMALL_STATE(7175)] = 250414, + [SMALL_STATE(7176)] = 250424, + [SMALL_STATE(7177)] = 250434, + [SMALL_STATE(7178)] = 250444, + [SMALL_STATE(7179)] = 250452, + [SMALL_STATE(7180)] = 250462, + [SMALL_STATE(7181)] = 250470, + [SMALL_STATE(7182)] = 250480, + [SMALL_STATE(7183)] = 250490, + [SMALL_STATE(7184)] = 250500, + [SMALL_STATE(7185)] = 250510, + [SMALL_STATE(7186)] = 250520, + [SMALL_STATE(7187)] = 250527, + [SMALL_STATE(7188)] = 250534, + [SMALL_STATE(7189)] = 250541, + [SMALL_STATE(7190)] = 250548, + [SMALL_STATE(7191)] = 250555, + [SMALL_STATE(7192)] = 250562, + [SMALL_STATE(7193)] = 250569, + [SMALL_STATE(7194)] = 250576, + [SMALL_STATE(7195)] = 250583, + [SMALL_STATE(7196)] = 250590, + [SMALL_STATE(7197)] = 250597, + [SMALL_STATE(7198)] = 250604, + [SMALL_STATE(7199)] = 250611, + [SMALL_STATE(7200)] = 250618, + [SMALL_STATE(7201)] = 250625, + [SMALL_STATE(7202)] = 250632, + [SMALL_STATE(7203)] = 250639, + [SMALL_STATE(7204)] = 250646, + [SMALL_STATE(7205)] = 250653, + [SMALL_STATE(7206)] = 250660, + [SMALL_STATE(7207)] = 250667, + [SMALL_STATE(7208)] = 250674, + [SMALL_STATE(7209)] = 250681, + [SMALL_STATE(7210)] = 250688, + [SMALL_STATE(7211)] = 250695, + [SMALL_STATE(7212)] = 250702, + [SMALL_STATE(7213)] = 250709, + [SMALL_STATE(7214)] = 250716, + [SMALL_STATE(7215)] = 250723, + [SMALL_STATE(7216)] = 250730, + [SMALL_STATE(7217)] = 250737, + [SMALL_STATE(7218)] = 250744, + [SMALL_STATE(7219)] = 250751, + [SMALL_STATE(7220)] = 250758, + [SMALL_STATE(7221)] = 250765, + [SMALL_STATE(7222)] = 250772, + [SMALL_STATE(7223)] = 250779, + [SMALL_STATE(7224)] = 250786, + [SMALL_STATE(7225)] = 250793, + [SMALL_STATE(7226)] = 250800, + [SMALL_STATE(7227)] = 250807, + [SMALL_STATE(7228)] = 250814, + [SMALL_STATE(7229)] = 250821, + [SMALL_STATE(7230)] = 250828, + [SMALL_STATE(7231)] = 250835, + [SMALL_STATE(7232)] = 250842, + [SMALL_STATE(7233)] = 250849, + [SMALL_STATE(7234)] = 250856, + [SMALL_STATE(7235)] = 250863, + [SMALL_STATE(7236)] = 250870, + [SMALL_STATE(7237)] = 250877, + [SMALL_STATE(7238)] = 250884, + [SMALL_STATE(7239)] = 250891, + [SMALL_STATE(7240)] = 250898, + [SMALL_STATE(7241)] = 250905, + [SMALL_STATE(7242)] = 250912, + [SMALL_STATE(7243)] = 250919, + [SMALL_STATE(7244)] = 250926, + [SMALL_STATE(7245)] = 250933, + [SMALL_STATE(7246)] = 250940, + [SMALL_STATE(7247)] = 250947, + [SMALL_STATE(7248)] = 250954, + [SMALL_STATE(7249)] = 250961, + [SMALL_STATE(7250)] = 250968, + [SMALL_STATE(7251)] = 250975, + [SMALL_STATE(7252)] = 250982, + [SMALL_STATE(7253)] = 250989, + [SMALL_STATE(7254)] = 250996, + [SMALL_STATE(7255)] = 251003, + [SMALL_STATE(7256)] = 251010, + [SMALL_STATE(7257)] = 251017, + [SMALL_STATE(7258)] = 251024, + [SMALL_STATE(7259)] = 251031, + [SMALL_STATE(7260)] = 251038, + [SMALL_STATE(7261)] = 251045, + [SMALL_STATE(7262)] = 251052, + [SMALL_STATE(7263)] = 251059, + [SMALL_STATE(7264)] = 251066, + [SMALL_STATE(7265)] = 251073, + [SMALL_STATE(7266)] = 251080, + [SMALL_STATE(7267)] = 251087, + [SMALL_STATE(7268)] = 251094, + [SMALL_STATE(7269)] = 251101, + [SMALL_STATE(7270)] = 251108, + [SMALL_STATE(7271)] = 251115, + [SMALL_STATE(7272)] = 251122, + [SMALL_STATE(7273)] = 251129, + [SMALL_STATE(7274)] = 251136, + [SMALL_STATE(7275)] = 251143, + [SMALL_STATE(7276)] = 251150, + [SMALL_STATE(7277)] = 251157, + [SMALL_STATE(7278)] = 251164, + [SMALL_STATE(7279)] = 251171, + [SMALL_STATE(7280)] = 251178, + [SMALL_STATE(7281)] = 251185, + [SMALL_STATE(7282)] = 251192, + [SMALL_STATE(7283)] = 251199, + [SMALL_STATE(7284)] = 251206, + [SMALL_STATE(7285)] = 251213, + [SMALL_STATE(7286)] = 251220, + [SMALL_STATE(7287)] = 251227, + [SMALL_STATE(7288)] = 251234, + [SMALL_STATE(7289)] = 251241, + [SMALL_STATE(7290)] = 251248, + [SMALL_STATE(7291)] = 251255, + [SMALL_STATE(7292)] = 251262, + [SMALL_STATE(7293)] = 251269, + [SMALL_STATE(7294)] = 251276, + [SMALL_STATE(7295)] = 251283, + [SMALL_STATE(7296)] = 251290, + [SMALL_STATE(7297)] = 251297, + [SMALL_STATE(7298)] = 251304, + [SMALL_STATE(7299)] = 251311, + [SMALL_STATE(7300)] = 251318, + [SMALL_STATE(7301)] = 251325, + [SMALL_STATE(7302)] = 251332, + [SMALL_STATE(7303)] = 251339, + [SMALL_STATE(7304)] = 251346, + [SMALL_STATE(7305)] = 251353, + [SMALL_STATE(7306)] = 251360, + [SMALL_STATE(7307)] = 251367, + [SMALL_STATE(7308)] = 251374, + [SMALL_STATE(7309)] = 251381, + [SMALL_STATE(7310)] = 251388, + [SMALL_STATE(7311)] = 251395, + [SMALL_STATE(7312)] = 251402, + [SMALL_STATE(7313)] = 251409, + [SMALL_STATE(7314)] = 251416, + [SMALL_STATE(7315)] = 251423, + [SMALL_STATE(7316)] = 251430, + [SMALL_STATE(7317)] = 251437, + [SMALL_STATE(7318)] = 251444, + [SMALL_STATE(7319)] = 251451, + [SMALL_STATE(7320)] = 251458, + [SMALL_STATE(7321)] = 251465, + [SMALL_STATE(7322)] = 251472, + [SMALL_STATE(7323)] = 251479, + [SMALL_STATE(7324)] = 251486, + [SMALL_STATE(7325)] = 251493, + [SMALL_STATE(7326)] = 251500, + [SMALL_STATE(7327)] = 251507, + [SMALL_STATE(7328)] = 251514, + [SMALL_STATE(7329)] = 251521, + [SMALL_STATE(7330)] = 251528, + [SMALL_STATE(7331)] = 251535, + [SMALL_STATE(7332)] = 251542, + [SMALL_STATE(7333)] = 251549, + [SMALL_STATE(7334)] = 251556, + [SMALL_STATE(7335)] = 251563, + [SMALL_STATE(7336)] = 251570, + [SMALL_STATE(7337)] = 251577, + [SMALL_STATE(7338)] = 251584, + [SMALL_STATE(7339)] = 251591, + [SMALL_STATE(7340)] = 251598, + [SMALL_STATE(7341)] = 251605, + [SMALL_STATE(7342)] = 251612, + [SMALL_STATE(7343)] = 251619, + [SMALL_STATE(7344)] = 251626, + [SMALL_STATE(7345)] = 251633, + [SMALL_STATE(7346)] = 251640, + [SMALL_STATE(7347)] = 251647, + [SMALL_STATE(7348)] = 251654, + [SMALL_STATE(7349)] = 251661, + [SMALL_STATE(7350)] = 251668, + [SMALL_STATE(7351)] = 251675, + [SMALL_STATE(7352)] = 251682, + [SMALL_STATE(7353)] = 251689, + [SMALL_STATE(7354)] = 251696, + [SMALL_STATE(7355)] = 251703, + [SMALL_STATE(7356)] = 251710, + [SMALL_STATE(7357)] = 251717, + [SMALL_STATE(7358)] = 251724, + [SMALL_STATE(7359)] = 251731, + [SMALL_STATE(7360)] = 251738, + [SMALL_STATE(7361)] = 251745, + [SMALL_STATE(7362)] = 251752, + [SMALL_STATE(7363)] = 251759, + [SMALL_STATE(7364)] = 251766, + [SMALL_STATE(7365)] = 251773, + [SMALL_STATE(7366)] = 251780, + [SMALL_STATE(7367)] = 251787, + [SMALL_STATE(7368)] = 251794, + [SMALL_STATE(7369)] = 251801, + [SMALL_STATE(7370)] = 251808, + [SMALL_STATE(7371)] = 251815, + [SMALL_STATE(7372)] = 251822, + [SMALL_STATE(7373)] = 251829, + [SMALL_STATE(7374)] = 251836, + [SMALL_STATE(7375)] = 251843, + [SMALL_STATE(7376)] = 251850, + [SMALL_STATE(7377)] = 251857, + [SMALL_STATE(7378)] = 251864, + [SMALL_STATE(7379)] = 251871, + [SMALL_STATE(7380)] = 251878, + [SMALL_STATE(7381)] = 251885, + [SMALL_STATE(7382)] = 251892, + [SMALL_STATE(7383)] = 251899, + [SMALL_STATE(7384)] = 251906, + [SMALL_STATE(7385)] = 251913, + [SMALL_STATE(7386)] = 251920, + [SMALL_STATE(7387)] = 251927, + [SMALL_STATE(7388)] = 251934, + [SMALL_STATE(7389)] = 251941, + [SMALL_STATE(7390)] = 251948, + [SMALL_STATE(7391)] = 251955, + [SMALL_STATE(7392)] = 251962, + [SMALL_STATE(7393)] = 251969, + [SMALL_STATE(7394)] = 251976, + [SMALL_STATE(7395)] = 251983, + [SMALL_STATE(7396)] = 251990, + [SMALL_STATE(7397)] = 251997, + [SMALL_STATE(7398)] = 252004, + [SMALL_STATE(7399)] = 252011, + [SMALL_STATE(7400)] = 252018, + [SMALL_STATE(7401)] = 252025, + [SMALL_STATE(7402)] = 252032, + [SMALL_STATE(7403)] = 252039, + [SMALL_STATE(7404)] = 252046, + [SMALL_STATE(7405)] = 252053, + [SMALL_STATE(7406)] = 252060, + [SMALL_STATE(7407)] = 252067, + [SMALL_STATE(7408)] = 252074, + [SMALL_STATE(7409)] = 252081, + [SMALL_STATE(7410)] = 252088, + [SMALL_STATE(7411)] = 252095, + [SMALL_STATE(7412)] = 252102, + [SMALL_STATE(7413)] = 252109, + [SMALL_STATE(7414)] = 252116, + [SMALL_STATE(7415)] = 252123, + [SMALL_STATE(7416)] = 252130, + [SMALL_STATE(7417)] = 252137, + [SMALL_STATE(7418)] = 252144, + [SMALL_STATE(7419)] = 252151, + [SMALL_STATE(7420)] = 252158, + [SMALL_STATE(7421)] = 252165, + [SMALL_STATE(7422)] = 252172, + [SMALL_STATE(7423)] = 252179, + [SMALL_STATE(7424)] = 252186, + [SMALL_STATE(7425)] = 252193, + [SMALL_STATE(7426)] = 252200, + [SMALL_STATE(7427)] = 252207, + [SMALL_STATE(7428)] = 252214, + [SMALL_STATE(7429)] = 252221, + [SMALL_STATE(7430)] = 252228, + [SMALL_STATE(7431)] = 252235, + [SMALL_STATE(7432)] = 252242, + [SMALL_STATE(7433)] = 252249, + [SMALL_STATE(7434)] = 252256, + [SMALL_STATE(7435)] = 252263, + [SMALL_STATE(7436)] = 252270, + [SMALL_STATE(7437)] = 252277, + [SMALL_STATE(7438)] = 252284, + [SMALL_STATE(7439)] = 252291, + [SMALL_STATE(7440)] = 252298, + [SMALL_STATE(7441)] = 252305, + [SMALL_STATE(7442)] = 252312, + [SMALL_STATE(7443)] = 252319, + [SMALL_STATE(7444)] = 252326, + [SMALL_STATE(7445)] = 252333, + [SMALL_STATE(7446)] = 252340, + [SMALL_STATE(7447)] = 252347, + [SMALL_STATE(7448)] = 252354, + [SMALL_STATE(7449)] = 252361, + [SMALL_STATE(7450)] = 252368, + [SMALL_STATE(7451)] = 252375, + [SMALL_STATE(7452)] = 252382, + [SMALL_STATE(7453)] = 252389, + [SMALL_STATE(7454)] = 252396, + [SMALL_STATE(7455)] = 252403, + [SMALL_STATE(7456)] = 252410, + [SMALL_STATE(7457)] = 252417, + [SMALL_STATE(7458)] = 252424, + [SMALL_STATE(7459)] = 252431, + [SMALL_STATE(7460)] = 252438, + [SMALL_STATE(7461)] = 252445, + [SMALL_STATE(7462)] = 252452, + [SMALL_STATE(7463)] = 252459, + [SMALL_STATE(7464)] = 252466, + [SMALL_STATE(7465)] = 252473, + [SMALL_STATE(7466)] = 252480, + [SMALL_STATE(7467)] = 252487, + [SMALL_STATE(7468)] = 252494, + [SMALL_STATE(7469)] = 252501, + [SMALL_STATE(7470)] = 252508, + [SMALL_STATE(7471)] = 252515, + [SMALL_STATE(7472)] = 252522, + [SMALL_STATE(7473)] = 252529, + [SMALL_STATE(7474)] = 252536, + [SMALL_STATE(7475)] = 252543, + [SMALL_STATE(7476)] = 252550, + [SMALL_STATE(7477)] = 252557, + [SMALL_STATE(7478)] = 252564, + [SMALL_STATE(7479)] = 252571, + [SMALL_STATE(7480)] = 252578, + [SMALL_STATE(7481)] = 252585, + [SMALL_STATE(7482)] = 252592, + [SMALL_STATE(7483)] = 252599, + [SMALL_STATE(7484)] = 252606, + [SMALL_STATE(7485)] = 252613, + [SMALL_STATE(7486)] = 252620, + [SMALL_STATE(7487)] = 252627, + [SMALL_STATE(7488)] = 252634, + [SMALL_STATE(7489)] = 252641, + [SMALL_STATE(7490)] = 252648, + [SMALL_STATE(7491)] = 252655, + [SMALL_STATE(7492)] = 252662, + [SMALL_STATE(7493)] = 252669, + [SMALL_STATE(7494)] = 252676, + [SMALL_STATE(7495)] = 252683, + [SMALL_STATE(7496)] = 252690, + [SMALL_STATE(7497)] = 252697, + [SMALL_STATE(7498)] = 252704, + [SMALL_STATE(7499)] = 252711, + [SMALL_STATE(7500)] = 252718, + [SMALL_STATE(7501)] = 252725, + [SMALL_STATE(7502)] = 252732, + [SMALL_STATE(7503)] = 252739, + [SMALL_STATE(7504)] = 252746, + [SMALL_STATE(7505)] = 252753, + [SMALL_STATE(7506)] = 252760, + [SMALL_STATE(7507)] = 252767, + [SMALL_STATE(7508)] = 252774, + [SMALL_STATE(7509)] = 252781, + [SMALL_STATE(7510)] = 252788, + [SMALL_STATE(7511)] = 252795, + [SMALL_STATE(7512)] = 252802, + [SMALL_STATE(7513)] = 252809, + [SMALL_STATE(7514)] = 252816, + [SMALL_STATE(7515)] = 252823, + [SMALL_STATE(7516)] = 252830, + [SMALL_STATE(7517)] = 252837, + [SMALL_STATE(7518)] = 252844, + [SMALL_STATE(7519)] = 252851, + [SMALL_STATE(7520)] = 252858, + [SMALL_STATE(7521)] = 252865, + [SMALL_STATE(7522)] = 252872, + [SMALL_STATE(7523)] = 252879, + [SMALL_STATE(7524)] = 252886, + [SMALL_STATE(7525)] = 252893, + [SMALL_STATE(7526)] = 252900, + [SMALL_STATE(7527)] = 252907, + [SMALL_STATE(7528)] = 252914, + [SMALL_STATE(7529)] = 252921, + [SMALL_STATE(7530)] = 252928, + [SMALL_STATE(7531)] = 252935, + [SMALL_STATE(7532)] = 252942, + [SMALL_STATE(7533)] = 252949, + [SMALL_STATE(7534)] = 252956, + [SMALL_STATE(7535)] = 252963, + [SMALL_STATE(7536)] = 252970, + [SMALL_STATE(7537)] = 252977, + [SMALL_STATE(7538)] = 252984, + [SMALL_STATE(7539)] = 252991, + [SMALL_STATE(7540)] = 252998, + [SMALL_STATE(7541)] = 253005, + [SMALL_STATE(7542)] = 253012, + [SMALL_STATE(7543)] = 253019, + [SMALL_STATE(7544)] = 253026, + [SMALL_STATE(7545)] = 253033, + [SMALL_STATE(7546)] = 253040, + [SMALL_STATE(7547)] = 253047, + [SMALL_STATE(7548)] = 253054, + [SMALL_STATE(7549)] = 253061, + [SMALL_STATE(7550)] = 253068, + [SMALL_STATE(7551)] = 253075, + [SMALL_STATE(7552)] = 253082, + [SMALL_STATE(7553)] = 253089, + [SMALL_STATE(7554)] = 253096, + [SMALL_STATE(7555)] = 253103, + [SMALL_STATE(7556)] = 253110, + [SMALL_STATE(7557)] = 253117, + [SMALL_STATE(7558)] = 253124, + [SMALL_STATE(7559)] = 253131, + [SMALL_STATE(7560)] = 253138, + [SMALL_STATE(7561)] = 253145, + [SMALL_STATE(7562)] = 253152, + [SMALL_STATE(7563)] = 253159, + [SMALL_STATE(7564)] = 253166, + [SMALL_STATE(7565)] = 253173, + [SMALL_STATE(7566)] = 253180, + [SMALL_STATE(7567)] = 253187, + [SMALL_STATE(7568)] = 253194, + [SMALL_STATE(7569)] = 253201, + [SMALL_STATE(7570)] = 253208, + [SMALL_STATE(7571)] = 253215, + [SMALL_STATE(7572)] = 253222, + [SMALL_STATE(7573)] = 253229, + [SMALL_STATE(7574)] = 253236, + [SMALL_STATE(7575)] = 253243, + [SMALL_STATE(7576)] = 253250, + [SMALL_STATE(7577)] = 253257, + [SMALL_STATE(7578)] = 253264, + [SMALL_STATE(7579)] = 253271, + [SMALL_STATE(7580)] = 253278, + [SMALL_STATE(7581)] = 253285, + [SMALL_STATE(7582)] = 253292, + [SMALL_STATE(7583)] = 253299, + [SMALL_STATE(7584)] = 253306, + [SMALL_STATE(7585)] = 253313, + [SMALL_STATE(7586)] = 253320, + [SMALL_STATE(7587)] = 253327, + [SMALL_STATE(7588)] = 253334, + [SMALL_STATE(7589)] = 253341, + [SMALL_STATE(7590)] = 253348, + [SMALL_STATE(7591)] = 253355, + [SMALL_STATE(7592)] = 253362, + [SMALL_STATE(7593)] = 253369, + [SMALL_STATE(7594)] = 253376, + [SMALL_STATE(7595)] = 253383, + [SMALL_STATE(7596)] = 253390, + [SMALL_STATE(7597)] = 253397, + [SMALL_STATE(7598)] = 253404, + [SMALL_STATE(7599)] = 253411, + [SMALL_STATE(7600)] = 253418, + [SMALL_STATE(7601)] = 253425, + [SMALL_STATE(7602)] = 253432, + [SMALL_STATE(7603)] = 253439, + [SMALL_STATE(7604)] = 253446, + [SMALL_STATE(7605)] = 253453, + [SMALL_STATE(7606)] = 253460, + [SMALL_STATE(7607)] = 253467, + [SMALL_STATE(7608)] = 253474, + [SMALL_STATE(7609)] = 253481, + [SMALL_STATE(7610)] = 253488, + [SMALL_STATE(7611)] = 253495, + [SMALL_STATE(7612)] = 253502, + [SMALL_STATE(7613)] = 253509, + [SMALL_STATE(7614)] = 253516, + [SMALL_STATE(7615)] = 253523, + [SMALL_STATE(7616)] = 253530, + [SMALL_STATE(7617)] = 253537, + [SMALL_STATE(7618)] = 253544, + [SMALL_STATE(7619)] = 253551, + [SMALL_STATE(7620)] = 253558, + [SMALL_STATE(7621)] = 253565, + [SMALL_STATE(7622)] = 253572, + [SMALL_STATE(7623)] = 253579, + [SMALL_STATE(7624)] = 253586, + [SMALL_STATE(7625)] = 253593, + [SMALL_STATE(7626)] = 253600, + [SMALL_STATE(7627)] = 253607, + [SMALL_STATE(7628)] = 253614, + [SMALL_STATE(7629)] = 253621, + [SMALL_STATE(7630)] = 253628, + [SMALL_STATE(7631)] = 253635, + [SMALL_STATE(7632)] = 253642, + [SMALL_STATE(7633)] = 253649, + [SMALL_STATE(7634)] = 253656, + [SMALL_STATE(7635)] = 253663, + [SMALL_STATE(7636)] = 253670, + [SMALL_STATE(7637)] = 253677, + [SMALL_STATE(7638)] = 253684, + [SMALL_STATE(7639)] = 253691, + [SMALL_STATE(7640)] = 253698, + [SMALL_STATE(7641)] = 253705, + [SMALL_STATE(7642)] = 253712, + [SMALL_STATE(7643)] = 253719, + [SMALL_STATE(7644)] = 253726, + [SMALL_STATE(7645)] = 253733, + [SMALL_STATE(7646)] = 253740, + [SMALL_STATE(7647)] = 253747, + [SMALL_STATE(7648)] = 253754, + [SMALL_STATE(7649)] = 253761, + [SMALL_STATE(7650)] = 253768, + [SMALL_STATE(7651)] = 253775, + [SMALL_STATE(7652)] = 253782, + [SMALL_STATE(7653)] = 253789, + [SMALL_STATE(7654)] = 253796, + [SMALL_STATE(7655)] = 253803, + [SMALL_STATE(7656)] = 253810, + [SMALL_STATE(7657)] = 253817, + [SMALL_STATE(7658)] = 253824, + [SMALL_STATE(7659)] = 253831, + [SMALL_STATE(7660)] = 253838, + [SMALL_STATE(7661)] = 253845, + [SMALL_STATE(7662)] = 253852, + [SMALL_STATE(7663)] = 253859, + [SMALL_STATE(7664)] = 253866, + [SMALL_STATE(7665)] = 253873, + [SMALL_STATE(7666)] = 253880, + [SMALL_STATE(7667)] = 253887, + [SMALL_STATE(7668)] = 253894, + [SMALL_STATE(7669)] = 253901, + [SMALL_STATE(7670)] = 253908, + [SMALL_STATE(7671)] = 253915, + [SMALL_STATE(7672)] = 253922, + [SMALL_STATE(7673)] = 253929, + [SMALL_STATE(7674)] = 253936, + [SMALL_STATE(7675)] = 253943, + [SMALL_STATE(7676)] = 253950, + [SMALL_STATE(7677)] = 253957, + [SMALL_STATE(7678)] = 253964, + [SMALL_STATE(7679)] = 253971, + [SMALL_STATE(7680)] = 253978, + [SMALL_STATE(7681)] = 253985, + [SMALL_STATE(7682)] = 253992, + [SMALL_STATE(7683)] = 253999, + [SMALL_STATE(7684)] = 254006, + [SMALL_STATE(7685)] = 254013, + [SMALL_STATE(7686)] = 254020, + [SMALL_STATE(7687)] = 254027, + [SMALL_STATE(7688)] = 254034, + [SMALL_STATE(7689)] = 254041, + [SMALL_STATE(7690)] = 254048, + [SMALL_STATE(7691)] = 254055, + [SMALL_STATE(7692)] = 254062, + [SMALL_STATE(7693)] = 254069, + [SMALL_STATE(7694)] = 254076, + [SMALL_STATE(7695)] = 254083, + [SMALL_STATE(7696)] = 254090, + [SMALL_STATE(7697)] = 254097, + [SMALL_STATE(7698)] = 254104, + [SMALL_STATE(7699)] = 254111, + [SMALL_STATE(7700)] = 254118, + [SMALL_STATE(7701)] = 254125, + [SMALL_STATE(7702)] = 254132, + [SMALL_STATE(7703)] = 254139, + [SMALL_STATE(7704)] = 254146, + [SMALL_STATE(7705)] = 254153, + [SMALL_STATE(7706)] = 254160, + [SMALL_STATE(7707)] = 254167, + [SMALL_STATE(7708)] = 254174, + [SMALL_STATE(7709)] = 254181, + [SMALL_STATE(7710)] = 254188, + [SMALL_STATE(7711)] = 254195, + [SMALL_STATE(7712)] = 254202, + [SMALL_STATE(7713)] = 254209, + [SMALL_STATE(7714)] = 254216, + [SMALL_STATE(7715)] = 254223, + [SMALL_STATE(7716)] = 254230, + [SMALL_STATE(7717)] = 254237, + [SMALL_STATE(7718)] = 254244, + [SMALL_STATE(7719)] = 254251, + [SMALL_STATE(7720)] = 254258, + [SMALL_STATE(7721)] = 254265, + [SMALL_STATE(7722)] = 254272, + [SMALL_STATE(7723)] = 254279, + [SMALL_STATE(7724)] = 254286, + [SMALL_STATE(7725)] = 254293, + [SMALL_STATE(7726)] = 254300, + [SMALL_STATE(7727)] = 254307, + [SMALL_STATE(7728)] = 254314, + [SMALL_STATE(7729)] = 254321, + [SMALL_STATE(7730)] = 254328, + [SMALL_STATE(7731)] = 254335, + [SMALL_STATE(7732)] = 254342, + [SMALL_STATE(7733)] = 254349, + [SMALL_STATE(7734)] = 254356, + [SMALL_STATE(7735)] = 254363, + [SMALL_STATE(7736)] = 254370, + [SMALL_STATE(7737)] = 254377, + [SMALL_STATE(7738)] = 254384, + [SMALL_STATE(7739)] = 254391, + [SMALL_STATE(7740)] = 254398, + [SMALL_STATE(7741)] = 254405, + [SMALL_STATE(7742)] = 254412, + [SMALL_STATE(7743)] = 254419, + [SMALL_STATE(7744)] = 254426, + [SMALL_STATE(7745)] = 254433, + [SMALL_STATE(7746)] = 254440, + [SMALL_STATE(7747)] = 254447, + [SMALL_STATE(7748)] = 254454, + [SMALL_STATE(7749)] = 254461, + [SMALL_STATE(7750)] = 254468, + [SMALL_STATE(7751)] = 254475, + [SMALL_STATE(7752)] = 254482, + [SMALL_STATE(7753)] = 254489, + [SMALL_STATE(7754)] = 254496, + [SMALL_STATE(7755)] = 254503, + [SMALL_STATE(7756)] = 254510, + [SMALL_STATE(7757)] = 254517, + [SMALL_STATE(7758)] = 254524, + [SMALL_STATE(7759)] = 254531, + [SMALL_STATE(7760)] = 254538, + [SMALL_STATE(7761)] = 254545, + [SMALL_STATE(7762)] = 254552, + [SMALL_STATE(7763)] = 254559, + [SMALL_STATE(7764)] = 254566, + [SMALL_STATE(7765)] = 254573, + [SMALL_STATE(7766)] = 254580, + [SMALL_STATE(7767)] = 254587, + [SMALL_STATE(7768)] = 254594, + [SMALL_STATE(7769)] = 254601, + [SMALL_STATE(7770)] = 254608, + [SMALL_STATE(7771)] = 254615, + [SMALL_STATE(7772)] = 254622, + [SMALL_STATE(7773)] = 254629, + [SMALL_STATE(7774)] = 254636, + [SMALL_STATE(7775)] = 254643, + [SMALL_STATE(7776)] = 254650, + [SMALL_STATE(7777)] = 254657, + [SMALL_STATE(7778)] = 254664, + [SMALL_STATE(7779)] = 254671, + [SMALL_STATE(7780)] = 254678, + [SMALL_STATE(7781)] = 254685, + [SMALL_STATE(7782)] = 254692, + [SMALL_STATE(7783)] = 254699, + [SMALL_STATE(7784)] = 254706, + [SMALL_STATE(7785)] = 254713, + [SMALL_STATE(7786)] = 254720, + [SMALL_STATE(7787)] = 254727, + [SMALL_STATE(7788)] = 254734, + [SMALL_STATE(7789)] = 254741, + [SMALL_STATE(7790)] = 254748, + [SMALL_STATE(7791)] = 254755, + [SMALL_STATE(7792)] = 254762, + [SMALL_STATE(7793)] = 254769, + [SMALL_STATE(7794)] = 254776, + [SMALL_STATE(7795)] = 254783, + [SMALL_STATE(7796)] = 254790, + [SMALL_STATE(7797)] = 254797, + [SMALL_STATE(7798)] = 254804, + [SMALL_STATE(7799)] = 254811, + [SMALL_STATE(7800)] = 254818, + [SMALL_STATE(7801)] = 254825, + [SMALL_STATE(7802)] = 254832, + [SMALL_STATE(7803)] = 254839, + [SMALL_STATE(7804)] = 254846, + [SMALL_STATE(7805)] = 254853, + [SMALL_STATE(7806)] = 254860, + [SMALL_STATE(7807)] = 254867, + [SMALL_STATE(7808)] = 254874, + [SMALL_STATE(7809)] = 254881, + [SMALL_STATE(7810)] = 254888, + [SMALL_STATE(7811)] = 254895, + [SMALL_STATE(7812)] = 254902, + [SMALL_STATE(7813)] = 254909, + [SMALL_STATE(7814)] = 254916, + [SMALL_STATE(7815)] = 254923, + [SMALL_STATE(7816)] = 254930, + [SMALL_STATE(7817)] = 254937, + [SMALL_STATE(7818)] = 254944, + [SMALL_STATE(7819)] = 254951, + [SMALL_STATE(7820)] = 254958, + [SMALL_STATE(7821)] = 254965, + [SMALL_STATE(7822)] = 254972, + [SMALL_STATE(7823)] = 254979, + [SMALL_STATE(7824)] = 254986, + [SMALL_STATE(7825)] = 254993, + [SMALL_STATE(7826)] = 255000, + [SMALL_STATE(7827)] = 255007, + [SMALL_STATE(7828)] = 255014, + [SMALL_STATE(7829)] = 255021, + [SMALL_STATE(7830)] = 255028, + [SMALL_STATE(7831)] = 255035, + [SMALL_STATE(7832)] = 255042, + [SMALL_STATE(7833)] = 255049, + [SMALL_STATE(7834)] = 255056, + [SMALL_STATE(7835)] = 255063, + [SMALL_STATE(7836)] = 255070, + [SMALL_STATE(7837)] = 255077, + [SMALL_STATE(7838)] = 255084, + [SMALL_STATE(7839)] = 255091, + [SMALL_STATE(7840)] = 255098, + [SMALL_STATE(7841)] = 255105, + [SMALL_STATE(7842)] = 255112, + [SMALL_STATE(7843)] = 255119, + [SMALL_STATE(7844)] = 255126, + [SMALL_STATE(7845)] = 255133, + [SMALL_STATE(7846)] = 255140, + [SMALL_STATE(7847)] = 255147, + [SMALL_STATE(7848)] = 255154, + [SMALL_STATE(7849)] = 255161, + [SMALL_STATE(7850)] = 255168, + [SMALL_STATE(7851)] = 255175, + [SMALL_STATE(7852)] = 255182, + [SMALL_STATE(7853)] = 255189, + [SMALL_STATE(7854)] = 255196, + [SMALL_STATE(7855)] = 255203, + [SMALL_STATE(7856)] = 255210, + [SMALL_STATE(7857)] = 255217, + [SMALL_STATE(7858)] = 255224, + [SMALL_STATE(7859)] = 255231, + [SMALL_STATE(7860)] = 255238, + [SMALL_STATE(7861)] = 255245, + [SMALL_STATE(7862)] = 255252, + [SMALL_STATE(7863)] = 255259, + [SMALL_STATE(7864)] = 255266, + [SMALL_STATE(7865)] = 255273, + [SMALL_STATE(7866)] = 255280, + [SMALL_STATE(7867)] = 255287, + [SMALL_STATE(7868)] = 255294, + [SMALL_STATE(7869)] = 255301, + [SMALL_STATE(7870)] = 255308, + [SMALL_STATE(7871)] = 255315, + [SMALL_STATE(7872)] = 255322, + [SMALL_STATE(7873)] = 255329, + [SMALL_STATE(7874)] = 255336, + [SMALL_STATE(7875)] = 255343, + [SMALL_STATE(7876)] = 255350, + [SMALL_STATE(7877)] = 255357, + [SMALL_STATE(7878)] = 255364, + [SMALL_STATE(7879)] = 255371, + [SMALL_STATE(7880)] = 255378, + [SMALL_STATE(7881)] = 255385, + [SMALL_STATE(7882)] = 255392, + [SMALL_STATE(7883)] = 255399, + [SMALL_STATE(7884)] = 255406, + [SMALL_STATE(7885)] = 255413, + [SMALL_STATE(7886)] = 255420, + [SMALL_STATE(7887)] = 255427, + [SMALL_STATE(7888)] = 255434, + [SMALL_STATE(7889)] = 255441, + [SMALL_STATE(7890)] = 255448, + [SMALL_STATE(7891)] = 255455, + [SMALL_STATE(7892)] = 255462, + [SMALL_STATE(7893)] = 255469, + [SMALL_STATE(7894)] = 255476, + [SMALL_STATE(7895)] = 255483, + [SMALL_STATE(7896)] = 255490, + [SMALL_STATE(7897)] = 255497, + [SMALL_STATE(7898)] = 255504, + [SMALL_STATE(7899)] = 255511, + [SMALL_STATE(7900)] = 255518, + [SMALL_STATE(7901)] = 255525, + [SMALL_STATE(7902)] = 255532, + [SMALL_STATE(7903)] = 255539, + [SMALL_STATE(7904)] = 255546, + [SMALL_STATE(7905)] = 255553, + [SMALL_STATE(7906)] = 255560, + [SMALL_STATE(7907)] = 255567, + [SMALL_STATE(7908)] = 255574, + [SMALL_STATE(7909)] = 255581, + [SMALL_STATE(7910)] = 255588, + [SMALL_STATE(7911)] = 255595, + [SMALL_STATE(7912)] = 255602, + [SMALL_STATE(7913)] = 255609, + [SMALL_STATE(7914)] = 255616, + [SMALL_STATE(7915)] = 255623, + [SMALL_STATE(7916)] = 255630, + [SMALL_STATE(7917)] = 255637, + [SMALL_STATE(7918)] = 255644, + [SMALL_STATE(7919)] = 255651, + [SMALL_STATE(7920)] = 255658, + [SMALL_STATE(7921)] = 255665, + [SMALL_STATE(7922)] = 255672, + [SMALL_STATE(7923)] = 255679, + [SMALL_STATE(7924)] = 255686, + [SMALL_STATE(7925)] = 255693, + [SMALL_STATE(7926)] = 255700, + [SMALL_STATE(7927)] = 255707, + [SMALL_STATE(7928)] = 255714, + [SMALL_STATE(7929)] = 255721, + [SMALL_STATE(7930)] = 255728, + [SMALL_STATE(7931)] = 255735, + [SMALL_STATE(7932)] = 255742, + [SMALL_STATE(7933)] = 255749, + [SMALL_STATE(7934)] = 255756, + [SMALL_STATE(7935)] = 255763, + [SMALL_STATE(7936)] = 255770, + [SMALL_STATE(7937)] = 255777, + [SMALL_STATE(7938)] = 255784, + [SMALL_STATE(7939)] = 255791, + [SMALL_STATE(7940)] = 255798, + [SMALL_STATE(7941)] = 255805, + [SMALL_STATE(7942)] = 255812, + [SMALL_STATE(7943)] = 255819, + [SMALL_STATE(7944)] = 255826, + [SMALL_STATE(7945)] = 255833, + [SMALL_STATE(7946)] = 255840, + [SMALL_STATE(7947)] = 255847, + [SMALL_STATE(7948)] = 255854, + [SMALL_STATE(7949)] = 255861, + [SMALL_STATE(7950)] = 255868, + [SMALL_STATE(7951)] = 255875, + [SMALL_STATE(7952)] = 255882, + [SMALL_STATE(7953)] = 255889, + [SMALL_STATE(7954)] = 255896, + [SMALL_STATE(7955)] = 255903, + [SMALL_STATE(7956)] = 255910, + [SMALL_STATE(7957)] = 255917, + [SMALL_STATE(7958)] = 255924, + [SMALL_STATE(7959)] = 255931, + [SMALL_STATE(7960)] = 255938, + [SMALL_STATE(7961)] = 255945, + [SMALL_STATE(7962)] = 255952, + [SMALL_STATE(7963)] = 255959, + [SMALL_STATE(7964)] = 255966, + [SMALL_STATE(7965)] = 255973, + [SMALL_STATE(7966)] = 255980, + [SMALL_STATE(7967)] = 255987, + [SMALL_STATE(7968)] = 255994, + [SMALL_STATE(7969)] = 256001, + [SMALL_STATE(7970)] = 256008, + [SMALL_STATE(7971)] = 256015, + [SMALL_STATE(7972)] = 256022, + [SMALL_STATE(7973)] = 256029, + [SMALL_STATE(7974)] = 256036, + [SMALL_STATE(7975)] = 256043, + [SMALL_STATE(7976)] = 256050, + [SMALL_STATE(7977)] = 256057, + [SMALL_STATE(7978)] = 256064, + [SMALL_STATE(7979)] = 256071, + [SMALL_STATE(7980)] = 256078, + [SMALL_STATE(7981)] = 256085, + [SMALL_STATE(7982)] = 256092, + [SMALL_STATE(7983)] = 256099, + [SMALL_STATE(7984)] = 256106, + [SMALL_STATE(7985)] = 256113, + [SMALL_STATE(7986)] = 256120, + [SMALL_STATE(7987)] = 256127, + [SMALL_STATE(7988)] = 256134, + [SMALL_STATE(7989)] = 256141, + [SMALL_STATE(7990)] = 256148, + [SMALL_STATE(7991)] = 256155, + [SMALL_STATE(7992)] = 256162, + [SMALL_STATE(7993)] = 256169, + [SMALL_STATE(7994)] = 256176, + [SMALL_STATE(7995)] = 256183, + [SMALL_STATE(7996)] = 256190, + [SMALL_STATE(7997)] = 256197, + [SMALL_STATE(7998)] = 256204, + [SMALL_STATE(7999)] = 256211, + [SMALL_STATE(8000)] = 256218, + [SMALL_STATE(8001)] = 256225, + [SMALL_STATE(8002)] = 256232, + [SMALL_STATE(8003)] = 256239, + [SMALL_STATE(8004)] = 256246, + [SMALL_STATE(8005)] = 256253, + [SMALL_STATE(8006)] = 256260, + [SMALL_STATE(8007)] = 256267, + [SMALL_STATE(8008)] = 256274, + [SMALL_STATE(8009)] = 256281, + [SMALL_STATE(8010)] = 256288, + [SMALL_STATE(8011)] = 256295, + [SMALL_STATE(8012)] = 256302, + [SMALL_STATE(8013)] = 256309, + [SMALL_STATE(8014)] = 256316, + [SMALL_STATE(8015)] = 256323, + [SMALL_STATE(8016)] = 256330, + [SMALL_STATE(8017)] = 256337, + [SMALL_STATE(8018)] = 256344, + [SMALL_STATE(8019)] = 256351, + [SMALL_STATE(8020)] = 256358, + [SMALL_STATE(8021)] = 256365, + [SMALL_STATE(8022)] = 256372, + [SMALL_STATE(8023)] = 256379, + [SMALL_STATE(8024)] = 256386, + [SMALL_STATE(8025)] = 256393, + [SMALL_STATE(8026)] = 256400, + [SMALL_STATE(8027)] = 256407, + [SMALL_STATE(8028)] = 256414, + [SMALL_STATE(8029)] = 256421, + [SMALL_STATE(8030)] = 256428, + [SMALL_STATE(8031)] = 256435, + [SMALL_STATE(8032)] = 256442, + [SMALL_STATE(8033)] = 256449, + [SMALL_STATE(8034)] = 256456, + [SMALL_STATE(8035)] = 256463, + [SMALL_STATE(8036)] = 256470, + [SMALL_STATE(8037)] = 256477, + [SMALL_STATE(8038)] = 256484, + [SMALL_STATE(8039)] = 256491, + [SMALL_STATE(8040)] = 256498, + [SMALL_STATE(8041)] = 256505, + [SMALL_STATE(8042)] = 256512, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -628446,6564 +504792,6067 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9755), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6284), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9754), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8435), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9752), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9749), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8440), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8428), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8443), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9731), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8444), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9726), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9725), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9724), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9720), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9719), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9718), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9717), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7513), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8448), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7982), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9710), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9692), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8459), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7397), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7163), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9670), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9669), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8463), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9503), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6294), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9510), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9500), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8765), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8053), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8533), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9753), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8792), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9707), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9049), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9053), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9560), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8511), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7379), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7204), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9591), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9592), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8981), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9498), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8980), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8436), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8416), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8790), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9655), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8469), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9425), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9673), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9637), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8968), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9497), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8811), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7373), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9426), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9427), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9367), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9567), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8667), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8376), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8516), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9187), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8521), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9714), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9748), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9735), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9555), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8523), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7171), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9649), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9636), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 10), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1726), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7272), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9503), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6294), - [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9510), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8765), - [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(145), - [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1982), - [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1985), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1982), - [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(748), - [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5843), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1520), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(428), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4005), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4726), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3375), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9752), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7238), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8439), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9749), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8440), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4829), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(63), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3932), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1757), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4240), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4189), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2619), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4460), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6899), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5956), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5955), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5905), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8053), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8533), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2004), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9753), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8792), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(227), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9707), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1743), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9049), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9053), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9560), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2078), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1972), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9719), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9718), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9717), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7513), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4804), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8448), - [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7982), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4797), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4822), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3989), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9710), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3729), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9692), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4980), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5698), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2280), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1476), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8511), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2106), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1885), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7379), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7204), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9591), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9592), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1895), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2188), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8463), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2114), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5589), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6060), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 10), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 76), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 76), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1727), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7283), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9367), - [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6354), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9567), - [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8667), - [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(731), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4054), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4650), - [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3321), - [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(84), - [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4041), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8376), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8516), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2056), - [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9187), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8521), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(157), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9714), - [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1739), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9748), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9735), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9555), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2279), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8523), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1882), - [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7409), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7171), - [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9649), - [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9636), - [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1958), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2088), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1709), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7290), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8981), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6275), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8980), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8436), - [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(935), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4206), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4702), - [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3331), - [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(50), - [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4179), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8416), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8790), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2152), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9655), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8469), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(271), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9425), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1730), - [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9673), - [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9637), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8968), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2277), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8811), - [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1943), - [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7373), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7160), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9426), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9427), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1936), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2081), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), - [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1712), - [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7287), - [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9129), - [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6289), - [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9365), - [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8538), - [936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1135), - [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4050), - [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4657), - [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3315), - [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(76), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4038), - [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8379), - [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8619), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2044), - [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9443), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8518), - [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(328), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9721), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1735), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9174), - [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9173), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9346), - [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2281), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8625), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1966), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7374), - [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7167), - [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9663), - [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9650), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1963), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2038), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9129), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9365), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8538), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8379), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8619), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9443), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8518), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9721), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9174), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9173), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9346), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8625), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7374), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7167), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9663), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9650), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7962), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7942), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7113), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7914), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7899), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7094), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6745), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6900), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7682), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7468), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7572), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7568), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7562), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7548), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7538), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7480), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7207), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7279), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7172), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7191), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4951), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7601), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7600), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6965), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6863), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7482), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7536), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7478), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7477), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7593), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7506), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6854), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7856), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7857), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7273), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7260), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7167), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7114), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7320), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7855), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7241), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7256), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7933), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7934), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7291), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7211), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7177), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7487), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7932), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7954), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7945), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 10), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 79), + [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 10), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1152), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5969), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7273), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5182), + [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7260), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7167), + [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(142), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1440), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1456), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1440), + [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(429), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4755), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1031), + [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(272), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3165), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3658), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2544), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7914), + [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5929), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7096), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7899), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7094), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3892), + [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(82), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3054), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1202), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3478), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3152), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1965), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3606), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5573), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4792), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4745), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4721), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6841), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7114), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1629), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7320), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6858), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(227), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7855), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1180), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7242), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7241), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7256), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1517), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1294), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7548), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7538), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7480), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6097), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3857), + [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6961), + [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6276), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3876), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3843), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3103), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7207), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2904), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7279), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3933), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4649), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1664), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(986), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7121), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1549), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1328), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6049), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5900), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7933), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7934), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1330), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1580), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7108), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1569), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4544), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4951), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 79), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1146), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5985), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7291), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5210), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7211), + [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6932), + [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(500), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3338), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3699), + [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2569), + [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(61), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3220), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6523), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7177), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1613), + [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7487), + [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7116), + [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(240), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7932), + [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1170), + [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7321), + [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7322), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7221), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1665), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7181), + [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1301), + [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6076), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5862), + [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7954), + [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7945), + [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1300), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1633), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7669), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7179), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7943), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7491), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7493), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7301), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7081), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7963), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7955), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1161), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5958), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7354), + [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5184), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7292), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6894), + [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(640), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3341), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3672), + [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2572), + [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(64), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3333), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6478), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7089), + [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1574), + [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7669), + [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7179), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(244), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7943), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1173), + [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7491), + [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7493), + [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7301), + [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1663), + [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7081), + [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1308), + [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6068), + [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5882), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7963), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7955), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1310), + [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1605), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1144), + [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5946), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7601), + [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5171), + [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7600), + [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6965), + [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(594), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3266), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3749), + [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2534), + [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(47), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3313), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6756), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6863), + [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1415), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7482), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6933), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(163), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7536), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1168), + [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7478), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7477), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7593), + [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1667), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6854), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1289), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6055), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5871), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7856), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7857), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1286), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1417), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1746), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7294), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9755), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6284), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9754), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8435), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(145), - [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1982), - [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1985), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1982), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(748), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5843), - [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1520), - [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4039), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4667), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3395), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9752), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7238), - [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8439), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9749), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8440), - [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4829), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(86), - [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3932), - [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1757), - [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4240), - [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4043), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2619), - [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4460), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6899), - [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5956), - [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5955), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5905), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8428), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8443), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2065), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9731), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8444), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(224), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9726), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1744), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9725), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9724), - [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9720), - [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2078), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1972), - [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9719), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9718), - [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9717), - [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7513), - [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4804), - [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8448), - [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7982), - [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5465), - [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4822), - [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3989), - [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9710), - [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3729), - [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9692), - [1309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4980), - [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5698), - [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2278), - [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1476), - [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8459), - [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2106), - [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1970), - [1330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7397), - [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7163), - [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9670), - [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9669), - [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1969), - [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2113), - [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8463), - [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2114), - [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5589), - [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6060), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1166), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5952), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7962), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5139), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7942), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7113), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(142), + [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1440), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1456), + [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1440), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(429), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4755), + [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1031), + [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3145), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3746), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2541), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7914), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5929), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7096), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7899), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7094), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3892), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(66), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3054), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1202), + [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3478), + [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3212), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1965), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3606), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5573), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4792), + [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4745), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4721), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6745), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6900), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1640), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7682), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6916), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(241), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7468), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1167), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7572), + [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7568), + [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7562), + [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1517), + [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1294), + [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7548), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7538), + [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7480), + [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6097), + [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3857), + [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6961), + [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6276), + [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4392), + [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3843), + [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3103), + [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7207), + [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2904), + [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7279), + [1309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3933), + [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4649), + [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1666), + [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(986), + [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7172), + [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1549), + [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1338), + [1330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6053), + [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5907), + [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7191), + [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7213), + [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1320), + [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1572), + [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7108), + [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1569), + [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4544), + [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4951), [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 13), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 13), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8537), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8475), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 13), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 13), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [1392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1715), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6999), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 14), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 14), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 14), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 14), + [1392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1162), [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(226), - [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1982), - [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1982), - [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2112), + [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(204), + [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1440), + [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1440), + [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1378), [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2112), - [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(428), - [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4005), - [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4726), - [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4240), - [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9752), - [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7238), - [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8537), - [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9749), - [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(63), - [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3932), - [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1782), - [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2619), - [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4460), - [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6899), - [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5956), - [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5955), - [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5905), - [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8053), - [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8533), - [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8792), + [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1378), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(272), + [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3165), + [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3658), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3478), + [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7914), + [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5929), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7111), + [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7899), + [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(82), + [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3054), + [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1210), + [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1965), + [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3606), + [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5573), + [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4792), + [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4745), + [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4721), + [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6841), + [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7114), + [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6858), [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(227), - [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9707), - [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1743), - [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9049), - [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9053), - [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9560), - [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2078), - [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1972), - [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9719), - [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9718), - [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9717), - [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7513), - [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4804), - [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8448), - [1516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7982), - [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4797), - [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4822), - [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3989), - [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9710), - [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3729), - [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9692), - [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5698), - [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8475), - [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8511), - [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2106), - [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1885), - [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1895), - [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2188), - [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8463), - [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2114), - [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5589), - [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6060), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1725), - [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(731), - [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4054), - [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4650), - [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(84), - [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8376), - [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8516), - [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8521), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(157), - [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9714), - [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1739), - [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9748), - [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9735), - [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9555), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8523), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1882), - [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1958), - [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2088), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1713), - [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(935), - [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4206), - [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4702), - [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(50), - [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8416), - [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8790), - [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8469), - [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(271), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9425), - [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1730), - [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9673), - [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9637), - [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8968), - [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8811), - [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1943), - [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1936), - [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2081), - [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1720), - [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1245), - [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4039), - [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4667), - [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(86), - [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8428), - [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8443), - [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8444), - [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(224), - [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9726), - [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1744), - [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9725), - [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9724), - [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9720), - [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8459), - [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1970), - [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1969), - [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2113), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1717), - [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1135), - [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4050), - [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4657), - [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(76), - [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8379), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8619), - [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8518), - [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(328), - [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9721), - [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1735), - [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9174), - [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9173), - [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9346), - [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8625), - [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1966), - [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1963), - [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2038), - [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1711), - [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1571), - [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4787), - [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4679), - [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(45), - [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8299), - [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8703), - [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8621), - [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(269), - [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9727), - [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1741), - [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9434), - [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9469), - [1835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9127), - [1838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8756), - [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1946), - [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1940), - [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2025), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8299), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8703), - [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8621), - [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9727), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9434), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9469), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9127), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8756), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9466), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9444), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9386), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6848), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8908), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9708), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9756), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7461), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7921), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8599), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8910), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 43), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 43), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7852), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9167), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9715), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9757), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9627), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8855), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8452), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7951), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9252), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9722), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9758), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7509), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8706), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7969), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8471), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7623), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9332), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9733), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9760), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7474), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8796), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7941), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8457), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), - [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7823), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 9), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 9), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8442), - [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), - [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), - [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8442), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7895), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8064), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9041), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8757), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9590), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2626), - [2268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(226), - [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1982), - [2274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1982), - [2277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2112), - [2280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1135), - [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7238), - [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8537), - [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(76), - [2292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1782), - [2295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7895), - [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8379), - [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8619), - [2304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2044), - [2307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9443), - [2310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8518), - [2313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(328), - [2316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9721), - [2319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1735), - [2322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9174), - [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9173), - [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9346), - [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2078), - [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1972), - [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9719), - [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9718), - [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9717), - [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7513), - [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4804), - [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8448), - [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7982), - [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4797), - [2361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4822), - [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9627), - [2367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8475), - [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8625), - [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2106), - [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1966), - [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1963), - [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2038), - [2385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8463), - [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2114), - [2391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5589), - [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6060), - [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2571), - [2400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(935), - [2403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(50), - [2406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8416), - [2409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8790), - [2412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2152), - [2415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9655), - [2418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8469), - [2421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(271), - [2424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9425), - [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1730), - [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9673), - [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9637), - [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8968), - [2439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8811), - [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1943), - [2445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1936), - [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2081), - [2451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2646), - [2454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(731), - [2457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(84), - [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8376), - [2463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8516), - [2466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2056), - [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9187), - [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8521), - [2475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(157), - [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9714), - [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1739), - [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9748), - [2487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9735), - [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9555), - [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8523), - [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1882), - [2499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1958), - [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2088), - [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2607), - [2508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1571), - [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(45), - [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8299), - [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8703), - [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2198), - [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9041), - [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8621), - [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(269), - [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9727), - [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1741), - [2538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9434), - [2541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9469), - [2544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9127), - [2547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8756), - [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1946), - [2553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1940), - [2556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2025), - [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, .production_id = 9), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, .production_id = 9), - [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, .production_id = 44), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, .production_id = 44), - [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2655), - [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(86), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8064), - [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8443), - [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8757), - [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(224), - [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9590), - [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1744), - [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9725), - [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9724), - [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9720), - [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8459), - [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1970), - [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1969), - [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2113), - [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2562), - [2615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(428), - [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(63), - [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8053), - [2624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8533), - [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2004), - [2630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9753), - [2633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8792), - [2636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(227), - [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9707), - [2642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1743), - [2645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9049), - [2648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9053), - [2651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9560), - [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8511), - [2657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1885), - [2660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1895), - [2663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2188), - [2666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2634), - [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1245), - [2672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8428), - [2675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2065), - [2678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9731), - [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8444), - [2684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9726), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9052), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8881), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8445), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9625), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9624), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7818), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9487), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7164), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9671), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [2743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8557), - [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 49), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 49), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8557), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 97), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 97), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, .production_id = 145), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, .production_id = 145), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 8, .production_id = 207), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 8, .production_id = 207), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 9, .production_id = 216), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 9, .production_id = 216), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 175), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 175), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 174), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 174), - [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(2437), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1), - [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1), SHIFT(7238), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1), - [2802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(7895), - [2805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(9627), - [2808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(8475), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(2437), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1), SHIFT(7238), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [2825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(7895), - [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(9627), - [2831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(8475), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 162), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 162), - [2848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(2437), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2), SHIFT(7238), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(7895), - [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(9627), - [2866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(8475), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 122), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 122), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 164), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 164), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 123), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 123), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 105), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 105), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 106), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 106), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 215), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 215), - [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 202), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 202), - [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 209), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 209), - [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 208), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 208), - [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 163), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 163), - [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 50), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 50), - [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 98), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 98), - [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 162), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 162), - [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 85), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 85), - [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 50), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 50), - [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 161), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 161), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 161), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 161), - [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 51), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 51), - [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 183), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 183), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 60), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 60), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 153), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 153), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 184), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 184), - [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 53), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 53), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 163), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 163), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 185), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 185), - [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 194), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 194), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 64), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 64), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 164), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 164), - [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 191), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 191), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 85), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 85), - [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 123), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 123), - [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 60), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 60), - [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 192), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 192), - [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 206), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 206), - [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 205), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 205), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 183), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 183), - [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 195), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 195), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 185), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 185), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 122), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 122), - [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 137), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 137), - [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 136), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 136), - [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 193), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 193), - [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 202), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 202), - [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 184), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 184), - [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3), - [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 146), - [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 146), - [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 108), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 108), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6062), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9300), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9728), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9759), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7521), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8755), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9302), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8461), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 160), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 160), - [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4), - [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, .production_id = 55), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, .production_id = 55), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, .production_id = 56), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, .production_id = 56), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 159), - [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 159), - [3221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8656), - [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6, .production_id = 182), - [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6, .production_id = 182), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8820), - [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3), - [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, .production_id = 89), - [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, .production_id = 89), - [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, .production_id = 88), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, .production_id = 88), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8656), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [3248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8600), - [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 200), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 200), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 10), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 10), - [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 77), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 77), - [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 76), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 76), - [3267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8820), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 75), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 75), - [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 74), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 74), - [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 73), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 73), - [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3), - [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3), - [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, .production_id = 10), - [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, .production_id = 10), - [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), - [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), - [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 73), - [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 73), - [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 67), - [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 67), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 65), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 65), - [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), - [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 149), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 149), - [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 46), - [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 46), - [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 58), - [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 58), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 113), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 113), - [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, .production_id = 55), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, .production_id = 55), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), - [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, .production_id = 148), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, .production_id = 148), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 147), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 147), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 44), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 44), - [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), - [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), - [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3), - [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3), - [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 42), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 42), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 36), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 36), - [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 10), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 10), - [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 10), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 10), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 35), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 35), - [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 23), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 23), - [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 24), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 24), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 24), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 24), - [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 23), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 23), - [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 120), - [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 120), - [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 9), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 9), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 24), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 24), - [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 76), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 76), - [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8600), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 118), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 118), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 117), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 117), - [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 119), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 119), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8966), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9628), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8562), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7740), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7210), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9677), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), - [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 76), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 76), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [3518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4908), - [3521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9052), - [3524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6376), - [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8881), - [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8445), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5815), - [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9625), - [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4185), - [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5843), - [3547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5843), - [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4048), - [3553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4663), - [3556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4240), - [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9752), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6201), - [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8513), - [3568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9749), - [3571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8440), - [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3932), - [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9624), - [3580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2619), - [3583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3958), - [3586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6880), - [3589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5931), - [3592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5929), - [3595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5927), - [3598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3989), - [3601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9710), - [3604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3729), - [3607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9692), - [3610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4980), - [3613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5726), - [3616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7818), - [3619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1476), - [3622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2341), - [3625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9487), - [3628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7164), - [3631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9671), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [3648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8966), - [3651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6379), - [3654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9628), - [3657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8562), - [3660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4047), - [3663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4673), - [3666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7740), - [3669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2338), - [3672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7210), - [3675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9677), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9573), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9381), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8438), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7732), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7202), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9635), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8907), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9502), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8638), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7771), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7173), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9683), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [3726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9573), - [3729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6470), - [3732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9381), - [3735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8438), - [3738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4147), - [3741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4694), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [3746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7732), - [3749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2332), - [3752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7202), - [3755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9635), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), - [3780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [3794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8907), - [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6344), - [3800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9502), - [3803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8638), - [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4044), - [3809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4682), - [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7771), - [3815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2340), - [3818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7173), - [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9683), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8832), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8453), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7883), - [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9583), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9480), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9654), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9664), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9690), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9684), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9686), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9678), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7828), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9597), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7795), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8957), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7605), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9667), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9680), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9672), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7695), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9674), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7981), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9640), - [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), - [4052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [4055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), - [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8776), - [4092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8776), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7249), - [4105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(2437), - [4108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(226), - [4111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1982), - [4114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1982), - [4117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(2112), - [4120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3320), - [4123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7238), - [4126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(2129), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), - [4131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1782), - [4134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7895), - [4137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(2078), - [4140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1972), - [4143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(9719), - [4146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(9718), - [4149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(9717), - [4152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7513), - [4155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4804), - [4158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(8448), - [4161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7982), - [4164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4797), - [4167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4822), - [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(9627), - [4173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7249), - [4176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(8475), - [4179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(2106), - [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(8463), - [4185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(2114), - [4188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5589), - [4191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6060), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9329), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9344), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9013), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9050), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8874), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), - [4280] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), - [4288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [4291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [4294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(563), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), - [4299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, .production_id = 1), - [4304] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8477), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [4358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(575), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), - [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2), - [4403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9040), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9196), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9392), - [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9561), - [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9288), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9179), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9283), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [4598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9215), - [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9216), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9218), - [4609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9219), - [4612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9221), - [4615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9225), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [4620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9250), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), - [4625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9255), - [4628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9256), - [4631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9257), - [4634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9261), - [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9264), - [4640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9265), - [4643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9266), - [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [4648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9267), - [4651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9271), - [4654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9273), - [4657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9275), - [4660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9278), - [4663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9279), - [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9282), - [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9248), - [4672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9284), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9598), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9285), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9010), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9439), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9244), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8930), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9339), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9205), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9032), - [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9437), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9259), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9370), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9566), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9307), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7542), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7576), - [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), - [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), - [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), - [4848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), - [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), - [4852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2), - [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2), - [4856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), - [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), - [4860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), - [4862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 32), REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), - [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), - [4867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 32), - [4869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 32), REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), - [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 32), - [4874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 32), SHIFT(587), - [4877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), - [4881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 32), SHIFT(548), - [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), - [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), - [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), - [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), - [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 15), - [4894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 15), REDUCE(sym_template_function, 2, .production_id = 16), - [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 15), - [4899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, .production_id = 16), - [4901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 15), REDUCE(sym_template_function, 2, .production_id = 16), - [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, .production_id = 16), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6734), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [4924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(578), - [4927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(594), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7964), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), - [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), - [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), - [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), - [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), - [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), - [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), - [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), - [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), - [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), - [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5937), - [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), - [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), - [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), - [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [5008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 70), - [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 70), - [5012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2), - [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2), - [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), - [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7650), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), - [5024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 52), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 52), - [5028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3), - [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, .production_id = 19), - [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, .production_id = 19), - [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, .production_id = 30), - [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, .production_id = 30), - [5042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3), - [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3), - [5046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 71), - [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 71), - [5050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, .production_id = 158), - [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, .production_id = 158), - [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, .production_id = 38), - [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, .production_id = 38), - [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, .production_id = 63), - [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, .production_id = 63), - [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 115), - [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 115), - [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 116), - [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 116), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8328), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8813), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8834), - [5086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, .production_id = 13), - [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 13), - [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, .production_id = 135), - [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 135), - [5094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8813), - [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), - [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), - [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8903), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8788), - [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8905), - [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), - [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8911), - [5115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2391), - [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [5122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7662), - [5125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8462), - [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [5134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), - [5140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(604), - [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), - [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), - [5149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 32), SHIFT(528), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8847), - [5154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8847), - [5157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 166), - [5159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 166), - [5161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 64), - [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 64), - [5165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 10), - [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 10), - [5169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 77), - [5171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 77), - [5173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 76), - [5175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 76), - [5177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(537), - [5180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2), - [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2), - [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [5186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 160), - [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 160), - [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), - [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), - [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8876), - [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2), - [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2), - [5202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1), - [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), - [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 181), - [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 181), - [5212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 203), - [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 203), - [5216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 65), - [5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 65), - [5220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 64), - [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 64), - [5224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 64), - [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 64), - [5228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 54), - [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 54), - [5232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 10), - [5234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 10), - [5236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 7, .production_id = 203), - [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 7, .production_id = 203), - [5240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 32), - [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 32), - [5244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 167), - [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 167), - [5248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression_not_binary, 1), - [5251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(548), - [5254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression_not_binary, 1), - [5257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(587), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8460), - [5264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 187), - [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 187), - [5268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 188), - [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 188), - [5272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 54), - [5274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 54), - [5276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_list_item, 2), - [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_list_item, 2), - [5280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(528), - [5283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 167), - [5285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 167), - [5287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 32), SHIFT(567), - [5290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 119), - [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 119), - [5294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 76), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 76), - [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 120), - [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 120), - [5302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 181), - [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 181), - [5306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 64), - [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 64), - [5310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 187), - [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 187), - [5314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [5318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2678), - [5321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [5323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [5325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4), - [5327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4), - [5329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 188), - [5331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 188), - [5333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 166), - [5335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 166), - [5337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 94), - [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 94), - [5341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 6, .production_id = 172), - [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 6, .production_id = 172), - [5345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 34), - [5347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 34), - [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [5353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [5359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8846), - [5362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [5366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2566), - [5369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, .production_id = 48), - [5371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, .production_id = 48), - [5373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, .production_id = 10), - [5375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, .production_id = 10), - [5377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1), - [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1), - [5381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8731), - [5384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 6, .production_id = 169), - [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 6, .production_id = 169), - [5388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, .production_id = 9), - [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, .production_id = 9), - [5392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 7, .production_id = 174), - [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 7, .production_id = 174), - [5396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 18), - [5398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 18), - [5400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [5402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [5404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2583), - [5407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7869), - [5410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8460), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8449), - [5417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 7, .production_id = 190), - [5419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 7, .production_id = 190), - [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8731), - [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8846), - [5425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 47), - [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 47), - [5429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 46), - [5431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 46), - [5433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 93), - [5435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 93), - [5437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 7, .production_id = 189), - [5439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 7, .production_id = 189), - [5441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 45), - [5443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 45), - [5445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 44), - [5447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 44), - [5449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [5451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [5453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, .production_id = 12), - [5455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, .production_id = 12), - [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9505), - [5461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), SHIFT(6978), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [5468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [5472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 89), - [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 89), - [5476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 91), - [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 91), - [5480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4), - [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4), - [5484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, .production_id = 46), - [5486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, .production_id = 46), - [5488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 5, .production_id = 133), - [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 5, .production_id = 133), - [5492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, .production_id = 44), - [5494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, .production_id = 44), - [5496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 12), - [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 12), - [5500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 12), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 12), - [5504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, .production_id = 45), - [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, .production_id = 45), - [5508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, .production_id = 96), - [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, .production_id = 96), - [5512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 5, .production_id = 132), - [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 5, .production_id = 132), - [5516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 5, .production_id = 89), - [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 5, .production_id = 89), - [5520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), SHIFT(9505), - [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8001), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8450), - [5531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 5, .production_id = 131), - [5533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 5, .production_id = 131), - [5535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 5, .production_id = 130), - [5537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 5, .production_id = 130), - [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [5541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [5545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 25), - [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 25), - [5549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, .production_id = 6), - [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, .production_id = 6), - [5553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5), - [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5), - [5557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, .production_id = 11), - [5559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, .production_id = 11), - [5561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, .production_id = 201), - [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, .production_id = 201), - [5565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [5569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2647), - [5572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7979), - [5575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8449), - [5578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 10), - [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 10), - [5582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 9), - [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 9), - [5586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 8, .production_id = 204), - [5588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 8, .production_id = 204), - [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [5592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [5600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [5602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [5604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [5606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [5608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), - [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), - [5612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 6, .production_id = 171), - [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 6, .production_id = 171), - [5616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 129), - [5618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 129), - [5620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 6, .production_id = 170), - [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 6, .production_id = 170), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7985), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8454), - [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [5632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2681), - [5635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2682), - [5638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7985), - [5641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8454), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [5650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(567), - [5653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 1, .production_id = 6), - [5655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 1, .production_id = 6), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9331), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), - [5665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, .production_id = 10), - [5667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, .production_id = 10), - [5669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, .production_id = 45), - [5671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, .production_id = 45), - [5673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, .production_id = 1), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, .production_id = 133), - [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, .production_id = 133), - [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9251), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2836), - [5694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7703), - [5697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8464), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 43), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [5710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 43), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9509), - [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9368), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [5728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 18), - [5730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 18), - [5732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3045), - [5735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 52), - [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 52), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6196), - [5743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, .production_id = 20), - [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, .production_id = 20), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), - [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [5759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), SHIFT(604), - [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 86), - [5764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 86), - [5766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3065), - [5769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 61), - [5771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 61), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9382), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [5783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3075), - [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 47), - [5788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 47), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), - [5792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 45), - [5794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 45), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), - [5800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 10), - [5802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 10), - [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6731), - [5806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 91), - [5820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 91), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), - [5828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4), - [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9352), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 6, .production_id = 189), - [5838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 6, .production_id = 189), - [5840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 6, .production_id = 190), - [5842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 6, .production_id = 190), - [5844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 6, .production_id = 174), - [5846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 6, .production_id = 174), - [5848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 5, .production_id = 169), - [5850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 5, .production_id = 169), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), - [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 7, .production_id = 204), - [5856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 7, .production_id = 204), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 89), - [5860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 89), - [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 94), - [5864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 94), - [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, .production_id = 46), - [5868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, .production_id = 46), - [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, .production_id = 44), - [5872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, .production_id = 44), - [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, .production_id = 96), - [5876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, .production_id = 96), - [5878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 44), - [5880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 44), - [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 5, .production_id = 170), - [5884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 5, .production_id = 170), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [5888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 1, .production_id = 11), - [5890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 1, .production_id = 11), - [5892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2), - [5894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2), - [5896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), - [5898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), - [5900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3), - [5902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3), - [5904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, .production_id = 89), - [5906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, .production_id = 89), - [5908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, .production_id = 9), - [5910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, .production_id = 9), - [5912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, .production_id = 131), - [5914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, .production_id = 131), - [5916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 92), - [5918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 92), - [5920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 5, .production_id = 171), - [5922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 5, .production_id = 171), - [5924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 5, .production_id = 172), - [5926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 5, .production_id = 172), - [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, .production_id = 132), - [5930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, .production_id = 132), - [5932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, .production_id = 130), - [5934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, .production_id = 130), - [5936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), SHIFT(528), - [5939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 129), - [5941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 129), - [5943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 46), - [5945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 46), - [5947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, .production_id = 48), - [5949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, .production_id = 48), - [5951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 154), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [5955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 154), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8702), - [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9299), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 82), - [5967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 82), - [5969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3156), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), - [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 5), - [5978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 5), - [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), - [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [5988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), SHIFT(567), - [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 39), - [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 39), - [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 41), - [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 41), - [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 60), - [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 60), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 40), - [6005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 40), - [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 103), - [6009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 103), - [6011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 32), SHIFT(604), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [6016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [6018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9113), - [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [6032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(8702), - [6035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [6037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [6039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 83), - [6041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 83), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), - [6047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 24), - [6049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 24), - [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [6053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [6055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 126), - [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 126), - [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [6061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [6063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3267), - [6066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 24), - [6068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 24), - [6070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 155), - [6072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 155), - [6074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 85), - [6076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 85), - [6078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 109), - [6080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 109), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8960), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, .production_id = 150), - [6096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, .production_id = 150), - [6098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), SHIFT(578), - [6101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [6105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), - [6111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2), - [6113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2), - [6115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [6117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [6119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [6121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [6123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [6125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7357), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7855), + [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1180), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7242), + [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7241), + [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7256), + [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1517), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1294), + [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7548), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7538), + [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7480), + [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6097), + [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3857), + [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6961), + [1516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6276), + [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3876), + [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3843), + [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3103), + [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7207), + [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2904), + [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7279), + [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4649), + [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6999), + [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7121), + [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1549), + [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1328), + [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1330), + [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1580), + [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7108), + [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1569), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4544), + [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4951), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1149), + [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(500), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3338), + [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3699), + [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(61), + [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6523), + [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7177), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7116), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(240), + [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7932), + [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1170), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7321), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7322), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7221), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7181), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1301), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1300), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1633), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1155), + [1635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(594), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3266), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3749), + [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(47), + [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6756), + [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6863), + [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6933), + [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(163), + [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7536), + [1662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1168), + [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7478), + [1668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7477), + [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7593), + [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6854), + [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1289), + [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1286), + [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1417), + [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1156), + [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(640), + [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3341), + [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3672), + [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(64), + [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6478), + [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7089), + [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7179), + [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(244), + [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7943), + [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1173), + [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7491), + [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7493), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7301), + [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7081), + [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1308), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1310), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1605), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1151), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(646), + [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3145), + [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3746), + [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(66), + [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6745), + [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6900), + [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6916), + [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(241), + [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7468), + [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1167), + [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7572), + [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7568), + [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7562), + [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7172), + [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1338), + [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1320), + [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1572), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7039), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7953), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7672), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7674), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1150), + [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1095), + [1838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3820), + [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3677), + [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(75), + [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6569), + [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7039), + [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7088), + [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(205), + [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7953), + [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1177), + [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7672), + [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7674), + [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7359), + [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6992), + [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1360), + [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1347), + [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1520), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7871), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7552), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7539), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8007), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8038), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7541), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 44), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 44), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7704), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8010), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8039), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8005), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7732), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8013), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8040), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7774), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8019), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8042), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 9), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 9), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7149), + [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), + [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(7149), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7246), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7132), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, .production_id = 45), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, .production_id = 45), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, .production_id = 9), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, .production_id = 9), + [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1992), + [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(204), + [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1440), + [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1440), + [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1378), + [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(640), + [2277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5929), + [2280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7111), + [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(64), + [2286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1210), + [2289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6380), + [2292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6478), + [2295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7089), + [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1574), + [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7669), + [2304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7179), + [2307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(244), + [2310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7943), + [2313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1173), + [2316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7491), + [2319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7493), + [2322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7301), + [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1517), + [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1294), + [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7548), + [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7538), + [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7480), + [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6097), + [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3857), + [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6961), + [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6276), + [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3876), + [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3843), + [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8005), + [2361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6999), + [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7081), + [2367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1549), + [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1308), + [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1310), + [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1605), + [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7108), + [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1569), + [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4544), + [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4951), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1994), + [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(594), + [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(66), + [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6516), + [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6900), + [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1571), + [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7246), + [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7132), + [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(241), + [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7703), + [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1167), + [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7572), + [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7568), + [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7562), + [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7172), + [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1338), + [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1320), + [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1572), + [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1922), + [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(272), + [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(82), + [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6841), + [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7114), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1629), + [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7320), + [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6858), + [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(227), + [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7855), + [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1180), + [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7242), + [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7241), + [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7256), + [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7121), + [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1328), + [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1330), + [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1580), + [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1993), + [2504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(47), + [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6756), + [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6863), + [2513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1415), + [2516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7482), + [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6933), + [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(163), + [2525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7536), + [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1168), + [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7478), + [2534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7477), + [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7593), + [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6854), + [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1289), + [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1286), + [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1417), + [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2006), + [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(646), + [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6745), + [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1640), + [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7682), + [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6916), + [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7468), + [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1995), + [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1095), + [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(75), + [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6569), + [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7039), + [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7088), + [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(205), + [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7953), + [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1177), + [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7672), + [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7674), + [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7359), + [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6992), + [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1360), + [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1347), + [2618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1520), + [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1974), + [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(500), + [2627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(61), + [2630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6523), + [2633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7177), + [2636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1613), + [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7487), + [2642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7116), + [2645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(240), + [2648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7932), + [2651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1170), + [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7321), + [2657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7322), + [2660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7221), + [2663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7181), + [2666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1301), + [2669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1300), + [2672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1633), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7497), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7879), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7516), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7971), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 50), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 50), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [2743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(7112), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, .production_id = 154), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, .production_id = 154), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 102), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 102), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 5, .production_id = 146), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 5, .production_id = 146), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 129), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 129), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 51), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 51), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 52), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 52), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 54), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 54), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 129), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 129), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 65), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 65), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 86), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 86), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 103), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 103), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 145), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 145), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 51), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 51), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 141), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 141), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 140), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 140), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 86), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 86), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 123), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 123), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7754), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8016), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8041), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6119), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7756), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), + [2954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6931), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 9), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 9), + [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 25), + [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 25), + [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 22), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 22), + [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 22), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 22), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 25), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 25), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 36), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 36), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 10), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 10), + [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 10), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 10), + [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 37), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 37), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 43), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 43), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 45), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 45), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), + [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, .production_id = 56), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, .production_id = 56), + [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 59), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 59), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 47), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 47), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3), + [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 66), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 66), + [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 70), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 70), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 76), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 76), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 76), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 76), + [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 77), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 77), + [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 78), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 78), + [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 79), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 79), + [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 80), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 80), + [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 10), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 10), + [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, .production_id = 92), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, .production_id = 92), + [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, .production_id = 93), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, .production_id = 93), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, .production_id = 57), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, .production_id = 57), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, .production_id = 56), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, .production_id = 56), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4), + [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 114), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 114), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3), + [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3), + [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 119), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 119), + [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 124), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 124), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 125), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 125), + [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 79), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 79), + [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 126), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 126), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [3153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6865), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 155), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 155), + [3164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 156), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 156), + [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, .production_id = 157), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, .production_id = 157), + [3172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 158), + [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 158), + [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, .production_id = 10), + [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, .production_id = 10), + [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 167), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 167), + [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 168), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 168), + [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6, .production_id = 185), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6, .production_id = 185), + [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 195), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 195), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2), + [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 22), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 22), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3), + [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), + [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), + [3222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(7053), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7440), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7217), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6280), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7977), + [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 79), + [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 79), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [3283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3923), + [3286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7404), + [3289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5170), + [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [3294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7497), + [3297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7012), + [3300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4730), + [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7936), + [3306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3335), + [3309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4755), + [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4755), + [3315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3352), + [3318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3703), + [3321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3478), + [3324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7914), + [3327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4979), + [3330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7175), + [3333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7899), + [3336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7094), + [3339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3054), + [3342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7879), + [3345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1965), + [3348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3114), + [3351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5603), + [3354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4715), + [3357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4709), + [3360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4705), + [3363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3103), + [3366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7207), + [3369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2904), + [3372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7279), + [3375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3933), + [3378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4652), + [3381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6275), + [3384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(986), + [3387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1721), + [3390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7516), + [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5893), + [3396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7971), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [3415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7440), + [3418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5153), + [3421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7217), + [3424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7109), + [3427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3343), + [3430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3725), + [3433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6280), + [3436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1727), + [3439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5905), + [3442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7977), + [3445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7210), + [3448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5163), + [3451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7512), + [3454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7067), + [3457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3223), + [3460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3718), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [3465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6255), + [3468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1722), + [3471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5898), + [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7944), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7473), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [3481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7107), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7983), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7210), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7512), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7944), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), + [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7473), + [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5140), + [3535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7252), + [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7107), + [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3310), + [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3744), + [3547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6354), + [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1724), + [3553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5872), + [3556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7983), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7938), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7974), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7958), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7964), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7990), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7984), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7980), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7972), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6436), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7948), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7967), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7986), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7978), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7580), + [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [3785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), + [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [3857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6972), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6972), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [3882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1823), + [3885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(204), + [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1440), + [3891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1440), + [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1378), + [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(2599), + [3900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5929), + [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1616), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), + [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1210), + [3911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6380), + [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1517), + [3917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1294), + [3920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7548), + [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7538), + [3926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7480), + [3929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6097), + [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3857), + [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6961), + [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6276), + [3941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3876), + [3944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3843), + [3947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(8005), + [3950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5927), + [3953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6999), + [3956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1549), + [3959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7108), + [3962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1569), + [3965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4544), + [3968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4951), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [4059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), + [4063] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [4069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), + [4071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [4074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [4077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(417), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [4082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, .production_id = 1), + [4087] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [4101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(420), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2), + [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7868), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8001), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7269), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7881), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1), + [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 104), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 178), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, .production_id = 104), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 144), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 79), + [4254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7612), + [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7605), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8018), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7614), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7187), + [4288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7616), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7381), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [4327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7628), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7626), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7618), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7619), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7627), + [4362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7647), + [4365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7620), + [4368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7631), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [4373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7621), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7574), + [4378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7652), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), + [4387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7645), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [4392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7622), + [4395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7623), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7644), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7643), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7629), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [4429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7630), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7878), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [4436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7624), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [4443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7617), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [4448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7625), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7385), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7575), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7726), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7870), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), + [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), + [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), + [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), + [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), + [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2), + [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), + [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 34), + [4561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 33), REDUCE(sym_qualified_type_identifier, 2, .production_id = 34), + [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 34), + [4566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 33), + [4568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 33), REDUCE(sym_qualified_type_identifier, 2, .production_id = 34), + [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 33), + [4573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 33), SHIFT(395), + [4576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), + [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), + [4580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 33), SHIFT(389), + [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), + [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 16), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, .production_id = 17), + [4591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 16), REDUCE(sym_template_function, 2, .production_id = 17), + [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 16), + [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, .production_id = 17), + [4598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 16), REDUCE(sym_template_function, 2, .production_id = 17), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [4619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(409), + [4622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(392), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [4711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, .production_id = 31), + [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, .production_id = 31), + [4715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3), + [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3), + [4719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, .production_id = 39), + [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, .production_id = 39), + [4723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 53), + [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 53), + [4727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 122), + [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 122), + [4731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 74), + [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 74), + [4735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, .production_id = 64), + [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, .production_id = 64), + [4739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, .production_id = 20), + [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, .production_id = 20), + [4743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2), + [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2), + [4747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 121), + [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 121), + [4751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 73), + [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 73), + [4755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3), + [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3), + [4759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, .production_id = 166), + [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, .production_id = 166), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6944), + [4781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, .production_id = 14), + [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 14), + [4785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, .production_id = 139), + [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 139), + [4789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6944), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7533), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7535), + [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7542), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [4814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), + [4820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1782), + [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [4827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6394), + [4830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7134), + [4833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(394), + [4836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), + [4842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), + [4844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6927), + [4847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 33), SHIFT(391), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), + [4852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 80), + [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 80), + [4856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2), + [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2), + [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2), + [4862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(354), + [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2), + [4867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression_not_binary, 1), + [4870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(389), + [4873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression_not_binary, 1), + [4876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 66), + [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 66), + [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 107), + [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 107), + [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 107), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 107), + [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 55), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 55), + [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 10), + [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 10), + [4896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 33), SHIFT(387), + [4899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), + [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), + [4903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(2023), + [4906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(391), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [4913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), + [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [4919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 79), + [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 79), + [4923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 10), + [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 10), + [4927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 107), + [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 107), + [4931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 170), + [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 170), + [4935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 171), + [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 171), + [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 125), + [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 125), + [4943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 79), + [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 79), + [4947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 126), + [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 126), + [4951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 184), + [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 184), + [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [4959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 107), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 107), + [4963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 187), + [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 187), + [4967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 170), + [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 170), + [4971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 188), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 188), + [4975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 171), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 171), + [4979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1), + [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1), + [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 55), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 55), + [4987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(395), + [4990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_list_item, 2), + [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_list_item, 2), + [4994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 168), + [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 168), + [4998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 184), + [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 184), + [5002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 197), + [5004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 197), + [5006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 187), + [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 187), + [5010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 188), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 188), + [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 7, .production_id = 197), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 7, .production_id = 197), + [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), + [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7543), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [5028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4), + [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4), + [5032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4), + [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6910), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), + [5040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [5048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1929), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [5055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 26), + [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 26), + [5059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 12), + [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 12), + [5063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1933), + [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6367), + [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7164), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [5076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [5082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 1, .production_id = 13), + [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 1, .production_id = 13), + [5086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, .production_id = 12), + [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, .production_id = 12), + [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, .production_id = 100), + [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, .production_id = 100), + [5094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, .production_id = 12), + [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, .production_id = 12), + [5098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, .production_id = 9), + [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, .production_id = 9), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), + [5104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), SHIFT(5754), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [5111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, .production_id = 49), + [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, .production_id = 49), + [5115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 48), + [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 48), + [5123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 47), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 47), + [5127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 97), + [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 97), + [5131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(7008), + [5134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 46), + [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 46), + [5138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [5142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 45), + [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 45), + [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [5152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [5154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [5156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, .production_id = 6), + [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, .production_id = 6), + [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, .production_id = 11), + [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, .production_id = 11), + [5164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1), + [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1), + [5168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 5, .production_id = 136), + [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 5, .production_id = 136), + [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, .production_id = 196), + [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, .production_id = 196), + [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 19), + [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 19), + [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5), + [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5), + [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [5192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 135), + [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 135), + [5196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), + [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), + [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 10), + [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 10), + [5204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6910), + [5207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 12), + [5209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 12), + [5211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [5213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [5215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 93), + [5217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 93), + [5219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 95), + [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 95), + [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 35), + [5225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 35), + [5227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 98), + [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 98), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [5233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), SHIFT(7495), + [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [5238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1998), + [5241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6236), + [5244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7145), + [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), + [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, .production_id = 101), + [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, .production_id = 101), + [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, .production_id = 45), + [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, .production_id = 45), + [5263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, .production_id = 137), + [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, .production_id = 137), + [5267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 9), + [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 9), + [5271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [5283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2022), + [5286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6246), + [5289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7158), + [5292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(387), + [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [5301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2106), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, .production_id = 6), + [5314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, .production_id = 6), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [5324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, .production_id = 1), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [5328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2152), + [5331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6419), + [5334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7127), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [5357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 34), SHIFT(394), + [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 44), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 44), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [5374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 53), + [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 53), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), + [5382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 19), + [5384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 19), + [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 90), + [5388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 90), + [5390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2313), + [5393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2317), + [5396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, .production_id = 21), + [5398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, .production_id = 21), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [5404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 62), + [5406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 62), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [5420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [5432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 95), + [5434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 95), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), + [5438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2345), + [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 48), + [5443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 48), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [5449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 46), + [5451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 46), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [5463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 10), + [5465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 10), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, .production_id = 136), + [5473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, .production_id = 136), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [5477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 135), + [5479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 135), + [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), + [5483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), + [5485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, .production_id = 11), + [5487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, .production_id = 11), + [5489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 34), SHIFT(391), + [5492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 93), + [5494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 93), + [5496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 98), + [5498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 98), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, .production_id = 101), + [5504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, .production_id = 101), + [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, .production_id = 49), + [5508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, .production_id = 49), + [5510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3), + [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3), + [5514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2), + [5516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2), + [5518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4), + [5520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4), + [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, .production_id = 9), + [5524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, .production_id = 9), + [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 47), + [5528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 47), + [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 96), + [5532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 96), + [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 45), + [5536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 45), + [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, .production_id = 45), + [5540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, .production_id = 45), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 40), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [5554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 40), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [5560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 34), SHIFT(387), + [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 85), + [5565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 85), + [5567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2415), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 162), + [5574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 162), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [5584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [5586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2425), + [5589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 33), SHIFT(394), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), + [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 22), + [5602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 22), + [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [5606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 110), + [5610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 110), + [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 115), + [5614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 115), + [5616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 42), + [5618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 42), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [5626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [5630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [5632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [5634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [5636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(7043), + [5639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 89), + [5641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 89), + [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 41), + [5645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 41), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [5651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [5653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 87), + [5655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 87), + [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 61), + [5659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 61), + [5661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 22), + [5663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 22), + [5665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 132), + [5667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 132), + [5669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 163), + [5671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 163), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [5683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 34), SHIFT(409), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, .production_id = 159), + [5690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, .production_id = 159), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [5696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [5698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [5708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [5710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), + [5714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4), + [5716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4), + [5718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [5720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 53), + [5724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 53), + [5726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6), + [5728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6), + [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, .production_id = 75), + [5732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 75), + [5734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 75), SHIFT(394), + [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, .production_id = 17), + [5739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, .production_id = 17), + [5741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2), + [5743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2), + [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2), + [5747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2), + [5749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5), + [5751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5), + [5753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [5757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 84), + [5759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 84), + [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2), + [5763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [5767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [5769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [5771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, .production_id = 159), + [5773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, .production_id = 159), + [5775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [5777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [5781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [5783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2), + [5785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2), + [5787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, .production_id = 63), + [5789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, .production_id = 63), + [5791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), + [5793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), + [5795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [5797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [5799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [5803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [5807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [5809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [5811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3), + [5813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3), + [5815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [5839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [5851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), + [5853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), + [5855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 205), + [5857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 205), + [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 7), + [5861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 7), + [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 71), + [5865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 71), + [5867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 71), SHIFT(394), + [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [5872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2), + [5876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2), + [5878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 131), + [5880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 131), + [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 2), + [5884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 2), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [5888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 130), + [5890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 130), + [5892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5), + [5894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5), + [5896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, .production_id = 116), + [5898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, .production_id = 116), + [5900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 14), + [5902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 14), + [5904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2), + [5906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2), + [5908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7335), + [5916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, .production_id = 147), + [5918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, .production_id = 147), + [5920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 202), + [5922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 202), + [5924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 201), + [5926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 201), + [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), + [5930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), + [5932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [5934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 118), + [5946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 118), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 149), + [5954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 149), + [5956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [5958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [5960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 150), + [5962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 150), + [5964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 3), + [5966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 3), + [5968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 4), + [5970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 4), + [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), + [5982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 2, .production_id = 29), + [5984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 2, .production_id = 29), + [5986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2704), + [5989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6282), + [5992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7124), + [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 28), + [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 28), + [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 109), + [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 109), + [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 108), + [6005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 108), + [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 160), + [6009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 160), + [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 194), + [6013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 194), + [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 72), + [6017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 72), + [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 193), + [6021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 193), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4), + [6029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [6039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 8), + [6041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 8), + [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 60), + [6045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 60), + [6047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 53), + [6049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 53), + [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 164), + [6053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 164), + [6055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 19), + [6057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 19), + [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 84), + [6061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 84), + [6063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, .production_id = 169), + [6065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, .production_id = 169), + [6067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 105), + [6069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 105), + [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 44), + [6073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 44), + [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [6077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [6081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [6083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 88), + [6085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 88), + [6087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [6089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 182), + [6093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 182), + [6095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 181), + [6097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 181), + [6099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 179), + [6101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 179), + [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 27), + [6105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 27), + [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [6109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), - [6133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, .production_id = 62), - [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, .production_id = 62), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), - [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, .production_id = 16), - [6143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, .production_id = 16), - [6145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4), - [6147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4), - [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, .production_id = 150), - [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, .production_id = 150), - [6153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2), - [6159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2), - [6161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6), - [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [6167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [6171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [6175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), - [6177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), - [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [6181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [6183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 81), - [6185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 81), - [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, .production_id = 72), - [6189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 72), - [6191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 72), SHIFT(604), - [6194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 52), - [6196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 52), - [6198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [6200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2), - [6204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2), - [6206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2), - [6208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [6212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [6216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5), - [6218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5), - [6220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 2, .production_id = 28), - [6222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 2, .production_id = 28), - [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 7), - [6226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 7), - [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), - [6230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), - [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 214), - [6234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 214), - [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 213), - [6238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 213), - [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), - [6242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), - [6244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9559), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 52), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [6278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 52), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 59), - [6294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 59), - [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 219), - [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 219), - [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2), - [6304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2), - [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 69), - [6308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 69), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8754), - [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9304), - [6320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 68), - [6322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 68), - [6324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 68), SHIFT(604), - [6327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(3482), - [6330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7651), - [6333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8477), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9641), - [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3), - [6346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3), - [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 27), - [6350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 27), - [6352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 26), - [6354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 26), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), - [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 81), - [6366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 81), - [6368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2), - [6370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2), - [6372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 18), - [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 18), - [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 13), - [6378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 13), - [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 84), - [6382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 84), - [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 199), - [6386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 199), - [6388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 198), - [6390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 198), - [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [6394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [6396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [6398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [6400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3), - [6402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3), - [6404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [6406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [6408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 179), - [6410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 179), - [6412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 178), - [6414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 178), - [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 176), - [6418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 176), - [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 43), - [6422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 43), - [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 99), - [6426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 99), - [6428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, .production_id = 110), - [6430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, .production_id = 110), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4), - [6436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4), - [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 3), - [6440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 3), - [6442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 2), - [6444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 2), - [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 101), - [6448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 101), - [6450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 102), - [6452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 102), - [6454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [6456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [6460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 8), - [6464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 8), - [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [6468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [6470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, .production_id = 165), - [6472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, .production_id = 165), - [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 156), - [6478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 156), - [6480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [6482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 4), - [6486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 4), - [6488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 151), - [6490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 151), - [6492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 112), - [6494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 112), - [6496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5), - [6498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5), - [6500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 124), - [6502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 124), - [6504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 125), - [6506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 125), - [6508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 141), - [6510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 141), - [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 140), - [6514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 140), - [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, .production_id = 138), - [6518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, .production_id = 138), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8862), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8886), - [6540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(8754), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9163), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8795), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9651), - [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7311), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), - [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [6639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(8795), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [6646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual, 1), - [6648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual, 1), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6620), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [6660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 72), SHIFT(548), - [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [6665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 18), - [6667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 18), - [6669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [6671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [6673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4599), - [6676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4566), - [6679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(8903), - [6682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(8788), - [6685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(8905), - [6688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4568), - [6691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(8911), - [6694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 72), SHIFT(587), - [6697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [6699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7310), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), - [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9073), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [6759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9535), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9534), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9533), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9532), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9531), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9530), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9529), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9527), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9526), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9525), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9524), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9522), - [6831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 72), SHIFT(528), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [6854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(4003), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [6861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(3961), - [6864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8001), - [6867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8450), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), - [6872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 121), - [6874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 121), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [6882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 68), SHIFT(528), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9624), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7317), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), - [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7387), - [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), - [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7383), - [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), - [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), - [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), - [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), - [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), - [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), - [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), - [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), - [6999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 72), SHIFT(567), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7394), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [7006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(4182), - [7009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7964), - [7012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8455), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), - [7017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 68), SHIFT(567), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [7028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [7030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9752), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), - [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [7072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [7075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), - [7077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), - [7079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [7082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [7092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), - [7094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), - [7096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4599), - [7099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4566), - [7102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(8903), - [7105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(8788), - [7108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(8905), - [7111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4568), - [7114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(8911), - [7117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4980), - [7120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2619), - [7123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4240), - [7126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(9752), - [7129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(8513), - [7132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(9749), - [7135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3729), - [7138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(9692), - [7141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 68), SHIFT(547), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [7148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_specifier, 4), - [7150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_specifier, 4), - [7152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 100), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), - [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [7170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), SHIFT(537), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [7187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1722), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), - [7192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 21), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), - [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9166), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8616), - [7204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 21), - [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9362), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8876), - [7226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1714), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), - [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [7237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 21), - [7239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 21), - [7241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 21), - [7243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 21), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), - [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), - [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), - [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), - [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), - [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), - [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9354), - [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), - [7275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), SHIFT(594), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), - [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6854), - [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), - [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), - [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), - [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), - [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), - [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6886), - [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), - [7306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), - [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), - [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5713), - [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), - [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), - [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), - [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), - [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), - [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), - [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), - [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), - [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), - [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9383), - [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), - [7338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), - [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), - [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6890), - [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), - [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), - [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), - [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), - [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 54), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9749), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9559), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9692), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [7419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), - [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), - [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9031), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), - [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1), - [7493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [7495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [7497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 18), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), - [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [7543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2619), - [7546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4240), - [7549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(9752), - [7552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(8439), - [7555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(9749), - [7558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3729), - [7561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(9692), - [7564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), REDUCE(sym__function_declarator_seq, 3, .production_id = 21), - [7567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), - [7569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat3, 2), - [7571] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), REDUCE(sym__function_declarator_seq, 3, .production_id = 21), SHIFT(9166), - [7575] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), REDUCE(sym__function_declarator_seq, 3, .production_id = 21), SHIFT(8616), - [7579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat3, 2), REDUCE(sym__function_declarator_seq, 3, .production_id = 21), - [7582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(4576), - [7585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(6620), - [7588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(6208), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [7597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [7599] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), REDUCE(sym__function_declarator_seq, 3, .production_id = 21), SHIFT(6620), - [7603] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), REDUCE(sym__function_declarator_seq, 3, .production_id = 21), SHIFT(6208), - [7607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 4, .production_id = 159), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [7619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4), - [7621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7500), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), - [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6695), - [7633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4919), - [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 104), - [7638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, .production_id = 173), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [7644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT_REPEAT(9166), - [7647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(4547), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [7690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(4594), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [7737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT_REPEAT(9752), - [7740] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), REDUCE(sym__function_declarator_seq, 3, .production_id = 21), SHIFT(8788), - [7744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(4572), - [7747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(6161), - [7750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT(1897), - [7753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 79), - [7755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [7769] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), REDUCE(sym__function_declarator_seq, 3, .production_id = 21), SHIFT(6161), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), - [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [7801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), - [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6650), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [7811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [7815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), - [7841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), - [7843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [7855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), - [7859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(4627), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), - [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), - [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), - [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 128), - [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6988), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6998), - [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6987), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 18), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 127), - [8014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, .production_id = 144), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9241), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9290), - [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), - [8028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9519), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [8044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(8788), - [8047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(4635), - [8050] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), REDUCE(sym__function_declarator_seq, 3, .production_id = 21), SHIFT(6902), - [8054] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), REDUCE(sym__function_declarator_seq, 3, .production_id = 21), SHIFT(6152), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [8060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(4614), - [8063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(6193), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), - [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6236), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [8080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(6902), - [8083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(6152), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [8094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9078), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9001), - [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [8122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(4592), - [8125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(6183), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9165), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [8146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, .production_id = 181), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [8162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9660), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [8174] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), REDUCE(sym__function_declarator_seq, 3, .production_id = 21), SHIFT(6183), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 1), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9363), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9551), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [8210] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), REDUCE(sym__function_declarator_seq, 3, .production_id = 21), SHIFT(6193), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8296), - [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [8222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(4565), - [8225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(6209), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), - [8232] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), REDUCE(sym__function_declarator_seq, 3, .production_id = 21), SHIFT(6209), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8280), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, .production_id = 52), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6390), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [8422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2619), - [8425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2619), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [8432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, .production_id = 80), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), - [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8880), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), - [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), - [8508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(8616), - [8511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(4603), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [8520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(5519), - [8523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(5519), - [8526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(4556), - [8529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT(6182), - [8532] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), REDUCE(sym__function_declarator_seq, 3, .production_id = 21), SHIFT(6182), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), - [8540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [8548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), - [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), - [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), - [8560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), - [8562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(5495), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), - [8569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), - [8573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6228), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), - [8579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), - [8581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), - [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6893), - [8593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), - [8595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), - [8597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), - [8599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9254), - [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), - [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), - [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6830), - [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), - [8613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), - [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), - [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9396), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [8623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), - [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [8629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), - [8631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), - [8633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), - [8635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), - [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), - [8639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [8641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9169), - [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), - [8645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), - [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), - [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), - [8657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), - [8659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), - [8661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9369), - [8665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), - [8667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [8669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [8671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(5820), - [8674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(5817), - [8677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), - [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [8685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), - [8687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), - [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), - [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), - [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [8695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9334), - [8697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [8699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), - [8703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), - [8705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), - [8707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), - [8709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), - [8711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), - [8713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7675), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), - [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6624), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), - [8734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), - [8736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(5473), - [8739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(5473), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), - [8744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 21), - [8746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 21), - [8748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [8750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [8752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [8754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), - [8758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(6047), - [8761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(6029), - [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [8766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), - [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), - [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), - [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), - [8774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), - [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), - [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [8782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), - [8790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), - [8792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(8788), - [8795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), - [8797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(2561), - [8800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(3267), - [8803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(2581), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [8810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), - [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7701), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [8818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), - [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7875), - [8822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1718), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7694), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [8837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), - [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7933), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), - [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7659), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [8853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [8855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7669), - [8857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 21), - [8859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 21), - [8861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 7, .production_id = 21), - [8863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 7, .production_id = 21), - [8865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 21), - [8867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 21), - [8869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(6228), - [8872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(6228), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8707), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7299), - [8893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6661), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), - [8897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), - [8899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8833), - [8913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8797), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [8925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [8929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), - [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8003), - [8933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), - [8935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [8939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7001), - [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7688), - [8943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6994), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7069), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [8955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [8959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [8961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4937), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), - [8967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7915), - [8969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), - [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), - [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7159), - [8975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7018), - [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), - [8979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), - [8981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [8983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6887), - [8985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), - [8987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), - [8991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [8993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), - [8995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), - [8999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), - [9003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8112), - [9005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [9007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7281), - [9009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9542), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), - [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8373), - [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), - [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8008), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8854), - [9031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), - [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7083), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), - [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), - [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6265), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), - [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), - [9057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9043), - [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6240), - [9067] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [9069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1), - [9071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1), - [9073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6199), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), - [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8493), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), - [9083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8623), - [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7301), - [9091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8252), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8857), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), - [9103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9666), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), - [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8233), - [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), - [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6216), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8473), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), - [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8794), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), - [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), - [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8120), - [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [9161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), - [9165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8075), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [9175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), - [9181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9105), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), - [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8318), - [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [9191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 8, .production_id = 21), - [9193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 8, .production_id = 21), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), - [9199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8984), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), - [9205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8142), - [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), - [9211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [9213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8625), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8523), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [9237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [9239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), - [9243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [9245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [9247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 7), - [9249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 7), - [9251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8021), - [9257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [9259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), - [9267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [9269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8044), - [9271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [9273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [9275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [9277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [9289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), - [9293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), - [9297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8043), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [9301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [9303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), - [9315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 52), - [9317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 52), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [9325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8177), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), - [9335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8107), - [9337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), - [9341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8312), - [9343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9130), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [9349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8060), - [9351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8811), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [9369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8041), - [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), - [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), - [9387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5), - [9389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5), - [9391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [9395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), - [9399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7543), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [9405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), - [9407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), - [9409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), - [9411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), - [9413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6259), - [9415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), - [9417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), - [9419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), - [9421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), - [9423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), - [9425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7639), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), - [9429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8033), - [9431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), - [9433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8404), - [9435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3), - [9437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3), - [9439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3), - [9441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [9455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 10, .production_id = 21), - [9457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 10, .production_id = 21), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [9467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4), - [9469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4), - [9471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7362), - [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8034), - [9475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_declarator_seq_repeat1, 2), - [9477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_declarator_seq_repeat1, 2), - [9479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_declarator_seq_repeat1, 2), SHIFT_REPEAT(6620), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [9484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4), - [9486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), - [9490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 9, .production_id = 21), - [9492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 9, .production_id = 21), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [9502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(8616), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [9517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 31), - [9519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 31), - [9521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2), - [9523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2), - [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [9529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1), - [9531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [9535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [9537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [9547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 24), - [9549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 24), - [9551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 22), - [9553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 22), - [9555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [9557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2), - [9559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 155), - [9561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 155), - [9563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 109), - [9565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 109), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [9571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 157), - [9573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 157), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [9577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [9579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [9581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 114), - [9583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 114), - [9585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [9587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3), - [9589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 24), - [9591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 24), - [9593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_declarator_seq_repeat1, 2), SHIFT_REPEAT(6902), - [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6724), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), - [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6725), - [9604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6725), - [9607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7918), - [9610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8458), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), - [9615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 5), - [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [9619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 39), - [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), - [9627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 5), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [9631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [9635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [9641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2), - [9643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2), SHIFT_REPEAT(8903), - [9646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_repeat1, 2), - [9648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2), SHIFT_REPEAT(8911), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [9661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [9663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 37), - [9665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 5), - [9667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2), - [9669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 78), - [9671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 60), - [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [9675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 122), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), - [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [9681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(8439), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [9686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [9692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [9698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), - [9700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 39), - [9702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), - [9704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, .dynamic_precedence = 1), - [9706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [9708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [9710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 5), - [9712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), - [9714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7095), - [9716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), - [9718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), - [9724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 82), - [9726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 154), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), - [9730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7157), - [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7129), - [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), - [9736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 82), - [9738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 5), - [9740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, .dynamic_precedence = 1), - [9742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), - [9744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7122), - [9746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7096), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [9750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7054), - [9752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7081), - [9754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7156), - [9756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), - [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), - [9760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 39), - [9762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7051), - [9764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 154), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9400), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8840), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9578), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8719), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), - [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7390), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8766), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9688), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7845), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8864), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7934), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9337), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [9818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, .dynamic_precedence = -1), - [9820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, .dynamic_precedence = -1), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8805), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9513), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9148), - [9836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 155), - [9838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 155), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9036), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8644), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [9852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7560), - [9854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7561), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8543), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), - [9864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 24), - [9866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 24), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [9870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, .dynamic_precedence = -1), - [9872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, .dynamic_precedence = -1), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8841), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), - [9884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 22), - [9886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 22), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [9896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [9898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [9900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 109), - [9902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 109), - [9904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 24), - [9906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 24), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9240), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [9970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [9972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [9994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [9998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [10014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 95), - [10016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 95), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), - [10068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7331), - [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7291), - [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7338), - [10074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7269), - [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7361), - [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7304), - [10080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 109), - [10082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 109), - [10084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 24), - [10086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 24), - [10088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), - [10090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7298), - [10092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 155), - [10094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 155), - [10096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 24), - [10098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 24), - [10100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7307), - [10102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), - [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), - [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), - [10108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [10110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [10112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 22), - [10114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 22), - [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7320), - [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7260), - [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7346), - [10122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), - [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7348), - [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), - [10128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1), - [10130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1), - [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5647), - [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), - [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), - [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5653), - [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [10150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 64), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [10160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8946), - [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), - [10172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9018), - [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), - [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [10186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [10188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 5), - [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), - [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8498), - [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7978), - [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), - [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8571), - [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), - [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8814), - [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8472), - [10210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7612), - [10212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3), - [10214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 3), - [10216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8109), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7931), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9059), - [10224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), - [10226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8499), - [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), - [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8579), - [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8738), - [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7717), - [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [10240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8451), - [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), - [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8530), - [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), - [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8500), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8643), - [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8427), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9483), - [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7608), - [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8148), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9134), - [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), - [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8714), - [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8396), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9605), - [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7604), - [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7655), - [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8724), - [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8419), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9647), - [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7664), - [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8657), - [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7940), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), - [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), - [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7856), - [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), - [10304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9214), - [10307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7642), - [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), - [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [10317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), - [10319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7714), - [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [10325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 29), - [10327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 29), - [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [10349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, .production_id = 56), - [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), - [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7955), - [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [10383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), - [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [10391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [10393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7647), - [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [10397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 14), - [10399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 14), - [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7735), - [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), - [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9579), - [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7958), - [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8334), - [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7729), - [10421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4), - [10423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 4), - [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8132), - [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8194), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [10431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8297), - [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8244), - [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7890), - [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [10439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5), - [10441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 5), - [10443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6), - [10445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 6), - [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), - [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7707), - [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), - [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7913), - [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), - [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), - [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), - [10567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(2183), - [10570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [10572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(9497), - [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), - [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), - [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), - [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), - [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9497), - [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), - [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), - [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), - [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), - [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), - [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [10695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), - [10697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(7913), - [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), - [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [10718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, .production_id = 180), - [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8658), - [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8306), - [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8774), - [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [10734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 1), - [10736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1), - [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), - [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), - [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), - [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [10768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 111), - [10770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8843), - [10772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8735), - [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), - [10776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, .production_id = 143), - [10778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), - [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9511), - [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [10786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8531), - [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [10802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8465), - [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [10806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 217), SHIFT_REPEAT(7491), - [10809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 217), - [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8365), - [10821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8997), - [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8729), - [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8536), - [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), - [10841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 211), - [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [10847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 196), SHIFT_REPEAT(7308), - [10850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 196), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [10884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8802), - [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [10892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8752), - [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), - [10900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7866), - [10902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 197), - [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), - [10912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 177), - [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [10916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), - [10920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7681), - [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9243), - [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), - [10934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7674), - [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [10942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [10944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(7674), - [10947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(7674), - [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8337), - [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9223), - [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), - [10956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 196), SHIFT_REPEAT(7353), - [10959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 196), - [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9429), - [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [10975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9436), - [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), - [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7670), - [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [10987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 1, .production_id = 17), - [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), - [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), - [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [10995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8441), - [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), - [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), - [11001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2), - [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9016), - [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [11019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 87), - [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), - [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), - [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [11033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 139), - [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), - [11039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 177), - [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9341), - [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8229), - [11057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [11067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9404), - [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [11075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), - [11079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7974), - [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [11085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [11111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [11117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8884), - [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9356), - [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [11123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), - [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), - [11127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7812), - [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), - [11131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3), - [11133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), - [11135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 168), SHIFT_REPEAT(6659), - [11138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 168), - [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [11142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, .production_id = 32), - [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), - [11194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1), - [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [11198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), - [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), - [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7874), - [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [11226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9295), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), - [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8902), - [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), - [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [11248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9378), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [11258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), - [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [11282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), - [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9494), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [11292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6986), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7923), - [11296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7923), - [11298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [11300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), - [11304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7793), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [11308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9580), - [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [11322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9401), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), - [11326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7764), - [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9081), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [11336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 139), - [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [11340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7946), - [11344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7946), - [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [11354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9543), - [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [11366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8740), - [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [11370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9594), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), - [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [11378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 107), SHIFT_REPEAT(6741), - [11381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 107), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [11385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), - [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), - [11389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7968), - [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [11395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), - [11397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), - [11401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7920), - [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [11405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), - [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [11409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), - [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [11415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7983), - [11419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7983), - [11421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), - [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7899), - [11425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7899), - [11427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [11431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7989), - [11435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7989), - [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [11441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [11445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), - [11449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7995), - [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), - [11453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4), - [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [11459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [11463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9424), - [11465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), - [11469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7775), - [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [11477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), - [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), - [11481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8006), - [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), - [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), - [11491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7972), - [11493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), - [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), - [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [11517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1734), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), - [11522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1708), - [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), - [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), - [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), - [11549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(8845), - [11552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8418), - [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), - [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), - [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8656), - [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), - [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8819), - [11584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), - [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [11588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), SHIFT_REPEAT(6509), - [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8690), - [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8824), - [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [11615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, .production_id = 66), - [11617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, .production_id = 134), - [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8762), - [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8853), - [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8696), - [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8871), - [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [11641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 3), - [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8731), - [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), - [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [11653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), SHIFT_REPEAT(764), - [11656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), - [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8600), - [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [11670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2), - [11672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2), - [11674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), SHIFT_REPEAT(2359), - [11677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), - [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), - [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [11685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), SHIFT_REPEAT(2408), - [11688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), - [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8842), - [11694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2), - [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), - [11698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [11700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(2384), - [11703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8835), - [11707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, .production_id = 95), - [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), - [11717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(6924), - [11720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), - [11724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2), SHIFT_REPEAT(1848), - [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), - [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), - [11731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(6397), - [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [11736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6238), - [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [11740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 107), SHIFT_REPEAT(5790), - [11743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 107), - [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), - [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8913), - [11753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 3), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), - [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [11759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, .production_id = 64), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8817), - [11769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2), - [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [11795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), SHIFT_REPEAT(9505), - [11798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), - [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8722), - [11810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3), - [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8846), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8355), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8442), - [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), - [11840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(8762), - [11843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [11847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 90), - [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8820), - [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [11863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), SHIFT_REPEAT(2240), - [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), - [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), - [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), - [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), - [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [11892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(8544), - [11895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), - [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [11915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 5), - [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), - [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [11921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 186), - [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8352), - [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), - [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8669), - [11951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4), - [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [11955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 6), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8847), - [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [11965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 139), - [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8764), - [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [11981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), SHIFT_REPEAT(4626), - [11984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), - [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), - [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8647), - [11992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 5), - [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [11996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 7), - [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [12002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 210), - [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [12008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 139), - [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [12012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8393), - [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9330), - [12022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 212), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), - [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [12042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(4541), - [12045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), - [12047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 210), - [12049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 197), - [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [12055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 218), - [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9075), - [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [12061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 220), SHIFT_REPEAT(9330), - [12064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 220), - [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), - [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [12072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 221), - [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [12076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 221), - [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8636), - [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), - [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [12088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 2, .production_id = 57), - [12090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 2), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8813), - [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8557), - [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), - [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), - [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), - [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [12144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), - [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), - [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8390), - [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), - [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), - [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8645), - [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8350), - [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8486), - [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8535), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), - [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8368), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8776), - [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8568), - [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8491), - [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), - [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), - [12308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, .production_id = 152), - [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [12312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9639), - [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [12316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9604), - [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [12322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9705), - [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), - [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [12330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9646), - [12332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9589), - [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9421), - [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9746), - [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9419), - [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9745), - [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8784), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9417), - [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9744), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9415), - [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9743), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9413), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9742), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9411), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9741), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9407), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9740), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9399), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9739), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9389), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9738), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9375), - [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9737), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9361), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9736), - [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9569), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9570), - [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9343), - [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9734), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9311), - [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9729), - [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8474), - [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9541), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9477), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9478), - [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9263), - [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9723), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), - [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9071), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8744), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), - [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9185), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9716), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [12426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9552), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9359), - [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9357), - [12432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9141), - [12434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9508), - [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8501), - [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [12442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9303), - [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [12446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9246), - [12448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), - [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9040), - [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9045), - [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [12456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9475), - [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8726), - [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8775), - [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [12468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9377), - [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8937), - [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9709), - [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [12476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9126), - [12478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8995), - [12480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 212), - [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [12484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9314), - [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [12488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9490), - [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8753), - [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9456), - [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9457), - [12496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), - [12498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [12500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 6), - [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [12504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9182), - [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8721), - [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [12512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9065), - [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8268), - [12518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), - [12520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8867), - [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8767), - [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9062), - [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9063), - [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8597), - [12530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, .production_id = 26), - [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [12536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9102), - [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8829), - [12540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 32), - [12542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9618), - [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8850), - [12546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), - [12548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [12552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9074), - [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9561), - [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9558), - [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [12560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 87), - [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [12564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9092), - [12566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9237), - [12568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9446), - [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9392), - [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9391), - [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8640), - [12576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 2), - [12578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, .production_id = 142), - [12580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, .production_id = 55), - [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [12584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9276), - [12586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 95), - [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [12590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9472), - [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9183), - [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9178), - [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9196), - [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9192), - [12600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3), - [12602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), - [12604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [12606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9116), - [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), - [12610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 120), - [12612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 119), - [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9147), - [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9164), - [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8856), - [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9170), - [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9093), - [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9191), - [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9064), - [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9060), - [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9044), - [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9042), - [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8986), - [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9029), - [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9021), - [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9017), - [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9008), - [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9004), - [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8994), - [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8993), - [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8990), - [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8933), - [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8816), - [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8929), - [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), - [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9333), - [12702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4), - [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9038), - [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9025), - [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8827), - [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9348), - [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8916), - [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9358), - [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8954), - [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9009), - [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8999), - [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8971), - [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), - [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9385), - [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9047), - [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), - [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9482), - [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9495), - [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7892), - [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9121), - [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), - [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), - [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9132), - [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9517), - [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9136), - [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9032), - [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9557), - [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [12884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 77), - [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8865), - [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9010), - [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7956), - [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [12916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 160), - [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9586), - [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9484), - [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9123), - [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [12948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3), - [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8915), - [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9291), - [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), - [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9180), - [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8949), - [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), - [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9030), - [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8935), - [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), - [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8904), - [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), - [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), - [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), - [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9689), - [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8487), - [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9283), - [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [13098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 119), - [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8437), - [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9750), - [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9732), - [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9609), - [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9205), - [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9693), - [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), - [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9645), - [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [13150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, .production_id = 52), - [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9320), - [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9554), - [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), - [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9537), - [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), - [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8554), - [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9486), - [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9488), - [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9471), - [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9451), - [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [13218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [13226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 160), - [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [13236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), - [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [13244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), - [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8635), - [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), - [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9465), - [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), - [13260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8653), - [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9245), - [13264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9227), - [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [13276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [13278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9188), - [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [13282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [13284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9336), - [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9155), - [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8628), - [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8712), - [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9437), - [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8294), - [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8728), - [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9099), - [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9085), - [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9070), - [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9006), - [13330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9057), - [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [13338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8760), - [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9015), - [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8969), - [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), - [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8801), - [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [13374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8932), - [13384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [13386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [13390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [13392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8912), - [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [13396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8837), - [13398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [13400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9370), - [13404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2), - [13406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9076), - [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8868), - [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9077), - [13414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [13416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8863), - [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8851), - [13422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [13424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8872), - [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [13428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [13430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8877), - [13432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [13434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8882), - [13436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [13438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [13440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8887), - [13442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8888), - [13444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8889), - [13446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8890), - [13448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8891), - [13450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8892), - [13452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8893), - [13454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8894), - [13456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8895), - [13458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8896), - [13460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8897), - [13462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8898), - [13464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8899), - [13466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [13468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [13470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [13472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [13474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8936), - [13476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [13478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [13480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [13482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [13484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [13488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [13490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [13492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [13494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), - [13498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8991), - [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [13504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9371), - [13506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [13508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9103), - [13510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [13512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [13516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), - [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [13520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9104), - [13522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9244), - [13524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), - [13526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), - [13528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [13530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), - [13532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9626), - [13534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [13536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [13538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [13540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [13542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [13544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [13546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [13548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9439), - [13550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [13552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [13556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9220), - [13558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9242), - [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [13562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [13564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [13566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [13568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [13570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [13572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [13574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), - [13576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [13578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [13580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7879), - [13582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [13584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8673), - [13586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [13588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [13590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [13592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9051), - [13594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [13596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), - [13598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [13600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [13602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [13604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [13606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [13608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [13610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [13612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [13614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [13616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9208), - [13618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9213), - [13621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [13623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9228), - [13626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9229), - [13629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9230), - [13632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9231), - [13635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [13637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9232), - [13640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9233), - [13643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9234), - [13646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9236), - [13649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9239), - [13652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9150), - [13655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(9249), - [13658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [13660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [13662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [13664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [13666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9298), - [13668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [13670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [13672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [13674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [13676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [13678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [13680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [13682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [13684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [13686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [13688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [13690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9514), - [13692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [13694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9566), - [13696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9335), - [13698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9139), - [13700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [13702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [13704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [13706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [13708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [13710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [13712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [13714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9387), - [13716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9390), - [13718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [13720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), - [13722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [13724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [13726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [13728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [13730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8303), - [13732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [13734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [13738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [13740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [13742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [13744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [13746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [13748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [13750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [13752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9184), - [13754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [13756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [13758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [13760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), - [13762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9461), - [13764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [13766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9206), - [13768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), - [13770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [13772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [13774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [13776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [13778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [13780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [13782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9507), - [13784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [13786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [13788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [13790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [13792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [13794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [13796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8359), - [13798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), - [13800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [13802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [13804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [13806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [13808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [13810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [13812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [13814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [13816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [13818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9262), - [13820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [13822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [13824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), - [13826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9481), - [13828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9277), - [13830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [13832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9308), - [13834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [13836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [13838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9310), - [13840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), - [13842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [13844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9324), - [13846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [13848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [13850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [13852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [13854] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [13856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [13858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9342), - [13860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [13862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), - [13864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9349), - [13866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9571), - [13868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [13870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [13872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9360), - [13874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [13876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), - [13878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9366), - [13880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [13882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [13884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9374), - [13886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), - [13888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9380), - [13890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [13892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [13894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9388), - [13896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [13898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), - [13900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9394), - [13902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [13904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [13906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), - [13908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9403), - [13910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [13912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9011), - [13914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9410), - [13916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9412), - [13918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [13920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9414), - [13922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9416), - [13924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [13926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9418), - [13928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [13930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9420), - [13932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [13934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9422), - [13936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [13938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9448), - [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [13944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [13946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [13950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [13952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9601), - [13956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [13960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [13962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9599), - [13964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [13966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [13968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9643), - [13970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [13972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [13974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [13976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [13978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [13980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9657), - [13982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [13984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [13986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9682), - [13988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [13990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9668), - [13992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [13994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9675), - [13996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9681), - [13998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9687), - [14000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9691), - [14002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9694), - [14004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9696), - [14006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9698), - [14008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9700), - [14010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9702), - [14012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9704), - [14014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9706), - [14016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), - [14018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [14020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9616), - [14022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9621), - [14024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), - [14026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8479), - [14028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [14030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [14032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7945), - [14034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [14036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [14038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [14040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [14042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [6133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(6998), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [6196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(6957), + [6199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 75), SHIFT(395), + [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [6206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 75), SHIFT(389), + [6209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 19), + [6211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 19), + [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [6247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [6251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3691), + [6254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3689), + [6257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7533), + [6260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6864), + [6263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7535), + [6266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3655), + [6269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7542), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [6276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual, 1), + [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual, 1), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [6288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [6290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [6340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7338), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [6416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 75), SHIFT(391), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [6425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 127), + [6427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 127), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [6441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(3023), + [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [6450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(3074), + [6453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6352), + [6456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7162), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [6473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 71), SHIFT(391), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [6480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(3149), + [6483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6422), + [6486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7156), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7879), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), + [6571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 75), SHIFT(387), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [6580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 71), SHIFT(387), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [6613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), + [6618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), + [6620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [6623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [6657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_specifier, 4), + [6659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_specifier, 4), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), + [6665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 23), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [6673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 23), SHIFT(7702), + [6676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 23), SHIFT(7092), + [6679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 23), + [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [6687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 23), SHIFT(5413), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), + [6694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 23), SHIFT(5025), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), + [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [6709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1965), + [6712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3478), + [6715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7914), + [6718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7175), + [6721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7899), + [6724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2904), + [6727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7279), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [6734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [6736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [6740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 71), SHIFT(388), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [6749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), + [6751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), + [6753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(3691), + [6756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(3689), + [6759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(7533), + [6762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(6864), + [6765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(7535), + [6768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(3655), + [6771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(7542), + [6774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(3933), + [6777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 106), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [6787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 23), SHIFT(6124), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [6794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 23), SHIFT(6864), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [6799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 23), SHIFT(4991), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [6810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 23), SHIFT(5011), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [6823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 23), SHIFT(5565), + [6826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 23), SHIFT(5003), + [6829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 34), SHIFT(354), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [6836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 23), SHIFT(4998), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [6865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1157), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [6870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 23), SHIFT(5039), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), + [6889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1160), + [6892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7794), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), + [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), + [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), + [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), + [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), + [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), + [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), + [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), + [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7819), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [6989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 34), SHIFT(392), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [6998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 23), SHIFT(5026), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [7015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 55), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7899), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 19), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [7109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), + [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1), + [7129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [7131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [7133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 1), + [7135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 1), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [7169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1965), + [7172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3478), + [7175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7914), + [7178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7096), + [7181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7899), + [7184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2904), + [7187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7279), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [7196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [7202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [7206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 82), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [7380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 111), + [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, .production_id = 173), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [7390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [7424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4), + [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4), + [7428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [7442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4033), + [7445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 4, .production_id = 167), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [7449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT(1305), + [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [7456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), + [7466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, .production_id = 153), + [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), + [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), + [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), + [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [7512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 175), + [7514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 19), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 1), + [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, .production_id = 184), + [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 177), + [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), + [7542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 174), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [7552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [7566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 143), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), + [7586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 133), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), + [7592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 134), + [7594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 142), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [7598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, .production_id = 189), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [7708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 5, .production_id = 190), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [7728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(1965), + [7731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(1965), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 4, .production_id = 176), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [7830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, .production_id = 83), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, .production_id = 53), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [7868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [7870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [7872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [7874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(7914), + [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 2), + [7879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 2), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [7891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), + [7893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 23), + [7895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 23), SHIFT(7702), + [7898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 23), SHIFT(7092), + [7901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 23), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [7905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 23), SHIFT(5413), + [7908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 23), SHIFT(5025), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [7915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(4454), + [7918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(4454), + [7921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), + [7923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [7925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [7929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4410), + [7932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(7702), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [7937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 23), SHIFT(6864), + [7940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 23), SHIFT(4991), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [7945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 23), SHIFT(6124), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), + [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), + [7972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 23), SHIFT(5565), + [7975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 23), SHIFT(4998), + [7978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 23), SHIFT(5003), + [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [7983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 23), SHIFT(5011), + [7986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [7988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [7990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4768), + [7993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4742), + [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), + [8002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), + [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5653), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), + [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7807), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), + [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), + [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), + [8048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7706), + [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), + [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), + [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [8072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 23), + [8074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 23), SHIFT(7702), + [8077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 23), SHIFT(7092), + [8080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 23), + [8082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 23), SHIFT(5413), + [8085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 23), SHIFT(5025), + [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), + [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [8106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7734), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [8110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), + [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), + [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), + [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), + [8129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7776), + [8133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [8135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 23), SHIFT(5039), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [8150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 23), SHIFT(6124), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [8155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 23), SHIFT(6864), + [8158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 23), SHIFT(4991), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [8165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), + [8167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(4389), + [8170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(4389), + [8173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 23), SHIFT(5011), + [8176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 23), SHIFT(5026), + [8179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 23), SHIFT(5565), + [8182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 23), SHIFT(5003), + [8185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 23), SHIFT(4998), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [8190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [8196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [8204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4925), + [8207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4909), + [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [8220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 23), SHIFT(5039), + [8223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [8225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [8227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [8229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [8233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [8235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [8239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(6864), + [8242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 23), + [8244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 23), SHIFT(7702), + [8247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 23), SHIFT(7092), + [8250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 23), + [8252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 23), SHIFT(5413), + [8255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 23), SHIFT(5025), + [8258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 23), SHIFT(5026), + [8261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 23), SHIFT(6864), + [8264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 23), SHIFT(6124), + [8267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 23), SHIFT(4991), + [8270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, .production_id = 2), + [8272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, .production_id = 2), + [8274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1990), + [8277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(2425), + [8280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1973), + [8283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 19), + [8285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 19), + [8287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 23), SHIFT(5565), + [8290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 23), SHIFT(5003), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [8297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6299), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), + [8309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 23), SHIFT(4998), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6448), + [8320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1153), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), + [8339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 23), SHIFT(5011), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6259), + [8350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 23), SHIFT(5039), + [8353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 2), + [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 2), + [8357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(5128), + [8360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(5128), + [8363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, .production_id = 19), + [8365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, .production_id = 19), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [8373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), + [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6684), + [8385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [8389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6936), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), + [8417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5626), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [8421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), + [8423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), + [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [8429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [8431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), + [8441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), + [8449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [8451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [8453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 2), + [8455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 2), + [8457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 1), + [8459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 1), + [8461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [8463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [8467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [8469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [8475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), + [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6368), + [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), + [8483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [8487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), + [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [8495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), + [8497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6300), + [8499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [8503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [8505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [8507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [8509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), + [8511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [8515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 23), SHIFT(5026), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), + [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [8532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [8534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6758), + [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), + [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [8544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6941), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [8548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [8562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [8568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [8572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [8582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [8584] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [8592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1), + [8594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [8602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [8604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6624), + [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), + [8614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [8616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [8618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [8624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6971), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [8628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), + [8642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 53), + [8644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 53), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [8650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, .production_id = 22), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [8654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [8670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [8678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [8684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), + [8686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [8690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6813), + [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), + [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [8708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 7), + [8710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 7), + [8712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [8714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [8722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [8724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), + [8738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6794), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [8758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), + [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6650), + [8794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [8796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [8798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [8800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), + [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [8818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6821), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), + [8822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [8824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [8826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [8828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [8860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6566), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [8868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [8870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [8872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [8874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [8878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [8886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), + [8888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 23), + [8890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 23), + [8892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 23), + [8894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 23), + [8896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 23), SHIFT(5413), + [8899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 23), SHIFT(5025), + [8902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [8906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [8910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1), + [8912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [8914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6626), + [8916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 23), SHIFT(4991), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [8923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_postfix, 1), + [8925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_postfix, 1), + [8927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3), + [8929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3), + [8931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4), + [8933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4), + [8935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 3), + [8937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 3), + [8939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 23), SHIFT(5413), + [8942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 23), SHIFT(4991), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [8953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 23), SHIFT(5025), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [8960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5), + [8962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [8966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6269), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [8970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6752), + [8972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4), + [8974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4), + [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), + [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6799), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [8984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2), + [8986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2), + [8988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2), SHIFT_REPEAT(5413), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [8997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3), + [8999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [9005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(7092), + [9008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [9010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [9024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 24), + [9026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 24), + [9028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [9030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2), + [9032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [9034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1), + [9036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 120), + [9038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 120), + [9040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [9042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [9046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 22), + [9048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 22), + [9050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2), + [9052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [9058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 32), + [9060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 32), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [9066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 165), + [9068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 165), + [9070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1), + [9072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [9076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 115), + [9078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 115), + [9080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 22), + [9082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 22), + [9084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 163), + [9086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 163), + [9088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 7, .production_id = 23), + [9090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 7, .production_id = 23), + [9092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 23), SHIFT(5011), + [9095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2), SHIFT_REPEAT(5565), + [9098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [9104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 5), + [9106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5455), + [9109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6221), + [9112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7150), + [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [9121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [9129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2), + [9131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 81), + [9133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 61), + [9135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 40), + [9137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 128), + [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [9141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 38), + [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [9153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [9155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [9159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 23), SHIFT(5565), + [9162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 23), SHIFT(4998), + [9165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(7096), + [9168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2), + [9170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2), SHIFT_REPEAT(7533), + [9173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_repeat1, 2), + [9175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2), SHIFT_REPEAT(7542), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [9190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 23), SHIFT(5003), + [9193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 5), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), + [9199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [9201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [9203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [9209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 162), + [9211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 40), + [9213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), + [9215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), + [9217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 40), + [9219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [9221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [9223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, .dynamic_precedence = 1), + [9225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), + [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), + [9229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), + [9231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [9233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 23), SHIFT(5565), + [9236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 23), SHIFT(4998), + [9239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), + [9241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [9249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [9251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), + [9257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [9259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 23), SHIFT(5039), + [9262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [9264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 85), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), + [9270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [9272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 162), + [9274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 23), SHIFT(5011), + [9277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, .dynamic_precedence = 1), + [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [9281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 85), + [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), + [9285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), + [9287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), + [9301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 22), + [9303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 22), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), + [9331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 163), + [9333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 163), + [9335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 115), + [9337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 115), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), + [9355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, .dynamic_precedence = -1), + [9357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, .dynamic_precedence = -1), + [9359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 23), SHIFT(5003), + [9362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [9366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [9368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7950), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [9378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 23), SHIFT(5026), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), + [9407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 22), + [9409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 22), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [9413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, .dynamic_precedence = -1), + [9415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, .dynamic_precedence = -1), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [9421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 24), + [9423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 24), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7923), + [9429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), + [9431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [9443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [9445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [9447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 99), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [9451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 99), + [9453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 23), SHIFT(5039), + [9456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [9458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), + [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [9468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), + [9470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), + [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), + [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), + [9476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 115), + [9478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 115), + [9480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 163), + [9482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 163), + [9484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 24), + [9486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 24), + [9488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), + [9490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [9492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 22), + [9494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 22), + [9496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 23), SHIFT(5026), + [9499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 22), + [9501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 22), + [9503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), + [9505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [9507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), + [9509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), + [9511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), + [9513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [9517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), + [9519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), + [9521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [9523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [9525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [9527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), + [9529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1), + [9531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1), + [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [9535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [9537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), + [9541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 107), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [9545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [9547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), + [9549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [9551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [9555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [9561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [9567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [9569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [9573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [9575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), + [9577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [9579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [9581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [9587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, .production_id = 22), + [9589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [9593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3), + [9595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 3), + [9597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [9599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), + [9605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), + [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), + [9609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [9611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7014), + [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6334), + [9615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6911), + [9619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), + [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [9625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), + [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [9633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [9635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), + [9637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), + [9641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), + [9645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [9647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), + [9649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), + [9651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [9653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), + [9655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), + [9659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [9661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7059), + [9663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6942), + [9667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 5), + [9669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7078), + [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), + [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), + [9681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7019), + [9685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [9687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7649), + [9690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), + [9692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [9694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7183), + [9696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6204), + [9698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [9700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7103), + [9702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [9704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), + [9706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6599), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), + [9710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), + [9712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7169), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [9724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [9726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), + [9736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [9738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6291), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [9764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, .production_id = 57), + [9766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 15), + [9768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 15), + [9770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [9780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 30), + [9782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 30), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [9800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7433), + [9806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6), + [9808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 6), + [9810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), + [9812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), + [9814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6634), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [9818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6790), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [9822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6457), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [9826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4), + [9828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 4), + [9830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), + [9832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5), + [9834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 5), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [9838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6815), + [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), + [9842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6487), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [9848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1618), + [9851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [9853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(7506), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [9960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), + [9962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(6458), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [9969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, .production_id = 152), + [9971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, .production_id = 183), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7122), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [10001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 1), + [10003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [10011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7071), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [10015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [10033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), + [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), + [10037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [10041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6835), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [10045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 117), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [10053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7051), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [10059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6975), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [10075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), + [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), + [10081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [10087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2), + [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [10103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), + [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [10107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), + [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [10121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7831), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [10125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [10133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [10137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6233), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [10143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 1, .production_id = 18), + [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [10147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6983), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [10153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 192), + [10155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), + [10159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), + [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [10173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [10175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), + [10185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7709), + [10187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [10191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), + [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [10197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7829), + [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [10205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [10209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), + [10211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), + [10215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), + [10217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 172), SHIFT_REPEAT(5393), + [10220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 172), + [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [10224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), + [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [10242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1), + [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6979), + [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), + [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [10270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5), + [10272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 113), SHIFT_REPEAT(5448), + [10275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 113), + [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [10279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7382), + [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [10285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 180), + [10287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [10291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6345), + [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [10297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [10301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6281), + [10303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 191), SHIFT_REPEAT(5997), + [10306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 191), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [10314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [10316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(6322), + [10319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(6322), + [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [10326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [10342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [10346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [10350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [10364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [10366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [10370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 191), SHIFT_REPEAT(5993), + [10373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 191), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [10377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 199), + [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), + [10383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), + [10393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), + [10395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, .production_id = 33), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [10405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4), + [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7423), + [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7544), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7865), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), + [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7897), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [10455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 180), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [10459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 148), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [10475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 203), SHIFT_REPEAT(6103), + [10478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 203), + [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), + [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [10494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3), + [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [10508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), + [10510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [10512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), + [10516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6338), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7995), + [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [10524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7079), + [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), + [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [10540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, .production_id = 69), + [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), + [10544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [10558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 91), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [10568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [10580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 148), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), + [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), + [10602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), + [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), + [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), + [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), + [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [10688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 5), + [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [10694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 186), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), + [10698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4), + [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [10706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 6), + [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [10716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 148), + [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [10726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), SHIFT_REPEAT(3702), + [10729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [10743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 5), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [10747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 7), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [10767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 198), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [10773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 148), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), + [10777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 200), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [10781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(3723), + [10784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), + [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [10790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 198), + [10792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 192), + [10794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 204), + [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), + [10802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 206), SHIFT_REPEAT(7882), + [10805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 206), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [10809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 207), + [10811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 207), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [10819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(6980), + [10822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [10834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(5219), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [10843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2), SHIFT_REPEAT(1258), + [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), + [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [10872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(5695), + [10875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), + [10885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(1762), + [10888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [10894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), SHIFT_REPEAT(1775), + [10897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [10907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), SHIFT_REPEAT(1745), + [10910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), + [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [10916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2), + [10918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2), + [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [10926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), SHIFT_REPEAT(444), + [10929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [10935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 3), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [10949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, .production_id = 68), + [10951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, .production_id = 138), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), + [10967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), + [10975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(7130), + [10978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), + [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [10992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1142), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [11007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), SHIFT_REPEAT(5273), + [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [11024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1175), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6865), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), + [11071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [11075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [11081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, .production_id = 99), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [11089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 3, .production_id = 112), + [11091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 113), SHIFT_REPEAT(4607), + [11094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 113), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), + [11136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 3), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [11156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, .production_id = 107), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [11160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [11182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [11226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 94), + [11228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), SHIFT_REPEAT(1606), + [11231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), SHIFT_REPEAT(7495), + [11234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), + [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [11248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(6926), + [11251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), + [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [11281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), + [11287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 2), + [11289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 2, .production_id = 58), + [11291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 69), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), + [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6819), + [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [11299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 67), + [11301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7444), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [11311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), + [11313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [11319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7530), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [11327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7675), + [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), + [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7810), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [11337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, .production_id = 27), + [11339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7867), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7498), + [11351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7861), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7508), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7741), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8001), + [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [11369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8003), + [11371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7532), + [11373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 33), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7465), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [11385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7355), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), + [11393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), + [11395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7881), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7883), + [11403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 91), + [11405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7826), + [11407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, .production_id = 151), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [11411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7809), + [11413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 2), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), + [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), + [11421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, .production_id = 56), + [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), + [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [11427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), + [11429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 3, .production_id = 161), + [11431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7693), + [11433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 99), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [11437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7898), + [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), + [11443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), + [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [11457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7325), + [11459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), + [11461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [11465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 200), + [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [11471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 6), + [11473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7531), + [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [11477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7863), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [11481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), + [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7921), + [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), + [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), + [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [11495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7937), + [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), + [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8011), + [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [11503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7760), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [11507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7989), + [11509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7609), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8014), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), + [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8017), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), + [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7841), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), + [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), + [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7845), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), + [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), + [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), + [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), + [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [11583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), + [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [11591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7233), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), + [11595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7356), + [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), + [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), + [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), + [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), + [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [11765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7637), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [11882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7632), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [11891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7633), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [11896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7634), + [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), + [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [11903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7635), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [11924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7636), + [11927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7650), + [11930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7638), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [11947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7639), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), + [11954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7640), + [11957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7641), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [11984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7642), + [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), + [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), + [12011] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), + [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), + [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), + [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), + [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), + [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7970), + [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), + [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), + [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), + [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), + [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), + [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), + [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), + [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), + [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), + [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), + [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), + [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), + [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), + [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), + [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), + [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), + [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), + [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), + [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), + [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), + [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), + [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), + [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), + [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), + [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), + [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), + [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [12309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2), + [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), + [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), + [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), + [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [12357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [12363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, .production_id = 53), + [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), + [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), + [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [12441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3), + [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), + [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), + [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), + [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), + [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), + [12517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), + [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [12531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 80), + [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), + [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), + [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), + [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), + [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), + [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), + [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), + [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), + [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), + [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), + [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), + [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7969), + [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), + [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), + [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), + [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), + [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), + [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), + [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), + [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6935), + [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7947), + [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), + [12669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4), + [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), + [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), + [12681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), + [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [12685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 126), + [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), + [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), + [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), + [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), + [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), + [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), + [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), + [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), + [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), + [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), + [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), + [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), + [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), + [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), + [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), + [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), + [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), + [12753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 125), + [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), + [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [12773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), + [12775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), + [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [12779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 168), + [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [12787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), + [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), + [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [12809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 125), + [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [12819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), + [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), + [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [12831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [12841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [12853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 168), + [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), + [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [12867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), + [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), + [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [12883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), + [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), + [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [12895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), + [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [12903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), + [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), + [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [12911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), + [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), + [12915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), + [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7916), + [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), + [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), + [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), + [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [12949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), + [12951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), + [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7823), + [12957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [12959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7828), + [12961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), + [12965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), + [12967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [12969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), + [12971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [12973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7842), + [12975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), + [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), + [12979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), + [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), + [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), + [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), + [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), + [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7939), + [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), + [13005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [13007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7959), + [13009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [13013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), + [13015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [13017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7975), + [13019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7981), + [13021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7987), + [13023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), + [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), + [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), + [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), + [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), + [13033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), + [13035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), + [13037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), + [13039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [13041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [13043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [13045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [13055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), }; #ifdef __cplusplus